@subnoto/api-client 2.3.3 → 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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@subnoto/api-client",
3
3
  "private": false,
4
- "version": "2.3.3",
4
+ "version": "2.3.5",
5
5
  "description": "TypeScript SDK for Subnoto Public API",
6
6
  "author": "Subnoto",
7
7
  "homepage": "https://subnoto.com",
@@ -1326,6 +1326,24 @@ export interface paths {
1326
1326
  recipientEmail?: string;
1327
1327
  /** @enum {string} */
1328
1328
  type: "signature";
1329
+ } | {
1330
+ /** @description The page number where the block should be placed. */
1331
+ page: string;
1332
+ /** @description The x position of the block on the page. */
1333
+ x: number;
1334
+ /** @description The y position of the block on the page. */
1335
+ y: number;
1336
+ /** @description The height of the block. */
1337
+ height?: number;
1338
+ /** @description The width of the block. */
1339
+ width?: number;
1340
+ /**
1341
+ * Format: email
1342
+ * @description The email of the recipient for templated blocks.
1343
+ */
1344
+ recipientEmail?: string;
1345
+ /** @enum {string} */
1346
+ type: "date";
1329
1347
  })[];
1330
1348
  };
1331
1349
  };
@@ -3433,7 +3451,7 @@ export interface paths {
3433
3451
  uuid: string;
3434
3452
  label: string;
3435
3453
  /** @enum {string} */
3436
- labelIcon?: "at" | "text-t" | "image" | "signature" | "user" | "building-office" | "road-horizon" | "city" | "building" | "phone" | "read-cv-logo";
3454
+ labelIcon?: "at" | "text-t" | "image" | "signature" | "user" | "building-office" | "road-horizon" | "city" | "building" | "phone" | "read-cv-logo" | "calendar";
3437
3455
  x: number;
3438
3456
  y: number;
3439
3457
  height?: number;
@@ -3454,7 +3472,7 @@ export interface paths {
3454
3472
  uuid: string;
3455
3473
  label: string;
3456
3474
  /** @enum {string} */
3457
- labelIcon?: "at" | "text-t" | "image" | "signature" | "user" | "building-office" | "road-horizon" | "city" | "building" | "phone" | "read-cv-logo";
3475
+ labelIcon?: "at" | "text-t" | "image" | "signature" | "user" | "building-office" | "road-horizon" | "city" | "building" | "phone" | "read-cv-logo" | "calendar";
3458
3476
  x: number;
3459
3477
  y: number;
3460
3478
  height?: number;
@@ -3473,7 +3491,7 @@ export interface paths {
3473
3491
  uuid: string;
3474
3492
  label: string;
3475
3493
  /** @enum {string} */
3476
- labelIcon?: "at" | "text-t" | "image" | "signature" | "user" | "building-office" | "road-horizon" | "city" | "building" | "phone" | "read-cv-logo";
3494
+ labelIcon?: "at" | "text-t" | "image" | "signature" | "user" | "building-office" | "road-horizon" | "city" | "building" | "phone" | "read-cv-logo" | "calendar";
3477
3495
  x: number;
3478
3496
  y: number;
3479
3497
  height?: number;
@@ -3486,6 +3504,23 @@ export interface paths {
3486
3504
  recipientLabel?: string;
3487
3505
  /** @enum {string} */
3488
3506
  type: "signature";
3507
+ } | {
3508
+ uuid: string;
3509
+ label: string;
3510
+ /** @enum {string} */
3511
+ labelIcon?: "at" | "text-t" | "image" | "signature" | "user" | "building-office" | "road-horizon" | "city" | "building" | "phone" | "read-cv-logo" | "calendar";
3512
+ x: number;
3513
+ y: number;
3514
+ height?: number;
3515
+ width?: number;
3516
+ exportable: boolean;
3517
+ recipientEmail?: string;
3518
+ exported?: boolean;
3519
+ /** @enum {string} */
3520
+ color?: "primary" | "info" | "auxiliary" | "success" | "warning" | "danger";
3521
+ recipientLabel?: string;
3522
+ /** @enum {string} */
3523
+ type: "date";
3489
3524
  })[];
3490
3525
  };
3491
3526
  /** @description The date and time the document snapshot was last updated (unix timestamp). */
@@ -3520,6 +3555,10 @@ export interface paths {
3520
3555
  signatureOrder: boolean;
3521
3556
  /** @description Custom message to include in invitation emails. */
3522
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;
3523
3562
  };
3524
3563
  };
3525
3564
  };
@@ -4059,6 +4098,10 @@ export interface paths {
4059
4098
  tags?: string[];
4060
4099
  /** @description Whether signature order is enabled for this envelope. */
4061
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;
4062
4105
  };
4063
4106
  };
4064
4107
  };