@unito/integration-api 4.2.11 → 4.2.13

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.
@@ -304,8 +304,9 @@ export declare const fieldTypeCompatibilityMatrix: {
304
304
  readonly reference: {
305
305
  readonly sideIds: {
306
306
  readonly type: "string";
307
- readonly description: "If specified, only the references kept in sync in the specified link sides will be evaluated.";
307
+ readonly description: "If specified, only the references kept in sync in the specified link sides will be evaluated. An empty array means no side will be evaluated.";
308
308
  readonly isArray: true;
309
+ readonly default: readonly [];
309
310
  };
310
311
  readonly type: {
311
312
  readonly type: "enum";
@@ -313,6 +314,7 @@ export declare const fieldTypeCompatibilityMatrix: {
313
314
  readonly hidden: true;
314
315
  readonly isArray: false;
315
316
  readonly values: ["manualOnly", "referenceOnly"];
317
+ readonly required: true;
316
318
  };
317
319
  };
318
320
  readonly html: {
@@ -283,8 +283,9 @@ export const fieldTypeCompatibilityMatrix = {
283
283
  [Api.FieldValueTypes.REFERENCE]: {
284
284
  sideIds: {
285
285
  type: 'string',
286
- description: 'If specified, only the references kept in sync in the specified link sides will be evaluated.',
286
+ description: 'If specified, only the references kept in sync in the specified link sides will be evaluated. An empty array means no side will be evaluated.',
287
287
  isArray: true,
288
+ default: [],
288
289
  },
289
290
  type: {
290
291
  type: 'enum',
@@ -292,6 +293,7 @@ export const fieldTypeCompatibilityMatrix = {
292
293
  hidden: true,
293
294
  isArray: false,
294
295
  values: ['manualOnly', 'referenceOnly'],
296
+ required: true,
295
297
  },
296
298
  },
297
299
  [Api.FieldValueTypes.RICH_TEXT_HTML]: referenceToStringLikeConfiguration,
@@ -502,8 +502,9 @@ const fieldTypeCompatibilityMatrix = {
502
502
  [FieldValueTypes.REFERENCE]: {
503
503
  sideIds: {
504
504
  type: 'string',
505
- description: 'If specified, only the references kept in sync in the specified link sides will be evaluated.',
505
+ description: 'If specified, only the references kept in sync in the specified link sides will be evaluated. An empty array means no side will be evaluated.',
506
506
  isArray: true,
507
+ default: [],
507
508
  },
508
509
  type: {
509
510
  type: 'enum',
@@ -511,6 +512,7 @@ const fieldTypeCompatibilityMatrix = {
511
512
  hidden: true,
512
513
  isArray: false,
513
514
  values: ['manualOnly', 'referenceOnly'],
515
+ required: true,
514
516
  },
515
517
  },
516
518
  [FieldValueTypes.RICH_TEXT_HTML]: referenceToStringLikeConfiguration,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unito/integration-api",
3
- "version": "4.2.11",
3
+ "version": "4.2.13",
4
4
  "description": "The Unito Integration API",
5
5
  "type": "module",
6
6
  "types": "./dist/src/index.d.ts",