@unito/integration-api 0.43.11 → 0.43.12
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/src/index.cjs
CHANGED
|
@@ -38,6 +38,7 @@ exports.Semantic = void 0;
|
|
|
38
38
|
Semantic["PROVIDER_URL"] = "providerUrl";
|
|
39
39
|
Semantic["UPDATED_AT"] = "updatedAt";
|
|
40
40
|
Semantic["USER"] = "user";
|
|
41
|
+
Semantic["PARENT"] = "parent";
|
|
41
42
|
})(exports.Semantic || (exports.Semantic = {}));
|
|
42
43
|
/**
|
|
43
44
|
* A Relation Semantic gives meaning to a Relation in the Unito platform. A relation with a
|
|
@@ -79,6 +80,7 @@ exports.StatusCode = void 0;
|
|
|
79
80
|
StatusCode[StatusCode["BAD_REQUEST"] = 400] = "BAD_REQUEST";
|
|
80
81
|
StatusCode[StatusCode["UNAUTHORIZED"] = 401] = "UNAUTHORIZED";
|
|
81
82
|
StatusCode[StatusCode["NOT_FOUND"] = 404] = "NOT_FOUND";
|
|
83
|
+
StatusCode[StatusCode["NOT_ACCEPTABLE"] = 406] = "NOT_ACCEPTABLE";
|
|
82
84
|
StatusCode[StatusCode["REQUEST_TIMEOUT"] = 408] = "REQUEST_TIMEOUT";
|
|
83
85
|
StatusCode[StatusCode["UNPROCESSABLE_CONTENT"] = 422] = "UNPROCESSABLE_CONTENT";
|
|
84
86
|
StatusCode[StatusCode["TOO_MANY_REQUESTS"] = 429] = "TOO_MANY_REQUESTS";
|
package/dist/src/types.d.ts
CHANGED
|
@@ -208,7 +208,8 @@ export declare enum Semantic {
|
|
|
208
208
|
DISPLAY_NAME = "displayName",
|
|
209
209
|
PROVIDER_URL = "providerUrl",
|
|
210
210
|
UPDATED_AT = "updatedAt",
|
|
211
|
-
USER = "user"
|
|
211
|
+
USER = "user",
|
|
212
|
+
PARENT = "parent"
|
|
212
213
|
}
|
|
213
214
|
/**
|
|
214
215
|
* A Relation Semantic gives meaning to a Relation in the Unito platform. A relation with a
|
|
@@ -402,6 +403,7 @@ export declare enum StatusCode {
|
|
|
402
403
|
BAD_REQUEST = 400,
|
|
403
404
|
UNAUTHORIZED = 401,
|
|
404
405
|
NOT_FOUND = 404,
|
|
406
|
+
NOT_ACCEPTABLE = 406,
|
|
405
407
|
REQUEST_TIMEOUT = 408,
|
|
406
408
|
UNPROCESSABLE_CONTENT = 422,
|
|
407
409
|
TOO_MANY_REQUESTS = 429,
|
package/dist/src/types.js
CHANGED
|
@@ -36,6 +36,7 @@ export var Semantic;
|
|
|
36
36
|
Semantic["PROVIDER_URL"] = "providerUrl";
|
|
37
37
|
Semantic["UPDATED_AT"] = "updatedAt";
|
|
38
38
|
Semantic["USER"] = "user";
|
|
39
|
+
Semantic["PARENT"] = "parent";
|
|
39
40
|
})(Semantic || (Semantic = {}));
|
|
40
41
|
/**
|
|
41
42
|
* A Relation Semantic gives meaning to a Relation in the Unito platform. A relation with a
|
|
@@ -77,6 +78,7 @@ export var StatusCode;
|
|
|
77
78
|
StatusCode[StatusCode["BAD_REQUEST"] = 400] = "BAD_REQUEST";
|
|
78
79
|
StatusCode[StatusCode["UNAUTHORIZED"] = 401] = "UNAUTHORIZED";
|
|
79
80
|
StatusCode[StatusCode["NOT_FOUND"] = 404] = "NOT_FOUND";
|
|
81
|
+
StatusCode[StatusCode["NOT_ACCEPTABLE"] = 406] = "NOT_ACCEPTABLE";
|
|
80
82
|
StatusCode[StatusCode["REQUEST_TIMEOUT"] = 408] = "REQUEST_TIMEOUT";
|
|
81
83
|
StatusCode[StatusCode["UNPROCESSABLE_CONTENT"] = 422] = "UNPROCESSABLE_CONTENT";
|
|
82
84
|
StatusCode[StatusCode["TOO_MANY_REQUESTS"] = 429] = "TOO_MANY_REQUESTS";
|