@trackunit/custom-field-api 0.1.91 → 0.1.92
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/index.cjs.js +339 -315
- package/index.esm.js +339 -315
- package/package.json +1 -1
- package/src/generated/graphql-api/gql.d.ts +2 -2
- package/src/generated/graphql-api/graphql.d.ts +258 -188
|
@@ -192,25 +192,32 @@ export type UnitUs = (typeof unitUs)[keyof typeof unitUs];
|
|
|
192
192
|
type CustomFieldValueAndDefinition_BooleanFieldValueAndDefinition_Fragment = {
|
|
193
193
|
__typename: "BooleanFieldValueAndDefinition";
|
|
194
194
|
booleanValue: boolean | null;
|
|
195
|
+
valueEditable: boolean;
|
|
195
196
|
definition: {
|
|
196
|
-
__typename
|
|
197
|
-
|
|
198
|
-
id: string;
|
|
197
|
+
__typename: "BooleanFieldDefinition";
|
|
198
|
+
description: string | null;
|
|
199
199
|
entityType: CustomFieldEntityType | null;
|
|
200
|
+
id: string;
|
|
201
|
+
key: string | null;
|
|
200
202
|
title: string | null;
|
|
201
|
-
|
|
202
|
-
uiVisible: boolean | null;
|
|
203
|
+
type: CustomFieldType;
|
|
203
204
|
uiEditable: boolean | null;
|
|
204
|
-
|
|
205
|
+
uiVisible: boolean | null;
|
|
205
206
|
owner: {
|
|
206
207
|
__typename?: "CustomFieldOwner";
|
|
207
|
-
ownerType: CustomFieldOwnerType;
|
|
208
208
|
irisAppId: string | null;
|
|
209
|
+
ownerType: CustomFieldOwnerType;
|
|
209
210
|
marketplaceEntry: {
|
|
210
211
|
__typename?: "MarketplaceEntry";
|
|
211
212
|
name: string;
|
|
212
213
|
} | null;
|
|
213
214
|
} | null;
|
|
215
|
+
translations: Array<{
|
|
216
|
+
__typename?: "CustomFieldDefinitionTranslations";
|
|
217
|
+
description: string | null;
|
|
218
|
+
title: string | null;
|
|
219
|
+
language: string | null;
|
|
220
|
+
} | null> | null;
|
|
214
221
|
};
|
|
215
222
|
} & {
|
|
216
223
|
" $fragmentName"?: "CustomFieldValueAndDefinition_BooleanFieldValueAndDefinition_Fragment";
|
|
@@ -218,25 +225,32 @@ type CustomFieldValueAndDefinition_BooleanFieldValueAndDefinition_Fragment = {
|
|
|
218
225
|
type CustomFieldValueAndDefinition_DateFieldValueAndDefinition_Fragment = {
|
|
219
226
|
__typename: "DateFieldValueAndDefinition";
|
|
220
227
|
dateValue: DateTimeISOString | null;
|
|
228
|
+
valueEditable: boolean;
|
|
221
229
|
definition: {
|
|
222
|
-
__typename
|
|
223
|
-
|
|
224
|
-
id: string;
|
|
230
|
+
__typename: "DateFieldDefinition";
|
|
231
|
+
description: string | null;
|
|
225
232
|
entityType: CustomFieldEntityType | null;
|
|
233
|
+
id: string;
|
|
234
|
+
key: string | null;
|
|
226
235
|
title: string | null;
|
|
227
|
-
|
|
228
|
-
uiVisible: boolean | null;
|
|
236
|
+
type: CustomFieldType;
|
|
229
237
|
uiEditable: boolean | null;
|
|
230
|
-
|
|
238
|
+
uiVisible: boolean | null;
|
|
231
239
|
owner: {
|
|
232
240
|
__typename?: "CustomFieldOwner";
|
|
233
|
-
ownerType: CustomFieldOwnerType;
|
|
234
241
|
irisAppId: string | null;
|
|
242
|
+
ownerType: CustomFieldOwnerType;
|
|
235
243
|
marketplaceEntry: {
|
|
236
244
|
__typename?: "MarketplaceEntry";
|
|
237
245
|
name: string;
|
|
238
246
|
} | null;
|
|
239
247
|
} | null;
|
|
248
|
+
translations: Array<{
|
|
249
|
+
__typename?: "CustomFieldDefinitionTranslations";
|
|
250
|
+
description: string | null;
|
|
251
|
+
title: string | null;
|
|
252
|
+
language: string | null;
|
|
253
|
+
} | null> | null;
|
|
240
254
|
};
|
|
241
255
|
} & {
|
|
242
256
|
" $fragmentName"?: "CustomFieldValueAndDefinition_DateFieldValueAndDefinition_Fragment";
|
|
@@ -244,27 +258,34 @@ type CustomFieldValueAndDefinition_DateFieldValueAndDefinition_Fragment = {
|
|
|
244
258
|
type CustomFieldValueAndDefinition_DropDownFieldValueAndDefinition_Fragment = {
|
|
245
259
|
__typename: "DropDownFieldValueAndDefinition";
|
|
246
260
|
stringArrayValue: Array<string> | null;
|
|
261
|
+
valueEditable: boolean;
|
|
247
262
|
definition: {
|
|
248
|
-
__typename
|
|
263
|
+
__typename: "DropDownFieldDefinition";
|
|
249
264
|
allValues: Array<string> | null;
|
|
250
265
|
multiSelect: boolean | null;
|
|
251
|
-
|
|
252
|
-
id: string;
|
|
266
|
+
description: string | null;
|
|
253
267
|
entityType: CustomFieldEntityType | null;
|
|
268
|
+
id: string;
|
|
269
|
+
key: string | null;
|
|
254
270
|
title: string | null;
|
|
255
|
-
|
|
256
|
-
uiVisible: boolean | null;
|
|
271
|
+
type: CustomFieldType;
|
|
257
272
|
uiEditable: boolean | null;
|
|
258
|
-
|
|
273
|
+
uiVisible: boolean | null;
|
|
259
274
|
owner: {
|
|
260
275
|
__typename?: "CustomFieldOwner";
|
|
261
|
-
ownerType: CustomFieldOwnerType;
|
|
262
276
|
irisAppId: string | null;
|
|
277
|
+
ownerType: CustomFieldOwnerType;
|
|
263
278
|
marketplaceEntry: {
|
|
264
279
|
__typename?: "MarketplaceEntry";
|
|
265
280
|
name: string;
|
|
266
281
|
} | null;
|
|
267
282
|
} | null;
|
|
283
|
+
translations: Array<{
|
|
284
|
+
__typename?: "CustomFieldDefinitionTranslations";
|
|
285
|
+
description: string | null;
|
|
286
|
+
title: string | null;
|
|
287
|
+
language: string | null;
|
|
288
|
+
} | null> | null;
|
|
268
289
|
};
|
|
269
290
|
} & {
|
|
270
291
|
" $fragmentName"?: "CustomFieldValueAndDefinition_DropDownFieldValueAndDefinition_Fragment";
|
|
@@ -272,25 +293,32 @@ type CustomFieldValueAndDefinition_DropDownFieldValueAndDefinition_Fragment = {
|
|
|
272
293
|
type CustomFieldValueAndDefinition_EmailFieldValueAndDefinition_Fragment = {
|
|
273
294
|
__typename: "EmailFieldValueAndDefinition";
|
|
274
295
|
stringValue: string | null;
|
|
296
|
+
valueEditable: boolean;
|
|
275
297
|
definition: {
|
|
276
|
-
__typename
|
|
277
|
-
|
|
278
|
-
id: string;
|
|
298
|
+
__typename: "EmailFieldDefinition";
|
|
299
|
+
description: string | null;
|
|
279
300
|
entityType: CustomFieldEntityType | null;
|
|
301
|
+
id: string;
|
|
302
|
+
key: string | null;
|
|
280
303
|
title: string | null;
|
|
281
|
-
|
|
282
|
-
uiVisible: boolean | null;
|
|
304
|
+
type: CustomFieldType;
|
|
283
305
|
uiEditable: boolean | null;
|
|
284
|
-
|
|
306
|
+
uiVisible: boolean | null;
|
|
285
307
|
owner: {
|
|
286
308
|
__typename?: "CustomFieldOwner";
|
|
287
|
-
ownerType: CustomFieldOwnerType;
|
|
288
309
|
irisAppId: string | null;
|
|
310
|
+
ownerType: CustomFieldOwnerType;
|
|
289
311
|
marketplaceEntry: {
|
|
290
312
|
__typename?: "MarketplaceEntry";
|
|
291
313
|
name: string;
|
|
292
314
|
} | null;
|
|
293
315
|
} | null;
|
|
316
|
+
translations: Array<{
|
|
317
|
+
__typename?: "CustomFieldDefinitionTranslations";
|
|
318
|
+
description: string | null;
|
|
319
|
+
title: string | null;
|
|
320
|
+
language: string | null;
|
|
321
|
+
} | null> | null;
|
|
294
322
|
};
|
|
295
323
|
} & {
|
|
296
324
|
" $fragmentName"?: "CustomFieldValueAndDefinition_EmailFieldValueAndDefinition_Fragment";
|
|
@@ -298,25 +326,32 @@ type CustomFieldValueAndDefinition_EmailFieldValueAndDefinition_Fragment = {
|
|
|
298
326
|
type CustomFieldValueAndDefinition_JsonFieldValueAndDefinition_Fragment = {
|
|
299
327
|
__typename: "JsonFieldValueAndDefinition";
|
|
300
328
|
jsonValue: any | null;
|
|
329
|
+
valueEditable: boolean;
|
|
301
330
|
definition: {
|
|
302
|
-
__typename
|
|
303
|
-
|
|
304
|
-
id: string;
|
|
331
|
+
__typename: "JsonFieldDefinition";
|
|
332
|
+
description: string | null;
|
|
305
333
|
entityType: CustomFieldEntityType | null;
|
|
334
|
+
id: string;
|
|
335
|
+
key: string | null;
|
|
306
336
|
title: string | null;
|
|
307
|
-
|
|
308
|
-
uiVisible: boolean | null;
|
|
337
|
+
type: CustomFieldType;
|
|
309
338
|
uiEditable: boolean | null;
|
|
310
|
-
|
|
339
|
+
uiVisible: boolean | null;
|
|
311
340
|
owner: {
|
|
312
341
|
__typename?: "CustomFieldOwner";
|
|
313
|
-
ownerType: CustomFieldOwnerType;
|
|
314
342
|
irisAppId: string | null;
|
|
343
|
+
ownerType: CustomFieldOwnerType;
|
|
315
344
|
marketplaceEntry: {
|
|
316
345
|
__typename?: "MarketplaceEntry";
|
|
317
346
|
name: string;
|
|
318
347
|
} | null;
|
|
319
348
|
} | null;
|
|
349
|
+
translations: Array<{
|
|
350
|
+
__typename?: "CustomFieldDefinitionTranslations";
|
|
351
|
+
description: string | null;
|
|
352
|
+
title: string | null;
|
|
353
|
+
language: string | null;
|
|
354
|
+
} | null> | null;
|
|
320
355
|
};
|
|
321
356
|
} & {
|
|
322
357
|
" $fragmentName"?: "CustomFieldValueAndDefinition_JsonFieldValueAndDefinition_Fragment";
|
|
@@ -324,28 +359,35 @@ type CustomFieldValueAndDefinition_JsonFieldValueAndDefinition_Fragment = {
|
|
|
324
359
|
type CustomFieldValueAndDefinition_MonetaryFieldValueAndDefinition_Fragment = {
|
|
325
360
|
__typename: "MonetaryFieldValueAndDefinition";
|
|
326
361
|
numberValue: number | null;
|
|
362
|
+
valueEditable: boolean;
|
|
327
363
|
definition: {
|
|
328
|
-
__typename
|
|
329
|
-
minimumNumber: number | null;
|
|
330
|
-
maximumNumber: number | null;
|
|
364
|
+
__typename: "MonetaryFieldDefinition";
|
|
331
365
|
currency: string | null;
|
|
332
|
-
|
|
333
|
-
|
|
366
|
+
maximumNumber: number | null;
|
|
367
|
+
minimumNumber: number | null;
|
|
368
|
+
description: string | null;
|
|
334
369
|
entityType: CustomFieldEntityType | null;
|
|
370
|
+
id: string;
|
|
371
|
+
key: string | null;
|
|
335
372
|
title: string | null;
|
|
336
|
-
|
|
337
|
-
uiVisible: boolean | null;
|
|
373
|
+
type: CustomFieldType;
|
|
338
374
|
uiEditable: boolean | null;
|
|
339
|
-
|
|
375
|
+
uiVisible: boolean | null;
|
|
340
376
|
owner: {
|
|
341
377
|
__typename?: "CustomFieldOwner";
|
|
342
|
-
ownerType: CustomFieldOwnerType;
|
|
343
378
|
irisAppId: string | null;
|
|
379
|
+
ownerType: CustomFieldOwnerType;
|
|
344
380
|
marketplaceEntry: {
|
|
345
381
|
__typename?: "MarketplaceEntry";
|
|
346
382
|
name: string;
|
|
347
383
|
} | null;
|
|
348
384
|
} | null;
|
|
385
|
+
translations: Array<{
|
|
386
|
+
__typename?: "CustomFieldDefinitionTranslations";
|
|
387
|
+
description: string | null;
|
|
388
|
+
title: string | null;
|
|
389
|
+
language: string | null;
|
|
390
|
+
} | null> | null;
|
|
349
391
|
};
|
|
350
392
|
} & {
|
|
351
393
|
" $fragmentName"?: "CustomFieldValueAndDefinition_MonetaryFieldValueAndDefinition_Fragment";
|
|
@@ -353,30 +395,37 @@ type CustomFieldValueAndDefinition_MonetaryFieldValueAndDefinition_Fragment = {
|
|
|
353
395
|
type CustomFieldValueAndDefinition_NumberFieldValueAndDefinition_Fragment = {
|
|
354
396
|
__typename: "NumberFieldValueAndDefinition";
|
|
355
397
|
numberValue: number | null;
|
|
398
|
+
valueEditable: boolean;
|
|
356
399
|
definition: {
|
|
357
|
-
__typename
|
|
358
|
-
|
|
400
|
+
__typename: "NumberFieldDefinition";
|
|
401
|
+
isInteger: boolean | null;
|
|
359
402
|
maximumNumber: number | null;
|
|
403
|
+
minimumNumber: number | null;
|
|
360
404
|
unitSi: UnitSi | null;
|
|
361
405
|
unitUs: UnitUs | null;
|
|
362
|
-
|
|
363
|
-
type: CustomFieldType;
|
|
364
|
-
id: string;
|
|
406
|
+
description: string | null;
|
|
365
407
|
entityType: CustomFieldEntityType | null;
|
|
408
|
+
id: string;
|
|
409
|
+
key: string | null;
|
|
366
410
|
title: string | null;
|
|
367
|
-
|
|
368
|
-
uiVisible: boolean | null;
|
|
411
|
+
type: CustomFieldType;
|
|
369
412
|
uiEditable: boolean | null;
|
|
370
|
-
|
|
413
|
+
uiVisible: boolean | null;
|
|
371
414
|
owner: {
|
|
372
415
|
__typename?: "CustomFieldOwner";
|
|
373
|
-
ownerType: CustomFieldOwnerType;
|
|
374
416
|
irisAppId: string | null;
|
|
417
|
+
ownerType: CustomFieldOwnerType;
|
|
375
418
|
marketplaceEntry: {
|
|
376
419
|
__typename?: "MarketplaceEntry";
|
|
377
420
|
name: string;
|
|
378
421
|
} | null;
|
|
379
422
|
} | null;
|
|
423
|
+
translations: Array<{
|
|
424
|
+
__typename?: "CustomFieldDefinitionTranslations";
|
|
425
|
+
description: string | null;
|
|
426
|
+
title: string | null;
|
|
427
|
+
language: string | null;
|
|
428
|
+
} | null> | null;
|
|
380
429
|
};
|
|
381
430
|
} & {
|
|
382
431
|
" $fragmentName"?: "CustomFieldValueAndDefinition_NumberFieldValueAndDefinition_Fragment";
|
|
@@ -384,25 +433,32 @@ type CustomFieldValueAndDefinition_NumberFieldValueAndDefinition_Fragment = {
|
|
|
384
433
|
type CustomFieldValueAndDefinition_PhoneNumberFieldValueAndDefinition_Fragment = {
|
|
385
434
|
__typename: "PhoneNumberFieldValueAndDefinition";
|
|
386
435
|
stringValue: string | null;
|
|
436
|
+
valueEditable: boolean;
|
|
387
437
|
definition: {
|
|
388
|
-
__typename
|
|
389
|
-
|
|
390
|
-
id: string;
|
|
438
|
+
__typename: "PhoneNumberFieldDefinition";
|
|
439
|
+
description: string | null;
|
|
391
440
|
entityType: CustomFieldEntityType | null;
|
|
441
|
+
id: string;
|
|
442
|
+
key: string | null;
|
|
392
443
|
title: string | null;
|
|
393
|
-
|
|
394
|
-
uiVisible: boolean | null;
|
|
444
|
+
type: CustomFieldType;
|
|
395
445
|
uiEditable: boolean | null;
|
|
396
|
-
|
|
446
|
+
uiVisible: boolean | null;
|
|
397
447
|
owner: {
|
|
398
448
|
__typename?: "CustomFieldOwner";
|
|
399
|
-
ownerType: CustomFieldOwnerType;
|
|
400
449
|
irisAppId: string | null;
|
|
450
|
+
ownerType: CustomFieldOwnerType;
|
|
401
451
|
marketplaceEntry: {
|
|
402
452
|
__typename?: "MarketplaceEntry";
|
|
403
453
|
name: string;
|
|
404
454
|
} | null;
|
|
405
455
|
} | null;
|
|
456
|
+
translations: Array<{
|
|
457
|
+
__typename?: "CustomFieldDefinitionTranslations";
|
|
458
|
+
description: string | null;
|
|
459
|
+
title: string | null;
|
|
460
|
+
language: string | null;
|
|
461
|
+
} | null> | null;
|
|
406
462
|
};
|
|
407
463
|
} & {
|
|
408
464
|
" $fragmentName"?: "CustomFieldValueAndDefinition_PhoneNumberFieldValueAndDefinition_Fragment";
|
|
@@ -410,28 +466,35 @@ type CustomFieldValueAndDefinition_PhoneNumberFieldValueAndDefinition_Fragment =
|
|
|
410
466
|
type CustomFieldValueAndDefinition_StringFieldValueAndDefinition_Fragment = {
|
|
411
467
|
__typename: "StringFieldValueAndDefinition";
|
|
412
468
|
stringValue: string | null;
|
|
469
|
+
valueEditable: boolean;
|
|
413
470
|
definition: {
|
|
414
|
-
__typename
|
|
471
|
+
__typename: "StringFieldDefinition";
|
|
415
472
|
maximumLength: number | null;
|
|
416
473
|
minimumLength: number | null;
|
|
417
474
|
pattern: string | null;
|
|
418
|
-
|
|
419
|
-
id: string;
|
|
475
|
+
description: string | null;
|
|
420
476
|
entityType: CustomFieldEntityType | null;
|
|
477
|
+
id: string;
|
|
478
|
+
key: string | null;
|
|
421
479
|
title: string | null;
|
|
422
|
-
|
|
423
|
-
uiVisible: boolean | null;
|
|
480
|
+
type: CustomFieldType;
|
|
424
481
|
uiEditable: boolean | null;
|
|
425
|
-
|
|
482
|
+
uiVisible: boolean | null;
|
|
426
483
|
owner: {
|
|
427
484
|
__typename?: "CustomFieldOwner";
|
|
428
|
-
ownerType: CustomFieldOwnerType;
|
|
429
485
|
irisAppId: string | null;
|
|
486
|
+
ownerType: CustomFieldOwnerType;
|
|
430
487
|
marketplaceEntry: {
|
|
431
488
|
__typename?: "MarketplaceEntry";
|
|
432
489
|
name: string;
|
|
433
490
|
} | null;
|
|
434
491
|
} | null;
|
|
492
|
+
translations: Array<{
|
|
493
|
+
__typename?: "CustomFieldDefinitionTranslations";
|
|
494
|
+
description: string | null;
|
|
495
|
+
title: string | null;
|
|
496
|
+
language: string | null;
|
|
497
|
+
} | null> | null;
|
|
435
498
|
};
|
|
436
499
|
} & {
|
|
437
500
|
" $fragmentName"?: "CustomFieldValueAndDefinition_StringFieldValueAndDefinition_Fragment";
|
|
@@ -439,82 +502,89 @@ type CustomFieldValueAndDefinition_StringFieldValueAndDefinition_Fragment = {
|
|
|
439
502
|
type CustomFieldValueAndDefinition_WebAddressFieldValueAndDefinition_Fragment = {
|
|
440
503
|
__typename: "WebAddressFieldValueAndDefinition";
|
|
441
504
|
stringValue: string | null;
|
|
505
|
+
valueEditable: boolean;
|
|
442
506
|
definition: {
|
|
443
|
-
__typename
|
|
444
|
-
|
|
445
|
-
id: string;
|
|
507
|
+
__typename: "WebAddressFieldDefinition";
|
|
508
|
+
description: string | null;
|
|
446
509
|
entityType: CustomFieldEntityType | null;
|
|
510
|
+
id: string;
|
|
511
|
+
key: string | null;
|
|
447
512
|
title: string | null;
|
|
448
|
-
|
|
449
|
-
uiVisible: boolean | null;
|
|
513
|
+
type: CustomFieldType;
|
|
450
514
|
uiEditable: boolean | null;
|
|
451
|
-
|
|
515
|
+
uiVisible: boolean | null;
|
|
452
516
|
owner: {
|
|
453
517
|
__typename?: "CustomFieldOwner";
|
|
454
|
-
ownerType: CustomFieldOwnerType;
|
|
455
518
|
irisAppId: string | null;
|
|
519
|
+
ownerType: CustomFieldOwnerType;
|
|
456
520
|
marketplaceEntry: {
|
|
457
521
|
__typename?: "MarketplaceEntry";
|
|
458
522
|
name: string;
|
|
459
523
|
} | null;
|
|
460
524
|
} | null;
|
|
525
|
+
translations: Array<{
|
|
526
|
+
__typename?: "CustomFieldDefinitionTranslations";
|
|
527
|
+
description: string | null;
|
|
528
|
+
title: string | null;
|
|
529
|
+
language: string | null;
|
|
530
|
+
} | null> | null;
|
|
461
531
|
};
|
|
462
532
|
} & {
|
|
463
533
|
" $fragmentName"?: "CustomFieldValueAndDefinition_WebAddressFieldValueAndDefinition_Fragment";
|
|
464
534
|
};
|
|
465
535
|
type CustomFieldDefinition_BooleanFieldDefinition_Fragment = {
|
|
466
536
|
__typename: "BooleanFieldDefinition";
|
|
537
|
+
description: string | null;
|
|
538
|
+
entityType: CustomFieldEntityType | null;
|
|
467
539
|
id: string;
|
|
468
|
-
|
|
540
|
+
key: string | null;
|
|
469
541
|
title: string | null;
|
|
470
|
-
|
|
542
|
+
type: CustomFieldType;
|
|
471
543
|
uiEditable: boolean | null;
|
|
472
544
|
uiVisible: boolean | null;
|
|
473
|
-
key: string | null;
|
|
474
|
-
entityType: CustomFieldEntityType | null;
|
|
475
|
-
translations: Array<{
|
|
476
|
-
__typename?: "CustomFieldDefinitionTranslations";
|
|
477
|
-
description: string | null;
|
|
478
|
-
title: string | null;
|
|
479
|
-
language: string | null;
|
|
480
|
-
} | null> | null;
|
|
481
545
|
owner: {
|
|
482
546
|
__typename?: "CustomFieldOwner";
|
|
483
|
-
ownerType: CustomFieldOwnerType;
|
|
484
547
|
irisAppId: string | null;
|
|
548
|
+
ownerType: CustomFieldOwnerType;
|
|
485
549
|
marketplaceEntry: {
|
|
486
550
|
__typename?: "MarketplaceEntry";
|
|
487
551
|
name: string;
|
|
488
552
|
} | null;
|
|
489
553
|
} | null;
|
|
554
|
+
translations: Array<{
|
|
555
|
+
__typename?: "CustomFieldDefinitionTranslations";
|
|
556
|
+
description: string | null;
|
|
557
|
+
title: string | null;
|
|
558
|
+
language: string | null;
|
|
559
|
+
} | null> | null;
|
|
490
560
|
} & {
|
|
491
561
|
" $fragmentName"?: "CustomFieldDefinition_BooleanFieldDefinition_Fragment";
|
|
492
562
|
};
|
|
493
563
|
type CustomFieldDefinition_DateFieldDefinition_Fragment = {
|
|
494
564
|
__typename: "DateFieldDefinition";
|
|
565
|
+
description: string | null;
|
|
566
|
+
entityType: CustomFieldEntityType | null;
|
|
495
567
|
id: string;
|
|
496
|
-
|
|
568
|
+
key: string | null;
|
|
497
569
|
title: string | null;
|
|
498
|
-
|
|
570
|
+
type: CustomFieldType;
|
|
499
571
|
uiEditable: boolean | null;
|
|
500
572
|
uiVisible: boolean | null;
|
|
501
|
-
key: string | null;
|
|
502
|
-
entityType: CustomFieldEntityType | null;
|
|
503
|
-
translations: Array<{
|
|
504
|
-
__typename?: "CustomFieldDefinitionTranslations";
|
|
505
|
-
description: string | null;
|
|
506
|
-
title: string | null;
|
|
507
|
-
language: string | null;
|
|
508
|
-
} | null> | null;
|
|
509
573
|
owner: {
|
|
510
574
|
__typename?: "CustomFieldOwner";
|
|
511
|
-
ownerType: CustomFieldOwnerType;
|
|
512
575
|
irisAppId: string | null;
|
|
576
|
+
ownerType: CustomFieldOwnerType;
|
|
513
577
|
marketplaceEntry: {
|
|
514
578
|
__typename?: "MarketplaceEntry";
|
|
515
579
|
name: string;
|
|
516
580
|
} | null;
|
|
517
581
|
} | null;
|
|
582
|
+
translations: Array<{
|
|
583
|
+
__typename?: "CustomFieldDefinitionTranslations";
|
|
584
|
+
description: string | null;
|
|
585
|
+
title: string | null;
|
|
586
|
+
language: string | null;
|
|
587
|
+
} | null> | null;
|
|
518
588
|
} & {
|
|
519
589
|
" $fragmentName"?: "CustomFieldDefinition_DateFieldDefinition_Fragment";
|
|
520
590
|
};
|
|
@@ -522,177 +592,177 @@ type CustomFieldDefinition_DropDownFieldDefinition_Fragment = {
|
|
|
522
592
|
__typename: "DropDownFieldDefinition";
|
|
523
593
|
allValues: Array<string> | null;
|
|
524
594
|
multiSelect: boolean | null;
|
|
595
|
+
description: string | null;
|
|
596
|
+
entityType: CustomFieldEntityType | null;
|
|
525
597
|
id: string;
|
|
526
|
-
|
|
598
|
+
key: string | null;
|
|
527
599
|
title: string | null;
|
|
528
|
-
|
|
600
|
+
type: CustomFieldType;
|
|
529
601
|
uiEditable: boolean | null;
|
|
530
602
|
uiVisible: boolean | null;
|
|
531
|
-
key: string | null;
|
|
532
|
-
entityType: CustomFieldEntityType | null;
|
|
533
|
-
translations: Array<{
|
|
534
|
-
__typename?: "CustomFieldDefinitionTranslations";
|
|
535
|
-
description: string | null;
|
|
536
|
-
title: string | null;
|
|
537
|
-
language: string | null;
|
|
538
|
-
} | null> | null;
|
|
539
603
|
owner: {
|
|
540
604
|
__typename?: "CustomFieldOwner";
|
|
541
|
-
ownerType: CustomFieldOwnerType;
|
|
542
605
|
irisAppId: string | null;
|
|
606
|
+
ownerType: CustomFieldOwnerType;
|
|
543
607
|
marketplaceEntry: {
|
|
544
608
|
__typename?: "MarketplaceEntry";
|
|
545
609
|
name: string;
|
|
546
610
|
} | null;
|
|
547
611
|
} | null;
|
|
612
|
+
translations: Array<{
|
|
613
|
+
__typename?: "CustomFieldDefinitionTranslations";
|
|
614
|
+
description: string | null;
|
|
615
|
+
title: string | null;
|
|
616
|
+
language: string | null;
|
|
617
|
+
} | null> | null;
|
|
548
618
|
} & {
|
|
549
619
|
" $fragmentName"?: "CustomFieldDefinition_DropDownFieldDefinition_Fragment";
|
|
550
620
|
};
|
|
551
621
|
type CustomFieldDefinition_EmailFieldDefinition_Fragment = {
|
|
552
622
|
__typename: "EmailFieldDefinition";
|
|
623
|
+
description: string | null;
|
|
624
|
+
entityType: CustomFieldEntityType | null;
|
|
553
625
|
id: string;
|
|
554
|
-
|
|
626
|
+
key: string | null;
|
|
555
627
|
title: string | null;
|
|
556
|
-
|
|
628
|
+
type: CustomFieldType;
|
|
557
629
|
uiEditable: boolean | null;
|
|
558
630
|
uiVisible: boolean | null;
|
|
559
|
-
key: string | null;
|
|
560
|
-
entityType: CustomFieldEntityType | null;
|
|
561
|
-
translations: Array<{
|
|
562
|
-
__typename?: "CustomFieldDefinitionTranslations";
|
|
563
|
-
description: string | null;
|
|
564
|
-
title: string | null;
|
|
565
|
-
language: string | null;
|
|
566
|
-
} | null> | null;
|
|
567
631
|
owner: {
|
|
568
632
|
__typename?: "CustomFieldOwner";
|
|
569
|
-
ownerType: CustomFieldOwnerType;
|
|
570
633
|
irisAppId: string | null;
|
|
634
|
+
ownerType: CustomFieldOwnerType;
|
|
571
635
|
marketplaceEntry: {
|
|
572
636
|
__typename?: "MarketplaceEntry";
|
|
573
637
|
name: string;
|
|
574
638
|
} | null;
|
|
575
639
|
} | null;
|
|
640
|
+
translations: Array<{
|
|
641
|
+
__typename?: "CustomFieldDefinitionTranslations";
|
|
642
|
+
description: string | null;
|
|
643
|
+
title: string | null;
|
|
644
|
+
language: string | null;
|
|
645
|
+
} | null> | null;
|
|
576
646
|
} & {
|
|
577
647
|
" $fragmentName"?: "CustomFieldDefinition_EmailFieldDefinition_Fragment";
|
|
578
648
|
};
|
|
579
649
|
type CustomFieldDefinition_JsonFieldDefinition_Fragment = {
|
|
580
650
|
__typename: "JsonFieldDefinition";
|
|
651
|
+
description: string | null;
|
|
652
|
+
entityType: CustomFieldEntityType | null;
|
|
581
653
|
id: string;
|
|
582
|
-
|
|
654
|
+
key: string | null;
|
|
583
655
|
title: string | null;
|
|
584
|
-
|
|
656
|
+
type: CustomFieldType;
|
|
585
657
|
uiEditable: boolean | null;
|
|
586
658
|
uiVisible: boolean | null;
|
|
587
|
-
key: string | null;
|
|
588
|
-
entityType: CustomFieldEntityType | null;
|
|
589
|
-
translations: Array<{
|
|
590
|
-
__typename?: "CustomFieldDefinitionTranslations";
|
|
591
|
-
description: string | null;
|
|
592
|
-
title: string | null;
|
|
593
|
-
language: string | null;
|
|
594
|
-
} | null> | null;
|
|
595
659
|
owner: {
|
|
596
660
|
__typename?: "CustomFieldOwner";
|
|
597
|
-
ownerType: CustomFieldOwnerType;
|
|
598
661
|
irisAppId: string | null;
|
|
662
|
+
ownerType: CustomFieldOwnerType;
|
|
599
663
|
marketplaceEntry: {
|
|
600
664
|
__typename?: "MarketplaceEntry";
|
|
601
665
|
name: string;
|
|
602
666
|
} | null;
|
|
603
667
|
} | null;
|
|
668
|
+
translations: Array<{
|
|
669
|
+
__typename?: "CustomFieldDefinitionTranslations";
|
|
670
|
+
description: string | null;
|
|
671
|
+
title: string | null;
|
|
672
|
+
language: string | null;
|
|
673
|
+
} | null> | null;
|
|
604
674
|
} & {
|
|
605
675
|
" $fragmentName"?: "CustomFieldDefinition_JsonFieldDefinition_Fragment";
|
|
606
676
|
};
|
|
607
677
|
type CustomFieldDefinition_MonetaryFieldDefinition_Fragment = {
|
|
608
678
|
__typename: "MonetaryFieldDefinition";
|
|
609
|
-
minimumNumber: number | null;
|
|
610
|
-
maximumNumber: number | null;
|
|
611
679
|
currency: string | null;
|
|
680
|
+
maximumNumber: number | null;
|
|
681
|
+
minimumNumber: number | null;
|
|
682
|
+
description: string | null;
|
|
683
|
+
entityType: CustomFieldEntityType | null;
|
|
612
684
|
id: string;
|
|
613
|
-
|
|
685
|
+
key: string | null;
|
|
614
686
|
title: string | null;
|
|
615
|
-
|
|
687
|
+
type: CustomFieldType;
|
|
616
688
|
uiEditable: boolean | null;
|
|
617
689
|
uiVisible: boolean | null;
|
|
618
|
-
key: string | null;
|
|
619
|
-
entityType: CustomFieldEntityType | null;
|
|
620
|
-
translations: Array<{
|
|
621
|
-
__typename?: "CustomFieldDefinitionTranslations";
|
|
622
|
-
description: string | null;
|
|
623
|
-
title: string | null;
|
|
624
|
-
language: string | null;
|
|
625
|
-
} | null> | null;
|
|
626
690
|
owner: {
|
|
627
691
|
__typename?: "CustomFieldOwner";
|
|
628
|
-
ownerType: CustomFieldOwnerType;
|
|
629
692
|
irisAppId: string | null;
|
|
693
|
+
ownerType: CustomFieldOwnerType;
|
|
630
694
|
marketplaceEntry: {
|
|
631
695
|
__typename?: "MarketplaceEntry";
|
|
632
696
|
name: string;
|
|
633
697
|
} | null;
|
|
634
698
|
} | null;
|
|
699
|
+
translations: Array<{
|
|
700
|
+
__typename?: "CustomFieldDefinitionTranslations";
|
|
701
|
+
description: string | null;
|
|
702
|
+
title: string | null;
|
|
703
|
+
language: string | null;
|
|
704
|
+
} | null> | null;
|
|
635
705
|
} & {
|
|
636
706
|
" $fragmentName"?: "CustomFieldDefinition_MonetaryFieldDefinition_Fragment";
|
|
637
707
|
};
|
|
638
708
|
type CustomFieldDefinition_NumberFieldDefinition_Fragment = {
|
|
639
709
|
__typename: "NumberFieldDefinition";
|
|
640
|
-
|
|
710
|
+
isInteger: boolean | null;
|
|
641
711
|
maximumNumber: number | null;
|
|
712
|
+
minimumNumber: number | null;
|
|
642
713
|
unitSi: UnitSi | null;
|
|
643
714
|
unitUs: UnitUs | null;
|
|
644
|
-
|
|
715
|
+
description: string | null;
|
|
716
|
+
entityType: CustomFieldEntityType | null;
|
|
645
717
|
id: string;
|
|
646
|
-
|
|
718
|
+
key: string | null;
|
|
647
719
|
title: string | null;
|
|
648
|
-
|
|
720
|
+
type: CustomFieldType;
|
|
649
721
|
uiEditable: boolean | null;
|
|
650
722
|
uiVisible: boolean | null;
|
|
651
|
-
key: string | null;
|
|
652
|
-
entityType: CustomFieldEntityType | null;
|
|
653
|
-
translations: Array<{
|
|
654
|
-
__typename?: "CustomFieldDefinitionTranslations";
|
|
655
|
-
description: string | null;
|
|
656
|
-
title: string | null;
|
|
657
|
-
language: string | null;
|
|
658
|
-
} | null> | null;
|
|
659
723
|
owner: {
|
|
660
724
|
__typename?: "CustomFieldOwner";
|
|
661
|
-
ownerType: CustomFieldOwnerType;
|
|
662
725
|
irisAppId: string | null;
|
|
726
|
+
ownerType: CustomFieldOwnerType;
|
|
663
727
|
marketplaceEntry: {
|
|
664
728
|
__typename?: "MarketplaceEntry";
|
|
665
729
|
name: string;
|
|
666
730
|
} | null;
|
|
667
731
|
} | null;
|
|
732
|
+
translations: Array<{
|
|
733
|
+
__typename?: "CustomFieldDefinitionTranslations";
|
|
734
|
+
description: string | null;
|
|
735
|
+
title: string | null;
|
|
736
|
+
language: string | null;
|
|
737
|
+
} | null> | null;
|
|
668
738
|
} & {
|
|
669
739
|
" $fragmentName"?: "CustomFieldDefinition_NumberFieldDefinition_Fragment";
|
|
670
740
|
};
|
|
671
741
|
type CustomFieldDefinition_PhoneNumberFieldDefinition_Fragment = {
|
|
672
742
|
__typename: "PhoneNumberFieldDefinition";
|
|
743
|
+
description: string | null;
|
|
744
|
+
entityType: CustomFieldEntityType | null;
|
|
673
745
|
id: string;
|
|
674
|
-
|
|
746
|
+
key: string | null;
|
|
675
747
|
title: string | null;
|
|
676
|
-
|
|
748
|
+
type: CustomFieldType;
|
|
677
749
|
uiEditable: boolean | null;
|
|
678
750
|
uiVisible: boolean | null;
|
|
679
|
-
key: string | null;
|
|
680
|
-
entityType: CustomFieldEntityType | null;
|
|
681
|
-
translations: Array<{
|
|
682
|
-
__typename?: "CustomFieldDefinitionTranslations";
|
|
683
|
-
description: string | null;
|
|
684
|
-
title: string | null;
|
|
685
|
-
language: string | null;
|
|
686
|
-
} | null> | null;
|
|
687
751
|
owner: {
|
|
688
752
|
__typename?: "CustomFieldOwner";
|
|
689
|
-
ownerType: CustomFieldOwnerType;
|
|
690
753
|
irisAppId: string | null;
|
|
754
|
+
ownerType: CustomFieldOwnerType;
|
|
691
755
|
marketplaceEntry: {
|
|
692
756
|
__typename?: "MarketplaceEntry";
|
|
693
757
|
name: string;
|
|
694
758
|
} | null;
|
|
695
759
|
} | null;
|
|
760
|
+
translations: Array<{
|
|
761
|
+
__typename?: "CustomFieldDefinitionTranslations";
|
|
762
|
+
description: string | null;
|
|
763
|
+
title: string | null;
|
|
764
|
+
language: string | null;
|
|
765
|
+
} | null> | null;
|
|
696
766
|
} & {
|
|
697
767
|
" $fragmentName"?: "CustomFieldDefinition_PhoneNumberFieldDefinition_Fragment";
|
|
698
768
|
};
|
|
@@ -701,57 +771,57 @@ type CustomFieldDefinition_StringFieldDefinition_Fragment = {
|
|
|
701
771
|
maximumLength: number | null;
|
|
702
772
|
minimumLength: number | null;
|
|
703
773
|
pattern: string | null;
|
|
774
|
+
description: string | null;
|
|
775
|
+
entityType: CustomFieldEntityType | null;
|
|
704
776
|
id: string;
|
|
705
|
-
|
|
777
|
+
key: string | null;
|
|
706
778
|
title: string | null;
|
|
707
|
-
|
|
779
|
+
type: CustomFieldType;
|
|
708
780
|
uiEditable: boolean | null;
|
|
709
781
|
uiVisible: boolean | null;
|
|
710
|
-
key: string | null;
|
|
711
|
-
entityType: CustomFieldEntityType | null;
|
|
712
|
-
translations: Array<{
|
|
713
|
-
__typename?: "CustomFieldDefinitionTranslations";
|
|
714
|
-
description: string | null;
|
|
715
|
-
title: string | null;
|
|
716
|
-
language: string | null;
|
|
717
|
-
} | null> | null;
|
|
718
782
|
owner: {
|
|
719
783
|
__typename?: "CustomFieldOwner";
|
|
720
|
-
ownerType: CustomFieldOwnerType;
|
|
721
784
|
irisAppId: string | null;
|
|
785
|
+
ownerType: CustomFieldOwnerType;
|
|
722
786
|
marketplaceEntry: {
|
|
723
787
|
__typename?: "MarketplaceEntry";
|
|
724
788
|
name: string;
|
|
725
789
|
} | null;
|
|
726
790
|
} | null;
|
|
791
|
+
translations: Array<{
|
|
792
|
+
__typename?: "CustomFieldDefinitionTranslations";
|
|
793
|
+
description: string | null;
|
|
794
|
+
title: string | null;
|
|
795
|
+
language: string | null;
|
|
796
|
+
} | null> | null;
|
|
727
797
|
} & {
|
|
728
798
|
" $fragmentName"?: "CustomFieldDefinition_StringFieldDefinition_Fragment";
|
|
729
799
|
};
|
|
730
800
|
type CustomFieldDefinition_WebAddressFieldDefinition_Fragment = {
|
|
731
801
|
__typename: "WebAddressFieldDefinition";
|
|
802
|
+
description: string | null;
|
|
803
|
+
entityType: CustomFieldEntityType | null;
|
|
732
804
|
id: string;
|
|
733
|
-
|
|
805
|
+
key: string | null;
|
|
734
806
|
title: string | null;
|
|
735
|
-
|
|
807
|
+
type: CustomFieldType;
|
|
736
808
|
uiEditable: boolean | null;
|
|
737
809
|
uiVisible: boolean | null;
|
|
738
|
-
key: string | null;
|
|
739
|
-
entityType: CustomFieldEntityType | null;
|
|
740
|
-
translations: Array<{
|
|
741
|
-
__typename?: "CustomFieldDefinitionTranslations";
|
|
742
|
-
description: string | null;
|
|
743
|
-
title: string | null;
|
|
744
|
-
language: string | null;
|
|
745
|
-
} | null> | null;
|
|
746
810
|
owner: {
|
|
747
811
|
__typename?: "CustomFieldOwner";
|
|
748
|
-
ownerType: CustomFieldOwnerType;
|
|
749
812
|
irisAppId: string | null;
|
|
813
|
+
ownerType: CustomFieldOwnerType;
|
|
750
814
|
marketplaceEntry: {
|
|
751
815
|
__typename?: "MarketplaceEntry";
|
|
752
816
|
name: string;
|
|
753
817
|
} | null;
|
|
754
818
|
} | null;
|
|
819
|
+
translations: Array<{
|
|
820
|
+
__typename?: "CustomFieldDefinitionTranslations";
|
|
821
|
+
description: string | null;
|
|
822
|
+
title: string | null;
|
|
823
|
+
language: string | null;
|
|
824
|
+
} | null> | null;
|
|
755
825
|
} & {
|
|
756
826
|
" $fragmentName"?: "CustomFieldDefinition_WebAddressFieldDefinition_Fragment";
|
|
757
827
|
};
|