@unito/integration-api 4.7.0 → 5.0.0
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.
- package/dist/schemas/fieldSchema.json +0 -5
- package/dist/src/index.cjs +1 -1
- package/dist/src/types.d.ts +1 -6
- package/dist/src/types.js +1 -1
- package/package.json +1 -1
package/dist/src/index.cjs
CHANGED
package/dist/src/types.d.ts
CHANGED
|
@@ -75,11 +75,6 @@ interface AbstractFieldSchema {
|
|
|
75
75
|
* Description of the field. For information purposes only.
|
|
76
76
|
*/
|
|
77
77
|
info?: string;
|
|
78
|
-
/**
|
|
79
|
-
* Whether the field is read only.
|
|
80
|
-
* @deprecated Use canSetOnCreate/canSetOnUpdate instead.
|
|
81
|
-
*/
|
|
82
|
-
readOnly?: boolean;
|
|
83
78
|
/**
|
|
84
79
|
* Whether the field can be set during creation.
|
|
85
80
|
* Defaults to true.
|
|
@@ -614,6 +609,6 @@ export declare const FieldSchemaDefaultValues: {
|
|
|
614
609
|
readonly CAN_SET_ON_CREATE: true;
|
|
615
610
|
readonly CAN_SET_ON_UPDATE: true;
|
|
616
611
|
readonly IS_ARRAY: false;
|
|
617
|
-
readonly NULLABLE:
|
|
612
|
+
readonly NULLABLE: true;
|
|
618
613
|
};
|
|
619
614
|
export {};
|
package/dist/src/types.js
CHANGED