@unito/integration-api 4.2.10 → 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;
@@ -318,6 +320,7 @@ export declare const fieldTypeCompatibilityMatrix: {
318
320
  readonly type: "string";
319
321
  readonly default: "semantic:displayName";
320
322
  readonly description: "The field of the referenced entry to use for the string value.";
323
+ readonly required: true;
321
324
  };
322
325
  };
323
326
  readonly markdown: {
@@ -325,6 +328,7 @@ export declare const fieldTypeCompatibilityMatrix: {
325
328
  readonly type: "string";
326
329
  readonly default: "semantic:displayName";
327
330
  readonly description: "The field of the referenced entry to use for the string value.";
331
+ readonly required: true;
328
332
  };
329
333
  };
330
334
  readonly string: {
@@ -332,6 +336,7 @@ export declare const fieldTypeCompatibilityMatrix: {
332
336
  readonly type: "string";
333
337
  readonly default: "semantic:displayName";
334
338
  readonly description: "The field of the referenced entry to use for the string value.";
339
+ readonly required: true;
335
340
  };
336
341
  };
337
342
  readonly url: null;
@@ -353,6 +358,7 @@ export declare const fieldTypeCompatibilityMatrix: {
353
358
  readonly type: "string";
354
359
  readonly default: "semantic:displayName";
355
360
  readonly description: "The field against which to match the string value.";
361
+ readonly required: true;
356
362
  };
357
363
  };
358
364
  readonly html: {
@@ -415,6 +421,7 @@ export declare const fieldTypeCompatibilityMatrix: {
415
421
  readonly type: "string";
416
422
  readonly default: "semantic:displayName";
417
423
  readonly description: "The field against which to match the string value.";
424
+ readonly required: true;
418
425
  };
419
426
  };
420
427
  readonly html: {
@@ -477,6 +484,7 @@ export declare const fieldTypeCompatibilityMatrix: {
477
484
  readonly type: "string";
478
485
  readonly default: "semantic:displayName";
479
486
  readonly description: "The field against which to match the string value.";
487
+ readonly required: true;
480
488
  };
481
489
  };
482
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 = {
@@ -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 = {
@@ -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.10",
3
+ "version": "4.2.11",
4
4
  "description": "The Unito Integration API",
5
5
  "type": "module",
6
6
  "types": "./dist/src/index.d.ts",