@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 @@
|
|
|
1
|
+
{"version":3,"file":"wspace-operations.d.ts","sourceRoot":"","sources":["../../src/generated/wspace-operations.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,319 @@
|
|
|
1
|
+
import { gql as e } from "@apollo/client";
|
|
2
|
+
import "@apollo/client/react";
|
|
3
|
+
//#region src/generated/wspace-operations.ts
|
|
4
|
+
var t = e`
|
|
5
|
+
mutation CancelExportJob($context: ContextInput, $id: ID!) {
|
|
6
|
+
cancelExportJob(context: $context, id: $id) {
|
|
7
|
+
id
|
|
8
|
+
status
|
|
9
|
+
updatedAt
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
`, n = e`
|
|
13
|
+
mutation CreateExportJob($context: ContextInput, $input: CreateExportJobInput!) {
|
|
14
|
+
createExportJob(context: $context, input: $input) {
|
|
15
|
+
id
|
|
16
|
+
name
|
|
17
|
+
description
|
|
18
|
+
status
|
|
19
|
+
format
|
|
20
|
+
archiveFormat
|
|
21
|
+
entityTypes
|
|
22
|
+
entityFilters
|
|
23
|
+
includeMedia
|
|
24
|
+
includeMetadata
|
|
25
|
+
dateRangeStart
|
|
26
|
+
dateRangeEnd
|
|
27
|
+
processedEntities
|
|
28
|
+
totalEntities
|
|
29
|
+
totalSizeBytes
|
|
30
|
+
progress
|
|
31
|
+
templateId
|
|
32
|
+
workspaceId
|
|
33
|
+
tenantId
|
|
34
|
+
createdBy
|
|
35
|
+
createdAt
|
|
36
|
+
updatedAt
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
`, r = e`
|
|
40
|
+
mutation CreateExportTemplate($context: ContextInput, $input: CreateExportTemplateInput!) {
|
|
41
|
+
createExportTemplate(context: $context, input: $input) {
|
|
42
|
+
id
|
|
43
|
+
name
|
|
44
|
+
description
|
|
45
|
+
entityTypes
|
|
46
|
+
format
|
|
47
|
+
entityFilters
|
|
48
|
+
includeMedia
|
|
49
|
+
includeMetadata
|
|
50
|
+
isDefault
|
|
51
|
+
workspaceId
|
|
52
|
+
tenantId
|
|
53
|
+
createdBy
|
|
54
|
+
createdAt
|
|
55
|
+
updatedAt
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
`, i = e`
|
|
59
|
+
mutation DeleteExportJob($context: ContextInput, $id: ID!) {
|
|
60
|
+
deleteExportJob(context: $context, id: $id)
|
|
61
|
+
}
|
|
62
|
+
`, a = e`
|
|
63
|
+
mutation DeleteExportTemplate($context: ContextInput, $id: ID!) {
|
|
64
|
+
deleteExportTemplate(context: $context, id: $id)
|
|
65
|
+
}
|
|
66
|
+
`, o = e`
|
|
67
|
+
mutation RetryExportJob($context: ContextInput, $id: ID!) {
|
|
68
|
+
retryExportJob(context: $context, id: $id) {
|
|
69
|
+
id
|
|
70
|
+
name
|
|
71
|
+
description
|
|
72
|
+
status
|
|
73
|
+
archiveFormat
|
|
74
|
+
progress
|
|
75
|
+
entityTypes
|
|
76
|
+
format
|
|
77
|
+
processedEntities
|
|
78
|
+
totalEntities
|
|
79
|
+
totalSizeBytes
|
|
80
|
+
templateId
|
|
81
|
+
workspaceId
|
|
82
|
+
createdBy
|
|
83
|
+
createdAt
|
|
84
|
+
updatedAt
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
`;
|
|
88
|
+
e`
|
|
89
|
+
mutation UpdateExportTemplate($context: ContextInput, $id: ID!, $input: UpdateExportTemplateInput!) {
|
|
90
|
+
updateExportTemplate(context: $context, id: $id, input: $input) {
|
|
91
|
+
id
|
|
92
|
+
name
|
|
93
|
+
description
|
|
94
|
+
entityTypes
|
|
95
|
+
format
|
|
96
|
+
isDefault
|
|
97
|
+
workspaceId
|
|
98
|
+
createdBy
|
|
99
|
+
createdAt
|
|
100
|
+
updatedAt
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
`;
|
|
104
|
+
var s = e`
|
|
105
|
+
query GetAvailableExportEntities($context: ContextInput!, $pagination: ExportPaginationInput) {
|
|
106
|
+
getAvailableExportEntities(context: $context, pagination: $pagination) {
|
|
107
|
+
edges {
|
|
108
|
+
cursor
|
|
109
|
+
node {
|
|
110
|
+
entityType
|
|
111
|
+
displayName
|
|
112
|
+
description
|
|
113
|
+
enabled
|
|
114
|
+
estimatedSize
|
|
115
|
+
supportsDateRange
|
|
116
|
+
supportsMediaExport
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
pageInfo {
|
|
120
|
+
hasNextPage
|
|
121
|
+
hasPreviousPage
|
|
122
|
+
startCursor
|
|
123
|
+
endCursor
|
|
124
|
+
}
|
|
125
|
+
totalCount
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
`, c = e`
|
|
129
|
+
query GetExportJob($context: ContextInput, $id: ID!) {
|
|
130
|
+
getExportJob(context: $context, id: $id) {
|
|
131
|
+
id
|
|
132
|
+
name
|
|
133
|
+
description
|
|
134
|
+
status
|
|
135
|
+
format
|
|
136
|
+
archiveFormat
|
|
137
|
+
entityTypes
|
|
138
|
+
entityFilters
|
|
139
|
+
includeMedia
|
|
140
|
+
includeMetadata
|
|
141
|
+
dateRangeStart
|
|
142
|
+
dateRangeEnd
|
|
143
|
+
parts {
|
|
144
|
+
id
|
|
145
|
+
partNumber
|
|
146
|
+
fileName
|
|
147
|
+
sizeBytes
|
|
148
|
+
entityTypes
|
|
149
|
+
downloadUrl
|
|
150
|
+
downloadExpiresAt
|
|
151
|
+
checksum
|
|
152
|
+
}
|
|
153
|
+
processedEntities
|
|
154
|
+
totalEntities
|
|
155
|
+
totalSizeBytes
|
|
156
|
+
progress
|
|
157
|
+
errorMessage
|
|
158
|
+
errorCode
|
|
159
|
+
startedAt
|
|
160
|
+
completedAt
|
|
161
|
+
expiresAt
|
|
162
|
+
templateId
|
|
163
|
+
template {
|
|
164
|
+
id
|
|
165
|
+
name
|
|
166
|
+
description
|
|
167
|
+
}
|
|
168
|
+
temporalWorkflowId
|
|
169
|
+
workspaceId
|
|
170
|
+
tenantId
|
|
171
|
+
createdBy
|
|
172
|
+
createdAt
|
|
173
|
+
updatedAt
|
|
174
|
+
updatedBy
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
`;
|
|
178
|
+
e`
|
|
179
|
+
query GetExportPart($context: ContextInput, $id: ID!) {
|
|
180
|
+
getExportPart(context: $context, id: $id) {
|
|
181
|
+
id
|
|
182
|
+
jobId
|
|
183
|
+
partNumber
|
|
184
|
+
fileName
|
|
185
|
+
sizeBytes
|
|
186
|
+
entityTypes
|
|
187
|
+
downloadUrl
|
|
188
|
+
downloadExpiresAt
|
|
189
|
+
checksum
|
|
190
|
+
createdAt
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
`;
|
|
194
|
+
var l = e`
|
|
195
|
+
query GetExportTemplate($context: ContextInput, $id: ID!) {
|
|
196
|
+
getExportTemplate(context: $context, id: $id) {
|
|
197
|
+
id
|
|
198
|
+
name
|
|
199
|
+
description
|
|
200
|
+
entityTypes
|
|
201
|
+
format
|
|
202
|
+
entityFilters
|
|
203
|
+
includeMedia
|
|
204
|
+
includeMetadata
|
|
205
|
+
isDefault
|
|
206
|
+
workspaceId
|
|
207
|
+
tenantId
|
|
208
|
+
createdBy
|
|
209
|
+
createdAt
|
|
210
|
+
updatedAt
|
|
211
|
+
updatedBy
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
`, u = e`
|
|
215
|
+
query ListExportTemplates($context: ContextInput!, $pagination: ExportPaginationInput) {
|
|
216
|
+
listExportTemplates(context: $context, pagination: $pagination) {
|
|
217
|
+
edges {
|
|
218
|
+
cursor
|
|
219
|
+
node {
|
|
220
|
+
id
|
|
221
|
+
name
|
|
222
|
+
description
|
|
223
|
+
entityTypes
|
|
224
|
+
format
|
|
225
|
+
isDefault
|
|
226
|
+
workspaceId
|
|
227
|
+
tenantId
|
|
228
|
+
createdBy
|
|
229
|
+
createdAt
|
|
230
|
+
updatedAt
|
|
231
|
+
updatedBy
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
pageInfo {
|
|
235
|
+
hasNextPage
|
|
236
|
+
hasPreviousPage
|
|
237
|
+
startCursor
|
|
238
|
+
endCursor
|
|
239
|
+
}
|
|
240
|
+
totalCount
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
`, d = e`
|
|
244
|
+
query ListExportJobs($filter: ExportJobFilterInput, $pagination: ExportPaginationInput, $context: ContextInput!) {
|
|
245
|
+
listExportJobs(filter: $filter, pagination: $pagination, context: $context) {
|
|
246
|
+
edges {
|
|
247
|
+
cursor
|
|
248
|
+
node {
|
|
249
|
+
id
|
|
250
|
+
name
|
|
251
|
+
description
|
|
252
|
+
status
|
|
253
|
+
format
|
|
254
|
+
archiveFormat
|
|
255
|
+
entityTypes
|
|
256
|
+
progress
|
|
257
|
+
totalEntities
|
|
258
|
+
processedEntities
|
|
259
|
+
totalSizeBytes
|
|
260
|
+
errorMessage
|
|
261
|
+
startedAt
|
|
262
|
+
completedAt
|
|
263
|
+
expiresAt
|
|
264
|
+
templateId
|
|
265
|
+
workspaceId
|
|
266
|
+
createdBy
|
|
267
|
+
createdAt
|
|
268
|
+
updatedAt
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
pageInfo {
|
|
272
|
+
hasNextPage
|
|
273
|
+
hasPreviousPage
|
|
274
|
+
startCursor
|
|
275
|
+
endCursor
|
|
276
|
+
}
|
|
277
|
+
totalCount
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
`, f = e`
|
|
281
|
+
subscription ExportJobProgress($jobId: ID!) {
|
|
282
|
+
exportJobProgress(jobId: $jobId) {
|
|
283
|
+
id
|
|
284
|
+
name
|
|
285
|
+
description
|
|
286
|
+
status
|
|
287
|
+
format
|
|
288
|
+
archiveFormat
|
|
289
|
+
entityTypes
|
|
290
|
+
progress
|
|
291
|
+
processedEntities
|
|
292
|
+
totalEntities
|
|
293
|
+
totalSizeBytes
|
|
294
|
+
errorMessage
|
|
295
|
+
startedAt
|
|
296
|
+
completedAt
|
|
297
|
+
expiresAt
|
|
298
|
+
templateId
|
|
299
|
+
workspaceId
|
|
300
|
+
createdBy
|
|
301
|
+
createdAt
|
|
302
|
+
updatedAt
|
|
303
|
+
parts {
|
|
304
|
+
id
|
|
305
|
+
partNumber
|
|
306
|
+
fileName
|
|
307
|
+
sizeBytes
|
|
308
|
+
entityTypes
|
|
309
|
+
downloadUrl
|
|
310
|
+
downloadExpiresAt
|
|
311
|
+
checksum
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
`;
|
|
316
|
+
//#endregion
|
|
317
|
+
export { t as CancelExportJobDocument, n as CreateExportJobDocument, r as CreateExportTemplateDocument, i as DeleteExportJobDocument, a as DeleteExportTemplateDocument, f as ExportJobProgressDocument, s as GetAvailableExportEntitiesDocument, c as GetExportJobDocument, l as GetExportTemplateDocument, d as ListExportJobsDocument, u as ListExportTemplatesDocument, o as RetryExportJobDocument };
|
|
318
|
+
|
|
319
|
+
//# sourceMappingURL=wspace-operations.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"wspace-operations.js","names":[],"sources":["../../src/generated/wspace-operations.ts"],"sourcesContent":["// @ts-nocheck\nimport * as Types from './wspace-types';\n\nimport { gql } from '@apollo/client';\nimport * as Apollo from '@apollo/client';\nimport * as ApolloReactHooks from '@apollo/client/react';\nconst defaultOptions = {} as const;\nexport type CancelExportJobMutationVariables = Types.Exact<{\n context?: Types.InputMaybe<Types.ContextInput>;\n id: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type CancelExportJobMutation = { __typename?: 'Mutation', cancelExportJob: { __typename?: 'ExportJob', id: string, status: Types.ExportJobStatus, updatedAt: string } };\n\nexport type CreateExportJobMutationVariables = Types.Exact<{\n context?: Types.InputMaybe<Types.ContextInput>;\n input: Types.CreateExportJobInput;\n}>;\n\n\nexport type CreateExportJobMutation = { __typename?: 'Mutation', createExportJob: { __typename?: 'ExportJob', id: string, name: string, description?: string | null, status: Types.ExportJobStatus, format: Types.ExportFormat, archiveFormat: Types.ExportArchiveFormat, entityTypes: Array<string>, entityFilters?: Record<string, unknown> | null, includeMedia: boolean, includeMetadata: boolean, dateRangeStart?: string | null, dateRangeEnd?: string | null, processedEntities: number, totalEntities: number, totalSizeBytes: string, progress: number, templateId?: string | null, workspaceId: string, tenantId?: string | null, createdBy: string, createdAt: string, updatedAt: string } };\n\nexport type CreateExportTemplateMutationVariables = Types.Exact<{\n context?: Types.InputMaybe<Types.ContextInput>;\n input: Types.CreateExportTemplateInput;\n}>;\n\n\nexport type CreateExportTemplateMutation = { __typename?: 'Mutation', createExportTemplate: { __typename?: 'ExportTemplate', id: string, name: string, description?: string | null, entityTypes: Array<string>, format: Types.ExportFormat, entityFilters?: Record<string, unknown> | null, includeMedia: boolean, includeMetadata: boolean, isDefault: boolean, workspaceId: string, tenantId?: string | null, createdBy: string, createdAt: string, updatedAt: string } };\n\nexport type DeleteExportJobMutationVariables = Types.Exact<{\n context?: Types.InputMaybe<Types.ContextInput>;\n id: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type DeleteExportJobMutation = { __typename?: 'Mutation', deleteExportJob: boolean };\n\nexport type DeleteExportTemplateMutationVariables = Types.Exact<{\n context?: Types.InputMaybe<Types.ContextInput>;\n id: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type DeleteExportTemplateMutation = { __typename?: 'Mutation', deleteExportTemplate: boolean };\n\nexport type RetryExportJobMutationVariables = Types.Exact<{\n context?: Types.InputMaybe<Types.ContextInput>;\n id: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type RetryExportJobMutation = { __typename?: 'Mutation', retryExportJob: { __typename?: 'ExportJob', id: string, name: string, description?: string | null, status: Types.ExportJobStatus, archiveFormat: Types.ExportArchiveFormat, progress: number, entityTypes: Array<string>, format: Types.ExportFormat, processedEntities: number, totalEntities: number, totalSizeBytes: string, templateId?: string | null, workspaceId: string, createdBy: string, createdAt: string, updatedAt: string } };\n\nexport type UpdateExportTemplateMutationVariables = Types.Exact<{\n context?: Types.InputMaybe<Types.ContextInput>;\n id: Types.Scalars['ID']['input'];\n input: Types.UpdateExportTemplateInput;\n}>;\n\n\nexport type UpdateExportTemplateMutation = { __typename?: 'Mutation', updateExportTemplate: { __typename?: 'ExportTemplate', id: string, name: string, description?: string | null, entityTypes: Array<string>, format: Types.ExportFormat, isDefault: boolean, workspaceId: string, createdBy: string, createdAt: string, updatedAt: string } };\n\nexport type GetAvailableExportEntitiesQueryVariables = Types.Exact<{\n context: Types.ContextInput;\n pagination?: Types.InputMaybe<Types.ExportPaginationInput>;\n}>;\n\n\nexport type GetAvailableExportEntitiesQuery = { __typename?: 'Query', getAvailableExportEntities: { __typename?: 'ExportAvailableEntityConnection', totalCount: number, edges: Array<{ __typename?: 'ExportAvailableEntityEdge', cursor: string, node: { __typename?: 'ExportAvailableEntity', entityType: string, displayName: string, description?: string | null, enabled: boolean, estimatedSize?: string | null, supportsDateRange: boolean, supportsMediaExport: boolean } }>, pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, hasPreviousPage: boolean, startCursor?: string | null, endCursor?: string | null } } };\n\nexport type GetExportJobQueryVariables = Types.Exact<{\n context?: Types.InputMaybe<Types.ContextInput>;\n id: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type GetExportJobQuery = { __typename?: 'Query', getExportJob?: { __typename?: 'ExportJob', id: string, name: string, description?: string | null, status: Types.ExportJobStatus, format: Types.ExportFormat, archiveFormat: Types.ExportArchiveFormat, entityTypes: Array<string>, entityFilters?: Record<string, unknown> | null, includeMedia: boolean, includeMetadata: boolean, dateRangeStart?: string | null, dateRangeEnd?: string | null, processedEntities: number, totalEntities: number, totalSizeBytes: string, progress: number, errorMessage?: string | null, errorCode?: string | null, startedAt?: string | null, completedAt?: string | null, expiresAt?: string | null, templateId?: string | null, temporalWorkflowId?: string | null, workspaceId: string, tenantId?: string | null, createdBy: string, createdAt: string, updatedAt: string, updatedBy?: string | null, parts: Array<{ __typename?: 'ExportPart', id: string, partNumber: number, fileName: string, sizeBytes: string, entityTypes: Array<string>, downloadUrl?: string | null, downloadExpiresAt?: string | null, checksum?: string | null }>, template?: { __typename?: 'ExportTemplate', id: string, name: string, description?: string | null } | null } | null };\n\nexport type GetExportPartQueryVariables = Types.Exact<{\n context?: Types.InputMaybe<Types.ContextInput>;\n id: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type GetExportPartQuery = { __typename?: 'Query', getExportPart?: { __typename?: 'ExportPart', id: string, jobId: string, partNumber: number, fileName: string, sizeBytes: string, entityTypes: Array<string>, downloadUrl?: string | null, downloadExpiresAt?: string | null, checksum?: string | null, createdAt: string } | null };\n\nexport type GetExportTemplateQueryVariables = Types.Exact<{\n context?: Types.InputMaybe<Types.ContextInput>;\n id: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type GetExportTemplateQuery = { __typename?: 'Query', getExportTemplate?: { __typename?: 'ExportTemplate', id: string, name: string, description?: string | null, entityTypes: Array<string>, format: Types.ExportFormat, entityFilters?: Record<string, unknown> | null, includeMedia: boolean, includeMetadata: boolean, isDefault: boolean, workspaceId: string, tenantId?: string | null, createdBy: string, createdAt: string, updatedAt: string, updatedBy?: string | null } | null };\n\nexport type ListExportTemplatesQueryVariables = Types.Exact<{\n context: Types.ContextInput;\n pagination?: Types.InputMaybe<Types.ExportPaginationInput>;\n}>;\n\n\nexport type ListExportTemplatesQuery = { __typename?: 'Query', listExportTemplates: { __typename?: 'ExportTemplateConnection', totalCount: number, edges: Array<{ __typename?: 'ExportTemplateEdge', cursor: string, node: { __typename?: 'ExportTemplate', id: string, name: string, description?: string | null, entityTypes: Array<string>, format: Types.ExportFormat, isDefault: boolean, workspaceId: string, tenantId?: string | null, createdBy: string, createdAt: string, updatedAt: string, updatedBy?: string | null } }>, pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, hasPreviousPage: boolean, startCursor?: string | null, endCursor?: string | null } } };\n\nexport type ListExportJobsQueryVariables = Types.Exact<{\n filter?: Types.InputMaybe<Types.ExportJobFilterInput>;\n pagination?: Types.InputMaybe<Types.ExportPaginationInput>;\n context: Types.ContextInput;\n}>;\n\n\nexport type ListExportJobsQuery = { __typename?: 'Query', listExportJobs: { __typename?: 'ExportJobConnection', totalCount: number, edges: Array<{ __typename?: 'ExportJobEdge', cursor: string, node: { __typename?: 'ExportJob', id: string, name: string, description?: string | null, status: Types.ExportJobStatus, format: Types.ExportFormat, archiveFormat: Types.ExportArchiveFormat, entityTypes: Array<string>, progress: number, totalEntities: number, processedEntities: number, totalSizeBytes: string, errorMessage?: string | null, startedAt?: string | null, completedAt?: string | null, expiresAt?: string | null, templateId?: string | null, workspaceId: string, createdBy: string, createdAt: string, updatedAt: string } }>, pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, hasPreviousPage: boolean, startCursor?: string | null, endCursor?: string | null } } };\n\nexport type ExportJobProgressSubscriptionVariables = Types.Exact<{\n jobId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type ExportJobProgressSubscription = { __typename?: 'Subscription', exportJobProgress: { __typename?: 'ExportJob', id: string, name: string, description?: string | null, status: Types.ExportJobStatus, format: Types.ExportFormat, archiveFormat: Types.ExportArchiveFormat, entityTypes: Array<string>, progress: number, processedEntities: number, totalEntities: number, totalSizeBytes: string, errorMessage?: string | null, startedAt?: string | null, completedAt?: string | null, expiresAt?: string | null, templateId?: string | null, workspaceId: string, createdBy: string, createdAt: string, updatedAt: string, parts: Array<{ __typename?: 'ExportPart', id: string, partNumber: number, fileName: string, sizeBytes: string, entityTypes: Array<string>, downloadUrl?: string | null, downloadExpiresAt?: string | null, checksum?: string | null }> } };\n\n\nexport const CancelExportJobDocument = gql`\n mutation CancelExportJob($context: ContextInput, $id: ID!) {\n cancelExportJob(context: $context, id: $id) {\n id\n status\n updatedAt\n }\n}\n `;\nexport type CancelExportJobMutationFn = Apollo.MutationFunction<Types.CancelExportJobMutation, Types.CancelExportJobMutationVariables>;\n\n/**\n * __useCancelExportJobMutation__\n *\n * To run a mutation, you first call `useCancelExportJobMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useCancelExportJobMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @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;\n *\n * @example\n * const [cancelExportJobMutation, { data, loading, error }] = useCancelExportJobMutation({\n * variables: {\n * context: // value for 'context'\n * id: // value for 'id'\n * },\n * });\n */\nexport function useCancelExportJobMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CancelExportJobMutation, Types.CancelExportJobMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.CancelExportJobMutation, Types.CancelExportJobMutationVariables>(CancelExportJobDocument, options);\n }\nexport type CancelExportJobMutationHookResult = ReturnType<typeof useCancelExportJobMutation>;\nexport type CancelExportJobMutationResult = Apollo.MutationResult<Types.CancelExportJobMutation>;\nexport type CancelExportJobMutationOptions = Apollo.BaseMutationOptions<Types.CancelExportJobMutation, Types.CancelExportJobMutationVariables>;\nexport const CreateExportJobDocument = gql`\n mutation CreateExportJob($context: ContextInput, $input: CreateExportJobInput!) {\n createExportJob(context: $context, input: $input) {\n id\n name\n description\n status\n format\n archiveFormat\n entityTypes\n entityFilters\n includeMedia\n includeMetadata\n dateRangeStart\n dateRangeEnd\n processedEntities\n totalEntities\n totalSizeBytes\n progress\n templateId\n workspaceId\n tenantId\n createdBy\n createdAt\n updatedAt\n }\n}\n `;\nexport type CreateExportJobMutationFn = Apollo.MutationFunction<Types.CreateExportJobMutation, Types.CreateExportJobMutationVariables>;\n\n/**\n * __useCreateExportJobMutation__\n *\n * To run a mutation, you first call `useCreateExportJobMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useCreateExportJobMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @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;\n *\n * @example\n * const [createExportJobMutation, { data, loading, error }] = useCreateExportJobMutation({\n * variables: {\n * context: // value for 'context'\n * input: // value for 'input'\n * },\n * });\n */\nexport function useCreateExportJobMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateExportJobMutation, Types.CreateExportJobMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.CreateExportJobMutation, Types.CreateExportJobMutationVariables>(CreateExportJobDocument, options);\n }\nexport type CreateExportJobMutationHookResult = ReturnType<typeof useCreateExportJobMutation>;\nexport type CreateExportJobMutationResult = Apollo.MutationResult<Types.CreateExportJobMutation>;\nexport type CreateExportJobMutationOptions = Apollo.BaseMutationOptions<Types.CreateExportJobMutation, Types.CreateExportJobMutationVariables>;\nexport const CreateExportTemplateDocument = gql`\n mutation CreateExportTemplate($context: ContextInput, $input: CreateExportTemplateInput!) {\n createExportTemplate(context: $context, input: $input) {\n id\n name\n description\n entityTypes\n format\n entityFilters\n includeMedia\n includeMetadata\n isDefault\n workspaceId\n tenantId\n createdBy\n createdAt\n updatedAt\n }\n}\n `;\nexport type CreateExportTemplateMutationFn = Apollo.MutationFunction<Types.CreateExportTemplateMutation, Types.CreateExportTemplateMutationVariables>;\n\n/**\n * __useCreateExportTemplateMutation__\n *\n * To run a mutation, you first call `useCreateExportTemplateMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useCreateExportTemplateMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @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;\n *\n * @example\n * const [createExportTemplateMutation, { data, loading, error }] = useCreateExportTemplateMutation({\n * variables: {\n * context: // value for 'context'\n * input: // value for 'input'\n * },\n * });\n */\nexport function useCreateExportTemplateMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateExportTemplateMutation, Types.CreateExportTemplateMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.CreateExportTemplateMutation, Types.CreateExportTemplateMutationVariables>(CreateExportTemplateDocument, options);\n }\nexport type CreateExportTemplateMutationHookResult = ReturnType<typeof useCreateExportTemplateMutation>;\nexport type CreateExportTemplateMutationResult = Apollo.MutationResult<Types.CreateExportTemplateMutation>;\nexport type CreateExportTemplateMutationOptions = Apollo.BaseMutationOptions<Types.CreateExportTemplateMutation, Types.CreateExportTemplateMutationVariables>;\nexport const DeleteExportJobDocument = gql`\n mutation DeleteExportJob($context: ContextInput, $id: ID!) {\n deleteExportJob(context: $context, id: $id)\n}\n `;\nexport type DeleteExportJobMutationFn = Apollo.MutationFunction<Types.DeleteExportJobMutation, Types.DeleteExportJobMutationVariables>;\n\n/**\n * __useDeleteExportJobMutation__\n *\n * To run a mutation, you first call `useDeleteExportJobMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useDeleteExportJobMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @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;\n *\n * @example\n * const [deleteExportJobMutation, { data, loading, error }] = useDeleteExportJobMutation({\n * variables: {\n * context: // value for 'context'\n * id: // value for 'id'\n * },\n * });\n */\nexport function useDeleteExportJobMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.DeleteExportJobMutation, Types.DeleteExportJobMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.DeleteExportJobMutation, Types.DeleteExportJobMutationVariables>(DeleteExportJobDocument, options);\n }\nexport type DeleteExportJobMutationHookResult = ReturnType<typeof useDeleteExportJobMutation>;\nexport type DeleteExportJobMutationResult = Apollo.MutationResult<Types.DeleteExportJobMutation>;\nexport type DeleteExportJobMutationOptions = Apollo.BaseMutationOptions<Types.DeleteExportJobMutation, Types.DeleteExportJobMutationVariables>;\nexport const DeleteExportTemplateDocument = gql`\n mutation DeleteExportTemplate($context: ContextInput, $id: ID!) {\n deleteExportTemplate(context: $context, id: $id)\n}\n `;\nexport type DeleteExportTemplateMutationFn = Apollo.MutationFunction<Types.DeleteExportTemplateMutation, Types.DeleteExportTemplateMutationVariables>;\n\n/**\n * __useDeleteExportTemplateMutation__\n *\n * To run a mutation, you first call `useDeleteExportTemplateMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useDeleteExportTemplateMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @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;\n *\n * @example\n * const [deleteExportTemplateMutation, { data, loading, error }] = useDeleteExportTemplateMutation({\n * variables: {\n * context: // value for 'context'\n * id: // value for 'id'\n * },\n * });\n */\nexport function useDeleteExportTemplateMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.DeleteExportTemplateMutation, Types.DeleteExportTemplateMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.DeleteExportTemplateMutation, Types.DeleteExportTemplateMutationVariables>(DeleteExportTemplateDocument, options);\n }\nexport type DeleteExportTemplateMutationHookResult = ReturnType<typeof useDeleteExportTemplateMutation>;\nexport type DeleteExportTemplateMutationResult = Apollo.MutationResult<Types.DeleteExportTemplateMutation>;\nexport type DeleteExportTemplateMutationOptions = Apollo.BaseMutationOptions<Types.DeleteExportTemplateMutation, Types.DeleteExportTemplateMutationVariables>;\nexport const RetryExportJobDocument = gql`\n mutation RetryExportJob($context: ContextInput, $id: ID!) {\n retryExportJob(context: $context, id: $id) {\n id\n name\n description\n status\n archiveFormat\n progress\n entityTypes\n format\n processedEntities\n totalEntities\n totalSizeBytes\n templateId\n workspaceId\n createdBy\n createdAt\n updatedAt\n }\n}\n `;\nexport type RetryExportJobMutationFn = Apollo.MutationFunction<Types.RetryExportJobMutation, Types.RetryExportJobMutationVariables>;\n\n/**\n * __useRetryExportJobMutation__\n *\n * To run a mutation, you first call `useRetryExportJobMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useRetryExportJobMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @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;\n *\n * @example\n * const [retryExportJobMutation, { data, loading, error }] = useRetryExportJobMutation({\n * variables: {\n * context: // value for 'context'\n * id: // value for 'id'\n * },\n * });\n */\nexport function useRetryExportJobMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.RetryExportJobMutation, Types.RetryExportJobMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.RetryExportJobMutation, Types.RetryExportJobMutationVariables>(RetryExportJobDocument, options);\n }\nexport type RetryExportJobMutationHookResult = ReturnType<typeof useRetryExportJobMutation>;\nexport type RetryExportJobMutationResult = Apollo.MutationResult<Types.RetryExportJobMutation>;\nexport type RetryExportJobMutationOptions = Apollo.BaseMutationOptions<Types.RetryExportJobMutation, Types.RetryExportJobMutationVariables>;\nexport const UpdateExportTemplateDocument = gql`\n mutation UpdateExportTemplate($context: ContextInput, $id: ID!, $input: UpdateExportTemplateInput!) {\n updateExportTemplate(context: $context, id: $id, input: $input) {\n id\n name\n description\n entityTypes\n format\n isDefault\n workspaceId\n createdBy\n createdAt\n updatedAt\n }\n}\n `;\nexport type UpdateExportTemplateMutationFn = Apollo.MutationFunction<Types.UpdateExportTemplateMutation, Types.UpdateExportTemplateMutationVariables>;\n\n/**\n * __useUpdateExportTemplateMutation__\n *\n * To run a mutation, you first call `useUpdateExportTemplateMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useUpdateExportTemplateMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @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;\n *\n * @example\n * const [updateExportTemplateMutation, { data, loading, error }] = useUpdateExportTemplateMutation({\n * variables: {\n * context: // value for 'context'\n * id: // value for 'id'\n * input: // value for 'input'\n * },\n * });\n */\nexport function useUpdateExportTemplateMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateExportTemplateMutation, Types.UpdateExportTemplateMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.UpdateExportTemplateMutation, Types.UpdateExportTemplateMutationVariables>(UpdateExportTemplateDocument, options);\n }\nexport type UpdateExportTemplateMutationHookResult = ReturnType<typeof useUpdateExportTemplateMutation>;\nexport type UpdateExportTemplateMutationResult = Apollo.MutationResult<Types.UpdateExportTemplateMutation>;\nexport type UpdateExportTemplateMutationOptions = Apollo.BaseMutationOptions<Types.UpdateExportTemplateMutation, Types.UpdateExportTemplateMutationVariables>;\nexport const GetAvailableExportEntitiesDocument = gql`\n query GetAvailableExportEntities($context: ContextInput!, $pagination: ExportPaginationInput) {\n getAvailableExportEntities(context: $context, pagination: $pagination) {\n edges {\n cursor\n node {\n entityType\n displayName\n description\n enabled\n estimatedSize\n supportsDateRange\n supportsMediaExport\n }\n }\n pageInfo {\n hasNextPage\n hasPreviousPage\n startCursor\n endCursor\n }\n totalCount\n }\n}\n `;\n\n/**\n * __useGetAvailableExportEntitiesQuery__\n *\n * To run a query within a React component, call `useGetAvailableExportEntitiesQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetAvailableExportEntitiesQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @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;\n *\n * @example\n * const { data, loading, error } = useGetAvailableExportEntitiesQuery({\n * variables: {\n * context: // value for 'context'\n * pagination: // value for 'pagination'\n * },\n * });\n */\nexport function useGetAvailableExportEntitiesQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetAvailableExportEntitiesQuery, Types.GetAvailableExportEntitiesQueryVariables> & ({ variables: Types.GetAvailableExportEntitiesQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetAvailableExportEntitiesQuery, Types.GetAvailableExportEntitiesQueryVariables>(GetAvailableExportEntitiesDocument, options);\n }\nexport function useGetAvailableExportEntitiesLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetAvailableExportEntitiesQuery, Types.GetAvailableExportEntitiesQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetAvailableExportEntitiesQuery, Types.GetAvailableExportEntitiesQueryVariables>(GetAvailableExportEntitiesDocument, options);\n }\n// @ts-ignore\nexport function useGetAvailableExportEntitiesSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetAvailableExportEntitiesQuery, Types.GetAvailableExportEntitiesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetAvailableExportEntitiesQuery, Types.GetAvailableExportEntitiesQueryVariables>;\nexport function useGetAvailableExportEntitiesSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetAvailableExportEntitiesQuery, Types.GetAvailableExportEntitiesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetAvailableExportEntitiesQuery | undefined, Types.GetAvailableExportEntitiesQueryVariables>;\nexport function useGetAvailableExportEntitiesSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetAvailableExportEntitiesQuery, Types.GetAvailableExportEntitiesQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetAvailableExportEntitiesQuery, Types.GetAvailableExportEntitiesQueryVariables>(GetAvailableExportEntitiesDocument, options);\n }\nexport type GetAvailableExportEntitiesQueryHookResult = ReturnType<typeof useGetAvailableExportEntitiesQuery>;\nexport type GetAvailableExportEntitiesLazyQueryHookResult = ReturnType<typeof useGetAvailableExportEntitiesLazyQuery>;\nexport type GetAvailableExportEntitiesSuspenseQueryHookResult = ReturnType<typeof useGetAvailableExportEntitiesSuspenseQuery>;\nexport type GetAvailableExportEntitiesQueryResult = Apollo.QueryResult<Types.GetAvailableExportEntitiesQuery, Types.GetAvailableExportEntitiesQueryVariables>;\nexport const GetExportJobDocument = gql`\n query GetExportJob($context: ContextInput, $id: ID!) {\n getExportJob(context: $context, id: $id) {\n id\n name\n description\n status\n format\n archiveFormat\n entityTypes\n entityFilters\n includeMedia\n includeMetadata\n dateRangeStart\n dateRangeEnd\n parts {\n id\n partNumber\n fileName\n sizeBytes\n entityTypes\n downloadUrl\n downloadExpiresAt\n checksum\n }\n processedEntities\n totalEntities\n totalSizeBytes\n progress\n errorMessage\n errorCode\n startedAt\n completedAt\n expiresAt\n templateId\n template {\n id\n name\n description\n }\n temporalWorkflowId\n workspaceId\n tenantId\n createdBy\n createdAt\n updatedAt\n updatedBy\n }\n}\n `;\n\n/**\n * __useGetExportJobQuery__\n *\n * To run a query within a React component, call `useGetExportJobQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetExportJobQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @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;\n *\n * @example\n * const { data, loading, error } = useGetExportJobQuery({\n * variables: {\n * context: // value for 'context'\n * id: // value for 'id'\n * },\n * });\n */\nexport function useGetExportJobQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetExportJobQuery, Types.GetExportJobQueryVariables> & ({ variables: Types.GetExportJobQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetExportJobQuery, Types.GetExportJobQueryVariables>(GetExportJobDocument, options);\n }\nexport function useGetExportJobLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetExportJobQuery, Types.GetExportJobQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetExportJobQuery, Types.GetExportJobQueryVariables>(GetExportJobDocument, options);\n }\n// @ts-ignore\nexport function useGetExportJobSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetExportJobQuery, Types.GetExportJobQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetExportJobQuery, Types.GetExportJobQueryVariables>;\nexport function useGetExportJobSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetExportJobQuery, Types.GetExportJobQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetExportJobQuery | undefined, Types.GetExportJobQueryVariables>;\nexport function useGetExportJobSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetExportJobQuery, Types.GetExportJobQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetExportJobQuery, Types.GetExportJobQueryVariables>(GetExportJobDocument, options);\n }\nexport type GetExportJobQueryHookResult = ReturnType<typeof useGetExportJobQuery>;\nexport type GetExportJobLazyQueryHookResult = ReturnType<typeof useGetExportJobLazyQuery>;\nexport type GetExportJobSuspenseQueryHookResult = ReturnType<typeof useGetExportJobSuspenseQuery>;\nexport type GetExportJobQueryResult = Apollo.QueryResult<Types.GetExportJobQuery, Types.GetExportJobQueryVariables>;\nexport const GetExportPartDocument = gql`\n query GetExportPart($context: ContextInput, $id: ID!) {\n getExportPart(context: $context, id: $id) {\n id\n jobId\n partNumber\n fileName\n sizeBytes\n entityTypes\n downloadUrl\n downloadExpiresAt\n checksum\n createdAt\n }\n}\n `;\n\n/**\n * __useGetExportPartQuery__\n *\n * To run a query within a React component, call `useGetExportPartQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetExportPartQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @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;\n *\n * @example\n * const { data, loading, error } = useGetExportPartQuery({\n * variables: {\n * context: // value for 'context'\n * id: // value for 'id'\n * },\n * });\n */\nexport function useGetExportPartQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetExportPartQuery, Types.GetExportPartQueryVariables> & ({ variables: Types.GetExportPartQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetExportPartQuery, Types.GetExportPartQueryVariables>(GetExportPartDocument, options);\n }\nexport function useGetExportPartLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetExportPartQuery, Types.GetExportPartQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetExportPartQuery, Types.GetExportPartQueryVariables>(GetExportPartDocument, options);\n }\n// @ts-ignore\nexport function useGetExportPartSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetExportPartQuery, Types.GetExportPartQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetExportPartQuery, Types.GetExportPartQueryVariables>;\nexport function useGetExportPartSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetExportPartQuery, Types.GetExportPartQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetExportPartQuery | undefined, Types.GetExportPartQueryVariables>;\nexport function useGetExportPartSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetExportPartQuery, Types.GetExportPartQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetExportPartQuery, Types.GetExportPartQueryVariables>(GetExportPartDocument, options);\n }\nexport type GetExportPartQueryHookResult = ReturnType<typeof useGetExportPartQuery>;\nexport type GetExportPartLazyQueryHookResult = ReturnType<typeof useGetExportPartLazyQuery>;\nexport type GetExportPartSuspenseQueryHookResult = ReturnType<typeof useGetExportPartSuspenseQuery>;\nexport type GetExportPartQueryResult = Apollo.QueryResult<Types.GetExportPartQuery, Types.GetExportPartQueryVariables>;\nexport const GetExportTemplateDocument = gql`\n query GetExportTemplate($context: ContextInput, $id: ID!) {\n getExportTemplate(context: $context, id: $id) {\n id\n name\n description\n entityTypes\n format\n entityFilters\n includeMedia\n includeMetadata\n isDefault\n workspaceId\n tenantId\n createdBy\n createdAt\n updatedAt\n updatedBy\n }\n}\n `;\n\n/**\n * __useGetExportTemplateQuery__\n *\n * To run a query within a React component, call `useGetExportTemplateQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetExportTemplateQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @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;\n *\n * @example\n * const { data, loading, error } = useGetExportTemplateQuery({\n * variables: {\n * context: // value for 'context'\n * id: // value for 'id'\n * },\n * });\n */\nexport function useGetExportTemplateQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetExportTemplateQuery, Types.GetExportTemplateQueryVariables> & ({ variables: Types.GetExportTemplateQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetExportTemplateQuery, Types.GetExportTemplateQueryVariables>(GetExportTemplateDocument, options);\n }\nexport function useGetExportTemplateLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetExportTemplateQuery, Types.GetExportTemplateQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetExportTemplateQuery, Types.GetExportTemplateQueryVariables>(GetExportTemplateDocument, options);\n }\n// @ts-ignore\nexport function useGetExportTemplateSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetExportTemplateQuery, Types.GetExportTemplateQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetExportTemplateQuery, Types.GetExportTemplateQueryVariables>;\nexport function useGetExportTemplateSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetExportTemplateQuery, Types.GetExportTemplateQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetExportTemplateQuery | undefined, Types.GetExportTemplateQueryVariables>;\nexport function useGetExportTemplateSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetExportTemplateQuery, Types.GetExportTemplateQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetExportTemplateQuery, Types.GetExportTemplateQueryVariables>(GetExportTemplateDocument, options);\n }\nexport type GetExportTemplateQueryHookResult = ReturnType<typeof useGetExportTemplateQuery>;\nexport type GetExportTemplateLazyQueryHookResult = ReturnType<typeof useGetExportTemplateLazyQuery>;\nexport type GetExportTemplateSuspenseQueryHookResult = ReturnType<typeof useGetExportTemplateSuspenseQuery>;\nexport type GetExportTemplateQueryResult = Apollo.QueryResult<Types.GetExportTemplateQuery, Types.GetExportTemplateQueryVariables>;\nexport const ListExportTemplatesDocument = gql`\n query ListExportTemplates($context: ContextInput!, $pagination: ExportPaginationInput) {\n listExportTemplates(context: $context, pagination: $pagination) {\n edges {\n cursor\n node {\n id\n name\n description\n entityTypes\n format\n isDefault\n workspaceId\n tenantId\n createdBy\n createdAt\n updatedAt\n updatedBy\n }\n }\n pageInfo {\n hasNextPage\n hasPreviousPage\n startCursor\n endCursor\n }\n totalCount\n }\n}\n `;\n\n/**\n * __useListExportTemplatesQuery__\n *\n * To run a query within a React component, call `useListExportTemplatesQuery` and pass it any options that fit your needs.\n * When your component renders, `useListExportTemplatesQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @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;\n *\n * @example\n * const { data, loading, error } = useListExportTemplatesQuery({\n * variables: {\n * context: // value for 'context'\n * pagination: // value for 'pagination'\n * },\n * });\n */\nexport function useListExportTemplatesQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.ListExportTemplatesQuery, Types.ListExportTemplatesQueryVariables> & ({ variables: Types.ListExportTemplatesQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.ListExportTemplatesQuery, Types.ListExportTemplatesQueryVariables>(ListExportTemplatesDocument, options);\n }\nexport function useListExportTemplatesLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ListExportTemplatesQuery, Types.ListExportTemplatesQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.ListExportTemplatesQuery, Types.ListExportTemplatesQueryVariables>(ListExportTemplatesDocument, options);\n }\n// @ts-ignore\nexport function useListExportTemplatesSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ListExportTemplatesQuery, Types.ListExportTemplatesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListExportTemplatesQuery, Types.ListExportTemplatesQueryVariables>;\nexport function useListExportTemplatesSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListExportTemplatesQuery, Types.ListExportTemplatesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListExportTemplatesQuery | undefined, Types.ListExportTemplatesQueryVariables>;\nexport function useListExportTemplatesSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListExportTemplatesQuery, Types.ListExportTemplatesQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.ListExportTemplatesQuery, Types.ListExportTemplatesQueryVariables>(ListExportTemplatesDocument, options);\n }\nexport type ListExportTemplatesQueryHookResult = ReturnType<typeof useListExportTemplatesQuery>;\nexport type ListExportTemplatesLazyQueryHookResult = ReturnType<typeof useListExportTemplatesLazyQuery>;\nexport type ListExportTemplatesSuspenseQueryHookResult = ReturnType<typeof useListExportTemplatesSuspenseQuery>;\nexport type ListExportTemplatesQueryResult = Apollo.QueryResult<Types.ListExportTemplatesQuery, Types.ListExportTemplatesQueryVariables>;\nexport const ListExportJobsDocument = gql`\n query ListExportJobs($filter: ExportJobFilterInput, $pagination: ExportPaginationInput, $context: ContextInput!) {\n listExportJobs(filter: $filter, pagination: $pagination, context: $context) {\n edges {\n cursor\n node {\n id\n name\n description\n status\n format\n archiveFormat\n entityTypes\n progress\n totalEntities\n processedEntities\n totalSizeBytes\n errorMessage\n startedAt\n completedAt\n expiresAt\n templateId\n workspaceId\n createdBy\n createdAt\n updatedAt\n }\n }\n pageInfo {\n hasNextPage\n hasPreviousPage\n startCursor\n endCursor\n }\n totalCount\n }\n}\n `;\n\n/**\n * __useListExportJobsQuery__\n *\n * To run a query within a React component, call `useListExportJobsQuery` and pass it any options that fit your needs.\n * When your component renders, `useListExportJobsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @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;\n *\n * @example\n * const { data, loading, error } = useListExportJobsQuery({\n * variables: {\n * filter: // value for 'filter'\n * pagination: // value for 'pagination'\n * context: // value for 'context'\n * },\n * });\n */\nexport function useListExportJobsQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.ListExportJobsQuery, Types.ListExportJobsQueryVariables> & ({ variables: Types.ListExportJobsQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.ListExportJobsQuery, Types.ListExportJobsQueryVariables>(ListExportJobsDocument, options);\n }\nexport function useListExportJobsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ListExportJobsQuery, Types.ListExportJobsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.ListExportJobsQuery, Types.ListExportJobsQueryVariables>(ListExportJobsDocument, options);\n }\n// @ts-ignore\nexport function useListExportJobsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ListExportJobsQuery, Types.ListExportJobsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListExportJobsQuery, Types.ListExportJobsQueryVariables>;\nexport function useListExportJobsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListExportJobsQuery, Types.ListExportJobsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListExportJobsQuery | undefined, Types.ListExportJobsQueryVariables>;\nexport function useListExportJobsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListExportJobsQuery, Types.ListExportJobsQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.ListExportJobsQuery, Types.ListExportJobsQueryVariables>(ListExportJobsDocument, options);\n }\nexport type ListExportJobsQueryHookResult = ReturnType<typeof useListExportJobsQuery>;\nexport type ListExportJobsLazyQueryHookResult = ReturnType<typeof useListExportJobsLazyQuery>;\nexport type ListExportJobsSuspenseQueryHookResult = ReturnType<typeof useListExportJobsSuspenseQuery>;\nexport type ListExportJobsQueryResult = Apollo.QueryResult<Types.ListExportJobsQuery, Types.ListExportJobsQueryVariables>;\nexport const ExportJobProgressDocument = gql`\n subscription ExportJobProgress($jobId: ID!) {\n exportJobProgress(jobId: $jobId) {\n id\n name\n description\n status\n format\n archiveFormat\n entityTypes\n progress\n processedEntities\n totalEntities\n totalSizeBytes\n errorMessage\n startedAt\n completedAt\n expiresAt\n templateId\n workspaceId\n createdBy\n createdAt\n updatedAt\n parts {\n id\n partNumber\n fileName\n sizeBytes\n entityTypes\n downloadUrl\n downloadExpiresAt\n checksum\n }\n }\n}\n `;\n\n/**\n * __useExportJobProgressSubscription__\n *\n * To run a query within a React component, call `useExportJobProgressSubscription` and pass it any options that fit your needs.\n * When your component renders, `useExportJobProgressSubscription` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @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;\n *\n * @example\n * const { data, loading, error } = useExportJobProgressSubscription({\n * variables: {\n * jobId: // value for 'jobId'\n * },\n * });\n */\nexport function useExportJobProgressSubscription(baseOptions: ApolloReactHooks.SubscriptionHookOptions<Types.ExportJobProgressSubscription, Types.ExportJobProgressSubscriptionVariables> & ({ variables: Types.ExportJobProgressSubscriptionVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSubscription<Types.ExportJobProgressSubscription, Types.ExportJobProgressSubscriptionVariables>(ExportJobProgressDocument, options);\n }\nexport type ExportJobProgressSubscriptionHookResult = ReturnType<typeof useExportJobProgressSubscription>;\nexport type ExportJobProgressSubscriptionResult = Apollo.SubscriptionResult<Types.ExportJobProgressSubscription>;"],"mappings":";;;AAyHA,IAAa,IAA0B,CAAG;;;;;;;;OAoC7B,IAA0B,CAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;OAuD7B,IAA+B,CAAG;;;;;;;;;;;;;;;;;;;OA+ClC,IAA0B,CAAG;;;;OAgC7B,IAA+B,CAAG;;;;OAgClC,IAAyB,CAAG;;;;;;;;;;;;;;;;;;;;;;AAiDG,CAAG;;;;;;;;;;;;;;;;AA4C/C,IAAa,IAAqC,CAAG;;;;;;;;;;;;;;;;;;;;;;;;OA8DxC,IAAuB,CAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAuFF,CAAG;;;;;;;;;;;;;;;;AAqDxC,IAAa,IAA4B,CAAG;;;;;;;;;;;;;;;;;;;;OA0D/B,IAA8B,CAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAmEjC,IAAyB,CAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA4E5B,IAA4B,CAAG"}
|