@constructive-sdk/cli 0.8.2 → 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
|
@@ -13,6 +13,9 @@ const fieldSchema = {
|
|
|
13
13
|
title: 'string',
|
|
14
14
|
description: 'string',
|
|
15
15
|
ogImage: 'string',
|
|
16
|
+
titleTrgmSimilarity: 'float',
|
|
17
|
+
descriptionTrgmSimilarity: 'float',
|
|
18
|
+
searchScore: 'float',
|
|
16
19
|
};
|
|
17
20
|
const usage = '\nsite-metadatum <command>\n\nCommands:\n list List all siteMetadatum records\n get Get a siteMetadatum by ID\n create Create a new siteMetadatum\n update Update an existing siteMetadatum\n delete Delete a siteMetadatum\n\n --help, -h Show this help message\n';
|
|
18
21
|
export default async (argv, prompter, _options) => {
|
|
@@ -12,6 +12,8 @@ const fieldSchema = {
|
|
|
12
12
|
siteId: 'uuid',
|
|
13
13
|
name: 'string',
|
|
14
14
|
data: 'json',
|
|
15
|
+
nameTrgmSimilarity: 'float',
|
|
16
|
+
searchScore: 'float',
|
|
15
17
|
};
|
|
16
18
|
const usage = '\nsite-module <command>\n\nCommands:\n list List all siteModule records\n get Get a siteModule by ID\n create Create a new siteModule\n update Update an existing siteModule\n delete Delete a siteModule\n\n --help, -h Show this help message\n';
|
|
17
19
|
export default async (argv, prompter, _options) => {
|
|
@@ -16,6 +16,10 @@ const fieldSchema = {
|
|
|
16
16
|
appleTouchIcon: 'string',
|
|
17
17
|
logo: 'string',
|
|
18
18
|
dbname: 'string',
|
|
19
|
+
titleTrgmSimilarity: 'float',
|
|
20
|
+
descriptionTrgmSimilarity: 'float',
|
|
21
|
+
dbnameTrgmSimilarity: 'float',
|
|
22
|
+
searchScore: 'float',
|
|
19
23
|
};
|
|
20
24
|
const usage = '\nsite <command>\n\nCommands:\n list List all site records\n get Get a site by ID\n create Create a new site\n update Update an existing site\n delete Delete a site\n\n --help, -h Show this help message\n';
|
|
21
25
|
export default async (argv, prompter, _options) => {
|
|
@@ -20,6 +20,13 @@ const fieldSchema = {
|
|
|
20
20
|
action: 'string',
|
|
21
21
|
actionId: 'uuid',
|
|
22
22
|
actorId: 'uuid',
|
|
23
|
+
nameTrgmSimilarity: 'float',
|
|
24
|
+
deployTrgmSimilarity: 'float',
|
|
25
|
+
contentTrgmSimilarity: 'float',
|
|
26
|
+
revertTrgmSimilarity: 'float',
|
|
27
|
+
verifyTrgmSimilarity: 'float',
|
|
28
|
+
actionTrgmSimilarity: 'float',
|
|
29
|
+
searchScore: 'float',
|
|
23
30
|
};
|
|
24
31
|
const usage = '\nsql-migration <command>\n\nCommands:\n list List all sqlMigration records\n create Create a new sqlMigration\n\n --help, -h Show this help message\n';
|
|
25
32
|
export default async (argv, prompter, _options) => {
|
|
@@ -12,6 +12,8 @@ const fieldSchema = {
|
|
|
12
12
|
databaseId: 'uuid',
|
|
13
13
|
hash: 'uuid',
|
|
14
14
|
createdAt: 'string',
|
|
15
|
+
nameTrgmSimilarity: 'float',
|
|
16
|
+
searchScore: 'float',
|
|
15
17
|
};
|
|
16
18
|
const usage = '\nstore <command>\n\nCommands:\n list List all store records\n get Get a store by ID\n create Create a new store\n update Update an existing store\n delete Delete a store\n\n --help, -h Show this help message\n';
|
|
17
19
|
export default async (argv, prompter, _options) => {
|
|
@@ -16,6 +16,9 @@ const fieldSchema = {
|
|
|
16
16
|
isGrant: 'boolean',
|
|
17
17
|
createdAt: 'string',
|
|
18
18
|
updatedAt: 'string',
|
|
19
|
+
privilegeTrgmSimilarity: 'float',
|
|
20
|
+
granteeNameTrgmSimilarity: 'float',
|
|
21
|
+
searchScore: 'float',
|
|
19
22
|
};
|
|
20
23
|
const usage = '\ntable-grant <command>\n\nCommands:\n list List all tableGrant records\n get Get a tableGrant by ID\n create Create a new tableGrant\n update Update an existing tableGrant\n delete Delete a tableGrant\n\n --help, -h Show this help message\n';
|
|
21
24
|
export default async (argv, prompter, _options) => {
|
|
@@ -16,6 +16,9 @@ const fieldSchema = {
|
|
|
16
16
|
tableName: 'string',
|
|
17
17
|
nodeType: 'string',
|
|
18
18
|
data: 'json',
|
|
19
|
+
tableNameTrgmSimilarity: 'float',
|
|
20
|
+
nodeTypeTrgmSimilarity: 'float',
|
|
21
|
+
searchScore: 'float',
|
|
19
22
|
};
|
|
20
23
|
const usage = '\ntable-template-module <command>\n\nCommands:\n list List all tableTemplateModule records\n get Get a tableTemplateModule by ID\n create Create a new tableTemplateModule\n update Update an existing tableTemplateModule\n delete Delete a tableTemplateModule\n\n --help, -h Show this help message\n';
|
|
21
24
|
export default async (argv, prompter, _options) => {
|
|
@@ -26,6 +26,13 @@ const fieldSchema = {
|
|
|
26
26
|
inheritsId: 'uuid',
|
|
27
27
|
createdAt: 'string',
|
|
28
28
|
updatedAt: 'string',
|
|
29
|
+
nameTrgmSimilarity: 'float',
|
|
30
|
+
labelTrgmSimilarity: 'float',
|
|
31
|
+
descriptionTrgmSimilarity: 'float',
|
|
32
|
+
moduleTrgmSimilarity: 'float',
|
|
33
|
+
pluralNameTrgmSimilarity: 'float',
|
|
34
|
+
singularNameTrgmSimilarity: 'float',
|
|
35
|
+
searchScore: 'float',
|
|
29
36
|
};
|
|
30
37
|
const usage = '\ntable <command>\n\nCommands:\n list List all table records\n get Get a table by ID\n create Create a new table\n update Update an existing table\n delete Delete a table\n\n --help, -h Show this help message\n';
|
|
31
38
|
export default async (argv, prompter, _options) => {
|
|
@@ -13,6 +13,9 @@ const fieldSchema = {
|
|
|
13
13
|
code: 'string',
|
|
14
14
|
createdAt: 'string',
|
|
15
15
|
updatedAt: 'string',
|
|
16
|
+
nameTrgmSimilarity: 'float',
|
|
17
|
+
codeTrgmSimilarity: 'float',
|
|
18
|
+
searchScore: 'float',
|
|
16
19
|
};
|
|
17
20
|
const usage = '\ntrigger-function <command>\n\nCommands:\n list List all triggerFunction records\n get Get a triggerFunction by ID\n create Create a new triggerFunction\n update Update an existing triggerFunction\n delete Delete a triggerFunction\n\n --help, -h Show this help message\n';
|
|
18
21
|
export default async (argv, prompter, _options) => {
|
|
@@ -20,6 +20,11 @@ const fieldSchema = {
|
|
|
20
20
|
tags: 'string',
|
|
21
21
|
createdAt: 'string',
|
|
22
22
|
updatedAt: 'string',
|
|
23
|
+
nameTrgmSimilarity: 'float',
|
|
24
|
+
eventTrgmSimilarity: 'float',
|
|
25
|
+
functionNameTrgmSimilarity: 'float',
|
|
26
|
+
moduleTrgmSimilarity: 'float',
|
|
27
|
+
searchScore: 'float',
|
|
23
28
|
};
|
|
24
29
|
const usage = '\ntrigger <command>\n\nCommands:\n list List all trigger records\n get Get a trigger by ID\n create Create a new trigger\n update Update an existing trigger\n delete Delete a trigger\n\n --help, -h Show this help message\n';
|
|
25
30
|
export default async (argv, prompter, _options) => {
|
|
@@ -21,6 +21,11 @@ const fieldSchema = {
|
|
|
21
21
|
tags: 'string',
|
|
22
22
|
createdAt: 'string',
|
|
23
23
|
updatedAt: 'string',
|
|
24
|
+
nameTrgmSimilarity: 'float',
|
|
25
|
+
descriptionTrgmSimilarity: 'float',
|
|
26
|
+
typeTrgmSimilarity: 'float',
|
|
27
|
+
moduleTrgmSimilarity: 'float',
|
|
28
|
+
searchScore: 'float',
|
|
24
29
|
};
|
|
25
30
|
const usage = '\nunique-constraint <command>\n\nCommands:\n list List all uniqueConstraint records\n get Get a uniqueConstraint by ID\n create Create a new uniqueConstraint\n update Update an existing uniqueConstraint\n delete Delete a uniqueConstraint\n\n --help, -h Show this help message\n';
|
|
26
31
|
export default async (argv, prompter, _options) => {
|
|
@@ -33,6 +33,23 @@ const fieldSchema = {
|
|
|
33
33
|
signInOneTimeTokenFunction: 'string',
|
|
34
34
|
oneTimeTokenFunction: 'string',
|
|
35
35
|
extendTokenExpires: 'string',
|
|
36
|
+
auditsTableNameTrgmSimilarity: 'float',
|
|
37
|
+
signInFunctionTrgmSimilarity: 'float',
|
|
38
|
+
signUpFunctionTrgmSimilarity: 'float',
|
|
39
|
+
signOutFunctionTrgmSimilarity: 'float',
|
|
40
|
+
setPasswordFunctionTrgmSimilarity: 'float',
|
|
41
|
+
resetPasswordFunctionTrgmSimilarity: 'float',
|
|
42
|
+
forgotPasswordFunctionTrgmSimilarity: 'float',
|
|
43
|
+
sendVerificationEmailFunctionTrgmSimilarity: 'float',
|
|
44
|
+
verifyEmailFunctionTrgmSimilarity: 'float',
|
|
45
|
+
verifyPasswordFunctionTrgmSimilarity: 'float',
|
|
46
|
+
checkPasswordFunctionTrgmSimilarity: 'float',
|
|
47
|
+
sendAccountDeletionEmailFunctionTrgmSimilarity: 'float',
|
|
48
|
+
deleteAccountFunctionTrgmSimilarity: 'float',
|
|
49
|
+
signInOneTimeTokenFunctionTrgmSimilarity: 'float',
|
|
50
|
+
oneTimeTokenFunctionTrgmSimilarity: 'float',
|
|
51
|
+
extendTokenExpiresTrgmSimilarity: 'float',
|
|
52
|
+
searchScore: 'float',
|
|
36
53
|
};
|
|
37
54
|
const usage = '\nuser-auth-module <command>\n\nCommands:\n list List all userAuthModule records\n get Get a userAuthModule by ID\n create Create a new userAuthModule\n update Update an existing userAuthModule\n delete Delete a userAuthModule\n\n --help, -h Show this help message\n';
|
|
38
55
|
export default async (argv, prompter, _options) => {
|
|
@@ -16,6 +16,8 @@ const fieldSchema = {
|
|
|
16
16
|
createdAt: 'string',
|
|
17
17
|
updatedAt: 'string',
|
|
18
18
|
searchTsvRank: 'float',
|
|
19
|
+
displayNameTrgmSimilarity: 'float',
|
|
20
|
+
searchScore: 'float',
|
|
19
21
|
};
|
|
20
22
|
const usage = '\nuser <command>\n\nCommands:\n list List all user records\n get Get a user by ID\n create Create a new user\n update Update an existing user\n delete Delete a user\n\n --help, -h Show this help message\n';
|
|
21
23
|
export default async (argv, prompter, _options) => {
|
|
@@ -68,7 +70,6 @@ async function handleList(_argv, _prompter) {
|
|
|
68
70
|
type: true,
|
|
69
71
|
createdAt: true,
|
|
70
72
|
updatedAt: true,
|
|
71
|
-
searchTsvRank: true,
|
|
72
73
|
},
|
|
73
74
|
})
|
|
74
75
|
.execute();
|
|
@@ -105,7 +106,6 @@ async function handleGet(argv, prompter) {
|
|
|
105
106
|
type: true,
|
|
106
107
|
createdAt: true,
|
|
107
108
|
updatedAt: true,
|
|
108
|
-
searchTsvRank: true,
|
|
109
109
|
},
|
|
110
110
|
})
|
|
111
111
|
.execute();
|
|
@@ -179,7 +179,6 @@ async function handleCreate(argv, prompter) {
|
|
|
179
179
|
type: true,
|
|
180
180
|
createdAt: true,
|
|
181
181
|
updatedAt: true,
|
|
182
|
-
searchTsvRank: true,
|
|
183
182
|
},
|
|
184
183
|
})
|
|
185
184
|
.execute();
|
|
@@ -262,7 +261,6 @@ async function handleUpdate(argv, prompter) {
|
|
|
262
261
|
type: true,
|
|
263
262
|
createdAt: true,
|
|
264
263
|
updatedAt: true,
|
|
265
|
-
searchTsvRank: true,
|
|
266
264
|
},
|
|
267
265
|
})
|
|
268
266
|
.execute();
|
|
@@ -14,6 +14,9 @@ const fieldSchema = {
|
|
|
14
14
|
tableName: 'string',
|
|
15
15
|
typeTableId: 'uuid',
|
|
16
16
|
typeTableName: 'string',
|
|
17
|
+
tableNameTrgmSimilarity: 'float',
|
|
18
|
+
typeTableNameTrgmSimilarity: 'float',
|
|
19
|
+
searchScore: 'float',
|
|
17
20
|
};
|
|
18
21
|
const usage = '\nusers-module <command>\n\nCommands:\n list List all usersModule records\n get Get a usersModule by ID\n create Create a new usersModule\n update Update an existing usersModule\n delete Delete a usersModule\n\n --help, -h Show this help message\n';
|
|
19
22
|
export default async (argv, prompter, _options) => {
|
|
@@ -12,6 +12,9 @@ const fieldSchema = {
|
|
|
12
12
|
schemaId: 'uuid',
|
|
13
13
|
uuidFunction: 'string',
|
|
14
14
|
uuidSeed: 'string',
|
|
15
|
+
uuidFunctionTrgmSimilarity: 'float',
|
|
16
|
+
uuidSeedTrgmSimilarity: 'float',
|
|
17
|
+
searchScore: 'float',
|
|
15
18
|
};
|
|
16
19
|
const usage = '\nuuid-module <command>\n\nCommands:\n list List all uuidModule records\n get Get a uuidModule by ID\n create Create a new uuidModule\n update Update an existing uuidModule\n delete Delete a uuidModule\n\n --help, -h Show this help message\n';
|
|
17
20
|
export default async (argv, prompter, _options) => {
|
|
@@ -14,6 +14,9 @@ const fieldSchema = {
|
|
|
14
14
|
privilege: 'string',
|
|
15
15
|
withGrantOption: 'boolean',
|
|
16
16
|
isGrant: 'boolean',
|
|
17
|
+
granteeNameTrgmSimilarity: 'float',
|
|
18
|
+
privilegeTrgmSimilarity: 'float',
|
|
19
|
+
searchScore: 'float',
|
|
17
20
|
};
|
|
18
21
|
const usage = '\nview-grant <command>\n\nCommands:\n list List all viewGrant records\n get Get a viewGrant by ID\n create Create a new viewGrant\n update Update an existing viewGrant\n delete Delete a viewGrant\n\n --help, -h Show this help message\n';
|
|
19
22
|
export default async (argv, prompter, _options) => {
|
|
@@ -13,6 +13,10 @@ const fieldSchema = {
|
|
|
13
13
|
name: 'string',
|
|
14
14
|
event: 'string',
|
|
15
15
|
action: 'string',
|
|
16
|
+
nameTrgmSimilarity: 'float',
|
|
17
|
+
eventTrgmSimilarity: 'float',
|
|
18
|
+
actionTrgmSimilarity: 'float',
|
|
19
|
+
searchScore: 'float',
|
|
16
20
|
};
|
|
17
21
|
const usage = '\nview-rule <command>\n\nCommands:\n list List all viewRule records\n get Get a viewRule by ID\n create Create a new viewRule\n update Update an existing viewRule\n delete Delete a viewRule\n\n --help, -h Show this help message\n';
|
|
18
22
|
export default async (argv, prompter, _options) => {
|
|
@@ -23,6 +23,11 @@ const fieldSchema = {
|
|
|
23
23
|
module: 'string',
|
|
24
24
|
scope: 'int',
|
|
25
25
|
tags: 'string',
|
|
26
|
+
nameTrgmSimilarity: 'float',
|
|
27
|
+
viewTypeTrgmSimilarity: 'float',
|
|
28
|
+
filterTypeTrgmSimilarity: 'float',
|
|
29
|
+
moduleTrgmSimilarity: 'float',
|
|
30
|
+
searchScore: 'float',
|
|
26
31
|
};
|
|
27
32
|
const usage = '\nview <command>\n\nCommands:\n list List all view records\n get Get a view by ID\n create Create a new view\n update Update an existing view\n delete Delete a view\n\n --help, -h Show this help message\n';
|
|
28
33
|
export default async (argv, prompter, _options) => {
|
|
@@ -30,7 +30,6 @@ import viewCmd from './commands/view';
|
|
|
30
30
|
import viewTableCmd from './commands/view-table';
|
|
31
31
|
import viewGrantCmd from './commands/view-grant';
|
|
32
32
|
import viewRuleCmd from './commands/view-rule';
|
|
33
|
-
import tableModuleCmd from './commands/table-module';
|
|
34
33
|
import tableTemplateModuleCmd from './commands/table-template-module';
|
|
35
34
|
import secureTableProvisionCmd from './commands/secure-table-provision';
|
|
36
35
|
import relationProvisionCmd from './commands/relation-provision';
|
|
@@ -62,7 +61,6 @@ import membershipsModuleCmd from './commands/memberships-module';
|
|
|
62
61
|
import permissionsModuleCmd from './commands/permissions-module';
|
|
63
62
|
import phoneNumbersModuleCmd from './commands/phone-numbers-module';
|
|
64
63
|
import profilesModuleCmd from './commands/profiles-module';
|
|
65
|
-
import rlsModuleCmd from './commands/rls-module';
|
|
66
64
|
import secretsModuleCmd from './commands/secrets-module';
|
|
67
65
|
import sessionsModuleCmd from './commands/sessions-module';
|
|
68
66
|
import userAuthModuleCmd from './commands/user-auth-module';
|
|
@@ -90,25 +88,26 @@ import orgClaimedInviteCmd from './commands/org-claimed-invite';
|
|
|
90
88
|
import refCmd from './commands/ref';
|
|
91
89
|
import storeCmd from './commands/store';
|
|
92
90
|
import appPermissionDefaultCmd from './commands/app-permission-default';
|
|
91
|
+
import cryptoAddressCmd from './commands/crypto-address';
|
|
93
92
|
import roleTypeCmd from './commands/role-type';
|
|
94
93
|
import orgPermissionDefaultCmd from './commands/org-permission-default';
|
|
95
|
-
import
|
|
94
|
+
import phoneNumberCmd from './commands/phone-number';
|
|
96
95
|
import appLimitDefaultCmd from './commands/app-limit-default';
|
|
97
96
|
import orgLimitDefaultCmd from './commands/org-limit-default';
|
|
98
97
|
import connectedAccountCmd from './commands/connected-account';
|
|
99
|
-
import phoneNumberCmd from './commands/phone-number';
|
|
100
|
-
import membershipTypeCmd from './commands/membership-type';
|
|
101
98
|
import nodeTypeRegistryCmd from './commands/node-type-registry';
|
|
99
|
+
import membershipTypeCmd from './commands/membership-type';
|
|
102
100
|
import appMembershipDefaultCmd from './commands/app-membership-default';
|
|
101
|
+
import rlsModuleCmd from './commands/rls-module';
|
|
103
102
|
import commitCmd from './commands/commit';
|
|
104
103
|
import orgMembershipDefaultCmd from './commands/org-membership-default';
|
|
105
104
|
import auditLogCmd from './commands/audit-log';
|
|
106
105
|
import appLevelCmd from './commands/app-level';
|
|
107
|
-
import emailCmd from './commands/email';
|
|
108
106
|
import sqlMigrationCmd from './commands/sql-migration';
|
|
107
|
+
import emailCmd from './commands/email';
|
|
109
108
|
import astMigrationCmd from './commands/ast-migration';
|
|
110
|
-
import userCmd from './commands/user';
|
|
111
109
|
import appMembershipCmd from './commands/app-membership';
|
|
110
|
+
import userCmd from './commands/user';
|
|
112
111
|
import hierarchyModuleCmd from './commands/hierarchy-module';
|
|
113
112
|
import currentUserIdCmd from './commands/current-user-id';
|
|
114
113
|
import currentIpAddressCmd from './commands/current-ip-address';
|
|
@@ -140,8 +139,8 @@ import confirmDeleteAccountCmd from './commands/confirm-delete-account';
|
|
|
140
139
|
import setPasswordCmd from './commands/set-password';
|
|
141
140
|
import verifyEmailCmd from './commands/verify-email';
|
|
142
141
|
import resetPasswordCmd from './commands/reset-password';
|
|
143
|
-
import removeNodeAtPathCmd from './commands/remove-node-at-path';
|
|
144
142
|
import bootstrapUserCmd from './commands/bootstrap-user';
|
|
143
|
+
import removeNodeAtPathCmd from './commands/remove-node-at-path';
|
|
145
144
|
import setDataAtPathCmd from './commands/set-data-at-path';
|
|
146
145
|
import setPropsAndCommitCmd from './commands/set-props-and-commit';
|
|
147
146
|
import provisionDatabaseWithUserCmd from './commands/provision-database-with-user';
|
|
@@ -187,7 +186,6 @@ const createCommandMap = () => ({
|
|
|
187
186
|
'view-table': viewTableCmd,
|
|
188
187
|
'view-grant': viewGrantCmd,
|
|
189
188
|
'view-rule': viewRuleCmd,
|
|
190
|
-
'table-module': tableModuleCmd,
|
|
191
189
|
'table-template-module': tableTemplateModuleCmd,
|
|
192
190
|
'secure-table-provision': secureTableProvisionCmd,
|
|
193
191
|
'relation-provision': relationProvisionCmd,
|
|
@@ -219,7 +217,6 @@ const createCommandMap = () => ({
|
|
|
219
217
|
'permissions-module': permissionsModuleCmd,
|
|
220
218
|
'phone-numbers-module': phoneNumbersModuleCmd,
|
|
221
219
|
'profiles-module': profilesModuleCmd,
|
|
222
|
-
'rls-module': rlsModuleCmd,
|
|
223
220
|
'secrets-module': secretsModuleCmd,
|
|
224
221
|
'sessions-module': sessionsModuleCmd,
|
|
225
222
|
'user-auth-module': userAuthModuleCmd,
|
|
@@ -247,25 +244,26 @@ const createCommandMap = () => ({
|
|
|
247
244
|
ref: refCmd,
|
|
248
245
|
store: storeCmd,
|
|
249
246
|
'app-permission-default': appPermissionDefaultCmd,
|
|
247
|
+
'crypto-address': cryptoAddressCmd,
|
|
250
248
|
'role-type': roleTypeCmd,
|
|
251
249
|
'org-permission-default': orgPermissionDefaultCmd,
|
|
252
|
-
'
|
|
250
|
+
'phone-number': phoneNumberCmd,
|
|
253
251
|
'app-limit-default': appLimitDefaultCmd,
|
|
254
252
|
'org-limit-default': orgLimitDefaultCmd,
|
|
255
253
|
'connected-account': connectedAccountCmd,
|
|
256
|
-
'phone-number': phoneNumberCmd,
|
|
257
|
-
'membership-type': membershipTypeCmd,
|
|
258
254
|
'node-type-registry': nodeTypeRegistryCmd,
|
|
255
|
+
'membership-type': membershipTypeCmd,
|
|
259
256
|
'app-membership-default': appMembershipDefaultCmd,
|
|
257
|
+
'rls-module': rlsModuleCmd,
|
|
260
258
|
commit: commitCmd,
|
|
261
259
|
'org-membership-default': orgMembershipDefaultCmd,
|
|
262
260
|
'audit-log': auditLogCmd,
|
|
263
261
|
'app-level': appLevelCmd,
|
|
264
|
-
email: emailCmd,
|
|
265
262
|
'sql-migration': sqlMigrationCmd,
|
|
263
|
+
email: emailCmd,
|
|
266
264
|
'ast-migration': astMigrationCmd,
|
|
267
|
-
user: userCmd,
|
|
268
265
|
'app-membership': appMembershipCmd,
|
|
266
|
+
user: userCmd,
|
|
269
267
|
'hierarchy-module': hierarchyModuleCmd,
|
|
270
268
|
'current-user-id': currentUserIdCmd,
|
|
271
269
|
'current-ip-address': currentIpAddressCmd,
|
|
@@ -297,8 +295,8 @@ const createCommandMap = () => ({
|
|
|
297
295
|
'set-password': setPasswordCmd,
|
|
298
296
|
'verify-email': verifyEmailCmd,
|
|
299
297
|
'reset-password': resetPasswordCmd,
|
|
300
|
-
'remove-node-at-path': removeNodeAtPathCmd,
|
|
301
298
|
'bootstrap-user': bootstrapUserCmd,
|
|
299
|
+
'remove-node-at-path': removeNodeAtPathCmd,
|
|
302
300
|
'set-data-at-path': setDataAtPathCmd,
|
|
303
301
|
'set-props-and-commit': setPropsAndCommitCmd,
|
|
304
302
|
'provision-database-with-user': provisionDatabaseWithUserCmd,
|
|
@@ -318,7 +316,7 @@ const createCommandMap = () => ({
|
|
|
318
316
|
'verify-password': verifyPasswordCmd,
|
|
319
317
|
'verify-totp': verifyTotpCmd,
|
|
320
318
|
});
|
|
321
|
-
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 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 table-
|
|
319
|
+
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 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 table-template-module tableTemplateModule CRUD operations\n secure-table-provision secureTableProvision CRUD operations\n relation-provision relationProvision CRUD operations\n schema-grant schemaGrant CRUD operations\n default-privilege defaultPrivilege 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 trigger-function triggerFunction CRUD operations\n api api CRUD operations\n site site CRUD operations\n app app 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 field-module fieldModule 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 uuid-module uuidModule 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-grant orgGrant CRUD operations\n org-chart-edge orgChartEdge CRUD operations\n org-chart-edge-grant orgChartEdgeGrant CRUD operations\n app-limit appLimit CRUD operations\n org-limit orgLimit CRUD operations\n app-step appStep CRUD operations\n app-achievement appAchievement CRUD operations\n invite invite CRUD operations\n claimed-invite claimedInvite CRUD operations\n org-invite orgInvite CRUD operations\n org-claimed-invite orgClaimedInvite CRUD operations\n ref ref CRUD operations\n store store CRUD operations\n app-permission-default appPermissionDefault CRUD operations\n crypto-address cryptoAddress CRUD operations\n role-type roleType CRUD operations\n org-permission-default orgPermissionDefault CRUD operations\n phone-number phoneNumber CRUD operations\n app-limit-default appLimitDefault CRUD operations\n org-limit-default orgLimitDefault CRUD operations\n connected-account connectedAccount CRUD operations\n node-type-registry nodeTypeRegistry CRUD operations\n membership-type membershipType CRUD operations\n app-membership-default appMembershipDefault CRUD operations\n rls-module rlsModule CRUD operations\n commit commit CRUD operations\n org-membership-default orgMembershipDefault CRUD operations\n audit-log auditLog CRUD operations\n app-level appLevel CRUD operations\n sql-migration sqlMigration CRUD operations\n email email CRUD operations\n ast-migration astMigration CRUD operations\n app-membership appMembership CRUD operations\n user user CRUD operations\n hierarchy-module hierarchyModule CRUD operations\n current-user-id currentUserId\n current-ip-address currentIpAddress\n current-user-agent currentUserAgent\n app-permissions-get-padded-mask appPermissionsGetPaddedMask\n org-permissions-get-padded-mask orgPermissionsGetPaddedMask\n steps-achieved stepsAchieved\n rev-parse revParse\n org-is-manager-of orgIsManagerOf\n app-permissions-get-mask appPermissionsGetMask\n org-permissions-get-mask orgPermissionsGetMask\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 sign-out signOut\n send-account-deletion-email sendAccountDeletionEmail\n check-password checkPassword\n submit-invite-code submitInviteCode\n submit-org-invite-code submitOrgInviteCode\n freeze-objects freezeObjects\n init-empty-repo initEmptyRepo\n confirm-delete-account confirmDeleteAccount\n set-password setPassword\n verify-email verifyEmail\n reset-password resetPassword\n bootstrap-user bootstrapUser\n remove-node-at-path removeNodeAtPath\n set-data-at-path setDataAtPath\n set-props-and-commit setPropsAndCommit\n provision-database-with-user provisionDatabaseWithUser\n sign-in-one-time-token signInOneTimeToken\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 sign-in signIn\n sign-up signUp\n set-field-order setFieldOrder\n one-time-token oneTimeToken\n insert-node-at-path insertNodeAtPath\n update-node-at-path updateNodeAtPath\n set-and-commit setAndCommit\n apply-rls applyRls\n forgot-password forgotPassword\n send-verification-email sendVerificationEmail\n verify-password verifyPassword\n verify-totp verifyTotp\n\n --help, -h Show this help message\n --version, -v Show version\n";
|
|
322
320
|
export const commands = async (argv, prompter, options) => {
|
|
323
321
|
if (argv.help || argv.h) {
|
|
324
322
|
console.log(usage);
|
|
@@ -24,7 +24,6 @@ export declare function getClient(contextName?: string): {
|
|
|
24
24
|
viewTable: import("..").ViewTableModel;
|
|
25
25
|
viewGrant: import("..").ViewGrantModel;
|
|
26
26
|
viewRule: import("..").ViewRuleModel;
|
|
27
|
-
tableModule: import("..").TableModuleModel;
|
|
28
27
|
tableTemplateModule: import("..").TableTemplateModuleModel;
|
|
29
28
|
secureTableProvision: import("..").SecureTableProvisionModel;
|
|
30
29
|
relationProvision: import("..").RelationProvisionModel;
|
|
@@ -56,7 +55,6 @@ export declare function getClient(contextName?: string): {
|
|
|
56
55
|
permissionsModule: import("..").PermissionsModuleModel;
|
|
57
56
|
phoneNumbersModule: import("..").PhoneNumbersModuleModel;
|
|
58
57
|
profilesModule: import("..").ProfilesModuleModel;
|
|
59
|
-
rlsModule: import("..").RlsModuleModel;
|
|
60
58
|
secretsModule: import("..").SecretsModuleModel;
|
|
61
59
|
sessionsModule: import("..").SessionsModuleModel;
|
|
62
60
|
userAuthModule: import("..").UserAuthModuleModel;
|
|
@@ -84,25 +82,26 @@ export declare function getClient(contextName?: string): {
|
|
|
84
82
|
ref: import("..").RefModel;
|
|
85
83
|
store: import("..").StoreModel;
|
|
86
84
|
appPermissionDefault: import("..").AppPermissionDefaultModel;
|
|
85
|
+
cryptoAddress: import("..").CryptoAddressModel;
|
|
87
86
|
roleType: import("..").RoleTypeModel;
|
|
88
87
|
orgPermissionDefault: import("..").OrgPermissionDefaultModel;
|
|
89
|
-
|
|
88
|
+
phoneNumber: import("..").PhoneNumberModel;
|
|
90
89
|
appLimitDefault: import("..").AppLimitDefaultModel;
|
|
91
90
|
orgLimitDefault: import("..").OrgLimitDefaultModel;
|
|
92
91
|
connectedAccount: import("..").ConnectedAccountModel;
|
|
93
|
-
phoneNumber: import("..").PhoneNumberModel;
|
|
94
|
-
membershipType: import("..").MembershipTypeModel;
|
|
95
92
|
nodeTypeRegistry: import("..").NodeTypeRegistryModel;
|
|
93
|
+
membershipType: import("..").MembershipTypeModel;
|
|
96
94
|
appMembershipDefault: import("..").AppMembershipDefaultModel;
|
|
95
|
+
rlsModule: import("..").RlsModuleModel;
|
|
97
96
|
commit: import("..").CommitModel;
|
|
98
97
|
orgMembershipDefault: import("..").OrgMembershipDefaultModel;
|
|
99
98
|
auditLog: import("..").AuditLogModel;
|
|
100
99
|
appLevel: import("..").AppLevelModel;
|
|
101
|
-
email: import("..").EmailModel;
|
|
102
100
|
sqlMigration: import("..").SqlMigrationModel;
|
|
101
|
+
email: import("..").EmailModel;
|
|
103
102
|
astMigration: import("..").AstMigrationModel;
|
|
104
|
-
user: import("..").UserModel;
|
|
105
103
|
appMembership: import("..").AppMembershipModel;
|
|
104
|
+
user: import("..").UserModel;
|
|
106
105
|
hierarchyModule: import("..").HierarchyModuleModel;
|
|
107
106
|
query: {
|
|
108
107
|
currentUserId: (options?: {
|
|
@@ -257,16 +256,16 @@ export declare function getClient(contextName?: string): {
|
|
|
257
256
|
} & import("..").StrictSelect<S, import("../orm/input-types").ResetPasswordPayloadSelect>) => import("..").QueryBuilder<{
|
|
258
257
|
resetPassword: import("..").InferSelectResult<import("../orm/input-types").ResetPasswordPayload, S> | null;
|
|
259
258
|
}>;
|
|
260
|
-
removeNodeAtPath: <S extends import("../orm/input-types").RemoveNodeAtPathPayloadSelect>(args: import("../orm/mutation").RemoveNodeAtPathVariables, options: {
|
|
261
|
-
select: S;
|
|
262
|
-
} & import("..").StrictSelect<S, import("../orm/input-types").RemoveNodeAtPathPayloadSelect>) => import("..").QueryBuilder<{
|
|
263
|
-
removeNodeAtPath: import("..").InferSelectResult<import("../orm/input-types").RemoveNodeAtPathPayload, S> | null;
|
|
264
|
-
}>;
|
|
265
259
|
bootstrapUser: <S extends import("../orm/input-types").BootstrapUserPayloadSelect>(args: import("../orm/mutation").BootstrapUserVariables, options: {
|
|
266
260
|
select: S;
|
|
267
261
|
} & import("..").StrictSelect<S, import("../orm/input-types").BootstrapUserPayloadSelect>) => import("..").QueryBuilder<{
|
|
268
262
|
bootstrapUser: import("..").InferSelectResult<import("../orm/input-types").BootstrapUserPayload, S> | null;
|
|
269
263
|
}>;
|
|
264
|
+
removeNodeAtPath: <S extends import("../orm/input-types").RemoveNodeAtPathPayloadSelect>(args: import("../orm/mutation").RemoveNodeAtPathVariables, options: {
|
|
265
|
+
select: S;
|
|
266
|
+
} & import("..").StrictSelect<S, import("../orm/input-types").RemoveNodeAtPathPayloadSelect>) => import("..").QueryBuilder<{
|
|
267
|
+
removeNodeAtPath: import("..").InferSelectResult<import("../orm/input-types").RemoveNodeAtPathPayload, S> | null;
|
|
268
|
+
}>;
|
|
270
269
|
setDataAtPath: <S extends import("../orm/input-types").SetDataAtPathPayloadSelect>(args: import("../orm/mutation").SetDataAtPathVariables, options: {
|
|
271
270
|
select: S;
|
|
272
271
|
} & import("..").StrictSelect<S, import("../orm/input-types").SetDataAtPathPayloadSelect>) => import("..").QueryBuilder<{
|
|
@@ -23,7 +23,6 @@ import { ViewModel } from './models/view';
|
|
|
23
23
|
import { ViewTableModel } from './models/viewTable';
|
|
24
24
|
import { ViewGrantModel } from './models/viewGrant';
|
|
25
25
|
import { ViewRuleModel } from './models/viewRule';
|
|
26
|
-
import { TableModuleModel } from './models/tableModule';
|
|
27
26
|
import { TableTemplateModuleModel } from './models/tableTemplateModule';
|
|
28
27
|
import { SecureTableProvisionModel } from './models/secureTableProvision';
|
|
29
28
|
import { RelationProvisionModel } from './models/relationProvision';
|
|
@@ -55,7 +54,6 @@ import { MembershipsModuleModel } from './models/membershipsModule';
|
|
|
55
54
|
import { PermissionsModuleModel } from './models/permissionsModule';
|
|
56
55
|
import { PhoneNumbersModuleModel } from './models/phoneNumbersModule';
|
|
57
56
|
import { ProfilesModuleModel } from './models/profilesModule';
|
|
58
|
-
import { RlsModuleModel } from './models/rlsModule';
|
|
59
57
|
import { SecretsModuleModel } from './models/secretsModule';
|
|
60
58
|
import { SessionsModuleModel } from './models/sessionsModule';
|
|
61
59
|
import { UserAuthModuleModel } from './models/userAuthModule';
|
|
@@ -83,25 +81,26 @@ import { OrgClaimedInviteModel } from './models/orgClaimedInvite';
|
|
|
83
81
|
import { RefModel } from './models/ref';
|
|
84
82
|
import { StoreModel } from './models/store';
|
|
85
83
|
import { AppPermissionDefaultModel } from './models/appPermissionDefault';
|
|
84
|
+
import { CryptoAddressModel } from './models/cryptoAddress';
|
|
86
85
|
import { RoleTypeModel } from './models/roleType';
|
|
87
86
|
import { OrgPermissionDefaultModel } from './models/orgPermissionDefault';
|
|
88
|
-
import {
|
|
87
|
+
import { PhoneNumberModel } from './models/phoneNumber';
|
|
89
88
|
import { AppLimitDefaultModel } from './models/appLimitDefault';
|
|
90
89
|
import { OrgLimitDefaultModel } from './models/orgLimitDefault';
|
|
91
90
|
import { ConnectedAccountModel } from './models/connectedAccount';
|
|
92
|
-
import { PhoneNumberModel } from './models/phoneNumber';
|
|
93
|
-
import { MembershipTypeModel } from './models/membershipType';
|
|
94
91
|
import { NodeTypeRegistryModel } from './models/nodeTypeRegistry';
|
|
92
|
+
import { MembershipTypeModel } from './models/membershipType';
|
|
95
93
|
import { AppMembershipDefaultModel } from './models/appMembershipDefault';
|
|
94
|
+
import { RlsModuleModel } from './models/rlsModule';
|
|
96
95
|
import { CommitModel } from './models/commit';
|
|
97
96
|
import { OrgMembershipDefaultModel } from './models/orgMembershipDefault';
|
|
98
97
|
import { AuditLogModel } from './models/auditLog';
|
|
99
98
|
import { AppLevelModel } from './models/appLevel';
|
|
100
|
-
import { EmailModel } from './models/email';
|
|
101
99
|
import { SqlMigrationModel } from './models/sqlMigration';
|
|
100
|
+
import { EmailModel } from './models/email';
|
|
102
101
|
import { AstMigrationModel } from './models/astMigration';
|
|
103
|
-
import { UserModel } from './models/user';
|
|
104
102
|
import { AppMembershipModel } from './models/appMembership';
|
|
103
|
+
import { UserModel } from './models/user';
|
|
105
104
|
import { HierarchyModuleModel } from './models/hierarchyModule';
|
|
106
105
|
export type { OrmClientConfig, QueryResult, GraphQLError, GraphQLAdapter } from './client';
|
|
107
106
|
export { GraphQLRequestError } from './client';
|
|
@@ -159,7 +158,6 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
159
158
|
viewTable: ViewTableModel;
|
|
160
159
|
viewGrant: ViewGrantModel;
|
|
161
160
|
viewRule: ViewRuleModel;
|
|
162
|
-
tableModule: TableModuleModel;
|
|
163
161
|
tableTemplateModule: TableTemplateModuleModel;
|
|
164
162
|
secureTableProvision: SecureTableProvisionModel;
|
|
165
163
|
relationProvision: RelationProvisionModel;
|
|
@@ -191,7 +189,6 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
191
189
|
permissionsModule: PermissionsModuleModel;
|
|
192
190
|
phoneNumbersModule: PhoneNumbersModuleModel;
|
|
193
191
|
profilesModule: ProfilesModuleModel;
|
|
194
|
-
rlsModule: RlsModuleModel;
|
|
195
192
|
secretsModule: SecretsModuleModel;
|
|
196
193
|
sessionsModule: SessionsModuleModel;
|
|
197
194
|
userAuthModule: UserAuthModuleModel;
|
|
@@ -219,25 +216,26 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
219
216
|
ref: RefModel;
|
|
220
217
|
store: StoreModel;
|
|
221
218
|
appPermissionDefault: AppPermissionDefaultModel;
|
|
219
|
+
cryptoAddress: CryptoAddressModel;
|
|
222
220
|
roleType: RoleTypeModel;
|
|
223
221
|
orgPermissionDefault: OrgPermissionDefaultModel;
|
|
224
|
-
|
|
222
|
+
phoneNumber: PhoneNumberModel;
|
|
225
223
|
appLimitDefault: AppLimitDefaultModel;
|
|
226
224
|
orgLimitDefault: OrgLimitDefaultModel;
|
|
227
225
|
connectedAccount: ConnectedAccountModel;
|
|
228
|
-
phoneNumber: PhoneNumberModel;
|
|
229
|
-
membershipType: MembershipTypeModel;
|
|
230
226
|
nodeTypeRegistry: NodeTypeRegistryModel;
|
|
227
|
+
membershipType: MembershipTypeModel;
|
|
231
228
|
appMembershipDefault: AppMembershipDefaultModel;
|
|
229
|
+
rlsModule: RlsModuleModel;
|
|
232
230
|
commit: CommitModel;
|
|
233
231
|
orgMembershipDefault: OrgMembershipDefaultModel;
|
|
234
232
|
auditLog: AuditLogModel;
|
|
235
233
|
appLevel: AppLevelModel;
|
|
236
|
-
email: EmailModel;
|
|
237
234
|
sqlMigration: SqlMigrationModel;
|
|
235
|
+
email: EmailModel;
|
|
238
236
|
astMigration: AstMigrationModel;
|
|
239
|
-
user: UserModel;
|
|
240
237
|
appMembership: AppMembershipModel;
|
|
238
|
+
user: UserModel;
|
|
241
239
|
hierarchyModule: HierarchyModuleModel;
|
|
242
240
|
query: {
|
|
243
241
|
currentUserId: (options?: {
|
|
@@ -392,16 +390,16 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
392
390
|
} & import("./select-types").StrictSelect<S, import("./input-types").ResetPasswordPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
393
391
|
resetPassword: import("./select-types").InferSelectResult<import("./input-types").ResetPasswordPayload, S> | null;
|
|
394
392
|
}>;
|
|
395
|
-
removeNodeAtPath: <S extends import("./input-types").RemoveNodeAtPathPayloadSelect>(args: import("./mutation").RemoveNodeAtPathVariables, options: {
|
|
396
|
-
select: S;
|
|
397
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").RemoveNodeAtPathPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
398
|
-
removeNodeAtPath: import("./select-types").InferSelectResult<import("./input-types").RemoveNodeAtPathPayload, S> | null;
|
|
399
|
-
}>;
|
|
400
393
|
bootstrapUser: <S extends import("./input-types").BootstrapUserPayloadSelect>(args: import("./mutation").BootstrapUserVariables, options: {
|
|
401
394
|
select: S;
|
|
402
395
|
} & import("./select-types").StrictSelect<S, import("./input-types").BootstrapUserPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
403
396
|
bootstrapUser: import("./select-types").InferSelectResult<import("./input-types").BootstrapUserPayload, S> | null;
|
|
404
397
|
}>;
|
|
398
|
+
removeNodeAtPath: <S extends import("./input-types").RemoveNodeAtPathPayloadSelect>(args: import("./mutation").RemoveNodeAtPathVariables, options: {
|
|
399
|
+
select: S;
|
|
400
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").RemoveNodeAtPathPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
401
|
+
removeNodeAtPath: import("./select-types").InferSelectResult<import("./input-types").RemoveNodeAtPathPayload, S> | null;
|
|
402
|
+
}>;
|
|
405
403
|
setDataAtPath: <S extends import("./input-types").SetDataAtPathPayloadSelect>(args: import("./mutation").SetDataAtPathVariables, options: {
|
|
406
404
|
select: S;
|
|
407
405
|
} & import("./select-types").StrictSelect<S, import("./input-types").SetDataAtPathPayloadSelect>) => import("./query-builder").QueryBuilder<{
|