feat: Edit stripe payment integation drawer

This commit is contained in:
Ahmed Bouhuolia
2024-09-22 12:52:59 +02:00
parent e04f5d26a3
commit c0a4c965f0
13 changed files with 399 additions and 13 deletions

View File

@@ -13,11 +13,11 @@ export class PaymentIntegration extends TenantModel {
static get jsonSchema() {
return {
type: 'object',
required: ['name', 'service', 'enable'],
required: ['name', 'service', 'active'],
properties: {
id: { type: 'integer' },
service: { type: 'string' },
enable: { type: 'boolean' },
active: { type: 'boolean' },
accountId: { type: 'string' },
options: { type: 'object' },
createdAt: { type: 'string', format: 'date-time' },