@subnoto/api-client 2.3.2 → 2.3.4
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
|
@@ -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). */
|