@verdocs/js-sdk 6.2.7 → 6.3.0
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 +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -314,6 +314,10 @@ interface IOrganization {
|
|
|
314
314
|
secondary_color?: string | null;
|
|
315
315
|
parent_id: string | null;
|
|
316
316
|
disclaimer?: string | null;
|
|
317
|
+
terms_use_url?: string | null;
|
|
318
|
+
privacy_policy_url?: string | null;
|
|
319
|
+
powered_by_label?: string | null;
|
|
320
|
+
powered_by_url?: string | null;
|
|
317
321
|
data?: Record<string, any> | null;
|
|
318
322
|
/** Creation date/time. */
|
|
319
323
|
created_at: string;
|
|
@@ -2967,7 +2971,7 @@ declare const getOrganizationUsage: (endpoint: VerdocsEndpoint, organizationId:
|
|
|
2967
2971
|
*/
|
|
2968
2972
|
declare const createOrganization: (endpoint: VerdocsEndpoint, params: {
|
|
2969
2973
|
name: string;
|
|
2970
|
-
} & Partial<Pick<IOrganization, "address" | "address2" | "phone" | "contact_email" | "url" | "full_logo_url" | "thumbnail_url" | "primary_color" | "secondary_color" | "parent_id">>) => Promise<IAuthenticateResponse & {
|
|
2974
|
+
} & Partial<Pick<IOrganization, "address" | "address2" | "phone" | "contact_email" | "url" | "full_logo_url" | "thumbnail_url" | "primary_color" | "secondary_color" | "terms_use_url" | "privacy_policy_url" | "powered_by_label" | "powered_by_url" | "parent_id">>) => Promise<IAuthenticateResponse & {
|
|
2971
2975
|
profile: IProfile;
|
|
2972
2976
|
organization: IOrganization;
|
|
2973
2977
|
}>;
|
package/dist/index.d.ts
CHANGED
|
@@ -314,6 +314,10 @@ interface IOrganization {
|
|
|
314
314
|
secondary_color?: string | null;
|
|
315
315
|
parent_id: string | null;
|
|
316
316
|
disclaimer?: string | null;
|
|
317
|
+
terms_use_url?: string | null;
|
|
318
|
+
privacy_policy_url?: string | null;
|
|
319
|
+
powered_by_label?: string | null;
|
|
320
|
+
powered_by_url?: string | null;
|
|
317
321
|
data?: Record<string, any> | null;
|
|
318
322
|
/** Creation date/time. */
|
|
319
323
|
created_at: string;
|
|
@@ -2967,7 +2971,7 @@ declare const getOrganizationUsage: (endpoint: VerdocsEndpoint, organizationId:
|
|
|
2967
2971
|
*/
|
|
2968
2972
|
declare const createOrganization: (endpoint: VerdocsEndpoint, params: {
|
|
2969
2973
|
name: string;
|
|
2970
|
-
} & Partial<Pick<IOrganization, "address" | "address2" | "phone" | "contact_email" | "url" | "full_logo_url" | "thumbnail_url" | "primary_color" | "secondary_color" | "parent_id">>) => Promise<IAuthenticateResponse & {
|
|
2974
|
+
} & Partial<Pick<IOrganization, "address" | "address2" | "phone" | "contact_email" | "url" | "full_logo_url" | "thumbnail_url" | "primary_color" | "secondary_color" | "terms_use_url" | "privacy_policy_url" | "powered_by_label" | "powered_by_url" | "parent_id">>) => Promise<IAuthenticateResponse & {
|
|
2971
2975
|
profile: IProfile;
|
|
2972
2976
|
organization: IOrganization;
|
|
2973
2977
|
}>;
|