@constructive-io/sdk 0.30.0 → 0.30.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/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 +4 -4
- 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
package/modules/orm/index.js
CHANGED
|
@@ -24,23 +24,21 @@ exports.createClient = createClient;
|
|
|
24
24
|
const client_1 = require("./client");
|
|
25
25
|
const defaultIdsModule_1 = require("./models/defaultIdsModule");
|
|
26
26
|
const membershipTypesModule_1 = require("./models/membershipTypesModule");
|
|
27
|
-
const userStateModule_1 = require("./models/userStateModule");
|
|
28
27
|
const sessionSecretsModule_1 = require("./models/sessionSecretsModule");
|
|
29
|
-
const configSecretsOrgModule_1 = require("./models/configSecretsOrgModule");
|
|
30
28
|
const devicesModule_1 = require("./models/devicesModule");
|
|
31
29
|
const i18NModule_1 = require("./models/i18NModule");
|
|
32
|
-
const userCredentialsModule_1 = require("./models/userCredentialsModule");
|
|
33
30
|
const userSettingsModule_1 = require("./models/userSettingsModule");
|
|
34
|
-
const
|
|
31
|
+
const userStateModule_1 = require("./models/userStateModule");
|
|
32
|
+
const userCredentialsModule_1 = require("./models/userCredentialsModule");
|
|
35
33
|
const connectedAccountsModule_1 = require("./models/connectedAccountsModule");
|
|
36
34
|
const emailsModule_1 = require("./models/emailsModule");
|
|
37
35
|
const phoneNumbersModule_1 = require("./models/phoneNumbersModule");
|
|
38
36
|
const rateLimitsModule_1 = require("./models/rateLimitsModule");
|
|
39
37
|
const usersModule_1 = require("./models/usersModule");
|
|
40
38
|
const webauthnCredentialsModule_1 = require("./models/webauthnCredentialsModule");
|
|
39
|
+
const configSecretsUserModule_1 = require("./models/configSecretsUserModule");
|
|
41
40
|
const cryptoAddressesModule_1 = require("./models/cryptoAddressesModule");
|
|
42
41
|
const denormalizedTableField_1 = require("./models/denormalizedTableField");
|
|
43
|
-
const identityProvidersModule_1 = require("./models/identityProvidersModule");
|
|
44
42
|
const rlsModule_1 = require("./models/rlsModule");
|
|
45
43
|
const blueprint_1 = require("./models/blueprint");
|
|
46
44
|
const blueprintTemplate_1 = require("./models/blueprintTemplate");
|
|
@@ -48,40 +46,47 @@ const blueprintConstruction_1 = require("./models/blueprintConstruction");
|
|
|
48
46
|
const cryptoAuthModule_1 = require("./models/cryptoAuthModule");
|
|
49
47
|
const sessionsModule_1 = require("./models/sessionsModule");
|
|
50
48
|
const secureTableProvision_1 = require("./models/secureTableProvision");
|
|
51
|
-
const
|
|
52
|
-
const
|
|
49
|
+
const identityProvidersModule_1 = require("./models/identityProvidersModule");
|
|
50
|
+
const integrationProvidersModule_1 = require("./models/integrationProvidersModule");
|
|
51
|
+
const dbPoolConfig_1 = require("./models/dbPoolConfig");
|
|
52
|
+
const realtimeModule_1 = require("./models/realtimeModule");
|
|
53
|
+
const infraSecretsModule_1 = require("./models/infraSecretsModule");
|
|
54
|
+
const internalSecretsModule_1 = require("./models/internalSecretsModule");
|
|
55
|
+
const dbPresetModule_1 = require("./models/dbPresetModule");
|
|
53
56
|
const graphModule_1 = require("./models/graphModule");
|
|
54
|
-
const merkleStoreModule_1 = require("./models/merkleStoreModule");
|
|
55
57
|
const rateLimitMetersModule_1 = require("./models/rateLimitMetersModule");
|
|
56
|
-
const
|
|
58
|
+
const infraConfigModule_1 = require("./models/infraConfigModule");
|
|
57
59
|
const webauthnAuthModule_1 = require("./models/webauthnAuthModule");
|
|
58
|
-
const
|
|
60
|
+
const principalAuthModule_1 = require("./models/principalAuthModule");
|
|
61
|
+
const dbPool_1 = require("./models/dbPool");
|
|
59
62
|
const functionModule_1 = require("./models/functionModule");
|
|
63
|
+
const merkleStoreModule_1 = require("./models/merkleStoreModule");
|
|
64
|
+
const databaseProvisionModule_1 = require("./models/databaseProvisionModule");
|
|
65
|
+
const functionInvocationModule_1 = require("./models/functionInvocationModule");
|
|
60
66
|
const invitesModule_1 = require("./models/invitesModule");
|
|
61
|
-
const
|
|
67
|
+
const namespaceModule_1 = require("./models/namespaceModule");
|
|
68
|
+
const plansModule_1 = require("./models/plansModule");
|
|
62
69
|
const computeLogModule_1 = require("./models/computeLogModule");
|
|
63
70
|
const inferenceLogModule_1 = require("./models/inferenceLogModule");
|
|
64
|
-
const namespaceModule_1 = require("./models/namespaceModule");
|
|
65
|
-
const resourceModule_1 = require("./models/resourceModule");
|
|
66
71
|
const storageLogModule_1 = require("./models/storageLogModule");
|
|
67
72
|
const transferLogModule_1 = require("./models/transferLogModule");
|
|
68
|
-
const functionDeploymentModule_1 = require("./models/functionDeploymentModule");
|
|
69
|
-
const plansModule_1 = require("./models/plansModule");
|
|
70
73
|
const billingProviderModule_1 = require("./models/billingProviderModule");
|
|
71
|
-
const
|
|
74
|
+
const functionDeploymentModule_1 = require("./models/functionDeploymentModule");
|
|
75
|
+
const permissionsModule_1 = require("./models/permissionsModule");
|
|
72
76
|
const graphExecutionModule_1 = require("./models/graphExecutionModule");
|
|
73
77
|
const hierarchyModule_1 = require("./models/hierarchyModule");
|
|
74
|
-
const permissionsModule_1 = require("./models/permissionsModule");
|
|
75
78
|
const notificationsModule_1 = require("./models/notificationsModule");
|
|
79
|
+
const relationProvision_1 = require("./models/relationProvision");
|
|
76
80
|
const profilesModule_1 = require("./models/profilesModule");
|
|
77
81
|
const billingModule_1 = require("./models/billingModule");
|
|
78
|
-
const
|
|
82
|
+
const resourceModule_1 = require("./models/resourceModule");
|
|
79
83
|
const userAuthModule_1 = require("./models/userAuthModule");
|
|
84
|
+
const dbUsageModule_1 = require("./models/dbUsageModule");
|
|
80
85
|
const agentModule_1 = require("./models/agentModule");
|
|
81
86
|
const limitsModule_1 = require("./models/limitsModule");
|
|
82
|
-
const membershipsModule_1 = require("./models/membershipsModule");
|
|
83
87
|
const entityTypeProvision_1 = require("./models/entityTypeProvision");
|
|
84
88
|
const storageModule_1 = require("./models/storageModule");
|
|
89
|
+
const membershipsModule_1 = require("./models/membershipsModule");
|
|
85
90
|
const eventsModule_1 = require("./models/eventsModule");
|
|
86
91
|
const query_1 = require("./query");
|
|
87
92
|
const mutation_1 = require("./mutation");
|
|
@@ -124,23 +129,21 @@ function createClient(config) {
|
|
|
124
129
|
return {
|
|
125
130
|
defaultIdsModule: new defaultIdsModule_1.DefaultIdsModuleModel(client),
|
|
126
131
|
membershipTypesModule: new membershipTypesModule_1.MembershipTypesModuleModel(client),
|
|
127
|
-
userStateModule: new userStateModule_1.UserStateModuleModel(client),
|
|
128
132
|
sessionSecretsModule: new sessionSecretsModule_1.SessionSecretsModuleModel(client),
|
|
129
|
-
configSecretsOrgModule: new configSecretsOrgModule_1.ConfigSecretsOrgModuleModel(client),
|
|
130
133
|
devicesModule: new devicesModule_1.DevicesModuleModel(client),
|
|
131
134
|
i18NModule: new i18NModule_1.I18NModuleModel(client),
|
|
132
|
-
userCredentialsModule: new userCredentialsModule_1.UserCredentialsModuleModel(client),
|
|
133
135
|
userSettingsModule: new userSettingsModule_1.UserSettingsModuleModel(client),
|
|
134
|
-
|
|
136
|
+
userStateModule: new userStateModule_1.UserStateModuleModel(client),
|
|
137
|
+
userCredentialsModule: new userCredentialsModule_1.UserCredentialsModuleModel(client),
|
|
135
138
|
connectedAccountsModule: new connectedAccountsModule_1.ConnectedAccountsModuleModel(client),
|
|
136
139
|
emailsModule: new emailsModule_1.EmailsModuleModel(client),
|
|
137
140
|
phoneNumbersModule: new phoneNumbersModule_1.PhoneNumbersModuleModel(client),
|
|
138
141
|
rateLimitsModule: new rateLimitsModule_1.RateLimitsModuleModel(client),
|
|
139
142
|
usersModule: new usersModule_1.UsersModuleModel(client),
|
|
140
143
|
webauthnCredentialsModule: new webauthnCredentialsModule_1.WebauthnCredentialsModuleModel(client),
|
|
144
|
+
configSecretsUserModule: new configSecretsUserModule_1.ConfigSecretsUserModuleModel(client),
|
|
141
145
|
cryptoAddressesModule: new cryptoAddressesModule_1.CryptoAddressesModuleModel(client),
|
|
142
146
|
denormalizedTableField: new denormalizedTableField_1.DenormalizedTableFieldModel(client),
|
|
143
|
-
identityProvidersModule: new identityProvidersModule_1.IdentityProvidersModuleModel(client),
|
|
144
147
|
rlsModule: new rlsModule_1.RlsModuleModel(client),
|
|
145
148
|
blueprint: new blueprint_1.BlueprintModel(client),
|
|
146
149
|
blueprintTemplate: new blueprintTemplate_1.BlueprintTemplateModel(client),
|
|
@@ -148,40 +151,47 @@ function createClient(config) {
|
|
|
148
151
|
cryptoAuthModule: new cryptoAuthModule_1.CryptoAuthModuleModel(client),
|
|
149
152
|
sessionsModule: new sessionsModule_1.SessionsModuleModel(client),
|
|
150
153
|
secureTableProvision: new secureTableProvision_1.SecureTableProvisionModel(client),
|
|
151
|
-
|
|
152
|
-
|
|
154
|
+
identityProvidersModule: new identityProvidersModule_1.IdentityProvidersModuleModel(client),
|
|
155
|
+
integrationProvidersModule: new integrationProvidersModule_1.IntegrationProvidersModuleModel(client),
|
|
156
|
+
dbPoolConfig: new dbPoolConfig_1.DbPoolConfigModel(client),
|
|
157
|
+
realtimeModule: new realtimeModule_1.RealtimeModuleModel(client),
|
|
158
|
+
infraSecretsModule: new infraSecretsModule_1.InfraSecretsModuleModel(client),
|
|
159
|
+
internalSecretsModule: new internalSecretsModule_1.InternalSecretsModuleModel(client),
|
|
160
|
+
dbPresetModule: new dbPresetModule_1.DbPresetModuleModel(client),
|
|
153
161
|
graphModule: new graphModule_1.GraphModuleModel(client),
|
|
154
|
-
merkleStoreModule: new merkleStoreModule_1.MerkleStoreModuleModel(client),
|
|
155
162
|
rateLimitMetersModule: new rateLimitMetersModule_1.RateLimitMetersModuleModel(client),
|
|
156
|
-
|
|
163
|
+
infraConfigModule: new infraConfigModule_1.InfraConfigModuleModel(client),
|
|
157
164
|
webauthnAuthModule: new webauthnAuthModule_1.WebauthnAuthModuleModel(client),
|
|
158
|
-
|
|
165
|
+
principalAuthModule: new principalAuthModule_1.PrincipalAuthModuleModel(client),
|
|
166
|
+
dbPool: new dbPool_1.DbPoolModel(client),
|
|
159
167
|
functionModule: new functionModule_1.FunctionModuleModel(client),
|
|
168
|
+
merkleStoreModule: new merkleStoreModule_1.MerkleStoreModuleModel(client),
|
|
169
|
+
databaseProvisionModule: new databaseProvisionModule_1.DatabaseProvisionModuleModel(client),
|
|
170
|
+
functionInvocationModule: new functionInvocationModule_1.FunctionInvocationModuleModel(client),
|
|
160
171
|
invitesModule: new invitesModule_1.InvitesModuleModel(client),
|
|
161
|
-
|
|
172
|
+
namespaceModule: new namespaceModule_1.NamespaceModuleModel(client),
|
|
173
|
+
plansModule: new plansModule_1.PlansModuleModel(client),
|
|
162
174
|
computeLogModule: new computeLogModule_1.ComputeLogModuleModel(client),
|
|
163
175
|
inferenceLogModule: new inferenceLogModule_1.InferenceLogModuleModel(client),
|
|
164
|
-
namespaceModule: new namespaceModule_1.NamespaceModuleModel(client),
|
|
165
|
-
resourceModule: new resourceModule_1.ResourceModuleModel(client),
|
|
166
176
|
storageLogModule: new storageLogModule_1.StorageLogModuleModel(client),
|
|
167
177
|
transferLogModule: new transferLogModule_1.TransferLogModuleModel(client),
|
|
168
|
-
functionDeploymentModule: new functionDeploymentModule_1.FunctionDeploymentModuleModel(client),
|
|
169
|
-
plansModule: new plansModule_1.PlansModuleModel(client),
|
|
170
178
|
billingProviderModule: new billingProviderModule_1.BillingProviderModuleModel(client),
|
|
171
|
-
|
|
179
|
+
functionDeploymentModule: new functionDeploymentModule_1.FunctionDeploymentModuleModel(client),
|
|
180
|
+
permissionsModule: new permissionsModule_1.PermissionsModuleModel(client),
|
|
172
181
|
graphExecutionModule: new graphExecutionModule_1.GraphExecutionModuleModel(client),
|
|
173
182
|
hierarchyModule: new hierarchyModule_1.HierarchyModuleModel(client),
|
|
174
|
-
permissionsModule: new permissionsModule_1.PermissionsModuleModel(client),
|
|
175
183
|
notificationsModule: new notificationsModule_1.NotificationsModuleModel(client),
|
|
184
|
+
relationProvision: new relationProvision_1.RelationProvisionModel(client),
|
|
176
185
|
profilesModule: new profilesModule_1.ProfilesModuleModel(client),
|
|
177
186
|
billingModule: new billingModule_1.BillingModuleModel(client),
|
|
178
|
-
|
|
187
|
+
resourceModule: new resourceModule_1.ResourceModuleModel(client),
|
|
179
188
|
userAuthModule: new userAuthModule_1.UserAuthModuleModel(client),
|
|
189
|
+
dbUsageModule: new dbUsageModule_1.DbUsageModuleModel(client),
|
|
180
190
|
agentModule: new agentModule_1.AgentModuleModel(client),
|
|
181
191
|
limitsModule: new limitsModule_1.LimitsModuleModel(client),
|
|
182
|
-
membershipsModule: new membershipsModule_1.MembershipsModuleModel(client),
|
|
183
192
|
entityTypeProvision: new entityTypeProvision_1.EntityTypeProvisionModel(client),
|
|
184
193
|
storageModule: new storageModule_1.StorageModuleModel(client),
|
|
194
|
+
membershipsModule: new membershipsModule_1.MembershipsModuleModel(client),
|
|
185
195
|
eventsModule: new eventsModule_1.EventsModuleModel(client),
|
|
186
196
|
query: (0, query_1.createQueryOperations)(client),
|
|
187
197
|
mutation: (0, mutation_1.createMutationOperations)(client),
|