@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
package/public/orm/index.d.ts
CHANGED
|
@@ -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<{
|
package/public/orm/index.js
CHANGED
|
@@ -46,7 +46,6 @@ const view_1 = require("./models/view");
|
|
|
46
46
|
const viewTable_1 = require("./models/viewTable");
|
|
47
47
|
const viewGrant_1 = require("./models/viewGrant");
|
|
48
48
|
const viewRule_1 = require("./models/viewRule");
|
|
49
|
-
const tableModule_1 = require("./models/tableModule");
|
|
50
49
|
const tableTemplateModule_1 = require("./models/tableTemplateModule");
|
|
51
50
|
const secureTableProvision_1 = require("./models/secureTableProvision");
|
|
52
51
|
const relationProvision_1 = require("./models/relationProvision");
|
|
@@ -78,7 +77,6 @@ const membershipsModule_1 = require("./models/membershipsModule");
|
|
|
78
77
|
const permissionsModule_1 = require("./models/permissionsModule");
|
|
79
78
|
const phoneNumbersModule_1 = require("./models/phoneNumbersModule");
|
|
80
79
|
const profilesModule_1 = require("./models/profilesModule");
|
|
81
|
-
const rlsModule_1 = require("./models/rlsModule");
|
|
82
80
|
const secretsModule_1 = require("./models/secretsModule");
|
|
83
81
|
const sessionsModule_1 = require("./models/sessionsModule");
|
|
84
82
|
const userAuthModule_1 = require("./models/userAuthModule");
|
|
@@ -106,25 +104,26 @@ const orgClaimedInvite_1 = require("./models/orgClaimedInvite");
|
|
|
106
104
|
const ref_1 = require("./models/ref");
|
|
107
105
|
const store_1 = require("./models/store");
|
|
108
106
|
const appPermissionDefault_1 = require("./models/appPermissionDefault");
|
|
107
|
+
const cryptoAddress_1 = require("./models/cryptoAddress");
|
|
109
108
|
const roleType_1 = require("./models/roleType");
|
|
110
109
|
const orgPermissionDefault_1 = require("./models/orgPermissionDefault");
|
|
111
|
-
const
|
|
110
|
+
const phoneNumber_1 = require("./models/phoneNumber");
|
|
112
111
|
const appLimitDefault_1 = require("./models/appLimitDefault");
|
|
113
112
|
const orgLimitDefault_1 = require("./models/orgLimitDefault");
|
|
114
113
|
const connectedAccount_1 = require("./models/connectedAccount");
|
|
115
|
-
const phoneNumber_1 = require("./models/phoneNumber");
|
|
116
|
-
const membershipType_1 = require("./models/membershipType");
|
|
117
114
|
const nodeTypeRegistry_1 = require("./models/nodeTypeRegistry");
|
|
115
|
+
const membershipType_1 = require("./models/membershipType");
|
|
118
116
|
const appMembershipDefault_1 = require("./models/appMembershipDefault");
|
|
117
|
+
const rlsModule_1 = require("./models/rlsModule");
|
|
119
118
|
const commit_1 = require("./models/commit");
|
|
120
119
|
const orgMembershipDefault_1 = require("./models/orgMembershipDefault");
|
|
121
120
|
const auditLog_1 = require("./models/auditLog");
|
|
122
121
|
const appLevel_1 = require("./models/appLevel");
|
|
123
|
-
const email_1 = require("./models/email");
|
|
124
122
|
const sqlMigration_1 = require("./models/sqlMigration");
|
|
123
|
+
const email_1 = require("./models/email");
|
|
125
124
|
const astMigration_1 = require("./models/astMigration");
|
|
126
|
-
const user_1 = require("./models/user");
|
|
127
125
|
const appMembership_1 = require("./models/appMembership");
|
|
126
|
+
const user_1 = require("./models/user");
|
|
128
127
|
const hierarchyModule_1 = require("./models/hierarchyModule");
|
|
129
128
|
const query_1 = require("./query");
|
|
130
129
|
const mutation_1 = require("./mutation");
|
|
@@ -190,7 +189,6 @@ function createClient(config) {
|
|
|
190
189
|
viewTable: new viewTable_1.ViewTableModel(client),
|
|
191
190
|
viewGrant: new viewGrant_1.ViewGrantModel(client),
|
|
192
191
|
viewRule: new viewRule_1.ViewRuleModel(client),
|
|
193
|
-
tableModule: new tableModule_1.TableModuleModel(client),
|
|
194
192
|
tableTemplateModule: new tableTemplateModule_1.TableTemplateModuleModel(client),
|
|
195
193
|
secureTableProvision: new secureTableProvision_1.SecureTableProvisionModel(client),
|
|
196
194
|
relationProvision: new relationProvision_1.RelationProvisionModel(client),
|
|
@@ -222,7 +220,6 @@ function createClient(config) {
|
|
|
222
220
|
permissionsModule: new permissionsModule_1.PermissionsModuleModel(client),
|
|
223
221
|
phoneNumbersModule: new phoneNumbersModule_1.PhoneNumbersModuleModel(client),
|
|
224
222
|
profilesModule: new profilesModule_1.ProfilesModuleModel(client),
|
|
225
|
-
rlsModule: new rlsModule_1.RlsModuleModel(client),
|
|
226
223
|
secretsModule: new secretsModule_1.SecretsModuleModel(client),
|
|
227
224
|
sessionsModule: new sessionsModule_1.SessionsModuleModel(client),
|
|
228
225
|
userAuthModule: new userAuthModule_1.UserAuthModuleModel(client),
|
|
@@ -250,25 +247,26 @@ function createClient(config) {
|
|
|
250
247
|
ref: new ref_1.RefModel(client),
|
|
251
248
|
store: new store_1.StoreModel(client),
|
|
252
249
|
appPermissionDefault: new appPermissionDefault_1.AppPermissionDefaultModel(client),
|
|
250
|
+
cryptoAddress: new cryptoAddress_1.CryptoAddressModel(client),
|
|
253
251
|
roleType: new roleType_1.RoleTypeModel(client),
|
|
254
252
|
orgPermissionDefault: new orgPermissionDefault_1.OrgPermissionDefaultModel(client),
|
|
255
|
-
|
|
253
|
+
phoneNumber: new phoneNumber_1.PhoneNumberModel(client),
|
|
256
254
|
appLimitDefault: new appLimitDefault_1.AppLimitDefaultModel(client),
|
|
257
255
|
orgLimitDefault: new orgLimitDefault_1.OrgLimitDefaultModel(client),
|
|
258
256
|
connectedAccount: new connectedAccount_1.ConnectedAccountModel(client),
|
|
259
|
-
phoneNumber: new phoneNumber_1.PhoneNumberModel(client),
|
|
260
|
-
membershipType: new membershipType_1.MembershipTypeModel(client),
|
|
261
257
|
nodeTypeRegistry: new nodeTypeRegistry_1.NodeTypeRegistryModel(client),
|
|
258
|
+
membershipType: new membershipType_1.MembershipTypeModel(client),
|
|
262
259
|
appMembershipDefault: new appMembershipDefault_1.AppMembershipDefaultModel(client),
|
|
260
|
+
rlsModule: new rlsModule_1.RlsModuleModel(client),
|
|
263
261
|
commit: new commit_1.CommitModel(client),
|
|
264
262
|
orgMembershipDefault: new orgMembershipDefault_1.OrgMembershipDefaultModel(client),
|
|
265
263
|
auditLog: new auditLog_1.AuditLogModel(client),
|
|
266
264
|
appLevel: new appLevel_1.AppLevelModel(client),
|
|
267
|
-
email: new email_1.EmailModel(client),
|
|
268
265
|
sqlMigration: new sqlMigration_1.SqlMigrationModel(client),
|
|
266
|
+
email: new email_1.EmailModel(client),
|
|
269
267
|
astMigration: new astMigration_1.AstMigrationModel(client),
|
|
270
|
-
user: new user_1.UserModel(client),
|
|
271
268
|
appMembership: new appMembership_1.AppMembershipModel(client),
|
|
269
|
+
user: new user_1.UserModel(client),
|
|
272
270
|
hierarchyModule: new hierarchyModule_1.HierarchyModuleModel(client),
|
|
273
271
|
query: (0, query_1.createQueryOperations)(client),
|
|
274
272
|
mutation: (0, mutation_1.createMutationOperations)(client),
|