@unito/integrations-platform-client 1.0.1 → 1.0.2
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/api.d.ts +24 -0
- package/package.json +3 -3
package/dist/src/api.d.ts
CHANGED
|
@@ -906,9 +906,15 @@ export declare function getProxyMe(xUnitoCredentialId: string, { xUnitoCorrelati
|
|
|
906
906
|
} | {
|
|
907
907
|
status: 404;
|
|
908
908
|
data: Error;
|
|
909
|
+
} | {
|
|
910
|
+
status: 410;
|
|
911
|
+
data: Error;
|
|
909
912
|
} | {
|
|
910
913
|
status: 422;
|
|
911
914
|
data: Error;
|
|
915
|
+
} | {
|
|
916
|
+
status: 423;
|
|
917
|
+
data: Error;
|
|
912
918
|
} | {
|
|
913
919
|
status: 500;
|
|
914
920
|
data: Error;
|
|
@@ -939,9 +945,15 @@ export declare function updateWebhookSubscription(xUnitoCredentialId: string, bo
|
|
|
939
945
|
} | {
|
|
940
946
|
status: 404;
|
|
941
947
|
data: Error;
|
|
948
|
+
} | {
|
|
949
|
+
status: 410;
|
|
950
|
+
data: Error;
|
|
942
951
|
} | {
|
|
943
952
|
status: 422;
|
|
944
953
|
data: Error;
|
|
954
|
+
} | {
|
|
955
|
+
status: 423;
|
|
956
|
+
data: Error;
|
|
945
957
|
} | {
|
|
946
958
|
status: 500;
|
|
947
959
|
data: Error;
|
|
@@ -977,6 +989,9 @@ export declare function getProxyGraph(xUnitoCredentialId: string, path: string,
|
|
|
977
989
|
} | {
|
|
978
990
|
status: 422;
|
|
979
991
|
data: Error;
|
|
992
|
+
} | {
|
|
993
|
+
status: 423;
|
|
994
|
+
data: Error;
|
|
980
995
|
} | {
|
|
981
996
|
status: 500;
|
|
982
997
|
data: Error;
|
|
@@ -1012,6 +1027,9 @@ export declare function patchProxyGraph(xUnitoCredentialId: string, path: string
|
|
|
1012
1027
|
} | {
|
|
1013
1028
|
status: 422;
|
|
1014
1029
|
data: Error;
|
|
1030
|
+
} | {
|
|
1031
|
+
status: 423;
|
|
1032
|
+
data: Error;
|
|
1015
1033
|
} | {
|
|
1016
1034
|
status: 500;
|
|
1017
1035
|
data: Error;
|
|
@@ -1047,6 +1065,9 @@ export declare function postProxyGraph(xUnitoCredentialId: string, path: string,
|
|
|
1047
1065
|
} | {
|
|
1048
1066
|
status: 422;
|
|
1049
1067
|
data: Error;
|
|
1068
|
+
} | {
|
|
1069
|
+
status: 423;
|
|
1070
|
+
data: Error;
|
|
1050
1071
|
} | {
|
|
1051
1072
|
status: 500;
|
|
1052
1073
|
data: Error;
|
|
@@ -1081,6 +1102,9 @@ export declare function deleteProxyGraph(xUnitoCredentialId: string, path: strin
|
|
|
1081
1102
|
} | {
|
|
1082
1103
|
status: 422;
|
|
1083
1104
|
data: Error;
|
|
1105
|
+
} | {
|
|
1106
|
+
status: 423;
|
|
1107
|
+
data: Error;
|
|
1084
1108
|
} | {
|
|
1085
1109
|
status: 500;
|
|
1086
1110
|
data: Error;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unito/integrations-platform-client",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "The Unito Integrations Platform Client",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/src/index.d.ts",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"dist/src/**/*"
|
|
16
16
|
],
|
|
17
17
|
"engines": {
|
|
18
|
-
"node": ">=
|
|
18
|
+
"node": ">=20",
|
|
19
19
|
"npm": ">=9.5.0"
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
},
|
|
36
36
|
"license": "LicenseRef-LICENSE",
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@types/node": "
|
|
38
|
+
"@types/node": "20.x",
|
|
39
39
|
"@types/sinon": "17.x",
|
|
40
40
|
"@typescript-eslint/eslint-plugin": "7.x",
|
|
41
41
|
"@typescript-eslint/parser": "7.x",
|