@constructive-io/react 0.6.4 → 0.6.5
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/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 +2 -2
- 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
|
@@ -68,9 +68,9 @@ export * from './useOrgInviteQuery';
|
|
|
68
68
|
export * from './useAppPermissionsGetPaddedMaskQuery';
|
|
69
69
|
export * from './useOrgPermissionsGetPaddedMaskQuery';
|
|
70
70
|
export * from './useOrgIsManagerOfQuery';
|
|
71
|
-
export * from './useStepsAchievedQuery';
|
|
72
71
|
export * from './useAppPermissionsGetMaskQuery';
|
|
73
72
|
export * from './useOrgPermissionsGetMaskQuery';
|
|
73
|
+
export * from './useStepsAchievedQuery';
|
|
74
74
|
export * from './useAppPermissionsGetMaskByNamesQuery';
|
|
75
75
|
export * from './useOrgPermissionsGetMaskByNamesQuery';
|
|
76
76
|
export * from './useAppPermissionsGetByMaskQuery';
|
|
@@ -84,9 +84,9 @@ __exportStar(require("./useOrgInviteQuery"), exports);
|
|
|
84
84
|
__exportStar(require("./useAppPermissionsGetPaddedMaskQuery"), exports);
|
|
85
85
|
__exportStar(require("./useOrgPermissionsGetPaddedMaskQuery"), exports);
|
|
86
86
|
__exportStar(require("./useOrgIsManagerOfQuery"), exports);
|
|
87
|
-
__exportStar(require("./useStepsAchievedQuery"), exports);
|
|
88
87
|
__exportStar(require("./useAppPermissionsGetMaskQuery"), exports);
|
|
89
88
|
__exportStar(require("./useOrgPermissionsGetMaskQuery"), exports);
|
|
89
|
+
__exportStar(require("./useStepsAchievedQuery"), exports);
|
|
90
90
|
__exportStar(require("./useAppPermissionsGetMaskByNamesQuery"), exports);
|
|
91
91
|
__exportStar(require("./useOrgPermissionsGetMaskByNamesQuery"), exports);
|
|
92
92
|
__exportStar(require("./useAppPermissionsGetByMaskQuery"), exports);
|
|
@@ -231,9 +231,9 @@ export declare const customQueryKeys: {
|
|
|
231
231
|
/** Query key for appPermissionsGetPaddedMask */ readonly appPermissionsGetPaddedMask: (variables?: object) => readonly ["appPermissionsGetPaddedMask", object];
|
|
232
232
|
/** Query key for orgPermissionsGetPaddedMask */ readonly orgPermissionsGetPaddedMask: (variables?: object) => readonly ["orgPermissionsGetPaddedMask", object];
|
|
233
233
|
/** Query key for orgIsManagerOf */ readonly orgIsManagerOf: (variables?: object) => readonly ["orgIsManagerOf", object];
|
|
234
|
-
/** Query key for stepsAchieved */ readonly stepsAchieved: (variables?: object) => readonly ["stepsAchieved", object];
|
|
235
234
|
/** Query key for appPermissionsGetMask */ readonly appPermissionsGetMask: (variables?: object) => readonly ["appPermissionsGetMask", object];
|
|
236
235
|
/** Query key for orgPermissionsGetMask */ readonly orgPermissionsGetMask: (variables?: object) => readonly ["orgPermissionsGetMask", object];
|
|
236
|
+
/** Query key for stepsAchieved */ readonly stepsAchieved: (variables?: object) => readonly ["stepsAchieved", object];
|
|
237
237
|
/** Query key for appPermissionsGetMaskByNames */ readonly appPermissionsGetMaskByNames: (variables?: object) => readonly ["appPermissionsGetMaskByNames", object];
|
|
238
238
|
/** Query key for orgPermissionsGetMaskByNames */ readonly orgPermissionsGetMaskByNames: (variables?: object) => readonly ["orgPermissionsGetMaskByNames", object];
|
|
239
239
|
/** Query key for appPermissionsGetByMask */ readonly appPermissionsGetByMask: (variables?: object) => readonly ["appPermissionsGetByMask", object];
|
|
@@ -491,9 +491,9 @@ export declare const queryKeys: {
|
|
|
491
491
|
/** Query key for appPermissionsGetPaddedMask */ readonly appPermissionsGetPaddedMask: (variables?: object) => readonly ["appPermissionsGetPaddedMask", object];
|
|
492
492
|
/** Query key for orgPermissionsGetPaddedMask */ readonly orgPermissionsGetPaddedMask: (variables?: object) => readonly ["orgPermissionsGetPaddedMask", object];
|
|
493
493
|
/** Query key for orgIsManagerOf */ readonly orgIsManagerOf: (variables?: object) => readonly ["orgIsManagerOf", object];
|
|
494
|
-
/** Query key for stepsAchieved */ readonly stepsAchieved: (variables?: object) => readonly ["stepsAchieved", object];
|
|
495
494
|
/** Query key for appPermissionsGetMask */ readonly appPermissionsGetMask: (variables?: object) => readonly ["appPermissionsGetMask", object];
|
|
496
495
|
/** Query key for orgPermissionsGetMask */ readonly orgPermissionsGetMask: (variables?: object) => readonly ["orgPermissionsGetMask", object];
|
|
496
|
+
/** Query key for stepsAchieved */ readonly stepsAchieved: (variables?: object) => readonly ["stepsAchieved", object];
|
|
497
497
|
/** Query key for appPermissionsGetMaskByNames */ readonly appPermissionsGetMaskByNames: (variables?: object) => readonly ["appPermissionsGetMaskByNames", object];
|
|
498
498
|
/** Query key for orgPermissionsGetMaskByNames */ readonly orgPermissionsGetMaskByNames: (variables?: object) => readonly ["orgPermissionsGetMaskByNames", object];
|
|
499
499
|
/** Query key for appPermissionsGetByMask */ readonly appPermissionsGetByMask: (variables?: object) => readonly ["appPermissionsGetByMask", object];
|
|
@@ -250,9 +250,9 @@ exports.customQueryKeys = {
|
|
|
250
250
|
/** Query key for appPermissionsGetPaddedMask */ appPermissionsGetPaddedMask: (variables) => ['appPermissionsGetPaddedMask', variables],
|
|
251
251
|
/** Query key for orgPermissionsGetPaddedMask */ orgPermissionsGetPaddedMask: (variables) => ['orgPermissionsGetPaddedMask', variables],
|
|
252
252
|
/** Query key for orgIsManagerOf */ orgIsManagerOf: (variables) => ['orgIsManagerOf', variables],
|
|
253
|
-
/** Query key for stepsAchieved */ stepsAchieved: (variables) => ['stepsAchieved', variables],
|
|
254
253
|
/** Query key for appPermissionsGetMask */ appPermissionsGetMask: (variables) => ['appPermissionsGetMask', variables],
|
|
255
254
|
/** Query key for orgPermissionsGetMask */ orgPermissionsGetMask: (variables) => ['orgPermissionsGetMask', variables],
|
|
255
|
+
/** Query key for stepsAchieved */ stepsAchieved: (variables) => ['stepsAchieved', variables],
|
|
256
256
|
/** Query key for appPermissionsGetMaskByNames */ appPermissionsGetMaskByNames: (variables) => ['appPermissionsGetMaskByNames', variables],
|
|
257
257
|
/** Query key for orgPermissionsGetMaskByNames */ orgPermissionsGetMaskByNames: (variables) => ['orgPermissionsGetMaskByNames', variables],
|
|
258
258
|
/** Query key for appPermissionsGetByMask */ appPermissionsGetByMask: (variables) => ['appPermissionsGetByMask', variables],
|
package/admin/orm/index.d.ts
CHANGED
|
@@ -110,11 +110,6 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
110
110
|
}) => import("./query-builder").QueryBuilder<{
|
|
111
111
|
orgIsManagerOf: boolean | null;
|
|
112
112
|
}>;
|
|
113
|
-
stepsAchieved: (args: import("./query").StepsAchievedVariables, options?: {
|
|
114
|
-
select?: Record<string, unknown>;
|
|
115
|
-
}) => import("./query-builder").QueryBuilder<{
|
|
116
|
-
stepsAchieved: boolean | null;
|
|
117
|
-
}>;
|
|
118
113
|
appPermissionsGetMask: (args: import("./query").AppPermissionsGetMaskVariables, options?: {
|
|
119
114
|
select?: Record<string, unknown>;
|
|
120
115
|
}) => import("./query-builder").QueryBuilder<{
|
|
@@ -125,6 +120,11 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
125
120
|
}) => import("./query-builder").QueryBuilder<{
|
|
126
121
|
orgPermissionsGetMask: string | null;
|
|
127
122
|
}>;
|
|
123
|
+
stepsAchieved: (args: import("./query").StepsAchievedVariables, options?: {
|
|
124
|
+
select?: Record<string, unknown>;
|
|
125
|
+
}) => import("./query-builder").QueryBuilder<{
|
|
126
|
+
stepsAchieved: boolean | null;
|
|
127
|
+
}>;
|
|
128
128
|
appPermissionsGetMaskByNames: (args: import("./query").AppPermissionsGetMaskByNamesVariables, options?: {
|
|
129
129
|
select?: Record<string, unknown>;
|
|
130
130
|
}) => import("./query-builder").QueryBuilder<{
|
|
@@ -18,16 +18,16 @@ export interface OrgIsManagerOfVariables {
|
|
|
18
18
|
pUserId?: string;
|
|
19
19
|
pMaxDepth?: number;
|
|
20
20
|
}
|
|
21
|
-
export interface StepsAchievedVariables {
|
|
22
|
-
vlevel?: string;
|
|
23
|
-
vroleId?: string;
|
|
24
|
-
}
|
|
25
21
|
export interface AppPermissionsGetMaskVariables {
|
|
26
22
|
ids?: string[];
|
|
27
23
|
}
|
|
28
24
|
export interface OrgPermissionsGetMaskVariables {
|
|
29
25
|
ids?: string[];
|
|
30
26
|
}
|
|
27
|
+
export interface StepsAchievedVariables {
|
|
28
|
+
vlevel?: string;
|
|
29
|
+
vroleId?: string;
|
|
30
|
+
}
|
|
31
31
|
export interface AppPermissionsGetMaskByNamesVariables {
|
|
32
32
|
names?: string[];
|
|
33
33
|
}
|
|
@@ -87,11 +87,6 @@ export declare function createQueryOperations(client: OrmClient): {
|
|
|
87
87
|
}) => QueryBuilder<{
|
|
88
88
|
orgIsManagerOf: boolean | null;
|
|
89
89
|
}>;
|
|
90
|
-
stepsAchieved: (args: StepsAchievedVariables, options?: {
|
|
91
|
-
select?: Record<string, unknown>;
|
|
92
|
-
}) => QueryBuilder<{
|
|
93
|
-
stepsAchieved: boolean | null;
|
|
94
|
-
}>;
|
|
95
90
|
appPermissionsGetMask: (args: AppPermissionsGetMaskVariables, options?: {
|
|
96
91
|
select?: Record<string, unknown>;
|
|
97
92
|
}) => QueryBuilder<{
|
|
@@ -102,6 +97,11 @@ export declare function createQueryOperations(client: OrmClient): {
|
|
|
102
97
|
}) => QueryBuilder<{
|
|
103
98
|
orgPermissionsGetMask: string | null;
|
|
104
99
|
}>;
|
|
100
|
+
stepsAchieved: (args: StepsAchievedVariables, options?: {
|
|
101
|
+
select?: Record<string, unknown>;
|
|
102
|
+
}) => QueryBuilder<{
|
|
103
|
+
stepsAchieved: boolean | null;
|
|
104
|
+
}>;
|
|
105
105
|
appPermissionsGetMaskByNames: (args: AppPermissionsGetMaskByNamesVariables, options?: {
|
|
106
106
|
select?: Record<string, unknown>;
|
|
107
107
|
}) => QueryBuilder<{
|
package/admin/orm/query/index.js
CHANGED
|
@@ -53,22 +53,6 @@ function createQueryOperations(client) {
|
|
|
53
53
|
},
|
|
54
54
|
], input_types_1.connectionFieldsMap, undefined),
|
|
55
55
|
}),
|
|
56
|
-
stepsAchieved: (args, options) => new query_builder_1.QueryBuilder({
|
|
57
|
-
client,
|
|
58
|
-
operation: 'query',
|
|
59
|
-
operationName: 'StepsAchieved',
|
|
60
|
-
fieldName: 'stepsAchieved',
|
|
61
|
-
...(0, query_builder_1.buildCustomDocument)('query', 'StepsAchieved', 'stepsAchieved', options?.select, args, [
|
|
62
|
-
{
|
|
63
|
-
name: 'vlevel',
|
|
64
|
-
type: 'String',
|
|
65
|
-
},
|
|
66
|
-
{
|
|
67
|
-
name: 'vroleId',
|
|
68
|
-
type: 'UUID',
|
|
69
|
-
},
|
|
70
|
-
], input_types_1.connectionFieldsMap, undefined),
|
|
71
|
-
}),
|
|
72
56
|
appPermissionsGetMask: (args, options) => new query_builder_1.QueryBuilder({
|
|
73
57
|
client,
|
|
74
58
|
operation: 'query',
|
|
@@ -93,6 +77,22 @@ function createQueryOperations(client) {
|
|
|
93
77
|
},
|
|
94
78
|
], input_types_1.connectionFieldsMap, undefined),
|
|
95
79
|
}),
|
|
80
|
+
stepsAchieved: (args, options) => new query_builder_1.QueryBuilder({
|
|
81
|
+
client,
|
|
82
|
+
operation: 'query',
|
|
83
|
+
operationName: 'StepsAchieved',
|
|
84
|
+
fieldName: 'stepsAchieved',
|
|
85
|
+
...(0, query_builder_1.buildCustomDocument)('query', 'StepsAchieved', 'stepsAchieved', options?.select, args, [
|
|
86
|
+
{
|
|
87
|
+
name: 'vlevel',
|
|
88
|
+
type: 'String',
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
name: 'vroleId',
|
|
92
|
+
type: 'UUID',
|
|
93
|
+
},
|
|
94
|
+
], input_types_1.connectionFieldsMap, undefined),
|
|
95
|
+
}),
|
|
96
96
|
appPermissionsGetMaskByNames: (args, options) => new query_builder_1.QueryBuilder({
|
|
97
97
|
client,
|
|
98
98
|
operation: 'query',
|
package/auth/schema-types.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ export type AuditLogOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC'
|
|
|
20
20
|
/** Methods to use when ordering `Email`. */
|
|
21
21
|
export type EmailOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'EMAIL_ASC' | 'EMAIL_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
22
22
|
/** Methods to use when ordering `User`. */
|
|
23
|
-
export type UserOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'USERNAME_ASC' | 'USERNAME_DESC' | '
|
|
23
|
+
export type UserOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'USERNAME_ASC' | 'USERNAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'SEARCH_TSV_RANK_ASC' | 'SEARCH_TSV_RANK_DESC' | 'DISPLAY_NAME_TRGM_SIMILARITY_ASC' | 'DISPLAY_NAME_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
24
24
|
/** A filter to be used against `CryptoAddress` object types. All fields are combined with a logical ‘and.’ */
|
|
25
25
|
export interface CryptoAddressFilter {
|
|
26
26
|
/** Filter by the object’s `id` field. */
|
|
@@ -657,7 +657,6 @@ export interface UserInput {
|
|
|
657
657
|
username?: string;
|
|
658
658
|
displayName?: string;
|
|
659
659
|
profilePicture?: ConstructiveInternalTypeImage;
|
|
660
|
-
searchTsv?: string;
|
|
661
660
|
type?: number;
|
|
662
661
|
createdAt?: string;
|
|
663
662
|
updatedAt?: string;
|
|
@@ -789,7 +788,6 @@ export interface UserPatch {
|
|
|
789
788
|
username?: string;
|
|
790
789
|
displayName?: string;
|
|
791
790
|
profilePicture?: ConstructiveInternalTypeImage;
|
|
792
|
-
searchTsv?: string;
|
|
793
791
|
type?: number;
|
|
794
792
|
createdAt?: string;
|
|
795
793
|
updatedAt?: string;
|
|
@@ -68,9 +68,9 @@ export * from './useOrgInviteQuery';
|
|
|
68
68
|
export * from './useAppPermissionsGetPaddedMaskQuery';
|
|
69
69
|
export * from './useOrgPermissionsGetPaddedMaskQuery';
|
|
70
70
|
export * from './useOrgIsManagerOfQuery';
|
|
71
|
-
export * from './useStepsAchievedQuery';
|
|
72
71
|
export * from './useAppPermissionsGetMaskQuery';
|
|
73
72
|
export * from './useOrgPermissionsGetMaskQuery';
|
|
73
|
+
export * from './useStepsAchievedQuery';
|
|
74
74
|
export * from './useAppPermissionsGetMaskByNamesQuery';
|
|
75
75
|
export * from './useOrgPermissionsGetMaskByNamesQuery';
|
|
76
76
|
export * from './useAppPermissionsGetByMaskQuery';
|
|
@@ -68,9 +68,9 @@ export * from './useOrgInviteQuery';
|
|
|
68
68
|
export * from './useAppPermissionsGetPaddedMaskQuery';
|
|
69
69
|
export * from './useOrgPermissionsGetPaddedMaskQuery';
|
|
70
70
|
export * from './useOrgIsManagerOfQuery';
|
|
71
|
-
export * from './useStepsAchievedQuery';
|
|
72
71
|
export * from './useAppPermissionsGetMaskQuery';
|
|
73
72
|
export * from './useOrgPermissionsGetMaskQuery';
|
|
73
|
+
export * from './useStepsAchievedQuery';
|
|
74
74
|
export * from './useAppPermissionsGetMaskByNamesQuery';
|
|
75
75
|
export * from './useOrgPermissionsGetMaskByNamesQuery';
|
|
76
76
|
export * from './useAppPermissionsGetByMaskQuery';
|
|
@@ -231,9 +231,9 @@ export declare const customQueryKeys: {
|
|
|
231
231
|
/** Query key for appPermissionsGetPaddedMask */ readonly appPermissionsGetPaddedMask: (variables?: object) => readonly ["appPermissionsGetPaddedMask", object];
|
|
232
232
|
/** Query key for orgPermissionsGetPaddedMask */ readonly orgPermissionsGetPaddedMask: (variables?: object) => readonly ["orgPermissionsGetPaddedMask", object];
|
|
233
233
|
/** Query key for orgIsManagerOf */ readonly orgIsManagerOf: (variables?: object) => readonly ["orgIsManagerOf", object];
|
|
234
|
-
/** Query key for stepsAchieved */ readonly stepsAchieved: (variables?: object) => readonly ["stepsAchieved", object];
|
|
235
234
|
/** Query key for appPermissionsGetMask */ readonly appPermissionsGetMask: (variables?: object) => readonly ["appPermissionsGetMask", object];
|
|
236
235
|
/** Query key for orgPermissionsGetMask */ readonly orgPermissionsGetMask: (variables?: object) => readonly ["orgPermissionsGetMask", object];
|
|
236
|
+
/** Query key for stepsAchieved */ readonly stepsAchieved: (variables?: object) => readonly ["stepsAchieved", object];
|
|
237
237
|
/** Query key for appPermissionsGetMaskByNames */ readonly appPermissionsGetMaskByNames: (variables?: object) => readonly ["appPermissionsGetMaskByNames", object];
|
|
238
238
|
/** Query key for orgPermissionsGetMaskByNames */ readonly orgPermissionsGetMaskByNames: (variables?: object) => readonly ["orgPermissionsGetMaskByNames", object];
|
|
239
239
|
/** Query key for appPermissionsGetByMask */ readonly appPermissionsGetByMask: (variables?: object) => readonly ["appPermissionsGetByMask", object];
|
|
@@ -491,9 +491,9 @@ export declare const queryKeys: {
|
|
|
491
491
|
/** Query key for appPermissionsGetPaddedMask */ readonly appPermissionsGetPaddedMask: (variables?: object) => readonly ["appPermissionsGetPaddedMask", object];
|
|
492
492
|
/** Query key for orgPermissionsGetPaddedMask */ readonly orgPermissionsGetPaddedMask: (variables?: object) => readonly ["orgPermissionsGetPaddedMask", object];
|
|
493
493
|
/** Query key for orgIsManagerOf */ readonly orgIsManagerOf: (variables?: object) => readonly ["orgIsManagerOf", object];
|
|
494
|
-
/** Query key for stepsAchieved */ readonly stepsAchieved: (variables?: object) => readonly ["stepsAchieved", object];
|
|
495
494
|
/** Query key for appPermissionsGetMask */ readonly appPermissionsGetMask: (variables?: object) => readonly ["appPermissionsGetMask", object];
|
|
496
495
|
/** Query key for orgPermissionsGetMask */ readonly orgPermissionsGetMask: (variables?: object) => readonly ["orgPermissionsGetMask", object];
|
|
496
|
+
/** Query key for stepsAchieved */ readonly stepsAchieved: (variables?: object) => readonly ["stepsAchieved", object];
|
|
497
497
|
/** Query key for appPermissionsGetMaskByNames */ readonly appPermissionsGetMaskByNames: (variables?: object) => readonly ["appPermissionsGetMaskByNames", object];
|
|
498
498
|
/** Query key for orgPermissionsGetMaskByNames */ readonly orgPermissionsGetMaskByNames: (variables?: object) => readonly ["orgPermissionsGetMaskByNames", object];
|
|
499
499
|
/** Query key for appPermissionsGetByMask */ readonly appPermissionsGetByMask: (variables?: object) => readonly ["appPermissionsGetByMask", object];
|
|
@@ -247,9 +247,9 @@ export const customQueryKeys = {
|
|
|
247
247
|
/** Query key for appPermissionsGetPaddedMask */ appPermissionsGetPaddedMask: (variables) => ['appPermissionsGetPaddedMask', variables],
|
|
248
248
|
/** Query key for orgPermissionsGetPaddedMask */ orgPermissionsGetPaddedMask: (variables) => ['orgPermissionsGetPaddedMask', variables],
|
|
249
249
|
/** Query key for orgIsManagerOf */ orgIsManagerOf: (variables) => ['orgIsManagerOf', variables],
|
|
250
|
-
/** Query key for stepsAchieved */ stepsAchieved: (variables) => ['stepsAchieved', variables],
|
|
251
250
|
/** Query key for appPermissionsGetMask */ appPermissionsGetMask: (variables) => ['appPermissionsGetMask', variables],
|
|
252
251
|
/** Query key for orgPermissionsGetMask */ orgPermissionsGetMask: (variables) => ['orgPermissionsGetMask', variables],
|
|
252
|
+
/** Query key for stepsAchieved */ stepsAchieved: (variables) => ['stepsAchieved', variables],
|
|
253
253
|
/** Query key for appPermissionsGetMaskByNames */ appPermissionsGetMaskByNames: (variables) => ['appPermissionsGetMaskByNames', variables],
|
|
254
254
|
/** Query key for orgPermissionsGetMaskByNames */ orgPermissionsGetMaskByNames: (variables) => ['orgPermissionsGetMaskByNames', variables],
|
|
255
255
|
/** Query key for appPermissionsGetByMask */ appPermissionsGetByMask: (variables) => ['appPermissionsGetByMask', variables],
|
package/esm/admin/orm/index.d.ts
CHANGED
|
@@ -110,11 +110,6 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
110
110
|
}) => import("./query-builder").QueryBuilder<{
|
|
111
111
|
orgIsManagerOf: boolean | null;
|
|
112
112
|
}>;
|
|
113
|
-
stepsAchieved: (args: import("./query").StepsAchievedVariables, options?: {
|
|
114
|
-
select?: Record<string, unknown>;
|
|
115
|
-
}) => import("./query-builder").QueryBuilder<{
|
|
116
|
-
stepsAchieved: boolean | null;
|
|
117
|
-
}>;
|
|
118
113
|
appPermissionsGetMask: (args: import("./query").AppPermissionsGetMaskVariables, options?: {
|
|
119
114
|
select?: Record<string, unknown>;
|
|
120
115
|
}) => import("./query-builder").QueryBuilder<{
|
|
@@ -125,6 +120,11 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
125
120
|
}) => import("./query-builder").QueryBuilder<{
|
|
126
121
|
orgPermissionsGetMask: string | null;
|
|
127
122
|
}>;
|
|
123
|
+
stepsAchieved: (args: import("./query").StepsAchievedVariables, options?: {
|
|
124
|
+
select?: Record<string, unknown>;
|
|
125
|
+
}) => import("./query-builder").QueryBuilder<{
|
|
126
|
+
stepsAchieved: boolean | null;
|
|
127
|
+
}>;
|
|
128
128
|
appPermissionsGetMaskByNames: (args: import("./query").AppPermissionsGetMaskByNamesVariables, options?: {
|
|
129
129
|
select?: Record<string, unknown>;
|
|
130
130
|
}) => import("./query-builder").QueryBuilder<{
|
|
@@ -18,16 +18,16 @@ export interface OrgIsManagerOfVariables {
|
|
|
18
18
|
pUserId?: string;
|
|
19
19
|
pMaxDepth?: number;
|
|
20
20
|
}
|
|
21
|
-
export interface StepsAchievedVariables {
|
|
22
|
-
vlevel?: string;
|
|
23
|
-
vroleId?: string;
|
|
24
|
-
}
|
|
25
21
|
export interface AppPermissionsGetMaskVariables {
|
|
26
22
|
ids?: string[];
|
|
27
23
|
}
|
|
28
24
|
export interface OrgPermissionsGetMaskVariables {
|
|
29
25
|
ids?: string[];
|
|
30
26
|
}
|
|
27
|
+
export interface StepsAchievedVariables {
|
|
28
|
+
vlevel?: string;
|
|
29
|
+
vroleId?: string;
|
|
30
|
+
}
|
|
31
31
|
export interface AppPermissionsGetMaskByNamesVariables {
|
|
32
32
|
names?: string[];
|
|
33
33
|
}
|
|
@@ -87,11 +87,6 @@ export declare function createQueryOperations(client: OrmClient): {
|
|
|
87
87
|
}) => QueryBuilder<{
|
|
88
88
|
orgIsManagerOf: boolean | null;
|
|
89
89
|
}>;
|
|
90
|
-
stepsAchieved: (args: StepsAchievedVariables, options?: {
|
|
91
|
-
select?: Record<string, unknown>;
|
|
92
|
-
}) => QueryBuilder<{
|
|
93
|
-
stepsAchieved: boolean | null;
|
|
94
|
-
}>;
|
|
95
90
|
appPermissionsGetMask: (args: AppPermissionsGetMaskVariables, options?: {
|
|
96
91
|
select?: Record<string, unknown>;
|
|
97
92
|
}) => QueryBuilder<{
|
|
@@ -102,6 +97,11 @@ export declare function createQueryOperations(client: OrmClient): {
|
|
|
102
97
|
}) => QueryBuilder<{
|
|
103
98
|
orgPermissionsGetMask: string | null;
|
|
104
99
|
}>;
|
|
100
|
+
stepsAchieved: (args: StepsAchievedVariables, options?: {
|
|
101
|
+
select?: Record<string, unknown>;
|
|
102
|
+
}) => QueryBuilder<{
|
|
103
|
+
stepsAchieved: boolean | null;
|
|
104
|
+
}>;
|
|
105
105
|
appPermissionsGetMaskByNames: (args: AppPermissionsGetMaskByNamesVariables, options?: {
|
|
106
106
|
select?: Record<string, unknown>;
|
|
107
107
|
}) => QueryBuilder<{
|
|
@@ -50,22 +50,6 @@ export function createQueryOperations(client) {
|
|
|
50
50
|
},
|
|
51
51
|
], connectionFieldsMap, undefined),
|
|
52
52
|
}),
|
|
53
|
-
stepsAchieved: (args, options) => new QueryBuilder({
|
|
54
|
-
client,
|
|
55
|
-
operation: 'query',
|
|
56
|
-
operationName: 'StepsAchieved',
|
|
57
|
-
fieldName: 'stepsAchieved',
|
|
58
|
-
...buildCustomDocument('query', 'StepsAchieved', 'stepsAchieved', options?.select, args, [
|
|
59
|
-
{
|
|
60
|
-
name: 'vlevel',
|
|
61
|
-
type: 'String',
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
name: 'vroleId',
|
|
65
|
-
type: 'UUID',
|
|
66
|
-
},
|
|
67
|
-
], connectionFieldsMap, undefined),
|
|
68
|
-
}),
|
|
69
53
|
appPermissionsGetMask: (args, options) => new QueryBuilder({
|
|
70
54
|
client,
|
|
71
55
|
operation: 'query',
|
|
@@ -90,6 +74,22 @@ export function createQueryOperations(client) {
|
|
|
90
74
|
},
|
|
91
75
|
], connectionFieldsMap, undefined),
|
|
92
76
|
}),
|
|
77
|
+
stepsAchieved: (args, options) => new QueryBuilder({
|
|
78
|
+
client,
|
|
79
|
+
operation: 'query',
|
|
80
|
+
operationName: 'StepsAchieved',
|
|
81
|
+
fieldName: 'stepsAchieved',
|
|
82
|
+
...buildCustomDocument('query', 'StepsAchieved', 'stepsAchieved', options?.select, args, [
|
|
83
|
+
{
|
|
84
|
+
name: 'vlevel',
|
|
85
|
+
type: 'String',
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
name: 'vroleId',
|
|
89
|
+
type: 'UUID',
|
|
90
|
+
},
|
|
91
|
+
], connectionFieldsMap, undefined),
|
|
92
|
+
}),
|
|
93
93
|
appPermissionsGetMaskByNames: (args, options) => new QueryBuilder({
|
|
94
94
|
client,
|
|
95
95
|
operation: 'query',
|
|
@@ -20,7 +20,7 @@ export type AuditLogOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC'
|
|
|
20
20
|
/** Methods to use when ordering `Email`. */
|
|
21
21
|
export type EmailOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'EMAIL_ASC' | 'EMAIL_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
22
22
|
/** Methods to use when ordering `User`. */
|
|
23
|
-
export type UserOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'USERNAME_ASC' | 'USERNAME_DESC' | '
|
|
23
|
+
export type UserOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'USERNAME_ASC' | 'USERNAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'SEARCH_TSV_RANK_ASC' | 'SEARCH_TSV_RANK_DESC' | 'DISPLAY_NAME_TRGM_SIMILARITY_ASC' | 'DISPLAY_NAME_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
24
24
|
/** A filter to be used against `CryptoAddress` object types. All fields are combined with a logical ‘and.’ */
|
|
25
25
|
export interface CryptoAddressFilter {
|
|
26
26
|
/** Filter by the object’s `id` field. */
|
|
@@ -657,7 +657,6 @@ export interface UserInput {
|
|
|
657
657
|
username?: string;
|
|
658
658
|
displayName?: string;
|
|
659
659
|
profilePicture?: ConstructiveInternalTypeImage;
|
|
660
|
-
searchTsv?: string;
|
|
661
660
|
type?: number;
|
|
662
661
|
createdAt?: string;
|
|
663
662
|
updatedAt?: string;
|
|
@@ -789,7 +788,6 @@ export interface UserPatch {
|
|
|
789
788
|
username?: string;
|
|
790
789
|
displayName?: string;
|
|
791
790
|
profilePicture?: ConstructiveInternalTypeImage;
|
|
792
|
-
searchTsv?: string;
|
|
793
791
|
type?: number;
|
|
794
792
|
createdAt?: string;
|
|
795
793
|
updatedAt?: string;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* GraphQL SDK
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
*
|
|
5
|
-
* Tables: OrgGetManagersRecord, OrgGetSubordinatesRecord, GetAllRecord, AppPermission, OrgPermission,
|
|
5
|
+
* Tables: OrgGetManagersRecord, OrgGetSubordinatesRecord, GetAllRecord, Object, AppPermission, OrgPermission, AppLevelRequirement, Database, Schema, Table, CheckConstraint, Field, ForeignKeyConstraint, FullTextSearch, Index, Policy, PrimaryKeyConstraint, TableGrant, Trigger, UniqueConstraint, View, ViewTable, ViewGrant, ViewRule, TableTemplateModule, SecureTableProvision, RelationProvision, SchemaGrant, DefaultPrivilege, ApiSchema, ApiModule, Domain, SiteMetadatum, SiteModule, SiteTheme, TriggerFunction, Api, Site, App, ConnectedAccountsModule, CryptoAddressesModule, CryptoAuthModule, DefaultIdsModule, DenormalizedTableField, EmailsModule, EncryptedSecretsModule, FieldModule, InvitesModule, LevelsModule, LimitsModule, MembershipTypesModule, MembershipsModule, PermissionsModule, PhoneNumbersModule, ProfilesModule, SecretsModule, SessionsModule, UserAuthModule, UsersModule, UuidModule, DatabaseProvisionModule, AppAdminGrant, AppOwnerGrant, AppGrant, OrgMembership, OrgMember, OrgAdminGrant, OrgOwnerGrant, OrgGrant, OrgChartEdge, OrgChartEdgeGrant, AppLimit, OrgLimit, AppStep, AppAchievement, Invite, ClaimedInvite, OrgInvite, OrgClaimedInvite, Ref, Store, AppPermissionDefault, CryptoAddress, RoleType, OrgPermissionDefault, PhoneNumber, AppLimitDefault, OrgLimitDefault, ConnectedAccount, NodeTypeRegistry, MembershipType, Commit, AppMembershipDefault, RlsModule, OrgMembershipDefault, AuditLog, AppLevel, SqlMigration, Email, User, AstMigration, AppMembership, HierarchyModule
|
|
6
6
|
*
|
|
7
7
|
* Usage:
|
|
8
8
|
*
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* GraphQL SDK
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
*
|
|
5
|
-
* Tables: OrgGetManagersRecord, OrgGetSubordinatesRecord, GetAllRecord, AppPermission, OrgPermission,
|
|
5
|
+
* Tables: OrgGetManagersRecord, OrgGetSubordinatesRecord, GetAllRecord, Object, AppPermission, OrgPermission, AppLevelRequirement, Database, Schema, Table, CheckConstraint, Field, ForeignKeyConstraint, FullTextSearch, Index, Policy, PrimaryKeyConstraint, TableGrant, Trigger, UniqueConstraint, View, ViewTable, ViewGrant, ViewRule, TableTemplateModule, SecureTableProvision, RelationProvision, SchemaGrant, DefaultPrivilege, ApiSchema, ApiModule, Domain, SiteMetadatum, SiteModule, SiteTheme, TriggerFunction, Api, Site, App, ConnectedAccountsModule, CryptoAddressesModule, CryptoAuthModule, DefaultIdsModule, DenormalizedTableField, EmailsModule, EncryptedSecretsModule, FieldModule, InvitesModule, LevelsModule, LimitsModule, MembershipTypesModule, MembershipsModule, PermissionsModule, PhoneNumbersModule, ProfilesModule, SecretsModule, SessionsModule, UserAuthModule, UsersModule, UuidModule, DatabaseProvisionModule, AppAdminGrant, AppOwnerGrant, AppGrant, OrgMembership, OrgMember, OrgAdminGrant, OrgOwnerGrant, OrgGrant, OrgChartEdge, OrgChartEdgeGrant, AppLimit, OrgLimit, AppStep, AppAchievement, Invite, ClaimedInvite, OrgInvite, OrgClaimedInvite, Ref, Store, AppPermissionDefault, CryptoAddress, RoleType, OrgPermissionDefault, PhoneNumber, AppLimitDefault, OrgLimitDefault, ConnectedAccount, NodeTypeRegistry, MembershipType, Commit, AppMembershipDefault, RlsModule, OrgMembershipDefault, AuditLog, AppLevel, SqlMigration, Email, User, AstMigration, AppMembership, HierarchyModule
|
|
6
6
|
*
|
|
7
7
|
* Usage:
|
|
8
8
|
*
|
|
@@ -39,6 +39,11 @@ export declare const invalidate: {
|
|
|
39
39
|
/** Invalidate getAllRecord list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
40
40
|
/** Invalidate a specific getAllRecord */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
41
41
|
};
|
|
42
|
+
/** Invalidate object queries */ readonly object: {
|
|
43
|
+
/** Invalidate all object queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
44
|
+
/** Invalidate object list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
45
|
+
/** Invalidate a specific object */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
46
|
+
};
|
|
42
47
|
/** Invalidate appPermission queries */ readonly appPermission: {
|
|
43
48
|
/** Invalidate all appPermission queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
44
49
|
/** Invalidate appPermission list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -49,11 +54,6 @@ export declare const invalidate: {
|
|
|
49
54
|
/** Invalidate orgPermission list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
50
55
|
/** Invalidate a specific orgPermission */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
51
56
|
};
|
|
52
|
-
/** Invalidate object queries */ readonly object: {
|
|
53
|
-
/** Invalidate all object queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
54
|
-
/** Invalidate object list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
55
|
-
/** Invalidate a specific object */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
56
|
-
};
|
|
57
57
|
/** Invalidate appLevelRequirement queries */ readonly appLevelRequirement: {
|
|
58
58
|
/** Invalidate all appLevelRequirement queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
59
59
|
/** Invalidate appLevelRequirement list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -479,6 +479,11 @@ export declare const invalidate: {
|
|
|
479
479
|
/** Invalidate membershipType list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
480
480
|
/** Invalidate a specific membershipType */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
481
481
|
};
|
|
482
|
+
/** Invalidate commit queries */ readonly commit: {
|
|
483
|
+
/** Invalidate all commit queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
484
|
+
/** Invalidate commit list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
485
|
+
/** Invalidate a specific commit */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
486
|
+
};
|
|
482
487
|
/** Invalidate appMembershipDefault queries */ readonly appMembershipDefault: {
|
|
483
488
|
/** Invalidate all appMembershipDefault queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
484
489
|
/** Invalidate appMembershipDefault list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -489,11 +494,6 @@ export declare const invalidate: {
|
|
|
489
494
|
/** Invalidate rlsModule list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
490
495
|
/** Invalidate a specific rlsModule */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
491
496
|
};
|
|
492
|
-
/** Invalidate commit queries */ readonly commit: {
|
|
493
|
-
/** Invalidate all commit queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
494
|
-
/** Invalidate commit list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
495
|
-
/** Invalidate a specific commit */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
496
|
-
};
|
|
497
497
|
/** Invalidate orgMembershipDefault queries */ readonly orgMembershipDefault: {
|
|
498
498
|
/** Invalidate all orgMembershipDefault queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
499
499
|
/** Invalidate orgMembershipDefault list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -519,6 +519,11 @@ export declare const invalidate: {
|
|
|
519
519
|
/** Invalidate email list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
520
520
|
/** Invalidate a specific email */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
521
521
|
};
|
|
522
|
+
/** Invalidate user queries */ readonly user: {
|
|
523
|
+
/** Invalidate all user queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
524
|
+
/** Invalidate user list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
525
|
+
/** Invalidate a specific user */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
526
|
+
};
|
|
522
527
|
/** Invalidate astMigration queries */ readonly astMigration: {
|
|
523
528
|
/** Invalidate all astMigration queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
524
529
|
/** Invalidate astMigration list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -529,11 +534,6 @@ export declare const invalidate: {
|
|
|
529
534
|
/** Invalidate appMembership list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
530
535
|
/** Invalidate a specific appMembership */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
531
536
|
};
|
|
532
|
-
/** Invalidate user queries */ readonly user: {
|
|
533
|
-
/** Invalidate all user queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
534
|
-
/** Invalidate user list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
535
|
-
/** Invalidate a specific user */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
536
|
-
};
|
|
537
537
|
/** Invalidate hierarchyModule queries */ readonly hierarchyModule: {
|
|
538
538
|
/** Invalidate all hierarchyModule queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
539
539
|
/** Invalidate hierarchyModule list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -555,9 +555,9 @@ export declare const remove: {
|
|
|
555
555
|
/** Remove orgGetManagersRecord from cache */ readonly orgGetManagersRecord: (queryClient: QueryClient, id: string | number) => void;
|
|
556
556
|
/** Remove orgGetSubordinatesRecord from cache */ readonly orgGetSubordinatesRecord: (queryClient: QueryClient, id: string | number) => void;
|
|
557
557
|
/** Remove getAllRecord from cache */ readonly getAllRecord: (queryClient: QueryClient, id: string | number) => void;
|
|
558
|
+
/** Remove object from cache */ readonly object: (queryClient: QueryClient, id: string | number) => void;
|
|
558
559
|
/** Remove appPermission from cache */ readonly appPermission: (queryClient: QueryClient, id: string | number) => void;
|
|
559
560
|
/** Remove orgPermission from cache */ readonly orgPermission: (queryClient: QueryClient, id: string | number) => void;
|
|
560
|
-
/** Remove object from cache */ readonly object: (queryClient: QueryClient, id: string | number) => void;
|
|
561
561
|
/** Remove appLevelRequirement from cache */ readonly appLevelRequirement: (queryClient: QueryClient, id: string | number) => void;
|
|
562
562
|
/** Remove database from cache */ readonly database: (queryClient: QueryClient, id: string | number) => void;
|
|
563
563
|
/** Remove schema from cache */ readonly schema: (queryClient: QueryClient, id: string | number) => void;
|
|
@@ -643,16 +643,16 @@ export declare const remove: {
|
|
|
643
643
|
/** Remove connectedAccount from cache */ readonly connectedAccount: (queryClient: QueryClient, id: string | number) => void;
|
|
644
644
|
/** Remove nodeTypeRegistry from cache */ readonly nodeTypeRegistry: (queryClient: QueryClient, id: string | number) => void;
|
|
645
645
|
/** Remove membershipType from cache */ readonly membershipType: (queryClient: QueryClient, id: string | number) => void;
|
|
646
|
+
/** Remove commit from cache */ readonly commit: (queryClient: QueryClient, id: string | number) => void;
|
|
646
647
|
/** Remove appMembershipDefault from cache */ readonly appMembershipDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
647
648
|
/** Remove rlsModule from cache */ readonly rlsModule: (queryClient: QueryClient, id: string | number) => void;
|
|
648
|
-
/** Remove commit from cache */ readonly commit: (queryClient: QueryClient, id: string | number) => void;
|
|
649
649
|
/** Remove orgMembershipDefault from cache */ readonly orgMembershipDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
650
650
|
/** Remove auditLog from cache */ readonly auditLog: (queryClient: QueryClient, id: string | number) => void;
|
|
651
651
|
/** Remove appLevel from cache */ readonly appLevel: (queryClient: QueryClient, id: string | number) => void;
|
|
652
652
|
/** Remove sqlMigration from cache */ readonly sqlMigration: (queryClient: QueryClient, id: string | number) => void;
|
|
653
653
|
/** Remove email from cache */ readonly email: (queryClient: QueryClient, id: string | number) => void;
|
|
654
|
+
/** Remove user from cache */ readonly user: (queryClient: QueryClient, id: string | number) => void;
|
|
654
655
|
/** Remove astMigration from cache */ readonly astMigration: (queryClient: QueryClient, id: string | number) => void;
|
|
655
656
|
/** Remove appMembership from cache */ readonly appMembership: (queryClient: QueryClient, id: string | number) => void;
|
|
656
|
-
/** Remove user from cache */ readonly user: (queryClient: QueryClient, id: string | number) => void;
|
|
657
657
|
/** Remove hierarchyModule from cache */ readonly hierarchyModule: (queryClient: QueryClient, id: string | number) => void;
|
|
658
658
|
};
|