@constructive-sdk/cli 0.21.8 → 0.21.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/admin/cli/executor.js +1 -1
- package/admin/orm/select-types.d.ts +1 -1
- package/auth/cli/executor.js +1 -1
- package/auth/orm/select-types.d.ts +1 -1
- package/esm/admin/cli/executor.js +1 -1
- package/esm/admin/orm/select-types.d.ts +1 -1
- package/esm/auth/cli/executor.js +1 -1
- package/esm/auth/orm/select-types.d.ts +1 -1
- package/esm/objects/cli/executor.js +1 -1
- package/esm/objects/orm/select-types.d.ts +1 -1
- package/esm/public/cli/commands/api-setting.js +22 -0
- package/esm/public/cli/commands/database-setting.js +22 -0
- package/esm/public/cli/commands.js +3 -3
- package/esm/public/cli/executor.d.ts +1 -1
- package/esm/public/cli/executor.js +1 -1
- package/esm/public/orm/index.d.ts +2 -2
- package/esm/public/orm/index.js +2 -2
- package/esm/public/orm/input-types.d.ts +204 -186
- package/esm/public/orm/models/index.d.ts +1 -1
- package/esm/public/orm/models/index.js +1 -1
- package/esm/public/orm/select-types.d.ts +1 -1
- package/objects/cli/executor.js +1 -1
- package/objects/orm/select-types.d.ts +1 -1
- package/package.json +4 -4
- package/public/cli/commands/api-setting.js +22 -0
- package/public/cli/commands/database-setting.js +22 -0
- package/public/cli/commands.js +3 -3
- package/public/cli/executor.d.ts +1 -1
- package/public/cli/executor.js +1 -1
- package/public/orm/index.d.ts +2 -2
- package/public/orm/index.js +2 -2
- package/public/orm/input-types.d.ts +204 -186
- package/public/orm/models/index.d.ts +1 -1
- package/public/orm/models/index.js +3 -3
- package/public/orm/select-types.d.ts +1 -1
|
@@ -22,6 +22,7 @@ const fieldSchema = {
|
|
|
22
22
|
enableLtree: 'boolean',
|
|
23
23
|
enableLlm: 'boolean',
|
|
24
24
|
enableRealtime: 'boolean',
|
|
25
|
+
enableBulk: 'boolean',
|
|
25
26
|
options: 'json',
|
|
26
27
|
};
|
|
27
28
|
const usage = '\napi-setting <command>\n\nCommands:\n list List apiSetting records\n find-first Find first matching apiSetting record\n get Get a apiSetting by ID\n create Create a new apiSetting\n update Update an existing apiSetting\n delete Delete a apiSetting\n\nList Options:\n --limit <n> Max number of records to return (forward pagination)\n --last <n> Number of records from the end (backward pagination)\n --after <cursor> Cursor for forward pagination\n --before <cursor> Cursor for backward pagination\n --offset <n> Number of records to skip\n --select <fields> Comma-separated list of fields to return\n --where.<field>.<op> Filter (dot-notation, e.g. --where.name.equalTo foo)\n --condition.<f>.<op> Condition filter (dot-notation)\n --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\nFind-First Options:\n --select <fields> Comma-separated list of fields to return\n --where.<field>.<op> Filter (dot-notation, e.g. --where.status.equalTo active)\n --condition.<f>.<op> Condition filter (dot-notation)\n --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
|
|
@@ -79,6 +80,7 @@ async function handleList(argv, _prompter) {
|
|
|
79
80
|
enableLtree: true,
|
|
80
81
|
enableLlm: true,
|
|
81
82
|
enableRealtime: true,
|
|
83
|
+
enableBulk: true,
|
|
82
84
|
options: true,
|
|
83
85
|
};
|
|
84
86
|
const findManyArgs = (0, utils_1.parseFindManyArgs)(argv, defaultSelect);
|
|
@@ -110,6 +112,7 @@ async function handleFindFirst(argv, _prompter) {
|
|
|
110
112
|
enableLtree: true,
|
|
111
113
|
enableLlm: true,
|
|
112
114
|
enableRealtime: true,
|
|
115
|
+
enableBulk: true,
|
|
113
116
|
options: true,
|
|
114
117
|
};
|
|
115
118
|
const findFirstArgs = (0, utils_1.parseFindFirstArgs)(argv, defaultSelect);
|
|
@@ -153,6 +156,7 @@ async function handleGet(argv, prompter) {
|
|
|
153
156
|
enableLtree: true,
|
|
154
157
|
enableLlm: true,
|
|
155
158
|
enableRealtime: true,
|
|
159
|
+
enableBulk: true,
|
|
156
160
|
options: true,
|
|
157
161
|
},
|
|
158
162
|
})
|
|
@@ -252,6 +256,13 @@ async function handleCreate(argv, prompter) {
|
|
|
252
256
|
required: false,
|
|
253
257
|
skipPrompt: true,
|
|
254
258
|
},
|
|
259
|
+
{
|
|
260
|
+
type: 'boolean',
|
|
261
|
+
name: 'enableBulk',
|
|
262
|
+
message: 'enableBulk',
|
|
263
|
+
required: false,
|
|
264
|
+
skipPrompt: true,
|
|
265
|
+
},
|
|
255
266
|
{
|
|
256
267
|
type: 'json',
|
|
257
268
|
name: 'options',
|
|
@@ -278,6 +289,7 @@ async function handleCreate(argv, prompter) {
|
|
|
278
289
|
enableLtree: cleanedData.enableLtree,
|
|
279
290
|
enableLlm: cleanedData.enableLlm,
|
|
280
291
|
enableRealtime: cleanedData.enableRealtime,
|
|
292
|
+
enableBulk: cleanedData.enableBulk,
|
|
281
293
|
options: cleanedData.options,
|
|
282
294
|
},
|
|
283
295
|
select: {
|
|
@@ -294,6 +306,7 @@ async function handleCreate(argv, prompter) {
|
|
|
294
306
|
enableLtree: true,
|
|
295
307
|
enableLlm: true,
|
|
296
308
|
enableRealtime: true,
|
|
309
|
+
enableBulk: true,
|
|
297
310
|
options: true,
|
|
298
311
|
},
|
|
299
312
|
})
|
|
@@ -399,6 +412,13 @@ async function handleUpdate(argv, prompter) {
|
|
|
399
412
|
required: false,
|
|
400
413
|
skipPrompt: true,
|
|
401
414
|
},
|
|
415
|
+
{
|
|
416
|
+
type: 'boolean',
|
|
417
|
+
name: 'enableBulk',
|
|
418
|
+
message: 'enableBulk',
|
|
419
|
+
required: false,
|
|
420
|
+
skipPrompt: true,
|
|
421
|
+
},
|
|
402
422
|
{
|
|
403
423
|
type: 'json',
|
|
404
424
|
name: 'options',
|
|
@@ -428,6 +448,7 @@ async function handleUpdate(argv, prompter) {
|
|
|
428
448
|
enableLtree: cleanedData.enableLtree,
|
|
429
449
|
enableLlm: cleanedData.enableLlm,
|
|
430
450
|
enableRealtime: cleanedData.enableRealtime,
|
|
451
|
+
enableBulk: cleanedData.enableBulk,
|
|
431
452
|
options: cleanedData.options,
|
|
432
453
|
},
|
|
433
454
|
select: {
|
|
@@ -444,6 +465,7 @@ async function handleUpdate(argv, prompter) {
|
|
|
444
465
|
enableLtree: true,
|
|
445
466
|
enableLlm: true,
|
|
446
467
|
enableRealtime: true,
|
|
468
|
+
enableBulk: true,
|
|
447
469
|
options: true,
|
|
448
470
|
},
|
|
449
471
|
})
|
|
@@ -21,6 +21,7 @@ const fieldSchema = {
|
|
|
21
21
|
enableLtree: 'boolean',
|
|
22
22
|
enableLlm: 'boolean',
|
|
23
23
|
enableRealtime: 'boolean',
|
|
24
|
+
enableBulk: 'boolean',
|
|
24
25
|
options: 'json',
|
|
25
26
|
};
|
|
26
27
|
const usage = '\ndatabase-setting <command>\n\nCommands:\n list List databaseSetting records\n find-first Find first matching databaseSetting record\n get Get a databaseSetting by ID\n create Create a new databaseSetting\n update Update an existing databaseSetting\n delete Delete a databaseSetting\n\nList Options:\n --limit <n> Max number of records to return (forward pagination)\n --last <n> Number of records from the end (backward pagination)\n --after <cursor> Cursor for forward pagination\n --before <cursor> Cursor for backward pagination\n --offset <n> Number of records to skip\n --select <fields> Comma-separated list of fields to return\n --where.<field>.<op> Filter (dot-notation, e.g. --where.name.equalTo foo)\n --condition.<f>.<op> Condition filter (dot-notation)\n --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\nFind-First Options:\n --select <fields> Comma-separated list of fields to return\n --where.<field>.<op> Filter (dot-notation, e.g. --where.status.equalTo active)\n --condition.<f>.<op> Condition filter (dot-notation)\n --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
|
|
@@ -77,6 +78,7 @@ async function handleList(argv, _prompter) {
|
|
|
77
78
|
enableLtree: true,
|
|
78
79
|
enableLlm: true,
|
|
79
80
|
enableRealtime: true,
|
|
81
|
+
enableBulk: true,
|
|
80
82
|
options: true,
|
|
81
83
|
};
|
|
82
84
|
const findManyArgs = (0, utils_1.parseFindManyArgs)(argv, defaultSelect);
|
|
@@ -107,6 +109,7 @@ async function handleFindFirst(argv, _prompter) {
|
|
|
107
109
|
enableLtree: true,
|
|
108
110
|
enableLlm: true,
|
|
109
111
|
enableRealtime: true,
|
|
112
|
+
enableBulk: true,
|
|
110
113
|
options: true,
|
|
111
114
|
};
|
|
112
115
|
const findFirstArgs = (0, utils_1.parseFindFirstArgs)(argv, defaultSelect);
|
|
@@ -149,6 +152,7 @@ async function handleGet(argv, prompter) {
|
|
|
149
152
|
enableLtree: true,
|
|
150
153
|
enableLlm: true,
|
|
151
154
|
enableRealtime: true,
|
|
155
|
+
enableBulk: true,
|
|
152
156
|
options: true,
|
|
153
157
|
},
|
|
154
158
|
})
|
|
@@ -242,6 +246,13 @@ async function handleCreate(argv, prompter) {
|
|
|
242
246
|
required: false,
|
|
243
247
|
skipPrompt: true,
|
|
244
248
|
},
|
|
249
|
+
{
|
|
250
|
+
type: 'boolean',
|
|
251
|
+
name: 'enableBulk',
|
|
252
|
+
message: 'enableBulk',
|
|
253
|
+
required: false,
|
|
254
|
+
skipPrompt: true,
|
|
255
|
+
},
|
|
245
256
|
{
|
|
246
257
|
type: 'json',
|
|
247
258
|
name: 'options',
|
|
@@ -267,6 +278,7 @@ async function handleCreate(argv, prompter) {
|
|
|
267
278
|
enableLtree: cleanedData.enableLtree,
|
|
268
279
|
enableLlm: cleanedData.enableLlm,
|
|
269
280
|
enableRealtime: cleanedData.enableRealtime,
|
|
281
|
+
enableBulk: cleanedData.enableBulk,
|
|
270
282
|
options: cleanedData.options,
|
|
271
283
|
},
|
|
272
284
|
select: {
|
|
@@ -282,6 +294,7 @@ async function handleCreate(argv, prompter) {
|
|
|
282
294
|
enableLtree: true,
|
|
283
295
|
enableLlm: true,
|
|
284
296
|
enableRealtime: true,
|
|
297
|
+
enableBulk: true,
|
|
285
298
|
options: true,
|
|
286
299
|
},
|
|
287
300
|
})
|
|
@@ -381,6 +394,13 @@ async function handleUpdate(argv, prompter) {
|
|
|
381
394
|
required: false,
|
|
382
395
|
skipPrompt: true,
|
|
383
396
|
},
|
|
397
|
+
{
|
|
398
|
+
type: 'boolean',
|
|
399
|
+
name: 'enableBulk',
|
|
400
|
+
message: 'enableBulk',
|
|
401
|
+
required: false,
|
|
402
|
+
skipPrompt: true,
|
|
403
|
+
},
|
|
384
404
|
{
|
|
385
405
|
type: 'json',
|
|
386
406
|
name: 'options',
|
|
@@ -409,6 +429,7 @@ async function handleUpdate(argv, prompter) {
|
|
|
409
429
|
enableLtree: cleanedData.enableLtree,
|
|
410
430
|
enableLlm: cleanedData.enableLlm,
|
|
411
431
|
enableRealtime: cleanedData.enableRealtime,
|
|
432
|
+
enableBulk: cleanedData.enableBulk,
|
|
412
433
|
options: cleanedData.options,
|
|
413
434
|
},
|
|
414
435
|
select: {
|
|
@@ -424,6 +445,7 @@ async function handleUpdate(argv, prompter) {
|
|
|
424
445
|
enableLtree: true,
|
|
425
446
|
enableLlm: true,
|
|
426
447
|
enableRealtime: true,
|
|
448
|
+
enableBulk: true,
|
|
427
449
|
options: true,
|
|
428
450
|
},
|
|
429
451
|
})
|
package/public/cli/commands.js
CHANGED
|
@@ -150,9 +150,9 @@ const rls_setting_1 = __importDefault(require("./commands/rls-setting"));
|
|
|
150
150
|
const app_limit_event_1 = __importDefault(require("./commands/app-limit-event"));
|
|
151
151
|
const org_limit_event_1 = __importDefault(require("./commands/org-limit-event"));
|
|
152
152
|
const rls_module_1 = __importDefault(require("./commands/rls-module"));
|
|
153
|
-
const database_setting_1 = __importDefault(require("./commands/database-setting"));
|
|
154
153
|
const plans_module_1 = __importDefault(require("./commands/plans-module"));
|
|
155
154
|
const sql_action_1 = __importDefault(require("./commands/sql-action"));
|
|
155
|
+
const database_setting_1 = __importDefault(require("./commands/database-setting"));
|
|
156
156
|
const billing_module_1 = __importDefault(require("./commands/billing-module"));
|
|
157
157
|
const ast_migration_1 = __importDefault(require("./commands/ast-migration"));
|
|
158
158
|
const user_1 = __importDefault(require("./commands/user"));
|
|
@@ -373,9 +373,9 @@ const createCommandMap = () => ({
|
|
|
373
373
|
'app-limit-event': app_limit_event_1.default,
|
|
374
374
|
'org-limit-event': org_limit_event_1.default,
|
|
375
375
|
'rls-module': rls_module_1.default,
|
|
376
|
-
'database-setting': database_setting_1.default,
|
|
377
376
|
'plans-module': plans_module_1.default,
|
|
378
377
|
'sql-action': sql_action_1.default,
|
|
378
|
+
'database-setting': database_setting_1.default,
|
|
379
379
|
'billing-module': billing_module_1.default,
|
|
380
380
|
'ast-migration': ast_migration_1.default,
|
|
381
381
|
user: user_1.default,
|
|
@@ -456,7 +456,7 @@ const createCommandMap = () => ({
|
|
|
456
456
|
'provision-table': provision_table_1.default,
|
|
457
457
|
'provision-bucket': provision_bucket_1.default,
|
|
458
458
|
});
|
|
459
|
-
const usage = "\ncsdk <command>\n\nCommands:\n context Manage API contexts\n auth Manage authentication\n org-get-managers-record orgGetManagersRecord CRUD operations\n org-get-subordinates-record orgGetSubordinatesRecord CRUD operations\n get-all-record getAllRecord CRUD operations\n app-permission appPermission CRUD operations\n org-permission orgPermission CRUD operations\n object object CRUD operations\n app-level-requirement appLevelRequirement CRUD operations\n database database CRUD operations\n schema schema CRUD operations\n table table CRUD operations\n check-constraint checkConstraint CRUD operations\n field field CRUD operations\n spatial-relation spatialRelation CRUD operations\n partition partition CRUD operations\n foreign-key-constraint foreignKeyConstraint CRUD operations\n full-text-search fullTextSearch CRUD operations\n index index CRUD operations\n policy policy CRUD operations\n primary-key-constraint primaryKeyConstraint CRUD operations\n table-grant tableGrant CRUD operations\n trigger trigger CRUD operations\n unique-constraint uniqueConstraint CRUD operations\n view view CRUD operations\n view-table viewTable CRUD operations\n view-grant viewGrant CRUD operations\n view-rule viewRule CRUD operations\n embedding-chunk embeddingChunk CRUD operations\n secure-table-provision secureTableProvision CRUD operations\n relation-provision relationProvision CRUD operations\n session-secrets-module sessionSecretsModule CRUD operations\n identity-providers-module identityProvidersModule CRUD operations\n realtime-module realtimeModule CRUD operations\n schema-grant schemaGrant CRUD operations\n default-privilege defaultPrivilege CRUD operations\n enum enum CRUD operations\n function function CRUD operations\n api-schema apiSchema CRUD operations\n api-module apiModule CRUD operations\n domain domain CRUD operations\n site-metadatum siteMetadatum CRUD operations\n site-module siteModule CRUD operations\n site-theme siteTheme CRUD operations\n cors-setting corsSetting CRUD operations\n trigger-function triggerFunction CRUD operations\n database-transfer databaseTransfer CRUD operations\n api api CRUD operations\n site site CRUD operations\n app app CRUD operations\n api-setting apiSetting CRUD operations\n connected-accounts-module connectedAccountsModule CRUD operations\n crypto-addresses-module cryptoAddressesModule CRUD operations\n crypto-auth-module cryptoAuthModule CRUD operations\n default-ids-module defaultIdsModule CRUD operations\n denormalized-table-field denormalizedTableField CRUD operations\n emails-module emailsModule CRUD operations\n encrypted-secrets-module encryptedSecretsModule CRUD operations\n invites-module invitesModule CRUD operations\n levels-module levelsModule CRUD operations\n limits-module limitsModule CRUD operations\n membership-types-module membershipTypesModule CRUD operations\n memberships-module membershipsModule CRUD operations\n permissions-module permissionsModule CRUD operations\n phone-numbers-module phoneNumbersModule CRUD operations\n profiles-module profilesModule CRUD operations\n secrets-module secretsModule CRUD operations\n sessions-module sessionsModule CRUD operations\n user-auth-module userAuthModule CRUD operations\n users-module usersModule CRUD operations\n blueprint blueprint CRUD operations\n blueprint-template blueprintTemplate CRUD operations\n blueprint-construction blueprintConstruction CRUD operations\n storage-module storageModule CRUD operations\n entity-type-provision entityTypeProvision CRUD operations\n webauthn-credentials-module webauthnCredentialsModule CRUD operations\n webauthn-auth-module webauthnAuthModule CRUD operations\n notifications-module notificationsModule CRUD operations\n database-provision-module databaseProvisionModule CRUD operations\n app-admin-grant appAdminGrant CRUD operations\n app-owner-grant appOwnerGrant CRUD operations\n app-grant appGrant CRUD operations\n org-membership orgMembership CRUD operations\n org-member orgMember CRUD operations\n org-admin-grant orgAdminGrant CRUD operations\n org-owner-grant orgOwnerGrant CRUD operations\n org-member-profile orgMemberProfile CRUD operations\n org-grant orgGrant CRUD operations\n org-chart-edge orgChartEdge CRUD operations\n org-chart-edge-grant orgChartEdgeGrant CRUD operations\n org-permission-default orgPermissionDefault CRUD operations\n app-limit appLimit CRUD operations\n app-limit-credit appLimitCredit CRUD operations\n app-limit-credit-code-item appLimitCreditCodeItem CRUD operations\n app-limit-credit-redemption appLimitCreditRedemption CRUD operations\n org-limit orgLimit CRUD operations\n org-limit-credit orgLimitCredit CRUD operations\n org-limit-aggregate orgLimitAggregate CRUD operations\n app-step appStep CRUD operations\n app-achievement appAchievement CRUD operations\n app-level appLevel CRUD operations\n email email CRUD operations\n phone-number phoneNumber CRUD operations\n crypto-address cryptoAddress CRUD operations\n webauthn-credential webauthnCredential CRUD operations\n app-invite appInvite CRUD operations\n app-claimed-invite appClaimedInvite CRUD operations\n org-invite orgInvite CRUD operations\n org-claimed-invite orgClaimedInvite CRUD operations\n audit-log auditLog CRUD operations\n agent-thread agentThread CRUD operations\n agent-message agentMessage CRUD operations\n agent-task agentTask CRUD operations\n role-type roleType CRUD operations\n identity-provider identityProvider CRUD operations\n ref ref CRUD operations\n store store CRUD operations\n app-permission-default appPermissionDefault CRUD operations\n app-limit-credit-code appLimitCreditCode CRUD operations\n app-limit-caps-default appLimitCapsDefault CRUD operations\n org-limit-caps-default orgLimitCapsDefault CRUD operations\n app-limit-cap appLimitCap CRUD operations\n org-limit-cap orgLimitCap CRUD operations\n membership-type membershipType CRUD operations\n migrate-file migrateFile CRUD operations\n devices-module devicesModule CRUD operations\n node-type-registry nodeTypeRegistry CRUD operations\n app-limit-default appLimitDefault CRUD operations\n org-limit-default orgLimitDefault CRUD operations\n user-connected-account userConnectedAccount CRUD operations\n commit commit CRUD operations\n pubkey-setting pubkeySetting CRUD operations\n rate-limits-module rateLimitsModule CRUD operations\n usage-snapshot usageSnapshot CRUD operations\n app-membership-default appMembershipDefault CRUD operations\n org-membership-default orgMembershipDefault CRUD operations\n rls-setting rlsSetting CRUD operations\n app-limit-event appLimitEvent CRUD operations\n org-limit-event orgLimitEvent CRUD operations\n rls-module rlsModule CRUD operations\n database-setting databaseSetting CRUD operations\n plans-module plansModule CRUD operations\n sql-action sqlAction CRUD operations\n billing-module billingModule CRUD operations\n ast-migration astMigration CRUD operations\n user user CRUD operations\n org-membership-setting orgMembershipSetting CRUD operations\n webauthn-setting webauthnSetting CRUD operations\n app-membership appMembership CRUD operations\n billing-provider-module billingProviderModule CRUD operations\n hierarchy-module hierarchyModule CRUD operations\n current-user-id currentUserId\n current-user-agent currentUserAgent\n current-ip-address currentIpAddress\n require-step-up requireStepUp\n app-permissions-get-padded-mask appPermissionsGetPaddedMask\n org-permissions-get-padded-mask orgPermissionsGetPaddedMask\n steps-achieved stepsAchieved\n rev-parse revParse\n resolve-blueprint-field Resolves a field_name within a given table_id to a field_id. Throws if no match is found. Used by construct_blueprint to translate user-authored field names (e.g. \"location\") into field UUIDs for downstream provisioning procedures. table_id must already be resolved (via resolve_blueprint_table) before calling this.\n org-is-manager-of orgIsManagerOf\n app-permissions-get-mask appPermissionsGetMask\n org-permissions-get-mask orgPermissionsGetMask\n resolve-blueprint-table Resolves a table_name (with optional schema_name) to a table_id. Resolution order: (1) if schema_name provided, exact lookup via metaschema_public.schema.name + metaschema_public.table; (2) check local table_map (tables created in current blueprint); (3) search metaschema_public.table by name across all schemas; (4) if multiple matches, throw ambiguous error asking for schema_name; (5) if no match, throw not-found error.\n app-permissions-get-mask-by-names appPermissionsGetMaskByNames\n org-permissions-get-mask-by-names orgPermissionsGetMaskByNames\n app-permissions-get-by-mask Reads and enables pagination through a set of `AppPermission`.\n org-permissions-get-by-mask Reads and enables pagination through a set of `OrgPermission`.\n get-all-objects-from-root Reads and enables pagination through a set of `Object`.\n get-path-objects-from-root Reads and enables pagination through a set of `Object`.\n get-object-at-path getObjectAtPath\n steps-required Reads and enables pagination through a set of `AppLevelRequirement`.\n current-user currentUser\n send-account-deletion-email sendAccountDeletionEmail\n sign-out signOut\n accept-database-transfer acceptDatabaseTransfer\n cancel-database-transfer cancelDatabaseTransfer\n reject-database-transfer rejectDatabaseTransfer\n disconnect-account disconnectAccount\n revoke-api-key revokeApiKey\n revoke-session revokeSession\n verify-password verifyPassword\n verify-totp verifyTotp\n submit-app-invite-code submitAppInviteCode\n submit-org-invite-code submitOrgInviteCode\n check-password checkPassword\n confirm-delete-account confirmDeleteAccount\n set-password setPassword\n verify-email verifyEmail\n freeze-objects freezeObjects\n init-empty-repo initEmptyRepo\n construct-blueprint Executes a blueprint definition by delegating to provision_* procedures. Creates a blueprint_construction record to track the attempt. Seven phases: (0) entity_type_provision for each membership_type entry \u2014 provisions entity tables, membership modules, and security, (1) provision_table() for each table with nodes[], fields[], policies[], and grants (table-level indexes/fts/unique_constraints/check_constraints are deferred), (2) provision_relation() for each relation, (3) provision_index() for top-level + deferred indexes, (4) provision_full_text_search() for top-level + deferred FTS, (5) provision_unique_constraint() for top-level + deferred unique constraints, (6) provision_check_constraint() for top-level + deferred check constraints. Phase 0 entity tables are added to the table_map so subsequent phases can reference them by name. Table-level entries are deferred to phases 3-6 so they can reference columns created by relations in phase 2. Returns the construction record ID on success, NULL on failure.\n provision-new-user provisionNewUser\n reset-password resetPassword\n remove-node-at-path removeNodeAtPath\n copy-template-to-blueprint Creates a new blueprint by copying a template definition. Checks visibility: owners can always copy their own templates, others require public visibility. Increments the template copy_count. Returns the new blueprint ID.\n provision-spatial-relation Idempotent provisioner for metaschema_public.spatial_relation. Inserts a row declaring a spatial predicate between two geometry/geography columns (owner and target). Called from construct_blueprint when a relation entry has $type=RelationSpatial. Graceful: re-running with the same (source_table_id, name) returns the existing id without modifying the row. Operator whitelist and st_dwithin \u2194 param_name pairing are enforced by the spatial_relation table CHECKs. Both fields must already exist \u2014 this is a metadata-only insert.\n bootstrap-user bootstrapUser\n set-field-order setFieldOrder\n provision-check-constraint Creates a check constraint on a table from a $type + data blueprint definition. Supports: CheckOneOf (enum validation via = ANY(ARRAY[...])), CheckGreaterThan (single-column > value or cross-column), CheckLessThan (single-column < value or cross-column), CheckNotEqual (cross-column inequality). Builds AST expressions via ast_helpers and inserts into metaschema_public.check_constraint. Graceful: skips if a constraint with the same name already exists.\n provision-unique-constraint Creates a unique constraint on a table. Accepts a jsonb definition with columns (array of field names). Graceful: skips if the exact same unique constraint already exists.\n provision-full-text-search Creates a full-text search configuration on a table. Accepts a jsonb definition with field (tsvector column name) and sources (array of {field, weight, lang}). Graceful: skips if FTS config already exists for the same (table_id, field_id). Returns the fts_id.\n provision-index Creates an index on a table. Accepts a jsonb definition with columns (array of names or single column string), access_method (default BTREE), is_unique, op_classes, options, and name (auto-generated if omitted). Graceful: skips if an index with the same (table_id, field_ids, access_method) already exists. Returns the index_id.\n set-data-at-path setDataAtPath\n set-props-and-commit setPropsAndCommit\n provision-database-with-user provisionDatabaseWithUser\n insert-node-at-path insertNodeAtPath\n update-node-at-path updateNodeAtPath\n set-and-commit setAndCommit\n provision-relation Composable relation provisioning: creates FK fields, indexes, unique constraints, and junction tables depending on the relation_type. Supports RelationBelongsTo, RelationHasOne, RelationHasMany, and RelationManyToMany. ManyToMany uses provision_table() internally for junction table creation with full node/grant/policy support. All operations are graceful (skip existing). Returns (out_field_id, out_junction_table_id, out_source_field_id, out_target_field_id).\n apply-rls applyRls\n sign-in-cross-origin signInCrossOrigin\n create-user-database Creates a new user database with all required modules, permissions, and RLS policies.\n\nParameters:\n - database_name: Name for the new database (required)\n - owner_id: UUID of the owner user (required)\n - include_invites: Include invite system (default: true)\n - include_groups: Include group-level memberships (default: false)\n - include_levels: Include levels/achievements (default: false)\n - bitlen: Bit length for permission masks (default: 64)\n - tokens_expiration: Token expiration interval (default: 30 days)\n\nReturns the database_id UUID of the newly created database.\n\nExample usage:\n SELECT metaschema_public.create_user_database('my_app', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11'::uuid);\n SELECT metaschema_public.create_user_database('my_app', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11'::uuid, true, true); -- with invites and groups\n\n extend-token-expires extendTokenExpires\n create-api-key createApiKey\n send-verification-email sendVerificationEmail\n forgot-password forgotPassword\n sign-up signUp\n request-cross-origin-token requestCrossOriginToken\n sign-in signIn\n provision-table Composable table provisioning: creates or finds a table, then creates fields (so Data* modules can reference them), applies N nodes (Data* modules), enables RLS, creates grants, creates N policies, and optionally creates table-level indexes/full_text_searches/unique_constraints. All operations are graceful (skip existing). Accepts multiple nodes and multiple policies per call, unlike secure_table_provision which is limited to one of each. Returns (out_table_id, out_fields).\n provision-bucket Provision an S3 bucket for a logical bucket in the database.\nReads the bucket config via RLS, then creates and configures\nthe S3 bucket with the appropriate privacy policies, CORS rules,\nand lifecycle settings.\n\n --help, -h Show this help message\n --version, -v Show version\n";
|
|
459
|
+
const usage = "\ncsdk <command>\n\nCommands:\n context Manage API contexts\n auth Manage authentication\n org-get-managers-record orgGetManagersRecord CRUD operations\n org-get-subordinates-record orgGetSubordinatesRecord CRUD operations\n get-all-record getAllRecord CRUD operations\n app-permission appPermission CRUD operations\n org-permission orgPermission CRUD operations\n object object CRUD operations\n app-level-requirement appLevelRequirement CRUD operations\n database database CRUD operations\n schema schema CRUD operations\n table table CRUD operations\n check-constraint checkConstraint CRUD operations\n field field CRUD operations\n spatial-relation spatialRelation CRUD operations\n partition partition CRUD operations\n foreign-key-constraint foreignKeyConstraint CRUD operations\n full-text-search fullTextSearch CRUD operations\n index index CRUD operations\n policy policy CRUD operations\n primary-key-constraint primaryKeyConstraint CRUD operations\n table-grant tableGrant CRUD operations\n trigger trigger CRUD operations\n unique-constraint uniqueConstraint CRUD operations\n view view CRUD operations\n view-table viewTable CRUD operations\n view-grant viewGrant CRUD operations\n view-rule viewRule CRUD operations\n embedding-chunk embeddingChunk CRUD operations\n secure-table-provision secureTableProvision CRUD operations\n relation-provision relationProvision CRUD operations\n session-secrets-module sessionSecretsModule CRUD operations\n identity-providers-module identityProvidersModule CRUD operations\n realtime-module realtimeModule CRUD operations\n schema-grant schemaGrant CRUD operations\n default-privilege defaultPrivilege CRUD operations\n enum enum CRUD operations\n function function CRUD operations\n api-schema apiSchema CRUD operations\n api-module apiModule CRUD operations\n domain domain CRUD operations\n site-metadatum siteMetadatum CRUD operations\n site-module siteModule CRUD operations\n site-theme siteTheme CRUD operations\n cors-setting corsSetting CRUD operations\n trigger-function triggerFunction CRUD operations\n database-transfer databaseTransfer CRUD operations\n api api CRUD operations\n site site CRUD operations\n app app CRUD operations\n api-setting apiSetting CRUD operations\n connected-accounts-module connectedAccountsModule CRUD operations\n crypto-addresses-module cryptoAddressesModule CRUD operations\n crypto-auth-module cryptoAuthModule CRUD operations\n default-ids-module defaultIdsModule CRUD operations\n denormalized-table-field denormalizedTableField CRUD operations\n emails-module emailsModule CRUD operations\n encrypted-secrets-module encryptedSecretsModule CRUD operations\n invites-module invitesModule CRUD operations\n levels-module levelsModule CRUD operations\n limits-module limitsModule CRUD operations\n membership-types-module membershipTypesModule CRUD operations\n memberships-module membershipsModule CRUD operations\n permissions-module permissionsModule CRUD operations\n phone-numbers-module phoneNumbersModule CRUD operations\n profiles-module profilesModule CRUD operations\n secrets-module secretsModule CRUD operations\n sessions-module sessionsModule CRUD operations\n user-auth-module userAuthModule CRUD operations\n users-module usersModule CRUD operations\n blueprint blueprint CRUD operations\n blueprint-template blueprintTemplate CRUD operations\n blueprint-construction blueprintConstruction CRUD operations\n storage-module storageModule CRUD operations\n entity-type-provision entityTypeProvision CRUD operations\n webauthn-credentials-module webauthnCredentialsModule CRUD operations\n webauthn-auth-module webauthnAuthModule CRUD operations\n notifications-module notificationsModule CRUD operations\n database-provision-module databaseProvisionModule CRUD operations\n app-admin-grant appAdminGrant CRUD operations\n app-owner-grant appOwnerGrant CRUD operations\n app-grant appGrant CRUD operations\n org-membership orgMembership CRUD operations\n org-member orgMember CRUD operations\n org-admin-grant orgAdminGrant CRUD operations\n org-owner-grant orgOwnerGrant CRUD operations\n org-member-profile orgMemberProfile CRUD operations\n org-grant orgGrant CRUD operations\n org-chart-edge orgChartEdge CRUD operations\n org-chart-edge-grant orgChartEdgeGrant CRUD operations\n org-permission-default orgPermissionDefault CRUD operations\n app-limit appLimit CRUD operations\n app-limit-credit appLimitCredit CRUD operations\n app-limit-credit-code-item appLimitCreditCodeItem CRUD operations\n app-limit-credit-redemption appLimitCreditRedemption CRUD operations\n org-limit orgLimit CRUD operations\n org-limit-credit orgLimitCredit CRUD operations\n org-limit-aggregate orgLimitAggregate CRUD operations\n app-step appStep CRUD operations\n app-achievement appAchievement CRUD operations\n app-level appLevel CRUD operations\n email email CRUD operations\n phone-number phoneNumber CRUD operations\n crypto-address cryptoAddress CRUD operations\n webauthn-credential webauthnCredential CRUD operations\n app-invite appInvite CRUD operations\n app-claimed-invite appClaimedInvite CRUD operations\n org-invite orgInvite CRUD operations\n org-claimed-invite orgClaimedInvite CRUD operations\n audit-log auditLog CRUD operations\n agent-thread agentThread CRUD operations\n agent-message agentMessage CRUD operations\n agent-task agentTask CRUD operations\n role-type roleType CRUD operations\n identity-provider identityProvider CRUD operations\n ref ref CRUD operations\n store store CRUD operations\n app-permission-default appPermissionDefault CRUD operations\n app-limit-credit-code appLimitCreditCode CRUD operations\n app-limit-caps-default appLimitCapsDefault CRUD operations\n org-limit-caps-default orgLimitCapsDefault CRUD operations\n app-limit-cap appLimitCap CRUD operations\n org-limit-cap orgLimitCap CRUD operations\n membership-type membershipType CRUD operations\n migrate-file migrateFile CRUD operations\n devices-module devicesModule CRUD operations\n node-type-registry nodeTypeRegistry CRUD operations\n app-limit-default appLimitDefault CRUD operations\n org-limit-default orgLimitDefault CRUD operations\n user-connected-account userConnectedAccount CRUD operations\n commit commit CRUD operations\n pubkey-setting pubkeySetting CRUD operations\n rate-limits-module rateLimitsModule CRUD operations\n usage-snapshot usageSnapshot CRUD operations\n app-membership-default appMembershipDefault CRUD operations\n org-membership-default orgMembershipDefault CRUD operations\n rls-setting rlsSetting CRUD operations\n app-limit-event appLimitEvent CRUD operations\n org-limit-event orgLimitEvent CRUD operations\n rls-module rlsModule CRUD operations\n plans-module plansModule CRUD operations\n sql-action sqlAction CRUD operations\n database-setting databaseSetting CRUD operations\n billing-module billingModule CRUD operations\n ast-migration astMigration CRUD operations\n user user CRUD operations\n org-membership-setting orgMembershipSetting CRUD operations\n webauthn-setting webauthnSetting CRUD operations\n app-membership appMembership CRUD operations\n billing-provider-module billingProviderModule CRUD operations\n hierarchy-module hierarchyModule CRUD operations\n current-user-id currentUserId\n current-user-agent currentUserAgent\n current-ip-address currentIpAddress\n require-step-up requireStepUp\n app-permissions-get-padded-mask appPermissionsGetPaddedMask\n org-permissions-get-padded-mask orgPermissionsGetPaddedMask\n steps-achieved stepsAchieved\n rev-parse revParse\n resolve-blueprint-field Resolves a field_name within a given table_id to a field_id. Throws if no match is found. Used by construct_blueprint to translate user-authored field names (e.g. \"location\") into field UUIDs for downstream provisioning procedures. table_id must already be resolved (via resolve_blueprint_table) before calling this.\n org-is-manager-of orgIsManagerOf\n app-permissions-get-mask appPermissionsGetMask\n org-permissions-get-mask orgPermissionsGetMask\n resolve-blueprint-table Resolves a table_name (with optional schema_name) to a table_id. Resolution order: (1) if schema_name provided, exact lookup via metaschema_public.schema.name + metaschema_public.table; (2) check local table_map (tables created in current blueprint); (3) search metaschema_public.table by name across all schemas; (4) if multiple matches, throw ambiguous error asking for schema_name; (5) if no match, throw not-found error.\n app-permissions-get-mask-by-names appPermissionsGetMaskByNames\n org-permissions-get-mask-by-names orgPermissionsGetMaskByNames\n app-permissions-get-by-mask Reads and enables pagination through a set of `AppPermission`.\n org-permissions-get-by-mask Reads and enables pagination through a set of `OrgPermission`.\n get-all-objects-from-root Reads and enables pagination through a set of `Object`.\n get-path-objects-from-root Reads and enables pagination through a set of `Object`.\n get-object-at-path getObjectAtPath\n steps-required Reads and enables pagination through a set of `AppLevelRequirement`.\n current-user currentUser\n send-account-deletion-email sendAccountDeletionEmail\n sign-out signOut\n accept-database-transfer acceptDatabaseTransfer\n cancel-database-transfer cancelDatabaseTransfer\n reject-database-transfer rejectDatabaseTransfer\n disconnect-account disconnectAccount\n revoke-api-key revokeApiKey\n revoke-session revokeSession\n verify-password verifyPassword\n verify-totp verifyTotp\n submit-app-invite-code submitAppInviteCode\n submit-org-invite-code submitOrgInviteCode\n check-password checkPassword\n confirm-delete-account confirmDeleteAccount\n set-password setPassword\n verify-email verifyEmail\n freeze-objects freezeObjects\n init-empty-repo initEmptyRepo\n construct-blueprint Executes a blueprint definition by delegating to provision_* procedures. Creates a blueprint_construction record to track the attempt. Seven phases: (0) entity_type_provision for each membership_type entry \u2014 provisions entity tables, membership modules, and security, (1) provision_table() for each table with nodes[], fields[], policies[], and grants (table-level indexes/fts/unique_constraints/check_constraints are deferred), (2) provision_relation() for each relation, (3) provision_index() for top-level + deferred indexes, (4) provision_full_text_search() for top-level + deferred FTS, (5) provision_unique_constraint() for top-level + deferred unique constraints, (6) provision_check_constraint() for top-level + deferred check constraints. Phase 0 entity tables are added to the table_map so subsequent phases can reference them by name. Table-level entries are deferred to phases 3-6 so they can reference columns created by relations in phase 2. Returns the construction record ID on success, NULL on failure.\n provision-new-user provisionNewUser\n reset-password resetPassword\n remove-node-at-path removeNodeAtPath\n copy-template-to-blueprint Creates a new blueprint by copying a template definition. Checks visibility: owners can always copy their own templates, others require public visibility. Increments the template copy_count. Returns the new blueprint ID.\n provision-spatial-relation Idempotent provisioner for metaschema_public.spatial_relation. Inserts a row declaring a spatial predicate between two geometry/geography columns (owner and target). Called from construct_blueprint when a relation entry has $type=RelationSpatial. Graceful: re-running with the same (source_table_id, name) returns the existing id without modifying the row. Operator whitelist and st_dwithin \u2194 param_name pairing are enforced by the spatial_relation table CHECKs. Both fields must already exist \u2014 this is a metadata-only insert.\n bootstrap-user bootstrapUser\n set-field-order setFieldOrder\n provision-check-constraint Creates a check constraint on a table from a $type + data blueprint definition. Supports: CheckOneOf (enum validation via = ANY(ARRAY[...])), CheckGreaterThan (single-column > value or cross-column), CheckLessThan (single-column < value or cross-column), CheckNotEqual (cross-column inequality). Builds AST expressions via ast_helpers and inserts into metaschema_public.check_constraint. Graceful: skips if a constraint with the same name already exists.\n provision-unique-constraint Creates a unique constraint on a table. Accepts a jsonb definition with columns (array of field names). Graceful: skips if the exact same unique constraint already exists.\n provision-full-text-search Creates a full-text search configuration on a table. Accepts a jsonb definition with field (tsvector column name) and sources (array of {field, weight, lang}). Graceful: skips if FTS config already exists for the same (table_id, field_id). Returns the fts_id.\n provision-index Creates an index on a table. Accepts a jsonb definition with columns (array of names or single column string), access_method (default BTREE), is_unique, op_classes, options, and name (auto-generated if omitted). Graceful: skips if an index with the same (table_id, field_ids, access_method) already exists. Returns the index_id.\n set-data-at-path setDataAtPath\n set-props-and-commit setPropsAndCommit\n provision-database-with-user provisionDatabaseWithUser\n insert-node-at-path insertNodeAtPath\n update-node-at-path updateNodeAtPath\n set-and-commit setAndCommit\n provision-relation Composable relation provisioning: creates FK fields, indexes, unique constraints, and junction tables depending on the relation_type. Supports RelationBelongsTo, RelationHasOne, RelationHasMany, and RelationManyToMany. ManyToMany uses provision_table() internally for junction table creation with full node/grant/policy support. All operations are graceful (skip existing). Returns (out_field_id, out_junction_table_id, out_source_field_id, out_target_field_id).\n apply-rls applyRls\n sign-in-cross-origin signInCrossOrigin\n create-user-database Creates a new user database with all required modules, permissions, and RLS policies.\n\nParameters:\n - database_name: Name for the new database (required)\n - owner_id: UUID of the owner user (required)\n - include_invites: Include invite system (default: true)\n - include_groups: Include group-level memberships (default: false)\n - include_levels: Include levels/achievements (default: false)\n - bitlen: Bit length for permission masks (default: 64)\n - tokens_expiration: Token expiration interval (default: 30 days)\n\nReturns the database_id UUID of the newly created database.\n\nExample usage:\n SELECT metaschema_public.create_user_database('my_app', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11'::uuid);\n SELECT metaschema_public.create_user_database('my_app', 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11'::uuid, true, true); -- with invites and groups\n\n extend-token-expires extendTokenExpires\n create-api-key createApiKey\n send-verification-email sendVerificationEmail\n forgot-password forgotPassword\n sign-up signUp\n request-cross-origin-token requestCrossOriginToken\n sign-in signIn\n provision-table Composable table provisioning: creates or finds a table, then creates fields (so Data* modules can reference them), applies N nodes (Data* modules), enables RLS, creates grants, creates N policies, and optionally creates table-level indexes/full_text_searches/unique_constraints. All operations are graceful (skip existing). Accepts multiple nodes and multiple policies per call, unlike secure_table_provision which is limited to one of each. Returns (out_table_id, out_fields).\n provision-bucket Provision an S3 bucket for a logical bucket in the database.\nReads the bucket config via RLS, then creates and configures\nthe S3 bucket with the appropriate privacy policies, CORS rules,\nand lifecycle settings.\n\n --help, -h Show this help message\n --version, -v Show version\n";
|
|
460
460
|
const commands = async (argv, prompter, options) => {
|
|
461
461
|
if (argv.help || argv.h) {
|
|
462
462
|
console.log(usage);
|
package/public/cli/executor.d.ts
CHANGED
|
@@ -138,9 +138,9 @@ export declare function getClient(contextName?: string): {
|
|
|
138
138
|
appLimitEvent: import("../orm").AppLimitEventModel;
|
|
139
139
|
orgLimitEvent: import("../orm").OrgLimitEventModel;
|
|
140
140
|
rlsModule: import("../orm").RlsModuleModel;
|
|
141
|
-
databaseSetting: import("../orm").DatabaseSettingModel;
|
|
142
141
|
plansModule: import("../orm").PlansModuleModel;
|
|
143
142
|
sqlAction: import("../orm").SqlActionModel;
|
|
143
|
+
databaseSetting: import("../orm").DatabaseSettingModel;
|
|
144
144
|
billingModule: import("../orm").BillingModuleModel;
|
|
145
145
|
astMigration: import("../orm").AstMigrationModel;
|
|
146
146
|
user: import("../orm").UserModel;
|
package/public/cli/executor.js
CHANGED
package/public/orm/index.d.ts
CHANGED
|
@@ -137,9 +137,9 @@ import { RlsSettingModel } from './models/rlsSetting';
|
|
|
137
137
|
import { AppLimitEventModel } from './models/appLimitEvent';
|
|
138
138
|
import { OrgLimitEventModel } from './models/orgLimitEvent';
|
|
139
139
|
import { RlsModuleModel } from './models/rlsModule';
|
|
140
|
-
import { DatabaseSettingModel } from './models/databaseSetting';
|
|
141
140
|
import { PlansModuleModel } from './models/plansModule';
|
|
142
141
|
import { SqlActionModel } from './models/sqlAction';
|
|
142
|
+
import { DatabaseSettingModel } from './models/databaseSetting';
|
|
143
143
|
import { BillingModuleModel } from './models/billingModule';
|
|
144
144
|
import { AstMigrationModel } from './models/astMigration';
|
|
145
145
|
import { UserModel } from './models/user';
|
|
@@ -317,9 +317,9 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
317
317
|
appLimitEvent: AppLimitEventModel;
|
|
318
318
|
orgLimitEvent: OrgLimitEventModel;
|
|
319
319
|
rlsModule: RlsModuleModel;
|
|
320
|
-
databaseSetting: DatabaseSettingModel;
|
|
321
320
|
plansModule: PlansModuleModel;
|
|
322
321
|
sqlAction: SqlActionModel;
|
|
322
|
+
databaseSetting: DatabaseSettingModel;
|
|
323
323
|
billingModule: BillingModuleModel;
|
|
324
324
|
astMigration: AstMigrationModel;
|
|
325
325
|
user: UserModel;
|
package/public/orm/index.js
CHANGED
|
@@ -160,9 +160,9 @@ const rlsSetting_1 = require("./models/rlsSetting");
|
|
|
160
160
|
const appLimitEvent_1 = require("./models/appLimitEvent");
|
|
161
161
|
const orgLimitEvent_1 = require("./models/orgLimitEvent");
|
|
162
162
|
const rlsModule_1 = require("./models/rlsModule");
|
|
163
|
-
const databaseSetting_1 = require("./models/databaseSetting");
|
|
164
163
|
const plansModule_1 = require("./models/plansModule");
|
|
165
164
|
const sqlAction_1 = require("./models/sqlAction");
|
|
165
|
+
const databaseSetting_1 = require("./models/databaseSetting");
|
|
166
166
|
const billingModule_1 = require("./models/billingModule");
|
|
167
167
|
const astMigration_1 = require("./models/astMigration");
|
|
168
168
|
const user_1 = require("./models/user");
|
|
@@ -347,9 +347,9 @@ function createClient(config) {
|
|
|
347
347
|
appLimitEvent: new appLimitEvent_1.AppLimitEventModel(client),
|
|
348
348
|
orgLimitEvent: new orgLimitEvent_1.OrgLimitEventModel(client),
|
|
349
349
|
rlsModule: new rlsModule_1.RlsModuleModel(client),
|
|
350
|
-
databaseSetting: new databaseSetting_1.DatabaseSettingModel(client),
|
|
351
350
|
plansModule: new plansModule_1.PlansModuleModel(client),
|
|
352
351
|
sqlAction: new sqlAction_1.SqlActionModel(client),
|
|
352
|
+
databaseSetting: new databaseSetting_1.DatabaseSettingModel(client),
|
|
353
353
|
billingModule: new billingModule_1.BillingModuleModel(client),
|
|
354
354
|
astMigration: new astMigration_1.AstMigrationModel(client),
|
|
355
355
|
user: new user_1.UserModel(client),
|