@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
package/public/orm/index.d.ts
CHANGED
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
import type { OrmClientConfig } from './client';
|
|
2
2
|
import { OrgGetManagersRecordModel } from './models/orgGetManagersRecord';
|
|
3
3
|
import { OrgGetSubordinatesRecordModel } from './models/orgGetSubordinatesRecord';
|
|
4
|
-
import { GetAllRecordModel } from './models/getAllRecord';
|
|
5
4
|
import { AppPermissionModel } from './models/appPermission';
|
|
6
5
|
import { OrgPermissionModel } from './models/orgPermission';
|
|
7
|
-
import { ObjectModel } from './models/object';
|
|
8
6
|
import { DatabaseModel } from './models/database';
|
|
9
7
|
import { SchemaModel } from './models/schema';
|
|
10
8
|
import { TableModel } from './models/table';
|
|
@@ -29,6 +27,7 @@ import { RelationProvisionModel } from './models/relationProvision';
|
|
|
29
27
|
import { SessionSecretsModuleModel } from './models/sessionSecretsModule';
|
|
30
28
|
import { IdentityProvidersModuleModel } from './models/identityProvidersModule';
|
|
31
29
|
import { RealtimeModuleModel } from './models/realtimeModule';
|
|
30
|
+
import { ConfigSecretsOrgModuleModel } from './models/configSecretsOrgModule';
|
|
32
31
|
import { SchemaGrantModel } from './models/schemaGrant';
|
|
33
32
|
import { DefaultPrivilegeModel } from './models/defaultPrivilege';
|
|
34
33
|
import { EnumModel } from './models/enum';
|
|
@@ -40,9 +39,11 @@ import { SiteMetadatumModel } from './models/siteMetadatum';
|
|
|
40
39
|
import { SiteModuleModel } from './models/siteModule';
|
|
41
40
|
import { SiteThemeModel } from './models/siteTheme';
|
|
42
41
|
import { CorsSettingModel } from './models/corsSetting';
|
|
42
|
+
import { MerkleStoreModuleModel } from './models/merkleStoreModule';
|
|
43
|
+
import { GraphModuleModel } from './models/graphModule';
|
|
43
44
|
import { TriggerFunctionModel } from './models/triggerFunction';
|
|
44
|
-
import { DatabaseTransferModel } from './models/databaseTransfer';
|
|
45
45
|
import { PartitionModel } from './models/partition';
|
|
46
|
+
import { DatabaseTransferModel } from './models/databaseTransfer';
|
|
46
47
|
import { ApiModel } from './models/api';
|
|
47
48
|
import { SiteModel } from './models/site';
|
|
48
49
|
import { AppModel } from './models/app';
|
|
@@ -53,7 +54,7 @@ import { CryptoAuthModuleModel } from './models/cryptoAuthModule';
|
|
|
53
54
|
import { DefaultIdsModuleModel } from './models/defaultIdsModule';
|
|
54
55
|
import { DenormalizedTableFieldModel } from './models/denormalizedTableField';
|
|
55
56
|
import { EmailsModuleModel } from './models/emailsModule';
|
|
56
|
-
import {
|
|
57
|
+
import { ConfigSecretsUserModuleModel } from './models/configSecretsUserModule';
|
|
57
58
|
import { InvitesModuleModel } from './models/invitesModule';
|
|
58
59
|
import { EventsModuleModel } from './models/eventsModule';
|
|
59
60
|
import { LimitsModuleModel } from './models/limitsModule';
|
|
@@ -74,6 +75,14 @@ import { EntityTypeProvisionModel } from './models/entityTypeProvision';
|
|
|
74
75
|
import { WebauthnCredentialsModuleModel } from './models/webauthnCredentialsModule';
|
|
75
76
|
import { WebauthnAuthModuleModel } from './models/webauthnAuthModule';
|
|
76
77
|
import { NotificationsModuleModel } from './models/notificationsModule';
|
|
78
|
+
import { InferenceLogModuleModel } from './models/inferenceLogModule';
|
|
79
|
+
import { ComputeLogModuleModel } from './models/computeLogModule';
|
|
80
|
+
import { TransferLogModuleModel } from './models/transferLogModule';
|
|
81
|
+
import { StorageLogModuleModel } from './models/storageLogModule';
|
|
82
|
+
import { DbUsageModuleModel } from './models/dbUsageModule';
|
|
83
|
+
import { AgentModuleModel } from './models/agentModule';
|
|
84
|
+
import { NamespaceModuleModel } from './models/namespaceModule';
|
|
85
|
+
import { FunctionModuleModel } from './models/functionModule';
|
|
77
86
|
import { DatabaseProvisionModuleModel } from './models/databaseProvisionModule';
|
|
78
87
|
import { AppAdminGrantModel } from './models/appAdminGrant';
|
|
79
88
|
import { AppOwnerGrantModel } from './models/appOwnerGrant';
|
|
@@ -103,52 +112,45 @@ import { AppInviteModel } from './models/appInvite';
|
|
|
103
112
|
import { AppClaimedInviteModel } from './models/appClaimedInvite';
|
|
104
113
|
import { OrgInviteModel } from './models/orgInvite';
|
|
105
114
|
import { OrgClaimedInviteModel } from './models/orgClaimedInvite';
|
|
106
|
-
import {
|
|
107
|
-
import { AgentThreadModel } from './models/agentThread';
|
|
108
|
-
import { AgentMessageModel } from './models/agentMessage';
|
|
109
|
-
import { AgentTaskModel } from './models/agentTask';
|
|
110
|
-
import { RoleTypeModel } from './models/roleType';
|
|
115
|
+
import { AuditLogAuthModel } from './models/auditLogAuth';
|
|
111
116
|
import { IdentityProviderModel } from './models/identityProvider';
|
|
112
|
-
import { RefModel } from './models/ref';
|
|
113
|
-
import { StoreModel } from './models/store';
|
|
114
117
|
import { AppPermissionDefaultModel } from './models/appPermissionDefault';
|
|
115
|
-
import {
|
|
118
|
+
import { RoleTypeModel } from './models/roleType';
|
|
119
|
+
import { MigrateFileModel } from './models/migrateFile';
|
|
120
|
+
import { DevicesModuleModel } from './models/devicesModule';
|
|
121
|
+
import { AppMembershipDefaultModel } from './models/appMembershipDefault';
|
|
122
|
+
import { OrgMembershipDefaultModel } from './models/orgMembershipDefault';
|
|
123
|
+
import { NodeTypeRegistryModel } from './models/nodeTypeRegistry';
|
|
116
124
|
import { AppLimitCapsDefaultModel } from './models/appLimitCapsDefault';
|
|
117
125
|
import { OrgLimitCapsDefaultModel } from './models/orgLimitCapsDefault';
|
|
118
126
|
import { AppLimitCapModel } from './models/appLimitCap';
|
|
119
127
|
import { OrgLimitCapModel } from './models/orgLimitCap';
|
|
120
|
-
import {
|
|
121
|
-
import { MigrateFileModel } from './models/migrateFile';
|
|
122
|
-
import { DevicesModuleModel } from './models/devicesModule';
|
|
123
|
-
import { NodeTypeRegistryModel } from './models/nodeTypeRegistry';
|
|
128
|
+
import { UserConnectedAccountModel } from './models/userConnectedAccount';
|
|
124
129
|
import { AppLimitDefaultModel } from './models/appLimitDefault';
|
|
125
130
|
import { OrgLimitDefaultModel } from './models/orgLimitDefault';
|
|
131
|
+
import { AppLimitCreditCodeModel } from './models/appLimitCreditCode';
|
|
126
132
|
import { AppLimitWarningModel } from './models/appLimitWarning';
|
|
127
|
-
import { UserConnectedAccountModel } from './models/userConnectedAccount';
|
|
128
|
-
import { CommitModel } from './models/commit';
|
|
129
133
|
import { PubkeySettingModel } from './models/pubkeySetting';
|
|
130
134
|
import { RateLimitsModuleModel } from './models/rateLimitsModule';
|
|
131
|
-
import {
|
|
132
|
-
import { AppMembershipDefaultModel } from './models/appMembershipDefault';
|
|
133
|
-
import { OrgMembershipDefaultModel } from './models/orgMembershipDefault';
|
|
135
|
+
import { MembershipTypeModel } from './models/membershipType';
|
|
134
136
|
import { RlsSettingModel } from './models/rlsSetting';
|
|
135
|
-
import { AppLimitEventModel } from './models/appLimitEvent';
|
|
136
|
-
import { OrgLimitEventModel } from './models/orgLimitEvent';
|
|
137
137
|
import { RlsModuleModel } from './models/rlsModule';
|
|
138
138
|
import { RateLimitMetersModuleModel } from './models/rateLimitMetersModule';
|
|
139
139
|
import { PlansModuleModel } from './models/plansModule';
|
|
140
140
|
import { SqlActionModel } from './models/sqlAction';
|
|
141
141
|
import { DatabaseSettingModel } from './models/databaseSetting';
|
|
142
|
-
import { BillingModuleModel } from './models/billingModule';
|
|
143
|
-
import { AstMigrationModel } from './models/astMigration';
|
|
144
|
-
import { UserModel } from './models/user';
|
|
145
142
|
import { OrgMembershipSettingModel } from './models/orgMembershipSetting';
|
|
146
|
-
import {
|
|
143
|
+
import { AppLimitEventModel } from './models/appLimitEvent';
|
|
144
|
+
import { OrgLimitEventModel } from './models/orgLimitEvent';
|
|
147
145
|
import { AppMembershipModel } from './models/appMembership';
|
|
146
|
+
import { UserModel } from './models/user';
|
|
147
|
+
import { AstMigrationModel } from './models/astMigration';
|
|
148
|
+
import { WebauthnSettingModel } from './models/webauthnSetting';
|
|
149
|
+
import { BillingModuleModel } from './models/billingModule';
|
|
148
150
|
import { BillingProviderModuleModel } from './models/billingProviderModule';
|
|
149
151
|
import { HierarchyModuleModel } from './models/hierarchyModule';
|
|
150
152
|
export type { OrmClientConfig, QueryResult, GraphQLError, GraphQLAdapter } from './client';
|
|
151
|
-
export { GraphQLRequestError } from './client';
|
|
153
|
+
export { GraphQLRequestError, FetchAdapter } from './client';
|
|
152
154
|
export { QueryBuilder } from './query-builder';
|
|
153
155
|
export * from './select-types';
|
|
154
156
|
export * from './models';
|
|
@@ -180,10 +182,8 @@ export { createMutationOperations } from './mutation';
|
|
|
180
182
|
export declare function createClient(config: OrmClientConfig): {
|
|
181
183
|
orgGetManagersRecord: OrgGetManagersRecordModel;
|
|
182
184
|
orgGetSubordinatesRecord: OrgGetSubordinatesRecordModel;
|
|
183
|
-
getAllRecord: GetAllRecordModel;
|
|
184
185
|
appPermission: AppPermissionModel;
|
|
185
186
|
orgPermission: OrgPermissionModel;
|
|
186
|
-
object: ObjectModel;
|
|
187
187
|
database: DatabaseModel;
|
|
188
188
|
schema: SchemaModel;
|
|
189
189
|
table: TableModel;
|
|
@@ -208,6 +208,7 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
208
208
|
sessionSecretsModule: SessionSecretsModuleModel;
|
|
209
209
|
identityProvidersModule: IdentityProvidersModuleModel;
|
|
210
210
|
realtimeModule: RealtimeModuleModel;
|
|
211
|
+
configSecretsOrgModule: ConfigSecretsOrgModuleModel;
|
|
211
212
|
schemaGrant: SchemaGrantModel;
|
|
212
213
|
defaultPrivilege: DefaultPrivilegeModel;
|
|
213
214
|
enum: EnumModel;
|
|
@@ -219,9 +220,11 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
219
220
|
siteModule: SiteModuleModel;
|
|
220
221
|
siteTheme: SiteThemeModel;
|
|
221
222
|
corsSetting: CorsSettingModel;
|
|
223
|
+
merkleStoreModule: MerkleStoreModuleModel;
|
|
224
|
+
graphModule: GraphModuleModel;
|
|
222
225
|
triggerFunction: TriggerFunctionModel;
|
|
223
|
-
databaseTransfer: DatabaseTransferModel;
|
|
224
226
|
partition: PartitionModel;
|
|
227
|
+
databaseTransfer: DatabaseTransferModel;
|
|
225
228
|
api: ApiModel;
|
|
226
229
|
site: SiteModel;
|
|
227
230
|
app: AppModel;
|
|
@@ -232,7 +235,7 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
232
235
|
defaultIdsModule: DefaultIdsModuleModel;
|
|
233
236
|
denormalizedTableField: DenormalizedTableFieldModel;
|
|
234
237
|
emailsModule: EmailsModuleModel;
|
|
235
|
-
|
|
238
|
+
configSecretsUserModule: ConfigSecretsUserModuleModel;
|
|
236
239
|
invitesModule: InvitesModuleModel;
|
|
237
240
|
eventsModule: EventsModuleModel;
|
|
238
241
|
limitsModule: LimitsModuleModel;
|
|
@@ -253,6 +256,14 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
253
256
|
webauthnCredentialsModule: WebauthnCredentialsModuleModel;
|
|
254
257
|
webauthnAuthModule: WebauthnAuthModuleModel;
|
|
255
258
|
notificationsModule: NotificationsModuleModel;
|
|
259
|
+
inferenceLogModule: InferenceLogModuleModel;
|
|
260
|
+
computeLogModule: ComputeLogModuleModel;
|
|
261
|
+
transferLogModule: TransferLogModuleModel;
|
|
262
|
+
storageLogModule: StorageLogModuleModel;
|
|
263
|
+
dbUsageModule: DbUsageModuleModel;
|
|
264
|
+
agentModule: AgentModuleModel;
|
|
265
|
+
namespaceModule: NamespaceModuleModel;
|
|
266
|
+
functionModule: FunctionModuleModel;
|
|
256
267
|
databaseProvisionModule: DatabaseProvisionModuleModel;
|
|
257
268
|
appAdminGrant: AppAdminGrantModel;
|
|
258
269
|
appOwnerGrant: AppOwnerGrantModel;
|
|
@@ -282,48 +293,41 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
282
293
|
appClaimedInvite: AppClaimedInviteModel;
|
|
283
294
|
orgInvite: OrgInviteModel;
|
|
284
295
|
orgClaimedInvite: OrgClaimedInviteModel;
|
|
285
|
-
|
|
286
|
-
agentThread: AgentThreadModel;
|
|
287
|
-
agentMessage: AgentMessageModel;
|
|
288
|
-
agentTask: AgentTaskModel;
|
|
289
|
-
roleType: RoleTypeModel;
|
|
296
|
+
auditLogAuth: AuditLogAuthModel;
|
|
290
297
|
identityProvider: IdentityProviderModel;
|
|
291
|
-
ref: RefModel;
|
|
292
|
-
store: StoreModel;
|
|
293
298
|
appPermissionDefault: AppPermissionDefaultModel;
|
|
294
|
-
|
|
299
|
+
roleType: RoleTypeModel;
|
|
300
|
+
migrateFile: MigrateFileModel;
|
|
301
|
+
devicesModule: DevicesModuleModel;
|
|
302
|
+
appMembershipDefault: AppMembershipDefaultModel;
|
|
303
|
+
orgMembershipDefault: OrgMembershipDefaultModel;
|
|
304
|
+
nodeTypeRegistry: NodeTypeRegistryModel;
|
|
295
305
|
appLimitCapsDefault: AppLimitCapsDefaultModel;
|
|
296
306
|
orgLimitCapsDefault: OrgLimitCapsDefaultModel;
|
|
297
307
|
appLimitCap: AppLimitCapModel;
|
|
298
308
|
orgLimitCap: OrgLimitCapModel;
|
|
299
|
-
|
|
300
|
-
migrateFile: MigrateFileModel;
|
|
301
|
-
devicesModule: DevicesModuleModel;
|
|
302
|
-
nodeTypeRegistry: NodeTypeRegistryModel;
|
|
309
|
+
userConnectedAccount: UserConnectedAccountModel;
|
|
303
310
|
appLimitDefault: AppLimitDefaultModel;
|
|
304
311
|
orgLimitDefault: OrgLimitDefaultModel;
|
|
312
|
+
appLimitCreditCode: AppLimitCreditCodeModel;
|
|
305
313
|
appLimitWarning: AppLimitWarningModel;
|
|
306
|
-
userConnectedAccount: UserConnectedAccountModel;
|
|
307
|
-
commit: CommitModel;
|
|
308
314
|
pubkeySetting: PubkeySettingModel;
|
|
309
315
|
rateLimitsModule: RateLimitsModuleModel;
|
|
310
|
-
|
|
311
|
-
appMembershipDefault: AppMembershipDefaultModel;
|
|
312
|
-
orgMembershipDefault: OrgMembershipDefaultModel;
|
|
316
|
+
membershipType: MembershipTypeModel;
|
|
313
317
|
rlsSetting: RlsSettingModel;
|
|
314
|
-
appLimitEvent: AppLimitEventModel;
|
|
315
|
-
orgLimitEvent: OrgLimitEventModel;
|
|
316
318
|
rlsModule: RlsModuleModel;
|
|
317
319
|
rateLimitMetersModule: RateLimitMetersModuleModel;
|
|
318
320
|
plansModule: PlansModuleModel;
|
|
319
321
|
sqlAction: SqlActionModel;
|
|
320
322
|
databaseSetting: DatabaseSettingModel;
|
|
321
|
-
billingModule: BillingModuleModel;
|
|
322
|
-
astMigration: AstMigrationModel;
|
|
323
|
-
user: UserModel;
|
|
324
323
|
orgMembershipSetting: OrgMembershipSettingModel;
|
|
325
|
-
|
|
324
|
+
appLimitEvent: AppLimitEventModel;
|
|
325
|
+
orgLimitEvent: OrgLimitEventModel;
|
|
326
326
|
appMembership: AppMembershipModel;
|
|
327
|
+
user: UserModel;
|
|
328
|
+
astMigration: AstMigrationModel;
|
|
329
|
+
webauthnSetting: WebauthnSettingModel;
|
|
330
|
+
billingModule: BillingModuleModel;
|
|
327
331
|
billingProviderModule: BillingProviderModuleModel;
|
|
328
332
|
hierarchyModule: HierarchyModuleModel;
|
|
329
333
|
query: {
|
|
@@ -357,16 +361,21 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
357
361
|
}) => import("./query-builder").QueryBuilder<{
|
|
358
362
|
orgPermissionsGetPaddedMask: string | null;
|
|
359
363
|
}>;
|
|
360
|
-
|
|
364
|
+
applyRegistryDefaults: (args: import("./query").ApplyRegistryDefaultsVariables, options?: {
|
|
361
365
|
select?: Record<string, unknown>;
|
|
362
366
|
}) => import("./query-builder").QueryBuilder<{
|
|
363
|
-
|
|
367
|
+
applyRegistryDefaults: unknown | null;
|
|
364
368
|
}>;
|
|
365
369
|
resolveBlueprintField: (args: import("./query").ResolveBlueprintFieldVariables, options?: {
|
|
366
370
|
select?: Record<string, unknown>;
|
|
367
371
|
}) => import("./query-builder").QueryBuilder<{
|
|
368
372
|
resolveBlueprintField: string | null;
|
|
369
373
|
}>;
|
|
374
|
+
resolveBlueprintTable: (args: import("./query").ResolveBlueprintTableVariables, options?: {
|
|
375
|
+
select?: Record<string, unknown>;
|
|
376
|
+
}) => import("./query-builder").QueryBuilder<{
|
|
377
|
+
resolveBlueprintTable: string | null;
|
|
378
|
+
}>;
|
|
370
379
|
orgIsManagerOf: (args: import("./query").OrgIsManagerOfVariables, options?: {
|
|
371
380
|
select?: Record<string, unknown>;
|
|
372
381
|
}) => import("./query-builder").QueryBuilder<{
|
|
@@ -382,11 +391,6 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
382
391
|
}) => import("./query-builder").QueryBuilder<{
|
|
383
392
|
orgPermissionsGetMask: string | null;
|
|
384
393
|
}>;
|
|
385
|
-
resolveBlueprintTable: (args: import("./query").ResolveBlueprintTableVariables, options?: {
|
|
386
|
-
select?: Record<string, unknown>;
|
|
387
|
-
}) => import("./query-builder").QueryBuilder<{
|
|
388
|
-
resolveBlueprintTable: string | null;
|
|
389
|
-
}>;
|
|
390
394
|
appPermissionsGetMaskByNames: (args: import("./query").AppPermissionsGetMaskByNamesVariables, options?: {
|
|
391
395
|
select?: Record<string, unknown>;
|
|
392
396
|
}) => import("./query-builder").QueryBuilder<{
|
|
@@ -407,21 +411,6 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
407
411
|
}) => import("./query-builder").QueryBuilder<{
|
|
408
412
|
orgPermissionsGetByMask: import("./input-types").OrgPermissionConnection | null;
|
|
409
413
|
}>;
|
|
410
|
-
getAllObjectsFromRoot: (args: import("./query").GetAllObjectsFromRootVariables, options?: {
|
|
411
|
-
select?: Record<string, unknown>;
|
|
412
|
-
}) => import("./query-builder").QueryBuilder<{
|
|
413
|
-
getAllObjectsFromRoot: import("./input-types").ObjectConnection | null;
|
|
414
|
-
}>;
|
|
415
|
-
getPathObjectsFromRoot: (args: import("./query").GetPathObjectsFromRootVariables, options?: {
|
|
416
|
-
select?: Record<string, unknown>;
|
|
417
|
-
}) => import("./query-builder").QueryBuilder<{
|
|
418
|
-
getPathObjectsFromRoot: import("./input-types").ObjectConnection | null;
|
|
419
|
-
}>;
|
|
420
|
-
getObjectAtPath: <S extends import("./input-types").ObjectSelect>(args: import("./query").GetObjectAtPathVariables, options: {
|
|
421
|
-
select: S;
|
|
422
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").ObjectSelect>) => import("./query-builder").QueryBuilder<{
|
|
423
|
-
getObjectAtPath: import("./select-types").InferSelectResult<import("./input-types").Object, S> | null;
|
|
424
|
-
}>;
|
|
425
414
|
currentUser: <S extends import("./input-types").UserSelect>(options: {
|
|
426
415
|
select: S;
|
|
427
416
|
} & import("./select-types").StrictSelect<S, import("./input-types").UserSelect>) => import("./query-builder").QueryBuilder<{
|
|
@@ -509,16 +498,6 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
509
498
|
} & import("./select-types").StrictSelect<S, import("./input-types").VerifyEmailPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
510
499
|
verifyEmail: import("./select-types").InferSelectResult<import("./input-types").VerifyEmailPayload, S> | null;
|
|
511
500
|
}>;
|
|
512
|
-
freezeObjects: <S extends import("./input-types").FreezeObjectsPayloadSelect>(args: import("./mutation").FreezeObjectsVariables, options: {
|
|
513
|
-
select: S;
|
|
514
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").FreezeObjectsPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
515
|
-
freezeObjects: import("./select-types").InferSelectResult<import("./input-types").FreezeObjectsPayload, S> | null;
|
|
516
|
-
}>;
|
|
517
|
-
initEmptyRepo: <S extends import("./input-types").InitEmptyRepoPayloadSelect>(args: import("./mutation").InitEmptyRepoVariables, options: {
|
|
518
|
-
select: S;
|
|
519
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").InitEmptyRepoPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
520
|
-
initEmptyRepo: import("./select-types").InferSelectResult<import("./input-types").InitEmptyRepoPayload, S> | null;
|
|
521
|
-
}>;
|
|
522
501
|
constructBlueprint: <S extends import("./input-types").ConstructBlueprintPayloadSelect>(args: import("./mutation").ConstructBlueprintVariables, options: {
|
|
523
502
|
select: S;
|
|
524
503
|
} & import("./select-types").StrictSelect<S, import("./input-types").ConstructBlueprintPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
@@ -534,31 +513,6 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
534
513
|
} & import("./select-types").StrictSelect<S, import("./input-types").ResetPasswordPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
535
514
|
resetPassword: import("./select-types").InferSelectResult<import("./input-types").ResetPasswordPayload, S> | null;
|
|
536
515
|
}>;
|
|
537
|
-
removeNodeAtPath: <S extends import("./input-types").RemoveNodeAtPathPayloadSelect>(args: import("./mutation").RemoveNodeAtPathVariables, options: {
|
|
538
|
-
select: S;
|
|
539
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").RemoveNodeAtPathPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
540
|
-
removeNodeAtPath: import("./select-types").InferSelectResult<import("./input-types").RemoveNodeAtPathPayload, S> | null;
|
|
541
|
-
}>;
|
|
542
|
-
copyTemplateToBlueprint: <S extends import("./input-types").CopyTemplateToBlueprintPayloadSelect>(args: import("./mutation").CopyTemplateToBlueprintVariables, options: {
|
|
543
|
-
select: S;
|
|
544
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").CopyTemplateToBlueprintPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
545
|
-
copyTemplateToBlueprint: import("./select-types").InferSelectResult<import("./input-types").CopyTemplateToBlueprintPayload, S> | null;
|
|
546
|
-
}>;
|
|
547
|
-
provisionSpatialRelation: <S extends import("./input-types").ProvisionSpatialRelationPayloadSelect>(args: import("./mutation").ProvisionSpatialRelationVariables, options: {
|
|
548
|
-
select: S;
|
|
549
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").ProvisionSpatialRelationPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
550
|
-
provisionSpatialRelation: import("./select-types").InferSelectResult<import("./input-types").ProvisionSpatialRelationPayload, S> | null;
|
|
551
|
-
}>;
|
|
552
|
-
bootstrapUser: <S extends import("./input-types").BootstrapUserPayloadSelect>(args: import("./mutation").BootstrapUserVariables, options: {
|
|
553
|
-
select: S;
|
|
554
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").BootstrapUserPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
555
|
-
bootstrapUser: import("./select-types").InferSelectResult<import("./input-types").BootstrapUserPayload, S> | null;
|
|
556
|
-
}>;
|
|
557
|
-
setFieldOrder: <S extends import("./input-types").SetFieldOrderPayloadSelect>(args: import("./mutation").SetFieldOrderVariables, options: {
|
|
558
|
-
select: S;
|
|
559
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").SetFieldOrderPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
560
|
-
setFieldOrder: import("./select-types").InferSelectResult<import("./input-types").SetFieldOrderPayload, S> | null;
|
|
561
|
-
}>;
|
|
562
516
|
provisionCheckConstraint: <S extends import("./input-types").ProvisionCheckConstraintPayloadSelect>(args: import("./mutation").ProvisionCheckConstraintVariables, options: {
|
|
563
517
|
select: S;
|
|
564
518
|
} & import("./select-types").StrictSelect<S, import("./input-types").ProvisionCheckConstraintPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
@@ -579,50 +533,55 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
579
533
|
} & import("./select-types").StrictSelect<S, import("./input-types").ProvisionIndexPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
580
534
|
provisionIndex: import("./select-types").InferSelectResult<import("./input-types").ProvisionIndexPayload, S> | null;
|
|
581
535
|
}>;
|
|
582
|
-
|
|
536
|
+
copyTemplateToBlueprint: <S extends import("./input-types").CopyTemplateToBlueprintPayloadSelect>(args: import("./mutation").CopyTemplateToBlueprintVariables, options: {
|
|
583
537
|
select: S;
|
|
584
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").
|
|
585
|
-
|
|
538
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").CopyTemplateToBlueprintPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
539
|
+
copyTemplateToBlueprint: import("./select-types").InferSelectResult<import("./input-types").CopyTemplateToBlueprintPayload, S> | null;
|
|
586
540
|
}>;
|
|
587
|
-
|
|
541
|
+
provisionSpatialRelation: <S extends import("./input-types").ProvisionSpatialRelationPayloadSelect>(args: import("./mutation").ProvisionSpatialRelationVariables, options: {
|
|
588
542
|
select: S;
|
|
589
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").
|
|
590
|
-
|
|
543
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").ProvisionSpatialRelationPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
544
|
+
provisionSpatialRelation: import("./select-types").InferSelectResult<import("./input-types").ProvisionSpatialRelationPayload, S> | null;
|
|
591
545
|
}>;
|
|
592
|
-
|
|
546
|
+
signInCrossOrigin: <S extends import("./input-types").SignInCrossOriginPayloadSelect>(args: import("./mutation").SignInCrossOriginVariables, options: {
|
|
593
547
|
select: S;
|
|
594
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").
|
|
595
|
-
|
|
548
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").SignInCrossOriginPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
549
|
+
signInCrossOrigin: import("./select-types").InferSelectResult<import("./input-types").SignInCrossOriginPayload, S> | null;
|
|
596
550
|
}>;
|
|
597
|
-
|
|
551
|
+
bootstrapUser: <S extends import("./input-types").BootstrapUserPayloadSelect>(args: import("./mutation").BootstrapUserVariables, options: {
|
|
598
552
|
select: S;
|
|
599
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").
|
|
600
|
-
|
|
553
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").BootstrapUserPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
554
|
+
bootstrapUser: import("./select-types").InferSelectResult<import("./input-types").BootstrapUserPayload, S> | null;
|
|
601
555
|
}>;
|
|
602
|
-
|
|
556
|
+
signUp: <S extends import("./input-types").SignUpPayloadSelect>(args: import("./mutation").SignUpVariables, options: {
|
|
603
557
|
select: S;
|
|
604
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").
|
|
605
|
-
|
|
558
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").SignUpPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
559
|
+
signUp: import("./select-types").InferSelectResult<import("./input-types").SignUpPayload, S> | null;
|
|
606
560
|
}>;
|
|
607
|
-
|
|
561
|
+
signIn: <S extends import("./input-types").SignInPayloadSelect>(args: import("./mutation").SignInVariables, options: {
|
|
608
562
|
select: S;
|
|
609
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").
|
|
610
|
-
|
|
563
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").SignInPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
564
|
+
signIn: import("./select-types").InferSelectResult<import("./input-types").SignInPayload, S> | null;
|
|
611
565
|
}>;
|
|
612
566
|
provisionRelation: <S extends import("./input-types").ProvisionRelationPayloadSelect>(args: import("./mutation").ProvisionRelationVariables, options: {
|
|
613
567
|
select: S;
|
|
614
568
|
} & import("./select-types").StrictSelect<S, import("./input-types").ProvisionRelationPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
615
569
|
provisionRelation: import("./select-types").InferSelectResult<import("./input-types").ProvisionRelationPayload, S> | null;
|
|
616
570
|
}>;
|
|
571
|
+
setFieldOrder: <S extends import("./input-types").SetFieldOrderPayloadSelect>(args: import("./mutation").SetFieldOrderVariables, options: {
|
|
572
|
+
select: S;
|
|
573
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").SetFieldOrderPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
574
|
+
setFieldOrder: import("./select-types").InferSelectResult<import("./input-types").SetFieldOrderPayload, S> | null;
|
|
575
|
+
}>;
|
|
617
576
|
applyRls: <S extends import("./input-types").ApplyRlsPayloadSelect>(args: import("./mutation").ApplyRlsVariables, options: {
|
|
618
577
|
select: S;
|
|
619
578
|
} & import("./select-types").StrictSelect<S, import("./input-types").ApplyRlsPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
620
579
|
applyRls: import("./select-types").InferSelectResult<import("./input-types").ApplyRlsPayload, S> | null;
|
|
621
580
|
}>;
|
|
622
|
-
|
|
581
|
+
provisionDatabaseWithUser: <S extends import("./input-types").ProvisionDatabaseWithUserPayloadSelect>(args: import("./mutation").ProvisionDatabaseWithUserVariables, options: {
|
|
623
582
|
select: S;
|
|
624
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").
|
|
625
|
-
|
|
583
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").ProvisionDatabaseWithUserPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
584
|
+
provisionDatabaseWithUser: import("./select-types").InferSelectResult<import("./input-types").ProvisionDatabaseWithUserPayload, S> | null;
|
|
626
585
|
}>;
|
|
627
586
|
createUserDatabase: <S extends import("./input-types").CreateUserDatabasePayloadSelect>(args: import("./mutation").CreateUserDatabaseVariables, options: {
|
|
628
587
|
select: S;
|
|
@@ -639,36 +598,26 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
639
598
|
} & import("./select-types").StrictSelect<S, import("./input-types").CreateApiKeyPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
640
599
|
createApiKey: import("./select-types").InferSelectResult<import("./input-types").CreateApiKeyPayload, S> | null;
|
|
641
600
|
}>;
|
|
642
|
-
sendVerificationEmail: <S extends import("./input-types").SendVerificationEmailPayloadSelect>(args: import("./mutation").SendVerificationEmailVariables, options: {
|
|
643
|
-
select: S;
|
|
644
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").SendVerificationEmailPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
645
|
-
sendVerificationEmail: import("./select-types").InferSelectResult<import("./input-types").SendVerificationEmailPayload, S> | null;
|
|
646
|
-
}>;
|
|
647
|
-
forgotPassword: <S extends import("./input-types").ForgotPasswordPayloadSelect>(args: import("./mutation").ForgotPasswordVariables, options: {
|
|
648
|
-
select: S;
|
|
649
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").ForgotPasswordPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
650
|
-
forgotPassword: import("./select-types").InferSelectResult<import("./input-types").ForgotPasswordPayload, S> | null;
|
|
651
|
-
}>;
|
|
652
|
-
signUp: <S extends import("./input-types").SignUpPayloadSelect>(args: import("./mutation").SignUpVariables, options: {
|
|
653
|
-
select: S;
|
|
654
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").SignUpPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
655
|
-
signUp: import("./select-types").InferSelectResult<import("./input-types").SignUpPayload, S> | null;
|
|
656
|
-
}>;
|
|
657
601
|
requestCrossOriginToken: <S extends import("./input-types").RequestCrossOriginTokenPayloadSelect>(args: import("./mutation").RequestCrossOriginTokenVariables, options: {
|
|
658
602
|
select: S;
|
|
659
603
|
} & import("./select-types").StrictSelect<S, import("./input-types").RequestCrossOriginTokenPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
660
604
|
requestCrossOriginToken: import("./select-types").InferSelectResult<import("./input-types").RequestCrossOriginTokenPayload, S> | null;
|
|
661
605
|
}>;
|
|
662
|
-
signIn: <S extends import("./input-types").SignInPayloadSelect>(args: import("./mutation").SignInVariables, options: {
|
|
663
|
-
select: S;
|
|
664
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").SignInPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
665
|
-
signIn: import("./select-types").InferSelectResult<import("./input-types").SignInPayload, S> | null;
|
|
666
|
-
}>;
|
|
667
606
|
provisionTable: <S extends import("./input-types").ProvisionTablePayloadSelect>(args: import("./mutation").ProvisionTableVariables, options: {
|
|
668
607
|
select: S;
|
|
669
608
|
} & import("./select-types").StrictSelect<S, import("./input-types").ProvisionTablePayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
670
609
|
provisionTable: import("./select-types").InferSelectResult<import("./input-types").ProvisionTablePayload, S> | null;
|
|
671
610
|
}>;
|
|
611
|
+
sendVerificationEmail: <S extends import("./input-types").SendVerificationEmailPayloadSelect>(args: import("./mutation").SendVerificationEmailVariables, options: {
|
|
612
|
+
select: S;
|
|
613
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").SendVerificationEmailPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
614
|
+
sendVerificationEmail: import("./select-types").InferSelectResult<import("./input-types").SendVerificationEmailPayload, S> | null;
|
|
615
|
+
}>;
|
|
616
|
+
forgotPassword: <S extends import("./input-types").ForgotPasswordPayloadSelect>(args: import("./mutation").ForgotPasswordVariables, options: {
|
|
617
|
+
select: S;
|
|
618
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").ForgotPasswordPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
619
|
+
forgotPassword: import("./select-types").InferSelectResult<import("./input-types").ForgotPasswordPayload, S> | null;
|
|
620
|
+
}>;
|
|
672
621
|
provisionBucket: <S extends import("./input-types").ProvisionBucketPayloadSelect>(args: import("./mutation").ProvisionBucketVariables, options: {
|
|
673
622
|
select: S;
|
|
674
623
|
} & import("./select-types").StrictSelect<S, import("./input-types").ProvisionBucketPayloadSelect>) => import("./query-builder").QueryBuilder<{
|