@unito/integration-api 8.0.7 → 8.0.8
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.
|
@@ -403,7 +403,7 @@ export const fieldTypeCompatibilityMatrix = {
|
|
|
403
403
|
[Api.FieldValueTypes.NUMBER]: {},
|
|
404
404
|
[Api.FieldValueTypes.OBJECT]: null,
|
|
405
405
|
[Api.FieldValueTypes.REFERENCE]: stringLikeToReferenceConfiguration,
|
|
406
|
-
[Api.FieldValueTypes.RICH_TEXT]:
|
|
406
|
+
[Api.FieldValueTypes.RICH_TEXT]: null,
|
|
407
407
|
[Api.FieldValueTypes.RICH_TEXT_HTML]: {},
|
|
408
408
|
[Api.FieldValueTypes.RICH_TEXT_MARKDOWN]: {},
|
|
409
409
|
[Api.FieldValueTypes.STRING]: {},
|
package/dist/src/index.cjs
CHANGED
|
@@ -102,9 +102,6 @@ const StatusCodes = {
|
|
|
102
102
|
*/
|
|
103
103
|
const RelationSchemaDefaultValues = {
|
|
104
104
|
CAN_READ_ITEM: true,
|
|
105
|
-
CAN_CREATE_ITEM: true,
|
|
106
|
-
CAN_UPDATE_ITEM: true,
|
|
107
|
-
CAN_DELETE_ITEM: false,
|
|
108
105
|
CAN_ADD_FIELDS: false,
|
|
109
106
|
};
|
|
110
107
|
/**
|
|
@@ -682,7 +679,7 @@ const fieldTypeCompatibilityMatrix = {
|
|
|
682
679
|
[FieldValueTypes.NUMBER]: {},
|
|
683
680
|
[FieldValueTypes.OBJECT]: null,
|
|
684
681
|
[FieldValueTypes.REFERENCE]: stringLikeToReferenceConfiguration,
|
|
685
|
-
[FieldValueTypes.RICH_TEXT]:
|
|
682
|
+
[FieldValueTypes.RICH_TEXT]: null,
|
|
686
683
|
[FieldValueTypes.RICH_TEXT_HTML]: {},
|
|
687
684
|
[FieldValueTypes.RICH_TEXT_MARKDOWN]: {},
|
|
688
685
|
[FieldValueTypes.STRING]: {},
|
package/dist/src/types.d.ts
CHANGED
|
@@ -716,9 +716,6 @@ export type WebhookParseResponsePayload = WebhookParsedItem | WebhookItem | (Web
|
|
|
716
716
|
*/
|
|
717
717
|
export declare const RelationSchemaDefaultValues: {
|
|
718
718
|
readonly CAN_READ_ITEM: true;
|
|
719
|
-
readonly CAN_CREATE_ITEM: true;
|
|
720
|
-
readonly CAN_UPDATE_ITEM: true;
|
|
721
|
-
readonly CAN_DELETE_ITEM: false;
|
|
722
719
|
readonly CAN_ADD_FIELDS: false;
|
|
723
720
|
};
|
|
724
721
|
/**
|
package/dist/src/types.js
CHANGED