@orchestrator-ui/orchestrator-ui-components 3.10.0 → 4.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +9 -9
- package/.turbo/turbo-lint.log +2 -11
- package/.turbo/turbo-test.log +6 -6
- package/CHANGELOG.md +319 -307
- package/dist/index.d.ts +812 -794
- package/dist/index.js +1047 -488
- package/dist/index.js.map +1 -1
- package/eslint.config.js +5 -0
- package/package.json +6 -7
- package/src/components/WfoForms/UserInputForm.tsx +0 -1
- package/src/components/WfoForms/formFields/AcceptField.tsx +2 -2
- package/src/components/WfoForms/formFields/ListSelectField.tsx +0 -1
- package/src/components/WfoForms/formFields/SelectField/SelectField.tsx +1 -1
- package/src/components/WfoForms/formFields/deprecated/ImsNodeIdField.tsx +2 -2
- package/src/components/WfoForms/formFields/deprecated/ImsPortIdField.tsx +2 -2
- package/src/components/WfoForms/formFields/deprecated/VlanField.tsx +11 -11
- package/src/components/WfoPageTemplate/WfoPageHeader/WfoHamburgerMenu.tsx +1 -1
- package/src/components/WfoSubscription/WfoCustomerDescriptionsField.tsx +2 -3
- package/src/components/WfoTable/WfoTableSettingsModal/WfoTableSettingsModal.tsx +1 -1
- package/src/components/WfoWorkflowSteps/WfoStep/WfoStep.tsx +4 -2
- package/src/components/WfoWorkflowSteps/WfoWorkflowStepList/WfoWorkflowStepList.tsx +4 -6
- package/src/configuration/version.ts +1 -1
- package/src/pages/processes/WfoProcessDetail.tsx +3 -3
- package/src/rtk/api.ts +4 -2
- package/src/types/types.ts +1 -1
- package/src/utils/getDefaultTableConfig.ts +20 -16
- package/src/utils/getEnvironmentVariables.ts +13 -10
- package/eslintrc.js +0 -3
- package/src/stories/Button.jsx +0 -62
- package/src/stories/Button.stories.js +0 -45
- package/src/stories/Configure.mdx +0 -452
- package/src/stories/Header.jsx +0 -74
- package/src/stories/Header.stories.js +0 -23
- package/src/stories/Page.jsx +0 -89
- package/src/stories/Page.stories.js +0 -25
- package/src/stories/assets/accessibility.png +0 -0
- package/src/stories/assets/accessibility.svg +0 -5
- package/src/stories/assets/addon-library.png +0 -0
- package/src/stories/assets/assets.png +0 -0
- package/src/stories/assets/context.png +0 -0
- package/src/stories/assets/discord.svg +0 -15
- package/src/stories/assets/docs.png +0 -0
- package/src/stories/assets/figma-plugin.png +0 -0
- package/src/stories/assets/github.svg +0 -3
- package/src/stories/assets/share.png +0 -0
- package/src/stories/assets/styling.png +0 -0
- package/src/stories/assets/testing.png +0 -0
- package/src/stories/assets/theming.png +0 -0
- package/src/stories/assets/tutorials.svg +0 -12
- package/src/stories/assets/youtube.svg +0 -4
- package/src/stories/button.css +0 -30
- package/src/stories/colors.mdx +0 -13
- package/src/stories/header.css +0 -32
- package/src/stories/page.css +0 -69
package/dist/index.d.ts
CHANGED
|
@@ -104,13 +104,13 @@ declare const orchestratorApi: _reduxjs_toolkit_query.Api<(args: any, api: _redu
|
|
|
104
104
|
|
|
105
105
|
declare const useGetCustomersQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
106
106
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
107
|
-
originalArgs?: undefined;
|
|
108
|
-
data?: undefined;
|
|
109
|
-
error?: undefined;
|
|
110
|
-
requestId?: undefined;
|
|
107
|
+
originalArgs?: undefined | undefined;
|
|
108
|
+
data?: undefined | undefined;
|
|
109
|
+
error?: undefined | undefined;
|
|
110
|
+
requestId?: undefined | undefined;
|
|
111
111
|
endpointName?: string | undefined;
|
|
112
|
-
startedTimeStamp?: undefined;
|
|
113
|
-
fulfilledTimeStamp?: undefined;
|
|
112
|
+
startedTimeStamp?: undefined | undefined;
|
|
113
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
114
114
|
} & {
|
|
115
115
|
currentData?: Customer[] | undefined;
|
|
116
116
|
isUninitialized: false;
|
|
@@ -135,7 +135,7 @@ declare const useGetCustomersQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
135
135
|
error: graphql.GraphQLError[] | undefined;
|
|
136
136
|
data?: undefined;
|
|
137
137
|
meta?: {} | undefined;
|
|
138
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi">> & {
|
|
138
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi", unknown>> & {
|
|
139
139
|
currentData?: Customer[] | undefined;
|
|
140
140
|
isUninitialized: false;
|
|
141
141
|
isLoading: false;
|
|
@@ -165,7 +165,7 @@ declare const useGetCustomersQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
165
165
|
error: graphql.GraphQLError[] | undefined;
|
|
166
166
|
data?: undefined;
|
|
167
167
|
meta?: {} | undefined;
|
|
168
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi">> & {
|
|
168
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi", unknown>> & {
|
|
169
169
|
currentData?: Customer[] | undefined;
|
|
170
170
|
isUninitialized: false;
|
|
171
171
|
isLoading: false;
|
|
@@ -191,7 +191,7 @@ declare const useGetCustomersQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
191
191
|
error: graphql.GraphQLError[] | undefined;
|
|
192
192
|
data?: undefined;
|
|
193
193
|
meta?: {} | undefined;
|
|
194
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi">> & {
|
|
194
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi", unknown>> & {
|
|
195
195
|
currentData?: Customer[] | undefined;
|
|
196
196
|
isUninitialized: false;
|
|
197
197
|
isLoading: false;
|
|
@@ -215,7 +215,7 @@ declare const useGetCustomersQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
215
215
|
error: graphql.GraphQLError[] | undefined;
|
|
216
216
|
data?: undefined;
|
|
217
217
|
meta?: {} | undefined;
|
|
218
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi">> & {
|
|
218
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi", unknown>> & {
|
|
219
219
|
currentData?: Customer[] | undefined;
|
|
220
220
|
isUninitialized: false;
|
|
221
221
|
isLoading: false;
|
|
@@ -231,13 +231,13 @@ declare const useGetCustomersQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
231
231
|
skip?: boolean;
|
|
232
232
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
233
233
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
234
|
-
originalArgs?: undefined;
|
|
235
|
-
data?: undefined;
|
|
236
|
-
error?: undefined;
|
|
237
|
-
requestId?: undefined;
|
|
234
|
+
originalArgs?: undefined | undefined;
|
|
235
|
+
data?: undefined | undefined;
|
|
236
|
+
error?: undefined | undefined;
|
|
237
|
+
requestId?: undefined | undefined;
|
|
238
238
|
endpointName?: string | undefined;
|
|
239
|
-
startedTimeStamp?: undefined;
|
|
240
|
-
fulfilledTimeStamp?: undefined;
|
|
239
|
+
startedTimeStamp?: undefined | undefined;
|
|
240
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
241
241
|
} & {
|
|
242
242
|
currentData?: Customer[] | undefined;
|
|
243
243
|
isUninitialized: false;
|
|
@@ -262,7 +262,7 @@ declare const useGetCustomersQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
262
262
|
error: graphql.GraphQLError[] | undefined;
|
|
263
263
|
data?: undefined;
|
|
264
264
|
meta?: {} | undefined;
|
|
265
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi">> & {
|
|
265
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi", unknown>> & {
|
|
266
266
|
currentData?: Customer[] | undefined;
|
|
267
267
|
isUninitialized: false;
|
|
268
268
|
isLoading: false;
|
|
@@ -292,7 +292,7 @@ declare const useGetCustomersQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
292
292
|
error: graphql.GraphQLError[] | undefined;
|
|
293
293
|
data?: undefined;
|
|
294
294
|
meta?: {} | undefined;
|
|
295
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi">> & {
|
|
295
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi", unknown>> & {
|
|
296
296
|
currentData?: Customer[] | undefined;
|
|
297
297
|
isUninitialized: false;
|
|
298
298
|
isLoading: false;
|
|
@@ -318,7 +318,7 @@ declare const useGetCustomersQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
318
318
|
error: graphql.GraphQLError[] | undefined;
|
|
319
319
|
data?: undefined;
|
|
320
320
|
meta?: {} | undefined;
|
|
321
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi">> & {
|
|
321
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi", unknown>> & {
|
|
322
322
|
currentData?: Customer[] | undefined;
|
|
323
323
|
isUninitialized: false;
|
|
324
324
|
isLoading: false;
|
|
@@ -342,7 +342,7 @@ declare const useGetCustomersQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
342
342
|
error: graphql.GraphQLError[] | undefined;
|
|
343
343
|
data?: undefined;
|
|
344
344
|
meta?: {} | undefined;
|
|
345
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi">> & {
|
|
345
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi", unknown>> & {
|
|
346
346
|
currentData?: Customer[] | undefined;
|
|
347
347
|
isUninitialized: false;
|
|
348
348
|
isLoading: false;
|
|
@@ -368,17 +368,17 @@ declare const useGetCustomersQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
368
368
|
error: graphql.GraphQLError[] | undefined;
|
|
369
369
|
data?: undefined;
|
|
370
370
|
meta?: {} | undefined;
|
|
371
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi">>;
|
|
371
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi", unknown>>;
|
|
372
372
|
};
|
|
373
373
|
declare const useGetCustomerQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
374
374
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
375
|
-
originalArgs?: undefined;
|
|
376
|
-
data?: undefined;
|
|
377
|
-
error?: undefined;
|
|
378
|
-
requestId?: undefined;
|
|
375
|
+
originalArgs?: undefined | undefined;
|
|
376
|
+
data?: undefined | undefined;
|
|
377
|
+
error?: undefined | undefined;
|
|
378
|
+
requestId?: undefined | undefined;
|
|
379
379
|
endpointName?: string | undefined;
|
|
380
|
-
startedTimeStamp?: undefined;
|
|
381
|
-
fulfilledTimeStamp?: undefined;
|
|
380
|
+
startedTimeStamp?: undefined | undefined;
|
|
381
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
382
382
|
} & {
|
|
383
383
|
currentData?: Customer[] | undefined;
|
|
384
384
|
isUninitialized: false;
|
|
@@ -405,7 +405,7 @@ declare const useGetCustomerQuery: <R extends Record<string, any> = _reduxjs_too
|
|
|
405
405
|
error: graphql.GraphQLError[] | undefined;
|
|
406
406
|
data?: undefined;
|
|
407
407
|
meta?: {} | undefined;
|
|
408
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi">> & {
|
|
408
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi", unknown>> & {
|
|
409
409
|
currentData?: Customer[] | undefined;
|
|
410
410
|
isUninitialized: false;
|
|
411
411
|
isLoading: false;
|
|
@@ -437,7 +437,7 @@ declare const useGetCustomerQuery: <R extends Record<string, any> = _reduxjs_too
|
|
|
437
437
|
error: graphql.GraphQLError[] | undefined;
|
|
438
438
|
data?: undefined;
|
|
439
439
|
meta?: {} | undefined;
|
|
440
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi">> & {
|
|
440
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi", unknown>> & {
|
|
441
441
|
currentData?: Customer[] | undefined;
|
|
442
442
|
isUninitialized: false;
|
|
443
443
|
isLoading: false;
|
|
@@ -465,7 +465,7 @@ declare const useGetCustomerQuery: <R extends Record<string, any> = _reduxjs_too
|
|
|
465
465
|
error: graphql.GraphQLError[] | undefined;
|
|
466
466
|
data?: undefined;
|
|
467
467
|
meta?: {} | undefined;
|
|
468
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi">> & {
|
|
468
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi", unknown>> & {
|
|
469
469
|
currentData?: Customer[] | undefined;
|
|
470
470
|
isUninitialized: false;
|
|
471
471
|
isLoading: false;
|
|
@@ -491,7 +491,7 @@ declare const useGetCustomerQuery: <R extends Record<string, any> = _reduxjs_too
|
|
|
491
491
|
error: graphql.GraphQLError[] | undefined;
|
|
492
492
|
data?: undefined;
|
|
493
493
|
meta?: {} | undefined;
|
|
494
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi">> & {
|
|
494
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi", unknown>> & {
|
|
495
495
|
currentData?: Customer[] | undefined;
|
|
496
496
|
isUninitialized: false;
|
|
497
497
|
isLoading: false;
|
|
@@ -509,13 +509,13 @@ declare const useGetCustomerQuery: <R extends Record<string, any> = _reduxjs_too
|
|
|
509
509
|
skip?: boolean;
|
|
510
510
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
511
511
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
512
|
-
originalArgs?: undefined;
|
|
513
|
-
data?: undefined;
|
|
514
|
-
error?: undefined;
|
|
515
|
-
requestId?: undefined;
|
|
512
|
+
originalArgs?: undefined | undefined;
|
|
513
|
+
data?: undefined | undefined;
|
|
514
|
+
error?: undefined | undefined;
|
|
515
|
+
requestId?: undefined | undefined;
|
|
516
516
|
endpointName?: string | undefined;
|
|
517
|
-
startedTimeStamp?: undefined;
|
|
518
|
-
fulfilledTimeStamp?: undefined;
|
|
517
|
+
startedTimeStamp?: undefined | undefined;
|
|
518
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
519
519
|
} & {
|
|
520
520
|
currentData?: Customer[] | undefined;
|
|
521
521
|
isUninitialized: false;
|
|
@@ -542,7 +542,7 @@ declare const useGetCustomerQuery: <R extends Record<string, any> = _reduxjs_too
|
|
|
542
542
|
error: graphql.GraphQLError[] | undefined;
|
|
543
543
|
data?: undefined;
|
|
544
544
|
meta?: {} | undefined;
|
|
545
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi">> & {
|
|
545
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi", unknown>> & {
|
|
546
546
|
currentData?: Customer[] | undefined;
|
|
547
547
|
isUninitialized: false;
|
|
548
548
|
isLoading: false;
|
|
@@ -574,7 +574,7 @@ declare const useGetCustomerQuery: <R extends Record<string, any> = _reduxjs_too
|
|
|
574
574
|
error: graphql.GraphQLError[] | undefined;
|
|
575
575
|
data?: undefined;
|
|
576
576
|
meta?: {} | undefined;
|
|
577
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi">> & {
|
|
577
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi", unknown>> & {
|
|
578
578
|
currentData?: Customer[] | undefined;
|
|
579
579
|
isUninitialized: false;
|
|
580
580
|
isLoading: false;
|
|
@@ -602,7 +602,7 @@ declare const useGetCustomerQuery: <R extends Record<string, any> = _reduxjs_too
|
|
|
602
602
|
error: graphql.GraphQLError[] | undefined;
|
|
603
603
|
data?: undefined;
|
|
604
604
|
meta?: {} | undefined;
|
|
605
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi">> & {
|
|
605
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi", unknown>> & {
|
|
606
606
|
currentData?: Customer[] | undefined;
|
|
607
607
|
isUninitialized: false;
|
|
608
608
|
isLoading: false;
|
|
@@ -628,7 +628,7 @@ declare const useGetCustomerQuery: <R extends Record<string, any> = _reduxjs_too
|
|
|
628
628
|
error: graphql.GraphQLError[] | undefined;
|
|
629
629
|
data?: undefined;
|
|
630
630
|
meta?: {} | undefined;
|
|
631
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi">> & {
|
|
631
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi", unknown>> & {
|
|
632
632
|
currentData?: Customer[] | undefined;
|
|
633
633
|
isUninitialized: false;
|
|
634
634
|
isLoading: false;
|
|
@@ -656,17 +656,17 @@ declare const useGetCustomerQuery: <R extends Record<string, any> = _reduxjs_too
|
|
|
656
656
|
error: graphql.GraphQLError[] | undefined;
|
|
657
657
|
data?: undefined;
|
|
658
658
|
meta?: {} | undefined;
|
|
659
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi">>;
|
|
659
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, Customer[], "orchestratorApi", unknown>>;
|
|
660
660
|
};
|
|
661
661
|
declare const useGetCustomersWithSubscriptionCountQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
662
662
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
663
|
-
originalArgs?: undefined;
|
|
664
|
-
data?: undefined;
|
|
665
|
-
error?: undefined;
|
|
666
|
-
requestId?: undefined;
|
|
663
|
+
originalArgs?: undefined | undefined;
|
|
664
|
+
data?: undefined | undefined;
|
|
665
|
+
error?: undefined | undefined;
|
|
666
|
+
requestId?: undefined | undefined;
|
|
667
667
|
endpointName?: string | undefined;
|
|
668
|
-
startedTimeStamp?: undefined;
|
|
669
|
-
fulfilledTimeStamp?: undefined;
|
|
668
|
+
startedTimeStamp?: undefined | undefined;
|
|
669
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
670
670
|
} & {
|
|
671
671
|
currentData?: CustomerWithSubscriptionCount[] | undefined;
|
|
672
672
|
isUninitialized: false;
|
|
@@ -691,7 +691,7 @@ declare const useGetCustomersWithSubscriptionCountQuery: <R extends Record<strin
|
|
|
691
691
|
error: graphql.GraphQLError[] | undefined;
|
|
692
692
|
data?: undefined;
|
|
693
693
|
meta?: {} | undefined;
|
|
694
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CustomerWithSubscriptionCount[], "orchestratorApi">> & {
|
|
694
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CustomerWithSubscriptionCount[], "orchestratorApi", unknown>> & {
|
|
695
695
|
currentData?: CustomerWithSubscriptionCount[] | undefined;
|
|
696
696
|
isUninitialized: false;
|
|
697
697
|
isLoading: false;
|
|
@@ -721,7 +721,7 @@ declare const useGetCustomersWithSubscriptionCountQuery: <R extends Record<strin
|
|
|
721
721
|
error: graphql.GraphQLError[] | undefined;
|
|
722
722
|
data?: undefined;
|
|
723
723
|
meta?: {} | undefined;
|
|
724
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CustomerWithSubscriptionCount[], "orchestratorApi">> & {
|
|
724
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CustomerWithSubscriptionCount[], "orchestratorApi", unknown>> & {
|
|
725
725
|
currentData?: CustomerWithSubscriptionCount[] | undefined;
|
|
726
726
|
isUninitialized: false;
|
|
727
727
|
isLoading: false;
|
|
@@ -747,7 +747,7 @@ declare const useGetCustomersWithSubscriptionCountQuery: <R extends Record<strin
|
|
|
747
747
|
error: graphql.GraphQLError[] | undefined;
|
|
748
748
|
data?: undefined;
|
|
749
749
|
meta?: {} | undefined;
|
|
750
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CustomerWithSubscriptionCount[], "orchestratorApi">> & {
|
|
750
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CustomerWithSubscriptionCount[], "orchestratorApi", unknown>> & {
|
|
751
751
|
currentData?: CustomerWithSubscriptionCount[] | undefined;
|
|
752
752
|
isUninitialized: false;
|
|
753
753
|
isLoading: false;
|
|
@@ -771,7 +771,7 @@ declare const useGetCustomersWithSubscriptionCountQuery: <R extends Record<strin
|
|
|
771
771
|
error: graphql.GraphQLError[] | undefined;
|
|
772
772
|
data?: undefined;
|
|
773
773
|
meta?: {} | undefined;
|
|
774
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CustomerWithSubscriptionCount[], "orchestratorApi">> & {
|
|
774
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CustomerWithSubscriptionCount[], "orchestratorApi", unknown>> & {
|
|
775
775
|
currentData?: CustomerWithSubscriptionCount[] | undefined;
|
|
776
776
|
isUninitialized: false;
|
|
777
777
|
isLoading: false;
|
|
@@ -787,13 +787,13 @@ declare const useGetCustomersWithSubscriptionCountQuery: <R extends Record<strin
|
|
|
787
787
|
skip?: boolean;
|
|
788
788
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
789
789
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
790
|
-
originalArgs?: undefined;
|
|
791
|
-
data?: undefined;
|
|
792
|
-
error?: undefined;
|
|
793
|
-
requestId?: undefined;
|
|
790
|
+
originalArgs?: undefined | undefined;
|
|
791
|
+
data?: undefined | undefined;
|
|
792
|
+
error?: undefined | undefined;
|
|
793
|
+
requestId?: undefined | undefined;
|
|
794
794
|
endpointName?: string | undefined;
|
|
795
|
-
startedTimeStamp?: undefined;
|
|
796
|
-
fulfilledTimeStamp?: undefined;
|
|
795
|
+
startedTimeStamp?: undefined | undefined;
|
|
796
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
797
797
|
} & {
|
|
798
798
|
currentData?: CustomerWithSubscriptionCount[] | undefined;
|
|
799
799
|
isUninitialized: false;
|
|
@@ -818,7 +818,7 @@ declare const useGetCustomersWithSubscriptionCountQuery: <R extends Record<strin
|
|
|
818
818
|
error: graphql.GraphQLError[] | undefined;
|
|
819
819
|
data?: undefined;
|
|
820
820
|
meta?: {} | undefined;
|
|
821
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CustomerWithSubscriptionCount[], "orchestratorApi">> & {
|
|
821
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CustomerWithSubscriptionCount[], "orchestratorApi", unknown>> & {
|
|
822
822
|
currentData?: CustomerWithSubscriptionCount[] | undefined;
|
|
823
823
|
isUninitialized: false;
|
|
824
824
|
isLoading: false;
|
|
@@ -848,7 +848,7 @@ declare const useGetCustomersWithSubscriptionCountQuery: <R extends Record<strin
|
|
|
848
848
|
error: graphql.GraphQLError[] | undefined;
|
|
849
849
|
data?: undefined;
|
|
850
850
|
meta?: {} | undefined;
|
|
851
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CustomerWithSubscriptionCount[], "orchestratorApi">> & {
|
|
851
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CustomerWithSubscriptionCount[], "orchestratorApi", unknown>> & {
|
|
852
852
|
currentData?: CustomerWithSubscriptionCount[] | undefined;
|
|
853
853
|
isUninitialized: false;
|
|
854
854
|
isLoading: false;
|
|
@@ -874,7 +874,7 @@ declare const useGetCustomersWithSubscriptionCountQuery: <R extends Record<strin
|
|
|
874
874
|
error: graphql.GraphQLError[] | undefined;
|
|
875
875
|
data?: undefined;
|
|
876
876
|
meta?: {} | undefined;
|
|
877
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CustomerWithSubscriptionCount[], "orchestratorApi">> & {
|
|
877
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CustomerWithSubscriptionCount[], "orchestratorApi", unknown>> & {
|
|
878
878
|
currentData?: CustomerWithSubscriptionCount[] | undefined;
|
|
879
879
|
isUninitialized: false;
|
|
880
880
|
isLoading: false;
|
|
@@ -898,7 +898,7 @@ declare const useGetCustomersWithSubscriptionCountQuery: <R extends Record<strin
|
|
|
898
898
|
error: graphql.GraphQLError[] | undefined;
|
|
899
899
|
data?: undefined;
|
|
900
900
|
meta?: {} | undefined;
|
|
901
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CustomerWithSubscriptionCount[], "orchestratorApi">> & {
|
|
901
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CustomerWithSubscriptionCount[], "orchestratorApi", unknown>> & {
|
|
902
902
|
currentData?: CustomerWithSubscriptionCount[] | undefined;
|
|
903
903
|
isUninitialized: false;
|
|
904
904
|
isLoading: false;
|
|
@@ -924,7 +924,7 @@ declare const useGetCustomersWithSubscriptionCountQuery: <R extends Record<strin
|
|
|
924
924
|
error: graphql.GraphQLError[] | undefined;
|
|
925
925
|
data?: undefined;
|
|
926
926
|
meta?: {} | undefined;
|
|
927
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CustomerWithSubscriptionCount[], "orchestratorApi">>;
|
|
927
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CustomerWithSubscriptionCount[], "orchestratorApi", unknown>>;
|
|
928
928
|
};
|
|
929
929
|
|
|
930
930
|
declare const useSetSubscriptionInSyncMutation: <R extends Record<string, any> = ({
|
|
@@ -1099,7 +1099,7 @@ declare const useSetSubscriptionInSyncMutation: <R extends Record<string, any> =
|
|
|
1099
1099
|
error: graphql.GraphQLError[] | undefined;
|
|
1100
1100
|
data?: undefined;
|
|
1101
1101
|
meta?: {} | undefined;
|
|
1102
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, void, "orchestratorApi">>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
1102
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, void, "orchestratorApi", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
1103
1103
|
originalArgs?: string | undefined;
|
|
1104
1104
|
reset: () => void;
|
|
1105
1105
|
}];
|
|
@@ -1110,13 +1110,13 @@ type ProductBlocksResponse = {
|
|
|
1110
1110
|
} & BaseGraphQlResult;
|
|
1111
1111
|
declare const useGetProductBlocksQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
1112
1112
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
1113
|
-
originalArgs?: undefined;
|
|
1114
|
-
data?: undefined;
|
|
1115
|
-
error?: undefined;
|
|
1116
|
-
requestId?: undefined;
|
|
1113
|
+
originalArgs?: undefined | undefined;
|
|
1114
|
+
data?: undefined | undefined;
|
|
1115
|
+
error?: undefined | undefined;
|
|
1116
|
+
requestId?: undefined | undefined;
|
|
1117
1117
|
endpointName?: string | undefined;
|
|
1118
|
-
startedTimeStamp?: undefined;
|
|
1119
|
-
fulfilledTimeStamp?: undefined;
|
|
1118
|
+
startedTimeStamp?: undefined | undefined;
|
|
1119
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1120
1120
|
} & {
|
|
1121
1121
|
currentData?: ProductBlocksResponse | undefined;
|
|
1122
1122
|
isUninitialized: false;
|
|
@@ -1141,7 +1141,7 @@ declare const useGetProductBlocksQuery: <R extends Record<string, any> = _reduxj
|
|
|
1141
1141
|
error: graphql.GraphQLError[] | undefined;
|
|
1142
1142
|
data?: undefined;
|
|
1143
1143
|
meta?: {} | undefined;
|
|
1144
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi">> & {
|
|
1144
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi", unknown>> & {
|
|
1145
1145
|
currentData?: ProductBlocksResponse | undefined;
|
|
1146
1146
|
isUninitialized: false;
|
|
1147
1147
|
isLoading: false;
|
|
@@ -1171,7 +1171,7 @@ declare const useGetProductBlocksQuery: <R extends Record<string, any> = _reduxj
|
|
|
1171
1171
|
error: graphql.GraphQLError[] | undefined;
|
|
1172
1172
|
data?: undefined;
|
|
1173
1173
|
meta?: {} | undefined;
|
|
1174
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi">> & {
|
|
1174
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi", unknown>> & {
|
|
1175
1175
|
currentData?: ProductBlocksResponse | undefined;
|
|
1176
1176
|
isUninitialized: false;
|
|
1177
1177
|
isLoading: false;
|
|
@@ -1197,7 +1197,7 @@ declare const useGetProductBlocksQuery: <R extends Record<string, any> = _reduxj
|
|
|
1197
1197
|
error: graphql.GraphQLError[] | undefined;
|
|
1198
1198
|
data?: undefined;
|
|
1199
1199
|
meta?: {} | undefined;
|
|
1200
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi">> & {
|
|
1200
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi", unknown>> & {
|
|
1201
1201
|
currentData?: ProductBlocksResponse | undefined;
|
|
1202
1202
|
isUninitialized: false;
|
|
1203
1203
|
isLoading: false;
|
|
@@ -1221,7 +1221,7 @@ declare const useGetProductBlocksQuery: <R extends Record<string, any> = _reduxj
|
|
|
1221
1221
|
error: graphql.GraphQLError[] | undefined;
|
|
1222
1222
|
data?: undefined;
|
|
1223
1223
|
meta?: {} | undefined;
|
|
1224
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi">> & {
|
|
1224
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi", unknown>> & {
|
|
1225
1225
|
currentData?: ProductBlocksResponse | undefined;
|
|
1226
1226
|
isUninitialized: false;
|
|
1227
1227
|
isLoading: false;
|
|
@@ -1237,13 +1237,13 @@ declare const useGetProductBlocksQuery: <R extends Record<string, any> = _reduxj
|
|
|
1237
1237
|
skip?: boolean;
|
|
1238
1238
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
1239
1239
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
1240
|
-
originalArgs?: undefined;
|
|
1241
|
-
data?: undefined;
|
|
1242
|
-
error?: undefined;
|
|
1243
|
-
requestId?: undefined;
|
|
1240
|
+
originalArgs?: undefined | undefined;
|
|
1241
|
+
data?: undefined | undefined;
|
|
1242
|
+
error?: undefined | undefined;
|
|
1243
|
+
requestId?: undefined | undefined;
|
|
1244
1244
|
endpointName?: string | undefined;
|
|
1245
|
-
startedTimeStamp?: undefined;
|
|
1246
|
-
fulfilledTimeStamp?: undefined;
|
|
1245
|
+
startedTimeStamp?: undefined | undefined;
|
|
1246
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1247
1247
|
} & {
|
|
1248
1248
|
currentData?: ProductBlocksResponse | undefined;
|
|
1249
1249
|
isUninitialized: false;
|
|
@@ -1268,7 +1268,7 @@ declare const useGetProductBlocksQuery: <R extends Record<string, any> = _reduxj
|
|
|
1268
1268
|
error: graphql.GraphQLError[] | undefined;
|
|
1269
1269
|
data?: undefined;
|
|
1270
1270
|
meta?: {} | undefined;
|
|
1271
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi">> & {
|
|
1271
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi", unknown>> & {
|
|
1272
1272
|
currentData?: ProductBlocksResponse | undefined;
|
|
1273
1273
|
isUninitialized: false;
|
|
1274
1274
|
isLoading: false;
|
|
@@ -1298,7 +1298,7 @@ declare const useGetProductBlocksQuery: <R extends Record<string, any> = _reduxj
|
|
|
1298
1298
|
error: graphql.GraphQLError[] | undefined;
|
|
1299
1299
|
data?: undefined;
|
|
1300
1300
|
meta?: {} | undefined;
|
|
1301
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi">> & {
|
|
1301
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi", unknown>> & {
|
|
1302
1302
|
currentData?: ProductBlocksResponse | undefined;
|
|
1303
1303
|
isUninitialized: false;
|
|
1304
1304
|
isLoading: false;
|
|
@@ -1324,7 +1324,7 @@ declare const useGetProductBlocksQuery: <R extends Record<string, any> = _reduxj
|
|
|
1324
1324
|
error: graphql.GraphQLError[] | undefined;
|
|
1325
1325
|
data?: undefined;
|
|
1326
1326
|
meta?: {} | undefined;
|
|
1327
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi">> & {
|
|
1327
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi", unknown>> & {
|
|
1328
1328
|
currentData?: ProductBlocksResponse | undefined;
|
|
1329
1329
|
isUninitialized: false;
|
|
1330
1330
|
isLoading: false;
|
|
@@ -1348,7 +1348,7 @@ declare const useGetProductBlocksQuery: <R extends Record<string, any> = _reduxj
|
|
|
1348
1348
|
error: graphql.GraphQLError[] | undefined;
|
|
1349
1349
|
data?: undefined;
|
|
1350
1350
|
meta?: {} | undefined;
|
|
1351
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi">> & {
|
|
1351
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi", unknown>> & {
|
|
1352
1352
|
currentData?: ProductBlocksResponse | undefined;
|
|
1353
1353
|
isUninitialized: false;
|
|
1354
1354
|
isLoading: false;
|
|
@@ -1374,17 +1374,17 @@ declare const useGetProductBlocksQuery: <R extends Record<string, any> = _reduxj
|
|
|
1374
1374
|
error: graphql.GraphQLError[] | undefined;
|
|
1375
1375
|
data?: undefined;
|
|
1376
1376
|
meta?: {} | undefined;
|
|
1377
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi">>;
|
|
1377
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi", unknown>>;
|
|
1378
1378
|
};
|
|
1379
1379
|
declare const useLazyGetProductBlocksQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
1380
1380
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
1381
|
-
originalArgs?: undefined;
|
|
1382
|
-
data?: undefined;
|
|
1383
|
-
error?: undefined;
|
|
1384
|
-
requestId?: undefined;
|
|
1381
|
+
originalArgs?: undefined | undefined;
|
|
1382
|
+
data?: undefined | undefined;
|
|
1383
|
+
error?: undefined | undefined;
|
|
1384
|
+
requestId?: undefined | undefined;
|
|
1385
1385
|
endpointName?: string | undefined;
|
|
1386
|
-
startedTimeStamp?: undefined;
|
|
1387
|
-
fulfilledTimeStamp?: undefined;
|
|
1386
|
+
startedTimeStamp?: undefined | undefined;
|
|
1387
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1388
1388
|
} & {
|
|
1389
1389
|
currentData?: ProductBlocksResponse | undefined;
|
|
1390
1390
|
isUninitialized: false;
|
|
@@ -1409,7 +1409,7 @@ declare const useLazyGetProductBlocksQuery: <R extends Record<string, any> = _re
|
|
|
1409
1409
|
error: graphql.GraphQLError[] | undefined;
|
|
1410
1410
|
data?: undefined;
|
|
1411
1411
|
meta?: {} | undefined;
|
|
1412
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi">> & {
|
|
1412
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi", unknown>> & {
|
|
1413
1413
|
currentData?: ProductBlocksResponse | undefined;
|
|
1414
1414
|
isUninitialized: false;
|
|
1415
1415
|
isLoading: false;
|
|
@@ -1439,7 +1439,7 @@ declare const useLazyGetProductBlocksQuery: <R extends Record<string, any> = _re
|
|
|
1439
1439
|
error: graphql.GraphQLError[] | undefined;
|
|
1440
1440
|
data?: undefined;
|
|
1441
1441
|
meta?: {} | undefined;
|
|
1442
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi">> & {
|
|
1442
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi", unknown>> & {
|
|
1443
1443
|
currentData?: ProductBlocksResponse | undefined;
|
|
1444
1444
|
isUninitialized: false;
|
|
1445
1445
|
isLoading: false;
|
|
@@ -1465,7 +1465,7 @@ declare const useLazyGetProductBlocksQuery: <R extends Record<string, any> = _re
|
|
|
1465
1465
|
error: graphql.GraphQLError[] | undefined;
|
|
1466
1466
|
data?: undefined;
|
|
1467
1467
|
meta?: {} | undefined;
|
|
1468
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi">> & {
|
|
1468
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi", unknown>> & {
|
|
1469
1469
|
currentData?: ProductBlocksResponse | undefined;
|
|
1470
1470
|
isUninitialized: false;
|
|
1471
1471
|
isLoading: false;
|
|
@@ -1489,7 +1489,7 @@ declare const useLazyGetProductBlocksQuery: <R extends Record<string, any> = _re
|
|
|
1489
1489
|
error: graphql.GraphQLError[] | undefined;
|
|
1490
1490
|
data?: undefined;
|
|
1491
1491
|
meta?: {} | undefined;
|
|
1492
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi">> & {
|
|
1492
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi", unknown>> & {
|
|
1493
1493
|
currentData?: ProductBlocksResponse | undefined;
|
|
1494
1494
|
isUninitialized: false;
|
|
1495
1495
|
isLoading: false;
|
|
@@ -1502,13 +1502,13 @@ declare const useLazyGetProductBlocksQuery: <R extends Record<string, any> = _re
|
|
|
1502
1502
|
skip?: boolean;
|
|
1503
1503
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
1504
1504
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
1505
|
-
originalArgs?: undefined;
|
|
1506
|
-
data?: undefined;
|
|
1507
|
-
error?: undefined;
|
|
1508
|
-
requestId?: undefined;
|
|
1505
|
+
originalArgs?: undefined | undefined;
|
|
1506
|
+
data?: undefined | undefined;
|
|
1507
|
+
error?: undefined | undefined;
|
|
1508
|
+
requestId?: undefined | undefined;
|
|
1509
1509
|
endpointName?: string | undefined;
|
|
1510
|
-
startedTimeStamp?: undefined;
|
|
1511
|
-
fulfilledTimeStamp?: undefined;
|
|
1510
|
+
startedTimeStamp?: undefined | undefined;
|
|
1511
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1512
1512
|
} & {
|
|
1513
1513
|
currentData?: ProductBlocksResponse | undefined;
|
|
1514
1514
|
isUninitialized: false;
|
|
@@ -1533,7 +1533,7 @@ declare const useLazyGetProductBlocksQuery: <R extends Record<string, any> = _re
|
|
|
1533
1533
|
error: graphql.GraphQLError[] | undefined;
|
|
1534
1534
|
data?: undefined;
|
|
1535
1535
|
meta?: {} | undefined;
|
|
1536
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi">> & {
|
|
1536
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi", unknown>> & {
|
|
1537
1537
|
currentData?: ProductBlocksResponse | undefined;
|
|
1538
1538
|
isUninitialized: false;
|
|
1539
1539
|
isLoading: false;
|
|
@@ -1563,7 +1563,7 @@ declare const useLazyGetProductBlocksQuery: <R extends Record<string, any> = _re
|
|
|
1563
1563
|
error: graphql.GraphQLError[] | undefined;
|
|
1564
1564
|
data?: undefined;
|
|
1565
1565
|
meta?: {} | undefined;
|
|
1566
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi">> & {
|
|
1566
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi", unknown>> & {
|
|
1567
1567
|
currentData?: ProductBlocksResponse | undefined;
|
|
1568
1568
|
isUninitialized: false;
|
|
1569
1569
|
isLoading: false;
|
|
@@ -1589,7 +1589,7 @@ declare const useLazyGetProductBlocksQuery: <R extends Record<string, any> = _re
|
|
|
1589
1589
|
error: graphql.GraphQLError[] | undefined;
|
|
1590
1590
|
data?: undefined;
|
|
1591
1591
|
meta?: {} | undefined;
|
|
1592
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi">> & {
|
|
1592
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi", unknown>> & {
|
|
1593
1593
|
currentData?: ProductBlocksResponse | undefined;
|
|
1594
1594
|
isUninitialized: false;
|
|
1595
1595
|
isLoading: false;
|
|
@@ -1613,7 +1613,7 @@ declare const useLazyGetProductBlocksQuery: <R extends Record<string, any> = _re
|
|
|
1613
1613
|
error: graphql.GraphQLError[] | undefined;
|
|
1614
1614
|
data?: undefined;
|
|
1615
1615
|
meta?: {} | undefined;
|
|
1616
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi">> & {
|
|
1616
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi", unknown>> & {
|
|
1617
1617
|
currentData?: ProductBlocksResponse | undefined;
|
|
1618
1618
|
isUninitialized: false;
|
|
1619
1619
|
isLoading: false;
|
|
@@ -1638,7 +1638,9 @@ declare const useLazyGetProductBlocksQuery: <R extends Record<string, any> = _re
|
|
|
1638
1638
|
error: graphql.GraphQLError[] | undefined;
|
|
1639
1639
|
data?: undefined;
|
|
1640
1640
|
meta?: {} | undefined;
|
|
1641
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi">>, [R][R extends any ? 0 : never]
|
|
1641
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductBlocksResponse, "orchestratorApi", unknown>>, [R][R extends any ? 0 : never] & {
|
|
1642
|
+
reset: () => void;
|
|
1643
|
+
}, {
|
|
1642
1644
|
lastArg: GraphqlQueryVariables<ProductBlockDefinition>;
|
|
1643
1645
|
}];
|
|
1644
1646
|
declare const useUpdateProductBlockMutation: <R extends Record<string, any> = ({
|
|
@@ -1813,7 +1815,7 @@ declare const useUpdateProductBlockMutation: <R extends Record<string, any> = ({
|
|
|
1813
1815
|
error: graphql.GraphQLError[] | undefined;
|
|
1814
1816
|
data?: undefined;
|
|
1815
1817
|
meta?: {} | undefined;
|
|
1816
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, null, "orchestratorApi">>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
1818
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, null, "orchestratorApi", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
1817
1819
|
originalArgs?: MetadataDescriptionParams | undefined;
|
|
1818
1820
|
reset: () => void;
|
|
1819
1821
|
}];
|
|
@@ -1824,13 +1826,13 @@ type ResourceTypesResponse = {
|
|
|
1824
1826
|
} & BaseGraphQlResult;
|
|
1825
1827
|
declare const useGetResourceTypesQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
1826
1828
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
1827
|
-
originalArgs?: undefined;
|
|
1828
|
-
data?: undefined;
|
|
1829
|
-
error?: undefined;
|
|
1830
|
-
requestId?: undefined;
|
|
1829
|
+
originalArgs?: undefined | undefined;
|
|
1830
|
+
data?: undefined | undefined;
|
|
1831
|
+
error?: undefined | undefined;
|
|
1832
|
+
requestId?: undefined | undefined;
|
|
1831
1833
|
endpointName?: string | undefined;
|
|
1832
|
-
startedTimeStamp?: undefined;
|
|
1833
|
-
fulfilledTimeStamp?: undefined;
|
|
1834
|
+
startedTimeStamp?: undefined | undefined;
|
|
1835
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1834
1836
|
} & {
|
|
1835
1837
|
currentData?: ResourceTypesResponse | undefined;
|
|
1836
1838
|
isUninitialized: false;
|
|
@@ -1855,7 +1857,7 @@ declare const useGetResourceTypesQuery: <R extends Record<string, any> = _reduxj
|
|
|
1855
1857
|
error: graphql.GraphQLError[] | undefined;
|
|
1856
1858
|
data?: undefined;
|
|
1857
1859
|
meta?: {} | undefined;
|
|
1858
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi">> & {
|
|
1860
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi", unknown>> & {
|
|
1859
1861
|
currentData?: ResourceTypesResponse | undefined;
|
|
1860
1862
|
isUninitialized: false;
|
|
1861
1863
|
isLoading: false;
|
|
@@ -1885,7 +1887,7 @@ declare const useGetResourceTypesQuery: <R extends Record<string, any> = _reduxj
|
|
|
1885
1887
|
error: graphql.GraphQLError[] | undefined;
|
|
1886
1888
|
data?: undefined;
|
|
1887
1889
|
meta?: {} | undefined;
|
|
1888
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi">> & {
|
|
1890
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi", unknown>> & {
|
|
1889
1891
|
currentData?: ResourceTypesResponse | undefined;
|
|
1890
1892
|
isUninitialized: false;
|
|
1891
1893
|
isLoading: false;
|
|
@@ -1911,7 +1913,7 @@ declare const useGetResourceTypesQuery: <R extends Record<string, any> = _reduxj
|
|
|
1911
1913
|
error: graphql.GraphQLError[] | undefined;
|
|
1912
1914
|
data?: undefined;
|
|
1913
1915
|
meta?: {} | undefined;
|
|
1914
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi">> & {
|
|
1916
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi", unknown>> & {
|
|
1915
1917
|
currentData?: ResourceTypesResponse | undefined;
|
|
1916
1918
|
isUninitialized: false;
|
|
1917
1919
|
isLoading: false;
|
|
@@ -1935,7 +1937,7 @@ declare const useGetResourceTypesQuery: <R extends Record<string, any> = _reduxj
|
|
|
1935
1937
|
error: graphql.GraphQLError[] | undefined;
|
|
1936
1938
|
data?: undefined;
|
|
1937
1939
|
meta?: {} | undefined;
|
|
1938
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi">> & {
|
|
1940
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi", unknown>> & {
|
|
1939
1941
|
currentData?: ResourceTypesResponse | undefined;
|
|
1940
1942
|
isUninitialized: false;
|
|
1941
1943
|
isLoading: false;
|
|
@@ -1951,13 +1953,13 @@ declare const useGetResourceTypesQuery: <R extends Record<string, any> = _reduxj
|
|
|
1951
1953
|
skip?: boolean;
|
|
1952
1954
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
1953
1955
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
1954
|
-
originalArgs?: undefined;
|
|
1955
|
-
data?: undefined;
|
|
1956
|
-
error?: undefined;
|
|
1957
|
-
requestId?: undefined;
|
|
1956
|
+
originalArgs?: undefined | undefined;
|
|
1957
|
+
data?: undefined | undefined;
|
|
1958
|
+
error?: undefined | undefined;
|
|
1959
|
+
requestId?: undefined | undefined;
|
|
1958
1960
|
endpointName?: string | undefined;
|
|
1959
|
-
startedTimeStamp?: undefined;
|
|
1960
|
-
fulfilledTimeStamp?: undefined;
|
|
1961
|
+
startedTimeStamp?: undefined | undefined;
|
|
1962
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1961
1963
|
} & {
|
|
1962
1964
|
currentData?: ResourceTypesResponse | undefined;
|
|
1963
1965
|
isUninitialized: false;
|
|
@@ -1982,7 +1984,7 @@ declare const useGetResourceTypesQuery: <R extends Record<string, any> = _reduxj
|
|
|
1982
1984
|
error: graphql.GraphQLError[] | undefined;
|
|
1983
1985
|
data?: undefined;
|
|
1984
1986
|
meta?: {} | undefined;
|
|
1985
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi">> & {
|
|
1987
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi", unknown>> & {
|
|
1986
1988
|
currentData?: ResourceTypesResponse | undefined;
|
|
1987
1989
|
isUninitialized: false;
|
|
1988
1990
|
isLoading: false;
|
|
@@ -2012,7 +2014,7 @@ declare const useGetResourceTypesQuery: <R extends Record<string, any> = _reduxj
|
|
|
2012
2014
|
error: graphql.GraphQLError[] | undefined;
|
|
2013
2015
|
data?: undefined;
|
|
2014
2016
|
meta?: {} | undefined;
|
|
2015
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi">> & {
|
|
2017
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi", unknown>> & {
|
|
2016
2018
|
currentData?: ResourceTypesResponse | undefined;
|
|
2017
2019
|
isUninitialized: false;
|
|
2018
2020
|
isLoading: false;
|
|
@@ -2038,7 +2040,7 @@ declare const useGetResourceTypesQuery: <R extends Record<string, any> = _reduxj
|
|
|
2038
2040
|
error: graphql.GraphQLError[] | undefined;
|
|
2039
2041
|
data?: undefined;
|
|
2040
2042
|
meta?: {} | undefined;
|
|
2041
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi">> & {
|
|
2043
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi", unknown>> & {
|
|
2042
2044
|
currentData?: ResourceTypesResponse | undefined;
|
|
2043
2045
|
isUninitialized: false;
|
|
2044
2046
|
isLoading: false;
|
|
@@ -2062,7 +2064,7 @@ declare const useGetResourceTypesQuery: <R extends Record<string, any> = _reduxj
|
|
|
2062
2064
|
error: graphql.GraphQLError[] | undefined;
|
|
2063
2065
|
data?: undefined;
|
|
2064
2066
|
meta?: {} | undefined;
|
|
2065
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi">> & {
|
|
2067
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi", unknown>> & {
|
|
2066
2068
|
currentData?: ResourceTypesResponse | undefined;
|
|
2067
2069
|
isUninitialized: false;
|
|
2068
2070
|
isLoading: false;
|
|
@@ -2088,17 +2090,17 @@ declare const useGetResourceTypesQuery: <R extends Record<string, any> = _reduxj
|
|
|
2088
2090
|
error: graphql.GraphQLError[] | undefined;
|
|
2089
2091
|
data?: undefined;
|
|
2090
2092
|
meta?: {} | undefined;
|
|
2091
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi">>;
|
|
2093
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi", unknown>>;
|
|
2092
2094
|
};
|
|
2093
2095
|
declare const useLazyGetResourceTypesQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
2094
2096
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
2095
|
-
originalArgs?: undefined;
|
|
2096
|
-
data?: undefined;
|
|
2097
|
-
error?: undefined;
|
|
2098
|
-
requestId?: undefined;
|
|
2097
|
+
originalArgs?: undefined | undefined;
|
|
2098
|
+
data?: undefined | undefined;
|
|
2099
|
+
error?: undefined | undefined;
|
|
2100
|
+
requestId?: undefined | undefined;
|
|
2099
2101
|
endpointName?: string | undefined;
|
|
2100
|
-
startedTimeStamp?: undefined;
|
|
2101
|
-
fulfilledTimeStamp?: undefined;
|
|
2102
|
+
startedTimeStamp?: undefined | undefined;
|
|
2103
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
2102
2104
|
} & {
|
|
2103
2105
|
currentData?: ResourceTypesResponse | undefined;
|
|
2104
2106
|
isUninitialized: false;
|
|
@@ -2123,7 +2125,7 @@ declare const useLazyGetResourceTypesQuery: <R extends Record<string, any> = _re
|
|
|
2123
2125
|
error: graphql.GraphQLError[] | undefined;
|
|
2124
2126
|
data?: undefined;
|
|
2125
2127
|
meta?: {} | undefined;
|
|
2126
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi">> & {
|
|
2128
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi", unknown>> & {
|
|
2127
2129
|
currentData?: ResourceTypesResponse | undefined;
|
|
2128
2130
|
isUninitialized: false;
|
|
2129
2131
|
isLoading: false;
|
|
@@ -2153,7 +2155,7 @@ declare const useLazyGetResourceTypesQuery: <R extends Record<string, any> = _re
|
|
|
2153
2155
|
error: graphql.GraphQLError[] | undefined;
|
|
2154
2156
|
data?: undefined;
|
|
2155
2157
|
meta?: {} | undefined;
|
|
2156
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi">> & {
|
|
2158
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi", unknown>> & {
|
|
2157
2159
|
currentData?: ResourceTypesResponse | undefined;
|
|
2158
2160
|
isUninitialized: false;
|
|
2159
2161
|
isLoading: false;
|
|
@@ -2179,7 +2181,7 @@ declare const useLazyGetResourceTypesQuery: <R extends Record<string, any> = _re
|
|
|
2179
2181
|
error: graphql.GraphQLError[] | undefined;
|
|
2180
2182
|
data?: undefined;
|
|
2181
2183
|
meta?: {} | undefined;
|
|
2182
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi">> & {
|
|
2184
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi", unknown>> & {
|
|
2183
2185
|
currentData?: ResourceTypesResponse | undefined;
|
|
2184
2186
|
isUninitialized: false;
|
|
2185
2187
|
isLoading: false;
|
|
@@ -2203,7 +2205,7 @@ declare const useLazyGetResourceTypesQuery: <R extends Record<string, any> = _re
|
|
|
2203
2205
|
error: graphql.GraphQLError[] | undefined;
|
|
2204
2206
|
data?: undefined;
|
|
2205
2207
|
meta?: {} | undefined;
|
|
2206
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi">> & {
|
|
2208
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi", unknown>> & {
|
|
2207
2209
|
currentData?: ResourceTypesResponse | undefined;
|
|
2208
2210
|
isUninitialized: false;
|
|
2209
2211
|
isLoading: false;
|
|
@@ -2216,13 +2218,13 @@ declare const useLazyGetResourceTypesQuery: <R extends Record<string, any> = _re
|
|
|
2216
2218
|
skip?: boolean;
|
|
2217
2219
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
2218
2220
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
2219
|
-
originalArgs?: undefined;
|
|
2220
|
-
data?: undefined;
|
|
2221
|
-
error?: undefined;
|
|
2222
|
-
requestId?: undefined;
|
|
2221
|
+
originalArgs?: undefined | undefined;
|
|
2222
|
+
data?: undefined | undefined;
|
|
2223
|
+
error?: undefined | undefined;
|
|
2224
|
+
requestId?: undefined | undefined;
|
|
2223
2225
|
endpointName?: string | undefined;
|
|
2224
|
-
startedTimeStamp?: undefined;
|
|
2225
|
-
fulfilledTimeStamp?: undefined;
|
|
2226
|
+
startedTimeStamp?: undefined | undefined;
|
|
2227
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
2226
2228
|
} & {
|
|
2227
2229
|
currentData?: ResourceTypesResponse | undefined;
|
|
2228
2230
|
isUninitialized: false;
|
|
@@ -2247,7 +2249,7 @@ declare const useLazyGetResourceTypesQuery: <R extends Record<string, any> = _re
|
|
|
2247
2249
|
error: graphql.GraphQLError[] | undefined;
|
|
2248
2250
|
data?: undefined;
|
|
2249
2251
|
meta?: {} | undefined;
|
|
2250
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi">> & {
|
|
2252
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi", unknown>> & {
|
|
2251
2253
|
currentData?: ResourceTypesResponse | undefined;
|
|
2252
2254
|
isUninitialized: false;
|
|
2253
2255
|
isLoading: false;
|
|
@@ -2277,7 +2279,7 @@ declare const useLazyGetResourceTypesQuery: <R extends Record<string, any> = _re
|
|
|
2277
2279
|
error: graphql.GraphQLError[] | undefined;
|
|
2278
2280
|
data?: undefined;
|
|
2279
2281
|
meta?: {} | undefined;
|
|
2280
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi">> & {
|
|
2282
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi", unknown>> & {
|
|
2281
2283
|
currentData?: ResourceTypesResponse | undefined;
|
|
2282
2284
|
isUninitialized: false;
|
|
2283
2285
|
isLoading: false;
|
|
@@ -2303,7 +2305,7 @@ declare const useLazyGetResourceTypesQuery: <R extends Record<string, any> = _re
|
|
|
2303
2305
|
error: graphql.GraphQLError[] | undefined;
|
|
2304
2306
|
data?: undefined;
|
|
2305
2307
|
meta?: {} | undefined;
|
|
2306
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi">> & {
|
|
2308
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi", unknown>> & {
|
|
2307
2309
|
currentData?: ResourceTypesResponse | undefined;
|
|
2308
2310
|
isUninitialized: false;
|
|
2309
2311
|
isLoading: false;
|
|
@@ -2327,7 +2329,7 @@ declare const useLazyGetResourceTypesQuery: <R extends Record<string, any> = _re
|
|
|
2327
2329
|
error: graphql.GraphQLError[] | undefined;
|
|
2328
2330
|
data?: undefined;
|
|
2329
2331
|
meta?: {} | undefined;
|
|
2330
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi">> & {
|
|
2332
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi", unknown>> & {
|
|
2331
2333
|
currentData?: ResourceTypesResponse | undefined;
|
|
2332
2334
|
isUninitialized: false;
|
|
2333
2335
|
isLoading: false;
|
|
@@ -2352,7 +2354,9 @@ declare const useLazyGetResourceTypesQuery: <R extends Record<string, any> = _re
|
|
|
2352
2354
|
error: graphql.GraphQLError[] | undefined;
|
|
2353
2355
|
data?: undefined;
|
|
2354
2356
|
meta?: {} | undefined;
|
|
2355
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi">>, [R][R extends any ? 0 : never]
|
|
2357
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ResourceTypesResponse, "orchestratorApi", unknown>>, [R][R extends any ? 0 : never] & {
|
|
2358
|
+
reset: () => void;
|
|
2359
|
+
}, {
|
|
2356
2360
|
lastArg: GraphqlQueryVariables<ResourceTypeDefinition>;
|
|
2357
2361
|
}];
|
|
2358
2362
|
declare const useUpdateResourceTypeMutation: <R extends Record<string, any> = ({
|
|
@@ -2527,7 +2531,7 @@ declare const useUpdateResourceTypeMutation: <R extends Record<string, any> = ({
|
|
|
2527
2531
|
error: graphql.GraphQLError[] | undefined;
|
|
2528
2532
|
data?: undefined;
|
|
2529
2533
|
meta?: {} | undefined;
|
|
2530
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, null, "orchestratorApi">>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
2534
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, null, "orchestratorApi", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
2531
2535
|
originalArgs?: MetadataDescriptionParams | undefined;
|
|
2532
2536
|
reset: () => void;
|
|
2533
2537
|
}];
|
|
@@ -2543,13 +2547,13 @@ type WorkflowsResponse = {
|
|
|
2543
2547
|
} & BaseGraphQlResult;
|
|
2544
2548
|
declare const useGetWorkflowsQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
2545
2549
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
2546
|
-
originalArgs?: undefined;
|
|
2547
|
-
data?: undefined;
|
|
2548
|
-
error?: undefined;
|
|
2549
|
-
requestId?: undefined;
|
|
2550
|
+
originalArgs?: undefined | undefined;
|
|
2551
|
+
data?: undefined | undefined;
|
|
2552
|
+
error?: undefined | undefined;
|
|
2553
|
+
requestId?: undefined | undefined;
|
|
2550
2554
|
endpointName?: string | undefined;
|
|
2551
|
-
startedTimeStamp?: undefined;
|
|
2552
|
-
fulfilledTimeStamp?: undefined;
|
|
2555
|
+
startedTimeStamp?: undefined | undefined;
|
|
2556
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
2553
2557
|
} & {
|
|
2554
2558
|
currentData?: WorkflowsResponse | undefined;
|
|
2555
2559
|
isUninitialized: false;
|
|
@@ -2574,7 +2578,7 @@ declare const useGetWorkflowsQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
2574
2578
|
error: graphql.GraphQLError[] | undefined;
|
|
2575
2579
|
data?: undefined;
|
|
2576
2580
|
meta?: {} | undefined;
|
|
2577
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi">> & {
|
|
2581
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>> & {
|
|
2578
2582
|
currentData?: WorkflowsResponse | undefined;
|
|
2579
2583
|
isUninitialized: false;
|
|
2580
2584
|
isLoading: false;
|
|
@@ -2604,7 +2608,7 @@ declare const useGetWorkflowsQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
2604
2608
|
error: graphql.GraphQLError[] | undefined;
|
|
2605
2609
|
data?: undefined;
|
|
2606
2610
|
meta?: {} | undefined;
|
|
2607
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi">> & {
|
|
2611
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>> & {
|
|
2608
2612
|
currentData?: WorkflowsResponse | undefined;
|
|
2609
2613
|
isUninitialized: false;
|
|
2610
2614
|
isLoading: false;
|
|
@@ -2630,7 +2634,7 @@ declare const useGetWorkflowsQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
2630
2634
|
error: graphql.GraphQLError[] | undefined;
|
|
2631
2635
|
data?: undefined;
|
|
2632
2636
|
meta?: {} | undefined;
|
|
2633
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi">> & {
|
|
2637
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>> & {
|
|
2634
2638
|
currentData?: WorkflowsResponse | undefined;
|
|
2635
2639
|
isUninitialized: false;
|
|
2636
2640
|
isLoading: false;
|
|
@@ -2654,7 +2658,7 @@ declare const useGetWorkflowsQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
2654
2658
|
error: graphql.GraphQLError[] | undefined;
|
|
2655
2659
|
data?: undefined;
|
|
2656
2660
|
meta?: {} | undefined;
|
|
2657
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi">> & {
|
|
2661
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>> & {
|
|
2658
2662
|
currentData?: WorkflowsResponse | undefined;
|
|
2659
2663
|
isUninitialized: false;
|
|
2660
2664
|
isLoading: false;
|
|
@@ -2670,13 +2674,13 @@ declare const useGetWorkflowsQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
2670
2674
|
skip?: boolean;
|
|
2671
2675
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
2672
2676
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
2673
|
-
originalArgs?: undefined;
|
|
2674
|
-
data?: undefined;
|
|
2675
|
-
error?: undefined;
|
|
2676
|
-
requestId?: undefined;
|
|
2677
|
+
originalArgs?: undefined | undefined;
|
|
2678
|
+
data?: undefined | undefined;
|
|
2679
|
+
error?: undefined | undefined;
|
|
2680
|
+
requestId?: undefined | undefined;
|
|
2677
2681
|
endpointName?: string | undefined;
|
|
2678
|
-
startedTimeStamp?: undefined;
|
|
2679
|
-
fulfilledTimeStamp?: undefined;
|
|
2682
|
+
startedTimeStamp?: undefined | undefined;
|
|
2683
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
2680
2684
|
} & {
|
|
2681
2685
|
currentData?: WorkflowsResponse | undefined;
|
|
2682
2686
|
isUninitialized: false;
|
|
@@ -2701,7 +2705,7 @@ declare const useGetWorkflowsQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
2701
2705
|
error: graphql.GraphQLError[] | undefined;
|
|
2702
2706
|
data?: undefined;
|
|
2703
2707
|
meta?: {} | undefined;
|
|
2704
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi">> & {
|
|
2708
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>> & {
|
|
2705
2709
|
currentData?: WorkflowsResponse | undefined;
|
|
2706
2710
|
isUninitialized: false;
|
|
2707
2711
|
isLoading: false;
|
|
@@ -2731,7 +2735,7 @@ declare const useGetWorkflowsQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
2731
2735
|
error: graphql.GraphQLError[] | undefined;
|
|
2732
2736
|
data?: undefined;
|
|
2733
2737
|
meta?: {} | undefined;
|
|
2734
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi">> & {
|
|
2738
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>> & {
|
|
2735
2739
|
currentData?: WorkflowsResponse | undefined;
|
|
2736
2740
|
isUninitialized: false;
|
|
2737
2741
|
isLoading: false;
|
|
@@ -2757,7 +2761,7 @@ declare const useGetWorkflowsQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
2757
2761
|
error: graphql.GraphQLError[] | undefined;
|
|
2758
2762
|
data?: undefined;
|
|
2759
2763
|
meta?: {} | undefined;
|
|
2760
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi">> & {
|
|
2764
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>> & {
|
|
2761
2765
|
currentData?: WorkflowsResponse | undefined;
|
|
2762
2766
|
isUninitialized: false;
|
|
2763
2767
|
isLoading: false;
|
|
@@ -2781,7 +2785,7 @@ declare const useGetWorkflowsQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
2781
2785
|
error: graphql.GraphQLError[] | undefined;
|
|
2782
2786
|
data?: undefined;
|
|
2783
2787
|
meta?: {} | undefined;
|
|
2784
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi">> & {
|
|
2788
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>> & {
|
|
2785
2789
|
currentData?: WorkflowsResponse | undefined;
|
|
2786
2790
|
isUninitialized: false;
|
|
2787
2791
|
isLoading: false;
|
|
@@ -2807,17 +2811,17 @@ declare const useGetWorkflowsQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
2807
2811
|
error: graphql.GraphQLError[] | undefined;
|
|
2808
2812
|
data?: undefined;
|
|
2809
2813
|
meta?: {} | undefined;
|
|
2810
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi">>;
|
|
2814
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>>;
|
|
2811
2815
|
};
|
|
2812
2816
|
declare const useLazyGetWorkflowsQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
2813
2817
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
2814
|
-
originalArgs?: undefined;
|
|
2815
|
-
data?: undefined;
|
|
2816
|
-
error?: undefined;
|
|
2817
|
-
requestId?: undefined;
|
|
2818
|
+
originalArgs?: undefined | undefined;
|
|
2819
|
+
data?: undefined | undefined;
|
|
2820
|
+
error?: undefined | undefined;
|
|
2821
|
+
requestId?: undefined | undefined;
|
|
2818
2822
|
endpointName?: string | undefined;
|
|
2819
|
-
startedTimeStamp?: undefined;
|
|
2820
|
-
fulfilledTimeStamp?: undefined;
|
|
2823
|
+
startedTimeStamp?: undefined | undefined;
|
|
2824
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
2821
2825
|
} & {
|
|
2822
2826
|
currentData?: WorkflowsResponse | undefined;
|
|
2823
2827
|
isUninitialized: false;
|
|
@@ -2842,7 +2846,7 @@ declare const useLazyGetWorkflowsQuery: <R extends Record<string, any> = _reduxj
|
|
|
2842
2846
|
error: graphql.GraphQLError[] | undefined;
|
|
2843
2847
|
data?: undefined;
|
|
2844
2848
|
meta?: {} | undefined;
|
|
2845
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi">> & {
|
|
2849
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>> & {
|
|
2846
2850
|
currentData?: WorkflowsResponse | undefined;
|
|
2847
2851
|
isUninitialized: false;
|
|
2848
2852
|
isLoading: false;
|
|
@@ -2872,7 +2876,7 @@ declare const useLazyGetWorkflowsQuery: <R extends Record<string, any> = _reduxj
|
|
|
2872
2876
|
error: graphql.GraphQLError[] | undefined;
|
|
2873
2877
|
data?: undefined;
|
|
2874
2878
|
meta?: {} | undefined;
|
|
2875
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi">> & {
|
|
2879
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>> & {
|
|
2876
2880
|
currentData?: WorkflowsResponse | undefined;
|
|
2877
2881
|
isUninitialized: false;
|
|
2878
2882
|
isLoading: false;
|
|
@@ -2898,7 +2902,7 @@ declare const useLazyGetWorkflowsQuery: <R extends Record<string, any> = _reduxj
|
|
|
2898
2902
|
error: graphql.GraphQLError[] | undefined;
|
|
2899
2903
|
data?: undefined;
|
|
2900
2904
|
meta?: {} | undefined;
|
|
2901
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi">> & {
|
|
2905
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>> & {
|
|
2902
2906
|
currentData?: WorkflowsResponse | undefined;
|
|
2903
2907
|
isUninitialized: false;
|
|
2904
2908
|
isLoading: false;
|
|
@@ -2922,7 +2926,7 @@ declare const useLazyGetWorkflowsQuery: <R extends Record<string, any> = _reduxj
|
|
|
2922
2926
|
error: graphql.GraphQLError[] | undefined;
|
|
2923
2927
|
data?: undefined;
|
|
2924
2928
|
meta?: {} | undefined;
|
|
2925
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi">> & {
|
|
2929
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>> & {
|
|
2926
2930
|
currentData?: WorkflowsResponse | undefined;
|
|
2927
2931
|
isUninitialized: false;
|
|
2928
2932
|
isLoading: false;
|
|
@@ -2935,13 +2939,13 @@ declare const useLazyGetWorkflowsQuery: <R extends Record<string, any> = _reduxj
|
|
|
2935
2939
|
skip?: boolean;
|
|
2936
2940
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
2937
2941
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
2938
|
-
originalArgs?: undefined;
|
|
2939
|
-
data?: undefined;
|
|
2940
|
-
error?: undefined;
|
|
2941
|
-
requestId?: undefined;
|
|
2942
|
+
originalArgs?: undefined | undefined;
|
|
2943
|
+
data?: undefined | undefined;
|
|
2944
|
+
error?: undefined | undefined;
|
|
2945
|
+
requestId?: undefined | undefined;
|
|
2942
2946
|
endpointName?: string | undefined;
|
|
2943
|
-
startedTimeStamp?: undefined;
|
|
2944
|
-
fulfilledTimeStamp?: undefined;
|
|
2947
|
+
startedTimeStamp?: undefined | undefined;
|
|
2948
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
2945
2949
|
} & {
|
|
2946
2950
|
currentData?: WorkflowsResponse | undefined;
|
|
2947
2951
|
isUninitialized: false;
|
|
@@ -2966,7 +2970,7 @@ declare const useLazyGetWorkflowsQuery: <R extends Record<string, any> = _reduxj
|
|
|
2966
2970
|
error: graphql.GraphQLError[] | undefined;
|
|
2967
2971
|
data?: undefined;
|
|
2968
2972
|
meta?: {} | undefined;
|
|
2969
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi">> & {
|
|
2973
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>> & {
|
|
2970
2974
|
currentData?: WorkflowsResponse | undefined;
|
|
2971
2975
|
isUninitialized: false;
|
|
2972
2976
|
isLoading: false;
|
|
@@ -2996,7 +3000,7 @@ declare const useLazyGetWorkflowsQuery: <R extends Record<string, any> = _reduxj
|
|
|
2996
3000
|
error: graphql.GraphQLError[] | undefined;
|
|
2997
3001
|
data?: undefined;
|
|
2998
3002
|
meta?: {} | undefined;
|
|
2999
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi">> & {
|
|
3003
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>> & {
|
|
3000
3004
|
currentData?: WorkflowsResponse | undefined;
|
|
3001
3005
|
isUninitialized: false;
|
|
3002
3006
|
isLoading: false;
|
|
@@ -3022,7 +3026,7 @@ declare const useLazyGetWorkflowsQuery: <R extends Record<string, any> = _reduxj
|
|
|
3022
3026
|
error: graphql.GraphQLError[] | undefined;
|
|
3023
3027
|
data?: undefined;
|
|
3024
3028
|
meta?: {} | undefined;
|
|
3025
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi">> & {
|
|
3029
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>> & {
|
|
3026
3030
|
currentData?: WorkflowsResponse | undefined;
|
|
3027
3031
|
isUninitialized: false;
|
|
3028
3032
|
isLoading: false;
|
|
@@ -3046,7 +3050,7 @@ declare const useLazyGetWorkflowsQuery: <R extends Record<string, any> = _reduxj
|
|
|
3046
3050
|
error: graphql.GraphQLError[] | undefined;
|
|
3047
3051
|
data?: undefined;
|
|
3048
3052
|
meta?: {} | undefined;
|
|
3049
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi">> & {
|
|
3053
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>> & {
|
|
3050
3054
|
currentData?: WorkflowsResponse | undefined;
|
|
3051
3055
|
isUninitialized: false;
|
|
3052
3056
|
isLoading: false;
|
|
@@ -3071,18 +3075,20 @@ declare const useLazyGetWorkflowsQuery: <R extends Record<string, any> = _reduxj
|
|
|
3071
3075
|
error: graphql.GraphQLError[] | undefined;
|
|
3072
3076
|
data?: undefined;
|
|
3073
3077
|
meta?: {} | undefined;
|
|
3074
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi">>, [R][R extends any ? 0 : never]
|
|
3078
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>>, [R][R extends any ? 0 : never] & {
|
|
3079
|
+
reset: () => void;
|
|
3080
|
+
}, {
|
|
3075
3081
|
lastArg: GraphqlQueryVariables<WorkflowDefinition>;
|
|
3076
3082
|
}];
|
|
3077
3083
|
declare const useGetDescriptionForWorkflowNameQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
3078
3084
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3079
|
-
originalArgs?: undefined;
|
|
3080
|
-
data?: undefined;
|
|
3081
|
-
error?: undefined;
|
|
3082
|
-
requestId?: undefined;
|
|
3085
|
+
originalArgs?: undefined | undefined;
|
|
3086
|
+
data?: undefined | undefined;
|
|
3087
|
+
error?: undefined | undefined;
|
|
3088
|
+
requestId?: undefined | undefined;
|
|
3083
3089
|
endpointName?: string | undefined;
|
|
3084
|
-
startedTimeStamp?: undefined;
|
|
3085
|
-
fulfilledTimeStamp?: undefined;
|
|
3090
|
+
startedTimeStamp?: undefined | undefined;
|
|
3091
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
3086
3092
|
} & {
|
|
3087
3093
|
currentData?: WorkflowsDescriptionResponse | undefined;
|
|
3088
3094
|
isUninitialized: false;
|
|
@@ -3107,7 +3113,7 @@ declare const useGetDescriptionForWorkflowNameQuery: <R extends Record<string, a
|
|
|
3107
3113
|
error: graphql.GraphQLError[] | undefined;
|
|
3108
3114
|
data?: undefined;
|
|
3109
3115
|
meta?: {} | undefined;
|
|
3110
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsDescriptionResponse, "orchestratorApi">> & {
|
|
3116
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsDescriptionResponse, "orchestratorApi", unknown>> & {
|
|
3111
3117
|
currentData?: WorkflowsDescriptionResponse | undefined;
|
|
3112
3118
|
isUninitialized: false;
|
|
3113
3119
|
isLoading: false;
|
|
@@ -3137,7 +3143,7 @@ declare const useGetDescriptionForWorkflowNameQuery: <R extends Record<string, a
|
|
|
3137
3143
|
error: graphql.GraphQLError[] | undefined;
|
|
3138
3144
|
data?: undefined;
|
|
3139
3145
|
meta?: {} | undefined;
|
|
3140
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsDescriptionResponse, "orchestratorApi">> & {
|
|
3146
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsDescriptionResponse, "orchestratorApi", unknown>> & {
|
|
3141
3147
|
currentData?: WorkflowsDescriptionResponse | undefined;
|
|
3142
3148
|
isUninitialized: false;
|
|
3143
3149
|
isLoading: false;
|
|
@@ -3163,7 +3169,7 @@ declare const useGetDescriptionForWorkflowNameQuery: <R extends Record<string, a
|
|
|
3163
3169
|
error: graphql.GraphQLError[] | undefined;
|
|
3164
3170
|
data?: undefined;
|
|
3165
3171
|
meta?: {} | undefined;
|
|
3166
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsDescriptionResponse, "orchestratorApi">> & {
|
|
3172
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsDescriptionResponse, "orchestratorApi", unknown>> & {
|
|
3167
3173
|
currentData?: WorkflowsDescriptionResponse | undefined;
|
|
3168
3174
|
isUninitialized: false;
|
|
3169
3175
|
isLoading: false;
|
|
@@ -3187,7 +3193,7 @@ declare const useGetDescriptionForWorkflowNameQuery: <R extends Record<string, a
|
|
|
3187
3193
|
error: graphql.GraphQLError[] | undefined;
|
|
3188
3194
|
data?: undefined;
|
|
3189
3195
|
meta?: {} | undefined;
|
|
3190
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsDescriptionResponse, "orchestratorApi">> & {
|
|
3196
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsDescriptionResponse, "orchestratorApi", unknown>> & {
|
|
3191
3197
|
currentData?: WorkflowsDescriptionResponse | undefined;
|
|
3192
3198
|
isUninitialized: false;
|
|
3193
3199
|
isLoading: false;
|
|
@@ -3203,13 +3209,13 @@ declare const useGetDescriptionForWorkflowNameQuery: <R extends Record<string, a
|
|
|
3203
3209
|
skip?: boolean;
|
|
3204
3210
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
3205
3211
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3206
|
-
originalArgs?: undefined;
|
|
3207
|
-
data?: undefined;
|
|
3208
|
-
error?: undefined;
|
|
3209
|
-
requestId?: undefined;
|
|
3212
|
+
originalArgs?: undefined | undefined;
|
|
3213
|
+
data?: undefined | undefined;
|
|
3214
|
+
error?: undefined | undefined;
|
|
3215
|
+
requestId?: undefined | undefined;
|
|
3210
3216
|
endpointName?: string | undefined;
|
|
3211
|
-
startedTimeStamp?: undefined;
|
|
3212
|
-
fulfilledTimeStamp?: undefined;
|
|
3217
|
+
startedTimeStamp?: undefined | undefined;
|
|
3218
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
3213
3219
|
} & {
|
|
3214
3220
|
currentData?: WorkflowsDescriptionResponse | undefined;
|
|
3215
3221
|
isUninitialized: false;
|
|
@@ -3234,7 +3240,7 @@ declare const useGetDescriptionForWorkflowNameQuery: <R extends Record<string, a
|
|
|
3234
3240
|
error: graphql.GraphQLError[] | undefined;
|
|
3235
3241
|
data?: undefined;
|
|
3236
3242
|
meta?: {} | undefined;
|
|
3237
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsDescriptionResponse, "orchestratorApi">> & {
|
|
3243
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsDescriptionResponse, "orchestratorApi", unknown>> & {
|
|
3238
3244
|
currentData?: WorkflowsDescriptionResponse | undefined;
|
|
3239
3245
|
isUninitialized: false;
|
|
3240
3246
|
isLoading: false;
|
|
@@ -3264,7 +3270,7 @@ declare const useGetDescriptionForWorkflowNameQuery: <R extends Record<string, a
|
|
|
3264
3270
|
error: graphql.GraphQLError[] | undefined;
|
|
3265
3271
|
data?: undefined;
|
|
3266
3272
|
meta?: {} | undefined;
|
|
3267
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsDescriptionResponse, "orchestratorApi">> & {
|
|
3273
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsDescriptionResponse, "orchestratorApi", unknown>> & {
|
|
3268
3274
|
currentData?: WorkflowsDescriptionResponse | undefined;
|
|
3269
3275
|
isUninitialized: false;
|
|
3270
3276
|
isLoading: false;
|
|
@@ -3290,7 +3296,7 @@ declare const useGetDescriptionForWorkflowNameQuery: <R extends Record<string, a
|
|
|
3290
3296
|
error: graphql.GraphQLError[] | undefined;
|
|
3291
3297
|
data?: undefined;
|
|
3292
3298
|
meta?: {} | undefined;
|
|
3293
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsDescriptionResponse, "orchestratorApi">> & {
|
|
3299
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsDescriptionResponse, "orchestratorApi", unknown>> & {
|
|
3294
3300
|
currentData?: WorkflowsDescriptionResponse | undefined;
|
|
3295
3301
|
isUninitialized: false;
|
|
3296
3302
|
isLoading: false;
|
|
@@ -3314,7 +3320,7 @@ declare const useGetDescriptionForWorkflowNameQuery: <R extends Record<string, a
|
|
|
3314
3320
|
error: graphql.GraphQLError[] | undefined;
|
|
3315
3321
|
data?: undefined;
|
|
3316
3322
|
meta?: {} | undefined;
|
|
3317
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsDescriptionResponse, "orchestratorApi">> & {
|
|
3323
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsDescriptionResponse, "orchestratorApi", unknown>> & {
|
|
3318
3324
|
currentData?: WorkflowsDescriptionResponse | undefined;
|
|
3319
3325
|
isUninitialized: false;
|
|
3320
3326
|
isLoading: false;
|
|
@@ -3340,7 +3346,7 @@ declare const useGetDescriptionForWorkflowNameQuery: <R extends Record<string, a
|
|
|
3340
3346
|
error: graphql.GraphQLError[] | undefined;
|
|
3341
3347
|
data?: undefined;
|
|
3342
3348
|
meta?: {} | undefined;
|
|
3343
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsDescriptionResponse, "orchestratorApi">>;
|
|
3349
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsDescriptionResponse, "orchestratorApi", unknown>>;
|
|
3344
3350
|
};
|
|
3345
3351
|
declare const useUpdateWorkflowMutation: <R extends Record<string, any> = ({
|
|
3346
3352
|
requestId?: undefined;
|
|
@@ -3514,7 +3520,7 @@ declare const useUpdateWorkflowMutation: <R extends Record<string, any> = ({
|
|
|
3514
3520
|
error: graphql.GraphQLError[] | undefined;
|
|
3515
3521
|
data?: undefined;
|
|
3516
3522
|
meta?: {} | undefined;
|
|
3517
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, null, "orchestratorApi">>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
3523
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, null, "orchestratorApi", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
3518
3524
|
originalArgs?: MetadataDescriptionParams | undefined;
|
|
3519
3525
|
reset: () => void;
|
|
3520
3526
|
}];
|
|
@@ -3525,13 +3531,13 @@ type TasksResponse = {
|
|
|
3525
3531
|
} & BaseGraphQlResult;
|
|
3526
3532
|
declare const useGetTasksQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
3527
3533
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3528
|
-
originalArgs?: undefined;
|
|
3529
|
-
data?: undefined;
|
|
3530
|
-
error?: undefined;
|
|
3531
|
-
requestId?: undefined;
|
|
3534
|
+
originalArgs?: undefined | undefined;
|
|
3535
|
+
data?: undefined | undefined;
|
|
3536
|
+
error?: undefined | undefined;
|
|
3537
|
+
requestId?: undefined | undefined;
|
|
3532
3538
|
endpointName?: string | undefined;
|
|
3533
|
-
startedTimeStamp?: undefined;
|
|
3534
|
-
fulfilledTimeStamp?: undefined;
|
|
3539
|
+
startedTimeStamp?: undefined | undefined;
|
|
3540
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
3535
3541
|
} & {
|
|
3536
3542
|
currentData?: TasksResponse | undefined;
|
|
3537
3543
|
isUninitialized: false;
|
|
@@ -3556,7 +3562,7 @@ declare const useGetTasksQuery: <R extends Record<string, any> = _reduxjs_toolki
|
|
|
3556
3562
|
error: graphql.GraphQLError[] | undefined;
|
|
3557
3563
|
data?: undefined;
|
|
3558
3564
|
meta?: {} | undefined;
|
|
3559
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi">> & {
|
|
3565
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>> & {
|
|
3560
3566
|
currentData?: TasksResponse | undefined;
|
|
3561
3567
|
isUninitialized: false;
|
|
3562
3568
|
isLoading: false;
|
|
@@ -3586,7 +3592,7 @@ declare const useGetTasksQuery: <R extends Record<string, any> = _reduxjs_toolki
|
|
|
3586
3592
|
error: graphql.GraphQLError[] | undefined;
|
|
3587
3593
|
data?: undefined;
|
|
3588
3594
|
meta?: {} | undefined;
|
|
3589
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi">> & {
|
|
3595
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>> & {
|
|
3590
3596
|
currentData?: TasksResponse | undefined;
|
|
3591
3597
|
isUninitialized: false;
|
|
3592
3598
|
isLoading: false;
|
|
@@ -3612,7 +3618,7 @@ declare const useGetTasksQuery: <R extends Record<string, any> = _reduxjs_toolki
|
|
|
3612
3618
|
error: graphql.GraphQLError[] | undefined;
|
|
3613
3619
|
data?: undefined;
|
|
3614
3620
|
meta?: {} | undefined;
|
|
3615
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi">> & {
|
|
3621
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>> & {
|
|
3616
3622
|
currentData?: TasksResponse | undefined;
|
|
3617
3623
|
isUninitialized: false;
|
|
3618
3624
|
isLoading: false;
|
|
@@ -3636,7 +3642,7 @@ declare const useGetTasksQuery: <R extends Record<string, any> = _reduxjs_toolki
|
|
|
3636
3642
|
error: graphql.GraphQLError[] | undefined;
|
|
3637
3643
|
data?: undefined;
|
|
3638
3644
|
meta?: {} | undefined;
|
|
3639
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi">> & {
|
|
3645
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>> & {
|
|
3640
3646
|
currentData?: TasksResponse | undefined;
|
|
3641
3647
|
isUninitialized: false;
|
|
3642
3648
|
isLoading: false;
|
|
@@ -3652,13 +3658,13 @@ declare const useGetTasksQuery: <R extends Record<string, any> = _reduxjs_toolki
|
|
|
3652
3658
|
skip?: boolean;
|
|
3653
3659
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
3654
3660
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3655
|
-
originalArgs?: undefined;
|
|
3656
|
-
data?: undefined;
|
|
3657
|
-
error?: undefined;
|
|
3658
|
-
requestId?: undefined;
|
|
3661
|
+
originalArgs?: undefined | undefined;
|
|
3662
|
+
data?: undefined | undefined;
|
|
3663
|
+
error?: undefined | undefined;
|
|
3664
|
+
requestId?: undefined | undefined;
|
|
3659
3665
|
endpointName?: string | undefined;
|
|
3660
|
-
startedTimeStamp?: undefined;
|
|
3661
|
-
fulfilledTimeStamp?: undefined;
|
|
3666
|
+
startedTimeStamp?: undefined | undefined;
|
|
3667
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
3662
3668
|
} & {
|
|
3663
3669
|
currentData?: TasksResponse | undefined;
|
|
3664
3670
|
isUninitialized: false;
|
|
@@ -3683,7 +3689,7 @@ declare const useGetTasksQuery: <R extends Record<string, any> = _reduxjs_toolki
|
|
|
3683
3689
|
error: graphql.GraphQLError[] | undefined;
|
|
3684
3690
|
data?: undefined;
|
|
3685
3691
|
meta?: {} | undefined;
|
|
3686
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi">> & {
|
|
3692
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>> & {
|
|
3687
3693
|
currentData?: TasksResponse | undefined;
|
|
3688
3694
|
isUninitialized: false;
|
|
3689
3695
|
isLoading: false;
|
|
@@ -3713,7 +3719,7 @@ declare const useGetTasksQuery: <R extends Record<string, any> = _reduxjs_toolki
|
|
|
3713
3719
|
error: graphql.GraphQLError[] | undefined;
|
|
3714
3720
|
data?: undefined;
|
|
3715
3721
|
meta?: {} | undefined;
|
|
3716
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi">> & {
|
|
3722
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>> & {
|
|
3717
3723
|
currentData?: TasksResponse | undefined;
|
|
3718
3724
|
isUninitialized: false;
|
|
3719
3725
|
isLoading: false;
|
|
@@ -3739,7 +3745,7 @@ declare const useGetTasksQuery: <R extends Record<string, any> = _reduxjs_toolki
|
|
|
3739
3745
|
error: graphql.GraphQLError[] | undefined;
|
|
3740
3746
|
data?: undefined;
|
|
3741
3747
|
meta?: {} | undefined;
|
|
3742
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi">> & {
|
|
3748
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>> & {
|
|
3743
3749
|
currentData?: TasksResponse | undefined;
|
|
3744
3750
|
isUninitialized: false;
|
|
3745
3751
|
isLoading: false;
|
|
@@ -3763,7 +3769,7 @@ declare const useGetTasksQuery: <R extends Record<string, any> = _reduxjs_toolki
|
|
|
3763
3769
|
error: graphql.GraphQLError[] | undefined;
|
|
3764
3770
|
data?: undefined;
|
|
3765
3771
|
meta?: {} | undefined;
|
|
3766
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi">> & {
|
|
3772
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>> & {
|
|
3767
3773
|
currentData?: TasksResponse | undefined;
|
|
3768
3774
|
isUninitialized: false;
|
|
3769
3775
|
isLoading: false;
|
|
@@ -3789,17 +3795,17 @@ declare const useGetTasksQuery: <R extends Record<string, any> = _reduxjs_toolki
|
|
|
3789
3795
|
error: graphql.GraphQLError[] | undefined;
|
|
3790
3796
|
data?: undefined;
|
|
3791
3797
|
meta?: {} | undefined;
|
|
3792
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi">>;
|
|
3798
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>>;
|
|
3793
3799
|
};
|
|
3794
3800
|
declare const useLazyGetTasksQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
3795
3801
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3796
|
-
originalArgs?: undefined;
|
|
3797
|
-
data?: undefined;
|
|
3798
|
-
error?: undefined;
|
|
3799
|
-
requestId?: undefined;
|
|
3802
|
+
originalArgs?: undefined | undefined;
|
|
3803
|
+
data?: undefined | undefined;
|
|
3804
|
+
error?: undefined | undefined;
|
|
3805
|
+
requestId?: undefined | undefined;
|
|
3800
3806
|
endpointName?: string | undefined;
|
|
3801
|
-
startedTimeStamp?: undefined;
|
|
3802
|
-
fulfilledTimeStamp?: undefined;
|
|
3807
|
+
startedTimeStamp?: undefined | undefined;
|
|
3808
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
3803
3809
|
} & {
|
|
3804
3810
|
currentData?: TasksResponse | undefined;
|
|
3805
3811
|
isUninitialized: false;
|
|
@@ -3824,7 +3830,7 @@ declare const useLazyGetTasksQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
3824
3830
|
error: graphql.GraphQLError[] | undefined;
|
|
3825
3831
|
data?: undefined;
|
|
3826
3832
|
meta?: {} | undefined;
|
|
3827
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi">> & {
|
|
3833
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>> & {
|
|
3828
3834
|
currentData?: TasksResponse | undefined;
|
|
3829
3835
|
isUninitialized: false;
|
|
3830
3836
|
isLoading: false;
|
|
@@ -3854,7 +3860,7 @@ declare const useLazyGetTasksQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
3854
3860
|
error: graphql.GraphQLError[] | undefined;
|
|
3855
3861
|
data?: undefined;
|
|
3856
3862
|
meta?: {} | undefined;
|
|
3857
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi">> & {
|
|
3863
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>> & {
|
|
3858
3864
|
currentData?: TasksResponse | undefined;
|
|
3859
3865
|
isUninitialized: false;
|
|
3860
3866
|
isLoading: false;
|
|
@@ -3880,7 +3886,7 @@ declare const useLazyGetTasksQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
3880
3886
|
error: graphql.GraphQLError[] | undefined;
|
|
3881
3887
|
data?: undefined;
|
|
3882
3888
|
meta?: {} | undefined;
|
|
3883
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi">> & {
|
|
3889
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>> & {
|
|
3884
3890
|
currentData?: TasksResponse | undefined;
|
|
3885
3891
|
isUninitialized: false;
|
|
3886
3892
|
isLoading: false;
|
|
@@ -3904,7 +3910,7 @@ declare const useLazyGetTasksQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
3904
3910
|
error: graphql.GraphQLError[] | undefined;
|
|
3905
3911
|
data?: undefined;
|
|
3906
3912
|
meta?: {} | undefined;
|
|
3907
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi">> & {
|
|
3913
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>> & {
|
|
3908
3914
|
currentData?: TasksResponse | undefined;
|
|
3909
3915
|
isUninitialized: false;
|
|
3910
3916
|
isLoading: false;
|
|
@@ -3917,13 +3923,13 @@ declare const useLazyGetTasksQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
3917
3923
|
skip?: boolean;
|
|
3918
3924
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
3919
3925
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3920
|
-
originalArgs?: undefined;
|
|
3921
|
-
data?: undefined;
|
|
3922
|
-
error?: undefined;
|
|
3923
|
-
requestId?: undefined;
|
|
3926
|
+
originalArgs?: undefined | undefined;
|
|
3927
|
+
data?: undefined | undefined;
|
|
3928
|
+
error?: undefined | undefined;
|
|
3929
|
+
requestId?: undefined | undefined;
|
|
3924
3930
|
endpointName?: string | undefined;
|
|
3925
|
-
startedTimeStamp?: undefined;
|
|
3926
|
-
fulfilledTimeStamp?: undefined;
|
|
3931
|
+
startedTimeStamp?: undefined | undefined;
|
|
3932
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
3927
3933
|
} & {
|
|
3928
3934
|
currentData?: TasksResponse | undefined;
|
|
3929
3935
|
isUninitialized: false;
|
|
@@ -3948,7 +3954,7 @@ declare const useLazyGetTasksQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
3948
3954
|
error: graphql.GraphQLError[] | undefined;
|
|
3949
3955
|
data?: undefined;
|
|
3950
3956
|
meta?: {} | undefined;
|
|
3951
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi">> & {
|
|
3957
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>> & {
|
|
3952
3958
|
currentData?: TasksResponse | undefined;
|
|
3953
3959
|
isUninitialized: false;
|
|
3954
3960
|
isLoading: false;
|
|
@@ -3978,7 +3984,7 @@ declare const useLazyGetTasksQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
3978
3984
|
error: graphql.GraphQLError[] | undefined;
|
|
3979
3985
|
data?: undefined;
|
|
3980
3986
|
meta?: {} | undefined;
|
|
3981
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi">> & {
|
|
3987
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>> & {
|
|
3982
3988
|
currentData?: TasksResponse | undefined;
|
|
3983
3989
|
isUninitialized: false;
|
|
3984
3990
|
isLoading: false;
|
|
@@ -4004,7 +4010,7 @@ declare const useLazyGetTasksQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
4004
4010
|
error: graphql.GraphQLError[] | undefined;
|
|
4005
4011
|
data?: undefined;
|
|
4006
4012
|
meta?: {} | undefined;
|
|
4007
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi">> & {
|
|
4013
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>> & {
|
|
4008
4014
|
currentData?: TasksResponse | undefined;
|
|
4009
4015
|
isUninitialized: false;
|
|
4010
4016
|
isLoading: false;
|
|
@@ -4028,7 +4034,7 @@ declare const useLazyGetTasksQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
4028
4034
|
error: graphql.GraphQLError[] | undefined;
|
|
4029
4035
|
data?: undefined;
|
|
4030
4036
|
meta?: {} | undefined;
|
|
4031
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi">> & {
|
|
4037
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>> & {
|
|
4032
4038
|
currentData?: TasksResponse | undefined;
|
|
4033
4039
|
isUninitialized: false;
|
|
4034
4040
|
isLoading: false;
|
|
@@ -4053,7 +4059,9 @@ declare const useLazyGetTasksQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
4053
4059
|
error: graphql.GraphQLError[] | undefined;
|
|
4054
4060
|
data?: undefined;
|
|
4055
4061
|
meta?: {} | undefined;
|
|
4056
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi">>, [R][R extends any ? 0 : never]
|
|
4062
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>>, [R][R extends any ? 0 : never] & {
|
|
4063
|
+
reset: () => void;
|
|
4064
|
+
}, {
|
|
4057
4065
|
lastArg: GraphqlQueryVariables<TaskDefinition>;
|
|
4058
4066
|
}];
|
|
4059
4067
|
|
|
@@ -4063,13 +4071,13 @@ type ProcessDetailResponse = {
|
|
|
4063
4071
|
};
|
|
4064
4072
|
declare const useGetProcessDetailQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
4065
4073
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
4066
|
-
originalArgs?: undefined;
|
|
4067
|
-
data?: undefined;
|
|
4068
|
-
error?: undefined;
|
|
4069
|
-
requestId?: undefined;
|
|
4074
|
+
originalArgs?: undefined | undefined;
|
|
4075
|
+
data?: undefined | undefined;
|
|
4076
|
+
error?: undefined | undefined;
|
|
4077
|
+
requestId?: undefined | undefined;
|
|
4070
4078
|
endpointName?: string | undefined;
|
|
4071
|
-
startedTimeStamp?: undefined;
|
|
4072
|
-
fulfilledTimeStamp?: undefined;
|
|
4079
|
+
startedTimeStamp?: undefined | undefined;
|
|
4080
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
4073
4081
|
} & {
|
|
4074
4082
|
currentData?: ProcessDetailResponse | undefined;
|
|
4075
4083
|
isUninitialized: false;
|
|
@@ -4096,7 +4104,7 @@ declare const useGetProcessDetailQuery: <R extends Record<string, any> = _reduxj
|
|
|
4096
4104
|
error: graphql.GraphQLError[] | undefined;
|
|
4097
4105
|
data?: undefined;
|
|
4098
4106
|
meta?: {} | undefined;
|
|
4099
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResponse, "orchestratorApi">> & {
|
|
4107
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResponse, "orchestratorApi", unknown>> & {
|
|
4100
4108
|
currentData?: ProcessDetailResponse | undefined;
|
|
4101
4109
|
isUninitialized: false;
|
|
4102
4110
|
isLoading: false;
|
|
@@ -4128,7 +4136,7 @@ declare const useGetProcessDetailQuery: <R extends Record<string, any> = _reduxj
|
|
|
4128
4136
|
error: graphql.GraphQLError[] | undefined;
|
|
4129
4137
|
data?: undefined;
|
|
4130
4138
|
meta?: {} | undefined;
|
|
4131
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResponse, "orchestratorApi">> & {
|
|
4139
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResponse, "orchestratorApi", unknown>> & {
|
|
4132
4140
|
currentData?: ProcessDetailResponse | undefined;
|
|
4133
4141
|
isUninitialized: false;
|
|
4134
4142
|
isLoading: false;
|
|
@@ -4156,7 +4164,7 @@ declare const useGetProcessDetailQuery: <R extends Record<string, any> = _reduxj
|
|
|
4156
4164
|
error: graphql.GraphQLError[] | undefined;
|
|
4157
4165
|
data?: undefined;
|
|
4158
4166
|
meta?: {} | undefined;
|
|
4159
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResponse, "orchestratorApi">> & {
|
|
4167
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResponse, "orchestratorApi", unknown>> & {
|
|
4160
4168
|
currentData?: ProcessDetailResponse | undefined;
|
|
4161
4169
|
isUninitialized: false;
|
|
4162
4170
|
isLoading: false;
|
|
@@ -4182,7 +4190,7 @@ declare const useGetProcessDetailQuery: <R extends Record<string, any> = _reduxj
|
|
|
4182
4190
|
error: graphql.GraphQLError[] | undefined;
|
|
4183
4191
|
data?: undefined;
|
|
4184
4192
|
meta?: {} | undefined;
|
|
4185
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResponse, "orchestratorApi">> & {
|
|
4193
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResponse, "orchestratorApi", unknown>> & {
|
|
4186
4194
|
currentData?: ProcessDetailResponse | undefined;
|
|
4187
4195
|
isUninitialized: false;
|
|
4188
4196
|
isLoading: false;
|
|
@@ -4200,13 +4208,13 @@ declare const useGetProcessDetailQuery: <R extends Record<string, any> = _reduxj
|
|
|
4200
4208
|
skip?: boolean;
|
|
4201
4209
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
4202
4210
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
4203
|
-
originalArgs?: undefined;
|
|
4204
|
-
data?: undefined;
|
|
4205
|
-
error?: undefined;
|
|
4206
|
-
requestId?: undefined;
|
|
4211
|
+
originalArgs?: undefined | undefined;
|
|
4212
|
+
data?: undefined | undefined;
|
|
4213
|
+
error?: undefined | undefined;
|
|
4214
|
+
requestId?: undefined | undefined;
|
|
4207
4215
|
endpointName?: string | undefined;
|
|
4208
|
-
startedTimeStamp?: undefined;
|
|
4209
|
-
fulfilledTimeStamp?: undefined;
|
|
4216
|
+
startedTimeStamp?: undefined | undefined;
|
|
4217
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
4210
4218
|
} & {
|
|
4211
4219
|
currentData?: ProcessDetailResponse | undefined;
|
|
4212
4220
|
isUninitialized: false;
|
|
@@ -4233,7 +4241,7 @@ declare const useGetProcessDetailQuery: <R extends Record<string, any> = _reduxj
|
|
|
4233
4241
|
error: graphql.GraphQLError[] | undefined;
|
|
4234
4242
|
data?: undefined;
|
|
4235
4243
|
meta?: {} | undefined;
|
|
4236
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResponse, "orchestratorApi">> & {
|
|
4244
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResponse, "orchestratorApi", unknown>> & {
|
|
4237
4245
|
currentData?: ProcessDetailResponse | undefined;
|
|
4238
4246
|
isUninitialized: false;
|
|
4239
4247
|
isLoading: false;
|
|
@@ -4265,7 +4273,7 @@ declare const useGetProcessDetailQuery: <R extends Record<string, any> = _reduxj
|
|
|
4265
4273
|
error: graphql.GraphQLError[] | undefined;
|
|
4266
4274
|
data?: undefined;
|
|
4267
4275
|
meta?: {} | undefined;
|
|
4268
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResponse, "orchestratorApi">> & {
|
|
4276
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResponse, "orchestratorApi", unknown>> & {
|
|
4269
4277
|
currentData?: ProcessDetailResponse | undefined;
|
|
4270
4278
|
isUninitialized: false;
|
|
4271
4279
|
isLoading: false;
|
|
@@ -4293,7 +4301,7 @@ declare const useGetProcessDetailQuery: <R extends Record<string, any> = _reduxj
|
|
|
4293
4301
|
error: graphql.GraphQLError[] | undefined;
|
|
4294
4302
|
data?: undefined;
|
|
4295
4303
|
meta?: {} | undefined;
|
|
4296
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResponse, "orchestratorApi">> & {
|
|
4304
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResponse, "orchestratorApi", unknown>> & {
|
|
4297
4305
|
currentData?: ProcessDetailResponse | undefined;
|
|
4298
4306
|
isUninitialized: false;
|
|
4299
4307
|
isLoading: false;
|
|
@@ -4319,7 +4327,7 @@ declare const useGetProcessDetailQuery: <R extends Record<string, any> = _reduxj
|
|
|
4319
4327
|
error: graphql.GraphQLError[] | undefined;
|
|
4320
4328
|
data?: undefined;
|
|
4321
4329
|
meta?: {} | undefined;
|
|
4322
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResponse, "orchestratorApi">> & {
|
|
4330
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResponse, "orchestratorApi", unknown>> & {
|
|
4323
4331
|
currentData?: ProcessDetailResponse | undefined;
|
|
4324
4332
|
isUninitialized: false;
|
|
4325
4333
|
isLoading: false;
|
|
@@ -4347,17 +4355,17 @@ declare const useGetProcessDetailQuery: <R extends Record<string, any> = _reduxj
|
|
|
4347
4355
|
error: graphql.GraphQLError[] | undefined;
|
|
4348
4356
|
data?: undefined;
|
|
4349
4357
|
meta?: {} | undefined;
|
|
4350
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResponse, "orchestratorApi">>;
|
|
4358
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResponse, "orchestratorApi", unknown>>;
|
|
4351
4359
|
};
|
|
4352
4360
|
declare const useGetRawProcessDetailQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
4353
4361
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
4354
|
-
originalArgs?: undefined;
|
|
4355
|
-
data?: undefined;
|
|
4356
|
-
error?: undefined;
|
|
4357
|
-
requestId?: undefined;
|
|
4362
|
+
originalArgs?: undefined | undefined;
|
|
4363
|
+
data?: undefined | undefined;
|
|
4364
|
+
error?: undefined | undefined;
|
|
4365
|
+
requestId?: undefined | undefined;
|
|
4358
4366
|
endpointName?: string | undefined;
|
|
4359
|
-
startedTimeStamp?: undefined;
|
|
4360
|
-
fulfilledTimeStamp?: undefined;
|
|
4367
|
+
startedTimeStamp?: undefined | undefined;
|
|
4368
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
4361
4369
|
} & {
|
|
4362
4370
|
currentData?: ProcessDetailResultRaw | undefined;
|
|
4363
4371
|
isUninitialized: false;
|
|
@@ -4384,7 +4392,7 @@ declare const useGetRawProcessDetailQuery: <R extends Record<string, any> = _red
|
|
|
4384
4392
|
error: graphql.GraphQLError[] | undefined;
|
|
4385
4393
|
data?: undefined;
|
|
4386
4394
|
meta?: {} | undefined;
|
|
4387
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResultRaw, "orchestratorApi">> & {
|
|
4395
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResultRaw, "orchestratorApi", unknown>> & {
|
|
4388
4396
|
currentData?: ProcessDetailResultRaw | undefined;
|
|
4389
4397
|
isUninitialized: false;
|
|
4390
4398
|
isLoading: false;
|
|
@@ -4416,7 +4424,7 @@ declare const useGetRawProcessDetailQuery: <R extends Record<string, any> = _red
|
|
|
4416
4424
|
error: graphql.GraphQLError[] | undefined;
|
|
4417
4425
|
data?: undefined;
|
|
4418
4426
|
meta?: {} | undefined;
|
|
4419
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResultRaw, "orchestratorApi">> & {
|
|
4427
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResultRaw, "orchestratorApi", unknown>> & {
|
|
4420
4428
|
currentData?: ProcessDetailResultRaw | undefined;
|
|
4421
4429
|
isUninitialized: false;
|
|
4422
4430
|
isLoading: false;
|
|
@@ -4444,7 +4452,7 @@ declare const useGetRawProcessDetailQuery: <R extends Record<string, any> = _red
|
|
|
4444
4452
|
error: graphql.GraphQLError[] | undefined;
|
|
4445
4453
|
data?: undefined;
|
|
4446
4454
|
meta?: {} | undefined;
|
|
4447
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResultRaw, "orchestratorApi">> & {
|
|
4455
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResultRaw, "orchestratorApi", unknown>> & {
|
|
4448
4456
|
currentData?: ProcessDetailResultRaw | undefined;
|
|
4449
4457
|
isUninitialized: false;
|
|
4450
4458
|
isLoading: false;
|
|
@@ -4470,7 +4478,7 @@ declare const useGetRawProcessDetailQuery: <R extends Record<string, any> = _red
|
|
|
4470
4478
|
error: graphql.GraphQLError[] | undefined;
|
|
4471
4479
|
data?: undefined;
|
|
4472
4480
|
meta?: {} | undefined;
|
|
4473
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResultRaw, "orchestratorApi">> & {
|
|
4481
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResultRaw, "orchestratorApi", unknown>> & {
|
|
4474
4482
|
currentData?: ProcessDetailResultRaw | undefined;
|
|
4475
4483
|
isUninitialized: false;
|
|
4476
4484
|
isLoading: false;
|
|
@@ -4488,13 +4496,13 @@ declare const useGetRawProcessDetailQuery: <R extends Record<string, any> = _red
|
|
|
4488
4496
|
skip?: boolean;
|
|
4489
4497
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
4490
4498
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
4491
|
-
originalArgs?: undefined;
|
|
4492
|
-
data?: undefined;
|
|
4493
|
-
error?: undefined;
|
|
4494
|
-
requestId?: undefined;
|
|
4499
|
+
originalArgs?: undefined | undefined;
|
|
4500
|
+
data?: undefined | undefined;
|
|
4501
|
+
error?: undefined | undefined;
|
|
4502
|
+
requestId?: undefined | undefined;
|
|
4495
4503
|
endpointName?: string | undefined;
|
|
4496
|
-
startedTimeStamp?: undefined;
|
|
4497
|
-
fulfilledTimeStamp?: undefined;
|
|
4504
|
+
startedTimeStamp?: undefined | undefined;
|
|
4505
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
4498
4506
|
} & {
|
|
4499
4507
|
currentData?: ProcessDetailResultRaw | undefined;
|
|
4500
4508
|
isUninitialized: false;
|
|
@@ -4521,7 +4529,7 @@ declare const useGetRawProcessDetailQuery: <R extends Record<string, any> = _red
|
|
|
4521
4529
|
error: graphql.GraphQLError[] | undefined;
|
|
4522
4530
|
data?: undefined;
|
|
4523
4531
|
meta?: {} | undefined;
|
|
4524
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResultRaw, "orchestratorApi">> & {
|
|
4532
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResultRaw, "orchestratorApi", unknown>> & {
|
|
4525
4533
|
currentData?: ProcessDetailResultRaw | undefined;
|
|
4526
4534
|
isUninitialized: false;
|
|
4527
4535
|
isLoading: false;
|
|
@@ -4553,7 +4561,7 @@ declare const useGetRawProcessDetailQuery: <R extends Record<string, any> = _red
|
|
|
4553
4561
|
error: graphql.GraphQLError[] | undefined;
|
|
4554
4562
|
data?: undefined;
|
|
4555
4563
|
meta?: {} | undefined;
|
|
4556
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResultRaw, "orchestratorApi">> & {
|
|
4564
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResultRaw, "orchestratorApi", unknown>> & {
|
|
4557
4565
|
currentData?: ProcessDetailResultRaw | undefined;
|
|
4558
4566
|
isUninitialized: false;
|
|
4559
4567
|
isLoading: false;
|
|
@@ -4581,7 +4589,7 @@ declare const useGetRawProcessDetailQuery: <R extends Record<string, any> = _red
|
|
|
4581
4589
|
error: graphql.GraphQLError[] | undefined;
|
|
4582
4590
|
data?: undefined;
|
|
4583
4591
|
meta?: {} | undefined;
|
|
4584
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResultRaw, "orchestratorApi">> & {
|
|
4592
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResultRaw, "orchestratorApi", unknown>> & {
|
|
4585
4593
|
currentData?: ProcessDetailResultRaw | undefined;
|
|
4586
4594
|
isUninitialized: false;
|
|
4587
4595
|
isLoading: false;
|
|
@@ -4607,7 +4615,7 @@ declare const useGetRawProcessDetailQuery: <R extends Record<string, any> = _red
|
|
|
4607
4615
|
error: graphql.GraphQLError[] | undefined;
|
|
4608
4616
|
data?: undefined;
|
|
4609
4617
|
meta?: {} | undefined;
|
|
4610
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResultRaw, "orchestratorApi">> & {
|
|
4618
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResultRaw, "orchestratorApi", unknown>> & {
|
|
4611
4619
|
currentData?: ProcessDetailResultRaw | undefined;
|
|
4612
4620
|
isUninitialized: false;
|
|
4613
4621
|
isLoading: false;
|
|
@@ -4635,7 +4643,7 @@ declare const useGetRawProcessDetailQuery: <R extends Record<string, any> = _red
|
|
|
4635
4643
|
error: graphql.GraphQLError[] | undefined;
|
|
4636
4644
|
data?: undefined;
|
|
4637
4645
|
meta?: {} | undefined;
|
|
4638
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResultRaw, "orchestratorApi">>;
|
|
4646
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessDetailResultRaw, "orchestratorApi", unknown>>;
|
|
4639
4647
|
};
|
|
4640
4648
|
declare const useRetryAllProcessesMutation: <R extends Record<string, any> = ({
|
|
4641
4649
|
requestId?: undefined;
|
|
@@ -4809,7 +4817,7 @@ declare const useRetryAllProcessesMutation: <R extends Record<string, any> = ({
|
|
|
4809
4817
|
error: graphql.GraphQLError[] | undefined;
|
|
4810
4818
|
data?: undefined;
|
|
4811
4819
|
meta?: {} | undefined;
|
|
4812
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, void, "orchestratorApi">>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
4820
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, void, "orchestratorApi", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
4813
4821
|
originalArgs?: null | undefined;
|
|
4814
4822
|
reset: () => void;
|
|
4815
4823
|
}];
|
|
@@ -4989,7 +4997,7 @@ declare const useRetryProcessMutation: <R extends Record<string, any> = ({
|
|
|
4989
4997
|
error: graphql.GraphQLError[] | undefined;
|
|
4990
4998
|
data?: undefined;
|
|
4991
4999
|
meta?: {} | undefined;
|
|
4992
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, void, "orchestratorApi">>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
5000
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, void, "orchestratorApi", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
4993
5001
|
originalArgs?: {
|
|
4994
5002
|
processId: string;
|
|
4995
5003
|
} | undefined;
|
|
@@ -5171,7 +5179,7 @@ declare const useDeleteProcessMutation: <R extends Record<string, any> = ({
|
|
|
5171
5179
|
error: graphql.GraphQLError[] | undefined;
|
|
5172
5180
|
data?: undefined;
|
|
5173
5181
|
meta?: {} | undefined;
|
|
5174
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, void, "orchestratorApi">>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
5182
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, void, "orchestratorApi", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
5175
5183
|
originalArgs?: {
|
|
5176
5184
|
processId: string;
|
|
5177
5185
|
} | undefined;
|
|
@@ -5353,7 +5361,7 @@ declare const useAbortProcessMutation: <R extends Record<string, any> = ({
|
|
|
5353
5361
|
error: graphql.GraphQLError[] | undefined;
|
|
5354
5362
|
data?: undefined;
|
|
5355
5363
|
meta?: {} | undefined;
|
|
5356
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, void, "orchestratorApi">>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
5364
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, void, "orchestratorApi", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
5357
5365
|
originalArgs?: {
|
|
5358
5366
|
processId: string;
|
|
5359
5367
|
} | undefined;
|
|
@@ -5366,13 +5374,13 @@ type ProcessListResponse = {
|
|
|
5366
5374
|
} & BaseGraphQlResult;
|
|
5367
5375
|
declare const useGetProcessListQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
5368
5376
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
5369
|
-
originalArgs?: undefined;
|
|
5370
|
-
data?: undefined;
|
|
5371
|
-
error?: undefined;
|
|
5372
|
-
requestId?: undefined;
|
|
5377
|
+
originalArgs?: undefined | undefined;
|
|
5378
|
+
data?: undefined | undefined;
|
|
5379
|
+
error?: undefined | undefined;
|
|
5380
|
+
requestId?: undefined | undefined;
|
|
5373
5381
|
endpointName?: string | undefined;
|
|
5374
|
-
startedTimeStamp?: undefined;
|
|
5375
|
-
fulfilledTimeStamp?: undefined;
|
|
5382
|
+
startedTimeStamp?: undefined | undefined;
|
|
5383
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
5376
5384
|
} & {
|
|
5377
5385
|
currentData?: ProcessListResponse | undefined;
|
|
5378
5386
|
isUninitialized: false;
|
|
@@ -5397,7 +5405,7 @@ declare const useGetProcessListQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
5397
5405
|
error: graphql.GraphQLError[] | undefined;
|
|
5398
5406
|
data?: undefined;
|
|
5399
5407
|
meta?: {} | undefined;
|
|
5400
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi">> & {
|
|
5408
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi", unknown>> & {
|
|
5401
5409
|
currentData?: ProcessListResponse | undefined;
|
|
5402
5410
|
isUninitialized: false;
|
|
5403
5411
|
isLoading: false;
|
|
@@ -5427,7 +5435,7 @@ declare const useGetProcessListQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
5427
5435
|
error: graphql.GraphQLError[] | undefined;
|
|
5428
5436
|
data?: undefined;
|
|
5429
5437
|
meta?: {} | undefined;
|
|
5430
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi">> & {
|
|
5438
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi", unknown>> & {
|
|
5431
5439
|
currentData?: ProcessListResponse | undefined;
|
|
5432
5440
|
isUninitialized: false;
|
|
5433
5441
|
isLoading: false;
|
|
@@ -5453,7 +5461,7 @@ declare const useGetProcessListQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
5453
5461
|
error: graphql.GraphQLError[] | undefined;
|
|
5454
5462
|
data?: undefined;
|
|
5455
5463
|
meta?: {} | undefined;
|
|
5456
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi">> & {
|
|
5464
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi", unknown>> & {
|
|
5457
5465
|
currentData?: ProcessListResponse | undefined;
|
|
5458
5466
|
isUninitialized: false;
|
|
5459
5467
|
isLoading: false;
|
|
@@ -5477,7 +5485,7 @@ declare const useGetProcessListQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
5477
5485
|
error: graphql.GraphQLError[] | undefined;
|
|
5478
5486
|
data?: undefined;
|
|
5479
5487
|
meta?: {} | undefined;
|
|
5480
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi">> & {
|
|
5488
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi", unknown>> & {
|
|
5481
5489
|
currentData?: ProcessListResponse | undefined;
|
|
5482
5490
|
isUninitialized: false;
|
|
5483
5491
|
isLoading: false;
|
|
@@ -5493,13 +5501,13 @@ declare const useGetProcessListQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
5493
5501
|
skip?: boolean;
|
|
5494
5502
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
5495
5503
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
5496
|
-
originalArgs?: undefined;
|
|
5497
|
-
data?: undefined;
|
|
5498
|
-
error?: undefined;
|
|
5499
|
-
requestId?: undefined;
|
|
5504
|
+
originalArgs?: undefined | undefined;
|
|
5505
|
+
data?: undefined | undefined;
|
|
5506
|
+
error?: undefined | undefined;
|
|
5507
|
+
requestId?: undefined | undefined;
|
|
5500
5508
|
endpointName?: string | undefined;
|
|
5501
|
-
startedTimeStamp?: undefined;
|
|
5502
|
-
fulfilledTimeStamp?: undefined;
|
|
5509
|
+
startedTimeStamp?: undefined | undefined;
|
|
5510
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
5503
5511
|
} & {
|
|
5504
5512
|
currentData?: ProcessListResponse | undefined;
|
|
5505
5513
|
isUninitialized: false;
|
|
@@ -5524,7 +5532,7 @@ declare const useGetProcessListQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
5524
5532
|
error: graphql.GraphQLError[] | undefined;
|
|
5525
5533
|
data?: undefined;
|
|
5526
5534
|
meta?: {} | undefined;
|
|
5527
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi">> & {
|
|
5535
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi", unknown>> & {
|
|
5528
5536
|
currentData?: ProcessListResponse | undefined;
|
|
5529
5537
|
isUninitialized: false;
|
|
5530
5538
|
isLoading: false;
|
|
@@ -5554,7 +5562,7 @@ declare const useGetProcessListQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
5554
5562
|
error: graphql.GraphQLError[] | undefined;
|
|
5555
5563
|
data?: undefined;
|
|
5556
5564
|
meta?: {} | undefined;
|
|
5557
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi">> & {
|
|
5565
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi", unknown>> & {
|
|
5558
5566
|
currentData?: ProcessListResponse | undefined;
|
|
5559
5567
|
isUninitialized: false;
|
|
5560
5568
|
isLoading: false;
|
|
@@ -5580,7 +5588,7 @@ declare const useGetProcessListQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
5580
5588
|
error: graphql.GraphQLError[] | undefined;
|
|
5581
5589
|
data?: undefined;
|
|
5582
5590
|
meta?: {} | undefined;
|
|
5583
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi">> & {
|
|
5591
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi", unknown>> & {
|
|
5584
5592
|
currentData?: ProcessListResponse | undefined;
|
|
5585
5593
|
isUninitialized: false;
|
|
5586
5594
|
isLoading: false;
|
|
@@ -5604,7 +5612,7 @@ declare const useGetProcessListQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
5604
5612
|
error: graphql.GraphQLError[] | undefined;
|
|
5605
5613
|
data?: undefined;
|
|
5606
5614
|
meta?: {} | undefined;
|
|
5607
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi">> & {
|
|
5615
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi", unknown>> & {
|
|
5608
5616
|
currentData?: ProcessListResponse | undefined;
|
|
5609
5617
|
isUninitialized: false;
|
|
5610
5618
|
isLoading: false;
|
|
@@ -5630,17 +5638,17 @@ declare const useGetProcessListQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
5630
5638
|
error: graphql.GraphQLError[] | undefined;
|
|
5631
5639
|
data?: undefined;
|
|
5632
5640
|
meta?: {} | undefined;
|
|
5633
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi">>;
|
|
5641
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi", unknown>>;
|
|
5634
5642
|
};
|
|
5635
5643
|
declare const useLazyGetProcessListQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
5636
5644
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
5637
|
-
originalArgs?: undefined;
|
|
5638
|
-
data?: undefined;
|
|
5639
|
-
error?: undefined;
|
|
5640
|
-
requestId?: undefined;
|
|
5645
|
+
originalArgs?: undefined | undefined;
|
|
5646
|
+
data?: undefined | undefined;
|
|
5647
|
+
error?: undefined | undefined;
|
|
5648
|
+
requestId?: undefined | undefined;
|
|
5641
5649
|
endpointName?: string | undefined;
|
|
5642
|
-
startedTimeStamp?: undefined;
|
|
5643
|
-
fulfilledTimeStamp?: undefined;
|
|
5650
|
+
startedTimeStamp?: undefined | undefined;
|
|
5651
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
5644
5652
|
} & {
|
|
5645
5653
|
currentData?: ProcessListResponse | undefined;
|
|
5646
5654
|
isUninitialized: false;
|
|
@@ -5665,7 +5673,7 @@ declare const useLazyGetProcessListQuery: <R extends Record<string, any> = _redu
|
|
|
5665
5673
|
error: graphql.GraphQLError[] | undefined;
|
|
5666
5674
|
data?: undefined;
|
|
5667
5675
|
meta?: {} | undefined;
|
|
5668
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi">> & {
|
|
5676
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi", unknown>> & {
|
|
5669
5677
|
currentData?: ProcessListResponse | undefined;
|
|
5670
5678
|
isUninitialized: false;
|
|
5671
5679
|
isLoading: false;
|
|
@@ -5695,7 +5703,7 @@ declare const useLazyGetProcessListQuery: <R extends Record<string, any> = _redu
|
|
|
5695
5703
|
error: graphql.GraphQLError[] | undefined;
|
|
5696
5704
|
data?: undefined;
|
|
5697
5705
|
meta?: {} | undefined;
|
|
5698
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi">> & {
|
|
5706
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi", unknown>> & {
|
|
5699
5707
|
currentData?: ProcessListResponse | undefined;
|
|
5700
5708
|
isUninitialized: false;
|
|
5701
5709
|
isLoading: false;
|
|
@@ -5721,7 +5729,7 @@ declare const useLazyGetProcessListQuery: <R extends Record<string, any> = _redu
|
|
|
5721
5729
|
error: graphql.GraphQLError[] | undefined;
|
|
5722
5730
|
data?: undefined;
|
|
5723
5731
|
meta?: {} | undefined;
|
|
5724
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi">> & {
|
|
5732
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi", unknown>> & {
|
|
5725
5733
|
currentData?: ProcessListResponse | undefined;
|
|
5726
5734
|
isUninitialized: false;
|
|
5727
5735
|
isLoading: false;
|
|
@@ -5745,7 +5753,7 @@ declare const useLazyGetProcessListQuery: <R extends Record<string, any> = _redu
|
|
|
5745
5753
|
error: graphql.GraphQLError[] | undefined;
|
|
5746
5754
|
data?: undefined;
|
|
5747
5755
|
meta?: {} | undefined;
|
|
5748
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi">> & {
|
|
5756
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi", unknown>> & {
|
|
5749
5757
|
currentData?: ProcessListResponse | undefined;
|
|
5750
5758
|
isUninitialized: false;
|
|
5751
5759
|
isLoading: false;
|
|
@@ -5758,13 +5766,13 @@ declare const useLazyGetProcessListQuery: <R extends Record<string, any> = _redu
|
|
|
5758
5766
|
skip?: boolean;
|
|
5759
5767
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
5760
5768
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
5761
|
-
originalArgs?: undefined;
|
|
5762
|
-
data?: undefined;
|
|
5763
|
-
error?: undefined;
|
|
5764
|
-
requestId?: undefined;
|
|
5769
|
+
originalArgs?: undefined | undefined;
|
|
5770
|
+
data?: undefined | undefined;
|
|
5771
|
+
error?: undefined | undefined;
|
|
5772
|
+
requestId?: undefined | undefined;
|
|
5765
5773
|
endpointName?: string | undefined;
|
|
5766
|
-
startedTimeStamp?: undefined;
|
|
5767
|
-
fulfilledTimeStamp?: undefined;
|
|
5774
|
+
startedTimeStamp?: undefined | undefined;
|
|
5775
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
5768
5776
|
} & {
|
|
5769
5777
|
currentData?: ProcessListResponse | undefined;
|
|
5770
5778
|
isUninitialized: false;
|
|
@@ -5789,7 +5797,7 @@ declare const useLazyGetProcessListQuery: <R extends Record<string, any> = _redu
|
|
|
5789
5797
|
error: graphql.GraphQLError[] | undefined;
|
|
5790
5798
|
data?: undefined;
|
|
5791
5799
|
meta?: {} | undefined;
|
|
5792
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi">> & {
|
|
5800
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi", unknown>> & {
|
|
5793
5801
|
currentData?: ProcessListResponse | undefined;
|
|
5794
5802
|
isUninitialized: false;
|
|
5795
5803
|
isLoading: false;
|
|
@@ -5819,7 +5827,7 @@ declare const useLazyGetProcessListQuery: <R extends Record<string, any> = _redu
|
|
|
5819
5827
|
error: graphql.GraphQLError[] | undefined;
|
|
5820
5828
|
data?: undefined;
|
|
5821
5829
|
meta?: {} | undefined;
|
|
5822
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi">> & {
|
|
5830
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi", unknown>> & {
|
|
5823
5831
|
currentData?: ProcessListResponse | undefined;
|
|
5824
5832
|
isUninitialized: false;
|
|
5825
5833
|
isLoading: false;
|
|
@@ -5845,7 +5853,7 @@ declare const useLazyGetProcessListQuery: <R extends Record<string, any> = _redu
|
|
|
5845
5853
|
error: graphql.GraphQLError[] | undefined;
|
|
5846
5854
|
data?: undefined;
|
|
5847
5855
|
meta?: {} | undefined;
|
|
5848
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi">> & {
|
|
5856
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi", unknown>> & {
|
|
5849
5857
|
currentData?: ProcessListResponse | undefined;
|
|
5850
5858
|
isUninitialized: false;
|
|
5851
5859
|
isLoading: false;
|
|
@@ -5869,7 +5877,7 @@ declare const useLazyGetProcessListQuery: <R extends Record<string, any> = _redu
|
|
|
5869
5877
|
error: graphql.GraphQLError[] | undefined;
|
|
5870
5878
|
data?: undefined;
|
|
5871
5879
|
meta?: {} | undefined;
|
|
5872
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi">> & {
|
|
5880
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi", unknown>> & {
|
|
5873
5881
|
currentData?: ProcessListResponse | undefined;
|
|
5874
5882
|
isUninitialized: false;
|
|
5875
5883
|
isLoading: false;
|
|
@@ -5894,7 +5902,9 @@ declare const useLazyGetProcessListQuery: <R extends Record<string, any> = _redu
|
|
|
5894
5902
|
error: graphql.GraphQLError[] | undefined;
|
|
5895
5903
|
data?: undefined;
|
|
5896
5904
|
meta?: {} | undefined;
|
|
5897
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi">>, [R][R extends any ? 0 : never]
|
|
5905
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListResponse, "orchestratorApi", unknown>>, [R][R extends any ? 0 : never] & {
|
|
5906
|
+
reset: () => void;
|
|
5907
|
+
}, {
|
|
5898
5908
|
lastArg: GraphqlQueryVariables<Process>;
|
|
5899
5909
|
}];
|
|
5900
5910
|
|
|
@@ -5905,13 +5915,13 @@ type ProcessListSummaryResponse = {
|
|
|
5905
5915
|
} & BaseGraphQlResult;
|
|
5906
5916
|
declare const useGetProcessListSummaryQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
5907
5917
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
5908
|
-
originalArgs?: undefined;
|
|
5909
|
-
data?: undefined;
|
|
5910
|
-
error?: undefined;
|
|
5911
|
-
requestId?: undefined;
|
|
5918
|
+
originalArgs?: undefined | undefined;
|
|
5919
|
+
data?: undefined | undefined;
|
|
5920
|
+
error?: undefined | undefined;
|
|
5921
|
+
requestId?: undefined | undefined;
|
|
5912
5922
|
endpointName?: string | undefined;
|
|
5913
|
-
startedTimeStamp?: undefined;
|
|
5914
|
-
fulfilledTimeStamp?: undefined;
|
|
5923
|
+
startedTimeStamp?: undefined | undefined;
|
|
5924
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
5915
5925
|
} & {
|
|
5916
5926
|
currentData?: ProcessListSummaryResponse | undefined;
|
|
5917
5927
|
isUninitialized: false;
|
|
@@ -5936,7 +5946,7 @@ declare const useGetProcessListSummaryQuery: <R extends Record<string, any> = _r
|
|
|
5936
5946
|
error: graphql.GraphQLError[] | undefined;
|
|
5937
5947
|
data?: undefined;
|
|
5938
5948
|
meta?: {} | undefined;
|
|
5939
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListSummaryResponse, "orchestratorApi">> & {
|
|
5949
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListSummaryResponse, "orchestratorApi", unknown>> & {
|
|
5940
5950
|
currentData?: ProcessListSummaryResponse | undefined;
|
|
5941
5951
|
isUninitialized: false;
|
|
5942
5952
|
isLoading: false;
|
|
@@ -5966,7 +5976,7 @@ declare const useGetProcessListSummaryQuery: <R extends Record<string, any> = _r
|
|
|
5966
5976
|
error: graphql.GraphQLError[] | undefined;
|
|
5967
5977
|
data?: undefined;
|
|
5968
5978
|
meta?: {} | undefined;
|
|
5969
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListSummaryResponse, "orchestratorApi">> & {
|
|
5979
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListSummaryResponse, "orchestratorApi", unknown>> & {
|
|
5970
5980
|
currentData?: ProcessListSummaryResponse | undefined;
|
|
5971
5981
|
isUninitialized: false;
|
|
5972
5982
|
isLoading: false;
|
|
@@ -5992,7 +6002,7 @@ declare const useGetProcessListSummaryQuery: <R extends Record<string, any> = _r
|
|
|
5992
6002
|
error: graphql.GraphQLError[] | undefined;
|
|
5993
6003
|
data?: undefined;
|
|
5994
6004
|
meta?: {} | undefined;
|
|
5995
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListSummaryResponse, "orchestratorApi">> & {
|
|
6005
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListSummaryResponse, "orchestratorApi", unknown>> & {
|
|
5996
6006
|
currentData?: ProcessListSummaryResponse | undefined;
|
|
5997
6007
|
isUninitialized: false;
|
|
5998
6008
|
isLoading: false;
|
|
@@ -6016,7 +6026,7 @@ declare const useGetProcessListSummaryQuery: <R extends Record<string, any> = _r
|
|
|
6016
6026
|
error: graphql.GraphQLError[] | undefined;
|
|
6017
6027
|
data?: undefined;
|
|
6018
6028
|
meta?: {} | undefined;
|
|
6019
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListSummaryResponse, "orchestratorApi">> & {
|
|
6029
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListSummaryResponse, "orchestratorApi", unknown>> & {
|
|
6020
6030
|
currentData?: ProcessListSummaryResponse | undefined;
|
|
6021
6031
|
isUninitialized: false;
|
|
6022
6032
|
isLoading: false;
|
|
@@ -6032,13 +6042,13 @@ declare const useGetProcessListSummaryQuery: <R extends Record<string, any> = _r
|
|
|
6032
6042
|
skip?: boolean;
|
|
6033
6043
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
6034
6044
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
6035
|
-
originalArgs?: undefined;
|
|
6036
|
-
data?: undefined;
|
|
6037
|
-
error?: undefined;
|
|
6038
|
-
requestId?: undefined;
|
|
6045
|
+
originalArgs?: undefined | undefined;
|
|
6046
|
+
data?: undefined | undefined;
|
|
6047
|
+
error?: undefined | undefined;
|
|
6048
|
+
requestId?: undefined | undefined;
|
|
6039
6049
|
endpointName?: string | undefined;
|
|
6040
|
-
startedTimeStamp?: undefined;
|
|
6041
|
-
fulfilledTimeStamp?: undefined;
|
|
6050
|
+
startedTimeStamp?: undefined | undefined;
|
|
6051
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
6042
6052
|
} & {
|
|
6043
6053
|
currentData?: ProcessListSummaryResponse | undefined;
|
|
6044
6054
|
isUninitialized: false;
|
|
@@ -6063,7 +6073,7 @@ declare const useGetProcessListSummaryQuery: <R extends Record<string, any> = _r
|
|
|
6063
6073
|
error: graphql.GraphQLError[] | undefined;
|
|
6064
6074
|
data?: undefined;
|
|
6065
6075
|
meta?: {} | undefined;
|
|
6066
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListSummaryResponse, "orchestratorApi">> & {
|
|
6076
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListSummaryResponse, "orchestratorApi", unknown>> & {
|
|
6067
6077
|
currentData?: ProcessListSummaryResponse | undefined;
|
|
6068
6078
|
isUninitialized: false;
|
|
6069
6079
|
isLoading: false;
|
|
@@ -6093,7 +6103,7 @@ declare const useGetProcessListSummaryQuery: <R extends Record<string, any> = _r
|
|
|
6093
6103
|
error: graphql.GraphQLError[] | undefined;
|
|
6094
6104
|
data?: undefined;
|
|
6095
6105
|
meta?: {} | undefined;
|
|
6096
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListSummaryResponse, "orchestratorApi">> & {
|
|
6106
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListSummaryResponse, "orchestratorApi", unknown>> & {
|
|
6097
6107
|
currentData?: ProcessListSummaryResponse | undefined;
|
|
6098
6108
|
isUninitialized: false;
|
|
6099
6109
|
isLoading: false;
|
|
@@ -6119,7 +6129,7 @@ declare const useGetProcessListSummaryQuery: <R extends Record<string, any> = _r
|
|
|
6119
6129
|
error: graphql.GraphQLError[] | undefined;
|
|
6120
6130
|
data?: undefined;
|
|
6121
6131
|
meta?: {} | undefined;
|
|
6122
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListSummaryResponse, "orchestratorApi">> & {
|
|
6132
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListSummaryResponse, "orchestratorApi", unknown>> & {
|
|
6123
6133
|
currentData?: ProcessListSummaryResponse | undefined;
|
|
6124
6134
|
isUninitialized: false;
|
|
6125
6135
|
isLoading: false;
|
|
@@ -6143,7 +6153,7 @@ declare const useGetProcessListSummaryQuery: <R extends Record<string, any> = _r
|
|
|
6143
6153
|
error: graphql.GraphQLError[] | undefined;
|
|
6144
6154
|
data?: undefined;
|
|
6145
6155
|
meta?: {} | undefined;
|
|
6146
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListSummaryResponse, "orchestratorApi">> & {
|
|
6156
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListSummaryResponse, "orchestratorApi", unknown>> & {
|
|
6147
6157
|
currentData?: ProcessListSummaryResponse | undefined;
|
|
6148
6158
|
isUninitialized: false;
|
|
6149
6159
|
isLoading: false;
|
|
@@ -6169,19 +6179,19 @@ declare const useGetProcessListSummaryQuery: <R extends Record<string, any> = _r
|
|
|
6169
6179
|
error: graphql.GraphQLError[] | undefined;
|
|
6170
6180
|
data?: undefined;
|
|
6171
6181
|
meta?: {} | undefined;
|
|
6172
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListSummaryResponse, "orchestratorApi">>;
|
|
6182
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProcessListSummaryResponse, "orchestratorApi", unknown>>;
|
|
6173
6183
|
};
|
|
6174
6184
|
|
|
6175
6185
|
declare const processStepsQuery = "\n query ProcessSteps($processName: String!) {\n workflows(filterBy: { field: \"name\", value: $processName }) {\n page {\n steps {\n name\n assignee\n }\n }\n }\n }\n";
|
|
6176
6186
|
declare const useGetTimeLineItemsQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
6177
6187
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
6178
|
-
originalArgs?: undefined;
|
|
6179
|
-
data?: undefined;
|
|
6180
|
-
error?: undefined;
|
|
6181
|
-
requestId?: undefined;
|
|
6188
|
+
originalArgs?: undefined | undefined;
|
|
6189
|
+
data?: undefined | undefined;
|
|
6190
|
+
error?: undefined | undefined;
|
|
6191
|
+
requestId?: undefined | undefined;
|
|
6182
6192
|
endpointName?: string | undefined;
|
|
6183
|
-
startedTimeStamp?: undefined;
|
|
6184
|
-
fulfilledTimeStamp?: undefined;
|
|
6193
|
+
startedTimeStamp?: undefined | undefined;
|
|
6194
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
6185
6195
|
} & {
|
|
6186
6196
|
currentData?: TimelineItem[] | undefined;
|
|
6187
6197
|
isUninitialized: false;
|
|
@@ -6206,7 +6216,7 @@ declare const useGetTimeLineItemsQuery: <R extends Record<string, any> = _reduxj
|
|
|
6206
6216
|
error: graphql.GraphQLError[] | undefined;
|
|
6207
6217
|
data?: undefined;
|
|
6208
6218
|
meta?: {} | undefined;
|
|
6209
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TimelineItem[], "orchestratorApi">> & {
|
|
6219
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TimelineItem[], "orchestratorApi", unknown>> & {
|
|
6210
6220
|
currentData?: TimelineItem[] | undefined;
|
|
6211
6221
|
isUninitialized: false;
|
|
6212
6222
|
isLoading: false;
|
|
@@ -6236,7 +6246,7 @@ declare const useGetTimeLineItemsQuery: <R extends Record<string, any> = _reduxj
|
|
|
6236
6246
|
error: graphql.GraphQLError[] | undefined;
|
|
6237
6247
|
data?: undefined;
|
|
6238
6248
|
meta?: {} | undefined;
|
|
6239
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TimelineItem[], "orchestratorApi">> & {
|
|
6249
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TimelineItem[], "orchestratorApi", unknown>> & {
|
|
6240
6250
|
currentData?: TimelineItem[] | undefined;
|
|
6241
6251
|
isUninitialized: false;
|
|
6242
6252
|
isLoading: false;
|
|
@@ -6262,7 +6272,7 @@ declare const useGetTimeLineItemsQuery: <R extends Record<string, any> = _reduxj
|
|
|
6262
6272
|
error: graphql.GraphQLError[] | undefined;
|
|
6263
6273
|
data?: undefined;
|
|
6264
6274
|
meta?: {} | undefined;
|
|
6265
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TimelineItem[], "orchestratorApi">> & {
|
|
6275
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TimelineItem[], "orchestratorApi", unknown>> & {
|
|
6266
6276
|
currentData?: TimelineItem[] | undefined;
|
|
6267
6277
|
isUninitialized: false;
|
|
6268
6278
|
isLoading: false;
|
|
@@ -6286,7 +6296,7 @@ declare const useGetTimeLineItemsQuery: <R extends Record<string, any> = _reduxj
|
|
|
6286
6296
|
error: graphql.GraphQLError[] | undefined;
|
|
6287
6297
|
data?: undefined;
|
|
6288
6298
|
meta?: {} | undefined;
|
|
6289
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TimelineItem[], "orchestratorApi">> & {
|
|
6299
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TimelineItem[], "orchestratorApi", unknown>> & {
|
|
6290
6300
|
currentData?: TimelineItem[] | undefined;
|
|
6291
6301
|
isUninitialized: false;
|
|
6292
6302
|
isLoading: false;
|
|
@@ -6302,13 +6312,13 @@ declare const useGetTimeLineItemsQuery: <R extends Record<string, any> = _reduxj
|
|
|
6302
6312
|
skip?: boolean;
|
|
6303
6313
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
6304
6314
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
6305
|
-
originalArgs?: undefined;
|
|
6306
|
-
data?: undefined;
|
|
6307
|
-
error?: undefined;
|
|
6308
|
-
requestId?: undefined;
|
|
6315
|
+
originalArgs?: undefined | undefined;
|
|
6316
|
+
data?: undefined | undefined;
|
|
6317
|
+
error?: undefined | undefined;
|
|
6318
|
+
requestId?: undefined | undefined;
|
|
6309
6319
|
endpointName?: string | undefined;
|
|
6310
|
-
startedTimeStamp?: undefined;
|
|
6311
|
-
fulfilledTimeStamp?: undefined;
|
|
6320
|
+
startedTimeStamp?: undefined | undefined;
|
|
6321
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
6312
6322
|
} & {
|
|
6313
6323
|
currentData?: TimelineItem[] | undefined;
|
|
6314
6324
|
isUninitialized: false;
|
|
@@ -6333,7 +6343,7 @@ declare const useGetTimeLineItemsQuery: <R extends Record<string, any> = _reduxj
|
|
|
6333
6343
|
error: graphql.GraphQLError[] | undefined;
|
|
6334
6344
|
data?: undefined;
|
|
6335
6345
|
meta?: {} | undefined;
|
|
6336
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TimelineItem[], "orchestratorApi">> & {
|
|
6346
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TimelineItem[], "orchestratorApi", unknown>> & {
|
|
6337
6347
|
currentData?: TimelineItem[] | undefined;
|
|
6338
6348
|
isUninitialized: false;
|
|
6339
6349
|
isLoading: false;
|
|
@@ -6363,7 +6373,7 @@ declare const useGetTimeLineItemsQuery: <R extends Record<string, any> = _reduxj
|
|
|
6363
6373
|
error: graphql.GraphQLError[] | undefined;
|
|
6364
6374
|
data?: undefined;
|
|
6365
6375
|
meta?: {} | undefined;
|
|
6366
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TimelineItem[], "orchestratorApi">> & {
|
|
6376
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TimelineItem[], "orchestratorApi", unknown>> & {
|
|
6367
6377
|
currentData?: TimelineItem[] | undefined;
|
|
6368
6378
|
isUninitialized: false;
|
|
6369
6379
|
isLoading: false;
|
|
@@ -6389,7 +6399,7 @@ declare const useGetTimeLineItemsQuery: <R extends Record<string, any> = _reduxj
|
|
|
6389
6399
|
error: graphql.GraphQLError[] | undefined;
|
|
6390
6400
|
data?: undefined;
|
|
6391
6401
|
meta?: {} | undefined;
|
|
6392
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TimelineItem[], "orchestratorApi">> & {
|
|
6402
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TimelineItem[], "orchestratorApi", unknown>> & {
|
|
6393
6403
|
currentData?: TimelineItem[] | undefined;
|
|
6394
6404
|
isUninitialized: false;
|
|
6395
6405
|
isLoading: false;
|
|
@@ -6413,7 +6423,7 @@ declare const useGetTimeLineItemsQuery: <R extends Record<string, any> = _reduxj
|
|
|
6413
6423
|
error: graphql.GraphQLError[] | undefined;
|
|
6414
6424
|
data?: undefined;
|
|
6415
6425
|
meta?: {} | undefined;
|
|
6416
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TimelineItem[], "orchestratorApi">> & {
|
|
6426
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TimelineItem[], "orchestratorApi", unknown>> & {
|
|
6417
6427
|
currentData?: TimelineItem[] | undefined;
|
|
6418
6428
|
isUninitialized: false;
|
|
6419
6429
|
isLoading: false;
|
|
@@ -6439,7 +6449,7 @@ declare const useGetTimeLineItemsQuery: <R extends Record<string, any> = _reduxj
|
|
|
6439
6449
|
error: graphql.GraphQLError[] | undefined;
|
|
6440
6450
|
data?: undefined;
|
|
6441
6451
|
meta?: {} | undefined;
|
|
6442
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TimelineItem[], "orchestratorApi">>;
|
|
6452
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TimelineItem[], "orchestratorApi", unknown>>;
|
|
6443
6453
|
};
|
|
6444
6454
|
|
|
6445
6455
|
declare const products = "\n query MetadataProducts(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $query: String\n ) {\n products(first: $first, after: $after, sortBy: $sortBy, query: $query) {\n page {\n productId\n name\n description\n tag\n createdAt\n productType\n status\n productBlocks {\n name\n }\n fixedInputs {\n name\n value\n }\n endDate\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n totalItems\n sortFields\n filterFields\n }\n }\n }\n";
|
|
@@ -6448,13 +6458,13 @@ type ProductsResponse = {
|
|
|
6448
6458
|
} & BaseGraphQlResult;
|
|
6449
6459
|
declare const useGetProductsQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
6450
6460
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
6451
|
-
originalArgs?: undefined;
|
|
6452
|
-
data?: undefined;
|
|
6453
|
-
error?: undefined;
|
|
6454
|
-
requestId?: undefined;
|
|
6461
|
+
originalArgs?: undefined | undefined;
|
|
6462
|
+
data?: undefined | undefined;
|
|
6463
|
+
error?: undefined | undefined;
|
|
6464
|
+
requestId?: undefined | undefined;
|
|
6455
6465
|
endpointName?: string | undefined;
|
|
6456
|
-
startedTimeStamp?: undefined;
|
|
6457
|
-
fulfilledTimeStamp?: undefined;
|
|
6466
|
+
startedTimeStamp?: undefined | undefined;
|
|
6467
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
6458
6468
|
} & {
|
|
6459
6469
|
currentData?: ProductsResponse | undefined;
|
|
6460
6470
|
isUninitialized: false;
|
|
@@ -6479,7 +6489,7 @@ declare const useGetProductsQuery: <R extends Record<string, any> = _reduxjs_too
|
|
|
6479
6489
|
error: graphql.GraphQLError[] | undefined;
|
|
6480
6490
|
data?: undefined;
|
|
6481
6491
|
meta?: {} | undefined;
|
|
6482
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi">> & {
|
|
6492
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi", unknown>> & {
|
|
6483
6493
|
currentData?: ProductsResponse | undefined;
|
|
6484
6494
|
isUninitialized: false;
|
|
6485
6495
|
isLoading: false;
|
|
@@ -6509,7 +6519,7 @@ declare const useGetProductsQuery: <R extends Record<string, any> = _reduxjs_too
|
|
|
6509
6519
|
error: graphql.GraphQLError[] | undefined;
|
|
6510
6520
|
data?: undefined;
|
|
6511
6521
|
meta?: {} | undefined;
|
|
6512
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi">> & {
|
|
6522
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi", unknown>> & {
|
|
6513
6523
|
currentData?: ProductsResponse | undefined;
|
|
6514
6524
|
isUninitialized: false;
|
|
6515
6525
|
isLoading: false;
|
|
@@ -6535,7 +6545,7 @@ declare const useGetProductsQuery: <R extends Record<string, any> = _reduxjs_too
|
|
|
6535
6545
|
error: graphql.GraphQLError[] | undefined;
|
|
6536
6546
|
data?: undefined;
|
|
6537
6547
|
meta?: {} | undefined;
|
|
6538
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi">> & {
|
|
6548
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi", unknown>> & {
|
|
6539
6549
|
currentData?: ProductsResponse | undefined;
|
|
6540
6550
|
isUninitialized: false;
|
|
6541
6551
|
isLoading: false;
|
|
@@ -6559,7 +6569,7 @@ declare const useGetProductsQuery: <R extends Record<string, any> = _reduxjs_too
|
|
|
6559
6569
|
error: graphql.GraphQLError[] | undefined;
|
|
6560
6570
|
data?: undefined;
|
|
6561
6571
|
meta?: {} | undefined;
|
|
6562
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi">> & {
|
|
6572
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi", unknown>> & {
|
|
6563
6573
|
currentData?: ProductsResponse | undefined;
|
|
6564
6574
|
isUninitialized: false;
|
|
6565
6575
|
isLoading: false;
|
|
@@ -6575,13 +6585,13 @@ declare const useGetProductsQuery: <R extends Record<string, any> = _reduxjs_too
|
|
|
6575
6585
|
skip?: boolean;
|
|
6576
6586
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
6577
6587
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
6578
|
-
originalArgs?: undefined;
|
|
6579
|
-
data?: undefined;
|
|
6580
|
-
error?: undefined;
|
|
6581
|
-
requestId?: undefined;
|
|
6588
|
+
originalArgs?: undefined | undefined;
|
|
6589
|
+
data?: undefined | undefined;
|
|
6590
|
+
error?: undefined | undefined;
|
|
6591
|
+
requestId?: undefined | undefined;
|
|
6582
6592
|
endpointName?: string | undefined;
|
|
6583
|
-
startedTimeStamp?: undefined;
|
|
6584
|
-
fulfilledTimeStamp?: undefined;
|
|
6593
|
+
startedTimeStamp?: undefined | undefined;
|
|
6594
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
6585
6595
|
} & {
|
|
6586
6596
|
currentData?: ProductsResponse | undefined;
|
|
6587
6597
|
isUninitialized: false;
|
|
@@ -6606,7 +6616,7 @@ declare const useGetProductsQuery: <R extends Record<string, any> = _reduxjs_too
|
|
|
6606
6616
|
error: graphql.GraphQLError[] | undefined;
|
|
6607
6617
|
data?: undefined;
|
|
6608
6618
|
meta?: {} | undefined;
|
|
6609
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi">> & {
|
|
6619
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi", unknown>> & {
|
|
6610
6620
|
currentData?: ProductsResponse | undefined;
|
|
6611
6621
|
isUninitialized: false;
|
|
6612
6622
|
isLoading: false;
|
|
@@ -6636,7 +6646,7 @@ declare const useGetProductsQuery: <R extends Record<string, any> = _reduxjs_too
|
|
|
6636
6646
|
error: graphql.GraphQLError[] | undefined;
|
|
6637
6647
|
data?: undefined;
|
|
6638
6648
|
meta?: {} | undefined;
|
|
6639
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi">> & {
|
|
6649
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi", unknown>> & {
|
|
6640
6650
|
currentData?: ProductsResponse | undefined;
|
|
6641
6651
|
isUninitialized: false;
|
|
6642
6652
|
isLoading: false;
|
|
@@ -6662,7 +6672,7 @@ declare const useGetProductsQuery: <R extends Record<string, any> = _reduxjs_too
|
|
|
6662
6672
|
error: graphql.GraphQLError[] | undefined;
|
|
6663
6673
|
data?: undefined;
|
|
6664
6674
|
meta?: {} | undefined;
|
|
6665
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi">> & {
|
|
6675
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi", unknown>> & {
|
|
6666
6676
|
currentData?: ProductsResponse | undefined;
|
|
6667
6677
|
isUninitialized: false;
|
|
6668
6678
|
isLoading: false;
|
|
@@ -6686,7 +6696,7 @@ declare const useGetProductsQuery: <R extends Record<string, any> = _reduxjs_too
|
|
|
6686
6696
|
error: graphql.GraphQLError[] | undefined;
|
|
6687
6697
|
data?: undefined;
|
|
6688
6698
|
meta?: {} | undefined;
|
|
6689
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi">> & {
|
|
6699
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi", unknown>> & {
|
|
6690
6700
|
currentData?: ProductsResponse | undefined;
|
|
6691
6701
|
isUninitialized: false;
|
|
6692
6702
|
isLoading: false;
|
|
@@ -6712,17 +6722,17 @@ declare const useGetProductsQuery: <R extends Record<string, any> = _reduxjs_too
|
|
|
6712
6722
|
error: graphql.GraphQLError[] | undefined;
|
|
6713
6723
|
data?: undefined;
|
|
6714
6724
|
meta?: {} | undefined;
|
|
6715
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi">>;
|
|
6725
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi", unknown>>;
|
|
6716
6726
|
};
|
|
6717
6727
|
declare const useLazyGetProductsQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
6718
6728
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
6719
|
-
originalArgs?: undefined;
|
|
6720
|
-
data?: undefined;
|
|
6721
|
-
error?: undefined;
|
|
6722
|
-
requestId?: undefined;
|
|
6729
|
+
originalArgs?: undefined | undefined;
|
|
6730
|
+
data?: undefined | undefined;
|
|
6731
|
+
error?: undefined | undefined;
|
|
6732
|
+
requestId?: undefined | undefined;
|
|
6723
6733
|
endpointName?: string | undefined;
|
|
6724
|
-
startedTimeStamp?: undefined;
|
|
6725
|
-
fulfilledTimeStamp?: undefined;
|
|
6734
|
+
startedTimeStamp?: undefined | undefined;
|
|
6735
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
6726
6736
|
} & {
|
|
6727
6737
|
currentData?: ProductsResponse | undefined;
|
|
6728
6738
|
isUninitialized: false;
|
|
@@ -6747,7 +6757,7 @@ declare const useLazyGetProductsQuery: <R extends Record<string, any> = _reduxjs
|
|
|
6747
6757
|
error: graphql.GraphQLError[] | undefined;
|
|
6748
6758
|
data?: undefined;
|
|
6749
6759
|
meta?: {} | undefined;
|
|
6750
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi">> & {
|
|
6760
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi", unknown>> & {
|
|
6751
6761
|
currentData?: ProductsResponse | undefined;
|
|
6752
6762
|
isUninitialized: false;
|
|
6753
6763
|
isLoading: false;
|
|
@@ -6777,7 +6787,7 @@ declare const useLazyGetProductsQuery: <R extends Record<string, any> = _reduxjs
|
|
|
6777
6787
|
error: graphql.GraphQLError[] | undefined;
|
|
6778
6788
|
data?: undefined;
|
|
6779
6789
|
meta?: {} | undefined;
|
|
6780
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi">> & {
|
|
6790
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi", unknown>> & {
|
|
6781
6791
|
currentData?: ProductsResponse | undefined;
|
|
6782
6792
|
isUninitialized: false;
|
|
6783
6793
|
isLoading: false;
|
|
@@ -6803,7 +6813,7 @@ declare const useLazyGetProductsQuery: <R extends Record<string, any> = _reduxjs
|
|
|
6803
6813
|
error: graphql.GraphQLError[] | undefined;
|
|
6804
6814
|
data?: undefined;
|
|
6805
6815
|
meta?: {} | undefined;
|
|
6806
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi">> & {
|
|
6816
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi", unknown>> & {
|
|
6807
6817
|
currentData?: ProductsResponse | undefined;
|
|
6808
6818
|
isUninitialized: false;
|
|
6809
6819
|
isLoading: false;
|
|
@@ -6827,7 +6837,7 @@ declare const useLazyGetProductsQuery: <R extends Record<string, any> = _reduxjs
|
|
|
6827
6837
|
error: graphql.GraphQLError[] | undefined;
|
|
6828
6838
|
data?: undefined;
|
|
6829
6839
|
meta?: {} | undefined;
|
|
6830
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi">> & {
|
|
6840
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi", unknown>> & {
|
|
6831
6841
|
currentData?: ProductsResponse | undefined;
|
|
6832
6842
|
isUninitialized: false;
|
|
6833
6843
|
isLoading: false;
|
|
@@ -6840,13 +6850,13 @@ declare const useLazyGetProductsQuery: <R extends Record<string, any> = _reduxjs
|
|
|
6840
6850
|
skip?: boolean;
|
|
6841
6851
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
6842
6852
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
6843
|
-
originalArgs?: undefined;
|
|
6844
|
-
data?: undefined;
|
|
6845
|
-
error?: undefined;
|
|
6846
|
-
requestId?: undefined;
|
|
6853
|
+
originalArgs?: undefined | undefined;
|
|
6854
|
+
data?: undefined | undefined;
|
|
6855
|
+
error?: undefined | undefined;
|
|
6856
|
+
requestId?: undefined | undefined;
|
|
6847
6857
|
endpointName?: string | undefined;
|
|
6848
|
-
startedTimeStamp?: undefined;
|
|
6849
|
-
fulfilledTimeStamp?: undefined;
|
|
6858
|
+
startedTimeStamp?: undefined | undefined;
|
|
6859
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
6850
6860
|
} & {
|
|
6851
6861
|
currentData?: ProductsResponse | undefined;
|
|
6852
6862
|
isUninitialized: false;
|
|
@@ -6871,7 +6881,7 @@ declare const useLazyGetProductsQuery: <R extends Record<string, any> = _reduxjs
|
|
|
6871
6881
|
error: graphql.GraphQLError[] | undefined;
|
|
6872
6882
|
data?: undefined;
|
|
6873
6883
|
meta?: {} | undefined;
|
|
6874
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi">> & {
|
|
6884
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi", unknown>> & {
|
|
6875
6885
|
currentData?: ProductsResponse | undefined;
|
|
6876
6886
|
isUninitialized: false;
|
|
6877
6887
|
isLoading: false;
|
|
@@ -6901,7 +6911,7 @@ declare const useLazyGetProductsQuery: <R extends Record<string, any> = _reduxjs
|
|
|
6901
6911
|
error: graphql.GraphQLError[] | undefined;
|
|
6902
6912
|
data?: undefined;
|
|
6903
6913
|
meta?: {} | undefined;
|
|
6904
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi">> & {
|
|
6914
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi", unknown>> & {
|
|
6905
6915
|
currentData?: ProductsResponse | undefined;
|
|
6906
6916
|
isUninitialized: false;
|
|
6907
6917
|
isLoading: false;
|
|
@@ -6927,7 +6937,7 @@ declare const useLazyGetProductsQuery: <R extends Record<string, any> = _reduxjs
|
|
|
6927
6937
|
error: graphql.GraphQLError[] | undefined;
|
|
6928
6938
|
data?: undefined;
|
|
6929
6939
|
meta?: {} | undefined;
|
|
6930
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi">> & {
|
|
6940
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi", unknown>> & {
|
|
6931
6941
|
currentData?: ProductsResponse | undefined;
|
|
6932
6942
|
isUninitialized: false;
|
|
6933
6943
|
isLoading: false;
|
|
@@ -6951,7 +6961,7 @@ declare const useLazyGetProductsQuery: <R extends Record<string, any> = _reduxjs
|
|
|
6951
6961
|
error: graphql.GraphQLError[] | undefined;
|
|
6952
6962
|
data?: undefined;
|
|
6953
6963
|
meta?: {} | undefined;
|
|
6954
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi">> & {
|
|
6964
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi", unknown>> & {
|
|
6955
6965
|
currentData?: ProductsResponse | undefined;
|
|
6956
6966
|
isUninitialized: false;
|
|
6957
6967
|
isLoading: false;
|
|
@@ -6976,7 +6986,9 @@ declare const useLazyGetProductsQuery: <R extends Record<string, any> = _reduxjs
|
|
|
6976
6986
|
error: graphql.GraphQLError[] | undefined;
|
|
6977
6987
|
data?: undefined;
|
|
6978
6988
|
meta?: {} | undefined;
|
|
6979
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi">>, [R][R extends any ? 0 : never]
|
|
6989
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsResponse, "orchestratorApi", unknown>>, [R][R extends any ? 0 : never] & {
|
|
6990
|
+
reset: () => void;
|
|
6991
|
+
}, {
|
|
6980
6992
|
lastArg: GraphqlQueryVariables<ProductDefinition>;
|
|
6981
6993
|
}];
|
|
6982
6994
|
declare const useUpdateProductMutation: <R extends Record<string, any> = ({
|
|
@@ -7151,7 +7163,7 @@ declare const useUpdateProductMutation: <R extends Record<string, any> = ({
|
|
|
7151
7163
|
error: graphql.GraphQLError[] | undefined;
|
|
7152
7164
|
data?: undefined;
|
|
7153
7165
|
meta?: {} | undefined;
|
|
7154
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, null, "orchestratorApi">>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
7166
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, null, "orchestratorApi", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
7155
7167
|
originalArgs?: MetadataDescriptionParams | undefined;
|
|
7156
7168
|
reset: () => void;
|
|
7157
7169
|
}];
|
|
@@ -7162,13 +7174,13 @@ type ProductsSummaryResponse = {
|
|
|
7162
7174
|
} & BaseGraphQlResult;
|
|
7163
7175
|
declare const useGetProductsSummaryQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
7164
7176
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
7165
|
-
originalArgs?: undefined;
|
|
7166
|
-
data?: undefined;
|
|
7167
|
-
error?: undefined;
|
|
7168
|
-
requestId?: undefined;
|
|
7177
|
+
originalArgs?: undefined | undefined;
|
|
7178
|
+
data?: undefined | undefined;
|
|
7179
|
+
error?: undefined | undefined;
|
|
7180
|
+
requestId?: undefined | undefined;
|
|
7169
7181
|
endpointName?: string | undefined;
|
|
7170
|
-
startedTimeStamp?: undefined;
|
|
7171
|
-
fulfilledTimeStamp?: undefined;
|
|
7182
|
+
startedTimeStamp?: undefined | undefined;
|
|
7183
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
7172
7184
|
} & {
|
|
7173
7185
|
currentData?: ProductsSummaryResponse | undefined;
|
|
7174
7186
|
isUninitialized: false;
|
|
@@ -7193,7 +7205,7 @@ declare const useGetProductsSummaryQuery: <R extends Record<string, any> = _redu
|
|
|
7193
7205
|
error: graphql.GraphQLError[] | undefined;
|
|
7194
7206
|
data?: undefined;
|
|
7195
7207
|
meta?: {} | undefined;
|
|
7196
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsSummaryResponse, "orchestratorApi">> & {
|
|
7208
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsSummaryResponse, "orchestratorApi", unknown>> & {
|
|
7197
7209
|
currentData?: ProductsSummaryResponse | undefined;
|
|
7198
7210
|
isUninitialized: false;
|
|
7199
7211
|
isLoading: false;
|
|
@@ -7223,7 +7235,7 @@ declare const useGetProductsSummaryQuery: <R extends Record<string, any> = _redu
|
|
|
7223
7235
|
error: graphql.GraphQLError[] | undefined;
|
|
7224
7236
|
data?: undefined;
|
|
7225
7237
|
meta?: {} | undefined;
|
|
7226
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsSummaryResponse, "orchestratorApi">> & {
|
|
7238
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsSummaryResponse, "orchestratorApi", unknown>> & {
|
|
7227
7239
|
currentData?: ProductsSummaryResponse | undefined;
|
|
7228
7240
|
isUninitialized: false;
|
|
7229
7241
|
isLoading: false;
|
|
@@ -7249,7 +7261,7 @@ declare const useGetProductsSummaryQuery: <R extends Record<string, any> = _redu
|
|
|
7249
7261
|
error: graphql.GraphQLError[] | undefined;
|
|
7250
7262
|
data?: undefined;
|
|
7251
7263
|
meta?: {} | undefined;
|
|
7252
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsSummaryResponse, "orchestratorApi">> & {
|
|
7264
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsSummaryResponse, "orchestratorApi", unknown>> & {
|
|
7253
7265
|
currentData?: ProductsSummaryResponse | undefined;
|
|
7254
7266
|
isUninitialized: false;
|
|
7255
7267
|
isLoading: false;
|
|
@@ -7273,7 +7285,7 @@ declare const useGetProductsSummaryQuery: <R extends Record<string, any> = _redu
|
|
|
7273
7285
|
error: graphql.GraphQLError[] | undefined;
|
|
7274
7286
|
data?: undefined;
|
|
7275
7287
|
meta?: {} | undefined;
|
|
7276
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsSummaryResponse, "orchestratorApi">> & {
|
|
7288
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsSummaryResponse, "orchestratorApi", unknown>> & {
|
|
7277
7289
|
currentData?: ProductsSummaryResponse | undefined;
|
|
7278
7290
|
isUninitialized: false;
|
|
7279
7291
|
isLoading: false;
|
|
@@ -7289,13 +7301,13 @@ declare const useGetProductsSummaryQuery: <R extends Record<string, any> = _redu
|
|
|
7289
7301
|
skip?: boolean;
|
|
7290
7302
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
7291
7303
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
7292
|
-
originalArgs?: undefined;
|
|
7293
|
-
data?: undefined;
|
|
7294
|
-
error?: undefined;
|
|
7295
|
-
requestId?: undefined;
|
|
7304
|
+
originalArgs?: undefined | undefined;
|
|
7305
|
+
data?: undefined | undefined;
|
|
7306
|
+
error?: undefined | undefined;
|
|
7307
|
+
requestId?: undefined | undefined;
|
|
7296
7308
|
endpointName?: string | undefined;
|
|
7297
|
-
startedTimeStamp?: undefined;
|
|
7298
|
-
fulfilledTimeStamp?: undefined;
|
|
7309
|
+
startedTimeStamp?: undefined | undefined;
|
|
7310
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
7299
7311
|
} & {
|
|
7300
7312
|
currentData?: ProductsSummaryResponse | undefined;
|
|
7301
7313
|
isUninitialized: false;
|
|
@@ -7320,7 +7332,7 @@ declare const useGetProductsSummaryQuery: <R extends Record<string, any> = _redu
|
|
|
7320
7332
|
error: graphql.GraphQLError[] | undefined;
|
|
7321
7333
|
data?: undefined;
|
|
7322
7334
|
meta?: {} | undefined;
|
|
7323
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsSummaryResponse, "orchestratorApi">> & {
|
|
7335
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsSummaryResponse, "orchestratorApi", unknown>> & {
|
|
7324
7336
|
currentData?: ProductsSummaryResponse | undefined;
|
|
7325
7337
|
isUninitialized: false;
|
|
7326
7338
|
isLoading: false;
|
|
@@ -7350,7 +7362,7 @@ declare const useGetProductsSummaryQuery: <R extends Record<string, any> = _redu
|
|
|
7350
7362
|
error: graphql.GraphQLError[] | undefined;
|
|
7351
7363
|
data?: undefined;
|
|
7352
7364
|
meta?: {} | undefined;
|
|
7353
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsSummaryResponse, "orchestratorApi">> & {
|
|
7365
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsSummaryResponse, "orchestratorApi", unknown>> & {
|
|
7354
7366
|
currentData?: ProductsSummaryResponse | undefined;
|
|
7355
7367
|
isUninitialized: false;
|
|
7356
7368
|
isLoading: false;
|
|
@@ -7376,7 +7388,7 @@ declare const useGetProductsSummaryQuery: <R extends Record<string, any> = _redu
|
|
|
7376
7388
|
error: graphql.GraphQLError[] | undefined;
|
|
7377
7389
|
data?: undefined;
|
|
7378
7390
|
meta?: {} | undefined;
|
|
7379
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsSummaryResponse, "orchestratorApi">> & {
|
|
7391
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsSummaryResponse, "orchestratorApi", unknown>> & {
|
|
7380
7392
|
currentData?: ProductsSummaryResponse | undefined;
|
|
7381
7393
|
isUninitialized: false;
|
|
7382
7394
|
isLoading: false;
|
|
@@ -7400,7 +7412,7 @@ declare const useGetProductsSummaryQuery: <R extends Record<string, any> = _redu
|
|
|
7400
7412
|
error: graphql.GraphQLError[] | undefined;
|
|
7401
7413
|
data?: undefined;
|
|
7402
7414
|
meta?: {} | undefined;
|
|
7403
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsSummaryResponse, "orchestratorApi">> & {
|
|
7415
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsSummaryResponse, "orchestratorApi", unknown>> & {
|
|
7404
7416
|
currentData?: ProductsSummaryResponse | undefined;
|
|
7405
7417
|
isUninitialized: false;
|
|
7406
7418
|
isLoading: false;
|
|
@@ -7426,7 +7438,7 @@ declare const useGetProductsSummaryQuery: <R extends Record<string, any> = _redu
|
|
|
7426
7438
|
error: graphql.GraphQLError[] | undefined;
|
|
7427
7439
|
data?: undefined;
|
|
7428
7440
|
meta?: {} | undefined;
|
|
7429
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsSummaryResponse, "orchestratorApi">>;
|
|
7441
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ProductsSummaryResponse, "orchestratorApi", unknown>>;
|
|
7430
7442
|
};
|
|
7431
7443
|
|
|
7432
7444
|
declare const RelatedSubscriptionsQuery = "\nquery RelatedSubscriptions(\n $subscriptionId: String!\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $terminatedSubscriptionFilter: [GraphqlFilter!]\n) {\n subscriptions(\n filterBy: { value: $subscriptionId, field: \"subscriptionId\" }\n ) {\n page {\n subscriptionId\n inUseBySubscriptions(\n first: $first\n after: $after\n sortBy: $sortBy\n filterBy: $terminatedSubscriptionFilter\n ) {\n page {\n subscriptionId\n customer {\n fullname\n }\n description\n insync\n startDate\n status\n product {\n tag\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n totalItems\n sortFields\n filterFields\n }\n }\n }\n }\n}\n";
|
|
@@ -7438,13 +7450,13 @@ type RelatedSubscriptionVariables = GraphqlQueryVariables<RelatedSubscription> &
|
|
|
7438
7450
|
};
|
|
7439
7451
|
declare const useGetRelatedSubscriptionsQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
7440
7452
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
7441
|
-
originalArgs?: undefined;
|
|
7442
|
-
data?: undefined;
|
|
7443
|
-
error?: undefined;
|
|
7444
|
-
requestId?: undefined;
|
|
7453
|
+
originalArgs?: undefined | undefined;
|
|
7454
|
+
data?: undefined | undefined;
|
|
7455
|
+
error?: undefined | undefined;
|
|
7456
|
+
requestId?: undefined | undefined;
|
|
7445
7457
|
endpointName?: string | undefined;
|
|
7446
|
-
startedTimeStamp?: undefined;
|
|
7447
|
-
fulfilledTimeStamp?: undefined;
|
|
7458
|
+
startedTimeStamp?: undefined | undefined;
|
|
7459
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
7448
7460
|
} & {
|
|
7449
7461
|
currentData?: RelatedSubscriptionsResponse | undefined;
|
|
7450
7462
|
isUninitialized: false;
|
|
@@ -7469,7 +7481,7 @@ declare const useGetRelatedSubscriptionsQuery: <R extends Record<string, any> =
|
|
|
7469
7481
|
error: graphql.GraphQLError[] | undefined;
|
|
7470
7482
|
data?: undefined;
|
|
7471
7483
|
meta?: {} | undefined;
|
|
7472
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, RelatedSubscriptionsResponse, "orchestratorApi">> & {
|
|
7484
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, RelatedSubscriptionsResponse, "orchestratorApi", unknown>> & {
|
|
7473
7485
|
currentData?: RelatedSubscriptionsResponse | undefined;
|
|
7474
7486
|
isUninitialized: false;
|
|
7475
7487
|
isLoading: false;
|
|
@@ -7499,7 +7511,7 @@ declare const useGetRelatedSubscriptionsQuery: <R extends Record<string, any> =
|
|
|
7499
7511
|
error: graphql.GraphQLError[] | undefined;
|
|
7500
7512
|
data?: undefined;
|
|
7501
7513
|
meta?: {} | undefined;
|
|
7502
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, RelatedSubscriptionsResponse, "orchestratorApi">> & {
|
|
7514
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, RelatedSubscriptionsResponse, "orchestratorApi", unknown>> & {
|
|
7503
7515
|
currentData?: RelatedSubscriptionsResponse | undefined;
|
|
7504
7516
|
isUninitialized: false;
|
|
7505
7517
|
isLoading: false;
|
|
@@ -7525,7 +7537,7 @@ declare const useGetRelatedSubscriptionsQuery: <R extends Record<string, any> =
|
|
|
7525
7537
|
error: graphql.GraphQLError[] | undefined;
|
|
7526
7538
|
data?: undefined;
|
|
7527
7539
|
meta?: {} | undefined;
|
|
7528
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, RelatedSubscriptionsResponse, "orchestratorApi">> & {
|
|
7540
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, RelatedSubscriptionsResponse, "orchestratorApi", unknown>> & {
|
|
7529
7541
|
currentData?: RelatedSubscriptionsResponse | undefined;
|
|
7530
7542
|
isUninitialized: false;
|
|
7531
7543
|
isLoading: false;
|
|
@@ -7549,7 +7561,7 @@ declare const useGetRelatedSubscriptionsQuery: <R extends Record<string, any> =
|
|
|
7549
7561
|
error: graphql.GraphQLError[] | undefined;
|
|
7550
7562
|
data?: undefined;
|
|
7551
7563
|
meta?: {} | undefined;
|
|
7552
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, RelatedSubscriptionsResponse, "orchestratorApi">> & {
|
|
7564
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, RelatedSubscriptionsResponse, "orchestratorApi", unknown>> & {
|
|
7553
7565
|
currentData?: RelatedSubscriptionsResponse | undefined;
|
|
7554
7566
|
isUninitialized: false;
|
|
7555
7567
|
isLoading: false;
|
|
@@ -7565,13 +7577,13 @@ declare const useGetRelatedSubscriptionsQuery: <R extends Record<string, any> =
|
|
|
7565
7577
|
skip?: boolean;
|
|
7566
7578
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
7567
7579
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
7568
|
-
originalArgs?: undefined;
|
|
7569
|
-
data?: undefined;
|
|
7570
|
-
error?: undefined;
|
|
7571
|
-
requestId?: undefined;
|
|
7580
|
+
originalArgs?: undefined | undefined;
|
|
7581
|
+
data?: undefined | undefined;
|
|
7582
|
+
error?: undefined | undefined;
|
|
7583
|
+
requestId?: undefined | undefined;
|
|
7572
7584
|
endpointName?: string | undefined;
|
|
7573
|
-
startedTimeStamp?: undefined;
|
|
7574
|
-
fulfilledTimeStamp?: undefined;
|
|
7585
|
+
startedTimeStamp?: undefined | undefined;
|
|
7586
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
7575
7587
|
} & {
|
|
7576
7588
|
currentData?: RelatedSubscriptionsResponse | undefined;
|
|
7577
7589
|
isUninitialized: false;
|
|
@@ -7596,7 +7608,7 @@ declare const useGetRelatedSubscriptionsQuery: <R extends Record<string, any> =
|
|
|
7596
7608
|
error: graphql.GraphQLError[] | undefined;
|
|
7597
7609
|
data?: undefined;
|
|
7598
7610
|
meta?: {} | undefined;
|
|
7599
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, RelatedSubscriptionsResponse, "orchestratorApi">> & {
|
|
7611
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, RelatedSubscriptionsResponse, "orchestratorApi", unknown>> & {
|
|
7600
7612
|
currentData?: RelatedSubscriptionsResponse | undefined;
|
|
7601
7613
|
isUninitialized: false;
|
|
7602
7614
|
isLoading: false;
|
|
@@ -7626,7 +7638,7 @@ declare const useGetRelatedSubscriptionsQuery: <R extends Record<string, any> =
|
|
|
7626
7638
|
error: graphql.GraphQLError[] | undefined;
|
|
7627
7639
|
data?: undefined;
|
|
7628
7640
|
meta?: {} | undefined;
|
|
7629
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, RelatedSubscriptionsResponse, "orchestratorApi">> & {
|
|
7641
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, RelatedSubscriptionsResponse, "orchestratorApi", unknown>> & {
|
|
7630
7642
|
currentData?: RelatedSubscriptionsResponse | undefined;
|
|
7631
7643
|
isUninitialized: false;
|
|
7632
7644
|
isLoading: false;
|
|
@@ -7652,7 +7664,7 @@ declare const useGetRelatedSubscriptionsQuery: <R extends Record<string, any> =
|
|
|
7652
7664
|
error: graphql.GraphQLError[] | undefined;
|
|
7653
7665
|
data?: undefined;
|
|
7654
7666
|
meta?: {} | undefined;
|
|
7655
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, RelatedSubscriptionsResponse, "orchestratorApi">> & {
|
|
7667
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, RelatedSubscriptionsResponse, "orchestratorApi", unknown>> & {
|
|
7656
7668
|
currentData?: RelatedSubscriptionsResponse | undefined;
|
|
7657
7669
|
isUninitialized: false;
|
|
7658
7670
|
isLoading: false;
|
|
@@ -7676,7 +7688,7 @@ declare const useGetRelatedSubscriptionsQuery: <R extends Record<string, any> =
|
|
|
7676
7688
|
error: graphql.GraphQLError[] | undefined;
|
|
7677
7689
|
data?: undefined;
|
|
7678
7690
|
meta?: {} | undefined;
|
|
7679
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, RelatedSubscriptionsResponse, "orchestratorApi">> & {
|
|
7691
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, RelatedSubscriptionsResponse, "orchestratorApi", unknown>> & {
|
|
7680
7692
|
currentData?: RelatedSubscriptionsResponse | undefined;
|
|
7681
7693
|
isUninitialized: false;
|
|
7682
7694
|
isLoading: false;
|
|
@@ -7702,7 +7714,7 @@ declare const useGetRelatedSubscriptionsQuery: <R extends Record<string, any> =
|
|
|
7702
7714
|
error: graphql.GraphQLError[] | undefined;
|
|
7703
7715
|
data?: undefined;
|
|
7704
7716
|
meta?: {} | undefined;
|
|
7705
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, RelatedSubscriptionsResponse, "orchestratorApi">>;
|
|
7717
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, RelatedSubscriptionsResponse, "orchestratorApi", unknown>>;
|
|
7706
7718
|
};
|
|
7707
7719
|
|
|
7708
7720
|
interface EngineStatusReturnValue {
|
|
@@ -7717,13 +7729,13 @@ interface WorkerStatusReturnValue {
|
|
|
7717
7729
|
}
|
|
7718
7730
|
declare const useGetEngineStatusQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
7719
7731
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
7720
|
-
originalArgs?: undefined;
|
|
7721
|
-
data?: undefined;
|
|
7722
|
-
error?: undefined;
|
|
7723
|
-
requestId?: undefined;
|
|
7732
|
+
originalArgs?: undefined | undefined;
|
|
7733
|
+
data?: undefined | undefined;
|
|
7734
|
+
error?: undefined | undefined;
|
|
7735
|
+
requestId?: undefined | undefined;
|
|
7724
7736
|
endpointName?: string | undefined;
|
|
7725
|
-
startedTimeStamp?: undefined;
|
|
7726
|
-
fulfilledTimeStamp?: undefined;
|
|
7737
|
+
startedTimeStamp?: undefined | undefined;
|
|
7738
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
7727
7739
|
} & {
|
|
7728
7740
|
currentData?: EngineStatusReturnValue | undefined;
|
|
7729
7741
|
isUninitialized: false;
|
|
@@ -7748,7 +7760,7 @@ declare const useGetEngineStatusQuery: <R extends Record<string, any> = _reduxjs
|
|
|
7748
7760
|
error: graphql.GraphQLError[] | undefined;
|
|
7749
7761
|
data?: undefined;
|
|
7750
7762
|
meta?: {} | undefined;
|
|
7751
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, EngineStatusReturnValue, "orchestratorApi">> & {
|
|
7763
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, EngineStatusReturnValue, "orchestratorApi", unknown>> & {
|
|
7752
7764
|
currentData?: EngineStatusReturnValue | undefined;
|
|
7753
7765
|
isUninitialized: false;
|
|
7754
7766
|
isLoading: false;
|
|
@@ -7778,7 +7790,7 @@ declare const useGetEngineStatusQuery: <R extends Record<string, any> = _reduxjs
|
|
|
7778
7790
|
error: graphql.GraphQLError[] | undefined;
|
|
7779
7791
|
data?: undefined;
|
|
7780
7792
|
meta?: {} | undefined;
|
|
7781
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, EngineStatusReturnValue, "orchestratorApi">> & {
|
|
7793
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, EngineStatusReturnValue, "orchestratorApi", unknown>> & {
|
|
7782
7794
|
currentData?: EngineStatusReturnValue | undefined;
|
|
7783
7795
|
isUninitialized: false;
|
|
7784
7796
|
isLoading: false;
|
|
@@ -7804,7 +7816,7 @@ declare const useGetEngineStatusQuery: <R extends Record<string, any> = _reduxjs
|
|
|
7804
7816
|
error: graphql.GraphQLError[] | undefined;
|
|
7805
7817
|
data?: undefined;
|
|
7806
7818
|
meta?: {} | undefined;
|
|
7807
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, EngineStatusReturnValue, "orchestratorApi">> & {
|
|
7819
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, EngineStatusReturnValue, "orchestratorApi", unknown>> & {
|
|
7808
7820
|
currentData?: EngineStatusReturnValue | undefined;
|
|
7809
7821
|
isUninitialized: false;
|
|
7810
7822
|
isLoading: false;
|
|
@@ -7828,7 +7840,7 @@ declare const useGetEngineStatusQuery: <R extends Record<string, any> = _reduxjs
|
|
|
7828
7840
|
error: graphql.GraphQLError[] | undefined;
|
|
7829
7841
|
data?: undefined;
|
|
7830
7842
|
meta?: {} | undefined;
|
|
7831
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, EngineStatusReturnValue, "orchestratorApi">> & {
|
|
7843
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, EngineStatusReturnValue, "orchestratorApi", unknown>> & {
|
|
7832
7844
|
currentData?: EngineStatusReturnValue | undefined;
|
|
7833
7845
|
isUninitialized: false;
|
|
7834
7846
|
isLoading: false;
|
|
@@ -7844,13 +7856,13 @@ declare const useGetEngineStatusQuery: <R extends Record<string, any> = _reduxjs
|
|
|
7844
7856
|
skip?: boolean;
|
|
7845
7857
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
7846
7858
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
7847
|
-
originalArgs?: undefined;
|
|
7848
|
-
data?: undefined;
|
|
7849
|
-
error?: undefined;
|
|
7850
|
-
requestId?: undefined;
|
|
7859
|
+
originalArgs?: undefined | undefined;
|
|
7860
|
+
data?: undefined | undefined;
|
|
7861
|
+
error?: undefined | undefined;
|
|
7862
|
+
requestId?: undefined | undefined;
|
|
7851
7863
|
endpointName?: string | undefined;
|
|
7852
|
-
startedTimeStamp?: undefined;
|
|
7853
|
-
fulfilledTimeStamp?: undefined;
|
|
7864
|
+
startedTimeStamp?: undefined | undefined;
|
|
7865
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
7854
7866
|
} & {
|
|
7855
7867
|
currentData?: EngineStatusReturnValue | undefined;
|
|
7856
7868
|
isUninitialized: false;
|
|
@@ -7875,7 +7887,7 @@ declare const useGetEngineStatusQuery: <R extends Record<string, any> = _reduxjs
|
|
|
7875
7887
|
error: graphql.GraphQLError[] | undefined;
|
|
7876
7888
|
data?: undefined;
|
|
7877
7889
|
meta?: {} | undefined;
|
|
7878
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, EngineStatusReturnValue, "orchestratorApi">> & {
|
|
7890
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, EngineStatusReturnValue, "orchestratorApi", unknown>> & {
|
|
7879
7891
|
currentData?: EngineStatusReturnValue | undefined;
|
|
7880
7892
|
isUninitialized: false;
|
|
7881
7893
|
isLoading: false;
|
|
@@ -7905,7 +7917,7 @@ declare const useGetEngineStatusQuery: <R extends Record<string, any> = _reduxjs
|
|
|
7905
7917
|
error: graphql.GraphQLError[] | undefined;
|
|
7906
7918
|
data?: undefined;
|
|
7907
7919
|
meta?: {} | undefined;
|
|
7908
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, EngineStatusReturnValue, "orchestratorApi">> & {
|
|
7920
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, EngineStatusReturnValue, "orchestratorApi", unknown>> & {
|
|
7909
7921
|
currentData?: EngineStatusReturnValue | undefined;
|
|
7910
7922
|
isUninitialized: false;
|
|
7911
7923
|
isLoading: false;
|
|
@@ -7931,7 +7943,7 @@ declare const useGetEngineStatusQuery: <R extends Record<string, any> = _reduxjs
|
|
|
7931
7943
|
error: graphql.GraphQLError[] | undefined;
|
|
7932
7944
|
data?: undefined;
|
|
7933
7945
|
meta?: {} | undefined;
|
|
7934
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, EngineStatusReturnValue, "orchestratorApi">> & {
|
|
7946
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, EngineStatusReturnValue, "orchestratorApi", unknown>> & {
|
|
7935
7947
|
currentData?: EngineStatusReturnValue | undefined;
|
|
7936
7948
|
isUninitialized: false;
|
|
7937
7949
|
isLoading: false;
|
|
@@ -7955,7 +7967,7 @@ declare const useGetEngineStatusQuery: <R extends Record<string, any> = _reduxjs
|
|
|
7955
7967
|
error: graphql.GraphQLError[] | undefined;
|
|
7956
7968
|
data?: undefined;
|
|
7957
7969
|
meta?: {} | undefined;
|
|
7958
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, EngineStatusReturnValue, "orchestratorApi">> & {
|
|
7970
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, EngineStatusReturnValue, "orchestratorApi", unknown>> & {
|
|
7959
7971
|
currentData?: EngineStatusReturnValue | undefined;
|
|
7960
7972
|
isUninitialized: false;
|
|
7961
7973
|
isLoading: false;
|
|
@@ -7981,17 +7993,17 @@ declare const useGetEngineStatusQuery: <R extends Record<string, any> = _reduxjs
|
|
|
7981
7993
|
error: graphql.GraphQLError[] | undefined;
|
|
7982
7994
|
data?: undefined;
|
|
7983
7995
|
meta?: {} | undefined;
|
|
7984
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, EngineStatusReturnValue, "orchestratorApi">>;
|
|
7996
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, EngineStatusReturnValue, "orchestratorApi", unknown>>;
|
|
7985
7997
|
};
|
|
7986
7998
|
declare const useGetCacheNamesQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
7987
7999
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
7988
|
-
originalArgs?: undefined;
|
|
7989
|
-
data?: undefined;
|
|
7990
|
-
error?: undefined;
|
|
7991
|
-
requestId?: undefined;
|
|
8000
|
+
originalArgs?: undefined | undefined;
|
|
8001
|
+
data?: undefined | undefined;
|
|
8002
|
+
error?: undefined | undefined;
|
|
8003
|
+
requestId?: undefined | undefined;
|
|
7992
8004
|
endpointName?: string | undefined;
|
|
7993
|
-
startedTimeStamp?: undefined;
|
|
7994
|
-
fulfilledTimeStamp?: undefined;
|
|
8005
|
+
startedTimeStamp?: undefined | undefined;
|
|
8006
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
7995
8007
|
} & {
|
|
7996
8008
|
currentData?: CacheNames | undefined;
|
|
7997
8009
|
isUninitialized: false;
|
|
@@ -8016,7 +8028,7 @@ declare const useGetCacheNamesQuery: <R extends Record<string, any> = _reduxjs_t
|
|
|
8016
8028
|
error: graphql.GraphQLError[] | undefined;
|
|
8017
8029
|
data?: undefined;
|
|
8018
8030
|
meta?: {} | undefined;
|
|
8019
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CacheNames, "orchestratorApi">> & {
|
|
8031
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CacheNames, "orchestratorApi", unknown>> & {
|
|
8020
8032
|
currentData?: CacheNames | undefined;
|
|
8021
8033
|
isUninitialized: false;
|
|
8022
8034
|
isLoading: false;
|
|
@@ -8046,7 +8058,7 @@ declare const useGetCacheNamesQuery: <R extends Record<string, any> = _reduxjs_t
|
|
|
8046
8058
|
error: graphql.GraphQLError[] | undefined;
|
|
8047
8059
|
data?: undefined;
|
|
8048
8060
|
meta?: {} | undefined;
|
|
8049
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CacheNames, "orchestratorApi">> & {
|
|
8061
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CacheNames, "orchestratorApi", unknown>> & {
|
|
8050
8062
|
currentData?: CacheNames | undefined;
|
|
8051
8063
|
isUninitialized: false;
|
|
8052
8064
|
isLoading: false;
|
|
@@ -8072,7 +8084,7 @@ declare const useGetCacheNamesQuery: <R extends Record<string, any> = _reduxjs_t
|
|
|
8072
8084
|
error: graphql.GraphQLError[] | undefined;
|
|
8073
8085
|
data?: undefined;
|
|
8074
8086
|
meta?: {} | undefined;
|
|
8075
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CacheNames, "orchestratorApi">> & {
|
|
8087
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CacheNames, "orchestratorApi", unknown>> & {
|
|
8076
8088
|
currentData?: CacheNames | undefined;
|
|
8077
8089
|
isUninitialized: false;
|
|
8078
8090
|
isLoading: false;
|
|
@@ -8096,7 +8108,7 @@ declare const useGetCacheNamesQuery: <R extends Record<string, any> = _reduxjs_t
|
|
|
8096
8108
|
error: graphql.GraphQLError[] | undefined;
|
|
8097
8109
|
data?: undefined;
|
|
8098
8110
|
meta?: {} | undefined;
|
|
8099
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CacheNames, "orchestratorApi">> & {
|
|
8111
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CacheNames, "orchestratorApi", unknown>> & {
|
|
8100
8112
|
currentData?: CacheNames | undefined;
|
|
8101
8113
|
isUninitialized: false;
|
|
8102
8114
|
isLoading: false;
|
|
@@ -8112,13 +8124,13 @@ declare const useGetCacheNamesQuery: <R extends Record<string, any> = _reduxjs_t
|
|
|
8112
8124
|
skip?: boolean;
|
|
8113
8125
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
8114
8126
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
8115
|
-
originalArgs?: undefined;
|
|
8116
|
-
data?: undefined;
|
|
8117
|
-
error?: undefined;
|
|
8118
|
-
requestId?: undefined;
|
|
8127
|
+
originalArgs?: undefined | undefined;
|
|
8128
|
+
data?: undefined | undefined;
|
|
8129
|
+
error?: undefined | undefined;
|
|
8130
|
+
requestId?: undefined | undefined;
|
|
8119
8131
|
endpointName?: string | undefined;
|
|
8120
|
-
startedTimeStamp?: undefined;
|
|
8121
|
-
fulfilledTimeStamp?: undefined;
|
|
8132
|
+
startedTimeStamp?: undefined | undefined;
|
|
8133
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
8122
8134
|
} & {
|
|
8123
8135
|
currentData?: CacheNames | undefined;
|
|
8124
8136
|
isUninitialized: false;
|
|
@@ -8143,7 +8155,7 @@ declare const useGetCacheNamesQuery: <R extends Record<string, any> = _reduxjs_t
|
|
|
8143
8155
|
error: graphql.GraphQLError[] | undefined;
|
|
8144
8156
|
data?: undefined;
|
|
8145
8157
|
meta?: {} | undefined;
|
|
8146
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CacheNames, "orchestratorApi">> & {
|
|
8158
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CacheNames, "orchestratorApi", unknown>> & {
|
|
8147
8159
|
currentData?: CacheNames | undefined;
|
|
8148
8160
|
isUninitialized: false;
|
|
8149
8161
|
isLoading: false;
|
|
@@ -8173,7 +8185,7 @@ declare const useGetCacheNamesQuery: <R extends Record<string, any> = _reduxjs_t
|
|
|
8173
8185
|
error: graphql.GraphQLError[] | undefined;
|
|
8174
8186
|
data?: undefined;
|
|
8175
8187
|
meta?: {} | undefined;
|
|
8176
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CacheNames, "orchestratorApi">> & {
|
|
8188
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CacheNames, "orchestratorApi", unknown>> & {
|
|
8177
8189
|
currentData?: CacheNames | undefined;
|
|
8178
8190
|
isUninitialized: false;
|
|
8179
8191
|
isLoading: false;
|
|
@@ -8199,7 +8211,7 @@ declare const useGetCacheNamesQuery: <R extends Record<string, any> = _reduxjs_t
|
|
|
8199
8211
|
error: graphql.GraphQLError[] | undefined;
|
|
8200
8212
|
data?: undefined;
|
|
8201
8213
|
meta?: {} | undefined;
|
|
8202
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CacheNames, "orchestratorApi">> & {
|
|
8214
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CacheNames, "orchestratorApi", unknown>> & {
|
|
8203
8215
|
currentData?: CacheNames | undefined;
|
|
8204
8216
|
isUninitialized: false;
|
|
8205
8217
|
isLoading: false;
|
|
@@ -8223,7 +8235,7 @@ declare const useGetCacheNamesQuery: <R extends Record<string, any> = _reduxjs_t
|
|
|
8223
8235
|
error: graphql.GraphQLError[] | undefined;
|
|
8224
8236
|
data?: undefined;
|
|
8225
8237
|
meta?: {} | undefined;
|
|
8226
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CacheNames, "orchestratorApi">> & {
|
|
8238
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CacheNames, "orchestratorApi", unknown>> & {
|
|
8227
8239
|
currentData?: CacheNames | undefined;
|
|
8228
8240
|
isUninitialized: false;
|
|
8229
8241
|
isLoading: false;
|
|
@@ -8249,7 +8261,7 @@ declare const useGetCacheNamesQuery: <R extends Record<string, any> = _reduxjs_t
|
|
|
8249
8261
|
error: graphql.GraphQLError[] | undefined;
|
|
8250
8262
|
data?: undefined;
|
|
8251
8263
|
meta?: {} | undefined;
|
|
8252
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CacheNames, "orchestratorApi">>;
|
|
8264
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, CacheNames, "orchestratorApi", unknown>>;
|
|
8253
8265
|
};
|
|
8254
8266
|
declare const useClearCacheMutation: <R extends Record<string, any> = ({
|
|
8255
8267
|
requestId?: undefined;
|
|
@@ -8423,7 +8435,7 @@ declare const useClearCacheMutation: <R extends Record<string, any> = ({
|
|
|
8423
8435
|
error: graphql.GraphQLError[] | undefined;
|
|
8424
8436
|
data?: undefined;
|
|
8425
8437
|
meta?: {} | undefined;
|
|
8426
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, void, "orchestratorApi">>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
8438
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, void, "orchestratorApi", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
8427
8439
|
originalArgs?: string | undefined;
|
|
8428
8440
|
reset: () => void;
|
|
8429
8441
|
}];
|
|
@@ -8599,7 +8611,7 @@ declare const useResetTextSearchIndexMutation: <R extends Record<string, any> =
|
|
|
8599
8611
|
error: graphql.GraphQLError[] | undefined;
|
|
8600
8612
|
data?: undefined;
|
|
8601
8613
|
meta?: {} | undefined;
|
|
8602
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, void, "orchestratorApi">>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
8614
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, void, "orchestratorApi", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
8603
8615
|
originalArgs?: null | undefined;
|
|
8604
8616
|
reset: () => void;
|
|
8605
8617
|
}];
|
|
@@ -8775,19 +8787,19 @@ declare const useSetEngineStatusMutation: <R extends Record<string, any> = ({
|
|
|
8775
8787
|
error: graphql.GraphQLError[] | undefined;
|
|
8776
8788
|
data?: undefined;
|
|
8777
8789
|
meta?: {} | undefined;
|
|
8778
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, EngineStatusReturnValue, "orchestratorApi">>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
8790
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, EngineStatusReturnValue, "orchestratorApi", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
8779
8791
|
originalArgs?: boolean | undefined;
|
|
8780
8792
|
reset: () => void;
|
|
8781
8793
|
}];
|
|
8782
8794
|
declare const useGetWorkerStatusQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
8783
8795
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
8784
|
-
originalArgs?: undefined;
|
|
8785
|
-
data?: undefined;
|
|
8786
|
-
error?: undefined;
|
|
8787
|
-
requestId?: undefined;
|
|
8796
|
+
originalArgs?: undefined | undefined;
|
|
8797
|
+
data?: undefined | undefined;
|
|
8798
|
+
error?: undefined | undefined;
|
|
8799
|
+
requestId?: undefined | undefined;
|
|
8788
8800
|
endpointName?: string | undefined;
|
|
8789
|
-
startedTimeStamp?: undefined;
|
|
8790
|
-
fulfilledTimeStamp?: undefined;
|
|
8801
|
+
startedTimeStamp?: undefined | undefined;
|
|
8802
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
8791
8803
|
} & {
|
|
8792
8804
|
currentData?: WorkerStatusReturnValue | undefined;
|
|
8793
8805
|
isUninitialized: false;
|
|
@@ -8812,7 +8824,7 @@ declare const useGetWorkerStatusQuery: <R extends Record<string, any> = _reduxjs
|
|
|
8812
8824
|
error: graphql.GraphQLError[] | undefined;
|
|
8813
8825
|
data?: undefined;
|
|
8814
8826
|
meta?: {} | undefined;
|
|
8815
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkerStatusReturnValue, "orchestratorApi">> & {
|
|
8827
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkerStatusReturnValue, "orchestratorApi", unknown>> & {
|
|
8816
8828
|
currentData?: WorkerStatusReturnValue | undefined;
|
|
8817
8829
|
isUninitialized: false;
|
|
8818
8830
|
isLoading: false;
|
|
@@ -8842,7 +8854,7 @@ declare const useGetWorkerStatusQuery: <R extends Record<string, any> = _reduxjs
|
|
|
8842
8854
|
error: graphql.GraphQLError[] | undefined;
|
|
8843
8855
|
data?: undefined;
|
|
8844
8856
|
meta?: {} | undefined;
|
|
8845
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkerStatusReturnValue, "orchestratorApi">> & {
|
|
8857
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkerStatusReturnValue, "orchestratorApi", unknown>> & {
|
|
8846
8858
|
currentData?: WorkerStatusReturnValue | undefined;
|
|
8847
8859
|
isUninitialized: false;
|
|
8848
8860
|
isLoading: false;
|
|
@@ -8868,7 +8880,7 @@ declare const useGetWorkerStatusQuery: <R extends Record<string, any> = _reduxjs
|
|
|
8868
8880
|
error: graphql.GraphQLError[] | undefined;
|
|
8869
8881
|
data?: undefined;
|
|
8870
8882
|
meta?: {} | undefined;
|
|
8871
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkerStatusReturnValue, "orchestratorApi">> & {
|
|
8883
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkerStatusReturnValue, "orchestratorApi", unknown>> & {
|
|
8872
8884
|
currentData?: WorkerStatusReturnValue | undefined;
|
|
8873
8885
|
isUninitialized: false;
|
|
8874
8886
|
isLoading: false;
|
|
@@ -8892,7 +8904,7 @@ declare const useGetWorkerStatusQuery: <R extends Record<string, any> = _reduxjs
|
|
|
8892
8904
|
error: graphql.GraphQLError[] | undefined;
|
|
8893
8905
|
data?: undefined;
|
|
8894
8906
|
meta?: {} | undefined;
|
|
8895
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkerStatusReturnValue, "orchestratorApi">> & {
|
|
8907
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkerStatusReturnValue, "orchestratorApi", unknown>> & {
|
|
8896
8908
|
currentData?: WorkerStatusReturnValue | undefined;
|
|
8897
8909
|
isUninitialized: false;
|
|
8898
8910
|
isLoading: false;
|
|
@@ -8908,13 +8920,13 @@ declare const useGetWorkerStatusQuery: <R extends Record<string, any> = _reduxjs
|
|
|
8908
8920
|
skip?: boolean;
|
|
8909
8921
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
8910
8922
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
8911
|
-
originalArgs?: undefined;
|
|
8912
|
-
data?: undefined;
|
|
8913
|
-
error?: undefined;
|
|
8914
|
-
requestId?: undefined;
|
|
8923
|
+
originalArgs?: undefined | undefined;
|
|
8924
|
+
data?: undefined | undefined;
|
|
8925
|
+
error?: undefined | undefined;
|
|
8926
|
+
requestId?: undefined | undefined;
|
|
8915
8927
|
endpointName?: string | undefined;
|
|
8916
|
-
startedTimeStamp?: undefined;
|
|
8917
|
-
fulfilledTimeStamp?: undefined;
|
|
8928
|
+
startedTimeStamp?: undefined | undefined;
|
|
8929
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
8918
8930
|
} & {
|
|
8919
8931
|
currentData?: WorkerStatusReturnValue | undefined;
|
|
8920
8932
|
isUninitialized: false;
|
|
@@ -8939,7 +8951,7 @@ declare const useGetWorkerStatusQuery: <R extends Record<string, any> = _reduxjs
|
|
|
8939
8951
|
error: graphql.GraphQLError[] | undefined;
|
|
8940
8952
|
data?: undefined;
|
|
8941
8953
|
meta?: {} | undefined;
|
|
8942
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkerStatusReturnValue, "orchestratorApi">> & {
|
|
8954
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkerStatusReturnValue, "orchestratorApi", unknown>> & {
|
|
8943
8955
|
currentData?: WorkerStatusReturnValue | undefined;
|
|
8944
8956
|
isUninitialized: false;
|
|
8945
8957
|
isLoading: false;
|
|
@@ -8969,7 +8981,7 @@ declare const useGetWorkerStatusQuery: <R extends Record<string, any> = _reduxjs
|
|
|
8969
8981
|
error: graphql.GraphQLError[] | undefined;
|
|
8970
8982
|
data?: undefined;
|
|
8971
8983
|
meta?: {} | undefined;
|
|
8972
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkerStatusReturnValue, "orchestratorApi">> & {
|
|
8984
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkerStatusReturnValue, "orchestratorApi", unknown>> & {
|
|
8973
8985
|
currentData?: WorkerStatusReturnValue | undefined;
|
|
8974
8986
|
isUninitialized: false;
|
|
8975
8987
|
isLoading: false;
|
|
@@ -8995,7 +9007,7 @@ declare const useGetWorkerStatusQuery: <R extends Record<string, any> = _reduxjs
|
|
|
8995
9007
|
error: graphql.GraphQLError[] | undefined;
|
|
8996
9008
|
data?: undefined;
|
|
8997
9009
|
meta?: {} | undefined;
|
|
8998
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkerStatusReturnValue, "orchestratorApi">> & {
|
|
9010
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkerStatusReturnValue, "orchestratorApi", unknown>> & {
|
|
8999
9011
|
currentData?: WorkerStatusReturnValue | undefined;
|
|
9000
9012
|
isUninitialized: false;
|
|
9001
9013
|
isLoading: false;
|
|
@@ -9019,7 +9031,7 @@ declare const useGetWorkerStatusQuery: <R extends Record<string, any> = _reduxjs
|
|
|
9019
9031
|
error: graphql.GraphQLError[] | undefined;
|
|
9020
9032
|
data?: undefined;
|
|
9021
9033
|
meta?: {} | undefined;
|
|
9022
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkerStatusReturnValue, "orchestratorApi">> & {
|
|
9034
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkerStatusReturnValue, "orchestratorApi", unknown>> & {
|
|
9023
9035
|
currentData?: WorkerStatusReturnValue | undefined;
|
|
9024
9036
|
isUninitialized: false;
|
|
9025
9037
|
isLoading: false;
|
|
@@ -9045,7 +9057,7 @@ declare const useGetWorkerStatusQuery: <R extends Record<string, any> = _reduxjs
|
|
|
9045
9057
|
error: graphql.GraphQLError[] | undefined;
|
|
9046
9058
|
data?: undefined;
|
|
9047
9059
|
meta?: {} | undefined;
|
|
9048
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkerStatusReturnValue, "orchestratorApi">>;
|
|
9060
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkerStatusReturnValue, "orchestratorApi", unknown>>;
|
|
9049
9061
|
};
|
|
9050
9062
|
|
|
9051
9063
|
type WorkflowOption = {
|
|
@@ -9060,13 +9072,13 @@ type StartOptionsResponse<StartOption> = {
|
|
|
9060
9072
|
type TaskOption = Pick<WorkflowDefinition, 'name' | 'description'>;
|
|
9061
9073
|
declare const useGetWorkflowOptionsQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
9062
9074
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
9063
|
-
originalArgs?: undefined;
|
|
9064
|
-
data?: undefined;
|
|
9065
|
-
error?: undefined;
|
|
9066
|
-
requestId?: undefined;
|
|
9075
|
+
originalArgs?: undefined | undefined;
|
|
9076
|
+
data?: undefined | undefined;
|
|
9077
|
+
error?: undefined | undefined;
|
|
9078
|
+
requestId?: undefined | undefined;
|
|
9067
9079
|
endpointName?: string | undefined;
|
|
9068
|
-
startedTimeStamp?: undefined;
|
|
9069
|
-
fulfilledTimeStamp?: undefined;
|
|
9080
|
+
startedTimeStamp?: undefined | undefined;
|
|
9081
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
9070
9082
|
} & {
|
|
9071
9083
|
currentData?: StartOptionsResponse<WorkflowOption> | undefined;
|
|
9072
9084
|
isUninitialized: false;
|
|
@@ -9091,7 +9103,7 @@ declare const useGetWorkflowOptionsQuery: <R extends Record<string, any> = _redu
|
|
|
9091
9103
|
error: graphql.GraphQLError[] | undefined;
|
|
9092
9104
|
data?: undefined;
|
|
9093
9105
|
meta?: {} | undefined;
|
|
9094
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<WorkflowOption>, "orchestratorApi">> & {
|
|
9106
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<WorkflowOption>, "orchestratorApi", unknown>> & {
|
|
9095
9107
|
currentData?: StartOptionsResponse<WorkflowOption> | undefined;
|
|
9096
9108
|
isUninitialized: false;
|
|
9097
9109
|
isLoading: false;
|
|
@@ -9121,7 +9133,7 @@ declare const useGetWorkflowOptionsQuery: <R extends Record<string, any> = _redu
|
|
|
9121
9133
|
error: graphql.GraphQLError[] | undefined;
|
|
9122
9134
|
data?: undefined;
|
|
9123
9135
|
meta?: {} | undefined;
|
|
9124
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<WorkflowOption>, "orchestratorApi">> & {
|
|
9136
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<WorkflowOption>, "orchestratorApi", unknown>> & {
|
|
9125
9137
|
currentData?: StartOptionsResponse<WorkflowOption> | undefined;
|
|
9126
9138
|
isUninitialized: false;
|
|
9127
9139
|
isLoading: false;
|
|
@@ -9147,7 +9159,7 @@ declare const useGetWorkflowOptionsQuery: <R extends Record<string, any> = _redu
|
|
|
9147
9159
|
error: graphql.GraphQLError[] | undefined;
|
|
9148
9160
|
data?: undefined;
|
|
9149
9161
|
meta?: {} | undefined;
|
|
9150
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<WorkflowOption>, "orchestratorApi">> & {
|
|
9162
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<WorkflowOption>, "orchestratorApi", unknown>> & {
|
|
9151
9163
|
currentData?: StartOptionsResponse<WorkflowOption> | undefined;
|
|
9152
9164
|
isUninitialized: false;
|
|
9153
9165
|
isLoading: false;
|
|
@@ -9171,7 +9183,7 @@ declare const useGetWorkflowOptionsQuery: <R extends Record<string, any> = _redu
|
|
|
9171
9183
|
error: graphql.GraphQLError[] | undefined;
|
|
9172
9184
|
data?: undefined;
|
|
9173
9185
|
meta?: {} | undefined;
|
|
9174
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<WorkflowOption>, "orchestratorApi">> & {
|
|
9186
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<WorkflowOption>, "orchestratorApi", unknown>> & {
|
|
9175
9187
|
currentData?: StartOptionsResponse<WorkflowOption> | undefined;
|
|
9176
9188
|
isUninitialized: false;
|
|
9177
9189
|
isLoading: false;
|
|
@@ -9187,13 +9199,13 @@ declare const useGetWorkflowOptionsQuery: <R extends Record<string, any> = _redu
|
|
|
9187
9199
|
skip?: boolean;
|
|
9188
9200
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
9189
9201
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
9190
|
-
originalArgs?: undefined;
|
|
9191
|
-
data?: undefined;
|
|
9192
|
-
error?: undefined;
|
|
9193
|
-
requestId?: undefined;
|
|
9202
|
+
originalArgs?: undefined | undefined;
|
|
9203
|
+
data?: undefined | undefined;
|
|
9204
|
+
error?: undefined | undefined;
|
|
9205
|
+
requestId?: undefined | undefined;
|
|
9194
9206
|
endpointName?: string | undefined;
|
|
9195
|
-
startedTimeStamp?: undefined;
|
|
9196
|
-
fulfilledTimeStamp?: undefined;
|
|
9207
|
+
startedTimeStamp?: undefined | undefined;
|
|
9208
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
9197
9209
|
} & {
|
|
9198
9210
|
currentData?: StartOptionsResponse<WorkflowOption> | undefined;
|
|
9199
9211
|
isUninitialized: false;
|
|
@@ -9218,7 +9230,7 @@ declare const useGetWorkflowOptionsQuery: <R extends Record<string, any> = _redu
|
|
|
9218
9230
|
error: graphql.GraphQLError[] | undefined;
|
|
9219
9231
|
data?: undefined;
|
|
9220
9232
|
meta?: {} | undefined;
|
|
9221
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<WorkflowOption>, "orchestratorApi">> & {
|
|
9233
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<WorkflowOption>, "orchestratorApi", unknown>> & {
|
|
9222
9234
|
currentData?: StartOptionsResponse<WorkflowOption> | undefined;
|
|
9223
9235
|
isUninitialized: false;
|
|
9224
9236
|
isLoading: false;
|
|
@@ -9248,7 +9260,7 @@ declare const useGetWorkflowOptionsQuery: <R extends Record<string, any> = _redu
|
|
|
9248
9260
|
error: graphql.GraphQLError[] | undefined;
|
|
9249
9261
|
data?: undefined;
|
|
9250
9262
|
meta?: {} | undefined;
|
|
9251
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<WorkflowOption>, "orchestratorApi">> & {
|
|
9263
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<WorkflowOption>, "orchestratorApi", unknown>> & {
|
|
9252
9264
|
currentData?: StartOptionsResponse<WorkflowOption> | undefined;
|
|
9253
9265
|
isUninitialized: false;
|
|
9254
9266
|
isLoading: false;
|
|
@@ -9274,7 +9286,7 @@ declare const useGetWorkflowOptionsQuery: <R extends Record<string, any> = _redu
|
|
|
9274
9286
|
error: graphql.GraphQLError[] | undefined;
|
|
9275
9287
|
data?: undefined;
|
|
9276
9288
|
meta?: {} | undefined;
|
|
9277
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<WorkflowOption>, "orchestratorApi">> & {
|
|
9289
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<WorkflowOption>, "orchestratorApi", unknown>> & {
|
|
9278
9290
|
currentData?: StartOptionsResponse<WorkflowOption> | undefined;
|
|
9279
9291
|
isUninitialized: false;
|
|
9280
9292
|
isLoading: false;
|
|
@@ -9298,7 +9310,7 @@ declare const useGetWorkflowOptionsQuery: <R extends Record<string, any> = _redu
|
|
|
9298
9310
|
error: graphql.GraphQLError[] | undefined;
|
|
9299
9311
|
data?: undefined;
|
|
9300
9312
|
meta?: {} | undefined;
|
|
9301
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<WorkflowOption>, "orchestratorApi">> & {
|
|
9313
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<WorkflowOption>, "orchestratorApi", unknown>> & {
|
|
9302
9314
|
currentData?: StartOptionsResponse<WorkflowOption> | undefined;
|
|
9303
9315
|
isUninitialized: false;
|
|
9304
9316
|
isLoading: false;
|
|
@@ -9324,17 +9336,17 @@ declare const useGetWorkflowOptionsQuery: <R extends Record<string, any> = _redu
|
|
|
9324
9336
|
error: graphql.GraphQLError[] | undefined;
|
|
9325
9337
|
data?: undefined;
|
|
9326
9338
|
meta?: {} | undefined;
|
|
9327
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<WorkflowOption>, "orchestratorApi">>;
|
|
9339
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<WorkflowOption>, "orchestratorApi", unknown>>;
|
|
9328
9340
|
};
|
|
9329
9341
|
declare const useGetTaskOptionsQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
9330
9342
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
9331
|
-
originalArgs?: undefined;
|
|
9332
|
-
data?: undefined;
|
|
9333
|
-
error?: undefined;
|
|
9334
|
-
requestId?: undefined;
|
|
9343
|
+
originalArgs?: undefined | undefined;
|
|
9344
|
+
data?: undefined | undefined;
|
|
9345
|
+
error?: undefined | undefined;
|
|
9346
|
+
requestId?: undefined | undefined;
|
|
9335
9347
|
endpointName?: string | undefined;
|
|
9336
|
-
startedTimeStamp?: undefined;
|
|
9337
|
-
fulfilledTimeStamp?: undefined;
|
|
9348
|
+
startedTimeStamp?: undefined | undefined;
|
|
9349
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
9338
9350
|
} & {
|
|
9339
9351
|
currentData?: StartOptionsResponse<TaskOption> | undefined;
|
|
9340
9352
|
isUninitialized: false;
|
|
@@ -9359,7 +9371,7 @@ declare const useGetTaskOptionsQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
9359
9371
|
error: graphql.GraphQLError[] | undefined;
|
|
9360
9372
|
data?: undefined;
|
|
9361
9373
|
meta?: {} | undefined;
|
|
9362
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<TaskOption>, "orchestratorApi">> & {
|
|
9374
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<TaskOption>, "orchestratorApi", unknown>> & {
|
|
9363
9375
|
currentData?: StartOptionsResponse<TaskOption> | undefined;
|
|
9364
9376
|
isUninitialized: false;
|
|
9365
9377
|
isLoading: false;
|
|
@@ -9389,7 +9401,7 @@ declare const useGetTaskOptionsQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
9389
9401
|
error: graphql.GraphQLError[] | undefined;
|
|
9390
9402
|
data?: undefined;
|
|
9391
9403
|
meta?: {} | undefined;
|
|
9392
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<TaskOption>, "orchestratorApi">> & {
|
|
9404
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<TaskOption>, "orchestratorApi", unknown>> & {
|
|
9393
9405
|
currentData?: StartOptionsResponse<TaskOption> | undefined;
|
|
9394
9406
|
isUninitialized: false;
|
|
9395
9407
|
isLoading: false;
|
|
@@ -9415,7 +9427,7 @@ declare const useGetTaskOptionsQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
9415
9427
|
error: graphql.GraphQLError[] | undefined;
|
|
9416
9428
|
data?: undefined;
|
|
9417
9429
|
meta?: {} | undefined;
|
|
9418
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<TaskOption>, "orchestratorApi">> & {
|
|
9430
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<TaskOption>, "orchestratorApi", unknown>> & {
|
|
9419
9431
|
currentData?: StartOptionsResponse<TaskOption> | undefined;
|
|
9420
9432
|
isUninitialized: false;
|
|
9421
9433
|
isLoading: false;
|
|
@@ -9439,7 +9451,7 @@ declare const useGetTaskOptionsQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
9439
9451
|
error: graphql.GraphQLError[] | undefined;
|
|
9440
9452
|
data?: undefined;
|
|
9441
9453
|
meta?: {} | undefined;
|
|
9442
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<TaskOption>, "orchestratorApi">> & {
|
|
9454
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<TaskOption>, "orchestratorApi", unknown>> & {
|
|
9443
9455
|
currentData?: StartOptionsResponse<TaskOption> | undefined;
|
|
9444
9456
|
isUninitialized: false;
|
|
9445
9457
|
isLoading: false;
|
|
@@ -9455,13 +9467,13 @@ declare const useGetTaskOptionsQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
9455
9467
|
skip?: boolean;
|
|
9456
9468
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
9457
9469
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
9458
|
-
originalArgs?: undefined;
|
|
9459
|
-
data?: undefined;
|
|
9460
|
-
error?: undefined;
|
|
9461
|
-
requestId?: undefined;
|
|
9470
|
+
originalArgs?: undefined | undefined;
|
|
9471
|
+
data?: undefined | undefined;
|
|
9472
|
+
error?: undefined | undefined;
|
|
9473
|
+
requestId?: undefined | undefined;
|
|
9462
9474
|
endpointName?: string | undefined;
|
|
9463
|
-
startedTimeStamp?: undefined;
|
|
9464
|
-
fulfilledTimeStamp?: undefined;
|
|
9475
|
+
startedTimeStamp?: undefined | undefined;
|
|
9476
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
9465
9477
|
} & {
|
|
9466
9478
|
currentData?: StartOptionsResponse<TaskOption> | undefined;
|
|
9467
9479
|
isUninitialized: false;
|
|
@@ -9486,7 +9498,7 @@ declare const useGetTaskOptionsQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
9486
9498
|
error: graphql.GraphQLError[] | undefined;
|
|
9487
9499
|
data?: undefined;
|
|
9488
9500
|
meta?: {} | undefined;
|
|
9489
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<TaskOption>, "orchestratorApi">> & {
|
|
9501
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<TaskOption>, "orchestratorApi", unknown>> & {
|
|
9490
9502
|
currentData?: StartOptionsResponse<TaskOption> | undefined;
|
|
9491
9503
|
isUninitialized: false;
|
|
9492
9504
|
isLoading: false;
|
|
@@ -9516,7 +9528,7 @@ declare const useGetTaskOptionsQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
9516
9528
|
error: graphql.GraphQLError[] | undefined;
|
|
9517
9529
|
data?: undefined;
|
|
9518
9530
|
meta?: {} | undefined;
|
|
9519
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<TaskOption>, "orchestratorApi">> & {
|
|
9531
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<TaskOption>, "orchestratorApi", unknown>> & {
|
|
9520
9532
|
currentData?: StartOptionsResponse<TaskOption> | undefined;
|
|
9521
9533
|
isUninitialized: false;
|
|
9522
9534
|
isLoading: false;
|
|
@@ -9542,7 +9554,7 @@ declare const useGetTaskOptionsQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
9542
9554
|
error: graphql.GraphQLError[] | undefined;
|
|
9543
9555
|
data?: undefined;
|
|
9544
9556
|
meta?: {} | undefined;
|
|
9545
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<TaskOption>, "orchestratorApi">> & {
|
|
9557
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<TaskOption>, "orchestratorApi", unknown>> & {
|
|
9546
9558
|
currentData?: StartOptionsResponse<TaskOption> | undefined;
|
|
9547
9559
|
isUninitialized: false;
|
|
9548
9560
|
isLoading: false;
|
|
@@ -9566,7 +9578,7 @@ declare const useGetTaskOptionsQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
9566
9578
|
error: graphql.GraphQLError[] | undefined;
|
|
9567
9579
|
data?: undefined;
|
|
9568
9580
|
meta?: {} | undefined;
|
|
9569
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<TaskOption>, "orchestratorApi">> & {
|
|
9581
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<TaskOption>, "orchestratorApi", unknown>> & {
|
|
9570
9582
|
currentData?: StartOptionsResponse<TaskOption> | undefined;
|
|
9571
9583
|
isUninitialized: false;
|
|
9572
9584
|
isLoading: false;
|
|
@@ -9592,18 +9604,18 @@ declare const useGetTaskOptionsQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
9592
9604
|
error: graphql.GraphQLError[] | undefined;
|
|
9593
9605
|
data?: undefined;
|
|
9594
9606
|
meta?: {} | undefined;
|
|
9595
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<TaskOption>, "orchestratorApi">>;
|
|
9607
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, StartOptionsResponse<TaskOption>, "orchestratorApi", unknown>>;
|
|
9596
9608
|
};
|
|
9597
9609
|
|
|
9598
9610
|
declare const useStreamMessagesQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
9599
9611
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
9600
|
-
originalArgs?: undefined;
|
|
9601
|
-
data?: undefined;
|
|
9602
|
-
error?: undefined;
|
|
9603
|
-
requestId?: undefined;
|
|
9612
|
+
originalArgs?: undefined | undefined;
|
|
9613
|
+
data?: undefined | undefined;
|
|
9614
|
+
error?: undefined | undefined;
|
|
9615
|
+
requestId?: undefined | undefined;
|
|
9604
9616
|
endpointName?: string | undefined;
|
|
9605
|
-
startedTimeStamp?: undefined;
|
|
9606
|
-
fulfilledTimeStamp?: undefined;
|
|
9617
|
+
startedTimeStamp?: undefined | undefined;
|
|
9618
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
9607
9619
|
} & {
|
|
9608
9620
|
currentData?: boolean | undefined;
|
|
9609
9621
|
isUninitialized: false;
|
|
@@ -9628,7 +9640,7 @@ declare const useStreamMessagesQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
9628
9640
|
error: graphql.GraphQLError[] | undefined;
|
|
9629
9641
|
data?: undefined;
|
|
9630
9642
|
meta?: {} | undefined;
|
|
9631
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi">> & {
|
|
9643
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi", unknown>> & {
|
|
9632
9644
|
currentData?: boolean | undefined;
|
|
9633
9645
|
isUninitialized: false;
|
|
9634
9646
|
isLoading: false;
|
|
@@ -9658,7 +9670,7 @@ declare const useStreamMessagesQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
9658
9670
|
error: graphql.GraphQLError[] | undefined;
|
|
9659
9671
|
data?: undefined;
|
|
9660
9672
|
meta?: {} | undefined;
|
|
9661
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi">> & {
|
|
9673
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi", unknown>> & {
|
|
9662
9674
|
currentData?: boolean | undefined;
|
|
9663
9675
|
isUninitialized: false;
|
|
9664
9676
|
isLoading: false;
|
|
@@ -9684,7 +9696,7 @@ declare const useStreamMessagesQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
9684
9696
|
error: graphql.GraphQLError[] | undefined;
|
|
9685
9697
|
data?: undefined;
|
|
9686
9698
|
meta?: {} | undefined;
|
|
9687
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi">> & {
|
|
9699
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi", unknown>> & {
|
|
9688
9700
|
currentData?: boolean | undefined;
|
|
9689
9701
|
isUninitialized: false;
|
|
9690
9702
|
isLoading: false;
|
|
@@ -9708,7 +9720,7 @@ declare const useStreamMessagesQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
9708
9720
|
error: graphql.GraphQLError[] | undefined;
|
|
9709
9721
|
data?: undefined;
|
|
9710
9722
|
meta?: {} | undefined;
|
|
9711
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi">> & {
|
|
9723
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi", unknown>> & {
|
|
9712
9724
|
currentData?: boolean | undefined;
|
|
9713
9725
|
isUninitialized: false;
|
|
9714
9726
|
isLoading: false;
|
|
@@ -9724,13 +9736,13 @@ declare const useStreamMessagesQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
9724
9736
|
skip?: boolean;
|
|
9725
9737
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
9726
9738
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
9727
|
-
originalArgs?: undefined;
|
|
9728
|
-
data?: undefined;
|
|
9729
|
-
error?: undefined;
|
|
9730
|
-
requestId?: undefined;
|
|
9739
|
+
originalArgs?: undefined | undefined;
|
|
9740
|
+
data?: undefined | undefined;
|
|
9741
|
+
error?: undefined | undefined;
|
|
9742
|
+
requestId?: undefined | undefined;
|
|
9731
9743
|
endpointName?: string | undefined;
|
|
9732
|
-
startedTimeStamp?: undefined;
|
|
9733
|
-
fulfilledTimeStamp?: undefined;
|
|
9744
|
+
startedTimeStamp?: undefined | undefined;
|
|
9745
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
9734
9746
|
} & {
|
|
9735
9747
|
currentData?: boolean | undefined;
|
|
9736
9748
|
isUninitialized: false;
|
|
@@ -9755,7 +9767,7 @@ declare const useStreamMessagesQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
9755
9767
|
error: graphql.GraphQLError[] | undefined;
|
|
9756
9768
|
data?: undefined;
|
|
9757
9769
|
meta?: {} | undefined;
|
|
9758
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi">> & {
|
|
9770
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi", unknown>> & {
|
|
9759
9771
|
currentData?: boolean | undefined;
|
|
9760
9772
|
isUninitialized: false;
|
|
9761
9773
|
isLoading: false;
|
|
@@ -9785,7 +9797,7 @@ declare const useStreamMessagesQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
9785
9797
|
error: graphql.GraphQLError[] | undefined;
|
|
9786
9798
|
data?: undefined;
|
|
9787
9799
|
meta?: {} | undefined;
|
|
9788
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi">> & {
|
|
9800
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi", unknown>> & {
|
|
9789
9801
|
currentData?: boolean | undefined;
|
|
9790
9802
|
isUninitialized: false;
|
|
9791
9803
|
isLoading: false;
|
|
@@ -9811,7 +9823,7 @@ declare const useStreamMessagesQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
9811
9823
|
error: graphql.GraphQLError[] | undefined;
|
|
9812
9824
|
data?: undefined;
|
|
9813
9825
|
meta?: {} | undefined;
|
|
9814
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi">> & {
|
|
9826
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi", unknown>> & {
|
|
9815
9827
|
currentData?: boolean | undefined;
|
|
9816
9828
|
isUninitialized: false;
|
|
9817
9829
|
isLoading: false;
|
|
@@ -9835,7 +9847,7 @@ declare const useStreamMessagesQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
9835
9847
|
error: graphql.GraphQLError[] | undefined;
|
|
9836
9848
|
data?: undefined;
|
|
9837
9849
|
meta?: {} | undefined;
|
|
9838
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi">> & {
|
|
9850
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi", unknown>> & {
|
|
9839
9851
|
currentData?: boolean | undefined;
|
|
9840
9852
|
isUninitialized: false;
|
|
9841
9853
|
isLoading: false;
|
|
@@ -9861,17 +9873,17 @@ declare const useStreamMessagesQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
9861
9873
|
error: graphql.GraphQLError[] | undefined;
|
|
9862
9874
|
data?: undefined;
|
|
9863
9875
|
meta?: {} | undefined;
|
|
9864
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi">>;
|
|
9876
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi", unknown>>;
|
|
9865
9877
|
};
|
|
9866
9878
|
declare const useLazyStreamMessagesQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
9867
9879
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
9868
|
-
originalArgs?: undefined;
|
|
9869
|
-
data?: undefined;
|
|
9870
|
-
error?: undefined;
|
|
9871
|
-
requestId?: undefined;
|
|
9880
|
+
originalArgs?: undefined | undefined;
|
|
9881
|
+
data?: undefined | undefined;
|
|
9882
|
+
error?: undefined | undefined;
|
|
9883
|
+
requestId?: undefined | undefined;
|
|
9872
9884
|
endpointName?: string | undefined;
|
|
9873
|
-
startedTimeStamp?: undefined;
|
|
9874
|
-
fulfilledTimeStamp?: undefined;
|
|
9885
|
+
startedTimeStamp?: undefined | undefined;
|
|
9886
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
9875
9887
|
} & {
|
|
9876
9888
|
currentData?: boolean | undefined;
|
|
9877
9889
|
isUninitialized: false;
|
|
@@ -9896,7 +9908,7 @@ declare const useLazyStreamMessagesQuery: <R extends Record<string, any> = _redu
|
|
|
9896
9908
|
error: graphql.GraphQLError[] | undefined;
|
|
9897
9909
|
data?: undefined;
|
|
9898
9910
|
meta?: {} | undefined;
|
|
9899
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi">> & {
|
|
9911
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi", unknown>> & {
|
|
9900
9912
|
currentData?: boolean | undefined;
|
|
9901
9913
|
isUninitialized: false;
|
|
9902
9914
|
isLoading: false;
|
|
@@ -9926,7 +9938,7 @@ declare const useLazyStreamMessagesQuery: <R extends Record<string, any> = _redu
|
|
|
9926
9938
|
error: graphql.GraphQLError[] | undefined;
|
|
9927
9939
|
data?: undefined;
|
|
9928
9940
|
meta?: {} | undefined;
|
|
9929
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi">> & {
|
|
9941
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi", unknown>> & {
|
|
9930
9942
|
currentData?: boolean | undefined;
|
|
9931
9943
|
isUninitialized: false;
|
|
9932
9944
|
isLoading: false;
|
|
@@ -9952,7 +9964,7 @@ declare const useLazyStreamMessagesQuery: <R extends Record<string, any> = _redu
|
|
|
9952
9964
|
error: graphql.GraphQLError[] | undefined;
|
|
9953
9965
|
data?: undefined;
|
|
9954
9966
|
meta?: {} | undefined;
|
|
9955
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi">> & {
|
|
9967
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi", unknown>> & {
|
|
9956
9968
|
currentData?: boolean | undefined;
|
|
9957
9969
|
isUninitialized: false;
|
|
9958
9970
|
isLoading: false;
|
|
@@ -9976,7 +9988,7 @@ declare const useLazyStreamMessagesQuery: <R extends Record<string, any> = _redu
|
|
|
9976
9988
|
error: graphql.GraphQLError[] | undefined;
|
|
9977
9989
|
data?: undefined;
|
|
9978
9990
|
meta?: {} | undefined;
|
|
9979
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi">> & {
|
|
9991
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi", unknown>> & {
|
|
9980
9992
|
currentData?: boolean | undefined;
|
|
9981
9993
|
isUninitialized: false;
|
|
9982
9994
|
isLoading: false;
|
|
@@ -9989,13 +10001,13 @@ declare const useLazyStreamMessagesQuery: <R extends Record<string, any> = _redu
|
|
|
9989
10001
|
skip?: boolean;
|
|
9990
10002
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
9991
10003
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
9992
|
-
originalArgs?: undefined;
|
|
9993
|
-
data?: undefined;
|
|
9994
|
-
error?: undefined;
|
|
9995
|
-
requestId?: undefined;
|
|
10004
|
+
originalArgs?: undefined | undefined;
|
|
10005
|
+
data?: undefined | undefined;
|
|
10006
|
+
error?: undefined | undefined;
|
|
10007
|
+
requestId?: undefined | undefined;
|
|
9996
10008
|
endpointName?: string | undefined;
|
|
9997
|
-
startedTimeStamp?: undefined;
|
|
9998
|
-
fulfilledTimeStamp?: undefined;
|
|
10009
|
+
startedTimeStamp?: undefined | undefined;
|
|
10010
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
9999
10011
|
} & {
|
|
10000
10012
|
currentData?: boolean | undefined;
|
|
10001
10013
|
isUninitialized: false;
|
|
@@ -10020,7 +10032,7 @@ declare const useLazyStreamMessagesQuery: <R extends Record<string, any> = _redu
|
|
|
10020
10032
|
error: graphql.GraphQLError[] | undefined;
|
|
10021
10033
|
data?: undefined;
|
|
10022
10034
|
meta?: {} | undefined;
|
|
10023
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi">> & {
|
|
10035
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi", unknown>> & {
|
|
10024
10036
|
currentData?: boolean | undefined;
|
|
10025
10037
|
isUninitialized: false;
|
|
10026
10038
|
isLoading: false;
|
|
@@ -10050,7 +10062,7 @@ declare const useLazyStreamMessagesQuery: <R extends Record<string, any> = _redu
|
|
|
10050
10062
|
error: graphql.GraphQLError[] | undefined;
|
|
10051
10063
|
data?: undefined;
|
|
10052
10064
|
meta?: {} | undefined;
|
|
10053
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi">> & {
|
|
10065
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi", unknown>> & {
|
|
10054
10066
|
currentData?: boolean | undefined;
|
|
10055
10067
|
isUninitialized: false;
|
|
10056
10068
|
isLoading: false;
|
|
@@ -10076,7 +10088,7 @@ declare const useLazyStreamMessagesQuery: <R extends Record<string, any> = _redu
|
|
|
10076
10088
|
error: graphql.GraphQLError[] | undefined;
|
|
10077
10089
|
data?: undefined;
|
|
10078
10090
|
meta?: {} | undefined;
|
|
10079
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi">> & {
|
|
10091
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi", unknown>> & {
|
|
10080
10092
|
currentData?: boolean | undefined;
|
|
10081
10093
|
isUninitialized: false;
|
|
10082
10094
|
isLoading: false;
|
|
@@ -10100,7 +10112,7 @@ declare const useLazyStreamMessagesQuery: <R extends Record<string, any> = _redu
|
|
|
10100
10112
|
error: graphql.GraphQLError[] | undefined;
|
|
10101
10113
|
data?: undefined;
|
|
10102
10114
|
meta?: {} | undefined;
|
|
10103
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi">> & {
|
|
10115
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi", unknown>> & {
|
|
10104
10116
|
currentData?: boolean | undefined;
|
|
10105
10117
|
isUninitialized: false;
|
|
10106
10118
|
isLoading: false;
|
|
@@ -10125,19 +10137,21 @@ declare const useLazyStreamMessagesQuery: <R extends Record<string, any> = _redu
|
|
|
10125
10137
|
error: graphql.GraphQLError[] | undefined;
|
|
10126
10138
|
data?: undefined;
|
|
10127
10139
|
meta?: {} | undefined;
|
|
10128
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi">>, [R][R extends any ? 0 : never]
|
|
10140
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi", unknown>>, [R][R extends any ? 0 : never] & {
|
|
10141
|
+
reset: () => void;
|
|
10142
|
+
}, {
|
|
10129
10143
|
lastArg: void;
|
|
10130
10144
|
}];
|
|
10131
10145
|
|
|
10132
10146
|
declare const useGetSubscriptionActionsQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
10133
10147
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
10134
|
-
originalArgs?: undefined;
|
|
10135
|
-
data?: undefined;
|
|
10136
|
-
error?: undefined;
|
|
10137
|
-
requestId?: undefined;
|
|
10148
|
+
originalArgs?: undefined | undefined;
|
|
10149
|
+
data?: undefined | undefined;
|
|
10150
|
+
error?: undefined | undefined;
|
|
10151
|
+
requestId?: undefined | undefined;
|
|
10138
10152
|
endpointName?: string | undefined;
|
|
10139
|
-
startedTimeStamp?: undefined;
|
|
10140
|
-
fulfilledTimeStamp?: undefined;
|
|
10153
|
+
startedTimeStamp?: undefined | undefined;
|
|
10154
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
10141
10155
|
} & {
|
|
10142
10156
|
currentData?: SubscriptionActions | undefined;
|
|
10143
10157
|
isUninitialized: false;
|
|
@@ -10164,7 +10178,7 @@ declare const useGetSubscriptionActionsQuery: <R extends Record<string, any> = _
|
|
|
10164
10178
|
error: graphql.GraphQLError[] | undefined;
|
|
10165
10179
|
data?: undefined;
|
|
10166
10180
|
meta?: {} | undefined;
|
|
10167
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi">> & {
|
|
10181
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi", unknown>> & {
|
|
10168
10182
|
currentData?: SubscriptionActions | undefined;
|
|
10169
10183
|
isUninitialized: false;
|
|
10170
10184
|
isLoading: false;
|
|
@@ -10196,7 +10210,7 @@ declare const useGetSubscriptionActionsQuery: <R extends Record<string, any> = _
|
|
|
10196
10210
|
error: graphql.GraphQLError[] | undefined;
|
|
10197
10211
|
data?: undefined;
|
|
10198
10212
|
meta?: {} | undefined;
|
|
10199
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi">> & {
|
|
10213
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi", unknown>> & {
|
|
10200
10214
|
currentData?: SubscriptionActions | undefined;
|
|
10201
10215
|
isUninitialized: false;
|
|
10202
10216
|
isLoading: false;
|
|
@@ -10224,7 +10238,7 @@ declare const useGetSubscriptionActionsQuery: <R extends Record<string, any> = _
|
|
|
10224
10238
|
error: graphql.GraphQLError[] | undefined;
|
|
10225
10239
|
data?: undefined;
|
|
10226
10240
|
meta?: {} | undefined;
|
|
10227
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi">> & {
|
|
10241
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi", unknown>> & {
|
|
10228
10242
|
currentData?: SubscriptionActions | undefined;
|
|
10229
10243
|
isUninitialized: false;
|
|
10230
10244
|
isLoading: false;
|
|
@@ -10250,7 +10264,7 @@ declare const useGetSubscriptionActionsQuery: <R extends Record<string, any> = _
|
|
|
10250
10264
|
error: graphql.GraphQLError[] | undefined;
|
|
10251
10265
|
data?: undefined;
|
|
10252
10266
|
meta?: {} | undefined;
|
|
10253
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi">> & {
|
|
10267
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi", unknown>> & {
|
|
10254
10268
|
currentData?: SubscriptionActions | undefined;
|
|
10255
10269
|
isUninitialized: false;
|
|
10256
10270
|
isLoading: false;
|
|
@@ -10268,13 +10282,13 @@ declare const useGetSubscriptionActionsQuery: <R extends Record<string, any> = _
|
|
|
10268
10282
|
skip?: boolean;
|
|
10269
10283
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
10270
10284
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
10271
|
-
originalArgs?: undefined;
|
|
10272
|
-
data?: undefined;
|
|
10273
|
-
error?: undefined;
|
|
10274
|
-
requestId?: undefined;
|
|
10285
|
+
originalArgs?: undefined | undefined;
|
|
10286
|
+
data?: undefined | undefined;
|
|
10287
|
+
error?: undefined | undefined;
|
|
10288
|
+
requestId?: undefined | undefined;
|
|
10275
10289
|
endpointName?: string | undefined;
|
|
10276
|
-
startedTimeStamp?: undefined;
|
|
10277
|
-
fulfilledTimeStamp?: undefined;
|
|
10290
|
+
startedTimeStamp?: undefined | undefined;
|
|
10291
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
10278
10292
|
} & {
|
|
10279
10293
|
currentData?: SubscriptionActions | undefined;
|
|
10280
10294
|
isUninitialized: false;
|
|
@@ -10301,7 +10315,7 @@ declare const useGetSubscriptionActionsQuery: <R extends Record<string, any> = _
|
|
|
10301
10315
|
error: graphql.GraphQLError[] | undefined;
|
|
10302
10316
|
data?: undefined;
|
|
10303
10317
|
meta?: {} | undefined;
|
|
10304
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi">> & {
|
|
10318
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi", unknown>> & {
|
|
10305
10319
|
currentData?: SubscriptionActions | undefined;
|
|
10306
10320
|
isUninitialized: false;
|
|
10307
10321
|
isLoading: false;
|
|
@@ -10333,7 +10347,7 @@ declare const useGetSubscriptionActionsQuery: <R extends Record<string, any> = _
|
|
|
10333
10347
|
error: graphql.GraphQLError[] | undefined;
|
|
10334
10348
|
data?: undefined;
|
|
10335
10349
|
meta?: {} | undefined;
|
|
10336
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi">> & {
|
|
10350
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi", unknown>> & {
|
|
10337
10351
|
currentData?: SubscriptionActions | undefined;
|
|
10338
10352
|
isUninitialized: false;
|
|
10339
10353
|
isLoading: false;
|
|
@@ -10361,7 +10375,7 @@ declare const useGetSubscriptionActionsQuery: <R extends Record<string, any> = _
|
|
|
10361
10375
|
error: graphql.GraphQLError[] | undefined;
|
|
10362
10376
|
data?: undefined;
|
|
10363
10377
|
meta?: {} | undefined;
|
|
10364
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi">> & {
|
|
10378
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi", unknown>> & {
|
|
10365
10379
|
currentData?: SubscriptionActions | undefined;
|
|
10366
10380
|
isUninitialized: false;
|
|
10367
10381
|
isLoading: false;
|
|
@@ -10387,7 +10401,7 @@ declare const useGetSubscriptionActionsQuery: <R extends Record<string, any> = _
|
|
|
10387
10401
|
error: graphql.GraphQLError[] | undefined;
|
|
10388
10402
|
data?: undefined;
|
|
10389
10403
|
meta?: {} | undefined;
|
|
10390
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi">> & {
|
|
10404
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi", unknown>> & {
|
|
10391
10405
|
currentData?: SubscriptionActions | undefined;
|
|
10392
10406
|
isUninitialized: false;
|
|
10393
10407
|
isLoading: false;
|
|
@@ -10415,17 +10429,17 @@ declare const useGetSubscriptionActionsQuery: <R extends Record<string, any> = _
|
|
|
10415
10429
|
error: graphql.GraphQLError[] | undefined;
|
|
10416
10430
|
data?: undefined;
|
|
10417
10431
|
meta?: {} | undefined;
|
|
10418
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi">>;
|
|
10432
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi", unknown>>;
|
|
10419
10433
|
};
|
|
10420
10434
|
declare const useLazyGetSubscriptionActionsQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
10421
10435
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
10422
|
-
originalArgs?: undefined;
|
|
10423
|
-
data?: undefined;
|
|
10424
|
-
error?: undefined;
|
|
10425
|
-
requestId?: undefined;
|
|
10436
|
+
originalArgs?: undefined | undefined;
|
|
10437
|
+
data?: undefined | undefined;
|
|
10438
|
+
error?: undefined | undefined;
|
|
10439
|
+
requestId?: undefined | undefined;
|
|
10426
10440
|
endpointName?: string | undefined;
|
|
10427
|
-
startedTimeStamp?: undefined;
|
|
10428
|
-
fulfilledTimeStamp?: undefined;
|
|
10441
|
+
startedTimeStamp?: undefined | undefined;
|
|
10442
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
10429
10443
|
} & {
|
|
10430
10444
|
currentData?: SubscriptionActions | undefined;
|
|
10431
10445
|
isUninitialized: false;
|
|
@@ -10452,7 +10466,7 @@ declare const useLazyGetSubscriptionActionsQuery: <R extends Record<string, any>
|
|
|
10452
10466
|
error: graphql.GraphQLError[] | undefined;
|
|
10453
10467
|
data?: undefined;
|
|
10454
10468
|
meta?: {} | undefined;
|
|
10455
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi">> & {
|
|
10469
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi", unknown>> & {
|
|
10456
10470
|
currentData?: SubscriptionActions | undefined;
|
|
10457
10471
|
isUninitialized: false;
|
|
10458
10472
|
isLoading: false;
|
|
@@ -10484,7 +10498,7 @@ declare const useLazyGetSubscriptionActionsQuery: <R extends Record<string, any>
|
|
|
10484
10498
|
error: graphql.GraphQLError[] | undefined;
|
|
10485
10499
|
data?: undefined;
|
|
10486
10500
|
meta?: {} | undefined;
|
|
10487
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi">> & {
|
|
10501
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi", unknown>> & {
|
|
10488
10502
|
currentData?: SubscriptionActions | undefined;
|
|
10489
10503
|
isUninitialized: false;
|
|
10490
10504
|
isLoading: false;
|
|
@@ -10512,7 +10526,7 @@ declare const useLazyGetSubscriptionActionsQuery: <R extends Record<string, any>
|
|
|
10512
10526
|
error: graphql.GraphQLError[] | undefined;
|
|
10513
10527
|
data?: undefined;
|
|
10514
10528
|
meta?: {} | undefined;
|
|
10515
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi">> & {
|
|
10529
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi", unknown>> & {
|
|
10516
10530
|
currentData?: SubscriptionActions | undefined;
|
|
10517
10531
|
isUninitialized: false;
|
|
10518
10532
|
isLoading: false;
|
|
@@ -10538,7 +10552,7 @@ declare const useLazyGetSubscriptionActionsQuery: <R extends Record<string, any>
|
|
|
10538
10552
|
error: graphql.GraphQLError[] | undefined;
|
|
10539
10553
|
data?: undefined;
|
|
10540
10554
|
meta?: {} | undefined;
|
|
10541
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi">> & {
|
|
10555
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi", unknown>> & {
|
|
10542
10556
|
currentData?: SubscriptionActions | undefined;
|
|
10543
10557
|
isUninitialized: false;
|
|
10544
10558
|
isLoading: false;
|
|
@@ -10551,13 +10565,13 @@ declare const useLazyGetSubscriptionActionsQuery: <R extends Record<string, any>
|
|
|
10551
10565
|
skip?: boolean;
|
|
10552
10566
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
10553
10567
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
10554
|
-
originalArgs?: undefined;
|
|
10555
|
-
data?: undefined;
|
|
10556
|
-
error?: undefined;
|
|
10557
|
-
requestId?: undefined;
|
|
10568
|
+
originalArgs?: undefined | undefined;
|
|
10569
|
+
data?: undefined | undefined;
|
|
10570
|
+
error?: undefined | undefined;
|
|
10571
|
+
requestId?: undefined | undefined;
|
|
10558
10572
|
endpointName?: string | undefined;
|
|
10559
|
-
startedTimeStamp?: undefined;
|
|
10560
|
-
fulfilledTimeStamp?: undefined;
|
|
10573
|
+
startedTimeStamp?: undefined | undefined;
|
|
10574
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
10561
10575
|
} & {
|
|
10562
10576
|
currentData?: SubscriptionActions | undefined;
|
|
10563
10577
|
isUninitialized: false;
|
|
@@ -10584,7 +10598,7 @@ declare const useLazyGetSubscriptionActionsQuery: <R extends Record<string, any>
|
|
|
10584
10598
|
error: graphql.GraphQLError[] | undefined;
|
|
10585
10599
|
data?: undefined;
|
|
10586
10600
|
meta?: {} | undefined;
|
|
10587
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi">> & {
|
|
10601
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi", unknown>> & {
|
|
10588
10602
|
currentData?: SubscriptionActions | undefined;
|
|
10589
10603
|
isUninitialized: false;
|
|
10590
10604
|
isLoading: false;
|
|
@@ -10616,7 +10630,7 @@ declare const useLazyGetSubscriptionActionsQuery: <R extends Record<string, any>
|
|
|
10616
10630
|
error: graphql.GraphQLError[] | undefined;
|
|
10617
10631
|
data?: undefined;
|
|
10618
10632
|
meta?: {} | undefined;
|
|
10619
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi">> & {
|
|
10633
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi", unknown>> & {
|
|
10620
10634
|
currentData?: SubscriptionActions | undefined;
|
|
10621
10635
|
isUninitialized: false;
|
|
10622
10636
|
isLoading: false;
|
|
@@ -10644,7 +10658,7 @@ declare const useLazyGetSubscriptionActionsQuery: <R extends Record<string, any>
|
|
|
10644
10658
|
error: graphql.GraphQLError[] | undefined;
|
|
10645
10659
|
data?: undefined;
|
|
10646
10660
|
meta?: {} | undefined;
|
|
10647
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi">> & {
|
|
10661
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi", unknown>> & {
|
|
10648
10662
|
currentData?: SubscriptionActions | undefined;
|
|
10649
10663
|
isUninitialized: false;
|
|
10650
10664
|
isLoading: false;
|
|
@@ -10670,7 +10684,7 @@ declare const useLazyGetSubscriptionActionsQuery: <R extends Record<string, any>
|
|
|
10670
10684
|
error: graphql.GraphQLError[] | undefined;
|
|
10671
10685
|
data?: undefined;
|
|
10672
10686
|
meta?: {} | undefined;
|
|
10673
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi">> & {
|
|
10687
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi", unknown>> & {
|
|
10674
10688
|
currentData?: SubscriptionActions | undefined;
|
|
10675
10689
|
isUninitialized: false;
|
|
10676
10690
|
isLoading: false;
|
|
@@ -10699,7 +10713,9 @@ declare const useLazyGetSubscriptionActionsQuery: <R extends Record<string, any>
|
|
|
10699
10713
|
error: graphql.GraphQLError[] | undefined;
|
|
10700
10714
|
data?: undefined;
|
|
10701
10715
|
meta?: {} | undefined;
|
|
10702
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi">>, [R][R extends any ? 0 : never]
|
|
10716
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionActions, "orchestratorApi", unknown>>, [R][R extends any ? 0 : never] & {
|
|
10717
|
+
reset: () => void;
|
|
10718
|
+
}, {
|
|
10703
10719
|
lastArg: {
|
|
10704
10720
|
subscriptionId: string;
|
|
10705
10721
|
};
|
|
@@ -10712,13 +10728,13 @@ type SubscriptionDetailResponse = {
|
|
|
10712
10728
|
} & BaseGraphQlResult;
|
|
10713
10729
|
declare const useGetSubscriptionDetailQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
10714
10730
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
10715
|
-
originalArgs?: undefined;
|
|
10716
|
-
data?: undefined;
|
|
10717
|
-
error?: undefined;
|
|
10718
|
-
requestId?: undefined;
|
|
10731
|
+
originalArgs?: undefined | undefined;
|
|
10732
|
+
data?: undefined | undefined;
|
|
10733
|
+
error?: undefined | undefined;
|
|
10734
|
+
requestId?: undefined | undefined;
|
|
10719
10735
|
endpointName?: string | undefined;
|
|
10720
|
-
startedTimeStamp?: undefined;
|
|
10721
|
-
fulfilledTimeStamp?: undefined;
|
|
10736
|
+
startedTimeStamp?: undefined | undefined;
|
|
10737
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
10722
10738
|
} & {
|
|
10723
10739
|
currentData?: SubscriptionDetailResponse | undefined;
|
|
10724
10740
|
isUninitialized: false;
|
|
@@ -10745,7 +10761,7 @@ declare const useGetSubscriptionDetailQuery: <R extends Record<string, any> = _r
|
|
|
10745
10761
|
error: graphql.GraphQLError[] | undefined;
|
|
10746
10762
|
data?: undefined;
|
|
10747
10763
|
meta?: {} | undefined;
|
|
10748
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDetailResponse, "orchestratorApi">> & {
|
|
10764
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDetailResponse, "orchestratorApi", unknown>> & {
|
|
10749
10765
|
currentData?: SubscriptionDetailResponse | undefined;
|
|
10750
10766
|
isUninitialized: false;
|
|
10751
10767
|
isLoading: false;
|
|
@@ -10777,7 +10793,7 @@ declare const useGetSubscriptionDetailQuery: <R extends Record<string, any> = _r
|
|
|
10777
10793
|
error: graphql.GraphQLError[] | undefined;
|
|
10778
10794
|
data?: undefined;
|
|
10779
10795
|
meta?: {} | undefined;
|
|
10780
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDetailResponse, "orchestratorApi">> & {
|
|
10796
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDetailResponse, "orchestratorApi", unknown>> & {
|
|
10781
10797
|
currentData?: SubscriptionDetailResponse | undefined;
|
|
10782
10798
|
isUninitialized: false;
|
|
10783
10799
|
isLoading: false;
|
|
@@ -10805,7 +10821,7 @@ declare const useGetSubscriptionDetailQuery: <R extends Record<string, any> = _r
|
|
|
10805
10821
|
error: graphql.GraphQLError[] | undefined;
|
|
10806
10822
|
data?: undefined;
|
|
10807
10823
|
meta?: {} | undefined;
|
|
10808
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDetailResponse, "orchestratorApi">> & {
|
|
10824
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDetailResponse, "orchestratorApi", unknown>> & {
|
|
10809
10825
|
currentData?: SubscriptionDetailResponse | undefined;
|
|
10810
10826
|
isUninitialized: false;
|
|
10811
10827
|
isLoading: false;
|
|
@@ -10831,7 +10847,7 @@ declare const useGetSubscriptionDetailQuery: <R extends Record<string, any> = _r
|
|
|
10831
10847
|
error: graphql.GraphQLError[] | undefined;
|
|
10832
10848
|
data?: undefined;
|
|
10833
10849
|
meta?: {} | undefined;
|
|
10834
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDetailResponse, "orchestratorApi">> & {
|
|
10850
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDetailResponse, "orchestratorApi", unknown>> & {
|
|
10835
10851
|
currentData?: SubscriptionDetailResponse | undefined;
|
|
10836
10852
|
isUninitialized: false;
|
|
10837
10853
|
isLoading: false;
|
|
@@ -10849,13 +10865,13 @@ declare const useGetSubscriptionDetailQuery: <R extends Record<string, any> = _r
|
|
|
10849
10865
|
skip?: boolean;
|
|
10850
10866
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
10851
10867
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
10852
|
-
originalArgs?: undefined;
|
|
10853
|
-
data?: undefined;
|
|
10854
|
-
error?: undefined;
|
|
10855
|
-
requestId?: undefined;
|
|
10868
|
+
originalArgs?: undefined | undefined;
|
|
10869
|
+
data?: undefined | undefined;
|
|
10870
|
+
error?: undefined | undefined;
|
|
10871
|
+
requestId?: undefined | undefined;
|
|
10856
10872
|
endpointName?: string | undefined;
|
|
10857
|
-
startedTimeStamp?: undefined;
|
|
10858
|
-
fulfilledTimeStamp?: undefined;
|
|
10873
|
+
startedTimeStamp?: undefined | undefined;
|
|
10874
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
10859
10875
|
} & {
|
|
10860
10876
|
currentData?: SubscriptionDetailResponse | undefined;
|
|
10861
10877
|
isUninitialized: false;
|
|
@@ -10882,7 +10898,7 @@ declare const useGetSubscriptionDetailQuery: <R extends Record<string, any> = _r
|
|
|
10882
10898
|
error: graphql.GraphQLError[] | undefined;
|
|
10883
10899
|
data?: undefined;
|
|
10884
10900
|
meta?: {} | undefined;
|
|
10885
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDetailResponse, "orchestratorApi">> & {
|
|
10901
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDetailResponse, "orchestratorApi", unknown>> & {
|
|
10886
10902
|
currentData?: SubscriptionDetailResponse | undefined;
|
|
10887
10903
|
isUninitialized: false;
|
|
10888
10904
|
isLoading: false;
|
|
@@ -10914,7 +10930,7 @@ declare const useGetSubscriptionDetailQuery: <R extends Record<string, any> = _r
|
|
|
10914
10930
|
error: graphql.GraphQLError[] | undefined;
|
|
10915
10931
|
data?: undefined;
|
|
10916
10932
|
meta?: {} | undefined;
|
|
10917
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDetailResponse, "orchestratorApi">> & {
|
|
10933
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDetailResponse, "orchestratorApi", unknown>> & {
|
|
10918
10934
|
currentData?: SubscriptionDetailResponse | undefined;
|
|
10919
10935
|
isUninitialized: false;
|
|
10920
10936
|
isLoading: false;
|
|
@@ -10942,7 +10958,7 @@ declare const useGetSubscriptionDetailQuery: <R extends Record<string, any> = _r
|
|
|
10942
10958
|
error: graphql.GraphQLError[] | undefined;
|
|
10943
10959
|
data?: undefined;
|
|
10944
10960
|
meta?: {} | undefined;
|
|
10945
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDetailResponse, "orchestratorApi">> & {
|
|
10961
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDetailResponse, "orchestratorApi", unknown>> & {
|
|
10946
10962
|
currentData?: SubscriptionDetailResponse | undefined;
|
|
10947
10963
|
isUninitialized: false;
|
|
10948
10964
|
isLoading: false;
|
|
@@ -10968,7 +10984,7 @@ declare const useGetSubscriptionDetailQuery: <R extends Record<string, any> = _r
|
|
|
10968
10984
|
error: graphql.GraphQLError[] | undefined;
|
|
10969
10985
|
data?: undefined;
|
|
10970
10986
|
meta?: {} | undefined;
|
|
10971
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDetailResponse, "orchestratorApi">> & {
|
|
10987
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDetailResponse, "orchestratorApi", unknown>> & {
|
|
10972
10988
|
currentData?: SubscriptionDetailResponse | undefined;
|
|
10973
10989
|
isUninitialized: false;
|
|
10974
10990
|
isLoading: false;
|
|
@@ -10996,7 +11012,7 @@ declare const useGetSubscriptionDetailQuery: <R extends Record<string, any> = _r
|
|
|
10996
11012
|
error: graphql.GraphQLError[] | undefined;
|
|
10997
11013
|
data?: undefined;
|
|
10998
11014
|
meta?: {} | undefined;
|
|
10999
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDetailResponse, "orchestratorApi">>;
|
|
11015
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDetailResponse, "orchestratorApi", unknown>>;
|
|
11000
11016
|
};
|
|
11001
11017
|
|
|
11002
11018
|
declare const subscriptionInUseByRelationQuery: string;
|
|
@@ -11005,13 +11021,13 @@ type InUseByRelationsDetailResponse = {
|
|
|
11005
11021
|
};
|
|
11006
11022
|
declare const useGetInUseByRelationDetailsQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
11007
11023
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
11008
|
-
originalArgs?: undefined;
|
|
11009
|
-
data?: undefined;
|
|
11010
|
-
error?: undefined;
|
|
11011
|
-
requestId?: undefined;
|
|
11024
|
+
originalArgs?: undefined | undefined;
|
|
11025
|
+
data?: undefined | undefined;
|
|
11026
|
+
error?: undefined | undefined;
|
|
11027
|
+
requestId?: undefined | undefined;
|
|
11012
11028
|
endpointName?: string | undefined;
|
|
11013
|
-
startedTimeStamp?: undefined;
|
|
11014
|
-
fulfilledTimeStamp?: undefined;
|
|
11029
|
+
startedTimeStamp?: undefined | undefined;
|
|
11030
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
11015
11031
|
} & {
|
|
11016
11032
|
currentData?: InUseByRelationsDetailResponse | undefined;
|
|
11017
11033
|
isUninitialized: false;
|
|
@@ -11038,7 +11054,7 @@ declare const useGetInUseByRelationDetailsQuery: <R extends Record<string, any>
|
|
|
11038
11054
|
error: graphql.GraphQLError[] | undefined;
|
|
11039
11055
|
data?: undefined;
|
|
11040
11056
|
meta?: {} | undefined;
|
|
11041
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, InUseByRelationsDetailResponse, "orchestratorApi">> & {
|
|
11057
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, InUseByRelationsDetailResponse, "orchestratorApi", unknown>> & {
|
|
11042
11058
|
currentData?: InUseByRelationsDetailResponse | undefined;
|
|
11043
11059
|
isUninitialized: false;
|
|
11044
11060
|
isLoading: false;
|
|
@@ -11070,7 +11086,7 @@ declare const useGetInUseByRelationDetailsQuery: <R extends Record<string, any>
|
|
|
11070
11086
|
error: graphql.GraphQLError[] | undefined;
|
|
11071
11087
|
data?: undefined;
|
|
11072
11088
|
meta?: {} | undefined;
|
|
11073
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, InUseByRelationsDetailResponse, "orchestratorApi">> & {
|
|
11089
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, InUseByRelationsDetailResponse, "orchestratorApi", unknown>> & {
|
|
11074
11090
|
currentData?: InUseByRelationsDetailResponse | undefined;
|
|
11075
11091
|
isUninitialized: false;
|
|
11076
11092
|
isLoading: false;
|
|
@@ -11098,7 +11114,7 @@ declare const useGetInUseByRelationDetailsQuery: <R extends Record<string, any>
|
|
|
11098
11114
|
error: graphql.GraphQLError[] | undefined;
|
|
11099
11115
|
data?: undefined;
|
|
11100
11116
|
meta?: {} | undefined;
|
|
11101
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, InUseByRelationsDetailResponse, "orchestratorApi">> & {
|
|
11117
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, InUseByRelationsDetailResponse, "orchestratorApi", unknown>> & {
|
|
11102
11118
|
currentData?: InUseByRelationsDetailResponse | undefined;
|
|
11103
11119
|
isUninitialized: false;
|
|
11104
11120
|
isLoading: false;
|
|
@@ -11124,7 +11140,7 @@ declare const useGetInUseByRelationDetailsQuery: <R extends Record<string, any>
|
|
|
11124
11140
|
error: graphql.GraphQLError[] | undefined;
|
|
11125
11141
|
data?: undefined;
|
|
11126
11142
|
meta?: {} | undefined;
|
|
11127
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, InUseByRelationsDetailResponse, "orchestratorApi">> & {
|
|
11143
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, InUseByRelationsDetailResponse, "orchestratorApi", unknown>> & {
|
|
11128
11144
|
currentData?: InUseByRelationsDetailResponse | undefined;
|
|
11129
11145
|
isUninitialized: false;
|
|
11130
11146
|
isLoading: false;
|
|
@@ -11142,13 +11158,13 @@ declare const useGetInUseByRelationDetailsQuery: <R extends Record<string, any>
|
|
|
11142
11158
|
skip?: boolean;
|
|
11143
11159
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
11144
11160
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
11145
|
-
originalArgs?: undefined;
|
|
11146
|
-
data?: undefined;
|
|
11147
|
-
error?: undefined;
|
|
11148
|
-
requestId?: undefined;
|
|
11161
|
+
originalArgs?: undefined | undefined;
|
|
11162
|
+
data?: undefined | undefined;
|
|
11163
|
+
error?: undefined | undefined;
|
|
11164
|
+
requestId?: undefined | undefined;
|
|
11149
11165
|
endpointName?: string | undefined;
|
|
11150
|
-
startedTimeStamp?: undefined;
|
|
11151
|
-
fulfilledTimeStamp?: undefined;
|
|
11166
|
+
startedTimeStamp?: undefined | undefined;
|
|
11167
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
11152
11168
|
} & {
|
|
11153
11169
|
currentData?: InUseByRelationsDetailResponse | undefined;
|
|
11154
11170
|
isUninitialized: false;
|
|
@@ -11175,7 +11191,7 @@ declare const useGetInUseByRelationDetailsQuery: <R extends Record<string, any>
|
|
|
11175
11191
|
error: graphql.GraphQLError[] | undefined;
|
|
11176
11192
|
data?: undefined;
|
|
11177
11193
|
meta?: {} | undefined;
|
|
11178
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, InUseByRelationsDetailResponse, "orchestratorApi">> & {
|
|
11194
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, InUseByRelationsDetailResponse, "orchestratorApi", unknown>> & {
|
|
11179
11195
|
currentData?: InUseByRelationsDetailResponse | undefined;
|
|
11180
11196
|
isUninitialized: false;
|
|
11181
11197
|
isLoading: false;
|
|
@@ -11207,7 +11223,7 @@ declare const useGetInUseByRelationDetailsQuery: <R extends Record<string, any>
|
|
|
11207
11223
|
error: graphql.GraphQLError[] | undefined;
|
|
11208
11224
|
data?: undefined;
|
|
11209
11225
|
meta?: {} | undefined;
|
|
11210
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, InUseByRelationsDetailResponse, "orchestratorApi">> & {
|
|
11226
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, InUseByRelationsDetailResponse, "orchestratorApi", unknown>> & {
|
|
11211
11227
|
currentData?: InUseByRelationsDetailResponse | undefined;
|
|
11212
11228
|
isUninitialized: false;
|
|
11213
11229
|
isLoading: false;
|
|
@@ -11235,7 +11251,7 @@ declare const useGetInUseByRelationDetailsQuery: <R extends Record<string, any>
|
|
|
11235
11251
|
error: graphql.GraphQLError[] | undefined;
|
|
11236
11252
|
data?: undefined;
|
|
11237
11253
|
meta?: {} | undefined;
|
|
11238
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, InUseByRelationsDetailResponse, "orchestratorApi">> & {
|
|
11254
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, InUseByRelationsDetailResponse, "orchestratorApi", unknown>> & {
|
|
11239
11255
|
currentData?: InUseByRelationsDetailResponse | undefined;
|
|
11240
11256
|
isUninitialized: false;
|
|
11241
11257
|
isLoading: false;
|
|
@@ -11261,7 +11277,7 @@ declare const useGetInUseByRelationDetailsQuery: <R extends Record<string, any>
|
|
|
11261
11277
|
error: graphql.GraphQLError[] | undefined;
|
|
11262
11278
|
data?: undefined;
|
|
11263
11279
|
meta?: {} | undefined;
|
|
11264
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, InUseByRelationsDetailResponse, "orchestratorApi">> & {
|
|
11280
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, InUseByRelationsDetailResponse, "orchestratorApi", unknown>> & {
|
|
11265
11281
|
currentData?: InUseByRelationsDetailResponse | undefined;
|
|
11266
11282
|
isUninitialized: false;
|
|
11267
11283
|
isLoading: false;
|
|
@@ -11289,7 +11305,7 @@ declare const useGetInUseByRelationDetailsQuery: <R extends Record<string, any>
|
|
|
11289
11305
|
error: graphql.GraphQLError[] | undefined;
|
|
11290
11306
|
data?: undefined;
|
|
11291
11307
|
meta?: {} | undefined;
|
|
11292
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, InUseByRelationsDetailResponse, "orchestratorApi">>;
|
|
11308
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, InUseByRelationsDetailResponse, "orchestratorApi", unknown>>;
|
|
11293
11309
|
};
|
|
11294
11310
|
|
|
11295
11311
|
type SubscriptionListItem = Pick<Subscription, 'subscriptionId' | 'description' | 'status' | 'insync' | 'note'> & {
|
|
@@ -11885,13 +11901,13 @@ type SubscriptionListResponse = {
|
|
|
11885
11901
|
} & BaseGraphQlResult;
|
|
11886
11902
|
declare const useGetSubscriptionListQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
11887
11903
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
11888
|
-
originalArgs?: undefined;
|
|
11889
|
-
data?: undefined;
|
|
11890
|
-
error?: undefined;
|
|
11891
|
-
requestId?: undefined;
|
|
11904
|
+
originalArgs?: undefined | undefined;
|
|
11905
|
+
data?: undefined | undefined;
|
|
11906
|
+
error?: undefined | undefined;
|
|
11907
|
+
requestId?: undefined | undefined;
|
|
11892
11908
|
endpointName?: string | undefined;
|
|
11893
|
-
startedTimeStamp?: undefined;
|
|
11894
|
-
fulfilledTimeStamp?: undefined;
|
|
11909
|
+
startedTimeStamp?: undefined | undefined;
|
|
11910
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
11895
11911
|
} & {
|
|
11896
11912
|
currentData?: SubscriptionListResponse | undefined;
|
|
11897
11913
|
isUninitialized: false;
|
|
@@ -11916,7 +11932,7 @@ declare const useGetSubscriptionListQuery: <R extends Record<string, any> = _red
|
|
|
11916
11932
|
error: graphql.GraphQLError[] | undefined;
|
|
11917
11933
|
data?: undefined;
|
|
11918
11934
|
meta?: {} | undefined;
|
|
11919
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi">> & {
|
|
11935
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi", unknown>> & {
|
|
11920
11936
|
currentData?: SubscriptionListResponse | undefined;
|
|
11921
11937
|
isUninitialized: false;
|
|
11922
11938
|
isLoading: false;
|
|
@@ -11946,7 +11962,7 @@ declare const useGetSubscriptionListQuery: <R extends Record<string, any> = _red
|
|
|
11946
11962
|
error: graphql.GraphQLError[] | undefined;
|
|
11947
11963
|
data?: undefined;
|
|
11948
11964
|
meta?: {} | undefined;
|
|
11949
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi">> & {
|
|
11965
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi", unknown>> & {
|
|
11950
11966
|
currentData?: SubscriptionListResponse | undefined;
|
|
11951
11967
|
isUninitialized: false;
|
|
11952
11968
|
isLoading: false;
|
|
@@ -11972,7 +11988,7 @@ declare const useGetSubscriptionListQuery: <R extends Record<string, any> = _red
|
|
|
11972
11988
|
error: graphql.GraphQLError[] | undefined;
|
|
11973
11989
|
data?: undefined;
|
|
11974
11990
|
meta?: {} | undefined;
|
|
11975
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi">> & {
|
|
11991
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi", unknown>> & {
|
|
11976
11992
|
currentData?: SubscriptionListResponse | undefined;
|
|
11977
11993
|
isUninitialized: false;
|
|
11978
11994
|
isLoading: false;
|
|
@@ -11996,7 +12012,7 @@ declare const useGetSubscriptionListQuery: <R extends Record<string, any> = _red
|
|
|
11996
12012
|
error: graphql.GraphQLError[] | undefined;
|
|
11997
12013
|
data?: undefined;
|
|
11998
12014
|
meta?: {} | undefined;
|
|
11999
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi">> & {
|
|
12015
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi", unknown>> & {
|
|
12000
12016
|
currentData?: SubscriptionListResponse | undefined;
|
|
12001
12017
|
isUninitialized: false;
|
|
12002
12018
|
isLoading: false;
|
|
@@ -12012,13 +12028,13 @@ declare const useGetSubscriptionListQuery: <R extends Record<string, any> = _red
|
|
|
12012
12028
|
skip?: boolean;
|
|
12013
12029
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
12014
12030
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
12015
|
-
originalArgs?: undefined;
|
|
12016
|
-
data?: undefined;
|
|
12017
|
-
error?: undefined;
|
|
12018
|
-
requestId?: undefined;
|
|
12031
|
+
originalArgs?: undefined | undefined;
|
|
12032
|
+
data?: undefined | undefined;
|
|
12033
|
+
error?: undefined | undefined;
|
|
12034
|
+
requestId?: undefined | undefined;
|
|
12019
12035
|
endpointName?: string | undefined;
|
|
12020
|
-
startedTimeStamp?: undefined;
|
|
12021
|
-
fulfilledTimeStamp?: undefined;
|
|
12036
|
+
startedTimeStamp?: undefined | undefined;
|
|
12037
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
12022
12038
|
} & {
|
|
12023
12039
|
currentData?: SubscriptionListResponse | undefined;
|
|
12024
12040
|
isUninitialized: false;
|
|
@@ -12043,7 +12059,7 @@ declare const useGetSubscriptionListQuery: <R extends Record<string, any> = _red
|
|
|
12043
12059
|
error: graphql.GraphQLError[] | undefined;
|
|
12044
12060
|
data?: undefined;
|
|
12045
12061
|
meta?: {} | undefined;
|
|
12046
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi">> & {
|
|
12062
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi", unknown>> & {
|
|
12047
12063
|
currentData?: SubscriptionListResponse | undefined;
|
|
12048
12064
|
isUninitialized: false;
|
|
12049
12065
|
isLoading: false;
|
|
@@ -12073,7 +12089,7 @@ declare const useGetSubscriptionListQuery: <R extends Record<string, any> = _red
|
|
|
12073
12089
|
error: graphql.GraphQLError[] | undefined;
|
|
12074
12090
|
data?: undefined;
|
|
12075
12091
|
meta?: {} | undefined;
|
|
12076
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi">> & {
|
|
12092
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi", unknown>> & {
|
|
12077
12093
|
currentData?: SubscriptionListResponse | undefined;
|
|
12078
12094
|
isUninitialized: false;
|
|
12079
12095
|
isLoading: false;
|
|
@@ -12099,7 +12115,7 @@ declare const useGetSubscriptionListQuery: <R extends Record<string, any> = _red
|
|
|
12099
12115
|
error: graphql.GraphQLError[] | undefined;
|
|
12100
12116
|
data?: undefined;
|
|
12101
12117
|
meta?: {} | undefined;
|
|
12102
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi">> & {
|
|
12118
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi", unknown>> & {
|
|
12103
12119
|
currentData?: SubscriptionListResponse | undefined;
|
|
12104
12120
|
isUninitialized: false;
|
|
12105
12121
|
isLoading: false;
|
|
@@ -12123,7 +12139,7 @@ declare const useGetSubscriptionListQuery: <R extends Record<string, any> = _red
|
|
|
12123
12139
|
error: graphql.GraphQLError[] | undefined;
|
|
12124
12140
|
data?: undefined;
|
|
12125
12141
|
meta?: {} | undefined;
|
|
12126
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi">> & {
|
|
12142
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi", unknown>> & {
|
|
12127
12143
|
currentData?: SubscriptionListResponse | undefined;
|
|
12128
12144
|
isUninitialized: false;
|
|
12129
12145
|
isLoading: false;
|
|
@@ -12149,17 +12165,17 @@ declare const useGetSubscriptionListQuery: <R extends Record<string, any> = _red
|
|
|
12149
12165
|
error: graphql.GraphQLError[] | undefined;
|
|
12150
12166
|
data?: undefined;
|
|
12151
12167
|
meta?: {} | undefined;
|
|
12152
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi">>;
|
|
12168
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi", unknown>>;
|
|
12153
12169
|
};
|
|
12154
12170
|
declare const useLazyGetSubscriptionListQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
12155
12171
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
12156
|
-
originalArgs?: undefined;
|
|
12157
|
-
data?: undefined;
|
|
12158
|
-
error?: undefined;
|
|
12159
|
-
requestId?: undefined;
|
|
12172
|
+
originalArgs?: undefined | undefined;
|
|
12173
|
+
data?: undefined | undefined;
|
|
12174
|
+
error?: undefined | undefined;
|
|
12175
|
+
requestId?: undefined | undefined;
|
|
12160
12176
|
endpointName?: string | undefined;
|
|
12161
|
-
startedTimeStamp?: undefined;
|
|
12162
|
-
fulfilledTimeStamp?: undefined;
|
|
12177
|
+
startedTimeStamp?: undefined | undefined;
|
|
12178
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
12163
12179
|
} & {
|
|
12164
12180
|
currentData?: SubscriptionListResponse | undefined;
|
|
12165
12181
|
isUninitialized: false;
|
|
@@ -12184,7 +12200,7 @@ declare const useLazyGetSubscriptionListQuery: <R extends Record<string, any> =
|
|
|
12184
12200
|
error: graphql.GraphQLError[] | undefined;
|
|
12185
12201
|
data?: undefined;
|
|
12186
12202
|
meta?: {} | undefined;
|
|
12187
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi">> & {
|
|
12203
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi", unknown>> & {
|
|
12188
12204
|
currentData?: SubscriptionListResponse | undefined;
|
|
12189
12205
|
isUninitialized: false;
|
|
12190
12206
|
isLoading: false;
|
|
@@ -12214,7 +12230,7 @@ declare const useLazyGetSubscriptionListQuery: <R extends Record<string, any> =
|
|
|
12214
12230
|
error: graphql.GraphQLError[] | undefined;
|
|
12215
12231
|
data?: undefined;
|
|
12216
12232
|
meta?: {} | undefined;
|
|
12217
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi">> & {
|
|
12233
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi", unknown>> & {
|
|
12218
12234
|
currentData?: SubscriptionListResponse | undefined;
|
|
12219
12235
|
isUninitialized: false;
|
|
12220
12236
|
isLoading: false;
|
|
@@ -12240,7 +12256,7 @@ declare const useLazyGetSubscriptionListQuery: <R extends Record<string, any> =
|
|
|
12240
12256
|
error: graphql.GraphQLError[] | undefined;
|
|
12241
12257
|
data?: undefined;
|
|
12242
12258
|
meta?: {} | undefined;
|
|
12243
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi">> & {
|
|
12259
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi", unknown>> & {
|
|
12244
12260
|
currentData?: SubscriptionListResponse | undefined;
|
|
12245
12261
|
isUninitialized: false;
|
|
12246
12262
|
isLoading: false;
|
|
@@ -12264,7 +12280,7 @@ declare const useLazyGetSubscriptionListQuery: <R extends Record<string, any> =
|
|
|
12264
12280
|
error: graphql.GraphQLError[] | undefined;
|
|
12265
12281
|
data?: undefined;
|
|
12266
12282
|
meta?: {} | undefined;
|
|
12267
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi">> & {
|
|
12283
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi", unknown>> & {
|
|
12268
12284
|
currentData?: SubscriptionListResponse | undefined;
|
|
12269
12285
|
isUninitialized: false;
|
|
12270
12286
|
isLoading: false;
|
|
@@ -12277,13 +12293,13 @@ declare const useLazyGetSubscriptionListQuery: <R extends Record<string, any> =
|
|
|
12277
12293
|
skip?: boolean;
|
|
12278
12294
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
12279
12295
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
12280
|
-
originalArgs?: undefined;
|
|
12281
|
-
data?: undefined;
|
|
12282
|
-
error?: undefined;
|
|
12283
|
-
requestId?: undefined;
|
|
12296
|
+
originalArgs?: undefined | undefined;
|
|
12297
|
+
data?: undefined | undefined;
|
|
12298
|
+
error?: undefined | undefined;
|
|
12299
|
+
requestId?: undefined | undefined;
|
|
12284
12300
|
endpointName?: string | undefined;
|
|
12285
|
-
startedTimeStamp?: undefined;
|
|
12286
|
-
fulfilledTimeStamp?: undefined;
|
|
12301
|
+
startedTimeStamp?: undefined | undefined;
|
|
12302
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
12287
12303
|
} & {
|
|
12288
12304
|
currentData?: SubscriptionListResponse | undefined;
|
|
12289
12305
|
isUninitialized: false;
|
|
@@ -12308,7 +12324,7 @@ declare const useLazyGetSubscriptionListQuery: <R extends Record<string, any> =
|
|
|
12308
12324
|
error: graphql.GraphQLError[] | undefined;
|
|
12309
12325
|
data?: undefined;
|
|
12310
12326
|
meta?: {} | undefined;
|
|
12311
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi">> & {
|
|
12327
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi", unknown>> & {
|
|
12312
12328
|
currentData?: SubscriptionListResponse | undefined;
|
|
12313
12329
|
isUninitialized: false;
|
|
12314
12330
|
isLoading: false;
|
|
@@ -12338,7 +12354,7 @@ declare const useLazyGetSubscriptionListQuery: <R extends Record<string, any> =
|
|
|
12338
12354
|
error: graphql.GraphQLError[] | undefined;
|
|
12339
12355
|
data?: undefined;
|
|
12340
12356
|
meta?: {} | undefined;
|
|
12341
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi">> & {
|
|
12357
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi", unknown>> & {
|
|
12342
12358
|
currentData?: SubscriptionListResponse | undefined;
|
|
12343
12359
|
isUninitialized: false;
|
|
12344
12360
|
isLoading: false;
|
|
@@ -12364,7 +12380,7 @@ declare const useLazyGetSubscriptionListQuery: <R extends Record<string, any> =
|
|
|
12364
12380
|
error: graphql.GraphQLError[] | undefined;
|
|
12365
12381
|
data?: undefined;
|
|
12366
12382
|
meta?: {} | undefined;
|
|
12367
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi">> & {
|
|
12383
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi", unknown>> & {
|
|
12368
12384
|
currentData?: SubscriptionListResponse | undefined;
|
|
12369
12385
|
isUninitialized: false;
|
|
12370
12386
|
isLoading: false;
|
|
@@ -12388,7 +12404,7 @@ declare const useLazyGetSubscriptionListQuery: <R extends Record<string, any> =
|
|
|
12388
12404
|
error: graphql.GraphQLError[] | undefined;
|
|
12389
12405
|
data?: undefined;
|
|
12390
12406
|
meta?: {} | undefined;
|
|
12391
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi">> & {
|
|
12407
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi", unknown>> & {
|
|
12392
12408
|
currentData?: SubscriptionListResponse | undefined;
|
|
12393
12409
|
isUninitialized: false;
|
|
12394
12410
|
isLoading: false;
|
|
@@ -12413,7 +12429,9 @@ declare const useLazyGetSubscriptionListQuery: <R extends Record<string, any> =
|
|
|
12413
12429
|
error: graphql.GraphQLError[] | undefined;
|
|
12414
12430
|
data?: undefined;
|
|
12415
12431
|
meta?: {} | undefined;
|
|
12416
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi">>, [R][R extends any ? 0 : never]
|
|
12432
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListResponse, "orchestratorApi", unknown>>, [R][R extends any ? 0 : never] & {
|
|
12433
|
+
reset: () => void;
|
|
12434
|
+
}, {
|
|
12417
12435
|
lastArg: GraphqlQueryVariables<SubscriptionListItem>;
|
|
12418
12436
|
}];
|
|
12419
12437
|
|
|
@@ -12423,13 +12441,13 @@ type SubscriptionListSummaryResponse = {
|
|
|
12423
12441
|
} & BaseGraphQlResult;
|
|
12424
12442
|
declare const useGetSubscriptionSummaryListQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
12425
12443
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
12426
|
-
originalArgs?: undefined;
|
|
12427
|
-
data?: undefined;
|
|
12428
|
-
error?: undefined;
|
|
12429
|
-
requestId?: undefined;
|
|
12444
|
+
originalArgs?: undefined | undefined;
|
|
12445
|
+
data?: undefined | undefined;
|
|
12446
|
+
error?: undefined | undefined;
|
|
12447
|
+
requestId?: undefined | undefined;
|
|
12430
12448
|
endpointName?: string | undefined;
|
|
12431
|
-
startedTimeStamp?: undefined;
|
|
12432
|
-
fulfilledTimeStamp?: undefined;
|
|
12449
|
+
startedTimeStamp?: undefined | undefined;
|
|
12450
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
12433
12451
|
} & {
|
|
12434
12452
|
currentData?: SubscriptionListSummaryResponse | undefined;
|
|
12435
12453
|
isUninitialized: false;
|
|
@@ -12454,7 +12472,7 @@ declare const useGetSubscriptionSummaryListQuery: <R extends Record<string, any>
|
|
|
12454
12472
|
error: graphql.GraphQLError[] | undefined;
|
|
12455
12473
|
data?: undefined;
|
|
12456
12474
|
meta?: {} | undefined;
|
|
12457
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListSummaryResponse, "orchestratorApi">> & {
|
|
12475
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListSummaryResponse, "orchestratorApi", unknown>> & {
|
|
12458
12476
|
currentData?: SubscriptionListSummaryResponse | undefined;
|
|
12459
12477
|
isUninitialized: false;
|
|
12460
12478
|
isLoading: false;
|
|
@@ -12484,7 +12502,7 @@ declare const useGetSubscriptionSummaryListQuery: <R extends Record<string, any>
|
|
|
12484
12502
|
error: graphql.GraphQLError[] | undefined;
|
|
12485
12503
|
data?: undefined;
|
|
12486
12504
|
meta?: {} | undefined;
|
|
12487
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListSummaryResponse, "orchestratorApi">> & {
|
|
12505
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListSummaryResponse, "orchestratorApi", unknown>> & {
|
|
12488
12506
|
currentData?: SubscriptionListSummaryResponse | undefined;
|
|
12489
12507
|
isUninitialized: false;
|
|
12490
12508
|
isLoading: false;
|
|
@@ -12510,7 +12528,7 @@ declare const useGetSubscriptionSummaryListQuery: <R extends Record<string, any>
|
|
|
12510
12528
|
error: graphql.GraphQLError[] | undefined;
|
|
12511
12529
|
data?: undefined;
|
|
12512
12530
|
meta?: {} | undefined;
|
|
12513
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListSummaryResponse, "orchestratorApi">> & {
|
|
12531
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListSummaryResponse, "orchestratorApi", unknown>> & {
|
|
12514
12532
|
currentData?: SubscriptionListSummaryResponse | undefined;
|
|
12515
12533
|
isUninitialized: false;
|
|
12516
12534
|
isLoading: false;
|
|
@@ -12534,7 +12552,7 @@ declare const useGetSubscriptionSummaryListQuery: <R extends Record<string, any>
|
|
|
12534
12552
|
error: graphql.GraphQLError[] | undefined;
|
|
12535
12553
|
data?: undefined;
|
|
12536
12554
|
meta?: {} | undefined;
|
|
12537
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListSummaryResponse, "orchestratorApi">> & {
|
|
12555
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListSummaryResponse, "orchestratorApi", unknown>> & {
|
|
12538
12556
|
currentData?: SubscriptionListSummaryResponse | undefined;
|
|
12539
12557
|
isUninitialized: false;
|
|
12540
12558
|
isLoading: false;
|
|
@@ -12550,13 +12568,13 @@ declare const useGetSubscriptionSummaryListQuery: <R extends Record<string, any>
|
|
|
12550
12568
|
skip?: boolean;
|
|
12551
12569
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
12552
12570
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
12553
|
-
originalArgs?: undefined;
|
|
12554
|
-
data?: undefined;
|
|
12555
|
-
error?: undefined;
|
|
12556
|
-
requestId?: undefined;
|
|
12571
|
+
originalArgs?: undefined | undefined;
|
|
12572
|
+
data?: undefined | undefined;
|
|
12573
|
+
error?: undefined | undefined;
|
|
12574
|
+
requestId?: undefined | undefined;
|
|
12557
12575
|
endpointName?: string | undefined;
|
|
12558
|
-
startedTimeStamp?: undefined;
|
|
12559
|
-
fulfilledTimeStamp?: undefined;
|
|
12576
|
+
startedTimeStamp?: undefined | undefined;
|
|
12577
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
12560
12578
|
} & {
|
|
12561
12579
|
currentData?: SubscriptionListSummaryResponse | undefined;
|
|
12562
12580
|
isUninitialized: false;
|
|
@@ -12581,7 +12599,7 @@ declare const useGetSubscriptionSummaryListQuery: <R extends Record<string, any>
|
|
|
12581
12599
|
error: graphql.GraphQLError[] | undefined;
|
|
12582
12600
|
data?: undefined;
|
|
12583
12601
|
meta?: {} | undefined;
|
|
12584
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListSummaryResponse, "orchestratorApi">> & {
|
|
12602
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListSummaryResponse, "orchestratorApi", unknown>> & {
|
|
12585
12603
|
currentData?: SubscriptionListSummaryResponse | undefined;
|
|
12586
12604
|
isUninitialized: false;
|
|
12587
12605
|
isLoading: false;
|
|
@@ -12611,7 +12629,7 @@ declare const useGetSubscriptionSummaryListQuery: <R extends Record<string, any>
|
|
|
12611
12629
|
error: graphql.GraphQLError[] | undefined;
|
|
12612
12630
|
data?: undefined;
|
|
12613
12631
|
meta?: {} | undefined;
|
|
12614
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListSummaryResponse, "orchestratorApi">> & {
|
|
12632
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListSummaryResponse, "orchestratorApi", unknown>> & {
|
|
12615
12633
|
currentData?: SubscriptionListSummaryResponse | undefined;
|
|
12616
12634
|
isUninitialized: false;
|
|
12617
12635
|
isLoading: false;
|
|
@@ -12637,7 +12655,7 @@ declare const useGetSubscriptionSummaryListQuery: <R extends Record<string, any>
|
|
|
12637
12655
|
error: graphql.GraphQLError[] | undefined;
|
|
12638
12656
|
data?: undefined;
|
|
12639
12657
|
meta?: {} | undefined;
|
|
12640
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListSummaryResponse, "orchestratorApi">> & {
|
|
12658
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListSummaryResponse, "orchestratorApi", unknown>> & {
|
|
12641
12659
|
currentData?: SubscriptionListSummaryResponse | undefined;
|
|
12642
12660
|
isUninitialized: false;
|
|
12643
12661
|
isLoading: false;
|
|
@@ -12661,7 +12679,7 @@ declare const useGetSubscriptionSummaryListQuery: <R extends Record<string, any>
|
|
|
12661
12679
|
error: graphql.GraphQLError[] | undefined;
|
|
12662
12680
|
data?: undefined;
|
|
12663
12681
|
meta?: {} | undefined;
|
|
12664
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListSummaryResponse, "orchestratorApi">> & {
|
|
12682
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListSummaryResponse, "orchestratorApi", unknown>> & {
|
|
12665
12683
|
currentData?: SubscriptionListSummaryResponse | undefined;
|
|
12666
12684
|
isUninitialized: false;
|
|
12667
12685
|
isLoading: false;
|
|
@@ -12687,7 +12705,7 @@ declare const useGetSubscriptionSummaryListQuery: <R extends Record<string, any>
|
|
|
12687
12705
|
error: graphql.GraphQLError[] | undefined;
|
|
12688
12706
|
data?: undefined;
|
|
12689
12707
|
meta?: {} | undefined;
|
|
12690
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListSummaryResponse, "orchestratorApi">>;
|
|
12708
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionListSummaryResponse, "orchestratorApi", unknown>>;
|
|
12691
12709
|
};
|
|
12692
12710
|
|
|
12693
12711
|
declare const subscriptionsDropdownOptionsQuery = "\n query SubscriptionDropdownOptions(\n $filterBy: [GraphqlFilter!]\n $first: Int!\n ) {\n subscriptions(filterBy: $filterBy, first: $first, after: 0) {\n page {\n description\n subscriptionId\n product {\n tag\n productId\n }\n customer {\n fullname\n customerId\n }\n productBlockInstances {\n id\n ownerSubscriptionId\n parent\n productBlockInstanceValues\n subscriptionInstanceId\n }\n fixedInputs\n }\n }\n }\n";
|
|
@@ -12696,13 +12714,13 @@ type SubscriptionDropdownOptionsResponse = {
|
|
|
12696
12714
|
};
|
|
12697
12715
|
declare const useGetSubscriptionsDropdownOptionsQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
12698
12716
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
12699
|
-
originalArgs?: undefined;
|
|
12700
|
-
data?: undefined;
|
|
12701
|
-
error?: undefined;
|
|
12702
|
-
requestId?: undefined;
|
|
12717
|
+
originalArgs?: undefined | undefined;
|
|
12718
|
+
data?: undefined | undefined;
|
|
12719
|
+
error?: undefined | undefined;
|
|
12720
|
+
requestId?: undefined | undefined;
|
|
12703
12721
|
endpointName?: string | undefined;
|
|
12704
|
-
startedTimeStamp?: undefined;
|
|
12705
|
-
fulfilledTimeStamp?: undefined;
|
|
12722
|
+
startedTimeStamp?: undefined | undefined;
|
|
12723
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
12706
12724
|
} & {
|
|
12707
12725
|
currentData?: SubscriptionDropdownOptionsResponse | undefined;
|
|
12708
12726
|
isUninitialized: false;
|
|
@@ -12727,7 +12745,7 @@ declare const useGetSubscriptionsDropdownOptionsQuery: <R extends Record<string,
|
|
|
12727
12745
|
error: graphql.GraphQLError[] | undefined;
|
|
12728
12746
|
data?: undefined;
|
|
12729
12747
|
meta?: {} | undefined;
|
|
12730
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDropdownOptionsResponse, "orchestratorApi">> & {
|
|
12748
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDropdownOptionsResponse, "orchestratorApi", unknown>> & {
|
|
12731
12749
|
currentData?: SubscriptionDropdownOptionsResponse | undefined;
|
|
12732
12750
|
isUninitialized: false;
|
|
12733
12751
|
isLoading: false;
|
|
@@ -12757,7 +12775,7 @@ declare const useGetSubscriptionsDropdownOptionsQuery: <R extends Record<string,
|
|
|
12757
12775
|
error: graphql.GraphQLError[] | undefined;
|
|
12758
12776
|
data?: undefined;
|
|
12759
12777
|
meta?: {} | undefined;
|
|
12760
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDropdownOptionsResponse, "orchestratorApi">> & {
|
|
12778
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDropdownOptionsResponse, "orchestratorApi", unknown>> & {
|
|
12761
12779
|
currentData?: SubscriptionDropdownOptionsResponse | undefined;
|
|
12762
12780
|
isUninitialized: false;
|
|
12763
12781
|
isLoading: false;
|
|
@@ -12783,7 +12801,7 @@ declare const useGetSubscriptionsDropdownOptionsQuery: <R extends Record<string,
|
|
|
12783
12801
|
error: graphql.GraphQLError[] | undefined;
|
|
12784
12802
|
data?: undefined;
|
|
12785
12803
|
meta?: {} | undefined;
|
|
12786
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDropdownOptionsResponse, "orchestratorApi">> & {
|
|
12804
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDropdownOptionsResponse, "orchestratorApi", unknown>> & {
|
|
12787
12805
|
currentData?: SubscriptionDropdownOptionsResponse | undefined;
|
|
12788
12806
|
isUninitialized: false;
|
|
12789
12807
|
isLoading: false;
|
|
@@ -12807,7 +12825,7 @@ declare const useGetSubscriptionsDropdownOptionsQuery: <R extends Record<string,
|
|
|
12807
12825
|
error: graphql.GraphQLError[] | undefined;
|
|
12808
12826
|
data?: undefined;
|
|
12809
12827
|
meta?: {} | undefined;
|
|
12810
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDropdownOptionsResponse, "orchestratorApi">> & {
|
|
12828
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDropdownOptionsResponse, "orchestratorApi", unknown>> & {
|
|
12811
12829
|
currentData?: SubscriptionDropdownOptionsResponse | undefined;
|
|
12812
12830
|
isUninitialized: false;
|
|
12813
12831
|
isLoading: false;
|
|
@@ -12823,13 +12841,13 @@ declare const useGetSubscriptionsDropdownOptionsQuery: <R extends Record<string,
|
|
|
12823
12841
|
skip?: boolean;
|
|
12824
12842
|
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
12825
12843
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
12826
|
-
originalArgs?: undefined;
|
|
12827
|
-
data?: undefined;
|
|
12828
|
-
error?: undefined;
|
|
12829
|
-
requestId?: undefined;
|
|
12844
|
+
originalArgs?: undefined | undefined;
|
|
12845
|
+
data?: undefined | undefined;
|
|
12846
|
+
error?: undefined | undefined;
|
|
12847
|
+
requestId?: undefined | undefined;
|
|
12830
12848
|
endpointName?: string | undefined;
|
|
12831
|
-
startedTimeStamp?: undefined;
|
|
12832
|
-
fulfilledTimeStamp?: undefined;
|
|
12849
|
+
startedTimeStamp?: undefined | undefined;
|
|
12850
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
12833
12851
|
} & {
|
|
12834
12852
|
currentData?: SubscriptionDropdownOptionsResponse | undefined;
|
|
12835
12853
|
isUninitialized: false;
|
|
@@ -12854,7 +12872,7 @@ declare const useGetSubscriptionsDropdownOptionsQuery: <R extends Record<string,
|
|
|
12854
12872
|
error: graphql.GraphQLError[] | undefined;
|
|
12855
12873
|
data?: undefined;
|
|
12856
12874
|
meta?: {} | undefined;
|
|
12857
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDropdownOptionsResponse, "orchestratorApi">> & {
|
|
12875
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDropdownOptionsResponse, "orchestratorApi", unknown>> & {
|
|
12858
12876
|
currentData?: SubscriptionDropdownOptionsResponse | undefined;
|
|
12859
12877
|
isUninitialized: false;
|
|
12860
12878
|
isLoading: false;
|
|
@@ -12884,7 +12902,7 @@ declare const useGetSubscriptionsDropdownOptionsQuery: <R extends Record<string,
|
|
|
12884
12902
|
error: graphql.GraphQLError[] | undefined;
|
|
12885
12903
|
data?: undefined;
|
|
12886
12904
|
meta?: {} | undefined;
|
|
12887
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDropdownOptionsResponse, "orchestratorApi">> & {
|
|
12905
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDropdownOptionsResponse, "orchestratorApi", unknown>> & {
|
|
12888
12906
|
currentData?: SubscriptionDropdownOptionsResponse | undefined;
|
|
12889
12907
|
isUninitialized: false;
|
|
12890
12908
|
isLoading: false;
|
|
@@ -12910,7 +12928,7 @@ declare const useGetSubscriptionsDropdownOptionsQuery: <R extends Record<string,
|
|
|
12910
12928
|
error: graphql.GraphQLError[] | undefined;
|
|
12911
12929
|
data?: undefined;
|
|
12912
12930
|
meta?: {} | undefined;
|
|
12913
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDropdownOptionsResponse, "orchestratorApi">> & {
|
|
12931
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDropdownOptionsResponse, "orchestratorApi", unknown>> & {
|
|
12914
12932
|
currentData?: SubscriptionDropdownOptionsResponse | undefined;
|
|
12915
12933
|
isUninitialized: false;
|
|
12916
12934
|
isLoading: false;
|
|
@@ -12934,7 +12952,7 @@ declare const useGetSubscriptionsDropdownOptionsQuery: <R extends Record<string,
|
|
|
12934
12952
|
error: graphql.GraphQLError[] | undefined;
|
|
12935
12953
|
data?: undefined;
|
|
12936
12954
|
meta?: {} | undefined;
|
|
12937
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDropdownOptionsResponse, "orchestratorApi">> & {
|
|
12955
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDropdownOptionsResponse, "orchestratorApi", unknown>> & {
|
|
12938
12956
|
currentData?: SubscriptionDropdownOptionsResponse | undefined;
|
|
12939
12957
|
isUninitialized: false;
|
|
12940
12958
|
isLoading: false;
|
|
@@ -12960,7 +12978,7 @@ declare const useGetSubscriptionsDropdownOptionsQuery: <R extends Record<string,
|
|
|
12960
12978
|
error: graphql.GraphQLError[] | undefined;
|
|
12961
12979
|
data?: undefined;
|
|
12962
12980
|
meta?: {} | undefined;
|
|
12963
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDropdownOptionsResponse, "orchestratorApi">>;
|
|
12981
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDropdownOptionsResponse, "orchestratorApi", unknown>>;
|
|
12964
12982
|
};
|
|
12965
12983
|
|
|
12966
12984
|
declare const useStartProcessMutation: <R extends Record<string, any> = ({
|
|
@@ -13163,7 +13181,7 @@ declare const useStartProcessMutation: <R extends Record<string, any> = ({
|
|
|
13163
13181
|
meta?: {} | undefined;
|
|
13164
13182
|
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, {
|
|
13165
13183
|
id: string;
|
|
13166
|
-
}, "orchestratorApi">>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
13184
|
+
}, "orchestratorApi", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
13167
13185
|
originalArgs?: {
|
|
13168
13186
|
workflowName: string;
|
|
13169
13187
|
userInputs: object[];
|
|
@@ -13348,7 +13366,7 @@ declare const useResumeProcessMutation: <R extends Record<string, any> = ({
|
|
|
13348
13366
|
error: graphql.GraphQLError[] | undefined;
|
|
13349
13367
|
data?: undefined;
|
|
13350
13368
|
meta?: {} | undefined;
|
|
13351
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, void, "orchestratorApi">>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
13369
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, void, "orchestratorApi", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
13352
13370
|
originalArgs?: {
|
|
13353
13371
|
processId: string;
|
|
13354
13372
|
userInputs: object[];
|
|
@@ -13533,7 +13551,7 @@ declare const useStartFormMutation: <R extends Record<string, any> = ({
|
|
|
13533
13551
|
error: graphql.GraphQLError[] | undefined;
|
|
13534
13552
|
data?: undefined;
|
|
13535
13553
|
meta?: {} | undefined;
|
|
13536
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, void, "orchestratorApi">>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
13554
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, void, "orchestratorApi", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
13537
13555
|
originalArgs?: {
|
|
13538
13556
|
formKey: string;
|
|
13539
13557
|
userInputs: object[];
|
|
@@ -13900,7 +13918,7 @@ type GraphQLPageInfo = {
|
|
|
13900
13918
|
hasNextPage: boolean;
|
|
13901
13919
|
hasPreviousPage: boolean;
|
|
13902
13920
|
startCursor: number | null;
|
|
13903
|
-
totalItems: number
|
|
13921
|
+
totalItems: number;
|
|
13904
13922
|
endCursor: number | null;
|
|
13905
13923
|
sortFields: string[];
|
|
13906
13924
|
filterFields: string[];
|
|
@@ -15278,7 +15296,7 @@ declare const METADATA_PRODUCT_BLOCK_ENDPOINT = "product_blocks";
|
|
|
15278
15296
|
declare const METADATA_RESOURCE_TYPE_ENDPOINT = "resource_types";
|
|
15279
15297
|
declare const METADATA_WORKFLOWS_ENDPOINT = "workflows";
|
|
15280
15298
|
|
|
15281
|
-
declare const ORCHESTRATOR_UI_LIBRARY_VERSION = "
|
|
15299
|
+
declare const ORCHESTRATOR_UI_LIBRARY_VERSION = "4.0.1";
|
|
15282
15300
|
|
|
15283
15301
|
declare const useGetTranslationMessages: (locale: string | undefined) => {
|
|
15284
15302
|
pydanticForms: {
|