@subnoto/api-client 2.4.0 → 2.5.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.
Binary file
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@subnoto/api-client",
3
3
  "private": false,
4
- "version": "2.4.0",
4
+ "version": "2.5.1",
5
5
  "description": "TypeScript SDK for Subnoto Public API",
6
6
  "author": "Subnoto",
7
7
  "homepage": "https://subnoto.com",
@@ -31,10 +31,10 @@
31
31
  "url": "https://gitlab.com/subnoto/subnoto-monorepo-public.git"
32
32
  },
33
33
  "dependencies": {
34
- "openapi-fetch": "0.15.0",
34
+ "openapi-fetch": "0.17.0",
35
35
  "tough-cookie": "6.0.0"
36
36
  },
37
37
  "devDependencies": {
38
- "openapi-typescript": "7.10.1"
38
+ "openapi-typescript": "7.13.0"
39
39
  }
40
40
  }
@@ -1606,6 +1606,8 @@ export interface paths {
1606
1606
  * @enum {string}
1607
1607
  */
1608
1608
  status: "pending" | "approved" | "signed" | "declined" | "canceled";
1609
+ /** @description The color variant assigned to the recipient. */
1610
+ colorVariant: string;
1609
1611
  }[];
1610
1612
  };
1611
1613
  };
@@ -3460,7 +3462,7 @@ export interface paths {
3460
3462
  recipientEmail?: string;
3461
3463
  exported?: boolean;
3462
3464
  /** @enum {string} */
3463
- color?: "primary" | "info" | "auxiliary" | "success" | "warning" | "danger";
3465
+ color?: "primary" | "info" | "auxiliary" | "success" | "warning" | "danger" | "teal" | "pink" | "grape" | "lime";
3464
3466
  recipientLabel?: string;
3465
3467
  /** @enum {string} */
3466
3468
  type: "text";
@@ -3481,7 +3483,7 @@ export interface paths {
3481
3483
  recipientEmail?: string;
3482
3484
  exported?: boolean;
3483
3485
  /** @enum {string} */
3484
- color?: "primary" | "info" | "auxiliary" | "success" | "warning" | "danger";
3486
+ color?: "primary" | "info" | "auxiliary" | "success" | "warning" | "danger" | "teal" | "pink" | "grape" | "lime";
3485
3487
  recipientLabel?: string;
3486
3488
  /** @enum {string} */
3487
3489
  type: "image";
@@ -3500,7 +3502,7 @@ export interface paths {
3500
3502
  recipientEmail?: string;
3501
3503
  exported?: boolean;
3502
3504
  /** @enum {string} */
3503
- color?: "primary" | "info" | "auxiliary" | "success" | "warning" | "danger";
3505
+ color?: "primary" | "info" | "auxiliary" | "success" | "warning" | "danger" | "teal" | "pink" | "grape" | "lime";
3504
3506
  recipientLabel?: string;
3505
3507
  /** @enum {string} */
3506
3508
  type: "signature";
@@ -3517,7 +3519,7 @@ export interface paths {
3517
3519
  recipientEmail?: string;
3518
3520
  exported?: boolean;
3519
3521
  /** @enum {string} */
3520
- color?: "primary" | "info" | "auxiliary" | "success" | "warning" | "danger";
3522
+ color?: "primary" | "info" | "auxiliary" | "success" | "warning" | "danger" | "teal" | "pink" | "grape" | "lime";
3521
3523
  recipientLabel?: string;
3522
3524
  /** @enum {string} */
3523
3525
  type: "date";
@@ -3529,6 +3531,8 @@ export interface paths {
3529
3531
  signaturesOnSeparatePage: boolean;
3530
3532
  /** @description Whether initials are required on all pages of the document. */
3531
3533
  initialsOnAllPages: boolean;
3534
+ /** @description Whether the signer must read all pages before signing. */
3535
+ mustReadAllPages: boolean;
3532
3536
  /** @description The number of pages in the document. */
3533
3537
  pageCount: number;
3534
3538
  }[];
@@ -4093,6 +4097,8 @@ export interface paths {
4093
4097
  title?: string;
4094
4098
  /** @description Whether the initials are on all pages. */
4095
4099
  initialsOnAllPages?: boolean;
4100
+ /** @description Whether the signer must read all pages before signing. */
4101
+ mustReadAllPages?: boolean;
4096
4102
  }[];
4097
4103
  /** @description The names of the tags to add to the envelope. */
4098
4104
  tags?: string[];