@constructive-io/react 0.10.3 → 0.10.4
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/esm/public/hooks/index.d.ts +1 -1
- package/esm/public/hooks/index.js +1 -1
- package/esm/public/hooks/invalidation.d.ts +11 -11
- package/esm/public/hooks/invalidation.js +26 -26
- package/esm/public/hooks/mutation-keys.d.ts +22 -22
- package/esm/public/hooks/mutation-keys.js +13 -13
- package/esm/public/hooks/mutations/index.d.ts +2 -4
- package/esm/public/hooks/mutations/index.js +2 -4
- package/esm/public/hooks/mutations/useCreateMigrateFileMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/{useCreateFieldModuleMutation.js → useCreateMigrateFileMutation.js} +7 -7
- package/esm/public/hooks/mutations/useCreateSqlActionMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/{useCreateSqlMigrationMutation.js → useCreateSqlActionMutation.js} +7 -7
- package/esm/public/hooks/queries/index.d.ts +4 -4
- package/esm/public/hooks/queries/index.js +4 -4
- package/esm/public/hooks/queries/useMigrateFileQuery.d.ts +65 -0
- package/esm/public/hooks/queries/{useFieldModuleQuery.js → useMigrateFileQuery.js} +11 -11
- package/esm/public/hooks/queries/useMigrateFilesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/{useFieldModulesQuery.js → useMigrateFilesQuery.js} +11 -11
- package/esm/public/hooks/queries/useSqlActionQuery.d.ts +65 -0
- package/esm/public/hooks/queries/{useSqlMigrationQuery.js → useSqlActionQuery.js} +11 -11
- package/esm/public/hooks/queries/useSqlActionsQuery.d.ts +69 -0
- package/esm/public/hooks/queries/{useSqlMigrationsQuery.js → useSqlActionsQuery.js} +11 -11
- package/esm/public/hooks/query-keys.d.ts +26 -26
- package/esm/public/hooks/query-keys.js +15 -15
- package/esm/public/orm/index.d.ts +4 -4
- package/esm/public/orm/index.js +4 -4
- package/esm/public/orm/input-types.d.ts +118 -247
- package/esm/public/orm/input-types.js +0 -1
- package/esm/public/orm/models/index.d.ts +2 -2
- package/esm/public/orm/models/index.js +2 -2
- package/esm/public/orm/models/migrateFile.d.ts +38 -0
- package/esm/public/orm/models/migrateFile.js +72 -0
- package/esm/public/orm/models/sqlAction.d.ts +38 -0
- package/esm/public/orm/models/{sqlMigration.js → sqlAction.js} +17 -17
- package/esm/public/schema-types.d.ts +112 -150
- package/esm/public/types.d.ts +7 -12
- package/package.json +3 -3
- package/public/hooks/index.d.ts +1 -1
- package/public/hooks/index.js +1 -1
- package/public/hooks/invalidation.d.ts +11 -11
- package/public/hooks/invalidation.js +25 -25
- package/public/hooks/mutation-keys.d.ts +22 -22
- package/public/hooks/mutation-keys.js +16 -16
- package/public/hooks/mutations/index.d.ts +2 -4
- package/public/hooks/mutations/index.js +2 -4
- package/public/hooks/mutations/useCreateMigrateFileMutation.d.ts +34 -0
- package/public/hooks/mutations/{useCreateFieldModuleMutation.js → useCreateMigrateFileMutation.js} +6 -6
- package/public/hooks/mutations/useCreateSqlActionMutation.d.ts +34 -0
- package/public/hooks/mutations/{useCreateSqlMigrationMutation.js → useCreateSqlActionMutation.js} +6 -6
- package/public/hooks/queries/index.d.ts +4 -4
- package/public/hooks/queries/index.js +4 -4
- package/public/hooks/queries/useMigrateFileQuery.d.ts +65 -0
- package/public/hooks/queries/{useFieldModuleQuery.js → useMigrateFileQuery.js} +14 -14
- package/public/hooks/queries/useMigrateFilesQuery.d.ts +69 -0
- package/public/hooks/queries/{useFieldModulesQuery.js → useMigrateFilesQuery.js} +14 -14
- package/public/hooks/queries/useSqlActionQuery.d.ts +65 -0
- package/public/hooks/queries/{useSqlMigrationQuery.js → useSqlActionQuery.js} +14 -14
- package/public/hooks/queries/useSqlActionsQuery.d.ts +69 -0
- package/public/hooks/queries/{useSqlMigrationsQuery.js → useSqlActionsQuery.js} +14 -14
- package/public/hooks/query-keys.d.ts +26 -26
- package/public/hooks/query-keys.js +18 -18
- package/public/orm/index.d.ts +4 -4
- package/public/orm/index.js +4 -4
- package/public/orm/input-types.d.ts +118 -247
- package/public/orm/input-types.js +0 -1
- package/public/orm/models/index.d.ts +2 -2
- package/public/orm/models/index.js +7 -7
- package/public/orm/models/migrateFile.d.ts +38 -0
- package/public/orm/models/{sqlMigration.js → migrateFile.js} +19 -19
- package/public/orm/models/sqlAction.d.ts +38 -0
- package/public/orm/models/sqlAction.js +76 -0
- package/public/schema-types.d.ts +112 -150
- package/public/types.d.ts +7 -12
- package/esm/public/hooks/mutations/useCreateFieldModuleMutation.d.ts +0 -34
- package/esm/public/hooks/mutations/useCreateSqlMigrationMutation.d.ts +0 -34
- package/esm/public/hooks/mutations/useDeleteFieldModuleMutation.d.ts +0 -38
- package/esm/public/hooks/mutations/useDeleteFieldModuleMutation.js +0 -36
- package/esm/public/hooks/mutations/useUpdateFieldModuleMutation.d.ts +0 -40
- package/esm/public/hooks/mutations/useUpdateFieldModuleMutation.js +0 -37
- package/esm/public/hooks/queries/useFieldModuleQuery.d.ts +0 -65
- package/esm/public/hooks/queries/useFieldModulesQuery.d.ts +0 -69
- package/esm/public/hooks/queries/useSqlMigrationQuery.d.ts +0 -65
- package/esm/public/hooks/queries/useSqlMigrationsQuery.d.ts +0 -69
- package/esm/public/orm/models/fieldModule.d.ts +0 -56
- package/esm/public/orm/models/fieldModule.js +0 -96
- package/esm/public/orm/models/sqlMigration.d.ts +0 -38
- package/public/hooks/mutations/useCreateFieldModuleMutation.d.ts +0 -34
- package/public/hooks/mutations/useCreateSqlMigrationMutation.d.ts +0 -34
- package/public/hooks/mutations/useDeleteFieldModuleMutation.d.ts +0 -38
- package/public/hooks/mutations/useDeleteFieldModuleMutation.js +0 -39
- package/public/hooks/mutations/useUpdateFieldModuleMutation.d.ts +0 -40
- package/public/hooks/mutations/useUpdateFieldModuleMutation.js +0 -40
- package/public/hooks/queries/useFieldModuleQuery.d.ts +0 -65
- package/public/hooks/queries/useFieldModulesQuery.d.ts +0 -69
- package/public/hooks/queries/useSqlMigrationQuery.d.ts +0 -65
- package/public/hooks/queries/useSqlMigrationsQuery.d.ts +0 -69
- package/public/orm/models/fieldModule.d.ts +0 -56
- package/public/orm/models/fieldModule.js +0 -100
- package/public/orm/models/sqlMigration.d.ts +0 -38
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Single item query hook for MigrateFile
|
|
3
|
+
* @generated by @constructive-io/graphql-codegen
|
|
4
|
+
* DO NOT EDIT - changes will be overwritten
|
|
5
|
+
*/
|
|
6
|
+
import type { UseQueryOptions, UseQueryResult, QueryClient } from '@tanstack/react-query';
|
|
7
|
+
import type { MigrateFileSelect, MigrateFileWithRelations } from '../../orm/input-types';
|
|
8
|
+
import type { InferSelectResult, HookStrictSelect } from '../../orm/select-types';
|
|
9
|
+
export type { MigrateFileSelect, MigrateFileWithRelations } from '../../orm/input-types';
|
|
10
|
+
/** Query key factory - re-exported from query-keys.ts */
|
|
11
|
+
export declare const migrateFileQueryKey: (id: string | number) => readonly ["migratefile", "detail", string | number];
|
|
12
|
+
/**
|
|
13
|
+
* Query hook for fetching a single MigrateFile
|
|
14
|
+
*
|
|
15
|
+
* @example
|
|
16
|
+
* ```tsx
|
|
17
|
+
* const { data, isLoading } = useMigrateFileQuery({
|
|
18
|
+
* id: 'some-id',
|
|
19
|
+
* selection: { fields: { id: true, name: true } },
|
|
20
|
+
* });
|
|
21
|
+
* ```
|
|
22
|
+
*/
|
|
23
|
+
export declare function useMigrateFileQuery<S extends MigrateFileSelect, TData = {
|
|
24
|
+
migrateFile: InferSelectResult<MigrateFileWithRelations, S> | null;
|
|
25
|
+
}>(params: {
|
|
26
|
+
id: string;
|
|
27
|
+
selection: {
|
|
28
|
+
fields: S;
|
|
29
|
+
} & HookStrictSelect<NoInfer<S>, MigrateFileSelect>;
|
|
30
|
+
} & Omit<UseQueryOptions<{
|
|
31
|
+
migrateFile: InferSelectResult<MigrateFileWithRelations, S> | null;
|
|
32
|
+
}, Error, TData>, 'queryKey' | 'queryFn'>): UseQueryResult<TData>;
|
|
33
|
+
/**
|
|
34
|
+
* Fetch a single MigrateFile without React hooks
|
|
35
|
+
*
|
|
36
|
+
* @example
|
|
37
|
+
* ```ts
|
|
38
|
+
* const data = await fetchMigrateFileQuery({
|
|
39
|
+
* id: 'some-id',
|
|
40
|
+
* selection: { fields: { id: true } },
|
|
41
|
+
* });
|
|
42
|
+
* ```
|
|
43
|
+
*/
|
|
44
|
+
export declare function fetchMigrateFileQuery<S extends MigrateFileSelect>(params: {
|
|
45
|
+
id: string;
|
|
46
|
+
selection: {
|
|
47
|
+
fields: S;
|
|
48
|
+
} & HookStrictSelect<NoInfer<S>, MigrateFileSelect>;
|
|
49
|
+
}): Promise<{
|
|
50
|
+
migrateFile: InferSelectResult<MigrateFileWithRelations, S> | null;
|
|
51
|
+
}>;
|
|
52
|
+
/**
|
|
53
|
+
* Prefetch a single MigrateFile for SSR or cache warming
|
|
54
|
+
*
|
|
55
|
+
* @example
|
|
56
|
+
* ```ts
|
|
57
|
+
* await prefetchMigrateFileQuery(queryClient, { id: 'some-id', selection: { fields: { id: true } } });
|
|
58
|
+
* ```
|
|
59
|
+
*/
|
|
60
|
+
export declare function prefetchMigrateFileQuery<S extends MigrateFileSelect>(queryClient: QueryClient, params: {
|
|
61
|
+
id: string;
|
|
62
|
+
selection: {
|
|
63
|
+
fields: S;
|
|
64
|
+
} & HookStrictSelect<NoInfer<S>, MigrateFileSelect>;
|
|
65
|
+
}): Promise<void>;
|
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Single item query hook for
|
|
2
|
+
* Single item query hook for MigrateFile
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
6
|
import { useQuery } from '@tanstack/react-query';
|
|
7
7
|
import { getClient } from '../client';
|
|
8
8
|
import { buildSelectionArgs } from '../selection';
|
|
9
|
-
import {
|
|
9
|
+
import { migrateFileKeys } from '../query-keys';
|
|
10
10
|
/** Query key factory - re-exported from query-keys.ts */
|
|
11
|
-
export const
|
|
12
|
-
export function
|
|
11
|
+
export const migrateFileQueryKey = migrateFileKeys.detail;
|
|
12
|
+
export function useMigrateFileQuery(params) {
|
|
13
13
|
const args = buildSelectionArgs(params.selection);
|
|
14
14
|
const { selection: _selection, ...queryOptions } = params ?? {};
|
|
15
15
|
void _selection;
|
|
16
16
|
return useQuery({
|
|
17
|
-
queryKey:
|
|
17
|
+
queryKey: migrateFileKeys.detail(params.id),
|
|
18
18
|
queryFn: () => getClient()
|
|
19
|
-
.
|
|
19
|
+
.migrateFile.findOne({
|
|
20
20
|
id: params.id,
|
|
21
21
|
select: args.select,
|
|
22
22
|
})
|
|
@@ -24,21 +24,21 @@ export function useFieldModuleQuery(params) {
|
|
|
24
24
|
...queryOptions,
|
|
25
25
|
});
|
|
26
26
|
}
|
|
27
|
-
export async function
|
|
27
|
+
export async function fetchMigrateFileQuery(params) {
|
|
28
28
|
const args = buildSelectionArgs(params.selection);
|
|
29
29
|
return getClient()
|
|
30
|
-
.
|
|
30
|
+
.migrateFile.findOne({
|
|
31
31
|
id: params.id,
|
|
32
32
|
select: args.select,
|
|
33
33
|
})
|
|
34
34
|
.unwrap();
|
|
35
35
|
}
|
|
36
|
-
export async function
|
|
36
|
+
export async function prefetchMigrateFileQuery(queryClient, params) {
|
|
37
37
|
const args = buildSelectionArgs(params.selection);
|
|
38
38
|
await queryClient.prefetchQuery({
|
|
39
|
-
queryKey:
|
|
39
|
+
queryKey: migrateFileKeys.detail(params.id),
|
|
40
40
|
queryFn: () => getClient()
|
|
41
|
-
.
|
|
41
|
+
.migrateFile.findOne({
|
|
42
42
|
id: params.id,
|
|
43
43
|
select: args.select,
|
|
44
44
|
})
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* List query hook for MigrateFile
|
|
3
|
+
* @generated by @constructive-io/graphql-codegen
|
|
4
|
+
* DO NOT EDIT - changes will be overwritten
|
|
5
|
+
*/
|
|
6
|
+
import type { UseQueryOptions, UseQueryResult, QueryClient } from '@tanstack/react-query';
|
|
7
|
+
import type { ListSelectionConfig } from '../selection';
|
|
8
|
+
import type { MigrateFileSelect, MigrateFileWithRelations, MigrateFileFilter, MigrateFileOrderBy } from '../../orm/input-types';
|
|
9
|
+
import type { InferSelectResult, ConnectionResult, HookStrictSelect } from '../../orm/select-types';
|
|
10
|
+
export type { MigrateFileSelect, MigrateFileWithRelations, MigrateFileFilter, MigrateFileOrderBy, } from '../../orm/input-types';
|
|
11
|
+
/** Query key factory - re-exported from query-keys.ts */
|
|
12
|
+
export declare const migrateFilesQueryKey: (variables?: object) => readonly ["migratefile", "list", object];
|
|
13
|
+
/**
|
|
14
|
+
* Query hook for fetching MigrateFile list
|
|
15
|
+
*
|
|
16
|
+
* @example
|
|
17
|
+
* ```tsx
|
|
18
|
+
* const { data, isLoading } = useMigrateFilesQuery({
|
|
19
|
+
* selection: {
|
|
20
|
+
* fields: { id: true, name: true },
|
|
21
|
+
* where: { name: { equalTo: "example" } },
|
|
22
|
+
* orderBy: ['CREATED_AT_DESC'],
|
|
23
|
+
* first: 10,
|
|
24
|
+
* },
|
|
25
|
+
* });
|
|
26
|
+
* ```
|
|
27
|
+
*/
|
|
28
|
+
export declare function useMigrateFilesQuery<S extends MigrateFileSelect, TData = {
|
|
29
|
+
migrateFiles: ConnectionResult<InferSelectResult<MigrateFileWithRelations, S>>;
|
|
30
|
+
}>(params: {
|
|
31
|
+
selection: {
|
|
32
|
+
fields: S;
|
|
33
|
+
} & Omit<ListSelectionConfig<S, MigrateFileFilter, MigrateFileOrderBy>, 'fields'> & HookStrictSelect<NoInfer<S>, MigrateFileSelect>;
|
|
34
|
+
} & Omit<UseQueryOptions<{
|
|
35
|
+
migrateFiles: ConnectionResult<InferSelectResult<MigrateFileWithRelations, S>>;
|
|
36
|
+
}, Error, TData>, 'queryKey' | 'queryFn'>): UseQueryResult<TData>;
|
|
37
|
+
/**
|
|
38
|
+
* Fetch MigrateFile list without React hooks
|
|
39
|
+
*
|
|
40
|
+
* @example
|
|
41
|
+
* ```ts
|
|
42
|
+
* const data = await fetchMigrateFilesQuery({
|
|
43
|
+
* selection: {
|
|
44
|
+
* fields: { id: true },
|
|
45
|
+
* first: 10,
|
|
46
|
+
* },
|
|
47
|
+
* });
|
|
48
|
+
* ```
|
|
49
|
+
*/
|
|
50
|
+
export declare function fetchMigrateFilesQuery<S extends MigrateFileSelect>(params: {
|
|
51
|
+
selection: {
|
|
52
|
+
fields: S;
|
|
53
|
+
} & Omit<ListSelectionConfig<S, MigrateFileFilter, MigrateFileOrderBy>, 'fields'> & HookStrictSelect<NoInfer<S>, MigrateFileSelect>;
|
|
54
|
+
}): Promise<{
|
|
55
|
+
migrateFiles: ConnectionResult<InferSelectResult<MigrateFileWithRelations, S>>;
|
|
56
|
+
}>;
|
|
57
|
+
/**
|
|
58
|
+
* Prefetch MigrateFile list for SSR or cache warming
|
|
59
|
+
*
|
|
60
|
+
* @example
|
|
61
|
+
* ```ts
|
|
62
|
+
* await prefetchMigrateFilesQuery(queryClient, { selection: { fields: { id: true }, first: 10 } });
|
|
63
|
+
* ```
|
|
64
|
+
*/
|
|
65
|
+
export declare function prefetchMigrateFilesQuery<S extends MigrateFileSelect>(queryClient: QueryClient, params: {
|
|
66
|
+
selection: {
|
|
67
|
+
fields: S;
|
|
68
|
+
} & Omit<ListSelectionConfig<S, MigrateFileFilter, MigrateFileOrderBy>, 'fields'> & HookStrictSelect<NoInfer<S>, MigrateFileSelect>;
|
|
69
|
+
}): Promise<void>;
|
|
@@ -1,32 +1,32 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* List query hook for
|
|
2
|
+
* List query hook for MigrateFile
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
6
|
import { useQuery } from '@tanstack/react-query';
|
|
7
7
|
import { getClient } from '../client';
|
|
8
8
|
import { buildListSelectionArgs } from '../selection';
|
|
9
|
-
import {
|
|
9
|
+
import { migrateFileKeys } from '../query-keys';
|
|
10
10
|
/** Query key factory - re-exported from query-keys.ts */
|
|
11
|
-
export const
|
|
12
|
-
export function
|
|
11
|
+
export const migrateFilesQueryKey = migrateFileKeys.list;
|
|
12
|
+
export function useMigrateFilesQuery(params) {
|
|
13
13
|
const args = buildListSelectionArgs(params.selection);
|
|
14
14
|
const { selection: _selection, ...queryOptions } = params ?? {};
|
|
15
15
|
void _selection;
|
|
16
16
|
return useQuery({
|
|
17
|
-
queryKey:
|
|
18
|
-
queryFn: () => getClient().
|
|
17
|
+
queryKey: migrateFileKeys.list(args),
|
|
18
|
+
queryFn: () => getClient().migrateFile.findMany(args).unwrap(),
|
|
19
19
|
...queryOptions,
|
|
20
20
|
});
|
|
21
21
|
}
|
|
22
|
-
export async function
|
|
22
|
+
export async function fetchMigrateFilesQuery(params) {
|
|
23
23
|
const args = buildListSelectionArgs(params.selection);
|
|
24
|
-
return getClient().
|
|
24
|
+
return getClient().migrateFile.findMany(args).unwrap();
|
|
25
25
|
}
|
|
26
|
-
export async function
|
|
26
|
+
export async function prefetchMigrateFilesQuery(queryClient, params) {
|
|
27
27
|
const args = buildListSelectionArgs(params.selection);
|
|
28
28
|
await queryClient.prefetchQuery({
|
|
29
|
-
queryKey:
|
|
30
|
-
queryFn: () => getClient().
|
|
29
|
+
queryKey: migrateFileKeys.list(args),
|
|
30
|
+
queryFn: () => getClient().migrateFile.findMany(args).unwrap(),
|
|
31
31
|
});
|
|
32
32
|
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Single item query hook for SqlAction
|
|
3
|
+
* @generated by @constructive-io/graphql-codegen
|
|
4
|
+
* DO NOT EDIT - changes will be overwritten
|
|
5
|
+
*/
|
|
6
|
+
import type { UseQueryOptions, UseQueryResult, QueryClient } from '@tanstack/react-query';
|
|
7
|
+
import type { SqlActionSelect, SqlActionWithRelations } from '../../orm/input-types';
|
|
8
|
+
import type { InferSelectResult, HookStrictSelect } from '../../orm/select-types';
|
|
9
|
+
export type { SqlActionSelect, SqlActionWithRelations } from '../../orm/input-types';
|
|
10
|
+
/** Query key factory - re-exported from query-keys.ts */
|
|
11
|
+
export declare const sqlActionQueryKey: (id: string | number) => readonly ["sqlaction", "detail", string | number];
|
|
12
|
+
/**
|
|
13
|
+
* Query hook for fetching a single SqlAction
|
|
14
|
+
*
|
|
15
|
+
* @example
|
|
16
|
+
* ```tsx
|
|
17
|
+
* const { data, isLoading } = useSqlActionQuery({
|
|
18
|
+
* id: 'some-id',
|
|
19
|
+
* selection: { fields: { id: true, name: true } },
|
|
20
|
+
* });
|
|
21
|
+
* ```
|
|
22
|
+
*/
|
|
23
|
+
export declare function useSqlActionQuery<S extends SqlActionSelect, TData = {
|
|
24
|
+
sqlAction: InferSelectResult<SqlActionWithRelations, S> | null;
|
|
25
|
+
}>(params: {
|
|
26
|
+
id: number;
|
|
27
|
+
selection: {
|
|
28
|
+
fields: S;
|
|
29
|
+
} & HookStrictSelect<NoInfer<S>, SqlActionSelect>;
|
|
30
|
+
} & Omit<UseQueryOptions<{
|
|
31
|
+
sqlAction: InferSelectResult<SqlActionWithRelations, S> | null;
|
|
32
|
+
}, Error, TData>, 'queryKey' | 'queryFn'>): UseQueryResult<TData>;
|
|
33
|
+
/**
|
|
34
|
+
* Fetch a single SqlAction without React hooks
|
|
35
|
+
*
|
|
36
|
+
* @example
|
|
37
|
+
* ```ts
|
|
38
|
+
* const data = await fetchSqlActionQuery({
|
|
39
|
+
* id: 'some-id',
|
|
40
|
+
* selection: { fields: { id: true } },
|
|
41
|
+
* });
|
|
42
|
+
* ```
|
|
43
|
+
*/
|
|
44
|
+
export declare function fetchSqlActionQuery<S extends SqlActionSelect>(params: {
|
|
45
|
+
id: number;
|
|
46
|
+
selection: {
|
|
47
|
+
fields: S;
|
|
48
|
+
} & HookStrictSelect<NoInfer<S>, SqlActionSelect>;
|
|
49
|
+
}): Promise<{
|
|
50
|
+
sqlAction: InferSelectResult<SqlActionWithRelations, S> | null;
|
|
51
|
+
}>;
|
|
52
|
+
/**
|
|
53
|
+
* Prefetch a single SqlAction for SSR or cache warming
|
|
54
|
+
*
|
|
55
|
+
* @example
|
|
56
|
+
* ```ts
|
|
57
|
+
* await prefetchSqlActionQuery(queryClient, { id: 'some-id', selection: { fields: { id: true } } });
|
|
58
|
+
* ```
|
|
59
|
+
*/
|
|
60
|
+
export declare function prefetchSqlActionQuery<S extends SqlActionSelect>(queryClient: QueryClient, params: {
|
|
61
|
+
id: number;
|
|
62
|
+
selection: {
|
|
63
|
+
fields: S;
|
|
64
|
+
} & HookStrictSelect<NoInfer<S>, SqlActionSelect>;
|
|
65
|
+
}): Promise<void>;
|
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Single item query hook for
|
|
2
|
+
* Single item query hook for SqlAction
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
6
|
import { useQuery } from '@tanstack/react-query';
|
|
7
7
|
import { getClient } from '../client';
|
|
8
8
|
import { buildSelectionArgs } from '../selection';
|
|
9
|
-
import {
|
|
9
|
+
import { sqlActionKeys } from '../query-keys';
|
|
10
10
|
/** Query key factory - re-exported from query-keys.ts */
|
|
11
|
-
export const
|
|
12
|
-
export function
|
|
11
|
+
export const sqlActionQueryKey = sqlActionKeys.detail;
|
|
12
|
+
export function useSqlActionQuery(params) {
|
|
13
13
|
const args = buildSelectionArgs(params.selection);
|
|
14
14
|
const { selection: _selection, ...queryOptions } = params ?? {};
|
|
15
15
|
void _selection;
|
|
16
16
|
return useQuery({
|
|
17
|
-
queryKey:
|
|
17
|
+
queryKey: sqlActionKeys.detail(params.id),
|
|
18
18
|
queryFn: () => getClient()
|
|
19
|
-
.
|
|
19
|
+
.sqlAction.findOne({
|
|
20
20
|
id: params.id,
|
|
21
21
|
select: args.select,
|
|
22
22
|
})
|
|
@@ -24,21 +24,21 @@ export function useSqlMigrationQuery(params) {
|
|
|
24
24
|
...queryOptions,
|
|
25
25
|
});
|
|
26
26
|
}
|
|
27
|
-
export async function
|
|
27
|
+
export async function fetchSqlActionQuery(params) {
|
|
28
28
|
const args = buildSelectionArgs(params.selection);
|
|
29
29
|
return getClient()
|
|
30
|
-
.
|
|
30
|
+
.sqlAction.findOne({
|
|
31
31
|
id: params.id,
|
|
32
32
|
select: args.select,
|
|
33
33
|
})
|
|
34
34
|
.unwrap();
|
|
35
35
|
}
|
|
36
|
-
export async function
|
|
36
|
+
export async function prefetchSqlActionQuery(queryClient, params) {
|
|
37
37
|
const args = buildSelectionArgs(params.selection);
|
|
38
38
|
await queryClient.prefetchQuery({
|
|
39
|
-
queryKey:
|
|
39
|
+
queryKey: sqlActionKeys.detail(params.id),
|
|
40
40
|
queryFn: () => getClient()
|
|
41
|
-
.
|
|
41
|
+
.sqlAction.findOne({
|
|
42
42
|
id: params.id,
|
|
43
43
|
select: args.select,
|
|
44
44
|
})
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* List query hook for SqlAction
|
|
3
|
+
* @generated by @constructive-io/graphql-codegen
|
|
4
|
+
* DO NOT EDIT - changes will be overwritten
|
|
5
|
+
*/
|
|
6
|
+
import type { UseQueryOptions, UseQueryResult, QueryClient } from '@tanstack/react-query';
|
|
7
|
+
import type { ListSelectionConfig } from '../selection';
|
|
8
|
+
import type { SqlActionSelect, SqlActionWithRelations, SqlActionFilter, SqlActionOrderBy } from '../../orm/input-types';
|
|
9
|
+
import type { InferSelectResult, ConnectionResult, HookStrictSelect } from '../../orm/select-types';
|
|
10
|
+
export type { SqlActionSelect, SqlActionWithRelations, SqlActionFilter, SqlActionOrderBy, } from '../../orm/input-types';
|
|
11
|
+
/** Query key factory - re-exported from query-keys.ts */
|
|
12
|
+
export declare const sqlActionsQueryKey: (variables?: object) => readonly ["sqlaction", "list", object];
|
|
13
|
+
/**
|
|
14
|
+
* Query hook for fetching SqlAction list
|
|
15
|
+
*
|
|
16
|
+
* @example
|
|
17
|
+
* ```tsx
|
|
18
|
+
* const { data, isLoading } = useSqlActionsQuery({
|
|
19
|
+
* selection: {
|
|
20
|
+
* fields: { id: true, name: true },
|
|
21
|
+
* where: { name: { equalTo: "example" } },
|
|
22
|
+
* orderBy: ['CREATED_AT_DESC'],
|
|
23
|
+
* first: 10,
|
|
24
|
+
* },
|
|
25
|
+
* });
|
|
26
|
+
* ```
|
|
27
|
+
*/
|
|
28
|
+
export declare function useSqlActionsQuery<S extends SqlActionSelect, TData = {
|
|
29
|
+
sqlActions: ConnectionResult<InferSelectResult<SqlActionWithRelations, S>>;
|
|
30
|
+
}>(params: {
|
|
31
|
+
selection: {
|
|
32
|
+
fields: S;
|
|
33
|
+
} & Omit<ListSelectionConfig<S, SqlActionFilter, SqlActionOrderBy>, 'fields'> & HookStrictSelect<NoInfer<S>, SqlActionSelect>;
|
|
34
|
+
} & Omit<UseQueryOptions<{
|
|
35
|
+
sqlActions: ConnectionResult<InferSelectResult<SqlActionWithRelations, S>>;
|
|
36
|
+
}, Error, TData>, 'queryKey' | 'queryFn'>): UseQueryResult<TData>;
|
|
37
|
+
/**
|
|
38
|
+
* Fetch SqlAction list without React hooks
|
|
39
|
+
*
|
|
40
|
+
* @example
|
|
41
|
+
* ```ts
|
|
42
|
+
* const data = await fetchSqlActionsQuery({
|
|
43
|
+
* selection: {
|
|
44
|
+
* fields: { id: true },
|
|
45
|
+
* first: 10,
|
|
46
|
+
* },
|
|
47
|
+
* });
|
|
48
|
+
* ```
|
|
49
|
+
*/
|
|
50
|
+
export declare function fetchSqlActionsQuery<S extends SqlActionSelect>(params: {
|
|
51
|
+
selection: {
|
|
52
|
+
fields: S;
|
|
53
|
+
} & Omit<ListSelectionConfig<S, SqlActionFilter, SqlActionOrderBy>, 'fields'> & HookStrictSelect<NoInfer<S>, SqlActionSelect>;
|
|
54
|
+
}): Promise<{
|
|
55
|
+
sqlActions: ConnectionResult<InferSelectResult<SqlActionWithRelations, S>>;
|
|
56
|
+
}>;
|
|
57
|
+
/**
|
|
58
|
+
* Prefetch SqlAction list for SSR or cache warming
|
|
59
|
+
*
|
|
60
|
+
* @example
|
|
61
|
+
* ```ts
|
|
62
|
+
* await prefetchSqlActionsQuery(queryClient, { selection: { fields: { id: true }, first: 10 } });
|
|
63
|
+
* ```
|
|
64
|
+
*/
|
|
65
|
+
export declare function prefetchSqlActionsQuery<S extends SqlActionSelect>(queryClient: QueryClient, params: {
|
|
66
|
+
selection: {
|
|
67
|
+
fields: S;
|
|
68
|
+
} & Omit<ListSelectionConfig<S, SqlActionFilter, SqlActionOrderBy>, 'fields'> & HookStrictSelect<NoInfer<S>, SqlActionSelect>;
|
|
69
|
+
}): Promise<void>;
|
|
@@ -1,32 +1,32 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* List query hook for
|
|
2
|
+
* List query hook for SqlAction
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
6
|
import { useQuery } from '@tanstack/react-query';
|
|
7
7
|
import { getClient } from '../client';
|
|
8
8
|
import { buildListSelectionArgs } from '../selection';
|
|
9
|
-
import {
|
|
9
|
+
import { sqlActionKeys } from '../query-keys';
|
|
10
10
|
/** Query key factory - re-exported from query-keys.ts */
|
|
11
|
-
export const
|
|
12
|
-
export function
|
|
11
|
+
export const sqlActionsQueryKey = sqlActionKeys.list;
|
|
12
|
+
export function useSqlActionsQuery(params) {
|
|
13
13
|
const args = buildListSelectionArgs(params.selection);
|
|
14
14
|
const { selection: _selection, ...queryOptions } = params ?? {};
|
|
15
15
|
void _selection;
|
|
16
16
|
return useQuery({
|
|
17
|
-
queryKey:
|
|
18
|
-
queryFn: () => getClient().
|
|
17
|
+
queryKey: sqlActionKeys.list(args),
|
|
18
|
+
queryFn: () => getClient().sqlAction.findMany(args).unwrap(),
|
|
19
19
|
...queryOptions,
|
|
20
20
|
});
|
|
21
21
|
}
|
|
22
|
-
export async function
|
|
22
|
+
export async function fetchSqlActionsQuery(params) {
|
|
23
23
|
const args = buildListSelectionArgs(params.selection);
|
|
24
|
-
return getClient().
|
|
24
|
+
return getClient().sqlAction.findMany(args).unwrap();
|
|
25
25
|
}
|
|
26
|
-
export async function
|
|
26
|
+
export async function prefetchSqlActionsQuery(queryClient, params) {
|
|
27
27
|
const args = buildListSelectionArgs(params.selection);
|
|
28
28
|
await queryClient.prefetchQuery({
|
|
29
|
-
queryKey:
|
|
30
|
-
queryFn: () => getClient().
|
|
29
|
+
queryKey: sqlActionKeys.list(args),
|
|
30
|
+
queryFn: () => getClient().sqlAction.findMany(args).unwrap(),
|
|
31
31
|
});
|
|
32
32
|
}
|
|
@@ -346,13 +346,6 @@ export declare const encryptedSecretsModuleKeys: {
|
|
|
346
346
|
/** Detail query keys */ readonly details: () => readonly ["encryptedsecretsmodule", "detail"];
|
|
347
347
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["encryptedsecretsmodule", "detail", string | number];
|
|
348
348
|
};
|
|
349
|
-
export declare const fieldModuleKeys: {
|
|
350
|
-
/** All fieldModule queries */ readonly all: readonly ["fieldmodule"];
|
|
351
|
-
/** List query keys */ readonly lists: () => readonly ["fieldmodule", "list"];
|
|
352
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["fieldmodule", "list", object];
|
|
353
|
-
/** Detail query keys */ readonly details: () => readonly ["fieldmodule", "detail"];
|
|
354
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["fieldmodule", "detail", string | number];
|
|
355
|
-
};
|
|
356
349
|
export declare const invitesModuleKeys: {
|
|
357
350
|
/** All invitesModule queries */ readonly all: readonly ["invitesmodule"];
|
|
358
351
|
/** List query keys */ readonly lists: () => readonly ["invitesmodule", "list"];
|
|
@@ -661,6 +654,13 @@ export declare const roleTypeKeys: {
|
|
|
661
654
|
/** Detail query keys */ readonly details: () => readonly ["roletype", "detail"];
|
|
662
655
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["roletype", "detail", string | number];
|
|
663
656
|
};
|
|
657
|
+
export declare const migrateFileKeys: {
|
|
658
|
+
/** All migrateFile queries */ readonly all: readonly ["migratefile"];
|
|
659
|
+
/** List query keys */ readonly lists: () => readonly ["migratefile", "list"];
|
|
660
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["migratefile", "list", object];
|
|
661
|
+
/** Detail query keys */ readonly details: () => readonly ["migratefile", "detail"];
|
|
662
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["migratefile", "detail", string | number];
|
|
663
|
+
};
|
|
664
664
|
export declare const appLimitDefaultKeys: {
|
|
665
665
|
/** All appLimitDefault queries */ readonly all: readonly ["applimitdefault"];
|
|
666
666
|
/** List query keys */ readonly lists: () => readonly ["applimitdefault", "list"];
|
|
@@ -717,12 +717,12 @@ export declare const orgMembershipDefaultKeys: {
|
|
|
717
717
|
/** Detail query keys */ readonly details: () => readonly ["orgmembershipdefault", "detail"];
|
|
718
718
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orgmembershipdefault", "detail", string | number];
|
|
719
719
|
};
|
|
720
|
-
export declare const
|
|
721
|
-
/** All
|
|
722
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
723
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
724
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
725
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
720
|
+
export declare const sqlActionKeys: {
|
|
721
|
+
/** All sqlAction queries */ readonly all: readonly ["sqlaction"];
|
|
722
|
+
/** List query keys */ readonly lists: () => readonly ["sqlaction", "list"];
|
|
723
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["sqlaction", "list", object];
|
|
724
|
+
/** Detail query keys */ readonly details: () => readonly ["sqlaction", "detail"];
|
|
725
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["sqlaction", "detail", string | number];
|
|
726
726
|
};
|
|
727
727
|
export declare const userKeys: {
|
|
728
728
|
/** All user queries */ readonly all: readonly ["user"];
|
|
@@ -1139,13 +1139,6 @@ export declare const queryKeys: {
|
|
|
1139
1139
|
/** Detail query keys */ readonly details: () => readonly ["encryptedsecretsmodule", "detail"];
|
|
1140
1140
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["encryptedsecretsmodule", "detail", string | number];
|
|
1141
1141
|
};
|
|
1142
|
-
readonly fieldModule: {
|
|
1143
|
-
/** All fieldModule queries */ readonly all: readonly ["fieldmodule"];
|
|
1144
|
-
/** List query keys */ readonly lists: () => readonly ["fieldmodule", "list"];
|
|
1145
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["fieldmodule", "list", object];
|
|
1146
|
-
/** Detail query keys */ readonly details: () => readonly ["fieldmodule", "detail"];
|
|
1147
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["fieldmodule", "detail", string | number];
|
|
1148
|
-
};
|
|
1149
1142
|
readonly invitesModule: {
|
|
1150
1143
|
/** All invitesModule queries */ readonly all: readonly ["invitesmodule"];
|
|
1151
1144
|
/** List query keys */ readonly lists: () => readonly ["invitesmodule", "list"];
|
|
@@ -1454,6 +1447,13 @@ export declare const queryKeys: {
|
|
|
1454
1447
|
/** Detail query keys */ readonly details: () => readonly ["roletype", "detail"];
|
|
1455
1448
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["roletype", "detail", string | number];
|
|
1456
1449
|
};
|
|
1450
|
+
readonly migrateFile: {
|
|
1451
|
+
/** All migrateFile queries */ readonly all: readonly ["migratefile"];
|
|
1452
|
+
/** List query keys */ readonly lists: () => readonly ["migratefile", "list"];
|
|
1453
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["migratefile", "list", object];
|
|
1454
|
+
/** Detail query keys */ readonly details: () => readonly ["migratefile", "detail"];
|
|
1455
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["migratefile", "detail", string | number];
|
|
1456
|
+
};
|
|
1457
1457
|
readonly appLimitDefault: {
|
|
1458
1458
|
/** All appLimitDefault queries */ readonly all: readonly ["applimitdefault"];
|
|
1459
1459
|
/** List query keys */ readonly lists: () => readonly ["applimitdefault", "list"];
|
|
@@ -1510,12 +1510,12 @@ export declare const queryKeys: {
|
|
|
1510
1510
|
/** Detail query keys */ readonly details: () => readonly ["orgmembershipdefault", "detail"];
|
|
1511
1511
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orgmembershipdefault", "detail", string | number];
|
|
1512
1512
|
};
|
|
1513
|
-
readonly
|
|
1514
|
-
/** All
|
|
1515
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
1516
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
1517
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
1518
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
1513
|
+
readonly sqlAction: {
|
|
1514
|
+
/** All sqlAction queries */ readonly all: readonly ["sqlaction"];
|
|
1515
|
+
/** List query keys */ readonly lists: () => readonly ["sqlaction", "list"];
|
|
1516
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["sqlaction", "list", object];
|
|
1517
|
+
/** Detail query keys */ readonly details: () => readonly ["sqlaction", "detail"];
|
|
1518
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["sqlaction", "detail", string | number];
|
|
1519
1519
|
};
|
|
1520
1520
|
readonly user: {
|
|
1521
1521
|
/** All user queries */ readonly all: readonly ["user"];
|
|
@@ -359,13 +359,6 @@ export const encryptedSecretsModuleKeys = {
|
|
|
359
359
|
/** Detail query keys */ details: () => [...encryptedSecretsModuleKeys.all, 'detail'],
|
|
360
360
|
/** Detail query key for specific item */ detail: (id) => [...encryptedSecretsModuleKeys.details(), id],
|
|
361
361
|
};
|
|
362
|
-
export const fieldModuleKeys = {
|
|
363
|
-
/** All fieldModule queries */ all: ['fieldmodule'],
|
|
364
|
-
/** List query keys */ lists: () => [...fieldModuleKeys.all, 'list'],
|
|
365
|
-
/** List query key with variables */ list: (variables) => [...fieldModuleKeys.lists(), variables],
|
|
366
|
-
/** Detail query keys */ details: () => [...fieldModuleKeys.all, 'detail'],
|
|
367
|
-
/** Detail query key for specific item */ detail: (id) => [...fieldModuleKeys.details(), id],
|
|
368
|
-
};
|
|
369
362
|
export const invitesModuleKeys = {
|
|
370
363
|
/** All invitesModule queries */ all: ['invitesmodule'],
|
|
371
364
|
/** List query keys */ lists: () => [...invitesModuleKeys.all, 'list'],
|
|
@@ -674,6 +667,13 @@ export const roleTypeKeys = {
|
|
|
674
667
|
/** Detail query keys */ details: () => [...roleTypeKeys.all, 'detail'],
|
|
675
668
|
/** Detail query key for specific item */ detail: (id) => [...roleTypeKeys.details(), id],
|
|
676
669
|
};
|
|
670
|
+
export const migrateFileKeys = {
|
|
671
|
+
/** All migrateFile queries */ all: ['migratefile'],
|
|
672
|
+
/** List query keys */ lists: () => [...migrateFileKeys.all, 'list'],
|
|
673
|
+
/** List query key with variables */ list: (variables) => [...migrateFileKeys.lists(), variables],
|
|
674
|
+
/** Detail query keys */ details: () => [...migrateFileKeys.all, 'detail'],
|
|
675
|
+
/** Detail query key for specific item */ detail: (id) => [...migrateFileKeys.details(), id],
|
|
676
|
+
};
|
|
677
677
|
export const appLimitDefaultKeys = {
|
|
678
678
|
/** All appLimitDefault queries */ all: ['applimitdefault'],
|
|
679
679
|
/** List query keys */ lists: () => [...appLimitDefaultKeys.all, 'list'],
|
|
@@ -730,12 +730,12 @@ export const orgMembershipDefaultKeys = {
|
|
|
730
730
|
/** Detail query keys */ details: () => [...orgMembershipDefaultKeys.all, 'detail'],
|
|
731
731
|
/** Detail query key for specific item */ detail: (id) => [...orgMembershipDefaultKeys.details(), id],
|
|
732
732
|
};
|
|
733
|
-
export const
|
|
734
|
-
/** All
|
|
735
|
-
/** List query keys */ lists: () => [...
|
|
736
|
-
/** List query key with variables */ list: (variables) => [...
|
|
737
|
-
/** Detail query keys */ details: () => [...
|
|
738
|
-
/** Detail query key for specific item */ detail: (id) => [...
|
|
733
|
+
export const sqlActionKeys = {
|
|
734
|
+
/** All sqlAction queries */ all: ['sqlaction'],
|
|
735
|
+
/** List query keys */ lists: () => [...sqlActionKeys.all, 'list'],
|
|
736
|
+
/** List query key with variables */ list: (variables) => [...sqlActionKeys.lists(), variables],
|
|
737
|
+
/** Detail query keys */ details: () => [...sqlActionKeys.all, 'detail'],
|
|
738
|
+
/** Detail query key for specific item */ detail: (id) => [...sqlActionKeys.details(), id],
|
|
739
739
|
};
|
|
740
740
|
export const userKeys = {
|
|
741
741
|
/** All user queries */ all: ['user'],
|
|
@@ -861,7 +861,6 @@ export const queryKeys = {
|
|
|
861
861
|
denormalizedTableField: denormalizedTableFieldKeys,
|
|
862
862
|
emailsModule: emailsModuleKeys,
|
|
863
863
|
encryptedSecretsModule: encryptedSecretsModuleKeys,
|
|
864
|
-
fieldModule: fieldModuleKeys,
|
|
865
864
|
invitesModule: invitesModuleKeys,
|
|
866
865
|
levelsModule: levelsModuleKeys,
|
|
867
866
|
limitsModule: limitsModuleKeys,
|
|
@@ -906,6 +905,7 @@ export const queryKeys = {
|
|
|
906
905
|
store: storeKeys,
|
|
907
906
|
appPermissionDefault: appPermissionDefaultKeys,
|
|
908
907
|
roleType: roleTypeKeys,
|
|
908
|
+
migrateFile: migrateFileKeys,
|
|
909
909
|
appLimitDefault: appLimitDefaultKeys,
|
|
910
910
|
orgLimitDefault: orgLimitDefaultKeys,
|
|
911
911
|
nodeTypeRegistry: nodeTypeRegistryKeys,
|
|
@@ -914,7 +914,7 @@ export const queryKeys = {
|
|
|
914
914
|
appMembershipDefault: appMembershipDefaultKeys,
|
|
915
915
|
rlsModule: rlsModuleKeys,
|
|
916
916
|
orgMembershipDefault: orgMembershipDefaultKeys,
|
|
917
|
-
|
|
917
|
+
sqlAction: sqlActionKeys,
|
|
918
918
|
user: userKeys,
|
|
919
919
|
astMigration: astMigrationKeys,
|
|
920
920
|
appMembership: appMembershipKeys,
|