@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
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
* DO NOT EDIT - changes will be overwritten
|
|
6
6
|
*/
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
-
exports.
|
|
9
|
-
exports.
|
|
10
|
-
exports.mutationKeys = exports.customMutationKeys = exports.hierarchyModuleMutationKeys = exports.appMembershipMutationKeys = exports.astMigrationMutationKeys = void 0;
|
|
8
|
+
exports.fieldModuleMutationKeys = exports.encryptedSecretsModuleMutationKeys = exports.emailsModuleMutationKeys = exports.denormalizedTableFieldMutationKeys = exports.defaultIdsModuleMutationKeys = exports.cryptoAuthModuleMutationKeys = exports.cryptoAddressesModuleMutationKeys = exports.connectedAccountsModuleMutationKeys = exports.appMutationKeys = exports.siteMutationKeys = exports.apiMutationKeys = exports.databaseTransferMutationKeys = exports.triggerFunctionMutationKeys = exports.siteThemeMutationKeys = exports.siteModuleMutationKeys = exports.siteMetadatumMutationKeys = exports.domainMutationKeys = exports.apiModuleMutationKeys = exports.apiSchemaMutationKeys = exports.enumMutationKeys = exports.defaultPrivilegeMutationKeys = exports.schemaGrantMutationKeys = exports.relationProvisionMutationKeys = exports.secureTableProvisionMutationKeys = exports.tableTemplateModuleMutationKeys = exports.embeddingChunkMutationKeys = exports.viewRuleMutationKeys = exports.viewGrantMutationKeys = exports.viewTableMutationKeys = exports.viewMutationKeys = exports.uniqueConstraintMutationKeys = exports.triggerMutationKeys = exports.tableGrantMutationKeys = exports.primaryKeyConstraintMutationKeys = exports.policyMutationKeys = exports.indexMutationKeys = exports.fullTextSearchMutationKeys = exports.foreignKeyConstraintMutationKeys = exports.fieldMutationKeys = exports.checkConstraintMutationKeys = exports.tableMutationKeys = exports.schemaMutationKeys = exports.databaseMutationKeys = exports.appLevelRequirementMutationKeys = exports.orgPermissionMutationKeys = exports.appPermissionMutationKeys = exports.objectMutationKeys = exports.orgGetSubordinatesRecordMutationKeys = exports.orgGetManagersRecordMutationKeys = exports.getAllRecordMutationKeys = void 0;
|
|
9
|
+
exports.appMembershipDefaultMutationKeys = exports.commitMutationKeys = exports.membershipTypeMutationKeys = exports.nodeTypeRegistryMutationKeys = exports.orgLimitDefaultMutationKeys = exports.appLimitDefaultMutationKeys = exports.roleTypeMutationKeys = exports.appPermissionDefaultMutationKeys = exports.storeMutationKeys = exports.refMutationKeys = exports.auditLogMutationKeys = exports.orgClaimedInviteMutationKeys = exports.orgInviteMutationKeys = exports.claimedInviteMutationKeys = exports.inviteMutationKeys = exports.connectedAccountMutationKeys = exports.cryptoAddressMutationKeys = exports.phoneNumberMutationKeys = exports.emailMutationKeys = exports.appLevelMutationKeys = exports.appAchievementMutationKeys = exports.appStepMutationKeys = exports.orgLimitMutationKeys = exports.appLimitMutationKeys = exports.orgPermissionDefaultMutationKeys = exports.orgChartEdgeGrantMutationKeys = exports.orgChartEdgeMutationKeys = exports.orgGrantMutationKeys = exports.orgOwnerGrantMutationKeys = exports.orgAdminGrantMutationKeys = exports.orgMemberMutationKeys = exports.orgMembershipMutationKeys = exports.appGrantMutationKeys = exports.appOwnerGrantMutationKeys = exports.appAdminGrantMutationKeys = exports.databaseProvisionModuleMutationKeys = exports.blueprintTemplateMutationKeys = exports.blueprintMutationKeys = exports.usersModuleMutationKeys = exports.userAuthModuleMutationKeys = exports.sessionsModuleMutationKeys = exports.secretsModuleMutationKeys = exports.profilesModuleMutationKeys = exports.phoneNumbersModuleMutationKeys = exports.permissionsModuleMutationKeys = exports.membershipsModuleMutationKeys = exports.membershipTypesModuleMutationKeys = exports.limitsModuleMutationKeys = exports.levelsModuleMutationKeys = exports.invitesModuleMutationKeys = void 0;
|
|
10
|
+
exports.mutationKeys = exports.customMutationKeys = exports.hierarchyModuleMutationKeys = exports.appMembershipMutationKeys = exports.astMigrationMutationKeys = exports.userMutationKeys = exports.sqlMigrationMutationKeys = exports.orgMembershipDefaultMutationKeys = exports.rlsModuleMutationKeys = void 0;
|
|
11
11
|
// ============================================================================
|
|
12
12
|
// Mutation keys for tracking in-flight mutations
|
|
13
13
|
//
|
|
@@ -20,6 +20,12 @@ exports.mutationKeys = exports.customMutationKeys = exports.hierarchyModuleMutat
|
|
|
20
20
|
// ============================================================================
|
|
21
21
|
// Entity Mutation Keys
|
|
22
22
|
// ============================================================================
|
|
23
|
+
exports.getAllRecordMutationKeys = {
|
|
24
|
+
/** All getAllRecord mutation keys */ all: ['mutation', 'getallrecord'],
|
|
25
|
+
/** Create getAllRecord mutation key */ create: () => ['mutation', 'getallrecord', 'create'],
|
|
26
|
+
/** Update getAllRecord mutation key */ update: (id) => ['mutation', 'getallrecord', 'update', id],
|
|
27
|
+
/** Delete getAllRecord mutation key */ delete: (id) => ['mutation', 'getallrecord', 'delete', id],
|
|
28
|
+
};
|
|
23
29
|
exports.orgGetManagersRecordMutationKeys = {
|
|
24
30
|
/** All orgGetManagersRecord mutation keys */ all: ['mutation', 'orggetmanagersrecord'],
|
|
25
31
|
/** Create orgGetManagersRecord mutation key */ create: () => ['mutation', 'orggetmanagersrecord', 'create'],
|
|
@@ -35,12 +41,6 @@ exports.orgGetSubordinatesRecordMutationKeys = {
|
|
|
35
41
|
/** Update orgGetSubordinatesRecord mutation key */ update: (id) => ['mutation', 'orggetsubordinatesrecord', 'update', id],
|
|
36
42
|
/** Delete orgGetSubordinatesRecord mutation key */ delete: (id) => ['mutation', 'orggetsubordinatesrecord', 'delete', id],
|
|
37
43
|
};
|
|
38
|
-
exports.getAllRecordMutationKeys = {
|
|
39
|
-
/** All getAllRecord mutation keys */ all: ['mutation', 'getallrecord'],
|
|
40
|
-
/** Create getAllRecord mutation key */ create: () => ['mutation', 'getallrecord', 'create'],
|
|
41
|
-
/** Update getAllRecord mutation key */ update: (id) => ['mutation', 'getallrecord', 'update', id],
|
|
42
|
-
/** Delete getAllRecord mutation key */ delete: (id) => ['mutation', 'getallrecord', 'delete', id],
|
|
43
|
-
};
|
|
44
44
|
exports.objectMutationKeys = {
|
|
45
45
|
/** All object mutation keys */ all: ['mutation', 'object'],
|
|
46
46
|
/** Create object mutation key */ create: () => ['mutation', 'object', 'create'],
|
|
@@ -167,6 +167,12 @@ exports.viewRuleMutationKeys = {
|
|
|
167
167
|
/** Update viewRule mutation key */ update: (id) => ['mutation', 'viewrule', 'update', id],
|
|
168
168
|
/** Delete viewRule mutation key */ delete: (id) => ['mutation', 'viewrule', 'delete', id],
|
|
169
169
|
};
|
|
170
|
+
exports.embeddingChunkMutationKeys = {
|
|
171
|
+
/** All embeddingChunk mutation keys */ all: ['mutation', 'embeddingchunk'],
|
|
172
|
+
/** Create embeddingChunk mutation key */ create: () => ['mutation', 'embeddingchunk', 'create'],
|
|
173
|
+
/** Update embeddingChunk mutation key */ update: (id) => ['mutation', 'embeddingchunk', 'update', id],
|
|
174
|
+
/** Delete embeddingChunk mutation key */ delete: (id) => ['mutation', 'embeddingchunk', 'delete', id],
|
|
175
|
+
};
|
|
170
176
|
exports.tableTemplateModuleMutationKeys = {
|
|
171
177
|
/** All tableTemplateModule mutation keys */ all: ['mutation', 'tabletemplatemodule'],
|
|
172
178
|
/** Create tableTemplateModule mutation key */ create: () => ['mutation', 'tabletemplatemodule', 'create'],
|
|
@@ -197,6 +203,12 @@ exports.defaultPrivilegeMutationKeys = {
|
|
|
197
203
|
/** Update defaultPrivilege mutation key */ update: (id) => ['mutation', 'defaultprivilege', 'update', id],
|
|
198
204
|
/** Delete defaultPrivilege mutation key */ delete: (id) => ['mutation', 'defaultprivilege', 'delete', id],
|
|
199
205
|
};
|
|
206
|
+
exports.enumMutationKeys = {
|
|
207
|
+
/** All enum mutation keys */ all: ['mutation', 'enum'],
|
|
208
|
+
/** Create enum mutation key */ create: () => ['mutation', 'enum', 'create'],
|
|
209
|
+
/** Update enum mutation key */ update: (id) => ['mutation', 'enum', 'update', id],
|
|
210
|
+
/** Delete enum mutation key */ delete: (id) => ['mutation', 'enum', 'delete', id],
|
|
211
|
+
};
|
|
200
212
|
exports.apiSchemaMutationKeys = {
|
|
201
213
|
/** All apiSchema mutation keys */ all: ['mutation', 'apischema'],
|
|
202
214
|
/** Create apiSchema mutation key */ create: () => ['mutation', 'apischema', 'create'],
|
|
@@ -239,6 +251,12 @@ exports.triggerFunctionMutationKeys = {
|
|
|
239
251
|
/** Update triggerFunction mutation key */ update: (id) => ['mutation', 'triggerfunction', 'update', id],
|
|
240
252
|
/** Delete triggerFunction mutation key */ delete: (id) => ['mutation', 'triggerfunction', 'delete', id],
|
|
241
253
|
};
|
|
254
|
+
exports.databaseTransferMutationKeys = {
|
|
255
|
+
/** All databaseTransfer mutation keys */ all: ['mutation', 'databasetransfer'],
|
|
256
|
+
/** Create databaseTransfer mutation key */ create: () => ['mutation', 'databasetransfer', 'create'],
|
|
257
|
+
/** Update databaseTransfer mutation key */ update: (id) => ['mutation', 'databasetransfer', 'update', id],
|
|
258
|
+
/** Delete databaseTransfer mutation key */ delete: (id) => ['mutation', 'databasetransfer', 'delete', id],
|
|
259
|
+
};
|
|
242
260
|
exports.apiMutationKeys = {
|
|
243
261
|
/** All api mutation keys */ all: ['mutation', 'api'],
|
|
244
262
|
/** Create api mutation key */ create: () => ['mutation', 'api', 'create'],
|
|
@@ -392,11 +410,17 @@ exports.usersModuleMutationKeys = {
|
|
|
392
410
|
/** Update usersModule mutation key */ update: (id) => ['mutation', 'usersmodule', 'update', id],
|
|
393
411
|
/** Delete usersModule mutation key */ delete: (id) => ['mutation', 'usersmodule', 'delete', id],
|
|
394
412
|
};
|
|
395
|
-
exports.
|
|
396
|
-
/** All
|
|
397
|
-
/** Create
|
|
398
|
-
/** Update
|
|
399
|
-
/** Delete
|
|
413
|
+
exports.blueprintMutationKeys = {
|
|
414
|
+
/** All blueprint mutation keys */ all: ['mutation', 'blueprint'],
|
|
415
|
+
/** Create blueprint mutation key */ create: () => ['mutation', 'blueprint', 'create'],
|
|
416
|
+
/** Update blueprint mutation key */ update: (id) => ['mutation', 'blueprint', 'update', id],
|
|
417
|
+
/** Delete blueprint mutation key */ delete: (id) => ['mutation', 'blueprint', 'delete', id],
|
|
418
|
+
};
|
|
419
|
+
exports.blueprintTemplateMutationKeys = {
|
|
420
|
+
/** All blueprintTemplate mutation keys */ all: ['mutation', 'blueprinttemplate'],
|
|
421
|
+
/** Create blueprintTemplate mutation key */ create: () => ['mutation', 'blueprinttemplate', 'create'],
|
|
422
|
+
/** Update blueprintTemplate mutation key */ update: (id) => ['mutation', 'blueprinttemplate', 'update', id],
|
|
423
|
+
/** Delete blueprintTemplate mutation key */ delete: (id) => ['mutation', 'blueprinttemplate', 'delete', id],
|
|
400
424
|
};
|
|
401
425
|
exports.databaseProvisionModuleMutationKeys = {
|
|
402
426
|
/** All databaseProvisionModule mutation keys */ all: [
|
|
@@ -467,6 +491,12 @@ exports.orgChartEdgeGrantMutationKeys = {
|
|
|
467
491
|
/** Update orgChartEdgeGrant mutation key */ update: (id) => ['mutation', 'orgchartedgegrant', 'update', id],
|
|
468
492
|
/** Delete orgChartEdgeGrant mutation key */ delete: (id) => ['mutation', 'orgchartedgegrant', 'delete', id],
|
|
469
493
|
};
|
|
494
|
+
exports.orgPermissionDefaultMutationKeys = {
|
|
495
|
+
/** All orgPermissionDefault mutation keys */ all: ['mutation', 'orgpermissiondefault'],
|
|
496
|
+
/** Create orgPermissionDefault mutation key */ create: () => ['mutation', 'orgpermissiondefault', 'create'],
|
|
497
|
+
/** Update orgPermissionDefault mutation key */ update: (id) => ['mutation', 'orgpermissiondefault', 'update', id],
|
|
498
|
+
/** Delete orgPermissionDefault mutation key */ delete: (id) => ['mutation', 'orgpermissiondefault', 'delete', id],
|
|
499
|
+
};
|
|
470
500
|
exports.appLimitMutationKeys = {
|
|
471
501
|
/** All appLimit mutation keys */ all: ['mutation', 'applimit'],
|
|
472
502
|
/** Create appLimit mutation key */ create: () => ['mutation', 'applimit', 'create'],
|
|
@@ -491,6 +521,36 @@ exports.appAchievementMutationKeys = {
|
|
|
491
521
|
/** Update appAchievement mutation key */ update: (id) => ['mutation', 'appachievement', 'update', id],
|
|
492
522
|
/** Delete appAchievement mutation key */ delete: (id) => ['mutation', 'appachievement', 'delete', id],
|
|
493
523
|
};
|
|
524
|
+
exports.appLevelMutationKeys = {
|
|
525
|
+
/** All appLevel mutation keys */ all: ['mutation', 'applevel'],
|
|
526
|
+
/** Create appLevel mutation key */ create: () => ['mutation', 'applevel', 'create'],
|
|
527
|
+
/** Update appLevel mutation key */ update: (id) => ['mutation', 'applevel', 'update', id],
|
|
528
|
+
/** Delete appLevel mutation key */ delete: (id) => ['mutation', 'applevel', 'delete', id],
|
|
529
|
+
};
|
|
530
|
+
exports.emailMutationKeys = {
|
|
531
|
+
/** All email mutation keys */ all: ['mutation', 'email'],
|
|
532
|
+
/** Create email mutation key */ create: () => ['mutation', 'email', 'create'],
|
|
533
|
+
/** Update email mutation key */ update: (id) => ['mutation', 'email', 'update', id],
|
|
534
|
+
/** Delete email mutation key */ delete: (id) => ['mutation', 'email', 'delete', id],
|
|
535
|
+
};
|
|
536
|
+
exports.phoneNumberMutationKeys = {
|
|
537
|
+
/** All phoneNumber mutation keys */ all: ['mutation', 'phonenumber'],
|
|
538
|
+
/** Create phoneNumber mutation key */ create: () => ['mutation', 'phonenumber', 'create'],
|
|
539
|
+
/** Update phoneNumber mutation key */ update: (id) => ['mutation', 'phonenumber', 'update', id],
|
|
540
|
+
/** Delete phoneNumber mutation key */ delete: (id) => ['mutation', 'phonenumber', 'delete', id],
|
|
541
|
+
};
|
|
542
|
+
exports.cryptoAddressMutationKeys = {
|
|
543
|
+
/** All cryptoAddress mutation keys */ all: ['mutation', 'cryptoaddress'],
|
|
544
|
+
/** Create cryptoAddress mutation key */ create: () => ['mutation', 'cryptoaddress', 'create'],
|
|
545
|
+
/** Update cryptoAddress mutation key */ update: (id) => ['mutation', 'cryptoaddress', 'update', id],
|
|
546
|
+
/** Delete cryptoAddress mutation key */ delete: (id) => ['mutation', 'cryptoaddress', 'delete', id],
|
|
547
|
+
};
|
|
548
|
+
exports.connectedAccountMutationKeys = {
|
|
549
|
+
/** All connectedAccount mutation keys */ all: ['mutation', 'connectedaccount'],
|
|
550
|
+
/** Create connectedAccount mutation key */ create: () => ['mutation', 'connectedaccount', 'create'],
|
|
551
|
+
/** Update connectedAccount mutation key */ update: (id) => ['mutation', 'connectedaccount', 'update', id],
|
|
552
|
+
/** Delete connectedAccount mutation key */ delete: (id) => ['mutation', 'connectedaccount', 'delete', id],
|
|
553
|
+
};
|
|
494
554
|
exports.inviteMutationKeys = {
|
|
495
555
|
/** All invite mutation keys */ all: ['mutation', 'invite'],
|
|
496
556
|
/** Create invite mutation key */ create: () => ['mutation', 'invite', 'create'],
|
|
@@ -515,6 +575,12 @@ exports.orgClaimedInviteMutationKeys = {
|
|
|
515
575
|
/** Update orgClaimedInvite mutation key */ update: (id) => ['mutation', 'orgclaimedinvite', 'update', id],
|
|
516
576
|
/** Delete orgClaimedInvite mutation key */ delete: (id) => ['mutation', 'orgclaimedinvite', 'delete', id],
|
|
517
577
|
};
|
|
578
|
+
exports.auditLogMutationKeys = {
|
|
579
|
+
/** All auditLog mutation keys */ all: ['mutation', 'auditlog'],
|
|
580
|
+
/** Create auditLog mutation key */ create: () => ['mutation', 'auditlog', 'create'],
|
|
581
|
+
/** Update auditLog mutation key */ update: (id) => ['mutation', 'auditlog', 'update', id],
|
|
582
|
+
/** Delete auditLog mutation key */ delete: (id) => ['mutation', 'auditlog', 'delete', id],
|
|
583
|
+
};
|
|
518
584
|
exports.refMutationKeys = {
|
|
519
585
|
/** All ref mutation keys */ all: ['mutation', 'ref'],
|
|
520
586
|
/** Create ref mutation key */ create: () => ['mutation', 'ref', 'create'],
|
|
@@ -533,30 +599,12 @@ exports.appPermissionDefaultMutationKeys = {
|
|
|
533
599
|
/** Update appPermissionDefault mutation key */ update: (id) => ['mutation', 'apppermissiondefault', 'update', id],
|
|
534
600
|
/** Delete appPermissionDefault mutation key */ delete: (id) => ['mutation', 'apppermissiondefault', 'delete', id],
|
|
535
601
|
};
|
|
536
|
-
exports.cryptoAddressMutationKeys = {
|
|
537
|
-
/** All cryptoAddress mutation keys */ all: ['mutation', 'cryptoaddress'],
|
|
538
|
-
/** Create cryptoAddress mutation key */ create: () => ['mutation', 'cryptoaddress', 'create'],
|
|
539
|
-
/** Update cryptoAddress mutation key */ update: (id) => ['mutation', 'cryptoaddress', 'update', id],
|
|
540
|
-
/** Delete cryptoAddress mutation key */ delete: (id) => ['mutation', 'cryptoaddress', 'delete', id],
|
|
541
|
-
};
|
|
542
602
|
exports.roleTypeMutationKeys = {
|
|
543
603
|
/** All roleType mutation keys */ all: ['mutation', 'roletype'],
|
|
544
604
|
/** Create roleType mutation key */ create: () => ['mutation', 'roletype', 'create'],
|
|
545
605
|
/** Update roleType mutation key */ update: (id) => ['mutation', 'roletype', 'update', id],
|
|
546
606
|
/** Delete roleType mutation key */ delete: (id) => ['mutation', 'roletype', 'delete', id],
|
|
547
607
|
};
|
|
548
|
-
exports.orgPermissionDefaultMutationKeys = {
|
|
549
|
-
/** All orgPermissionDefault mutation keys */ all: ['mutation', 'orgpermissiondefault'],
|
|
550
|
-
/** Create orgPermissionDefault mutation key */ create: () => ['mutation', 'orgpermissiondefault', 'create'],
|
|
551
|
-
/** Update orgPermissionDefault mutation key */ update: (id) => ['mutation', 'orgpermissiondefault', 'update', id],
|
|
552
|
-
/** Delete orgPermissionDefault mutation key */ delete: (id) => ['mutation', 'orgpermissiondefault', 'delete', id],
|
|
553
|
-
};
|
|
554
|
-
exports.phoneNumberMutationKeys = {
|
|
555
|
-
/** All phoneNumber mutation keys */ all: ['mutation', 'phonenumber'],
|
|
556
|
-
/** Create phoneNumber mutation key */ create: () => ['mutation', 'phonenumber', 'create'],
|
|
557
|
-
/** Update phoneNumber mutation key */ update: (id) => ['mutation', 'phonenumber', 'update', id],
|
|
558
|
-
/** Delete phoneNumber mutation key */ delete: (id) => ['mutation', 'phonenumber', 'delete', id],
|
|
559
|
-
};
|
|
560
608
|
exports.appLimitDefaultMutationKeys = {
|
|
561
609
|
/** All appLimitDefault mutation keys */ all: ['mutation', 'applimitdefault'],
|
|
562
610
|
/** Create appLimitDefault mutation key */ create: () => ['mutation', 'applimitdefault', 'create'],
|
|
@@ -569,12 +617,6 @@ exports.orgLimitDefaultMutationKeys = {
|
|
|
569
617
|
/** Update orgLimitDefault mutation key */ update: (id) => ['mutation', 'orglimitdefault', 'update', id],
|
|
570
618
|
/** Delete orgLimitDefault mutation key */ delete: (id) => ['mutation', 'orglimitdefault', 'delete', id],
|
|
571
619
|
};
|
|
572
|
-
exports.connectedAccountMutationKeys = {
|
|
573
|
-
/** All connectedAccount mutation keys */ all: ['mutation', 'connectedaccount'],
|
|
574
|
-
/** Create connectedAccount mutation key */ create: () => ['mutation', 'connectedaccount', 'create'],
|
|
575
|
-
/** Update connectedAccount mutation key */ update: (id) => ['mutation', 'connectedaccount', 'update', id],
|
|
576
|
-
/** Delete connectedAccount mutation key */ delete: (id) => ['mutation', 'connectedaccount', 'delete', id],
|
|
577
|
-
};
|
|
578
620
|
exports.nodeTypeRegistryMutationKeys = {
|
|
579
621
|
/** All nodeTypeRegistry mutation keys */ all: ['mutation', 'nodetyperegistry'],
|
|
580
622
|
/** Create nodeTypeRegistry mutation key */ create: () => ['mutation', 'nodetyperegistry', 'create'],
|
|
@@ -611,30 +653,12 @@ exports.orgMembershipDefaultMutationKeys = {
|
|
|
611
653
|
/** Update orgMembershipDefault mutation key */ update: (id) => ['mutation', 'orgmembershipdefault', 'update', id],
|
|
612
654
|
/** Delete orgMembershipDefault mutation key */ delete: (id) => ['mutation', 'orgmembershipdefault', 'delete', id],
|
|
613
655
|
};
|
|
614
|
-
exports.auditLogMutationKeys = {
|
|
615
|
-
/** All auditLog mutation keys */ all: ['mutation', 'auditlog'],
|
|
616
|
-
/** Create auditLog mutation key */ create: () => ['mutation', 'auditlog', 'create'],
|
|
617
|
-
/** Update auditLog mutation key */ update: (id) => ['mutation', 'auditlog', 'update', id],
|
|
618
|
-
/** Delete auditLog mutation key */ delete: (id) => ['mutation', 'auditlog', 'delete', id],
|
|
619
|
-
};
|
|
620
|
-
exports.appLevelMutationKeys = {
|
|
621
|
-
/** All appLevel mutation keys */ all: ['mutation', 'applevel'],
|
|
622
|
-
/** Create appLevel mutation key */ create: () => ['mutation', 'applevel', 'create'],
|
|
623
|
-
/** Update appLevel mutation key */ update: (id) => ['mutation', 'applevel', 'update', id],
|
|
624
|
-
/** Delete appLevel mutation key */ delete: (id) => ['mutation', 'applevel', 'delete', id],
|
|
625
|
-
};
|
|
626
656
|
exports.sqlMigrationMutationKeys = {
|
|
627
657
|
/** All sqlMigration mutation keys */ all: ['mutation', 'sqlmigration'],
|
|
628
658
|
/** Create sqlMigration mutation key */ create: () => ['mutation', 'sqlmigration', 'create'],
|
|
629
659
|
/** Update sqlMigration mutation key */ update: (id) => ['mutation', 'sqlmigration', 'update', id],
|
|
630
660
|
/** Delete sqlMigration mutation key */ delete: (id) => ['mutation', 'sqlmigration', 'delete', id],
|
|
631
661
|
};
|
|
632
|
-
exports.emailMutationKeys = {
|
|
633
|
-
/** All email mutation keys */ all: ['mutation', 'email'],
|
|
634
|
-
/** Create email mutation key */ create: () => ['mutation', 'email', 'create'],
|
|
635
|
-
/** Update email mutation key */ update: (id) => ['mutation', 'email', 'update', id],
|
|
636
|
-
/** Delete email mutation key */ delete: (id) => ['mutation', 'email', 'delete', id],
|
|
637
|
-
};
|
|
638
662
|
exports.userMutationKeys = {
|
|
639
663
|
/** All user mutation keys */ all: ['mutation', 'user'],
|
|
640
664
|
/** Create user mutation key */ create: () => ['mutation', 'user', 'create'],
|
|
@@ -663,27 +687,30 @@ exports.hierarchyModuleMutationKeys = {
|
|
|
663
687
|
// Custom Mutation Keys
|
|
664
688
|
// ============================================================================
|
|
665
689
|
exports.customMutationKeys = {
|
|
666
|
-
/** Mutation key for signOut */ signOut: (identifier) => identifier
|
|
667
|
-
? ['mutation', 'signOut', identifier]
|
|
668
|
-
: ['mutation', 'signOut'],
|
|
669
690
|
/** Mutation key for sendAccountDeletionEmail */ sendAccountDeletionEmail: (identifier) => identifier
|
|
670
691
|
? ['mutation', 'sendAccountDeletionEmail', identifier]
|
|
671
692
|
: ['mutation', 'sendAccountDeletionEmail'],
|
|
672
|
-
/** Mutation key for
|
|
673
|
-
? ['mutation', '
|
|
674
|
-
: ['mutation', '
|
|
693
|
+
/** Mutation key for signOut */ signOut: (identifier) => identifier
|
|
694
|
+
? ['mutation', 'signOut', identifier]
|
|
695
|
+
: ['mutation', 'signOut'],
|
|
696
|
+
/** Mutation key for acceptDatabaseTransfer */ acceptDatabaseTransfer: (identifier) => identifier
|
|
697
|
+
? ['mutation', 'acceptDatabaseTransfer', identifier]
|
|
698
|
+
: ['mutation', 'acceptDatabaseTransfer'],
|
|
699
|
+
/** Mutation key for cancelDatabaseTransfer */ cancelDatabaseTransfer: (identifier) => identifier
|
|
700
|
+
? ['mutation', 'cancelDatabaseTransfer', identifier]
|
|
701
|
+
: ['mutation', 'cancelDatabaseTransfer'],
|
|
702
|
+
/** Mutation key for rejectDatabaseTransfer */ rejectDatabaseTransfer: (identifier) => identifier
|
|
703
|
+
? ['mutation', 'rejectDatabaseTransfer', identifier]
|
|
704
|
+
: ['mutation', 'rejectDatabaseTransfer'],
|
|
675
705
|
/** Mutation key for submitInviteCode */ submitInviteCode: (identifier) => identifier
|
|
676
706
|
? ['mutation', 'submitInviteCode', identifier]
|
|
677
707
|
: ['mutation', 'submitInviteCode'],
|
|
678
708
|
/** Mutation key for submitOrgInviteCode */ submitOrgInviteCode: (identifier) => identifier
|
|
679
709
|
? ['mutation', 'submitOrgInviteCode', identifier]
|
|
680
710
|
: ['mutation', 'submitOrgInviteCode'],
|
|
681
|
-
/** Mutation key for
|
|
682
|
-
? ['mutation', '
|
|
683
|
-
: ['mutation', '
|
|
684
|
-
/** Mutation key for initEmptyRepo */ initEmptyRepo: (identifier) => identifier
|
|
685
|
-
? ['mutation', 'initEmptyRepo', identifier]
|
|
686
|
-
: ['mutation', 'initEmptyRepo'],
|
|
711
|
+
/** Mutation key for checkPassword */ checkPassword: (identifier) => identifier
|
|
712
|
+
? ['mutation', 'checkPassword', identifier]
|
|
713
|
+
: ['mutation', 'checkPassword'],
|
|
687
714
|
/** Mutation key for confirmDeleteAccount */ confirmDeleteAccount: (identifier) => identifier
|
|
688
715
|
? ['mutation', 'confirmDeleteAccount', identifier]
|
|
689
716
|
: ['mutation', 'confirmDeleteAccount'],
|
|
@@ -693,27 +720,39 @@ exports.customMutationKeys = {
|
|
|
693
720
|
/** Mutation key for verifyEmail */ verifyEmail: (identifier) => identifier
|
|
694
721
|
? ['mutation', 'verifyEmail', identifier]
|
|
695
722
|
: ['mutation', 'verifyEmail'],
|
|
696
|
-
/** Mutation key for
|
|
697
|
-
? ['mutation', '
|
|
698
|
-
: ['mutation', '
|
|
723
|
+
/** Mutation key for freezeObjects */ freezeObjects: (identifier) => identifier
|
|
724
|
+
? ['mutation', 'freezeObjects', identifier]
|
|
725
|
+
: ['mutation', 'freezeObjects'],
|
|
726
|
+
/** Mutation key for initEmptyRepo */ initEmptyRepo: (identifier) => identifier
|
|
727
|
+
? ['mutation', 'initEmptyRepo', identifier]
|
|
728
|
+
: ['mutation', 'initEmptyRepo'],
|
|
729
|
+
/** Mutation key for constructBlueprint */ constructBlueprint: (identifier) => identifier
|
|
730
|
+
? ['mutation', 'constructBlueprint', identifier]
|
|
731
|
+
: ['mutation', 'constructBlueprint'],
|
|
699
732
|
/** Mutation key for resetPassword */ resetPassword: (identifier) => identifier
|
|
700
733
|
? ['mutation', 'resetPassword', identifier]
|
|
701
734
|
: ['mutation', 'resetPassword'],
|
|
702
|
-
/** Mutation key for
|
|
703
|
-
? ['mutation', '
|
|
704
|
-
: ['mutation', '
|
|
705
|
-
/** Mutation key for setFieldOrder */ setFieldOrder: (identifier) => identifier
|
|
706
|
-
? ['mutation', 'setFieldOrder', identifier]
|
|
707
|
-
: ['mutation', 'setFieldOrder'],
|
|
735
|
+
/** Mutation key for removeNodeAtPath */ removeNodeAtPath: (identifier) => identifier
|
|
736
|
+
? ['mutation', 'removeNodeAtPath', identifier]
|
|
737
|
+
: ['mutation', 'removeNodeAtPath'],
|
|
708
738
|
/** Mutation key for setDataAtPath */ setDataAtPath: (identifier) => identifier
|
|
709
739
|
? ['mutation', 'setDataAtPath', identifier]
|
|
710
740
|
: ['mutation', 'setDataAtPath'],
|
|
711
741
|
/** Mutation key for setPropsAndCommit */ setPropsAndCommit: (identifier) => identifier
|
|
712
742
|
? ['mutation', 'setPropsAndCommit', identifier]
|
|
713
743
|
: ['mutation', 'setPropsAndCommit'],
|
|
744
|
+
/** Mutation key for copyTemplateToBlueprint */ copyTemplateToBlueprint: (identifier) => identifier
|
|
745
|
+
? ['mutation', 'copyTemplateToBlueprint', identifier]
|
|
746
|
+
: ['mutation', 'copyTemplateToBlueprint'],
|
|
714
747
|
/** Mutation key for provisionDatabaseWithUser */ provisionDatabaseWithUser: (identifier) => identifier
|
|
715
748
|
? ['mutation', 'provisionDatabaseWithUser', identifier]
|
|
716
749
|
: ['mutation', 'provisionDatabaseWithUser'],
|
|
750
|
+
/** Mutation key for bootstrapUser */ bootstrapUser: (identifier) => identifier
|
|
751
|
+
? ['mutation', 'bootstrapUser', identifier]
|
|
752
|
+
: ['mutation', 'bootstrapUser'],
|
|
753
|
+
/** Mutation key for setFieldOrder */ setFieldOrder: (identifier) => identifier
|
|
754
|
+
? ['mutation', 'setFieldOrder', identifier]
|
|
755
|
+
: ['mutation', 'setFieldOrder'],
|
|
717
756
|
/** Mutation key for insertNodeAtPath */ insertNodeAtPath: (identifier) => identifier
|
|
718
757
|
? ['mutation', 'insertNodeAtPath', identifier]
|
|
719
758
|
: ['mutation', 'insertNodeAtPath'],
|
|
@@ -740,12 +779,12 @@ exports.customMutationKeys = {
|
|
|
740
779
|
/** Mutation key for oneTimeToken */ oneTimeToken: (identifier) => identifier
|
|
741
780
|
? ['mutation', 'oneTimeToken', identifier]
|
|
742
781
|
: ['mutation', 'oneTimeToken'],
|
|
743
|
-
/** Mutation key for forgotPassword */ forgotPassword: (identifier) => identifier
|
|
744
|
-
? ['mutation', 'forgotPassword', identifier]
|
|
745
|
-
: ['mutation', 'forgotPassword'],
|
|
746
782
|
/** Mutation key for sendVerificationEmail */ sendVerificationEmail: (identifier) => identifier
|
|
747
783
|
? ['mutation', 'sendVerificationEmail', identifier]
|
|
748
784
|
: ['mutation', 'sendVerificationEmail'],
|
|
785
|
+
/** Mutation key for forgotPassword */ forgotPassword: (identifier) => identifier
|
|
786
|
+
? ['mutation', 'forgotPassword', identifier]
|
|
787
|
+
: ['mutation', 'forgotPassword'],
|
|
749
788
|
/** Mutation key for verifyPassword */ verifyPassword: (identifier) => identifier
|
|
750
789
|
? ['mutation', 'verifyPassword', identifier]
|
|
751
790
|
: ['mutation', 'verifyPassword'],
|
|
@@ -776,9 +815,9 @@ exports.customMutationKeys = {
|
|
|
776
815
|
* ```
|
|
777
816
|
*/
|
|
778
817
|
exports.mutationKeys = {
|
|
818
|
+
getAllRecord: exports.getAllRecordMutationKeys,
|
|
779
819
|
orgGetManagersRecord: exports.orgGetManagersRecordMutationKeys,
|
|
780
820
|
orgGetSubordinatesRecord: exports.orgGetSubordinatesRecordMutationKeys,
|
|
781
|
-
getAllRecord: exports.getAllRecordMutationKeys,
|
|
782
821
|
object: exports.objectMutationKeys,
|
|
783
822
|
appPermission: exports.appPermissionMutationKeys,
|
|
784
823
|
orgPermission: exports.orgPermissionMutationKeys,
|
|
@@ -800,11 +839,13 @@ exports.mutationKeys = {
|
|
|
800
839
|
viewTable: exports.viewTableMutationKeys,
|
|
801
840
|
viewGrant: exports.viewGrantMutationKeys,
|
|
802
841
|
viewRule: exports.viewRuleMutationKeys,
|
|
842
|
+
embeddingChunk: exports.embeddingChunkMutationKeys,
|
|
803
843
|
tableTemplateModule: exports.tableTemplateModuleMutationKeys,
|
|
804
844
|
secureTableProvision: exports.secureTableProvisionMutationKeys,
|
|
805
845
|
relationProvision: exports.relationProvisionMutationKeys,
|
|
806
846
|
schemaGrant: exports.schemaGrantMutationKeys,
|
|
807
847
|
defaultPrivilege: exports.defaultPrivilegeMutationKeys,
|
|
848
|
+
enum: exports.enumMutationKeys,
|
|
808
849
|
apiSchema: exports.apiSchemaMutationKeys,
|
|
809
850
|
apiModule: exports.apiModuleMutationKeys,
|
|
810
851
|
domain: exports.domainMutationKeys,
|
|
@@ -812,6 +853,7 @@ exports.mutationKeys = {
|
|
|
812
853
|
siteModule: exports.siteModuleMutationKeys,
|
|
813
854
|
siteTheme: exports.siteThemeMutationKeys,
|
|
814
855
|
triggerFunction: exports.triggerFunctionMutationKeys,
|
|
856
|
+
databaseTransfer: exports.databaseTransferMutationKeys,
|
|
815
857
|
api: exports.apiMutationKeys,
|
|
816
858
|
site: exports.siteMutationKeys,
|
|
817
859
|
app: exports.appMutationKeys,
|
|
@@ -835,7 +877,8 @@ exports.mutationKeys = {
|
|
|
835
877
|
sessionsModule: exports.sessionsModuleMutationKeys,
|
|
836
878
|
userAuthModule: exports.userAuthModuleMutationKeys,
|
|
837
879
|
usersModule: exports.usersModuleMutationKeys,
|
|
838
|
-
|
|
880
|
+
blueprint: exports.blueprintMutationKeys,
|
|
881
|
+
blueprintTemplate: exports.blueprintTemplateMutationKeys,
|
|
839
882
|
databaseProvisionModule: exports.databaseProvisionModuleMutationKeys,
|
|
840
883
|
appAdminGrant: exports.appAdminGrantMutationKeys,
|
|
841
884
|
appOwnerGrant: exports.appOwnerGrantMutationKeys,
|
|
@@ -847,34 +890,34 @@ exports.mutationKeys = {
|
|
|
847
890
|
orgGrant: exports.orgGrantMutationKeys,
|
|
848
891
|
orgChartEdge: exports.orgChartEdgeMutationKeys,
|
|
849
892
|
orgChartEdgeGrant: exports.orgChartEdgeGrantMutationKeys,
|
|
893
|
+
orgPermissionDefault: exports.orgPermissionDefaultMutationKeys,
|
|
850
894
|
appLimit: exports.appLimitMutationKeys,
|
|
851
895
|
orgLimit: exports.orgLimitMutationKeys,
|
|
852
896
|
appStep: exports.appStepMutationKeys,
|
|
853
897
|
appAchievement: exports.appAchievementMutationKeys,
|
|
898
|
+
appLevel: exports.appLevelMutationKeys,
|
|
899
|
+
email: exports.emailMutationKeys,
|
|
900
|
+
phoneNumber: exports.phoneNumberMutationKeys,
|
|
901
|
+
cryptoAddress: exports.cryptoAddressMutationKeys,
|
|
902
|
+
connectedAccount: exports.connectedAccountMutationKeys,
|
|
854
903
|
invite: exports.inviteMutationKeys,
|
|
855
904
|
claimedInvite: exports.claimedInviteMutationKeys,
|
|
856
905
|
orgInvite: exports.orgInviteMutationKeys,
|
|
857
906
|
orgClaimedInvite: exports.orgClaimedInviteMutationKeys,
|
|
907
|
+
auditLog: exports.auditLogMutationKeys,
|
|
858
908
|
ref: exports.refMutationKeys,
|
|
859
909
|
store: exports.storeMutationKeys,
|
|
860
910
|
appPermissionDefault: exports.appPermissionDefaultMutationKeys,
|
|
861
|
-
cryptoAddress: exports.cryptoAddressMutationKeys,
|
|
862
911
|
roleType: exports.roleTypeMutationKeys,
|
|
863
|
-
orgPermissionDefault: exports.orgPermissionDefaultMutationKeys,
|
|
864
|
-
phoneNumber: exports.phoneNumberMutationKeys,
|
|
865
912
|
appLimitDefault: exports.appLimitDefaultMutationKeys,
|
|
866
913
|
orgLimitDefault: exports.orgLimitDefaultMutationKeys,
|
|
867
|
-
connectedAccount: exports.connectedAccountMutationKeys,
|
|
868
914
|
nodeTypeRegistry: exports.nodeTypeRegistryMutationKeys,
|
|
869
915
|
membershipType: exports.membershipTypeMutationKeys,
|
|
870
916
|
commit: exports.commitMutationKeys,
|
|
871
917
|
appMembershipDefault: exports.appMembershipDefaultMutationKeys,
|
|
872
918
|
rlsModule: exports.rlsModuleMutationKeys,
|
|
873
919
|
orgMembershipDefault: exports.orgMembershipDefaultMutationKeys,
|
|
874
|
-
auditLog: exports.auditLogMutationKeys,
|
|
875
|
-
appLevel: exports.appLevelMutationKeys,
|
|
876
920
|
sqlMigration: exports.sqlMigrationMutationKeys,
|
|
877
|
-
email: exports.emailMutationKeys,
|
|
878
921
|
user: exports.userMutationKeys,
|
|
879
922
|
astMigration: exports.astMigrationMutationKeys,
|
|
880
923
|
appMembership: exports.appMembershipMutationKeys,
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
|
+
export * from './useCreateGetAllRecordMutation';
|
|
6
7
|
export * from './useCreateOrgGetManagersRecordMutation';
|
|
7
8
|
export * from './useCreateOrgGetSubordinatesRecordMutation';
|
|
8
|
-
export * from './useCreateGetAllRecordMutation';
|
|
9
9
|
export * from './useCreateObjectMutation';
|
|
10
10
|
export * from './useUpdateObjectMutation';
|
|
11
11
|
export * from './useDeleteObjectMutation';
|
|
@@ -69,6 +69,9 @@ export * from './useDeleteViewGrantMutation';
|
|
|
69
69
|
export * from './useCreateViewRuleMutation';
|
|
70
70
|
export * from './useUpdateViewRuleMutation';
|
|
71
71
|
export * from './useDeleteViewRuleMutation';
|
|
72
|
+
export * from './useCreateEmbeddingChunkMutation';
|
|
73
|
+
export * from './useUpdateEmbeddingChunkMutation';
|
|
74
|
+
export * from './useDeleteEmbeddingChunkMutation';
|
|
72
75
|
export * from './useCreateTableTemplateModuleMutation';
|
|
73
76
|
export * from './useUpdateTableTemplateModuleMutation';
|
|
74
77
|
export * from './useDeleteTableTemplateModuleMutation';
|
|
@@ -84,6 +87,9 @@ export * from './useDeleteSchemaGrantMutation';
|
|
|
84
87
|
export * from './useCreateDefaultPrivilegeMutation';
|
|
85
88
|
export * from './useUpdateDefaultPrivilegeMutation';
|
|
86
89
|
export * from './useDeleteDefaultPrivilegeMutation';
|
|
90
|
+
export * from './useCreateEnumMutation';
|
|
91
|
+
export * from './useUpdateEnumMutation';
|
|
92
|
+
export * from './useDeleteEnumMutation';
|
|
87
93
|
export * from './useCreateApiSchemaMutation';
|
|
88
94
|
export * from './useUpdateApiSchemaMutation';
|
|
89
95
|
export * from './useDeleteApiSchemaMutation';
|
|
@@ -105,6 +111,9 @@ export * from './useDeleteSiteThemeMutation';
|
|
|
105
111
|
export * from './useCreateTriggerFunctionMutation';
|
|
106
112
|
export * from './useUpdateTriggerFunctionMutation';
|
|
107
113
|
export * from './useDeleteTriggerFunctionMutation';
|
|
114
|
+
export * from './useCreateDatabaseTransferMutation';
|
|
115
|
+
export * from './useUpdateDatabaseTransferMutation';
|
|
116
|
+
export * from './useDeleteDatabaseTransferMutation';
|
|
108
117
|
export * from './useCreateApiMutation';
|
|
109
118
|
export * from './useUpdateApiMutation';
|
|
110
119
|
export * from './useDeleteApiMutation';
|
|
@@ -174,9 +183,12 @@ export * from './useDeleteUserAuthModuleMutation';
|
|
|
174
183
|
export * from './useCreateUsersModuleMutation';
|
|
175
184
|
export * from './useUpdateUsersModuleMutation';
|
|
176
185
|
export * from './useDeleteUsersModuleMutation';
|
|
177
|
-
export * from './
|
|
178
|
-
export * from './
|
|
179
|
-
export * from './
|
|
186
|
+
export * from './useCreateBlueprintMutation';
|
|
187
|
+
export * from './useUpdateBlueprintMutation';
|
|
188
|
+
export * from './useDeleteBlueprintMutation';
|
|
189
|
+
export * from './useCreateBlueprintTemplateMutation';
|
|
190
|
+
export * from './useUpdateBlueprintTemplateMutation';
|
|
191
|
+
export * from './useDeleteBlueprintTemplateMutation';
|
|
180
192
|
export * from './useCreateDatabaseProvisionModuleMutation';
|
|
181
193
|
export * from './useUpdateDatabaseProvisionModuleMutation';
|
|
182
194
|
export * from './useDeleteDatabaseProvisionModuleMutation';
|
|
@@ -210,6 +222,9 @@ export * from './useDeleteOrgChartEdgeMutation';
|
|
|
210
222
|
export * from './useCreateOrgChartEdgeGrantMutation';
|
|
211
223
|
export * from './useUpdateOrgChartEdgeGrantMutation';
|
|
212
224
|
export * from './useDeleteOrgChartEdgeGrantMutation';
|
|
225
|
+
export * from './useCreateOrgPermissionDefaultMutation';
|
|
226
|
+
export * from './useUpdateOrgPermissionDefaultMutation';
|
|
227
|
+
export * from './useDeleteOrgPermissionDefaultMutation';
|
|
213
228
|
export * from './useCreateAppLimitMutation';
|
|
214
229
|
export * from './useUpdateAppLimitMutation';
|
|
215
230
|
export * from './useDeleteAppLimitMutation';
|
|
@@ -222,6 +237,21 @@ export * from './useDeleteAppStepMutation';
|
|
|
222
237
|
export * from './useCreateAppAchievementMutation';
|
|
223
238
|
export * from './useUpdateAppAchievementMutation';
|
|
224
239
|
export * from './useDeleteAppAchievementMutation';
|
|
240
|
+
export * from './useCreateAppLevelMutation';
|
|
241
|
+
export * from './useUpdateAppLevelMutation';
|
|
242
|
+
export * from './useDeleteAppLevelMutation';
|
|
243
|
+
export * from './useCreateEmailMutation';
|
|
244
|
+
export * from './useUpdateEmailMutation';
|
|
245
|
+
export * from './useDeleteEmailMutation';
|
|
246
|
+
export * from './useCreatePhoneNumberMutation';
|
|
247
|
+
export * from './useUpdatePhoneNumberMutation';
|
|
248
|
+
export * from './useDeletePhoneNumberMutation';
|
|
249
|
+
export * from './useCreateCryptoAddressMutation';
|
|
250
|
+
export * from './useUpdateCryptoAddressMutation';
|
|
251
|
+
export * from './useDeleteCryptoAddressMutation';
|
|
252
|
+
export * from './useCreateConnectedAccountMutation';
|
|
253
|
+
export * from './useUpdateConnectedAccountMutation';
|
|
254
|
+
export * from './useDeleteConnectedAccountMutation';
|
|
225
255
|
export * from './useCreateInviteMutation';
|
|
226
256
|
export * from './useUpdateInviteMutation';
|
|
227
257
|
export * from './useDeleteInviteMutation';
|
|
@@ -234,6 +264,9 @@ export * from './useDeleteOrgInviteMutation';
|
|
|
234
264
|
export * from './useCreateOrgClaimedInviteMutation';
|
|
235
265
|
export * from './useUpdateOrgClaimedInviteMutation';
|
|
236
266
|
export * from './useDeleteOrgClaimedInviteMutation';
|
|
267
|
+
export * from './useCreateAuditLogMutation';
|
|
268
|
+
export * from './useUpdateAuditLogMutation';
|
|
269
|
+
export * from './useDeleteAuditLogMutation';
|
|
237
270
|
export * from './useCreateRefMutation';
|
|
238
271
|
export * from './useUpdateRefMutation';
|
|
239
272
|
export * from './useDeleteRefMutation';
|
|
@@ -243,27 +276,15 @@ export * from './useDeleteStoreMutation';
|
|
|
243
276
|
export * from './useCreateAppPermissionDefaultMutation';
|
|
244
277
|
export * from './useUpdateAppPermissionDefaultMutation';
|
|
245
278
|
export * from './useDeleteAppPermissionDefaultMutation';
|
|
246
|
-
export * from './useCreateCryptoAddressMutation';
|
|
247
|
-
export * from './useUpdateCryptoAddressMutation';
|
|
248
|
-
export * from './useDeleteCryptoAddressMutation';
|
|
249
279
|
export * from './useCreateRoleTypeMutation';
|
|
250
280
|
export * from './useUpdateRoleTypeMutation';
|
|
251
281
|
export * from './useDeleteRoleTypeMutation';
|
|
252
|
-
export * from './useCreateOrgPermissionDefaultMutation';
|
|
253
|
-
export * from './useUpdateOrgPermissionDefaultMutation';
|
|
254
|
-
export * from './useDeleteOrgPermissionDefaultMutation';
|
|
255
|
-
export * from './useCreatePhoneNumberMutation';
|
|
256
|
-
export * from './useUpdatePhoneNumberMutation';
|
|
257
|
-
export * from './useDeletePhoneNumberMutation';
|
|
258
282
|
export * from './useCreateAppLimitDefaultMutation';
|
|
259
283
|
export * from './useUpdateAppLimitDefaultMutation';
|
|
260
284
|
export * from './useDeleteAppLimitDefaultMutation';
|
|
261
285
|
export * from './useCreateOrgLimitDefaultMutation';
|
|
262
286
|
export * from './useUpdateOrgLimitDefaultMutation';
|
|
263
287
|
export * from './useDeleteOrgLimitDefaultMutation';
|
|
264
|
-
export * from './useCreateConnectedAccountMutation';
|
|
265
|
-
export * from './useUpdateConnectedAccountMutation';
|
|
266
|
-
export * from './useDeleteConnectedAccountMutation';
|
|
267
288
|
export * from './useCreateNodeTypeRegistryMutation';
|
|
268
289
|
export * from './useUpdateNodeTypeRegistryMutation';
|
|
269
290
|
export * from './useDeleteNodeTypeRegistryMutation';
|
|
@@ -282,16 +303,7 @@ export * from './useDeleteRlsModuleMutation';
|
|
|
282
303
|
export * from './useCreateOrgMembershipDefaultMutation';
|
|
283
304
|
export * from './useUpdateOrgMembershipDefaultMutation';
|
|
284
305
|
export * from './useDeleteOrgMembershipDefaultMutation';
|
|
285
|
-
export * from './useCreateAuditLogMutation';
|
|
286
|
-
export * from './useUpdateAuditLogMutation';
|
|
287
|
-
export * from './useDeleteAuditLogMutation';
|
|
288
|
-
export * from './useCreateAppLevelMutation';
|
|
289
|
-
export * from './useUpdateAppLevelMutation';
|
|
290
|
-
export * from './useDeleteAppLevelMutation';
|
|
291
306
|
export * from './useCreateSqlMigrationMutation';
|
|
292
|
-
export * from './useCreateEmailMutation';
|
|
293
|
-
export * from './useUpdateEmailMutation';
|
|
294
|
-
export * from './useDeleteEmailMutation';
|
|
295
307
|
export * from './useCreateUserMutation';
|
|
296
308
|
export * from './useUpdateUserMutation';
|
|
297
309
|
export * from './useDeleteUserMutation';
|
|
@@ -302,23 +314,28 @@ export * from './useDeleteAppMembershipMutation';
|
|
|
302
314
|
export * from './useCreateHierarchyModuleMutation';
|
|
303
315
|
export * from './useUpdateHierarchyModuleMutation';
|
|
304
316
|
export * from './useDeleteHierarchyModuleMutation';
|
|
305
|
-
export * from './useSignOutMutation';
|
|
306
317
|
export * from './useSendAccountDeletionEmailMutation';
|
|
307
|
-
export * from './
|
|
318
|
+
export * from './useSignOutMutation';
|
|
319
|
+
export * from './useAcceptDatabaseTransferMutation';
|
|
320
|
+
export * from './useCancelDatabaseTransferMutation';
|
|
321
|
+
export * from './useRejectDatabaseTransferMutation';
|
|
308
322
|
export * from './useSubmitInviteCodeMutation';
|
|
309
323
|
export * from './useSubmitOrgInviteCodeMutation';
|
|
310
|
-
export * from './
|
|
311
|
-
export * from './useInitEmptyRepoMutation';
|
|
324
|
+
export * from './useCheckPasswordMutation';
|
|
312
325
|
export * from './useConfirmDeleteAccountMutation';
|
|
313
326
|
export * from './useSetPasswordMutation';
|
|
314
327
|
export * from './useVerifyEmailMutation';
|
|
315
|
-
export * from './
|
|
328
|
+
export * from './useFreezeObjectsMutation';
|
|
329
|
+
export * from './useInitEmptyRepoMutation';
|
|
330
|
+
export * from './useConstructBlueprintMutation';
|
|
316
331
|
export * from './useResetPasswordMutation';
|
|
317
|
-
export * from './
|
|
318
|
-
export * from './useSetFieldOrderMutation';
|
|
332
|
+
export * from './useRemoveNodeAtPathMutation';
|
|
319
333
|
export * from './useSetDataAtPathMutation';
|
|
320
334
|
export * from './useSetPropsAndCommitMutation';
|
|
335
|
+
export * from './useCopyTemplateToBlueprintMutation';
|
|
321
336
|
export * from './useProvisionDatabaseWithUserMutation';
|
|
337
|
+
export * from './useBootstrapUserMutation';
|
|
338
|
+
export * from './useSetFieldOrderMutation';
|
|
322
339
|
export * from './useInsertNodeAtPathMutation';
|
|
323
340
|
export * from './useUpdateNodeAtPathMutation';
|
|
324
341
|
export * from './useSetAndCommitMutation';
|
|
@@ -329,7 +346,7 @@ export * from './useExtendTokenExpiresMutation';
|
|
|
329
346
|
export * from './useSignInMutation';
|
|
330
347
|
export * from './useSignUpMutation';
|
|
331
348
|
export * from './useOneTimeTokenMutation';
|
|
332
|
-
export * from './useForgotPasswordMutation';
|
|
333
349
|
export * from './useSendVerificationEmailMutation';
|
|
350
|
+
export * from './useForgotPasswordMutation';
|
|
334
351
|
export * from './useVerifyPasswordMutation';
|
|
335
352
|
export * from './useVerifyTotpMutation';
|