@verdocs/js-sdk 6.2.6 → 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 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;
@@ -1751,7 +1755,7 @@ declare const getEnvelopeFile: (endpoint: VerdocsEndpoint, documentId: string) =
1751
1755
  * @apiBody object data? Update the developer-supplied metadata attached to the envelope.
1752
1756
  * @apiSuccess IEnvelope . A copy of the newly-updated envelope.
1753
1757
  */
1754
- declare const updateEnvelope: (endpoint: VerdocsEndpoint, envelopeId: string, params: Pick<IEnvelope, "name" | "sender_name" | "sender_email" | "initial_reminder" | "followup_reminders" | "expires_at" | "visibility" | "no_contact" | "data">) => Promise<IEnvelope>;
1758
+ declare const updateEnvelope: (endpoint: VerdocsEndpoint, envelopeId: string, params: Partial<Pick<IEnvelope, "name" | "sender_name" | "sender_email" | "initial_reminder" | "followup_reminders" | "expires_at" | "visibility" | "no_contact" | "data">>) => Promise<IEnvelope>;
1755
1759
  /**
1756
1760
  * Update an Envelope field. Typically called during the signing process as a Recipient fills in fields.
1757
1761
  *
@@ -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;
@@ -1751,7 +1755,7 @@ declare const getEnvelopeFile: (endpoint: VerdocsEndpoint, documentId: string) =
1751
1755
  * @apiBody object data? Update the developer-supplied metadata attached to the envelope.
1752
1756
  * @apiSuccess IEnvelope . A copy of the newly-updated envelope.
1753
1757
  */
1754
- declare const updateEnvelope: (endpoint: VerdocsEndpoint, envelopeId: string, params: Pick<IEnvelope, "name" | "sender_name" | "sender_email" | "initial_reminder" | "followup_reminders" | "expires_at" | "visibility" | "no_contact" | "data">) => Promise<IEnvelope>;
1758
+ declare const updateEnvelope: (endpoint: VerdocsEndpoint, envelopeId: string, params: Partial<Pick<IEnvelope, "name" | "sender_name" | "sender_email" | "initial_reminder" | "followup_reminders" | "expires_at" | "visibility" | "no_contact" | "data">>) => Promise<IEnvelope>;
1755
1759
  /**
1756
1760
  * Update an Envelope field. Typically called during the signing process as a Recipient fills in fields.
1757
1761
  *
@@ -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
  }>;