@constructive-sdk/cli 0.32.2 → 0.32.4
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 +5 -5
- 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
|
@@ -0,0 +1,247 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
/**
|
|
4
|
+
* CLI commands for DeclaredCapacity
|
|
5
|
+
* @generated by @constructive-io/graphql-codegen
|
|
6
|
+
* DO NOT EDIT - changes will be overwritten
|
|
7
|
+
*/
|
|
8
|
+
const inquirerer_1 = require("inquirerer");
|
|
9
|
+
const executor_1 = require("../executor");
|
|
10
|
+
const utils_1 = require("../utils");
|
|
11
|
+
const fieldSchema = {
|
|
12
|
+
cpuLimitMillicores: 'int',
|
|
13
|
+
cpuRequestMillicores: 'int',
|
|
14
|
+
installationId: 'uuid',
|
|
15
|
+
isTransient: 'boolean',
|
|
16
|
+
kind: 'string',
|
|
17
|
+
memoryLimitBytes: 'int',
|
|
18
|
+
memoryRequestBytes: 'int',
|
|
19
|
+
namespaceId: 'uuid',
|
|
20
|
+
podCountMax: 'int',
|
|
21
|
+
podCountMin: 'int',
|
|
22
|
+
source: 'string',
|
|
23
|
+
sourceId: 'uuid',
|
|
24
|
+
storageSizeBytes: 'int',
|
|
25
|
+
};
|
|
26
|
+
const usage = '\ndeclared-capacity <command>\n\nCommands:\n list List declaredCapacity records\n find-first Find first matching declaredCapacity record\n create Create a new declaredCapacity\n\nList Options:\n --limit <n> Max number of records to return (forward pagination)\n --last <n> Number of records from the end (backward pagination)\n --after <cursor> Cursor for forward pagination\n --before <cursor> Cursor for backward pagination\n --offset <n> Number of records to skip\n --select <fields> Comma-separated list of fields to return\n --where.<field>.<op> Filter (dot-notation, e.g. --where.name.equalTo foo)\n --condition.<f>.<op> Condition filter (dot-notation)\n --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\nFind-First Options:\n --select <fields> Comma-separated list of fields to return\n --where.<field>.<op> Filter (dot-notation, e.g. --where.status.equalTo active)\n --condition.<f>.<op> Condition filter (dot-notation)\n --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
|
|
27
|
+
exports.default = async (argv, prompter, _options) => {
|
|
28
|
+
if (argv.help || argv.h) {
|
|
29
|
+
console.log(usage);
|
|
30
|
+
process.exit(0);
|
|
31
|
+
}
|
|
32
|
+
const { first: subcommand, newArgv } = (0, inquirerer_1.extractFirst)(argv);
|
|
33
|
+
if (!subcommand) {
|
|
34
|
+
const answer = await prompter.prompt(argv, [
|
|
35
|
+
{
|
|
36
|
+
type: 'autocomplete',
|
|
37
|
+
name: 'subcommand',
|
|
38
|
+
message: 'What do you want to do?',
|
|
39
|
+
options: ['list', 'find-first', 'create'],
|
|
40
|
+
},
|
|
41
|
+
]);
|
|
42
|
+
return handleTableSubcommand(answer.subcommand, newArgv, prompter);
|
|
43
|
+
}
|
|
44
|
+
return handleTableSubcommand(subcommand, newArgv, prompter);
|
|
45
|
+
};
|
|
46
|
+
async function handleTableSubcommand(subcommand, argv, prompter) {
|
|
47
|
+
switch (subcommand) {
|
|
48
|
+
case 'list':
|
|
49
|
+
return handleList(argv, prompter);
|
|
50
|
+
case 'find-first':
|
|
51
|
+
return handleFindFirst(argv, prompter);
|
|
52
|
+
case 'create':
|
|
53
|
+
return handleCreate(argv, prompter);
|
|
54
|
+
default:
|
|
55
|
+
console.log(usage);
|
|
56
|
+
process.exit(1);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
async function handleList(argv, _prompter) {
|
|
60
|
+
try {
|
|
61
|
+
const defaultSelect = {
|
|
62
|
+
cpuLimitMillicores: true,
|
|
63
|
+
cpuRequestMillicores: true,
|
|
64
|
+
installationId: true,
|
|
65
|
+
isTransient: true,
|
|
66
|
+
kind: true,
|
|
67
|
+
memoryLimitBytes: true,
|
|
68
|
+
memoryRequestBytes: true,
|
|
69
|
+
namespaceId: true,
|
|
70
|
+
podCountMax: true,
|
|
71
|
+
podCountMin: true,
|
|
72
|
+
source: true,
|
|
73
|
+
sourceId: true,
|
|
74
|
+
storageSizeBytes: true,
|
|
75
|
+
};
|
|
76
|
+
const findManyArgs = (0, utils_1.parseFindManyArgs)(argv, defaultSelect);
|
|
77
|
+
const client = (0, executor_1.getClient)();
|
|
78
|
+
const result = await client.declaredCapacity.findMany(findManyArgs).execute();
|
|
79
|
+
console.log(JSON.stringify(result, null, 2));
|
|
80
|
+
}
|
|
81
|
+
catch (error) {
|
|
82
|
+
console.error('Failed to list records.');
|
|
83
|
+
if (error instanceof Error) {
|
|
84
|
+
console.error(error.message);
|
|
85
|
+
}
|
|
86
|
+
process.exit(1);
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
async function handleFindFirst(argv, _prompter) {
|
|
90
|
+
try {
|
|
91
|
+
const defaultSelect = {
|
|
92
|
+
cpuLimitMillicores: true,
|
|
93
|
+
cpuRequestMillicores: true,
|
|
94
|
+
installationId: true,
|
|
95
|
+
isTransient: true,
|
|
96
|
+
kind: true,
|
|
97
|
+
memoryLimitBytes: true,
|
|
98
|
+
memoryRequestBytes: true,
|
|
99
|
+
namespaceId: true,
|
|
100
|
+
podCountMax: true,
|
|
101
|
+
podCountMin: true,
|
|
102
|
+
source: true,
|
|
103
|
+
sourceId: true,
|
|
104
|
+
storageSizeBytes: true,
|
|
105
|
+
};
|
|
106
|
+
const findFirstArgs = (0, utils_1.parseFindFirstArgs)(argv, defaultSelect);
|
|
107
|
+
const client = (0, executor_1.getClient)();
|
|
108
|
+
const result = await client.declaredCapacity.findFirst(findFirstArgs).execute();
|
|
109
|
+
console.log(JSON.stringify(result, null, 2));
|
|
110
|
+
}
|
|
111
|
+
catch (error) {
|
|
112
|
+
console.error('Failed to find record.');
|
|
113
|
+
if (error instanceof Error) {
|
|
114
|
+
console.error(error.message);
|
|
115
|
+
}
|
|
116
|
+
process.exit(1);
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
async function handleCreate(argv, prompter) {
|
|
120
|
+
try {
|
|
121
|
+
const rawAnswers = await prompter.prompt(argv, [
|
|
122
|
+
{
|
|
123
|
+
type: 'text',
|
|
124
|
+
name: 'cpuLimitMillicores',
|
|
125
|
+
message: 'cpuLimitMillicores',
|
|
126
|
+
required: true,
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
type: 'text',
|
|
130
|
+
name: 'cpuRequestMillicores',
|
|
131
|
+
message: 'cpuRequestMillicores',
|
|
132
|
+
required: true,
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
type: 'text',
|
|
136
|
+
name: 'installationId',
|
|
137
|
+
message: 'installationId',
|
|
138
|
+
required: true,
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
type: 'boolean',
|
|
142
|
+
name: 'isTransient',
|
|
143
|
+
message: 'isTransient',
|
|
144
|
+
required: true,
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
type: 'text',
|
|
148
|
+
name: 'kind',
|
|
149
|
+
message: 'kind',
|
|
150
|
+
required: true,
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
type: 'text',
|
|
154
|
+
name: 'memoryLimitBytes',
|
|
155
|
+
message: 'memoryLimitBytes',
|
|
156
|
+
required: true,
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
type: 'text',
|
|
160
|
+
name: 'memoryRequestBytes',
|
|
161
|
+
message: 'memoryRequestBytes',
|
|
162
|
+
required: true,
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
type: 'text',
|
|
166
|
+
name: 'namespaceId',
|
|
167
|
+
message: 'namespaceId',
|
|
168
|
+
required: true,
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
type: 'text',
|
|
172
|
+
name: 'podCountMax',
|
|
173
|
+
message: 'podCountMax',
|
|
174
|
+
required: true,
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
type: 'text',
|
|
178
|
+
name: 'podCountMin',
|
|
179
|
+
message: 'podCountMin',
|
|
180
|
+
required: true,
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
type: 'text',
|
|
184
|
+
name: 'source',
|
|
185
|
+
message: 'source',
|
|
186
|
+
required: true,
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
type: 'text',
|
|
190
|
+
name: 'sourceId',
|
|
191
|
+
message: 'sourceId',
|
|
192
|
+
required: true,
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
type: 'text',
|
|
196
|
+
name: 'storageSizeBytes',
|
|
197
|
+
message: 'storageSizeBytes',
|
|
198
|
+
required: true,
|
|
199
|
+
},
|
|
200
|
+
]);
|
|
201
|
+
const answers = (0, utils_1.coerceAnswers)(rawAnswers, fieldSchema);
|
|
202
|
+
const cleanedData = (0, utils_1.stripUndefined)(answers, fieldSchema);
|
|
203
|
+
const client = (0, executor_1.getClient)();
|
|
204
|
+
const result = await client.declaredCapacity
|
|
205
|
+
.create({
|
|
206
|
+
data: {
|
|
207
|
+
cpuLimitMillicores: cleanedData.cpuLimitMillicores,
|
|
208
|
+
cpuRequestMillicores: cleanedData.cpuRequestMillicores,
|
|
209
|
+
installationId: cleanedData.installationId,
|
|
210
|
+
isTransient: cleanedData.isTransient,
|
|
211
|
+
kind: cleanedData.kind,
|
|
212
|
+
memoryLimitBytes: cleanedData.memoryLimitBytes,
|
|
213
|
+
memoryRequestBytes: cleanedData.memoryRequestBytes,
|
|
214
|
+
namespaceId: cleanedData.namespaceId,
|
|
215
|
+
podCountMax: cleanedData.podCountMax,
|
|
216
|
+
podCountMin: cleanedData.podCountMin,
|
|
217
|
+
source: cleanedData.source,
|
|
218
|
+
sourceId: cleanedData.sourceId,
|
|
219
|
+
storageSizeBytes: cleanedData.storageSizeBytes,
|
|
220
|
+
},
|
|
221
|
+
select: {
|
|
222
|
+
cpuLimitMillicores: true,
|
|
223
|
+
cpuRequestMillicores: true,
|
|
224
|
+
installationId: true,
|
|
225
|
+
isTransient: true,
|
|
226
|
+
kind: true,
|
|
227
|
+
memoryLimitBytes: true,
|
|
228
|
+
memoryRequestBytes: true,
|
|
229
|
+
namespaceId: true,
|
|
230
|
+
podCountMax: true,
|
|
231
|
+
podCountMin: true,
|
|
232
|
+
source: true,
|
|
233
|
+
sourceId: true,
|
|
234
|
+
storageSizeBytes: true,
|
|
235
|
+
},
|
|
236
|
+
})
|
|
237
|
+
.execute();
|
|
238
|
+
console.log(JSON.stringify(result, null, 2));
|
|
239
|
+
}
|
|
240
|
+
catch (error) {
|
|
241
|
+
console.error('Failed to create record.');
|
|
242
|
+
if (error instanceof Error) {
|
|
243
|
+
console.error(error.message);
|
|
244
|
+
}
|
|
245
|
+
process.exit(1);
|
|
246
|
+
}
|
|
247
|
+
}
|
|
@@ -12,11 +12,14 @@ const fieldSchema = {
|
|
|
12
12
|
accessChannels: 'string',
|
|
13
13
|
category: 'string',
|
|
14
14
|
concurrency: 'int',
|
|
15
|
+
cpuLimitMillicores: 'int',
|
|
16
|
+
cpuRequestMillicores: 'int',
|
|
15
17
|
createdAt: 'string',
|
|
16
18
|
databaseId: 'uuid',
|
|
17
19
|
description: 'string',
|
|
18
20
|
fnCategory: 'string',
|
|
19
21
|
functionColumns: 'json',
|
|
22
|
+
graphId: 'uuid',
|
|
20
23
|
icon: 'string',
|
|
21
24
|
id: 'uuid',
|
|
22
25
|
image: 'string',
|
|
@@ -24,12 +27,15 @@ const fieldSchema = {
|
|
|
24
27
|
integrations: 'string',
|
|
25
28
|
isPublished: 'boolean',
|
|
26
29
|
maxAttempts: 'int',
|
|
30
|
+
memoryLimitBytes: 'int',
|
|
31
|
+
memoryRequestBytes: 'int',
|
|
27
32
|
moduleTable: 'string',
|
|
28
33
|
name: 'string',
|
|
29
34
|
outputs: 'json',
|
|
30
35
|
payloadArgs: 'json',
|
|
31
36
|
priority: 'int',
|
|
32
37
|
props: 'json',
|
|
38
|
+
protected: 'boolean',
|
|
33
39
|
publishedAt: 'string',
|
|
34
40
|
queueName: 'string',
|
|
35
41
|
requiredBuckets: 'string',
|
|
@@ -97,6 +103,7 @@ async function handleList(argv, _prompter) {
|
|
|
97
103
|
description: true,
|
|
98
104
|
fnCategory: true,
|
|
99
105
|
functionColumns: true,
|
|
106
|
+
graphId: true,
|
|
100
107
|
icon: true,
|
|
101
108
|
id: true,
|
|
102
109
|
image: true,
|
|
@@ -110,6 +117,7 @@ async function handleList(argv, _prompter) {
|
|
|
110
117
|
payloadArgs: true,
|
|
111
118
|
priority: true,
|
|
112
119
|
props: true,
|
|
120
|
+
protected: true,
|
|
113
121
|
publishedAt: true,
|
|
114
122
|
queueName: true,
|
|
115
123
|
requiredBuckets: true,
|
|
@@ -151,6 +159,7 @@ async function handleFindFirst(argv, _prompter) {
|
|
|
151
159
|
description: true,
|
|
152
160
|
fnCategory: true,
|
|
153
161
|
functionColumns: true,
|
|
162
|
+
graphId: true,
|
|
154
163
|
icon: true,
|
|
155
164
|
id: true,
|
|
156
165
|
image: true,
|
|
@@ -164,6 +173,7 @@ async function handleFindFirst(argv, _prompter) {
|
|
|
164
173
|
payloadArgs: true,
|
|
165
174
|
priority: true,
|
|
166
175
|
props: true,
|
|
176
|
+
protected: true,
|
|
167
177
|
publishedAt: true,
|
|
168
178
|
queueName: true,
|
|
169
179
|
requiredBuckets: true,
|
|
@@ -217,6 +227,7 @@ async function handleGet(argv, prompter) {
|
|
|
217
227
|
description: true,
|
|
218
228
|
fnCategory: true,
|
|
219
229
|
functionColumns: true,
|
|
230
|
+
graphId: true,
|
|
220
231
|
icon: true,
|
|
221
232
|
id: true,
|
|
222
233
|
image: true,
|
|
@@ -230,6 +241,7 @@ async function handleGet(argv, prompter) {
|
|
|
230
241
|
payloadArgs: true,
|
|
231
242
|
priority: true,
|
|
232
243
|
props: true,
|
|
244
|
+
protected: true,
|
|
233
245
|
publishedAt: true,
|
|
234
246
|
queueName: true,
|
|
235
247
|
requiredBuckets: true,
|
|
@@ -309,6 +321,13 @@ async function handleCreate(argv, prompter) {
|
|
|
309
321
|
required: false,
|
|
310
322
|
skipPrompt: true,
|
|
311
323
|
},
|
|
324
|
+
{
|
|
325
|
+
type: 'text',
|
|
326
|
+
name: 'graphId',
|
|
327
|
+
message: 'graphId',
|
|
328
|
+
required: false,
|
|
329
|
+
skipPrompt: true,
|
|
330
|
+
},
|
|
312
331
|
{
|
|
313
332
|
type: 'text',
|
|
314
333
|
name: 'icon',
|
|
@@ -392,6 +411,13 @@ async function handleCreate(argv, prompter) {
|
|
|
392
411
|
required: false,
|
|
393
412
|
skipPrompt: true,
|
|
394
413
|
},
|
|
414
|
+
{
|
|
415
|
+
type: 'boolean',
|
|
416
|
+
name: 'protected',
|
|
417
|
+
message: 'protected',
|
|
418
|
+
required: false,
|
|
419
|
+
skipPrompt: true,
|
|
420
|
+
},
|
|
395
421
|
{
|
|
396
422
|
type: 'text',
|
|
397
423
|
name: 'publishedAt',
|
|
@@ -510,6 +536,7 @@ async function handleCreate(argv, prompter) {
|
|
|
510
536
|
description: cleanedData.description,
|
|
511
537
|
fnCategory: cleanedData.fnCategory,
|
|
512
538
|
functionColumns: cleanedData.functionColumns,
|
|
539
|
+
graphId: cleanedData.graphId,
|
|
513
540
|
icon: cleanedData.icon,
|
|
514
541
|
image: cleanedData.image,
|
|
515
542
|
inputs: cleanedData.inputs,
|
|
@@ -522,6 +549,7 @@ async function handleCreate(argv, prompter) {
|
|
|
522
549
|
payloadArgs: cleanedData.payloadArgs,
|
|
523
550
|
priority: cleanedData.priority,
|
|
524
551
|
props: cleanedData.props,
|
|
552
|
+
protected: cleanedData.protected,
|
|
525
553
|
publishedAt: cleanedData.publishedAt,
|
|
526
554
|
queueName: cleanedData.queueName,
|
|
527
555
|
requiredBuckets: cleanedData.requiredBuckets,
|
|
@@ -547,6 +575,7 @@ async function handleCreate(argv, prompter) {
|
|
|
547
575
|
description: true,
|
|
548
576
|
fnCategory: true,
|
|
549
577
|
functionColumns: true,
|
|
578
|
+
graphId: true,
|
|
550
579
|
icon: true,
|
|
551
580
|
id: true,
|
|
552
581
|
image: true,
|
|
@@ -560,6 +589,7 @@ async function handleCreate(argv, prompter) {
|
|
|
560
589
|
payloadArgs: true,
|
|
561
590
|
priority: true,
|
|
562
591
|
props: true,
|
|
592
|
+
protected: true,
|
|
563
593
|
publishedAt: true,
|
|
564
594
|
queueName: true,
|
|
565
595
|
requiredBuckets: true,
|
|
@@ -645,6 +675,13 @@ async function handleUpdate(argv, prompter) {
|
|
|
645
675
|
required: false,
|
|
646
676
|
skipPrompt: true,
|
|
647
677
|
},
|
|
678
|
+
{
|
|
679
|
+
type: 'text',
|
|
680
|
+
name: 'graphId',
|
|
681
|
+
message: 'graphId',
|
|
682
|
+
required: false,
|
|
683
|
+
skipPrompt: true,
|
|
684
|
+
},
|
|
648
685
|
{
|
|
649
686
|
type: 'text',
|
|
650
687
|
name: 'icon',
|
|
@@ -728,6 +765,13 @@ async function handleUpdate(argv, prompter) {
|
|
|
728
765
|
required: false,
|
|
729
766
|
skipPrompt: true,
|
|
730
767
|
},
|
|
768
|
+
{
|
|
769
|
+
type: 'boolean',
|
|
770
|
+
name: 'protected',
|
|
771
|
+
message: 'protected',
|
|
772
|
+
required: false,
|
|
773
|
+
skipPrompt: true,
|
|
774
|
+
},
|
|
731
775
|
{
|
|
732
776
|
type: 'text',
|
|
733
777
|
name: 'publishedAt',
|
|
@@ -849,6 +893,7 @@ async function handleUpdate(argv, prompter) {
|
|
|
849
893
|
description: cleanedData.description,
|
|
850
894
|
fnCategory: cleanedData.fnCategory,
|
|
851
895
|
functionColumns: cleanedData.functionColumns,
|
|
896
|
+
graphId: cleanedData.graphId,
|
|
852
897
|
icon: cleanedData.icon,
|
|
853
898
|
image: cleanedData.image,
|
|
854
899
|
inputs: cleanedData.inputs,
|
|
@@ -861,6 +906,7 @@ async function handleUpdate(argv, prompter) {
|
|
|
861
906
|
payloadArgs: cleanedData.payloadArgs,
|
|
862
907
|
priority: cleanedData.priority,
|
|
863
908
|
props: cleanedData.props,
|
|
909
|
+
protected: cleanedData.protected,
|
|
864
910
|
publishedAt: cleanedData.publishedAt,
|
|
865
911
|
queueName: cleanedData.queueName,
|
|
866
912
|
requiredBuckets: cleanedData.requiredBuckets,
|
|
@@ -886,6 +932,7 @@ async function handleUpdate(argv, prompter) {
|
|
|
886
932
|
description: true,
|
|
887
933
|
fnCategory: true,
|
|
888
934
|
functionColumns: true,
|
|
935
|
+
graphId: true,
|
|
889
936
|
icon: true,
|
|
890
937
|
id: true,
|
|
891
938
|
image: true,
|
|
@@ -899,6 +946,7 @@ async function handleUpdate(argv, prompter) {
|
|
|
899
946
|
payloadArgs: true,
|
|
900
947
|
priority: true,
|
|
901
948
|
props: true,
|
|
949
|
+
protected: true,
|
|
902
950
|
publishedAt: true,
|
|
903
951
|
queueName: true,
|
|
904
952
|
requiredBuckets: true,
|
|
@@ -9,6 +9,9 @@ const inquirerer_1 = require("inquirerer");
|
|
|
9
9
|
const executor_1 = require("../executor");
|
|
10
10
|
const utils_1 = require("../utils");
|
|
11
11
|
const fieldSchema = {
|
|
12
|
+
callbackInputs: 'json',
|
|
13
|
+
callbackMeta: 'json',
|
|
14
|
+
callbackTokenHash: 'string',
|
|
12
15
|
completedAt: 'string',
|
|
13
16
|
createdAt: 'string',
|
|
14
17
|
errorCode: 'string',
|
|
@@ -64,6 +67,9 @@ async function handleTableSubcommand(subcommand, argv, prompter) {
|
|
|
64
67
|
async function handleList(argv, _prompter) {
|
|
65
68
|
try {
|
|
66
69
|
const defaultSelect = {
|
|
70
|
+
callbackInputs: true,
|
|
71
|
+
callbackMeta: true,
|
|
72
|
+
callbackTokenHash: true,
|
|
67
73
|
completedAt: true,
|
|
68
74
|
createdAt: true,
|
|
69
75
|
errorCode: true,
|
|
@@ -93,6 +99,9 @@ async function handleList(argv, _prompter) {
|
|
|
93
99
|
async function handleFindFirst(argv, _prompter) {
|
|
94
100
|
try {
|
|
95
101
|
const defaultSelect = {
|
|
102
|
+
callbackInputs: true,
|
|
103
|
+
callbackMeta: true,
|
|
104
|
+
callbackTokenHash: true,
|
|
96
105
|
completedAt: true,
|
|
97
106
|
createdAt: true,
|
|
98
107
|
errorCode: true,
|
|
@@ -134,6 +143,9 @@ async function handleGet(argv, prompter) {
|
|
|
134
143
|
.findOne({
|
|
135
144
|
id: answers.id,
|
|
136
145
|
select: {
|
|
146
|
+
callbackInputs: true,
|
|
147
|
+
callbackMeta: true,
|
|
148
|
+
callbackTokenHash: true,
|
|
137
149
|
completedAt: true,
|
|
138
150
|
createdAt: true,
|
|
139
151
|
errorCode: true,
|
|
@@ -162,6 +174,27 @@ async function handleGet(argv, prompter) {
|
|
|
162
174
|
async function handleCreate(argv, prompter) {
|
|
163
175
|
try {
|
|
164
176
|
const rawAnswers = await prompter.prompt(argv, [
|
|
177
|
+
{
|
|
178
|
+
type: 'json',
|
|
179
|
+
name: 'callbackInputs',
|
|
180
|
+
message: 'callbackInputs',
|
|
181
|
+
required: false,
|
|
182
|
+
skipPrompt: true,
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
type: 'json',
|
|
186
|
+
name: 'callbackMeta',
|
|
187
|
+
message: 'callbackMeta',
|
|
188
|
+
required: false,
|
|
189
|
+
skipPrompt: true,
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
type: 'text',
|
|
193
|
+
name: 'callbackTokenHash',
|
|
194
|
+
message: 'callbackTokenHash',
|
|
195
|
+
required: false,
|
|
196
|
+
skipPrompt: true,
|
|
197
|
+
},
|
|
165
198
|
{
|
|
166
199
|
type: 'text',
|
|
167
200
|
name: 'completedAt',
|
|
@@ -236,6 +269,9 @@ async function handleCreate(argv, prompter) {
|
|
|
236
269
|
const result = await client.functionGraphExecutionNodeState
|
|
237
270
|
.create({
|
|
238
271
|
data: {
|
|
272
|
+
callbackInputs: cleanedData.callbackInputs,
|
|
273
|
+
callbackMeta: cleanedData.callbackMeta,
|
|
274
|
+
callbackTokenHash: cleanedData.callbackTokenHash,
|
|
239
275
|
completedAt: cleanedData.completedAt,
|
|
240
276
|
errorCode: cleanedData.errorCode,
|
|
241
277
|
errorMessage: cleanedData.errorMessage,
|
|
@@ -248,6 +284,9 @@ async function handleCreate(argv, prompter) {
|
|
|
248
284
|
status: cleanedData.status,
|
|
249
285
|
},
|
|
250
286
|
select: {
|
|
287
|
+
callbackInputs: true,
|
|
288
|
+
callbackMeta: true,
|
|
289
|
+
callbackTokenHash: true,
|
|
251
290
|
completedAt: true,
|
|
252
291
|
createdAt: true,
|
|
253
292
|
errorCode: true,
|
|
@@ -288,6 +327,27 @@ async function handleUpdate(argv, prompter) {
|
|
|
288
327
|
message: 'createdAt',
|
|
289
328
|
required: true,
|
|
290
329
|
},
|
|
330
|
+
{
|
|
331
|
+
type: 'json',
|
|
332
|
+
name: 'callbackInputs',
|
|
333
|
+
message: 'callbackInputs',
|
|
334
|
+
required: false,
|
|
335
|
+
skipPrompt: true,
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
type: 'json',
|
|
339
|
+
name: 'callbackMeta',
|
|
340
|
+
message: 'callbackMeta',
|
|
341
|
+
required: false,
|
|
342
|
+
skipPrompt: true,
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
type: 'text',
|
|
346
|
+
name: 'callbackTokenHash',
|
|
347
|
+
message: 'callbackTokenHash',
|
|
348
|
+
required: false,
|
|
349
|
+
skipPrompt: true,
|
|
350
|
+
},
|
|
291
351
|
{
|
|
292
352
|
type: 'text',
|
|
293
353
|
name: 'completedAt',
|
|
@@ -366,6 +426,9 @@ async function handleUpdate(argv, prompter) {
|
|
|
366
426
|
createdAt: answers.createdAt,
|
|
367
427
|
},
|
|
368
428
|
data: {
|
|
429
|
+
callbackInputs: cleanedData.callbackInputs,
|
|
430
|
+
callbackMeta: cleanedData.callbackMeta,
|
|
431
|
+
callbackTokenHash: cleanedData.callbackTokenHash,
|
|
369
432
|
completedAt: cleanedData.completedAt,
|
|
370
433
|
errorCode: cleanedData.errorCode,
|
|
371
434
|
errorMessage: cleanedData.errorMessage,
|
|
@@ -378,6 +441,9 @@ async function handleUpdate(argv, prompter) {
|
|
|
378
441
|
status: cleanedData.status,
|
|
379
442
|
},
|
|
380
443
|
select: {
|
|
444
|
+
callbackInputs: true,
|
|
445
|
+
callbackMeta: true,
|
|
446
|
+
callbackTokenHash: true,
|
|
381
447
|
completedAt: true,
|
|
382
448
|
createdAt: true,
|
|
383
449
|
errorCode: true,
|