@constructive-sdk/cli 0.32.2 → 0.32.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/agent/orm/input-types.d.ts +24 -0
- package/agent/orm/input-types.js +3 -0
- package/api/cli/commands/ast-migration.js +20 -31
- package/{esm/infra/cli/commands/infra-ref.d.ts → api/cli/commands/http-route.d.ts} +1 -1
- package/api/cli/commands/http-route.js +434 -0
- package/{esm/compute/cli/commands/get-all-record.d.ts → api/cli/commands/managed-domain.d.ts} +1 -1
- package/api/cli/commands/managed-domain.js +382 -0
- package/api/cli/commands/resolve-http-route.d.ts +8 -0
- package/api/cli/commands/resolve-http-route.js +44 -0
- package/api/cli/commands/sql-action.js +20 -31
- package/api/cli/commands.js +7 -3
- package/api/cli/executor.d.ts +7 -1
- package/api/orm/index.d.ts +9 -2
- package/api/orm/index.js +4 -2
- package/api/orm/input-types.d.ts +498 -143
- package/api/orm/input-types.js +4 -0
- package/api/orm/models/httpRoute.d.ts +54 -0
- package/{infra/orm/models/infraRef.js → api/orm/models/httpRoute.js} +27 -30
- package/api/orm/models/index.d.ts +2 -1
- package/api/orm/models/index.js +5 -3
- package/api/orm/models/managedDomain.d.ts +54 -0
- package/{infra/orm/models/infraCommit.js → api/orm/models/managedDomain.js} +27 -30
- package/api/orm/query/index.d.ts +12 -0
- package/api/orm/query/index.js +20 -0
- package/auth/cli/commands/identity-provider.js +4 -8
- package/auth/cli/commands/org-api-key-list.js +9 -18
- package/auth/cli/commands/user-connected-account.js +5 -10
- package/auth/orm/input-types.d.ts +155 -182
- package/auth/orm/input-types.js +4 -0
- package/compute/cli/commands/declared-capacity.d.ts +8 -0
- package/compute/cli/commands/declared-capacity.js +247 -0
- package/compute/cli/commands/function-definition.js +48 -0
- package/compute/cli/commands/function-graph-execution-node-state.js +66 -0
- package/compute/cli/commands/function-graph-execution.js +176 -0
- package/compute/cli/commands/function-invocation.js +66 -0
- package/compute/cli/commands/get-all-tree-nodes-record.d.ts +8 -0
- package/compute/cli/commands/{get-all-record.js → get-all-tree-nodes-record.js} +5 -5
- package/compute/cli/commands/infra-commit.js +19 -19
- package/compute/cli/commands/infra-get-all-tree-nodes-record.d.ts +8 -0
- package/{api/cli/commands/migrate-file.js → compute/cli/commands/infra-get-all-tree-nodes-record.js} +22 -28
- package/compute/cli/commands/infra-object.js +19 -19
- package/compute/cli/commands/infra-ref.js +17 -17
- package/compute/cli/commands/infra-store.js +20 -20
- package/compute/cli/commands/namespace-event.js +0 -154
- package/compute/cli/commands/platform-declared-capacity.d.ts +8 -0
- package/compute/cli/commands/platform-declared-capacity.js +247 -0
- package/compute/cli/commands/platform-function-definition.js +48 -0
- package/compute/cli/commands/platform-function-invocation.js +66 -0
- package/compute/cli/commands/platform-infra-commit.d.ts +8 -0
- package/{infra/cli/commands/infra-commit.js → compute/cli/commands/platform-infra-commit.js} +8 -8
- package/compute/cli/commands/platform-infra-get-all-tree-nodes-record.d.ts +8 -0
- package/compute/cli/commands/{infra-get-all-record.js → platform-infra-get-all-tree-nodes-record.js} +7 -5
- package/compute/cli/commands/platform-infra-init-empty-repo.d.ts +8 -0
- package/{infra/cli/commands/infra-init-empty-repo.js → compute/cli/commands/platform-infra-init-empty-repo.js} +3 -3
- package/compute/cli/commands/platform-infra-insert-node-at-path.d.ts +8 -0
- package/compute/cli/commands/platform-infra-insert-node-at-path.js +36 -0
- package/compute/cli/commands/platform-infra-object.d.ts +8 -0
- package/{infra/cli/commands/infra-object.js → compute/cli/commands/platform-infra-object.js} +8 -8
- package/compute/cli/commands/platform-infra-ref.d.ts +8 -0
- package/{infra/cli/commands/infra-ref.js → compute/cli/commands/platform-infra-ref.js} +8 -8
- package/compute/cli/commands/platform-infra-set-data-at-path.d.ts +8 -0
- package/{infra/cli/commands/infra-set-data-at-path.js → compute/cli/commands/platform-infra-set-data-at-path.js} +3 -3
- package/compute/cli/commands/{infra-get-all-record.d.ts → platform-infra-store.d.ts} +1 -1
- package/{infra/cli/commands/infra-store.js → compute/cli/commands/platform-infra-store.js} +8 -8
- package/compute/cli/commands/platform-namespace-event.js +0 -154
- package/compute/cli/commands/platform-resource-installation.d.ts +8 -0
- package/compute/cli/commands/platform-resource-installation.js +436 -0
- package/compute/cli/commands/platform-resource-installations-install.d.ts +8 -0
- package/compute/cli/commands/platform-resource-installations-install.js +36 -0
- package/compute/cli/commands/platform-resource-installations-rollback.d.ts +8 -0
- package/compute/cli/commands/platform-resource-installations-rollback.js +36 -0
- package/compute/cli/commands/platform-resource-installations-uninstall.d.ts +8 -0
- package/compute/cli/commands/platform-resource-installations-uninstall.js +36 -0
- package/compute/cli/commands/platform-resource-installations-upgrade.d.ts +8 -0
- package/compute/cli/commands/platform-resource-installations-upgrade.js +36 -0
- package/compute/cli/commands/platform-resource-usage-log.d.ts +8 -0
- package/compute/cli/commands/platform-resource-usage-log.js +386 -0
- package/compute/cli/commands/platform-resource-usage-summary.d.ts +8 -0
- package/compute/cli/commands/platform-resource-usage-summary.js +389 -0
- package/compute/cli/commands/platform-resource-utilization-daily.d.ts +8 -0
- package/compute/cli/commands/platform-resource-utilization-daily.js +313 -0
- package/compute/cli/commands/platform-resource.js +51 -0
- package/compute/cli/commands/platform-resources-health.d.ts +8 -0
- package/compute/cli/commands/platform-resources-health.js +413 -0
- package/compute/cli/commands/platform-webhook-endpoint.d.ts +8 -0
- package/compute/cli/commands/platform-webhook-endpoint.js +432 -0
- package/compute/cli/commands/platform-webhook-event.d.ts +8 -0
- package/compute/cli/commands/platform-webhook-event.js +414 -0
- package/compute/cli/commands/resource-installation.d.ts +8 -0
- package/compute/cli/commands/resource-installation.js +456 -0
- package/compute/cli/commands/resource-installations-install.d.ts +8 -0
- package/compute/cli/commands/resource-installations-install.js +36 -0
- package/compute/cli/commands/resource-installations-rollback.d.ts +8 -0
- package/compute/cli/commands/resource-installations-rollback.js +36 -0
- package/compute/cli/commands/resource-installations-uninstall.d.ts +8 -0
- package/compute/cli/commands/resource-installations-uninstall.js +36 -0
- package/compute/cli/commands/resource-installations-upgrade.d.ts +8 -0
- package/compute/cli/commands/resource-installations-upgrade.js +36 -0
- package/compute/cli/commands/resource-usage-log.d.ts +8 -0
- package/compute/cli/commands/resource-usage-log.js +406 -0
- package/compute/cli/commands/resource-usage-summary.d.ts +8 -0
- package/compute/cli/commands/resource-usage-summary.js +409 -0
- package/compute/cli/commands/resource-utilization-daily.d.ts +8 -0
- package/compute/cli/commands/resource-utilization-daily.js +313 -0
- package/compute/cli/commands/resource.js +51 -0
- package/compute/cli/commands/resources-health.d.ts +8 -0
- package/compute/cli/commands/resources-health.js +424 -0
- package/compute/cli/commands/webhook-endpoint.d.ts +8 -0
- package/compute/cli/commands/webhook-endpoint.js +452 -0
- package/{api/cli/commands/migrate-file.d.ts → compute/cli/commands/webhook-event.d.ts} +1 -1
- package/compute/cli/commands/webhook-event.js +434 -0
- package/compute/cli/commands.js +69 -5
- package/compute/cli/executor.d.ts +78 -2
- package/compute/orm/index.d.ts +101 -4
- package/compute/orm/index.js +46 -4
- package/compute/orm/input-types.d.ts +5356 -772
- package/compute/orm/input-types.js +34 -2
- package/compute/orm/models/declaredCapacity.d.ts +30 -0
- package/compute/orm/models/{infraGetAllRecord.js → declaredCapacity.js} +15 -15
- package/compute/orm/models/getAllTreeNodesRecord.d.ts +30 -0
- package/compute/orm/models/{getAllRecord.js → getAllTreeNodesRecord.js} +15 -15
- package/compute/orm/models/index.d.ts +23 -2
- package/compute/orm/models/index.js +48 -5
- package/compute/orm/models/infraCommit.d.ts +2 -2
- package/compute/orm/models/infraCommit.js +2 -2
- package/compute/orm/models/infraGetAllTreeNodesRecord.d.ts +30 -0
- package/compute/orm/models/infraGetAllTreeNodesRecord.js +59 -0
- package/compute/orm/models/infraObject.d.ts +2 -2
- package/compute/orm/models/infraObject.js +2 -2
- package/compute/orm/models/infraRef.d.ts +2 -2
- package/compute/orm/models/infraRef.js +2 -2
- package/compute/orm/models/platformDeclaredCapacity.d.ts +30 -0
- package/{objects/orm/models/getAllRecord.js → compute/orm/models/platformDeclaredCapacity.js} +15 -15
- package/compute/orm/models/platformInfraCommit.d.ts +56 -0
- package/compute/orm/models/platformInfraCommit.js +107 -0
- package/compute/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
- package/compute/orm/models/platformInfraGetAllTreeNodesRecord.js +59 -0
- package/compute/orm/models/platformInfraObject.d.ts +56 -0
- package/{infra/orm/models/infraObject.js → compute/orm/models/platformInfraObject.js} +25 -25
- package/compute/orm/models/platformInfraRef.d.ts +56 -0
- package/compute/orm/models/platformInfraRef.js +107 -0
- package/compute/orm/models/platformInfraStore.d.ts +54 -0
- package/compute/orm/models/platformInfraStore.js +104 -0
- package/compute/orm/models/platformResourceInstallation.d.ts +54 -0
- package/compute/orm/models/platformResourceInstallation.js +104 -0
- package/compute/orm/models/platformResourceUsageLog.d.ts +56 -0
- package/compute/orm/models/platformResourceUsageLog.js +107 -0
- package/compute/orm/models/platformResourceUsageSummary.d.ts +56 -0
- package/compute/orm/models/platformResourceUsageSummary.js +107 -0
- package/compute/orm/models/platformResourceUtilizationDaily.d.ts +30 -0
- package/compute/orm/models/platformResourceUtilizationDaily.js +59 -0
- package/compute/orm/models/platformResourcesHealth.d.ts +36 -0
- package/compute/orm/models/platformResourcesHealth.js +80 -0
- package/compute/orm/models/platformWebhookEndpoint.d.ts +54 -0
- package/compute/orm/models/platformWebhookEndpoint.js +104 -0
- package/compute/orm/models/platformWebhookEvent.d.ts +54 -0
- package/compute/orm/models/platformWebhookEvent.js +104 -0
- package/compute/orm/models/resourceInstallation.d.ts +54 -0
- package/compute/orm/models/resourceInstallation.js +104 -0
- package/compute/orm/models/resourceUsageLog.d.ts +56 -0
- package/compute/orm/models/resourceUsageLog.js +107 -0
- package/compute/orm/models/resourceUsageSummary.d.ts +56 -0
- package/compute/orm/models/resourceUsageSummary.js +107 -0
- package/compute/orm/models/resourceUtilizationDaily.d.ts +30 -0
- package/compute/orm/models/resourceUtilizationDaily.js +59 -0
- package/compute/orm/models/resourcesHealth.d.ts +36 -0
- package/{api/orm/models/migrateFile.js → compute/orm/models/resourcesHealth.js} +20 -20
- package/compute/orm/models/webhookEndpoint.d.ts +54 -0
- package/compute/orm/models/webhookEndpoint.js +104 -0
- package/compute/orm/models/webhookEvent.d.ts +54 -0
- package/{infra/orm/models/infraStore.js → compute/orm/models/webhookEvent.js} +27 -27
- package/compute/orm/mutation/index.d.ts +89 -1
- package/compute/orm/mutation/index.js +132 -0
- package/config/cli/commands/platform-internal-secret.js +7 -14
- package/config/cli/commands/platform-secret.js +8 -16
- package/config/cli/commands/secret.js +9 -18
- package/config/orm/input-types.d.ts +4 -79
- package/esm/agent/orm/input-types.d.ts +24 -0
- package/esm/agent/orm/input-types.js +3 -0
- package/esm/api/cli/commands/ast-migration.js +20 -31
- package/{infra/cli/commands/infra-ref.d.ts → esm/api/cli/commands/http-route.d.ts} +1 -1
- package/esm/api/cli/commands/http-route.js +432 -0
- package/esm/api/cli/commands/{migrate-file.d.ts → managed-domain.d.ts} +1 -1
- package/esm/api/cli/commands/managed-domain.js +380 -0
- package/esm/api/cli/commands/resolve-http-route.d.ts +8 -0
- package/esm/api/cli/commands/resolve-http-route.js +42 -0
- package/esm/api/cli/commands/sql-action.js +20 -31
- package/esm/api/cli/commands.js +7 -3
- package/esm/api/cli/executor.d.ts +7 -1
- package/esm/api/orm/index.d.ts +9 -2
- package/esm/api/orm/index.js +4 -2
- package/esm/api/orm/input-types.d.ts +498 -143
- package/esm/api/orm/input-types.js +4 -0
- package/esm/api/orm/models/httpRoute.d.ts +54 -0
- package/esm/{infra/orm/models/infraRef.js → api/orm/models/httpRoute.js} +25 -28
- package/esm/api/orm/models/index.d.ts +2 -1
- package/esm/api/orm/models/index.js +2 -1
- package/esm/api/orm/models/managedDomain.d.ts +54 -0
- package/esm/{infra/orm/models/infraCommit.js → api/orm/models/managedDomain.js} +25 -28
- package/esm/api/orm/query/index.d.ts +12 -0
- package/esm/api/orm/query/index.js +20 -0
- package/esm/auth/cli/commands/identity-provider.js +4 -8
- package/esm/auth/cli/commands/org-api-key-list.js +9 -18
- package/esm/auth/cli/commands/user-connected-account.js +5 -10
- package/esm/auth/orm/input-types.d.ts +155 -182
- package/esm/auth/orm/input-types.js +4 -0
- package/esm/compute/cli/commands/declared-capacity.d.ts +8 -0
- package/esm/compute/cli/commands/declared-capacity.js +245 -0
- package/esm/compute/cli/commands/function-definition.js +48 -0
- package/esm/compute/cli/commands/function-graph-execution-node-state.js +66 -0
- package/esm/compute/cli/commands/function-graph-execution.js +176 -0
- package/esm/compute/cli/commands/function-invocation.js +66 -0
- package/esm/compute/cli/commands/get-all-tree-nodes-record.d.ts +8 -0
- package/esm/{infra/cli/commands/infra-get-all-record.js → compute/cli/commands/get-all-tree-nodes-record.js} +5 -5
- package/esm/compute/cli/commands/infra-commit.js +19 -19
- package/esm/compute/cli/commands/infra-get-all-tree-nodes-record.d.ts +8 -0
- package/esm/{api/cli/commands/migrate-file.js → compute/cli/commands/infra-get-all-tree-nodes-record.js} +22 -28
- package/esm/compute/cli/commands/infra-object.js +19 -19
- package/esm/compute/cli/commands/infra-ref.js +17 -17
- package/esm/compute/cli/commands/infra-store.js +20 -20
- package/esm/compute/cli/commands/namespace-event.js +0 -154
- package/esm/compute/cli/commands/platform-declared-capacity.d.ts +8 -0
- package/esm/compute/cli/commands/platform-declared-capacity.js +245 -0
- package/esm/compute/cli/commands/platform-function-definition.js +48 -0
- package/esm/compute/cli/commands/platform-function-invocation.js +66 -0
- package/esm/compute/cli/commands/platform-infra-commit.d.ts +8 -0
- package/esm/{infra/cli/commands/infra-commit.js → compute/cli/commands/platform-infra-commit.js} +8 -8
- package/esm/compute/cli/commands/platform-infra-get-all-tree-nodes-record.d.ts +8 -0
- package/esm/compute/cli/commands/{infra-get-all-record.js → platform-infra-get-all-tree-nodes-record.js} +7 -5
- package/esm/compute/cli/commands/platform-infra-init-empty-repo.d.ts +8 -0
- package/esm/{infra/cli/commands/infra-insert-node-at-path.js → compute/cli/commands/platform-infra-init-empty-repo.js} +3 -3
- package/esm/compute/cli/commands/platform-infra-insert-node-at-path.d.ts +8 -0
- package/esm/compute/cli/commands/platform-infra-insert-node-at-path.js +34 -0
- package/esm/compute/cli/commands/platform-infra-object.d.ts +8 -0
- package/esm/{infra/cli/commands/infra-object.js → compute/cli/commands/platform-infra-object.js} +8 -8
- package/esm/compute/cli/commands/platform-infra-ref.d.ts +8 -0
- package/esm/{infra/cli/commands/infra-ref.js → compute/cli/commands/platform-infra-ref.js} +8 -8
- package/esm/compute/cli/commands/platform-infra-set-data-at-path.d.ts +8 -0
- package/esm/{infra/cli/commands/infra-set-data-at-path.js → compute/cli/commands/platform-infra-set-data-at-path.js} +3 -3
- package/esm/compute/cli/commands/platform-infra-store.d.ts +8 -0
- package/esm/{infra/cli/commands/infra-store.js → compute/cli/commands/platform-infra-store.js} +8 -8
- package/esm/compute/cli/commands/platform-namespace-event.js +0 -154
- package/esm/compute/cli/commands/platform-resource-installation.d.ts +8 -0
- package/esm/compute/cli/commands/platform-resource-installation.js +434 -0
- package/esm/compute/cli/commands/platform-resource-installations-install.d.ts +8 -0
- package/esm/compute/cli/commands/platform-resource-installations-install.js +34 -0
- package/esm/compute/cli/commands/platform-resource-installations-rollback.d.ts +8 -0
- package/esm/compute/cli/commands/platform-resource-installations-rollback.js +34 -0
- package/esm/compute/cli/commands/platform-resource-installations-uninstall.d.ts +8 -0
- package/esm/compute/cli/commands/platform-resource-installations-uninstall.js +34 -0
- package/esm/compute/cli/commands/platform-resource-installations-upgrade.d.ts +8 -0
- package/esm/compute/cli/commands/platform-resource-installations-upgrade.js +34 -0
- package/esm/compute/cli/commands/platform-resource-usage-log.d.ts +8 -0
- package/esm/compute/cli/commands/platform-resource-usage-log.js +384 -0
- package/esm/compute/cli/commands/platform-resource-usage-summary.d.ts +8 -0
- package/esm/compute/cli/commands/platform-resource-usage-summary.js +387 -0
- package/esm/compute/cli/commands/platform-resource-utilization-daily.d.ts +8 -0
- package/esm/compute/cli/commands/platform-resource-utilization-daily.js +311 -0
- package/esm/compute/cli/commands/platform-resource.js +51 -0
- package/esm/compute/cli/commands/platform-resources-health.d.ts +8 -0
- package/esm/compute/cli/commands/platform-resources-health.js +411 -0
- package/esm/compute/cli/commands/platform-webhook-endpoint.d.ts +8 -0
- package/esm/compute/cli/commands/platform-webhook-endpoint.js +430 -0
- package/esm/compute/cli/commands/platform-webhook-event.d.ts +8 -0
- package/esm/compute/cli/commands/platform-webhook-event.js +412 -0
- package/esm/compute/cli/commands/resource-installation.d.ts +8 -0
- package/esm/compute/cli/commands/resource-installation.js +454 -0
- package/esm/compute/cli/commands/resource-installations-install.d.ts +8 -0
- package/esm/compute/cli/commands/resource-installations-install.js +34 -0
- package/esm/compute/cli/commands/resource-installations-rollback.d.ts +8 -0
- package/esm/compute/cli/commands/resource-installations-rollback.js +34 -0
- package/esm/compute/cli/commands/resource-installations-uninstall.d.ts +8 -0
- package/esm/compute/cli/commands/resource-installations-uninstall.js +34 -0
- package/esm/compute/cli/commands/resource-installations-upgrade.d.ts +8 -0
- package/esm/compute/cli/commands/resource-installations-upgrade.js +34 -0
- package/esm/compute/cli/commands/resource-usage-log.d.ts +8 -0
- package/esm/compute/cli/commands/resource-usage-log.js +404 -0
- package/esm/compute/cli/commands/resource-usage-summary.d.ts +8 -0
- package/esm/compute/cli/commands/resource-usage-summary.js +407 -0
- package/esm/compute/cli/commands/resource-utilization-daily.d.ts +8 -0
- package/esm/compute/cli/commands/resource-utilization-daily.js +311 -0
- package/esm/compute/cli/commands/resource.js +51 -0
- package/esm/compute/cli/commands/resources-health.d.ts +8 -0
- package/esm/compute/cli/commands/resources-health.js +422 -0
- package/esm/compute/cli/commands/webhook-endpoint.d.ts +8 -0
- package/esm/compute/cli/commands/webhook-endpoint.js +450 -0
- package/{compute/cli/commands/get-all-record.d.ts → esm/compute/cli/commands/webhook-event.d.ts} +1 -1
- package/esm/compute/cli/commands/webhook-event.js +432 -0
- package/esm/compute/cli/commands.js +69 -5
- package/esm/compute/cli/executor.d.ts +78 -2
- package/esm/compute/orm/index.d.ts +101 -4
- package/esm/compute/orm/index.js +46 -4
- package/esm/compute/orm/input-types.d.ts +5356 -772
- package/esm/compute/orm/input-types.js +34 -2
- package/esm/compute/orm/models/declaredCapacity.d.ts +30 -0
- package/esm/{infra/orm/models/infraGetAllRecord.js → compute/orm/models/declaredCapacity.js} +13 -13
- package/esm/compute/orm/models/getAllTreeNodesRecord.d.ts +30 -0
- package/esm/{objects/orm/models/getAllRecord.js → compute/orm/models/getAllTreeNodesRecord.js} +13 -13
- package/esm/compute/orm/models/index.d.ts +23 -2
- package/esm/compute/orm/models/index.js +23 -2
- package/esm/compute/orm/models/infraCommit.d.ts +2 -2
- package/esm/compute/orm/models/infraCommit.js +2 -2
- package/esm/compute/orm/models/infraGetAllTreeNodesRecord.d.ts +30 -0
- package/esm/compute/orm/models/{infraGetAllRecord.js → infraGetAllTreeNodesRecord.js} +13 -13
- package/esm/compute/orm/models/infraObject.d.ts +2 -2
- package/esm/compute/orm/models/infraObject.js +2 -2
- package/esm/compute/orm/models/infraRef.d.ts +2 -2
- package/esm/compute/orm/models/infraRef.js +2 -2
- package/esm/compute/orm/models/platformDeclaredCapacity.d.ts +30 -0
- package/esm/compute/orm/models/platformDeclaredCapacity.js +55 -0
- package/esm/compute/orm/models/platformInfraCommit.d.ts +56 -0
- package/esm/compute/orm/models/platformInfraCommit.js +103 -0
- package/esm/compute/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
- package/esm/compute/orm/models/platformInfraGetAllTreeNodesRecord.js +55 -0
- package/esm/compute/orm/models/platformInfraObject.d.ts +56 -0
- package/esm/{infra/orm/models/infraObject.js → compute/orm/models/platformInfraObject.js} +23 -23
- package/esm/compute/orm/models/platformInfraRef.d.ts +56 -0
- package/esm/compute/orm/models/platformInfraRef.js +103 -0
- package/esm/compute/orm/models/platformInfraStore.d.ts +54 -0
- package/esm/compute/orm/models/platformInfraStore.js +100 -0
- package/esm/compute/orm/models/platformResourceInstallation.d.ts +54 -0
- package/esm/compute/orm/models/platformResourceInstallation.js +100 -0
- package/esm/compute/orm/models/platformResourceUsageLog.d.ts +56 -0
- package/esm/compute/orm/models/platformResourceUsageLog.js +103 -0
- package/esm/compute/orm/models/platformResourceUsageSummary.d.ts +56 -0
- package/esm/compute/orm/models/platformResourceUsageSummary.js +103 -0
- package/esm/compute/orm/models/platformResourceUtilizationDaily.d.ts +30 -0
- package/esm/compute/orm/models/platformResourceUtilizationDaily.js +55 -0
- package/esm/compute/orm/models/platformResourcesHealth.d.ts +36 -0
- package/esm/compute/orm/models/platformResourcesHealth.js +76 -0
- package/esm/compute/orm/models/platformWebhookEndpoint.d.ts +54 -0
- package/esm/compute/orm/models/platformWebhookEndpoint.js +100 -0
- package/esm/compute/orm/models/platformWebhookEvent.d.ts +54 -0
- package/esm/compute/orm/models/platformWebhookEvent.js +100 -0
- package/esm/compute/orm/models/resourceInstallation.d.ts +54 -0
- package/esm/compute/orm/models/resourceInstallation.js +100 -0
- package/esm/compute/orm/models/resourceUsageLog.d.ts +56 -0
- package/esm/compute/orm/models/resourceUsageLog.js +103 -0
- package/esm/compute/orm/models/resourceUsageSummary.d.ts +56 -0
- package/esm/compute/orm/models/resourceUsageSummary.js +103 -0
- package/esm/compute/orm/models/resourceUtilizationDaily.d.ts +30 -0
- package/esm/compute/orm/models/resourceUtilizationDaily.js +55 -0
- package/esm/compute/orm/models/resourcesHealth.d.ts +36 -0
- package/esm/{api/orm/models/migrateFile.js → compute/orm/models/resourcesHealth.js} +18 -18
- package/esm/compute/orm/models/webhookEndpoint.d.ts +54 -0
- package/esm/compute/orm/models/webhookEndpoint.js +100 -0
- package/esm/compute/orm/models/webhookEvent.d.ts +54 -0
- package/esm/{infra/orm/models/infraStore.js → compute/orm/models/webhookEvent.js} +25 -25
- package/esm/compute/orm/mutation/index.d.ts +89 -1
- package/esm/compute/orm/mutation/index.js +132 -0
- package/esm/config/cli/commands/platform-internal-secret.js +7 -14
- package/esm/config/cli/commands/platform-secret.js +8 -16
- package/esm/config/cli/commands/secret.js +9 -18
- package/esm/config/orm/input-types.d.ts +4 -79
- package/esm/infra/cli/commands/namespace-event.js +0 -154
- package/esm/infra/cli/commands/platform-infra-commit.d.ts +8 -0
- package/esm/infra/cli/commands/platform-infra-commit.js +387 -0
- package/esm/infra/cli/commands/platform-infra-get-all-tree-nodes-record.d.ts +8 -0
- package/esm/{objects/cli/commands/get-all-record.js → infra/cli/commands/platform-infra-get-all-tree-nodes-record.js} +7 -5
- package/esm/infra/cli/commands/platform-infra-init-empty-repo.d.ts +8 -0
- package/esm/infra/cli/commands/{infra-init-empty-repo.js → platform-infra-init-empty-repo.js} +3 -3
- package/esm/infra/cli/commands/platform-infra-insert-node-at-path.d.ts +8 -0
- package/esm/infra/cli/commands/platform-infra-insert-node-at-path.js +34 -0
- package/esm/infra/cli/commands/platform-infra-object.d.ts +8 -0
- package/esm/infra/cli/commands/platform-infra-object.js +307 -0
- package/esm/infra/cli/commands/platform-infra-ref.d.ts +8 -0
- package/esm/infra/cli/commands/platform-infra-ref.js +297 -0
- package/esm/infra/cli/commands/platform-infra-set-data-at-path.d.ts +8 -0
- package/esm/infra/cli/commands/platform-infra-set-data-at-path.js +34 -0
- package/esm/infra/cli/commands/platform-infra-store.d.ts +8 -0
- package/esm/infra/cli/commands/platform-infra-store.js +276 -0
- package/esm/infra/cli/commands/platform-namespace-event.js +0 -154
- package/esm/infra/cli/commands.js +17 -17
- package/esm/infra/cli/executor.d.ts +14 -14
- package/esm/infra/orm/index.d.ts +19 -19
- package/esm/infra/orm/index.js +10 -10
- package/esm/infra/orm/input-types.d.ts +542 -668
- package/esm/infra/orm/models/index.d.ts +5 -5
- package/esm/infra/orm/models/index.js +5 -5
- package/esm/infra/orm/models/platformInfraCommit.d.ts +56 -0
- package/esm/infra/orm/models/platformInfraCommit.js +103 -0
- package/esm/infra/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
- package/esm/infra/orm/models/platformInfraGetAllTreeNodesRecord.js +55 -0
- package/esm/infra/orm/models/platformInfraObject.d.ts +56 -0
- package/esm/infra/orm/models/platformInfraObject.js +93 -0
- package/esm/infra/orm/models/platformInfraRef.d.ts +56 -0
- package/esm/infra/orm/models/platformInfraRef.js +103 -0
- package/esm/infra/orm/models/platformInfraStore.d.ts +54 -0
- package/esm/infra/orm/models/platformInfraStore.js +100 -0
- package/esm/infra/orm/mutation/index.d.ts +16 -16
- package/esm/infra/orm/mutation/index.js +18 -18
- package/esm/modules/cli/commands/compute-log-module.js +24 -24
- package/esm/modules/cli/commands/db-usage-module.js +88 -88
- package/esm/modules/cli/commands/devices-module.js +32 -32
- package/esm/modules/cli/commands/function-module.js +44 -0
- package/esm/modules/cli/commands/http-route-module.d.ts +8 -0
- package/esm/modules/cli/commands/http-route-module.js +646 -0
- package/esm/modules/cli/commands/inference-log-module.js +24 -24
- package/esm/modules/cli/commands/rate-limits-module.js +46 -46
- package/esm/modules/cli/commands/resource-module.js +220 -0
- package/esm/modules/cli/commands/sessions-module.js +48 -48
- package/esm/modules/cli/commands/storage-log-module.js +24 -24
- package/esm/modules/cli/commands/transfer-log-module.js +24 -24
- package/esm/modules/cli/commands/webhook-module.d.ts +8 -0
- package/esm/modules/cli/commands/webhook-module.js +690 -0
- package/esm/modules/cli/commands.js +5 -1
- package/esm/modules/cli/executor.d.ts +2 -0
- package/esm/modules/orm/index.d.ts +4 -0
- package/esm/modules/orm/index.js +4 -0
- package/esm/modules/orm/input-types.d.ts +802 -166
- package/esm/modules/orm/models/httpRouteModule.d.ts +54 -0
- package/esm/modules/orm/models/httpRouteModule.js +100 -0
- package/esm/modules/orm/models/index.d.ts +2 -0
- package/esm/modules/orm/models/index.js +2 -0
- package/esm/modules/orm/models/webhookModule.d.ts +54 -0
- package/esm/modules/orm/models/webhookModule.js +100 -0
- package/esm/objects/cli/commands/get-all-tree-nodes-record.d.ts +8 -0
- package/esm/{compute/cli/commands/get-all-record.js → objects/cli/commands/get-all-tree-nodes-record.js} +5 -5
- package/esm/objects/cli/commands.js +3 -3
- package/esm/objects/cli/executor.d.ts +1 -1
- package/esm/objects/orm/index.d.ts +2 -2
- package/esm/objects/orm/index.js +2 -2
- package/esm/objects/orm/input-types.d.ts +15 -15
- package/esm/objects/orm/models/getAllTreeNodesRecord.d.ts +30 -0
- package/esm/{compute/orm/models/getAllRecord.js → objects/orm/models/getAllTreeNodesRecord.js} +13 -13
- package/esm/objects/orm/models/index.d.ts +1 -1
- package/esm/objects/orm/models/index.js +1 -1
- package/infra/cli/commands/namespace-event.js +0 -154
- package/infra/cli/commands/platform-infra-commit.d.ts +8 -0
- package/infra/cli/commands/platform-infra-commit.js +389 -0
- package/infra/cli/commands/platform-infra-get-all-tree-nodes-record.d.ts +8 -0
- package/infra/cli/commands/{infra-get-all-record.js → platform-infra-get-all-tree-nodes-record.js} +7 -5
- package/infra/cli/commands/platform-infra-init-empty-repo.d.ts +8 -0
- package/infra/cli/commands/{infra-insert-node-at-path.js → platform-infra-init-empty-repo.js} +3 -3
- package/infra/cli/commands/platform-infra-insert-node-at-path.d.ts +8 -0
- package/infra/cli/commands/platform-infra-insert-node-at-path.js +36 -0
- package/infra/cli/commands/platform-infra-object.d.ts +8 -0
- package/infra/cli/commands/platform-infra-object.js +309 -0
- package/infra/cli/commands/platform-infra-ref.d.ts +8 -0
- package/infra/cli/commands/platform-infra-ref.js +299 -0
- package/infra/cli/commands/platform-infra-set-data-at-path.d.ts +8 -0
- package/infra/cli/commands/platform-infra-set-data-at-path.js +36 -0
- package/infra/cli/commands/platform-infra-store.d.ts +8 -0
- package/infra/cli/commands/platform-infra-store.js +278 -0
- package/infra/cli/commands/platform-namespace-event.js +0 -154
- package/infra/cli/commands.js +17 -17
- package/infra/cli/executor.d.ts +14 -14
- package/infra/orm/index.d.ts +19 -19
- package/infra/orm/index.js +10 -10
- package/infra/orm/input-types.d.ts +542 -668
- package/infra/orm/models/index.d.ts +5 -5
- package/infra/orm/models/index.js +11 -11
- package/infra/orm/models/platformInfraCommit.d.ts +56 -0
- package/infra/orm/models/platformInfraCommit.js +107 -0
- package/infra/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
- package/infra/orm/models/platformInfraGetAllTreeNodesRecord.js +59 -0
- package/infra/orm/models/platformInfraObject.d.ts +56 -0
- package/infra/orm/models/platformInfraObject.js +97 -0
- package/infra/orm/models/platformInfraRef.d.ts +56 -0
- package/infra/orm/models/platformInfraRef.js +107 -0
- package/infra/orm/models/platformInfraStore.d.ts +54 -0
- package/infra/orm/models/platformInfraStore.js +104 -0
- package/infra/orm/mutation/index.d.ts +16 -16
- package/infra/orm/mutation/index.js +18 -18
- package/modules/cli/commands/compute-log-module.js +24 -24
- package/modules/cli/commands/db-usage-module.js +88 -88
- package/modules/cli/commands/devices-module.js +32 -32
- package/modules/cli/commands/function-module.js +44 -0
- package/modules/cli/commands/http-route-module.d.ts +8 -0
- package/modules/cli/commands/http-route-module.js +648 -0
- package/modules/cli/commands/inference-log-module.js +24 -24
- package/modules/cli/commands/rate-limits-module.js +46 -46
- package/modules/cli/commands/resource-module.js +220 -0
- package/modules/cli/commands/sessions-module.js +48 -48
- package/modules/cli/commands/storage-log-module.js +24 -24
- package/modules/cli/commands/transfer-log-module.js +24 -24
- package/modules/cli/commands/webhook-module.d.ts +8 -0
- package/modules/cli/commands/webhook-module.js +692 -0
- package/modules/cli/commands.js +5 -1
- package/modules/cli/executor.d.ts +2 -0
- package/modules/orm/index.d.ts +4 -0
- package/modules/orm/index.js +4 -0
- package/modules/orm/input-types.d.ts +802 -166
- package/modules/orm/models/httpRouteModule.d.ts +54 -0
- package/modules/orm/models/httpRouteModule.js +104 -0
- package/modules/orm/models/index.d.ts +2 -0
- package/modules/orm/models/index.js +6 -2
- package/modules/orm/models/webhookModule.d.ts +54 -0
- package/modules/orm/models/webhookModule.js +104 -0
- package/objects/cli/commands/get-all-tree-nodes-record.d.ts +8 -0
- package/objects/cli/commands/{get-all-record.js → get-all-tree-nodes-record.js} +5 -5
- package/objects/cli/commands.js +3 -3
- package/objects/cli/executor.d.ts +1 -1
- package/objects/orm/index.d.ts +2 -2
- package/objects/orm/index.js +2 -2
- package/objects/orm/input-types.d.ts +15 -15
- package/objects/orm/models/getAllTreeNodesRecord.d.ts +30 -0
- package/{infra/orm/models/infraGetAllRecord.js → objects/orm/models/getAllTreeNodesRecord.js} +15 -15
- package/objects/orm/models/index.d.ts +1 -1
- package/objects/orm/models/index.js +3 -3
- package/package.json +2 -2
- package/api/orm/models/migrateFile.d.ts +0 -36
- package/compute/orm/models/getAllRecord.d.ts +0 -30
- package/compute/orm/models/infraGetAllRecord.d.ts +0 -30
- package/esm/api/orm/models/migrateFile.d.ts +0 -36
- package/esm/compute/cli/commands/infra-get-all-record.d.ts +0 -8
- package/esm/compute/orm/models/getAllRecord.d.ts +0 -30
- package/esm/compute/orm/models/infraGetAllRecord.d.ts +0 -30
- package/esm/infra/cli/commands/infra-commit.d.ts +0 -8
- package/esm/infra/cli/commands/infra-get-all-record.d.ts +0 -8
- package/esm/infra/cli/commands/infra-init-empty-repo.d.ts +0 -8
- package/esm/infra/cli/commands/infra-insert-node-at-path.d.ts +0 -8
- package/esm/infra/cli/commands/infra-object.d.ts +0 -8
- package/esm/infra/cli/commands/infra-set-data-at-path.d.ts +0 -8
- package/esm/infra/cli/commands/infra-store.d.ts +0 -8
- package/esm/infra/orm/models/infraCommit.d.ts +0 -56
- package/esm/infra/orm/models/infraGetAllRecord.d.ts +0 -30
- package/esm/infra/orm/models/infraObject.d.ts +0 -56
- package/esm/infra/orm/models/infraRef.d.ts +0 -56
- package/esm/infra/orm/models/infraStore.d.ts +0 -54
- package/esm/objects/cli/commands/get-all-record.d.ts +0 -8
- package/esm/objects/orm/models/getAllRecord.d.ts +0 -30
- package/infra/cli/commands/infra-commit.d.ts +0 -8
- package/infra/cli/commands/infra-get-all-record.d.ts +0 -8
- package/infra/cli/commands/infra-init-empty-repo.d.ts +0 -8
- package/infra/cli/commands/infra-insert-node-at-path.d.ts +0 -8
- package/infra/cli/commands/infra-object.d.ts +0 -8
- package/infra/cli/commands/infra-set-data-at-path.d.ts +0 -8
- package/infra/cli/commands/infra-store.d.ts +0 -8
- package/infra/orm/models/infraCommit.d.ts +0 -56
- package/infra/orm/models/infraGetAllRecord.d.ts +0 -30
- package/infra/orm/models/infraObject.d.ts +0 -56
- package/infra/orm/models/infraRef.d.ts +0 -56
- package/infra/orm/models/infraStore.d.ts +0 -54
- package/objects/cli/commands/get-all-record.d.ts +0 -8
- package/objects/orm/models/getAllRecord.d.ts +0 -30
|
@@ -3,28 +3,60 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.connectionFieldsMap = void 0;
|
|
4
4
|
// ============ Connection Fields Map ============
|
|
5
5
|
exports.connectionFieldsMap = {
|
|
6
|
+
FunctionApiBinding: {
|
|
7
|
+
functionInvocationsByApiBindingId: 'FunctionInvocation',
|
|
8
|
+
},
|
|
6
9
|
FunctionDefinition: {
|
|
7
10
|
functionApiBindings: 'FunctionApiBinding',
|
|
8
|
-
|
|
11
|
+
webhookEndpoints: 'WebhookEndpoint',
|
|
12
|
+
},
|
|
13
|
+
FunctionGraph: {
|
|
14
|
+
functionGraphExecutionsByGraphId: 'FunctionGraphExecution',
|
|
15
|
+
platformFunctionDefinitionsByGraphId: 'PlatformFunctionDefinition',
|
|
9
16
|
},
|
|
10
17
|
Namespace: {
|
|
11
18
|
functionDeployments: 'FunctionDeployment',
|
|
12
19
|
resourceDefinitions: 'ResourceDefinition',
|
|
20
|
+
resourceInstallations: 'ResourceInstallation',
|
|
13
21
|
resources: 'Resource',
|
|
22
|
+
webhookEndpoints: 'WebhookEndpoint',
|
|
23
|
+
},
|
|
24
|
+
PlatformFunctionApiBinding: {
|
|
25
|
+
platformFunctionInvocationsByApiBindingId: 'PlatformFunctionInvocation',
|
|
14
26
|
},
|
|
15
27
|
PlatformFunctionDefinition: {
|
|
16
28
|
platformFunctionApiBindingsByFunctionDefinitionId: 'PlatformFunctionApiBinding',
|
|
17
|
-
|
|
29
|
+
platformWebhookEndpointsByFunctionDefinitionId: 'PlatformWebhookEndpoint',
|
|
18
30
|
},
|
|
19
31
|
PlatformNamespace: {
|
|
20
32
|
platformFunctionDeploymentsByNamespaceId: 'PlatformFunctionDeployment',
|
|
21
33
|
platformResourceDefinitionsByNamespaceId: 'PlatformResourceDefinition',
|
|
34
|
+
platformResourceInstallationsByNamespaceId: 'PlatformResourceInstallation',
|
|
22
35
|
platformResourcesByNamespaceId: 'PlatformResource',
|
|
36
|
+
platformWebhookEndpointsByNamespaceId: 'PlatformWebhookEndpoint',
|
|
23
37
|
},
|
|
24
38
|
PlatformResource: {
|
|
25
39
|
platformResourceStatusChecksByResourceId: 'PlatformResourceStatusCheck',
|
|
26
40
|
},
|
|
41
|
+
PlatformResourceDefinition: {
|
|
42
|
+
platformResourcesByResourceDefinitionId: 'PlatformResource',
|
|
43
|
+
},
|
|
44
|
+
PlatformResourceInstallation: {
|
|
45
|
+
platformResourcesByInstallationId: 'PlatformResource',
|
|
46
|
+
},
|
|
47
|
+
PlatformWebhookEndpoint: {
|
|
48
|
+
platformWebhookEventsByEndpointId: 'PlatformWebhookEvent',
|
|
49
|
+
},
|
|
27
50
|
Resource: {
|
|
28
51
|
resourceStatusChecks: 'ResourceStatusCheck',
|
|
29
52
|
},
|
|
53
|
+
ResourceDefinition: {
|
|
54
|
+
resources: 'Resource',
|
|
55
|
+
},
|
|
56
|
+
ResourceInstallation: {
|
|
57
|
+
resourcesByInstallationId: 'Resource',
|
|
58
|
+
},
|
|
59
|
+
WebhookEndpoint: {
|
|
60
|
+
webhookEventsByEndpointId: 'WebhookEvent',
|
|
61
|
+
},
|
|
30
62
|
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DeclaredCapacity model for ORM client
|
|
3
|
+
* @generated by @constructive-io/graphql-codegen
|
|
4
|
+
* DO NOT EDIT - changes will be overwritten
|
|
5
|
+
*/
|
|
6
|
+
import { OrmClient } from '../client';
|
|
7
|
+
import { QueryBuilder } from '../query-builder';
|
|
8
|
+
import type { ConnectionResult, FindManyArgs, FindFirstArgs, CreateArgs, InferSelectResult, StrictSelect } from '../select-types';
|
|
9
|
+
import type { DeclaredCapacityWithRelations, DeclaredCapacitySelect, DeclaredCapacityFilter, DeclaredCapacityOrderBy, CreateDeclaredCapacityInput } from '../input-types';
|
|
10
|
+
export declare class DeclaredCapacityModel {
|
|
11
|
+
private client;
|
|
12
|
+
constructor(client: OrmClient);
|
|
13
|
+
findMany<S extends DeclaredCapacitySelect>(args: FindManyArgs<S, DeclaredCapacityFilter, DeclaredCapacityOrderBy> & {
|
|
14
|
+
select: S;
|
|
15
|
+
} & StrictSelect<S, DeclaredCapacitySelect>): QueryBuilder<{
|
|
16
|
+
declaredCapacities: ConnectionResult<InferSelectResult<DeclaredCapacityWithRelations, S>>;
|
|
17
|
+
}>;
|
|
18
|
+
findFirst<S extends DeclaredCapacitySelect>(args: FindFirstArgs<S, DeclaredCapacityFilter, DeclaredCapacityOrderBy> & {
|
|
19
|
+
select: S;
|
|
20
|
+
} & StrictSelect<S, DeclaredCapacitySelect>): QueryBuilder<{
|
|
21
|
+
declaredCapacity: InferSelectResult<DeclaredCapacityWithRelations, S> | null;
|
|
22
|
+
}>;
|
|
23
|
+
create<S extends DeclaredCapacitySelect>(args: CreateArgs<S, CreateDeclaredCapacityInput['declaredCapacity']> & {
|
|
24
|
+
select: S;
|
|
25
|
+
} & StrictSelect<S, DeclaredCapacitySelect>): QueryBuilder<{
|
|
26
|
+
createDeclaredCapacity: {
|
|
27
|
+
declaredCapacity: InferSelectResult<DeclaredCapacityWithRelations, S>;
|
|
28
|
+
};
|
|
29
|
+
}>;
|
|
30
|
+
}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.DeclaredCapacityModel = void 0;
|
|
4
4
|
const query_builder_1 = require("../query-builder");
|
|
5
5
|
const input_types_1 = require("../input-types");
|
|
6
|
-
class
|
|
6
|
+
class DeclaredCapacityModel {
|
|
7
7
|
client;
|
|
8
8
|
constructor(client) {
|
|
9
9
|
this.client = client;
|
|
10
10
|
}
|
|
11
11
|
findMany(args) {
|
|
12
|
-
const { document, variables } = (0, query_builder_1.buildFindManyDocument)('
|
|
12
|
+
const { document, variables } = (0, query_builder_1.buildFindManyDocument)('DeclaredCapacity', 'declaredCapacities', args.select, {
|
|
13
13
|
where: args?.where,
|
|
14
14
|
orderBy: args?.orderBy,
|
|
15
15
|
first: args?.first,
|
|
@@ -17,43 +17,43 @@ class InfraGetAllRecordModel {
|
|
|
17
17
|
after: args?.after,
|
|
18
18
|
before: args?.before,
|
|
19
19
|
offset: args?.offset,
|
|
20
|
-
}, '
|
|
20
|
+
}, 'DeclaredCapacityFilter', 'DeclaredCapacityOrderBy', input_types_1.connectionFieldsMap);
|
|
21
21
|
return new query_builder_1.QueryBuilder({
|
|
22
22
|
client: this.client,
|
|
23
23
|
operation: 'query',
|
|
24
|
-
operationName: '
|
|
25
|
-
fieldName: '
|
|
24
|
+
operationName: 'DeclaredCapacity',
|
|
25
|
+
fieldName: 'declaredCapacities',
|
|
26
26
|
document,
|
|
27
27
|
variables,
|
|
28
28
|
});
|
|
29
29
|
}
|
|
30
30
|
findFirst(args) {
|
|
31
|
-
const { document, variables } = (0, query_builder_1.buildFindFirstDocument)('
|
|
31
|
+
const { document, variables } = (0, query_builder_1.buildFindFirstDocument)('DeclaredCapacity', 'declaredCapacities', args.select, {
|
|
32
32
|
where: args?.where,
|
|
33
33
|
orderBy: args?.orderBy,
|
|
34
|
-
}, '
|
|
34
|
+
}, 'DeclaredCapacityFilter', 'DeclaredCapacityOrderBy', input_types_1.connectionFieldsMap);
|
|
35
35
|
return new query_builder_1.QueryBuilder({
|
|
36
36
|
client: this.client,
|
|
37
37
|
operation: 'query',
|
|
38
|
-
operationName: '
|
|
39
|
-
fieldName: '
|
|
38
|
+
operationName: 'DeclaredCapacity',
|
|
39
|
+
fieldName: 'declaredCapacity',
|
|
40
40
|
document,
|
|
41
41
|
variables,
|
|
42
42
|
transform: (data) => ({
|
|
43
|
-
|
|
43
|
+
declaredCapacity: data.declaredCapacities?.nodes?.[0] ?? null,
|
|
44
44
|
}),
|
|
45
45
|
});
|
|
46
46
|
}
|
|
47
47
|
create(args) {
|
|
48
|
-
const { document, variables } = (0, query_builder_1.buildCreateDocument)('
|
|
48
|
+
const { document, variables } = (0, query_builder_1.buildCreateDocument)('DeclaredCapacity', 'createDeclaredCapacity', 'declaredCapacity', args.select, args.data, 'CreateDeclaredCapacityInput', input_types_1.connectionFieldsMap);
|
|
49
49
|
return new query_builder_1.QueryBuilder({
|
|
50
50
|
client: this.client,
|
|
51
51
|
operation: 'mutation',
|
|
52
|
-
operationName: '
|
|
53
|
-
fieldName: '
|
|
52
|
+
operationName: 'DeclaredCapacity',
|
|
53
|
+
fieldName: 'createDeclaredCapacity',
|
|
54
54
|
document,
|
|
55
55
|
variables,
|
|
56
56
|
});
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
|
-
exports.
|
|
59
|
+
exports.DeclaredCapacityModel = DeclaredCapacityModel;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* GetAllTreeNodesRecord model for ORM client
|
|
3
|
+
* @generated by @constructive-io/graphql-codegen
|
|
4
|
+
* DO NOT EDIT - changes will be overwritten
|
|
5
|
+
*/
|
|
6
|
+
import { OrmClient } from '../client';
|
|
7
|
+
import { QueryBuilder } from '../query-builder';
|
|
8
|
+
import type { ConnectionResult, FindManyArgs, FindFirstArgs, CreateArgs, InferSelectResult, StrictSelect } from '../select-types';
|
|
9
|
+
import type { GetAllTreeNodesRecordWithRelations, GetAllTreeNodesRecordSelect, GetAllTreeNodesRecordFilter, GetAllTreeNodesRecordsOrderBy, CreateGetAllTreeNodesRecordInput } from '../input-types';
|
|
10
|
+
export declare class GetAllTreeNodesRecordModel {
|
|
11
|
+
private client;
|
|
12
|
+
constructor(client: OrmClient);
|
|
13
|
+
findMany<S extends GetAllTreeNodesRecordSelect>(args: FindManyArgs<S, GetAllTreeNodesRecordFilter, GetAllTreeNodesRecordsOrderBy> & {
|
|
14
|
+
select: S;
|
|
15
|
+
} & StrictSelect<S, GetAllTreeNodesRecordSelect>): QueryBuilder<{
|
|
16
|
+
getAllTreeNodes: ConnectionResult<InferSelectResult<GetAllTreeNodesRecordWithRelations, S>>;
|
|
17
|
+
}>;
|
|
18
|
+
findFirst<S extends GetAllTreeNodesRecordSelect>(args: FindFirstArgs<S, GetAllTreeNodesRecordFilter, GetAllTreeNodesRecordsOrderBy> & {
|
|
19
|
+
select: S;
|
|
20
|
+
} & StrictSelect<S, GetAllTreeNodesRecordSelect>): QueryBuilder<{
|
|
21
|
+
getAllTreeNodesRecord: InferSelectResult<GetAllTreeNodesRecordWithRelations, S> | null;
|
|
22
|
+
}>;
|
|
23
|
+
create<S extends GetAllTreeNodesRecordSelect>(args: CreateArgs<S, CreateGetAllTreeNodesRecordInput['getAllTreeNodesRecord']> & {
|
|
24
|
+
select: S;
|
|
25
|
+
} & StrictSelect<S, GetAllTreeNodesRecordSelect>): QueryBuilder<{
|
|
26
|
+
createGetAllTreeNodesRecord: {
|
|
27
|
+
getAllTreeNodesRecord: InferSelectResult<GetAllTreeNodesRecordWithRelations, S>;
|
|
28
|
+
};
|
|
29
|
+
}>;
|
|
30
|
+
}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.GetAllTreeNodesRecordModel = void 0;
|
|
4
4
|
const query_builder_1 = require("../query-builder");
|
|
5
5
|
const input_types_1 = require("../input-types");
|
|
6
|
-
class
|
|
6
|
+
class GetAllTreeNodesRecordModel {
|
|
7
7
|
client;
|
|
8
8
|
constructor(client) {
|
|
9
9
|
this.client = client;
|
|
10
10
|
}
|
|
11
11
|
findMany(args) {
|
|
12
|
-
const { document, variables } = (0, query_builder_1.buildFindManyDocument)('
|
|
12
|
+
const { document, variables } = (0, query_builder_1.buildFindManyDocument)('GetAllTreeNodesRecord', 'getAllTreeNodes', args.select, {
|
|
13
13
|
where: args?.where,
|
|
14
14
|
orderBy: args?.orderBy,
|
|
15
15
|
first: args?.first,
|
|
@@ -17,43 +17,43 @@ class GetAllRecordModel {
|
|
|
17
17
|
after: args?.after,
|
|
18
18
|
before: args?.before,
|
|
19
19
|
offset: args?.offset,
|
|
20
|
-
}, '
|
|
20
|
+
}, 'GetAllTreeNodesRecordFilter', 'GetAllTreeNodesRecordsOrderBy', input_types_1.connectionFieldsMap);
|
|
21
21
|
return new query_builder_1.QueryBuilder({
|
|
22
22
|
client: this.client,
|
|
23
23
|
operation: 'query',
|
|
24
|
-
operationName: '
|
|
25
|
-
fieldName: '
|
|
24
|
+
operationName: 'GetAllTreeNodesRecord',
|
|
25
|
+
fieldName: 'getAllTreeNodes',
|
|
26
26
|
document,
|
|
27
27
|
variables,
|
|
28
28
|
});
|
|
29
29
|
}
|
|
30
30
|
findFirst(args) {
|
|
31
|
-
const { document, variables } = (0, query_builder_1.buildFindFirstDocument)('
|
|
31
|
+
const { document, variables } = (0, query_builder_1.buildFindFirstDocument)('GetAllTreeNodesRecord', 'getAllTreeNodes', args.select, {
|
|
32
32
|
where: args?.where,
|
|
33
33
|
orderBy: args?.orderBy,
|
|
34
|
-
}, '
|
|
34
|
+
}, 'GetAllTreeNodesRecordFilter', 'GetAllTreeNodesRecordsOrderBy', input_types_1.connectionFieldsMap);
|
|
35
35
|
return new query_builder_1.QueryBuilder({
|
|
36
36
|
client: this.client,
|
|
37
37
|
operation: 'query',
|
|
38
|
-
operationName: '
|
|
39
|
-
fieldName: '
|
|
38
|
+
operationName: 'GetAllTreeNodesRecord',
|
|
39
|
+
fieldName: 'getAllTreeNodesRecord',
|
|
40
40
|
document,
|
|
41
41
|
variables,
|
|
42
42
|
transform: (data) => ({
|
|
43
|
-
|
|
43
|
+
getAllTreeNodesRecord: data.getAllTreeNodes?.nodes?.[0] ?? null,
|
|
44
44
|
}),
|
|
45
45
|
});
|
|
46
46
|
}
|
|
47
47
|
create(args) {
|
|
48
|
-
const { document, variables } = (0, query_builder_1.buildCreateDocument)('
|
|
48
|
+
const { document, variables } = (0, query_builder_1.buildCreateDocument)('GetAllTreeNodesRecord', 'createGetAllTreeNodesRecord', 'getAllTreeNodesRecord', args.select, args.data, 'CreateGetAllTreeNodesRecordInput', input_types_1.connectionFieldsMap);
|
|
49
49
|
return new query_builder_1.QueryBuilder({
|
|
50
50
|
client: this.client,
|
|
51
51
|
operation: 'mutation',
|
|
52
|
-
operationName: '
|
|
53
|
-
fieldName: '
|
|
52
|
+
operationName: 'GetAllTreeNodesRecord',
|
|
53
|
+
fieldName: 'createGetAllTreeNodesRecord',
|
|
54
54
|
document,
|
|
55
55
|
variables,
|
|
56
56
|
});
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
|
-
exports.
|
|
59
|
+
exports.GetAllTreeNodesRecordModel = GetAllTreeNodesRecordModel;
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
6
|
export { DbPresetModel } from './dbPreset';
|
|
7
|
+
export { DeclaredCapacityModel } from './declaredCapacity';
|
|
7
8
|
export { FunctionApiBindingModel } from './functionApiBinding';
|
|
8
9
|
export { FunctionDefinitionModel } from './functionDefinition';
|
|
9
10
|
export { FunctionDeploymentModel } from './functionDeployment';
|
|
@@ -18,32 +19,52 @@ export { FunctionGraphObjectModel } from './functionGraphObject';
|
|
|
18
19
|
export { FunctionGraphRefModel } from './functionGraphRef';
|
|
19
20
|
export { FunctionGraphStoreModel } from './functionGraphStore';
|
|
20
21
|
export { FunctionInvocationModel } from './functionInvocation';
|
|
21
|
-
export {
|
|
22
|
+
export { GetAllTreeNodesRecordModel } from './getAllTreeNodesRecord';
|
|
22
23
|
export { InfraCommitModel } from './infraCommit';
|
|
23
|
-
export {
|
|
24
|
+
export { InfraGetAllTreeNodesRecordModel } from './infraGetAllTreeNodesRecord';
|
|
24
25
|
export { InfraObjectModel } from './infraObject';
|
|
25
26
|
export { InfraRefModel } from './infraRef';
|
|
26
27
|
export { InfraStoreModel } from './infraStore';
|
|
27
28
|
export { IntegrationProviderModel } from './integrationProvider';
|
|
28
29
|
export { NamespaceModel } from './namespace';
|
|
29
30
|
export { NamespaceEventModel } from './namespaceEvent';
|
|
31
|
+
export { PlatformDeclaredCapacityModel } from './platformDeclaredCapacity';
|
|
30
32
|
export { PlatformFunctionApiBindingModel } from './platformFunctionApiBinding';
|
|
31
33
|
export { PlatformFunctionDefinitionModel } from './platformFunctionDefinition';
|
|
32
34
|
export { PlatformFunctionDeploymentModel } from './platformFunctionDeployment';
|
|
33
35
|
export { PlatformFunctionDeploymentEventModel } from './platformFunctionDeploymentEvent';
|
|
34
36
|
export { PlatformFunctionExecutionLogModel } from './platformFunctionExecutionLog';
|
|
35
37
|
export { PlatformFunctionInvocationModel } from './platformFunctionInvocation';
|
|
38
|
+
export { PlatformInfraCommitModel } from './platformInfraCommit';
|
|
39
|
+
export { PlatformInfraGetAllTreeNodesRecordModel } from './platformInfraGetAllTreeNodesRecord';
|
|
40
|
+
export { PlatformInfraObjectModel } from './platformInfraObject';
|
|
41
|
+
export { PlatformInfraRefModel } from './platformInfraRef';
|
|
42
|
+
export { PlatformInfraStoreModel } from './platformInfraStore';
|
|
36
43
|
export { PlatformNamespaceModel } from './platformNamespace';
|
|
37
44
|
export { PlatformNamespaceEventModel } from './platformNamespaceEvent';
|
|
38
45
|
export { PlatformResourceModel } from './platformResource';
|
|
39
46
|
export { PlatformResourceDefinitionModel } from './platformResourceDefinition';
|
|
40
47
|
export { PlatformResourceEventModel } from './platformResourceEvent';
|
|
48
|
+
export { PlatformResourceInstallationModel } from './platformResourceInstallation';
|
|
41
49
|
export { PlatformResourceStatusCheckModel } from './platformResourceStatusCheck';
|
|
50
|
+
export { PlatformResourceUsageLogModel } from './platformResourceUsageLog';
|
|
51
|
+
export { PlatformResourceUsageSummaryModel } from './platformResourceUsageSummary';
|
|
52
|
+
export { PlatformResourceUtilizationDailyModel } from './platformResourceUtilizationDaily';
|
|
53
|
+
export { PlatformResourcesHealthModel } from './platformResourcesHealth';
|
|
42
54
|
export { PlatformResourcesRequirementsStateModel } from './platformResourcesRequirementsState';
|
|
43
55
|
export { PlatformResourcesResolvedRequirementModel } from './platformResourcesResolvedRequirement';
|
|
56
|
+
export { PlatformWebhookEndpointModel } from './platformWebhookEndpoint';
|
|
57
|
+
export { PlatformWebhookEventModel } from './platformWebhookEvent';
|
|
44
58
|
export { ResourceModel } from './resource';
|
|
45
59
|
export { ResourceDefinitionModel } from './resourceDefinition';
|
|
46
60
|
export { ResourceEventModel } from './resourceEvent';
|
|
61
|
+
export { ResourceInstallationModel } from './resourceInstallation';
|
|
47
62
|
export { ResourceStatusCheckModel } from './resourceStatusCheck';
|
|
63
|
+
export { ResourceUsageLogModel } from './resourceUsageLog';
|
|
64
|
+
export { ResourceUsageSummaryModel } from './resourceUsageSummary';
|
|
65
|
+
export { ResourceUtilizationDailyModel } from './resourceUtilizationDaily';
|
|
66
|
+
export { ResourcesHealthModel } from './resourcesHealth';
|
|
48
67
|
export { ResourcesRequirementsStateModel } from './resourcesRequirementsState';
|
|
49
68
|
export { ResourcesResolvedRequirementModel } from './resourcesResolvedRequirement';
|
|
69
|
+
export { WebhookEndpointModel } from './webhookEndpoint';
|
|
70
|
+
export { WebhookEventModel } from './webhookEvent';
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.PlatformResourcesResolvedRequirementModel = exports.PlatformResourcesRequirementsStateModel = exports.PlatformResourcesHealthModel = exports.PlatformResourceUtilizationDailyModel = exports.PlatformResourceUsageSummaryModel = exports.PlatformResourceUsageLogModel = exports.PlatformResourceStatusCheckModel = exports.PlatformResourceInstallationModel = exports.PlatformResourceEventModel = exports.PlatformResourceDefinitionModel = exports.PlatformResourceModel = exports.PlatformNamespaceEventModel = exports.PlatformNamespaceModel = exports.PlatformInfraStoreModel = exports.PlatformInfraRefModel = exports.PlatformInfraObjectModel = exports.PlatformInfraGetAllTreeNodesRecordModel = exports.PlatformInfraCommitModel = exports.PlatformFunctionInvocationModel = exports.PlatformFunctionExecutionLogModel = exports.PlatformFunctionDeploymentEventModel = exports.PlatformFunctionDeploymentModel = exports.PlatformFunctionDefinitionModel = exports.PlatformFunctionApiBindingModel = exports.PlatformDeclaredCapacityModel = exports.NamespaceEventModel = exports.NamespaceModel = exports.IntegrationProviderModel = exports.InfraStoreModel = exports.InfraRefModel = exports.InfraObjectModel = exports.InfraGetAllTreeNodesRecordModel = exports.InfraCommitModel = exports.GetAllTreeNodesRecordModel = exports.FunctionInvocationModel = exports.FunctionGraphStoreModel = exports.FunctionGraphRefModel = exports.FunctionGraphObjectModel = exports.FunctionGraphExecutionOutputModel = exports.FunctionGraphExecutionNodeStateModel = exports.FunctionGraphExecutionModel = exports.FunctionGraphModel = exports.FunctionGraphCommitModel = exports.FunctionExecutionLogModel = exports.FunctionDeploymentEventModel = exports.FunctionDeploymentModel = exports.FunctionDefinitionModel = exports.FunctionApiBindingModel = exports.DeclaredCapacityModel = exports.DbPresetModel = void 0;
|
|
4
|
+
exports.WebhookEventModel = exports.WebhookEndpointModel = exports.ResourcesResolvedRequirementModel = exports.ResourcesRequirementsStateModel = exports.ResourcesHealthModel = exports.ResourceUtilizationDailyModel = exports.ResourceUsageSummaryModel = exports.ResourceUsageLogModel = exports.ResourceStatusCheckModel = exports.ResourceInstallationModel = exports.ResourceEventModel = exports.ResourceDefinitionModel = exports.ResourceModel = exports.PlatformWebhookEventModel = exports.PlatformWebhookEndpointModel = void 0;
|
|
4
5
|
/**
|
|
5
6
|
* Models barrel export
|
|
6
7
|
* @generated by @constructive-io/graphql-codegen
|
|
@@ -8,6 +9,8 @@ exports.ResourcesResolvedRequirementModel = exports.ResourcesRequirementsStateMo
|
|
|
8
9
|
*/
|
|
9
10
|
var dbPreset_1 = require("./dbPreset");
|
|
10
11
|
Object.defineProperty(exports, "DbPresetModel", { enumerable: true, get: function () { return dbPreset_1.DbPresetModel; } });
|
|
12
|
+
var declaredCapacity_1 = require("./declaredCapacity");
|
|
13
|
+
Object.defineProperty(exports, "DeclaredCapacityModel", { enumerable: true, get: function () { return declaredCapacity_1.DeclaredCapacityModel; } });
|
|
11
14
|
var functionApiBinding_1 = require("./functionApiBinding");
|
|
12
15
|
Object.defineProperty(exports, "FunctionApiBindingModel", { enumerable: true, get: function () { return functionApiBinding_1.FunctionApiBindingModel; } });
|
|
13
16
|
var functionDefinition_1 = require("./functionDefinition");
|
|
@@ -36,12 +39,12 @@ var functionGraphStore_1 = require("./functionGraphStore");
|
|
|
36
39
|
Object.defineProperty(exports, "FunctionGraphStoreModel", { enumerable: true, get: function () { return functionGraphStore_1.FunctionGraphStoreModel; } });
|
|
37
40
|
var functionInvocation_1 = require("./functionInvocation");
|
|
38
41
|
Object.defineProperty(exports, "FunctionInvocationModel", { enumerable: true, get: function () { return functionInvocation_1.FunctionInvocationModel; } });
|
|
39
|
-
var
|
|
40
|
-
Object.defineProperty(exports, "
|
|
42
|
+
var getAllTreeNodesRecord_1 = require("./getAllTreeNodesRecord");
|
|
43
|
+
Object.defineProperty(exports, "GetAllTreeNodesRecordModel", { enumerable: true, get: function () { return getAllTreeNodesRecord_1.GetAllTreeNodesRecordModel; } });
|
|
41
44
|
var infraCommit_1 = require("./infraCommit");
|
|
42
45
|
Object.defineProperty(exports, "InfraCommitModel", { enumerable: true, get: function () { return infraCommit_1.InfraCommitModel; } });
|
|
43
|
-
var
|
|
44
|
-
Object.defineProperty(exports, "
|
|
46
|
+
var infraGetAllTreeNodesRecord_1 = require("./infraGetAllTreeNodesRecord");
|
|
47
|
+
Object.defineProperty(exports, "InfraGetAllTreeNodesRecordModel", { enumerable: true, get: function () { return infraGetAllTreeNodesRecord_1.InfraGetAllTreeNodesRecordModel; } });
|
|
45
48
|
var infraObject_1 = require("./infraObject");
|
|
46
49
|
Object.defineProperty(exports, "InfraObjectModel", { enumerable: true, get: function () { return infraObject_1.InfraObjectModel; } });
|
|
47
50
|
var infraRef_1 = require("./infraRef");
|
|
@@ -54,6 +57,8 @@ var namespace_1 = require("./namespace");
|
|
|
54
57
|
Object.defineProperty(exports, "NamespaceModel", { enumerable: true, get: function () { return namespace_1.NamespaceModel; } });
|
|
55
58
|
var namespaceEvent_1 = require("./namespaceEvent");
|
|
56
59
|
Object.defineProperty(exports, "NamespaceEventModel", { enumerable: true, get: function () { return namespaceEvent_1.NamespaceEventModel; } });
|
|
60
|
+
var platformDeclaredCapacity_1 = require("./platformDeclaredCapacity");
|
|
61
|
+
Object.defineProperty(exports, "PlatformDeclaredCapacityModel", { enumerable: true, get: function () { return platformDeclaredCapacity_1.PlatformDeclaredCapacityModel; } });
|
|
57
62
|
var platformFunctionApiBinding_1 = require("./platformFunctionApiBinding");
|
|
58
63
|
Object.defineProperty(exports, "PlatformFunctionApiBindingModel", { enumerable: true, get: function () { return platformFunctionApiBinding_1.PlatformFunctionApiBindingModel; } });
|
|
59
64
|
var platformFunctionDefinition_1 = require("./platformFunctionDefinition");
|
|
@@ -66,6 +71,16 @@ var platformFunctionExecutionLog_1 = require("./platformFunctionExecutionLog");
|
|
|
66
71
|
Object.defineProperty(exports, "PlatformFunctionExecutionLogModel", { enumerable: true, get: function () { return platformFunctionExecutionLog_1.PlatformFunctionExecutionLogModel; } });
|
|
67
72
|
var platformFunctionInvocation_1 = require("./platformFunctionInvocation");
|
|
68
73
|
Object.defineProperty(exports, "PlatformFunctionInvocationModel", { enumerable: true, get: function () { return platformFunctionInvocation_1.PlatformFunctionInvocationModel; } });
|
|
74
|
+
var platformInfraCommit_1 = require("./platformInfraCommit");
|
|
75
|
+
Object.defineProperty(exports, "PlatformInfraCommitModel", { enumerable: true, get: function () { return platformInfraCommit_1.PlatformInfraCommitModel; } });
|
|
76
|
+
var platformInfraGetAllTreeNodesRecord_1 = require("./platformInfraGetAllTreeNodesRecord");
|
|
77
|
+
Object.defineProperty(exports, "PlatformInfraGetAllTreeNodesRecordModel", { enumerable: true, get: function () { return platformInfraGetAllTreeNodesRecord_1.PlatformInfraGetAllTreeNodesRecordModel; } });
|
|
78
|
+
var platformInfraObject_1 = require("./platformInfraObject");
|
|
79
|
+
Object.defineProperty(exports, "PlatformInfraObjectModel", { enumerable: true, get: function () { return platformInfraObject_1.PlatformInfraObjectModel; } });
|
|
80
|
+
var platformInfraRef_1 = require("./platformInfraRef");
|
|
81
|
+
Object.defineProperty(exports, "PlatformInfraRefModel", { enumerable: true, get: function () { return platformInfraRef_1.PlatformInfraRefModel; } });
|
|
82
|
+
var platformInfraStore_1 = require("./platformInfraStore");
|
|
83
|
+
Object.defineProperty(exports, "PlatformInfraStoreModel", { enumerable: true, get: function () { return platformInfraStore_1.PlatformInfraStoreModel; } });
|
|
69
84
|
var platformNamespace_1 = require("./platformNamespace");
|
|
70
85
|
Object.defineProperty(exports, "PlatformNamespaceModel", { enumerable: true, get: function () { return platformNamespace_1.PlatformNamespaceModel; } });
|
|
71
86
|
var platformNamespaceEvent_1 = require("./platformNamespaceEvent");
|
|
@@ -76,21 +91,49 @@ var platformResourceDefinition_1 = require("./platformResourceDefinition");
|
|
|
76
91
|
Object.defineProperty(exports, "PlatformResourceDefinitionModel", { enumerable: true, get: function () { return platformResourceDefinition_1.PlatformResourceDefinitionModel; } });
|
|
77
92
|
var platformResourceEvent_1 = require("./platformResourceEvent");
|
|
78
93
|
Object.defineProperty(exports, "PlatformResourceEventModel", { enumerable: true, get: function () { return platformResourceEvent_1.PlatformResourceEventModel; } });
|
|
94
|
+
var platformResourceInstallation_1 = require("./platformResourceInstallation");
|
|
95
|
+
Object.defineProperty(exports, "PlatformResourceInstallationModel", { enumerable: true, get: function () { return platformResourceInstallation_1.PlatformResourceInstallationModel; } });
|
|
79
96
|
var platformResourceStatusCheck_1 = require("./platformResourceStatusCheck");
|
|
80
97
|
Object.defineProperty(exports, "PlatformResourceStatusCheckModel", { enumerable: true, get: function () { return platformResourceStatusCheck_1.PlatformResourceStatusCheckModel; } });
|
|
98
|
+
var platformResourceUsageLog_1 = require("./platformResourceUsageLog");
|
|
99
|
+
Object.defineProperty(exports, "PlatformResourceUsageLogModel", { enumerable: true, get: function () { return platformResourceUsageLog_1.PlatformResourceUsageLogModel; } });
|
|
100
|
+
var platformResourceUsageSummary_1 = require("./platformResourceUsageSummary");
|
|
101
|
+
Object.defineProperty(exports, "PlatformResourceUsageSummaryModel", { enumerable: true, get: function () { return platformResourceUsageSummary_1.PlatformResourceUsageSummaryModel; } });
|
|
102
|
+
var platformResourceUtilizationDaily_1 = require("./platformResourceUtilizationDaily");
|
|
103
|
+
Object.defineProperty(exports, "PlatformResourceUtilizationDailyModel", { enumerable: true, get: function () { return platformResourceUtilizationDaily_1.PlatformResourceUtilizationDailyModel; } });
|
|
104
|
+
var platformResourcesHealth_1 = require("./platformResourcesHealth");
|
|
105
|
+
Object.defineProperty(exports, "PlatformResourcesHealthModel", { enumerable: true, get: function () { return platformResourcesHealth_1.PlatformResourcesHealthModel; } });
|
|
81
106
|
var platformResourcesRequirementsState_1 = require("./platformResourcesRequirementsState");
|
|
82
107
|
Object.defineProperty(exports, "PlatformResourcesRequirementsStateModel", { enumerable: true, get: function () { return platformResourcesRequirementsState_1.PlatformResourcesRequirementsStateModel; } });
|
|
83
108
|
var platformResourcesResolvedRequirement_1 = require("./platformResourcesResolvedRequirement");
|
|
84
109
|
Object.defineProperty(exports, "PlatformResourcesResolvedRequirementModel", { enumerable: true, get: function () { return platformResourcesResolvedRequirement_1.PlatformResourcesResolvedRequirementModel; } });
|
|
110
|
+
var platformWebhookEndpoint_1 = require("./platformWebhookEndpoint");
|
|
111
|
+
Object.defineProperty(exports, "PlatformWebhookEndpointModel", { enumerable: true, get: function () { return platformWebhookEndpoint_1.PlatformWebhookEndpointModel; } });
|
|
112
|
+
var platformWebhookEvent_1 = require("./platformWebhookEvent");
|
|
113
|
+
Object.defineProperty(exports, "PlatformWebhookEventModel", { enumerable: true, get: function () { return platformWebhookEvent_1.PlatformWebhookEventModel; } });
|
|
85
114
|
var resource_1 = require("./resource");
|
|
86
115
|
Object.defineProperty(exports, "ResourceModel", { enumerable: true, get: function () { return resource_1.ResourceModel; } });
|
|
87
116
|
var resourceDefinition_1 = require("./resourceDefinition");
|
|
88
117
|
Object.defineProperty(exports, "ResourceDefinitionModel", { enumerable: true, get: function () { return resourceDefinition_1.ResourceDefinitionModel; } });
|
|
89
118
|
var resourceEvent_1 = require("./resourceEvent");
|
|
90
119
|
Object.defineProperty(exports, "ResourceEventModel", { enumerable: true, get: function () { return resourceEvent_1.ResourceEventModel; } });
|
|
120
|
+
var resourceInstallation_1 = require("./resourceInstallation");
|
|
121
|
+
Object.defineProperty(exports, "ResourceInstallationModel", { enumerable: true, get: function () { return resourceInstallation_1.ResourceInstallationModel; } });
|
|
91
122
|
var resourceStatusCheck_1 = require("./resourceStatusCheck");
|
|
92
123
|
Object.defineProperty(exports, "ResourceStatusCheckModel", { enumerable: true, get: function () { return resourceStatusCheck_1.ResourceStatusCheckModel; } });
|
|
124
|
+
var resourceUsageLog_1 = require("./resourceUsageLog");
|
|
125
|
+
Object.defineProperty(exports, "ResourceUsageLogModel", { enumerable: true, get: function () { return resourceUsageLog_1.ResourceUsageLogModel; } });
|
|
126
|
+
var resourceUsageSummary_1 = require("./resourceUsageSummary");
|
|
127
|
+
Object.defineProperty(exports, "ResourceUsageSummaryModel", { enumerable: true, get: function () { return resourceUsageSummary_1.ResourceUsageSummaryModel; } });
|
|
128
|
+
var resourceUtilizationDaily_1 = require("./resourceUtilizationDaily");
|
|
129
|
+
Object.defineProperty(exports, "ResourceUtilizationDailyModel", { enumerable: true, get: function () { return resourceUtilizationDaily_1.ResourceUtilizationDailyModel; } });
|
|
130
|
+
var resourcesHealth_1 = require("./resourcesHealth");
|
|
131
|
+
Object.defineProperty(exports, "ResourcesHealthModel", { enumerable: true, get: function () { return resourcesHealth_1.ResourcesHealthModel; } });
|
|
93
132
|
var resourcesRequirementsState_1 = require("./resourcesRequirementsState");
|
|
94
133
|
Object.defineProperty(exports, "ResourcesRequirementsStateModel", { enumerable: true, get: function () { return resourcesRequirementsState_1.ResourcesRequirementsStateModel; } });
|
|
95
134
|
var resourcesResolvedRequirement_1 = require("./resourcesResolvedRequirement");
|
|
96
135
|
Object.defineProperty(exports, "ResourcesResolvedRequirementModel", { enumerable: true, get: function () { return resourcesResolvedRequirement_1.ResourcesResolvedRequirementModel; } });
|
|
136
|
+
var webhookEndpoint_1 = require("./webhookEndpoint");
|
|
137
|
+
Object.defineProperty(exports, "WebhookEndpointModel", { enumerable: true, get: function () { return webhookEndpoint_1.WebhookEndpointModel; } });
|
|
138
|
+
var webhookEvent_1 = require("./webhookEvent");
|
|
139
|
+
Object.defineProperty(exports, "WebhookEventModel", { enumerable: true, get: function () { return webhookEvent_1.WebhookEventModel; } });
|
|
@@ -35,7 +35,7 @@ export declare class InfraCommitModel {
|
|
|
35
35
|
}>;
|
|
36
36
|
update<S extends InfraCommitSelect>(args: UpdateArgs<S, {
|
|
37
37
|
id: string;
|
|
38
|
-
|
|
38
|
+
databaseId: string;
|
|
39
39
|
}, InfraCommitPatch> & {
|
|
40
40
|
select: S;
|
|
41
41
|
} & StrictSelect<S, InfraCommitSelect>): QueryBuilder<{
|
|
@@ -45,7 +45,7 @@ export declare class InfraCommitModel {
|
|
|
45
45
|
}>;
|
|
46
46
|
delete<S extends InfraCommitSelect>(args: DeleteArgs<{
|
|
47
47
|
id: string;
|
|
48
|
-
|
|
48
|
+
databaseId: string;
|
|
49
49
|
}, S> & {
|
|
50
50
|
select: S;
|
|
51
51
|
} & StrictSelect<S, InfraCommitSelect>): QueryBuilder<{
|
|
@@ -78,7 +78,7 @@ class InfraCommitModel {
|
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
80
|
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('InfraCommit', 'updateInfraCommit', 'infraCommit', args.select, args.where.id, args.data, 'UpdateInfraCommitInput', 'id', 'infraCommitPatch', input_types_1.connectionFieldsMap, {
|
|
81
|
-
|
|
81
|
+
databaseId: args.where.databaseId,
|
|
82
82
|
});
|
|
83
83
|
return new query_builder_1.QueryBuilder({
|
|
84
84
|
client: this.client,
|
|
@@ -92,7 +92,7 @@ class InfraCommitModel {
|
|
|
92
92
|
delete(args) {
|
|
93
93
|
const { document, variables } = (0, query_builder_1.buildDeleteByPkDocument)('InfraCommit', 'deleteInfraCommit', 'infraCommit', {
|
|
94
94
|
id: args.where.id,
|
|
95
|
-
|
|
95
|
+
databaseId: args.where.databaseId,
|
|
96
96
|
}, 'DeleteInfraCommitInput', args.select, input_types_1.connectionFieldsMap);
|
|
97
97
|
return new query_builder_1.QueryBuilder({
|
|
98
98
|
client: this.client,
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* InfraGetAllTreeNodesRecord model for ORM client
|
|
3
|
+
* @generated by @constructive-io/graphql-codegen
|
|
4
|
+
* DO NOT EDIT - changes will be overwritten
|
|
5
|
+
*/
|
|
6
|
+
import { OrmClient } from '../client';
|
|
7
|
+
import { QueryBuilder } from '../query-builder';
|
|
8
|
+
import type { ConnectionResult, FindManyArgs, FindFirstArgs, CreateArgs, InferSelectResult, StrictSelect } from '../select-types';
|
|
9
|
+
import type { InfraGetAllTreeNodesRecordWithRelations, InfraGetAllTreeNodesRecordSelect, InfraGetAllTreeNodesRecordFilter, InfraGetAllTreeNodesRecordsOrderBy, CreateInfraGetAllTreeNodesRecordInput } from '../input-types';
|
|
10
|
+
export declare class InfraGetAllTreeNodesRecordModel {
|
|
11
|
+
private client;
|
|
12
|
+
constructor(client: OrmClient);
|
|
13
|
+
findMany<S extends InfraGetAllTreeNodesRecordSelect>(args: FindManyArgs<S, InfraGetAllTreeNodesRecordFilter, InfraGetAllTreeNodesRecordsOrderBy> & {
|
|
14
|
+
select: S;
|
|
15
|
+
} & StrictSelect<S, InfraGetAllTreeNodesRecordSelect>): QueryBuilder<{
|
|
16
|
+
infraGetAllTreeNodes: ConnectionResult<InferSelectResult<InfraGetAllTreeNodesRecordWithRelations, S>>;
|
|
17
|
+
}>;
|
|
18
|
+
findFirst<S extends InfraGetAllTreeNodesRecordSelect>(args: FindFirstArgs<S, InfraGetAllTreeNodesRecordFilter, InfraGetAllTreeNodesRecordsOrderBy> & {
|
|
19
|
+
select: S;
|
|
20
|
+
} & StrictSelect<S, InfraGetAllTreeNodesRecordSelect>): QueryBuilder<{
|
|
21
|
+
infraGetAllTreeNodesRecord: InferSelectResult<InfraGetAllTreeNodesRecordWithRelations, S> | null;
|
|
22
|
+
}>;
|
|
23
|
+
create<S extends InfraGetAllTreeNodesRecordSelect>(args: CreateArgs<S, CreateInfraGetAllTreeNodesRecordInput['infraGetAllTreeNodesRecord']> & {
|
|
24
|
+
select: S;
|
|
25
|
+
} & StrictSelect<S, InfraGetAllTreeNodesRecordSelect>): QueryBuilder<{
|
|
26
|
+
createInfraGetAllTreeNodesRecord: {
|
|
27
|
+
infraGetAllTreeNodesRecord: InferSelectResult<InfraGetAllTreeNodesRecordWithRelations, S>;
|
|
28
|
+
};
|
|
29
|
+
}>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.InfraGetAllTreeNodesRecordModel = void 0;
|
|
4
|
+
const query_builder_1 = require("../query-builder");
|
|
5
|
+
const input_types_1 = require("../input-types");
|
|
6
|
+
class InfraGetAllTreeNodesRecordModel {
|
|
7
|
+
client;
|
|
8
|
+
constructor(client) {
|
|
9
|
+
this.client = client;
|
|
10
|
+
}
|
|
11
|
+
findMany(args) {
|
|
12
|
+
const { document, variables } = (0, query_builder_1.buildFindManyDocument)('InfraGetAllTreeNodesRecord', 'infraGetAllTreeNodes', args.select, {
|
|
13
|
+
where: args?.where,
|
|
14
|
+
orderBy: args?.orderBy,
|
|
15
|
+
first: args?.first,
|
|
16
|
+
last: args?.last,
|
|
17
|
+
after: args?.after,
|
|
18
|
+
before: args?.before,
|
|
19
|
+
offset: args?.offset,
|
|
20
|
+
}, 'InfraGetAllTreeNodesRecordFilter', 'InfraGetAllTreeNodesRecordsOrderBy', input_types_1.connectionFieldsMap);
|
|
21
|
+
return new query_builder_1.QueryBuilder({
|
|
22
|
+
client: this.client,
|
|
23
|
+
operation: 'query',
|
|
24
|
+
operationName: 'InfraGetAllTreeNodesRecord',
|
|
25
|
+
fieldName: 'infraGetAllTreeNodes',
|
|
26
|
+
document,
|
|
27
|
+
variables,
|
|
28
|
+
});
|
|
29
|
+
}
|
|
30
|
+
findFirst(args) {
|
|
31
|
+
const { document, variables } = (0, query_builder_1.buildFindFirstDocument)('InfraGetAllTreeNodesRecord', 'infraGetAllTreeNodes', args.select, {
|
|
32
|
+
where: args?.where,
|
|
33
|
+
orderBy: args?.orderBy,
|
|
34
|
+
}, 'InfraGetAllTreeNodesRecordFilter', 'InfraGetAllTreeNodesRecordsOrderBy', input_types_1.connectionFieldsMap);
|
|
35
|
+
return new query_builder_1.QueryBuilder({
|
|
36
|
+
client: this.client,
|
|
37
|
+
operation: 'query',
|
|
38
|
+
operationName: 'InfraGetAllTreeNodesRecord',
|
|
39
|
+
fieldName: 'infraGetAllTreeNodesRecord',
|
|
40
|
+
document,
|
|
41
|
+
variables,
|
|
42
|
+
transform: (data) => ({
|
|
43
|
+
infraGetAllTreeNodesRecord: data.infraGetAllTreeNodes?.nodes?.[0] ?? null,
|
|
44
|
+
}),
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
create(args) {
|
|
48
|
+
const { document, variables } = (0, query_builder_1.buildCreateDocument)('InfraGetAllTreeNodesRecord', 'createInfraGetAllTreeNodesRecord', 'infraGetAllTreeNodesRecord', args.select, args.data, 'CreateInfraGetAllTreeNodesRecordInput', input_types_1.connectionFieldsMap);
|
|
49
|
+
return new query_builder_1.QueryBuilder({
|
|
50
|
+
client: this.client,
|
|
51
|
+
operation: 'mutation',
|
|
52
|
+
operationName: 'InfraGetAllTreeNodesRecord',
|
|
53
|
+
fieldName: 'createInfraGetAllTreeNodesRecord',
|
|
54
|
+
document,
|
|
55
|
+
variables,
|
|
56
|
+
});
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
exports.InfraGetAllTreeNodesRecordModel = InfraGetAllTreeNodesRecordModel;
|
|
@@ -35,7 +35,7 @@ export declare class InfraObjectModel {
|
|
|
35
35
|
}>;
|
|
36
36
|
update<S extends InfraObjectSelect>(args: UpdateArgs<S, {
|
|
37
37
|
id: string;
|
|
38
|
-
|
|
38
|
+
databaseId: string;
|
|
39
39
|
}, InfraObjectPatch> & {
|
|
40
40
|
select: S;
|
|
41
41
|
} & StrictSelect<S, InfraObjectSelect>): QueryBuilder<{
|
|
@@ -45,7 +45,7 @@ export declare class InfraObjectModel {
|
|
|
45
45
|
}>;
|
|
46
46
|
delete<S extends InfraObjectSelect>(args: DeleteArgs<{
|
|
47
47
|
id: string;
|
|
48
|
-
|
|
48
|
+
databaseId: string;
|
|
49
49
|
}, S> & {
|
|
50
50
|
select: S;
|
|
51
51
|
} & StrictSelect<S, InfraObjectSelect>): QueryBuilder<{
|
|
@@ -68,7 +68,7 @@ class InfraObjectModel {
|
|
|
68
68
|
}
|
|
69
69
|
update(args) {
|
|
70
70
|
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('InfraObject', 'updateInfraObject', 'infraObject', args.select, args.where.id, args.data, 'UpdateInfraObjectInput', 'id', 'infraObjectPatch', input_types_1.connectionFieldsMap, {
|
|
71
|
-
|
|
71
|
+
databaseId: args.where.databaseId,
|
|
72
72
|
});
|
|
73
73
|
return new query_builder_1.QueryBuilder({
|
|
74
74
|
client: this.client,
|
|
@@ -82,7 +82,7 @@ class InfraObjectModel {
|
|
|
82
82
|
delete(args) {
|
|
83
83
|
const { document, variables } = (0, query_builder_1.buildDeleteByPkDocument)('InfraObject', 'deleteInfraObject', 'infraObject', {
|
|
84
84
|
id: args.where.id,
|
|
85
|
-
|
|
85
|
+
databaseId: args.where.databaseId,
|
|
86
86
|
}, 'DeleteInfraObjectInput', args.select, input_types_1.connectionFieldsMap);
|
|
87
87
|
return new query_builder_1.QueryBuilder({
|
|
88
88
|
client: this.client,
|