saleor-marketplace/surrealdb/tests.surql

45 lines
1,010 B
Text
Raw Normal View History

2024-12-26 22:09:54 +00:00
DELETE author:djkato;
DELETE app:[
author:djkato,
'stripe-payment-gateway'
];
CREATE author:djkato SET name = 'Djkáťo', socials = [
'https://twitter.com/djkato_vfx'
], email = 'djkatovfx@gmail.com';
CREATE app:[
author:djkato,
'stripe-payment-gateway'
] SET versions = [
'1.0.0'
], slug = [
author:djkato,
'stripe-payment-gateway'
], current_version = '1.0.0', images = [
'https://imgur.com/g/img.jfif'
], is_verified = false, supported_deployments = [
'Docker'
], minimal_docker_compose = '', categories = [
'Payments'
], supported_apls = [
'Redis'
], manifest = {
about: 'cool stripe integration',
app_permissions: [
'MANAGE_USERS'
],
app_url: 'https://app-payment-gateway.test.com',
author: 'Djkáťo <djkatovfx@gmail.com>',
extensions: [],
id: 'stripe-payment-gateway',
name: 'Stripe Payment Gateway',
token_target_url: 'https://app-payment-gateway.test.com/api/register',
version: '1.0.0',
webhooks: []
};
SELECT manifest FROM app:[
author:djkato,
NONE
]..[
author:djkato
];