@subnoto/api-client 2.3.4 → 2.3.5
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/package.json
CHANGED
|
@@ -3555,6 +3555,10 @@ export interface paths {
|
|
|
3555
3555
|
signatureOrder: boolean;
|
|
3556
3556
|
/** @description Custom message to include in invitation emails. */
|
|
3557
3557
|
customMessage: string | null;
|
|
3558
|
+
/** @description Number of days until expiration of the recipient link invitation (min: 1, max: 90). */
|
|
3559
|
+
expirationPeriod: number;
|
|
3560
|
+
/** @description Number of days between reminders (null to disable reminders). */
|
|
3561
|
+
reminderFrequencyPeriod: number | null;
|
|
3558
3562
|
};
|
|
3559
3563
|
};
|
|
3560
3564
|
};
|
|
@@ -4094,6 +4098,10 @@ export interface paths {
|
|
|
4094
4098
|
tags?: string[];
|
|
4095
4099
|
/** @description Whether signature order is enabled for this envelope. */
|
|
4096
4100
|
signatureOrder?: boolean;
|
|
4101
|
+
/** @description Number of days until expiration of the recipient link invitation (min: 1, max: 90). */
|
|
4102
|
+
expirationPeriod?: number;
|
|
4103
|
+
/** @description Number of days between reminders (null to disable reminders). */
|
|
4104
|
+
reminderFrequencyPeriod?: number | null;
|
|
4097
4105
|
};
|
|
4098
4106
|
};
|
|
4099
4107
|
};
|