@unito/integration-api 4.2.9 → 4.2.11

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.
@@ -220,6 +220,7 @@ export declare const fieldTypeCompatibilityMatrix: {
220
220
  readonly type: "string";
221
221
  readonly default: "semantic:displayName";
222
222
  readonly description: "The field against which to match the string value.";
223
+ readonly required: true;
223
224
  };
224
225
  };
225
226
  readonly html: {};
@@ -294,6 +295,7 @@ export declare const fieldTypeCompatibilityMatrix: {
294
295
  readonly type: "string";
295
296
  readonly default: "semantic:displayName";
296
297
  readonly description: "The field of the referenced entry to use for the string value.";
298
+ readonly required: true;
297
299
  };
298
300
  };
299
301
  readonly integer: null;
@@ -305,12 +307,20 @@ export declare const fieldTypeCompatibilityMatrix: {
305
307
  readonly description: "If specified, only the references kept in sync in the specified link sides will be evaluated.";
306
308
  readonly isArray: true;
307
309
  };
310
+ readonly type: {
311
+ readonly type: "enum";
312
+ readonly description: "The type of mapping, as selected by the customer.";
313
+ readonly hidden: true;
314
+ readonly isArray: false;
315
+ readonly values: ["manualOnly", "referenceOnly"];
316
+ };
308
317
  };
309
318
  readonly html: {
310
319
  readonly field: {
311
320
  readonly type: "string";
312
321
  readonly default: "semantic:displayName";
313
322
  readonly description: "The field of the referenced entry to use for the string value.";
323
+ readonly required: true;
314
324
  };
315
325
  };
316
326
  readonly markdown: {
@@ -318,6 +328,7 @@ export declare const fieldTypeCompatibilityMatrix: {
318
328
  readonly type: "string";
319
329
  readonly default: "semantic:displayName";
320
330
  readonly description: "The field of the referenced entry to use for the string value.";
331
+ readonly required: true;
321
332
  };
322
333
  };
323
334
  readonly string: {
@@ -325,6 +336,7 @@ export declare const fieldTypeCompatibilityMatrix: {
325
336
  readonly type: "string";
326
337
  readonly default: "semantic:displayName";
327
338
  readonly description: "The field of the referenced entry to use for the string value.";
339
+ readonly required: true;
328
340
  };
329
341
  };
330
342
  readonly url: null;
@@ -346,6 +358,7 @@ export declare const fieldTypeCompatibilityMatrix: {
346
358
  readonly type: "string";
347
359
  readonly default: "semantic:displayName";
348
360
  readonly description: "The field against which to match the string value.";
361
+ readonly required: true;
349
362
  };
350
363
  };
351
364
  readonly html: {
@@ -408,6 +421,7 @@ export declare const fieldTypeCompatibilityMatrix: {
408
421
  readonly type: "string";
409
422
  readonly default: "semantic:displayName";
410
423
  readonly description: "The field against which to match the string value.";
424
+ readonly required: true;
411
425
  };
412
426
  };
413
427
  readonly html: {
@@ -470,6 +484,7 @@ export declare const fieldTypeCompatibilityMatrix: {
470
484
  readonly type: "string";
471
485
  readonly default: "semantic:displayName";
472
486
  readonly description: "The field against which to match the string value.";
487
+ readonly required: true;
473
488
  };
474
489
  };
475
490
  readonly html: {};
@@ -4,6 +4,7 @@ const referenceToStringLikeConfiguration = {
4
4
  type: 'string',
5
5
  default: 'semantic:displayName',
6
6
  description: 'The field of the referenced entry to use for the string value.',
7
+ required: true,
7
8
  },
8
9
  };
9
10
  const stringLikeToReferenceConfiguration = {
@@ -11,6 +12,7 @@ const stringLikeToReferenceConfiguration = {
11
12
  type: 'string',
12
13
  default: 'semantic:displayName',
13
14
  description: 'The field against which to match the string value.',
15
+ required: true,
14
16
  },
15
17
  };
16
18
  const dateToStringlikeConfiguration = {
@@ -284,6 +286,13 @@ export const fieldTypeCompatibilityMatrix = {
284
286
  description: 'If specified, only the references kept in sync in the specified link sides will be evaluated.',
285
287
  isArray: true,
286
288
  },
289
+ type: {
290
+ type: 'enum',
291
+ description: 'The type of mapping, as selected by the customer.',
292
+ hidden: true,
293
+ isArray: false,
294
+ values: ['manualOnly', 'referenceOnly'],
295
+ },
287
296
  },
288
297
  [Api.FieldValueTypes.RICH_TEXT_HTML]: referenceToStringLikeConfiguration,
289
298
  [Api.FieldValueTypes.RICH_TEXT_MARKDOWN]: referenceToStringLikeConfiguration,
@@ -223,6 +223,7 @@ const referenceToStringLikeConfiguration = {
223
223
  type: 'string',
224
224
  default: 'semantic:displayName',
225
225
  description: 'The field of the referenced entry to use for the string value.',
226
+ required: true,
226
227
  },
227
228
  };
228
229
  const stringLikeToReferenceConfiguration = {
@@ -230,6 +231,7 @@ const stringLikeToReferenceConfiguration = {
230
231
  type: 'string',
231
232
  default: 'semantic:displayName',
232
233
  description: 'The field against which to match the string value.',
234
+ required: true,
233
235
  },
234
236
  };
235
237
  const dateToStringlikeConfiguration = {
@@ -503,6 +505,13 @@ const fieldTypeCompatibilityMatrix = {
503
505
  description: 'If specified, only the references kept in sync in the specified link sides will be evaluated.',
504
506
  isArray: true,
505
507
  },
508
+ type: {
509
+ type: 'enum',
510
+ description: 'The type of mapping, as selected by the customer.',
511
+ hidden: true,
512
+ isArray: false,
513
+ values: ['manualOnly', 'referenceOnly'],
514
+ },
506
515
  },
507
516
  [FieldValueTypes.RICH_TEXT_HTML]: referenceToStringLikeConfiguration,
508
517
  [FieldValueTypes.RICH_TEXT_MARKDOWN]: referenceToStringLikeConfiguration,
@@ -77,7 +77,7 @@ interface AbstractFieldSchema {
77
77
  info?: string;
78
78
  /**
79
79
  * Whether the field is read only.
80
- * @deprecated Use canSetOnCreate/canUpdate instead.
80
+ * @deprecated Use canSetOnCreate/canSetOnUpdate instead.
81
81
  */
82
82
  readOnly?: boolean;
83
83
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unito/integration-api",
3
- "version": "4.2.9",
3
+ "version": "4.2.11",
4
4
  "description": "The Unito Integration API",
5
5
  "type": "module",
6
6
  "types": "./dist/src/index.d.ts",