@hautechai/sdk 2.23.1 → 2.23.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/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -12337,13 +12337,11 @@ var getAccess = () => {
|
|
|
12337
12337
|
options
|
|
12338
12338
|
);
|
|
12339
12339
|
};
|
|
12340
|
-
const accessControllerRevokeAccessFromEveryoneV1 = (id,
|
|
12340
|
+
const accessControllerRevokeAccessFromEveryoneV1 = (id, options) => {
|
|
12341
12341
|
return axiosMutator(
|
|
12342
12342
|
{
|
|
12343
12343
|
url: `/v1/resources/${id}/access/revoke/everyone`,
|
|
12344
|
-
method: "POST"
|
|
12345
|
-
headers: { "Content-Type": "application/json" },
|
|
12346
|
-
data: shareWithEveryoneControllerParamsDto
|
|
12344
|
+
method: "POST"
|
|
12347
12345
|
},
|
|
12348
12346
|
options
|
|
12349
12347
|
);
|