@constructive-sdk/cli 0.32.2 → 0.32.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/agent/orm/input-types.d.ts +24 -0
- package/agent/orm/input-types.js +3 -0
- package/api/cli/commands/ast-migration.js +20 -31
- package/{esm/infra/cli/commands/infra-ref.d.ts → api/cli/commands/http-route.d.ts} +1 -1
- package/api/cli/commands/http-route.js +434 -0
- package/{esm/compute/cli/commands/get-all-record.d.ts → api/cli/commands/managed-domain.d.ts} +1 -1
- package/api/cli/commands/managed-domain.js +382 -0
- package/api/cli/commands/resolve-http-route.d.ts +8 -0
- package/api/cli/commands/resolve-http-route.js +44 -0
- package/api/cli/commands/sql-action.js +20 -31
- package/api/cli/commands.js +7 -3
- package/api/cli/executor.d.ts +7 -1
- package/api/orm/index.d.ts +9 -2
- package/api/orm/index.js +4 -2
- package/api/orm/input-types.d.ts +498 -143
- package/api/orm/input-types.js +4 -0
- package/api/orm/models/httpRoute.d.ts +54 -0
- package/{infra/orm/models/infraRef.js → api/orm/models/httpRoute.js} +27 -30
- package/api/orm/models/index.d.ts +2 -1
- package/api/orm/models/index.js +5 -3
- package/api/orm/models/managedDomain.d.ts +54 -0
- package/{infra/orm/models/infraCommit.js → api/orm/models/managedDomain.js} +27 -30
- package/api/orm/query/index.d.ts +12 -0
- package/api/orm/query/index.js +20 -0
- package/auth/cli/commands/identity-provider.js +4 -8
- package/auth/cli/commands/org-api-key-list.js +9 -18
- package/auth/cli/commands/user-connected-account.js +5 -10
- package/auth/orm/input-types.d.ts +155 -182
- package/auth/orm/input-types.js +4 -0
- package/compute/cli/commands/declared-capacity.d.ts +8 -0
- package/compute/cli/commands/declared-capacity.js +247 -0
- package/compute/cli/commands/function-definition.js +48 -0
- package/compute/cli/commands/function-graph-execution-node-state.js +66 -0
- package/compute/cli/commands/function-graph-execution.js +176 -0
- package/compute/cli/commands/function-invocation.js +66 -0
- package/compute/cli/commands/get-all-tree-nodes-record.d.ts +8 -0
- package/compute/cli/commands/{get-all-record.js → get-all-tree-nodes-record.js} +5 -5
- package/compute/cli/commands/infra-commit.js +19 -19
- package/compute/cli/commands/infra-get-all-tree-nodes-record.d.ts +8 -0
- package/{api/cli/commands/migrate-file.js → compute/cli/commands/infra-get-all-tree-nodes-record.js} +22 -28
- package/compute/cli/commands/infra-object.js +19 -19
- package/compute/cli/commands/infra-ref.js +17 -17
- package/compute/cli/commands/infra-store.js +20 -20
- package/compute/cli/commands/namespace-event.js +0 -154
- package/compute/cli/commands/platform-declared-capacity.d.ts +8 -0
- package/compute/cli/commands/platform-declared-capacity.js +247 -0
- package/compute/cli/commands/platform-function-definition.js +48 -0
- package/compute/cli/commands/platform-function-invocation.js +66 -0
- package/compute/cli/commands/platform-infra-commit.d.ts +8 -0
- package/{infra/cli/commands/infra-commit.js → compute/cli/commands/platform-infra-commit.js} +8 -8
- package/compute/cli/commands/platform-infra-get-all-tree-nodes-record.d.ts +8 -0
- package/compute/cli/commands/{infra-get-all-record.js → platform-infra-get-all-tree-nodes-record.js} +7 -5
- package/compute/cli/commands/platform-infra-init-empty-repo.d.ts +8 -0
- package/{infra/cli/commands/infra-init-empty-repo.js → compute/cli/commands/platform-infra-init-empty-repo.js} +3 -3
- package/compute/cli/commands/platform-infra-insert-node-at-path.d.ts +8 -0
- package/compute/cli/commands/platform-infra-insert-node-at-path.js +36 -0
- package/compute/cli/commands/platform-infra-object.d.ts +8 -0
- package/{infra/cli/commands/infra-object.js → compute/cli/commands/platform-infra-object.js} +8 -8
- package/compute/cli/commands/platform-infra-ref.d.ts +8 -0
- package/{infra/cli/commands/infra-ref.js → compute/cli/commands/platform-infra-ref.js} +8 -8
- package/compute/cli/commands/platform-infra-set-data-at-path.d.ts +8 -0
- package/{infra/cli/commands/infra-set-data-at-path.js → compute/cli/commands/platform-infra-set-data-at-path.js} +3 -3
- package/compute/cli/commands/{infra-get-all-record.d.ts → platform-infra-store.d.ts} +1 -1
- package/{infra/cli/commands/infra-store.js → compute/cli/commands/platform-infra-store.js} +8 -8
- package/compute/cli/commands/platform-namespace-event.js +0 -154
- package/compute/cli/commands/platform-resource-installation.d.ts +8 -0
- package/compute/cli/commands/platform-resource-installation.js +436 -0
- package/compute/cli/commands/platform-resource-installations-install.d.ts +8 -0
- package/compute/cli/commands/platform-resource-installations-install.js +36 -0
- package/compute/cli/commands/platform-resource-installations-rollback.d.ts +8 -0
- package/compute/cli/commands/platform-resource-installations-rollback.js +36 -0
- package/compute/cli/commands/platform-resource-installations-uninstall.d.ts +8 -0
- package/compute/cli/commands/platform-resource-installations-uninstall.js +36 -0
- package/compute/cli/commands/platform-resource-installations-upgrade.d.ts +8 -0
- package/compute/cli/commands/platform-resource-installations-upgrade.js +36 -0
- package/compute/cli/commands/platform-resource-usage-log.d.ts +8 -0
- package/compute/cli/commands/platform-resource-usage-log.js +386 -0
- package/compute/cli/commands/platform-resource-usage-summary.d.ts +8 -0
- package/compute/cli/commands/platform-resource-usage-summary.js +389 -0
- package/compute/cli/commands/platform-resource-utilization-daily.d.ts +8 -0
- package/compute/cli/commands/platform-resource-utilization-daily.js +313 -0
- package/compute/cli/commands/platform-resource.js +51 -0
- package/compute/cli/commands/platform-resources-health.d.ts +8 -0
- package/compute/cli/commands/platform-resources-health.js +413 -0
- package/compute/cli/commands/platform-webhook-endpoint.d.ts +8 -0
- package/compute/cli/commands/platform-webhook-endpoint.js +432 -0
- package/compute/cli/commands/platform-webhook-event.d.ts +8 -0
- package/compute/cli/commands/platform-webhook-event.js +414 -0
- package/compute/cli/commands/resource-installation.d.ts +8 -0
- package/compute/cli/commands/resource-installation.js +456 -0
- package/compute/cli/commands/resource-installations-install.d.ts +8 -0
- package/compute/cli/commands/resource-installations-install.js +36 -0
- package/compute/cli/commands/resource-installations-rollback.d.ts +8 -0
- package/compute/cli/commands/resource-installations-rollback.js +36 -0
- package/compute/cli/commands/resource-installations-uninstall.d.ts +8 -0
- package/compute/cli/commands/resource-installations-uninstall.js +36 -0
- package/compute/cli/commands/resource-installations-upgrade.d.ts +8 -0
- package/compute/cli/commands/resource-installations-upgrade.js +36 -0
- package/compute/cli/commands/resource-usage-log.d.ts +8 -0
- package/compute/cli/commands/resource-usage-log.js +406 -0
- package/compute/cli/commands/resource-usage-summary.d.ts +8 -0
- package/compute/cli/commands/resource-usage-summary.js +409 -0
- package/compute/cli/commands/resource-utilization-daily.d.ts +8 -0
- package/compute/cli/commands/resource-utilization-daily.js +313 -0
- package/compute/cli/commands/resource.js +51 -0
- package/compute/cli/commands/resources-health.d.ts +8 -0
- package/compute/cli/commands/resources-health.js +424 -0
- package/compute/cli/commands/webhook-endpoint.d.ts +8 -0
- package/compute/cli/commands/webhook-endpoint.js +452 -0
- package/{api/cli/commands/migrate-file.d.ts → compute/cli/commands/webhook-event.d.ts} +1 -1
- package/compute/cli/commands/webhook-event.js +434 -0
- package/compute/cli/commands.js +69 -5
- package/compute/cli/executor.d.ts +78 -2
- package/compute/orm/index.d.ts +101 -4
- package/compute/orm/index.js +46 -4
- package/compute/orm/input-types.d.ts +5356 -772
- package/compute/orm/input-types.js +34 -2
- package/compute/orm/models/declaredCapacity.d.ts +30 -0
- package/compute/orm/models/{infraGetAllRecord.js → declaredCapacity.js} +15 -15
- package/compute/orm/models/getAllTreeNodesRecord.d.ts +30 -0
- package/compute/orm/models/{getAllRecord.js → getAllTreeNodesRecord.js} +15 -15
- package/compute/orm/models/index.d.ts +23 -2
- package/compute/orm/models/index.js +48 -5
- package/compute/orm/models/infraCommit.d.ts +2 -2
- package/compute/orm/models/infraCommit.js +2 -2
- package/compute/orm/models/infraGetAllTreeNodesRecord.d.ts +30 -0
- package/compute/orm/models/infraGetAllTreeNodesRecord.js +59 -0
- package/compute/orm/models/infraObject.d.ts +2 -2
- package/compute/orm/models/infraObject.js +2 -2
- package/compute/orm/models/infraRef.d.ts +2 -2
- package/compute/orm/models/infraRef.js +2 -2
- package/compute/orm/models/platformDeclaredCapacity.d.ts +30 -0
- package/{objects/orm/models/getAllRecord.js → compute/orm/models/platformDeclaredCapacity.js} +15 -15
- package/compute/orm/models/platformInfraCommit.d.ts +56 -0
- package/compute/orm/models/platformInfraCommit.js +107 -0
- package/compute/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
- package/compute/orm/models/platformInfraGetAllTreeNodesRecord.js +59 -0
- package/compute/orm/models/platformInfraObject.d.ts +56 -0
- package/{infra/orm/models/infraObject.js → compute/orm/models/platformInfraObject.js} +25 -25
- package/compute/orm/models/platformInfraRef.d.ts +56 -0
- package/compute/orm/models/platformInfraRef.js +107 -0
- package/compute/orm/models/platformInfraStore.d.ts +54 -0
- package/compute/orm/models/platformInfraStore.js +104 -0
- package/compute/orm/models/platformResourceInstallation.d.ts +54 -0
- package/compute/orm/models/platformResourceInstallation.js +104 -0
- package/compute/orm/models/platformResourceUsageLog.d.ts +56 -0
- package/compute/orm/models/platformResourceUsageLog.js +107 -0
- package/compute/orm/models/platformResourceUsageSummary.d.ts +56 -0
- package/compute/orm/models/platformResourceUsageSummary.js +107 -0
- package/compute/orm/models/platformResourceUtilizationDaily.d.ts +30 -0
- package/compute/orm/models/platformResourceUtilizationDaily.js +59 -0
- package/compute/orm/models/platformResourcesHealth.d.ts +36 -0
- package/compute/orm/models/platformResourcesHealth.js +80 -0
- package/compute/orm/models/platformWebhookEndpoint.d.ts +54 -0
- package/compute/orm/models/platformWebhookEndpoint.js +104 -0
- package/compute/orm/models/platformWebhookEvent.d.ts +54 -0
- package/compute/orm/models/platformWebhookEvent.js +104 -0
- package/compute/orm/models/resourceInstallation.d.ts +54 -0
- package/compute/orm/models/resourceInstallation.js +104 -0
- package/compute/orm/models/resourceUsageLog.d.ts +56 -0
- package/compute/orm/models/resourceUsageLog.js +107 -0
- package/compute/orm/models/resourceUsageSummary.d.ts +56 -0
- package/compute/orm/models/resourceUsageSummary.js +107 -0
- package/compute/orm/models/resourceUtilizationDaily.d.ts +30 -0
- package/compute/orm/models/resourceUtilizationDaily.js +59 -0
- package/compute/orm/models/resourcesHealth.d.ts +36 -0
- package/{api/orm/models/migrateFile.js → compute/orm/models/resourcesHealth.js} +20 -20
- package/compute/orm/models/webhookEndpoint.d.ts +54 -0
- package/compute/orm/models/webhookEndpoint.js +104 -0
- package/compute/orm/models/webhookEvent.d.ts +54 -0
- package/{infra/orm/models/infraStore.js → compute/orm/models/webhookEvent.js} +27 -27
- package/compute/orm/mutation/index.d.ts +89 -1
- package/compute/orm/mutation/index.js +132 -0
- package/config/cli/commands/platform-internal-secret.js +7 -14
- package/config/cli/commands/platform-secret.js +8 -16
- package/config/cli/commands/secret.js +9 -18
- package/config/orm/input-types.d.ts +4 -79
- package/esm/agent/orm/input-types.d.ts +24 -0
- package/esm/agent/orm/input-types.js +3 -0
- package/esm/api/cli/commands/ast-migration.js +20 -31
- package/{infra/cli/commands/infra-ref.d.ts → esm/api/cli/commands/http-route.d.ts} +1 -1
- package/esm/api/cli/commands/http-route.js +432 -0
- package/esm/api/cli/commands/{migrate-file.d.ts → managed-domain.d.ts} +1 -1
- package/esm/api/cli/commands/managed-domain.js +380 -0
- package/esm/api/cli/commands/resolve-http-route.d.ts +8 -0
- package/esm/api/cli/commands/resolve-http-route.js +42 -0
- package/esm/api/cli/commands/sql-action.js +20 -31
- package/esm/api/cli/commands.js +7 -3
- package/esm/api/cli/executor.d.ts +7 -1
- package/esm/api/orm/index.d.ts +9 -2
- package/esm/api/orm/index.js +4 -2
- package/esm/api/orm/input-types.d.ts +498 -143
- package/esm/api/orm/input-types.js +4 -0
- package/esm/api/orm/models/httpRoute.d.ts +54 -0
- package/esm/{infra/orm/models/infraRef.js → api/orm/models/httpRoute.js} +25 -28
- package/esm/api/orm/models/index.d.ts +2 -1
- package/esm/api/orm/models/index.js +2 -1
- package/esm/api/orm/models/managedDomain.d.ts +54 -0
- package/esm/{infra/orm/models/infraCommit.js → api/orm/models/managedDomain.js} +25 -28
- package/esm/api/orm/query/index.d.ts +12 -0
- package/esm/api/orm/query/index.js +20 -0
- package/esm/auth/cli/commands/identity-provider.js +4 -8
- package/esm/auth/cli/commands/org-api-key-list.js +9 -18
- package/esm/auth/cli/commands/user-connected-account.js +5 -10
- package/esm/auth/orm/input-types.d.ts +155 -182
- package/esm/auth/orm/input-types.js +4 -0
- package/esm/compute/cli/commands/declared-capacity.d.ts +8 -0
- package/esm/compute/cli/commands/declared-capacity.js +245 -0
- package/esm/compute/cli/commands/function-definition.js +48 -0
- package/esm/compute/cli/commands/function-graph-execution-node-state.js +66 -0
- package/esm/compute/cli/commands/function-graph-execution.js +176 -0
- package/esm/compute/cli/commands/function-invocation.js +66 -0
- package/esm/compute/cli/commands/get-all-tree-nodes-record.d.ts +8 -0
- package/esm/{infra/cli/commands/infra-get-all-record.js → compute/cli/commands/get-all-tree-nodes-record.js} +5 -5
- package/esm/compute/cli/commands/infra-commit.js +19 -19
- package/esm/compute/cli/commands/infra-get-all-tree-nodes-record.d.ts +8 -0
- package/esm/{api/cli/commands/migrate-file.js → compute/cli/commands/infra-get-all-tree-nodes-record.js} +22 -28
- package/esm/compute/cli/commands/infra-object.js +19 -19
- package/esm/compute/cli/commands/infra-ref.js +17 -17
- package/esm/compute/cli/commands/infra-store.js +20 -20
- package/esm/compute/cli/commands/namespace-event.js +0 -154
- package/esm/compute/cli/commands/platform-declared-capacity.d.ts +8 -0
- package/esm/compute/cli/commands/platform-declared-capacity.js +245 -0
- package/esm/compute/cli/commands/platform-function-definition.js +48 -0
- package/esm/compute/cli/commands/platform-function-invocation.js +66 -0
- package/esm/compute/cli/commands/platform-infra-commit.d.ts +8 -0
- package/esm/{infra/cli/commands/infra-commit.js → compute/cli/commands/platform-infra-commit.js} +8 -8
- package/esm/compute/cli/commands/platform-infra-get-all-tree-nodes-record.d.ts +8 -0
- package/esm/compute/cli/commands/{infra-get-all-record.js → platform-infra-get-all-tree-nodes-record.js} +7 -5
- package/esm/compute/cli/commands/platform-infra-init-empty-repo.d.ts +8 -0
- package/esm/{infra/cli/commands/infra-insert-node-at-path.js → compute/cli/commands/platform-infra-init-empty-repo.js} +3 -3
- package/esm/compute/cli/commands/platform-infra-insert-node-at-path.d.ts +8 -0
- package/esm/compute/cli/commands/platform-infra-insert-node-at-path.js +34 -0
- package/esm/compute/cli/commands/platform-infra-object.d.ts +8 -0
- package/esm/{infra/cli/commands/infra-object.js → compute/cli/commands/platform-infra-object.js} +8 -8
- package/esm/compute/cli/commands/platform-infra-ref.d.ts +8 -0
- package/esm/{infra/cli/commands/infra-ref.js → compute/cli/commands/platform-infra-ref.js} +8 -8
- package/esm/compute/cli/commands/platform-infra-set-data-at-path.d.ts +8 -0
- package/esm/{infra/cli/commands/infra-set-data-at-path.js → compute/cli/commands/platform-infra-set-data-at-path.js} +3 -3
- package/esm/compute/cli/commands/platform-infra-store.d.ts +8 -0
- package/esm/{infra/cli/commands/infra-store.js → compute/cli/commands/platform-infra-store.js} +8 -8
- package/esm/compute/cli/commands/platform-namespace-event.js +0 -154
- package/esm/compute/cli/commands/platform-resource-installation.d.ts +8 -0
- package/esm/compute/cli/commands/platform-resource-installation.js +434 -0
- package/esm/compute/cli/commands/platform-resource-installations-install.d.ts +8 -0
- package/esm/compute/cli/commands/platform-resource-installations-install.js +34 -0
- package/esm/compute/cli/commands/platform-resource-installations-rollback.d.ts +8 -0
- package/esm/compute/cli/commands/platform-resource-installations-rollback.js +34 -0
- package/esm/compute/cli/commands/platform-resource-installations-uninstall.d.ts +8 -0
- package/esm/compute/cli/commands/platform-resource-installations-uninstall.js +34 -0
- package/esm/compute/cli/commands/platform-resource-installations-upgrade.d.ts +8 -0
- package/esm/compute/cli/commands/platform-resource-installations-upgrade.js +34 -0
- package/esm/compute/cli/commands/platform-resource-usage-log.d.ts +8 -0
- package/esm/compute/cli/commands/platform-resource-usage-log.js +384 -0
- package/esm/compute/cli/commands/platform-resource-usage-summary.d.ts +8 -0
- package/esm/compute/cli/commands/platform-resource-usage-summary.js +387 -0
- package/esm/compute/cli/commands/platform-resource-utilization-daily.d.ts +8 -0
- package/esm/compute/cli/commands/platform-resource-utilization-daily.js +311 -0
- package/esm/compute/cli/commands/platform-resource.js +51 -0
- package/esm/compute/cli/commands/platform-resources-health.d.ts +8 -0
- package/esm/compute/cli/commands/platform-resources-health.js +411 -0
- package/esm/compute/cli/commands/platform-webhook-endpoint.d.ts +8 -0
- package/esm/compute/cli/commands/platform-webhook-endpoint.js +430 -0
- package/esm/compute/cli/commands/platform-webhook-event.d.ts +8 -0
- package/esm/compute/cli/commands/platform-webhook-event.js +412 -0
- package/esm/compute/cli/commands/resource-installation.d.ts +8 -0
- package/esm/compute/cli/commands/resource-installation.js +454 -0
- package/esm/compute/cli/commands/resource-installations-install.d.ts +8 -0
- package/esm/compute/cli/commands/resource-installations-install.js +34 -0
- package/esm/compute/cli/commands/resource-installations-rollback.d.ts +8 -0
- package/esm/compute/cli/commands/resource-installations-rollback.js +34 -0
- package/esm/compute/cli/commands/resource-installations-uninstall.d.ts +8 -0
- package/esm/compute/cli/commands/resource-installations-uninstall.js +34 -0
- package/esm/compute/cli/commands/resource-installations-upgrade.d.ts +8 -0
- package/esm/compute/cli/commands/resource-installations-upgrade.js +34 -0
- package/esm/compute/cli/commands/resource-usage-log.d.ts +8 -0
- package/esm/compute/cli/commands/resource-usage-log.js +404 -0
- package/esm/compute/cli/commands/resource-usage-summary.d.ts +8 -0
- package/esm/compute/cli/commands/resource-usage-summary.js +407 -0
- package/esm/compute/cli/commands/resource-utilization-daily.d.ts +8 -0
- package/esm/compute/cli/commands/resource-utilization-daily.js +311 -0
- package/esm/compute/cli/commands/resource.js +51 -0
- package/esm/compute/cli/commands/resources-health.d.ts +8 -0
- package/esm/compute/cli/commands/resources-health.js +422 -0
- package/esm/compute/cli/commands/webhook-endpoint.d.ts +8 -0
- package/esm/compute/cli/commands/webhook-endpoint.js +450 -0
- package/{compute/cli/commands/get-all-record.d.ts → esm/compute/cli/commands/webhook-event.d.ts} +1 -1
- package/esm/compute/cli/commands/webhook-event.js +432 -0
- package/esm/compute/cli/commands.js +69 -5
- package/esm/compute/cli/executor.d.ts +78 -2
- package/esm/compute/orm/index.d.ts +101 -4
- package/esm/compute/orm/index.js +46 -4
- package/esm/compute/orm/input-types.d.ts +5356 -772
- package/esm/compute/orm/input-types.js +34 -2
- package/esm/compute/orm/models/declaredCapacity.d.ts +30 -0
- package/esm/{infra/orm/models/infraGetAllRecord.js → compute/orm/models/declaredCapacity.js} +13 -13
- package/esm/compute/orm/models/getAllTreeNodesRecord.d.ts +30 -0
- package/esm/{objects/orm/models/getAllRecord.js → compute/orm/models/getAllTreeNodesRecord.js} +13 -13
- package/esm/compute/orm/models/index.d.ts +23 -2
- package/esm/compute/orm/models/index.js +23 -2
- package/esm/compute/orm/models/infraCommit.d.ts +2 -2
- package/esm/compute/orm/models/infraCommit.js +2 -2
- package/esm/compute/orm/models/infraGetAllTreeNodesRecord.d.ts +30 -0
- package/esm/compute/orm/models/{infraGetAllRecord.js → infraGetAllTreeNodesRecord.js} +13 -13
- package/esm/compute/orm/models/infraObject.d.ts +2 -2
- package/esm/compute/orm/models/infraObject.js +2 -2
- package/esm/compute/orm/models/infraRef.d.ts +2 -2
- package/esm/compute/orm/models/infraRef.js +2 -2
- package/esm/compute/orm/models/platformDeclaredCapacity.d.ts +30 -0
- package/esm/compute/orm/models/platformDeclaredCapacity.js +55 -0
- package/esm/compute/orm/models/platformInfraCommit.d.ts +56 -0
- package/esm/compute/orm/models/platformInfraCommit.js +103 -0
- package/esm/compute/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
- package/esm/compute/orm/models/platformInfraGetAllTreeNodesRecord.js +55 -0
- package/esm/compute/orm/models/platformInfraObject.d.ts +56 -0
- package/esm/{infra/orm/models/infraObject.js → compute/orm/models/platformInfraObject.js} +23 -23
- package/esm/compute/orm/models/platformInfraRef.d.ts +56 -0
- package/esm/compute/orm/models/platformInfraRef.js +103 -0
- package/esm/compute/orm/models/platformInfraStore.d.ts +54 -0
- package/esm/compute/orm/models/platformInfraStore.js +100 -0
- package/esm/compute/orm/models/platformResourceInstallation.d.ts +54 -0
- package/esm/compute/orm/models/platformResourceInstallation.js +100 -0
- package/esm/compute/orm/models/platformResourceUsageLog.d.ts +56 -0
- package/esm/compute/orm/models/platformResourceUsageLog.js +103 -0
- package/esm/compute/orm/models/platformResourceUsageSummary.d.ts +56 -0
- package/esm/compute/orm/models/platformResourceUsageSummary.js +103 -0
- package/esm/compute/orm/models/platformResourceUtilizationDaily.d.ts +30 -0
- package/esm/compute/orm/models/platformResourceUtilizationDaily.js +55 -0
- package/esm/compute/orm/models/platformResourcesHealth.d.ts +36 -0
- package/esm/compute/orm/models/platformResourcesHealth.js +76 -0
- package/esm/compute/orm/models/platformWebhookEndpoint.d.ts +54 -0
- package/esm/compute/orm/models/platformWebhookEndpoint.js +100 -0
- package/esm/compute/orm/models/platformWebhookEvent.d.ts +54 -0
- package/esm/compute/orm/models/platformWebhookEvent.js +100 -0
- package/esm/compute/orm/models/resourceInstallation.d.ts +54 -0
- package/esm/compute/orm/models/resourceInstallation.js +100 -0
- package/esm/compute/orm/models/resourceUsageLog.d.ts +56 -0
- package/esm/compute/orm/models/resourceUsageLog.js +103 -0
- package/esm/compute/orm/models/resourceUsageSummary.d.ts +56 -0
- package/esm/compute/orm/models/resourceUsageSummary.js +103 -0
- package/esm/compute/orm/models/resourceUtilizationDaily.d.ts +30 -0
- package/esm/compute/orm/models/resourceUtilizationDaily.js +55 -0
- package/esm/compute/orm/models/resourcesHealth.d.ts +36 -0
- package/esm/{api/orm/models/migrateFile.js → compute/orm/models/resourcesHealth.js} +18 -18
- package/esm/compute/orm/models/webhookEndpoint.d.ts +54 -0
- package/esm/compute/orm/models/webhookEndpoint.js +100 -0
- package/esm/compute/orm/models/webhookEvent.d.ts +54 -0
- package/esm/{infra/orm/models/infraStore.js → compute/orm/models/webhookEvent.js} +25 -25
- package/esm/compute/orm/mutation/index.d.ts +89 -1
- package/esm/compute/orm/mutation/index.js +132 -0
- package/esm/config/cli/commands/platform-internal-secret.js +7 -14
- package/esm/config/cli/commands/platform-secret.js +8 -16
- package/esm/config/cli/commands/secret.js +9 -18
- package/esm/config/orm/input-types.d.ts +4 -79
- package/esm/infra/cli/commands/namespace-event.js +0 -154
- package/esm/infra/cli/commands/platform-infra-commit.d.ts +8 -0
- package/esm/infra/cli/commands/platform-infra-commit.js +387 -0
- package/esm/infra/cli/commands/platform-infra-get-all-tree-nodes-record.d.ts +8 -0
- package/esm/{objects/cli/commands/get-all-record.js → infra/cli/commands/platform-infra-get-all-tree-nodes-record.js} +7 -5
- package/esm/infra/cli/commands/platform-infra-init-empty-repo.d.ts +8 -0
- package/esm/infra/cli/commands/{infra-init-empty-repo.js → platform-infra-init-empty-repo.js} +3 -3
- package/esm/infra/cli/commands/platform-infra-insert-node-at-path.d.ts +8 -0
- package/esm/infra/cli/commands/platform-infra-insert-node-at-path.js +34 -0
- package/esm/infra/cli/commands/platform-infra-object.d.ts +8 -0
- package/esm/infra/cli/commands/platform-infra-object.js +307 -0
- package/esm/infra/cli/commands/platform-infra-ref.d.ts +8 -0
- package/esm/infra/cli/commands/platform-infra-ref.js +297 -0
- package/esm/infra/cli/commands/platform-infra-set-data-at-path.d.ts +8 -0
- package/esm/infra/cli/commands/platform-infra-set-data-at-path.js +34 -0
- package/esm/infra/cli/commands/platform-infra-store.d.ts +8 -0
- package/esm/infra/cli/commands/platform-infra-store.js +276 -0
- package/esm/infra/cli/commands/platform-namespace-event.js +0 -154
- package/esm/infra/cli/commands.js +17 -17
- package/esm/infra/cli/executor.d.ts +14 -14
- package/esm/infra/orm/index.d.ts +19 -19
- package/esm/infra/orm/index.js +10 -10
- package/esm/infra/orm/input-types.d.ts +542 -668
- package/esm/infra/orm/models/index.d.ts +5 -5
- package/esm/infra/orm/models/index.js +5 -5
- package/esm/infra/orm/models/platformInfraCommit.d.ts +56 -0
- package/esm/infra/orm/models/platformInfraCommit.js +103 -0
- package/esm/infra/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
- package/esm/infra/orm/models/platformInfraGetAllTreeNodesRecord.js +55 -0
- package/esm/infra/orm/models/platformInfraObject.d.ts +56 -0
- package/esm/infra/orm/models/platformInfraObject.js +93 -0
- package/esm/infra/orm/models/platformInfraRef.d.ts +56 -0
- package/esm/infra/orm/models/platformInfraRef.js +103 -0
- package/esm/infra/orm/models/platformInfraStore.d.ts +54 -0
- package/esm/infra/orm/models/platformInfraStore.js +100 -0
- package/esm/infra/orm/mutation/index.d.ts +16 -16
- package/esm/infra/orm/mutation/index.js +18 -18
- package/esm/modules/cli/commands/compute-log-module.js +24 -24
- package/esm/modules/cli/commands/db-usage-module.js +88 -88
- package/esm/modules/cli/commands/devices-module.js +32 -32
- package/esm/modules/cli/commands/function-module.js +44 -0
- package/esm/modules/cli/commands/http-route-module.d.ts +8 -0
- package/esm/modules/cli/commands/http-route-module.js +646 -0
- package/esm/modules/cli/commands/inference-log-module.js +24 -24
- package/esm/modules/cli/commands/rate-limits-module.js +46 -46
- package/esm/modules/cli/commands/resource-module.js +220 -0
- package/esm/modules/cli/commands/sessions-module.js +48 -48
- package/esm/modules/cli/commands/storage-log-module.js +24 -24
- package/esm/modules/cli/commands/transfer-log-module.js +24 -24
- package/esm/modules/cli/commands/webhook-module.d.ts +8 -0
- package/esm/modules/cli/commands/webhook-module.js +690 -0
- package/esm/modules/cli/commands.js +5 -1
- package/esm/modules/cli/executor.d.ts +2 -0
- package/esm/modules/orm/index.d.ts +4 -0
- package/esm/modules/orm/index.js +4 -0
- package/esm/modules/orm/input-types.d.ts +802 -166
- package/esm/modules/orm/models/httpRouteModule.d.ts +54 -0
- package/esm/modules/orm/models/httpRouteModule.js +100 -0
- package/esm/modules/orm/models/index.d.ts +2 -0
- package/esm/modules/orm/models/index.js +2 -0
- package/esm/modules/orm/models/webhookModule.d.ts +54 -0
- package/esm/modules/orm/models/webhookModule.js +100 -0
- package/esm/objects/cli/commands/get-all-tree-nodes-record.d.ts +8 -0
- package/esm/{compute/cli/commands/get-all-record.js → objects/cli/commands/get-all-tree-nodes-record.js} +5 -5
- package/esm/objects/cli/commands.js +3 -3
- package/esm/objects/cli/executor.d.ts +1 -1
- package/esm/objects/orm/index.d.ts +2 -2
- package/esm/objects/orm/index.js +2 -2
- package/esm/objects/orm/input-types.d.ts +15 -15
- package/esm/objects/orm/models/getAllTreeNodesRecord.d.ts +30 -0
- package/esm/{compute/orm/models/getAllRecord.js → objects/orm/models/getAllTreeNodesRecord.js} +13 -13
- package/esm/objects/orm/models/index.d.ts +1 -1
- package/esm/objects/orm/models/index.js +1 -1
- package/infra/cli/commands/namespace-event.js +0 -154
- package/infra/cli/commands/platform-infra-commit.d.ts +8 -0
- package/infra/cli/commands/platform-infra-commit.js +389 -0
- package/infra/cli/commands/platform-infra-get-all-tree-nodes-record.d.ts +8 -0
- package/infra/cli/commands/{infra-get-all-record.js → platform-infra-get-all-tree-nodes-record.js} +7 -5
- package/infra/cli/commands/platform-infra-init-empty-repo.d.ts +8 -0
- package/infra/cli/commands/{infra-insert-node-at-path.js → platform-infra-init-empty-repo.js} +3 -3
- package/infra/cli/commands/platform-infra-insert-node-at-path.d.ts +8 -0
- package/infra/cli/commands/platform-infra-insert-node-at-path.js +36 -0
- package/infra/cli/commands/platform-infra-object.d.ts +8 -0
- package/infra/cli/commands/platform-infra-object.js +309 -0
- package/infra/cli/commands/platform-infra-ref.d.ts +8 -0
- package/infra/cli/commands/platform-infra-ref.js +299 -0
- package/infra/cli/commands/platform-infra-set-data-at-path.d.ts +8 -0
- package/infra/cli/commands/platform-infra-set-data-at-path.js +36 -0
- package/infra/cli/commands/platform-infra-store.d.ts +8 -0
- package/infra/cli/commands/platform-infra-store.js +278 -0
- package/infra/cli/commands/platform-namespace-event.js +0 -154
- package/infra/cli/commands.js +17 -17
- package/infra/cli/executor.d.ts +14 -14
- package/infra/orm/index.d.ts +19 -19
- package/infra/orm/index.js +10 -10
- package/infra/orm/input-types.d.ts +542 -668
- package/infra/orm/models/index.d.ts +5 -5
- package/infra/orm/models/index.js +11 -11
- package/infra/orm/models/platformInfraCommit.d.ts +56 -0
- package/infra/orm/models/platformInfraCommit.js +107 -0
- package/infra/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
- package/infra/orm/models/platformInfraGetAllTreeNodesRecord.js +59 -0
- package/infra/orm/models/platformInfraObject.d.ts +56 -0
- package/infra/orm/models/platformInfraObject.js +97 -0
- package/infra/orm/models/platformInfraRef.d.ts +56 -0
- package/infra/orm/models/platformInfraRef.js +107 -0
- package/infra/orm/models/platformInfraStore.d.ts +54 -0
- package/infra/orm/models/platformInfraStore.js +104 -0
- package/infra/orm/mutation/index.d.ts +16 -16
- package/infra/orm/mutation/index.js +18 -18
- package/modules/cli/commands/compute-log-module.js +24 -24
- package/modules/cli/commands/db-usage-module.js +88 -88
- package/modules/cli/commands/devices-module.js +32 -32
- package/modules/cli/commands/function-module.js +44 -0
- package/modules/cli/commands/http-route-module.d.ts +8 -0
- package/modules/cli/commands/http-route-module.js +648 -0
- package/modules/cli/commands/inference-log-module.js +24 -24
- package/modules/cli/commands/rate-limits-module.js +46 -46
- package/modules/cli/commands/resource-module.js +220 -0
- package/modules/cli/commands/sessions-module.js +48 -48
- package/modules/cli/commands/storage-log-module.js +24 -24
- package/modules/cli/commands/transfer-log-module.js +24 -24
- package/modules/cli/commands/webhook-module.d.ts +8 -0
- package/modules/cli/commands/webhook-module.js +692 -0
- package/modules/cli/commands.js +5 -1
- package/modules/cli/executor.d.ts +2 -0
- package/modules/orm/index.d.ts +4 -0
- package/modules/orm/index.js +4 -0
- package/modules/orm/input-types.d.ts +802 -166
- package/modules/orm/models/httpRouteModule.d.ts +54 -0
- package/modules/orm/models/httpRouteModule.js +104 -0
- package/modules/orm/models/index.d.ts +2 -0
- package/modules/orm/models/index.js +6 -2
- package/modules/orm/models/webhookModule.d.ts +54 -0
- package/modules/orm/models/webhookModule.js +104 -0
- package/objects/cli/commands/get-all-tree-nodes-record.d.ts +8 -0
- package/objects/cli/commands/{get-all-record.js → get-all-tree-nodes-record.js} +5 -5
- package/objects/cli/commands.js +3 -3
- package/objects/cli/executor.d.ts +1 -1
- package/objects/orm/index.d.ts +2 -2
- package/objects/orm/index.js +2 -2
- package/objects/orm/input-types.d.ts +15 -15
- package/objects/orm/models/getAllTreeNodesRecord.d.ts +30 -0
- package/{infra/orm/models/infraGetAllRecord.js → objects/orm/models/getAllTreeNodesRecord.js} +15 -15
- package/objects/orm/models/index.d.ts +1 -1
- package/objects/orm/models/index.js +3 -3
- package/package.json +2 -2
- package/api/orm/models/migrateFile.d.ts +0 -36
- package/compute/orm/models/getAllRecord.d.ts +0 -30
- package/compute/orm/models/infraGetAllRecord.d.ts +0 -30
- package/esm/api/orm/models/migrateFile.d.ts +0 -36
- package/esm/compute/cli/commands/infra-get-all-record.d.ts +0 -8
- package/esm/compute/orm/models/getAllRecord.d.ts +0 -30
- package/esm/compute/orm/models/infraGetAllRecord.d.ts +0 -30
- package/esm/infra/cli/commands/infra-commit.d.ts +0 -8
- package/esm/infra/cli/commands/infra-get-all-record.d.ts +0 -8
- package/esm/infra/cli/commands/infra-init-empty-repo.d.ts +0 -8
- package/esm/infra/cli/commands/infra-insert-node-at-path.d.ts +0 -8
- package/esm/infra/cli/commands/infra-object.d.ts +0 -8
- package/esm/infra/cli/commands/infra-set-data-at-path.d.ts +0 -8
- package/esm/infra/cli/commands/infra-store.d.ts +0 -8
- package/esm/infra/orm/models/infraCommit.d.ts +0 -56
- package/esm/infra/orm/models/infraGetAllRecord.d.ts +0 -30
- package/esm/infra/orm/models/infraObject.d.ts +0 -56
- package/esm/infra/orm/models/infraRef.d.ts +0 -56
- package/esm/infra/orm/models/infraStore.d.ts +0 -54
- package/esm/objects/cli/commands/get-all-record.d.ts +0 -8
- package/esm/objects/orm/models/getAllRecord.d.ts +0 -30
- package/infra/cli/commands/infra-commit.d.ts +0 -8
- package/infra/cli/commands/infra-get-all-record.d.ts +0 -8
- package/infra/cli/commands/infra-init-empty-repo.d.ts +0 -8
- package/infra/cli/commands/infra-insert-node-at-path.d.ts +0 -8
- package/infra/cli/commands/infra-object.d.ts +0 -8
- package/infra/cli/commands/infra-set-data-at-path.d.ts +0 -8
- package/infra/cli/commands/infra-store.d.ts +0 -8
- package/infra/orm/models/infraCommit.d.ts +0 -56
- package/infra/orm/models/infraGetAllRecord.d.ts +0 -30
- package/infra/orm/models/infraObject.d.ts +0 -56
- package/infra/orm/models/infraRef.d.ts +0 -56
- package/infra/orm/models/infraStore.d.ts +0 -54
- package/objects/cli/commands/get-all-record.d.ts +0 -8
- package/objects/orm/models/getAllRecord.d.ts +0 -30
|
@@ -15,6 +15,8 @@ const fieldSchema = {
|
|
|
15
15
|
entityField: 'string',
|
|
16
16
|
entityTableId: 'uuid',
|
|
17
17
|
id: 'uuid',
|
|
18
|
+
installationStoreName: 'string',
|
|
19
|
+
merkleStoreModuleId: 'uuid',
|
|
18
20
|
namespaceModuleId: 'uuid',
|
|
19
21
|
policies: 'json',
|
|
20
22
|
prefix: 'string',
|
|
@@ -25,14 +27,22 @@ const fieldSchema = {
|
|
|
25
27
|
publicSchemaName: 'string',
|
|
26
28
|
requirementsStateViewName: 'string',
|
|
27
29
|
resolvedRequirementsViewName: 'string',
|
|
30
|
+
resourceBillingRollupFunction: 'string',
|
|
28
31
|
resourceDefinitionsTableId: 'uuid',
|
|
29
32
|
resourceDefinitionsTableName: 'string',
|
|
30
33
|
resourceEventsTableId: 'uuid',
|
|
31
34
|
resourceEventsTableName: 'string',
|
|
35
|
+
resourceInstallationsTableId: 'uuid',
|
|
36
|
+
resourceInstallationsTableName: 'string',
|
|
32
37
|
resourceStatusChecksTableId: 'uuid',
|
|
33
38
|
resourceStatusChecksTableName: 'string',
|
|
39
|
+
resourceUsageLogTableId: 'uuid',
|
|
40
|
+
resourceUsageLogTableName: 'string',
|
|
41
|
+
resourceUsageSummaryTableId: 'uuid',
|
|
42
|
+
resourceUsageSummaryTableName: 'string',
|
|
34
43
|
resourcesTableId: 'uuid',
|
|
35
44
|
resourcesTableName: 'string',
|
|
45
|
+
rollupResourceUsageSummaryFunction: 'string',
|
|
36
46
|
schemaId: 'uuid',
|
|
37
47
|
scope: 'string',
|
|
38
48
|
};
|
|
@@ -84,6 +94,8 @@ async function handleList(argv, _prompter) {
|
|
|
84
94
|
entityField: true,
|
|
85
95
|
entityTableId: true,
|
|
86
96
|
id: true,
|
|
97
|
+
installationStoreName: true,
|
|
98
|
+
merkleStoreModuleId: true,
|
|
87
99
|
namespaceModuleId: true,
|
|
88
100
|
policies: true,
|
|
89
101
|
prefix: true,
|
|
@@ -94,14 +106,22 @@ async function handleList(argv, _prompter) {
|
|
|
94
106
|
publicSchemaName: true,
|
|
95
107
|
requirementsStateViewName: true,
|
|
96
108
|
resolvedRequirementsViewName: true,
|
|
109
|
+
resourceBillingRollupFunction: true,
|
|
97
110
|
resourceDefinitionsTableId: true,
|
|
98
111
|
resourceDefinitionsTableName: true,
|
|
99
112
|
resourceEventsTableId: true,
|
|
100
113
|
resourceEventsTableName: true,
|
|
114
|
+
resourceInstallationsTableId: true,
|
|
115
|
+
resourceInstallationsTableName: true,
|
|
101
116
|
resourceStatusChecksTableId: true,
|
|
102
117
|
resourceStatusChecksTableName: true,
|
|
118
|
+
resourceUsageLogTableId: true,
|
|
119
|
+
resourceUsageLogTableName: true,
|
|
120
|
+
resourceUsageSummaryTableId: true,
|
|
121
|
+
resourceUsageSummaryTableName: true,
|
|
103
122
|
resourcesTableId: true,
|
|
104
123
|
resourcesTableName: true,
|
|
124
|
+
rollupResourceUsageSummaryFunction: true,
|
|
105
125
|
schemaId: true,
|
|
106
126
|
scope: true,
|
|
107
127
|
};
|
|
@@ -127,6 +147,8 @@ async function handleFindFirst(argv, _prompter) {
|
|
|
127
147
|
entityField: true,
|
|
128
148
|
entityTableId: true,
|
|
129
149
|
id: true,
|
|
150
|
+
installationStoreName: true,
|
|
151
|
+
merkleStoreModuleId: true,
|
|
130
152
|
namespaceModuleId: true,
|
|
131
153
|
policies: true,
|
|
132
154
|
prefix: true,
|
|
@@ -137,14 +159,22 @@ async function handleFindFirst(argv, _prompter) {
|
|
|
137
159
|
publicSchemaName: true,
|
|
138
160
|
requirementsStateViewName: true,
|
|
139
161
|
resolvedRequirementsViewName: true,
|
|
162
|
+
resourceBillingRollupFunction: true,
|
|
140
163
|
resourceDefinitionsTableId: true,
|
|
141
164
|
resourceDefinitionsTableName: true,
|
|
142
165
|
resourceEventsTableId: true,
|
|
143
166
|
resourceEventsTableName: true,
|
|
167
|
+
resourceInstallationsTableId: true,
|
|
168
|
+
resourceInstallationsTableName: true,
|
|
144
169
|
resourceStatusChecksTableId: true,
|
|
145
170
|
resourceStatusChecksTableName: true,
|
|
171
|
+
resourceUsageLogTableId: true,
|
|
172
|
+
resourceUsageLogTableName: true,
|
|
173
|
+
resourceUsageSummaryTableId: true,
|
|
174
|
+
resourceUsageSummaryTableName: true,
|
|
146
175
|
resourcesTableId: true,
|
|
147
176
|
resourcesTableName: true,
|
|
177
|
+
rollupResourceUsageSummaryFunction: true,
|
|
148
178
|
schemaId: true,
|
|
149
179
|
scope: true,
|
|
150
180
|
};
|
|
@@ -182,6 +212,8 @@ async function handleGet(argv, prompter) {
|
|
|
182
212
|
entityField: true,
|
|
183
213
|
entityTableId: true,
|
|
184
214
|
id: true,
|
|
215
|
+
installationStoreName: true,
|
|
216
|
+
merkleStoreModuleId: true,
|
|
185
217
|
namespaceModuleId: true,
|
|
186
218
|
policies: true,
|
|
187
219
|
prefix: true,
|
|
@@ -192,14 +224,22 @@ async function handleGet(argv, prompter) {
|
|
|
192
224
|
publicSchemaName: true,
|
|
193
225
|
requirementsStateViewName: true,
|
|
194
226
|
resolvedRequirementsViewName: true,
|
|
227
|
+
resourceBillingRollupFunction: true,
|
|
195
228
|
resourceDefinitionsTableId: true,
|
|
196
229
|
resourceDefinitionsTableName: true,
|
|
197
230
|
resourceEventsTableId: true,
|
|
198
231
|
resourceEventsTableName: true,
|
|
232
|
+
resourceInstallationsTableId: true,
|
|
233
|
+
resourceInstallationsTableName: true,
|
|
199
234
|
resourceStatusChecksTableId: true,
|
|
200
235
|
resourceStatusChecksTableName: true,
|
|
236
|
+
resourceUsageLogTableId: true,
|
|
237
|
+
resourceUsageLogTableName: true,
|
|
238
|
+
resourceUsageSummaryTableId: true,
|
|
239
|
+
resourceUsageSummaryTableName: true,
|
|
201
240
|
resourcesTableId: true,
|
|
202
241
|
resourcesTableName: true,
|
|
242
|
+
rollupResourceUsageSummaryFunction: true,
|
|
203
243
|
schemaId: true,
|
|
204
244
|
scope: true,
|
|
205
245
|
},
|
|
@@ -252,6 +292,20 @@ async function handleCreate(argv, prompter) {
|
|
|
252
292
|
required: false,
|
|
253
293
|
skipPrompt: true,
|
|
254
294
|
},
|
|
295
|
+
{
|
|
296
|
+
type: 'text',
|
|
297
|
+
name: 'installationStoreName',
|
|
298
|
+
message: 'installationStoreName',
|
|
299
|
+
required: false,
|
|
300
|
+
skipPrompt: true,
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
type: 'text',
|
|
304
|
+
name: 'merkleStoreModuleId',
|
|
305
|
+
message: 'merkleStoreModuleId',
|
|
306
|
+
required: false,
|
|
307
|
+
skipPrompt: true,
|
|
308
|
+
},
|
|
255
309
|
{
|
|
256
310
|
type: 'text',
|
|
257
311
|
name: 'namespaceModuleId',
|
|
@@ -322,6 +376,13 @@ async function handleCreate(argv, prompter) {
|
|
|
322
376
|
required: false,
|
|
323
377
|
skipPrompt: true,
|
|
324
378
|
},
|
|
379
|
+
{
|
|
380
|
+
type: 'text',
|
|
381
|
+
name: 'resourceBillingRollupFunction',
|
|
382
|
+
message: 'resourceBillingRollupFunction',
|
|
383
|
+
required: false,
|
|
384
|
+
skipPrompt: true,
|
|
385
|
+
},
|
|
325
386
|
{
|
|
326
387
|
type: 'text',
|
|
327
388
|
name: 'resourceDefinitionsTableId',
|
|
@@ -350,6 +411,20 @@ async function handleCreate(argv, prompter) {
|
|
|
350
411
|
required: false,
|
|
351
412
|
skipPrompt: true,
|
|
352
413
|
},
|
|
414
|
+
{
|
|
415
|
+
type: 'text',
|
|
416
|
+
name: 'resourceInstallationsTableId',
|
|
417
|
+
message: 'resourceInstallationsTableId',
|
|
418
|
+
required: false,
|
|
419
|
+
skipPrompt: true,
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
type: 'text',
|
|
423
|
+
name: 'resourceInstallationsTableName',
|
|
424
|
+
message: 'resourceInstallationsTableName',
|
|
425
|
+
required: false,
|
|
426
|
+
skipPrompt: true,
|
|
427
|
+
},
|
|
353
428
|
{
|
|
354
429
|
type: 'text',
|
|
355
430
|
name: 'resourceStatusChecksTableId',
|
|
@@ -364,6 +439,34 @@ async function handleCreate(argv, prompter) {
|
|
|
364
439
|
required: false,
|
|
365
440
|
skipPrompt: true,
|
|
366
441
|
},
|
|
442
|
+
{
|
|
443
|
+
type: 'text',
|
|
444
|
+
name: 'resourceUsageLogTableId',
|
|
445
|
+
message: 'resourceUsageLogTableId',
|
|
446
|
+
required: false,
|
|
447
|
+
skipPrompt: true,
|
|
448
|
+
},
|
|
449
|
+
{
|
|
450
|
+
type: 'text',
|
|
451
|
+
name: 'resourceUsageLogTableName',
|
|
452
|
+
message: 'resourceUsageLogTableName',
|
|
453
|
+
required: false,
|
|
454
|
+
skipPrompt: true,
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
type: 'text',
|
|
458
|
+
name: 'resourceUsageSummaryTableId',
|
|
459
|
+
message: 'resourceUsageSummaryTableId',
|
|
460
|
+
required: false,
|
|
461
|
+
skipPrompt: true,
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
type: 'text',
|
|
465
|
+
name: 'resourceUsageSummaryTableName',
|
|
466
|
+
message: 'resourceUsageSummaryTableName',
|
|
467
|
+
required: false,
|
|
468
|
+
skipPrompt: true,
|
|
469
|
+
},
|
|
367
470
|
{
|
|
368
471
|
type: 'text',
|
|
369
472
|
name: 'resourcesTableId',
|
|
@@ -378,6 +481,13 @@ async function handleCreate(argv, prompter) {
|
|
|
378
481
|
required: false,
|
|
379
482
|
skipPrompt: true,
|
|
380
483
|
},
|
|
484
|
+
{
|
|
485
|
+
type: 'text',
|
|
486
|
+
name: 'rollupResourceUsageSummaryFunction',
|
|
487
|
+
message: 'rollupResourceUsageSummaryFunction',
|
|
488
|
+
required: false,
|
|
489
|
+
skipPrompt: true,
|
|
490
|
+
},
|
|
381
491
|
{
|
|
382
492
|
type: 'text',
|
|
383
493
|
name: 'schemaId',
|
|
@@ -404,6 +514,8 @@ async function handleCreate(argv, prompter) {
|
|
|
404
514
|
defaultPermissions: cleanedData.defaultPermissions,
|
|
405
515
|
entityField: cleanedData.entityField,
|
|
406
516
|
entityTableId: cleanedData.entityTableId,
|
|
517
|
+
installationStoreName: cleanedData.installationStoreName,
|
|
518
|
+
merkleStoreModuleId: cleanedData.merkleStoreModuleId,
|
|
407
519
|
namespaceModuleId: cleanedData.namespaceModuleId,
|
|
408
520
|
policies: cleanedData.policies,
|
|
409
521
|
prefix: cleanedData.prefix,
|
|
@@ -414,14 +526,22 @@ async function handleCreate(argv, prompter) {
|
|
|
414
526
|
publicSchemaName: cleanedData.publicSchemaName,
|
|
415
527
|
requirementsStateViewName: cleanedData.requirementsStateViewName,
|
|
416
528
|
resolvedRequirementsViewName: cleanedData.resolvedRequirementsViewName,
|
|
529
|
+
resourceBillingRollupFunction: cleanedData.resourceBillingRollupFunction,
|
|
417
530
|
resourceDefinitionsTableId: cleanedData.resourceDefinitionsTableId,
|
|
418
531
|
resourceDefinitionsTableName: cleanedData.resourceDefinitionsTableName,
|
|
419
532
|
resourceEventsTableId: cleanedData.resourceEventsTableId,
|
|
420
533
|
resourceEventsTableName: cleanedData.resourceEventsTableName,
|
|
534
|
+
resourceInstallationsTableId: cleanedData.resourceInstallationsTableId,
|
|
535
|
+
resourceInstallationsTableName: cleanedData.resourceInstallationsTableName,
|
|
421
536
|
resourceStatusChecksTableId: cleanedData.resourceStatusChecksTableId,
|
|
422
537
|
resourceStatusChecksTableName: cleanedData.resourceStatusChecksTableName,
|
|
538
|
+
resourceUsageLogTableId: cleanedData.resourceUsageLogTableId,
|
|
539
|
+
resourceUsageLogTableName: cleanedData.resourceUsageLogTableName,
|
|
540
|
+
resourceUsageSummaryTableId: cleanedData.resourceUsageSummaryTableId,
|
|
541
|
+
resourceUsageSummaryTableName: cleanedData.resourceUsageSummaryTableName,
|
|
423
542
|
resourcesTableId: cleanedData.resourcesTableId,
|
|
424
543
|
resourcesTableName: cleanedData.resourcesTableName,
|
|
544
|
+
rollupResourceUsageSummaryFunction: cleanedData.rollupResourceUsageSummaryFunction,
|
|
425
545
|
schemaId: cleanedData.schemaId,
|
|
426
546
|
scope: cleanedData.scope,
|
|
427
547
|
},
|
|
@@ -432,6 +552,8 @@ async function handleCreate(argv, prompter) {
|
|
|
432
552
|
entityField: true,
|
|
433
553
|
entityTableId: true,
|
|
434
554
|
id: true,
|
|
555
|
+
installationStoreName: true,
|
|
556
|
+
merkleStoreModuleId: true,
|
|
435
557
|
namespaceModuleId: true,
|
|
436
558
|
policies: true,
|
|
437
559
|
prefix: true,
|
|
@@ -442,14 +564,22 @@ async function handleCreate(argv, prompter) {
|
|
|
442
564
|
publicSchemaName: true,
|
|
443
565
|
requirementsStateViewName: true,
|
|
444
566
|
resolvedRequirementsViewName: true,
|
|
567
|
+
resourceBillingRollupFunction: true,
|
|
445
568
|
resourceDefinitionsTableId: true,
|
|
446
569
|
resourceDefinitionsTableName: true,
|
|
447
570
|
resourceEventsTableId: true,
|
|
448
571
|
resourceEventsTableName: true,
|
|
572
|
+
resourceInstallationsTableId: true,
|
|
573
|
+
resourceInstallationsTableName: true,
|
|
449
574
|
resourceStatusChecksTableId: true,
|
|
450
575
|
resourceStatusChecksTableName: true,
|
|
576
|
+
resourceUsageLogTableId: true,
|
|
577
|
+
resourceUsageLogTableName: true,
|
|
578
|
+
resourceUsageSummaryTableId: true,
|
|
579
|
+
resourceUsageSummaryTableName: true,
|
|
451
580
|
resourcesTableId: true,
|
|
452
581
|
resourcesTableName: true,
|
|
582
|
+
rollupResourceUsageSummaryFunction: true,
|
|
453
583
|
schemaId: true,
|
|
454
584
|
scope: true,
|
|
455
585
|
},
|
|
@@ -508,6 +638,20 @@ async function handleUpdate(argv, prompter) {
|
|
|
508
638
|
required: false,
|
|
509
639
|
skipPrompt: true,
|
|
510
640
|
},
|
|
641
|
+
{
|
|
642
|
+
type: 'text',
|
|
643
|
+
name: 'installationStoreName',
|
|
644
|
+
message: 'installationStoreName',
|
|
645
|
+
required: false,
|
|
646
|
+
skipPrompt: true,
|
|
647
|
+
},
|
|
648
|
+
{
|
|
649
|
+
type: 'text',
|
|
650
|
+
name: 'merkleStoreModuleId',
|
|
651
|
+
message: 'merkleStoreModuleId',
|
|
652
|
+
required: false,
|
|
653
|
+
skipPrompt: true,
|
|
654
|
+
},
|
|
511
655
|
{
|
|
512
656
|
type: 'text',
|
|
513
657
|
name: 'namespaceModuleId',
|
|
@@ -578,6 +722,13 @@ async function handleUpdate(argv, prompter) {
|
|
|
578
722
|
required: false,
|
|
579
723
|
skipPrompt: true,
|
|
580
724
|
},
|
|
725
|
+
{
|
|
726
|
+
type: 'text',
|
|
727
|
+
name: 'resourceBillingRollupFunction',
|
|
728
|
+
message: 'resourceBillingRollupFunction',
|
|
729
|
+
required: false,
|
|
730
|
+
skipPrompt: true,
|
|
731
|
+
},
|
|
581
732
|
{
|
|
582
733
|
type: 'text',
|
|
583
734
|
name: 'resourceDefinitionsTableId',
|
|
@@ -606,6 +757,20 @@ async function handleUpdate(argv, prompter) {
|
|
|
606
757
|
required: false,
|
|
607
758
|
skipPrompt: true,
|
|
608
759
|
},
|
|
760
|
+
{
|
|
761
|
+
type: 'text',
|
|
762
|
+
name: 'resourceInstallationsTableId',
|
|
763
|
+
message: 'resourceInstallationsTableId',
|
|
764
|
+
required: false,
|
|
765
|
+
skipPrompt: true,
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
type: 'text',
|
|
769
|
+
name: 'resourceInstallationsTableName',
|
|
770
|
+
message: 'resourceInstallationsTableName',
|
|
771
|
+
required: false,
|
|
772
|
+
skipPrompt: true,
|
|
773
|
+
},
|
|
609
774
|
{
|
|
610
775
|
type: 'text',
|
|
611
776
|
name: 'resourceStatusChecksTableId',
|
|
@@ -620,6 +785,34 @@ async function handleUpdate(argv, prompter) {
|
|
|
620
785
|
required: false,
|
|
621
786
|
skipPrompt: true,
|
|
622
787
|
},
|
|
788
|
+
{
|
|
789
|
+
type: 'text',
|
|
790
|
+
name: 'resourceUsageLogTableId',
|
|
791
|
+
message: 'resourceUsageLogTableId',
|
|
792
|
+
required: false,
|
|
793
|
+
skipPrompt: true,
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
type: 'text',
|
|
797
|
+
name: 'resourceUsageLogTableName',
|
|
798
|
+
message: 'resourceUsageLogTableName',
|
|
799
|
+
required: false,
|
|
800
|
+
skipPrompt: true,
|
|
801
|
+
},
|
|
802
|
+
{
|
|
803
|
+
type: 'text',
|
|
804
|
+
name: 'resourceUsageSummaryTableId',
|
|
805
|
+
message: 'resourceUsageSummaryTableId',
|
|
806
|
+
required: false,
|
|
807
|
+
skipPrompt: true,
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
type: 'text',
|
|
811
|
+
name: 'resourceUsageSummaryTableName',
|
|
812
|
+
message: 'resourceUsageSummaryTableName',
|
|
813
|
+
required: false,
|
|
814
|
+
skipPrompt: true,
|
|
815
|
+
},
|
|
623
816
|
{
|
|
624
817
|
type: 'text',
|
|
625
818
|
name: 'resourcesTableId',
|
|
@@ -634,6 +827,13 @@ async function handleUpdate(argv, prompter) {
|
|
|
634
827
|
required: false,
|
|
635
828
|
skipPrompt: true,
|
|
636
829
|
},
|
|
830
|
+
{
|
|
831
|
+
type: 'text',
|
|
832
|
+
name: 'rollupResourceUsageSummaryFunction',
|
|
833
|
+
message: 'rollupResourceUsageSummaryFunction',
|
|
834
|
+
required: false,
|
|
835
|
+
skipPrompt: true,
|
|
836
|
+
},
|
|
637
837
|
{
|
|
638
838
|
type: 'text',
|
|
639
839
|
name: 'schemaId',
|
|
@@ -663,6 +863,8 @@ async function handleUpdate(argv, prompter) {
|
|
|
663
863
|
defaultPermissions: cleanedData.defaultPermissions,
|
|
664
864
|
entityField: cleanedData.entityField,
|
|
665
865
|
entityTableId: cleanedData.entityTableId,
|
|
866
|
+
installationStoreName: cleanedData.installationStoreName,
|
|
867
|
+
merkleStoreModuleId: cleanedData.merkleStoreModuleId,
|
|
666
868
|
namespaceModuleId: cleanedData.namespaceModuleId,
|
|
667
869
|
policies: cleanedData.policies,
|
|
668
870
|
prefix: cleanedData.prefix,
|
|
@@ -673,14 +875,22 @@ async function handleUpdate(argv, prompter) {
|
|
|
673
875
|
publicSchemaName: cleanedData.publicSchemaName,
|
|
674
876
|
requirementsStateViewName: cleanedData.requirementsStateViewName,
|
|
675
877
|
resolvedRequirementsViewName: cleanedData.resolvedRequirementsViewName,
|
|
878
|
+
resourceBillingRollupFunction: cleanedData.resourceBillingRollupFunction,
|
|
676
879
|
resourceDefinitionsTableId: cleanedData.resourceDefinitionsTableId,
|
|
677
880
|
resourceDefinitionsTableName: cleanedData.resourceDefinitionsTableName,
|
|
678
881
|
resourceEventsTableId: cleanedData.resourceEventsTableId,
|
|
679
882
|
resourceEventsTableName: cleanedData.resourceEventsTableName,
|
|
883
|
+
resourceInstallationsTableId: cleanedData.resourceInstallationsTableId,
|
|
884
|
+
resourceInstallationsTableName: cleanedData.resourceInstallationsTableName,
|
|
680
885
|
resourceStatusChecksTableId: cleanedData.resourceStatusChecksTableId,
|
|
681
886
|
resourceStatusChecksTableName: cleanedData.resourceStatusChecksTableName,
|
|
887
|
+
resourceUsageLogTableId: cleanedData.resourceUsageLogTableId,
|
|
888
|
+
resourceUsageLogTableName: cleanedData.resourceUsageLogTableName,
|
|
889
|
+
resourceUsageSummaryTableId: cleanedData.resourceUsageSummaryTableId,
|
|
890
|
+
resourceUsageSummaryTableName: cleanedData.resourceUsageSummaryTableName,
|
|
682
891
|
resourcesTableId: cleanedData.resourcesTableId,
|
|
683
892
|
resourcesTableName: cleanedData.resourcesTableName,
|
|
893
|
+
rollupResourceUsageSummaryFunction: cleanedData.rollupResourceUsageSummaryFunction,
|
|
684
894
|
schemaId: cleanedData.schemaId,
|
|
685
895
|
scope: cleanedData.scope,
|
|
686
896
|
},
|
|
@@ -691,6 +901,8 @@ async function handleUpdate(argv, prompter) {
|
|
|
691
901
|
entityField: true,
|
|
692
902
|
entityTableId: true,
|
|
693
903
|
id: true,
|
|
904
|
+
installationStoreName: true,
|
|
905
|
+
merkleStoreModuleId: true,
|
|
694
906
|
namespaceModuleId: true,
|
|
695
907
|
policies: true,
|
|
696
908
|
prefix: true,
|
|
@@ -701,14 +913,22 @@ async function handleUpdate(argv, prompter) {
|
|
|
701
913
|
publicSchemaName: true,
|
|
702
914
|
requirementsStateViewName: true,
|
|
703
915
|
resolvedRequirementsViewName: true,
|
|
916
|
+
resourceBillingRollupFunction: true,
|
|
704
917
|
resourceDefinitionsTableId: true,
|
|
705
918
|
resourceDefinitionsTableName: true,
|
|
706
919
|
resourceEventsTableId: true,
|
|
707
920
|
resourceEventsTableName: true,
|
|
921
|
+
resourceInstallationsTableId: true,
|
|
922
|
+
resourceInstallationsTableName: true,
|
|
708
923
|
resourceStatusChecksTableId: true,
|
|
709
924
|
resourceStatusChecksTableName: true,
|
|
925
|
+
resourceUsageLogTableId: true,
|
|
926
|
+
resourceUsageLogTableName: true,
|
|
927
|
+
resourceUsageSummaryTableId: true,
|
|
928
|
+
resourceUsageSummaryTableName: true,
|
|
710
929
|
resourcesTableId: true,
|
|
711
930
|
resourcesTableName: true,
|
|
931
|
+
rollupResourceUsageSummaryFunction: true,
|
|
712
932
|
schemaId: true,
|
|
713
933
|
scope: true,
|
|
714
934
|
},
|