@burdenoff/microfe-export 2026.510.111
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +243 -0
- package/dist/dev/main.d.ts +2 -0
- package/dist/dev/main.d.ts.map +1 -0
- package/dist/export/ExportRoot.d.ts +31 -0
- package/dist/export/ExportRoot.d.ts.map +1 -0
- package/dist/export/ExportRoot.js +70 -0
- package/dist/export/ExportRoot.js.map +1 -0
- package/dist/export/ExportRoutes.d.ts +14 -0
- package/dist/export/ExportRoutes.d.ts.map +1 -0
- package/dist/export/ExportRoutes.js +104 -0
- package/dist/export/ExportRoutes.js.map +1 -0
- package/dist/export/components/ExportProgressBar.d.ts +12 -0
- package/dist/export/components/ExportProgressBar.d.ts.map +1 -0
- package/dist/export/components/ExportProgressBar.js +34 -0
- package/dist/export/components/ExportProgressBar.js.map +1 -0
- package/dist/export/components/ExportStatusBadge.d.ts +12 -0
- package/dist/export/components/ExportStatusBadge.d.ts.map +1 -0
- package/dist/export/components/ExportStatusBadge.js +39 -0
- package/dist/export/components/ExportStatusBadge.js.map +1 -0
- package/dist/export/components/PageLayout.d.ts +55 -0
- package/dist/export/components/PageLayout.d.ts.map +1 -0
- package/dist/export/components/PageLayout.js +93 -0
- package/dist/export/components/PageLayout.js.map +1 -0
- package/dist/export/components/ui.d.ts +6 -0
- package/dist/export/components/ui.d.ts.map +1 -0
- package/dist/export/constants/enums.d.ts +79 -0
- package/dist/export/constants/enums.d.ts.map +1 -0
- package/dist/export/constants/enums.js +27 -0
- package/dist/export/constants/enums.js.map +1 -0
- package/dist/export/constants/index.d.ts +7 -0
- package/dist/export/constants/index.d.ts.map +1 -0
- package/dist/export/hooks/useExportQueries.d.ts +224 -0
- package/dist/export/hooks/useExportQueries.d.ts.map +1 -0
- package/dist/export/hooks/useExportQueries.js +401 -0
- package/dist/export/hooks/useExportQueries.js.map +1 -0
- package/dist/export/index.d.ts +29 -0
- package/dist/export/index.d.ts.map +1 -0
- package/dist/export/index.js +3 -0
- package/dist/export/pages/CreateExportPage.d.ts +2 -0
- package/dist/export/pages/CreateExportPage.d.ts.map +1 -0
- package/dist/export/pages/CreateExportPage.js +495 -0
- package/dist/export/pages/CreateExportPage.js.map +1 -0
- package/dist/export/pages/ExportDashboardPage.d.ts +6 -0
- package/dist/export/pages/ExportDashboardPage.d.ts.map +1 -0
- package/dist/export/pages/ExportDashboardPage.js +166 -0
- package/dist/export/pages/ExportDashboardPage.js.map +1 -0
- package/dist/export/pages/ExportDetailPage.d.ts +7 -0
- package/dist/export/pages/ExportDetailPage.d.ts.map +1 -0
- package/dist/export/pages/ExportDetailPage.js +327 -0
- package/dist/export/pages/ExportDetailPage.js.map +1 -0
- package/dist/export/pages/ExportHistoryPage.d.ts +6 -0
- package/dist/export/pages/ExportHistoryPage.d.ts.map +1 -0
- package/dist/export/pages/ExportHistoryPage.js +261 -0
- package/dist/export/pages/ExportHistoryPage.js.map +1 -0
- package/dist/export/pages/ExportLandingPage.d.ts +9 -0
- package/dist/export/pages/ExportLandingPage.d.ts.map +1 -0
- package/dist/export/pages/ExportLandingPage.js +56 -0
- package/dist/export/pages/ExportLandingPage.js.map +1 -0
- package/dist/export/pages/ExportTemplatesPage.d.ts +6 -0
- package/dist/export/pages/ExportTemplatesPage.d.ts.map +1 -0
- package/dist/export/pages/ExportTemplatesPage.js +343 -0
- package/dist/export/pages/ExportTemplatesPage.js.map +1 -0
- package/dist/export/pages/TemplateDetailPage.d.ts +7 -0
- package/dist/export/pages/TemplateDetailPage.d.ts.map +1 -0
- package/dist/export/pages/TemplateDetailPage.js +215 -0
- package/dist/export/pages/TemplateDetailPage.js.map +1 -0
- package/dist/export/providers/ExportProvider.d.ts +13 -0
- package/dist/export/providers/ExportProvider.d.ts.map +1 -0
- package/dist/export/providers/ExportProvider.js +103 -0
- package/dist/export/providers/ExportProvider.js.map +1 -0
- package/dist/export/store/exportStore.d.ts +17 -0
- package/dist/export/store/exportStore.d.ts.map +1 -0
- package/dist/export/store/exportStore.js +43 -0
- package/dist/export/store/exportStore.js.map +1 -0
- package/dist/export/types/index.d.ts +230 -0
- package/dist/export/types/index.d.ts.map +1 -0
- package/dist/export/utils/cn.d.ts +8 -0
- package/dist/export/utils/cn.d.ts.map +1 -0
- package/dist/export/utils/cn.js +10 -0
- package/dist/export/utils/cn.js.map +1 -0
- package/dist/export/utils/events.d.ts +7 -0
- package/dist/export/utils/events.d.ts.map +1 -0
- package/dist/export/utils/events.js +16 -0
- package/dist/export/utils/events.js.map +1 -0
- package/dist/export/utils/i18n.d.ts +6 -0
- package/dist/export/utils/i18n.d.ts.map +1 -0
- package/dist/export/utils/i18n.js +15 -0
- package/dist/export/utils/i18n.js.map +1 -0
- package/dist/generated/global-operations.d.ts +2 -0
- package/dist/generated/global-operations.d.ts.map +1 -0
- package/dist/generated/global-types.d.ts +21253 -0
- package/dist/generated/global-types.d.ts.map +1 -0
- package/dist/generated/wspace-operations.d.ts +773 -0
- package/dist/generated/wspace-operations.d.ts.map +1 -0
- package/dist/generated/wspace-operations.js +319 -0
- package/dist/generated/wspace-operations.js.map +1 -0
- package/dist/generated/wspace-types.d.ts +55214 -0
- package/dist/generated/wspace-types.d.ts.map +1 -0
- package/dist/generated/wspace-types.js +12 -0
- package/dist/generated/wspace-types.js.map +1 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +5 -0
- package/dist/node_modules/@apollo/client/errors/CombinedGraphQLErrors.js +24 -0
- package/dist/node_modules/@apollo/client/errors/CombinedGraphQLErrors.js.map +1 -0
- package/dist/node_modules/@apollo/client/errors/utils.js +16 -0
- package/dist/node_modules/@apollo/client/errors/utils.js.map +1 -0
- package/dist/node_modules/@apollo/client/link/core/ApolloLink.js +52 -0
- package/dist/node_modules/@apollo/client/link/core/ApolloLink.js.map +1 -0
- package/dist/node_modules/@apollo/client/link/subscriptions/index.js +41 -0
- package/dist/node_modules/@apollo/client/link/subscriptions/index.js.map +1 -0
- package/dist/node_modules/@apollo/client/link/utils/createOperation.js +34 -0
- package/dist/node_modules/@apollo/client/link/utils/createOperation.js.map +1 -0
- package/dist/node_modules/@apollo/client/utilities/caching/sizes.js +6 -0
- package/dist/node_modules/@apollo/client/utilities/caching/sizes.js.map +1 -0
- package/dist/node_modules/@apollo/client/utilities/graphql/print.js +16 -0
- package/dist/node_modules/@apollo/client/utilities/graphql/print.js.map +1 -0
- package/dist/node_modules/@apollo/client/utilities/internal/caches.js +19 -0
- package/dist/node_modules/@apollo/client/utilities/internal/caches.js.map +1 -0
- package/dist/node_modules/@apollo/client/utilities/internal/checkDocument.js +21 -0
- package/dist/node_modules/@apollo/client/utilities/internal/checkDocument.js.map +1 -0
- package/dist/node_modules/@apollo/client/utilities/internal/getMainDefinition.js +17 -0
- package/dist/node_modules/@apollo/client/utilities/internal/getMainDefinition.js.map +1 -0
- package/dist/node_modules/@apollo/client/utilities/internal/getMemoryInternals.js +9 -0
- package/dist/node_modules/@apollo/client/utilities/internal/getMemoryInternals.js.map +1 -0
- package/dist/node_modules/@apollo/client/utilities/internal/getOperationDefinition.js +9 -0
- package/dist/node_modules/@apollo/client/utilities/internal/getOperationDefinition.js.map +1 -0
- package/dist/node_modules/@apollo/client/utilities/internal/getOperationName.js +8 -0
- package/dist/node_modules/@apollo/client/utilities/internal/getOperationName.js.map +1 -0
- package/dist/node_modules/@apollo/client/utilities/internal/globals/global.js +9 -0
- package/dist/node_modules/@apollo/client/utilities/internal/globals/global.js.map +1 -0
- package/dist/node_modules/@apollo/client/utilities/internal/globals/maybe.js +10 -0
- package/dist/node_modules/@apollo/client/utilities/internal/globals/maybe.js.map +1 -0
- package/dist/node_modules/@apollo/client/utilities/internal/isNonNullObject.js +8 -0
- package/dist/node_modules/@apollo/client/utilities/internal/isNonNullObject.js.map +1 -0
- package/dist/node_modules/@apollo/client/utilities/internal/makeUniqueId.js +10 -0
- package/dist/node_modules/@apollo/client/utilities/internal/makeUniqueId.js.map +1 -0
- package/dist/node_modules/@apollo/client/utilities/internal/memoize.js +23 -0
- package/dist/node_modules/@apollo/client/utilities/internal/memoize.js.map +1 -0
- package/dist/node_modules/@apollo/client/utilities/internal/stringifyForDisplay.js +10 -0
- package/dist/node_modules/@apollo/client/utilities/internal/stringifyForDisplay.js.map +1 -0
- package/dist/node_modules/@apollo/client/utilities/invariant/index.js +57 -0
- package/dist/node_modules/@apollo/client/utilities/invariant/index.js.map +1 -0
- package/dist/node_modules/@apollo/client/version.js +6 -0
- package/dist/node_modules/@apollo/client/version.js.map +1 -0
- package/dist/node_modules/@wry/caches/lib/weak.js +67 -0
- package/dist/node_modules/@wry/caches/lib/weak.js.map +1 -0
- package/dist/node_modules/@wry/trie/lib/index.js +53 -0
- package/dist/node_modules/@wry/trie/lib/index.js.map +1 -0
- package/dist/node_modules/clsx/dist/clsx.js +18 -0
- package/dist/node_modules/clsx/dist/clsx.js.map +1 -0
- package/dist/node_modules/graphql-ws/dist/client.js +272 -0
- package/dist/node_modules/graphql-ws/dist/client.js.map +1 -0
- package/dist/node_modules/graphql-ws/dist/common-CGW11Fyb.js +62 -0
- package/dist/node_modules/graphql-ws/dist/common-CGW11Fyb.js.map +1 -0
- package/dist/node_modules/rxjs/dist/esm5/internal/NotificationFactories.js +21 -0
- package/dist/node_modules/rxjs/dist/esm5/internal/NotificationFactories.js.map +1 -0
- package/dist/node_modules/rxjs/dist/esm5/internal/Observable.js +78 -0
- package/dist/node_modules/rxjs/dist/esm5/internal/Observable.js.map +1 -0
- package/dist/node_modules/rxjs/dist/esm5/internal/Subscriber.js +117 -0
- package/dist/node_modules/rxjs/dist/esm5/internal/Subscriber.js.map +1 -0
- package/dist/node_modules/rxjs/dist/esm5/internal/Subscription.js +93 -0
- package/dist/node_modules/rxjs/dist/esm5/internal/Subscription.js.map +1 -0
- package/dist/node_modules/rxjs/dist/esm5/internal/config.js +12 -0
- package/dist/node_modules/rxjs/dist/esm5/internal/config.js.map +1 -0
- package/dist/node_modules/rxjs/dist/esm5/internal/observable/empty.js +9 -0
- package/dist/node_modules/rxjs/dist/esm5/internal/observable/empty.js.map +1 -0
- package/dist/node_modules/rxjs/dist/esm5/internal/scheduler/timeoutProvider.js +16 -0
- package/dist/node_modules/rxjs/dist/esm5/internal/scheduler/timeoutProvider.js.map +1 -0
- package/dist/node_modules/rxjs/dist/esm5/internal/symbol/observable.js +8 -0
- package/dist/node_modules/rxjs/dist/esm5/internal/symbol/observable.js.map +1 -0
- package/dist/node_modules/rxjs/dist/esm5/internal/util/UnsubscriptionError.js +13 -0
- package/dist/node_modules/rxjs/dist/esm5/internal/util/UnsubscriptionError.js.map +1 -0
- package/dist/node_modules/rxjs/dist/esm5/internal/util/arrRemove.js +11 -0
- package/dist/node_modules/rxjs/dist/esm5/internal/util/arrRemove.js.map +1 -0
- package/dist/node_modules/rxjs/dist/esm5/internal/util/createErrorClass.js +11 -0
- package/dist/node_modules/rxjs/dist/esm5/internal/util/createErrorClass.js.map +1 -0
- package/dist/node_modules/rxjs/dist/esm5/internal/util/errorContext.js +22 -0
- package/dist/node_modules/rxjs/dist/esm5/internal/util/errorContext.js.map +1 -0
- package/dist/node_modules/rxjs/dist/esm5/internal/util/identity.js +8 -0
- package/dist/node_modules/rxjs/dist/esm5/internal/util/identity.js.map +1 -0
- package/dist/node_modules/rxjs/dist/esm5/internal/util/isFunction.js +8 -0
- package/dist/node_modules/rxjs/dist/esm5/internal/util/isFunction.js.map +1 -0
- package/dist/node_modules/rxjs/dist/esm5/internal/util/noop.js +6 -0
- package/dist/node_modules/rxjs/dist/esm5/internal/util/noop.js.map +1 -0
- package/dist/node_modules/rxjs/dist/esm5/internal/util/pipe.js +13 -0
- package/dist/node_modules/rxjs/dist/esm5/internal/util/pipe.js.map +1 -0
- package/dist/node_modules/rxjs/dist/esm5/internal/util/reportUnhandledError.js +14 -0
- package/dist/node_modules/rxjs/dist/esm5/internal/util/reportUnhandledError.js.map +1 -0
- package/dist/node_modules/rxjs/node_modules/tslib/tslib.es6.js +52 -0
- package/dist/node_modules/rxjs/node_modules/tslib/tslib.es6.js.map +1 -0
- package/dist/node_modules/tailwind-merge/dist/bundle-mjs.js +1674 -0
- package/dist/node_modules/tailwind-merge/dist/bundle-mjs.js.map +1 -0
- package/dist/utils/nativeBridge.d.ts +3 -0
- package/dist/utils/nativeBridge.d.ts.map +1 -0
- package/dist/utils/nativeBridge.js +2 -0
- package/package.json +107 -0
|
@@ -0,0 +1,773 @@
|
|
|
1
|
+
import * as Types from './wspace-types';
|
|
2
|
+
import * as Apollo from '@apollo/client';
|
|
3
|
+
import * as ApolloReactHooks from '@apollo/client/react';
|
|
4
|
+
export type CancelExportJobMutationVariables = Types.Exact<{
|
|
5
|
+
context?: Types.InputMaybe<Types.ContextInput>;
|
|
6
|
+
id: Types.Scalars['ID']['input'];
|
|
7
|
+
}>;
|
|
8
|
+
export type CancelExportJobMutation = {
|
|
9
|
+
__typename?: 'Mutation';
|
|
10
|
+
cancelExportJob: {
|
|
11
|
+
__typename?: 'ExportJob';
|
|
12
|
+
id: string;
|
|
13
|
+
status: Types.ExportJobStatus;
|
|
14
|
+
updatedAt: string;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
export type CreateExportJobMutationVariables = Types.Exact<{
|
|
18
|
+
context?: Types.InputMaybe<Types.ContextInput>;
|
|
19
|
+
input: Types.CreateExportJobInput;
|
|
20
|
+
}>;
|
|
21
|
+
export type CreateExportJobMutation = {
|
|
22
|
+
__typename?: 'Mutation';
|
|
23
|
+
createExportJob: {
|
|
24
|
+
__typename?: 'ExportJob';
|
|
25
|
+
id: string;
|
|
26
|
+
name: string;
|
|
27
|
+
description?: string | null;
|
|
28
|
+
status: Types.ExportJobStatus;
|
|
29
|
+
format: Types.ExportFormat;
|
|
30
|
+
archiveFormat: Types.ExportArchiveFormat;
|
|
31
|
+
entityTypes: Array<string>;
|
|
32
|
+
entityFilters?: Record<string, unknown> | null;
|
|
33
|
+
includeMedia: boolean;
|
|
34
|
+
includeMetadata: boolean;
|
|
35
|
+
dateRangeStart?: string | null;
|
|
36
|
+
dateRangeEnd?: string | null;
|
|
37
|
+
processedEntities: number;
|
|
38
|
+
totalEntities: number;
|
|
39
|
+
totalSizeBytes: string;
|
|
40
|
+
progress: number;
|
|
41
|
+
templateId?: string | null;
|
|
42
|
+
workspaceId: string;
|
|
43
|
+
tenantId?: string | null;
|
|
44
|
+
createdBy: string;
|
|
45
|
+
createdAt: string;
|
|
46
|
+
updatedAt: string;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
export type CreateExportTemplateMutationVariables = Types.Exact<{
|
|
50
|
+
context?: Types.InputMaybe<Types.ContextInput>;
|
|
51
|
+
input: Types.CreateExportTemplateInput;
|
|
52
|
+
}>;
|
|
53
|
+
export type CreateExportTemplateMutation = {
|
|
54
|
+
__typename?: 'Mutation';
|
|
55
|
+
createExportTemplate: {
|
|
56
|
+
__typename?: 'ExportTemplate';
|
|
57
|
+
id: string;
|
|
58
|
+
name: string;
|
|
59
|
+
description?: string | null;
|
|
60
|
+
entityTypes: Array<string>;
|
|
61
|
+
format: Types.ExportFormat;
|
|
62
|
+
entityFilters?: Record<string, unknown> | null;
|
|
63
|
+
includeMedia: boolean;
|
|
64
|
+
includeMetadata: boolean;
|
|
65
|
+
isDefault: boolean;
|
|
66
|
+
workspaceId: string;
|
|
67
|
+
tenantId?: string | null;
|
|
68
|
+
createdBy: string;
|
|
69
|
+
createdAt: string;
|
|
70
|
+
updatedAt: string;
|
|
71
|
+
};
|
|
72
|
+
};
|
|
73
|
+
export type DeleteExportJobMutationVariables = Types.Exact<{
|
|
74
|
+
context?: Types.InputMaybe<Types.ContextInput>;
|
|
75
|
+
id: Types.Scalars['ID']['input'];
|
|
76
|
+
}>;
|
|
77
|
+
export type DeleteExportJobMutation = {
|
|
78
|
+
__typename?: 'Mutation';
|
|
79
|
+
deleteExportJob: boolean;
|
|
80
|
+
};
|
|
81
|
+
export type DeleteExportTemplateMutationVariables = Types.Exact<{
|
|
82
|
+
context?: Types.InputMaybe<Types.ContextInput>;
|
|
83
|
+
id: Types.Scalars['ID']['input'];
|
|
84
|
+
}>;
|
|
85
|
+
export type DeleteExportTemplateMutation = {
|
|
86
|
+
__typename?: 'Mutation';
|
|
87
|
+
deleteExportTemplate: boolean;
|
|
88
|
+
};
|
|
89
|
+
export type RetryExportJobMutationVariables = Types.Exact<{
|
|
90
|
+
context?: Types.InputMaybe<Types.ContextInput>;
|
|
91
|
+
id: Types.Scalars['ID']['input'];
|
|
92
|
+
}>;
|
|
93
|
+
export type RetryExportJobMutation = {
|
|
94
|
+
__typename?: 'Mutation';
|
|
95
|
+
retryExportJob: {
|
|
96
|
+
__typename?: 'ExportJob';
|
|
97
|
+
id: string;
|
|
98
|
+
name: string;
|
|
99
|
+
description?: string | null;
|
|
100
|
+
status: Types.ExportJobStatus;
|
|
101
|
+
archiveFormat: Types.ExportArchiveFormat;
|
|
102
|
+
progress: number;
|
|
103
|
+
entityTypes: Array<string>;
|
|
104
|
+
format: Types.ExportFormat;
|
|
105
|
+
processedEntities: number;
|
|
106
|
+
totalEntities: number;
|
|
107
|
+
totalSizeBytes: string;
|
|
108
|
+
templateId?: string | null;
|
|
109
|
+
workspaceId: string;
|
|
110
|
+
createdBy: string;
|
|
111
|
+
createdAt: string;
|
|
112
|
+
updatedAt: string;
|
|
113
|
+
};
|
|
114
|
+
};
|
|
115
|
+
export type UpdateExportTemplateMutationVariables = Types.Exact<{
|
|
116
|
+
context?: Types.InputMaybe<Types.ContextInput>;
|
|
117
|
+
id: Types.Scalars['ID']['input'];
|
|
118
|
+
input: Types.UpdateExportTemplateInput;
|
|
119
|
+
}>;
|
|
120
|
+
export type UpdateExportTemplateMutation = {
|
|
121
|
+
__typename?: 'Mutation';
|
|
122
|
+
updateExportTemplate: {
|
|
123
|
+
__typename?: 'ExportTemplate';
|
|
124
|
+
id: string;
|
|
125
|
+
name: string;
|
|
126
|
+
description?: string | null;
|
|
127
|
+
entityTypes: Array<string>;
|
|
128
|
+
format: Types.ExportFormat;
|
|
129
|
+
isDefault: boolean;
|
|
130
|
+
workspaceId: string;
|
|
131
|
+
createdBy: string;
|
|
132
|
+
createdAt: string;
|
|
133
|
+
updatedAt: string;
|
|
134
|
+
};
|
|
135
|
+
};
|
|
136
|
+
export type GetAvailableExportEntitiesQueryVariables = Types.Exact<{
|
|
137
|
+
context: Types.ContextInput;
|
|
138
|
+
pagination?: Types.InputMaybe<Types.ExportPaginationInput>;
|
|
139
|
+
}>;
|
|
140
|
+
export type GetAvailableExportEntitiesQuery = {
|
|
141
|
+
__typename?: 'Query';
|
|
142
|
+
getAvailableExportEntities: {
|
|
143
|
+
__typename?: 'ExportAvailableEntityConnection';
|
|
144
|
+
totalCount: number;
|
|
145
|
+
edges: Array<{
|
|
146
|
+
__typename?: 'ExportAvailableEntityEdge';
|
|
147
|
+
cursor: string;
|
|
148
|
+
node: {
|
|
149
|
+
__typename?: 'ExportAvailableEntity';
|
|
150
|
+
entityType: string;
|
|
151
|
+
displayName: string;
|
|
152
|
+
description?: string | null;
|
|
153
|
+
enabled: boolean;
|
|
154
|
+
estimatedSize?: string | null;
|
|
155
|
+
supportsDateRange: boolean;
|
|
156
|
+
supportsMediaExport: boolean;
|
|
157
|
+
};
|
|
158
|
+
}>;
|
|
159
|
+
pageInfo: {
|
|
160
|
+
__typename?: 'PageInfo';
|
|
161
|
+
hasNextPage: boolean;
|
|
162
|
+
hasPreviousPage: boolean;
|
|
163
|
+
startCursor?: string | null;
|
|
164
|
+
endCursor?: string | null;
|
|
165
|
+
};
|
|
166
|
+
};
|
|
167
|
+
};
|
|
168
|
+
export type GetExportJobQueryVariables = Types.Exact<{
|
|
169
|
+
context?: Types.InputMaybe<Types.ContextInput>;
|
|
170
|
+
id: Types.Scalars['ID']['input'];
|
|
171
|
+
}>;
|
|
172
|
+
export type GetExportJobQuery = {
|
|
173
|
+
__typename?: 'Query';
|
|
174
|
+
getExportJob?: {
|
|
175
|
+
__typename?: 'ExportJob';
|
|
176
|
+
id: string;
|
|
177
|
+
name: string;
|
|
178
|
+
description?: string | null;
|
|
179
|
+
status: Types.ExportJobStatus;
|
|
180
|
+
format: Types.ExportFormat;
|
|
181
|
+
archiveFormat: Types.ExportArchiveFormat;
|
|
182
|
+
entityTypes: Array<string>;
|
|
183
|
+
entityFilters?: Record<string, unknown> | null;
|
|
184
|
+
includeMedia: boolean;
|
|
185
|
+
includeMetadata: boolean;
|
|
186
|
+
dateRangeStart?: string | null;
|
|
187
|
+
dateRangeEnd?: string | null;
|
|
188
|
+
processedEntities: number;
|
|
189
|
+
totalEntities: number;
|
|
190
|
+
totalSizeBytes: string;
|
|
191
|
+
progress: number;
|
|
192
|
+
errorMessage?: string | null;
|
|
193
|
+
errorCode?: string | null;
|
|
194
|
+
startedAt?: string | null;
|
|
195
|
+
completedAt?: string | null;
|
|
196
|
+
expiresAt?: string | null;
|
|
197
|
+
templateId?: string | null;
|
|
198
|
+
temporalWorkflowId?: string | null;
|
|
199
|
+
workspaceId: string;
|
|
200
|
+
tenantId?: string | null;
|
|
201
|
+
createdBy: string;
|
|
202
|
+
createdAt: string;
|
|
203
|
+
updatedAt: string;
|
|
204
|
+
updatedBy?: string | null;
|
|
205
|
+
parts: Array<{
|
|
206
|
+
__typename?: 'ExportPart';
|
|
207
|
+
id: string;
|
|
208
|
+
partNumber: number;
|
|
209
|
+
fileName: string;
|
|
210
|
+
sizeBytes: string;
|
|
211
|
+
entityTypes: Array<string>;
|
|
212
|
+
downloadUrl?: string | null;
|
|
213
|
+
downloadExpiresAt?: string | null;
|
|
214
|
+
checksum?: string | null;
|
|
215
|
+
}>;
|
|
216
|
+
template?: {
|
|
217
|
+
__typename?: 'ExportTemplate';
|
|
218
|
+
id: string;
|
|
219
|
+
name: string;
|
|
220
|
+
description?: string | null;
|
|
221
|
+
} | null;
|
|
222
|
+
} | null;
|
|
223
|
+
};
|
|
224
|
+
export type GetExportPartQueryVariables = Types.Exact<{
|
|
225
|
+
context?: Types.InputMaybe<Types.ContextInput>;
|
|
226
|
+
id: Types.Scalars['ID']['input'];
|
|
227
|
+
}>;
|
|
228
|
+
export type GetExportPartQuery = {
|
|
229
|
+
__typename?: 'Query';
|
|
230
|
+
getExportPart?: {
|
|
231
|
+
__typename?: 'ExportPart';
|
|
232
|
+
id: string;
|
|
233
|
+
jobId: string;
|
|
234
|
+
partNumber: number;
|
|
235
|
+
fileName: string;
|
|
236
|
+
sizeBytes: string;
|
|
237
|
+
entityTypes: Array<string>;
|
|
238
|
+
downloadUrl?: string | null;
|
|
239
|
+
downloadExpiresAt?: string | null;
|
|
240
|
+
checksum?: string | null;
|
|
241
|
+
createdAt: string;
|
|
242
|
+
} | null;
|
|
243
|
+
};
|
|
244
|
+
export type GetExportTemplateQueryVariables = Types.Exact<{
|
|
245
|
+
context?: Types.InputMaybe<Types.ContextInput>;
|
|
246
|
+
id: Types.Scalars['ID']['input'];
|
|
247
|
+
}>;
|
|
248
|
+
export type GetExportTemplateQuery = {
|
|
249
|
+
__typename?: 'Query';
|
|
250
|
+
getExportTemplate?: {
|
|
251
|
+
__typename?: 'ExportTemplate';
|
|
252
|
+
id: string;
|
|
253
|
+
name: string;
|
|
254
|
+
description?: string | null;
|
|
255
|
+
entityTypes: Array<string>;
|
|
256
|
+
format: Types.ExportFormat;
|
|
257
|
+
entityFilters?: Record<string, unknown> | null;
|
|
258
|
+
includeMedia: boolean;
|
|
259
|
+
includeMetadata: boolean;
|
|
260
|
+
isDefault: boolean;
|
|
261
|
+
workspaceId: string;
|
|
262
|
+
tenantId?: string | null;
|
|
263
|
+
createdBy: string;
|
|
264
|
+
createdAt: string;
|
|
265
|
+
updatedAt: string;
|
|
266
|
+
updatedBy?: string | null;
|
|
267
|
+
} | null;
|
|
268
|
+
};
|
|
269
|
+
export type ListExportTemplatesQueryVariables = Types.Exact<{
|
|
270
|
+
context: Types.ContextInput;
|
|
271
|
+
pagination?: Types.InputMaybe<Types.ExportPaginationInput>;
|
|
272
|
+
}>;
|
|
273
|
+
export type ListExportTemplatesQuery = {
|
|
274
|
+
__typename?: 'Query';
|
|
275
|
+
listExportTemplates: {
|
|
276
|
+
__typename?: 'ExportTemplateConnection';
|
|
277
|
+
totalCount: number;
|
|
278
|
+
edges: Array<{
|
|
279
|
+
__typename?: 'ExportTemplateEdge';
|
|
280
|
+
cursor: string;
|
|
281
|
+
node: {
|
|
282
|
+
__typename?: 'ExportTemplate';
|
|
283
|
+
id: string;
|
|
284
|
+
name: string;
|
|
285
|
+
description?: string | null;
|
|
286
|
+
entityTypes: Array<string>;
|
|
287
|
+
format: Types.ExportFormat;
|
|
288
|
+
isDefault: boolean;
|
|
289
|
+
workspaceId: string;
|
|
290
|
+
tenantId?: string | null;
|
|
291
|
+
createdBy: string;
|
|
292
|
+
createdAt: string;
|
|
293
|
+
updatedAt: string;
|
|
294
|
+
updatedBy?: string | null;
|
|
295
|
+
};
|
|
296
|
+
}>;
|
|
297
|
+
pageInfo: {
|
|
298
|
+
__typename?: 'PageInfo';
|
|
299
|
+
hasNextPage: boolean;
|
|
300
|
+
hasPreviousPage: boolean;
|
|
301
|
+
startCursor?: string | null;
|
|
302
|
+
endCursor?: string | null;
|
|
303
|
+
};
|
|
304
|
+
};
|
|
305
|
+
};
|
|
306
|
+
export type ListExportJobsQueryVariables = Types.Exact<{
|
|
307
|
+
filter?: Types.InputMaybe<Types.ExportJobFilterInput>;
|
|
308
|
+
pagination?: Types.InputMaybe<Types.ExportPaginationInput>;
|
|
309
|
+
context: Types.ContextInput;
|
|
310
|
+
}>;
|
|
311
|
+
export type ListExportJobsQuery = {
|
|
312
|
+
__typename?: 'Query';
|
|
313
|
+
listExportJobs: {
|
|
314
|
+
__typename?: 'ExportJobConnection';
|
|
315
|
+
totalCount: number;
|
|
316
|
+
edges: Array<{
|
|
317
|
+
__typename?: 'ExportJobEdge';
|
|
318
|
+
cursor: string;
|
|
319
|
+
node: {
|
|
320
|
+
__typename?: 'ExportJob';
|
|
321
|
+
id: string;
|
|
322
|
+
name: string;
|
|
323
|
+
description?: string | null;
|
|
324
|
+
status: Types.ExportJobStatus;
|
|
325
|
+
format: Types.ExportFormat;
|
|
326
|
+
archiveFormat: Types.ExportArchiveFormat;
|
|
327
|
+
entityTypes: Array<string>;
|
|
328
|
+
progress: number;
|
|
329
|
+
totalEntities: number;
|
|
330
|
+
processedEntities: number;
|
|
331
|
+
totalSizeBytes: string;
|
|
332
|
+
errorMessage?: string | null;
|
|
333
|
+
startedAt?: string | null;
|
|
334
|
+
completedAt?: string | null;
|
|
335
|
+
expiresAt?: string | null;
|
|
336
|
+
templateId?: string | null;
|
|
337
|
+
workspaceId: string;
|
|
338
|
+
createdBy: string;
|
|
339
|
+
createdAt: string;
|
|
340
|
+
updatedAt: string;
|
|
341
|
+
};
|
|
342
|
+
}>;
|
|
343
|
+
pageInfo: {
|
|
344
|
+
__typename?: 'PageInfo';
|
|
345
|
+
hasNextPage: boolean;
|
|
346
|
+
hasPreviousPage: boolean;
|
|
347
|
+
startCursor?: string | null;
|
|
348
|
+
endCursor?: string | null;
|
|
349
|
+
};
|
|
350
|
+
};
|
|
351
|
+
};
|
|
352
|
+
export type ExportJobProgressSubscriptionVariables = Types.Exact<{
|
|
353
|
+
jobId: Types.Scalars['ID']['input'];
|
|
354
|
+
}>;
|
|
355
|
+
export type ExportJobProgressSubscription = {
|
|
356
|
+
__typename?: 'Subscription';
|
|
357
|
+
exportJobProgress: {
|
|
358
|
+
__typename?: 'ExportJob';
|
|
359
|
+
id: string;
|
|
360
|
+
name: string;
|
|
361
|
+
description?: string | null;
|
|
362
|
+
status: Types.ExportJobStatus;
|
|
363
|
+
format: Types.ExportFormat;
|
|
364
|
+
archiveFormat: Types.ExportArchiveFormat;
|
|
365
|
+
entityTypes: Array<string>;
|
|
366
|
+
progress: number;
|
|
367
|
+
processedEntities: number;
|
|
368
|
+
totalEntities: number;
|
|
369
|
+
totalSizeBytes: string;
|
|
370
|
+
errorMessage?: string | null;
|
|
371
|
+
startedAt?: string | null;
|
|
372
|
+
completedAt?: string | null;
|
|
373
|
+
expiresAt?: string | null;
|
|
374
|
+
templateId?: string | null;
|
|
375
|
+
workspaceId: string;
|
|
376
|
+
createdBy: string;
|
|
377
|
+
createdAt: string;
|
|
378
|
+
updatedAt: string;
|
|
379
|
+
parts: Array<{
|
|
380
|
+
__typename?: 'ExportPart';
|
|
381
|
+
id: string;
|
|
382
|
+
partNumber: number;
|
|
383
|
+
fileName: string;
|
|
384
|
+
sizeBytes: string;
|
|
385
|
+
entityTypes: Array<string>;
|
|
386
|
+
downloadUrl?: string | null;
|
|
387
|
+
downloadExpiresAt?: string | null;
|
|
388
|
+
checksum?: string | null;
|
|
389
|
+
}>;
|
|
390
|
+
};
|
|
391
|
+
};
|
|
392
|
+
export declare const CancelExportJobDocument: Apollo.DocumentNode;
|
|
393
|
+
export type CancelExportJobMutationFn = Apollo.MutationFunction<Types.CancelExportJobMutation, Types.CancelExportJobMutationVariables>;
|
|
394
|
+
/**
|
|
395
|
+
* __useCancelExportJobMutation__
|
|
396
|
+
*
|
|
397
|
+
* To run a mutation, you first call `useCancelExportJobMutation` within a React component and pass it any options that fit your needs.
|
|
398
|
+
* When your component renders, `useCancelExportJobMutation` returns a tuple that includes:
|
|
399
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
400
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
401
|
+
*
|
|
402
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
403
|
+
*
|
|
404
|
+
* @example
|
|
405
|
+
* const [cancelExportJobMutation, { data, loading, error }] = useCancelExportJobMutation({
|
|
406
|
+
* variables: {
|
|
407
|
+
* context: // value for 'context'
|
|
408
|
+
* id: // value for 'id'
|
|
409
|
+
* },
|
|
410
|
+
* });
|
|
411
|
+
*/
|
|
412
|
+
export declare function useCancelExportJobMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CancelExportJobMutation, Types.CancelExportJobMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.CancelExportJobMutation, any, Apollo.ApolloCache>;
|
|
413
|
+
export type CancelExportJobMutationHookResult = ReturnType<typeof useCancelExportJobMutation>;
|
|
414
|
+
export type CancelExportJobMutationResult = Apollo.MutationResult<Types.CancelExportJobMutation>;
|
|
415
|
+
export type CancelExportJobMutationOptions = Apollo.BaseMutationOptions<Types.CancelExportJobMutation, Types.CancelExportJobMutationVariables>;
|
|
416
|
+
export declare const CreateExportJobDocument: Apollo.DocumentNode;
|
|
417
|
+
export type CreateExportJobMutationFn = Apollo.MutationFunction<Types.CreateExportJobMutation, Types.CreateExportJobMutationVariables>;
|
|
418
|
+
/**
|
|
419
|
+
* __useCreateExportJobMutation__
|
|
420
|
+
*
|
|
421
|
+
* To run a mutation, you first call `useCreateExportJobMutation` within a React component and pass it any options that fit your needs.
|
|
422
|
+
* When your component renders, `useCreateExportJobMutation` returns a tuple that includes:
|
|
423
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
424
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
425
|
+
*
|
|
426
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
427
|
+
*
|
|
428
|
+
* @example
|
|
429
|
+
* const [createExportJobMutation, { data, loading, error }] = useCreateExportJobMutation({
|
|
430
|
+
* variables: {
|
|
431
|
+
* context: // value for 'context'
|
|
432
|
+
* input: // value for 'input'
|
|
433
|
+
* },
|
|
434
|
+
* });
|
|
435
|
+
*/
|
|
436
|
+
export declare function useCreateExportJobMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateExportJobMutation, Types.CreateExportJobMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.CreateExportJobMutation, any, Apollo.ApolloCache>;
|
|
437
|
+
export type CreateExportJobMutationHookResult = ReturnType<typeof useCreateExportJobMutation>;
|
|
438
|
+
export type CreateExportJobMutationResult = Apollo.MutationResult<Types.CreateExportJobMutation>;
|
|
439
|
+
export type CreateExportJobMutationOptions = Apollo.BaseMutationOptions<Types.CreateExportJobMutation, Types.CreateExportJobMutationVariables>;
|
|
440
|
+
export declare const CreateExportTemplateDocument: Apollo.DocumentNode;
|
|
441
|
+
export type CreateExportTemplateMutationFn = Apollo.MutationFunction<Types.CreateExportTemplateMutation, Types.CreateExportTemplateMutationVariables>;
|
|
442
|
+
/**
|
|
443
|
+
* __useCreateExportTemplateMutation__
|
|
444
|
+
*
|
|
445
|
+
* To run a mutation, you first call `useCreateExportTemplateMutation` within a React component and pass it any options that fit your needs.
|
|
446
|
+
* When your component renders, `useCreateExportTemplateMutation` returns a tuple that includes:
|
|
447
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
448
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
449
|
+
*
|
|
450
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
451
|
+
*
|
|
452
|
+
* @example
|
|
453
|
+
* const [createExportTemplateMutation, { data, loading, error }] = useCreateExportTemplateMutation({
|
|
454
|
+
* variables: {
|
|
455
|
+
* context: // value for 'context'
|
|
456
|
+
* input: // value for 'input'
|
|
457
|
+
* },
|
|
458
|
+
* });
|
|
459
|
+
*/
|
|
460
|
+
export declare function useCreateExportTemplateMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateExportTemplateMutation, Types.CreateExportTemplateMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.CreateExportTemplateMutation, any, Apollo.ApolloCache>;
|
|
461
|
+
export type CreateExportTemplateMutationHookResult = ReturnType<typeof useCreateExportTemplateMutation>;
|
|
462
|
+
export type CreateExportTemplateMutationResult = Apollo.MutationResult<Types.CreateExportTemplateMutation>;
|
|
463
|
+
export type CreateExportTemplateMutationOptions = Apollo.BaseMutationOptions<Types.CreateExportTemplateMutation, Types.CreateExportTemplateMutationVariables>;
|
|
464
|
+
export declare const DeleteExportJobDocument: Apollo.DocumentNode;
|
|
465
|
+
export type DeleteExportJobMutationFn = Apollo.MutationFunction<Types.DeleteExportJobMutation, Types.DeleteExportJobMutationVariables>;
|
|
466
|
+
/**
|
|
467
|
+
* __useDeleteExportJobMutation__
|
|
468
|
+
*
|
|
469
|
+
* To run a mutation, you first call `useDeleteExportJobMutation` within a React component and pass it any options that fit your needs.
|
|
470
|
+
* When your component renders, `useDeleteExportJobMutation` returns a tuple that includes:
|
|
471
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
472
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
473
|
+
*
|
|
474
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
475
|
+
*
|
|
476
|
+
* @example
|
|
477
|
+
* const [deleteExportJobMutation, { data, loading, error }] = useDeleteExportJobMutation({
|
|
478
|
+
* variables: {
|
|
479
|
+
* context: // value for 'context'
|
|
480
|
+
* id: // value for 'id'
|
|
481
|
+
* },
|
|
482
|
+
* });
|
|
483
|
+
*/
|
|
484
|
+
export declare function useDeleteExportJobMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.DeleteExportJobMutation, Types.DeleteExportJobMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.DeleteExportJobMutation, any, Apollo.ApolloCache>;
|
|
485
|
+
export type DeleteExportJobMutationHookResult = ReturnType<typeof useDeleteExportJobMutation>;
|
|
486
|
+
export type DeleteExportJobMutationResult = Apollo.MutationResult<Types.DeleteExportJobMutation>;
|
|
487
|
+
export type DeleteExportJobMutationOptions = Apollo.BaseMutationOptions<Types.DeleteExportJobMutation, Types.DeleteExportJobMutationVariables>;
|
|
488
|
+
export declare const DeleteExportTemplateDocument: Apollo.DocumentNode;
|
|
489
|
+
export type DeleteExportTemplateMutationFn = Apollo.MutationFunction<Types.DeleteExportTemplateMutation, Types.DeleteExportTemplateMutationVariables>;
|
|
490
|
+
/**
|
|
491
|
+
* __useDeleteExportTemplateMutation__
|
|
492
|
+
*
|
|
493
|
+
* To run a mutation, you first call `useDeleteExportTemplateMutation` within a React component and pass it any options that fit your needs.
|
|
494
|
+
* When your component renders, `useDeleteExportTemplateMutation` returns a tuple that includes:
|
|
495
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
496
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
497
|
+
*
|
|
498
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
499
|
+
*
|
|
500
|
+
* @example
|
|
501
|
+
* const [deleteExportTemplateMutation, { data, loading, error }] = useDeleteExportTemplateMutation({
|
|
502
|
+
* variables: {
|
|
503
|
+
* context: // value for 'context'
|
|
504
|
+
* id: // value for 'id'
|
|
505
|
+
* },
|
|
506
|
+
* });
|
|
507
|
+
*/
|
|
508
|
+
export declare function useDeleteExportTemplateMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.DeleteExportTemplateMutation, Types.DeleteExportTemplateMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.DeleteExportTemplateMutation, any, Apollo.ApolloCache>;
|
|
509
|
+
export type DeleteExportTemplateMutationHookResult = ReturnType<typeof useDeleteExportTemplateMutation>;
|
|
510
|
+
export type DeleteExportTemplateMutationResult = Apollo.MutationResult<Types.DeleteExportTemplateMutation>;
|
|
511
|
+
export type DeleteExportTemplateMutationOptions = Apollo.BaseMutationOptions<Types.DeleteExportTemplateMutation, Types.DeleteExportTemplateMutationVariables>;
|
|
512
|
+
export declare const RetryExportJobDocument: Apollo.DocumentNode;
|
|
513
|
+
export type RetryExportJobMutationFn = Apollo.MutationFunction<Types.RetryExportJobMutation, Types.RetryExportJobMutationVariables>;
|
|
514
|
+
/**
|
|
515
|
+
* __useRetryExportJobMutation__
|
|
516
|
+
*
|
|
517
|
+
* To run a mutation, you first call `useRetryExportJobMutation` within a React component and pass it any options that fit your needs.
|
|
518
|
+
* When your component renders, `useRetryExportJobMutation` returns a tuple that includes:
|
|
519
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
520
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
521
|
+
*
|
|
522
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
523
|
+
*
|
|
524
|
+
* @example
|
|
525
|
+
* const [retryExportJobMutation, { data, loading, error }] = useRetryExportJobMutation({
|
|
526
|
+
* variables: {
|
|
527
|
+
* context: // value for 'context'
|
|
528
|
+
* id: // value for 'id'
|
|
529
|
+
* },
|
|
530
|
+
* });
|
|
531
|
+
*/
|
|
532
|
+
export declare function useRetryExportJobMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.RetryExportJobMutation, Types.RetryExportJobMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.RetryExportJobMutation, any, Apollo.ApolloCache>;
|
|
533
|
+
export type RetryExportJobMutationHookResult = ReturnType<typeof useRetryExportJobMutation>;
|
|
534
|
+
export type RetryExportJobMutationResult = Apollo.MutationResult<Types.RetryExportJobMutation>;
|
|
535
|
+
export type RetryExportJobMutationOptions = Apollo.BaseMutationOptions<Types.RetryExportJobMutation, Types.RetryExportJobMutationVariables>;
|
|
536
|
+
export declare const UpdateExportTemplateDocument: Apollo.DocumentNode;
|
|
537
|
+
export type UpdateExportTemplateMutationFn = Apollo.MutationFunction<Types.UpdateExportTemplateMutation, Types.UpdateExportTemplateMutationVariables>;
|
|
538
|
+
/**
|
|
539
|
+
* __useUpdateExportTemplateMutation__
|
|
540
|
+
*
|
|
541
|
+
* To run a mutation, you first call `useUpdateExportTemplateMutation` within a React component and pass it any options that fit your needs.
|
|
542
|
+
* When your component renders, `useUpdateExportTemplateMutation` returns a tuple that includes:
|
|
543
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
544
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
545
|
+
*
|
|
546
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
547
|
+
*
|
|
548
|
+
* @example
|
|
549
|
+
* const [updateExportTemplateMutation, { data, loading, error }] = useUpdateExportTemplateMutation({
|
|
550
|
+
* variables: {
|
|
551
|
+
* context: // value for 'context'
|
|
552
|
+
* id: // value for 'id'
|
|
553
|
+
* input: // value for 'input'
|
|
554
|
+
* },
|
|
555
|
+
* });
|
|
556
|
+
*/
|
|
557
|
+
export declare function useUpdateExportTemplateMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateExportTemplateMutation, Types.UpdateExportTemplateMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.UpdateExportTemplateMutation, any, Apollo.ApolloCache>;
|
|
558
|
+
export type UpdateExportTemplateMutationHookResult = ReturnType<typeof useUpdateExportTemplateMutation>;
|
|
559
|
+
export type UpdateExportTemplateMutationResult = Apollo.MutationResult<Types.UpdateExportTemplateMutation>;
|
|
560
|
+
export type UpdateExportTemplateMutationOptions = Apollo.BaseMutationOptions<Types.UpdateExportTemplateMutation, Types.UpdateExportTemplateMutationVariables>;
|
|
561
|
+
export declare const GetAvailableExportEntitiesDocument: Apollo.DocumentNode;
|
|
562
|
+
/**
|
|
563
|
+
* __useGetAvailableExportEntitiesQuery__
|
|
564
|
+
*
|
|
565
|
+
* To run a query within a React component, call `useGetAvailableExportEntitiesQuery` and pass it any options that fit your needs.
|
|
566
|
+
* When your component renders, `useGetAvailableExportEntitiesQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
567
|
+
* you can use to render your UI.
|
|
568
|
+
*
|
|
569
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
570
|
+
*
|
|
571
|
+
* @example
|
|
572
|
+
* const { data, loading, error } = useGetAvailableExportEntitiesQuery({
|
|
573
|
+
* variables: {
|
|
574
|
+
* context: // value for 'context'
|
|
575
|
+
* pagination: // value for 'pagination'
|
|
576
|
+
* },
|
|
577
|
+
* });
|
|
578
|
+
*/
|
|
579
|
+
export declare function useGetAvailableExportEntitiesQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetAvailableExportEntitiesQuery, Types.GetAvailableExportEntitiesQueryVariables> & ({
|
|
580
|
+
variables: Types.GetAvailableExportEntitiesQueryVariables;
|
|
581
|
+
skip?: boolean;
|
|
582
|
+
} | {
|
|
583
|
+
skip: boolean;
|
|
584
|
+
})): ApolloReactHooks.useQuery.Result<Types.GetAvailableExportEntitiesQuery, Types.GetAvailableExportEntitiesQueryVariables, "complete" | "empty" | "streaming", Types.GetAvailableExportEntitiesQueryVariables>;
|
|
585
|
+
export declare function useGetAvailableExportEntitiesLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetAvailableExportEntitiesQuery, Types.GetAvailableExportEntitiesQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetAvailableExportEntitiesQuery, Types.GetAvailableExportEntitiesQueryVariables, "complete" | "empty" | "streaming">;
|
|
586
|
+
export declare function useGetAvailableExportEntitiesSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetAvailableExportEntitiesQuery, Types.GetAvailableExportEntitiesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetAvailableExportEntitiesQuery, Types.GetAvailableExportEntitiesQueryVariables>;
|
|
587
|
+
export declare function useGetAvailableExportEntitiesSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetAvailableExportEntitiesQuery, Types.GetAvailableExportEntitiesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetAvailableExportEntitiesQuery | undefined, Types.GetAvailableExportEntitiesQueryVariables>;
|
|
588
|
+
export type GetAvailableExportEntitiesQueryHookResult = ReturnType<typeof useGetAvailableExportEntitiesQuery>;
|
|
589
|
+
export type GetAvailableExportEntitiesLazyQueryHookResult = ReturnType<typeof useGetAvailableExportEntitiesLazyQuery>;
|
|
590
|
+
export type GetAvailableExportEntitiesSuspenseQueryHookResult = ReturnType<typeof useGetAvailableExportEntitiesSuspenseQuery>;
|
|
591
|
+
export type GetAvailableExportEntitiesQueryResult = Apollo.QueryResult<Types.GetAvailableExportEntitiesQuery, Types.GetAvailableExportEntitiesQueryVariables>;
|
|
592
|
+
export declare const GetExportJobDocument: Apollo.DocumentNode;
|
|
593
|
+
/**
|
|
594
|
+
* __useGetExportJobQuery__
|
|
595
|
+
*
|
|
596
|
+
* To run a query within a React component, call `useGetExportJobQuery` and pass it any options that fit your needs.
|
|
597
|
+
* When your component renders, `useGetExportJobQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
598
|
+
* you can use to render your UI.
|
|
599
|
+
*
|
|
600
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
601
|
+
*
|
|
602
|
+
* @example
|
|
603
|
+
* const { data, loading, error } = useGetExportJobQuery({
|
|
604
|
+
* variables: {
|
|
605
|
+
* context: // value for 'context'
|
|
606
|
+
* id: // value for 'id'
|
|
607
|
+
* },
|
|
608
|
+
* });
|
|
609
|
+
*/
|
|
610
|
+
export declare function useGetExportJobQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetExportJobQuery, Types.GetExportJobQueryVariables> & ({
|
|
611
|
+
variables: Types.GetExportJobQueryVariables;
|
|
612
|
+
skip?: boolean;
|
|
613
|
+
} | {
|
|
614
|
+
skip: boolean;
|
|
615
|
+
})): ApolloReactHooks.useQuery.Result<Types.GetExportJobQuery, Types.GetExportJobQueryVariables, "complete" | "empty" | "streaming", Types.GetExportJobQueryVariables>;
|
|
616
|
+
export declare function useGetExportJobLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetExportJobQuery, Types.GetExportJobQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetExportJobQuery, Types.GetExportJobQueryVariables, "complete" | "empty" | "streaming">;
|
|
617
|
+
export declare function useGetExportJobSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetExportJobQuery, Types.GetExportJobQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetExportJobQuery, Types.GetExportJobQueryVariables>;
|
|
618
|
+
export declare function useGetExportJobSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetExportJobQuery, Types.GetExportJobQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetExportJobQuery | undefined, Types.GetExportJobQueryVariables>;
|
|
619
|
+
export type GetExportJobQueryHookResult = ReturnType<typeof useGetExportJobQuery>;
|
|
620
|
+
export type GetExportJobLazyQueryHookResult = ReturnType<typeof useGetExportJobLazyQuery>;
|
|
621
|
+
export type GetExportJobSuspenseQueryHookResult = ReturnType<typeof useGetExportJobSuspenseQuery>;
|
|
622
|
+
export type GetExportJobQueryResult = Apollo.QueryResult<Types.GetExportJobQuery, Types.GetExportJobQueryVariables>;
|
|
623
|
+
export declare const GetExportPartDocument: Apollo.DocumentNode;
|
|
624
|
+
/**
|
|
625
|
+
* __useGetExportPartQuery__
|
|
626
|
+
*
|
|
627
|
+
* To run a query within a React component, call `useGetExportPartQuery` and pass it any options that fit your needs.
|
|
628
|
+
* When your component renders, `useGetExportPartQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
629
|
+
* you can use to render your UI.
|
|
630
|
+
*
|
|
631
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
632
|
+
*
|
|
633
|
+
* @example
|
|
634
|
+
* const { data, loading, error } = useGetExportPartQuery({
|
|
635
|
+
* variables: {
|
|
636
|
+
* context: // value for 'context'
|
|
637
|
+
* id: // value for 'id'
|
|
638
|
+
* },
|
|
639
|
+
* });
|
|
640
|
+
*/
|
|
641
|
+
export declare function useGetExportPartQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetExportPartQuery, Types.GetExportPartQueryVariables> & ({
|
|
642
|
+
variables: Types.GetExportPartQueryVariables;
|
|
643
|
+
skip?: boolean;
|
|
644
|
+
} | {
|
|
645
|
+
skip: boolean;
|
|
646
|
+
})): ApolloReactHooks.useQuery.Result<Types.GetExportPartQuery, Types.GetExportPartQueryVariables, "complete" | "empty" | "streaming", Types.GetExportPartQueryVariables>;
|
|
647
|
+
export declare function useGetExportPartLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetExportPartQuery, Types.GetExportPartQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetExportPartQuery, Types.GetExportPartQueryVariables, "complete" | "empty" | "streaming">;
|
|
648
|
+
export declare function useGetExportPartSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetExportPartQuery, Types.GetExportPartQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetExportPartQuery, Types.GetExportPartQueryVariables>;
|
|
649
|
+
export declare function useGetExportPartSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetExportPartQuery, Types.GetExportPartQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetExportPartQuery | undefined, Types.GetExportPartQueryVariables>;
|
|
650
|
+
export type GetExportPartQueryHookResult = ReturnType<typeof useGetExportPartQuery>;
|
|
651
|
+
export type GetExportPartLazyQueryHookResult = ReturnType<typeof useGetExportPartLazyQuery>;
|
|
652
|
+
export type GetExportPartSuspenseQueryHookResult = ReturnType<typeof useGetExportPartSuspenseQuery>;
|
|
653
|
+
export type GetExportPartQueryResult = Apollo.QueryResult<Types.GetExportPartQuery, Types.GetExportPartQueryVariables>;
|
|
654
|
+
export declare const GetExportTemplateDocument: Apollo.DocumentNode;
|
|
655
|
+
/**
|
|
656
|
+
* __useGetExportTemplateQuery__
|
|
657
|
+
*
|
|
658
|
+
* To run a query within a React component, call `useGetExportTemplateQuery` and pass it any options that fit your needs.
|
|
659
|
+
* When your component renders, `useGetExportTemplateQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
660
|
+
* you can use to render your UI.
|
|
661
|
+
*
|
|
662
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
663
|
+
*
|
|
664
|
+
* @example
|
|
665
|
+
* const { data, loading, error } = useGetExportTemplateQuery({
|
|
666
|
+
* variables: {
|
|
667
|
+
* context: // value for 'context'
|
|
668
|
+
* id: // value for 'id'
|
|
669
|
+
* },
|
|
670
|
+
* });
|
|
671
|
+
*/
|
|
672
|
+
export declare function useGetExportTemplateQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetExportTemplateQuery, Types.GetExportTemplateQueryVariables> & ({
|
|
673
|
+
variables: Types.GetExportTemplateQueryVariables;
|
|
674
|
+
skip?: boolean;
|
|
675
|
+
} | {
|
|
676
|
+
skip: boolean;
|
|
677
|
+
})): ApolloReactHooks.useQuery.Result<Types.GetExportTemplateQuery, Types.GetExportTemplateQueryVariables, "complete" | "empty" | "streaming", Types.GetExportTemplateQueryVariables>;
|
|
678
|
+
export declare function useGetExportTemplateLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetExportTemplateQuery, Types.GetExportTemplateQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetExportTemplateQuery, Types.GetExportTemplateQueryVariables, "complete" | "empty" | "streaming">;
|
|
679
|
+
export declare function useGetExportTemplateSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetExportTemplateQuery, Types.GetExportTemplateQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetExportTemplateQuery, Types.GetExportTemplateQueryVariables>;
|
|
680
|
+
export declare function useGetExportTemplateSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetExportTemplateQuery, Types.GetExportTemplateQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetExportTemplateQuery | undefined, Types.GetExportTemplateQueryVariables>;
|
|
681
|
+
export type GetExportTemplateQueryHookResult = ReturnType<typeof useGetExportTemplateQuery>;
|
|
682
|
+
export type GetExportTemplateLazyQueryHookResult = ReturnType<typeof useGetExportTemplateLazyQuery>;
|
|
683
|
+
export type GetExportTemplateSuspenseQueryHookResult = ReturnType<typeof useGetExportTemplateSuspenseQuery>;
|
|
684
|
+
export type GetExportTemplateQueryResult = Apollo.QueryResult<Types.GetExportTemplateQuery, Types.GetExportTemplateQueryVariables>;
|
|
685
|
+
export declare const ListExportTemplatesDocument: Apollo.DocumentNode;
|
|
686
|
+
/**
|
|
687
|
+
* __useListExportTemplatesQuery__
|
|
688
|
+
*
|
|
689
|
+
* To run a query within a React component, call `useListExportTemplatesQuery` and pass it any options that fit your needs.
|
|
690
|
+
* When your component renders, `useListExportTemplatesQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
691
|
+
* you can use to render your UI.
|
|
692
|
+
*
|
|
693
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
694
|
+
*
|
|
695
|
+
* @example
|
|
696
|
+
* const { data, loading, error } = useListExportTemplatesQuery({
|
|
697
|
+
* variables: {
|
|
698
|
+
* context: // value for 'context'
|
|
699
|
+
* pagination: // value for 'pagination'
|
|
700
|
+
* },
|
|
701
|
+
* });
|
|
702
|
+
*/
|
|
703
|
+
export declare function useListExportTemplatesQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.ListExportTemplatesQuery, Types.ListExportTemplatesQueryVariables> & ({
|
|
704
|
+
variables: Types.ListExportTemplatesQueryVariables;
|
|
705
|
+
skip?: boolean;
|
|
706
|
+
} | {
|
|
707
|
+
skip: boolean;
|
|
708
|
+
})): ApolloReactHooks.useQuery.Result<Types.ListExportTemplatesQuery, Types.ListExportTemplatesQueryVariables, "complete" | "empty" | "streaming", Types.ListExportTemplatesQueryVariables>;
|
|
709
|
+
export declare function useListExportTemplatesLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ListExportTemplatesQuery, Types.ListExportTemplatesQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.ListExportTemplatesQuery, Types.ListExportTemplatesQueryVariables, "complete" | "empty" | "streaming">;
|
|
710
|
+
export declare function useListExportTemplatesSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ListExportTemplatesQuery, Types.ListExportTemplatesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListExportTemplatesQuery, Types.ListExportTemplatesQueryVariables>;
|
|
711
|
+
export declare function useListExportTemplatesSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListExportTemplatesQuery, Types.ListExportTemplatesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListExportTemplatesQuery | undefined, Types.ListExportTemplatesQueryVariables>;
|
|
712
|
+
export type ListExportTemplatesQueryHookResult = ReturnType<typeof useListExportTemplatesQuery>;
|
|
713
|
+
export type ListExportTemplatesLazyQueryHookResult = ReturnType<typeof useListExportTemplatesLazyQuery>;
|
|
714
|
+
export type ListExportTemplatesSuspenseQueryHookResult = ReturnType<typeof useListExportTemplatesSuspenseQuery>;
|
|
715
|
+
export type ListExportTemplatesQueryResult = Apollo.QueryResult<Types.ListExportTemplatesQuery, Types.ListExportTemplatesQueryVariables>;
|
|
716
|
+
export declare const ListExportJobsDocument: Apollo.DocumentNode;
|
|
717
|
+
/**
|
|
718
|
+
* __useListExportJobsQuery__
|
|
719
|
+
*
|
|
720
|
+
* To run a query within a React component, call `useListExportJobsQuery` and pass it any options that fit your needs.
|
|
721
|
+
* When your component renders, `useListExportJobsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
722
|
+
* you can use to render your UI.
|
|
723
|
+
*
|
|
724
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
725
|
+
*
|
|
726
|
+
* @example
|
|
727
|
+
* const { data, loading, error } = useListExportJobsQuery({
|
|
728
|
+
* variables: {
|
|
729
|
+
* filter: // value for 'filter'
|
|
730
|
+
* pagination: // value for 'pagination'
|
|
731
|
+
* context: // value for 'context'
|
|
732
|
+
* },
|
|
733
|
+
* });
|
|
734
|
+
*/
|
|
735
|
+
export declare function useListExportJobsQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.ListExportJobsQuery, Types.ListExportJobsQueryVariables> & ({
|
|
736
|
+
variables: Types.ListExportJobsQueryVariables;
|
|
737
|
+
skip?: boolean;
|
|
738
|
+
} | {
|
|
739
|
+
skip: boolean;
|
|
740
|
+
})): ApolloReactHooks.useQuery.Result<Types.ListExportJobsQuery, Types.ListExportJobsQueryVariables, "complete" | "empty" | "streaming", Types.ListExportJobsQueryVariables>;
|
|
741
|
+
export declare function useListExportJobsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ListExportJobsQuery, Types.ListExportJobsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.ListExportJobsQuery, Types.ListExportJobsQueryVariables, "complete" | "empty" | "streaming">;
|
|
742
|
+
export declare function useListExportJobsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ListExportJobsQuery, Types.ListExportJobsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListExportJobsQuery, Types.ListExportJobsQueryVariables>;
|
|
743
|
+
export declare function useListExportJobsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListExportJobsQuery, Types.ListExportJobsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListExportJobsQuery | undefined, Types.ListExportJobsQueryVariables>;
|
|
744
|
+
export type ListExportJobsQueryHookResult = ReturnType<typeof useListExportJobsQuery>;
|
|
745
|
+
export type ListExportJobsLazyQueryHookResult = ReturnType<typeof useListExportJobsLazyQuery>;
|
|
746
|
+
export type ListExportJobsSuspenseQueryHookResult = ReturnType<typeof useListExportJobsSuspenseQuery>;
|
|
747
|
+
export type ListExportJobsQueryResult = Apollo.QueryResult<Types.ListExportJobsQuery, Types.ListExportJobsQueryVariables>;
|
|
748
|
+
export declare const ExportJobProgressDocument: Apollo.DocumentNode;
|
|
749
|
+
/**
|
|
750
|
+
* __useExportJobProgressSubscription__
|
|
751
|
+
*
|
|
752
|
+
* To run a query within a React component, call `useExportJobProgressSubscription` and pass it any options that fit your needs.
|
|
753
|
+
* When your component renders, `useExportJobProgressSubscription` returns an object from Apollo Client that contains loading, error, and data properties
|
|
754
|
+
* you can use to render your UI.
|
|
755
|
+
*
|
|
756
|
+
* @param baseOptions options that will be passed into the subscription, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
757
|
+
*
|
|
758
|
+
* @example
|
|
759
|
+
* const { data, loading, error } = useExportJobProgressSubscription({
|
|
760
|
+
* variables: {
|
|
761
|
+
* jobId: // value for 'jobId'
|
|
762
|
+
* },
|
|
763
|
+
* });
|
|
764
|
+
*/
|
|
765
|
+
export declare function useExportJobProgressSubscription(baseOptions: ApolloReactHooks.SubscriptionHookOptions<Types.ExportJobProgressSubscription, Types.ExportJobProgressSubscriptionVariables> & ({
|
|
766
|
+
variables: Types.ExportJobProgressSubscriptionVariables;
|
|
767
|
+
skip?: boolean;
|
|
768
|
+
} | {
|
|
769
|
+
skip: boolean;
|
|
770
|
+
})): ApolloReactHooks.useSubscription.Result<Types.ExportJobProgressSubscription>;
|
|
771
|
+
export type ExportJobProgressSubscriptionHookResult = ReturnType<typeof useExportJobProgressSubscription>;
|
|
772
|
+
export type ExportJobProgressSubscriptionResult = Apollo.SubscriptionResult<Types.ExportJobProgressSubscription>;
|
|
773
|
+
//# sourceMappingURL=wspace-operations.d.ts.map
|