@subnoto/api-client 2.5.1 → 2.5.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.
|
Binary file
|
package/package.json
CHANGED
|
@@ -2861,9 +2861,15 @@ export interface paths {
|
|
|
2861
2861
|
workspaceUuid: string;
|
|
2862
2862
|
/** @description The UUID of the envelope to send. */
|
|
2863
2863
|
envelopeUuid: string;
|
|
2864
|
-
/**
|
|
2864
|
+
/**
|
|
2865
|
+
* @deprecated
|
|
2866
|
+
* @description Deprecated. Use the update envelope endpoint to set this; value is ignored when sending. Whether to use the user's name or by default the company name as the sender name.
|
|
2867
|
+
*/
|
|
2865
2868
|
useUserAsSenderName?: boolean;
|
|
2866
|
-
/**
|
|
2869
|
+
/**
|
|
2870
|
+
* @deprecated
|
|
2871
|
+
* @description Deprecated. Use the update envelope endpoint to set this; value is ignored when sending. Custom message to include in the invitation email.
|
|
2872
|
+
*/
|
|
2867
2873
|
customInvitationMessage?: string;
|
|
2868
2874
|
};
|
|
2869
2875
|
};
|
|
@@ -3559,6 +3565,8 @@ export interface paths {
|
|
|
3559
3565
|
signatureOrder: boolean;
|
|
3560
3566
|
/** @description Custom message to include in invitation emails. */
|
|
3561
3567
|
customMessage: string | null;
|
|
3568
|
+
/** @description Whether to use the user's name (true) or team name (false) as sender in invitation emails. */
|
|
3569
|
+
useUserAsSenderName: boolean;
|
|
3562
3570
|
/** @description Number of days until expiration of the recipient link invitation (min: 1, max: 90). */
|
|
3563
3571
|
expirationPeriod: number;
|
|
3564
3572
|
/** @description Number of days between reminders (null to disable reminders). */
|
|
@@ -4108,6 +4116,10 @@ export interface paths {
|
|
|
4108
4116
|
expirationPeriod?: number;
|
|
4109
4117
|
/** @description Number of days between reminders (null to disable reminders). */
|
|
4110
4118
|
reminderFrequencyPeriod?: number | null;
|
|
4119
|
+
/** @description Custom message to include in invitation emails (null to clear). */
|
|
4120
|
+
customInvitationMessage?: string | null;
|
|
4121
|
+
/** @description Whether to use the user's name (true) or team name (false) as sender in invitation emails. */
|
|
4122
|
+
useUserAsSenderName?: boolean;
|
|
4111
4123
|
};
|
|
4112
4124
|
};
|
|
4113
4125
|
};
|