@constructive-sdk/cli 0.23.3 → 0.24.1
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/README.md +4 -0
- package/admin/cli/commands/app-limit-event.js +248 -2
- package/admin/cli/commands/app-limit.js +44 -0
- package/admin/cli/commands/org-limit-aggregate.js +44 -0
- package/admin/cli/commands/org-limit-event.js +248 -2
- package/admin/cli/commands/org-limit.js +44 -0
- package/admin/cli/commands.js +31 -33
- package/admin/cli/executor.d.ts +15 -16
- package/admin/orm/index.d.ts +31 -33
- package/admin/orm/index.js +32 -33
- package/admin/orm/input-types.d.ts +2090 -2039
- package/admin/orm/input-types.js +4 -4
- package/admin/orm/models/appLimitEvent.d.ts +26 -2
- package/admin/orm/models/appLimitEvent.js +45 -0
- package/admin/orm/models/index.d.ts +15 -16
- package/admin/orm/models/index.js +31 -33
- package/admin/orm/models/orgLimitEvent.d.ts +26 -2
- package/admin/orm/models/orgLimitEvent.js +45 -0
- package/{esm/public/cli/commands/agent-message.d.ts → auth/cli/commands/audit-log-auth.d.ts} +1 -1
- package/auth/cli/commands/{audit-log.js → audit-log-auth.js} +14 -14
- package/auth/cli/commands.js +5 -5
- package/auth/cli/executor.d.ts +6 -6
- package/auth/orm/index.d.ts +8 -8
- package/auth/orm/index.js +4 -3
- package/auth/orm/input-types.d.ts +94 -94
- package/auth/orm/input-types.js +1 -1
- package/auth/orm/models/auditLogAuth.d.ts +54 -0
- package/{public/orm/models/agentMessage.js → auth/orm/models/auditLogAuth.js} +27 -27
- package/auth/orm/models/index.d.ts +1 -1
- package/auth/orm/models/index.js +3 -3
- package/auth/orm/mutation/index.d.ts +9 -9
- package/auth/orm/mutation/index.js +12 -12
- package/esm/admin/cli/commands/app-limit-event.js +248 -2
- package/esm/admin/cli/commands/app-limit.js +44 -0
- package/esm/admin/cli/commands/org-limit-aggregate.js +44 -0
- package/esm/admin/cli/commands/org-limit-event.js +248 -2
- package/esm/admin/cli/commands/org-limit.js +44 -0
- package/esm/admin/cli/commands.js +31 -33
- package/esm/admin/cli/executor.d.ts +15 -16
- package/esm/admin/orm/index.d.ts +31 -33
- package/esm/admin/orm/index.js +31 -33
- package/esm/admin/orm/input-types.d.ts +2090 -2039
- package/esm/admin/orm/input-types.js +4 -4
- package/esm/admin/orm/models/appLimitEvent.d.ts +26 -2
- package/esm/admin/orm/models/appLimitEvent.js +46 -1
- package/esm/admin/orm/models/index.d.ts +15 -16
- package/esm/admin/orm/models/index.js +15 -16
- package/esm/admin/orm/models/orgLimitEvent.d.ts +26 -2
- package/esm/admin/orm/models/orgLimitEvent.js +46 -1
- package/esm/auth/cli/commands/audit-log-auth.d.ts +8 -0
- package/esm/{public/cli/commands/audit-log.js → auth/cli/commands/audit-log-auth.js} +14 -14
- package/esm/auth/cli/commands.js +5 -5
- package/esm/auth/cli/executor.d.ts +6 -6
- package/esm/auth/orm/index.d.ts +8 -8
- package/esm/auth/orm/index.js +3 -3
- package/esm/auth/orm/input-types.d.ts +94 -94
- package/esm/auth/orm/input-types.js +1 -1
- package/esm/auth/orm/models/auditLogAuth.d.ts +54 -0
- package/esm/{public/orm/models/auditLog.js → auth/orm/models/auditLogAuth.js} +25 -25
- package/esm/auth/orm/models/index.d.ts +1 -1
- package/esm/auth/orm/models/index.js +1 -1
- package/esm/auth/orm/mutation/index.d.ts +9 -9
- package/esm/auth/orm/mutation/index.js +12 -12
- package/esm/objects/orm/index.d.ts +1 -1
- package/esm/objects/orm/index.js +1 -1
- package/esm/public/cli/commands/{agent-thread.d.ts → agent-module.d.ts} +1 -1
- package/esm/public/cli/commands/agent-module.js +690 -0
- package/esm/public/cli/commands/app-limit-event.js +248 -2
- package/esm/public/cli/commands/app-limit.js +44 -0
- package/esm/public/cli/commands/apply-registry-defaults.d.ts +8 -0
- package/esm/public/cli/commands/{rev-parse.js → apply-registry-defaults.js} +9 -12
- package/esm/public/cli/commands/audit-log-auth.d.ts +8 -0
- package/esm/{auth/cli/commands/audit-log.js → public/cli/commands/audit-log-auth.js} +14 -14
- package/esm/public/cli/commands/billing-module.js +88 -0
- package/esm/public/cli/commands/compute-log-module.d.ts +8 -0
- package/esm/public/cli/commands/compute-log-module.js +514 -0
- package/esm/public/cli/commands/config-secrets-org-module.d.ts +8 -0
- package/esm/public/cli/commands/{encrypted-secrets-module.js → config-secrets-org-module.js} +8 -8
- package/esm/public/cli/commands/config-secrets-user-module.d.ts +8 -0
- package/esm/public/cli/commands/{object.js → config-secrets-user-module.js} +60 -67
- package/esm/public/cli/commands/construct-blueprint.js +1 -1
- package/{admin/cli/commands/usage-snapshot.d.ts → esm/public/cli/commands/db-usage-module.d.ts} +1 -1
- package/esm/public/cli/commands/db-usage-module.js +558 -0
- package/esm/public/cli/commands/entity-type-provision.js +386 -34
- package/esm/public/cli/commands/field.js +4 -26
- package/esm/public/cli/commands/function-module.d.ts +8 -0
- package/esm/public/cli/commands/function-module.js +778 -0
- package/{auth/cli/commands/audit-log.d.ts → esm/public/cli/commands/graph-module.d.ts} +1 -1
- package/esm/public/cli/commands/graph-module.js +584 -0
- package/esm/public/cli/commands/inference-log-module.d.ts +8 -0
- package/esm/public/cli/commands/inference-log-module.js +514 -0
- package/esm/public/cli/commands/memberships-module.js +22 -0
- package/esm/public/cli/commands/merkle-store-module.d.ts +8 -0
- package/esm/public/cli/commands/merkle-store-module.js +498 -0
- package/esm/public/cli/commands/namespace-module.d.ts +8 -0
- package/esm/public/cli/commands/namespace-module.js +558 -0
- package/esm/public/cli/commands/org-limit-aggregate.js +44 -0
- package/esm/public/cli/commands/org-limit-event.js +248 -2
- package/esm/public/cli/commands/org-limit.js +44 -0
- package/esm/public/cli/commands/partition.js +44 -0
- package/esm/public/cli/commands/storage-log-module.d.ts +8 -0
- package/esm/public/cli/commands/storage-log-module.js +514 -0
- package/esm/public/cli/commands/storage-module.js +36 -14
- package/esm/public/cli/commands/transfer-log-module.d.ts +8 -0
- package/esm/public/cli/commands/transfer-log-module.js +514 -0
- package/esm/public/cli/commands.js +83 -101
- package/esm/public/cli/executor.d.ts +72 -125
- package/esm/public/orm/index.d.ts +102 -153
- package/esm/public/orm/index.js +59 -55
- package/esm/public/orm/input-types.d.ts +6255 -3877
- package/esm/public/orm/input-types.js +24 -15
- package/esm/public/orm/models/agentModule.d.ts +54 -0
- package/esm/public/orm/models/{agentThread.js → agentModule.js} +25 -25
- package/esm/public/orm/models/appLimitEvent.d.ts +26 -2
- package/esm/public/orm/models/appLimitEvent.js +46 -1
- package/esm/public/orm/models/auditLogAuth.d.ts +54 -0
- package/esm/{auth/orm/models/auditLog.js → public/orm/models/auditLogAuth.js} +25 -25
- package/esm/public/orm/models/computeLogModule.d.ts +54 -0
- package/esm/public/orm/models/{commit.js → computeLogModule.js} +25 -25
- package/esm/public/orm/models/configSecretsOrgModule.d.ts +54 -0
- package/esm/public/orm/models/{encryptedSecretsModule.js → configSecretsOrgModule.js} +25 -25
- package/esm/public/orm/models/configSecretsUserModule.d.ts +54 -0
- package/esm/public/orm/models/configSecretsUserModule.js +100 -0
- package/esm/public/orm/models/dbUsageModule.d.ts +54 -0
- package/esm/{admin/orm/models/usageSnapshot.js → public/orm/models/dbUsageModule.js} +25 -25
- package/esm/public/orm/models/functionModule.d.ts +54 -0
- package/esm/public/orm/models/{agentMessage.js → functionModule.js} +25 -25
- package/esm/public/orm/models/graphModule.d.ts +54 -0
- package/esm/public/orm/models/{agentTask.js → graphModule.js} +25 -25
- package/esm/public/orm/models/index.d.ts +29 -27
- package/esm/public/orm/models/index.js +29 -27
- package/esm/public/orm/models/inferenceLogModule.d.ts +54 -0
- package/esm/public/orm/models/inferenceLogModule.js +100 -0
- package/esm/public/orm/models/merkleStoreModule.d.ts +54 -0
- package/esm/public/orm/models/merkleStoreModule.js +100 -0
- package/esm/public/orm/models/namespaceModule.d.ts +54 -0
- package/esm/public/orm/models/namespaceModule.js +100 -0
- package/esm/public/orm/models/orgLimitEvent.d.ts +26 -2
- package/esm/public/orm/models/orgLimitEvent.js +46 -1
- package/esm/public/orm/models/storageLogModule.d.ts +54 -0
- package/esm/public/orm/models/{store.js → storageLogModule.js} +25 -25
- package/esm/public/orm/models/transferLogModule.d.ts +54 -0
- package/esm/public/orm/models/transferLogModule.js +100 -0
- package/esm/public/orm/mutation/index.d.ts +69 -133
- package/esm/public/orm/mutation/index.js +78 -174
- package/esm/public/orm/query/index.d.ts +22 -71
- package/esm/public/orm/query/index.js +36 -124
- package/objects/orm/index.d.ts +1 -1
- package/objects/orm/index.js +2 -1
- package/package.json +6 -6
- package/{esm/public/cli/commands/agent-task.d.ts → public/cli/commands/agent-module.d.ts} +1 -1
- package/public/cli/commands/agent-module.js +692 -0
- package/public/cli/commands/app-limit-event.js +248 -2
- package/public/cli/commands/app-limit.js +44 -0
- package/public/cli/commands/apply-registry-defaults.d.ts +8 -0
- package/public/cli/commands/{rev-parse.js → apply-registry-defaults.js} +9 -12
- package/public/cli/commands/audit-log-auth.d.ts +8 -0
- package/public/cli/commands/{audit-log.js → audit-log-auth.js} +14 -14
- package/public/cli/commands/billing-module.js +88 -0
- package/public/cli/commands/compute-log-module.d.ts +8 -0
- package/public/cli/commands/compute-log-module.js +516 -0
- package/public/cli/commands/config-secrets-org-module.d.ts +8 -0
- package/public/cli/commands/{encrypted-secrets-module.js → config-secrets-org-module.js} +8 -8
- package/public/cli/commands/config-secrets-user-module.d.ts +8 -0
- package/public/cli/commands/{object.js → config-secrets-user-module.js} +60 -67
- package/public/cli/commands/construct-blueprint.js +1 -1
- package/{esm/admin/cli/commands/usage-snapshot.d.ts → public/cli/commands/db-usage-module.d.ts} +1 -1
- package/public/cli/commands/db-usage-module.js +560 -0
- package/public/cli/commands/entity-type-provision.js +386 -34
- package/public/cli/commands/field.js +4 -26
- package/public/cli/commands/function-module.d.ts +8 -0
- package/public/cli/commands/function-module.js +780 -0
- package/{esm/auth/cli/commands/audit-log.d.ts → public/cli/commands/graph-module.d.ts} +1 -1
- package/public/cli/commands/graph-module.js +586 -0
- package/public/cli/commands/inference-log-module.d.ts +8 -0
- package/public/cli/commands/inference-log-module.js +516 -0
- package/public/cli/commands/memberships-module.js +22 -0
- package/public/cli/commands/merkle-store-module.d.ts +8 -0
- package/public/cli/commands/merkle-store-module.js +500 -0
- package/public/cli/commands/namespace-module.d.ts +8 -0
- package/public/cli/commands/namespace-module.js +560 -0
- package/public/cli/commands/org-limit-aggregate.js +44 -0
- package/public/cli/commands/org-limit-event.js +248 -2
- package/public/cli/commands/org-limit.js +44 -0
- package/public/cli/commands/partition.js +44 -0
- package/public/cli/commands/storage-log-module.d.ts +8 -0
- package/public/cli/commands/storage-log-module.js +516 -0
- package/public/cli/commands/storage-module.js +36 -14
- package/public/cli/commands/transfer-log-module.d.ts +8 -0
- package/public/cli/commands/transfer-log-module.js +516 -0
- package/public/cli/commands.js +83 -101
- package/public/cli/executor.d.ts +72 -125
- package/public/orm/index.d.ts +102 -153
- package/public/orm/index.js +60 -55
- package/public/orm/input-types.d.ts +6255 -3877
- package/public/orm/input-types.js +24 -15
- package/public/orm/models/agentModule.d.ts +54 -0
- package/public/orm/models/{agentThread.js → agentModule.js} +27 -27
- package/public/orm/models/appLimitEvent.d.ts +26 -2
- package/public/orm/models/appLimitEvent.js +45 -0
- package/public/orm/models/auditLogAuth.d.ts +54 -0
- package/{admin/orm/models/usageSnapshot.js → public/orm/models/auditLogAuth.js} +27 -27
- package/public/orm/models/computeLogModule.d.ts +54 -0
- package/{auth/orm/models/auditLog.js → public/orm/models/computeLogModule.js} +27 -27
- package/public/orm/models/configSecretsOrgModule.d.ts +54 -0
- package/public/orm/models/{encryptedSecretsModule.js → configSecretsOrgModule.js} +27 -27
- package/public/orm/models/configSecretsUserModule.d.ts +54 -0
- package/public/orm/models/{ref.js → configSecretsUserModule.js} +27 -27
- package/public/orm/models/dbUsageModule.d.ts +54 -0
- package/public/orm/models/{usageSnapshot.js → dbUsageModule.js} +27 -27
- package/public/orm/models/functionModule.d.ts +54 -0
- package/public/orm/models/functionModule.js +104 -0
- package/public/orm/models/graphModule.d.ts +54 -0
- package/public/orm/models/{agentTask.js → graphModule.js} +27 -27
- package/public/orm/models/index.d.ts +29 -27
- package/public/orm/models/index.js +61 -57
- package/public/orm/models/inferenceLogModule.d.ts +54 -0
- package/public/orm/models/inferenceLogModule.js +104 -0
- package/public/orm/models/merkleStoreModule.d.ts +54 -0
- package/public/orm/models/merkleStoreModule.js +104 -0
- package/public/orm/models/namespaceModule.d.ts +54 -0
- package/public/orm/models/namespaceModule.js +104 -0
- package/public/orm/models/orgLimitEvent.d.ts +26 -2
- package/public/orm/models/orgLimitEvent.js +45 -0
- package/public/orm/models/storageLogModule.d.ts +54 -0
- package/public/orm/models/storageLogModule.js +104 -0
- package/public/orm/models/transferLogModule.d.ts +54 -0
- package/public/orm/models/transferLogModule.js +104 -0
- package/public/orm/mutation/index.d.ts +69 -133
- package/public/orm/mutation/index.js +78 -174
- package/public/orm/query/index.d.ts +22 -71
- package/public/orm/query/index.js +36 -124
- package/admin/cli/commands/usage-snapshot.js +0 -316
- package/admin/orm/models/usageSnapshot.d.ts +0 -54
- package/auth/orm/models/auditLog.d.ts +0 -54
- package/esm/admin/cli/commands/usage-snapshot.js +0 -314
- package/esm/admin/orm/models/usageSnapshot.d.ts +0 -54
- package/esm/auth/orm/models/auditLog.d.ts +0 -54
- package/esm/public/cli/commands/agent-message.js +0 -324
- package/esm/public/cli/commands/agent-task.js +0 -368
- package/esm/public/cli/commands/agent-thread.js +0 -372
- package/esm/public/cli/commands/audit-log.d.ts +0 -8
- package/esm/public/cli/commands/commit.d.ts +0 -8
- package/esm/public/cli/commands/commit.js +0 -380
- package/esm/public/cli/commands/encrypted-secrets-module.d.ts +0 -8
- package/esm/public/cli/commands/freeze-objects.d.ts +0 -8
- package/esm/public/cli/commands/freeze-objects.js +0 -34
- package/esm/public/cli/commands/get-all-objects-from-root.d.ts +0 -8
- package/esm/public/cli/commands/get-all-objects-from-root.js +0 -52
- package/esm/public/cli/commands/get-all-record.d.ts +0 -8
- package/esm/public/cli/commands/get-all-record.js +0 -124
- package/esm/public/cli/commands/get-object-at-path.d.ts +0 -8
- package/esm/public/cli/commands/get-object-at-path.js +0 -47
- package/esm/public/cli/commands/get-path-objects-from-root.d.ts +0 -8
- package/esm/public/cli/commands/get-path-objects-from-root.js +0 -57
- package/esm/public/cli/commands/init-empty-repo.d.ts +0 -8
- package/esm/public/cli/commands/init-empty-repo.js +0 -34
- package/esm/public/cli/commands/insert-node-at-path.d.ts +0 -8
- package/esm/public/cli/commands/insert-node-at-path.js +0 -34
- package/esm/public/cli/commands/object.d.ts +0 -8
- package/esm/public/cli/commands/ref.d.ts +0 -8
- package/esm/public/cli/commands/ref.js +0 -290
- package/esm/public/cli/commands/remove-node-at-path.d.ts +0 -8
- package/esm/public/cli/commands/remove-node-at-path.js +0 -34
- package/esm/public/cli/commands/rev-parse.d.ts +0 -8
- package/esm/public/cli/commands/set-and-commit.d.ts +0 -8
- package/esm/public/cli/commands/set-and-commit.js +0 -34
- package/esm/public/cli/commands/set-data-at-path.d.ts +0 -8
- package/esm/public/cli/commands/set-data-at-path.js +0 -34
- package/esm/public/cli/commands/set-props-and-commit.d.ts +0 -8
- package/esm/public/cli/commands/set-props-and-commit.js +0 -34
- package/esm/public/cli/commands/store.d.ts +0 -8
- package/esm/public/cli/commands/store.js +0 -276
- package/esm/public/cli/commands/update-node-at-path.d.ts +0 -8
- package/esm/public/cli/commands/update-node-at-path.js +0 -34
- package/esm/public/cli/commands/usage-snapshot.d.ts +0 -8
- package/esm/public/cli/commands/usage-snapshot.js +0 -314
- package/esm/public/orm/models/agentMessage.d.ts +0 -54
- package/esm/public/orm/models/agentTask.d.ts +0 -54
- package/esm/public/orm/models/agentThread.d.ts +0 -54
- package/esm/public/orm/models/auditLog.d.ts +0 -54
- package/esm/public/orm/models/commit.d.ts +0 -54
- package/esm/public/orm/models/encryptedSecretsModule.d.ts +0 -54
- package/esm/public/orm/models/getAllRecord.d.ts +0 -30
- package/esm/public/orm/models/getAllRecord.js +0 -55
- package/esm/public/orm/models/object.d.ts +0 -54
- package/esm/public/orm/models/object.js +0 -90
- package/esm/public/orm/models/ref.d.ts +0 -54
- package/esm/public/orm/models/ref.js +0 -100
- package/esm/public/orm/models/store.d.ts +0 -54
- package/esm/public/orm/models/usageSnapshot.d.ts +0 -54
- package/esm/public/orm/models/usageSnapshot.js +0 -100
- package/public/cli/commands/agent-message.d.ts +0 -8
- package/public/cli/commands/agent-message.js +0 -326
- package/public/cli/commands/agent-task.d.ts +0 -8
- package/public/cli/commands/agent-task.js +0 -370
- package/public/cli/commands/agent-thread.d.ts +0 -8
- package/public/cli/commands/agent-thread.js +0 -374
- package/public/cli/commands/audit-log.d.ts +0 -8
- package/public/cli/commands/commit.d.ts +0 -8
- package/public/cli/commands/commit.js +0 -382
- package/public/cli/commands/encrypted-secrets-module.d.ts +0 -8
- package/public/cli/commands/freeze-objects.d.ts +0 -8
- package/public/cli/commands/freeze-objects.js +0 -36
- package/public/cli/commands/get-all-objects-from-root.d.ts +0 -8
- package/public/cli/commands/get-all-objects-from-root.js +0 -54
- package/public/cli/commands/get-all-record.d.ts +0 -8
- package/public/cli/commands/get-all-record.js +0 -126
- package/public/cli/commands/get-object-at-path.d.ts +0 -8
- package/public/cli/commands/get-object-at-path.js +0 -49
- package/public/cli/commands/get-path-objects-from-root.d.ts +0 -8
- package/public/cli/commands/get-path-objects-from-root.js +0 -59
- package/public/cli/commands/init-empty-repo.d.ts +0 -8
- package/public/cli/commands/init-empty-repo.js +0 -36
- package/public/cli/commands/insert-node-at-path.d.ts +0 -8
- package/public/cli/commands/insert-node-at-path.js +0 -36
- package/public/cli/commands/object.d.ts +0 -8
- package/public/cli/commands/ref.d.ts +0 -8
- package/public/cli/commands/ref.js +0 -292
- package/public/cli/commands/remove-node-at-path.d.ts +0 -8
- package/public/cli/commands/remove-node-at-path.js +0 -36
- package/public/cli/commands/rev-parse.d.ts +0 -8
- package/public/cli/commands/set-and-commit.d.ts +0 -8
- package/public/cli/commands/set-and-commit.js +0 -36
- package/public/cli/commands/set-data-at-path.d.ts +0 -8
- package/public/cli/commands/set-data-at-path.js +0 -36
- package/public/cli/commands/set-props-and-commit.d.ts +0 -8
- package/public/cli/commands/set-props-and-commit.js +0 -36
- package/public/cli/commands/store.d.ts +0 -8
- package/public/cli/commands/store.js +0 -278
- package/public/cli/commands/update-node-at-path.d.ts +0 -8
- package/public/cli/commands/update-node-at-path.js +0 -36
- package/public/cli/commands/usage-snapshot.d.ts +0 -8
- package/public/cli/commands/usage-snapshot.js +0 -316
- package/public/orm/models/agentMessage.d.ts +0 -54
- package/public/orm/models/agentTask.d.ts +0 -54
- package/public/orm/models/agentThread.d.ts +0 -54
- package/public/orm/models/auditLog.d.ts +0 -54
- package/public/orm/models/auditLog.js +0 -104
- package/public/orm/models/commit.d.ts +0 -54
- package/public/orm/models/commit.js +0 -104
- package/public/orm/models/encryptedSecretsModule.d.ts +0 -54
- package/public/orm/models/getAllRecord.d.ts +0 -30
- package/public/orm/models/getAllRecord.js +0 -59
- package/public/orm/models/object.d.ts +0 -54
- package/public/orm/models/object.js +0 -94
- package/public/orm/models/ref.d.ts +0 -54
- package/public/orm/models/store.d.ts +0 -54
- package/public/orm/models/store.js +0 -104
- package/public/orm/models/usageSnapshot.d.ts +0 -54
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
import { OrmClient } from '../client';
|
|
7
7
|
import { QueryBuilder } from '../query-builder';
|
|
8
8
|
import type { InferSelectResult, StrictSelect } from '../select-types';
|
|
9
|
-
import type { SendAccountDeletionEmailInput, SignOutInput, AcceptDatabaseTransferInput, CancelDatabaseTransferInput, RejectDatabaseTransferInput, DisconnectAccountInput, RevokeApiKeyInput, RevokeSessionInput, VerifyPasswordInput, VerifyTotpInput, SubmitAppInviteCodeInput, SubmitOrgInviteCodeInput, CheckPasswordInput, ConfirmDeleteAccountInput, SetPasswordInput, VerifyEmailInput,
|
|
9
|
+
import type { SendAccountDeletionEmailInput, SignOutInput, AcceptDatabaseTransferInput, CancelDatabaseTransferInput, RejectDatabaseTransferInput, DisconnectAccountInput, RevokeApiKeyInput, RevokeSessionInput, VerifyPasswordInput, VerifyTotpInput, SubmitAppInviteCodeInput, SubmitOrgInviteCodeInput, CheckPasswordInput, ConfirmDeleteAccountInput, SetPasswordInput, VerifyEmailInput, ConstructBlueprintInput, ProvisionNewUserInput, ResetPasswordInput, ProvisionCheckConstraintInput, ProvisionUniqueConstraintInput, ProvisionFullTextSearchInput, ProvisionIndexInput, CopyTemplateToBlueprintInput, ProvisionSpatialRelationInput, SignInCrossOriginInput, BootstrapUserInput, SignUpInput, SignInInput, ProvisionRelationInput, SetFieldOrderInput, ApplyRlsInput, ProvisionDatabaseWithUserInput, CreateUserDatabaseInput, ExtendTokenExpiresInput, CreateApiKeyInput, RequestCrossOriginTokenInput, ProvisionTableInput, SendVerificationEmailInput, ForgotPasswordInput, ProvisionBucketInput, SendAccountDeletionEmailPayload, SignOutPayload, AcceptDatabaseTransferPayload, CancelDatabaseTransferPayload, RejectDatabaseTransferPayload, DisconnectAccountPayload, RevokeApiKeyPayload, RevokeSessionPayload, VerifyPasswordPayload, VerifyTotpPayload, SubmitAppInviteCodePayload, SubmitOrgInviteCodePayload, CheckPasswordPayload, ConfirmDeleteAccountPayload, SetPasswordPayload, VerifyEmailPayload, ConstructBlueprintPayload, ProvisionNewUserPayload, ResetPasswordPayload, ProvisionCheckConstraintPayload, ProvisionUniqueConstraintPayload, ProvisionFullTextSearchPayload, ProvisionIndexPayload, CopyTemplateToBlueprintPayload, ProvisionSpatialRelationPayload, SignInCrossOriginPayload, BootstrapUserPayload, SignUpPayload, SignInPayload, ProvisionRelationPayload, SetFieldOrderPayload, ApplyRlsPayload, ProvisionDatabaseWithUserPayload, CreateUserDatabasePayload, ExtendTokenExpiresPayload, CreateApiKeyPayload, RequestCrossOriginTokenPayload, ProvisionTablePayload, SendVerificationEmailPayload, ForgotPasswordPayload, ProvisionBucketPayload, SendAccountDeletionEmailPayloadSelect, SignOutPayloadSelect, AcceptDatabaseTransferPayloadSelect, CancelDatabaseTransferPayloadSelect, RejectDatabaseTransferPayloadSelect, DisconnectAccountPayloadSelect, RevokeApiKeyPayloadSelect, RevokeSessionPayloadSelect, VerifyPasswordPayloadSelect, VerifyTotpPayloadSelect, SubmitAppInviteCodePayloadSelect, SubmitOrgInviteCodePayloadSelect, CheckPasswordPayloadSelect, ConfirmDeleteAccountPayloadSelect, SetPasswordPayloadSelect, VerifyEmailPayloadSelect, ConstructBlueprintPayloadSelect, ProvisionNewUserPayloadSelect, ResetPasswordPayloadSelect, ProvisionCheckConstraintPayloadSelect, ProvisionUniqueConstraintPayloadSelect, ProvisionFullTextSearchPayloadSelect, ProvisionIndexPayloadSelect, CopyTemplateToBlueprintPayloadSelect, ProvisionSpatialRelationPayloadSelect, SignInCrossOriginPayloadSelect, BootstrapUserPayloadSelect, SignUpPayloadSelect, SignInPayloadSelect, ProvisionRelationPayloadSelect, SetFieldOrderPayloadSelect, ApplyRlsPayloadSelect, ProvisionDatabaseWithUserPayloadSelect, CreateUserDatabasePayloadSelect, ExtendTokenExpiresPayloadSelect, CreateApiKeyPayloadSelect, RequestCrossOriginTokenPayloadSelect, ProvisionTablePayloadSelect, SendVerificationEmailPayloadSelect, ForgotPasswordPayloadSelect, ProvisionBucketPayloadSelect } from '../input-types';
|
|
10
10
|
export interface SendAccountDeletionEmailVariables {
|
|
11
11
|
input: SendAccountDeletionEmailInput;
|
|
12
12
|
}
|
|
@@ -55,15 +55,9 @@ export interface SetPasswordVariables {
|
|
|
55
55
|
export interface VerifyEmailVariables {
|
|
56
56
|
input: VerifyEmailInput;
|
|
57
57
|
}
|
|
58
|
-
export interface FreezeObjectsVariables {
|
|
59
|
-
input: FreezeObjectsInput;
|
|
60
|
-
}
|
|
61
|
-
export interface InitEmptyRepoVariables {
|
|
62
|
-
input: InitEmptyRepoInput;
|
|
63
|
-
}
|
|
64
58
|
/**
|
|
65
59
|
* Variables for constructBlueprint
|
|
66
|
-
* Executes a blueprint definition by delegating to provision_* procedures. Creates a blueprint_construction record to track the attempt. Eight phases: (0) entity_type_provision for each membership_type entry — provisions entity tables, membership modules, and security, (0.5) app-
|
|
60
|
+
* Executes a blueprint definition by delegating to provision_* procedures. Creates a blueprint_construction record to track the attempt. Eight phases: (0) entity_type_provision for each membership_type entry — provisions entity tables, membership modules, and security. When a prefix already exists (e.g., 'org'), the entry extends the existing entity type instead of creating a new one; if a storage[] key is present, it provisions entity-scoped storage for that type. (0.5) scope-based storage: each storage[] entry has an optional scope ('app' or 'org' only). App-scoped storage seeds buckets at migration time. Org-scoped storage resolves the org membership type, creates org_buckets/org_files with owner_id, and seeds buckets per-entity via an AFTER INSERT trigger on the users table. When function_module is installed, a private functions bucket is auto-injected into org-scoped or entity-scoped storage entries. (1) provision_table() for each table with nodes[], fields[], policies[], and grants (table-level indexes/fts/unique_constraints/check_constraints are deferred). After provisioning, optional smart_tags (jsonb object) on the table entry are applied via metaschema.append_table_smart_tags(), and optional smart_tags on individual field entries are applied via metaschema.append_field_smart_tags(). (2) provision_relation() for each relation, (3) provision_index() for top-level + deferred indexes, (4) provision_full_text_search() for top-level + deferred FTS, (5) provision_unique_constraint() for top-level + deferred unique constraints, (6) provision_check_constraint() for top-level + deferred check constraints, (7) seed achievements from definition.achievements[] — resolves events_module by entity_prefix and creates INSERT actions for levels, level_requirements, and achievement_rewards tables. Phase 0 entity tables are added to the table_map so subsequent phases can reference them by name. Table-level entries are deferred to phases 3-6 so they can reference columns created by relations in phase 2. Returns the construction record ID on success, NULL on failure.
|
|
67
61
|
*/
|
|
68
62
|
export interface ConstructBlueprintVariables {
|
|
69
63
|
input: ConstructBlueprintInput;
|
|
@@ -74,29 +68,6 @@ export interface ProvisionNewUserVariables {
|
|
|
74
68
|
export interface ResetPasswordVariables {
|
|
75
69
|
input: ResetPasswordInput;
|
|
76
70
|
}
|
|
77
|
-
export interface RemoveNodeAtPathVariables {
|
|
78
|
-
input: RemoveNodeAtPathInput;
|
|
79
|
-
}
|
|
80
|
-
/**
|
|
81
|
-
* Variables for copyTemplateToBlueprint
|
|
82
|
-
* Creates a new blueprint by copying a template definition. Checks visibility: owners can always copy their own templates, others require public visibility. Increments the template copy_count. Returns the new blueprint ID.
|
|
83
|
-
*/
|
|
84
|
-
export interface CopyTemplateToBlueprintVariables {
|
|
85
|
-
input: CopyTemplateToBlueprintInput;
|
|
86
|
-
}
|
|
87
|
-
/**
|
|
88
|
-
* Variables for provisionSpatialRelation
|
|
89
|
-
* Idempotent provisioner for metaschema_public.spatial_relation. Inserts a row declaring a spatial predicate between two geometry/geography columns (owner and target). Called from construct_blueprint when a relation entry has $type=RelationSpatial. Graceful: re-running with the same (source_table_id, name) returns the existing id without modifying the row. Operator whitelist and st_dwithin ↔ param_name pairing are enforced by the spatial_relation table CHECKs. Both fields must already exist — this is a metadata-only insert.
|
|
90
|
-
*/
|
|
91
|
-
export interface ProvisionSpatialRelationVariables {
|
|
92
|
-
input: ProvisionSpatialRelationInput;
|
|
93
|
-
}
|
|
94
|
-
export interface BootstrapUserVariables {
|
|
95
|
-
input: BootstrapUserInput;
|
|
96
|
-
}
|
|
97
|
-
export interface SetFieldOrderVariables {
|
|
98
|
-
input: SetFieldOrderInput;
|
|
99
|
-
}
|
|
100
71
|
/**
|
|
101
72
|
* Variables for provisionCheckConstraint
|
|
102
73
|
* Creates a check constraint on a table from a $type + data blueprint definition. Supports: CheckOneOf (enum validation via = ANY(ARRAY[...])), CheckGreaterThan (single-column > value or cross-column), CheckLessThan (single-column < value or cross-column), CheckNotEqual (cross-column inequality). Builds AST expressions via ast_helpers and inserts into metaschema_public.check_constraint. Graceful: skips if a constraint with the same name already exists.
|
|
@@ -125,23 +96,31 @@ export interface ProvisionFullTextSearchVariables {
|
|
|
125
96
|
export interface ProvisionIndexVariables {
|
|
126
97
|
input: ProvisionIndexInput;
|
|
127
98
|
}
|
|
128
|
-
|
|
129
|
-
|
|
99
|
+
/**
|
|
100
|
+
* Variables for copyTemplateToBlueprint
|
|
101
|
+
* Creates a new blueprint by copying a template definition. Checks visibility: owners can always copy their own templates, others require public visibility. Increments the template copy_count. Returns the new blueprint ID.
|
|
102
|
+
*/
|
|
103
|
+
export interface CopyTemplateToBlueprintVariables {
|
|
104
|
+
input: CopyTemplateToBlueprintInput;
|
|
130
105
|
}
|
|
131
|
-
|
|
132
|
-
|
|
106
|
+
/**
|
|
107
|
+
* Variables for provisionSpatialRelation
|
|
108
|
+
* Idempotent provisioner for metaschema_public.spatial_relation. Inserts a row declaring a spatial predicate between two geometry/geography columns (owner and target). Called from construct_blueprint when a relation entry has $type=RelationSpatial. Graceful: re-running with the same (source_table_id, name) returns the existing id without modifying the row. Operator whitelist and st_dwithin ↔ param_name pairing are enforced by the spatial_relation table CHECKs. Both fields must already exist — this is a metadata-only insert.
|
|
109
|
+
*/
|
|
110
|
+
export interface ProvisionSpatialRelationVariables {
|
|
111
|
+
input: ProvisionSpatialRelationInput;
|
|
133
112
|
}
|
|
134
|
-
export interface
|
|
135
|
-
input:
|
|
113
|
+
export interface SignInCrossOriginVariables {
|
|
114
|
+
input: SignInCrossOriginInput;
|
|
136
115
|
}
|
|
137
|
-
export interface
|
|
138
|
-
input:
|
|
116
|
+
export interface BootstrapUserVariables {
|
|
117
|
+
input: BootstrapUserInput;
|
|
139
118
|
}
|
|
140
|
-
export interface
|
|
141
|
-
input:
|
|
119
|
+
export interface SignUpVariables {
|
|
120
|
+
input: SignUpInput;
|
|
142
121
|
}
|
|
143
|
-
export interface
|
|
144
|
-
input:
|
|
122
|
+
export interface SignInVariables {
|
|
123
|
+
input: SignInInput;
|
|
145
124
|
}
|
|
146
125
|
/**
|
|
147
126
|
* Variables for provisionRelation
|
|
@@ -150,11 +129,14 @@ export interface SetAndCommitVariables {
|
|
|
150
129
|
export interface ProvisionRelationVariables {
|
|
151
130
|
input: ProvisionRelationInput;
|
|
152
131
|
}
|
|
132
|
+
export interface SetFieldOrderVariables {
|
|
133
|
+
input: SetFieldOrderInput;
|
|
134
|
+
}
|
|
153
135
|
export interface ApplyRlsVariables {
|
|
154
136
|
input: ApplyRlsInput;
|
|
155
137
|
}
|
|
156
|
-
export interface
|
|
157
|
-
input:
|
|
138
|
+
export interface ProvisionDatabaseWithUserVariables {
|
|
139
|
+
input: ProvisionDatabaseWithUserInput;
|
|
158
140
|
}
|
|
159
141
|
/**
|
|
160
142
|
* Variables for createUserDatabase
|
|
@@ -184,21 +166,9 @@ export interface ExtendTokenExpiresVariables {
|
|
|
184
166
|
export interface CreateApiKeyVariables {
|
|
185
167
|
input: CreateApiKeyInput;
|
|
186
168
|
}
|
|
187
|
-
export interface SendVerificationEmailVariables {
|
|
188
|
-
input: SendVerificationEmailInput;
|
|
189
|
-
}
|
|
190
|
-
export interface ForgotPasswordVariables {
|
|
191
|
-
input: ForgotPasswordInput;
|
|
192
|
-
}
|
|
193
|
-
export interface SignUpVariables {
|
|
194
|
-
input: SignUpInput;
|
|
195
|
-
}
|
|
196
169
|
export interface RequestCrossOriginTokenVariables {
|
|
197
170
|
input: RequestCrossOriginTokenInput;
|
|
198
171
|
}
|
|
199
|
-
export interface SignInVariables {
|
|
200
|
-
input: SignInInput;
|
|
201
|
-
}
|
|
202
172
|
/**
|
|
203
173
|
* Variables for provisionTable
|
|
204
174
|
* Composable table provisioning: creates or finds a table, then creates fields (so Data* modules can reference them), applies N nodes (Data* modules), enables RLS, creates grants, creates N policies, and optionally creates table-level indexes/full_text_searches/unique_constraints. All operations are graceful (skip existing). Accepts multiple nodes and multiple policies per call, unlike secure_table_provision which is limited to one of each. Returns (out_table_id, out_fields).
|
|
@@ -206,6 +176,12 @@ export interface SignInVariables {
|
|
|
206
176
|
export interface ProvisionTableVariables {
|
|
207
177
|
input: ProvisionTableInput;
|
|
208
178
|
}
|
|
179
|
+
export interface SendVerificationEmailVariables {
|
|
180
|
+
input: SendVerificationEmailInput;
|
|
181
|
+
}
|
|
182
|
+
export interface ForgotPasswordVariables {
|
|
183
|
+
input: ForgotPasswordInput;
|
|
184
|
+
}
|
|
209
185
|
/**
|
|
210
186
|
* Variables for provisionBucket
|
|
211
187
|
* Provision an S3 bucket for a logical bucket in the database.
|
|
@@ -297,16 +273,6 @@ export declare function createMutationOperations(client: OrmClient): {
|
|
|
297
273
|
} & StrictSelect<S, VerifyEmailPayloadSelect>) => QueryBuilder<{
|
|
298
274
|
verifyEmail: InferSelectResult<VerifyEmailPayload, S> | null;
|
|
299
275
|
}>;
|
|
300
|
-
freezeObjects: <S extends FreezeObjectsPayloadSelect>(args: FreezeObjectsVariables, options: {
|
|
301
|
-
select: S;
|
|
302
|
-
} & StrictSelect<S, FreezeObjectsPayloadSelect>) => QueryBuilder<{
|
|
303
|
-
freezeObjects: InferSelectResult<FreezeObjectsPayload, S> | null;
|
|
304
|
-
}>;
|
|
305
|
-
initEmptyRepo: <S extends InitEmptyRepoPayloadSelect>(args: InitEmptyRepoVariables, options: {
|
|
306
|
-
select: S;
|
|
307
|
-
} & StrictSelect<S, InitEmptyRepoPayloadSelect>) => QueryBuilder<{
|
|
308
|
-
initEmptyRepo: InferSelectResult<InitEmptyRepoPayload, S> | null;
|
|
309
|
-
}>;
|
|
310
276
|
constructBlueprint: <S extends ConstructBlueprintPayloadSelect>(args: ConstructBlueprintVariables, options: {
|
|
311
277
|
select: S;
|
|
312
278
|
} & StrictSelect<S, ConstructBlueprintPayloadSelect>) => QueryBuilder<{
|
|
@@ -322,31 +288,6 @@ export declare function createMutationOperations(client: OrmClient): {
|
|
|
322
288
|
} & StrictSelect<S, ResetPasswordPayloadSelect>) => QueryBuilder<{
|
|
323
289
|
resetPassword: InferSelectResult<ResetPasswordPayload, S> | null;
|
|
324
290
|
}>;
|
|
325
|
-
removeNodeAtPath: <S extends RemoveNodeAtPathPayloadSelect>(args: RemoveNodeAtPathVariables, options: {
|
|
326
|
-
select: S;
|
|
327
|
-
} & StrictSelect<S, RemoveNodeAtPathPayloadSelect>) => QueryBuilder<{
|
|
328
|
-
removeNodeAtPath: InferSelectResult<RemoveNodeAtPathPayload, S> | null;
|
|
329
|
-
}>;
|
|
330
|
-
copyTemplateToBlueprint: <S extends CopyTemplateToBlueprintPayloadSelect>(args: CopyTemplateToBlueprintVariables, options: {
|
|
331
|
-
select: S;
|
|
332
|
-
} & StrictSelect<S, CopyTemplateToBlueprintPayloadSelect>) => QueryBuilder<{
|
|
333
|
-
copyTemplateToBlueprint: InferSelectResult<CopyTemplateToBlueprintPayload, S> | null;
|
|
334
|
-
}>;
|
|
335
|
-
provisionSpatialRelation: <S extends ProvisionSpatialRelationPayloadSelect>(args: ProvisionSpatialRelationVariables, options: {
|
|
336
|
-
select: S;
|
|
337
|
-
} & StrictSelect<S, ProvisionSpatialRelationPayloadSelect>) => QueryBuilder<{
|
|
338
|
-
provisionSpatialRelation: InferSelectResult<ProvisionSpatialRelationPayload, S> | null;
|
|
339
|
-
}>;
|
|
340
|
-
bootstrapUser: <S extends BootstrapUserPayloadSelect>(args: BootstrapUserVariables, options: {
|
|
341
|
-
select: S;
|
|
342
|
-
} & StrictSelect<S, BootstrapUserPayloadSelect>) => QueryBuilder<{
|
|
343
|
-
bootstrapUser: InferSelectResult<BootstrapUserPayload, S> | null;
|
|
344
|
-
}>;
|
|
345
|
-
setFieldOrder: <S extends SetFieldOrderPayloadSelect>(args: SetFieldOrderVariables, options: {
|
|
346
|
-
select: S;
|
|
347
|
-
} & StrictSelect<S, SetFieldOrderPayloadSelect>) => QueryBuilder<{
|
|
348
|
-
setFieldOrder: InferSelectResult<SetFieldOrderPayload, S> | null;
|
|
349
|
-
}>;
|
|
350
291
|
provisionCheckConstraint: <S extends ProvisionCheckConstraintPayloadSelect>(args: ProvisionCheckConstraintVariables, options: {
|
|
351
292
|
select: S;
|
|
352
293
|
} & StrictSelect<S, ProvisionCheckConstraintPayloadSelect>) => QueryBuilder<{
|
|
@@ -367,50 +308,55 @@ export declare function createMutationOperations(client: OrmClient): {
|
|
|
367
308
|
} & StrictSelect<S, ProvisionIndexPayloadSelect>) => QueryBuilder<{
|
|
368
309
|
provisionIndex: InferSelectResult<ProvisionIndexPayload, S> | null;
|
|
369
310
|
}>;
|
|
370
|
-
|
|
311
|
+
copyTemplateToBlueprint: <S extends CopyTemplateToBlueprintPayloadSelect>(args: CopyTemplateToBlueprintVariables, options: {
|
|
371
312
|
select: S;
|
|
372
|
-
} & StrictSelect<S,
|
|
373
|
-
|
|
313
|
+
} & StrictSelect<S, CopyTemplateToBlueprintPayloadSelect>) => QueryBuilder<{
|
|
314
|
+
copyTemplateToBlueprint: InferSelectResult<CopyTemplateToBlueprintPayload, S> | null;
|
|
374
315
|
}>;
|
|
375
|
-
|
|
316
|
+
provisionSpatialRelation: <S extends ProvisionSpatialRelationPayloadSelect>(args: ProvisionSpatialRelationVariables, options: {
|
|
376
317
|
select: S;
|
|
377
|
-
} & StrictSelect<S,
|
|
378
|
-
|
|
318
|
+
} & StrictSelect<S, ProvisionSpatialRelationPayloadSelect>) => QueryBuilder<{
|
|
319
|
+
provisionSpatialRelation: InferSelectResult<ProvisionSpatialRelationPayload, S> | null;
|
|
379
320
|
}>;
|
|
380
|
-
|
|
321
|
+
signInCrossOrigin: <S extends SignInCrossOriginPayloadSelect>(args: SignInCrossOriginVariables, options: {
|
|
381
322
|
select: S;
|
|
382
|
-
} & StrictSelect<S,
|
|
383
|
-
|
|
323
|
+
} & StrictSelect<S, SignInCrossOriginPayloadSelect>) => QueryBuilder<{
|
|
324
|
+
signInCrossOrigin: InferSelectResult<SignInCrossOriginPayload, S> | null;
|
|
384
325
|
}>;
|
|
385
|
-
|
|
326
|
+
bootstrapUser: <S extends BootstrapUserPayloadSelect>(args: BootstrapUserVariables, options: {
|
|
386
327
|
select: S;
|
|
387
|
-
} & StrictSelect<S,
|
|
388
|
-
|
|
328
|
+
} & StrictSelect<S, BootstrapUserPayloadSelect>) => QueryBuilder<{
|
|
329
|
+
bootstrapUser: InferSelectResult<BootstrapUserPayload, S> | null;
|
|
389
330
|
}>;
|
|
390
|
-
|
|
331
|
+
signUp: <S extends SignUpPayloadSelect>(args: SignUpVariables, options: {
|
|
391
332
|
select: S;
|
|
392
|
-
} & StrictSelect<S,
|
|
393
|
-
|
|
333
|
+
} & StrictSelect<S, SignUpPayloadSelect>) => QueryBuilder<{
|
|
334
|
+
signUp: InferSelectResult<SignUpPayload, S> | null;
|
|
394
335
|
}>;
|
|
395
|
-
|
|
336
|
+
signIn: <S extends SignInPayloadSelect>(args: SignInVariables, options: {
|
|
396
337
|
select: S;
|
|
397
|
-
} & StrictSelect<S,
|
|
398
|
-
|
|
338
|
+
} & StrictSelect<S, SignInPayloadSelect>) => QueryBuilder<{
|
|
339
|
+
signIn: InferSelectResult<SignInPayload, S> | null;
|
|
399
340
|
}>;
|
|
400
341
|
provisionRelation: <S extends ProvisionRelationPayloadSelect>(args: ProvisionRelationVariables, options: {
|
|
401
342
|
select: S;
|
|
402
343
|
} & StrictSelect<S, ProvisionRelationPayloadSelect>) => QueryBuilder<{
|
|
403
344
|
provisionRelation: InferSelectResult<ProvisionRelationPayload, S> | null;
|
|
404
345
|
}>;
|
|
346
|
+
setFieldOrder: <S extends SetFieldOrderPayloadSelect>(args: SetFieldOrderVariables, options: {
|
|
347
|
+
select: S;
|
|
348
|
+
} & StrictSelect<S, SetFieldOrderPayloadSelect>) => QueryBuilder<{
|
|
349
|
+
setFieldOrder: InferSelectResult<SetFieldOrderPayload, S> | null;
|
|
350
|
+
}>;
|
|
405
351
|
applyRls: <S extends ApplyRlsPayloadSelect>(args: ApplyRlsVariables, options: {
|
|
406
352
|
select: S;
|
|
407
353
|
} & StrictSelect<S, ApplyRlsPayloadSelect>) => QueryBuilder<{
|
|
408
354
|
applyRls: InferSelectResult<ApplyRlsPayload, S> | null;
|
|
409
355
|
}>;
|
|
410
|
-
|
|
356
|
+
provisionDatabaseWithUser: <S extends ProvisionDatabaseWithUserPayloadSelect>(args: ProvisionDatabaseWithUserVariables, options: {
|
|
411
357
|
select: S;
|
|
412
|
-
} & StrictSelect<S,
|
|
413
|
-
|
|
358
|
+
} & StrictSelect<S, ProvisionDatabaseWithUserPayloadSelect>) => QueryBuilder<{
|
|
359
|
+
provisionDatabaseWithUser: InferSelectResult<ProvisionDatabaseWithUserPayload, S> | null;
|
|
414
360
|
}>;
|
|
415
361
|
createUserDatabase: <S extends CreateUserDatabasePayloadSelect>(args: CreateUserDatabaseVariables, options: {
|
|
416
362
|
select: S;
|
|
@@ -427,36 +373,26 @@ export declare function createMutationOperations(client: OrmClient): {
|
|
|
427
373
|
} & StrictSelect<S, CreateApiKeyPayloadSelect>) => QueryBuilder<{
|
|
428
374
|
createApiKey: InferSelectResult<CreateApiKeyPayload, S> | null;
|
|
429
375
|
}>;
|
|
430
|
-
sendVerificationEmail: <S extends SendVerificationEmailPayloadSelect>(args: SendVerificationEmailVariables, options: {
|
|
431
|
-
select: S;
|
|
432
|
-
} & StrictSelect<S, SendVerificationEmailPayloadSelect>) => QueryBuilder<{
|
|
433
|
-
sendVerificationEmail: InferSelectResult<SendVerificationEmailPayload, S> | null;
|
|
434
|
-
}>;
|
|
435
|
-
forgotPassword: <S extends ForgotPasswordPayloadSelect>(args: ForgotPasswordVariables, options: {
|
|
436
|
-
select: S;
|
|
437
|
-
} & StrictSelect<S, ForgotPasswordPayloadSelect>) => QueryBuilder<{
|
|
438
|
-
forgotPassword: InferSelectResult<ForgotPasswordPayload, S> | null;
|
|
439
|
-
}>;
|
|
440
|
-
signUp: <S extends SignUpPayloadSelect>(args: SignUpVariables, options: {
|
|
441
|
-
select: S;
|
|
442
|
-
} & StrictSelect<S, SignUpPayloadSelect>) => QueryBuilder<{
|
|
443
|
-
signUp: InferSelectResult<SignUpPayload, S> | null;
|
|
444
|
-
}>;
|
|
445
376
|
requestCrossOriginToken: <S extends RequestCrossOriginTokenPayloadSelect>(args: RequestCrossOriginTokenVariables, options: {
|
|
446
377
|
select: S;
|
|
447
378
|
} & StrictSelect<S, RequestCrossOriginTokenPayloadSelect>) => QueryBuilder<{
|
|
448
379
|
requestCrossOriginToken: InferSelectResult<RequestCrossOriginTokenPayload, S> | null;
|
|
449
380
|
}>;
|
|
450
|
-
signIn: <S extends SignInPayloadSelect>(args: SignInVariables, options: {
|
|
451
|
-
select: S;
|
|
452
|
-
} & StrictSelect<S, SignInPayloadSelect>) => QueryBuilder<{
|
|
453
|
-
signIn: InferSelectResult<SignInPayload, S> | null;
|
|
454
|
-
}>;
|
|
455
381
|
provisionTable: <S extends ProvisionTablePayloadSelect>(args: ProvisionTableVariables, options: {
|
|
456
382
|
select: S;
|
|
457
383
|
} & StrictSelect<S, ProvisionTablePayloadSelect>) => QueryBuilder<{
|
|
458
384
|
provisionTable: InferSelectResult<ProvisionTablePayload, S> | null;
|
|
459
385
|
}>;
|
|
386
|
+
sendVerificationEmail: <S extends SendVerificationEmailPayloadSelect>(args: SendVerificationEmailVariables, options: {
|
|
387
|
+
select: S;
|
|
388
|
+
} & StrictSelect<S, SendVerificationEmailPayloadSelect>) => QueryBuilder<{
|
|
389
|
+
sendVerificationEmail: InferSelectResult<SendVerificationEmailPayload, S> | null;
|
|
390
|
+
}>;
|
|
391
|
+
forgotPassword: <S extends ForgotPasswordPayloadSelect>(args: ForgotPasswordVariables, options: {
|
|
392
|
+
select: S;
|
|
393
|
+
} & StrictSelect<S, ForgotPasswordPayloadSelect>) => QueryBuilder<{
|
|
394
|
+
forgotPassword: InferSelectResult<ForgotPasswordPayload, S> | null;
|
|
395
|
+
}>;
|
|
460
396
|
provisionBucket: <S extends ProvisionBucketPayloadSelect>(args: ProvisionBucketVariables, options: {
|
|
461
397
|
select: S;
|
|
462
398
|
} & StrictSelect<S, ProvisionBucketPayloadSelect>) => QueryBuilder<{
|