@constructive-sdk/cli 0.29.1 → 0.29.2
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/api/cli/commands/api.js +44 -0
- package/api/cli/commands/check-constraint.js +0 -22
- package/api/cli/commands/composite-type.js +0 -22
- package/api/cli/commands/database-setting.js +44 -0
- package/api/cli/commands/domain.js +66 -0
- package/api/cli/commands/enum.js +0 -22
- package/api/cli/commands/field.js +0 -22
- package/api/cli/commands/foreign-key-constraint.js +0 -22
- package/api/cli/commands/index.js +0 -22
- package/api/cli/commands/policy.js +0 -22
- package/api/cli/commands/primary-key-constraint.js +0 -22
- package/api/cli/commands/schema.js +0 -22
- package/api/cli/commands/site.js +44 -0
- package/api/cli/commands/spatial-relation.js +0 -22
- package/api/cli/commands/table.js +0 -22
- package/api/cli/commands/trigger.js +0 -22
- package/api/cli/commands/unique-constraint.js +0 -22
- package/api/cli/commands/view.js +0 -22
- package/api/orm/input-types.d.ts +144 -171
- package/auth/cli/commands/create-org-api-key.d.ts +8 -0
- package/auth/cli/commands/create-org-api-key.js +36 -0
- package/auth/cli/commands/create-org-principal.d.ts +8 -0
- package/auth/cli/commands/create-org-principal.js +36 -0
- package/auth/cli/commands/delete-org-principal.d.ts +8 -0
- package/auth/cli/commands/delete-org-principal.js +36 -0
- package/auth/cli/commands/org-api-key-list.d.ts +8 -0
- package/auth/cli/commands/org-api-key-list.js +224 -0
- package/auth/cli/commands/principal-entity.d.ts +8 -0
- package/auth/cli/commands/principal-entity.js +282 -0
- package/auth/cli/commands/principal-scope-override.d.ts +8 -0
- package/auth/cli/commands/principal-scope-override.js +171 -0
- package/auth/cli/commands/principal.d.ts +8 -0
- package/auth/cli/commands/principal.js +171 -0
- package/auth/cli/commands/revoke-org-api-key.d.ts +8 -0
- package/auth/cli/commands/revoke-org-api-key.js +36 -0
- package/auth/cli/commands.js +19 -3
- package/auth/cli/executor.d.ts +28 -4
- package/auth/orm/index.d.ts +32 -4
- package/auth/orm/index.js +8 -0
- package/auth/orm/input-types.d.ts +915 -145
- package/auth/orm/input-types.js +7 -0
- package/auth/orm/models/index.d.ts +4 -0
- package/auth/orm/models/index.js +9 -1
- package/auth/orm/models/orgApiKeyList.d.ts +36 -0
- package/auth/orm/models/orgApiKeyList.js +80 -0
- package/auth/orm/models/principal.d.ts +45 -0
- package/auth/orm/models/principal.js +93 -0
- package/auth/orm/models/principalEntity.d.ts +54 -0
- package/auth/orm/models/principalEntity.js +104 -0
- package/auth/orm/models/principalScopeOverride.d.ts +36 -0
- package/auth/orm/models/principalScopeOverride.js +80 -0
- package/auth/orm/mutation/index.d.ts +33 -1
- package/auth/orm/mutation/index.js +48 -0
- package/auth/orm/query/index.d.ts +4 -4
- package/auth/orm/query/index.js +7 -7
- package/compute/cli/commands/function-graph-execution.js +0 -22
- package/compute/cli/commands/function-graph.js +0 -20
- package/compute/cli/commands/platform-namespace-event.d.ts +8 -0
- package/compute/cli/commands/platform-namespace-event.js +510 -0
- package/compute/cli/commands/platform-namespace.d.ts +8 -0
- package/compute/cli/commands/platform-namespace.js +436 -0
- package/compute/cli/commands/resource-event.d.ts +8 -0
- package/compute/cli/commands/resource-event.js +356 -0
- package/compute/cli/commands/resource.d.ts +8 -0
- package/compute/cli/commands/resource.js +520 -0
- package/compute/cli/commands.js +13 -5
- package/compute/cli/executor.d.ts +10 -6
- package/compute/orm/index.d.ts +15 -7
- package/compute/orm/index.js +10 -2
- package/compute/orm/input-types.d.ts +1159 -221
- package/compute/orm/input-types.js +4 -0
- package/compute/orm/models/index.d.ts +5 -1
- package/compute/orm/models/index.js +11 -3
- package/compute/orm/models/platformNamespace.d.ts +54 -0
- package/compute/orm/models/platformNamespace.js +104 -0
- package/compute/orm/models/platformNamespaceEvent.d.ts +56 -0
- package/compute/orm/models/platformNamespaceEvent.js +107 -0
- package/compute/orm/models/resource.d.ts +54 -0
- package/compute/orm/models/resource.js +104 -0
- package/compute/orm/models/resourceEvent.d.ts +56 -0
- package/compute/orm/models/resourceEvent.js +107 -0
- package/compute/orm/mutation/index.d.ts +9 -9
- package/compute/orm/mutation/index.js +12 -12
- package/esm/api/cli/commands/api.js +44 -0
- package/esm/api/cli/commands/check-constraint.js +0 -22
- package/esm/api/cli/commands/composite-type.js +0 -22
- package/esm/api/cli/commands/database-setting.js +44 -0
- package/esm/api/cli/commands/domain.js +66 -0
- package/esm/api/cli/commands/enum.js +0 -22
- package/esm/api/cli/commands/field.js +0 -22
- package/esm/api/cli/commands/foreign-key-constraint.js +0 -22
- package/esm/api/cli/commands/index.js +0 -22
- package/esm/api/cli/commands/policy.js +0 -22
- package/esm/api/cli/commands/primary-key-constraint.js +0 -22
- package/esm/api/cli/commands/schema.js +0 -22
- package/esm/api/cli/commands/site.js +44 -0
- package/esm/api/cli/commands/spatial-relation.js +0 -22
- package/esm/api/cli/commands/table.js +0 -22
- package/esm/api/cli/commands/trigger.js +0 -22
- package/esm/api/cli/commands/unique-constraint.js +0 -22
- package/esm/api/cli/commands/view.js +0 -22
- package/esm/api/orm/input-types.d.ts +144 -171
- package/esm/auth/cli/commands/create-org-api-key.d.ts +8 -0
- package/esm/auth/cli/commands/create-org-api-key.js +34 -0
- package/esm/auth/cli/commands/create-org-principal.d.ts +8 -0
- package/esm/auth/cli/commands/create-org-principal.js +34 -0
- package/esm/auth/cli/commands/delete-org-principal.d.ts +8 -0
- package/esm/auth/cli/commands/delete-org-principal.js +34 -0
- package/esm/auth/cli/commands/org-api-key-list.d.ts +8 -0
- package/esm/auth/cli/commands/org-api-key-list.js +222 -0
- package/esm/auth/cli/commands/principal-entity.d.ts +8 -0
- package/esm/auth/cli/commands/principal-entity.js +280 -0
- package/esm/auth/cli/commands/principal-scope-override.d.ts +8 -0
- package/esm/auth/cli/commands/principal-scope-override.js +169 -0
- package/esm/auth/cli/commands/principal.d.ts +8 -0
- package/esm/auth/cli/commands/principal.js +169 -0
- package/esm/auth/cli/commands/revoke-org-api-key.d.ts +8 -0
- package/esm/auth/cli/commands/revoke-org-api-key.js +34 -0
- package/esm/auth/cli/commands.js +19 -3
- package/esm/auth/cli/executor.d.ts +28 -4
- package/esm/auth/orm/index.d.ts +32 -4
- package/esm/auth/orm/index.js +8 -0
- package/esm/auth/orm/input-types.d.ts +915 -145
- package/esm/auth/orm/input-types.js +7 -0
- package/esm/auth/orm/models/index.d.ts +4 -0
- package/esm/auth/orm/models/index.js +4 -0
- package/esm/auth/orm/models/orgApiKeyList.d.ts +36 -0
- package/esm/auth/orm/models/orgApiKeyList.js +76 -0
- package/esm/auth/orm/models/principal.d.ts +45 -0
- package/esm/auth/orm/models/principal.js +89 -0
- package/esm/auth/orm/models/principalEntity.d.ts +54 -0
- package/esm/auth/orm/models/principalEntity.js +100 -0
- package/esm/auth/orm/models/principalScopeOverride.d.ts +36 -0
- package/esm/auth/orm/models/principalScopeOverride.js +76 -0
- package/esm/auth/orm/mutation/index.d.ts +33 -1
- package/esm/auth/orm/mutation/index.js +48 -0
- package/esm/auth/orm/query/index.d.ts +4 -4
- package/esm/auth/orm/query/index.js +7 -7
- package/esm/compute/cli/commands/function-graph-execution.js +0 -22
- package/esm/compute/cli/commands/function-graph.js +0 -20
- package/esm/compute/cli/commands/platform-namespace-event.d.ts +8 -0
- package/esm/compute/cli/commands/platform-namespace-event.js +508 -0
- package/esm/compute/cli/commands/platform-namespace.d.ts +8 -0
- package/esm/compute/cli/commands/platform-namespace.js +434 -0
- package/esm/compute/cli/commands/resource-event.d.ts +8 -0
- package/esm/compute/cli/commands/resource-event.js +354 -0
- package/esm/compute/cli/commands/resource.d.ts +8 -0
- package/esm/compute/cli/commands/resource.js +518 -0
- package/esm/compute/cli/commands.js +13 -5
- package/esm/compute/cli/executor.d.ts +10 -6
- package/esm/compute/orm/index.d.ts +15 -7
- package/esm/compute/orm/index.js +10 -2
- package/esm/compute/orm/input-types.d.ts +1159 -221
- package/esm/compute/orm/input-types.js +4 -0
- package/esm/compute/orm/models/index.d.ts +5 -1
- package/esm/compute/orm/models/index.js +5 -1
- package/esm/compute/orm/models/platformNamespace.d.ts +54 -0
- package/esm/compute/orm/models/platformNamespace.js +100 -0
- package/esm/compute/orm/models/platformNamespaceEvent.d.ts +56 -0
- package/esm/compute/orm/models/platformNamespaceEvent.js +103 -0
- package/esm/compute/orm/models/resource.d.ts +54 -0
- package/esm/compute/orm/models/resource.js +100 -0
- package/esm/compute/orm/models/resourceEvent.d.ts +56 -0
- package/esm/compute/orm/models/resourceEvent.js +103 -0
- package/esm/compute/orm/mutation/index.d.ts +9 -9
- package/esm/compute/orm/mutation/index.js +12 -12
- package/esm/modules/cli/commands/merkle-store-module.js +22 -0
- package/esm/modules/cli/commands/principal-auth-module.d.ts +8 -0
- package/esm/modules/cli/commands/principal-auth-module.js +580 -0
- package/esm/modules/cli/commands/resource-module.d.ts +8 -0
- package/esm/modules/cli/commands/resource-module.js +602 -0
- package/esm/modules/cli/commands.js +9 -5
- package/esm/modules/cli/executor.d.ts +4 -2
- package/esm/modules/orm/index.d.ts +8 -4
- package/esm/modules/orm/index.js +8 -4
- package/esm/modules/orm/input-types.d.ts +868 -411
- package/esm/modules/orm/models/index.d.ts +4 -2
- package/esm/modules/orm/models/index.js +4 -2
- package/esm/modules/orm/models/principalAuthModule.d.ts +54 -0
- package/esm/modules/orm/models/principalAuthModule.js +100 -0
- package/esm/modules/orm/models/resourceModule.d.ts +54 -0
- package/esm/modules/orm/models/resourceModule.js +100 -0
- package/modules/cli/commands/merkle-store-module.js +22 -0
- package/modules/cli/commands/principal-auth-module.d.ts +8 -0
- package/modules/cli/commands/principal-auth-module.js +582 -0
- package/modules/cli/commands/resource-module.d.ts +8 -0
- package/modules/cli/commands/resource-module.js +604 -0
- package/modules/cli/commands.js +9 -5
- package/modules/cli/executor.d.ts +4 -2
- package/modules/orm/index.d.ts +8 -4
- package/modules/orm/index.js +8 -4
- package/modules/orm/input-types.d.ts +868 -411
- package/modules/orm/models/index.d.ts +4 -2
- package/modules/orm/models/index.js +10 -6
- package/modules/orm/models/principalAuthModule.d.ts +54 -0
- package/modules/orm/models/principalAuthModule.js +104 -0
- package/modules/orm/models/resourceModule.d.ts +54 -0
- package/modules/orm/models/resourceModule.js +104 -0
- package/package.json +4 -4
|
@@ -2,19 +2,23 @@ import type { OrmClientConfig } from './client';
|
|
|
2
2
|
import { GetAllRecordModel } from './models/getAllRecord';
|
|
3
3
|
import { FunctionApiBindingModel } from './models/functionApiBinding';
|
|
4
4
|
import { FunctionDeploymentModel } from './models/functionDeployment';
|
|
5
|
+
import { ResourceModel } from './models/resource';
|
|
5
6
|
import { FunctionGraphRefModel } from './models/functionGraphRef';
|
|
6
7
|
import { FunctionGraphStoreModel } from './models/functionGraphStore';
|
|
7
8
|
import { FunctionGraphObjectModel } from './models/functionGraphObject';
|
|
8
9
|
import { FunctionDeploymentEventModel } from './models/functionDeploymentEvent';
|
|
9
10
|
import { OrgFunctionExecutionLogModel } from './models/orgFunctionExecutionLog';
|
|
11
|
+
import { ResourceEventModel } from './models/resourceEvent';
|
|
10
12
|
import { FunctionGraphExecutionOutputModel } from './models/functionGraphExecutionOutput';
|
|
11
13
|
import { FunctionGraphCommitModel } from './models/functionGraphCommit';
|
|
12
14
|
import { SecretDefinitionModel } from './models/secretDefinition';
|
|
13
15
|
import { FunctionExecutionLogModel } from './models/functionExecutionLog';
|
|
14
|
-
import { FunctionGraphExecutionNodeStateModel } from './models/functionGraphExecutionNodeState';
|
|
15
16
|
import { FunctionGraphModel } from './models/functionGraph';
|
|
17
|
+
import { FunctionGraphExecutionNodeStateModel } from './models/functionGraphExecutionNodeState';
|
|
18
|
+
import { PlatformNamespaceModel } from './models/platformNamespace';
|
|
16
19
|
import { OrgFunctionInvocationModel } from './models/orgFunctionInvocation';
|
|
17
20
|
import { FunctionInvocationModel } from './models/functionInvocation';
|
|
21
|
+
import { PlatformNamespaceEventModel } from './models/platformNamespaceEvent';
|
|
18
22
|
import { FunctionGraphExecutionModel } from './models/functionGraphExecution';
|
|
19
23
|
import { FunctionDefinitionModel } from './models/functionDefinition';
|
|
20
24
|
export type { OrmClientConfig, QueryResult, GraphQLError, GraphQLAdapter } from './client';
|
|
@@ -51,19 +55,23 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
51
55
|
getAllRecord: GetAllRecordModel;
|
|
52
56
|
functionApiBinding: FunctionApiBindingModel;
|
|
53
57
|
functionDeployment: FunctionDeploymentModel;
|
|
58
|
+
resource: ResourceModel;
|
|
54
59
|
functionGraphRef: FunctionGraphRefModel;
|
|
55
60
|
functionGraphStore: FunctionGraphStoreModel;
|
|
56
61
|
functionGraphObject: FunctionGraphObjectModel;
|
|
57
62
|
functionDeploymentEvent: FunctionDeploymentEventModel;
|
|
58
63
|
orgFunctionExecutionLog: OrgFunctionExecutionLogModel;
|
|
64
|
+
resourceEvent: ResourceEventModel;
|
|
59
65
|
functionGraphExecutionOutput: FunctionGraphExecutionOutputModel;
|
|
60
66
|
functionGraphCommit: FunctionGraphCommitModel;
|
|
61
67
|
secretDefinition: SecretDefinitionModel;
|
|
62
68
|
functionExecutionLog: FunctionExecutionLogModel;
|
|
63
|
-
functionGraphExecutionNodeState: FunctionGraphExecutionNodeStateModel;
|
|
64
69
|
functionGraph: FunctionGraphModel;
|
|
70
|
+
functionGraphExecutionNodeState: FunctionGraphExecutionNodeStateModel;
|
|
71
|
+
platformNamespace: PlatformNamespaceModel;
|
|
65
72
|
orgFunctionInvocation: OrgFunctionInvocationModel;
|
|
66
73
|
functionInvocation: FunctionInvocationModel;
|
|
74
|
+
platformNamespaceEvent: PlatformNamespaceEventModel;
|
|
67
75
|
functionGraphExecution: FunctionGraphExecutionModel;
|
|
68
76
|
functionDefinition: FunctionDefinitionModel;
|
|
69
77
|
query: {
|
|
@@ -114,6 +122,11 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
114
122
|
} & import("./select-types").StrictSelect<S, import("./input-types").AddNodeAndSavePayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
115
123
|
addNodeAndSave: import("./select-types").InferSelectResult<import("./input-types").AddNodeAndSavePayload, S> | null;
|
|
116
124
|
}>;
|
|
125
|
+
importGraphJson: <S extends import("./input-types").ImportGraphJsonPayloadSelect>(args: import("./mutation").ImportGraphJsonVariables, options: {
|
|
126
|
+
select: S;
|
|
127
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").ImportGraphJsonPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
128
|
+
importGraphJson: import("./select-types").InferSelectResult<import("./input-types").ImportGraphJsonPayload, S> | null;
|
|
129
|
+
}>;
|
|
117
130
|
addEdge: <S extends import("./input-types").AddEdgePayloadSelect>(args: import("./mutation").AddEdgeVariables, options: {
|
|
118
131
|
select: S;
|
|
119
132
|
} & import("./select-types").StrictSelect<S, import("./input-types").AddEdgePayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
@@ -124,11 +137,6 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
124
137
|
} & import("./select-types").StrictSelect<S, import("./input-types").AddNodePayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
125
138
|
addNode: import("./select-types").InferSelectResult<import("./input-types").AddNodePayload, S> | null;
|
|
126
139
|
}>;
|
|
127
|
-
importGraphJson: <S extends import("./input-types").ImportGraphJsonPayloadSelect>(args: import("./mutation").ImportGraphJsonVariables, options: {
|
|
128
|
-
select: S;
|
|
129
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").ImportGraphJsonPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
130
|
-
importGraphJson: import("./select-types").InferSelectResult<import("./input-types").ImportGraphJsonPayload, S> | null;
|
|
131
|
-
}>;
|
|
132
140
|
insertNodeAtPath: <S extends import("./input-types").InsertNodeAtPathPayloadSelect>(args: import("./mutation").InsertNodeAtPathVariables, options: {
|
|
133
141
|
select: S;
|
|
134
142
|
} & import("./select-types").StrictSelect<S, import("./input-types").InsertNodeAtPathPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
package/esm/compute/orm/index.js
CHANGED
|
@@ -7,19 +7,23 @@ import { OrmClient } from './client';
|
|
|
7
7
|
import { GetAllRecordModel } from './models/getAllRecord';
|
|
8
8
|
import { FunctionApiBindingModel } from './models/functionApiBinding';
|
|
9
9
|
import { FunctionDeploymentModel } from './models/functionDeployment';
|
|
10
|
+
import { ResourceModel } from './models/resource';
|
|
10
11
|
import { FunctionGraphRefModel } from './models/functionGraphRef';
|
|
11
12
|
import { FunctionGraphStoreModel } from './models/functionGraphStore';
|
|
12
13
|
import { FunctionGraphObjectModel } from './models/functionGraphObject';
|
|
13
14
|
import { FunctionDeploymentEventModel } from './models/functionDeploymentEvent';
|
|
14
15
|
import { OrgFunctionExecutionLogModel } from './models/orgFunctionExecutionLog';
|
|
16
|
+
import { ResourceEventModel } from './models/resourceEvent';
|
|
15
17
|
import { FunctionGraphExecutionOutputModel } from './models/functionGraphExecutionOutput';
|
|
16
18
|
import { FunctionGraphCommitModel } from './models/functionGraphCommit';
|
|
17
19
|
import { SecretDefinitionModel } from './models/secretDefinition';
|
|
18
20
|
import { FunctionExecutionLogModel } from './models/functionExecutionLog';
|
|
19
|
-
import { FunctionGraphExecutionNodeStateModel } from './models/functionGraphExecutionNodeState';
|
|
20
21
|
import { FunctionGraphModel } from './models/functionGraph';
|
|
22
|
+
import { FunctionGraphExecutionNodeStateModel } from './models/functionGraphExecutionNodeState';
|
|
23
|
+
import { PlatformNamespaceModel } from './models/platformNamespace';
|
|
21
24
|
import { OrgFunctionInvocationModel } from './models/orgFunctionInvocation';
|
|
22
25
|
import { FunctionInvocationModel } from './models/functionInvocation';
|
|
26
|
+
import { PlatformNamespaceEventModel } from './models/platformNamespaceEvent';
|
|
23
27
|
import { FunctionGraphExecutionModel } from './models/functionGraphExecution';
|
|
24
28
|
import { FunctionDefinitionModel } from './models/functionDefinition';
|
|
25
29
|
import { createQueryOperations } from './query';
|
|
@@ -59,19 +63,23 @@ export function createClient(config) {
|
|
|
59
63
|
getAllRecord: new GetAllRecordModel(client),
|
|
60
64
|
functionApiBinding: new FunctionApiBindingModel(client),
|
|
61
65
|
functionDeployment: new FunctionDeploymentModel(client),
|
|
66
|
+
resource: new ResourceModel(client),
|
|
62
67
|
functionGraphRef: new FunctionGraphRefModel(client),
|
|
63
68
|
functionGraphStore: new FunctionGraphStoreModel(client),
|
|
64
69
|
functionGraphObject: new FunctionGraphObjectModel(client),
|
|
65
70
|
functionDeploymentEvent: new FunctionDeploymentEventModel(client),
|
|
66
71
|
orgFunctionExecutionLog: new OrgFunctionExecutionLogModel(client),
|
|
72
|
+
resourceEvent: new ResourceEventModel(client),
|
|
67
73
|
functionGraphExecutionOutput: new FunctionGraphExecutionOutputModel(client),
|
|
68
74
|
functionGraphCommit: new FunctionGraphCommitModel(client),
|
|
69
75
|
secretDefinition: new SecretDefinitionModel(client),
|
|
70
76
|
functionExecutionLog: new FunctionExecutionLogModel(client),
|
|
71
|
-
functionGraphExecutionNodeState: new FunctionGraphExecutionNodeStateModel(client),
|
|
72
77
|
functionGraph: new FunctionGraphModel(client),
|
|
78
|
+
functionGraphExecutionNodeState: new FunctionGraphExecutionNodeStateModel(client),
|
|
79
|
+
platformNamespace: new PlatformNamespaceModel(client),
|
|
73
80
|
orgFunctionInvocation: new OrgFunctionInvocationModel(client),
|
|
74
81
|
functionInvocation: new FunctionInvocationModel(client),
|
|
82
|
+
platformNamespaceEvent: new PlatformNamespaceEventModel(client),
|
|
75
83
|
functionGraphExecution: new FunctionGraphExecutionModel(client),
|
|
76
84
|
functionDefinition: new FunctionDefinitionModel(client),
|
|
77
85
|
query: createQueryOperations(client),
|