@unito/integration-api 8.0.5 → 8.0.6

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.
@@ -405,8 +405,8 @@ export declare const fieldTypeCompatibilityMatrix: {
405
405
  readonly object: null;
406
406
  readonly reference: null;
407
407
  readonly richText: {};
408
- readonly html: null;
409
- readonly markdown: null;
408
+ readonly html: {};
409
+ readonly markdown: {};
410
410
  readonly string: null;
411
411
  readonly url: null;
412
412
  };
@@ -423,7 +423,7 @@ export declare const fieldTypeCompatibilityMatrix: {
423
423
  readonly number: null;
424
424
  readonly object: null;
425
425
  readonly reference: null;
426
- readonly richText: null;
426
+ readonly richText: {};
427
427
  readonly html: {
428
428
  readonly decoratorTemplate: {
429
429
  readonly type: "stringWithSourceItemFields";
@@ -492,7 +492,7 @@ export declare const fieldTypeCompatibilityMatrix: {
492
492
  readonly number: null;
493
493
  readonly object: null;
494
494
  readonly reference: null;
495
- readonly richText: null;
495
+ readonly richText: {};
496
496
  readonly html: {
497
497
  readonly decoratorTemplate: {
498
498
  readonly type: "stringWithSourceItemFields";
@@ -347,8 +347,8 @@ export const fieldTypeCompatibilityMatrix = {
347
347
  [Api.FieldValueTypes.OBJECT]: null,
348
348
  [Api.FieldValueTypes.REFERENCE]: null,
349
349
  [Api.FieldValueTypes.RICH_TEXT]: {},
350
- [Api.FieldValueTypes.RICH_TEXT_HTML]: null,
351
- [Api.FieldValueTypes.RICH_TEXT_MARKDOWN]: null,
350
+ [Api.FieldValueTypes.RICH_TEXT_HTML]: {},
351
+ [Api.FieldValueTypes.RICH_TEXT_MARKDOWN]: {},
352
352
  [Api.FieldValueTypes.STRING]: null,
353
353
  [Api.FieldValueTypes.URL]: null,
354
354
  },
@@ -365,7 +365,7 @@ export const fieldTypeCompatibilityMatrix = {
365
365
  [Api.FieldValueTypes.NUMBER]: null,
366
366
  [Api.FieldValueTypes.OBJECT]: null,
367
367
  [Api.FieldValueTypes.REFERENCE]: null,
368
- [Api.FieldValueTypes.RICH_TEXT]: null,
368
+ [Api.FieldValueTypes.RICH_TEXT]: {},
369
369
  [Api.FieldValueTypes.RICH_TEXT_HTML]: htmlToRichTextConfiguration,
370
370
  [Api.FieldValueTypes.RICH_TEXT_MARKDOWN]: htmlToRichTextConfiguration,
371
371
  [Api.FieldValueTypes.STRING]: {},
@@ -384,7 +384,7 @@ export const fieldTypeCompatibilityMatrix = {
384
384
  [Api.FieldValueTypes.NUMBER]: null,
385
385
  [Api.FieldValueTypes.OBJECT]: null,
386
386
  [Api.FieldValueTypes.REFERENCE]: null,
387
- [Api.FieldValueTypes.RICH_TEXT]: null,
387
+ [Api.FieldValueTypes.RICH_TEXT]: {},
388
388
  [Api.FieldValueTypes.RICH_TEXT_HTML]: markdownToRichTextConfiguration,
389
389
  [Api.FieldValueTypes.RICH_TEXT_MARKDOWN]: markdownToRichTextConfiguration,
390
390
  [Api.FieldValueTypes.STRING]: {},
@@ -626,8 +626,8 @@ const fieldTypeCompatibilityMatrix = {
626
626
  [FieldValueTypes.OBJECT]: null,
627
627
  [FieldValueTypes.REFERENCE]: null,
628
628
  [FieldValueTypes.RICH_TEXT]: {},
629
- [FieldValueTypes.RICH_TEXT_HTML]: null,
630
- [FieldValueTypes.RICH_TEXT_MARKDOWN]: null,
629
+ [FieldValueTypes.RICH_TEXT_HTML]: {},
630
+ [FieldValueTypes.RICH_TEXT_MARKDOWN]: {},
631
631
  [FieldValueTypes.STRING]: null,
632
632
  [FieldValueTypes.URL]: null,
633
633
  },
@@ -644,7 +644,7 @@ const fieldTypeCompatibilityMatrix = {
644
644
  [FieldValueTypes.NUMBER]: null,
645
645
  [FieldValueTypes.OBJECT]: null,
646
646
  [FieldValueTypes.REFERENCE]: null,
647
- [FieldValueTypes.RICH_TEXT]: null,
647
+ [FieldValueTypes.RICH_TEXT]: {},
648
648
  [FieldValueTypes.RICH_TEXT_HTML]: htmlToRichTextConfiguration,
649
649
  [FieldValueTypes.RICH_TEXT_MARKDOWN]: htmlToRichTextConfiguration,
650
650
  [FieldValueTypes.STRING]: {},
@@ -663,7 +663,7 @@ const fieldTypeCompatibilityMatrix = {
663
663
  [FieldValueTypes.NUMBER]: null,
664
664
  [FieldValueTypes.OBJECT]: null,
665
665
  [FieldValueTypes.REFERENCE]: null,
666
- [FieldValueTypes.RICH_TEXT]: null,
666
+ [FieldValueTypes.RICH_TEXT]: {},
667
667
  [FieldValueTypes.RICH_TEXT_HTML]: markdownToRichTextConfiguration,
668
668
  [FieldValueTypes.RICH_TEXT_MARKDOWN]: markdownToRichTextConfiguration,
669
669
  [FieldValueTypes.STRING]: {},
@@ -476,15 +476,15 @@ export interface RelationSchema {
476
476
  /**
477
477
  * Can we create items?
478
478
  */
479
- canCreateItem?: boolean;
479
+ canCreateItem: boolean;
480
480
  /**
481
481
  * Can we update items?
482
482
  */
483
- canUpdateItem?: boolean;
483
+ canUpdateItem: boolean;
484
484
  /**
485
485
  * Can we delete items?
486
486
  */
487
- canDeleteItem?: boolean;
487
+ canDeleteItem: boolean;
488
488
  /**
489
489
  * Can we add fields to the schema?
490
490
  * Defaults to false.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unito/integration-api",
3
- "version": "8.0.5",
3
+ "version": "8.0.6",
4
4
  "description": "The Unito Integration API",
5
5
  "type": "module",
6
6
  "types": "./dist/src/index.d.ts",