@leav/e2e-test-utils 1.14.0-2865588e
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/dist/_gqlTypes/index.d.ts +1167 -0
- package/dist/_gqlTypes/index.js +493 -0
- package/dist/_gqlTypes/index.js.map +1 -0
- package/dist/baseConfig.d.ts +5 -0
- package/dist/baseConfig.js +8 -0
- package/dist/baseConfig.js.map +1 -0
- package/dist/clients/GenericClient.d.ts +15 -0
- package/dist/clients/GenericClient.js +48 -0
- package/dist/clients/GenericClient.js.map +1 -0
- package/dist/clients/RecordsClient.d.ts +5 -0
- package/dist/clients/RecordsClient.js +34 -0
- package/dist/clients/RecordsClient.js.map +1 -0
- package/dist/clients/TasksClient.d.ts +10 -0
- package/dist/clients/TasksClient.js +28 -0
- package/dist/clients/TasksClient.js.map +1 -0
- package/dist/clients/index.d.ts +3 -0
- package/dist/clients/index.js +20 -0
- package/dist/clients/index.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +20 -0
- package/dist/index.js.map +1 -0
- package/dist/playwright/index.d.ts +1 -0
- package/dist/playwright/index.js +18 -0
- package/dist/playwright/index.js.map +1 -0
- package/dist/playwright/polyfillCryptoRandomUUID.d.ts +2 -0
- package/dist/playwright/polyfillCryptoRandomUUID.js +24 -0
- package/dist/playwright/polyfillCryptoRandomUUID.js.map +1 -0
- package/package.json +37 -0
|
@@ -0,0 +1,1167 @@
|
|
|
1
|
+
import { GraphQLClient, RequestOptions } from 'graphql-request';
|
|
2
|
+
export type Maybe<T> = T | null;
|
|
3
|
+
export type InputMaybe<T> = Maybe<T>;
|
|
4
|
+
export type Exact<T extends {
|
|
5
|
+
[key: string]: unknown;
|
|
6
|
+
}> = {
|
|
7
|
+
[K in keyof T]: T[K];
|
|
8
|
+
};
|
|
9
|
+
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
|
|
10
|
+
[SubKey in K]?: Maybe<T[SubKey]>;
|
|
11
|
+
};
|
|
12
|
+
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
|
|
13
|
+
[SubKey in K]: Maybe<T[SubKey]>;
|
|
14
|
+
};
|
|
15
|
+
export type MakeEmpty<T extends {
|
|
16
|
+
[key: string]: unknown;
|
|
17
|
+
}, K extends keyof T> = {
|
|
18
|
+
[_ in K]?: never;
|
|
19
|
+
};
|
|
20
|
+
export type Incremental<T> = T | {
|
|
21
|
+
[P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never;
|
|
22
|
+
};
|
|
23
|
+
type GraphQLClientRequestHeaders = RequestOptions['requestHeaders'];
|
|
24
|
+
/** All built-in and custom scalars, mapped to their actual values */
|
|
25
|
+
export type Scalars = {
|
|
26
|
+
ID: {
|
|
27
|
+
input: string;
|
|
28
|
+
output: string;
|
|
29
|
+
};
|
|
30
|
+
String: {
|
|
31
|
+
input: string;
|
|
32
|
+
output: string;
|
|
33
|
+
};
|
|
34
|
+
Boolean: {
|
|
35
|
+
input: boolean;
|
|
36
|
+
output: boolean;
|
|
37
|
+
};
|
|
38
|
+
Int: {
|
|
39
|
+
input: number;
|
|
40
|
+
output: number;
|
|
41
|
+
};
|
|
42
|
+
Float: {
|
|
43
|
+
input: number;
|
|
44
|
+
output: number;
|
|
45
|
+
};
|
|
46
|
+
Any: {
|
|
47
|
+
input: any;
|
|
48
|
+
output: any;
|
|
49
|
+
};
|
|
50
|
+
DateTime: {
|
|
51
|
+
input: any;
|
|
52
|
+
output: any;
|
|
53
|
+
};
|
|
54
|
+
FullTreeContent: {
|
|
55
|
+
input: any;
|
|
56
|
+
output: any;
|
|
57
|
+
};
|
|
58
|
+
JSON: {
|
|
59
|
+
input: any;
|
|
60
|
+
output: any;
|
|
61
|
+
};
|
|
62
|
+
JSONObject: {
|
|
63
|
+
input: any;
|
|
64
|
+
output: any;
|
|
65
|
+
};
|
|
66
|
+
Preview: {
|
|
67
|
+
input: any;
|
|
68
|
+
output: any;
|
|
69
|
+
};
|
|
70
|
+
SystemTranslation: {
|
|
71
|
+
input: any;
|
|
72
|
+
output: any;
|
|
73
|
+
};
|
|
74
|
+
SystemTranslationOptional: {
|
|
75
|
+
input: any;
|
|
76
|
+
output: any;
|
|
77
|
+
};
|
|
78
|
+
TaskPriority: {
|
|
79
|
+
input: any;
|
|
80
|
+
output: any;
|
|
81
|
+
};
|
|
82
|
+
Upload: {
|
|
83
|
+
input: any;
|
|
84
|
+
output: any;
|
|
85
|
+
};
|
|
86
|
+
};
|
|
87
|
+
export type AccessRecordByDefaultPermissionInput = {
|
|
88
|
+
attributeId: Scalars['ID']['input'];
|
|
89
|
+
libraryId: Scalars['ID']['input'];
|
|
90
|
+
};
|
|
91
|
+
export type ActionConfigurationInput = {
|
|
92
|
+
error_message?: InputMaybe<Scalars['SystemTranslationOptional']['input']>;
|
|
93
|
+
id: Scalars['ID']['input'];
|
|
94
|
+
params?: InputMaybe<Array<ActionConfigurationParamInput>>;
|
|
95
|
+
};
|
|
96
|
+
export type ActionConfigurationParamInput = {
|
|
97
|
+
name: Scalars['String']['input'];
|
|
98
|
+
value: Scalars['String']['input'];
|
|
99
|
+
};
|
|
100
|
+
export declare enum ActionIoTypes {
|
|
101
|
+
boolean = "boolean",
|
|
102
|
+
number = "number",
|
|
103
|
+
object = "object",
|
|
104
|
+
string = "string"
|
|
105
|
+
}
|
|
106
|
+
export type ActionsListConfigurationInput = {
|
|
107
|
+
deleteValue?: InputMaybe<Array<ActionConfigurationInput>>;
|
|
108
|
+
getValue?: InputMaybe<Array<ActionConfigurationInput>>;
|
|
109
|
+
postDeleteValue?: InputMaybe<Array<ActionConfigurationInput>>;
|
|
110
|
+
postSaveValue?: InputMaybe<Array<ActionConfigurationInput>>;
|
|
111
|
+
saveValue?: InputMaybe<Array<ActionConfigurationInput>>;
|
|
112
|
+
};
|
|
113
|
+
export type ApiKeyInput = {
|
|
114
|
+
expiresAt?: InputMaybe<Scalars['Int']['input']>;
|
|
115
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
116
|
+
label: Scalars['String']['input'];
|
|
117
|
+
userId: Scalars['String']['input'];
|
|
118
|
+
};
|
|
119
|
+
export type ApiKeysFiltersInput = {
|
|
120
|
+
createdBy?: InputMaybe<Scalars['Int']['input']>;
|
|
121
|
+
label?: InputMaybe<Scalars['String']['input']>;
|
|
122
|
+
modifiedBy?: InputMaybe<Scalars['Int']['input']>;
|
|
123
|
+
user_id?: InputMaybe<Scalars['String']['input']>;
|
|
124
|
+
};
|
|
125
|
+
export declare enum ApiKeysSortableFields {
|
|
126
|
+
createdAt = "createdAt",
|
|
127
|
+
createdBy = "createdBy",
|
|
128
|
+
expiresAt = "expiresAt",
|
|
129
|
+
label = "label",
|
|
130
|
+
modifiedAt = "modifiedAt",
|
|
131
|
+
modifiedBy = "modifiedBy"
|
|
132
|
+
}
|
|
133
|
+
export type ApplicationEventFiltersInput = {
|
|
134
|
+
applicationId?: InputMaybe<Scalars['ID']['input']>;
|
|
135
|
+
events?: InputMaybe<Array<ApplicationEventTypes>>;
|
|
136
|
+
ignoreOwnEvents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
137
|
+
};
|
|
138
|
+
export declare enum ApplicationEventTypes {
|
|
139
|
+
DELETE = "DELETE",
|
|
140
|
+
SAVE = "SAVE"
|
|
141
|
+
}
|
|
142
|
+
export type ApplicationIconInput = {
|
|
143
|
+
libraryId: Scalars['String']['input'];
|
|
144
|
+
recordId: Scalars['String']['input'];
|
|
145
|
+
};
|
|
146
|
+
export type ApplicationInput = {
|
|
147
|
+
color?: InputMaybe<Scalars['String']['input']>;
|
|
148
|
+
description?: InputMaybe<Scalars['SystemTranslationOptional']['input']>;
|
|
149
|
+
endpoint?: InputMaybe<Scalars['String']['input']>;
|
|
150
|
+
icon?: InputMaybe<ApplicationIconInput>;
|
|
151
|
+
id: Scalars['ID']['input'];
|
|
152
|
+
label?: InputMaybe<Scalars['SystemTranslation']['input']>;
|
|
153
|
+
module?: InputMaybe<Scalars['String']['input']>;
|
|
154
|
+
settings?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
155
|
+
system?: InputMaybe<Scalars['Boolean']['input']>;
|
|
156
|
+
type?: InputMaybe<ApplicationType>;
|
|
157
|
+
};
|
|
158
|
+
export declare enum ApplicationSortableFields {
|
|
159
|
+
endpoint = "endpoint",
|
|
160
|
+
id = "id",
|
|
161
|
+
module = "module",
|
|
162
|
+
system = "system",
|
|
163
|
+
type = "type"
|
|
164
|
+
}
|
|
165
|
+
export declare enum ApplicationType {
|
|
166
|
+
external = "external",
|
|
167
|
+
internal = "internal"
|
|
168
|
+
}
|
|
169
|
+
export type ApplicationsFiltersInput = {
|
|
170
|
+
endpoint?: InputMaybe<Scalars['String']['input']>;
|
|
171
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
172
|
+
label?: InputMaybe<Scalars['String']['input']>;
|
|
173
|
+
module?: InputMaybe<Scalars['String']['input']>;
|
|
174
|
+
system?: InputMaybe<Scalars['Boolean']['input']>;
|
|
175
|
+
type?: InputMaybe<Array<InputMaybe<ApplicationType>>>;
|
|
176
|
+
};
|
|
177
|
+
export type AttributeDependentValueInput = {
|
|
178
|
+
attributeId: Scalars['ID']['input'];
|
|
179
|
+
nodeId?: InputMaybe<Scalars['ID']['input']>;
|
|
180
|
+
};
|
|
181
|
+
export declare enum AttributeFormat {
|
|
182
|
+
boolean = "boolean",
|
|
183
|
+
color = "color",
|
|
184
|
+
date = "date",
|
|
185
|
+
date_range = "date_range",
|
|
186
|
+
encrypted = "encrypted",
|
|
187
|
+
extended = "extended",
|
|
188
|
+
numeric = "numeric",
|
|
189
|
+
rich_text = "rich_text",
|
|
190
|
+
text = "text"
|
|
191
|
+
}
|
|
192
|
+
export type AttributeInput = {
|
|
193
|
+
actions_list?: InputMaybe<ActionsListConfigurationInput>;
|
|
194
|
+
character_limit?: InputMaybe<Scalars['Int']['input']>;
|
|
195
|
+
description?: InputMaybe<Scalars['SystemTranslationOptional']['input']>;
|
|
196
|
+
embedded_fields?: InputMaybe<Array<InputMaybe<EmbeddedAttributeInput>>>;
|
|
197
|
+
format?: InputMaybe<AttributeFormat>;
|
|
198
|
+
id: Scalars['ID']['input'];
|
|
199
|
+
label?: InputMaybe<Scalars['SystemTranslation']['input']>;
|
|
200
|
+
linked_library?: InputMaybe<Scalars['String']['input']>;
|
|
201
|
+
linked_tree?: InputMaybe<Scalars['String']['input']>;
|
|
202
|
+
metadata_fields?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
203
|
+
multi_link_display_option?: InputMaybe<MultiDisplayOption>;
|
|
204
|
+
multi_tree_display_option?: InputMaybe<MultiDisplayOption>;
|
|
205
|
+
multiple_values?: InputMaybe<Scalars['Boolean']['input']>;
|
|
206
|
+
permissions_conf?: InputMaybe<TreepermissionsConfInput>;
|
|
207
|
+
permissions_conf_dependent_values?: InputMaybe<TreePermissionsDependentValuesConfInput>;
|
|
208
|
+
readonly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
209
|
+
required?: InputMaybe<Scalars['Boolean']['input']>;
|
|
210
|
+
reverse_link?: InputMaybe<Scalars['String']['input']>;
|
|
211
|
+
settings?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
212
|
+
/** only for link or standard attribute */
|
|
213
|
+
smart_filter?: InputMaybe<SmartFilterConfInput>;
|
|
214
|
+
type?: InputMaybe<AttributeType>;
|
|
215
|
+
unique?: InputMaybe<Scalars['Boolean']['input']>;
|
|
216
|
+
values_list?: InputMaybe<ValuesListConfInput>;
|
|
217
|
+
versions_conf?: InputMaybe<ValuesVersionsConfInput>;
|
|
218
|
+
};
|
|
219
|
+
export type AttributePermissionsRecord = {
|
|
220
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
221
|
+
library: Scalars['String']['input'];
|
|
222
|
+
};
|
|
223
|
+
export declare enum AttributeType {
|
|
224
|
+
advanced = "advanced",
|
|
225
|
+
advanced_link = "advanced_link",
|
|
226
|
+
simple = "simple",
|
|
227
|
+
simple_link = "simple_link",
|
|
228
|
+
tree = "tree"
|
|
229
|
+
}
|
|
230
|
+
export type AttributesFiltersInput = {
|
|
231
|
+
format?: InputMaybe<Array<AttributeFormat>>;
|
|
232
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
233
|
+
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
234
|
+
label?: InputMaybe<Scalars['String']['input']>;
|
|
235
|
+
libraries?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
236
|
+
librariesExcluded?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
237
|
+
multiple_values?: InputMaybe<Scalars['Boolean']['input']>;
|
|
238
|
+
system?: InputMaybe<Scalars['Boolean']['input']>;
|
|
239
|
+
type?: InputMaybe<Array<AttributeType>>;
|
|
240
|
+
versionable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
241
|
+
};
|
|
242
|
+
export declare enum AttributesSortableFields {
|
|
243
|
+
format = "format",
|
|
244
|
+
id = "id",
|
|
245
|
+
linked_library = "linked_library",
|
|
246
|
+
linked_tree = "linked_tree",
|
|
247
|
+
multiple_values = "multiple_values",
|
|
248
|
+
type = "type"
|
|
249
|
+
}
|
|
250
|
+
export declare enum AutomationRuleActions {
|
|
251
|
+
condition = "condition",
|
|
252
|
+
jexlExpression = "jexlExpression",
|
|
253
|
+
modifyAttribute = "modifyAttribute",
|
|
254
|
+
notification = "notification"
|
|
255
|
+
}
|
|
256
|
+
export declare enum AutomationRuleEventAction {
|
|
257
|
+
RECORD_INIT = "RECORD_INIT",
|
|
258
|
+
RECORD_SAVE = "RECORD_SAVE",
|
|
259
|
+
VALUE_SAVE = "VALUE_SAVE"
|
|
260
|
+
}
|
|
261
|
+
export declare enum AutomationRuleJsonSchemaFormType {
|
|
262
|
+
creation = "creation",
|
|
263
|
+
edition = "edition"
|
|
264
|
+
}
|
|
265
|
+
export type AutomationRulePipelineInput = {
|
|
266
|
+
steps: Array<AutomationRulePipelineStepInput>;
|
|
267
|
+
};
|
|
268
|
+
export type AutomationRulePipelineStepInput = {
|
|
269
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
270
|
+
params: Scalars['JSON']['input'];
|
|
271
|
+
type: AutomationRuleActions;
|
|
272
|
+
};
|
|
273
|
+
export declare enum AutomationRuleSortableFields {
|
|
274
|
+
active = "active",
|
|
275
|
+
id = "id"
|
|
276
|
+
}
|
|
277
|
+
export type AutomationRuleTriggerInput = {
|
|
278
|
+
eventAction: AutomationRuleEventAction;
|
|
279
|
+
eventTopic?: InputMaybe<EventTopicInput>;
|
|
280
|
+
synchronous: Scalars['Boolean']['input'];
|
|
281
|
+
};
|
|
282
|
+
export type AutomationRulesFiltersInput = {
|
|
283
|
+
active?: InputMaybe<Scalars['Boolean']['input']>;
|
|
284
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
285
|
+
label?: InputMaybe<Scalars['String']['input']>;
|
|
286
|
+
trigger?: InputMaybe<PartialAutomationRuleTriggerInput>;
|
|
287
|
+
};
|
|
288
|
+
export type AutomationRulesSortInput = {
|
|
289
|
+
field: AutomationRuleSortableFields;
|
|
290
|
+
order?: InputMaybe<SortOrder>;
|
|
291
|
+
};
|
|
292
|
+
export declare enum AvailableLanguage {
|
|
293
|
+
en = "en",
|
|
294
|
+
fr = "fr"
|
|
295
|
+
}
|
|
296
|
+
export type ChildrenAsRecordValuePermissionFilterInput = {
|
|
297
|
+
action: RecordPermissionsActions;
|
|
298
|
+
attributeId: Scalars['ID']['input'];
|
|
299
|
+
libraryId: Scalars['ID']['input'];
|
|
300
|
+
};
|
|
301
|
+
export type CreateAutomationRuleInput = {
|
|
302
|
+
active: Scalars['Boolean']['input'];
|
|
303
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
304
|
+
label: Scalars['String']['input'];
|
|
305
|
+
pipeline: AutomationRulePipelineInput;
|
|
306
|
+
trigger: AutomationRuleTriggerInput;
|
|
307
|
+
};
|
|
308
|
+
export type CreateRecordDataInput = {
|
|
309
|
+
values?: InputMaybe<Array<ValueBatchInput>>;
|
|
310
|
+
version?: InputMaybe<Array<ValueVersionInput>>;
|
|
311
|
+
};
|
|
312
|
+
export type DeleteTaskInput = {
|
|
313
|
+
archive: Scalars['Boolean']['input'];
|
|
314
|
+
id: Scalars['ID']['input'];
|
|
315
|
+
};
|
|
316
|
+
export type DependentValuesPermissionFilterInput = {
|
|
317
|
+
attributeId: Scalars['ID']['input'];
|
|
318
|
+
libraryId: Scalars['ID']['input'];
|
|
319
|
+
recordId: Scalars['ID']['input'];
|
|
320
|
+
};
|
|
321
|
+
export type DiscussionCommentInput = {
|
|
322
|
+
mentions?: InputMaybe<DiscussionMentionsInput>;
|
|
323
|
+
message: Scalars['String']['input'];
|
|
324
|
+
targetRecord: DiscussionTargetRecordInput;
|
|
325
|
+
threadId?: InputMaybe<Scalars['String']['input']>;
|
|
326
|
+
};
|
|
327
|
+
export type DiscussionMentionsInput = {
|
|
328
|
+
url: Scalars['String']['input'];
|
|
329
|
+
users?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
330
|
+
};
|
|
331
|
+
export type DiscussionTargetRecordInput = {
|
|
332
|
+
id: Scalars['String']['input'];
|
|
333
|
+
libraryId: Scalars['String']['input'];
|
|
334
|
+
};
|
|
335
|
+
export type EmbeddedAttributeInput = {
|
|
336
|
+
description?: InputMaybe<Scalars['SystemTranslationOptional']['input']>;
|
|
337
|
+
embedded_fields?: InputMaybe<Array<InputMaybe<EmbeddedAttributeInput>>>;
|
|
338
|
+
format?: InputMaybe<AttributeFormat>;
|
|
339
|
+
id: Scalars['ID']['input'];
|
|
340
|
+
label?: InputMaybe<Scalars['SystemTranslation']['input']>;
|
|
341
|
+
validation_regex?: InputMaybe<Scalars['String']['input']>;
|
|
342
|
+
};
|
|
343
|
+
export declare enum EventAction {
|
|
344
|
+
API_KEY_DELETE = "API_KEY_DELETE",
|
|
345
|
+
API_KEY_SAVE = "API_KEY_SAVE",
|
|
346
|
+
APP_DELETE = "APP_DELETE",
|
|
347
|
+
APP_SAVE = "APP_SAVE",
|
|
348
|
+
ATTRIBUTE_DELETE = "ATTRIBUTE_DELETE",
|
|
349
|
+
ATTRIBUTE_SAVE = "ATTRIBUTE_SAVE",
|
|
350
|
+
AUTOMATION_PIPELINE_FAILURE = "AUTOMATION_PIPELINE_FAILURE",
|
|
351
|
+
AUTOMATION_PIPELINE_SUCCESS = "AUTOMATION_PIPELINE_SUCCESS",
|
|
352
|
+
AUTOMATION_RULE_CREATE = "AUTOMATION_RULE_CREATE",
|
|
353
|
+
AUTOMATION_RULE_DELETE = "AUTOMATION_RULE_DELETE",
|
|
354
|
+
AUTOMATION_RULE_UPDATE = "AUTOMATION_RULE_UPDATE",
|
|
355
|
+
CONFIG_IMPORT_END = "CONFIG_IMPORT_END",
|
|
356
|
+
CONFIG_IMPORT_START = "CONFIG_IMPORT_START",
|
|
357
|
+
DATA_IMPORT_END = "DATA_IMPORT_END",
|
|
358
|
+
DATA_IMPORT_START = "DATA_IMPORT_START",
|
|
359
|
+
EXPORT_END = "EXPORT_END",
|
|
360
|
+
EXPORT_START = "EXPORT_START",
|
|
361
|
+
GLOBAL_SETTINGS_SAVE = "GLOBAL_SETTINGS_SAVE",
|
|
362
|
+
LIBRARY_DELETE = "LIBRARY_DELETE",
|
|
363
|
+
LIBRARY_PURGE = "LIBRARY_PURGE",
|
|
364
|
+
LIBRARY_SAVE = "LIBRARY_SAVE",
|
|
365
|
+
PERMISSION_SAVE = "PERMISSION_SAVE",
|
|
366
|
+
RECORD_DELETE = "RECORD_DELETE",
|
|
367
|
+
RECORD_SAVE = "RECORD_SAVE",
|
|
368
|
+
TASKS_DELETE = "TASKS_DELETE",
|
|
369
|
+
TREE_ADD_ELEMENT = "TREE_ADD_ELEMENT",
|
|
370
|
+
TREE_DELETE = "TREE_DELETE",
|
|
371
|
+
TREE_DELETE_ELEMENT = "TREE_DELETE_ELEMENT",
|
|
372
|
+
TREE_MOVE_ELEMENT = "TREE_MOVE_ELEMENT",
|
|
373
|
+
TREE_SAVE = "TREE_SAVE",
|
|
374
|
+
VALUE_DELETE = "VALUE_DELETE",
|
|
375
|
+
VALUE_SAVE = "VALUE_SAVE",
|
|
376
|
+
VERSION_PROFILE_DELETE = "VERSION_PROFILE_DELETE",
|
|
377
|
+
VERSION_PROFILE_SAVE = "VERSION_PROFILE_SAVE"
|
|
378
|
+
}
|
|
379
|
+
export type EventTopicInput = {
|
|
380
|
+
apiKey?: InputMaybe<Scalars['String']['input']>;
|
|
381
|
+
application?: InputMaybe<Scalars['String']['input']>;
|
|
382
|
+
attribute?: InputMaybe<Scalars['String']['input']>;
|
|
383
|
+
automationRule?: InputMaybe<Scalars['String']['input']>;
|
|
384
|
+
filename?: InputMaybe<Scalars['String']['input']>;
|
|
385
|
+
library?: InputMaybe<Scalars['String']['input']>;
|
|
386
|
+
permission?: InputMaybe<EventTopicPermissionInput>;
|
|
387
|
+
profile?: InputMaybe<Scalars['String']['input']>;
|
|
388
|
+
record?: InputMaybe<EventTopicRecordInput>;
|
|
389
|
+
tree?: InputMaybe<Scalars['String']['input']>;
|
|
390
|
+
};
|
|
391
|
+
export type EventTopicPermissionInput = {
|
|
392
|
+
applyTo?: InputMaybe<Scalars['String']['input']>;
|
|
393
|
+
id: Scalars['String']['input'];
|
|
394
|
+
};
|
|
395
|
+
export type EventTopicRecordInput = {
|
|
396
|
+
id: Scalars['String']['input'];
|
|
397
|
+
libraryId: Scalars['String']['input'];
|
|
398
|
+
};
|
|
399
|
+
export type FileInput = {
|
|
400
|
+
data: Scalars['Upload']['input'];
|
|
401
|
+
replace?: InputMaybe<Scalars['Boolean']['input']>;
|
|
402
|
+
size?: InputMaybe<Scalars['Int']['input']>;
|
|
403
|
+
uid: Scalars['String']['input'];
|
|
404
|
+
};
|
|
405
|
+
export declare enum FileType {
|
|
406
|
+
audio = "audio",
|
|
407
|
+
document = "document",
|
|
408
|
+
image = "image",
|
|
409
|
+
other = "other",
|
|
410
|
+
video = "video"
|
|
411
|
+
}
|
|
412
|
+
export type FormDependencyValueInput = {
|
|
413
|
+
attribute: Scalars['ID']['input'];
|
|
414
|
+
value: Scalars['ID']['input'];
|
|
415
|
+
};
|
|
416
|
+
export type FormElementInput = {
|
|
417
|
+
containerId: Scalars['ID']['input'];
|
|
418
|
+
id: Scalars['ID']['input'];
|
|
419
|
+
order: Scalars['Int']['input'];
|
|
420
|
+
settings: Array<FormElementSettingsInput>;
|
|
421
|
+
type: FormElementTypes;
|
|
422
|
+
uiElementType: Scalars['String']['input'];
|
|
423
|
+
};
|
|
424
|
+
export type FormElementSettingsInput = {
|
|
425
|
+
key: Scalars['String']['input'];
|
|
426
|
+
value: Scalars['Any']['input'];
|
|
427
|
+
};
|
|
428
|
+
export declare enum FormElementTypes {
|
|
429
|
+
field = "field",
|
|
430
|
+
layout = "layout"
|
|
431
|
+
}
|
|
432
|
+
export type FormElementsByDepsInput = {
|
|
433
|
+
dependencyValue?: InputMaybe<FormDependencyValueInput>;
|
|
434
|
+
elements: Array<FormElementInput>;
|
|
435
|
+
};
|
|
436
|
+
export type FormFiltersInput = {
|
|
437
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
438
|
+
label?: InputMaybe<Scalars['String']['input']>;
|
|
439
|
+
library: Scalars['ID']['input'];
|
|
440
|
+
system?: InputMaybe<Scalars['Boolean']['input']>;
|
|
441
|
+
};
|
|
442
|
+
export type FormInput = {
|
|
443
|
+
dependencyAttributes?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
444
|
+
elements?: InputMaybe<Array<FormElementsByDepsInput>>;
|
|
445
|
+
id: Scalars['ID']['input'];
|
|
446
|
+
label?: InputMaybe<Scalars['SystemTranslation']['input']>;
|
|
447
|
+
library: Scalars['ID']['input'];
|
|
448
|
+
sidePanel?: InputMaybe<FormSidePanelInput>;
|
|
449
|
+
};
|
|
450
|
+
export type FormSidePanelInput = {
|
|
451
|
+
enable: Scalars['Boolean']['input'];
|
|
452
|
+
isOpenByDefault: Scalars['Boolean']['input'];
|
|
453
|
+
};
|
|
454
|
+
export declare enum FormsSortableFields {
|
|
455
|
+
id = "id",
|
|
456
|
+
library = "library",
|
|
457
|
+
system = "system"
|
|
458
|
+
}
|
|
459
|
+
export type GlobalSettingsFileInput = {
|
|
460
|
+
library: Scalars['String']['input'];
|
|
461
|
+
recordId: Scalars['String']['input'];
|
|
462
|
+
};
|
|
463
|
+
export type GlobalSettingsInput = {
|
|
464
|
+
defaultApp?: InputMaybe<Scalars['String']['input']>;
|
|
465
|
+
favicon?: InputMaybe<GlobalSettingsFileInput>;
|
|
466
|
+
icon?: InputMaybe<GlobalSettingsFileInput>;
|
|
467
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
468
|
+
settings?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
469
|
+
};
|
|
470
|
+
export declare enum IoTypes {
|
|
471
|
+
boolean = "boolean",
|
|
472
|
+
number = "number",
|
|
473
|
+
object = "object",
|
|
474
|
+
string = "string"
|
|
475
|
+
}
|
|
476
|
+
export declare enum ImportMode {
|
|
477
|
+
insert = "insert",
|
|
478
|
+
update = "update",
|
|
479
|
+
upsert = "upsert"
|
|
480
|
+
}
|
|
481
|
+
export declare enum ImportType {
|
|
482
|
+
IGNORE = "IGNORE",
|
|
483
|
+
LINK = "LINK",
|
|
484
|
+
STANDARD = "STANDARD"
|
|
485
|
+
}
|
|
486
|
+
export type LibrariesFiltersInput = {
|
|
487
|
+
behavior?: InputMaybe<Array<LibraryBehavior>>;
|
|
488
|
+
id?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
489
|
+
label?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
490
|
+
system?: InputMaybe<Scalars['Boolean']['input']>;
|
|
491
|
+
};
|
|
492
|
+
export declare enum LibrariesSortableFields {
|
|
493
|
+
behavior = "behavior",
|
|
494
|
+
id = "id",
|
|
495
|
+
system = "system"
|
|
496
|
+
}
|
|
497
|
+
export declare enum LibraryBehavior {
|
|
498
|
+
directories = "directories",
|
|
499
|
+
files = "files",
|
|
500
|
+
join = "join",
|
|
501
|
+
standard = "standard"
|
|
502
|
+
}
|
|
503
|
+
export type LibraryIconInput = {
|
|
504
|
+
libraryId: Scalars['String']['input'];
|
|
505
|
+
recordId: Scalars['String']['input'];
|
|
506
|
+
};
|
|
507
|
+
export type LibraryInput = {
|
|
508
|
+
attributes?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
509
|
+
behavior?: InputMaybe<LibraryBehavior>;
|
|
510
|
+
defaultView?: InputMaybe<Scalars['ID']['input']>;
|
|
511
|
+
fullTextAttributes?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
512
|
+
icon?: InputMaybe<LibraryIconInput>;
|
|
513
|
+
id: Scalars['ID']['input'];
|
|
514
|
+
label?: InputMaybe<Scalars['SystemTranslation']['input']>;
|
|
515
|
+
mandatoryAttribute?: InputMaybe<Scalars['ID']['input']>;
|
|
516
|
+
permissions_conf?: InputMaybe<TreepermissionsConfInput>;
|
|
517
|
+
previewsSettings?: InputMaybe<Array<LibraryPreviewsSettingsInput>>;
|
|
518
|
+
recordIdentityConf?: InputMaybe<RecordIdentityConfInput>;
|
|
519
|
+
settings?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
520
|
+
};
|
|
521
|
+
export type LibraryPreviewsSettingsInput = {
|
|
522
|
+
description?: InputMaybe<Scalars['SystemTranslationOptional']['input']>;
|
|
523
|
+
label: Scalars['SystemTranslation']['input'];
|
|
524
|
+
versions: PreviewVersionInput;
|
|
525
|
+
};
|
|
526
|
+
export declare enum LogAction {
|
|
527
|
+
API_KEY_DELETE = "API_KEY_DELETE",
|
|
528
|
+
API_KEY_SAVE = "API_KEY_SAVE",
|
|
529
|
+
APP_DELETE = "APP_DELETE",
|
|
530
|
+
APP_SAVE = "APP_SAVE",
|
|
531
|
+
ATTRIBUTE_DELETE = "ATTRIBUTE_DELETE",
|
|
532
|
+
ATTRIBUTE_SAVE = "ATTRIBUTE_SAVE",
|
|
533
|
+
AUTOMATION_PIPELINE_FAILURE = "AUTOMATION_PIPELINE_FAILURE",
|
|
534
|
+
AUTOMATION_PIPELINE_SUCCESS = "AUTOMATION_PIPELINE_SUCCESS",
|
|
535
|
+
AUTOMATION_RULE_CREATE = "AUTOMATION_RULE_CREATE",
|
|
536
|
+
AUTOMATION_RULE_DELETE = "AUTOMATION_RULE_DELETE",
|
|
537
|
+
AUTOMATION_RULE_UPDATE = "AUTOMATION_RULE_UPDATE",
|
|
538
|
+
CONFIG_IMPORT_END = "CONFIG_IMPORT_END",
|
|
539
|
+
CONFIG_IMPORT_START = "CONFIG_IMPORT_START",
|
|
540
|
+
DATA_IMPORT_END = "DATA_IMPORT_END",
|
|
541
|
+
DATA_IMPORT_START = "DATA_IMPORT_START",
|
|
542
|
+
EXPORT_END = "EXPORT_END",
|
|
543
|
+
EXPORT_START = "EXPORT_START",
|
|
544
|
+
GLOBAL_SETTINGS_SAVE = "GLOBAL_SETTINGS_SAVE",
|
|
545
|
+
LIBRARY_DELETE = "LIBRARY_DELETE",
|
|
546
|
+
LIBRARY_PURGE = "LIBRARY_PURGE",
|
|
547
|
+
LIBRARY_SAVE = "LIBRARY_SAVE",
|
|
548
|
+
PERMISSION_SAVE = "PERMISSION_SAVE",
|
|
549
|
+
RECORD_DELETE = "RECORD_DELETE",
|
|
550
|
+
RECORD_SAVE = "RECORD_SAVE",
|
|
551
|
+
TASKS_DELETE = "TASKS_DELETE",
|
|
552
|
+
TREE_ADD_ELEMENT = "TREE_ADD_ELEMENT",
|
|
553
|
+
TREE_DELETE = "TREE_DELETE",
|
|
554
|
+
TREE_DELETE_ELEMENT = "TREE_DELETE_ELEMENT",
|
|
555
|
+
TREE_MOVE_ELEMENT = "TREE_MOVE_ELEMENT",
|
|
556
|
+
TREE_SAVE = "TREE_SAVE",
|
|
557
|
+
VALUE_DELETE = "VALUE_DELETE",
|
|
558
|
+
VALUE_SAVE = "VALUE_SAVE",
|
|
559
|
+
VERSION_PROFILE_DELETE = "VERSION_PROFILE_DELETE",
|
|
560
|
+
VERSION_PROFILE_SAVE = "VERSION_PROFILE_SAVE"
|
|
561
|
+
}
|
|
562
|
+
export type LogFilterInput = {
|
|
563
|
+
actions?: InputMaybe<Array<LogAction>>;
|
|
564
|
+
instanceId?: InputMaybe<Scalars['String']['input']>;
|
|
565
|
+
queryId?: InputMaybe<Scalars['String']['input']>;
|
|
566
|
+
time?: InputMaybe<LogFilterTimeInput>;
|
|
567
|
+
topic?: InputMaybe<LogTopicFilterInput>;
|
|
568
|
+
trigger?: InputMaybe<Scalars['String']['input']>;
|
|
569
|
+
userId?: InputMaybe<Scalars['String']['input']>;
|
|
570
|
+
};
|
|
571
|
+
export type LogFilterTimeInput = {
|
|
572
|
+
from?: InputMaybe<Scalars['Int']['input']>;
|
|
573
|
+
to?: InputMaybe<Scalars['Int']['input']>;
|
|
574
|
+
};
|
|
575
|
+
export type LogSortInput = {
|
|
576
|
+
field: LogSortableField;
|
|
577
|
+
order: SortOrder;
|
|
578
|
+
};
|
|
579
|
+
export declare enum LogSortableField {
|
|
580
|
+
action = "action",
|
|
581
|
+
instanceId = "instanceId",
|
|
582
|
+
queryId = "queryId",
|
|
583
|
+
time = "time",
|
|
584
|
+
trigger = "trigger",
|
|
585
|
+
userId = "userId"
|
|
586
|
+
}
|
|
587
|
+
export type LogTopicFilterInput = {
|
|
588
|
+
apiKey?: InputMaybe<Scalars['String']['input']>;
|
|
589
|
+
attribute?: InputMaybe<Scalars['String']['input']>;
|
|
590
|
+
automationRule?: InputMaybe<Scalars['String']['input']>;
|
|
591
|
+
filename?: InputMaybe<Scalars['String']['input']>;
|
|
592
|
+
library?: InputMaybe<Scalars['String']['input']>;
|
|
593
|
+
permission?: InputMaybe<LogTopicPermissionFilterInput>;
|
|
594
|
+
profile?: InputMaybe<Scalars['String']['input']>;
|
|
595
|
+
record?: InputMaybe<LogTopicRecordFilterInput>;
|
|
596
|
+
tree?: InputMaybe<Scalars['String']['input']>;
|
|
597
|
+
};
|
|
598
|
+
export type LogTopicPermissionFilterInput = {
|
|
599
|
+
applyTo?: InputMaybe<Scalars['String']['input']>;
|
|
600
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
601
|
+
};
|
|
602
|
+
export type LogTopicRecordFilterInput = {
|
|
603
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
604
|
+
libraryId?: InputMaybe<Scalars['String']['input']>;
|
|
605
|
+
};
|
|
606
|
+
export declare enum MultiDisplayOption {
|
|
607
|
+
avatar = "avatar",
|
|
608
|
+
badge_qty = "badge_qty",
|
|
609
|
+
tag = "tag"
|
|
610
|
+
}
|
|
611
|
+
export declare enum NotificationLevel {
|
|
612
|
+
error = "error",
|
|
613
|
+
info = "info",
|
|
614
|
+
success = "success",
|
|
615
|
+
warning = "warning"
|
|
616
|
+
}
|
|
617
|
+
export type Pagination = {
|
|
618
|
+
limit: Scalars['Int']['input'];
|
|
619
|
+
offset: Scalars['Int']['input'];
|
|
620
|
+
};
|
|
621
|
+
export type PartialAutomationRuleTriggerInput = {
|
|
622
|
+
eventAction?: InputMaybe<AutomationRuleEventAction>;
|
|
623
|
+
eventTopic?: InputMaybe<EventTopicInput>;
|
|
624
|
+
synchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
|
625
|
+
};
|
|
626
|
+
export type PermissionActionInput = {
|
|
627
|
+
allowed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
628
|
+
name: PermissionsActions;
|
|
629
|
+
};
|
|
630
|
+
export type PermissionInput = {
|
|
631
|
+
actions: Array<PermissionActionInput>;
|
|
632
|
+
applyTo?: InputMaybe<Scalars['ID']['input']>;
|
|
633
|
+
dependenciesTreeTargets?: InputMaybe<Array<PermissionsDependenciesTreeTargetInput>>;
|
|
634
|
+
permissionTreeTarget?: InputMaybe<PermissionsTreeTargetInput>;
|
|
635
|
+
type: PermissionTypes;
|
|
636
|
+
usersGroup?: InputMaybe<Scalars['ID']['input']>;
|
|
637
|
+
};
|
|
638
|
+
export type PermissionTarget = {
|
|
639
|
+
attributeId?: InputMaybe<Scalars['ID']['input']>;
|
|
640
|
+
libraryId?: InputMaybe<Scalars['ID']['input']>;
|
|
641
|
+
nodeId?: InputMaybe<Scalars['ID']['input']>;
|
|
642
|
+
recordId?: InputMaybe<Scalars['ID']['input']>;
|
|
643
|
+
};
|
|
644
|
+
export declare enum PermissionTypes {
|
|
645
|
+
admin = "admin",
|
|
646
|
+
application = "application",
|
|
647
|
+
attribute = "attribute",
|
|
648
|
+
attribute_dependent_values = "attribute_dependent_values",
|
|
649
|
+
library = "library",
|
|
650
|
+
record = "record",
|
|
651
|
+
record_attribute = "record_attribute",
|
|
652
|
+
tree = "tree",
|
|
653
|
+
tree_library = "tree_library",
|
|
654
|
+
tree_node = "tree_node"
|
|
655
|
+
}
|
|
656
|
+
export declare enum PermissionsActions {
|
|
657
|
+
access_application = "access_application",
|
|
658
|
+
access_attribute = "access_attribute",
|
|
659
|
+
access_library = "access_library",
|
|
660
|
+
access_record = "access_record",
|
|
661
|
+
access_record_by_default = "access_record_by_default",
|
|
662
|
+
access_tree = "access_tree",
|
|
663
|
+
admin_access_api_keys = "admin_access_api_keys",
|
|
664
|
+
admin_access_applications = "admin_access_applications",
|
|
665
|
+
admin_access_attributes = "admin_access_attributes",
|
|
666
|
+
admin_access_libraries = "admin_access_libraries",
|
|
667
|
+
admin_access_logs = "admin_access_logs",
|
|
668
|
+
admin_access_permissions = "admin_access_permissions",
|
|
669
|
+
admin_access_tasks = "admin_access_tasks",
|
|
670
|
+
admin_access_trees = "admin_access_trees",
|
|
671
|
+
admin_access_version_profiles = "admin_access_version_profiles",
|
|
672
|
+
admin_application = "admin_application",
|
|
673
|
+
admin_cancel_task = "admin_cancel_task",
|
|
674
|
+
admin_create_api_key = "admin_create_api_key",
|
|
675
|
+
admin_create_application = "admin_create_application",
|
|
676
|
+
admin_create_attribute = "admin_create_attribute",
|
|
677
|
+
admin_create_library = "admin_create_library",
|
|
678
|
+
admin_create_tree = "admin_create_tree",
|
|
679
|
+
admin_create_version_profile = "admin_create_version_profile",
|
|
680
|
+
admin_delete_api_key = "admin_delete_api_key",
|
|
681
|
+
admin_delete_application = "admin_delete_application",
|
|
682
|
+
admin_delete_attribute = "admin_delete_attribute",
|
|
683
|
+
admin_delete_library = "admin_delete_library",
|
|
684
|
+
admin_delete_task = "admin_delete_task",
|
|
685
|
+
admin_delete_tree = "admin_delete_tree",
|
|
686
|
+
admin_delete_version_profile = "admin_delete_version_profile",
|
|
687
|
+
admin_edit_api_key = "admin_edit_api_key",
|
|
688
|
+
admin_edit_application = "admin_edit_application",
|
|
689
|
+
admin_edit_attribute = "admin_edit_attribute",
|
|
690
|
+
admin_edit_global_settings = "admin_edit_global_settings",
|
|
691
|
+
admin_edit_library = "admin_edit_library",
|
|
692
|
+
admin_edit_permission = "admin_edit_permission",
|
|
693
|
+
admin_edit_tree = "admin_edit_tree",
|
|
694
|
+
admin_edit_version_profile = "admin_edit_version_profile",
|
|
695
|
+
admin_import_config_clear_database = "admin_import_config_clear_database",
|
|
696
|
+
admin_library = "admin_library",
|
|
697
|
+
admin_list_plugins = "admin_list_plugins",
|
|
698
|
+
admin_manage_automation = "admin_manage_automation",
|
|
699
|
+
admin_manage_global_preferences = "admin_manage_global_preferences",
|
|
700
|
+
create_record = "create_record",
|
|
701
|
+
delete_record = "delete_record",
|
|
702
|
+
detach = "detach",
|
|
703
|
+
edit_children = "edit_children",
|
|
704
|
+
edit_record = "edit_record",
|
|
705
|
+
edit_value = "edit_value",
|
|
706
|
+
set_value = "set_value"
|
|
707
|
+
}
|
|
708
|
+
export type PermissionsDependenciesTreeTargetInput = {
|
|
709
|
+
attributeId: Scalars['ID']['input'];
|
|
710
|
+
nodeId?: InputMaybe<Scalars['ID']['input']>;
|
|
711
|
+
tree: Scalars['ID']['input'];
|
|
712
|
+
};
|
|
713
|
+
export declare enum PermissionsRelation {
|
|
714
|
+
and = "and",
|
|
715
|
+
or = "or"
|
|
716
|
+
}
|
|
717
|
+
export type PermissionsTreeTargetInput = {
|
|
718
|
+
nodeId?: InputMaybe<Scalars['ID']['input']>;
|
|
719
|
+
tree: Scalars['ID']['input'];
|
|
720
|
+
};
|
|
721
|
+
export type PreviewVersionInput = {
|
|
722
|
+
background: Scalars['String']['input'];
|
|
723
|
+
density: Scalars['Int']['input'];
|
|
724
|
+
sizes: Array<PreviewVersionSizeInput>;
|
|
725
|
+
};
|
|
726
|
+
export type PreviewVersionSizeInput = {
|
|
727
|
+
name: Scalars['String']['input'];
|
|
728
|
+
size: Scalars['Int']['input'];
|
|
729
|
+
};
|
|
730
|
+
export declare enum RecordFilterCondition {
|
|
731
|
+
BEGIN_WITH = "BEGIN_WITH",
|
|
732
|
+
BETWEEN = "BETWEEN",
|
|
733
|
+
CLASSIFIED_IN = "CLASSIFIED_IN",
|
|
734
|
+
CONTAINS = "CONTAINS",
|
|
735
|
+
END_AFTER = "END_AFTER",
|
|
736
|
+
END_BEFORE = "END_BEFORE",
|
|
737
|
+
END_ON = "END_ON",
|
|
738
|
+
END_WITH = "END_WITH",
|
|
739
|
+
EQUAL = "EQUAL",
|
|
740
|
+
GREATER_THAN = "GREATER_THAN",
|
|
741
|
+
IS_EMPTY = "IS_EMPTY",
|
|
742
|
+
IS_NOT_EMPTY = "IS_NOT_EMPTY",
|
|
743
|
+
LAST_MONTH = "LAST_MONTH",
|
|
744
|
+
LESS_THAN = "LESS_THAN",
|
|
745
|
+
NEXT_MONTH = "NEXT_MONTH",
|
|
746
|
+
NOT_CLASSIFIED_IN = "NOT_CLASSIFIED_IN",
|
|
747
|
+
NOT_CONTAINS = "NOT_CONTAINS",
|
|
748
|
+
NOT_EQUAL = "NOT_EQUAL",
|
|
749
|
+
START_AFTER = "START_AFTER",
|
|
750
|
+
START_BEFORE = "START_BEFORE",
|
|
751
|
+
START_ON = "START_ON",
|
|
752
|
+
TODAY = "TODAY",
|
|
753
|
+
TOMORROW = "TOMORROW",
|
|
754
|
+
VALUES_COUNT_EQUAL = "VALUES_COUNT_EQUAL",
|
|
755
|
+
VALUES_COUNT_GREATER_THAN = "VALUES_COUNT_GREATER_THAN",
|
|
756
|
+
VALUES_COUNT_LOWER_THAN = "VALUES_COUNT_LOWER_THAN",
|
|
757
|
+
YESTERDAY = "YESTERDAY"
|
|
758
|
+
}
|
|
759
|
+
export type RecordFilterInput = {
|
|
760
|
+
condition?: InputMaybe<RecordFilterCondition>;
|
|
761
|
+
field?: InputMaybe<Scalars['String']['input']>;
|
|
762
|
+
operator?: InputMaybe<RecordFilterOperator>;
|
|
763
|
+
treeId?: InputMaybe<Scalars['String']['input']>;
|
|
764
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
765
|
+
withEmptyValues?: InputMaybe<Scalars['Boolean']['input']>;
|
|
766
|
+
};
|
|
767
|
+
export declare enum RecordFilterOperator {
|
|
768
|
+
AND = "AND",
|
|
769
|
+
CLOSE_BRACKET = "CLOSE_BRACKET",
|
|
770
|
+
OPEN_BRACKET = "OPEN_BRACKET",
|
|
771
|
+
OR = "OR"
|
|
772
|
+
}
|
|
773
|
+
export type RecordIdentityConfInput = {
|
|
774
|
+
color?: InputMaybe<Scalars['ID']['input']>;
|
|
775
|
+
label?: InputMaybe<Scalars['ID']['input']>;
|
|
776
|
+
parentContext?: InputMaybe<Scalars['ID']['input']>;
|
|
777
|
+
preview?: InputMaybe<Scalars['ID']['input']>;
|
|
778
|
+
subLabel?: InputMaybe<Scalars['ID']['input']>;
|
|
779
|
+
treeColorPreview?: InputMaybe<Scalars['ID']['input']>;
|
|
780
|
+
};
|
|
781
|
+
export type RecordInput = {
|
|
782
|
+
id: Scalars['ID']['input'];
|
|
783
|
+
library: Scalars['String']['input'];
|
|
784
|
+
};
|
|
785
|
+
export type RecordNewCommentFilterInput = {
|
|
786
|
+
ignoreOwnEvents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
787
|
+
libraries?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
788
|
+
records?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
789
|
+
};
|
|
790
|
+
export declare enum RecordPermissionsActions {
|
|
791
|
+
access_record = "access_record",
|
|
792
|
+
access_record_by_default = "access_record_by_default",
|
|
793
|
+
create_record = "create_record",
|
|
794
|
+
delete_record = "delete_record",
|
|
795
|
+
edit_record = "edit_record"
|
|
796
|
+
}
|
|
797
|
+
export type RecordSortInput = {
|
|
798
|
+
field: Scalars['String']['input'];
|
|
799
|
+
order: SortOrder;
|
|
800
|
+
};
|
|
801
|
+
export type RecordUpdateFilterInput = {
|
|
802
|
+
ignoreOwnEvents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
803
|
+
libraries?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
804
|
+
records?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
805
|
+
};
|
|
806
|
+
export type RecordsPagination = {
|
|
807
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
808
|
+
limit: Scalars['Int']['input'];
|
|
809
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
810
|
+
};
|
|
811
|
+
export type SaveValueBulkMappingInput = {
|
|
812
|
+
dependenciesFilters?: InputMaybe<Array<InputMaybe<RecordFilterInput>>>;
|
|
813
|
+
values: Array<SaveValueBulkMappingValueInput>;
|
|
814
|
+
};
|
|
815
|
+
export type SaveValueBulkMappingValueInput = {
|
|
816
|
+
after?: InputMaybe<Scalars['ID']['input']>;
|
|
817
|
+
before?: InputMaybe<Scalars['ID']['input']>;
|
|
818
|
+
};
|
|
819
|
+
export type SheetInput = {
|
|
820
|
+
keyIndex?: InputMaybe<Scalars['Int']['input']>;
|
|
821
|
+
keyToIndex?: InputMaybe<Scalars['Int']['input']>;
|
|
822
|
+
library: Scalars['String']['input'];
|
|
823
|
+
linkAttribute?: InputMaybe<Scalars['String']['input']>;
|
|
824
|
+
mapping?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
825
|
+
mode: ImportMode;
|
|
826
|
+
treeLinkLibrary?: InputMaybe<Scalars['String']['input']>;
|
|
827
|
+
type: ImportType;
|
|
828
|
+
};
|
|
829
|
+
export type SmartFilterConfInput = {
|
|
830
|
+
enable: Scalars['Boolean']['input'];
|
|
831
|
+
};
|
|
832
|
+
export type SortApiKeysInput = {
|
|
833
|
+
field: ApiKeysSortableFields;
|
|
834
|
+
order?: InputMaybe<SortOrder>;
|
|
835
|
+
};
|
|
836
|
+
export type SortApplications = {
|
|
837
|
+
field: ApplicationSortableFields;
|
|
838
|
+
order?: InputMaybe<SortOrder>;
|
|
839
|
+
};
|
|
840
|
+
export type SortAttributes = {
|
|
841
|
+
field: AttributesSortableFields;
|
|
842
|
+
order?: InputMaybe<SortOrder>;
|
|
843
|
+
};
|
|
844
|
+
export type SortForms = {
|
|
845
|
+
field: FormsSortableFields;
|
|
846
|
+
order?: InputMaybe<SortOrder>;
|
|
847
|
+
};
|
|
848
|
+
export type SortLibraries = {
|
|
849
|
+
field: LibrariesSortableFields;
|
|
850
|
+
order?: InputMaybe<SortOrder>;
|
|
851
|
+
};
|
|
852
|
+
export declare enum SortOrder {
|
|
853
|
+
asc = "asc",
|
|
854
|
+
desc = "desc"
|
|
855
|
+
}
|
|
856
|
+
export type SortTrees = {
|
|
857
|
+
field: TreesSortableFields;
|
|
858
|
+
order?: InputMaybe<SortOrder>;
|
|
859
|
+
};
|
|
860
|
+
export type SortVersionProfilesInput = {
|
|
861
|
+
field: VersionProfilesSortableFields;
|
|
862
|
+
order?: InputMaybe<SortOrder>;
|
|
863
|
+
};
|
|
864
|
+
export type TaskFiltersInput = {
|
|
865
|
+
archive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
866
|
+
created_by?: InputMaybe<Scalars['ID']['input']>;
|
|
867
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
868
|
+
status?: InputMaybe<TaskStatus>;
|
|
869
|
+
type?: InputMaybe<TaskType>;
|
|
870
|
+
};
|
|
871
|
+
export declare enum TaskStatus {
|
|
872
|
+
CANCELED = "CANCELED",
|
|
873
|
+
CREATED = "CREATED",
|
|
874
|
+
DONE = "DONE",
|
|
875
|
+
FAILED = "FAILED",
|
|
876
|
+
PENDING = "PENDING",
|
|
877
|
+
PENDING_CANCEL = "PENDING_CANCEL",
|
|
878
|
+
RUNNING = "RUNNING"
|
|
879
|
+
}
|
|
880
|
+
export declare enum TaskType {
|
|
881
|
+
EXPORT = "EXPORT",
|
|
882
|
+
IMPORT_CONFIG = "IMPORT_CONFIG",
|
|
883
|
+
IMPORT_DATA = "IMPORT_DATA",
|
|
884
|
+
INDEXATION = "INDEXATION",
|
|
885
|
+
PURGE_MULTIPLE_VALUES = "PURGE_MULTIPLE_VALUES",
|
|
886
|
+
SAVE_VALUE_BULK = "SAVE_VALUE_BULK"
|
|
887
|
+
}
|
|
888
|
+
export declare enum TreeBehavior {
|
|
889
|
+
files = "files",
|
|
890
|
+
standard = "standard"
|
|
891
|
+
}
|
|
892
|
+
export type TreeElementInput = {
|
|
893
|
+
id: Scalars['ID']['input'];
|
|
894
|
+
library: Scalars['String']['input'];
|
|
895
|
+
};
|
|
896
|
+
export type TreeEventFiltersInput = {
|
|
897
|
+
events?: InputMaybe<Array<TreeEventTypes>>;
|
|
898
|
+
ignoreOwnEvents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
899
|
+
nodes?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
900
|
+
treeId: Scalars['ID']['input'];
|
|
901
|
+
};
|
|
902
|
+
export declare enum TreeEventTypes {
|
|
903
|
+
add = "add",
|
|
904
|
+
move = "move",
|
|
905
|
+
remove = "remove"
|
|
906
|
+
}
|
|
907
|
+
export type TreeInput = {
|
|
908
|
+
behavior?: InputMaybe<TreeBehavior>;
|
|
909
|
+
id: Scalars['ID']['input'];
|
|
910
|
+
label?: InputMaybe<Scalars['SystemTranslation']['input']>;
|
|
911
|
+
libraries?: InputMaybe<Array<TreeLibraryInput>>;
|
|
912
|
+
permissions_conf?: InputMaybe<Array<TreeNodePermissionsConfInput>>;
|
|
913
|
+
settings?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
914
|
+
};
|
|
915
|
+
export type TreeLibraryInput = {
|
|
916
|
+
library: Scalars['ID']['input'];
|
|
917
|
+
settings: TreeLibrarySettingsInput;
|
|
918
|
+
};
|
|
919
|
+
export type TreeLibrarySettingsInput = {
|
|
920
|
+
allowMultiplePositions: Scalars['Boolean']['input'];
|
|
921
|
+
allowedAtRoot: Scalars['Boolean']['input'];
|
|
922
|
+
allowedChildren: Array<Scalars['String']['input']>;
|
|
923
|
+
};
|
|
924
|
+
export type TreeNodePermissionsConfInput = {
|
|
925
|
+
libraryId: Scalars['ID']['input'];
|
|
926
|
+
permissionsConf: TreepermissionsConfInput;
|
|
927
|
+
};
|
|
928
|
+
export type TreePermissionsDependentValuesConfInput = {
|
|
929
|
+
allowByDefault: Scalars['Boolean']['input'];
|
|
930
|
+
dependenciesTreeAttributes: Array<Scalars['ID']['input']>;
|
|
931
|
+
};
|
|
932
|
+
export type TreepermissionsConfInput = {
|
|
933
|
+
permissionTreeAttributes: Array<Scalars['ID']['input']>;
|
|
934
|
+
relation: PermissionsRelation;
|
|
935
|
+
};
|
|
936
|
+
export type TreesFiltersInput = {
|
|
937
|
+
behavior?: InputMaybe<TreeBehavior>;
|
|
938
|
+
id?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
939
|
+
label?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
940
|
+
library?: InputMaybe<Scalars['String']['input']>;
|
|
941
|
+
system?: InputMaybe<Scalars['Boolean']['input']>;
|
|
942
|
+
};
|
|
943
|
+
export declare enum TreesSortableFields {
|
|
944
|
+
behavior = "behavior",
|
|
945
|
+
id = "id",
|
|
946
|
+
system = "system"
|
|
947
|
+
}
|
|
948
|
+
export type UpdateAutomationRuleInput = {
|
|
949
|
+
active?: InputMaybe<Scalars['Boolean']['input']>;
|
|
950
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
951
|
+
id: Scalars['ID']['input'];
|
|
952
|
+
label?: InputMaybe<Scalars['String']['input']>;
|
|
953
|
+
pipeline?: InputMaybe<AutomationRulePipelineInput>;
|
|
954
|
+
trigger?: InputMaybe<AutomationRuleTriggerInput>;
|
|
955
|
+
};
|
|
956
|
+
export type UploadFiltersInput = {
|
|
957
|
+
uid?: InputMaybe<Scalars['String']['input']>;
|
|
958
|
+
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
959
|
+
};
|
|
960
|
+
export declare enum UserCoreDataKeys {
|
|
961
|
+
applications_consultation = "applications_consultation"
|
|
962
|
+
}
|
|
963
|
+
export type ValueBatchInput = {
|
|
964
|
+
attribute?: InputMaybe<Scalars['ID']['input']>;
|
|
965
|
+
id_value?: InputMaybe<Scalars['ID']['input']>;
|
|
966
|
+
metadata?: InputMaybe<Array<InputMaybe<ValueMetadataInput>>>;
|
|
967
|
+
/** Use "\__empty_value__" to set an empty value */
|
|
968
|
+
payload?: InputMaybe<Scalars['String']['input']>;
|
|
969
|
+
};
|
|
970
|
+
export type ValueInput = {
|
|
971
|
+
id_value?: InputMaybe<Scalars['ID']['input']>;
|
|
972
|
+
metadata?: InputMaybe<Array<InputMaybe<ValueMetadataInput>>>;
|
|
973
|
+
/** Use "\__empty_value__" to set an empty value */
|
|
974
|
+
payload?: InputMaybe<Scalars['String']['input']>;
|
|
975
|
+
version?: InputMaybe<Array<InputMaybe<ValueVersionInput>>>;
|
|
976
|
+
};
|
|
977
|
+
export type ValueMetadataInput = {
|
|
978
|
+
name: Scalars['String']['input'];
|
|
979
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
980
|
+
};
|
|
981
|
+
export type ValueVersionInput = {
|
|
982
|
+
treeId: Scalars['String']['input'];
|
|
983
|
+
treeNodeId: Scalars['String']['input'];
|
|
984
|
+
};
|
|
985
|
+
export declare enum ValueVersionMode {
|
|
986
|
+
simple = "simple",
|
|
987
|
+
smart = "smart"
|
|
988
|
+
}
|
|
989
|
+
export type ValuesListConfInput = {
|
|
990
|
+
allowFreeEntry?: InputMaybe<Scalars['Boolean']['input']>;
|
|
991
|
+
allowListUpdate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
992
|
+
enable: Scalars['Boolean']['input'];
|
|
993
|
+
values?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
994
|
+
};
|
|
995
|
+
export type ValuesVersionsConfInput = {
|
|
996
|
+
mode?: InputMaybe<ValueVersionMode>;
|
|
997
|
+
profile?: InputMaybe<Scalars['String']['input']>;
|
|
998
|
+
versionable: Scalars['Boolean']['input'];
|
|
999
|
+
};
|
|
1000
|
+
export type VersionProfileInput = {
|
|
1001
|
+
description?: InputMaybe<Scalars['SystemTranslationOptional']['input']>;
|
|
1002
|
+
id: Scalars['String']['input'];
|
|
1003
|
+
label?: InputMaybe<Scalars['SystemTranslation']['input']>;
|
|
1004
|
+
trees?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1005
|
+
};
|
|
1006
|
+
export type VersionProfilesFiltersInput = {
|
|
1007
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1008
|
+
label?: InputMaybe<Scalars['String']['input']>;
|
|
1009
|
+
trees?: InputMaybe<Scalars['String']['input']>;
|
|
1010
|
+
};
|
|
1011
|
+
export declare enum VersionProfilesSortableFields {
|
|
1012
|
+
id = "id"
|
|
1013
|
+
}
|
|
1014
|
+
export type ViewDisplayInput = {
|
|
1015
|
+
size?: InputMaybe<ViewSizes>;
|
|
1016
|
+
type: ViewTypes;
|
|
1017
|
+
};
|
|
1018
|
+
export type ViewInput = {
|
|
1019
|
+
/** The whoAmI column should never be included in attributes because is already hard-coded to be present */
|
|
1020
|
+
attributes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1021
|
+
color?: InputMaybe<Scalars['String']['input']>;
|
|
1022
|
+
description?: InputMaybe<Scalars['SystemTranslationOptional']['input']>;
|
|
1023
|
+
display: ViewDisplayInput;
|
|
1024
|
+
filters?: InputMaybe<Array<RecordFilterInput>>;
|
|
1025
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
1026
|
+
label?: InputMaybe<Scalars['SystemTranslation']['input']>;
|
|
1027
|
+
library: Scalars['String']['input'];
|
|
1028
|
+
shared: Scalars['Boolean']['input'];
|
|
1029
|
+
sort?: InputMaybe<Array<RecordSortInput>>;
|
|
1030
|
+
valuesVersions?: InputMaybe<Array<ViewValuesVersionInput>>;
|
|
1031
|
+
};
|
|
1032
|
+
export type ViewInputPartial = {
|
|
1033
|
+
/** The whoAmI column should never be included in attributes because is already hard-coded to be present */
|
|
1034
|
+
attributes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1035
|
+
color?: InputMaybe<Scalars['String']['input']>;
|
|
1036
|
+
description?: InputMaybe<Scalars['SystemTranslationOptional']['input']>;
|
|
1037
|
+
display?: InputMaybe<ViewDisplayInput>;
|
|
1038
|
+
filters?: InputMaybe<Array<RecordFilterInput>>;
|
|
1039
|
+
id: Scalars['String']['input'];
|
|
1040
|
+
label?: InputMaybe<Scalars['SystemTranslation']['input']>;
|
|
1041
|
+
library?: InputMaybe<Scalars['String']['input']>;
|
|
1042
|
+
shared?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1043
|
+
sort?: InputMaybe<Array<RecordSortInput>>;
|
|
1044
|
+
valuesVersions?: InputMaybe<Array<ViewValuesVersionInput>>;
|
|
1045
|
+
};
|
|
1046
|
+
export declare enum ViewSizes {
|
|
1047
|
+
BIG = "BIG",
|
|
1048
|
+
MEDIUM = "MEDIUM",
|
|
1049
|
+
SMALL = "SMALL"
|
|
1050
|
+
}
|
|
1051
|
+
export declare enum ViewTypes {
|
|
1052
|
+
cards = "cards",
|
|
1053
|
+
list = "list",
|
|
1054
|
+
timeline = "timeline"
|
|
1055
|
+
}
|
|
1056
|
+
export type ViewV2CreateInput = {
|
|
1057
|
+
display: ViewV2DisplayInput;
|
|
1058
|
+
filters?: InputMaybe<Array<ViewV2FilterInput>>;
|
|
1059
|
+
label: Scalars['SystemTranslation']['input'];
|
|
1060
|
+
library: Scalars['ID']['input'];
|
|
1061
|
+
shared: Scalars['Boolean']['input'];
|
|
1062
|
+
sorts?: InputMaybe<Array<ViewV2SortInput>>;
|
|
1063
|
+
valuesVersions?: InputMaybe<Array<ViewV2ValuesVersionInput>>;
|
|
1064
|
+
};
|
|
1065
|
+
export type ViewV2DisplayAttributeInput = {
|
|
1066
|
+
attributeId: Scalars['ID']['input'];
|
|
1067
|
+
visible: Scalars['Boolean']['input'];
|
|
1068
|
+
};
|
|
1069
|
+
export type ViewV2DisplayInput = {
|
|
1070
|
+
/** The whoAmI column should never be included in attributes because is already hard-coded to be present */
|
|
1071
|
+
attributes?: InputMaybe<Array<ViewV2DisplayAttributeInput>>;
|
|
1072
|
+
type: ViewV2Types;
|
|
1073
|
+
};
|
|
1074
|
+
export type ViewV2FilterInput = {
|
|
1075
|
+
attributes: Array<Scalars['ID']['input']>;
|
|
1076
|
+
condition: RecordFilterCondition;
|
|
1077
|
+
pinned: Scalars['Boolean']['input'];
|
|
1078
|
+
values: Array<InputMaybe<Scalars['String']['input']>>;
|
|
1079
|
+
};
|
|
1080
|
+
export type ViewV2SortInput = {
|
|
1081
|
+
attributes: Array<Scalars['ID']['input']>;
|
|
1082
|
+
order: SortOrder;
|
|
1083
|
+
};
|
|
1084
|
+
export declare enum ViewV2Types {
|
|
1085
|
+
cards = "cards",
|
|
1086
|
+
list = "list",
|
|
1087
|
+
timeline = "timeline"
|
|
1088
|
+
}
|
|
1089
|
+
export type ViewV2UpdateInput = {
|
|
1090
|
+
description?: InputMaybe<Scalars['SystemTranslationOptional']['input']>;
|
|
1091
|
+
display?: InputMaybe<ViewV2DisplayInput>;
|
|
1092
|
+
filters?: InputMaybe<Array<ViewV2FilterInput>>;
|
|
1093
|
+
id: Scalars['ID']['input'];
|
|
1094
|
+
label?: InputMaybe<Scalars['SystemTranslation']['input']>;
|
|
1095
|
+
library?: InputMaybe<Scalars['ID']['input']>;
|
|
1096
|
+
shared?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1097
|
+
sorts?: InputMaybe<Array<ViewV2SortInput>>;
|
|
1098
|
+
valuesVersions?: InputMaybe<Array<ViewV2ValuesVersionInput>>;
|
|
1099
|
+
};
|
|
1100
|
+
export type ViewV2ValuesVersionInput = {
|
|
1101
|
+
treeId: Scalars['ID']['input'];
|
|
1102
|
+
treeNode: Scalars['ID']['input'];
|
|
1103
|
+
};
|
|
1104
|
+
export type ViewValuesVersionInput = {
|
|
1105
|
+
treeId: Scalars['String']['input'];
|
|
1106
|
+
treeNode: Scalars['String']['input'];
|
|
1107
|
+
};
|
|
1108
|
+
export type ImportDataMutationVariables = Exact<{
|
|
1109
|
+
file: Scalars['Upload']['input'];
|
|
1110
|
+
}>;
|
|
1111
|
+
export type ImportDataMutation = {
|
|
1112
|
+
importData: string;
|
|
1113
|
+
};
|
|
1114
|
+
export type GetRecordsQueryVariables = Exact<{
|
|
1115
|
+
library: Scalars['ID']['input'];
|
|
1116
|
+
}>;
|
|
1117
|
+
export type GetRecordsQuery = {
|
|
1118
|
+
records: {
|
|
1119
|
+
list: Array<{
|
|
1120
|
+
id: string;
|
|
1121
|
+
}>;
|
|
1122
|
+
};
|
|
1123
|
+
};
|
|
1124
|
+
export type DeactivateRecordsMutationVariables = Exact<{
|
|
1125
|
+
libraryId: Scalars['String']['input'];
|
|
1126
|
+
recordsIds: Array<Scalars['String']['input']> | Scalars['String']['input'];
|
|
1127
|
+
}>;
|
|
1128
|
+
export type DeactivateRecordsMutation = {
|
|
1129
|
+
deactivateRecords: Array<{
|
|
1130
|
+
id: string;
|
|
1131
|
+
}>;
|
|
1132
|
+
};
|
|
1133
|
+
export type PurgeRecordMutationVariables = Exact<{
|
|
1134
|
+
libraryId: Scalars['ID']['input'];
|
|
1135
|
+
recordId: Scalars['ID']['input'];
|
|
1136
|
+
}>;
|
|
1137
|
+
export type PurgeRecordMutation = {
|
|
1138
|
+
purgeRecord: {
|
|
1139
|
+
id: string;
|
|
1140
|
+
};
|
|
1141
|
+
};
|
|
1142
|
+
export type GetTasksQueryVariables = Exact<{
|
|
1143
|
+
filters?: InputMaybe<TaskFiltersInput>;
|
|
1144
|
+
}>;
|
|
1145
|
+
export type GetTasksQuery = {
|
|
1146
|
+
tasks: {
|
|
1147
|
+
list: Array<{
|
|
1148
|
+
id: string;
|
|
1149
|
+
status: TaskStatus;
|
|
1150
|
+
}>;
|
|
1151
|
+
};
|
|
1152
|
+
};
|
|
1153
|
+
export declare const ImportDataDocument: import("graphql").DocumentNode;
|
|
1154
|
+
export declare const GetRecordsDocument: import("graphql").DocumentNode;
|
|
1155
|
+
export declare const DeactivateRecordsDocument: import("graphql").DocumentNode;
|
|
1156
|
+
export declare const PurgeRecordDocument: import("graphql").DocumentNode;
|
|
1157
|
+
export declare const GetTasksDocument: import("graphql").DocumentNode;
|
|
1158
|
+
export type SdkFunctionWrapper = <T>(action: (requestHeaders?: Record<string, string>) => Promise<T>, operationName: string, operationType?: string, variables?: any) => Promise<T>;
|
|
1159
|
+
export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionWrapper): {
|
|
1160
|
+
ImportData(variables: ImportDataMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ImportDataMutation>;
|
|
1161
|
+
GetRecords(variables: GetRecordsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetRecordsQuery>;
|
|
1162
|
+
DeactivateRecords(variables: DeactivateRecordsMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<DeactivateRecordsMutation>;
|
|
1163
|
+
PurgeRecord(variables: PurgeRecordMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<PurgeRecordMutation>;
|
|
1164
|
+
GetTasks(variables?: GetTasksQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetTasksQuery>;
|
|
1165
|
+
};
|
|
1166
|
+
export type Sdk = ReturnType<typeof getSdk>;
|
|
1167
|
+
export {};
|