@constructive-sdk/cli 0.32.1 → 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 +3 -3
- 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
|
@@ -13,6 +13,8 @@ const fieldSchema = {
|
|
|
13
13
|
entityField: 'string',
|
|
14
14
|
entityTableId: 'uuid',
|
|
15
15
|
id: 'uuid',
|
|
16
|
+
installationStoreName: 'string',
|
|
17
|
+
merkleStoreModuleId: 'uuid',
|
|
16
18
|
namespaceModuleId: 'uuid',
|
|
17
19
|
policies: 'json',
|
|
18
20
|
prefix: 'string',
|
|
@@ -23,14 +25,22 @@ const fieldSchema = {
|
|
|
23
25
|
publicSchemaName: 'string',
|
|
24
26
|
requirementsStateViewName: 'string',
|
|
25
27
|
resolvedRequirementsViewName: 'string',
|
|
28
|
+
resourceBillingRollupFunction: 'string',
|
|
26
29
|
resourceDefinitionsTableId: 'uuid',
|
|
27
30
|
resourceDefinitionsTableName: 'string',
|
|
28
31
|
resourceEventsTableId: 'uuid',
|
|
29
32
|
resourceEventsTableName: 'string',
|
|
33
|
+
resourceInstallationsTableId: 'uuid',
|
|
34
|
+
resourceInstallationsTableName: 'string',
|
|
30
35
|
resourceStatusChecksTableId: 'uuid',
|
|
31
36
|
resourceStatusChecksTableName: 'string',
|
|
37
|
+
resourceUsageLogTableId: 'uuid',
|
|
38
|
+
resourceUsageLogTableName: 'string',
|
|
39
|
+
resourceUsageSummaryTableId: 'uuid',
|
|
40
|
+
resourceUsageSummaryTableName: 'string',
|
|
32
41
|
resourcesTableId: 'uuid',
|
|
33
42
|
resourcesTableName: 'string',
|
|
43
|
+
rollupResourceUsageSummaryFunction: 'string',
|
|
34
44
|
schemaId: 'uuid',
|
|
35
45
|
scope: 'string',
|
|
36
46
|
};
|
|
@@ -82,6 +92,8 @@ async function handleList(argv, _prompter) {
|
|
|
82
92
|
entityField: true,
|
|
83
93
|
entityTableId: true,
|
|
84
94
|
id: true,
|
|
95
|
+
installationStoreName: true,
|
|
96
|
+
merkleStoreModuleId: true,
|
|
85
97
|
namespaceModuleId: true,
|
|
86
98
|
policies: true,
|
|
87
99
|
prefix: true,
|
|
@@ -92,14 +104,22 @@ async function handleList(argv, _prompter) {
|
|
|
92
104
|
publicSchemaName: true,
|
|
93
105
|
requirementsStateViewName: true,
|
|
94
106
|
resolvedRequirementsViewName: true,
|
|
107
|
+
resourceBillingRollupFunction: true,
|
|
95
108
|
resourceDefinitionsTableId: true,
|
|
96
109
|
resourceDefinitionsTableName: true,
|
|
97
110
|
resourceEventsTableId: true,
|
|
98
111
|
resourceEventsTableName: true,
|
|
112
|
+
resourceInstallationsTableId: true,
|
|
113
|
+
resourceInstallationsTableName: true,
|
|
99
114
|
resourceStatusChecksTableId: true,
|
|
100
115
|
resourceStatusChecksTableName: true,
|
|
116
|
+
resourceUsageLogTableId: true,
|
|
117
|
+
resourceUsageLogTableName: true,
|
|
118
|
+
resourceUsageSummaryTableId: true,
|
|
119
|
+
resourceUsageSummaryTableName: true,
|
|
101
120
|
resourcesTableId: true,
|
|
102
121
|
resourcesTableName: true,
|
|
122
|
+
rollupResourceUsageSummaryFunction: true,
|
|
103
123
|
schemaId: true,
|
|
104
124
|
scope: true,
|
|
105
125
|
};
|
|
@@ -125,6 +145,8 @@ async function handleFindFirst(argv, _prompter) {
|
|
|
125
145
|
entityField: true,
|
|
126
146
|
entityTableId: true,
|
|
127
147
|
id: true,
|
|
148
|
+
installationStoreName: true,
|
|
149
|
+
merkleStoreModuleId: true,
|
|
128
150
|
namespaceModuleId: true,
|
|
129
151
|
policies: true,
|
|
130
152
|
prefix: true,
|
|
@@ -135,14 +157,22 @@ async function handleFindFirst(argv, _prompter) {
|
|
|
135
157
|
publicSchemaName: true,
|
|
136
158
|
requirementsStateViewName: true,
|
|
137
159
|
resolvedRequirementsViewName: true,
|
|
160
|
+
resourceBillingRollupFunction: true,
|
|
138
161
|
resourceDefinitionsTableId: true,
|
|
139
162
|
resourceDefinitionsTableName: true,
|
|
140
163
|
resourceEventsTableId: true,
|
|
141
164
|
resourceEventsTableName: true,
|
|
165
|
+
resourceInstallationsTableId: true,
|
|
166
|
+
resourceInstallationsTableName: true,
|
|
142
167
|
resourceStatusChecksTableId: true,
|
|
143
168
|
resourceStatusChecksTableName: true,
|
|
169
|
+
resourceUsageLogTableId: true,
|
|
170
|
+
resourceUsageLogTableName: true,
|
|
171
|
+
resourceUsageSummaryTableId: true,
|
|
172
|
+
resourceUsageSummaryTableName: true,
|
|
144
173
|
resourcesTableId: true,
|
|
145
174
|
resourcesTableName: true,
|
|
175
|
+
rollupResourceUsageSummaryFunction: true,
|
|
146
176
|
schemaId: true,
|
|
147
177
|
scope: true,
|
|
148
178
|
};
|
|
@@ -180,6 +210,8 @@ async function handleGet(argv, prompter) {
|
|
|
180
210
|
entityField: true,
|
|
181
211
|
entityTableId: true,
|
|
182
212
|
id: true,
|
|
213
|
+
installationStoreName: true,
|
|
214
|
+
merkleStoreModuleId: true,
|
|
183
215
|
namespaceModuleId: true,
|
|
184
216
|
policies: true,
|
|
185
217
|
prefix: true,
|
|
@@ -190,14 +222,22 @@ async function handleGet(argv, prompter) {
|
|
|
190
222
|
publicSchemaName: true,
|
|
191
223
|
requirementsStateViewName: true,
|
|
192
224
|
resolvedRequirementsViewName: true,
|
|
225
|
+
resourceBillingRollupFunction: true,
|
|
193
226
|
resourceDefinitionsTableId: true,
|
|
194
227
|
resourceDefinitionsTableName: true,
|
|
195
228
|
resourceEventsTableId: true,
|
|
196
229
|
resourceEventsTableName: true,
|
|
230
|
+
resourceInstallationsTableId: true,
|
|
231
|
+
resourceInstallationsTableName: true,
|
|
197
232
|
resourceStatusChecksTableId: true,
|
|
198
233
|
resourceStatusChecksTableName: true,
|
|
234
|
+
resourceUsageLogTableId: true,
|
|
235
|
+
resourceUsageLogTableName: true,
|
|
236
|
+
resourceUsageSummaryTableId: true,
|
|
237
|
+
resourceUsageSummaryTableName: true,
|
|
199
238
|
resourcesTableId: true,
|
|
200
239
|
resourcesTableName: true,
|
|
240
|
+
rollupResourceUsageSummaryFunction: true,
|
|
201
241
|
schemaId: true,
|
|
202
242
|
scope: true,
|
|
203
243
|
},
|
|
@@ -250,6 +290,20 @@ async function handleCreate(argv, prompter) {
|
|
|
250
290
|
required: false,
|
|
251
291
|
skipPrompt: true,
|
|
252
292
|
},
|
|
293
|
+
{
|
|
294
|
+
type: 'text',
|
|
295
|
+
name: 'installationStoreName',
|
|
296
|
+
message: 'installationStoreName',
|
|
297
|
+
required: false,
|
|
298
|
+
skipPrompt: true,
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
type: 'text',
|
|
302
|
+
name: 'merkleStoreModuleId',
|
|
303
|
+
message: 'merkleStoreModuleId',
|
|
304
|
+
required: false,
|
|
305
|
+
skipPrompt: true,
|
|
306
|
+
},
|
|
253
307
|
{
|
|
254
308
|
type: 'text',
|
|
255
309
|
name: 'namespaceModuleId',
|
|
@@ -320,6 +374,13 @@ async function handleCreate(argv, prompter) {
|
|
|
320
374
|
required: false,
|
|
321
375
|
skipPrompt: true,
|
|
322
376
|
},
|
|
377
|
+
{
|
|
378
|
+
type: 'text',
|
|
379
|
+
name: 'resourceBillingRollupFunction',
|
|
380
|
+
message: 'resourceBillingRollupFunction',
|
|
381
|
+
required: false,
|
|
382
|
+
skipPrompt: true,
|
|
383
|
+
},
|
|
323
384
|
{
|
|
324
385
|
type: 'text',
|
|
325
386
|
name: 'resourceDefinitionsTableId',
|
|
@@ -348,6 +409,20 @@ async function handleCreate(argv, prompter) {
|
|
|
348
409
|
required: false,
|
|
349
410
|
skipPrompt: true,
|
|
350
411
|
},
|
|
412
|
+
{
|
|
413
|
+
type: 'text',
|
|
414
|
+
name: 'resourceInstallationsTableId',
|
|
415
|
+
message: 'resourceInstallationsTableId',
|
|
416
|
+
required: false,
|
|
417
|
+
skipPrompt: true,
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
type: 'text',
|
|
421
|
+
name: 'resourceInstallationsTableName',
|
|
422
|
+
message: 'resourceInstallationsTableName',
|
|
423
|
+
required: false,
|
|
424
|
+
skipPrompt: true,
|
|
425
|
+
},
|
|
351
426
|
{
|
|
352
427
|
type: 'text',
|
|
353
428
|
name: 'resourceStatusChecksTableId',
|
|
@@ -362,6 +437,34 @@ async function handleCreate(argv, prompter) {
|
|
|
362
437
|
required: false,
|
|
363
438
|
skipPrompt: true,
|
|
364
439
|
},
|
|
440
|
+
{
|
|
441
|
+
type: 'text',
|
|
442
|
+
name: 'resourceUsageLogTableId',
|
|
443
|
+
message: 'resourceUsageLogTableId',
|
|
444
|
+
required: false,
|
|
445
|
+
skipPrompt: true,
|
|
446
|
+
},
|
|
447
|
+
{
|
|
448
|
+
type: 'text',
|
|
449
|
+
name: 'resourceUsageLogTableName',
|
|
450
|
+
message: 'resourceUsageLogTableName',
|
|
451
|
+
required: false,
|
|
452
|
+
skipPrompt: true,
|
|
453
|
+
},
|
|
454
|
+
{
|
|
455
|
+
type: 'text',
|
|
456
|
+
name: 'resourceUsageSummaryTableId',
|
|
457
|
+
message: 'resourceUsageSummaryTableId',
|
|
458
|
+
required: false,
|
|
459
|
+
skipPrompt: true,
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
type: 'text',
|
|
463
|
+
name: 'resourceUsageSummaryTableName',
|
|
464
|
+
message: 'resourceUsageSummaryTableName',
|
|
465
|
+
required: false,
|
|
466
|
+
skipPrompt: true,
|
|
467
|
+
},
|
|
365
468
|
{
|
|
366
469
|
type: 'text',
|
|
367
470
|
name: 'resourcesTableId',
|
|
@@ -376,6 +479,13 @@ async function handleCreate(argv, prompter) {
|
|
|
376
479
|
required: false,
|
|
377
480
|
skipPrompt: true,
|
|
378
481
|
},
|
|
482
|
+
{
|
|
483
|
+
type: 'text',
|
|
484
|
+
name: 'rollupResourceUsageSummaryFunction',
|
|
485
|
+
message: 'rollupResourceUsageSummaryFunction',
|
|
486
|
+
required: false,
|
|
487
|
+
skipPrompt: true,
|
|
488
|
+
},
|
|
379
489
|
{
|
|
380
490
|
type: 'text',
|
|
381
491
|
name: 'schemaId',
|
|
@@ -402,6 +512,8 @@ async function handleCreate(argv, prompter) {
|
|
|
402
512
|
defaultPermissions: cleanedData.defaultPermissions,
|
|
403
513
|
entityField: cleanedData.entityField,
|
|
404
514
|
entityTableId: cleanedData.entityTableId,
|
|
515
|
+
installationStoreName: cleanedData.installationStoreName,
|
|
516
|
+
merkleStoreModuleId: cleanedData.merkleStoreModuleId,
|
|
405
517
|
namespaceModuleId: cleanedData.namespaceModuleId,
|
|
406
518
|
policies: cleanedData.policies,
|
|
407
519
|
prefix: cleanedData.prefix,
|
|
@@ -412,14 +524,22 @@ async function handleCreate(argv, prompter) {
|
|
|
412
524
|
publicSchemaName: cleanedData.publicSchemaName,
|
|
413
525
|
requirementsStateViewName: cleanedData.requirementsStateViewName,
|
|
414
526
|
resolvedRequirementsViewName: cleanedData.resolvedRequirementsViewName,
|
|
527
|
+
resourceBillingRollupFunction: cleanedData.resourceBillingRollupFunction,
|
|
415
528
|
resourceDefinitionsTableId: cleanedData.resourceDefinitionsTableId,
|
|
416
529
|
resourceDefinitionsTableName: cleanedData.resourceDefinitionsTableName,
|
|
417
530
|
resourceEventsTableId: cleanedData.resourceEventsTableId,
|
|
418
531
|
resourceEventsTableName: cleanedData.resourceEventsTableName,
|
|
532
|
+
resourceInstallationsTableId: cleanedData.resourceInstallationsTableId,
|
|
533
|
+
resourceInstallationsTableName: cleanedData.resourceInstallationsTableName,
|
|
419
534
|
resourceStatusChecksTableId: cleanedData.resourceStatusChecksTableId,
|
|
420
535
|
resourceStatusChecksTableName: cleanedData.resourceStatusChecksTableName,
|
|
536
|
+
resourceUsageLogTableId: cleanedData.resourceUsageLogTableId,
|
|
537
|
+
resourceUsageLogTableName: cleanedData.resourceUsageLogTableName,
|
|
538
|
+
resourceUsageSummaryTableId: cleanedData.resourceUsageSummaryTableId,
|
|
539
|
+
resourceUsageSummaryTableName: cleanedData.resourceUsageSummaryTableName,
|
|
421
540
|
resourcesTableId: cleanedData.resourcesTableId,
|
|
422
541
|
resourcesTableName: cleanedData.resourcesTableName,
|
|
542
|
+
rollupResourceUsageSummaryFunction: cleanedData.rollupResourceUsageSummaryFunction,
|
|
423
543
|
schemaId: cleanedData.schemaId,
|
|
424
544
|
scope: cleanedData.scope,
|
|
425
545
|
},
|
|
@@ -430,6 +550,8 @@ async function handleCreate(argv, prompter) {
|
|
|
430
550
|
entityField: true,
|
|
431
551
|
entityTableId: true,
|
|
432
552
|
id: true,
|
|
553
|
+
installationStoreName: true,
|
|
554
|
+
merkleStoreModuleId: true,
|
|
433
555
|
namespaceModuleId: true,
|
|
434
556
|
policies: true,
|
|
435
557
|
prefix: true,
|
|
@@ -440,14 +562,22 @@ async function handleCreate(argv, prompter) {
|
|
|
440
562
|
publicSchemaName: true,
|
|
441
563
|
requirementsStateViewName: true,
|
|
442
564
|
resolvedRequirementsViewName: true,
|
|
565
|
+
resourceBillingRollupFunction: true,
|
|
443
566
|
resourceDefinitionsTableId: true,
|
|
444
567
|
resourceDefinitionsTableName: true,
|
|
445
568
|
resourceEventsTableId: true,
|
|
446
569
|
resourceEventsTableName: true,
|
|
570
|
+
resourceInstallationsTableId: true,
|
|
571
|
+
resourceInstallationsTableName: true,
|
|
447
572
|
resourceStatusChecksTableId: true,
|
|
448
573
|
resourceStatusChecksTableName: true,
|
|
574
|
+
resourceUsageLogTableId: true,
|
|
575
|
+
resourceUsageLogTableName: true,
|
|
576
|
+
resourceUsageSummaryTableId: true,
|
|
577
|
+
resourceUsageSummaryTableName: true,
|
|
449
578
|
resourcesTableId: true,
|
|
450
579
|
resourcesTableName: true,
|
|
580
|
+
rollupResourceUsageSummaryFunction: true,
|
|
451
581
|
schemaId: true,
|
|
452
582
|
scope: true,
|
|
453
583
|
},
|
|
@@ -506,6 +636,20 @@ async function handleUpdate(argv, prompter) {
|
|
|
506
636
|
required: false,
|
|
507
637
|
skipPrompt: true,
|
|
508
638
|
},
|
|
639
|
+
{
|
|
640
|
+
type: 'text',
|
|
641
|
+
name: 'installationStoreName',
|
|
642
|
+
message: 'installationStoreName',
|
|
643
|
+
required: false,
|
|
644
|
+
skipPrompt: true,
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
type: 'text',
|
|
648
|
+
name: 'merkleStoreModuleId',
|
|
649
|
+
message: 'merkleStoreModuleId',
|
|
650
|
+
required: false,
|
|
651
|
+
skipPrompt: true,
|
|
652
|
+
},
|
|
509
653
|
{
|
|
510
654
|
type: 'text',
|
|
511
655
|
name: 'namespaceModuleId',
|
|
@@ -576,6 +720,13 @@ async function handleUpdate(argv, prompter) {
|
|
|
576
720
|
required: false,
|
|
577
721
|
skipPrompt: true,
|
|
578
722
|
},
|
|
723
|
+
{
|
|
724
|
+
type: 'text',
|
|
725
|
+
name: 'resourceBillingRollupFunction',
|
|
726
|
+
message: 'resourceBillingRollupFunction',
|
|
727
|
+
required: false,
|
|
728
|
+
skipPrompt: true,
|
|
729
|
+
},
|
|
579
730
|
{
|
|
580
731
|
type: 'text',
|
|
581
732
|
name: 'resourceDefinitionsTableId',
|
|
@@ -604,6 +755,20 @@ async function handleUpdate(argv, prompter) {
|
|
|
604
755
|
required: false,
|
|
605
756
|
skipPrompt: true,
|
|
606
757
|
},
|
|
758
|
+
{
|
|
759
|
+
type: 'text',
|
|
760
|
+
name: 'resourceInstallationsTableId',
|
|
761
|
+
message: 'resourceInstallationsTableId',
|
|
762
|
+
required: false,
|
|
763
|
+
skipPrompt: true,
|
|
764
|
+
},
|
|
765
|
+
{
|
|
766
|
+
type: 'text',
|
|
767
|
+
name: 'resourceInstallationsTableName',
|
|
768
|
+
message: 'resourceInstallationsTableName',
|
|
769
|
+
required: false,
|
|
770
|
+
skipPrompt: true,
|
|
771
|
+
},
|
|
607
772
|
{
|
|
608
773
|
type: 'text',
|
|
609
774
|
name: 'resourceStatusChecksTableId',
|
|
@@ -618,6 +783,34 @@ async function handleUpdate(argv, prompter) {
|
|
|
618
783
|
required: false,
|
|
619
784
|
skipPrompt: true,
|
|
620
785
|
},
|
|
786
|
+
{
|
|
787
|
+
type: 'text',
|
|
788
|
+
name: 'resourceUsageLogTableId',
|
|
789
|
+
message: 'resourceUsageLogTableId',
|
|
790
|
+
required: false,
|
|
791
|
+
skipPrompt: true,
|
|
792
|
+
},
|
|
793
|
+
{
|
|
794
|
+
type: 'text',
|
|
795
|
+
name: 'resourceUsageLogTableName',
|
|
796
|
+
message: 'resourceUsageLogTableName',
|
|
797
|
+
required: false,
|
|
798
|
+
skipPrompt: true,
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
type: 'text',
|
|
802
|
+
name: 'resourceUsageSummaryTableId',
|
|
803
|
+
message: 'resourceUsageSummaryTableId',
|
|
804
|
+
required: false,
|
|
805
|
+
skipPrompt: true,
|
|
806
|
+
},
|
|
807
|
+
{
|
|
808
|
+
type: 'text',
|
|
809
|
+
name: 'resourceUsageSummaryTableName',
|
|
810
|
+
message: 'resourceUsageSummaryTableName',
|
|
811
|
+
required: false,
|
|
812
|
+
skipPrompt: true,
|
|
813
|
+
},
|
|
621
814
|
{
|
|
622
815
|
type: 'text',
|
|
623
816
|
name: 'resourcesTableId',
|
|
@@ -632,6 +825,13 @@ async function handleUpdate(argv, prompter) {
|
|
|
632
825
|
required: false,
|
|
633
826
|
skipPrompt: true,
|
|
634
827
|
},
|
|
828
|
+
{
|
|
829
|
+
type: 'text',
|
|
830
|
+
name: 'rollupResourceUsageSummaryFunction',
|
|
831
|
+
message: 'rollupResourceUsageSummaryFunction',
|
|
832
|
+
required: false,
|
|
833
|
+
skipPrompt: true,
|
|
834
|
+
},
|
|
635
835
|
{
|
|
636
836
|
type: 'text',
|
|
637
837
|
name: 'schemaId',
|
|
@@ -661,6 +861,8 @@ async function handleUpdate(argv, prompter) {
|
|
|
661
861
|
defaultPermissions: cleanedData.defaultPermissions,
|
|
662
862
|
entityField: cleanedData.entityField,
|
|
663
863
|
entityTableId: cleanedData.entityTableId,
|
|
864
|
+
installationStoreName: cleanedData.installationStoreName,
|
|
865
|
+
merkleStoreModuleId: cleanedData.merkleStoreModuleId,
|
|
664
866
|
namespaceModuleId: cleanedData.namespaceModuleId,
|
|
665
867
|
policies: cleanedData.policies,
|
|
666
868
|
prefix: cleanedData.prefix,
|
|
@@ -671,14 +873,22 @@ async function handleUpdate(argv, prompter) {
|
|
|
671
873
|
publicSchemaName: cleanedData.publicSchemaName,
|
|
672
874
|
requirementsStateViewName: cleanedData.requirementsStateViewName,
|
|
673
875
|
resolvedRequirementsViewName: cleanedData.resolvedRequirementsViewName,
|
|
876
|
+
resourceBillingRollupFunction: cleanedData.resourceBillingRollupFunction,
|
|
674
877
|
resourceDefinitionsTableId: cleanedData.resourceDefinitionsTableId,
|
|
675
878
|
resourceDefinitionsTableName: cleanedData.resourceDefinitionsTableName,
|
|
676
879
|
resourceEventsTableId: cleanedData.resourceEventsTableId,
|
|
677
880
|
resourceEventsTableName: cleanedData.resourceEventsTableName,
|
|
881
|
+
resourceInstallationsTableId: cleanedData.resourceInstallationsTableId,
|
|
882
|
+
resourceInstallationsTableName: cleanedData.resourceInstallationsTableName,
|
|
678
883
|
resourceStatusChecksTableId: cleanedData.resourceStatusChecksTableId,
|
|
679
884
|
resourceStatusChecksTableName: cleanedData.resourceStatusChecksTableName,
|
|
885
|
+
resourceUsageLogTableId: cleanedData.resourceUsageLogTableId,
|
|
886
|
+
resourceUsageLogTableName: cleanedData.resourceUsageLogTableName,
|
|
887
|
+
resourceUsageSummaryTableId: cleanedData.resourceUsageSummaryTableId,
|
|
888
|
+
resourceUsageSummaryTableName: cleanedData.resourceUsageSummaryTableName,
|
|
680
889
|
resourcesTableId: cleanedData.resourcesTableId,
|
|
681
890
|
resourcesTableName: cleanedData.resourcesTableName,
|
|
891
|
+
rollupResourceUsageSummaryFunction: cleanedData.rollupResourceUsageSummaryFunction,
|
|
682
892
|
schemaId: cleanedData.schemaId,
|
|
683
893
|
scope: cleanedData.scope,
|
|
684
894
|
},
|
|
@@ -689,6 +899,8 @@ async function handleUpdate(argv, prompter) {
|
|
|
689
899
|
entityField: true,
|
|
690
900
|
entityTableId: true,
|
|
691
901
|
id: true,
|
|
902
|
+
installationStoreName: true,
|
|
903
|
+
merkleStoreModuleId: true,
|
|
692
904
|
namespaceModuleId: true,
|
|
693
905
|
policies: true,
|
|
694
906
|
prefix: true,
|
|
@@ -699,14 +911,22 @@ async function handleUpdate(argv, prompter) {
|
|
|
699
911
|
publicSchemaName: true,
|
|
700
912
|
requirementsStateViewName: true,
|
|
701
913
|
resolvedRequirementsViewName: true,
|
|
914
|
+
resourceBillingRollupFunction: true,
|
|
702
915
|
resourceDefinitionsTableId: true,
|
|
703
916
|
resourceDefinitionsTableName: true,
|
|
704
917
|
resourceEventsTableId: true,
|
|
705
918
|
resourceEventsTableName: true,
|
|
919
|
+
resourceInstallationsTableId: true,
|
|
920
|
+
resourceInstallationsTableName: true,
|
|
706
921
|
resourceStatusChecksTableId: true,
|
|
707
922
|
resourceStatusChecksTableName: true,
|
|
923
|
+
resourceUsageLogTableId: true,
|
|
924
|
+
resourceUsageLogTableName: true,
|
|
925
|
+
resourceUsageSummaryTableId: true,
|
|
926
|
+
resourceUsageSummaryTableName: true,
|
|
708
927
|
resourcesTableId: true,
|
|
709
928
|
resourcesTableName: true,
|
|
929
|
+
rollupResourceUsageSummaryFunction: true,
|
|
710
930
|
schemaId: true,
|
|
711
931
|
scope: true,
|
|
712
932
|
},
|