@constructive-io/react 1.9.2 → 1.9.3
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/index.d.ts +1 -1
- package/admin/hooks/index.js +1 -1
- package/admin/hooks/invalidation.d.ts +24 -0
- package/admin/hooks/invalidation.js +64 -0
- package/admin/hooks/mutation-keys.d.ts +48 -0
- package/admin/hooks/mutation-keys.js +32 -1
- package/admin/hooks/mutations/index.d.ts +8 -0
- package/admin/hooks/mutations/index.js +8 -0
- package/admin/hooks/mutations/useCreateOrgChartEdgeGrantMutation.d.ts +34 -0
- package/{api/hooks/mutations/useCreatePlatformApiModuleMutation.js → admin/hooks/mutations/useCreateOrgChartEdgeGrantMutation.js} +6 -6
- package/admin/hooks/mutations/useCreateOrgChartEdgeMutation.d.ts +34 -0
- package/admin/hooks/mutations/useCreateOrgChartEdgeMutation.js +34 -0
- package/admin/hooks/mutations/useCreateOrgGetManagersRecordMutation.d.ts +34 -0
- package/admin/hooks/mutations/useCreateOrgGetManagersRecordMutation.js +34 -0
- package/admin/hooks/mutations/useCreateOrgGetSubordinatesRecordMutation.d.ts +34 -0
- package/admin/hooks/mutations/useCreateOrgGetSubordinatesRecordMutation.js +34 -0
- package/admin/hooks/mutations/useDeleteOrgChartEdgeGrantMutation.d.ts +38 -0
- package/{api/hooks/mutations/useDeletePlatformApiModuleMutation.js → admin/hooks/mutations/useDeleteOrgChartEdgeGrantMutation.js} +7 -7
- package/admin/hooks/mutations/useDeleteOrgChartEdgeMutation.d.ts +38 -0
- package/admin/hooks/mutations/useDeleteOrgChartEdgeMutation.js +39 -0
- package/admin/hooks/mutations/useUpdateOrgChartEdgeGrantMutation.d.ts +40 -0
- package/{api/hooks/mutations/useUpdatePlatformApiModuleMutation.js → admin/hooks/mutations/useUpdateOrgChartEdgeGrantMutation.js} +9 -9
- package/admin/hooks/mutations/useUpdateOrgChartEdgeMutation.d.ts +40 -0
- package/admin/hooks/mutations/useUpdateOrgChartEdgeMutation.js +40 -0
- package/admin/hooks/queries/index.d.ts +7 -0
- package/admin/hooks/queries/index.js +7 -0
- package/admin/hooks/queries/useOrgChartEdgeGrantQuery.d.ts +65 -0
- package/{api/hooks/queries/usePlatformApiModuleQuery.js → admin/hooks/queries/useOrgChartEdgeGrantQuery.js} +14 -14
- package/admin/hooks/queries/useOrgChartEdgeGrantsQuery.d.ts +69 -0
- package/admin/hooks/queries/useOrgChartEdgeGrantsQuery.js +38 -0
- package/admin/hooks/queries/useOrgChartEdgeQuery.d.ts +65 -0
- package/admin/hooks/queries/useOrgChartEdgeQuery.js +53 -0
- package/admin/hooks/queries/useOrgChartEdgesQuery.d.ts +69 -0
- package/admin/hooks/queries/useOrgChartEdgesQuery.js +38 -0
- package/admin/hooks/queries/useOrgGetManagersQuery.d.ts +69 -0
- package/admin/hooks/queries/useOrgGetManagersQuery.js +38 -0
- package/admin/hooks/queries/useOrgGetSubordinatesQuery.d.ts +69 -0
- package/admin/hooks/queries/useOrgGetSubordinatesQuery.js +38 -0
- package/admin/hooks/queries/useOrgIsManagerOfQuery.d.ts +53 -0
- package/admin/hooks/queries/useOrgIsManagerOfQuery.js +53 -0
- package/admin/hooks/query-keys.d.ts +58 -0
- package/admin/hooks/query-keys.js +34 -1
- package/admin/orm/index.d.ts +13 -0
- package/admin/orm/index.js +8 -0
- package/admin/orm/input-types.d.ts +399 -0
- package/admin/orm/models/index.d.ts +4 -0
- package/admin/orm/models/index.js +9 -1
- package/admin/orm/models/orgChartEdge.d.ts +54 -0
- package/admin/orm/models/orgChartEdge.js +104 -0
- package/admin/orm/models/orgChartEdgeGrant.d.ts +54 -0
- package/{api/orm/models/platformApiModule.js → admin/orm/models/orgChartEdgeGrant.js} +27 -27
- package/admin/orm/models/orgGetManagersRecord.d.ts +30 -0
- package/admin/orm/models/orgGetManagersRecord.js +59 -0
- package/admin/orm/models/orgGetSubordinatesRecord.d.ts +30 -0
- package/admin/orm/models/orgGetSubordinatesRecord.js +59 -0
- package/admin/orm/query/index.d.ts +11 -0
- package/admin/orm/query/index.js +24 -0
- package/admin/schema-types.d.ts +247 -1
- package/admin/types.d.ts +29 -0
- package/api/hooks/index.d.ts +1 -1
- package/api/hooks/index.js +1 -1
- package/api/hooks/invalidation.d.ts +6 -12
- package/api/hooks/invalidation.js +16 -32
- package/api/hooks/mutation-keys.d.ts +12 -24
- package/api/hooks/mutation-keys.js +9 -16
- package/api/hooks/mutations/index.d.ts +3 -6
- package/api/hooks/mutations/index.js +3 -6
- package/api/hooks/mutations/useCreateDomainTypeMutation.d.ts +34 -0
- package/api/hooks/mutations/{useCreateApiModuleMutation.js → useCreateDomainTypeMutation.js} +6 -6
- package/api/hooks/mutations/useDeleteDomainTypeMutation.d.ts +38 -0
- package/api/hooks/mutations/{useDeleteApiModuleMutation.js → useDeleteDomainTypeMutation.js} +7 -7
- package/api/hooks/mutations/useUpdateDomainTypeMutation.d.ts +40 -0
- package/api/hooks/mutations/{useUpdateApiModuleMutation.js → useUpdateDomainTypeMutation.js} +9 -9
- package/api/hooks/queries/index.d.ts +2 -4
- package/api/hooks/queries/index.js +2 -4
- package/api/hooks/queries/useDomainTypeQuery.d.ts +65 -0
- package/api/hooks/queries/{useApiModuleQuery.js → useDomainTypeQuery.js} +14 -14
- package/api/hooks/queries/useDomainTypesQuery.d.ts +69 -0
- package/api/hooks/queries/{useApiModulesQuery.js → useDomainTypesQuery.js} +14 -14
- package/api/hooks/query-keys.d.ts +14 -28
- package/api/hooks/query-keys.js +10 -18
- package/api/orm/index.d.ts +2 -4
- package/api/orm/index.js +2 -4
- package/api/orm/input-types.d.ts +378 -468
- package/api/orm/input-types.js +2 -2
- package/api/orm/models/domainType.d.ts +54 -0
- package/api/orm/models/{apiModule.js → domainType.js} +27 -27
- package/api/orm/models/index.d.ts +1 -2
- package/api/orm/models/index.js +4 -6
- package/api/schema-types.d.ts +157 -226
- package/api/types.d.ts +16 -17
- package/compute/orm/input-types.d.ts +42 -3
- package/compute/schema-types.d.ts +25 -3
- package/compute/types.d.ts +5 -0
- package/esm/admin/hooks/index.d.ts +1 -1
- package/esm/admin/hooks/index.js +1 -1
- package/esm/admin/hooks/invalidation.d.ts +24 -0
- package/esm/admin/hooks/invalidation.js +65 -1
- package/esm/admin/hooks/mutation-keys.d.ts +48 -0
- package/esm/admin/hooks/mutation-keys.js +31 -0
- package/esm/admin/hooks/mutations/index.d.ts +8 -0
- package/esm/admin/hooks/mutations/index.js +8 -0
- package/esm/admin/hooks/mutations/useCreateOrgChartEdgeGrantMutation.d.ts +34 -0
- package/esm/admin/hooks/mutations/useCreateOrgChartEdgeGrantMutation.js +31 -0
- package/esm/admin/hooks/mutations/useCreateOrgChartEdgeMutation.d.ts +34 -0
- package/esm/{api/hooks/mutations/useCreatePlatformApiModuleMutation.js → admin/hooks/mutations/useCreateOrgChartEdgeMutation.js} +7 -7
- package/esm/admin/hooks/mutations/useCreateOrgGetManagersRecordMutation.d.ts +34 -0
- package/esm/admin/hooks/mutations/useCreateOrgGetManagersRecordMutation.js +31 -0
- package/esm/admin/hooks/mutations/useCreateOrgGetSubordinatesRecordMutation.d.ts +34 -0
- package/esm/admin/hooks/mutations/useCreateOrgGetSubordinatesRecordMutation.js +31 -0
- package/esm/admin/hooks/mutations/useDeleteOrgChartEdgeGrantMutation.d.ts +38 -0
- package/esm/{api/hooks/mutations/useDeletePlatformApiModuleMutation.js → admin/hooks/mutations/useDeleteOrgChartEdgeGrantMutation.js} +8 -8
- package/esm/admin/hooks/mutations/useDeleteOrgChartEdgeMutation.d.ts +38 -0
- package/esm/admin/hooks/mutations/useDeleteOrgChartEdgeMutation.js +36 -0
- package/esm/admin/hooks/mutations/useUpdateOrgChartEdgeGrantMutation.d.ts +40 -0
- package/esm/{api/hooks/mutations/useUpdatePlatformApiModuleMutation.js → admin/hooks/mutations/useUpdateOrgChartEdgeGrantMutation.js} +10 -10
- package/esm/admin/hooks/mutations/useUpdateOrgChartEdgeMutation.d.ts +40 -0
- package/esm/admin/hooks/mutations/useUpdateOrgChartEdgeMutation.js +37 -0
- package/esm/admin/hooks/queries/index.d.ts +7 -0
- package/esm/admin/hooks/queries/index.js +7 -0
- package/esm/admin/hooks/queries/useOrgChartEdgeGrantQuery.d.ts +65 -0
- package/esm/{api/hooks/queries/usePlatformApiModuleQuery.js → admin/hooks/queries/useOrgChartEdgeGrantQuery.js} +11 -11
- package/esm/admin/hooks/queries/useOrgChartEdgeGrantsQuery.d.ts +69 -0
- package/esm/{api/hooks/queries/usePlatformApiModulesQuery.js → admin/hooks/queries/useOrgChartEdgeGrantsQuery.js} +11 -11
- package/esm/admin/hooks/queries/useOrgChartEdgeQuery.d.ts +65 -0
- package/esm/admin/hooks/queries/useOrgChartEdgeQuery.js +47 -0
- package/esm/admin/hooks/queries/useOrgChartEdgesQuery.d.ts +69 -0
- package/esm/admin/hooks/queries/useOrgChartEdgesQuery.js +32 -0
- package/esm/admin/hooks/queries/useOrgGetManagersQuery.d.ts +69 -0
- package/esm/admin/hooks/queries/useOrgGetManagersQuery.js +32 -0
- package/esm/admin/hooks/queries/useOrgGetSubordinatesQuery.d.ts +69 -0
- package/esm/admin/hooks/queries/useOrgGetSubordinatesQuery.js +32 -0
- package/esm/admin/hooks/queries/useOrgIsManagerOfQuery.d.ts +53 -0
- package/esm/admin/hooks/queries/useOrgIsManagerOfQuery.js +47 -0
- package/esm/admin/hooks/query-keys.d.ts +58 -0
- package/esm/admin/hooks/query-keys.js +33 -0
- package/esm/admin/orm/index.d.ts +13 -0
- package/esm/admin/orm/index.js +8 -0
- package/esm/admin/orm/input-types.d.ts +399 -0
- package/esm/admin/orm/models/index.d.ts +4 -0
- package/esm/admin/orm/models/index.js +4 -0
- package/esm/admin/orm/models/orgChartEdge.d.ts +54 -0
- package/esm/admin/orm/models/orgChartEdge.js +100 -0
- package/esm/admin/orm/models/orgChartEdgeGrant.d.ts +54 -0
- package/esm/{api/orm/models/platformApiModule.js → admin/orm/models/orgChartEdgeGrant.js} +25 -25
- package/esm/admin/orm/models/orgGetManagersRecord.d.ts +30 -0
- package/esm/admin/orm/models/orgGetManagersRecord.js +55 -0
- package/esm/admin/orm/models/orgGetSubordinatesRecord.d.ts +30 -0
- package/esm/admin/orm/models/orgGetSubordinatesRecord.js +55 -0
- package/esm/admin/orm/query/index.d.ts +11 -0
- package/esm/admin/orm/query/index.js +24 -0
- package/esm/admin/schema-types.d.ts +247 -1
- package/esm/admin/types.d.ts +29 -0
- package/esm/api/hooks/index.d.ts +1 -1
- package/esm/api/hooks/index.js +1 -1
- package/esm/api/hooks/invalidation.d.ts +6 -12
- package/esm/api/hooks/invalidation.js +17 -33
- package/esm/api/hooks/mutation-keys.d.ts +12 -24
- package/esm/api/hooks/mutation-keys.js +7 -14
- package/esm/api/hooks/mutations/index.d.ts +3 -6
- package/esm/api/hooks/mutations/index.js +3 -6
- package/esm/api/hooks/mutations/useCreateDomainTypeMutation.d.ts +34 -0
- package/esm/api/hooks/mutations/{useCreateApiModuleMutation.js → useCreateDomainTypeMutation.js} +7 -7
- package/esm/api/hooks/mutations/useDeleteDomainTypeMutation.d.ts +38 -0
- package/esm/api/hooks/mutations/{useDeleteApiModuleMutation.js → useDeleteDomainTypeMutation.js} +8 -8
- package/esm/api/hooks/mutations/useUpdateDomainTypeMutation.d.ts +40 -0
- package/esm/api/hooks/mutations/{useUpdateApiModuleMutation.js → useUpdateDomainTypeMutation.js} +10 -10
- package/esm/api/hooks/queries/index.d.ts +2 -4
- package/esm/api/hooks/queries/index.js +2 -4
- package/esm/api/hooks/queries/useDomainTypeQuery.d.ts +65 -0
- package/esm/api/hooks/queries/{useApiModuleQuery.js → useDomainTypeQuery.js} +11 -11
- package/esm/api/hooks/queries/useDomainTypesQuery.d.ts +69 -0
- package/esm/api/hooks/queries/{useApiModulesQuery.js → useDomainTypesQuery.js} +11 -11
- package/esm/api/hooks/query-keys.d.ts +14 -28
- package/esm/api/hooks/query-keys.js +8 -16
- package/esm/api/orm/index.d.ts +2 -4
- package/esm/api/orm/index.js +2 -4
- package/esm/api/orm/input-types.d.ts +378 -468
- package/esm/api/orm/input-types.js +2 -2
- package/esm/api/orm/models/domainType.d.ts +54 -0
- package/esm/api/orm/models/{apiModule.js → domainType.js} +25 -25
- package/esm/api/orm/models/index.d.ts +1 -2
- package/esm/api/orm/models/index.js +1 -2
- package/esm/api/schema-types.d.ts +157 -226
- package/esm/api/types.d.ts +16 -17
- package/esm/compute/orm/input-types.d.ts +42 -3
- package/esm/compute/schema-types.d.ts +25 -3
- package/esm/compute/types.d.ts +5 -0
- package/esm/modules/orm/input-types.d.ts +9 -16
- package/esm/modules/schema-types.d.ts +6 -10
- package/esm/modules/types.d.ts +1 -2
- package/modules/orm/input-types.d.ts +9 -16
- package/modules/schema-types.d.ts +6 -10
- package/modules/types.d.ts +1 -2
- package/package.json +5 -5
- package/api/hooks/mutations/useCreateApiModuleMutation.d.ts +0 -34
- package/api/hooks/mutations/useCreatePlatformApiModuleMutation.d.ts +0 -34
- package/api/hooks/mutations/useDeleteApiModuleMutation.d.ts +0 -38
- package/api/hooks/mutations/useDeletePlatformApiModuleMutation.d.ts +0 -38
- package/api/hooks/mutations/useUpdateApiModuleMutation.d.ts +0 -40
- package/api/hooks/mutations/useUpdatePlatformApiModuleMutation.d.ts +0 -40
- package/api/hooks/queries/useApiModuleQuery.d.ts +0 -65
- package/api/hooks/queries/useApiModulesQuery.d.ts +0 -69
- package/api/hooks/queries/usePlatformApiModuleQuery.d.ts +0 -65
- package/api/hooks/queries/usePlatformApiModulesQuery.d.ts +0 -69
- package/api/hooks/queries/usePlatformApiModulesQuery.js +0 -38
- package/api/orm/models/apiModule.d.ts +0 -54
- package/api/orm/models/platformApiModule.d.ts +0 -54
- package/esm/api/hooks/mutations/useCreateApiModuleMutation.d.ts +0 -34
- package/esm/api/hooks/mutations/useCreatePlatformApiModuleMutation.d.ts +0 -34
- package/esm/api/hooks/mutations/useDeleteApiModuleMutation.d.ts +0 -38
- package/esm/api/hooks/mutations/useDeletePlatformApiModuleMutation.d.ts +0 -38
- package/esm/api/hooks/mutations/useUpdateApiModuleMutation.d.ts +0 -40
- package/esm/api/hooks/mutations/useUpdatePlatformApiModuleMutation.d.ts +0 -40
- package/esm/api/hooks/queries/useApiModuleQuery.d.ts +0 -65
- package/esm/api/hooks/queries/useApiModulesQuery.d.ts +0 -69
- package/esm/api/hooks/queries/usePlatformApiModuleQuery.d.ts +0 -65
- package/esm/api/hooks/queries/usePlatformApiModulesQuery.d.ts +0 -69
- package/esm/api/orm/models/apiModule.d.ts +0 -54
- package/esm/api/orm/models/platformApiModule.d.ts +0 -54
|
@@ -10,13 +10,6 @@ export declare const apiKeys: {
|
|
|
10
10
|
/** Detail query keys */ readonly details: () => readonly ["api", "detail"];
|
|
11
11
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["api", "detail", string | number];
|
|
12
12
|
};
|
|
13
|
-
export declare const apiModuleKeys: {
|
|
14
|
-
/** All apiModule queries */ readonly all: readonly ["apimodule"];
|
|
15
|
-
/** List query keys */ readonly lists: () => readonly ["apimodule", "list"];
|
|
16
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["apimodule", "list", object];
|
|
17
|
-
/** Detail query keys */ readonly details: () => readonly ["apimodule", "detail"];
|
|
18
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["apimodule", "detail", string | number];
|
|
19
|
-
};
|
|
20
13
|
export declare const apiSchemaKeys: {
|
|
21
14
|
/** All apiSchema queries */ readonly all: readonly ["apischema"];
|
|
22
15
|
/** List query keys */ readonly lists: () => readonly ["apischema", "list"];
|
|
@@ -101,6 +94,13 @@ export declare const domainEventKeys: {
|
|
|
101
94
|
/** Detail query keys */ readonly details: () => readonly ["domainevent", "detail"];
|
|
102
95
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["domainevent", "detail", string | number];
|
|
103
96
|
};
|
|
97
|
+
export declare const domainTypeKeys: {
|
|
98
|
+
/** All domainType queries */ readonly all: readonly ["domaintype"];
|
|
99
|
+
/** List query keys */ readonly lists: () => readonly ["domaintype", "list"];
|
|
100
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["domaintype", "list", object];
|
|
101
|
+
/** Detail query keys */ readonly details: () => readonly ["domaintype", "detail"];
|
|
102
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["domaintype", "detail", string | number];
|
|
103
|
+
};
|
|
104
104
|
export declare const domainVerificationKeys: {
|
|
105
105
|
/** All domainVerification queries */ readonly all: readonly ["domainverification"];
|
|
106
106
|
/** List query keys */ readonly lists: () => readonly ["domainverification", "list"];
|
|
@@ -206,13 +206,6 @@ export declare const platformApiKeys: {
|
|
|
206
206
|
/** Detail query keys */ readonly details: () => readonly ["platformapi", "detail"];
|
|
207
207
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["platformapi", "detail", string | number];
|
|
208
208
|
};
|
|
209
|
-
export declare const platformApiModuleKeys: {
|
|
210
|
-
/** All platformApiModule queries */ readonly all: readonly ["platformapimodule"];
|
|
211
|
-
/** List query keys */ readonly lists: () => readonly ["platformapimodule", "list"];
|
|
212
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["platformapimodule", "list", object];
|
|
213
|
-
/** Detail query keys */ readonly details: () => readonly ["platformapimodule", "detail"];
|
|
214
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["platformapimodule", "detail", string | number];
|
|
215
|
-
};
|
|
216
209
|
export declare const platformApiSchemaKeys: {
|
|
217
210
|
/** All platformApiSchema queries */ readonly all: readonly ["platformapischema"];
|
|
218
211
|
/** List query keys */ readonly lists: () => readonly ["platformapischema", "list"];
|
|
@@ -494,13 +487,6 @@ export declare const queryKeys: {
|
|
|
494
487
|
/** Detail query keys */ readonly details: () => readonly ["api", "detail"];
|
|
495
488
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["api", "detail", string | number];
|
|
496
489
|
};
|
|
497
|
-
readonly apiModule: {
|
|
498
|
-
/** All apiModule queries */ readonly all: readonly ["apimodule"];
|
|
499
|
-
/** List query keys */ readonly lists: () => readonly ["apimodule", "list"];
|
|
500
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["apimodule", "list", object];
|
|
501
|
-
/** Detail query keys */ readonly details: () => readonly ["apimodule", "detail"];
|
|
502
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["apimodule", "detail", string | number];
|
|
503
|
-
};
|
|
504
490
|
readonly apiSchema: {
|
|
505
491
|
/** All apiSchema queries */ readonly all: readonly ["apischema"];
|
|
506
492
|
/** List query keys */ readonly lists: () => readonly ["apischema", "list"];
|
|
@@ -585,6 +571,13 @@ export declare const queryKeys: {
|
|
|
585
571
|
/** Detail query keys */ readonly details: () => readonly ["domainevent", "detail"];
|
|
586
572
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["domainevent", "detail", string | number];
|
|
587
573
|
};
|
|
574
|
+
readonly domainType: {
|
|
575
|
+
/** All domainType queries */ readonly all: readonly ["domaintype"];
|
|
576
|
+
/** List query keys */ readonly lists: () => readonly ["domaintype", "list"];
|
|
577
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["domaintype", "list", object];
|
|
578
|
+
/** Detail query keys */ readonly details: () => readonly ["domaintype", "detail"];
|
|
579
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["domaintype", "detail", string | number];
|
|
580
|
+
};
|
|
588
581
|
readonly domainVerification: {
|
|
589
582
|
/** All domainVerification queries */ readonly all: readonly ["domainverification"];
|
|
590
583
|
/** List query keys */ readonly lists: () => readonly ["domainverification", "list"];
|
|
@@ -690,13 +683,6 @@ export declare const queryKeys: {
|
|
|
690
683
|
/** Detail query keys */ readonly details: () => readonly ["platformapi", "detail"];
|
|
691
684
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["platformapi", "detail", string | number];
|
|
692
685
|
};
|
|
693
|
-
readonly platformApiModule: {
|
|
694
|
-
/** All platformApiModule queries */ readonly all: readonly ["platformapimodule"];
|
|
695
|
-
/** List query keys */ readonly lists: () => readonly ["platformapimodule", "list"];
|
|
696
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["platformapimodule", "list", object];
|
|
697
|
-
/** Detail query keys */ readonly details: () => readonly ["platformapimodule", "detail"];
|
|
698
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["platformapimodule", "detail", string | number];
|
|
699
|
-
};
|
|
700
686
|
readonly platformApiSchema: {
|
|
701
687
|
/** All platformApiSchema queries */ readonly all: readonly ["platformapischema"];
|
|
702
688
|
/** List query keys */ readonly lists: () => readonly ["platformapischema", "list"];
|
|
@@ -23,13 +23,6 @@ export const apiKeys = {
|
|
|
23
23
|
/** Detail query keys */ details: () => [...apiKeys.all, 'detail'],
|
|
24
24
|
/** Detail query key for specific item */ detail: (id) => [...apiKeys.details(), id],
|
|
25
25
|
};
|
|
26
|
-
export const apiModuleKeys = {
|
|
27
|
-
/** All apiModule queries */ all: ['apimodule'],
|
|
28
|
-
/** List query keys */ lists: () => [...apiModuleKeys.all, 'list'],
|
|
29
|
-
/** List query key with variables */ list: (variables) => [...apiModuleKeys.lists(), variables],
|
|
30
|
-
/** Detail query keys */ details: () => [...apiModuleKeys.all, 'detail'],
|
|
31
|
-
/** Detail query key for specific item */ detail: (id) => [...apiModuleKeys.details(), id],
|
|
32
|
-
};
|
|
33
26
|
export const apiSchemaKeys = {
|
|
34
27
|
/** All apiSchema queries */ all: ['apischema'],
|
|
35
28
|
/** List query keys */ lists: () => [...apiSchemaKeys.all, 'list'],
|
|
@@ -114,6 +107,13 @@ export const domainEventKeys = {
|
|
|
114
107
|
/** Detail query keys */ details: () => [...domainEventKeys.all, 'detail'],
|
|
115
108
|
/** Detail query key for specific item */ detail: (id) => [...domainEventKeys.details(), id],
|
|
116
109
|
};
|
|
110
|
+
export const domainTypeKeys = {
|
|
111
|
+
/** All domainType queries */ all: ['domaintype'],
|
|
112
|
+
/** List query keys */ lists: () => [...domainTypeKeys.all, 'list'],
|
|
113
|
+
/** List query key with variables */ list: (variables) => [...domainTypeKeys.lists(), variables],
|
|
114
|
+
/** Detail query keys */ details: () => [...domainTypeKeys.all, 'detail'],
|
|
115
|
+
/** Detail query key for specific item */ detail: (id) => [...domainTypeKeys.details(), id],
|
|
116
|
+
};
|
|
117
117
|
export const domainVerificationKeys = {
|
|
118
118
|
/** All domainVerification queries */ all: ['domainverification'],
|
|
119
119
|
/** List query keys */ lists: () => [...domainVerificationKeys.all, 'list'],
|
|
@@ -219,13 +219,6 @@ export const platformApiKeys = {
|
|
|
219
219
|
/** Detail query keys */ details: () => [...platformApiKeys.all, 'detail'],
|
|
220
220
|
/** Detail query key for specific item */ detail: (id) => [...platformApiKeys.details(), id],
|
|
221
221
|
};
|
|
222
|
-
export const platformApiModuleKeys = {
|
|
223
|
-
/** All platformApiModule queries */ all: ['platformapimodule'],
|
|
224
|
-
/** List query keys */ lists: () => [...platformApiModuleKeys.all, 'list'],
|
|
225
|
-
/** List query key with variables */ list: (variables) => [...platformApiModuleKeys.lists(), variables],
|
|
226
|
-
/** Detail query keys */ details: () => [...platformApiModuleKeys.all, 'detail'],
|
|
227
|
-
/** Detail query key for specific item */ detail: (id) => [...platformApiModuleKeys.details(), id],
|
|
228
|
-
};
|
|
229
222
|
export const platformApiSchemaKeys = {
|
|
230
223
|
/** All platformApiSchema queries */ all: ['platformapischema'],
|
|
231
224
|
/** List query keys */ lists: () => [...platformApiSchemaKeys.all, 'list'],
|
|
@@ -504,7 +497,6 @@ export const customQueryKeys = {
|
|
|
504
497
|
*/
|
|
505
498
|
export const queryKeys = {
|
|
506
499
|
api: apiKeys,
|
|
507
|
-
apiModule: apiModuleKeys,
|
|
508
500
|
apiSchema: apiSchemaKeys,
|
|
509
501
|
apiSetting: apiSettingKeys,
|
|
510
502
|
astMigration: astMigrationKeys,
|
|
@@ -517,6 +509,7 @@ export const queryKeys = {
|
|
|
517
509
|
defaultPrivilege: defaultPrivilegeKeys,
|
|
518
510
|
domain: domainKeys,
|
|
519
511
|
domainEvent: domainEventKeys,
|
|
512
|
+
domainType: domainTypeKeys,
|
|
520
513
|
domainVerification: domainVerificationKeys,
|
|
521
514
|
embeddingChunk: embeddingChunkKeys,
|
|
522
515
|
enum: enumKeys,
|
|
@@ -532,7 +525,6 @@ export const queryKeys = {
|
|
|
532
525
|
nodeTypeRegistry: nodeTypeRegistryKeys,
|
|
533
526
|
partition: partitionKeys,
|
|
534
527
|
platformApi: platformApiKeys,
|
|
535
|
-
platformApiModule: platformApiModuleKeys,
|
|
536
528
|
platformApiSchema: platformApiSchemaKeys,
|
|
537
529
|
platformApiSetting: platformApiSettingKeys,
|
|
538
530
|
platformCorsSetting: platformCorsSettingKeys,
|
package/esm/api/orm/index.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { OrmClientConfig } from './client';
|
|
2
2
|
import { ApiModel } from './models/api';
|
|
3
|
-
import { ApiModuleModel } from './models/apiModule';
|
|
4
3
|
import { ApiSchemaModel } from './models/apiSchema';
|
|
5
4
|
import { ApiSettingModel } from './models/apiSetting';
|
|
6
5
|
import { AstMigrationModel } from './models/astMigration';
|
|
@@ -13,6 +12,7 @@ import { DatabaseTransferModel } from './models/databaseTransfer';
|
|
|
13
12
|
import { DefaultPrivilegeModel } from './models/defaultPrivilege';
|
|
14
13
|
import { DomainModel } from './models/domain';
|
|
15
14
|
import { DomainEventModel } from './models/domainEvent';
|
|
15
|
+
import { DomainTypeModel } from './models/domainType';
|
|
16
16
|
import { DomainVerificationModel } from './models/domainVerification';
|
|
17
17
|
import { EmbeddingChunkModel } from './models/embeddingChunk';
|
|
18
18
|
import { EnumModel } from './models/enum';
|
|
@@ -28,7 +28,6 @@ import { ManagedDomainModel } from './models/managedDomain';
|
|
|
28
28
|
import { NodeTypeRegistryModel } from './models/nodeTypeRegistry';
|
|
29
29
|
import { PartitionModel } from './models/partition';
|
|
30
30
|
import { PlatformApiModel } from './models/platformApi';
|
|
31
|
-
import { PlatformApiModuleModel } from './models/platformApiModule';
|
|
32
31
|
import { PlatformApiSchemaModel } from './models/platformApiSchema';
|
|
33
32
|
import { PlatformApiSettingModel } from './models/platformApiSetting';
|
|
34
33
|
import { PlatformCorsSettingModel } from './models/platformCorsSetting';
|
|
@@ -96,7 +95,6 @@ export { createMutationOperations } from './mutation';
|
|
|
96
95
|
*/
|
|
97
96
|
export declare function createClient(config: OrmClientConfig): {
|
|
98
97
|
api: ApiModel;
|
|
99
|
-
apiModule: ApiModuleModel;
|
|
100
98
|
apiSchema: ApiSchemaModel;
|
|
101
99
|
apiSetting: ApiSettingModel;
|
|
102
100
|
astMigration: AstMigrationModel;
|
|
@@ -109,6 +107,7 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
109
107
|
defaultPrivilege: DefaultPrivilegeModel;
|
|
110
108
|
domain: DomainModel;
|
|
111
109
|
domainEvent: DomainEventModel;
|
|
110
|
+
domainType: DomainTypeModel;
|
|
112
111
|
domainVerification: DomainVerificationModel;
|
|
113
112
|
embeddingChunk: EmbeddingChunkModel;
|
|
114
113
|
enum: EnumModel;
|
|
@@ -124,7 +123,6 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
124
123
|
nodeTypeRegistry: NodeTypeRegistryModel;
|
|
125
124
|
partition: PartitionModel;
|
|
126
125
|
platformApi: PlatformApiModel;
|
|
127
|
-
platformApiModule: PlatformApiModuleModel;
|
|
128
126
|
platformApiSchema: PlatformApiSchemaModel;
|
|
129
127
|
platformApiSetting: PlatformApiSettingModel;
|
|
130
128
|
platformCorsSetting: PlatformCorsSettingModel;
|
package/esm/api/orm/index.js
CHANGED
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
*/
|
|
6
6
|
import { OrmClient } from './client';
|
|
7
7
|
import { ApiModel } from './models/api';
|
|
8
|
-
import { ApiModuleModel } from './models/apiModule';
|
|
9
8
|
import { ApiSchemaModel } from './models/apiSchema';
|
|
10
9
|
import { ApiSettingModel } from './models/apiSetting';
|
|
11
10
|
import { AstMigrationModel } from './models/astMigration';
|
|
@@ -18,6 +17,7 @@ import { DatabaseTransferModel } from './models/databaseTransfer';
|
|
|
18
17
|
import { DefaultPrivilegeModel } from './models/defaultPrivilege';
|
|
19
18
|
import { DomainModel } from './models/domain';
|
|
20
19
|
import { DomainEventModel } from './models/domainEvent';
|
|
20
|
+
import { DomainTypeModel } from './models/domainType';
|
|
21
21
|
import { DomainVerificationModel } from './models/domainVerification';
|
|
22
22
|
import { EmbeddingChunkModel } from './models/embeddingChunk';
|
|
23
23
|
import { EnumModel } from './models/enum';
|
|
@@ -33,7 +33,6 @@ import { ManagedDomainModel } from './models/managedDomain';
|
|
|
33
33
|
import { NodeTypeRegistryModel } from './models/nodeTypeRegistry';
|
|
34
34
|
import { PartitionModel } from './models/partition';
|
|
35
35
|
import { PlatformApiModel } from './models/platformApi';
|
|
36
|
-
import { PlatformApiModuleModel } from './models/platformApiModule';
|
|
37
36
|
import { PlatformApiSchemaModel } from './models/platformApiSchema';
|
|
38
37
|
import { PlatformApiSettingModel } from './models/platformApiSetting';
|
|
39
38
|
import { PlatformCorsSettingModel } from './models/platformCorsSetting';
|
|
@@ -104,7 +103,6 @@ export function createClient(config) {
|
|
|
104
103
|
const client = new OrmClient(config);
|
|
105
104
|
return {
|
|
106
105
|
api: new ApiModel(client),
|
|
107
|
-
apiModule: new ApiModuleModel(client),
|
|
108
106
|
apiSchema: new ApiSchemaModel(client),
|
|
109
107
|
apiSetting: new ApiSettingModel(client),
|
|
110
108
|
astMigration: new AstMigrationModel(client),
|
|
@@ -117,6 +115,7 @@ export function createClient(config) {
|
|
|
117
115
|
defaultPrivilege: new DefaultPrivilegeModel(client),
|
|
118
116
|
domain: new DomainModel(client),
|
|
119
117
|
domainEvent: new DomainEventModel(client),
|
|
118
|
+
domainType: new DomainTypeModel(client),
|
|
120
119
|
domainVerification: new DomainVerificationModel(client),
|
|
121
120
|
embeddingChunk: new EmbeddingChunkModel(client),
|
|
122
121
|
enum: new EnumModel(client),
|
|
@@ -132,7 +131,6 @@ export function createClient(config) {
|
|
|
132
131
|
nodeTypeRegistry: new NodeTypeRegistryModel(client),
|
|
133
132
|
partition: new PartitionModel(client),
|
|
134
133
|
platformApi: new PlatformApiModel(client),
|
|
135
|
-
platformApiModule: new PlatformApiModuleModel(client),
|
|
136
134
|
platformApiSchema: new PlatformApiSchemaModel(client),
|
|
137
135
|
platformApiSetting: new PlatformApiSettingModel(client),
|
|
138
136
|
platformCorsSetting: new PlatformCorsSettingModel(client),
|