@verdocs/js-sdk 3.9.6 → 3.9.7

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.
@@ -29,4 +29,6 @@ export declare const updateOrganization: (endpoint: VerdocsEndpoint, organizatio
29
29
  * Check if an organization name is available. Typically used during the sign-up process. This endpoint is rate-limited
30
30
  * to prevent abuse. Developers experiencing problems with testing new applications should contact support.
31
31
  */
32
- export declare const isOrgAvailable: (endpoint: VerdocsEndpoint, name: string) => Promise<"OK" | "TAKEN">;
32
+ export declare const isOrgAvailable: (endpoint: VerdocsEndpoint, name: string) => Promise<{
33
+ result: 'TAKEN' | 'AVAILABLE';
34
+ }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verdocs/js-sdk",
3
- "version": "3.9.6",
3
+ "version": "3.9.7",
4
4
  "private": false,
5
5
  "homepage": "https://github.com/Verdocs/js-sdk",
6
6
  "description": "Verdocs JS SDK",