@constructive-io/sdk 0.29.8 → 0.30.1
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/README.md +1 -0
- package/agent/orm/input-types.d.ts +96 -8
- package/api/orm/index.d.ts +5 -15
- package/api/orm/index.js +2 -2
- package/api/orm/input-types.d.ts +250 -231
- package/api/orm/models/index.d.ts +1 -1
- package/api/orm/models/index.js +3 -3
- package/api/orm/mutation/index.d.ts +11 -36
- package/api/orm/mutation/index.js +6 -30
- package/auth/orm/index.d.ts +10 -5
- package/auth/orm/input-types.d.ts +54 -45
- package/auth/orm/models/principal.d.ts +1 -10
- package/auth/orm/models/principal.js +0 -13
- package/auth/orm/mutation/index.d.ts +17 -9
- package/auth/orm/mutation/index.js +24 -12
- package/compute/orm/index.d.ts +76 -17
- package/compute/orm/index.js +56 -12
- package/compute/orm/input-types.d.ts +5893 -1343
- package/compute/orm/input-types.js +17 -3
- package/compute/orm/models/dbPreset.d.ts +54 -0
- package/compute/orm/models/dbPreset.js +104 -0
- package/compute/orm/models/functionGraphCommit.d.ts +2 -2
- package/compute/orm/models/functionGraphCommit.js +2 -2
- package/compute/orm/models/functionGraphObject.d.ts +2 -2
- package/compute/orm/models/functionGraphObject.js +2 -2
- package/compute/orm/models/functionGraphRef.d.ts +2 -2
- package/compute/orm/models/functionGraphRef.js +2 -2
- package/compute/orm/models/index.d.ts +28 -6
- package/compute/orm/models/index.js +57 -13
- package/compute/orm/models/infraCommit.d.ts +56 -0
- package/compute/orm/models/infraCommit.js +107 -0
- package/compute/orm/models/infraGetAllRecord.d.ts +30 -0
- package/compute/orm/models/infraGetAllRecord.js +59 -0
- package/compute/orm/models/infraObject.d.ts +56 -0
- package/compute/orm/models/infraObject.js +97 -0
- package/compute/orm/models/infraRef.d.ts +56 -0
- package/compute/orm/models/infraRef.js +107 -0
- package/compute/orm/models/infraStore.d.ts +54 -0
- package/compute/orm/models/infraStore.js +104 -0
- package/compute/orm/models/integrationProvider.d.ts +54 -0
- package/{modules/orm/models/configSecretsModule.js → compute/orm/models/integrationProvider.js} +27 -27
- package/compute/orm/models/namespace.d.ts +54 -0
- package/compute/orm/models/namespace.js +104 -0
- package/compute/orm/models/namespaceEvent.d.ts +56 -0
- package/compute/orm/models/{orgFunctionExecutionLog.js → namespaceEvent.js} +27 -27
- package/compute/orm/models/platformFunctionApiBinding.d.ts +54 -0
- package/compute/orm/models/platformFunctionApiBinding.js +104 -0
- package/compute/orm/models/platformFunctionDefinition.d.ts +54 -0
- package/compute/orm/models/platformFunctionDefinition.js +104 -0
- package/compute/orm/models/platformFunctionDeployment.d.ts +54 -0
- package/compute/orm/models/platformFunctionDeployment.js +104 -0
- package/compute/orm/models/platformFunctionDeploymentEvent.d.ts +56 -0
- package/compute/orm/models/platformFunctionDeploymentEvent.js +107 -0
- package/compute/orm/models/platformFunctionExecutionLog.d.ts +56 -0
- package/compute/orm/models/platformFunctionExecutionLog.js +107 -0
- package/compute/orm/models/platformFunctionInvocation.d.ts +56 -0
- package/compute/orm/models/platformFunctionInvocation.js +107 -0
- package/compute/orm/models/platformResource.d.ts +54 -0
- package/compute/orm/models/{secretDefinition.js → platformResource.js} +27 -27
- package/compute/orm/models/platformResourceDefinition.d.ts +54 -0
- package/compute/orm/models/platformResourceDefinition.js +104 -0
- package/compute/orm/models/platformResourceEvent.d.ts +56 -0
- package/compute/orm/models/{orgFunctionInvocation.js → platformResourceEvent.js} +27 -27
- package/compute/orm/models/platformResourceStatusCheck.d.ts +54 -0
- package/compute/orm/models/platformResourceStatusCheck.js +104 -0
- package/compute/orm/models/platformResourcesRequirementsState.d.ts +30 -0
- package/compute/orm/models/platformResourcesRequirementsState.js +59 -0
- package/compute/orm/models/platformResourcesResolvedRequirement.d.ts +30 -0
- package/compute/orm/models/platformResourcesResolvedRequirement.js +59 -0
- package/compute/orm/models/resourceDefinition.d.ts +54 -0
- package/compute/orm/models/resourceDefinition.js +104 -0
- package/compute/orm/models/resourceStatusCheck.d.ts +54 -0
- package/compute/orm/models/resourceStatusCheck.js +104 -0
- package/compute/orm/models/resourcesRequirementsState.d.ts +30 -0
- package/compute/orm/models/resourcesRequirementsState.js +59 -0
- package/compute/orm/models/resourcesResolvedRequirement.d.ts +30 -0
- package/compute/orm/models/resourcesResolvedRequirement.js +59 -0
- package/compute/orm/mutation/index.d.ts +33 -9
- package/compute/orm/mutation/index.js +48 -12
- package/config/orm/index.d.ts +42 -16
- package/config/orm/index.js +8 -2
- package/config/orm/input-types.d.ts +595 -154
- package/config/orm/models/config.d.ts +54 -0
- package/{modules/orm/models/configSecretsOrgModule.js → config/orm/models/config.js} +27 -27
- package/config/orm/models/index.d.ts +4 -1
- package/config/orm/models/index.js +9 -3
- package/config/orm/models/platformInternalSecret.d.ts +36 -0
- package/config/orm/models/platformInternalSecret.js +80 -0
- package/config/orm/models/platformSecret.d.ts +36 -0
- package/config/orm/models/platformSecret.js +80 -0
- package/config/orm/models/secret.d.ts +36 -0
- package/config/orm/models/secret.js +80 -0
- package/config/orm/mutation/index.d.ts +56 -24
- package/config/orm/mutation/index.js +78 -30
- package/esm/agent/orm/input-types.d.ts +96 -8
- package/esm/api/orm/index.d.ts +5 -15
- package/esm/api/orm/index.js +2 -2
- package/esm/api/orm/input-types.d.ts +250 -231
- package/esm/api/orm/models/index.d.ts +1 -1
- package/esm/api/orm/models/index.js +1 -1
- package/esm/api/orm/mutation/index.d.ts +11 -36
- package/esm/api/orm/mutation/index.js +6 -30
- package/esm/auth/orm/index.d.ts +10 -5
- package/esm/auth/orm/input-types.d.ts +54 -45
- package/esm/auth/orm/models/principal.d.ts +1 -10
- package/esm/auth/orm/models/principal.js +1 -14
- package/esm/auth/orm/mutation/index.d.ts +17 -9
- package/esm/auth/orm/mutation/index.js +24 -12
- package/esm/compute/orm/index.d.ts +76 -17
- package/esm/compute/orm/index.js +56 -12
- package/esm/compute/orm/input-types.d.ts +5893 -1343
- package/esm/compute/orm/input-types.js +17 -3
- package/esm/compute/orm/models/dbPreset.d.ts +54 -0
- package/esm/compute/orm/models/dbPreset.js +100 -0
- package/esm/compute/orm/models/functionGraphCommit.d.ts +2 -2
- package/esm/compute/orm/models/functionGraphCommit.js +2 -2
- package/esm/compute/orm/models/functionGraphObject.d.ts +2 -2
- package/esm/compute/orm/models/functionGraphObject.js +2 -2
- package/esm/compute/orm/models/functionGraphRef.d.ts +2 -2
- package/esm/compute/orm/models/functionGraphRef.js +2 -2
- package/esm/compute/orm/models/index.d.ts +28 -6
- package/esm/compute/orm/models/index.js +28 -6
- package/esm/compute/orm/models/infraCommit.d.ts +56 -0
- package/esm/compute/orm/models/infraCommit.js +103 -0
- package/esm/compute/orm/models/infraGetAllRecord.d.ts +30 -0
- package/esm/compute/orm/models/infraGetAllRecord.js +55 -0
- package/esm/compute/orm/models/infraObject.d.ts +56 -0
- package/esm/compute/orm/models/infraObject.js +93 -0
- package/esm/compute/orm/models/infraRef.d.ts +56 -0
- package/esm/compute/orm/models/infraRef.js +103 -0
- package/esm/compute/orm/models/infraStore.d.ts +54 -0
- package/esm/compute/orm/models/infraStore.js +100 -0
- package/esm/compute/orm/models/integrationProvider.d.ts +54 -0
- package/esm/compute/orm/models/integrationProvider.js +100 -0
- package/esm/compute/orm/models/namespace.d.ts +54 -0
- package/esm/compute/orm/models/namespace.js +100 -0
- package/esm/compute/orm/models/namespaceEvent.d.ts +56 -0
- package/esm/compute/orm/models/{orgFunctionExecutionLog.js → namespaceEvent.js} +25 -25
- package/esm/compute/orm/models/platformFunctionApiBinding.d.ts +54 -0
- package/esm/compute/orm/models/platformFunctionApiBinding.js +100 -0
- package/esm/compute/orm/models/platformFunctionDefinition.d.ts +54 -0
- package/esm/compute/orm/models/platformFunctionDefinition.js +100 -0
- package/esm/compute/orm/models/platformFunctionDeployment.d.ts +54 -0
- package/esm/compute/orm/models/platformFunctionDeployment.js +100 -0
- package/esm/compute/orm/models/platformFunctionDeploymentEvent.d.ts +56 -0
- package/esm/compute/orm/models/platformFunctionDeploymentEvent.js +103 -0
- package/esm/compute/orm/models/platformFunctionExecutionLog.d.ts +56 -0
- package/esm/compute/orm/models/platformFunctionExecutionLog.js +103 -0
- package/esm/compute/orm/models/platformFunctionInvocation.d.ts +56 -0
- package/esm/compute/orm/models/platformFunctionInvocation.js +103 -0
- package/esm/compute/orm/models/platformResource.d.ts +54 -0
- package/esm/compute/orm/models/{secretDefinition.js → platformResource.js} +25 -25
- package/esm/compute/orm/models/platformResourceDefinition.d.ts +54 -0
- package/esm/compute/orm/models/platformResourceDefinition.js +100 -0
- package/esm/compute/orm/models/platformResourceEvent.d.ts +56 -0
- package/esm/compute/orm/models/{orgFunctionInvocation.js → platformResourceEvent.js} +25 -25
- package/esm/compute/orm/models/platformResourceStatusCheck.d.ts +54 -0
- package/esm/compute/orm/models/platformResourceStatusCheck.js +100 -0
- package/esm/compute/orm/models/platformResourcesRequirementsState.d.ts +30 -0
- package/esm/compute/orm/models/platformResourcesRequirementsState.js +55 -0
- package/esm/compute/orm/models/platformResourcesResolvedRequirement.d.ts +30 -0
- package/esm/compute/orm/models/platformResourcesResolvedRequirement.js +55 -0
- package/esm/compute/orm/models/resourceDefinition.d.ts +54 -0
- package/esm/{modules/orm/models/configSecretsOrgModule.js → compute/orm/models/resourceDefinition.js} +25 -25
- package/esm/compute/orm/models/resourceStatusCheck.d.ts +54 -0
- package/esm/compute/orm/models/resourceStatusCheck.js +100 -0
- package/esm/compute/orm/models/resourcesRequirementsState.d.ts +30 -0
- package/esm/compute/orm/models/resourcesRequirementsState.js +55 -0
- package/esm/compute/orm/models/resourcesResolvedRequirement.d.ts +30 -0
- package/esm/compute/orm/models/resourcesResolvedRequirement.js +55 -0
- package/esm/compute/orm/mutation/index.d.ts +33 -9
- package/esm/compute/orm/mutation/index.js +48 -12
- package/esm/config/orm/index.d.ts +42 -16
- package/esm/config/orm/index.js +8 -2
- package/esm/config/orm/input-types.d.ts +595 -154
- package/esm/config/orm/models/config.d.ts +54 -0
- package/esm/{modules/orm/models/configSecretsModule.js → config/orm/models/config.js} +25 -25
- package/esm/config/orm/models/index.d.ts +4 -1
- package/esm/config/orm/models/index.js +4 -1
- package/esm/config/orm/models/platformInternalSecret.d.ts +36 -0
- package/esm/config/orm/models/platformInternalSecret.js +76 -0
- package/esm/config/orm/models/platformSecret.d.ts +36 -0
- package/esm/config/orm/models/platformSecret.js +76 -0
- package/esm/config/orm/models/secret.d.ts +36 -0
- package/esm/config/orm/models/secret.js +76 -0
- package/esm/config/orm/mutation/index.d.ts +56 -24
- package/esm/config/orm/mutation/index.js +78 -30
- package/esm/index.d.ts +1 -0
- package/esm/index.js +1 -0
- package/esm/infra/index.d.ts +5 -0
- package/esm/infra/index.js +5 -0
- package/esm/infra/orm/client.d.ts +97 -0
- package/esm/infra/orm/client.js +145 -0
- package/esm/infra/orm/index.d.ts +74 -0
- package/esm/infra/orm/index.js +61 -0
- package/esm/infra/orm/input-types.d.ts +1953 -0
- package/esm/infra/orm/input-types.js +2 -0
- package/esm/infra/orm/models/dbPreset.d.ts +54 -0
- package/esm/infra/orm/models/dbPreset.js +100 -0
- package/esm/infra/orm/models/index.d.ts +15 -0
- package/esm/infra/orm/models/index.js +15 -0
- package/esm/infra/orm/models/infraCommit.d.ts +56 -0
- package/esm/infra/orm/models/infraCommit.js +103 -0
- package/esm/infra/orm/models/infraGetAllRecord.d.ts +30 -0
- package/esm/infra/orm/models/infraGetAllRecord.js +55 -0
- package/esm/infra/orm/models/infraObject.d.ts +56 -0
- package/esm/infra/orm/models/infraObject.js +93 -0
- package/esm/infra/orm/models/infraRef.d.ts +56 -0
- package/esm/infra/orm/models/infraRef.js +103 -0
- package/esm/infra/orm/models/infraStore.d.ts +54 -0
- package/esm/infra/orm/models/infraStore.js +100 -0
- package/esm/infra/orm/models/namespace.d.ts +54 -0
- package/esm/infra/orm/models/namespace.js +100 -0
- package/esm/infra/orm/models/namespaceEvent.d.ts +56 -0
- package/esm/infra/orm/models/namespaceEvent.js +103 -0
- package/esm/infra/orm/models/platformNamespace.d.ts +54 -0
- package/esm/{config/orm/models/platformConfigDefinition.js → infra/orm/models/platformNamespace.js} +25 -25
- package/esm/infra/orm/models/platformNamespaceEvent.d.ts +56 -0
- package/esm/infra/orm/models/platformNamespaceEvent.js +103 -0
- package/esm/infra/orm/mutation/index.d.ts +50 -0
- package/esm/infra/orm/mutation/index.js +54 -0
- package/esm/infra/orm/query-builder.d.ts +110 -0
- package/esm/infra/orm/query-builder.js +705 -0
- package/esm/infra/orm/realtime.d.ts +142 -0
- package/esm/infra/orm/realtime.js +100 -0
- package/esm/infra/orm/select-types.d.ts +125 -0
- package/esm/infra/orm/select-types.js +1 -0
- package/esm/infra/orm/types.d.ts +6 -0
- package/esm/infra/orm/types.js +7 -0
- package/esm/modules/orm/index.d.ts +48 -38
- package/esm/modules/orm/index.js +48 -38
- package/esm/modules/orm/input-types.d.ts +5378 -4022
- package/esm/modules/orm/input-types.js +1 -0
- package/esm/modules/orm/models/dbPool.d.ts +54 -0
- package/esm/modules/orm/models/dbPool.js +100 -0
- package/esm/modules/orm/models/dbPoolConfig.d.ts +54 -0
- package/esm/modules/orm/models/dbPoolConfig.js +100 -0
- package/esm/modules/orm/models/dbPresetModule.d.ts +54 -0
- package/esm/modules/orm/models/dbPresetModule.js +100 -0
- package/esm/modules/orm/models/index.d.ts +24 -19
- package/esm/modules/orm/models/index.js +24 -19
- package/esm/modules/orm/models/infraConfigModule.d.ts +54 -0
- package/esm/modules/orm/models/infraConfigModule.js +100 -0
- package/esm/modules/orm/models/infraSecretsModule.d.ts +54 -0
- package/esm/modules/orm/models/infraSecretsModule.js +100 -0
- package/esm/modules/orm/models/integrationProvidersModule.d.ts +54 -0
- package/esm/modules/orm/models/integrationProvidersModule.js +100 -0
- package/esm/modules/orm/models/internalSecretsModule.d.ts +54 -0
- package/esm/modules/orm/models/internalSecretsModule.js +100 -0
- package/index.d.ts +1 -0
- package/index.js +2 -1
- package/infra/index.d.ts +5 -0
- package/infra/index.js +21 -0
- package/infra/orm/client.d.ts +97 -0
- package/infra/orm/client.js +152 -0
- package/infra/orm/index.d.ts +74 -0
- package/infra/orm/index.js +83 -0
- package/infra/orm/input-types.d.ts +1953 -0
- package/infra/orm/input-types.js +5 -0
- package/infra/orm/models/dbPreset.d.ts +54 -0
- package/infra/orm/models/dbPreset.js +104 -0
- package/infra/orm/models/index.d.ts +15 -0
- package/infra/orm/models/index.js +28 -0
- package/infra/orm/models/infraCommit.d.ts +56 -0
- package/infra/orm/models/infraCommit.js +107 -0
- package/infra/orm/models/infraGetAllRecord.d.ts +30 -0
- package/infra/orm/models/infraGetAllRecord.js +59 -0
- package/infra/orm/models/infraObject.d.ts +56 -0
- package/infra/orm/models/infraObject.js +97 -0
- package/infra/orm/models/infraRef.d.ts +56 -0
- package/infra/orm/models/infraRef.js +107 -0
- package/infra/orm/models/infraStore.d.ts +54 -0
- package/infra/orm/models/infraStore.js +104 -0
- package/infra/orm/models/namespace.d.ts +54 -0
- package/infra/orm/models/namespace.js +104 -0
- package/infra/orm/models/namespaceEvent.d.ts +56 -0
- package/infra/orm/models/namespaceEvent.js +107 -0
- package/infra/orm/models/platformNamespace.d.ts +54 -0
- package/infra/orm/models/platformNamespace.js +104 -0
- package/infra/orm/models/platformNamespaceEvent.d.ts +56 -0
- package/{config/orm/models/platformConfigDefinition.js → infra/orm/models/platformNamespaceEvent.js} +30 -27
- package/infra/orm/mutation/index.d.ts +50 -0
- package/infra/orm/mutation/index.js +57 -0
- package/infra/orm/query-builder.d.ts +110 -0
- package/infra/orm/query-builder.js +757 -0
- package/infra/orm/realtime.d.ts +142 -0
- package/infra/orm/realtime.js +104 -0
- package/infra/orm/select-types.d.ts +125 -0
- package/infra/orm/select-types.js +2 -0
- package/infra/orm/types.d.ts +6 -0
- package/infra/orm/types.js +23 -0
- package/modules/orm/index.d.ts +48 -38
- package/modules/orm/index.js +48 -38
- package/modules/orm/input-types.d.ts +5378 -4022
- package/modules/orm/input-types.js +1 -0
- package/modules/orm/models/dbPool.d.ts +54 -0
- package/modules/orm/models/dbPool.js +104 -0
- package/modules/orm/models/dbPoolConfig.d.ts +54 -0
- package/modules/orm/models/dbPoolConfig.js +104 -0
- package/modules/orm/models/dbPresetModule.d.ts +54 -0
- package/modules/orm/models/dbPresetModule.js +104 -0
- package/modules/orm/models/index.d.ts +24 -19
- package/modules/orm/models/index.js +50 -40
- package/modules/orm/models/infraConfigModule.d.ts +54 -0
- package/modules/orm/models/infraConfigModule.js +104 -0
- package/modules/orm/models/infraSecretsModule.d.ts +54 -0
- package/modules/orm/models/infraSecretsModule.js +104 -0
- package/modules/orm/models/integrationProvidersModule.d.ts +54 -0
- package/modules/orm/models/integrationProvidersModule.js +104 -0
- package/modules/orm/models/internalSecretsModule.d.ts +54 -0
- package/modules/orm/models/internalSecretsModule.js +104 -0
- package/package.json +6 -6
- package/compute/orm/models/orgFunctionExecutionLog.d.ts +0 -56
- package/compute/orm/models/orgFunctionInvocation.d.ts +0 -56
- package/compute/orm/models/secretDefinition.d.ts +0 -54
- package/config/orm/models/platformConfigDefinition.d.ts +0 -54
- package/esm/compute/orm/models/orgFunctionExecutionLog.d.ts +0 -56
- package/esm/compute/orm/models/orgFunctionInvocation.d.ts +0 -56
- package/esm/compute/orm/models/secretDefinition.d.ts +0 -54
- package/esm/config/orm/models/platformConfigDefinition.d.ts +0 -54
- package/esm/modules/orm/models/configSecretsModule.d.ts +0 -54
- package/esm/modules/orm/models/configSecretsOrgModule.d.ts +0 -54
- package/modules/orm/models/configSecretsModule.d.ts +0 -54
- package/modules/orm/models/configSecretsOrgModule.d.ts +0 -54
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IntegrationProvidersModuleModel = void 0;
|
|
4
|
+
const query_builder_1 = require("../query-builder");
|
|
5
|
+
const input_types_1 = require("../input-types");
|
|
6
|
+
class IntegrationProvidersModuleModel {
|
|
7
|
+
client;
|
|
8
|
+
constructor(client) {
|
|
9
|
+
this.client = client;
|
|
10
|
+
}
|
|
11
|
+
findMany(args) {
|
|
12
|
+
const { document, variables } = (0, query_builder_1.buildFindManyDocument)('IntegrationProvidersModule', 'integrationProvidersModules', args.select, {
|
|
13
|
+
where: args?.where,
|
|
14
|
+
orderBy: args?.orderBy,
|
|
15
|
+
first: args?.first,
|
|
16
|
+
last: args?.last,
|
|
17
|
+
after: args?.after,
|
|
18
|
+
before: args?.before,
|
|
19
|
+
offset: args?.offset,
|
|
20
|
+
}, 'IntegrationProvidersModuleFilter', 'IntegrationProvidersModuleOrderBy', input_types_1.connectionFieldsMap);
|
|
21
|
+
return new query_builder_1.QueryBuilder({
|
|
22
|
+
client: this.client,
|
|
23
|
+
operation: 'query',
|
|
24
|
+
operationName: 'IntegrationProvidersModule',
|
|
25
|
+
fieldName: 'integrationProvidersModules',
|
|
26
|
+
document,
|
|
27
|
+
variables,
|
|
28
|
+
});
|
|
29
|
+
}
|
|
30
|
+
findFirst(args) {
|
|
31
|
+
const { document, variables } = (0, query_builder_1.buildFindFirstDocument)('IntegrationProvidersModule', 'integrationProvidersModules', args.select, {
|
|
32
|
+
where: args?.where,
|
|
33
|
+
orderBy: args?.orderBy,
|
|
34
|
+
}, 'IntegrationProvidersModuleFilter', 'IntegrationProvidersModuleOrderBy', input_types_1.connectionFieldsMap);
|
|
35
|
+
return new query_builder_1.QueryBuilder({
|
|
36
|
+
client: this.client,
|
|
37
|
+
operation: 'query',
|
|
38
|
+
operationName: 'IntegrationProvidersModule',
|
|
39
|
+
fieldName: 'integrationProvidersModule',
|
|
40
|
+
document,
|
|
41
|
+
variables,
|
|
42
|
+
transform: (data) => ({
|
|
43
|
+
integrationProvidersModule: data.integrationProvidersModules?.nodes?.[0] ?? null,
|
|
44
|
+
}),
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
findOne(args) {
|
|
48
|
+
const { document, variables } = (0, query_builder_1.buildFindManyDocument)('IntegrationProvidersModule', 'integrationProvidersModules', args.select, {
|
|
49
|
+
where: {
|
|
50
|
+
id: {
|
|
51
|
+
equalTo: args.id,
|
|
52
|
+
},
|
|
53
|
+
},
|
|
54
|
+
first: 1,
|
|
55
|
+
}, 'IntegrationProvidersModuleFilter', 'IntegrationProvidersModuleOrderBy', input_types_1.connectionFieldsMap);
|
|
56
|
+
return new query_builder_1.QueryBuilder({
|
|
57
|
+
client: this.client,
|
|
58
|
+
operation: 'query',
|
|
59
|
+
operationName: 'IntegrationProvidersModule',
|
|
60
|
+
fieldName: 'integrationProvidersModule',
|
|
61
|
+
document,
|
|
62
|
+
variables,
|
|
63
|
+
transform: (data) => ({
|
|
64
|
+
integrationProvidersModule: data.integrationProvidersModules?.nodes?.[0] ?? null,
|
|
65
|
+
}),
|
|
66
|
+
});
|
|
67
|
+
}
|
|
68
|
+
create(args) {
|
|
69
|
+
const { document, variables } = (0, query_builder_1.buildCreateDocument)('IntegrationProvidersModule', 'createIntegrationProvidersModule', 'integrationProvidersModule', args.select, args.data, 'CreateIntegrationProvidersModuleInput', input_types_1.connectionFieldsMap);
|
|
70
|
+
return new query_builder_1.QueryBuilder({
|
|
71
|
+
client: this.client,
|
|
72
|
+
operation: 'mutation',
|
|
73
|
+
operationName: 'IntegrationProvidersModule',
|
|
74
|
+
fieldName: 'createIntegrationProvidersModule',
|
|
75
|
+
document,
|
|
76
|
+
variables,
|
|
77
|
+
});
|
|
78
|
+
}
|
|
79
|
+
update(args) {
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('IntegrationProvidersModule', 'updateIntegrationProvidersModule', 'integrationProvidersModule', args.select, args.where.id, args.data, 'UpdateIntegrationProvidersModuleInput', 'id', 'integrationProvidersModulePatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
|
+
return new query_builder_1.QueryBuilder({
|
|
82
|
+
client: this.client,
|
|
83
|
+
operation: 'mutation',
|
|
84
|
+
operationName: 'IntegrationProvidersModule',
|
|
85
|
+
fieldName: 'updateIntegrationProvidersModule',
|
|
86
|
+
document,
|
|
87
|
+
variables,
|
|
88
|
+
});
|
|
89
|
+
}
|
|
90
|
+
delete(args) {
|
|
91
|
+
const { document, variables } = (0, query_builder_1.buildDeleteByPkDocument)('IntegrationProvidersModule', 'deleteIntegrationProvidersModule', 'integrationProvidersModule', {
|
|
92
|
+
id: args.where.id,
|
|
93
|
+
}, 'DeleteIntegrationProvidersModuleInput', args.select, input_types_1.connectionFieldsMap);
|
|
94
|
+
return new query_builder_1.QueryBuilder({
|
|
95
|
+
client: this.client,
|
|
96
|
+
operation: 'mutation',
|
|
97
|
+
operationName: 'IntegrationProvidersModule',
|
|
98
|
+
fieldName: 'deleteIntegrationProvidersModule',
|
|
99
|
+
document,
|
|
100
|
+
variables,
|
|
101
|
+
});
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
exports.IntegrationProvidersModuleModel = IntegrationProvidersModuleModel;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* InternalSecretsModule model for ORM client
|
|
3
|
+
* @generated by @constructive-io/graphql-codegen
|
|
4
|
+
* DO NOT EDIT - changes will be overwritten
|
|
5
|
+
*/
|
|
6
|
+
import { OrmClient } from '../client';
|
|
7
|
+
import { QueryBuilder } from '../query-builder';
|
|
8
|
+
import type { ConnectionResult, FindManyArgs, FindFirstArgs, CreateArgs, UpdateArgs, DeleteArgs, InferSelectResult, StrictSelect } from '../select-types';
|
|
9
|
+
import type { InternalSecretsModuleWithRelations, InternalSecretsModuleSelect, InternalSecretsModuleFilter, InternalSecretsModuleOrderBy, CreateInternalSecretsModuleInput, InternalSecretsModulePatch } from '../input-types';
|
|
10
|
+
export declare class InternalSecretsModuleModel {
|
|
11
|
+
private client;
|
|
12
|
+
constructor(client: OrmClient);
|
|
13
|
+
findMany<S extends InternalSecretsModuleSelect>(args: FindManyArgs<S, InternalSecretsModuleFilter, InternalSecretsModuleOrderBy> & {
|
|
14
|
+
select: S;
|
|
15
|
+
} & StrictSelect<S, InternalSecretsModuleSelect>): QueryBuilder<{
|
|
16
|
+
internalSecretsModules: ConnectionResult<InferSelectResult<InternalSecretsModuleWithRelations, S>>;
|
|
17
|
+
}>;
|
|
18
|
+
findFirst<S extends InternalSecretsModuleSelect>(args: FindFirstArgs<S, InternalSecretsModuleFilter, InternalSecretsModuleOrderBy> & {
|
|
19
|
+
select: S;
|
|
20
|
+
} & StrictSelect<S, InternalSecretsModuleSelect>): QueryBuilder<{
|
|
21
|
+
internalSecretsModule: InferSelectResult<InternalSecretsModuleWithRelations, S> | null;
|
|
22
|
+
}>;
|
|
23
|
+
findOne<S extends InternalSecretsModuleSelect>(args: {
|
|
24
|
+
id: string;
|
|
25
|
+
select: S;
|
|
26
|
+
} & StrictSelect<S, InternalSecretsModuleSelect>): QueryBuilder<{
|
|
27
|
+
internalSecretsModule: InferSelectResult<InternalSecretsModuleWithRelations, S> | null;
|
|
28
|
+
}>;
|
|
29
|
+
create<S extends InternalSecretsModuleSelect>(args: CreateArgs<S, CreateInternalSecretsModuleInput['internalSecretsModule']> & {
|
|
30
|
+
select: S;
|
|
31
|
+
} & StrictSelect<S, InternalSecretsModuleSelect>): QueryBuilder<{
|
|
32
|
+
createInternalSecretsModule: {
|
|
33
|
+
internalSecretsModule: InferSelectResult<InternalSecretsModuleWithRelations, S>;
|
|
34
|
+
};
|
|
35
|
+
}>;
|
|
36
|
+
update<S extends InternalSecretsModuleSelect>(args: UpdateArgs<S, {
|
|
37
|
+
id: string;
|
|
38
|
+
}, InternalSecretsModulePatch> & {
|
|
39
|
+
select: S;
|
|
40
|
+
} & StrictSelect<S, InternalSecretsModuleSelect>): QueryBuilder<{
|
|
41
|
+
updateInternalSecretsModule: {
|
|
42
|
+
internalSecretsModule: InferSelectResult<InternalSecretsModuleWithRelations, S>;
|
|
43
|
+
};
|
|
44
|
+
}>;
|
|
45
|
+
delete<S extends InternalSecretsModuleSelect>(args: DeleteArgs<{
|
|
46
|
+
id: string;
|
|
47
|
+
}, S> & {
|
|
48
|
+
select: S;
|
|
49
|
+
} & StrictSelect<S, InternalSecretsModuleSelect>): QueryBuilder<{
|
|
50
|
+
deleteInternalSecretsModule: {
|
|
51
|
+
internalSecretsModule: InferSelectResult<InternalSecretsModuleWithRelations, S>;
|
|
52
|
+
};
|
|
53
|
+
}>;
|
|
54
|
+
}
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.InternalSecretsModuleModel = void 0;
|
|
4
|
+
const query_builder_1 = require("../query-builder");
|
|
5
|
+
const input_types_1 = require("../input-types");
|
|
6
|
+
class InternalSecretsModuleModel {
|
|
7
|
+
client;
|
|
8
|
+
constructor(client) {
|
|
9
|
+
this.client = client;
|
|
10
|
+
}
|
|
11
|
+
findMany(args) {
|
|
12
|
+
const { document, variables } = (0, query_builder_1.buildFindManyDocument)('InternalSecretsModule', 'internalSecretsModules', args.select, {
|
|
13
|
+
where: args?.where,
|
|
14
|
+
orderBy: args?.orderBy,
|
|
15
|
+
first: args?.first,
|
|
16
|
+
last: args?.last,
|
|
17
|
+
after: args?.after,
|
|
18
|
+
before: args?.before,
|
|
19
|
+
offset: args?.offset,
|
|
20
|
+
}, 'InternalSecretsModuleFilter', 'InternalSecretsModuleOrderBy', input_types_1.connectionFieldsMap);
|
|
21
|
+
return new query_builder_1.QueryBuilder({
|
|
22
|
+
client: this.client,
|
|
23
|
+
operation: 'query',
|
|
24
|
+
operationName: 'InternalSecretsModule',
|
|
25
|
+
fieldName: 'internalSecretsModules',
|
|
26
|
+
document,
|
|
27
|
+
variables,
|
|
28
|
+
});
|
|
29
|
+
}
|
|
30
|
+
findFirst(args) {
|
|
31
|
+
const { document, variables } = (0, query_builder_1.buildFindFirstDocument)('InternalSecretsModule', 'internalSecretsModules', args.select, {
|
|
32
|
+
where: args?.where,
|
|
33
|
+
orderBy: args?.orderBy,
|
|
34
|
+
}, 'InternalSecretsModuleFilter', 'InternalSecretsModuleOrderBy', input_types_1.connectionFieldsMap);
|
|
35
|
+
return new query_builder_1.QueryBuilder({
|
|
36
|
+
client: this.client,
|
|
37
|
+
operation: 'query',
|
|
38
|
+
operationName: 'InternalSecretsModule',
|
|
39
|
+
fieldName: 'internalSecretsModule',
|
|
40
|
+
document,
|
|
41
|
+
variables,
|
|
42
|
+
transform: (data) => ({
|
|
43
|
+
internalSecretsModule: data.internalSecretsModules?.nodes?.[0] ?? null,
|
|
44
|
+
}),
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
findOne(args) {
|
|
48
|
+
const { document, variables } = (0, query_builder_1.buildFindManyDocument)('InternalSecretsModule', 'internalSecretsModules', args.select, {
|
|
49
|
+
where: {
|
|
50
|
+
id: {
|
|
51
|
+
equalTo: args.id,
|
|
52
|
+
},
|
|
53
|
+
},
|
|
54
|
+
first: 1,
|
|
55
|
+
}, 'InternalSecretsModuleFilter', 'InternalSecretsModuleOrderBy', input_types_1.connectionFieldsMap);
|
|
56
|
+
return new query_builder_1.QueryBuilder({
|
|
57
|
+
client: this.client,
|
|
58
|
+
operation: 'query',
|
|
59
|
+
operationName: 'InternalSecretsModule',
|
|
60
|
+
fieldName: 'internalSecretsModule',
|
|
61
|
+
document,
|
|
62
|
+
variables,
|
|
63
|
+
transform: (data) => ({
|
|
64
|
+
internalSecretsModule: data.internalSecretsModules?.nodes?.[0] ?? null,
|
|
65
|
+
}),
|
|
66
|
+
});
|
|
67
|
+
}
|
|
68
|
+
create(args) {
|
|
69
|
+
const { document, variables } = (0, query_builder_1.buildCreateDocument)('InternalSecretsModule', 'createInternalSecretsModule', 'internalSecretsModule', args.select, args.data, 'CreateInternalSecretsModuleInput', input_types_1.connectionFieldsMap);
|
|
70
|
+
return new query_builder_1.QueryBuilder({
|
|
71
|
+
client: this.client,
|
|
72
|
+
operation: 'mutation',
|
|
73
|
+
operationName: 'InternalSecretsModule',
|
|
74
|
+
fieldName: 'createInternalSecretsModule',
|
|
75
|
+
document,
|
|
76
|
+
variables,
|
|
77
|
+
});
|
|
78
|
+
}
|
|
79
|
+
update(args) {
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('InternalSecretsModule', 'updateInternalSecretsModule', 'internalSecretsModule', args.select, args.where.id, args.data, 'UpdateInternalSecretsModuleInput', 'id', 'internalSecretsModulePatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
|
+
return new query_builder_1.QueryBuilder({
|
|
82
|
+
client: this.client,
|
|
83
|
+
operation: 'mutation',
|
|
84
|
+
operationName: 'InternalSecretsModule',
|
|
85
|
+
fieldName: 'updateInternalSecretsModule',
|
|
86
|
+
document,
|
|
87
|
+
variables,
|
|
88
|
+
});
|
|
89
|
+
}
|
|
90
|
+
delete(args) {
|
|
91
|
+
const { document, variables } = (0, query_builder_1.buildDeleteByPkDocument)('InternalSecretsModule', 'deleteInternalSecretsModule', 'internalSecretsModule', {
|
|
92
|
+
id: args.where.id,
|
|
93
|
+
}, 'DeleteInternalSecretsModuleInput', args.select, input_types_1.connectionFieldsMap);
|
|
94
|
+
return new query_builder_1.QueryBuilder({
|
|
95
|
+
client: this.client,
|
|
96
|
+
operation: 'mutation',
|
|
97
|
+
operationName: 'InternalSecretsModule',
|
|
98
|
+
fieldName: 'deleteInternalSecretsModule',
|
|
99
|
+
document,
|
|
100
|
+
variables,
|
|
101
|
+
});
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
exports.InternalSecretsModuleModel = InternalSecretsModuleModel;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@constructive-io/sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.30.1",
|
|
4
4
|
"author": "Constructive <developers@constructive.io>",
|
|
5
5
|
"description": "Constructive SDK - Auto-generated GraphQL types and ORM client",
|
|
6
6
|
"main": "index.js",
|
|
@@ -41,17 +41,17 @@
|
|
|
41
41
|
],
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@0no-co/graphql.web": "^1.1.2",
|
|
44
|
-
"@constructive-io/graphql-query": "^3.
|
|
45
|
-
"@constructive-io/graphql-types": "^3.
|
|
46
|
-
"gql-ast": "^3.
|
|
44
|
+
"@constructive-io/graphql-query": "^3.32.1",
|
|
45
|
+
"@constructive-io/graphql-types": "^3.14.0",
|
|
46
|
+
"gql-ast": "^3.13.0",
|
|
47
47
|
"graphql": "16.13.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@constructive-io/graphql-codegen": "^4.
|
|
50
|
+
"@constructive-io/graphql-codegen": "^4.52.1",
|
|
51
51
|
"@types/node": "^22.19.11",
|
|
52
52
|
"makage": "^0.3.0",
|
|
53
53
|
"tsx": "^4.19.0",
|
|
54
54
|
"typescript": "^5.9.3"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "6235bf0645f56d423fa464404ec1e3283c49e532"
|
|
57
57
|
}
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* OrgFunctionExecutionLog model for ORM client
|
|
3
|
-
* @generated by @constructive-io/graphql-codegen
|
|
4
|
-
* DO NOT EDIT - changes will be overwritten
|
|
5
|
-
*/
|
|
6
|
-
import { OrmClient } from '../client';
|
|
7
|
-
import { QueryBuilder } from '../query-builder';
|
|
8
|
-
import type { ConnectionResult, FindManyArgs, FindFirstArgs, CreateArgs, UpdateArgs, DeleteArgs, InferSelectResult, StrictSelect } from '../select-types';
|
|
9
|
-
import type { OrgFunctionExecutionLogWithRelations, OrgFunctionExecutionLogSelect, OrgFunctionExecutionLogFilter, OrgFunctionExecutionLogOrderBy, CreateOrgFunctionExecutionLogInput, OrgFunctionExecutionLogPatch } from '../input-types';
|
|
10
|
-
export declare class OrgFunctionExecutionLogModel {
|
|
11
|
-
private client;
|
|
12
|
-
constructor(client: OrmClient);
|
|
13
|
-
findMany<S extends OrgFunctionExecutionLogSelect>(args: FindManyArgs<S, OrgFunctionExecutionLogFilter, OrgFunctionExecutionLogOrderBy> & {
|
|
14
|
-
select: S;
|
|
15
|
-
} & StrictSelect<S, OrgFunctionExecutionLogSelect>): QueryBuilder<{
|
|
16
|
-
orgFunctionExecutionLogs: ConnectionResult<InferSelectResult<OrgFunctionExecutionLogWithRelations, S>>;
|
|
17
|
-
}>;
|
|
18
|
-
findFirst<S extends OrgFunctionExecutionLogSelect>(args: FindFirstArgs<S, OrgFunctionExecutionLogFilter, OrgFunctionExecutionLogOrderBy> & {
|
|
19
|
-
select: S;
|
|
20
|
-
} & StrictSelect<S, OrgFunctionExecutionLogSelect>): QueryBuilder<{
|
|
21
|
-
orgFunctionExecutionLog: InferSelectResult<OrgFunctionExecutionLogWithRelations, S> | null;
|
|
22
|
-
}>;
|
|
23
|
-
findOne<S extends OrgFunctionExecutionLogSelect>(args: {
|
|
24
|
-
id: string;
|
|
25
|
-
select: S;
|
|
26
|
-
} & StrictSelect<S, OrgFunctionExecutionLogSelect>): QueryBuilder<{
|
|
27
|
-
orgFunctionExecutionLog: InferSelectResult<OrgFunctionExecutionLogWithRelations, S> | null;
|
|
28
|
-
}>;
|
|
29
|
-
create<S extends OrgFunctionExecutionLogSelect>(args: CreateArgs<S, CreateOrgFunctionExecutionLogInput['orgFunctionExecutionLog']> & {
|
|
30
|
-
select: S;
|
|
31
|
-
} & StrictSelect<S, OrgFunctionExecutionLogSelect>): QueryBuilder<{
|
|
32
|
-
createOrgFunctionExecutionLog: {
|
|
33
|
-
orgFunctionExecutionLog: InferSelectResult<OrgFunctionExecutionLogWithRelations, S>;
|
|
34
|
-
};
|
|
35
|
-
}>;
|
|
36
|
-
update<S extends OrgFunctionExecutionLogSelect>(args: UpdateArgs<S, {
|
|
37
|
-
id: string;
|
|
38
|
-
createdAt: string;
|
|
39
|
-
}, OrgFunctionExecutionLogPatch> & {
|
|
40
|
-
select: S;
|
|
41
|
-
} & StrictSelect<S, OrgFunctionExecutionLogSelect>): QueryBuilder<{
|
|
42
|
-
updateOrgFunctionExecutionLog: {
|
|
43
|
-
orgFunctionExecutionLog: InferSelectResult<OrgFunctionExecutionLogWithRelations, S>;
|
|
44
|
-
};
|
|
45
|
-
}>;
|
|
46
|
-
delete<S extends OrgFunctionExecutionLogSelect>(args: DeleteArgs<{
|
|
47
|
-
id: string;
|
|
48
|
-
createdAt: string;
|
|
49
|
-
}, S> & {
|
|
50
|
-
select: S;
|
|
51
|
-
} & StrictSelect<S, OrgFunctionExecutionLogSelect>): QueryBuilder<{
|
|
52
|
-
deleteOrgFunctionExecutionLog: {
|
|
53
|
-
orgFunctionExecutionLog: InferSelectResult<OrgFunctionExecutionLogWithRelations, S>;
|
|
54
|
-
};
|
|
55
|
-
}>;
|
|
56
|
-
}
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* OrgFunctionInvocation model for ORM client
|
|
3
|
-
* @generated by @constructive-io/graphql-codegen
|
|
4
|
-
* DO NOT EDIT - changes will be overwritten
|
|
5
|
-
*/
|
|
6
|
-
import { OrmClient } from '../client';
|
|
7
|
-
import { QueryBuilder } from '../query-builder';
|
|
8
|
-
import type { ConnectionResult, FindManyArgs, FindFirstArgs, CreateArgs, UpdateArgs, DeleteArgs, InferSelectResult, StrictSelect } from '../select-types';
|
|
9
|
-
import type { OrgFunctionInvocationWithRelations, OrgFunctionInvocationSelect, OrgFunctionInvocationFilter, OrgFunctionInvocationOrderBy, CreateOrgFunctionInvocationInput, OrgFunctionInvocationPatch } from '../input-types';
|
|
10
|
-
export declare class OrgFunctionInvocationModel {
|
|
11
|
-
private client;
|
|
12
|
-
constructor(client: OrmClient);
|
|
13
|
-
findMany<S extends OrgFunctionInvocationSelect>(args: FindManyArgs<S, OrgFunctionInvocationFilter, OrgFunctionInvocationOrderBy> & {
|
|
14
|
-
select: S;
|
|
15
|
-
} & StrictSelect<S, OrgFunctionInvocationSelect>): QueryBuilder<{
|
|
16
|
-
orgFunctionInvocations: ConnectionResult<InferSelectResult<OrgFunctionInvocationWithRelations, S>>;
|
|
17
|
-
}>;
|
|
18
|
-
findFirst<S extends OrgFunctionInvocationSelect>(args: FindFirstArgs<S, OrgFunctionInvocationFilter, OrgFunctionInvocationOrderBy> & {
|
|
19
|
-
select: S;
|
|
20
|
-
} & StrictSelect<S, OrgFunctionInvocationSelect>): QueryBuilder<{
|
|
21
|
-
orgFunctionInvocation: InferSelectResult<OrgFunctionInvocationWithRelations, S> | null;
|
|
22
|
-
}>;
|
|
23
|
-
findOne<S extends OrgFunctionInvocationSelect>(args: {
|
|
24
|
-
id: string;
|
|
25
|
-
select: S;
|
|
26
|
-
} & StrictSelect<S, OrgFunctionInvocationSelect>): QueryBuilder<{
|
|
27
|
-
orgFunctionInvocation: InferSelectResult<OrgFunctionInvocationWithRelations, S> | null;
|
|
28
|
-
}>;
|
|
29
|
-
create<S extends OrgFunctionInvocationSelect>(args: CreateArgs<S, CreateOrgFunctionInvocationInput['orgFunctionInvocation']> & {
|
|
30
|
-
select: S;
|
|
31
|
-
} & StrictSelect<S, OrgFunctionInvocationSelect>): QueryBuilder<{
|
|
32
|
-
createOrgFunctionInvocation: {
|
|
33
|
-
orgFunctionInvocation: InferSelectResult<OrgFunctionInvocationWithRelations, S>;
|
|
34
|
-
};
|
|
35
|
-
}>;
|
|
36
|
-
update<S extends OrgFunctionInvocationSelect>(args: UpdateArgs<S, {
|
|
37
|
-
id: string;
|
|
38
|
-
createdAt: string;
|
|
39
|
-
}, OrgFunctionInvocationPatch> & {
|
|
40
|
-
select: S;
|
|
41
|
-
} & StrictSelect<S, OrgFunctionInvocationSelect>): QueryBuilder<{
|
|
42
|
-
updateOrgFunctionInvocation: {
|
|
43
|
-
orgFunctionInvocation: InferSelectResult<OrgFunctionInvocationWithRelations, S>;
|
|
44
|
-
};
|
|
45
|
-
}>;
|
|
46
|
-
delete<S extends OrgFunctionInvocationSelect>(args: DeleteArgs<{
|
|
47
|
-
id: string;
|
|
48
|
-
createdAt: string;
|
|
49
|
-
}, S> & {
|
|
50
|
-
select: S;
|
|
51
|
-
} & StrictSelect<S, OrgFunctionInvocationSelect>): QueryBuilder<{
|
|
52
|
-
deleteOrgFunctionInvocation: {
|
|
53
|
-
orgFunctionInvocation: InferSelectResult<OrgFunctionInvocationWithRelations, S>;
|
|
54
|
-
};
|
|
55
|
-
}>;
|
|
56
|
-
}
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* SecretDefinition model for ORM client
|
|
3
|
-
* @generated by @constructive-io/graphql-codegen
|
|
4
|
-
* DO NOT EDIT - changes will be overwritten
|
|
5
|
-
*/
|
|
6
|
-
import { OrmClient } from '../client';
|
|
7
|
-
import { QueryBuilder } from '../query-builder';
|
|
8
|
-
import type { ConnectionResult, FindManyArgs, FindFirstArgs, CreateArgs, UpdateArgs, DeleteArgs, InferSelectResult, StrictSelect } from '../select-types';
|
|
9
|
-
import type { SecretDefinitionWithRelations, SecretDefinitionSelect, SecretDefinitionFilter, SecretDefinitionOrderBy, CreateSecretDefinitionInput, SecretDefinitionPatch } from '../input-types';
|
|
10
|
-
export declare class SecretDefinitionModel {
|
|
11
|
-
private client;
|
|
12
|
-
constructor(client: OrmClient);
|
|
13
|
-
findMany<S extends SecretDefinitionSelect>(args: FindManyArgs<S, SecretDefinitionFilter, SecretDefinitionOrderBy> & {
|
|
14
|
-
select: S;
|
|
15
|
-
} & StrictSelect<S, SecretDefinitionSelect>): QueryBuilder<{
|
|
16
|
-
secretDefinitions: ConnectionResult<InferSelectResult<SecretDefinitionWithRelations, S>>;
|
|
17
|
-
}>;
|
|
18
|
-
findFirst<S extends SecretDefinitionSelect>(args: FindFirstArgs<S, SecretDefinitionFilter, SecretDefinitionOrderBy> & {
|
|
19
|
-
select: S;
|
|
20
|
-
} & StrictSelect<S, SecretDefinitionSelect>): QueryBuilder<{
|
|
21
|
-
secretDefinition: InferSelectResult<SecretDefinitionWithRelations, S> | null;
|
|
22
|
-
}>;
|
|
23
|
-
findOne<S extends SecretDefinitionSelect>(args: {
|
|
24
|
-
id: string;
|
|
25
|
-
select: S;
|
|
26
|
-
} & StrictSelect<S, SecretDefinitionSelect>): QueryBuilder<{
|
|
27
|
-
secretDefinition: InferSelectResult<SecretDefinitionWithRelations, S> | null;
|
|
28
|
-
}>;
|
|
29
|
-
create<S extends SecretDefinitionSelect>(args: CreateArgs<S, CreateSecretDefinitionInput['secretDefinition']> & {
|
|
30
|
-
select: S;
|
|
31
|
-
} & StrictSelect<S, SecretDefinitionSelect>): QueryBuilder<{
|
|
32
|
-
createSecretDefinition: {
|
|
33
|
-
secretDefinition: InferSelectResult<SecretDefinitionWithRelations, S>;
|
|
34
|
-
};
|
|
35
|
-
}>;
|
|
36
|
-
update<S extends SecretDefinitionSelect>(args: UpdateArgs<S, {
|
|
37
|
-
id: string;
|
|
38
|
-
}, SecretDefinitionPatch> & {
|
|
39
|
-
select: S;
|
|
40
|
-
} & StrictSelect<S, SecretDefinitionSelect>): QueryBuilder<{
|
|
41
|
-
updateSecretDefinition: {
|
|
42
|
-
secretDefinition: InferSelectResult<SecretDefinitionWithRelations, S>;
|
|
43
|
-
};
|
|
44
|
-
}>;
|
|
45
|
-
delete<S extends SecretDefinitionSelect>(args: DeleteArgs<{
|
|
46
|
-
id: string;
|
|
47
|
-
}, S> & {
|
|
48
|
-
select: S;
|
|
49
|
-
} & StrictSelect<S, SecretDefinitionSelect>): QueryBuilder<{
|
|
50
|
-
deleteSecretDefinition: {
|
|
51
|
-
secretDefinition: InferSelectResult<SecretDefinitionWithRelations, S>;
|
|
52
|
-
};
|
|
53
|
-
}>;
|
|
54
|
-
}
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* PlatformConfigDefinition model for ORM client
|
|
3
|
-
* @generated by @constructive-io/graphql-codegen
|
|
4
|
-
* DO NOT EDIT - changes will be overwritten
|
|
5
|
-
*/
|
|
6
|
-
import { OrmClient } from '../client';
|
|
7
|
-
import { QueryBuilder } from '../query-builder';
|
|
8
|
-
import type { ConnectionResult, FindManyArgs, FindFirstArgs, CreateArgs, UpdateArgs, DeleteArgs, InferSelectResult, StrictSelect } from '../select-types';
|
|
9
|
-
import type { PlatformConfigDefinitionWithRelations, PlatformConfigDefinitionSelect, PlatformConfigDefinitionFilter, PlatformConfigDefinitionOrderBy, CreatePlatformConfigDefinitionInput, PlatformConfigDefinitionPatch } from '../input-types';
|
|
10
|
-
export declare class PlatformConfigDefinitionModel {
|
|
11
|
-
private client;
|
|
12
|
-
constructor(client: OrmClient);
|
|
13
|
-
findMany<S extends PlatformConfigDefinitionSelect>(args: FindManyArgs<S, PlatformConfigDefinitionFilter, PlatformConfigDefinitionOrderBy> & {
|
|
14
|
-
select: S;
|
|
15
|
-
} & StrictSelect<S, PlatformConfigDefinitionSelect>): QueryBuilder<{
|
|
16
|
-
platformConfigDefinitions: ConnectionResult<InferSelectResult<PlatformConfigDefinitionWithRelations, S>>;
|
|
17
|
-
}>;
|
|
18
|
-
findFirst<S extends PlatformConfigDefinitionSelect>(args: FindFirstArgs<S, PlatformConfigDefinitionFilter, PlatformConfigDefinitionOrderBy> & {
|
|
19
|
-
select: S;
|
|
20
|
-
} & StrictSelect<S, PlatformConfigDefinitionSelect>): QueryBuilder<{
|
|
21
|
-
platformConfigDefinition: InferSelectResult<PlatformConfigDefinitionWithRelations, S> | null;
|
|
22
|
-
}>;
|
|
23
|
-
findOne<S extends PlatformConfigDefinitionSelect>(args: {
|
|
24
|
-
id: string;
|
|
25
|
-
select: S;
|
|
26
|
-
} & StrictSelect<S, PlatformConfigDefinitionSelect>): QueryBuilder<{
|
|
27
|
-
platformConfigDefinition: InferSelectResult<PlatformConfigDefinitionWithRelations, S> | null;
|
|
28
|
-
}>;
|
|
29
|
-
create<S extends PlatformConfigDefinitionSelect>(args: CreateArgs<S, CreatePlatformConfigDefinitionInput['platformConfigDefinition']> & {
|
|
30
|
-
select: S;
|
|
31
|
-
} & StrictSelect<S, PlatformConfigDefinitionSelect>): QueryBuilder<{
|
|
32
|
-
createPlatformConfigDefinition: {
|
|
33
|
-
platformConfigDefinition: InferSelectResult<PlatformConfigDefinitionWithRelations, S>;
|
|
34
|
-
};
|
|
35
|
-
}>;
|
|
36
|
-
update<S extends PlatformConfigDefinitionSelect>(args: UpdateArgs<S, {
|
|
37
|
-
id: string;
|
|
38
|
-
}, PlatformConfigDefinitionPatch> & {
|
|
39
|
-
select: S;
|
|
40
|
-
} & StrictSelect<S, PlatformConfigDefinitionSelect>): QueryBuilder<{
|
|
41
|
-
updatePlatformConfigDefinition: {
|
|
42
|
-
platformConfigDefinition: InferSelectResult<PlatformConfigDefinitionWithRelations, S>;
|
|
43
|
-
};
|
|
44
|
-
}>;
|
|
45
|
-
delete<S extends PlatformConfigDefinitionSelect>(args: DeleteArgs<{
|
|
46
|
-
id: string;
|
|
47
|
-
}, S> & {
|
|
48
|
-
select: S;
|
|
49
|
-
} & StrictSelect<S, PlatformConfigDefinitionSelect>): QueryBuilder<{
|
|
50
|
-
deletePlatformConfigDefinition: {
|
|
51
|
-
platformConfigDefinition: InferSelectResult<PlatformConfigDefinitionWithRelations, S>;
|
|
52
|
-
};
|
|
53
|
-
}>;
|
|
54
|
-
}
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* OrgFunctionExecutionLog model for ORM client
|
|
3
|
-
* @generated by @constructive-io/graphql-codegen
|
|
4
|
-
* DO NOT EDIT - changes will be overwritten
|
|
5
|
-
*/
|
|
6
|
-
import { OrmClient } from '../client';
|
|
7
|
-
import { QueryBuilder } from '../query-builder';
|
|
8
|
-
import type { ConnectionResult, FindManyArgs, FindFirstArgs, CreateArgs, UpdateArgs, DeleteArgs, InferSelectResult, StrictSelect } from '../select-types';
|
|
9
|
-
import type { OrgFunctionExecutionLogWithRelations, OrgFunctionExecutionLogSelect, OrgFunctionExecutionLogFilter, OrgFunctionExecutionLogOrderBy, CreateOrgFunctionExecutionLogInput, OrgFunctionExecutionLogPatch } from '../input-types';
|
|
10
|
-
export declare class OrgFunctionExecutionLogModel {
|
|
11
|
-
private client;
|
|
12
|
-
constructor(client: OrmClient);
|
|
13
|
-
findMany<S extends OrgFunctionExecutionLogSelect>(args: FindManyArgs<S, OrgFunctionExecutionLogFilter, OrgFunctionExecutionLogOrderBy> & {
|
|
14
|
-
select: S;
|
|
15
|
-
} & StrictSelect<S, OrgFunctionExecutionLogSelect>): QueryBuilder<{
|
|
16
|
-
orgFunctionExecutionLogs: ConnectionResult<InferSelectResult<OrgFunctionExecutionLogWithRelations, S>>;
|
|
17
|
-
}>;
|
|
18
|
-
findFirst<S extends OrgFunctionExecutionLogSelect>(args: FindFirstArgs<S, OrgFunctionExecutionLogFilter, OrgFunctionExecutionLogOrderBy> & {
|
|
19
|
-
select: S;
|
|
20
|
-
} & StrictSelect<S, OrgFunctionExecutionLogSelect>): QueryBuilder<{
|
|
21
|
-
orgFunctionExecutionLog: InferSelectResult<OrgFunctionExecutionLogWithRelations, S> | null;
|
|
22
|
-
}>;
|
|
23
|
-
findOne<S extends OrgFunctionExecutionLogSelect>(args: {
|
|
24
|
-
id: string;
|
|
25
|
-
select: S;
|
|
26
|
-
} & StrictSelect<S, OrgFunctionExecutionLogSelect>): QueryBuilder<{
|
|
27
|
-
orgFunctionExecutionLog: InferSelectResult<OrgFunctionExecutionLogWithRelations, S> | null;
|
|
28
|
-
}>;
|
|
29
|
-
create<S extends OrgFunctionExecutionLogSelect>(args: CreateArgs<S, CreateOrgFunctionExecutionLogInput['orgFunctionExecutionLog']> & {
|
|
30
|
-
select: S;
|
|
31
|
-
} & StrictSelect<S, OrgFunctionExecutionLogSelect>): QueryBuilder<{
|
|
32
|
-
createOrgFunctionExecutionLog: {
|
|
33
|
-
orgFunctionExecutionLog: InferSelectResult<OrgFunctionExecutionLogWithRelations, S>;
|
|
34
|
-
};
|
|
35
|
-
}>;
|
|
36
|
-
update<S extends OrgFunctionExecutionLogSelect>(args: UpdateArgs<S, {
|
|
37
|
-
id: string;
|
|
38
|
-
createdAt: string;
|
|
39
|
-
}, OrgFunctionExecutionLogPatch> & {
|
|
40
|
-
select: S;
|
|
41
|
-
} & StrictSelect<S, OrgFunctionExecutionLogSelect>): QueryBuilder<{
|
|
42
|
-
updateOrgFunctionExecutionLog: {
|
|
43
|
-
orgFunctionExecutionLog: InferSelectResult<OrgFunctionExecutionLogWithRelations, S>;
|
|
44
|
-
};
|
|
45
|
-
}>;
|
|
46
|
-
delete<S extends OrgFunctionExecutionLogSelect>(args: DeleteArgs<{
|
|
47
|
-
id: string;
|
|
48
|
-
createdAt: string;
|
|
49
|
-
}, S> & {
|
|
50
|
-
select: S;
|
|
51
|
-
} & StrictSelect<S, OrgFunctionExecutionLogSelect>): QueryBuilder<{
|
|
52
|
-
deleteOrgFunctionExecutionLog: {
|
|
53
|
-
orgFunctionExecutionLog: InferSelectResult<OrgFunctionExecutionLogWithRelations, S>;
|
|
54
|
-
};
|
|
55
|
-
}>;
|
|
56
|
-
}
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* OrgFunctionInvocation model for ORM client
|
|
3
|
-
* @generated by @constructive-io/graphql-codegen
|
|
4
|
-
* DO NOT EDIT - changes will be overwritten
|
|
5
|
-
*/
|
|
6
|
-
import { OrmClient } from '../client';
|
|
7
|
-
import { QueryBuilder } from '../query-builder';
|
|
8
|
-
import type { ConnectionResult, FindManyArgs, FindFirstArgs, CreateArgs, UpdateArgs, DeleteArgs, InferSelectResult, StrictSelect } from '../select-types';
|
|
9
|
-
import type { OrgFunctionInvocationWithRelations, OrgFunctionInvocationSelect, OrgFunctionInvocationFilter, OrgFunctionInvocationOrderBy, CreateOrgFunctionInvocationInput, OrgFunctionInvocationPatch } from '../input-types';
|
|
10
|
-
export declare class OrgFunctionInvocationModel {
|
|
11
|
-
private client;
|
|
12
|
-
constructor(client: OrmClient);
|
|
13
|
-
findMany<S extends OrgFunctionInvocationSelect>(args: FindManyArgs<S, OrgFunctionInvocationFilter, OrgFunctionInvocationOrderBy> & {
|
|
14
|
-
select: S;
|
|
15
|
-
} & StrictSelect<S, OrgFunctionInvocationSelect>): QueryBuilder<{
|
|
16
|
-
orgFunctionInvocations: ConnectionResult<InferSelectResult<OrgFunctionInvocationWithRelations, S>>;
|
|
17
|
-
}>;
|
|
18
|
-
findFirst<S extends OrgFunctionInvocationSelect>(args: FindFirstArgs<S, OrgFunctionInvocationFilter, OrgFunctionInvocationOrderBy> & {
|
|
19
|
-
select: S;
|
|
20
|
-
} & StrictSelect<S, OrgFunctionInvocationSelect>): QueryBuilder<{
|
|
21
|
-
orgFunctionInvocation: InferSelectResult<OrgFunctionInvocationWithRelations, S> | null;
|
|
22
|
-
}>;
|
|
23
|
-
findOne<S extends OrgFunctionInvocationSelect>(args: {
|
|
24
|
-
id: string;
|
|
25
|
-
select: S;
|
|
26
|
-
} & StrictSelect<S, OrgFunctionInvocationSelect>): QueryBuilder<{
|
|
27
|
-
orgFunctionInvocation: InferSelectResult<OrgFunctionInvocationWithRelations, S> | null;
|
|
28
|
-
}>;
|
|
29
|
-
create<S extends OrgFunctionInvocationSelect>(args: CreateArgs<S, CreateOrgFunctionInvocationInput['orgFunctionInvocation']> & {
|
|
30
|
-
select: S;
|
|
31
|
-
} & StrictSelect<S, OrgFunctionInvocationSelect>): QueryBuilder<{
|
|
32
|
-
createOrgFunctionInvocation: {
|
|
33
|
-
orgFunctionInvocation: InferSelectResult<OrgFunctionInvocationWithRelations, S>;
|
|
34
|
-
};
|
|
35
|
-
}>;
|
|
36
|
-
update<S extends OrgFunctionInvocationSelect>(args: UpdateArgs<S, {
|
|
37
|
-
id: string;
|
|
38
|
-
createdAt: string;
|
|
39
|
-
}, OrgFunctionInvocationPatch> & {
|
|
40
|
-
select: S;
|
|
41
|
-
} & StrictSelect<S, OrgFunctionInvocationSelect>): QueryBuilder<{
|
|
42
|
-
updateOrgFunctionInvocation: {
|
|
43
|
-
orgFunctionInvocation: InferSelectResult<OrgFunctionInvocationWithRelations, S>;
|
|
44
|
-
};
|
|
45
|
-
}>;
|
|
46
|
-
delete<S extends OrgFunctionInvocationSelect>(args: DeleteArgs<{
|
|
47
|
-
id: string;
|
|
48
|
-
createdAt: string;
|
|
49
|
-
}, S> & {
|
|
50
|
-
select: S;
|
|
51
|
-
} & StrictSelect<S, OrgFunctionInvocationSelect>): QueryBuilder<{
|
|
52
|
-
deleteOrgFunctionInvocation: {
|
|
53
|
-
orgFunctionInvocation: InferSelectResult<OrgFunctionInvocationWithRelations, S>;
|
|
54
|
-
};
|
|
55
|
-
}>;
|
|
56
|
-
}
|