@constructive-io/react 0.6.4 → 0.6.6
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 +8 -0
- package/admin/hooks/queries/index.d.ts +1 -1
- package/admin/hooks/queries/index.js +1 -1
- package/admin/hooks/query-keys.d.ts +2 -2
- package/admin/hooks/query-keys.js +1 -1
- package/admin/orm/index.d.ts +5 -5
- package/admin/orm/query/index.d.ts +9 -9
- package/admin/orm/query/index.js +16 -16
- package/auth/orm/input-types.d.ts +0 -1
- package/auth/schema-types.d.ts +1 -3
- package/esm/admin/hooks/queries/index.d.ts +1 -1
- package/esm/admin/hooks/queries/index.js +1 -1
- package/esm/admin/hooks/query-keys.d.ts +2 -2
- package/esm/admin/hooks/query-keys.js +1 -1
- package/esm/admin/orm/index.d.ts +5 -5
- package/esm/admin/orm/query/index.d.ts +9 -9
- package/esm/admin/orm/query/index.js +16 -16
- package/esm/auth/orm/input-types.d.ts +0 -1
- package/esm/auth/schema-types.d.ts +1 -3
- package/esm/public/hooks/index.d.ts +1 -1
- package/esm/public/hooks/index.js +1 -1
- package/esm/public/hooks/invalidation.d.ts +18 -18
- package/esm/public/hooks/invalidation.js +49 -49
- package/esm/public/hooks/mutation-keys.d.ts +48 -48
- package/esm/public/hooks/mutation-keys.js +39 -39
- package/esm/public/hooks/mutations/index.d.ts +15 -15
- package/esm/public/hooks/mutations/index.js +15 -15
- package/esm/public/hooks/queries/index.d.ts +8 -8
- package/esm/public/hooks/queries/index.js +8 -8
- package/esm/public/hooks/query-keys.d.ts +46 -46
- package/esm/public/hooks/query-keys.js +26 -26
- package/esm/public/orm/index.d.ts +44 -44
- package/esm/public/orm/index.js +6 -6
- package/esm/public/orm/input-types.d.ts +570 -571
- package/esm/public/orm/models/index.d.ts +3 -3
- package/esm/public/orm/models/index.js +3 -3
- package/esm/public/orm/mutation/index.d.ts +46 -46
- package/esm/public/orm/mutation/index.js +66 -66
- package/esm/public/orm/query/index.d.ts +28 -28
- package/esm/public/orm/query/index.js +48 -48
- package/esm/public/schema-types.d.ts +752 -754
- package/esm/public/types.d.ts +36 -36
- package/package.json +4 -4
- package/public/hooks/index.d.ts +1 -1
- package/public/hooks/index.js +1 -1
- package/public/hooks/invalidation.d.ts +18 -18
- package/public/hooks/invalidation.js +48 -48
- package/public/hooks/mutation-keys.d.ts +48 -48
- package/public/hooks/mutation-keys.js +42 -42
- package/public/hooks/mutations/index.d.ts +15 -15
- package/public/hooks/mutations/index.js +15 -15
- package/public/hooks/queries/index.d.ts +8 -8
- package/public/hooks/queries/index.js +8 -8
- package/public/hooks/query-keys.d.ts +46 -46
- package/public/hooks/query-keys.js +29 -29
- package/public/orm/index.d.ts +44 -44
- package/public/orm/index.js +6 -6
- package/public/orm/input-types.d.ts +570 -571
- package/public/orm/models/index.d.ts +3 -3
- package/public/orm/models/index.js +9 -9
- package/public/orm/mutation/index.d.ts +46 -46
- package/public/orm/mutation/index.js +66 -66
- package/public/orm/query/index.d.ts +28 -28
- package/public/orm/query/index.js +48 -48
- package/public/schema-types.d.ts +752 -754
- package/public/types.d.ts +36 -36
|
@@ -21,6 +21,12 @@ export declare const getAllRecordMutationKeys: {
|
|
|
21
21
|
/** Update getAllRecord mutation key */ readonly update: (id: string | number) => readonly ["mutation", "getallrecord", "update", string | number];
|
|
22
22
|
/** Delete getAllRecord mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "getallrecord", "delete", string | number];
|
|
23
23
|
};
|
|
24
|
+
export declare const objectMutationKeys: {
|
|
25
|
+
/** All object mutation keys */ readonly all: readonly ["mutation", "object"];
|
|
26
|
+
/** Create object mutation key */ readonly create: () => readonly ["mutation", "object", "create"];
|
|
27
|
+
/** Update object mutation key */ readonly update: (id: string | number) => readonly ["mutation", "object", "update", string | number];
|
|
28
|
+
/** Delete object mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "object", "delete", string | number];
|
|
29
|
+
};
|
|
24
30
|
export declare const appPermissionMutationKeys: {
|
|
25
31
|
/** All appPermission mutation keys */ readonly all: readonly ["mutation", "apppermission"];
|
|
26
32
|
/** Create appPermission mutation key */ readonly create: () => readonly ["mutation", "apppermission", "create"];
|
|
@@ -33,12 +39,6 @@ export declare const orgPermissionMutationKeys: {
|
|
|
33
39
|
/** Update orgPermission mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgpermission", "update", string | number];
|
|
34
40
|
/** Delete orgPermission mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgpermission", "delete", string | number];
|
|
35
41
|
};
|
|
36
|
-
export declare const objectMutationKeys: {
|
|
37
|
-
/** All object mutation keys */ readonly all: readonly ["mutation", "object"];
|
|
38
|
-
/** Create object mutation key */ readonly create: () => readonly ["mutation", "object", "create"];
|
|
39
|
-
/** Update object mutation key */ readonly update: (id: string | number) => readonly ["mutation", "object", "update", string | number];
|
|
40
|
-
/** Delete object mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "object", "delete", string | number];
|
|
41
|
-
};
|
|
42
42
|
export declare const appLevelRequirementMutationKeys: {
|
|
43
43
|
/** All appLevelRequirement mutation keys */ readonly all: readonly ["mutation", "applevelrequirement"];
|
|
44
44
|
/** Create appLevelRequirement mutation key */ readonly create: () => readonly ["mutation", "applevelrequirement", "create"];
|
|
@@ -549,6 +549,12 @@ export declare const membershipTypeMutationKeys: {
|
|
|
549
549
|
/** Update membershipType mutation key */ readonly update: (id: string | number) => readonly ["mutation", "membershiptype", "update", string | number];
|
|
550
550
|
/** Delete membershipType mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "membershiptype", "delete", string | number];
|
|
551
551
|
};
|
|
552
|
+
export declare const commitMutationKeys: {
|
|
553
|
+
/** All commit mutation keys */ readonly all: readonly ["mutation", "commit"];
|
|
554
|
+
/** Create commit mutation key */ readonly create: () => readonly ["mutation", "commit", "create"];
|
|
555
|
+
/** Update commit mutation key */ readonly update: (id: string | number) => readonly ["mutation", "commit", "update", string | number];
|
|
556
|
+
/** Delete commit mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "commit", "delete", string | number];
|
|
557
|
+
};
|
|
552
558
|
export declare const appMembershipDefaultMutationKeys: {
|
|
553
559
|
/** All appMembershipDefault mutation keys */ readonly all: readonly ["mutation", "appmembershipdefault"];
|
|
554
560
|
/** Create appMembershipDefault mutation key */ readonly create: () => readonly ["mutation", "appmembershipdefault", "create"];
|
|
@@ -561,12 +567,6 @@ export declare const rlsModuleMutationKeys: {
|
|
|
561
567
|
/** Update rlsModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "rlsmodule", "update", string | number];
|
|
562
568
|
/** Delete rlsModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "rlsmodule", "delete", string | number];
|
|
563
569
|
};
|
|
564
|
-
export declare const commitMutationKeys: {
|
|
565
|
-
/** All commit mutation keys */ readonly all: readonly ["mutation", "commit"];
|
|
566
|
-
/** Create commit mutation key */ readonly create: () => readonly ["mutation", "commit", "create"];
|
|
567
|
-
/** Update commit mutation key */ readonly update: (id: string | number) => readonly ["mutation", "commit", "update", string | number];
|
|
568
|
-
/** Delete commit mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "commit", "delete", string | number];
|
|
569
|
-
};
|
|
570
570
|
export declare const orgMembershipDefaultMutationKeys: {
|
|
571
571
|
/** All orgMembershipDefault mutation keys */ readonly all: readonly ["mutation", "orgmembershipdefault"];
|
|
572
572
|
/** Create orgMembershipDefault mutation key */ readonly create: () => readonly ["mutation", "orgmembershipdefault", "create"];
|
|
@@ -597,6 +597,12 @@ export declare const emailMutationKeys: {
|
|
|
597
597
|
/** Update email mutation key */ readonly update: (id: string | number) => readonly ["mutation", "email", "update", string | number];
|
|
598
598
|
/** Delete email mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "email", "delete", string | number];
|
|
599
599
|
};
|
|
600
|
+
export declare const userMutationKeys: {
|
|
601
|
+
/** All user mutation keys */ readonly all: readonly ["mutation", "user"];
|
|
602
|
+
/** Create user mutation key */ readonly create: () => readonly ["mutation", "user", "create"];
|
|
603
|
+
/** Update user mutation key */ readonly update: (id: string | number) => readonly ["mutation", "user", "update", string | number];
|
|
604
|
+
/** Delete user mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "user", "delete", string | number];
|
|
605
|
+
};
|
|
600
606
|
export declare const astMigrationMutationKeys: {
|
|
601
607
|
/** All astMigration mutation keys */ readonly all: readonly ["mutation", "astmigration"];
|
|
602
608
|
/** Create astMigration mutation key */ readonly create: () => readonly ["mutation", "astmigration", "create"];
|
|
@@ -609,12 +615,6 @@ export declare const appMembershipMutationKeys: {
|
|
|
609
615
|
/** Update appMembership mutation key */ readonly update: (id: string | number) => readonly ["mutation", "appmembership", "update", string | number];
|
|
610
616
|
/** Delete appMembership mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "appmembership", "delete", string | number];
|
|
611
617
|
};
|
|
612
|
-
export declare const userMutationKeys: {
|
|
613
|
-
/** All user mutation keys */ readonly all: readonly ["mutation", "user"];
|
|
614
|
-
/** Create user mutation key */ readonly create: () => readonly ["mutation", "user", "create"];
|
|
615
|
-
/** Update user mutation key */ readonly update: (id: string | number) => readonly ["mutation", "user", "update", string | number];
|
|
616
|
-
/** Delete user mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "user", "delete", string | number];
|
|
617
|
-
};
|
|
618
618
|
export declare const hierarchyModuleMutationKeys: {
|
|
619
619
|
/** All hierarchyModule mutation keys */ readonly all: readonly ["mutation", "hierarchymodule"];
|
|
620
620
|
/** Create hierarchyModule mutation key */ readonly create: () => readonly ["mutation", "hierarchymodule", "create"];
|
|
@@ -632,23 +632,23 @@ export declare const customMutationKeys: {
|
|
|
632
632
|
/** Mutation key for confirmDeleteAccount */ readonly confirmDeleteAccount: (identifier?: string) => readonly ["mutation", "confirmDeleteAccount", string] | readonly ["mutation", "confirmDeleteAccount"];
|
|
633
633
|
/** Mutation key for setPassword */ readonly setPassword: (identifier?: string) => readonly ["mutation", "setPassword", string] | readonly ["mutation", "setPassword"];
|
|
634
634
|
/** Mutation key for verifyEmail */ readonly verifyEmail: (identifier?: string) => readonly ["mutation", "verifyEmail", string] | readonly ["mutation", "verifyEmail"];
|
|
635
|
+
/** Mutation key for removeNodeAtPath */ readonly removeNodeAtPath: (identifier?: string) => readonly ["mutation", "removeNodeAtPath", string] | readonly ["mutation", "removeNodeAtPath"];
|
|
635
636
|
/** Mutation key for resetPassword */ readonly resetPassword: (identifier?: string) => readonly ["mutation", "resetPassword", string] | readonly ["mutation", "resetPassword"];
|
|
636
637
|
/** Mutation key for bootstrapUser */ readonly bootstrapUser: (identifier?: string) => readonly ["mutation", "bootstrapUser", string] | readonly ["mutation", "bootstrapUser"];
|
|
637
|
-
/** Mutation key for
|
|
638
|
+
/** Mutation key for setFieldOrder */ readonly setFieldOrder: (identifier?: string) => readonly ["mutation", "setFieldOrder", string] | readonly ["mutation", "setFieldOrder"];
|
|
638
639
|
/** Mutation key for setDataAtPath */ readonly setDataAtPath: (identifier?: string) => readonly ["mutation", "setDataAtPath", string] | readonly ["mutation", "setDataAtPath"];
|
|
639
640
|
/** Mutation key for setPropsAndCommit */ readonly setPropsAndCommit: (identifier?: string) => readonly ["mutation", "setPropsAndCommit", string] | readonly ["mutation", "setPropsAndCommit"];
|
|
640
641
|
/** Mutation key for provisionDatabaseWithUser */ readonly provisionDatabaseWithUser: (identifier?: string) => readonly ["mutation", "provisionDatabaseWithUser", string] | readonly ["mutation", "provisionDatabaseWithUser"];
|
|
642
|
+
/** Mutation key for insertNodeAtPath */ readonly insertNodeAtPath: (identifier?: string) => readonly ["mutation", "insertNodeAtPath", string] | readonly ["mutation", "insertNodeAtPath"];
|
|
643
|
+
/** Mutation key for updateNodeAtPath */ readonly updateNodeAtPath: (identifier?: string) => readonly ["mutation", "updateNodeAtPath", string] | readonly ["mutation", "updateNodeAtPath"];
|
|
644
|
+
/** Mutation key for setAndCommit */ readonly setAndCommit: (identifier?: string) => readonly ["mutation", "setAndCommit", string] | readonly ["mutation", "setAndCommit"];
|
|
645
|
+
/** Mutation key for applyRls */ readonly applyRls: (identifier?: string) => readonly ["mutation", "applyRls", string] | readonly ["mutation", "applyRls"];
|
|
641
646
|
/** Mutation key for signInOneTimeToken */ readonly signInOneTimeToken: (identifier?: string) => readonly ["mutation", "signInOneTimeToken", string] | readonly ["mutation", "signInOneTimeToken"];
|
|
642
647
|
/** Mutation key for createUserDatabase */ readonly createUserDatabase: (identifier?: string) => readonly ["mutation", "createUserDatabase", string] | readonly ["mutation", "createUserDatabase"];
|
|
643
648
|
/** Mutation key for extendTokenExpires */ readonly extendTokenExpires: (identifier?: string) => readonly ["mutation", "extendTokenExpires", string] | readonly ["mutation", "extendTokenExpires"];
|
|
644
649
|
/** Mutation key for signIn */ readonly signIn: (identifier?: string) => readonly ["mutation", "signIn", string] | readonly ["mutation", "signIn"];
|
|
645
650
|
/** Mutation key for signUp */ readonly signUp: (identifier?: string) => readonly ["mutation", "signUp", string] | readonly ["mutation", "signUp"];
|
|
646
|
-
/** Mutation key for setFieldOrder */ readonly setFieldOrder: (identifier?: string) => readonly ["mutation", "setFieldOrder", string] | readonly ["mutation", "setFieldOrder"];
|
|
647
651
|
/** Mutation key for oneTimeToken */ readonly oneTimeToken: (identifier?: string) => readonly ["mutation", "oneTimeToken", string] | readonly ["mutation", "oneTimeToken"];
|
|
648
|
-
/** Mutation key for insertNodeAtPath */ readonly insertNodeAtPath: (identifier?: string) => readonly ["mutation", "insertNodeAtPath", string] | readonly ["mutation", "insertNodeAtPath"];
|
|
649
|
-
/** Mutation key for updateNodeAtPath */ readonly updateNodeAtPath: (identifier?: string) => readonly ["mutation", "updateNodeAtPath", string] | readonly ["mutation", "updateNodeAtPath"];
|
|
650
|
-
/** Mutation key for setAndCommit */ readonly setAndCommit: (identifier?: string) => readonly ["mutation", "setAndCommit", string] | readonly ["mutation", "setAndCommit"];
|
|
651
|
-
/** Mutation key for applyRls */ readonly applyRls: (identifier?: string) => readonly ["mutation", "applyRls", string] | readonly ["mutation", "applyRls"];
|
|
652
652
|
/** Mutation key for forgotPassword */ readonly forgotPassword: (identifier?: string) => readonly ["mutation", "forgotPassword", string] | readonly ["mutation", "forgotPassword"];
|
|
653
653
|
/** Mutation key for sendVerificationEmail */ readonly sendVerificationEmail: (identifier?: string) => readonly ["mutation", "sendVerificationEmail", string] | readonly ["mutation", "sendVerificationEmail"];
|
|
654
654
|
/** Mutation key for verifyPassword */ readonly verifyPassword: (identifier?: string) => readonly ["mutation", "verifyPassword", string] | readonly ["mutation", "verifyPassword"];
|
|
@@ -695,6 +695,12 @@ export declare const mutationKeys: {
|
|
|
695
695
|
/** Update getAllRecord mutation key */ readonly update: (id: string | number) => readonly ["mutation", "getallrecord", "update", string | number];
|
|
696
696
|
/** Delete getAllRecord mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "getallrecord", "delete", string | number];
|
|
697
697
|
};
|
|
698
|
+
readonly object: {
|
|
699
|
+
/** All object mutation keys */ readonly all: readonly ["mutation", "object"];
|
|
700
|
+
/** Create object mutation key */ readonly create: () => readonly ["mutation", "object", "create"];
|
|
701
|
+
/** Update object mutation key */ readonly update: (id: string | number) => readonly ["mutation", "object", "update", string | number];
|
|
702
|
+
/** Delete object mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "object", "delete", string | number];
|
|
703
|
+
};
|
|
698
704
|
readonly appPermission: {
|
|
699
705
|
/** All appPermission mutation keys */ readonly all: readonly ["mutation", "apppermission"];
|
|
700
706
|
/** Create appPermission mutation key */ readonly create: () => readonly ["mutation", "apppermission", "create"];
|
|
@@ -707,12 +713,6 @@ export declare const mutationKeys: {
|
|
|
707
713
|
/** Update orgPermission mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgpermission", "update", string | number];
|
|
708
714
|
/** Delete orgPermission mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgpermission", "delete", string | number];
|
|
709
715
|
};
|
|
710
|
-
readonly object: {
|
|
711
|
-
/** All object mutation keys */ readonly all: readonly ["mutation", "object"];
|
|
712
|
-
/** Create object mutation key */ readonly create: () => readonly ["mutation", "object", "create"];
|
|
713
|
-
/** Update object mutation key */ readonly update: (id: string | number) => readonly ["mutation", "object", "update", string | number];
|
|
714
|
-
/** Delete object mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "object", "delete", string | number];
|
|
715
|
-
};
|
|
716
716
|
readonly appLevelRequirement: {
|
|
717
717
|
/** All appLevelRequirement mutation keys */ readonly all: readonly ["mutation", "applevelrequirement"];
|
|
718
718
|
/** Create appLevelRequirement mutation key */ readonly create: () => readonly ["mutation", "applevelrequirement", "create"];
|
|
@@ -1223,6 +1223,12 @@ export declare const mutationKeys: {
|
|
|
1223
1223
|
/** Update membershipType mutation key */ readonly update: (id: string | number) => readonly ["mutation", "membershiptype", "update", string | number];
|
|
1224
1224
|
/** Delete membershipType mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "membershiptype", "delete", string | number];
|
|
1225
1225
|
};
|
|
1226
|
+
readonly commit: {
|
|
1227
|
+
/** All commit mutation keys */ readonly all: readonly ["mutation", "commit"];
|
|
1228
|
+
/** Create commit mutation key */ readonly create: () => readonly ["mutation", "commit", "create"];
|
|
1229
|
+
/** Update commit mutation key */ readonly update: (id: string | number) => readonly ["mutation", "commit", "update", string | number];
|
|
1230
|
+
/** Delete commit mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "commit", "delete", string | number];
|
|
1231
|
+
};
|
|
1226
1232
|
readonly appMembershipDefault: {
|
|
1227
1233
|
/** All appMembershipDefault mutation keys */ readonly all: readonly ["mutation", "appmembershipdefault"];
|
|
1228
1234
|
/** Create appMembershipDefault mutation key */ readonly create: () => readonly ["mutation", "appmembershipdefault", "create"];
|
|
@@ -1235,12 +1241,6 @@ export declare const mutationKeys: {
|
|
|
1235
1241
|
/** Update rlsModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "rlsmodule", "update", string | number];
|
|
1236
1242
|
/** Delete rlsModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "rlsmodule", "delete", string | number];
|
|
1237
1243
|
};
|
|
1238
|
-
readonly commit: {
|
|
1239
|
-
/** All commit mutation keys */ readonly all: readonly ["mutation", "commit"];
|
|
1240
|
-
/** Create commit mutation key */ readonly create: () => readonly ["mutation", "commit", "create"];
|
|
1241
|
-
/** Update commit mutation key */ readonly update: (id: string | number) => readonly ["mutation", "commit", "update", string | number];
|
|
1242
|
-
/** Delete commit mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "commit", "delete", string | number];
|
|
1243
|
-
};
|
|
1244
1244
|
readonly orgMembershipDefault: {
|
|
1245
1245
|
/** All orgMembershipDefault mutation keys */ readonly all: readonly ["mutation", "orgmembershipdefault"];
|
|
1246
1246
|
/** Create orgMembershipDefault mutation key */ readonly create: () => readonly ["mutation", "orgmembershipdefault", "create"];
|
|
@@ -1271,6 +1271,12 @@ export declare const mutationKeys: {
|
|
|
1271
1271
|
/** Update email mutation key */ readonly update: (id: string | number) => readonly ["mutation", "email", "update", string | number];
|
|
1272
1272
|
/** Delete email mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "email", "delete", string | number];
|
|
1273
1273
|
};
|
|
1274
|
+
readonly user: {
|
|
1275
|
+
/** All user mutation keys */ readonly all: readonly ["mutation", "user"];
|
|
1276
|
+
/** Create user mutation key */ readonly create: () => readonly ["mutation", "user", "create"];
|
|
1277
|
+
/** Update user mutation key */ readonly update: (id: string | number) => readonly ["mutation", "user", "update", string | number];
|
|
1278
|
+
/** Delete user mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "user", "delete", string | number];
|
|
1279
|
+
};
|
|
1274
1280
|
readonly astMigration: {
|
|
1275
1281
|
/** All astMigration mutation keys */ readonly all: readonly ["mutation", "astmigration"];
|
|
1276
1282
|
/** Create astMigration mutation key */ readonly create: () => readonly ["mutation", "astmigration", "create"];
|
|
@@ -1283,12 +1289,6 @@ export declare const mutationKeys: {
|
|
|
1283
1289
|
/** Update appMembership mutation key */ readonly update: (id: string | number) => readonly ["mutation", "appmembership", "update", string | number];
|
|
1284
1290
|
/** Delete appMembership mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "appmembership", "delete", string | number];
|
|
1285
1291
|
};
|
|
1286
|
-
readonly user: {
|
|
1287
|
-
/** All user mutation keys */ readonly all: readonly ["mutation", "user"];
|
|
1288
|
-
/** Create user mutation key */ readonly create: () => readonly ["mutation", "user", "create"];
|
|
1289
|
-
/** Update user mutation key */ readonly update: (id: string | number) => readonly ["mutation", "user", "update", string | number];
|
|
1290
|
-
/** Delete user mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "user", "delete", string | number];
|
|
1291
|
-
};
|
|
1292
1292
|
readonly hierarchyModule: {
|
|
1293
1293
|
/** All hierarchyModule mutation keys */ readonly all: readonly ["mutation", "hierarchymodule"];
|
|
1294
1294
|
/** Create hierarchyModule mutation key */ readonly create: () => readonly ["mutation", "hierarchymodule", "create"];
|
|
@@ -1306,23 +1306,23 @@ export declare const mutationKeys: {
|
|
|
1306
1306
|
/** Mutation key for confirmDeleteAccount */ readonly confirmDeleteAccount: (identifier?: string) => readonly ["mutation", "confirmDeleteAccount", string] | readonly ["mutation", "confirmDeleteAccount"];
|
|
1307
1307
|
/** Mutation key for setPassword */ readonly setPassword: (identifier?: string) => readonly ["mutation", "setPassword", string] | readonly ["mutation", "setPassword"];
|
|
1308
1308
|
/** Mutation key for verifyEmail */ readonly verifyEmail: (identifier?: string) => readonly ["mutation", "verifyEmail", string] | readonly ["mutation", "verifyEmail"];
|
|
1309
|
+
/** Mutation key for removeNodeAtPath */ readonly removeNodeAtPath: (identifier?: string) => readonly ["mutation", "removeNodeAtPath", string] | readonly ["mutation", "removeNodeAtPath"];
|
|
1309
1310
|
/** Mutation key for resetPassword */ readonly resetPassword: (identifier?: string) => readonly ["mutation", "resetPassword", string] | readonly ["mutation", "resetPassword"];
|
|
1310
1311
|
/** Mutation key for bootstrapUser */ readonly bootstrapUser: (identifier?: string) => readonly ["mutation", "bootstrapUser", string] | readonly ["mutation", "bootstrapUser"];
|
|
1311
|
-
/** Mutation key for
|
|
1312
|
+
/** Mutation key for setFieldOrder */ readonly setFieldOrder: (identifier?: string) => readonly ["mutation", "setFieldOrder", string] | readonly ["mutation", "setFieldOrder"];
|
|
1312
1313
|
/** Mutation key for setDataAtPath */ readonly setDataAtPath: (identifier?: string) => readonly ["mutation", "setDataAtPath", string] | readonly ["mutation", "setDataAtPath"];
|
|
1313
1314
|
/** Mutation key for setPropsAndCommit */ readonly setPropsAndCommit: (identifier?: string) => readonly ["mutation", "setPropsAndCommit", string] | readonly ["mutation", "setPropsAndCommit"];
|
|
1314
1315
|
/** Mutation key for provisionDatabaseWithUser */ readonly provisionDatabaseWithUser: (identifier?: string) => readonly ["mutation", "provisionDatabaseWithUser", string] | readonly ["mutation", "provisionDatabaseWithUser"];
|
|
1316
|
+
/** Mutation key for insertNodeAtPath */ readonly insertNodeAtPath: (identifier?: string) => readonly ["mutation", "insertNodeAtPath", string] | readonly ["mutation", "insertNodeAtPath"];
|
|
1317
|
+
/** Mutation key for updateNodeAtPath */ readonly updateNodeAtPath: (identifier?: string) => readonly ["mutation", "updateNodeAtPath", string] | readonly ["mutation", "updateNodeAtPath"];
|
|
1318
|
+
/** Mutation key for setAndCommit */ readonly setAndCommit: (identifier?: string) => readonly ["mutation", "setAndCommit", string] | readonly ["mutation", "setAndCommit"];
|
|
1319
|
+
/** Mutation key for applyRls */ readonly applyRls: (identifier?: string) => readonly ["mutation", "applyRls", string] | readonly ["mutation", "applyRls"];
|
|
1315
1320
|
/** Mutation key for signInOneTimeToken */ readonly signInOneTimeToken: (identifier?: string) => readonly ["mutation", "signInOneTimeToken", string] | readonly ["mutation", "signInOneTimeToken"];
|
|
1316
1321
|
/** Mutation key for createUserDatabase */ readonly createUserDatabase: (identifier?: string) => readonly ["mutation", "createUserDatabase", string] | readonly ["mutation", "createUserDatabase"];
|
|
1317
1322
|
/** Mutation key for extendTokenExpires */ readonly extendTokenExpires: (identifier?: string) => readonly ["mutation", "extendTokenExpires", string] | readonly ["mutation", "extendTokenExpires"];
|
|
1318
1323
|
/** Mutation key for signIn */ readonly signIn: (identifier?: string) => readonly ["mutation", "signIn", string] | readonly ["mutation", "signIn"];
|
|
1319
1324
|
/** Mutation key for signUp */ readonly signUp: (identifier?: string) => readonly ["mutation", "signUp", string] | readonly ["mutation", "signUp"];
|
|
1320
|
-
/** Mutation key for setFieldOrder */ readonly setFieldOrder: (identifier?: string) => readonly ["mutation", "setFieldOrder", string] | readonly ["mutation", "setFieldOrder"];
|
|
1321
1325
|
/** Mutation key for oneTimeToken */ readonly oneTimeToken: (identifier?: string) => readonly ["mutation", "oneTimeToken", string] | readonly ["mutation", "oneTimeToken"];
|
|
1322
|
-
/** Mutation key for insertNodeAtPath */ readonly insertNodeAtPath: (identifier?: string) => readonly ["mutation", "insertNodeAtPath", string] | readonly ["mutation", "insertNodeAtPath"];
|
|
1323
|
-
/** Mutation key for updateNodeAtPath */ readonly updateNodeAtPath: (identifier?: string) => readonly ["mutation", "updateNodeAtPath", string] | readonly ["mutation", "updateNodeAtPath"];
|
|
1324
|
-
/** Mutation key for setAndCommit */ readonly setAndCommit: (identifier?: string) => readonly ["mutation", "setAndCommit", string] | readonly ["mutation", "setAndCommit"];
|
|
1325
|
-
/** Mutation key for applyRls */ readonly applyRls: (identifier?: string) => readonly ["mutation", "applyRls", string] | readonly ["mutation", "applyRls"];
|
|
1326
1326
|
/** Mutation key for forgotPassword */ readonly forgotPassword: (identifier?: string) => readonly ["mutation", "forgotPassword", string] | readonly ["mutation", "forgotPassword"];
|
|
1327
1327
|
/** Mutation key for sendVerificationEmail */ readonly sendVerificationEmail: (identifier?: string) => readonly ["mutation", "sendVerificationEmail", string] | readonly ["mutation", "sendVerificationEmail"];
|
|
1328
1328
|
/** Mutation key for verifyPassword */ readonly verifyPassword: (identifier?: string) => readonly ["mutation", "verifyPassword", string] | readonly ["mutation", "verifyPassword"];
|
|
@@ -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.limitsModuleMutationKeys = exports.levelsModuleMutationKeys = exports.invitesModuleMutationKeys = exports.fieldModuleMutationKeys = exports.encryptedSecretsModuleMutationKeys = exports.emailsModuleMutationKeys = exports.denormalizedTableFieldMutationKeys = exports.defaultIdsModuleMutationKeys = exports.cryptoAuthModuleMutationKeys = exports.cryptoAddressesModuleMutationKeys = exports.connectedAccountsModuleMutationKeys = exports.appMutationKeys = exports.siteMutationKeys = exports.apiMutationKeys = exports.triggerFunctionMutationKeys = exports.siteThemeMutationKeys = exports.siteModuleMutationKeys = exports.siteMetadatumMutationKeys = exports.domainMutationKeys = exports.apiModuleMutationKeys = exports.apiSchemaMutationKeys = exports.defaultPrivilegeMutationKeys = exports.schemaGrantMutationKeys = exports.relationProvisionMutationKeys = exports.secureTableProvisionMutationKeys = exports.tableTemplateModuleMutationKeys = 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.
|
|
9
|
-
exports.
|
|
10
|
-
exports.mutationKeys = exports.customMutationKeys = exports.hierarchyModuleMutationKeys = exports.
|
|
8
|
+
exports.limitsModuleMutationKeys = exports.levelsModuleMutationKeys = exports.invitesModuleMutationKeys = exports.fieldModuleMutationKeys = exports.encryptedSecretsModuleMutationKeys = exports.emailsModuleMutationKeys = exports.denormalizedTableFieldMutationKeys = exports.defaultIdsModuleMutationKeys = exports.cryptoAuthModuleMutationKeys = exports.cryptoAddressesModuleMutationKeys = exports.connectedAccountsModuleMutationKeys = exports.appMutationKeys = exports.siteMutationKeys = exports.apiMutationKeys = exports.triggerFunctionMutationKeys = exports.siteThemeMutationKeys = exports.siteModuleMutationKeys = exports.siteMetadatumMutationKeys = exports.domainMutationKeys = exports.apiModuleMutationKeys = exports.apiSchemaMutationKeys = exports.defaultPrivilegeMutationKeys = exports.schemaGrantMutationKeys = exports.relationProvisionMutationKeys = exports.secureTableProvisionMutationKeys = exports.tableTemplateModuleMutationKeys = 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.getAllRecordMutationKeys = exports.orgGetSubordinatesRecordMutationKeys = exports.orgGetManagersRecordMutationKeys = void 0;
|
|
9
|
+
exports.userMutationKeys = exports.emailMutationKeys = exports.sqlMigrationMutationKeys = exports.appLevelMutationKeys = exports.auditLogMutationKeys = exports.orgMembershipDefaultMutationKeys = exports.rlsModuleMutationKeys = exports.appMembershipDefaultMutationKeys = exports.commitMutationKeys = exports.membershipTypeMutationKeys = exports.nodeTypeRegistryMutationKeys = exports.connectedAccountMutationKeys = exports.orgLimitDefaultMutationKeys = exports.appLimitDefaultMutationKeys = exports.phoneNumberMutationKeys = exports.orgPermissionDefaultMutationKeys = exports.roleTypeMutationKeys = exports.cryptoAddressMutationKeys = exports.appPermissionDefaultMutationKeys = exports.storeMutationKeys = exports.refMutationKeys = exports.orgClaimedInviteMutationKeys = exports.orgInviteMutationKeys = exports.claimedInviteMutationKeys = exports.inviteMutationKeys = exports.appAchievementMutationKeys = exports.appStepMutationKeys = exports.orgLimitMutationKeys = exports.appLimitMutationKeys = exports.orgChartEdgeGrantMutationKeys = exports.orgChartEdgeMutationKeys = exports.orgGrantMutationKeys = exports.orgOwnerGrantMutationKeys = exports.orgAdminGrantMutationKeys = exports.orgMemberMutationKeys = exports.orgMembershipMutationKeys = exports.appGrantMutationKeys = exports.appOwnerGrantMutationKeys = exports.appAdminGrantMutationKeys = exports.databaseProvisionModuleMutationKeys = exports.uuidModuleMutationKeys = exports.usersModuleMutationKeys = exports.userAuthModuleMutationKeys = exports.sessionsModuleMutationKeys = exports.secretsModuleMutationKeys = exports.profilesModuleMutationKeys = exports.phoneNumbersModuleMutationKeys = exports.permissionsModuleMutationKeys = exports.membershipsModuleMutationKeys = exports.membershipTypesModuleMutationKeys = void 0;
|
|
10
|
+
exports.mutationKeys = exports.customMutationKeys = exports.hierarchyModuleMutationKeys = exports.appMembershipMutationKeys = exports.astMigrationMutationKeys = void 0;
|
|
11
11
|
// ============================================================================
|
|
12
12
|
// Mutation keys for tracking in-flight mutations
|
|
13
13
|
//
|
|
@@ -41,6 +41,12 @@ exports.getAllRecordMutationKeys = {
|
|
|
41
41
|
/** Update getAllRecord mutation key */ update: (id) => ['mutation', 'getallrecord', 'update', id],
|
|
42
42
|
/** Delete getAllRecord mutation key */ delete: (id) => ['mutation', 'getallrecord', 'delete', id],
|
|
43
43
|
};
|
|
44
|
+
exports.objectMutationKeys = {
|
|
45
|
+
/** All object mutation keys */ all: ['mutation', 'object'],
|
|
46
|
+
/** Create object mutation key */ create: () => ['mutation', 'object', 'create'],
|
|
47
|
+
/** Update object mutation key */ update: (id) => ['mutation', 'object', 'update', id],
|
|
48
|
+
/** Delete object mutation key */ delete: (id) => ['mutation', 'object', 'delete', id],
|
|
49
|
+
};
|
|
44
50
|
exports.appPermissionMutationKeys = {
|
|
45
51
|
/** All appPermission mutation keys */ all: ['mutation', 'apppermission'],
|
|
46
52
|
/** Create appPermission mutation key */ create: () => ['mutation', 'apppermission', 'create'],
|
|
@@ -53,12 +59,6 @@ exports.orgPermissionMutationKeys = {
|
|
|
53
59
|
/** Update orgPermission mutation key */ update: (id) => ['mutation', 'orgpermission', 'update', id],
|
|
54
60
|
/** Delete orgPermission mutation key */ delete: (id) => ['mutation', 'orgpermission', 'delete', id],
|
|
55
61
|
};
|
|
56
|
-
exports.objectMutationKeys = {
|
|
57
|
-
/** All object mutation keys */ all: ['mutation', 'object'],
|
|
58
|
-
/** Create object mutation key */ create: () => ['mutation', 'object', 'create'],
|
|
59
|
-
/** Update object mutation key */ update: (id) => ['mutation', 'object', 'update', id],
|
|
60
|
-
/** Delete object mutation key */ delete: (id) => ['mutation', 'object', 'delete', id],
|
|
61
|
-
};
|
|
62
62
|
exports.appLevelRequirementMutationKeys = {
|
|
63
63
|
/** All appLevelRequirement mutation keys */ all: ['mutation', 'applevelrequirement'],
|
|
64
64
|
/** Create appLevelRequirement mutation key */ create: () => ['mutation', 'applevelrequirement', 'create'],
|
|
@@ -587,6 +587,12 @@ exports.membershipTypeMutationKeys = {
|
|
|
587
587
|
/** Update membershipType mutation key */ update: (id) => ['mutation', 'membershiptype', 'update', id],
|
|
588
588
|
/** Delete membershipType mutation key */ delete: (id) => ['mutation', 'membershiptype', 'delete', id],
|
|
589
589
|
};
|
|
590
|
+
exports.commitMutationKeys = {
|
|
591
|
+
/** All commit mutation keys */ all: ['mutation', 'commit'],
|
|
592
|
+
/** Create commit mutation key */ create: () => ['mutation', 'commit', 'create'],
|
|
593
|
+
/** Update commit mutation key */ update: (id) => ['mutation', 'commit', 'update', id],
|
|
594
|
+
/** Delete commit mutation key */ delete: (id) => ['mutation', 'commit', 'delete', id],
|
|
595
|
+
};
|
|
590
596
|
exports.appMembershipDefaultMutationKeys = {
|
|
591
597
|
/** All appMembershipDefault mutation keys */ all: ['mutation', 'appmembershipdefault'],
|
|
592
598
|
/** Create appMembershipDefault mutation key */ create: () => ['mutation', 'appmembershipdefault', 'create'],
|
|
@@ -599,12 +605,6 @@ exports.rlsModuleMutationKeys = {
|
|
|
599
605
|
/** Update rlsModule mutation key */ update: (id) => ['mutation', 'rlsmodule', 'update', id],
|
|
600
606
|
/** Delete rlsModule mutation key */ delete: (id) => ['mutation', 'rlsmodule', 'delete', id],
|
|
601
607
|
};
|
|
602
|
-
exports.commitMutationKeys = {
|
|
603
|
-
/** All commit mutation keys */ all: ['mutation', 'commit'],
|
|
604
|
-
/** Create commit mutation key */ create: () => ['mutation', 'commit', 'create'],
|
|
605
|
-
/** Update commit mutation key */ update: (id) => ['mutation', 'commit', 'update', id],
|
|
606
|
-
/** Delete commit mutation key */ delete: (id) => ['mutation', 'commit', 'delete', id],
|
|
607
|
-
};
|
|
608
608
|
exports.orgMembershipDefaultMutationKeys = {
|
|
609
609
|
/** All orgMembershipDefault mutation keys */ all: ['mutation', 'orgmembershipdefault'],
|
|
610
610
|
/** Create orgMembershipDefault mutation key */ create: () => ['mutation', 'orgmembershipdefault', 'create'],
|
|
@@ -635,6 +635,12 @@ exports.emailMutationKeys = {
|
|
|
635
635
|
/** Update email mutation key */ update: (id) => ['mutation', 'email', 'update', id],
|
|
636
636
|
/** Delete email mutation key */ delete: (id) => ['mutation', 'email', 'delete', id],
|
|
637
637
|
};
|
|
638
|
+
exports.userMutationKeys = {
|
|
639
|
+
/** All user mutation keys */ all: ['mutation', 'user'],
|
|
640
|
+
/** Create user mutation key */ create: () => ['mutation', 'user', 'create'],
|
|
641
|
+
/** Update user mutation key */ update: (id) => ['mutation', 'user', 'update', id],
|
|
642
|
+
/** Delete user mutation key */ delete: (id) => ['mutation', 'user', 'delete', id],
|
|
643
|
+
};
|
|
638
644
|
exports.astMigrationMutationKeys = {
|
|
639
645
|
/** All astMigration mutation keys */ all: ['mutation', 'astmigration'],
|
|
640
646
|
/** Create astMigration mutation key */ create: () => ['mutation', 'astmigration', 'create'],
|
|
@@ -647,12 +653,6 @@ exports.appMembershipMutationKeys = {
|
|
|
647
653
|
/** Update appMembership mutation key */ update: (id) => ['mutation', 'appmembership', 'update', id],
|
|
648
654
|
/** Delete appMembership mutation key */ delete: (id) => ['mutation', 'appmembership', 'delete', id],
|
|
649
655
|
};
|
|
650
|
-
exports.userMutationKeys = {
|
|
651
|
-
/** All user mutation keys */ all: ['mutation', 'user'],
|
|
652
|
-
/** Create user mutation key */ create: () => ['mutation', 'user', 'create'],
|
|
653
|
-
/** Update user mutation key */ update: (id) => ['mutation', 'user', 'update', id],
|
|
654
|
-
/** Delete user mutation key */ delete: (id) => ['mutation', 'user', 'delete', id],
|
|
655
|
-
};
|
|
656
656
|
exports.hierarchyModuleMutationKeys = {
|
|
657
657
|
/** All hierarchyModule mutation keys */ all: ['mutation', 'hierarchymodule'],
|
|
658
658
|
/** Create hierarchyModule mutation key */ create: () => ['mutation', 'hierarchymodule', 'create'],
|
|
@@ -693,15 +693,18 @@ exports.customMutationKeys = {
|
|
|
693
693
|
/** Mutation key for verifyEmail */ verifyEmail: (identifier) => identifier
|
|
694
694
|
? ['mutation', 'verifyEmail', identifier]
|
|
695
695
|
: ['mutation', 'verifyEmail'],
|
|
696
|
+
/** Mutation key for removeNodeAtPath */ removeNodeAtPath: (identifier) => identifier
|
|
697
|
+
? ['mutation', 'removeNodeAtPath', identifier]
|
|
698
|
+
: ['mutation', 'removeNodeAtPath'],
|
|
696
699
|
/** Mutation key for resetPassword */ resetPassword: (identifier) => identifier
|
|
697
700
|
? ['mutation', 'resetPassword', identifier]
|
|
698
701
|
: ['mutation', 'resetPassword'],
|
|
699
702
|
/** Mutation key for bootstrapUser */ bootstrapUser: (identifier) => identifier
|
|
700
703
|
? ['mutation', 'bootstrapUser', identifier]
|
|
701
704
|
: ['mutation', 'bootstrapUser'],
|
|
702
|
-
/** Mutation key for
|
|
703
|
-
? ['mutation', '
|
|
704
|
-
: ['mutation', '
|
|
705
|
+
/** Mutation key for setFieldOrder */ setFieldOrder: (identifier) => identifier
|
|
706
|
+
? ['mutation', 'setFieldOrder', identifier]
|
|
707
|
+
: ['mutation', 'setFieldOrder'],
|
|
705
708
|
/** Mutation key for setDataAtPath */ setDataAtPath: (identifier) => identifier
|
|
706
709
|
? ['mutation', 'setDataAtPath', identifier]
|
|
707
710
|
: ['mutation', 'setDataAtPath'],
|
|
@@ -711,6 +714,18 @@ exports.customMutationKeys = {
|
|
|
711
714
|
/** Mutation key for provisionDatabaseWithUser */ provisionDatabaseWithUser: (identifier) => identifier
|
|
712
715
|
? ['mutation', 'provisionDatabaseWithUser', identifier]
|
|
713
716
|
: ['mutation', 'provisionDatabaseWithUser'],
|
|
717
|
+
/** Mutation key for insertNodeAtPath */ insertNodeAtPath: (identifier) => identifier
|
|
718
|
+
? ['mutation', 'insertNodeAtPath', identifier]
|
|
719
|
+
: ['mutation', 'insertNodeAtPath'],
|
|
720
|
+
/** Mutation key for updateNodeAtPath */ updateNodeAtPath: (identifier) => identifier
|
|
721
|
+
? ['mutation', 'updateNodeAtPath', identifier]
|
|
722
|
+
: ['mutation', 'updateNodeAtPath'],
|
|
723
|
+
/** Mutation key for setAndCommit */ setAndCommit: (identifier) => identifier
|
|
724
|
+
? ['mutation', 'setAndCommit', identifier]
|
|
725
|
+
: ['mutation', 'setAndCommit'],
|
|
726
|
+
/** Mutation key for applyRls */ applyRls: (identifier) => identifier
|
|
727
|
+
? ['mutation', 'applyRls', identifier]
|
|
728
|
+
: ['mutation', 'applyRls'],
|
|
714
729
|
/** Mutation key for signInOneTimeToken */ signInOneTimeToken: (identifier) => identifier
|
|
715
730
|
? ['mutation', 'signInOneTimeToken', identifier]
|
|
716
731
|
: ['mutation', 'signInOneTimeToken'],
|
|
@@ -722,24 +737,9 @@ exports.customMutationKeys = {
|
|
|
722
737
|
: ['mutation', 'extendTokenExpires'],
|
|
723
738
|
/** Mutation key for signIn */ signIn: (identifier) => identifier ? ['mutation', 'signIn', identifier] : ['mutation', 'signIn'],
|
|
724
739
|
/** Mutation key for signUp */ signUp: (identifier) => identifier ? ['mutation', 'signUp', identifier] : ['mutation', 'signUp'],
|
|
725
|
-
/** Mutation key for setFieldOrder */ setFieldOrder: (identifier) => identifier
|
|
726
|
-
? ['mutation', 'setFieldOrder', identifier]
|
|
727
|
-
: ['mutation', 'setFieldOrder'],
|
|
728
740
|
/** Mutation key for oneTimeToken */ oneTimeToken: (identifier) => identifier
|
|
729
741
|
? ['mutation', 'oneTimeToken', identifier]
|
|
730
742
|
: ['mutation', 'oneTimeToken'],
|
|
731
|
-
/** Mutation key for insertNodeAtPath */ insertNodeAtPath: (identifier) => identifier
|
|
732
|
-
? ['mutation', 'insertNodeAtPath', identifier]
|
|
733
|
-
: ['mutation', 'insertNodeAtPath'],
|
|
734
|
-
/** Mutation key for updateNodeAtPath */ updateNodeAtPath: (identifier) => identifier
|
|
735
|
-
? ['mutation', 'updateNodeAtPath', identifier]
|
|
736
|
-
: ['mutation', 'updateNodeAtPath'],
|
|
737
|
-
/** Mutation key for setAndCommit */ setAndCommit: (identifier) => identifier
|
|
738
|
-
? ['mutation', 'setAndCommit', identifier]
|
|
739
|
-
: ['mutation', 'setAndCommit'],
|
|
740
|
-
/** Mutation key for applyRls */ applyRls: (identifier) => identifier
|
|
741
|
-
? ['mutation', 'applyRls', identifier]
|
|
742
|
-
: ['mutation', 'applyRls'],
|
|
743
743
|
/** Mutation key for forgotPassword */ forgotPassword: (identifier) => identifier
|
|
744
744
|
? ['mutation', 'forgotPassword', identifier]
|
|
745
745
|
: ['mutation', 'forgotPassword'],
|
|
@@ -779,9 +779,9 @@ exports.mutationKeys = {
|
|
|
779
779
|
orgGetManagersRecord: exports.orgGetManagersRecordMutationKeys,
|
|
780
780
|
orgGetSubordinatesRecord: exports.orgGetSubordinatesRecordMutationKeys,
|
|
781
781
|
getAllRecord: exports.getAllRecordMutationKeys,
|
|
782
|
+
object: exports.objectMutationKeys,
|
|
782
783
|
appPermission: exports.appPermissionMutationKeys,
|
|
783
784
|
orgPermission: exports.orgPermissionMutationKeys,
|
|
784
|
-
object: exports.objectMutationKeys,
|
|
785
785
|
appLevelRequirement: exports.appLevelRequirementMutationKeys,
|
|
786
786
|
database: exports.databaseMutationKeys,
|
|
787
787
|
schema: exports.schemaMutationKeys,
|
|
@@ -867,17 +867,17 @@ exports.mutationKeys = {
|
|
|
867
867
|
connectedAccount: exports.connectedAccountMutationKeys,
|
|
868
868
|
nodeTypeRegistry: exports.nodeTypeRegistryMutationKeys,
|
|
869
869
|
membershipType: exports.membershipTypeMutationKeys,
|
|
870
|
+
commit: exports.commitMutationKeys,
|
|
870
871
|
appMembershipDefault: exports.appMembershipDefaultMutationKeys,
|
|
871
872
|
rlsModule: exports.rlsModuleMutationKeys,
|
|
872
|
-
commit: exports.commitMutationKeys,
|
|
873
873
|
orgMembershipDefault: exports.orgMembershipDefaultMutationKeys,
|
|
874
874
|
auditLog: exports.auditLogMutationKeys,
|
|
875
875
|
appLevel: exports.appLevelMutationKeys,
|
|
876
876
|
sqlMigration: exports.sqlMigrationMutationKeys,
|
|
877
877
|
email: exports.emailMutationKeys,
|
|
878
|
+
user: exports.userMutationKeys,
|
|
878
879
|
astMigration: exports.astMigrationMutationKeys,
|
|
879
880
|
appMembership: exports.appMembershipMutationKeys,
|
|
880
|
-
user: exports.userMutationKeys,
|
|
881
881
|
hierarchyModule: exports.hierarchyModuleMutationKeys,
|
|
882
882
|
custom: exports.customMutationKeys,
|
|
883
883
|
};
|
|
@@ -6,15 +6,15 @@
|
|
|
6
6
|
export * from './useCreateOrgGetManagersRecordMutation';
|
|
7
7
|
export * from './useCreateOrgGetSubordinatesRecordMutation';
|
|
8
8
|
export * from './useCreateGetAllRecordMutation';
|
|
9
|
+
export * from './useCreateObjectMutation';
|
|
10
|
+
export * from './useUpdateObjectMutation';
|
|
11
|
+
export * from './useDeleteObjectMutation';
|
|
9
12
|
export * from './useCreateAppPermissionMutation';
|
|
10
13
|
export * from './useUpdateAppPermissionMutation';
|
|
11
14
|
export * from './useDeleteAppPermissionMutation';
|
|
12
15
|
export * from './useCreateOrgPermissionMutation';
|
|
13
16
|
export * from './useUpdateOrgPermissionMutation';
|
|
14
17
|
export * from './useDeleteOrgPermissionMutation';
|
|
15
|
-
export * from './useCreateObjectMutation';
|
|
16
|
-
export * from './useUpdateObjectMutation';
|
|
17
|
-
export * from './useDeleteObjectMutation';
|
|
18
18
|
export * from './useCreateAppLevelRequirementMutation';
|
|
19
19
|
export * from './useUpdateAppLevelRequirementMutation';
|
|
20
20
|
export * from './useDeleteAppLevelRequirementMutation';
|
|
@@ -270,15 +270,15 @@ export * from './useDeleteNodeTypeRegistryMutation';
|
|
|
270
270
|
export * from './useCreateMembershipTypeMutation';
|
|
271
271
|
export * from './useUpdateMembershipTypeMutation';
|
|
272
272
|
export * from './useDeleteMembershipTypeMutation';
|
|
273
|
+
export * from './useCreateCommitMutation';
|
|
274
|
+
export * from './useUpdateCommitMutation';
|
|
275
|
+
export * from './useDeleteCommitMutation';
|
|
273
276
|
export * from './useCreateAppMembershipDefaultMutation';
|
|
274
277
|
export * from './useUpdateAppMembershipDefaultMutation';
|
|
275
278
|
export * from './useDeleteAppMembershipDefaultMutation';
|
|
276
279
|
export * from './useCreateRlsModuleMutation';
|
|
277
280
|
export * from './useUpdateRlsModuleMutation';
|
|
278
281
|
export * from './useDeleteRlsModuleMutation';
|
|
279
|
-
export * from './useCreateCommitMutation';
|
|
280
|
-
export * from './useUpdateCommitMutation';
|
|
281
|
-
export * from './useDeleteCommitMutation';
|
|
282
282
|
export * from './useCreateOrgMembershipDefaultMutation';
|
|
283
283
|
export * from './useUpdateOrgMembershipDefaultMutation';
|
|
284
284
|
export * from './useDeleteOrgMembershipDefaultMutation';
|
|
@@ -292,13 +292,13 @@ export * from './useCreateSqlMigrationMutation';
|
|
|
292
292
|
export * from './useCreateEmailMutation';
|
|
293
293
|
export * from './useUpdateEmailMutation';
|
|
294
294
|
export * from './useDeleteEmailMutation';
|
|
295
|
+
export * from './useCreateUserMutation';
|
|
296
|
+
export * from './useUpdateUserMutation';
|
|
297
|
+
export * from './useDeleteUserMutation';
|
|
295
298
|
export * from './useCreateAstMigrationMutation';
|
|
296
299
|
export * from './useCreateAppMembershipMutation';
|
|
297
300
|
export * from './useUpdateAppMembershipMutation';
|
|
298
301
|
export * from './useDeleteAppMembershipMutation';
|
|
299
|
-
export * from './useCreateUserMutation';
|
|
300
|
-
export * from './useUpdateUserMutation';
|
|
301
|
-
export * from './useDeleteUserMutation';
|
|
302
302
|
export * from './useCreateHierarchyModuleMutation';
|
|
303
303
|
export * from './useUpdateHierarchyModuleMutation';
|
|
304
304
|
export * from './useDeleteHierarchyModuleMutation';
|
|
@@ -312,23 +312,23 @@ export * from './useInitEmptyRepoMutation';
|
|
|
312
312
|
export * from './useConfirmDeleteAccountMutation';
|
|
313
313
|
export * from './useSetPasswordMutation';
|
|
314
314
|
export * from './useVerifyEmailMutation';
|
|
315
|
+
export * from './useRemoveNodeAtPathMutation';
|
|
315
316
|
export * from './useResetPasswordMutation';
|
|
316
317
|
export * from './useBootstrapUserMutation';
|
|
317
|
-
export * from './
|
|
318
|
+
export * from './useSetFieldOrderMutation';
|
|
318
319
|
export * from './useSetDataAtPathMutation';
|
|
319
320
|
export * from './useSetPropsAndCommitMutation';
|
|
320
321
|
export * from './useProvisionDatabaseWithUserMutation';
|
|
322
|
+
export * from './useInsertNodeAtPathMutation';
|
|
323
|
+
export * from './useUpdateNodeAtPathMutation';
|
|
324
|
+
export * from './useSetAndCommitMutation';
|
|
325
|
+
export * from './useApplyRlsMutation';
|
|
321
326
|
export * from './useSignInOneTimeTokenMutation';
|
|
322
327
|
export * from './useCreateUserDatabaseMutation';
|
|
323
328
|
export * from './useExtendTokenExpiresMutation';
|
|
324
329
|
export * from './useSignInMutation';
|
|
325
330
|
export * from './useSignUpMutation';
|
|
326
|
-
export * from './useSetFieldOrderMutation';
|
|
327
331
|
export * from './useOneTimeTokenMutation';
|
|
328
|
-
export * from './useInsertNodeAtPathMutation';
|
|
329
|
-
export * from './useUpdateNodeAtPathMutation';
|
|
330
|
-
export * from './useSetAndCommitMutation';
|
|
331
|
-
export * from './useApplyRlsMutation';
|
|
332
332
|
export * from './useForgotPasswordMutation';
|
|
333
333
|
export * from './useSendVerificationEmailMutation';
|
|
334
334
|
export * from './useVerifyPasswordMutation';
|
|
@@ -22,15 +22,15 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
22
22
|
__exportStar(require("./useCreateOrgGetManagersRecordMutation"), exports);
|
|
23
23
|
__exportStar(require("./useCreateOrgGetSubordinatesRecordMutation"), exports);
|
|
24
24
|
__exportStar(require("./useCreateGetAllRecordMutation"), exports);
|
|
25
|
+
__exportStar(require("./useCreateObjectMutation"), exports);
|
|
26
|
+
__exportStar(require("./useUpdateObjectMutation"), exports);
|
|
27
|
+
__exportStar(require("./useDeleteObjectMutation"), exports);
|
|
25
28
|
__exportStar(require("./useCreateAppPermissionMutation"), exports);
|
|
26
29
|
__exportStar(require("./useUpdateAppPermissionMutation"), exports);
|
|
27
30
|
__exportStar(require("./useDeleteAppPermissionMutation"), exports);
|
|
28
31
|
__exportStar(require("./useCreateOrgPermissionMutation"), exports);
|
|
29
32
|
__exportStar(require("./useUpdateOrgPermissionMutation"), exports);
|
|
30
33
|
__exportStar(require("./useDeleteOrgPermissionMutation"), exports);
|
|
31
|
-
__exportStar(require("./useCreateObjectMutation"), exports);
|
|
32
|
-
__exportStar(require("./useUpdateObjectMutation"), exports);
|
|
33
|
-
__exportStar(require("./useDeleteObjectMutation"), exports);
|
|
34
34
|
__exportStar(require("./useCreateAppLevelRequirementMutation"), exports);
|
|
35
35
|
__exportStar(require("./useUpdateAppLevelRequirementMutation"), exports);
|
|
36
36
|
__exportStar(require("./useDeleteAppLevelRequirementMutation"), exports);
|
|
@@ -286,15 +286,15 @@ __exportStar(require("./useDeleteNodeTypeRegistryMutation"), exports);
|
|
|
286
286
|
__exportStar(require("./useCreateMembershipTypeMutation"), exports);
|
|
287
287
|
__exportStar(require("./useUpdateMembershipTypeMutation"), exports);
|
|
288
288
|
__exportStar(require("./useDeleteMembershipTypeMutation"), exports);
|
|
289
|
+
__exportStar(require("./useCreateCommitMutation"), exports);
|
|
290
|
+
__exportStar(require("./useUpdateCommitMutation"), exports);
|
|
291
|
+
__exportStar(require("./useDeleteCommitMutation"), exports);
|
|
289
292
|
__exportStar(require("./useCreateAppMembershipDefaultMutation"), exports);
|
|
290
293
|
__exportStar(require("./useUpdateAppMembershipDefaultMutation"), exports);
|
|
291
294
|
__exportStar(require("./useDeleteAppMembershipDefaultMutation"), exports);
|
|
292
295
|
__exportStar(require("./useCreateRlsModuleMutation"), exports);
|
|
293
296
|
__exportStar(require("./useUpdateRlsModuleMutation"), exports);
|
|
294
297
|
__exportStar(require("./useDeleteRlsModuleMutation"), exports);
|
|
295
|
-
__exportStar(require("./useCreateCommitMutation"), exports);
|
|
296
|
-
__exportStar(require("./useUpdateCommitMutation"), exports);
|
|
297
|
-
__exportStar(require("./useDeleteCommitMutation"), exports);
|
|
298
298
|
__exportStar(require("./useCreateOrgMembershipDefaultMutation"), exports);
|
|
299
299
|
__exportStar(require("./useUpdateOrgMembershipDefaultMutation"), exports);
|
|
300
300
|
__exportStar(require("./useDeleteOrgMembershipDefaultMutation"), exports);
|
|
@@ -308,13 +308,13 @@ __exportStar(require("./useCreateSqlMigrationMutation"), exports);
|
|
|
308
308
|
__exportStar(require("./useCreateEmailMutation"), exports);
|
|
309
309
|
__exportStar(require("./useUpdateEmailMutation"), exports);
|
|
310
310
|
__exportStar(require("./useDeleteEmailMutation"), exports);
|
|
311
|
+
__exportStar(require("./useCreateUserMutation"), exports);
|
|
312
|
+
__exportStar(require("./useUpdateUserMutation"), exports);
|
|
313
|
+
__exportStar(require("./useDeleteUserMutation"), exports);
|
|
311
314
|
__exportStar(require("./useCreateAstMigrationMutation"), exports);
|
|
312
315
|
__exportStar(require("./useCreateAppMembershipMutation"), exports);
|
|
313
316
|
__exportStar(require("./useUpdateAppMembershipMutation"), exports);
|
|
314
317
|
__exportStar(require("./useDeleteAppMembershipMutation"), exports);
|
|
315
|
-
__exportStar(require("./useCreateUserMutation"), exports);
|
|
316
|
-
__exportStar(require("./useUpdateUserMutation"), exports);
|
|
317
|
-
__exportStar(require("./useDeleteUserMutation"), exports);
|
|
318
318
|
__exportStar(require("./useCreateHierarchyModuleMutation"), exports);
|
|
319
319
|
__exportStar(require("./useUpdateHierarchyModuleMutation"), exports);
|
|
320
320
|
__exportStar(require("./useDeleteHierarchyModuleMutation"), exports);
|
|
@@ -328,23 +328,23 @@ __exportStar(require("./useInitEmptyRepoMutation"), exports);
|
|
|
328
328
|
__exportStar(require("./useConfirmDeleteAccountMutation"), exports);
|
|
329
329
|
__exportStar(require("./useSetPasswordMutation"), exports);
|
|
330
330
|
__exportStar(require("./useVerifyEmailMutation"), exports);
|
|
331
|
+
__exportStar(require("./useRemoveNodeAtPathMutation"), exports);
|
|
331
332
|
__exportStar(require("./useResetPasswordMutation"), exports);
|
|
332
333
|
__exportStar(require("./useBootstrapUserMutation"), exports);
|
|
333
|
-
__exportStar(require("./
|
|
334
|
+
__exportStar(require("./useSetFieldOrderMutation"), exports);
|
|
334
335
|
__exportStar(require("./useSetDataAtPathMutation"), exports);
|
|
335
336
|
__exportStar(require("./useSetPropsAndCommitMutation"), exports);
|
|
336
337
|
__exportStar(require("./useProvisionDatabaseWithUserMutation"), exports);
|
|
338
|
+
__exportStar(require("./useInsertNodeAtPathMutation"), exports);
|
|
339
|
+
__exportStar(require("./useUpdateNodeAtPathMutation"), exports);
|
|
340
|
+
__exportStar(require("./useSetAndCommitMutation"), exports);
|
|
341
|
+
__exportStar(require("./useApplyRlsMutation"), exports);
|
|
337
342
|
__exportStar(require("./useSignInOneTimeTokenMutation"), exports);
|
|
338
343
|
__exportStar(require("./useCreateUserDatabaseMutation"), exports);
|
|
339
344
|
__exportStar(require("./useExtendTokenExpiresMutation"), exports);
|
|
340
345
|
__exportStar(require("./useSignInMutation"), exports);
|
|
341
346
|
__exportStar(require("./useSignUpMutation"), exports);
|
|
342
|
-
__exportStar(require("./useSetFieldOrderMutation"), exports);
|
|
343
347
|
__exportStar(require("./useOneTimeTokenMutation"), exports);
|
|
344
|
-
__exportStar(require("./useInsertNodeAtPathMutation"), exports);
|
|
345
|
-
__exportStar(require("./useUpdateNodeAtPathMutation"), exports);
|
|
346
|
-
__exportStar(require("./useSetAndCommitMutation"), exports);
|
|
347
|
-
__exportStar(require("./useApplyRlsMutation"), exports);
|
|
348
348
|
__exportStar(require("./useForgotPasswordMutation"), exports);
|
|
349
349
|
__exportStar(require("./useSendVerificationEmailMutation"), exports);
|
|
350
350
|
__exportStar(require("./useVerifyPasswordMutation"), exports);
|