@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
|
@@ -59,7 +59,6 @@ async function handleList(_argv, _prompter) {
|
|
|
59
59
|
const result = await client.object
|
|
60
60
|
.findMany({
|
|
61
61
|
select: {
|
|
62
|
-
hashUuid: true,
|
|
63
62
|
id: true,
|
|
64
63
|
databaseId: true,
|
|
65
64
|
kids: true,
|
|
@@ -95,7 +94,6 @@ async function handleGet(argv, prompter) {
|
|
|
95
94
|
.findOne({
|
|
96
95
|
id: answers.id,
|
|
97
96
|
select: {
|
|
98
|
-
hashUuid: true,
|
|
99
97
|
id: true,
|
|
100
98
|
databaseId: true,
|
|
101
99
|
kids: true,
|
|
@@ -167,7 +165,6 @@ async function handleCreate(argv, prompter) {
|
|
|
167
165
|
frzn: cleanedData.frzn,
|
|
168
166
|
},
|
|
169
167
|
select: {
|
|
170
|
-
hashUuid: true,
|
|
171
168
|
id: true,
|
|
172
169
|
databaseId: true,
|
|
173
170
|
kids: true,
|
|
@@ -248,7 +245,6 @@ async function handleUpdate(argv, prompter) {
|
|
|
248
245
|
frzn: cleanedData.frzn,
|
|
249
246
|
},
|
|
250
247
|
select: {
|
|
251
|
-
hashUuid: true,
|
|
252
248
|
id: true,
|
|
253
249
|
databaseId: true,
|
|
254
250
|
kids: true,
|
|
@@ -12,6 +12,8 @@ const fieldSchema = {
|
|
|
12
12
|
databaseId: 'uuid',
|
|
13
13
|
storeId: 'uuid',
|
|
14
14
|
commitId: 'uuid',
|
|
15
|
+
nameTrgmSimilarity: 'float',
|
|
16
|
+
searchScore: 'float',
|
|
15
17
|
};
|
|
16
18
|
const usage = '\nref <command>\n\nCommands:\n list List all ref records\n get Get a ref by ID\n create Create a new ref\n update Update an existing ref\n delete Delete a ref\n\n --help, -h Show this help message\n';
|
|
17
19
|
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) => {
|
|
@@ -252,6 +252,10 @@ export interface Ref {
|
|
|
252
252
|
databaseId?: string | null;
|
|
253
253
|
storeId?: string | null;
|
|
254
254
|
commitId?: string | null;
|
|
255
|
+
/** TRGM similarity when searching `name`. Returns null when no trgm search filter is active. */
|
|
256
|
+
nameTrgmSimilarity?: number | null;
|
|
257
|
+
/** Composite search relevance score (0..1, higher = more relevant). Computed by normalizing and averaging all active search signals. Returns null when no search filters are active. */
|
|
258
|
+
searchScore?: number | null;
|
|
255
259
|
}
|
|
256
260
|
/** A store represents an isolated object repository within a database. */
|
|
257
261
|
export interface Store {
|
|
@@ -264,6 +268,10 @@ export interface Store {
|
|
|
264
268
|
/** The current head tree_id for this store. */
|
|
265
269
|
hash?: string | null;
|
|
266
270
|
createdAt?: string | null;
|
|
271
|
+
/** TRGM similarity when searching `name`. Returns null when no trgm search filter is active. */
|
|
272
|
+
nameTrgmSimilarity?: number | null;
|
|
273
|
+
/** Composite search relevance score (0..1, higher = more relevant). Computed by normalizing and averaging all active search signals. Returns null when no search filters are active. */
|
|
274
|
+
searchScore?: number | null;
|
|
267
275
|
}
|
|
268
276
|
/** A commit records changes to the repository. */
|
|
269
277
|
export interface Commit {
|
|
@@ -283,6 +291,10 @@ export interface Commit {
|
|
|
283
291
|
/** The root of the tree */
|
|
284
292
|
treeId?: string | null;
|
|
285
293
|
date?: string | null;
|
|
294
|
+
/** TRGM similarity when searching `message`. Returns null when no trgm search filter is active. */
|
|
295
|
+
messageTrgmSimilarity?: number | null;
|
|
296
|
+
/** Composite search relevance score (0..1, higher = more relevant). Computed by normalizing and averaging all active search signals. Returns null when no search filters are active. */
|
|
297
|
+
searchScore?: number | null;
|
|
286
298
|
}
|
|
287
299
|
export interface ConnectionResult<T> {
|
|
288
300
|
nodes: T[];
|
|
@@ -330,6 +342,8 @@ export type RefSelect = {
|
|
|
330
342
|
databaseId?: boolean;
|
|
331
343
|
storeId?: boolean;
|
|
332
344
|
commitId?: boolean;
|
|
345
|
+
nameTrgmSimilarity?: boolean;
|
|
346
|
+
searchScore?: boolean;
|
|
333
347
|
};
|
|
334
348
|
export type StoreSelect = {
|
|
335
349
|
id?: boolean;
|
|
@@ -337,6 +351,8 @@ export type StoreSelect = {
|
|
|
337
351
|
databaseId?: boolean;
|
|
338
352
|
hash?: boolean;
|
|
339
353
|
createdAt?: boolean;
|
|
354
|
+
nameTrgmSimilarity?: boolean;
|
|
355
|
+
searchScore?: boolean;
|
|
340
356
|
};
|
|
341
357
|
export type CommitSelect = {
|
|
342
358
|
id?: boolean;
|
|
@@ -348,6 +364,8 @@ export type CommitSelect = {
|
|
|
348
364
|
committerId?: boolean;
|
|
349
365
|
treeId?: boolean;
|
|
350
366
|
date?: boolean;
|
|
367
|
+
messageTrgmSimilarity?: boolean;
|
|
368
|
+
searchScore?: boolean;
|
|
351
369
|
};
|
|
352
370
|
export interface GetAllRecordFilter {
|
|
353
371
|
path?: StringFilter;
|
|
@@ -375,6 +393,8 @@ export interface RefFilter {
|
|
|
375
393
|
databaseId?: UUIDFilter;
|
|
376
394
|
storeId?: UUIDFilter;
|
|
377
395
|
commitId?: UUIDFilter;
|
|
396
|
+
nameTrgmSimilarity?: FloatFilter;
|
|
397
|
+
searchScore?: FloatFilter;
|
|
378
398
|
and?: RefFilter[];
|
|
379
399
|
or?: RefFilter[];
|
|
380
400
|
not?: RefFilter;
|
|
@@ -385,6 +405,8 @@ export interface StoreFilter {
|
|
|
385
405
|
databaseId?: UUIDFilter;
|
|
386
406
|
hash?: UUIDFilter;
|
|
387
407
|
createdAt?: DatetimeFilter;
|
|
408
|
+
nameTrgmSimilarity?: FloatFilter;
|
|
409
|
+
searchScore?: FloatFilter;
|
|
388
410
|
and?: StoreFilter[];
|
|
389
411
|
or?: StoreFilter[];
|
|
390
412
|
not?: StoreFilter;
|
|
@@ -399,15 +421,17 @@ export interface CommitFilter {
|
|
|
399
421
|
committerId?: UUIDFilter;
|
|
400
422
|
treeId?: UUIDFilter;
|
|
401
423
|
date?: DatetimeFilter;
|
|
424
|
+
messageTrgmSimilarity?: FloatFilter;
|
|
425
|
+
searchScore?: FloatFilter;
|
|
402
426
|
and?: CommitFilter[];
|
|
403
427
|
or?: CommitFilter[];
|
|
404
428
|
not?: CommitFilter;
|
|
405
429
|
}
|
|
406
430
|
export type GetAllRecordsOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'PATH_ASC' | 'PATH_DESC' | 'DATA_ASC' | 'DATA_DESC';
|
|
407
431
|
export type ObjectOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'HASH_UUID_ASC' | 'HASH_UUID_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'KIDS_ASC' | 'KIDS_DESC' | 'KTREE_ASC' | 'KTREE_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'FRZN_ASC' | 'FRZN_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC';
|
|
408
|
-
export type RefOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'COMMIT_ID_ASC' | 'COMMIT_ID_DESC';
|
|
409
|
-
export type StoreOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'HASH_ASC' | 'HASH_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC';
|
|
410
|
-
export type CommitOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'PARENT_IDS_ASC' | 'PARENT_IDS_DESC' | 'AUTHOR_ID_ASC' | 'AUTHOR_ID_DESC' | 'COMMITTER_ID_ASC' | 'COMMITTER_ID_DESC' | 'TREE_ID_ASC' | 'TREE_ID_DESC' | 'DATE_ASC' | 'DATE_DESC';
|
|
432
|
+
export type RefOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'COMMIT_ID_ASC' | 'COMMIT_ID_DESC' | 'NAME_TRGM_SIMILARITY_ASC' | 'NAME_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
433
|
+
export type StoreOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'HASH_ASC' | 'HASH_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'NAME_TRGM_SIMILARITY_ASC' | 'NAME_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
434
|
+
export type CommitOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'PARENT_IDS_ASC' | 'PARENT_IDS_DESC' | 'AUTHOR_ID_ASC' | 'AUTHOR_ID_DESC' | 'COMMITTER_ID_ASC' | 'COMMITTER_ID_DESC' | 'TREE_ID_ASC' | 'TREE_ID_DESC' | 'DATE_ASC' | 'DATE_DESC' | 'MESSAGE_TRGM_SIMILARITY_ASC' | 'MESSAGE_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
411
435
|
export interface CreateGetAllRecordInput {
|
|
412
436
|
clientMutationId?: string;
|
|
413
437
|
getAllRecord: {
|
|
@@ -469,6 +493,8 @@ export interface RefPatch {
|
|
|
469
493
|
databaseId?: string | null;
|
|
470
494
|
storeId?: string | null;
|
|
471
495
|
commitId?: string | null;
|
|
496
|
+
nameTrgmSimilarity?: number | null;
|
|
497
|
+
searchScore?: number | null;
|
|
472
498
|
}
|
|
473
499
|
export interface UpdateRefInput {
|
|
474
500
|
clientMutationId?: string;
|
|
@@ -491,6 +517,8 @@ export interface StorePatch {
|
|
|
491
517
|
name?: string | null;
|
|
492
518
|
databaseId?: string | null;
|
|
493
519
|
hash?: string | null;
|
|
520
|
+
nameTrgmSimilarity?: number | null;
|
|
521
|
+
searchScore?: number | null;
|
|
494
522
|
}
|
|
495
523
|
export interface UpdateStoreInput {
|
|
496
524
|
clientMutationId?: string;
|
|
@@ -523,6 +551,8 @@ export interface CommitPatch {
|
|
|
523
551
|
committerId?: string | null;
|
|
524
552
|
treeId?: string | null;
|
|
525
553
|
date?: string | null;
|
|
554
|
+
messageTrgmSimilarity?: number | null;
|
|
555
|
+
searchScore?: number | null;
|
|
526
556
|
}
|
|
527
557
|
export interface UpdateCommitInput {
|
|
528
558
|
clientMutationId?: string;
|
|
@@ -10,7 +10,7 @@ import type { CommitWithRelations, CommitSelect, CommitFilter, CommitOrderBy, Cr
|
|
|
10
10
|
export declare class CommitModel {
|
|
11
11
|
private client;
|
|
12
12
|
constructor(client: OrmClient);
|
|
13
|
-
findMany<S extends CommitSelect>(args: FindManyArgs<S, CommitFilter, CommitOrderBy> & {
|
|
13
|
+
findMany<S extends CommitSelect>(args: FindManyArgs<S, CommitFilter, never, CommitOrderBy> & {
|
|
14
14
|
select: S;
|
|
15
15
|
} & StrictSelect<S, CommitSelect>): QueryBuilder<{
|
|
16
16
|
commits: ConnectionResult<InferSelectResult<CommitWithRelations, S>>;
|
|
@@ -10,7 +10,7 @@ import type { GetAllRecordWithRelations, GetAllRecordSelect, GetAllRecordFilter,
|
|
|
10
10
|
export declare class GetAllRecordModel {
|
|
11
11
|
private client;
|
|
12
12
|
constructor(client: OrmClient);
|
|
13
|
-
findMany<S extends GetAllRecordSelect>(args: FindManyArgs<S, GetAllRecordFilter, GetAllRecordsOrderBy> & {
|
|
13
|
+
findMany<S extends GetAllRecordSelect>(args: FindManyArgs<S, GetAllRecordFilter, never, GetAllRecordsOrderBy> & {
|
|
14
14
|
select: S;
|
|
15
15
|
} & StrictSelect<S, GetAllRecordSelect>): QueryBuilder<{
|
|
16
16
|
getAll: ConnectionResult<InferSelectResult<GetAllRecordWithRelations, S>>;
|
|
@@ -10,7 +10,7 @@ import type { ObjectWithRelations, ObjectSelect, ObjectFilter, ObjectOrderBy, Cr
|
|
|
10
10
|
export declare class ObjectModel {
|
|
11
11
|
private client;
|
|
12
12
|
constructor(client: OrmClient);
|
|
13
|
-
findMany<S extends ObjectSelect>(args: FindManyArgs<S, ObjectFilter, ObjectOrderBy> & {
|
|
13
|
+
findMany<S extends ObjectSelect>(args: FindManyArgs<S, ObjectFilter, never, ObjectOrderBy> & {
|
|
14
14
|
select: S;
|
|
15
15
|
} & StrictSelect<S, ObjectSelect>): QueryBuilder<{
|
|
16
16
|
objects: ConnectionResult<InferSelectResult<ObjectWithRelations, S>>;
|
|
@@ -10,7 +10,7 @@ import type { RefWithRelations, RefSelect, RefFilter, RefOrderBy, CreateRefInput
|
|
|
10
10
|
export declare class RefModel {
|
|
11
11
|
private client;
|
|
12
12
|
constructor(client: OrmClient);
|
|
13
|
-
findMany<S extends RefSelect>(args: FindManyArgs<S, RefFilter, RefOrderBy> & {
|
|
13
|
+
findMany<S extends RefSelect>(args: FindManyArgs<S, RefFilter, never, RefOrderBy> & {
|
|
14
14
|
select: S;
|
|
15
15
|
} & StrictSelect<S, RefSelect>): QueryBuilder<{
|
|
16
16
|
refs: ConnectionResult<InferSelectResult<RefWithRelations, S>>;
|
|
@@ -10,7 +10,7 @@ import type { StoreWithRelations, StoreSelect, StoreFilter, StoreOrderBy, Create
|
|
|
10
10
|
export declare class StoreModel {
|
|
11
11
|
private client;
|
|
12
12
|
constructor(client: OrmClient);
|
|
13
|
-
findMany<S extends StoreSelect>(args: FindManyArgs<S, StoreFilter, StoreOrderBy> & {
|
|
13
|
+
findMany<S extends StoreSelect>(args: FindManyArgs<S, StoreFilter, never, StoreOrderBy> & {
|
|
14
14
|
select: S;
|
|
15
15
|
} & StrictSelect<S, StoreSelect>): QueryBuilder<{
|
|
16
16
|
stores: ConnectionResult<InferSelectResult<StoreWithRelations, S>>;
|
|
@@ -145,7 +145,6 @@ export function buildFindManyDocument(operationName, queryField, select, args, f
|
|
|
145
145
|
}, variableDefinitions, queryArgs, variables);
|
|
146
146
|
addVariable({
|
|
147
147
|
varName: 'where',
|
|
148
|
-
argName: 'filter',
|
|
149
148
|
typeName: filterTypeName,
|
|
150
149
|
value: args.where,
|
|
151
150
|
}, variableDefinitions, queryArgs, variables);
|
|
@@ -197,7 +196,6 @@ export function buildFindFirstDocument(operationName, queryField, select, args,
|
|
|
197
196
|
}, variableDefinitions, queryArgs, variables);
|
|
198
197
|
addVariable({
|
|
199
198
|
varName: 'where',
|
|
200
|
-
argName: 'filter',
|
|
201
199
|
typeName: filterTypeName,
|
|
202
200
|
value: args.where,
|
|
203
201
|
}, variableDefinitions, queryArgs, variables);
|
|
@@ -12,6 +12,8 @@ const fieldSchema = {
|
|
|
12
12
|
apiId: 'uuid',
|
|
13
13
|
name: 'string',
|
|
14
14
|
data: 'json',
|
|
15
|
+
nameTrgmSimilarity: 'float',
|
|
16
|
+
searchScore: 'float',
|
|
15
17
|
};
|
|
16
18
|
const usage = '\napi-module <command>\n\nCommands:\n list List all apiModule records\n get Get a apiModule by ID\n create Create a new apiModule\n update Update an existing apiModule\n delete Delete a apiModule\n\n --help, -h Show this help message\n';
|
|
17
19
|
export default async (argv, prompter, _options) => {
|
|
@@ -14,6 +14,11 @@ const fieldSchema = {
|
|
|
14
14
|
roleName: 'string',
|
|
15
15
|
anonRole: 'string',
|
|
16
16
|
isPublic: 'boolean',
|
|
17
|
+
nameTrgmSimilarity: 'float',
|
|
18
|
+
dbnameTrgmSimilarity: 'float',
|
|
19
|
+
roleNameTrgmSimilarity: 'float',
|
|
20
|
+
anonRoleTrgmSimilarity: 'float',
|
|
21
|
+
searchScore: 'float',
|
|
17
22
|
};
|
|
18
23
|
const usage = '\napi <command>\n\nCommands:\n list List all api records\n get Get a api by ID\n create Create a new api\n update Update an existing api\n delete Delete a api\n\n --help, -h Show this help message\n';
|
|
19
24
|
export default async (argv, prompter, _options) => {
|
|
@@ -15,6 +15,8 @@ const fieldSchema = {
|
|
|
15
15
|
priority: 'int',
|
|
16
16
|
createdAt: 'string',
|
|
17
17
|
updatedAt: 'string',
|
|
18
|
+
descriptionTrgmSimilarity: 'float',
|
|
19
|
+
searchScore: 'float',
|
|
18
20
|
};
|
|
19
21
|
const usage = '\napp-level-requirement <command>\n\nCommands:\n list List all appLevelRequirement records\n get Get a appLevelRequirement by ID\n create Create a new appLevelRequirement\n update Update an existing appLevelRequirement\n delete Delete a appLevelRequirement\n\n --help, -h Show this help message\n';
|
|
20
22
|
export default async (argv, prompter, _options) => {
|
|
@@ -14,6 +14,8 @@ const fieldSchema = {
|
|
|
14
14
|
ownerId: 'uuid',
|
|
15
15
|
createdAt: 'string',
|
|
16
16
|
updatedAt: 'string',
|
|
17
|
+
descriptionTrgmSimilarity: 'float',
|
|
18
|
+
searchScore: 'float',
|
|
17
19
|
};
|
|
18
20
|
const usage = '\napp-level <command>\n\nCommands:\n list List all appLevel records\n get Get a appLevel by ID\n create Create a new appLevel\n update Update an existing appLevel\n delete Delete a appLevel\n\n --help, -h Show this help message\n';
|
|
19
21
|
export default async (argv, prompter, _options) => {
|
|
@@ -12,6 +12,8 @@ const fieldSchema = {
|
|
|
12
12
|
bitnum: 'int',
|
|
13
13
|
bitstr: 'string',
|
|
14
14
|
description: 'string',
|
|
15
|
+
descriptionTrgmSimilarity: 'float',
|
|
16
|
+
searchScore: 'float',
|
|
15
17
|
};
|
|
16
18
|
const usage = '\napp-permission <command>\n\nCommands:\n list List all appPermission records\n get Get a appPermission by ID\n create Create a new appPermission\n update Update an existing appPermission\n delete Delete a appPermission\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
|
appStoreId: 'string',
|
|
17
17
|
appIdPrefix: 'string',
|
|
18
18
|
playStoreLink: 'string',
|
|
19
|
+
nameTrgmSimilarity: 'float',
|
|
20
|
+
appStoreIdTrgmSimilarity: 'float',
|
|
21
|
+
appIdPrefixTrgmSimilarity: 'float',
|
|
22
|
+
searchScore: 'float',
|
|
19
23
|
};
|
|
20
24
|
const usage = '\napp <command>\n\nCommands:\n list List all app records\n get Get a app by ID\n create Create a new app\n update Update an existing app\n delete Delete a app\n\n --help, -h Show this help message\n';
|
|
21
25
|
export default async (argv, prompter, _options) => {
|
|
@@ -20,6 +20,8 @@ const fieldSchema = {
|
|
|
20
20
|
action: 'string',
|
|
21
21
|
actionId: 'uuid',
|
|
22
22
|
actorId: 'uuid',
|
|
23
|
+
actionTrgmSimilarity: 'float',
|
|
24
|
+
searchScore: 'float',
|
|
23
25
|
};
|
|
24
26
|
const usage = '\nast-migration <command>\n\nCommands:\n list List all astMigration records\n create Create a new astMigration\n\n --help, -h Show this help message\n';
|
|
25
27
|
export default async (argv, prompter, _options) => {
|
|
@@ -15,6 +15,8 @@ const fieldSchema = {
|
|
|
15
15
|
ipAddress: 'string',
|
|
16
16
|
success: 'boolean',
|
|
17
17
|
createdAt: 'string',
|
|
18
|
+
userAgentTrgmSimilarity: 'float',
|
|
19
|
+
searchScore: 'float',
|
|
18
20
|
};
|
|
19
21
|
const usage = '\naudit-log <command>\n\nCommands:\n list List all auditLog records\n get Get a auditLog by ID\n create Create a new auditLog\n update Update an existing auditLog\n delete Delete a auditLog\n\n --help, -h Show this help message\n';
|
|
20
22
|
export default async (argv, prompter, _options) => {
|
|
@@ -21,6 +21,10 @@ const fieldSchema = {
|
|
|
21
21
|
tags: 'string',
|
|
22
22
|
createdAt: 'string',
|
|
23
23
|
updatedAt: 'string',
|
|
24
|
+
nameTrgmSimilarity: 'float',
|
|
25
|
+
typeTrgmSimilarity: 'float',
|
|
26
|
+
moduleTrgmSimilarity: 'float',
|
|
27
|
+
searchScore: 'float',
|
|
24
28
|
};
|
|
25
29
|
const usage = '\ncheck-constraint <command>\n\nCommands:\n list List all checkConstraint records\n get Get a checkConstraint by ID\n create Create a new checkConstraint\n update Update an existing checkConstraint\n delete Delete a checkConstraint\n\n --help, -h Show this help message\n';
|
|
26
30
|
export default async (argv, prompter, _options) => {
|
|
@@ -16,6 +16,8 @@ const fieldSchema = {
|
|
|
16
16
|
committerId: 'uuid',
|
|
17
17
|
treeId: 'uuid',
|
|
18
18
|
date: 'string',
|
|
19
|
+
messageTrgmSimilarity: 'float',
|
|
20
|
+
searchScore: 'float',
|
|
19
21
|
};
|
|
20
22
|
const usage = '\ncommit <command>\n\nCommands:\n list List all commit records\n get Get a commit by ID\n create Create a new commit\n update Update an existing commit\n delete Delete a commit\n\n --help, -h Show this help message\n';
|
|
21
23
|
export default async (argv, prompter, _options) => {
|
|
@@ -15,6 +15,9 @@ const fieldSchema = {
|
|
|
15
15
|
isVerified: 'boolean',
|
|
16
16
|
createdAt: 'string',
|
|
17
17
|
updatedAt: 'string',
|
|
18
|
+
serviceTrgmSimilarity: 'float',
|
|
19
|
+
identifierTrgmSimilarity: 'float',
|
|
20
|
+
searchScore: 'float',
|
|
18
21
|
};
|
|
19
22
|
const usage = '\nconnected-account <command>\n\nCommands:\n list List all connectedAccount records\n get Get a connectedAccount by ID\n create Create a new connectedAccount\n update Update an existing connectedAccount\n delete Delete a connectedAccount\n\n --help, -h Show this help message\n';
|
|
20
23
|
export default async (argv, prompter, _options) => {
|
|
@@ -14,6 +14,8 @@ const fieldSchema = {
|
|
|
14
14
|
tableId: 'uuid',
|
|
15
15
|
ownerTableId: 'uuid',
|
|
16
16
|
tableName: 'string',
|
|
17
|
+
tableNameTrgmSimilarity: 'float',
|
|
18
|
+
searchScore: 'float',
|
|
17
19
|
};
|
|
18
20
|
const usage = '\nconnected-accounts-module <command>\n\nCommands:\n list List all connectedAccountsModule records\n get Get a connectedAccountsModule by ID\n create Create a new connectedAccountsModule\n update Update an existing connectedAccountsModule\n delete Delete a connectedAccountsModule\n\n --help, -h Show this help message\n';
|
|
19
21
|
export default async (argv, prompter, _options) => {
|
|
@@ -14,6 +14,8 @@ const fieldSchema = {
|
|
|
14
14
|
isPrimary: 'boolean',
|
|
15
15
|
createdAt: 'string',
|
|
16
16
|
updatedAt: 'string',
|
|
17
|
+
addressTrgmSimilarity: 'float',
|
|
18
|
+
searchScore: 'float',
|
|
17
19
|
};
|
|
18
20
|
const usage = '\ncrypto-address <command>\n\nCommands:\n list List all cryptoAddress records\n get Get a cryptoAddress by ID\n create Create a new cryptoAddress\n update Update an existing cryptoAddress\n delete Delete a cryptoAddress\n\n --help, -h Show this help message\n';
|
|
19
21
|
export default async (argv, prompter, _options) => {
|
|
@@ -15,6 +15,9 @@ const fieldSchema = {
|
|
|
15
15
|
ownerTableId: 'uuid',
|
|
16
16
|
tableName: 'string',
|
|
17
17
|
cryptoNetwork: 'string',
|
|
18
|
+
tableNameTrgmSimilarity: 'float',
|
|
19
|
+
cryptoNetworkTrgmSimilarity: 'float',
|
|
20
|
+
searchScore: 'float',
|
|
18
21
|
};
|
|
19
22
|
const usage = '\ncrypto-addresses-module <command>\n\nCommands:\n list List all cryptoAddressesModule records\n get Get a cryptoAddressesModule by ID\n create Create a new cryptoAddressesModule\n update Update an existing cryptoAddressesModule\n delete Delete a cryptoAddressesModule\n\n --help, -h Show this help message\n';
|
|
20
23
|
export default async (argv, prompter, _options) => {
|
|
@@ -21,6 +21,13 @@ const fieldSchema = {
|
|
|
21
21
|
signInRecordFailure: 'string',
|
|
22
22
|
signUpWithKey: 'string',
|
|
23
23
|
signInWithChallenge: 'string',
|
|
24
|
+
userFieldTrgmSimilarity: 'float',
|
|
25
|
+
cryptoNetworkTrgmSimilarity: 'float',
|
|
26
|
+
signInRequestChallengeTrgmSimilarity: 'float',
|
|
27
|
+
signInRecordFailureTrgmSimilarity: 'float',
|
|
28
|
+
signUpWithKeyTrgmSimilarity: 'float',
|
|
29
|
+
signInWithChallengeTrgmSimilarity: 'float',
|
|
30
|
+
searchScore: 'float',
|
|
24
31
|
};
|
|
25
32
|
const usage = '\ncrypto-auth-module <command>\n\nCommands:\n list List all cryptoAuthModule records\n get Get a cryptoAuthModule by ID\n create Create a new cryptoAuthModule\n update Update an existing cryptoAuthModule\n delete Delete a cryptoAuthModule\n\n --help, -h Show this help message\n';
|
|
26
33
|
export default async (argv, prompter, _options) => {
|
|
@@ -21,6 +21,12 @@ const fieldSchema = {
|
|
|
21
21
|
createdAt: 'string',
|
|
22
22
|
updatedAt: 'string',
|
|
23
23
|
completedAt: 'string',
|
|
24
|
+
databaseNameTrgmSimilarity: 'float',
|
|
25
|
+
subdomainTrgmSimilarity: 'float',
|
|
26
|
+
domainTrgmSimilarity: 'float',
|
|
27
|
+
statusTrgmSimilarity: 'float',
|
|
28
|
+
errorMessageTrgmSimilarity: 'float',
|
|
29
|
+
searchScore: 'float',
|
|
24
30
|
};
|
|
25
31
|
const usage = '\ndatabase-provision-module <command>\n\nCommands:\n list List all databaseProvisionModule records\n get Get a databaseProvisionModule by ID\n create Create a new databaseProvisionModule\n update Update an existing databaseProvisionModule\n delete Delete a databaseProvisionModule\n\n --help, -h Show this help message\n';
|
|
26
32
|
export default async (argv, prompter, _options) => {
|
|
@@ -15,6 +15,10 @@ const fieldSchema = {
|
|
|
15
15
|
hash: 'uuid',
|
|
16
16
|
createdAt: 'string',
|
|
17
17
|
updatedAt: 'string',
|
|
18
|
+
schemaHashTrgmSimilarity: 'float',
|
|
19
|
+
nameTrgmSimilarity: 'float',
|
|
20
|
+
labelTrgmSimilarity: 'float',
|
|
21
|
+
searchScore: 'float',
|
|
18
22
|
};
|
|
19
23
|
const usage = '\ndatabase <command>\n\nCommands:\n list List all database records\n get Get a database by ID\n create Create a new database\n update Update an existing database\n delete Delete a database\n\n --help, -h Show this help message\n';
|
|
20
24
|
export default async (argv, prompter, _options) => {
|
|
@@ -14,6 +14,10 @@ const fieldSchema = {
|
|
|
14
14
|
privilege: 'string',
|
|
15
15
|
granteeName: 'string',
|
|
16
16
|
isGrant: 'boolean',
|
|
17
|
+
objectTypeTrgmSimilarity: 'float',
|
|
18
|
+
privilegeTrgmSimilarity: 'float',
|
|
19
|
+
granteeNameTrgmSimilarity: 'float',
|
|
20
|
+
searchScore: 'float',
|
|
17
21
|
};
|
|
18
22
|
const usage = '\ndefault-privilege <command>\n\nCommands:\n list List all defaultPrivilege records\n get Get a defaultPrivilege by ID\n create Create a new defaultPrivilege\n update Update an existing defaultPrivilege\n delete Delete a defaultPrivilege\n\n --help, -h Show this help message\n';
|
|
19
23
|
export default async (argv, prompter, _options) => {
|
|
@@ -19,6 +19,8 @@ const fieldSchema = {
|
|
|
19
19
|
updateDefaults: 'boolean',
|
|
20
20
|
funcName: 'string',
|
|
21
21
|
funcOrder: 'int',
|
|
22
|
+
funcNameTrgmSimilarity: 'float',
|
|
23
|
+
searchScore: 'float',
|
|
22
24
|
};
|
|
23
25
|
const usage = '\ndenormalized-table-field <command>\n\nCommands:\n list List all denormalizedTableField records\n get Get a denormalizedTableField by ID\n create Create a new denormalizedTableField\n update Update an existing denormalizedTableField\n delete Delete a denormalizedTableField\n\n --help, -h Show this help message\n';
|
|
24
26
|
export default async (argv, prompter, _options) => {
|
|
@@ -14,6 +14,8 @@ const fieldSchema = {
|
|
|
14
14
|
tableId: 'uuid',
|
|
15
15
|
ownerTableId: 'uuid',
|
|
16
16
|
tableName: 'string',
|
|
17
|
+
tableNameTrgmSimilarity: 'float',
|
|
18
|
+
searchScore: 'float',
|
|
17
19
|
};
|
|
18
20
|
const usage = '\nemails-module <command>\n\nCommands:\n list List all emailsModule records\n get Get a emailsModule by ID\n create Create a new emailsModule\n update Update an existing emailsModule\n delete Delete a emailsModule\n\n --help, -h Show this help message\n';
|
|
19
21
|
export default async (argv, prompter, _options) => {
|
|
@@ -12,6 +12,8 @@ const fieldSchema = {
|
|
|
12
12
|
schemaId: 'uuid',
|
|
13
13
|
tableId: 'uuid',
|
|
14
14
|
tableName: 'string',
|
|
15
|
+
tableNameTrgmSimilarity: 'float',
|
|
16
|
+
searchScore: 'float',
|
|
15
17
|
};
|
|
16
18
|
const usage = '\nencrypted-secrets-module <command>\n\nCommands:\n list List all encryptedSecretsModule records\n get Get a encryptedSecretsModule by ID\n create Create a new encryptedSecretsModule\n update Update an existing encryptedSecretsModule\n delete Delete a encryptedSecretsModule\n\n --help, -h Show this help message\n';
|
|
17
19
|
export default async (argv, prompter, _options) => {
|
|
@@ -16,6 +16,8 @@ const fieldSchema = {
|
|
|
16
16
|
data: 'json',
|
|
17
17
|
triggers: 'string',
|
|
18
18
|
functions: 'string',
|
|
19
|
+
nodeTypeTrgmSimilarity: 'float',
|
|
20
|
+
searchScore: 'float',
|
|
19
21
|
};
|
|
20
22
|
const usage = '\nfield-module <command>\n\nCommands:\n list List all fieldModule records\n get Get a fieldModule by ID\n create Create a new fieldModule\n update Update an existing fieldModule\n delete Delete a fieldModule\n\n --help, -h Show this help message\n';
|
|
21
23
|
export default async (argv, prompter, _options) => {
|
|
@@ -31,6 +31,13 @@ const fieldSchema = {
|
|
|
31
31
|
scope: 'int',
|
|
32
32
|
createdAt: 'string',
|
|
33
33
|
updatedAt: 'string',
|
|
34
|
+
nameTrgmSimilarity: 'float',
|
|
35
|
+
labelTrgmSimilarity: 'float',
|
|
36
|
+
descriptionTrgmSimilarity: 'float',
|
|
37
|
+
defaultValueTrgmSimilarity: 'float',
|
|
38
|
+
regexpTrgmSimilarity: 'float',
|
|
39
|
+
moduleTrgmSimilarity: 'float',
|
|
40
|
+
searchScore: 'float',
|
|
34
41
|
};
|
|
35
42
|
const usage = '\nfield <command>\n\nCommands:\n list List all field records\n get Get a field by ID\n create Create a new field\n update Update an existing field\n delete Delete a field\n\n --help, -h Show this help message\n';
|
|
36
43
|
export default async (argv, prompter, _options) => {
|
|
@@ -25,6 +25,13 @@ const fieldSchema = {
|
|
|
25
25
|
tags: 'string',
|
|
26
26
|
createdAt: 'string',
|
|
27
27
|
updatedAt: 'string',
|
|
28
|
+
nameTrgmSimilarity: 'float',
|
|
29
|
+
descriptionTrgmSimilarity: 'float',
|
|
30
|
+
typeTrgmSimilarity: 'float',
|
|
31
|
+
deleteActionTrgmSimilarity: 'float',
|
|
32
|
+
updateActionTrgmSimilarity: 'float',
|
|
33
|
+
moduleTrgmSimilarity: 'float',
|
|
34
|
+
searchScore: 'float',
|
|
28
35
|
};
|
|
29
36
|
const usage = '\nforeign-key-constraint <command>\n\nCommands:\n list List all foreignKeyConstraint records\n get Get a foreignKeyConstraint by ID\n create Create a new foreignKeyConstraint\n update Update an existing foreignKeyConstraint\n delete Delete a foreignKeyConstraint\n\n --help, -h Show this help message\n';
|
|
30
37
|
export default async (argv, prompter, _options) => {
|
|
@@ -27,6 +27,17 @@ const fieldSchema = {
|
|
|
27
27
|
getManagersFunction: 'string',
|
|
28
28
|
isManagerOfFunction: 'string',
|
|
29
29
|
createdAt: 'string',
|
|
30
|
+
chartEdgesTableNameTrgmSimilarity: 'float',
|
|
31
|
+
hierarchySprtTableNameTrgmSimilarity: 'float',
|
|
32
|
+
chartEdgeGrantsTableNameTrgmSimilarity: 'float',
|
|
33
|
+
prefixTrgmSimilarity: 'float',
|
|
34
|
+
privateSchemaNameTrgmSimilarity: 'float',
|
|
35
|
+
sprtTableNameTrgmSimilarity: 'float',
|
|
36
|
+
rebuildHierarchyFunctionTrgmSimilarity: 'float',
|
|
37
|
+
getSubordinatesFunctionTrgmSimilarity: 'float',
|
|
38
|
+
getManagersFunctionTrgmSimilarity: 'float',
|
|
39
|
+
isManagerOfFunctionTrgmSimilarity: 'float',
|
|
40
|
+
searchScore: 'float',
|
|
30
41
|
};
|
|
31
42
|
const usage = '\nhierarchy-module <command>\n\nCommands:\n list List all hierarchyModule records\n get Get a hierarchyModule by ID\n create Create a new hierarchyModule\n update Update an existing hierarchyModule\n delete Delete a hierarchyModule\n\n --help, -h Show this help message\n';
|
|
32
43
|
export default async (argv, prompter, _options) => {
|