@verdocs/js-sdk 6.8.2 → 6.9.1
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 +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/package.json +14 -8
- package/package.json +14 -8
package/dist/index.d.mts
CHANGED
|
@@ -324,6 +324,8 @@ interface IOrganization {
|
|
|
324
324
|
primary_color?: string | null;
|
|
325
325
|
secondary_color?: string | null;
|
|
326
326
|
parent_id: string | null;
|
|
327
|
+
style_overrides?: string | null;
|
|
328
|
+
hipaa_complaint?: boolean | null;
|
|
327
329
|
disclaimer?: string | null;
|
|
328
330
|
terms_use_url?: string | null;
|
|
329
331
|
privacy_policy_url?: string | null;
|
|
@@ -1088,7 +1090,7 @@ type TUsageType = "envelope" | "envelope_canceled" | "envelope_completed" | "env
|
|
|
1088
1090
|
*/
|
|
1089
1091
|
type TWebhookAuthMethod = "none" | "hmac" | "client_credentials";
|
|
1090
1092
|
type TNotificationType = "sms" | "email" | "app";
|
|
1091
|
-
type TEventName = "invitation:canceled" | "transaction:completed" | "envelope:failed" | "envelope:expired" | "envelope:declined" | "envelope:cc" | "recipient:reminder" | "transaction:requested" | "envelope:
|
|
1093
|
+
type TEventName = "invitation:canceled" | "transaction:completed" | "envelope:failed" | "envelope:expired" | "envelope:declined" | "envelope:cc" | "recipient:reminder" | "transaction:requested" | "envelope:completed" | "transaction:canceled" | "user:invited" | "recipient:invited" | "envelope:canceled" | "transaction:sent" | "envelope:signed" | "email:verify" | "email:otp" | "password:reset" | "recipient:question" | "delegate:requested" | "delegate:send_confirmed";
|
|
1092
1094
|
declare const FIELD_TYPES: TFieldType[];
|
|
1093
1095
|
declare const DEFAULT_FIELD_WIDTHS: Record<TFieldType, number>;
|
|
1094
1096
|
declare const DEFAULT_FIELD_HEIGHTS: Record<TFieldType, number>;
|
|
@@ -2594,6 +2596,7 @@ interface ICreateProfileRequest {
|
|
|
2594
2596
|
first_name: string;
|
|
2595
2597
|
last_name: string;
|
|
2596
2598
|
org_name: string;
|
|
2599
|
+
phone: string;
|
|
2597
2600
|
}
|
|
2598
2601
|
interface IUpdateProfileRequest {
|
|
2599
2602
|
first_name?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -324,6 +324,8 @@ interface IOrganization {
|
|
|
324
324
|
primary_color?: string | null;
|
|
325
325
|
secondary_color?: string | null;
|
|
326
326
|
parent_id: string | null;
|
|
327
|
+
style_overrides?: string | null;
|
|
328
|
+
hipaa_complaint?: boolean | null;
|
|
327
329
|
disclaimer?: string | null;
|
|
328
330
|
terms_use_url?: string | null;
|
|
329
331
|
privacy_policy_url?: string | null;
|
|
@@ -1088,7 +1090,7 @@ type TUsageType = "envelope" | "envelope_canceled" | "envelope_completed" | "env
|
|
|
1088
1090
|
*/
|
|
1089
1091
|
type TWebhookAuthMethod = "none" | "hmac" | "client_credentials";
|
|
1090
1092
|
type TNotificationType = "sms" | "email" | "app";
|
|
1091
|
-
type TEventName = "invitation:canceled" | "transaction:completed" | "envelope:failed" | "envelope:expired" | "envelope:declined" | "envelope:cc" | "recipient:reminder" | "transaction:requested" | "envelope:
|
|
1093
|
+
type TEventName = "invitation:canceled" | "transaction:completed" | "envelope:failed" | "envelope:expired" | "envelope:declined" | "envelope:cc" | "recipient:reminder" | "transaction:requested" | "envelope:completed" | "transaction:canceled" | "user:invited" | "recipient:invited" | "envelope:canceled" | "transaction:sent" | "envelope:signed" | "email:verify" | "email:otp" | "password:reset" | "recipient:question" | "delegate:requested" | "delegate:send_confirmed";
|
|
1092
1094
|
declare const FIELD_TYPES: TFieldType[];
|
|
1093
1095
|
declare const DEFAULT_FIELD_WIDTHS: Record<TFieldType, number>;
|
|
1094
1096
|
declare const DEFAULT_FIELD_HEIGHTS: Record<TFieldType, number>;
|
|
@@ -2594,6 +2596,7 @@ interface ICreateProfileRequest {
|
|
|
2594
2596
|
first_name: string;
|
|
2595
2597
|
last_name: string;
|
|
2596
2598
|
org_name: string;
|
|
2599
|
+
phone: string;
|
|
2597
2600
|
}
|
|
2598
2601
|
interface IUpdateProfileRequest {
|
|
2599
2602
|
first_name?: string;
|