@constructive-sdk/cli 0.8.1 → 0.8.3
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/commands/app-level-requirement.js +2 -0
- package/admin/cli/commands/app-level.js +2 -0
- package/admin/cli/commands/app-permission.js +2 -0
- package/admin/cli/commands/invite.js +2 -0
- package/admin/cli/commands/membership-type.js +3 -0
- package/admin/cli/commands/org-chart-edge-grant.js +2 -0
- package/admin/cli/commands/org-chart-edge.js +2 -0
- package/admin/cli/commands/org-invite.js +2 -0
- package/admin/cli/commands/org-permission.js +2 -0
- package/admin/cli/commands.js +7 -7
- package/admin/cli/executor.d.ts +3 -3
- package/admin/orm/index.d.ts +6 -6
- package/admin/orm/index.js +6 -6
- package/admin/orm/input-types.d.ts +481 -386
- package/admin/orm/models/appAchievement.d.ts +1 -1
- package/admin/orm/models/appAdminGrant.d.ts +1 -1
- package/admin/orm/models/appGrant.d.ts +1 -1
- package/admin/orm/models/appLevel.d.ts +1 -1
- package/admin/orm/models/appLevelRequirement.d.ts +1 -1
- package/admin/orm/models/appLimit.d.ts +1 -1
- package/admin/orm/models/appLimitDefault.d.ts +1 -1
- package/admin/orm/models/appMembership.d.ts +1 -1
- package/admin/orm/models/appMembershipDefault.d.ts +1 -1
- package/admin/orm/models/appOwnerGrant.d.ts +1 -1
- package/admin/orm/models/appPermission.d.ts +1 -1
- package/admin/orm/models/appPermissionDefault.d.ts +1 -1
- package/admin/orm/models/appStep.d.ts +1 -1
- package/admin/orm/models/claimedInvite.d.ts +1 -1
- package/admin/orm/models/index.d.ts +3 -3
- package/admin/orm/models/index.js +7 -7
- package/admin/orm/models/invite.d.ts +1 -1
- package/admin/orm/models/membershipType.d.ts +1 -1
- package/admin/orm/models/orgAdminGrant.d.ts +1 -1
- package/admin/orm/models/orgChartEdge.d.ts +1 -1
- package/admin/orm/models/orgChartEdgeGrant.d.ts +1 -1
- package/admin/orm/models/orgClaimedInvite.d.ts +1 -1
- package/admin/orm/models/orgGetManagersRecord.d.ts +1 -1
- package/admin/orm/models/orgGetSubordinatesRecord.d.ts +1 -1
- package/admin/orm/models/orgGrant.d.ts +1 -1
- package/admin/orm/models/orgInvite.d.ts +1 -1
- package/admin/orm/models/orgLimit.d.ts +1 -1
- package/admin/orm/models/orgLimitDefault.d.ts +1 -1
- package/admin/orm/models/orgMember.d.ts +1 -1
- package/admin/orm/models/orgMembership.d.ts +1 -1
- package/admin/orm/models/orgMembershipDefault.d.ts +1 -1
- package/admin/orm/models/orgOwnerGrant.d.ts +1 -1
- package/admin/orm/models/orgPermission.d.ts +1 -1
- package/admin/orm/models/orgPermissionDefault.d.ts +1 -1
- package/admin/orm/query-builder.js +0 -2
- package/auth/cli/commands/audit-log.js +2 -0
- package/auth/cli/commands/connected-account.js +3 -0
- package/auth/cli/commands/crypto-address.js +2 -0
- package/auth/cli/commands/phone-number.js +3 -0
- package/auth/cli/commands/user.js +2 -4
- package/auth/cli/commands.js +3 -3
- package/auth/cli/executor.d.ts +1 -1
- package/auth/orm/index.d.ts +2 -2
- package/auth/orm/index.js +2 -2
- package/auth/orm/input-types.d.ts +189 -99
- package/auth/orm/models/auditLog.d.ts +1 -1
- package/auth/orm/models/connectedAccount.d.ts +1 -1
- package/auth/orm/models/cryptoAddress.d.ts +1 -1
- package/auth/orm/models/email.d.ts +1 -1
- package/auth/orm/models/index.d.ts +1 -1
- package/auth/orm/models/index.js +3 -3
- package/auth/orm/models/phoneNumber.d.ts +1 -1
- package/auth/orm/models/roleType.d.ts +1 -1
- package/auth/orm/models/user.d.ts +1 -1
- package/auth/orm/query-builder.js +0 -2
- package/esm/admin/cli/commands/app-level-requirement.js +2 -0
- package/esm/admin/cli/commands/app-level.js +2 -0
- package/esm/admin/cli/commands/app-permission.js +2 -0
- package/esm/admin/cli/commands/invite.js +2 -0
- package/esm/admin/cli/commands/membership-type.js +3 -0
- package/esm/admin/cli/commands/org-chart-edge-grant.js +2 -0
- package/esm/admin/cli/commands/org-chart-edge.js +2 -0
- package/esm/admin/cli/commands/org-invite.js +2 -0
- package/esm/admin/cli/commands/org-permission.js +2 -0
- package/esm/admin/cli/commands.js +7 -7
- package/esm/admin/cli/executor.d.ts +3 -3
- package/esm/admin/orm/index.d.ts +6 -6
- package/esm/admin/orm/index.js +6 -6
- package/esm/admin/orm/input-types.d.ts +481 -386
- package/esm/admin/orm/models/appAchievement.d.ts +1 -1
- package/esm/admin/orm/models/appAdminGrant.d.ts +1 -1
- package/esm/admin/orm/models/appGrant.d.ts +1 -1
- package/esm/admin/orm/models/appLevel.d.ts +1 -1
- package/esm/admin/orm/models/appLevelRequirement.d.ts +1 -1
- package/esm/admin/orm/models/appLimit.d.ts +1 -1
- package/esm/admin/orm/models/appLimitDefault.d.ts +1 -1
- package/esm/admin/orm/models/appMembership.d.ts +1 -1
- package/esm/admin/orm/models/appMembershipDefault.d.ts +1 -1
- package/esm/admin/orm/models/appOwnerGrant.d.ts +1 -1
- package/esm/admin/orm/models/appPermission.d.ts +1 -1
- package/esm/admin/orm/models/appPermissionDefault.d.ts +1 -1
- package/esm/admin/orm/models/appStep.d.ts +1 -1
- package/esm/admin/orm/models/claimedInvite.d.ts +1 -1
- package/esm/admin/orm/models/index.d.ts +3 -3
- package/esm/admin/orm/models/index.js +3 -3
- package/esm/admin/orm/models/invite.d.ts +1 -1
- package/esm/admin/orm/models/membershipType.d.ts +1 -1
- package/esm/admin/orm/models/orgAdminGrant.d.ts +1 -1
- package/esm/admin/orm/models/orgChartEdge.d.ts +1 -1
- package/esm/admin/orm/models/orgChartEdgeGrant.d.ts +1 -1
- package/esm/admin/orm/models/orgClaimedInvite.d.ts +1 -1
- package/esm/admin/orm/models/orgGetManagersRecord.d.ts +1 -1
- package/esm/admin/orm/models/orgGetSubordinatesRecord.d.ts +1 -1
- package/esm/admin/orm/models/orgGrant.d.ts +1 -1
- package/esm/admin/orm/models/orgInvite.d.ts +1 -1
- package/esm/admin/orm/models/orgLimit.d.ts +1 -1
- package/esm/admin/orm/models/orgLimitDefault.d.ts +1 -1
- package/esm/admin/orm/models/orgMember.d.ts +1 -1
- package/esm/admin/orm/models/orgMembership.d.ts +1 -1
- package/esm/admin/orm/models/orgMembershipDefault.d.ts +1 -1
- package/esm/admin/orm/models/orgOwnerGrant.d.ts +1 -1
- package/esm/admin/orm/models/orgPermission.d.ts +1 -1
- package/esm/admin/orm/models/orgPermissionDefault.d.ts +1 -1
- package/esm/admin/orm/query-builder.js +0 -2
- package/esm/auth/cli/commands/audit-log.js +2 -0
- package/esm/auth/cli/commands/connected-account.js +3 -0
- package/esm/auth/cli/commands/crypto-address.js +2 -0
- package/esm/auth/cli/commands/phone-number.js +3 -0
- package/esm/auth/cli/commands/user.js +2 -4
- package/esm/auth/cli/commands.js +3 -3
- package/esm/auth/cli/executor.d.ts +1 -1
- package/esm/auth/orm/index.d.ts +2 -2
- package/esm/auth/orm/index.js +2 -2
- package/esm/auth/orm/input-types.d.ts +189 -99
- package/esm/auth/orm/models/auditLog.d.ts +1 -1
- package/esm/auth/orm/models/connectedAccount.d.ts +1 -1
- package/esm/auth/orm/models/cryptoAddress.d.ts +1 -1
- package/esm/auth/orm/models/email.d.ts +1 -1
- package/esm/auth/orm/models/index.d.ts +1 -1
- package/esm/auth/orm/models/index.js +1 -1
- package/esm/auth/orm/models/phoneNumber.d.ts +1 -1
- package/esm/auth/orm/models/roleType.d.ts +1 -1
- package/esm/auth/orm/models/user.d.ts +1 -1
- package/esm/auth/orm/query-builder.js +0 -2
- package/esm/objects/cli/commands/commit.js +2 -0
- package/esm/objects/cli/commands/object.js +0 -4
- package/esm/objects/cli/commands/ref.js +2 -0
- package/esm/objects/cli/commands/store.js +2 -0
- package/esm/objects/orm/input-types.d.ts +33 -3
- package/esm/objects/orm/models/commit.d.ts +1 -1
- package/esm/objects/orm/models/getAllRecord.d.ts +1 -1
- package/esm/objects/orm/models/object.d.ts +1 -1
- package/esm/objects/orm/models/ref.d.ts +1 -1
- package/esm/objects/orm/models/store.d.ts +1 -1
- package/esm/objects/orm/query-builder.js +0 -2
- package/esm/public/cli/commands/api-module.js +2 -0
- package/esm/public/cli/commands/api.js +5 -0
- package/esm/public/cli/commands/app-level-requirement.js +2 -0
- package/esm/public/cli/commands/app-level.js +2 -0
- package/esm/public/cli/commands/app-permission.js +2 -0
- package/esm/public/cli/commands/app.js +4 -0
- package/esm/public/cli/commands/ast-migration.js +2 -0
- package/esm/public/cli/commands/audit-log.js +2 -0
- package/esm/public/cli/commands/check-constraint.js +4 -0
- package/esm/public/cli/commands/commit.js +2 -0
- package/esm/public/cli/commands/connected-account.js +3 -0
- package/esm/public/cli/commands/connected-accounts-module.js +2 -0
- package/esm/public/cli/commands/crypto-address.js +2 -0
- package/esm/public/cli/commands/crypto-addresses-module.js +3 -0
- package/esm/public/cli/commands/crypto-auth-module.js +7 -0
- package/esm/public/cli/commands/database-provision-module.js +6 -0
- package/esm/public/cli/commands/database.js +4 -0
- package/esm/public/cli/commands/default-privilege.js +4 -0
- package/esm/public/cli/commands/denormalized-table-field.js +2 -0
- package/esm/public/cli/commands/emails-module.js +2 -0
- package/esm/public/cli/commands/encrypted-secrets-module.js +2 -0
- package/esm/public/cli/commands/field-module.js +2 -0
- package/esm/public/cli/commands/field.js +7 -0
- package/esm/public/cli/commands/foreign-key-constraint.js +7 -0
- package/esm/public/cli/commands/hierarchy-module.js +11 -0
- package/esm/public/cli/commands/index.js +46 -0
- package/esm/public/cli/commands/invite.js +2 -0
- package/esm/public/cli/commands/invites-module.js +5 -0
- package/esm/public/cli/commands/levels-module.js +16 -0
- package/esm/public/cli/commands/limits-module.js +10 -0
- package/esm/public/cli/commands/membership-type.js +3 -0
- package/esm/public/cli/commands/membership-types-module.js +2 -0
- package/esm/public/cli/commands/memberships-module.js +13 -0
- package/esm/public/cli/commands/node-type-registry.js +6 -0
- package/esm/public/cli/commands/object.js +0 -4
- package/esm/public/cli/commands/org-chart-edge-grant.js +2 -0
- package/esm/public/cli/commands/org-chart-edge.js +2 -0
- package/esm/public/cli/commands/org-invite.js +2 -0
- package/esm/public/cli/commands/org-permission.js +2 -0
- package/esm/public/cli/commands/permissions-module.js +8 -0
- package/esm/public/cli/commands/phone-number.js +3 -0
- package/esm/public/cli/commands/phone-numbers-module.js +2 -0
- package/esm/public/cli/commands/policy.js +6 -0
- package/esm/public/cli/commands/primary-key-constraint.js +4 -0
- package/esm/public/cli/commands/profiles-module.js +6 -0
- package/esm/public/cli/commands/ref.js +2 -0
- package/esm/public/cli/commands/relation-provision.js +11 -0
- package/esm/public/cli/commands/rls-module.js +5 -21
- package/esm/public/cli/commands/schema-grant.js +2 -0
- package/esm/public/cli/commands/schema.js +6 -0
- package/esm/public/cli/commands/secrets-module.js +2 -0
- package/esm/public/cli/commands/secure-table-provision.js +27 -0
- package/esm/public/cli/commands/sessions-module.js +4 -0
- package/esm/public/cli/commands/site-metadatum.js +3 -0
- package/esm/public/cli/commands/site-module.js +2 -0
- package/esm/public/cli/commands/site.js +4 -0
- package/esm/public/cli/commands/sql-migration.js +7 -0
- package/esm/public/cli/commands/store.js +2 -0
- package/esm/public/cli/commands/table-grant.js +3 -0
- package/esm/public/cli/commands/table-template-module.js +3 -0
- package/esm/public/cli/commands/table.js +7 -0
- package/esm/public/cli/commands/trigger-function.js +3 -0
- package/esm/public/cli/commands/trigger.js +5 -0
- package/esm/public/cli/commands/unique-constraint.js +5 -0
- package/esm/public/cli/commands/user-auth-module.js +17 -0
- package/esm/public/cli/commands/user.js +2 -4
- package/esm/public/cli/commands/users-module.js +3 -0
- package/esm/public/cli/commands/uuid-module.js +3 -0
- package/esm/public/cli/commands/view-grant.js +3 -0
- package/esm/public/cli/commands/view-rule.js +4 -0
- package/esm/public/cli/commands/view.js +5 -0
- package/esm/public/cli/commands.js +15 -17
- package/esm/public/cli/executor.d.ts +11 -12
- package/esm/public/orm/index.d.ts +17 -19
- package/esm/public/orm/index.js +12 -14
- package/esm/public/orm/input-types.d.ts +2363 -927
- package/esm/public/orm/input-types.js +0 -3
- package/esm/public/orm/models/api.d.ts +1 -1
- package/esm/public/orm/models/apiModule.d.ts +1 -1
- package/esm/public/orm/models/apiSchema.d.ts +1 -1
- package/esm/public/orm/models/app.d.ts +1 -1
- package/esm/public/orm/models/appAchievement.d.ts +1 -1
- package/esm/public/orm/models/appAdminGrant.d.ts +1 -1
- package/esm/public/orm/models/appGrant.d.ts +1 -1
- package/esm/public/orm/models/appLevel.d.ts +1 -1
- package/esm/public/orm/models/appLevelRequirement.d.ts +1 -1
- package/esm/public/orm/models/appLimit.d.ts +1 -1
- package/esm/public/orm/models/appLimitDefault.d.ts +1 -1
- package/esm/public/orm/models/appMembership.d.ts +1 -1
- package/esm/public/orm/models/appMembershipDefault.d.ts +1 -1
- package/esm/public/orm/models/appOwnerGrant.d.ts +1 -1
- package/esm/public/orm/models/appPermission.d.ts +1 -1
- package/esm/public/orm/models/appPermissionDefault.d.ts +1 -1
- package/esm/public/orm/models/appStep.d.ts +1 -1
- package/esm/public/orm/models/astMigration.d.ts +1 -1
- package/esm/public/orm/models/auditLog.d.ts +1 -1
- package/esm/public/orm/models/checkConstraint.d.ts +1 -1
- package/esm/public/orm/models/claimedInvite.d.ts +1 -1
- package/esm/public/orm/models/commit.d.ts +1 -1
- package/esm/public/orm/models/connectedAccount.d.ts +1 -1
- package/esm/public/orm/models/connectedAccountsModule.d.ts +1 -1
- package/esm/public/orm/models/cryptoAddress.d.ts +1 -1
- package/esm/public/orm/models/cryptoAddressesModule.d.ts +1 -1
- package/esm/public/orm/models/cryptoAuthModule.d.ts +1 -1
- package/esm/public/orm/models/database.d.ts +1 -1
- package/esm/public/orm/models/databaseProvisionModule.d.ts +1 -1
- package/esm/public/orm/models/defaultIdsModule.d.ts +1 -1
- package/esm/public/orm/models/defaultPrivilege.d.ts +1 -1
- package/esm/public/orm/models/denormalizedTableField.d.ts +1 -1
- package/esm/public/orm/models/domain.d.ts +1 -1
- package/esm/public/orm/models/email.d.ts +1 -1
- package/esm/public/orm/models/emailsModule.d.ts +1 -1
- package/esm/public/orm/models/encryptedSecretsModule.d.ts +1 -1
- package/esm/public/orm/models/field.d.ts +1 -1
- package/esm/public/orm/models/fieldModule.d.ts +1 -1
- package/esm/public/orm/models/foreignKeyConstraint.d.ts +1 -1
- package/esm/public/orm/models/fullTextSearch.d.ts +1 -1
- package/esm/public/orm/models/getAllRecord.d.ts +1 -1
- package/esm/public/orm/models/hierarchyModule.d.ts +1 -1
- package/esm/public/orm/models/index.d.ts +6 -7
- package/esm/public/orm/models/index.js +6 -7
- package/esm/public/orm/models/indexModel.d.ts +1 -1
- package/esm/public/orm/models/invite.d.ts +1 -1
- package/esm/public/orm/models/invitesModule.d.ts +1 -1
- package/esm/public/orm/models/levelsModule.d.ts +1 -1
- package/esm/public/orm/models/limitsModule.d.ts +1 -1
- package/esm/public/orm/models/membershipType.d.ts +1 -1
- package/esm/public/orm/models/membershipTypesModule.d.ts +1 -1
- package/esm/public/orm/models/membershipsModule.d.ts +1 -1
- package/esm/public/orm/models/nodeTypeRegistry.d.ts +1 -1
- package/esm/public/orm/models/object.d.ts +1 -1
- package/esm/public/orm/models/orgAdminGrant.d.ts +1 -1
- package/esm/public/orm/models/orgChartEdge.d.ts +1 -1
- package/esm/public/orm/models/orgChartEdgeGrant.d.ts +1 -1
- package/esm/public/orm/models/orgClaimedInvite.d.ts +1 -1
- package/esm/public/orm/models/orgGetManagersRecord.d.ts +1 -1
- package/esm/public/orm/models/orgGetSubordinatesRecord.d.ts +1 -1
- package/esm/public/orm/models/orgGrant.d.ts +1 -1
- package/esm/public/orm/models/orgInvite.d.ts +1 -1
- package/esm/public/orm/models/orgLimit.d.ts +1 -1
- package/esm/public/orm/models/orgLimitDefault.d.ts +1 -1
- package/esm/public/orm/models/orgMember.d.ts +1 -1
- package/esm/public/orm/models/orgMembership.d.ts +1 -1
- package/esm/public/orm/models/orgMembershipDefault.d.ts +1 -1
- package/esm/public/orm/models/orgOwnerGrant.d.ts +1 -1
- package/esm/public/orm/models/orgPermission.d.ts +1 -1
- package/esm/public/orm/models/orgPermissionDefault.d.ts +1 -1
- package/esm/public/orm/models/permissionsModule.d.ts +1 -1
- package/esm/public/orm/models/phoneNumber.d.ts +1 -1
- package/esm/public/orm/models/phoneNumbersModule.d.ts +1 -1
- package/esm/public/orm/models/policy.d.ts +1 -1
- package/esm/public/orm/models/primaryKeyConstraint.d.ts +1 -1
- package/esm/public/orm/models/profilesModule.d.ts +1 -1
- package/esm/public/orm/models/ref.d.ts +1 -1
- package/esm/public/orm/models/relationProvision.d.ts +1 -1
- package/esm/public/orm/models/rlsModule.d.ts +1 -1
- package/esm/public/orm/models/roleType.d.ts +1 -1
- package/esm/public/orm/models/schema.d.ts +1 -1
- package/esm/public/orm/models/schemaGrant.d.ts +1 -1
- package/esm/public/orm/models/secretsModule.d.ts +1 -1
- package/esm/public/orm/models/secureTableProvision.d.ts +1 -1
- package/esm/public/orm/models/sessionsModule.d.ts +1 -1
- package/esm/public/orm/models/site.d.ts +1 -1
- package/esm/public/orm/models/siteMetadatum.d.ts +1 -1
- package/esm/public/orm/models/siteModule.d.ts +1 -1
- package/esm/public/orm/models/siteTheme.d.ts +1 -1
- package/esm/public/orm/models/sqlMigration.d.ts +1 -1
- package/esm/public/orm/models/store.d.ts +1 -1
- package/esm/public/orm/models/table.d.ts +1 -1
- package/esm/public/orm/models/tableGrant.d.ts +1 -1
- package/esm/public/orm/models/tableTemplateModule.d.ts +1 -1
- package/esm/public/orm/models/trigger.d.ts +1 -1
- package/esm/public/orm/models/triggerFunction.d.ts +1 -1
- package/esm/public/orm/models/uniqueConstraint.d.ts +1 -1
- package/esm/public/orm/models/user.d.ts +1 -1
- package/esm/public/orm/models/userAuthModule.d.ts +1 -1
- package/esm/public/orm/models/usersModule.d.ts +1 -1
- package/esm/public/orm/models/uuidModule.d.ts +1 -1
- package/esm/public/orm/models/view.d.ts +1 -1
- package/esm/public/orm/models/viewGrant.d.ts +1 -1
- package/esm/public/orm/models/viewRule.d.ts +1 -1
- package/esm/public/orm/models/viewTable.d.ts +1 -1
- package/esm/public/orm/mutation/index.d.ts +9 -9
- package/esm/public/orm/mutation/index.js +12 -12
- package/esm/public/orm/query-builder.js +0 -2
- package/objects/cli/commands/commit.js +2 -0
- package/objects/cli/commands/object.js +0 -4
- package/objects/cli/commands/ref.js +2 -0
- package/objects/cli/commands/store.js +2 -0
- package/objects/orm/input-types.d.ts +33 -3
- package/objects/orm/models/commit.d.ts +1 -1
- package/objects/orm/models/getAllRecord.d.ts +1 -1
- package/objects/orm/models/object.d.ts +1 -1
- package/objects/orm/models/ref.d.ts +1 -1
- package/objects/orm/models/store.d.ts +1 -1
- package/objects/orm/query-builder.js +0 -2
- package/package.json +3 -3
- package/public/cli/commands/api-module.js +2 -0
- package/public/cli/commands/api.js +5 -0
- package/public/cli/commands/app-level-requirement.js +2 -0
- package/public/cli/commands/app-level.js +2 -0
- package/public/cli/commands/app-permission.js +2 -0
- package/public/cli/commands/app.js +4 -0
- package/public/cli/commands/ast-migration.js +2 -0
- package/public/cli/commands/audit-log.js +2 -0
- package/public/cli/commands/check-constraint.js +4 -0
- package/public/cli/commands/commit.js +2 -0
- package/public/cli/commands/connected-account.js +3 -0
- package/public/cli/commands/connected-accounts-module.js +2 -0
- package/public/cli/commands/crypto-address.js +2 -0
- package/public/cli/commands/crypto-addresses-module.js +3 -0
- package/public/cli/commands/crypto-auth-module.js +7 -0
- package/public/cli/commands/database-provision-module.js +6 -0
- package/public/cli/commands/database.js +4 -0
- package/public/cli/commands/default-privilege.js +4 -0
- package/public/cli/commands/denormalized-table-field.js +2 -0
- package/public/cli/commands/emails-module.js +2 -0
- package/public/cli/commands/encrypted-secrets-module.js +2 -0
- package/public/cli/commands/field-module.js +2 -0
- package/public/cli/commands/field.js +7 -0
- package/public/cli/commands/foreign-key-constraint.js +7 -0
- package/public/cli/commands/hierarchy-module.js +11 -0
- package/public/cli/commands/index.js +46 -0
- package/public/cli/commands/invite.js +2 -0
- package/public/cli/commands/invites-module.js +5 -0
- package/public/cli/commands/levels-module.js +16 -0
- package/public/cli/commands/limits-module.js +10 -0
- package/public/cli/commands/membership-type.js +3 -0
- package/public/cli/commands/membership-types-module.js +2 -0
- package/public/cli/commands/memberships-module.js +13 -0
- package/public/cli/commands/node-type-registry.js +6 -0
- package/public/cli/commands/object.js +0 -4
- package/public/cli/commands/org-chart-edge-grant.js +2 -0
- package/public/cli/commands/org-chart-edge.js +2 -0
- package/public/cli/commands/org-invite.js +2 -0
- package/public/cli/commands/org-permission.js +2 -0
- package/public/cli/commands/permissions-module.js +8 -0
- package/public/cli/commands/phone-number.js +3 -0
- package/public/cli/commands/phone-numbers-module.js +2 -0
- package/public/cli/commands/policy.js +6 -0
- package/public/cli/commands/primary-key-constraint.js +4 -0
- package/public/cli/commands/profiles-module.js +6 -0
- package/public/cli/commands/ref.js +2 -0
- package/public/cli/commands/relation-provision.js +11 -0
- package/public/cli/commands/rls-module.js +5 -21
- package/public/cli/commands/schema-grant.js +2 -0
- package/public/cli/commands/schema.js +6 -0
- package/public/cli/commands/secrets-module.js +2 -0
- package/public/cli/commands/secure-table-provision.js +27 -0
- package/public/cli/commands/sessions-module.js +4 -0
- package/public/cli/commands/site-metadatum.js +3 -0
- package/public/cli/commands/site-module.js +2 -0
- package/public/cli/commands/site.js +4 -0
- package/public/cli/commands/sql-migration.js +7 -0
- package/public/cli/commands/store.js +2 -0
- package/public/cli/commands/table-grant.js +3 -0
- package/public/cli/commands/table-template-module.js +3 -0
- package/public/cli/commands/table.js +7 -0
- package/public/cli/commands/trigger-function.js +3 -0
- package/public/cli/commands/trigger.js +5 -0
- package/public/cli/commands/unique-constraint.js +5 -0
- package/public/cli/commands/user-auth-module.js +17 -0
- package/public/cli/commands/user.js +2 -4
- package/public/cli/commands/users-module.js +3 -0
- package/public/cli/commands/uuid-module.js +3 -0
- package/public/cli/commands/view-grant.js +3 -0
- package/public/cli/commands/view-rule.js +4 -0
- package/public/cli/commands/view.js +5 -0
- package/public/cli/commands.js +15 -17
- package/public/cli/executor.d.ts +11 -12
- package/public/orm/index.d.ts +17 -19
- package/public/orm/index.js +12 -14
- package/public/orm/input-types.d.ts +2363 -927
- package/public/orm/input-types.js +0 -3
- package/public/orm/models/api.d.ts +1 -1
- package/public/orm/models/apiModule.d.ts +1 -1
- package/public/orm/models/apiSchema.d.ts +1 -1
- package/public/orm/models/app.d.ts +1 -1
- package/public/orm/models/appAchievement.d.ts +1 -1
- package/public/orm/models/appAdminGrant.d.ts +1 -1
- package/public/orm/models/appGrant.d.ts +1 -1
- package/public/orm/models/appLevel.d.ts +1 -1
- package/public/orm/models/appLevelRequirement.d.ts +1 -1
- package/public/orm/models/appLimit.d.ts +1 -1
- package/public/orm/models/appLimitDefault.d.ts +1 -1
- package/public/orm/models/appMembership.d.ts +1 -1
- package/public/orm/models/appMembershipDefault.d.ts +1 -1
- package/public/orm/models/appOwnerGrant.d.ts +1 -1
- package/public/orm/models/appPermission.d.ts +1 -1
- package/public/orm/models/appPermissionDefault.d.ts +1 -1
- package/public/orm/models/appStep.d.ts +1 -1
- package/public/orm/models/astMigration.d.ts +1 -1
- package/public/orm/models/auditLog.d.ts +1 -1
- package/public/orm/models/checkConstraint.d.ts +1 -1
- package/public/orm/models/claimedInvite.d.ts +1 -1
- package/public/orm/models/commit.d.ts +1 -1
- package/public/orm/models/connectedAccount.d.ts +1 -1
- package/public/orm/models/connectedAccountsModule.d.ts +1 -1
- package/public/orm/models/cryptoAddress.d.ts +1 -1
- package/public/orm/models/cryptoAddressesModule.d.ts +1 -1
- package/public/orm/models/cryptoAuthModule.d.ts +1 -1
- package/public/orm/models/database.d.ts +1 -1
- package/public/orm/models/databaseProvisionModule.d.ts +1 -1
- package/public/orm/models/defaultIdsModule.d.ts +1 -1
- package/public/orm/models/defaultPrivilege.d.ts +1 -1
- package/public/orm/models/denormalizedTableField.d.ts +1 -1
- package/public/orm/models/domain.d.ts +1 -1
- package/public/orm/models/email.d.ts +1 -1
- package/public/orm/models/emailsModule.d.ts +1 -1
- package/public/orm/models/encryptedSecretsModule.d.ts +1 -1
- package/public/orm/models/field.d.ts +1 -1
- package/public/orm/models/fieldModule.d.ts +1 -1
- package/public/orm/models/foreignKeyConstraint.d.ts +1 -1
- package/public/orm/models/fullTextSearch.d.ts +1 -1
- package/public/orm/models/getAllRecord.d.ts +1 -1
- package/public/orm/models/hierarchyModule.d.ts +1 -1
- package/public/orm/models/index.d.ts +6 -7
- package/public/orm/models/index.js +15 -17
- package/public/orm/models/indexModel.d.ts +1 -1
- package/public/orm/models/invite.d.ts +1 -1
- package/public/orm/models/invitesModule.d.ts +1 -1
- package/public/orm/models/levelsModule.d.ts +1 -1
- package/public/orm/models/limitsModule.d.ts +1 -1
- package/public/orm/models/membershipType.d.ts +1 -1
- package/public/orm/models/membershipTypesModule.d.ts +1 -1
- package/public/orm/models/membershipsModule.d.ts +1 -1
- package/public/orm/models/nodeTypeRegistry.d.ts +1 -1
- package/public/orm/models/object.d.ts +1 -1
- package/public/orm/models/orgAdminGrant.d.ts +1 -1
- package/public/orm/models/orgChartEdge.d.ts +1 -1
- package/public/orm/models/orgChartEdgeGrant.d.ts +1 -1
- package/public/orm/models/orgClaimedInvite.d.ts +1 -1
- package/public/orm/models/orgGetManagersRecord.d.ts +1 -1
- package/public/orm/models/orgGetSubordinatesRecord.d.ts +1 -1
- package/public/orm/models/orgGrant.d.ts +1 -1
- package/public/orm/models/orgInvite.d.ts +1 -1
- package/public/orm/models/orgLimit.d.ts +1 -1
- package/public/orm/models/orgLimitDefault.d.ts +1 -1
- package/public/orm/models/orgMember.d.ts +1 -1
- package/public/orm/models/orgMembership.d.ts +1 -1
- package/public/orm/models/orgMembershipDefault.d.ts +1 -1
- package/public/orm/models/orgOwnerGrant.d.ts +1 -1
- package/public/orm/models/orgPermission.d.ts +1 -1
- package/public/orm/models/orgPermissionDefault.d.ts +1 -1
- package/public/orm/models/permissionsModule.d.ts +1 -1
- package/public/orm/models/phoneNumber.d.ts +1 -1
- package/public/orm/models/phoneNumbersModule.d.ts +1 -1
- package/public/orm/models/policy.d.ts +1 -1
- package/public/orm/models/primaryKeyConstraint.d.ts +1 -1
- package/public/orm/models/profilesModule.d.ts +1 -1
- package/public/orm/models/ref.d.ts +1 -1
- package/public/orm/models/relationProvision.d.ts +1 -1
- package/public/orm/models/rlsModule.d.ts +1 -1
- package/public/orm/models/roleType.d.ts +1 -1
- package/public/orm/models/schema.d.ts +1 -1
- package/public/orm/models/schemaGrant.d.ts +1 -1
- package/public/orm/models/secretsModule.d.ts +1 -1
- package/public/orm/models/secureTableProvision.d.ts +1 -1
- package/public/orm/models/sessionsModule.d.ts +1 -1
- package/public/orm/models/site.d.ts +1 -1
- package/public/orm/models/siteMetadatum.d.ts +1 -1
- package/public/orm/models/siteModule.d.ts +1 -1
- package/public/orm/models/siteTheme.d.ts +1 -1
- package/public/orm/models/sqlMigration.d.ts +1 -1
- package/public/orm/models/store.d.ts +1 -1
- package/public/orm/models/table.d.ts +1 -1
- package/public/orm/models/tableGrant.d.ts +1 -1
- package/public/orm/models/tableTemplateModule.d.ts +1 -1
- package/public/orm/models/trigger.d.ts +1 -1
- package/public/orm/models/triggerFunction.d.ts +1 -1
- package/public/orm/models/uniqueConstraint.d.ts +1 -1
- package/public/orm/models/user.d.ts +1 -1
- package/public/orm/models/userAuthModule.d.ts +1 -1
- package/public/orm/models/usersModule.d.ts +1 -1
- package/public/orm/models/uuidModule.d.ts +1 -1
- package/public/orm/models/view.d.ts +1 -1
- package/public/orm/models/viewGrant.d.ts +1 -1
- package/public/orm/models/viewRule.d.ts +1 -1
- package/public/orm/models/viewTable.d.ts +1 -1
- package/public/orm/mutation/index.d.ts +9 -9
- package/public/orm/mutation/index.js +12 -12
- package/public/orm/query-builder.js +0 -2
- package/esm/public/cli/commands/table-module.d.ts +0 -8
- package/esm/public/cli/commands/table-module.js +0 -354
- package/esm/public/orm/models/tableModule.d.ts +0 -56
- package/esm/public/orm/models/tableModule.js +0 -94
- package/public/cli/commands/table-module.d.ts +0 -8
- package/public/cli/commands/table-module.js +0 -356
- package/public/orm/models/tableModule.d.ts +0 -56
- package/public/orm/models/tableModule.js +0 -98
|
@@ -18,6 +18,8 @@ const fieldSchema = {
|
|
|
18
18
|
data: 'json',
|
|
19
19
|
triggers: 'string',
|
|
20
20
|
functions: 'string',
|
|
21
|
+
nodeTypeTrgmSimilarity: 'float',
|
|
22
|
+
searchScore: 'float',
|
|
21
23
|
};
|
|
22
24
|
const usage = '\nfield-module <command>\n\nCommands:\n list List all fieldModule records\n get Get a fieldModule by ID\n create Create a new fieldModule\n update Update an existing fieldModule\n delete Delete a fieldModule\n\n --help, -h Show this help message\n';
|
|
23
25
|
exports.default = async (argv, prompter, _options) => {
|
|
@@ -33,6 +33,13 @@ const fieldSchema = {
|
|
|
33
33
|
scope: 'int',
|
|
34
34
|
createdAt: 'string',
|
|
35
35
|
updatedAt: 'string',
|
|
36
|
+
nameTrgmSimilarity: 'float',
|
|
37
|
+
labelTrgmSimilarity: 'float',
|
|
38
|
+
descriptionTrgmSimilarity: 'float',
|
|
39
|
+
defaultValueTrgmSimilarity: 'float',
|
|
40
|
+
regexpTrgmSimilarity: 'float',
|
|
41
|
+
moduleTrgmSimilarity: 'float',
|
|
42
|
+
searchScore: 'float',
|
|
36
43
|
};
|
|
37
44
|
const usage = '\nfield <command>\n\nCommands:\n list List all field records\n get Get a field by ID\n create Create a new field\n update Update an existing field\n delete Delete a field\n\n --help, -h Show this help message\n';
|
|
38
45
|
exports.default = async (argv, prompter, _options) => {
|
|
@@ -27,6 +27,13 @@ const fieldSchema = {
|
|
|
27
27
|
tags: 'string',
|
|
28
28
|
createdAt: 'string',
|
|
29
29
|
updatedAt: 'string',
|
|
30
|
+
nameTrgmSimilarity: 'float',
|
|
31
|
+
descriptionTrgmSimilarity: 'float',
|
|
32
|
+
typeTrgmSimilarity: 'float',
|
|
33
|
+
deleteActionTrgmSimilarity: 'float',
|
|
34
|
+
updateActionTrgmSimilarity: 'float',
|
|
35
|
+
moduleTrgmSimilarity: 'float',
|
|
36
|
+
searchScore: 'float',
|
|
30
37
|
};
|
|
31
38
|
const usage = '\nforeign-key-constraint <command>\n\nCommands:\n list List all foreignKeyConstraint records\n get Get a foreignKeyConstraint by ID\n create Create a new foreignKeyConstraint\n update Update an existing foreignKeyConstraint\n delete Delete a foreignKeyConstraint\n\n --help, -h Show this help message\n';
|
|
32
39
|
exports.default = async (argv, prompter, _options) => {
|
|
@@ -29,6 +29,17 @@ const fieldSchema = {
|
|
|
29
29
|
getManagersFunction: 'string',
|
|
30
30
|
isManagerOfFunction: 'string',
|
|
31
31
|
createdAt: 'string',
|
|
32
|
+
chartEdgesTableNameTrgmSimilarity: 'float',
|
|
33
|
+
hierarchySprtTableNameTrgmSimilarity: 'float',
|
|
34
|
+
chartEdgeGrantsTableNameTrgmSimilarity: 'float',
|
|
35
|
+
prefixTrgmSimilarity: 'float',
|
|
36
|
+
privateSchemaNameTrgmSimilarity: 'float',
|
|
37
|
+
sprtTableNameTrgmSimilarity: 'float',
|
|
38
|
+
rebuildHierarchyFunctionTrgmSimilarity: 'float',
|
|
39
|
+
getSubordinatesFunctionTrgmSimilarity: 'float',
|
|
40
|
+
getManagersFunctionTrgmSimilarity: 'float',
|
|
41
|
+
isManagerOfFunctionTrgmSimilarity: 'float',
|
|
42
|
+
searchScore: 'float',
|
|
32
43
|
};
|
|
33
44
|
const usage = '\nhierarchy-module <command>\n\nCommands:\n list List all hierarchyModule records\n get Get a hierarchyModule by ID\n create Create a new hierarchyModule\n update Update an existing hierarchyModule\n delete Delete a hierarchyModule\n\n --help, -h Show this help message\n';
|
|
34
45
|
exports.default = async (argv, prompter, _options) => {
|
|
@@ -19,6 +19,8 @@ const fieldSchema = {
|
|
|
19
19
|
indexParams: 'json',
|
|
20
20
|
whereClause: 'json',
|
|
21
21
|
isUnique: 'boolean',
|
|
22
|
+
options: 'json',
|
|
23
|
+
opClasses: 'string',
|
|
22
24
|
smartTags: 'json',
|
|
23
25
|
category: 'string',
|
|
24
26
|
module: 'string',
|
|
@@ -26,6 +28,10 @@ const fieldSchema = {
|
|
|
26
28
|
tags: 'string',
|
|
27
29
|
createdAt: 'string',
|
|
28
30
|
updatedAt: 'string',
|
|
31
|
+
nameTrgmSimilarity: 'float',
|
|
32
|
+
accessMethodTrgmSimilarity: 'float',
|
|
33
|
+
moduleTrgmSimilarity: 'float',
|
|
34
|
+
searchScore: 'float',
|
|
29
35
|
};
|
|
30
36
|
const usage = '\nindex <command>\n\nCommands:\n list List all index records\n get Get a index by ID\n create Create a new index\n update Update an existing index\n delete Delete a index\n\n --help, -h Show this help message\n';
|
|
31
37
|
exports.default = async (argv, prompter, _options) => {
|
|
@@ -80,6 +86,8 @@ async function handleList(_argv, _prompter) {
|
|
|
80
86
|
indexParams: true,
|
|
81
87
|
whereClause: true,
|
|
82
88
|
isUnique: true,
|
|
89
|
+
options: true,
|
|
90
|
+
opClasses: true,
|
|
83
91
|
smartTags: true,
|
|
84
92
|
category: true,
|
|
85
93
|
module: true,
|
|
@@ -125,6 +133,8 @@ async function handleGet(argv, prompter) {
|
|
|
125
133
|
indexParams: true,
|
|
126
134
|
whereClause: true,
|
|
127
135
|
isUnique: true,
|
|
136
|
+
options: true,
|
|
137
|
+
opClasses: true,
|
|
128
138
|
smartTags: true,
|
|
129
139
|
category: true,
|
|
130
140
|
module: true,
|
|
@@ -209,6 +219,20 @@ async function handleCreate(argv, prompter) {
|
|
|
209
219
|
required: false,
|
|
210
220
|
skipPrompt: true,
|
|
211
221
|
},
|
|
222
|
+
{
|
|
223
|
+
type: 'json',
|
|
224
|
+
name: 'options',
|
|
225
|
+
message: 'options',
|
|
226
|
+
required: false,
|
|
227
|
+
skipPrompt: true,
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
type: 'text',
|
|
231
|
+
name: 'opClasses',
|
|
232
|
+
message: 'opClasses',
|
|
233
|
+
required: false,
|
|
234
|
+
skipPrompt: true,
|
|
235
|
+
},
|
|
212
236
|
{
|
|
213
237
|
type: 'json',
|
|
214
238
|
name: 'smartTags',
|
|
@@ -260,6 +284,8 @@ async function handleCreate(argv, prompter) {
|
|
|
260
284
|
indexParams: cleanedData.indexParams,
|
|
261
285
|
whereClause: cleanedData.whereClause,
|
|
262
286
|
isUnique: cleanedData.isUnique,
|
|
287
|
+
options: cleanedData.options,
|
|
288
|
+
opClasses: cleanedData.opClasses,
|
|
263
289
|
smartTags: cleanedData.smartTags,
|
|
264
290
|
category: cleanedData.category,
|
|
265
291
|
module: cleanedData.module,
|
|
@@ -277,6 +303,8 @@ async function handleCreate(argv, prompter) {
|
|
|
277
303
|
indexParams: true,
|
|
278
304
|
whereClause: true,
|
|
279
305
|
isUnique: true,
|
|
306
|
+
options: true,
|
|
307
|
+
opClasses: true,
|
|
280
308
|
smartTags: true,
|
|
281
309
|
category: true,
|
|
282
310
|
module: true,
|
|
@@ -367,6 +395,20 @@ async function handleUpdate(argv, prompter) {
|
|
|
367
395
|
required: false,
|
|
368
396
|
skipPrompt: true,
|
|
369
397
|
},
|
|
398
|
+
{
|
|
399
|
+
type: 'json',
|
|
400
|
+
name: 'options',
|
|
401
|
+
message: 'options',
|
|
402
|
+
required: false,
|
|
403
|
+
skipPrompt: true,
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
type: 'text',
|
|
407
|
+
name: 'opClasses',
|
|
408
|
+
message: 'opClasses',
|
|
409
|
+
required: false,
|
|
410
|
+
skipPrompt: true,
|
|
411
|
+
},
|
|
370
412
|
{
|
|
371
413
|
type: 'json',
|
|
372
414
|
name: 'smartTags',
|
|
@@ -421,6 +463,8 @@ async function handleUpdate(argv, prompter) {
|
|
|
421
463
|
indexParams: cleanedData.indexParams,
|
|
422
464
|
whereClause: cleanedData.whereClause,
|
|
423
465
|
isUnique: cleanedData.isUnique,
|
|
466
|
+
options: cleanedData.options,
|
|
467
|
+
opClasses: cleanedData.opClasses,
|
|
424
468
|
smartTags: cleanedData.smartTags,
|
|
425
469
|
category: cleanedData.category,
|
|
426
470
|
module: cleanedData.module,
|
|
@@ -438,6 +482,8 @@ async function handleUpdate(argv, prompter) {
|
|
|
438
482
|
indexParams: true,
|
|
439
483
|
whereClause: true,
|
|
440
484
|
isUnique: true,
|
|
485
|
+
options: true,
|
|
486
|
+
opClasses: true,
|
|
441
487
|
smartTags: true,
|
|
442
488
|
category: true,
|
|
443
489
|
module: true,
|
|
@@ -21,6 +21,8 @@ const fieldSchema = {
|
|
|
21
21
|
expiresAt: 'string',
|
|
22
22
|
createdAt: 'string',
|
|
23
23
|
updatedAt: 'string',
|
|
24
|
+
inviteTokenTrgmSimilarity: 'float',
|
|
25
|
+
searchScore: 'float',
|
|
24
26
|
};
|
|
25
27
|
const usage = '\ninvite <command>\n\nCommands:\n list List all invite records\n get Get a invite by ID\n create Create a new invite\n update Update an existing invite\n delete Delete a invite\n\n --help, -h Show this help message\n';
|
|
26
28
|
exports.default = async (argv, prompter, _options) => {
|
|
@@ -23,6 +23,11 @@ const fieldSchema = {
|
|
|
23
23
|
prefix: 'string',
|
|
24
24
|
membershipType: 'int',
|
|
25
25
|
entityTableId: 'uuid',
|
|
26
|
+
invitesTableNameTrgmSimilarity: 'float',
|
|
27
|
+
claimedInvitesTableNameTrgmSimilarity: 'float',
|
|
28
|
+
submitInviteCodeFunctionTrgmSimilarity: 'float',
|
|
29
|
+
prefixTrgmSimilarity: 'float',
|
|
30
|
+
searchScore: 'float',
|
|
26
31
|
};
|
|
27
32
|
const usage = '\ninvites-module <command>\n\nCommands:\n list List all invitesModule records\n get Get a invitesModule by ID\n create Create a new invitesModule\n update Update an existing invitesModule\n delete Delete a invitesModule\n\n --help, -h Show this help message\n';
|
|
28
33
|
exports.default = async (argv, prompter, _options) => {
|
|
@@ -35,6 +35,22 @@ const fieldSchema = {
|
|
|
35
35
|
membershipType: 'int',
|
|
36
36
|
entityTableId: 'uuid',
|
|
37
37
|
actorTableId: 'uuid',
|
|
38
|
+
stepsTableNameTrgmSimilarity: 'float',
|
|
39
|
+
achievementsTableNameTrgmSimilarity: 'float',
|
|
40
|
+
levelsTableNameTrgmSimilarity: 'float',
|
|
41
|
+
levelRequirementsTableNameTrgmSimilarity: 'float',
|
|
42
|
+
completedStepTrgmSimilarity: 'float',
|
|
43
|
+
incompletedStepTrgmSimilarity: 'float',
|
|
44
|
+
tgAchievementTrgmSimilarity: 'float',
|
|
45
|
+
tgAchievementToggleTrgmSimilarity: 'float',
|
|
46
|
+
tgAchievementToggleBooleanTrgmSimilarity: 'float',
|
|
47
|
+
tgAchievementBooleanTrgmSimilarity: 'float',
|
|
48
|
+
upsertAchievementTrgmSimilarity: 'float',
|
|
49
|
+
tgUpdateAchievementsTrgmSimilarity: 'float',
|
|
50
|
+
stepsRequiredTrgmSimilarity: 'float',
|
|
51
|
+
levelAchievedTrgmSimilarity: 'float',
|
|
52
|
+
prefixTrgmSimilarity: 'float',
|
|
53
|
+
searchScore: 'float',
|
|
38
54
|
};
|
|
39
55
|
const usage = '\nlevels-module <command>\n\nCommands:\n list List all levelsModule records\n get Get a levelsModule by ID\n create Create a new levelsModule\n update Update an existing levelsModule\n delete Delete a levelsModule\n\n --help, -h Show this help message\n';
|
|
40
56
|
exports.default = async (argv, prompter, _options) => {
|
|
@@ -27,6 +27,16 @@ const fieldSchema = {
|
|
|
27
27
|
membershipType: 'int',
|
|
28
28
|
entityTableId: 'uuid',
|
|
29
29
|
actorTableId: 'uuid',
|
|
30
|
+
tableNameTrgmSimilarity: 'float',
|
|
31
|
+
defaultTableNameTrgmSimilarity: 'float',
|
|
32
|
+
limitIncrementFunctionTrgmSimilarity: 'float',
|
|
33
|
+
limitDecrementFunctionTrgmSimilarity: 'float',
|
|
34
|
+
limitIncrementTriggerTrgmSimilarity: 'float',
|
|
35
|
+
limitDecrementTriggerTrgmSimilarity: 'float',
|
|
36
|
+
limitUpdateTriggerTrgmSimilarity: 'float',
|
|
37
|
+
limitCheckFunctionTrgmSimilarity: 'float',
|
|
38
|
+
prefixTrgmSimilarity: 'float',
|
|
39
|
+
searchScore: 'float',
|
|
30
40
|
};
|
|
31
41
|
const usage = '\nlimits-module <command>\n\nCommands:\n list List all limitsModule records\n get Get a limitsModule by ID\n create Create a new limitsModule\n update Update an existing limitsModule\n delete Delete a limitsModule\n\n --help, -h Show this help message\n';
|
|
32
42
|
exports.default = async (argv, prompter, _options) => {
|
|
@@ -13,6 +13,9 @@ const fieldSchema = {
|
|
|
13
13
|
name: 'string',
|
|
14
14
|
description: 'string',
|
|
15
15
|
prefix: 'string',
|
|
16
|
+
descriptionTrgmSimilarity: 'float',
|
|
17
|
+
prefixTrgmSimilarity: 'float',
|
|
18
|
+
searchScore: 'float',
|
|
16
19
|
};
|
|
17
20
|
const usage = '\nmembership-type <command>\n\nCommands:\n list List all membershipType records\n get Get a membershipType by ID\n create Create a new membershipType\n update Update an existing membershipType\n delete Delete a membershipType\n\n --help, -h Show this help message\n';
|
|
18
21
|
exports.default = async (argv, prompter, _options) => {
|
|
@@ -14,6 +14,8 @@ const fieldSchema = {
|
|
|
14
14
|
schemaId: 'uuid',
|
|
15
15
|
tableId: 'uuid',
|
|
16
16
|
tableName: 'string',
|
|
17
|
+
tableNameTrgmSimilarity: 'float',
|
|
18
|
+
searchScore: 'float',
|
|
17
19
|
};
|
|
18
20
|
const usage = '\nmembership-types-module <command>\n\nCommands:\n list List all membershipTypesModule records\n get Get a membershipTypesModule by ID\n create Create a new membershipTypesModule\n update Update an existing membershipTypesModule\n delete Delete a membershipTypesModule\n\n --help, -h Show this help message\n';
|
|
19
21
|
exports.default = async (argv, prompter, _options) => {
|
|
@@ -40,6 +40,19 @@ const fieldSchema = {
|
|
|
40
40
|
entityIdsByMask: 'string',
|
|
41
41
|
entityIdsByPerm: 'string',
|
|
42
42
|
entityIdsFunction: 'string',
|
|
43
|
+
membershipsTableNameTrgmSimilarity: 'float',
|
|
44
|
+
membersTableNameTrgmSimilarity: 'float',
|
|
45
|
+
membershipDefaultsTableNameTrgmSimilarity: 'float',
|
|
46
|
+
grantsTableNameTrgmSimilarity: 'float',
|
|
47
|
+
adminGrantsTableNameTrgmSimilarity: 'float',
|
|
48
|
+
ownerGrantsTableNameTrgmSimilarity: 'float',
|
|
49
|
+
prefixTrgmSimilarity: 'float',
|
|
50
|
+
actorMaskCheckTrgmSimilarity: 'float',
|
|
51
|
+
actorPermCheckTrgmSimilarity: 'float',
|
|
52
|
+
entityIdsByMaskTrgmSimilarity: 'float',
|
|
53
|
+
entityIdsByPermTrgmSimilarity: 'float',
|
|
54
|
+
entityIdsFunctionTrgmSimilarity: 'float',
|
|
55
|
+
searchScore: 'float',
|
|
43
56
|
};
|
|
44
57
|
const usage = '\nmemberships-module <command>\n\nCommands:\n list List all membershipsModule records\n get Get a membershipsModule by ID\n create Create a new membershipsModule\n update Update an existing membershipsModule\n delete Delete a membershipsModule\n\n --help, -h Show this help message\n';
|
|
45
58
|
exports.default = async (argv, prompter, _options) => {
|
|
@@ -18,6 +18,12 @@ const fieldSchema = {
|
|
|
18
18
|
tags: 'string',
|
|
19
19
|
createdAt: 'string',
|
|
20
20
|
updatedAt: 'string',
|
|
21
|
+
nameTrgmSimilarity: 'float',
|
|
22
|
+
slugTrgmSimilarity: 'float',
|
|
23
|
+
categoryTrgmSimilarity: 'float',
|
|
24
|
+
displayNameTrgmSimilarity: 'float',
|
|
25
|
+
descriptionTrgmSimilarity: 'float',
|
|
26
|
+
searchScore: 'float',
|
|
21
27
|
};
|
|
22
28
|
const usage = '\nnode-type-registry <command>\n\nCommands:\n list List all nodeTypeRegistry records\n get Get a nodeTypeRegistry by ID\n create Create a new nodeTypeRegistry\n update Update an existing nodeTypeRegistry\n delete Delete a nodeTypeRegistry\n\n --help, -h Show this help message\n';
|
|
23
29
|
exports.default = async (argv, prompter, _options) => {
|
|
@@ -61,7 +61,6 @@ async function handleList(_argv, _prompter) {
|
|
|
61
61
|
const result = await client.object
|
|
62
62
|
.findMany({
|
|
63
63
|
select: {
|
|
64
|
-
hashUuid: true,
|
|
65
64
|
id: true,
|
|
66
65
|
databaseId: true,
|
|
67
66
|
kids: true,
|
|
@@ -97,7 +96,6 @@ async function handleGet(argv, prompter) {
|
|
|
97
96
|
.findOne({
|
|
98
97
|
id: answers.id,
|
|
99
98
|
select: {
|
|
100
|
-
hashUuid: true,
|
|
101
99
|
id: true,
|
|
102
100
|
databaseId: true,
|
|
103
101
|
kids: true,
|
|
@@ -169,7 +167,6 @@ async function handleCreate(argv, prompter) {
|
|
|
169
167
|
frzn: cleanedData.frzn,
|
|
170
168
|
},
|
|
171
169
|
select: {
|
|
172
|
-
hashUuid: true,
|
|
173
170
|
id: true,
|
|
174
171
|
databaseId: true,
|
|
175
172
|
kids: true,
|
|
@@ -250,7 +247,6 @@ async function handleUpdate(argv, prompter) {
|
|
|
250
247
|
frzn: cleanedData.frzn,
|
|
251
248
|
},
|
|
252
249
|
select: {
|
|
253
|
-
hashUuid: true,
|
|
254
250
|
id: true,
|
|
255
251
|
databaseId: true,
|
|
256
252
|
kids: true,
|
|
@@ -18,6 +18,8 @@ const fieldSchema = {
|
|
|
18
18
|
positionTitle: 'string',
|
|
19
19
|
positionLevel: 'int',
|
|
20
20
|
createdAt: 'string',
|
|
21
|
+
positionTitleTrgmSimilarity: 'float',
|
|
22
|
+
searchScore: 'float',
|
|
21
23
|
};
|
|
22
24
|
const usage = '\norg-chart-edge-grant <command>\n\nCommands:\n list List all orgChartEdgeGrant records\n get Get a orgChartEdgeGrant by ID\n create Create a new orgChartEdgeGrant\n update Update an existing orgChartEdgeGrant\n delete Delete a orgChartEdgeGrant\n\n --help, -h Show this help message\n';
|
|
23
25
|
exports.default = async (argv, prompter, _options) => {
|
|
@@ -17,6 +17,8 @@ const fieldSchema = {
|
|
|
17
17
|
parentId: 'uuid',
|
|
18
18
|
positionTitle: 'string',
|
|
19
19
|
positionLevel: 'int',
|
|
20
|
+
positionTitleTrgmSimilarity: 'float',
|
|
21
|
+
searchScore: 'float',
|
|
20
22
|
};
|
|
21
23
|
const usage = '\norg-chart-edge <command>\n\nCommands:\n list List all orgChartEdge records\n get Get a orgChartEdge by ID\n create Create a new orgChartEdge\n update Update an existing orgChartEdge\n delete Delete a orgChartEdge\n\n --help, -h Show this help message\n';
|
|
22
24
|
exports.default = async (argv, prompter, _options) => {
|
|
@@ -23,6 +23,8 @@ const fieldSchema = {
|
|
|
23
23
|
createdAt: 'string',
|
|
24
24
|
updatedAt: 'string',
|
|
25
25
|
entityId: 'uuid',
|
|
26
|
+
inviteTokenTrgmSimilarity: 'float',
|
|
27
|
+
searchScore: 'float',
|
|
26
28
|
};
|
|
27
29
|
const usage = '\norg-invite <command>\n\nCommands:\n list List all orgInvite records\n get Get a orgInvite by ID\n create Create a new orgInvite\n update Update an existing orgInvite\n delete Delete a orgInvite\n\n --help, -h Show this help message\n';
|
|
28
30
|
exports.default = async (argv, prompter, _options) => {
|
|
@@ -14,6 +14,8 @@ const fieldSchema = {
|
|
|
14
14
|
bitnum: 'int',
|
|
15
15
|
bitstr: 'string',
|
|
16
16
|
description: 'string',
|
|
17
|
+
descriptionTrgmSimilarity: 'float',
|
|
18
|
+
searchScore: 'float',
|
|
17
19
|
};
|
|
18
20
|
const usage = '\norg-permission <command>\n\nCommands:\n list List all orgPermission records\n get Get a orgPermission by ID\n create Create a new orgPermission\n update Update an existing orgPermission\n delete Delete a orgPermission\n\n --help, -h Show this help message\n';
|
|
19
21
|
exports.default = async (argv, prompter, _options) => {
|
|
@@ -26,6 +26,14 @@ const fieldSchema = {
|
|
|
26
26
|
getMask: 'string',
|
|
27
27
|
getByMask: 'string',
|
|
28
28
|
getMaskByName: 'string',
|
|
29
|
+
tableNameTrgmSimilarity: 'float',
|
|
30
|
+
defaultTableNameTrgmSimilarity: 'float',
|
|
31
|
+
prefixTrgmSimilarity: 'float',
|
|
32
|
+
getPaddedMaskTrgmSimilarity: 'float',
|
|
33
|
+
getMaskTrgmSimilarity: 'float',
|
|
34
|
+
getByMaskTrgmSimilarity: 'float',
|
|
35
|
+
getMaskByNameTrgmSimilarity: 'float',
|
|
36
|
+
searchScore: 'float',
|
|
29
37
|
};
|
|
30
38
|
const usage = '\npermissions-module <command>\n\nCommands:\n list List all permissionsModule records\n get Get a permissionsModule by ID\n create Create a new permissionsModule\n update Update an existing permissionsModule\n delete Delete a permissionsModule\n\n --help, -h Show this help message\n';
|
|
31
39
|
exports.default = async (argv, prompter, _options) => {
|
|
@@ -17,6 +17,9 @@ const fieldSchema = {
|
|
|
17
17
|
isPrimary: 'boolean',
|
|
18
18
|
createdAt: 'string',
|
|
19
19
|
updatedAt: 'string',
|
|
20
|
+
ccTrgmSimilarity: 'float',
|
|
21
|
+
numberTrgmSimilarity: 'float',
|
|
22
|
+
searchScore: 'float',
|
|
20
23
|
};
|
|
21
24
|
const usage = '\nphone-number <command>\n\nCommands:\n list List all phoneNumber records\n get Get a phoneNumber by ID\n create Create a new phoneNumber\n update Update an existing phoneNumber\n delete Delete a phoneNumber\n\n --help, -h Show this help message\n';
|
|
22
25
|
exports.default = async (argv, prompter, _options) => {
|
|
@@ -16,6 +16,8 @@ const fieldSchema = {
|
|
|
16
16
|
tableId: 'uuid',
|
|
17
17
|
ownerTableId: 'uuid',
|
|
18
18
|
tableName: 'string',
|
|
19
|
+
tableNameTrgmSimilarity: 'float',
|
|
20
|
+
searchScore: 'float',
|
|
19
21
|
};
|
|
20
22
|
const usage = '\nphone-numbers-module <command>\n\nCommands:\n list List all phoneNumbersModule records\n get Get a phoneNumbersModule by ID\n create Create a new phoneNumbersModule\n update Update an existing phoneNumbersModule\n delete Delete a phoneNumbersModule\n\n --help, -h Show this help message\n';
|
|
21
23
|
exports.default = async (argv, prompter, _options) => {
|
|
@@ -26,6 +26,12 @@ const fieldSchema = {
|
|
|
26
26
|
tags: 'string',
|
|
27
27
|
createdAt: 'string',
|
|
28
28
|
updatedAt: 'string',
|
|
29
|
+
nameTrgmSimilarity: 'float',
|
|
30
|
+
granteeNameTrgmSimilarity: 'float',
|
|
31
|
+
privilegeTrgmSimilarity: 'float',
|
|
32
|
+
policyTypeTrgmSimilarity: 'float',
|
|
33
|
+
moduleTrgmSimilarity: 'float',
|
|
34
|
+
searchScore: 'float',
|
|
29
35
|
};
|
|
30
36
|
const usage = '\npolicy <command>\n\nCommands:\n list List all policy records\n get Get a policy by ID\n create Create a new policy\n update Update an existing policy\n delete Delete a policy\n\n --help, -h Show this help message\n';
|
|
31
37
|
exports.default = async (argv, prompter, _options) => {
|
|
@@ -22,6 +22,10 @@ const fieldSchema = {
|
|
|
22
22
|
tags: 'string',
|
|
23
23
|
createdAt: 'string',
|
|
24
24
|
updatedAt: 'string',
|
|
25
|
+
nameTrgmSimilarity: 'float',
|
|
26
|
+
typeTrgmSimilarity: 'float',
|
|
27
|
+
moduleTrgmSimilarity: 'float',
|
|
28
|
+
searchScore: 'float',
|
|
25
29
|
};
|
|
26
30
|
const usage = '\nprimary-key-constraint <command>\n\nCommands:\n list List all primaryKeyConstraint records\n get Get a primaryKeyConstraint by ID\n create Create a new primaryKeyConstraint\n update Update an existing primaryKeyConstraint\n delete Delete a primaryKeyConstraint\n\n --help, -h Show this help message\n';
|
|
27
31
|
exports.default = async (argv, prompter, _options) => {
|
|
@@ -27,6 +27,12 @@ const fieldSchema = {
|
|
|
27
27
|
permissionsTableId: 'uuid',
|
|
28
28
|
membershipsTableId: 'uuid',
|
|
29
29
|
prefix: 'string',
|
|
30
|
+
tableNameTrgmSimilarity: 'float',
|
|
31
|
+
profilePermissionsTableNameTrgmSimilarity: 'float',
|
|
32
|
+
profileGrantsTableNameTrgmSimilarity: 'float',
|
|
33
|
+
profileDefinitionGrantsTableNameTrgmSimilarity: 'float',
|
|
34
|
+
prefixTrgmSimilarity: 'float',
|
|
35
|
+
searchScore: 'float',
|
|
30
36
|
};
|
|
31
37
|
const usage = '\nprofiles-module <command>\n\nCommands:\n list List all profilesModule records\n get Get a profilesModule by ID\n create Create a new profilesModule\n update Update an existing profilesModule\n delete Delete a profilesModule\n\n --help, -h Show this help message\n';
|
|
32
38
|
exports.default = async (argv, prompter, _options) => {
|
|
@@ -14,6 +14,8 @@ const fieldSchema = {
|
|
|
14
14
|
databaseId: 'uuid',
|
|
15
15
|
storeId: 'uuid',
|
|
16
16
|
commitId: 'uuid',
|
|
17
|
+
nameTrgmSimilarity: 'float',
|
|
18
|
+
searchScore: 'float',
|
|
17
19
|
};
|
|
18
20
|
const usage = '\nref <command>\n\nCommands:\n list List all ref records\n get Get a ref by ID\n create Create a new ref\n update Update an existing ref\n delete Delete a ref\n\n --help, -h Show this help message\n';
|
|
19
21
|
exports.default = async (argv, prompter, _options) => {
|
|
@@ -37,6 +37,17 @@ const fieldSchema = {
|
|
|
37
37
|
outJunctionTableId: 'uuid',
|
|
38
38
|
outSourceFieldId: 'uuid',
|
|
39
39
|
outTargetFieldId: 'uuid',
|
|
40
|
+
relationTypeTrgmSimilarity: 'float',
|
|
41
|
+
fieldNameTrgmSimilarity: 'float',
|
|
42
|
+
deleteActionTrgmSimilarity: 'float',
|
|
43
|
+
junctionTableNameTrgmSimilarity: 'float',
|
|
44
|
+
sourceFieldNameTrgmSimilarity: 'float',
|
|
45
|
+
targetFieldNameTrgmSimilarity: 'float',
|
|
46
|
+
nodeTypeTrgmSimilarity: 'float',
|
|
47
|
+
policyTypeTrgmSimilarity: 'float',
|
|
48
|
+
policyRoleTrgmSimilarity: 'float',
|
|
49
|
+
policyNameTrgmSimilarity: 'float',
|
|
50
|
+
searchScore: 'float',
|
|
40
51
|
};
|
|
41
52
|
const usage = '\nrelation-provision <command>\n\nCommands:\n list List all relationProvision records\n get Get a relationProvision by ID\n create Create a new relationProvision\n update Update an existing relationProvision\n delete Delete a relationProvision\n\n --help, -h Show this help message\n';
|
|
42
53
|
exports.default = async (argv, prompter, _options) => {
|
|
@@ -11,7 +11,6 @@ const utils_1 = require("../utils");
|
|
|
11
11
|
const fieldSchema = {
|
|
12
12
|
id: 'uuid',
|
|
13
13
|
databaseId: 'uuid',
|
|
14
|
-
apiId: 'uuid',
|
|
15
14
|
schemaId: 'uuid',
|
|
16
15
|
privateSchemaId: 'uuid',
|
|
17
16
|
sessionCredentialsTableId: 'uuid',
|
|
@@ -21,6 +20,11 @@ const fieldSchema = {
|
|
|
21
20
|
authenticateStrict: 'string',
|
|
22
21
|
currentRole: 'string',
|
|
23
22
|
currentRoleId: 'string',
|
|
23
|
+
authenticateTrgmSimilarity: 'float',
|
|
24
|
+
authenticateStrictTrgmSimilarity: 'float',
|
|
25
|
+
currentRoleTrgmSimilarity: 'float',
|
|
26
|
+
currentRoleIdTrgmSimilarity: 'float',
|
|
27
|
+
searchScore: 'float',
|
|
24
28
|
};
|
|
25
29
|
const usage = '\nrls-module <command>\n\nCommands:\n list List all rlsModule records\n get Get a rlsModule by ID\n create Create a new rlsModule\n update Update an existing rlsModule\n delete Delete a rlsModule\n\n --help, -h Show this help message\n';
|
|
26
30
|
exports.default = async (argv, prompter, _options) => {
|
|
@@ -67,7 +71,6 @@ async function handleList(_argv, _prompter) {
|
|
|
67
71
|
select: {
|
|
68
72
|
id: true,
|
|
69
73
|
databaseId: true,
|
|
70
|
-
apiId: true,
|
|
71
74
|
schemaId: true,
|
|
72
75
|
privateSchemaId: true,
|
|
73
76
|
sessionCredentialsTableId: true,
|
|
@@ -107,7 +110,6 @@ async function handleGet(argv, prompter) {
|
|
|
107
110
|
select: {
|
|
108
111
|
id: true,
|
|
109
112
|
databaseId: true,
|
|
110
|
-
apiId: true,
|
|
111
113
|
schemaId: true,
|
|
112
114
|
privateSchemaId: true,
|
|
113
115
|
sessionCredentialsTableId: true,
|
|
@@ -139,13 +141,6 @@ async function handleCreate(argv, prompter) {
|
|
|
139
141
|
message: 'databaseId',
|
|
140
142
|
required: true,
|
|
141
143
|
},
|
|
142
|
-
{
|
|
143
|
-
type: 'text',
|
|
144
|
-
name: 'apiId',
|
|
145
|
-
message: 'apiId',
|
|
146
|
-
required: false,
|
|
147
|
-
skipPrompt: true,
|
|
148
|
-
},
|
|
149
144
|
{
|
|
150
145
|
type: 'text',
|
|
151
146
|
name: 'schemaId',
|
|
@@ -217,7 +212,6 @@ async function handleCreate(argv, prompter) {
|
|
|
217
212
|
.create({
|
|
218
213
|
data: {
|
|
219
214
|
databaseId: cleanedData.databaseId,
|
|
220
|
-
apiId: cleanedData.apiId,
|
|
221
215
|
schemaId: cleanedData.schemaId,
|
|
222
216
|
privateSchemaId: cleanedData.privateSchemaId,
|
|
223
217
|
sessionCredentialsTableId: cleanedData.sessionCredentialsTableId,
|
|
@@ -231,7 +225,6 @@ async function handleCreate(argv, prompter) {
|
|
|
231
225
|
select: {
|
|
232
226
|
id: true,
|
|
233
227
|
databaseId: true,
|
|
234
|
-
apiId: true,
|
|
235
228
|
schemaId: true,
|
|
236
229
|
privateSchemaId: true,
|
|
237
230
|
sessionCredentialsTableId: true,
|
|
@@ -269,13 +262,6 @@ async function handleUpdate(argv, prompter) {
|
|
|
269
262
|
message: 'databaseId',
|
|
270
263
|
required: false,
|
|
271
264
|
},
|
|
272
|
-
{
|
|
273
|
-
type: 'text',
|
|
274
|
-
name: 'apiId',
|
|
275
|
-
message: 'apiId',
|
|
276
|
-
required: false,
|
|
277
|
-
skipPrompt: true,
|
|
278
|
-
},
|
|
279
265
|
{
|
|
280
266
|
type: 'text',
|
|
281
267
|
name: 'schemaId',
|
|
@@ -350,7 +336,6 @@ async function handleUpdate(argv, prompter) {
|
|
|
350
336
|
},
|
|
351
337
|
data: {
|
|
352
338
|
databaseId: cleanedData.databaseId,
|
|
353
|
-
apiId: cleanedData.apiId,
|
|
354
339
|
schemaId: cleanedData.schemaId,
|
|
355
340
|
privateSchemaId: cleanedData.privateSchemaId,
|
|
356
341
|
sessionCredentialsTableId: cleanedData.sessionCredentialsTableId,
|
|
@@ -364,7 +349,6 @@ async function handleUpdate(argv, prompter) {
|
|
|
364
349
|
select: {
|
|
365
350
|
id: true,
|
|
366
351
|
databaseId: true,
|
|
367
|
-
apiId: true,
|
|
368
352
|
schemaId: true,
|
|
369
353
|
privateSchemaId: true,
|
|
370
354
|
sessionCredentialsTableId: true,
|
|
@@ -15,6 +15,8 @@ const fieldSchema = {
|
|
|
15
15
|
granteeName: 'string',
|
|
16
16
|
createdAt: 'string',
|
|
17
17
|
updatedAt: 'string',
|
|
18
|
+
granteeNameTrgmSimilarity: 'float',
|
|
19
|
+
searchScore: 'float',
|
|
18
20
|
};
|
|
19
21
|
const usage = '\nschema-grant <command>\n\nCommands:\n list List all schemaGrant records\n get Get a schemaGrant by ID\n create Create a new schemaGrant\n update Update an existing schemaGrant\n delete Delete a schemaGrant\n\n --help, -h Show this help message\n';
|
|
20
22
|
exports.default = async (argv, prompter, _options) => {
|
|
@@ -23,6 +23,12 @@ const fieldSchema = {
|
|
|
23
23
|
isPublic: 'boolean',
|
|
24
24
|
createdAt: 'string',
|
|
25
25
|
updatedAt: 'string',
|
|
26
|
+
nameTrgmSimilarity: 'float',
|
|
27
|
+
schemaNameTrgmSimilarity: 'float',
|
|
28
|
+
labelTrgmSimilarity: 'float',
|
|
29
|
+
descriptionTrgmSimilarity: 'float',
|
|
30
|
+
moduleTrgmSimilarity: 'float',
|
|
31
|
+
searchScore: 'float',
|
|
26
32
|
};
|
|
27
33
|
const usage = '\nschema <command>\n\nCommands:\n list List all schema records\n get Get a schema by ID\n create Create a new schema\n update Update an existing schema\n delete Delete a schema\n\n --help, -h Show this help message\n';
|
|
28
34
|
exports.default = async (argv, prompter, _options) => {
|
|
@@ -14,6 +14,8 @@ const fieldSchema = {
|
|
|
14
14
|
schemaId: 'uuid',
|
|
15
15
|
tableId: 'uuid',
|
|
16
16
|
tableName: 'string',
|
|
17
|
+
tableNameTrgmSimilarity: 'float',
|
|
18
|
+
searchScore: 'float',
|
|
17
19
|
};
|
|
18
20
|
const usage = '\nsecrets-module <command>\n\nCommands:\n list List all secretsModule records\n get Get a secretsModule by ID\n create Create a new secretsModule\n update Update an existing secretsModule\n delete Delete a secretsModule\n\n --help, -h Show this help message\n';
|
|
19
21
|
exports.default = async (argv, prompter, _options) => {
|