@constructive-io/react 0.7.2 → 0.8.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 +0 -8
- package/admin/orm/input-types.d.ts +33 -127
- package/admin/schema-types.d.ts +20 -110
- package/admin/types.d.ts +0 -19
- package/auth/hooks/index.d.ts +1 -1
- package/auth/hooks/index.js +1 -1
- package/auth/hooks/invalidation.d.ts +16 -16
- package/auth/hooks/invalidation.js +33 -33
- package/auth/hooks/mutation-keys.d.ts +32 -32
- package/auth/hooks/mutation-keys.js +20 -20
- package/auth/hooks/mutations/index.d.ts +9 -9
- package/auth/hooks/mutations/index.js +9 -9
- package/auth/hooks/queries/index.d.ts +6 -6
- package/auth/hooks/queries/index.js +6 -6
- package/auth/hooks/query-keys.d.ts +38 -38
- package/auth/hooks/query-keys.js +23 -23
- package/auth/orm/index.d.ts +6 -6
- package/auth/orm/index.js +6 -6
- package/auth/orm/input-types.d.ts +279 -327
- package/auth/orm/input-types.js +9 -1
- package/auth/orm/models/index.d.ts +3 -3
- package/auth/orm/models/index.js +7 -7
- package/auth/schema-types.d.ts +276 -188
- package/auth/types.d.ts +14 -24
- package/esm/admin/orm/input-types.d.ts +33 -127
- package/esm/admin/schema-types.d.ts +20 -110
- package/esm/admin/types.d.ts +0 -19
- package/esm/auth/hooks/index.d.ts +1 -1
- package/esm/auth/hooks/index.js +1 -1
- package/esm/auth/hooks/invalidation.d.ts +16 -16
- package/esm/auth/hooks/invalidation.js +34 -34
- package/esm/auth/hooks/mutation-keys.d.ts +32 -32
- package/esm/auth/hooks/mutation-keys.js +19 -19
- package/esm/auth/hooks/mutations/index.d.ts +9 -9
- package/esm/auth/hooks/mutations/index.js +9 -9
- package/esm/auth/hooks/queries/index.d.ts +6 -6
- package/esm/auth/hooks/queries/index.js +6 -6
- package/esm/auth/hooks/query-keys.d.ts +38 -38
- package/esm/auth/hooks/query-keys.js +22 -22
- package/esm/auth/orm/index.d.ts +6 -6
- package/esm/auth/orm/index.js +6 -6
- package/esm/auth/orm/input-types.d.ts +279 -327
- package/esm/auth/orm/input-types.js +9 -1
- package/esm/auth/orm/models/index.d.ts +3 -3
- package/esm/auth/orm/models/index.js +3 -3
- package/esm/auth/schema-types.d.ts +276 -188
- package/esm/auth/types.d.ts +14 -24
- package/esm/index.d.ts +5 -1
- package/esm/index.js +5 -1
- package/esm/objects/orm/input-types.d.ts +17 -48
- package/esm/objects/schema-types.d.ts +3 -37
- package/esm/objects/types.d.ts +0 -6
- package/esm/public/hooks/index.d.ts +1 -1
- package/esm/public/hooks/index.js +1 -1
- package/esm/public/hooks/invalidation.d.ts +77 -53
- package/esm/public/hooks/invalidation.js +202 -138
- package/esm/public/hooks/mutation-keys.d.ts +180 -122
- package/esm/public/hooks/mutation-keys.js +129 -86
- package/esm/public/hooks/mutations/index.d.ts +50 -33
- package/esm/public/hooks/mutations/index.js +50 -33
- package/esm/public/hooks/mutations/useAcceptDatabaseTransferMutation.d.ts +20 -0
- package/esm/public/hooks/mutations/useAcceptDatabaseTransferMutation.js +23 -0
- package/esm/public/hooks/mutations/useCancelDatabaseTransferMutation.d.ts +20 -0
- package/esm/public/hooks/mutations/useCancelDatabaseTransferMutation.js +23 -0
- package/esm/public/hooks/mutations/useConstructBlueprintMutation.d.ts +20 -0
- package/esm/public/hooks/mutations/useConstructBlueprintMutation.js +23 -0
- package/esm/public/hooks/mutations/useCopyTemplateToBlueprintMutation.d.ts +20 -0
- package/esm/public/hooks/mutations/useCopyTemplateToBlueprintMutation.js +23 -0
- package/esm/public/hooks/mutations/useCreateBlueprintMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateBlueprintMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateBlueprintTemplateMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateBlueprintTemplateMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateDatabaseTransferMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateDatabaseTransferMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateEmbeddingChunkMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateEmbeddingChunkMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateEnumMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/{useCreateUuidModuleMutation.js → useCreateEnumMutation.js} +7 -7
- package/esm/public/hooks/mutations/useDeleteBlueprintMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteBlueprintMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteBlueprintTemplateMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteBlueprintTemplateMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteDatabaseTransferMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteDatabaseTransferMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteEmbeddingChunkMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteEmbeddingChunkMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteEnumMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/{useDeleteUuidModuleMutation.js → useDeleteEnumMutation.js} +8 -8
- package/esm/public/hooks/mutations/useRejectDatabaseTransferMutation.d.ts +20 -0
- package/esm/public/hooks/mutations/useRejectDatabaseTransferMutation.js +23 -0
- package/esm/public/hooks/mutations/useUpdateBlueprintMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateBlueprintMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateBlueprintTemplateMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateBlueprintTemplateMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateDatabaseTransferMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateDatabaseTransferMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateEmbeddingChunkMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateEmbeddingChunkMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateEnumMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/{useUpdateUuidModuleMutation.js → useUpdateEnumMutation.js} +10 -10
- package/esm/public/hooks/queries/index.d.ts +25 -17
- package/esm/public/hooks/queries/index.js +25 -17
- package/esm/public/hooks/queries/useBlueprintQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useBlueprintQuery.js +47 -0
- package/esm/public/hooks/queries/useBlueprintTemplateQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useBlueprintTemplateQuery.js +47 -0
- package/esm/public/hooks/queries/useBlueprintTemplatesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useBlueprintTemplatesQuery.js +32 -0
- package/esm/public/hooks/queries/useBlueprintsQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useBlueprintsQuery.js +32 -0
- package/esm/public/hooks/queries/useDatabaseTransferQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useDatabaseTransferQuery.js +47 -0
- package/esm/public/hooks/queries/useDatabaseTransfersQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useDatabaseTransfersQuery.js +32 -0
- package/esm/public/hooks/queries/useEmbeddingChunkQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useEmbeddingChunkQuery.js +47 -0
- package/esm/public/hooks/queries/useEmbeddingChunksQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useEmbeddingChunksQuery.js +32 -0
- package/esm/public/hooks/queries/useEnumQuery.d.ts +65 -0
- package/esm/public/hooks/queries/{useUuidModuleQuery.js → useEnumQuery.js} +11 -11
- package/esm/public/hooks/queries/useEnumsQuery.d.ts +69 -0
- package/esm/public/hooks/queries/{useUuidModulesQuery.js → useEnumsQuery.js} +11 -11
- package/esm/public/hooks/query-keys.d.ts +180 -124
- package/esm/public/hooks/query-keys.js +103 -71
- package/esm/public/orm/index.d.ts +81 -48
- package/esm/public/orm/index.js +26 -18
- package/esm/public/orm/input-types.d.ts +2447 -2980
- package/esm/public/orm/input-types.js +26 -1
- package/esm/public/orm/models/blueprint.d.ts +56 -0
- package/esm/public/orm/models/blueprint.js +94 -0
- package/esm/public/orm/models/blueprintTemplate.d.ts +56 -0
- package/esm/public/orm/models/blueprintTemplate.js +94 -0
- package/esm/public/orm/models/databaseTransfer.d.ts +56 -0
- package/esm/public/orm/models/databaseTransfer.js +94 -0
- package/esm/public/orm/models/embeddingChunk.d.ts +56 -0
- package/esm/public/orm/models/embeddingChunk.js +94 -0
- package/esm/public/orm/models/enum.d.ts +56 -0
- package/esm/public/orm/models/{uuidModule.js → enum.js} +23 -23
- package/esm/public/orm/models/index.d.ts +13 -9
- package/esm/public/orm/models/index.js +13 -9
- package/esm/public/orm/mutation/index.d.ts +98 -50
- package/esm/public/orm/mutation/index.js +126 -66
- package/esm/public/schema-types.d.ts +2328 -2206
- package/esm/public/types.d.ts +161 -379
- package/index.d.ts +5 -1
- package/index.js +5 -1
- package/objects/orm/input-types.d.ts +17 -48
- package/objects/schema-types.d.ts +3 -37
- package/objects/types.d.ts +0 -6
- package/package.json +3 -3
- package/public/hooks/index.d.ts +1 -1
- package/public/hooks/index.js +1 -1
- package/public/hooks/invalidation.d.ts +77 -53
- package/public/hooks/invalidation.js +201 -137
- package/public/hooks/mutation-keys.d.ts +180 -122
- package/public/hooks/mutation-keys.js +132 -89
- package/public/hooks/mutations/index.d.ts +50 -33
- package/public/hooks/mutations/index.js +50 -33
- package/public/hooks/mutations/useAcceptDatabaseTransferMutation.d.ts +20 -0
- package/public/hooks/mutations/useAcceptDatabaseTransferMutation.js +26 -0
- package/public/hooks/mutations/useCancelDatabaseTransferMutation.d.ts +20 -0
- package/public/hooks/mutations/useCancelDatabaseTransferMutation.js +26 -0
- package/public/hooks/mutations/useConstructBlueprintMutation.d.ts +20 -0
- package/public/hooks/mutations/useConstructBlueprintMutation.js +26 -0
- package/public/hooks/mutations/useCopyTemplateToBlueprintMutation.d.ts +20 -0
- package/public/hooks/mutations/useCopyTemplateToBlueprintMutation.js +26 -0
- package/public/hooks/mutations/useCreateBlueprintMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateBlueprintMutation.js +34 -0
- package/public/hooks/mutations/useCreateBlueprintTemplateMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateBlueprintTemplateMutation.js +34 -0
- package/public/hooks/mutations/useCreateDatabaseTransferMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateDatabaseTransferMutation.js +34 -0
- package/public/hooks/mutations/useCreateEmbeddingChunkMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateEmbeddingChunkMutation.js +34 -0
- package/public/hooks/mutations/useCreateEnumMutation.d.ts +34 -0
- package/public/hooks/mutations/{useCreateUuidModuleMutation.js → useCreateEnumMutation.js} +6 -6
- package/public/hooks/mutations/useDeleteBlueprintMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteBlueprintMutation.js +39 -0
- package/public/hooks/mutations/useDeleteBlueprintTemplateMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteBlueprintTemplateMutation.js +39 -0
- package/public/hooks/mutations/useDeleteDatabaseTransferMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteDatabaseTransferMutation.js +39 -0
- package/public/hooks/mutations/useDeleteEmbeddingChunkMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteEmbeddingChunkMutation.js +39 -0
- package/public/hooks/mutations/useDeleteEnumMutation.d.ts +38 -0
- package/public/hooks/mutations/{useDeleteUuidModuleMutation.js → useDeleteEnumMutation.js} +7 -7
- package/public/hooks/mutations/useRejectDatabaseTransferMutation.d.ts +20 -0
- package/public/hooks/mutations/useRejectDatabaseTransferMutation.js +26 -0
- package/public/hooks/mutations/useUpdateBlueprintMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateBlueprintMutation.js +40 -0
- package/public/hooks/mutations/useUpdateBlueprintTemplateMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateBlueprintTemplateMutation.js +40 -0
- package/public/hooks/mutations/useUpdateDatabaseTransferMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateDatabaseTransferMutation.js +40 -0
- package/public/hooks/mutations/useUpdateEmbeddingChunkMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateEmbeddingChunkMutation.js +40 -0
- package/public/hooks/mutations/useUpdateEnumMutation.d.ts +40 -0
- package/public/hooks/mutations/{useUpdateUuidModuleMutation.js → useUpdateEnumMutation.js} +9 -9
- package/public/hooks/queries/index.d.ts +25 -17
- package/public/hooks/queries/index.js +25 -17
- package/public/hooks/queries/useBlueprintQuery.d.ts +65 -0
- package/public/hooks/queries/useBlueprintQuery.js +53 -0
- package/public/hooks/queries/useBlueprintTemplateQuery.d.ts +65 -0
- package/public/hooks/queries/useBlueprintTemplateQuery.js +53 -0
- package/public/hooks/queries/useBlueprintTemplatesQuery.d.ts +69 -0
- package/public/hooks/queries/useBlueprintTemplatesQuery.js +38 -0
- package/public/hooks/queries/useBlueprintsQuery.d.ts +69 -0
- package/public/hooks/queries/useBlueprintsQuery.js +38 -0
- package/public/hooks/queries/useDatabaseTransferQuery.d.ts +65 -0
- package/public/hooks/queries/useDatabaseTransferQuery.js +53 -0
- package/public/hooks/queries/useDatabaseTransfersQuery.d.ts +69 -0
- package/public/hooks/queries/useDatabaseTransfersQuery.js +38 -0
- package/public/hooks/queries/useEmbeddingChunkQuery.d.ts +65 -0
- package/public/hooks/queries/useEmbeddingChunkQuery.js +53 -0
- package/public/hooks/queries/useEmbeddingChunksQuery.d.ts +69 -0
- package/public/hooks/queries/useEmbeddingChunksQuery.js +38 -0
- package/public/hooks/queries/useEnumQuery.d.ts +65 -0
- package/public/hooks/queries/{useUuidModuleQuery.js → useEnumQuery.js} +14 -14
- package/public/hooks/queries/useEnumsQuery.d.ts +69 -0
- package/public/hooks/queries/{useUuidModulesQuery.js → useEnumsQuery.js} +14 -14
- package/public/hooks/query-keys.d.ts +180 -124
- package/public/hooks/query-keys.js +106 -74
- package/public/orm/index.d.ts +81 -48
- package/public/orm/index.js +26 -18
- package/public/orm/input-types.d.ts +2447 -2980
- package/public/orm/input-types.js +26 -1
- package/public/orm/models/blueprint.d.ts +56 -0
- package/public/orm/models/blueprint.js +98 -0
- package/public/orm/models/blueprintTemplate.d.ts +56 -0
- package/public/orm/models/blueprintTemplate.js +98 -0
- package/public/orm/models/databaseTransfer.d.ts +56 -0
- package/public/orm/models/databaseTransfer.js +98 -0
- package/public/orm/models/embeddingChunk.d.ts +56 -0
- package/public/orm/models/embeddingChunk.js +98 -0
- package/public/orm/models/enum.d.ts +56 -0
- package/public/orm/models/{uuidModule.js → enum.js} +25 -25
- package/public/orm/models/index.d.ts +13 -9
- package/public/orm/models/index.js +29 -21
- package/public/orm/mutation/index.d.ts +98 -50
- package/public/orm/mutation/index.js +126 -66
- package/public/schema-types.d.ts +2328 -2206
- package/public/types.d.ts +161 -379
- package/esm/public/hooks/mutations/useCreateUuidModuleMutation.d.ts +0 -34
- package/esm/public/hooks/mutations/useDeleteUuidModuleMutation.d.ts +0 -38
- package/esm/public/hooks/mutations/useUpdateUuidModuleMutation.d.ts +0 -40
- package/esm/public/hooks/queries/useUuidModuleQuery.d.ts +0 -65
- package/esm/public/hooks/queries/useUuidModulesQuery.d.ts +0 -69
- package/esm/public/orm/models/uuidModule.d.ts +0 -56
- package/public/hooks/mutations/useCreateUuidModuleMutation.d.ts +0 -34
- package/public/hooks/mutations/useDeleteUuidModuleMutation.d.ts +0 -38
- package/public/hooks/mutations/useUpdateUuidModuleMutation.d.ts +0 -40
- package/public/hooks/queries/useUuidModuleQuery.d.ts +0 -65
- package/public/hooks/queries/useUuidModulesQuery.d.ts +0 -69
- package/public/orm/models/uuidModule.d.ts +0 -56
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { OrmClientConfig } from './client';
|
|
2
|
+
import { GetAllRecordModel } from './models/getAllRecord';
|
|
2
3
|
import { OrgGetManagersRecordModel } from './models/orgGetManagersRecord';
|
|
3
4
|
import { OrgGetSubordinatesRecordModel } from './models/orgGetSubordinatesRecord';
|
|
4
|
-
import { GetAllRecordModel } from './models/getAllRecord';
|
|
5
5
|
import { ObjectModel } from './models/object';
|
|
6
6
|
import { AppPermissionModel } from './models/appPermission';
|
|
7
7
|
import { OrgPermissionModel } from './models/orgPermission';
|
|
@@ -23,11 +23,13 @@ import { ViewModel } from './models/view';
|
|
|
23
23
|
import { ViewTableModel } from './models/viewTable';
|
|
24
24
|
import { ViewGrantModel } from './models/viewGrant';
|
|
25
25
|
import { ViewRuleModel } from './models/viewRule';
|
|
26
|
+
import { EmbeddingChunkModel } from './models/embeddingChunk';
|
|
26
27
|
import { TableTemplateModuleModel } from './models/tableTemplateModule';
|
|
27
28
|
import { SecureTableProvisionModel } from './models/secureTableProvision';
|
|
28
29
|
import { RelationProvisionModel } from './models/relationProvision';
|
|
29
30
|
import { SchemaGrantModel } from './models/schemaGrant';
|
|
30
31
|
import { DefaultPrivilegeModel } from './models/defaultPrivilege';
|
|
32
|
+
import { EnumModel } from './models/enum';
|
|
31
33
|
import { ApiSchemaModel } from './models/apiSchema';
|
|
32
34
|
import { ApiModuleModel } from './models/apiModule';
|
|
33
35
|
import { DomainModel } from './models/domain';
|
|
@@ -35,6 +37,7 @@ import { SiteMetadatumModel } from './models/siteMetadatum';
|
|
|
35
37
|
import { SiteModuleModel } from './models/siteModule';
|
|
36
38
|
import { SiteThemeModel } from './models/siteTheme';
|
|
37
39
|
import { TriggerFunctionModel } from './models/triggerFunction';
|
|
40
|
+
import { DatabaseTransferModel } from './models/databaseTransfer';
|
|
38
41
|
import { ApiModel } from './models/api';
|
|
39
42
|
import { SiteModel } from './models/site';
|
|
40
43
|
import { AppModel } from './models/app';
|
|
@@ -58,7 +61,8 @@ import { SecretsModuleModel } from './models/secretsModule';
|
|
|
58
61
|
import { SessionsModuleModel } from './models/sessionsModule';
|
|
59
62
|
import { UserAuthModuleModel } from './models/userAuthModule';
|
|
60
63
|
import { UsersModuleModel } from './models/usersModule';
|
|
61
|
-
import {
|
|
64
|
+
import { BlueprintModel } from './models/blueprint';
|
|
65
|
+
import { BlueprintTemplateModel } from './models/blueprintTemplate';
|
|
62
66
|
import { DatabaseProvisionModuleModel } from './models/databaseProvisionModule';
|
|
63
67
|
import { AppAdminGrantModel } from './models/appAdminGrant';
|
|
64
68
|
import { AppOwnerGrantModel } from './models/appOwnerGrant';
|
|
@@ -70,34 +74,34 @@ import { OrgOwnerGrantModel } from './models/orgOwnerGrant';
|
|
|
70
74
|
import { OrgGrantModel } from './models/orgGrant';
|
|
71
75
|
import { OrgChartEdgeModel } from './models/orgChartEdge';
|
|
72
76
|
import { OrgChartEdgeGrantModel } from './models/orgChartEdgeGrant';
|
|
77
|
+
import { OrgPermissionDefaultModel } from './models/orgPermissionDefault';
|
|
73
78
|
import { AppLimitModel } from './models/appLimit';
|
|
74
79
|
import { OrgLimitModel } from './models/orgLimit';
|
|
75
80
|
import { AppStepModel } from './models/appStep';
|
|
76
81
|
import { AppAchievementModel } from './models/appAchievement';
|
|
82
|
+
import { AppLevelModel } from './models/appLevel';
|
|
83
|
+
import { EmailModel } from './models/email';
|
|
84
|
+
import { PhoneNumberModel } from './models/phoneNumber';
|
|
85
|
+
import { CryptoAddressModel } from './models/cryptoAddress';
|
|
86
|
+
import { ConnectedAccountModel } from './models/connectedAccount';
|
|
77
87
|
import { InviteModel } from './models/invite';
|
|
78
88
|
import { ClaimedInviteModel } from './models/claimedInvite';
|
|
79
89
|
import { OrgInviteModel } from './models/orgInvite';
|
|
80
90
|
import { OrgClaimedInviteModel } from './models/orgClaimedInvite';
|
|
91
|
+
import { AuditLogModel } from './models/auditLog';
|
|
81
92
|
import { RefModel } from './models/ref';
|
|
82
93
|
import { StoreModel } from './models/store';
|
|
83
94
|
import { AppPermissionDefaultModel } from './models/appPermissionDefault';
|
|
84
|
-
import { CryptoAddressModel } from './models/cryptoAddress';
|
|
85
95
|
import { RoleTypeModel } from './models/roleType';
|
|
86
|
-
import { OrgPermissionDefaultModel } from './models/orgPermissionDefault';
|
|
87
|
-
import { PhoneNumberModel } from './models/phoneNumber';
|
|
88
96
|
import { AppLimitDefaultModel } from './models/appLimitDefault';
|
|
89
97
|
import { OrgLimitDefaultModel } from './models/orgLimitDefault';
|
|
90
|
-
import { ConnectedAccountModel } from './models/connectedAccount';
|
|
91
98
|
import { NodeTypeRegistryModel } from './models/nodeTypeRegistry';
|
|
92
99
|
import { MembershipTypeModel } from './models/membershipType';
|
|
93
100
|
import { CommitModel } from './models/commit';
|
|
94
101
|
import { AppMembershipDefaultModel } from './models/appMembershipDefault';
|
|
95
102
|
import { RlsModuleModel } from './models/rlsModule';
|
|
96
103
|
import { OrgMembershipDefaultModel } from './models/orgMembershipDefault';
|
|
97
|
-
import { AuditLogModel } from './models/auditLog';
|
|
98
|
-
import { AppLevelModel } from './models/appLevel';
|
|
99
104
|
import { SqlMigrationModel } from './models/sqlMigration';
|
|
100
|
-
import { EmailModel } from './models/email';
|
|
101
105
|
import { UserModel } from './models/user';
|
|
102
106
|
import { AstMigrationModel } from './models/astMigration';
|
|
103
107
|
import { AppMembershipModel } from './models/appMembership';
|
|
@@ -133,9 +137,9 @@ export { createMutationOperations } from './mutation';
|
|
|
133
137
|
* ```
|
|
134
138
|
*/
|
|
135
139
|
export declare function createClient(config: OrmClientConfig): {
|
|
140
|
+
getAllRecord: GetAllRecordModel;
|
|
136
141
|
orgGetManagersRecord: OrgGetManagersRecordModel;
|
|
137
142
|
orgGetSubordinatesRecord: OrgGetSubordinatesRecordModel;
|
|
138
|
-
getAllRecord: GetAllRecordModel;
|
|
139
143
|
object: ObjectModel;
|
|
140
144
|
appPermission: AppPermissionModel;
|
|
141
145
|
orgPermission: OrgPermissionModel;
|
|
@@ -157,11 +161,13 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
157
161
|
viewTable: ViewTableModel;
|
|
158
162
|
viewGrant: ViewGrantModel;
|
|
159
163
|
viewRule: ViewRuleModel;
|
|
164
|
+
embeddingChunk: EmbeddingChunkModel;
|
|
160
165
|
tableTemplateModule: TableTemplateModuleModel;
|
|
161
166
|
secureTableProvision: SecureTableProvisionModel;
|
|
162
167
|
relationProvision: RelationProvisionModel;
|
|
163
168
|
schemaGrant: SchemaGrantModel;
|
|
164
169
|
defaultPrivilege: DefaultPrivilegeModel;
|
|
170
|
+
enum: EnumModel;
|
|
165
171
|
apiSchema: ApiSchemaModel;
|
|
166
172
|
apiModule: ApiModuleModel;
|
|
167
173
|
domain: DomainModel;
|
|
@@ -169,6 +175,7 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
169
175
|
siteModule: SiteModuleModel;
|
|
170
176
|
siteTheme: SiteThemeModel;
|
|
171
177
|
triggerFunction: TriggerFunctionModel;
|
|
178
|
+
databaseTransfer: DatabaseTransferModel;
|
|
172
179
|
api: ApiModel;
|
|
173
180
|
site: SiteModel;
|
|
174
181
|
app: AppModel;
|
|
@@ -192,7 +199,8 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
192
199
|
sessionsModule: SessionsModuleModel;
|
|
193
200
|
userAuthModule: UserAuthModuleModel;
|
|
194
201
|
usersModule: UsersModuleModel;
|
|
195
|
-
|
|
202
|
+
blueprint: BlueprintModel;
|
|
203
|
+
blueprintTemplate: BlueprintTemplateModel;
|
|
196
204
|
databaseProvisionModule: DatabaseProvisionModuleModel;
|
|
197
205
|
appAdminGrant: AppAdminGrantModel;
|
|
198
206
|
appOwnerGrant: AppOwnerGrantModel;
|
|
@@ -204,34 +212,34 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
204
212
|
orgGrant: OrgGrantModel;
|
|
205
213
|
orgChartEdge: OrgChartEdgeModel;
|
|
206
214
|
orgChartEdgeGrant: OrgChartEdgeGrantModel;
|
|
215
|
+
orgPermissionDefault: OrgPermissionDefaultModel;
|
|
207
216
|
appLimit: AppLimitModel;
|
|
208
217
|
orgLimit: OrgLimitModel;
|
|
209
218
|
appStep: AppStepModel;
|
|
210
219
|
appAchievement: AppAchievementModel;
|
|
220
|
+
appLevel: AppLevelModel;
|
|
221
|
+
email: EmailModel;
|
|
222
|
+
phoneNumber: PhoneNumberModel;
|
|
223
|
+
cryptoAddress: CryptoAddressModel;
|
|
224
|
+
connectedAccount: ConnectedAccountModel;
|
|
211
225
|
invite: InviteModel;
|
|
212
226
|
claimedInvite: ClaimedInviteModel;
|
|
213
227
|
orgInvite: OrgInviteModel;
|
|
214
228
|
orgClaimedInvite: OrgClaimedInviteModel;
|
|
229
|
+
auditLog: AuditLogModel;
|
|
215
230
|
ref: RefModel;
|
|
216
231
|
store: StoreModel;
|
|
217
232
|
appPermissionDefault: AppPermissionDefaultModel;
|
|
218
|
-
cryptoAddress: CryptoAddressModel;
|
|
219
233
|
roleType: RoleTypeModel;
|
|
220
|
-
orgPermissionDefault: OrgPermissionDefaultModel;
|
|
221
|
-
phoneNumber: PhoneNumberModel;
|
|
222
234
|
appLimitDefault: AppLimitDefaultModel;
|
|
223
235
|
orgLimitDefault: OrgLimitDefaultModel;
|
|
224
|
-
connectedAccount: ConnectedAccountModel;
|
|
225
236
|
nodeTypeRegistry: NodeTypeRegistryModel;
|
|
226
237
|
membershipType: MembershipTypeModel;
|
|
227
238
|
commit: CommitModel;
|
|
228
239
|
appMembershipDefault: AppMembershipDefaultModel;
|
|
229
240
|
rlsModule: RlsModuleModel;
|
|
230
241
|
orgMembershipDefault: OrgMembershipDefaultModel;
|
|
231
|
-
auditLog: AuditLogModel;
|
|
232
|
-
appLevel: AppLevelModel;
|
|
233
242
|
sqlMigration: SqlMigrationModel;
|
|
234
|
-
email: EmailModel;
|
|
235
243
|
user: UserModel;
|
|
236
244
|
astMigration: AstMigrationModel;
|
|
237
245
|
appMembership: AppMembershipModel;
|
|
@@ -334,20 +342,30 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
334
342
|
}>;
|
|
335
343
|
};
|
|
336
344
|
mutation: {
|
|
345
|
+
sendAccountDeletionEmail: <S extends import("./input-types").SendAccountDeletionEmailPayloadSelect>(args: import("./mutation").SendAccountDeletionEmailVariables, options: {
|
|
346
|
+
select: S;
|
|
347
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").SendAccountDeletionEmailPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
348
|
+
sendAccountDeletionEmail: import("./select-types").InferSelectResult<import("./input-types").SendAccountDeletionEmailPayload, S> | null;
|
|
349
|
+
}>;
|
|
337
350
|
signOut: <S extends import("./input-types").SignOutPayloadSelect>(args: import("./mutation").SignOutVariables, options: {
|
|
338
351
|
select: S;
|
|
339
352
|
} & import("./select-types").StrictSelect<S, import("./input-types").SignOutPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
340
353
|
signOut: import("./select-types").InferSelectResult<import("./input-types").SignOutPayload, S> | null;
|
|
341
354
|
}>;
|
|
342
|
-
|
|
355
|
+
acceptDatabaseTransfer: <S extends import("./input-types").AcceptDatabaseTransferPayloadSelect>(args: import("./mutation").AcceptDatabaseTransferVariables, options: {
|
|
343
356
|
select: S;
|
|
344
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").
|
|
345
|
-
|
|
357
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").AcceptDatabaseTransferPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
358
|
+
acceptDatabaseTransfer: import("./select-types").InferSelectResult<import("./input-types").AcceptDatabaseTransferPayload, S> | null;
|
|
346
359
|
}>;
|
|
347
|
-
|
|
360
|
+
cancelDatabaseTransfer: <S extends import("./input-types").CancelDatabaseTransferPayloadSelect>(args: import("./mutation").CancelDatabaseTransferVariables, options: {
|
|
348
361
|
select: S;
|
|
349
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").
|
|
350
|
-
|
|
362
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").CancelDatabaseTransferPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
363
|
+
cancelDatabaseTransfer: import("./select-types").InferSelectResult<import("./input-types").CancelDatabaseTransferPayload, S> | null;
|
|
364
|
+
}>;
|
|
365
|
+
rejectDatabaseTransfer: <S extends import("./input-types").RejectDatabaseTransferPayloadSelect>(args: import("./mutation").RejectDatabaseTransferVariables, options: {
|
|
366
|
+
select: S;
|
|
367
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").RejectDatabaseTransferPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
368
|
+
rejectDatabaseTransfer: import("./select-types").InferSelectResult<import("./input-types").RejectDatabaseTransferPayload, S> | null;
|
|
351
369
|
}>;
|
|
352
370
|
submitInviteCode: <S extends import("./input-types").SubmitInviteCodePayloadSelect>(args: import("./mutation").SubmitInviteCodeVariables, options: {
|
|
353
371
|
select: S;
|
|
@@ -359,15 +377,10 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
359
377
|
} & import("./select-types").StrictSelect<S, import("./input-types").SubmitOrgInviteCodePayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
360
378
|
submitOrgInviteCode: import("./select-types").InferSelectResult<import("./input-types").SubmitOrgInviteCodePayload, S> | null;
|
|
361
379
|
}>;
|
|
362
|
-
|
|
363
|
-
select: S;
|
|
364
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").FreezeObjectsPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
365
|
-
freezeObjects: import("./select-types").InferSelectResult<import("./input-types").FreezeObjectsPayload, S> | null;
|
|
366
|
-
}>;
|
|
367
|
-
initEmptyRepo: <S extends import("./input-types").InitEmptyRepoPayloadSelect>(args: import("./mutation").InitEmptyRepoVariables, options: {
|
|
380
|
+
checkPassword: <S extends import("./input-types").CheckPasswordPayloadSelect>(args: import("./mutation").CheckPasswordVariables, options: {
|
|
368
381
|
select: S;
|
|
369
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").
|
|
370
|
-
|
|
382
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").CheckPasswordPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
383
|
+
checkPassword: import("./select-types").InferSelectResult<import("./input-types").CheckPasswordPayload, S> | null;
|
|
371
384
|
}>;
|
|
372
385
|
confirmDeleteAccount: <S extends import("./input-types").ConfirmDeleteAccountPayloadSelect>(args: import("./mutation").ConfirmDeleteAccountVariables, options: {
|
|
373
386
|
select: S;
|
|
@@ -384,25 +397,30 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
384
397
|
} & import("./select-types").StrictSelect<S, import("./input-types").VerifyEmailPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
385
398
|
verifyEmail: import("./select-types").InferSelectResult<import("./input-types").VerifyEmailPayload, S> | null;
|
|
386
399
|
}>;
|
|
387
|
-
|
|
400
|
+
freezeObjects: <S extends import("./input-types").FreezeObjectsPayloadSelect>(args: import("./mutation").FreezeObjectsVariables, options: {
|
|
388
401
|
select: S;
|
|
389
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").
|
|
390
|
-
|
|
402
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").FreezeObjectsPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
403
|
+
freezeObjects: import("./select-types").InferSelectResult<import("./input-types").FreezeObjectsPayload, S> | null;
|
|
404
|
+
}>;
|
|
405
|
+
initEmptyRepo: <S extends import("./input-types").InitEmptyRepoPayloadSelect>(args: import("./mutation").InitEmptyRepoVariables, options: {
|
|
406
|
+
select: S;
|
|
407
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").InitEmptyRepoPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
408
|
+
initEmptyRepo: import("./select-types").InferSelectResult<import("./input-types").InitEmptyRepoPayload, S> | null;
|
|
409
|
+
}>;
|
|
410
|
+
constructBlueprint: <S extends import("./input-types").ConstructBlueprintPayloadSelect>(args: import("./mutation").ConstructBlueprintVariables, options: {
|
|
411
|
+
select: S;
|
|
412
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").ConstructBlueprintPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
413
|
+
constructBlueprint: import("./select-types").InferSelectResult<import("./input-types").ConstructBlueprintPayload, S> | null;
|
|
391
414
|
}>;
|
|
392
415
|
resetPassword: <S extends import("./input-types").ResetPasswordPayloadSelect>(args: import("./mutation").ResetPasswordVariables, options: {
|
|
393
416
|
select: S;
|
|
394
417
|
} & import("./select-types").StrictSelect<S, import("./input-types").ResetPasswordPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
395
418
|
resetPassword: import("./select-types").InferSelectResult<import("./input-types").ResetPasswordPayload, S> | null;
|
|
396
419
|
}>;
|
|
397
|
-
|
|
398
|
-
select: S;
|
|
399
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").BootstrapUserPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
400
|
-
bootstrapUser: import("./select-types").InferSelectResult<import("./input-types").BootstrapUserPayload, S> | null;
|
|
401
|
-
}>;
|
|
402
|
-
setFieldOrder: <S extends import("./input-types").SetFieldOrderPayloadSelect>(args: import("./mutation").SetFieldOrderVariables, options: {
|
|
420
|
+
removeNodeAtPath: <S extends import("./input-types").RemoveNodeAtPathPayloadSelect>(args: import("./mutation").RemoveNodeAtPathVariables, options: {
|
|
403
421
|
select: S;
|
|
404
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").
|
|
405
|
-
|
|
422
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").RemoveNodeAtPathPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
423
|
+
removeNodeAtPath: import("./select-types").InferSelectResult<import("./input-types").RemoveNodeAtPathPayload, S> | null;
|
|
406
424
|
}>;
|
|
407
425
|
setDataAtPath: <S extends import("./input-types").SetDataAtPathPayloadSelect>(args: import("./mutation").SetDataAtPathVariables, options: {
|
|
408
426
|
select: S;
|
|
@@ -414,11 +432,26 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
414
432
|
} & import("./select-types").StrictSelect<S, import("./input-types").SetPropsAndCommitPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
415
433
|
setPropsAndCommit: import("./select-types").InferSelectResult<import("./input-types").SetPropsAndCommitPayload, S> | null;
|
|
416
434
|
}>;
|
|
435
|
+
copyTemplateToBlueprint: <S extends import("./input-types").CopyTemplateToBlueprintPayloadSelect>(args: import("./mutation").CopyTemplateToBlueprintVariables, options: {
|
|
436
|
+
select: S;
|
|
437
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").CopyTemplateToBlueprintPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
438
|
+
copyTemplateToBlueprint: import("./select-types").InferSelectResult<import("./input-types").CopyTemplateToBlueprintPayload, S> | null;
|
|
439
|
+
}>;
|
|
417
440
|
provisionDatabaseWithUser: <S extends import("./input-types").ProvisionDatabaseWithUserPayloadSelect>(args: import("./mutation").ProvisionDatabaseWithUserVariables, options: {
|
|
418
441
|
select: S;
|
|
419
442
|
} & import("./select-types").StrictSelect<S, import("./input-types").ProvisionDatabaseWithUserPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
420
443
|
provisionDatabaseWithUser: import("./select-types").InferSelectResult<import("./input-types").ProvisionDatabaseWithUserPayload, S> | null;
|
|
421
444
|
}>;
|
|
445
|
+
bootstrapUser: <S extends import("./input-types").BootstrapUserPayloadSelect>(args: import("./mutation").BootstrapUserVariables, options: {
|
|
446
|
+
select: S;
|
|
447
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").BootstrapUserPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
448
|
+
bootstrapUser: import("./select-types").InferSelectResult<import("./input-types").BootstrapUserPayload, S> | null;
|
|
449
|
+
}>;
|
|
450
|
+
setFieldOrder: <S extends import("./input-types").SetFieldOrderPayloadSelect>(args: import("./mutation").SetFieldOrderVariables, options: {
|
|
451
|
+
select: S;
|
|
452
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").SetFieldOrderPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
453
|
+
setFieldOrder: import("./select-types").InferSelectResult<import("./input-types").SetFieldOrderPayload, S> | null;
|
|
454
|
+
}>;
|
|
422
455
|
insertNodeAtPath: <S extends import("./input-types").InsertNodeAtPathPayloadSelect>(args: import("./mutation").InsertNodeAtPathVariables, options: {
|
|
423
456
|
select: S;
|
|
424
457
|
} & import("./select-types").StrictSelect<S, import("./input-types").InsertNodeAtPathPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
@@ -469,16 +502,16 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
469
502
|
} & import("./select-types").StrictSelect<S, import("./input-types").OneTimeTokenPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
470
503
|
oneTimeToken: import("./select-types").InferSelectResult<import("./input-types").OneTimeTokenPayload, S> | null;
|
|
471
504
|
}>;
|
|
472
|
-
forgotPassword: <S extends import("./input-types").ForgotPasswordPayloadSelect>(args: import("./mutation").ForgotPasswordVariables, options: {
|
|
473
|
-
select: S;
|
|
474
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").ForgotPasswordPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
475
|
-
forgotPassword: import("./select-types").InferSelectResult<import("./input-types").ForgotPasswordPayload, S> | null;
|
|
476
|
-
}>;
|
|
477
505
|
sendVerificationEmail: <S extends import("./input-types").SendVerificationEmailPayloadSelect>(args: import("./mutation").SendVerificationEmailVariables, options: {
|
|
478
506
|
select: S;
|
|
479
507
|
} & import("./select-types").StrictSelect<S, import("./input-types").SendVerificationEmailPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
480
508
|
sendVerificationEmail: import("./select-types").InferSelectResult<import("./input-types").SendVerificationEmailPayload, S> | null;
|
|
481
509
|
}>;
|
|
510
|
+
forgotPassword: <S extends import("./input-types").ForgotPasswordPayloadSelect>(args: import("./mutation").ForgotPasswordVariables, options: {
|
|
511
|
+
select: S;
|
|
512
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").ForgotPasswordPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
513
|
+
forgotPassword: import("./select-types").InferSelectResult<import("./input-types").ForgotPasswordPayload, S> | null;
|
|
514
|
+
}>;
|
|
482
515
|
verifyPassword: <S extends import("./input-types").VerifyPasswordPayloadSelect>(args: import("./mutation").VerifyPasswordVariables, options: {
|
|
483
516
|
select: S;
|
|
484
517
|
} & import("./select-types").StrictSelect<S, import("./input-types").VerifyPasswordPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
package/esm/public/orm/index.js
CHANGED
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
6
|
import { OrmClient } from './client';
|
|
7
|
+
import { GetAllRecordModel } from './models/getAllRecord';
|
|
7
8
|
import { OrgGetManagersRecordModel } from './models/orgGetManagersRecord';
|
|
8
9
|
import { OrgGetSubordinatesRecordModel } from './models/orgGetSubordinatesRecord';
|
|
9
|
-
import { GetAllRecordModel } from './models/getAllRecord';
|
|
10
10
|
import { ObjectModel } from './models/object';
|
|
11
11
|
import { AppPermissionModel } from './models/appPermission';
|
|
12
12
|
import { OrgPermissionModel } from './models/orgPermission';
|
|
@@ -28,11 +28,13 @@ import { ViewModel } from './models/view';
|
|
|
28
28
|
import { ViewTableModel } from './models/viewTable';
|
|
29
29
|
import { ViewGrantModel } from './models/viewGrant';
|
|
30
30
|
import { ViewRuleModel } from './models/viewRule';
|
|
31
|
+
import { EmbeddingChunkModel } from './models/embeddingChunk';
|
|
31
32
|
import { TableTemplateModuleModel } from './models/tableTemplateModule';
|
|
32
33
|
import { SecureTableProvisionModel } from './models/secureTableProvision';
|
|
33
34
|
import { RelationProvisionModel } from './models/relationProvision';
|
|
34
35
|
import { SchemaGrantModel } from './models/schemaGrant';
|
|
35
36
|
import { DefaultPrivilegeModel } from './models/defaultPrivilege';
|
|
37
|
+
import { EnumModel } from './models/enum';
|
|
36
38
|
import { ApiSchemaModel } from './models/apiSchema';
|
|
37
39
|
import { ApiModuleModel } from './models/apiModule';
|
|
38
40
|
import { DomainModel } from './models/domain';
|
|
@@ -40,6 +42,7 @@ import { SiteMetadatumModel } from './models/siteMetadatum';
|
|
|
40
42
|
import { SiteModuleModel } from './models/siteModule';
|
|
41
43
|
import { SiteThemeModel } from './models/siteTheme';
|
|
42
44
|
import { TriggerFunctionModel } from './models/triggerFunction';
|
|
45
|
+
import { DatabaseTransferModel } from './models/databaseTransfer';
|
|
43
46
|
import { ApiModel } from './models/api';
|
|
44
47
|
import { SiteModel } from './models/site';
|
|
45
48
|
import { AppModel } from './models/app';
|
|
@@ -63,7 +66,8 @@ import { SecretsModuleModel } from './models/secretsModule';
|
|
|
63
66
|
import { SessionsModuleModel } from './models/sessionsModule';
|
|
64
67
|
import { UserAuthModuleModel } from './models/userAuthModule';
|
|
65
68
|
import { UsersModuleModel } from './models/usersModule';
|
|
66
|
-
import {
|
|
69
|
+
import { BlueprintModel } from './models/blueprint';
|
|
70
|
+
import { BlueprintTemplateModel } from './models/blueprintTemplate';
|
|
67
71
|
import { DatabaseProvisionModuleModel } from './models/databaseProvisionModule';
|
|
68
72
|
import { AppAdminGrantModel } from './models/appAdminGrant';
|
|
69
73
|
import { AppOwnerGrantModel } from './models/appOwnerGrant';
|
|
@@ -75,34 +79,34 @@ import { OrgOwnerGrantModel } from './models/orgOwnerGrant';
|
|
|
75
79
|
import { OrgGrantModel } from './models/orgGrant';
|
|
76
80
|
import { OrgChartEdgeModel } from './models/orgChartEdge';
|
|
77
81
|
import { OrgChartEdgeGrantModel } from './models/orgChartEdgeGrant';
|
|
82
|
+
import { OrgPermissionDefaultModel } from './models/orgPermissionDefault';
|
|
78
83
|
import { AppLimitModel } from './models/appLimit';
|
|
79
84
|
import { OrgLimitModel } from './models/orgLimit';
|
|
80
85
|
import { AppStepModel } from './models/appStep';
|
|
81
86
|
import { AppAchievementModel } from './models/appAchievement';
|
|
87
|
+
import { AppLevelModel } from './models/appLevel';
|
|
88
|
+
import { EmailModel } from './models/email';
|
|
89
|
+
import { PhoneNumberModel } from './models/phoneNumber';
|
|
90
|
+
import { CryptoAddressModel } from './models/cryptoAddress';
|
|
91
|
+
import { ConnectedAccountModel } from './models/connectedAccount';
|
|
82
92
|
import { InviteModel } from './models/invite';
|
|
83
93
|
import { ClaimedInviteModel } from './models/claimedInvite';
|
|
84
94
|
import { OrgInviteModel } from './models/orgInvite';
|
|
85
95
|
import { OrgClaimedInviteModel } from './models/orgClaimedInvite';
|
|
96
|
+
import { AuditLogModel } from './models/auditLog';
|
|
86
97
|
import { RefModel } from './models/ref';
|
|
87
98
|
import { StoreModel } from './models/store';
|
|
88
99
|
import { AppPermissionDefaultModel } from './models/appPermissionDefault';
|
|
89
|
-
import { CryptoAddressModel } from './models/cryptoAddress';
|
|
90
100
|
import { RoleTypeModel } from './models/roleType';
|
|
91
|
-
import { OrgPermissionDefaultModel } from './models/orgPermissionDefault';
|
|
92
|
-
import { PhoneNumberModel } from './models/phoneNumber';
|
|
93
101
|
import { AppLimitDefaultModel } from './models/appLimitDefault';
|
|
94
102
|
import { OrgLimitDefaultModel } from './models/orgLimitDefault';
|
|
95
|
-
import { ConnectedAccountModel } from './models/connectedAccount';
|
|
96
103
|
import { NodeTypeRegistryModel } from './models/nodeTypeRegistry';
|
|
97
104
|
import { MembershipTypeModel } from './models/membershipType';
|
|
98
105
|
import { CommitModel } from './models/commit';
|
|
99
106
|
import { AppMembershipDefaultModel } from './models/appMembershipDefault';
|
|
100
107
|
import { RlsModuleModel } from './models/rlsModule';
|
|
101
108
|
import { OrgMembershipDefaultModel } from './models/orgMembershipDefault';
|
|
102
|
-
import { AuditLogModel } from './models/auditLog';
|
|
103
|
-
import { AppLevelModel } from './models/appLevel';
|
|
104
109
|
import { SqlMigrationModel } from './models/sqlMigration';
|
|
105
|
-
import { EmailModel } from './models/email';
|
|
106
110
|
import { UserModel } from './models/user';
|
|
107
111
|
import { AstMigrationModel } from './models/astMigration';
|
|
108
112
|
import { AppMembershipModel } from './models/appMembership';
|
|
@@ -141,9 +145,9 @@ export { createMutationOperations } from './mutation';
|
|
|
141
145
|
export function createClient(config) {
|
|
142
146
|
const client = new OrmClient(config);
|
|
143
147
|
return {
|
|
148
|
+
getAllRecord: new GetAllRecordModel(client),
|
|
144
149
|
orgGetManagersRecord: new OrgGetManagersRecordModel(client),
|
|
145
150
|
orgGetSubordinatesRecord: new OrgGetSubordinatesRecordModel(client),
|
|
146
|
-
getAllRecord: new GetAllRecordModel(client),
|
|
147
151
|
object: new ObjectModel(client),
|
|
148
152
|
appPermission: new AppPermissionModel(client),
|
|
149
153
|
orgPermission: new OrgPermissionModel(client),
|
|
@@ -165,11 +169,13 @@ export function createClient(config) {
|
|
|
165
169
|
viewTable: new ViewTableModel(client),
|
|
166
170
|
viewGrant: new ViewGrantModel(client),
|
|
167
171
|
viewRule: new ViewRuleModel(client),
|
|
172
|
+
embeddingChunk: new EmbeddingChunkModel(client),
|
|
168
173
|
tableTemplateModule: new TableTemplateModuleModel(client),
|
|
169
174
|
secureTableProvision: new SecureTableProvisionModel(client),
|
|
170
175
|
relationProvision: new RelationProvisionModel(client),
|
|
171
176
|
schemaGrant: new SchemaGrantModel(client),
|
|
172
177
|
defaultPrivilege: new DefaultPrivilegeModel(client),
|
|
178
|
+
enum: new EnumModel(client),
|
|
173
179
|
apiSchema: new ApiSchemaModel(client),
|
|
174
180
|
apiModule: new ApiModuleModel(client),
|
|
175
181
|
domain: new DomainModel(client),
|
|
@@ -177,6 +183,7 @@ export function createClient(config) {
|
|
|
177
183
|
siteModule: new SiteModuleModel(client),
|
|
178
184
|
siteTheme: new SiteThemeModel(client),
|
|
179
185
|
triggerFunction: new TriggerFunctionModel(client),
|
|
186
|
+
databaseTransfer: new DatabaseTransferModel(client),
|
|
180
187
|
api: new ApiModel(client),
|
|
181
188
|
site: new SiteModel(client),
|
|
182
189
|
app: new AppModel(client),
|
|
@@ -200,7 +207,8 @@ export function createClient(config) {
|
|
|
200
207
|
sessionsModule: new SessionsModuleModel(client),
|
|
201
208
|
userAuthModule: new UserAuthModuleModel(client),
|
|
202
209
|
usersModule: new UsersModuleModel(client),
|
|
203
|
-
|
|
210
|
+
blueprint: new BlueprintModel(client),
|
|
211
|
+
blueprintTemplate: new BlueprintTemplateModel(client),
|
|
204
212
|
databaseProvisionModule: new DatabaseProvisionModuleModel(client),
|
|
205
213
|
appAdminGrant: new AppAdminGrantModel(client),
|
|
206
214
|
appOwnerGrant: new AppOwnerGrantModel(client),
|
|
@@ -212,34 +220,34 @@ export function createClient(config) {
|
|
|
212
220
|
orgGrant: new OrgGrantModel(client),
|
|
213
221
|
orgChartEdge: new OrgChartEdgeModel(client),
|
|
214
222
|
orgChartEdgeGrant: new OrgChartEdgeGrantModel(client),
|
|
223
|
+
orgPermissionDefault: new OrgPermissionDefaultModel(client),
|
|
215
224
|
appLimit: new AppLimitModel(client),
|
|
216
225
|
orgLimit: new OrgLimitModel(client),
|
|
217
226
|
appStep: new AppStepModel(client),
|
|
218
227
|
appAchievement: new AppAchievementModel(client),
|
|
228
|
+
appLevel: new AppLevelModel(client),
|
|
229
|
+
email: new EmailModel(client),
|
|
230
|
+
phoneNumber: new PhoneNumberModel(client),
|
|
231
|
+
cryptoAddress: new CryptoAddressModel(client),
|
|
232
|
+
connectedAccount: new ConnectedAccountModel(client),
|
|
219
233
|
invite: new InviteModel(client),
|
|
220
234
|
claimedInvite: new ClaimedInviteModel(client),
|
|
221
235
|
orgInvite: new OrgInviteModel(client),
|
|
222
236
|
orgClaimedInvite: new OrgClaimedInviteModel(client),
|
|
237
|
+
auditLog: new AuditLogModel(client),
|
|
223
238
|
ref: new RefModel(client),
|
|
224
239
|
store: new StoreModel(client),
|
|
225
240
|
appPermissionDefault: new AppPermissionDefaultModel(client),
|
|
226
|
-
cryptoAddress: new CryptoAddressModel(client),
|
|
227
241
|
roleType: new RoleTypeModel(client),
|
|
228
|
-
orgPermissionDefault: new OrgPermissionDefaultModel(client),
|
|
229
|
-
phoneNumber: new PhoneNumberModel(client),
|
|
230
242
|
appLimitDefault: new AppLimitDefaultModel(client),
|
|
231
243
|
orgLimitDefault: new OrgLimitDefaultModel(client),
|
|
232
|
-
connectedAccount: new ConnectedAccountModel(client),
|
|
233
244
|
nodeTypeRegistry: new NodeTypeRegistryModel(client),
|
|
234
245
|
membershipType: new MembershipTypeModel(client),
|
|
235
246
|
commit: new CommitModel(client),
|
|
236
247
|
appMembershipDefault: new AppMembershipDefaultModel(client),
|
|
237
248
|
rlsModule: new RlsModuleModel(client),
|
|
238
249
|
orgMembershipDefault: new OrgMembershipDefaultModel(client),
|
|
239
|
-
auditLog: new AuditLogModel(client),
|
|
240
|
-
appLevel: new AppLevelModel(client),
|
|
241
250
|
sqlMigration: new SqlMigrationModel(client),
|
|
242
|
-
email: new EmailModel(client),
|
|
243
251
|
user: new UserModel(client),
|
|
244
252
|
astMigration: new AstMigrationModel(client),
|
|
245
253
|
appMembership: new AppMembershipModel(client),
|