@unboundcx/sdk 4.10.1 → 4.10.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/package.json +1 -1
- package/services/drive.js +0 -3
- package/services/storage.js +0 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unboundcx/sdk",
|
|
3
|
-
"version": "4.10.
|
|
3
|
+
"version": "4.10.2",
|
|
4
4
|
"description": "Official JavaScript SDK for the Unbound API - A comprehensive toolkit for integrating with Unbound's communication, AI, and data management services",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
package/services/drive.js
CHANGED
|
@@ -95,7 +95,6 @@ export class DriveService {
|
|
|
95
95
|
`/drive/folders/${id}`,
|
|
96
96
|
'PATCH',
|
|
97
97
|
{ body },
|
|
98
|
-
true,
|
|
99
98
|
);
|
|
100
99
|
return result;
|
|
101
100
|
}
|
|
@@ -140,7 +139,6 @@ export class DriveService {
|
|
|
140
139
|
`/drive/files/${id}`,
|
|
141
140
|
'PATCH',
|
|
142
141
|
{ body },
|
|
143
|
-
true,
|
|
144
142
|
);
|
|
145
143
|
return result;
|
|
146
144
|
}
|
|
@@ -169,7 +167,6 @@ export class DriveService {
|
|
|
169
167
|
'/drive/files/move',
|
|
170
168
|
'PATCH',
|
|
171
169
|
{ body },
|
|
172
|
-
true,
|
|
173
170
|
);
|
|
174
171
|
return result;
|
|
175
172
|
}
|
package/services/storage.js
CHANGED
|
@@ -814,7 +814,6 @@ Response:
|
|
|
814
814
|
`/storage/files/${id}`,
|
|
815
815
|
'PATCH',
|
|
816
816
|
{ body },
|
|
817
|
-
true,
|
|
818
817
|
);
|
|
819
818
|
return result;
|
|
820
819
|
}
|
|
@@ -960,7 +959,6 @@ Response:
|
|
|
960
959
|
`/storage/folders/${id}`,
|
|
961
960
|
'PATCH',
|
|
962
961
|
{ body },
|
|
963
|
-
true,
|
|
964
962
|
);
|
|
965
963
|
return result;
|
|
966
964
|
}
|
|
@@ -1016,7 +1014,6 @@ Response:
|
|
|
1016
1014
|
'/storage/files/move',
|
|
1017
1015
|
'PATCH',
|
|
1018
1016
|
{ body },
|
|
1019
|
-
true,
|
|
1020
1017
|
);
|
|
1021
1018
|
return result;
|
|
1022
1019
|
}
|