@unito/integration-api 4.7.1 → 5.0.1
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 -0
- package/dist/src/types.d.ts +1 -5
- package/dist/src/types.js +1 -0
- 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.
|
|
@@ -476,6 +471,7 @@ export declare const StatusCodes: {
|
|
|
476
471
|
readonly NO_CONTENT: 204;
|
|
477
472
|
readonly BAD_REQUEST: 400;
|
|
478
473
|
readonly UNAUTHORIZED: 401;
|
|
474
|
+
readonly PAYMENT_REQUIRED: 402;
|
|
479
475
|
readonly FORBIDDEN: 403;
|
|
480
476
|
readonly NOT_FOUND: 404;
|
|
481
477
|
readonly NOT_ACCEPTABLE: 406;
|
package/dist/src/types.js
CHANGED