@documenso/sdk-typescript 0.6.2 → 0.7.0
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/README.md +1 -1
- package/bin/mcp-server.js +227 -825
- package/bin/mcp-server.js.map +8 -8
- package/examples/package-lock.json +2 -2
- package/funcs/documentsCreateV0.d.ts +2 -0
- package/funcs/documentsCreateV0.d.ts.map +1 -1
- package/funcs/documentsCreateV0.js +2 -0
- package/funcs/documentsCreateV0.js.map +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/operations/envelopefieldcreatemany.d.ts +167 -943
- package/models/operations/envelopefieldcreatemany.d.ts.map +1 -1
- package/models/operations/envelopefieldcreatemany.js +297 -1182
- package/models/operations/envelopefieldcreatemany.js.map +1 -1
- package/models/operations/envelopefieldupdatemany.d.ts +70 -70
- package/models/operations/envelopefieldupdatemany.d.ts.map +1 -1
- package/models/operations/envelopefieldupdatemany.js +135 -135
- package/models/operations/envelopefieldupdatemany.js.map +1 -1
- package/package.json +2 -2
- package/sdk/documents.d.ts +2 -0
- package/sdk/documents.d.ts.map +1 -1
- package/sdk/documents.js +2 -0
- package/sdk/documents.js.map +1 -1
- package/src/funcs/documentsCreateV0.ts +2 -0
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/operations/envelopefieldcreatemany.ts +803 -3125
- package/src/models/operations/envelopefieldupdatemany.ts +232 -305
- package/src/sdk/documents.ts +2 -0
|
@@ -30,7 +30,7 @@ export type EnvelopeFieldUpdateManyFieldMetaDropdownRequest = {
|
|
|
30
30
|
defaultValue?: string | undefined;
|
|
31
31
|
};
|
|
32
32
|
|
|
33
|
-
export type
|
|
33
|
+
export type DataDropdown = {
|
|
34
34
|
type: "DROPDOWN";
|
|
35
35
|
fieldMeta?: EnvelopeFieldUpdateManyFieldMetaDropdownRequest | undefined;
|
|
36
36
|
id: number;
|
|
@@ -76,7 +76,7 @@ export type EnvelopeFieldUpdateManyFieldMetaCheckboxRequest = {
|
|
|
76
76
|
direction?: EnvelopeFieldUpdateManyDirectionCheckbox | undefined;
|
|
77
77
|
};
|
|
78
78
|
|
|
79
|
-
export type
|
|
79
|
+
export type DataCheckbox = {
|
|
80
80
|
type: "CHECKBOX";
|
|
81
81
|
fieldMeta?: EnvelopeFieldUpdateManyFieldMetaCheckboxRequest | undefined;
|
|
82
82
|
id: number;
|
|
@@ -120,7 +120,7 @@ export type EnvelopeFieldUpdateManyFieldMetaRadioRequest = {
|
|
|
120
120
|
direction?: EnvelopeFieldUpdateManyDirectionRadio | undefined;
|
|
121
121
|
};
|
|
122
122
|
|
|
123
|
-
export type
|
|
123
|
+
export type DataRadio = {
|
|
124
124
|
type: "RADIO";
|
|
125
125
|
fieldMeta?: EnvelopeFieldUpdateManyFieldMetaRadioRequest | undefined;
|
|
126
126
|
id: number;
|
|
@@ -174,7 +174,7 @@ export type EnvelopeFieldUpdateManyFieldMetaNumberRequest = {
|
|
|
174
174
|
verticalAlign?: EnvelopeFieldUpdateManyVerticalAlignNumber | null | undefined;
|
|
175
175
|
};
|
|
176
176
|
|
|
177
|
-
export type
|
|
177
|
+
export type DataNumber = {
|
|
178
178
|
type: "NUMBER";
|
|
179
179
|
fieldMeta?: EnvelopeFieldUpdateManyFieldMetaNumberRequest | undefined;
|
|
180
180
|
id: number;
|
|
@@ -226,7 +226,7 @@ export type EnvelopeFieldUpdateManyFieldMetaTextRequest = {
|
|
|
226
226
|
verticalAlign?: EnvelopeFieldUpdateManyVerticalAlignText | null | undefined;
|
|
227
227
|
};
|
|
228
228
|
|
|
229
|
-
export type
|
|
229
|
+
export type DataText = {
|
|
230
230
|
type: "TEXT";
|
|
231
231
|
fieldMeta?: EnvelopeFieldUpdateManyFieldMetaTextRequest | undefined;
|
|
232
232
|
id: number;
|
|
@@ -264,7 +264,7 @@ export type EnvelopeFieldUpdateManyFieldMetaDateRequest = {
|
|
|
264
264
|
textAlign?: EnvelopeFieldUpdateManyTextAlignDate | undefined;
|
|
265
265
|
};
|
|
266
266
|
|
|
267
|
-
export type
|
|
267
|
+
export type DataDate = {
|
|
268
268
|
type: "DATE";
|
|
269
269
|
fieldMeta?: EnvelopeFieldUpdateManyFieldMetaDateRequest | undefined;
|
|
270
270
|
id: number;
|
|
@@ -302,7 +302,7 @@ export type EnvelopeFieldUpdateManyFieldMetaEmailRequest = {
|
|
|
302
302
|
textAlign?: EnvelopeFieldUpdateManyTextAlignEmail | undefined;
|
|
303
303
|
};
|
|
304
304
|
|
|
305
|
-
export type
|
|
305
|
+
export type DataEmail = {
|
|
306
306
|
type: "EMAIL";
|
|
307
307
|
fieldMeta?: EnvelopeFieldUpdateManyFieldMetaEmailRequest | undefined;
|
|
308
308
|
id: number;
|
|
@@ -340,7 +340,7 @@ export type EnvelopeFieldUpdateManyFieldMetaNameRequest = {
|
|
|
340
340
|
textAlign?: EnvelopeFieldUpdateManyTextAlignName | undefined;
|
|
341
341
|
};
|
|
342
342
|
|
|
343
|
-
export type
|
|
343
|
+
export type DataName = {
|
|
344
344
|
type: "NAME";
|
|
345
345
|
fieldMeta?: EnvelopeFieldUpdateManyFieldMetaNameRequest | undefined;
|
|
346
346
|
id: number;
|
|
@@ -378,7 +378,7 @@ export type EnvelopeFieldUpdateManyFieldMetaInitialsRequest = {
|
|
|
378
378
|
textAlign?: EnvelopeFieldUpdateManyTextAlignInitials | undefined;
|
|
379
379
|
};
|
|
380
380
|
|
|
381
|
-
export type
|
|
381
|
+
export type DataInitials = {
|
|
382
382
|
type: "INITIALS";
|
|
383
383
|
fieldMeta?: EnvelopeFieldUpdateManyFieldMetaInitialsRequest | undefined;
|
|
384
384
|
id: number;
|
|
@@ -390,7 +390,7 @@ export type EnvelopeFieldUpdateManyDataInitials = {
|
|
|
390
390
|
height?: number | undefined;
|
|
391
391
|
};
|
|
392
392
|
|
|
393
|
-
export type
|
|
393
|
+
export type DataFreeSignature = {
|
|
394
394
|
type: "FREE_SIGNATURE";
|
|
395
395
|
id: number;
|
|
396
396
|
envelopeItemId?: string | undefined;
|
|
@@ -417,7 +417,7 @@ export type EnvelopeFieldUpdateManyFieldMetaSignatureRequest = {
|
|
|
417
417
|
type: EnvelopeFieldUpdateManyTypeSignatureEnum;
|
|
418
418
|
};
|
|
419
419
|
|
|
420
|
-
export type
|
|
420
|
+
export type DataSignature = {
|
|
421
421
|
type: "SIGNATURE";
|
|
422
422
|
fieldMeta?: EnvelopeFieldUpdateManyFieldMetaSignatureRequest | undefined;
|
|
423
423
|
id: number;
|
|
@@ -430,32 +430,32 @@ export type EnvelopeFieldUpdateManyDataSignature = {
|
|
|
430
430
|
};
|
|
431
431
|
|
|
432
432
|
export type EnvelopeFieldUpdateManyDataUnion =
|
|
433
|
-
|
|
|
434
|
-
|
|
|
435
|
-
|
|
|
436
|
-
|
|
|
437
|
-
|
|
|
438
|
-
|
|
|
439
|
-
|
|
|
440
|
-
|
|
|
441
|
-
|
|
|
442
|
-
|
|
|
443
|
-
|
|
|
433
|
+
| DataSignature
|
|
434
|
+
| DataFreeSignature
|
|
435
|
+
| DataInitials
|
|
436
|
+
| DataName
|
|
437
|
+
| DataEmail
|
|
438
|
+
| DataDate
|
|
439
|
+
| DataText
|
|
440
|
+
| DataNumber
|
|
441
|
+
| DataRadio
|
|
442
|
+
| DataCheckbox
|
|
443
|
+
| DataDropdown;
|
|
444
444
|
|
|
445
445
|
export type EnvelopeFieldUpdateManyRequest = {
|
|
446
446
|
envelopeId: string;
|
|
447
447
|
data: Array<
|
|
448
|
-
|
|
|
449
|
-
|
|
|
450
|
-
|
|
|
451
|
-
|
|
|
452
|
-
|
|
|
453
|
-
|
|
|
454
|
-
|
|
|
455
|
-
|
|
|
456
|
-
|
|
|
457
|
-
|
|
|
458
|
-
|
|
|
448
|
+
| DataSignature
|
|
449
|
+
| DataFreeSignature
|
|
450
|
+
| DataInitials
|
|
451
|
+
| DataName
|
|
452
|
+
| DataEmail
|
|
453
|
+
| DataDate
|
|
454
|
+
| DataText
|
|
455
|
+
| DataNumber
|
|
456
|
+
| DataRadio
|
|
457
|
+
| DataCheckbox
|
|
458
|
+
| DataDropdown
|
|
459
459
|
>;
|
|
460
460
|
};
|
|
461
461
|
|
|
@@ -878,8 +878,8 @@ export function envelopeFieldUpdateManyFieldMetaDropdownRequestFromJSON(
|
|
|
878
878
|
}
|
|
879
879
|
|
|
880
880
|
/** @internal */
|
|
881
|
-
export const
|
|
882
|
-
|
|
881
|
+
export const DataDropdown$inboundSchema: z.ZodType<
|
|
882
|
+
DataDropdown,
|
|
883
883
|
z.ZodTypeDef,
|
|
884
884
|
unknown
|
|
885
885
|
> = z.object({
|
|
@@ -896,7 +896,7 @@ export const EnvelopeFieldUpdateManyDataDropdown$inboundSchema: z.ZodType<
|
|
|
896
896
|
height: z.number().optional(),
|
|
897
897
|
});
|
|
898
898
|
/** @internal */
|
|
899
|
-
export type
|
|
899
|
+
export type DataDropdown$Outbound = {
|
|
900
900
|
type: "DROPDOWN";
|
|
901
901
|
fieldMeta?:
|
|
902
902
|
| EnvelopeFieldUpdateManyFieldMetaDropdownRequest$Outbound
|
|
@@ -911,10 +911,10 @@ export type EnvelopeFieldUpdateManyDataDropdown$Outbound = {
|
|
|
911
911
|
};
|
|
912
912
|
|
|
913
913
|
/** @internal */
|
|
914
|
-
export const
|
|
915
|
-
|
|
914
|
+
export const DataDropdown$outboundSchema: z.ZodType<
|
|
915
|
+
DataDropdown$Outbound,
|
|
916
916
|
z.ZodTypeDef,
|
|
917
|
-
|
|
917
|
+
DataDropdown
|
|
918
918
|
> = z.object({
|
|
919
919
|
type: z.literal("DROPDOWN"),
|
|
920
920
|
fieldMeta: z.lazy(() =>
|
|
@@ -929,23 +929,16 @@ export const EnvelopeFieldUpdateManyDataDropdown$outboundSchema: z.ZodType<
|
|
|
929
929
|
height: z.number().optional(),
|
|
930
930
|
});
|
|
931
931
|
|
|
932
|
-
export function
|
|
933
|
-
|
|
934
|
-
): string {
|
|
935
|
-
return JSON.stringify(
|
|
936
|
-
EnvelopeFieldUpdateManyDataDropdown$outboundSchema.parse(
|
|
937
|
-
envelopeFieldUpdateManyDataDropdown,
|
|
938
|
-
),
|
|
939
|
-
);
|
|
932
|
+
export function dataDropdownToJSON(dataDropdown: DataDropdown): string {
|
|
933
|
+
return JSON.stringify(DataDropdown$outboundSchema.parse(dataDropdown));
|
|
940
934
|
}
|
|
941
|
-
export function
|
|
935
|
+
export function dataDropdownFromJSON(
|
|
942
936
|
jsonString: string,
|
|
943
|
-
): SafeParseResult<
|
|
937
|
+
): SafeParseResult<DataDropdown, SDKValidationError> {
|
|
944
938
|
return safeParse(
|
|
945
939
|
jsonString,
|
|
946
|
-
(x) =>
|
|
947
|
-
|
|
948
|
-
`Failed to parse 'EnvelopeFieldUpdateManyDataDropdown' from JSON`,
|
|
940
|
+
(x) => DataDropdown$inboundSchema.parse(JSON.parse(x)),
|
|
941
|
+
`Failed to parse 'DataDropdown' from JSON`,
|
|
949
942
|
);
|
|
950
943
|
}
|
|
951
944
|
|
|
@@ -1101,8 +1094,8 @@ export function envelopeFieldUpdateManyFieldMetaCheckboxRequestFromJSON(
|
|
|
1101
1094
|
}
|
|
1102
1095
|
|
|
1103
1096
|
/** @internal */
|
|
1104
|
-
export const
|
|
1105
|
-
|
|
1097
|
+
export const DataCheckbox$inboundSchema: z.ZodType<
|
|
1098
|
+
DataCheckbox,
|
|
1106
1099
|
z.ZodTypeDef,
|
|
1107
1100
|
unknown
|
|
1108
1101
|
> = z.object({
|
|
@@ -1119,7 +1112,7 @@ export const EnvelopeFieldUpdateManyDataCheckbox$inboundSchema: z.ZodType<
|
|
|
1119
1112
|
height: z.number().optional(),
|
|
1120
1113
|
});
|
|
1121
1114
|
/** @internal */
|
|
1122
|
-
export type
|
|
1115
|
+
export type DataCheckbox$Outbound = {
|
|
1123
1116
|
type: "CHECKBOX";
|
|
1124
1117
|
fieldMeta?:
|
|
1125
1118
|
| EnvelopeFieldUpdateManyFieldMetaCheckboxRequest$Outbound
|
|
@@ -1134,10 +1127,10 @@ export type EnvelopeFieldUpdateManyDataCheckbox$Outbound = {
|
|
|
1134
1127
|
};
|
|
1135
1128
|
|
|
1136
1129
|
/** @internal */
|
|
1137
|
-
export const
|
|
1138
|
-
|
|
1130
|
+
export const DataCheckbox$outboundSchema: z.ZodType<
|
|
1131
|
+
DataCheckbox$Outbound,
|
|
1139
1132
|
z.ZodTypeDef,
|
|
1140
|
-
|
|
1133
|
+
DataCheckbox
|
|
1141
1134
|
> = z.object({
|
|
1142
1135
|
type: z.literal("CHECKBOX"),
|
|
1143
1136
|
fieldMeta: z.lazy(() =>
|
|
@@ -1152,23 +1145,16 @@ export const EnvelopeFieldUpdateManyDataCheckbox$outboundSchema: z.ZodType<
|
|
|
1152
1145
|
height: z.number().optional(),
|
|
1153
1146
|
});
|
|
1154
1147
|
|
|
1155
|
-
export function
|
|
1156
|
-
|
|
1157
|
-
): string {
|
|
1158
|
-
return JSON.stringify(
|
|
1159
|
-
EnvelopeFieldUpdateManyDataCheckbox$outboundSchema.parse(
|
|
1160
|
-
envelopeFieldUpdateManyDataCheckbox,
|
|
1161
|
-
),
|
|
1162
|
-
);
|
|
1148
|
+
export function dataCheckboxToJSON(dataCheckbox: DataCheckbox): string {
|
|
1149
|
+
return JSON.stringify(DataCheckbox$outboundSchema.parse(dataCheckbox));
|
|
1163
1150
|
}
|
|
1164
|
-
export function
|
|
1151
|
+
export function dataCheckboxFromJSON(
|
|
1165
1152
|
jsonString: string,
|
|
1166
|
-
): SafeParseResult<
|
|
1153
|
+
): SafeParseResult<DataCheckbox, SDKValidationError> {
|
|
1167
1154
|
return safeParse(
|
|
1168
1155
|
jsonString,
|
|
1169
|
-
(x) =>
|
|
1170
|
-
|
|
1171
|
-
`Failed to parse 'EnvelopeFieldUpdateManyDataCheckbox' from JSON`,
|
|
1156
|
+
(x) => DataCheckbox$inboundSchema.parse(JSON.parse(x)),
|
|
1157
|
+
`Failed to parse 'DataCheckbox' from JSON`,
|
|
1172
1158
|
);
|
|
1173
1159
|
}
|
|
1174
1160
|
|
|
@@ -1319,8 +1305,8 @@ export function envelopeFieldUpdateManyFieldMetaRadioRequestFromJSON(
|
|
|
1319
1305
|
}
|
|
1320
1306
|
|
|
1321
1307
|
/** @internal */
|
|
1322
|
-
export const
|
|
1323
|
-
|
|
1308
|
+
export const DataRadio$inboundSchema: z.ZodType<
|
|
1309
|
+
DataRadio,
|
|
1324
1310
|
z.ZodTypeDef,
|
|
1325
1311
|
unknown
|
|
1326
1312
|
> = z.object({
|
|
@@ -1337,7 +1323,7 @@ export const EnvelopeFieldUpdateManyDataRadio$inboundSchema: z.ZodType<
|
|
|
1337
1323
|
height: z.number().optional(),
|
|
1338
1324
|
});
|
|
1339
1325
|
/** @internal */
|
|
1340
|
-
export type
|
|
1326
|
+
export type DataRadio$Outbound = {
|
|
1341
1327
|
type: "RADIO";
|
|
1342
1328
|
fieldMeta?: EnvelopeFieldUpdateManyFieldMetaRadioRequest$Outbound | undefined;
|
|
1343
1329
|
id: number;
|
|
@@ -1350,10 +1336,10 @@ export type EnvelopeFieldUpdateManyDataRadio$Outbound = {
|
|
|
1350
1336
|
};
|
|
1351
1337
|
|
|
1352
1338
|
/** @internal */
|
|
1353
|
-
export const
|
|
1354
|
-
|
|
1339
|
+
export const DataRadio$outboundSchema: z.ZodType<
|
|
1340
|
+
DataRadio$Outbound,
|
|
1355
1341
|
z.ZodTypeDef,
|
|
1356
|
-
|
|
1342
|
+
DataRadio
|
|
1357
1343
|
> = z.object({
|
|
1358
1344
|
type: z.literal("RADIO"),
|
|
1359
1345
|
fieldMeta: z.lazy(() =>
|
|
@@ -1368,22 +1354,16 @@ export const EnvelopeFieldUpdateManyDataRadio$outboundSchema: z.ZodType<
|
|
|
1368
1354
|
height: z.number().optional(),
|
|
1369
1355
|
});
|
|
1370
1356
|
|
|
1371
|
-
export function
|
|
1372
|
-
|
|
1373
|
-
): string {
|
|
1374
|
-
return JSON.stringify(
|
|
1375
|
-
EnvelopeFieldUpdateManyDataRadio$outboundSchema.parse(
|
|
1376
|
-
envelopeFieldUpdateManyDataRadio,
|
|
1377
|
-
),
|
|
1378
|
-
);
|
|
1357
|
+
export function dataRadioToJSON(dataRadio: DataRadio): string {
|
|
1358
|
+
return JSON.stringify(DataRadio$outboundSchema.parse(dataRadio));
|
|
1379
1359
|
}
|
|
1380
|
-
export function
|
|
1360
|
+
export function dataRadioFromJSON(
|
|
1381
1361
|
jsonString: string,
|
|
1382
|
-
): SafeParseResult<
|
|
1362
|
+
): SafeParseResult<DataRadio, SDKValidationError> {
|
|
1383
1363
|
return safeParse(
|
|
1384
1364
|
jsonString,
|
|
1385
|
-
(x) =>
|
|
1386
|
-
`Failed to parse '
|
|
1365
|
+
(x) => DataRadio$inboundSchema.parse(JSON.parse(x)),
|
|
1366
|
+
`Failed to parse 'DataRadio' from JSON`,
|
|
1387
1367
|
);
|
|
1388
1368
|
}
|
|
1389
1369
|
|
|
@@ -1510,8 +1490,8 @@ export function envelopeFieldUpdateManyFieldMetaNumberRequestFromJSON(
|
|
|
1510
1490
|
}
|
|
1511
1491
|
|
|
1512
1492
|
/** @internal */
|
|
1513
|
-
export const
|
|
1514
|
-
|
|
1493
|
+
export const DataNumber$inboundSchema: z.ZodType<
|
|
1494
|
+
DataNumber,
|
|
1515
1495
|
z.ZodTypeDef,
|
|
1516
1496
|
unknown
|
|
1517
1497
|
> = z.object({
|
|
@@ -1528,7 +1508,7 @@ export const EnvelopeFieldUpdateManyDataNumber$inboundSchema: z.ZodType<
|
|
|
1528
1508
|
height: z.number().optional(),
|
|
1529
1509
|
});
|
|
1530
1510
|
/** @internal */
|
|
1531
|
-
export type
|
|
1511
|
+
export type DataNumber$Outbound = {
|
|
1532
1512
|
type: "NUMBER";
|
|
1533
1513
|
fieldMeta?:
|
|
1534
1514
|
| EnvelopeFieldUpdateManyFieldMetaNumberRequest$Outbound
|
|
@@ -1543,10 +1523,10 @@ export type EnvelopeFieldUpdateManyDataNumber$Outbound = {
|
|
|
1543
1523
|
};
|
|
1544
1524
|
|
|
1545
1525
|
/** @internal */
|
|
1546
|
-
export const
|
|
1547
|
-
|
|
1526
|
+
export const DataNumber$outboundSchema: z.ZodType<
|
|
1527
|
+
DataNumber$Outbound,
|
|
1548
1528
|
z.ZodTypeDef,
|
|
1549
|
-
|
|
1529
|
+
DataNumber
|
|
1550
1530
|
> = z.object({
|
|
1551
1531
|
type: z.literal("NUMBER"),
|
|
1552
1532
|
fieldMeta: z.lazy(() =>
|
|
@@ -1561,22 +1541,16 @@ export const EnvelopeFieldUpdateManyDataNumber$outboundSchema: z.ZodType<
|
|
|
1561
1541
|
height: z.number().optional(),
|
|
1562
1542
|
});
|
|
1563
1543
|
|
|
1564
|
-
export function
|
|
1565
|
-
|
|
1566
|
-
): string {
|
|
1567
|
-
return JSON.stringify(
|
|
1568
|
-
EnvelopeFieldUpdateManyDataNumber$outboundSchema.parse(
|
|
1569
|
-
envelopeFieldUpdateManyDataNumber,
|
|
1570
|
-
),
|
|
1571
|
-
);
|
|
1544
|
+
export function dataNumberToJSON(dataNumber: DataNumber): string {
|
|
1545
|
+
return JSON.stringify(DataNumber$outboundSchema.parse(dataNumber));
|
|
1572
1546
|
}
|
|
1573
|
-
export function
|
|
1547
|
+
export function dataNumberFromJSON(
|
|
1574
1548
|
jsonString: string,
|
|
1575
|
-
): SafeParseResult<
|
|
1549
|
+
): SafeParseResult<DataNumber, SDKValidationError> {
|
|
1576
1550
|
return safeParse(
|
|
1577
1551
|
jsonString,
|
|
1578
|
-
(x) =>
|
|
1579
|
-
`Failed to parse '
|
|
1552
|
+
(x) => DataNumber$inboundSchema.parse(JSON.parse(x)),
|
|
1553
|
+
`Failed to parse 'DataNumber' from JSON`,
|
|
1580
1554
|
);
|
|
1581
1555
|
}
|
|
1582
1556
|
|
|
@@ -1696,8 +1670,8 @@ export function envelopeFieldUpdateManyFieldMetaTextRequestFromJSON(
|
|
|
1696
1670
|
}
|
|
1697
1671
|
|
|
1698
1672
|
/** @internal */
|
|
1699
|
-
export const
|
|
1700
|
-
|
|
1673
|
+
export const DataText$inboundSchema: z.ZodType<
|
|
1674
|
+
DataText,
|
|
1701
1675
|
z.ZodTypeDef,
|
|
1702
1676
|
unknown
|
|
1703
1677
|
> = z.object({
|
|
@@ -1714,7 +1688,7 @@ export const EnvelopeFieldUpdateManyDataText$inboundSchema: z.ZodType<
|
|
|
1714
1688
|
height: z.number().optional(),
|
|
1715
1689
|
});
|
|
1716
1690
|
/** @internal */
|
|
1717
|
-
export type
|
|
1691
|
+
export type DataText$Outbound = {
|
|
1718
1692
|
type: "TEXT";
|
|
1719
1693
|
fieldMeta?: EnvelopeFieldUpdateManyFieldMetaTextRequest$Outbound | undefined;
|
|
1720
1694
|
id: number;
|
|
@@ -1727,10 +1701,10 @@ export type EnvelopeFieldUpdateManyDataText$Outbound = {
|
|
|
1727
1701
|
};
|
|
1728
1702
|
|
|
1729
1703
|
/** @internal */
|
|
1730
|
-
export const
|
|
1731
|
-
|
|
1704
|
+
export const DataText$outboundSchema: z.ZodType<
|
|
1705
|
+
DataText$Outbound,
|
|
1732
1706
|
z.ZodTypeDef,
|
|
1733
|
-
|
|
1707
|
+
DataText
|
|
1734
1708
|
> = z.object({
|
|
1735
1709
|
type: z.literal("TEXT"),
|
|
1736
1710
|
fieldMeta: z.lazy(() =>
|
|
@@ -1745,22 +1719,16 @@ export const EnvelopeFieldUpdateManyDataText$outboundSchema: z.ZodType<
|
|
|
1745
1719
|
height: z.number().optional(),
|
|
1746
1720
|
});
|
|
1747
1721
|
|
|
1748
|
-
export function
|
|
1749
|
-
|
|
1750
|
-
): string {
|
|
1751
|
-
return JSON.stringify(
|
|
1752
|
-
EnvelopeFieldUpdateManyDataText$outboundSchema.parse(
|
|
1753
|
-
envelopeFieldUpdateManyDataText,
|
|
1754
|
-
),
|
|
1755
|
-
);
|
|
1722
|
+
export function dataTextToJSON(dataText: DataText): string {
|
|
1723
|
+
return JSON.stringify(DataText$outboundSchema.parse(dataText));
|
|
1756
1724
|
}
|
|
1757
|
-
export function
|
|
1725
|
+
export function dataTextFromJSON(
|
|
1758
1726
|
jsonString: string,
|
|
1759
|
-
): SafeParseResult<
|
|
1727
|
+
): SafeParseResult<DataText, SDKValidationError> {
|
|
1760
1728
|
return safeParse(
|
|
1761
1729
|
jsonString,
|
|
1762
|
-
(x) =>
|
|
1763
|
-
`Failed to parse '
|
|
1730
|
+
(x) => DataText$inboundSchema.parse(JSON.parse(x)),
|
|
1731
|
+
`Failed to parse 'DataText' from JSON`,
|
|
1764
1732
|
);
|
|
1765
1733
|
}
|
|
1766
1734
|
|
|
@@ -1852,8 +1820,8 @@ export function envelopeFieldUpdateManyFieldMetaDateRequestFromJSON(
|
|
|
1852
1820
|
}
|
|
1853
1821
|
|
|
1854
1822
|
/** @internal */
|
|
1855
|
-
export const
|
|
1856
|
-
|
|
1823
|
+
export const DataDate$inboundSchema: z.ZodType<
|
|
1824
|
+
DataDate,
|
|
1857
1825
|
z.ZodTypeDef,
|
|
1858
1826
|
unknown
|
|
1859
1827
|
> = z.object({
|
|
@@ -1870,7 +1838,7 @@ export const EnvelopeFieldUpdateManyDataDate$inboundSchema: z.ZodType<
|
|
|
1870
1838
|
height: z.number().optional(),
|
|
1871
1839
|
});
|
|
1872
1840
|
/** @internal */
|
|
1873
|
-
export type
|
|
1841
|
+
export type DataDate$Outbound = {
|
|
1874
1842
|
type: "DATE";
|
|
1875
1843
|
fieldMeta?: EnvelopeFieldUpdateManyFieldMetaDateRequest$Outbound | undefined;
|
|
1876
1844
|
id: number;
|
|
@@ -1883,10 +1851,10 @@ export type EnvelopeFieldUpdateManyDataDate$Outbound = {
|
|
|
1883
1851
|
};
|
|
1884
1852
|
|
|
1885
1853
|
/** @internal */
|
|
1886
|
-
export const
|
|
1887
|
-
|
|
1854
|
+
export const DataDate$outboundSchema: z.ZodType<
|
|
1855
|
+
DataDate$Outbound,
|
|
1888
1856
|
z.ZodTypeDef,
|
|
1889
|
-
|
|
1857
|
+
DataDate
|
|
1890
1858
|
> = z.object({
|
|
1891
1859
|
type: z.literal("DATE"),
|
|
1892
1860
|
fieldMeta: z.lazy(() =>
|
|
@@ -1901,22 +1869,16 @@ export const EnvelopeFieldUpdateManyDataDate$outboundSchema: z.ZodType<
|
|
|
1901
1869
|
height: z.number().optional(),
|
|
1902
1870
|
});
|
|
1903
1871
|
|
|
1904
|
-
export function
|
|
1905
|
-
|
|
1906
|
-
): string {
|
|
1907
|
-
return JSON.stringify(
|
|
1908
|
-
EnvelopeFieldUpdateManyDataDate$outboundSchema.parse(
|
|
1909
|
-
envelopeFieldUpdateManyDataDate,
|
|
1910
|
-
),
|
|
1911
|
-
);
|
|
1872
|
+
export function dataDateToJSON(dataDate: DataDate): string {
|
|
1873
|
+
return JSON.stringify(DataDate$outboundSchema.parse(dataDate));
|
|
1912
1874
|
}
|
|
1913
|
-
export function
|
|
1875
|
+
export function dataDateFromJSON(
|
|
1914
1876
|
jsonString: string,
|
|
1915
|
-
): SafeParseResult<
|
|
1877
|
+
): SafeParseResult<DataDate, SDKValidationError> {
|
|
1916
1878
|
return safeParse(
|
|
1917
1879
|
jsonString,
|
|
1918
|
-
(x) =>
|
|
1919
|
-
`Failed to parse '
|
|
1880
|
+
(x) => DataDate$inboundSchema.parse(JSON.parse(x)),
|
|
1881
|
+
`Failed to parse 'DataDate' from JSON`,
|
|
1920
1882
|
);
|
|
1921
1883
|
}
|
|
1922
1884
|
|
|
@@ -2009,8 +1971,8 @@ export function envelopeFieldUpdateManyFieldMetaEmailRequestFromJSON(
|
|
|
2009
1971
|
}
|
|
2010
1972
|
|
|
2011
1973
|
/** @internal */
|
|
2012
|
-
export const
|
|
2013
|
-
|
|
1974
|
+
export const DataEmail$inboundSchema: z.ZodType<
|
|
1975
|
+
DataEmail,
|
|
2014
1976
|
z.ZodTypeDef,
|
|
2015
1977
|
unknown
|
|
2016
1978
|
> = z.object({
|
|
@@ -2027,7 +1989,7 @@ export const EnvelopeFieldUpdateManyDataEmail$inboundSchema: z.ZodType<
|
|
|
2027
1989
|
height: z.number().optional(),
|
|
2028
1990
|
});
|
|
2029
1991
|
/** @internal */
|
|
2030
|
-
export type
|
|
1992
|
+
export type DataEmail$Outbound = {
|
|
2031
1993
|
type: "EMAIL";
|
|
2032
1994
|
fieldMeta?: EnvelopeFieldUpdateManyFieldMetaEmailRequest$Outbound | undefined;
|
|
2033
1995
|
id: number;
|
|
@@ -2040,10 +2002,10 @@ export type EnvelopeFieldUpdateManyDataEmail$Outbound = {
|
|
|
2040
2002
|
};
|
|
2041
2003
|
|
|
2042
2004
|
/** @internal */
|
|
2043
|
-
export const
|
|
2044
|
-
|
|
2005
|
+
export const DataEmail$outboundSchema: z.ZodType<
|
|
2006
|
+
DataEmail$Outbound,
|
|
2045
2007
|
z.ZodTypeDef,
|
|
2046
|
-
|
|
2008
|
+
DataEmail
|
|
2047
2009
|
> = z.object({
|
|
2048
2010
|
type: z.literal("EMAIL"),
|
|
2049
2011
|
fieldMeta: z.lazy(() =>
|
|
@@ -2058,22 +2020,16 @@ export const EnvelopeFieldUpdateManyDataEmail$outboundSchema: z.ZodType<
|
|
|
2058
2020
|
height: z.number().optional(),
|
|
2059
2021
|
});
|
|
2060
2022
|
|
|
2061
|
-
export function
|
|
2062
|
-
|
|
2063
|
-
): string {
|
|
2064
|
-
return JSON.stringify(
|
|
2065
|
-
EnvelopeFieldUpdateManyDataEmail$outboundSchema.parse(
|
|
2066
|
-
envelopeFieldUpdateManyDataEmail,
|
|
2067
|
-
),
|
|
2068
|
-
);
|
|
2023
|
+
export function dataEmailToJSON(dataEmail: DataEmail): string {
|
|
2024
|
+
return JSON.stringify(DataEmail$outboundSchema.parse(dataEmail));
|
|
2069
2025
|
}
|
|
2070
|
-
export function
|
|
2026
|
+
export function dataEmailFromJSON(
|
|
2071
2027
|
jsonString: string,
|
|
2072
|
-
): SafeParseResult<
|
|
2028
|
+
): SafeParseResult<DataEmail, SDKValidationError> {
|
|
2073
2029
|
return safeParse(
|
|
2074
2030
|
jsonString,
|
|
2075
|
-
(x) =>
|
|
2076
|
-
`Failed to parse '
|
|
2031
|
+
(x) => DataEmail$inboundSchema.parse(JSON.parse(x)),
|
|
2032
|
+
`Failed to parse 'DataEmail' from JSON`,
|
|
2077
2033
|
);
|
|
2078
2034
|
}
|
|
2079
2035
|
|
|
@@ -2165,8 +2121,8 @@ export function envelopeFieldUpdateManyFieldMetaNameRequestFromJSON(
|
|
|
2165
2121
|
}
|
|
2166
2122
|
|
|
2167
2123
|
/** @internal */
|
|
2168
|
-
export const
|
|
2169
|
-
|
|
2124
|
+
export const DataName$inboundSchema: z.ZodType<
|
|
2125
|
+
DataName,
|
|
2170
2126
|
z.ZodTypeDef,
|
|
2171
2127
|
unknown
|
|
2172
2128
|
> = z.object({
|
|
@@ -2183,7 +2139,7 @@ export const EnvelopeFieldUpdateManyDataName$inboundSchema: z.ZodType<
|
|
|
2183
2139
|
height: z.number().optional(),
|
|
2184
2140
|
});
|
|
2185
2141
|
/** @internal */
|
|
2186
|
-
export type
|
|
2142
|
+
export type DataName$Outbound = {
|
|
2187
2143
|
type: "NAME";
|
|
2188
2144
|
fieldMeta?: EnvelopeFieldUpdateManyFieldMetaNameRequest$Outbound | undefined;
|
|
2189
2145
|
id: number;
|
|
@@ -2196,10 +2152,10 @@ export type EnvelopeFieldUpdateManyDataName$Outbound = {
|
|
|
2196
2152
|
};
|
|
2197
2153
|
|
|
2198
2154
|
/** @internal */
|
|
2199
|
-
export const
|
|
2200
|
-
|
|
2155
|
+
export const DataName$outboundSchema: z.ZodType<
|
|
2156
|
+
DataName$Outbound,
|
|
2201
2157
|
z.ZodTypeDef,
|
|
2202
|
-
|
|
2158
|
+
DataName
|
|
2203
2159
|
> = z.object({
|
|
2204
2160
|
type: z.literal("NAME"),
|
|
2205
2161
|
fieldMeta: z.lazy(() =>
|
|
@@ -2214,22 +2170,16 @@ export const EnvelopeFieldUpdateManyDataName$outboundSchema: z.ZodType<
|
|
|
2214
2170
|
height: z.number().optional(),
|
|
2215
2171
|
});
|
|
2216
2172
|
|
|
2217
|
-
export function
|
|
2218
|
-
|
|
2219
|
-
): string {
|
|
2220
|
-
return JSON.stringify(
|
|
2221
|
-
EnvelopeFieldUpdateManyDataName$outboundSchema.parse(
|
|
2222
|
-
envelopeFieldUpdateManyDataName,
|
|
2223
|
-
),
|
|
2224
|
-
);
|
|
2173
|
+
export function dataNameToJSON(dataName: DataName): string {
|
|
2174
|
+
return JSON.stringify(DataName$outboundSchema.parse(dataName));
|
|
2225
2175
|
}
|
|
2226
|
-
export function
|
|
2176
|
+
export function dataNameFromJSON(
|
|
2227
2177
|
jsonString: string,
|
|
2228
|
-
): SafeParseResult<
|
|
2178
|
+
): SafeParseResult<DataName, SDKValidationError> {
|
|
2229
2179
|
return safeParse(
|
|
2230
2180
|
jsonString,
|
|
2231
|
-
(x) =>
|
|
2232
|
-
`Failed to parse '
|
|
2181
|
+
(x) => DataName$inboundSchema.parse(JSON.parse(x)),
|
|
2182
|
+
`Failed to parse 'DataName' from JSON`,
|
|
2233
2183
|
);
|
|
2234
2184
|
}
|
|
2235
2185
|
|
|
@@ -2322,8 +2272,8 @@ export function envelopeFieldUpdateManyFieldMetaInitialsRequestFromJSON(
|
|
|
2322
2272
|
}
|
|
2323
2273
|
|
|
2324
2274
|
/** @internal */
|
|
2325
|
-
export const
|
|
2326
|
-
|
|
2275
|
+
export const DataInitials$inboundSchema: z.ZodType<
|
|
2276
|
+
DataInitials,
|
|
2327
2277
|
z.ZodTypeDef,
|
|
2328
2278
|
unknown
|
|
2329
2279
|
> = z.object({
|
|
@@ -2340,7 +2290,7 @@ export const EnvelopeFieldUpdateManyDataInitials$inboundSchema: z.ZodType<
|
|
|
2340
2290
|
height: z.number().optional(),
|
|
2341
2291
|
});
|
|
2342
2292
|
/** @internal */
|
|
2343
|
-
export type
|
|
2293
|
+
export type DataInitials$Outbound = {
|
|
2344
2294
|
type: "INITIALS";
|
|
2345
2295
|
fieldMeta?:
|
|
2346
2296
|
| EnvelopeFieldUpdateManyFieldMetaInitialsRequest$Outbound
|
|
@@ -2355,10 +2305,10 @@ export type EnvelopeFieldUpdateManyDataInitials$Outbound = {
|
|
|
2355
2305
|
};
|
|
2356
2306
|
|
|
2357
2307
|
/** @internal */
|
|
2358
|
-
export const
|
|
2359
|
-
|
|
2308
|
+
export const DataInitials$outboundSchema: z.ZodType<
|
|
2309
|
+
DataInitials$Outbound,
|
|
2360
2310
|
z.ZodTypeDef,
|
|
2361
|
-
|
|
2311
|
+
DataInitials
|
|
2362
2312
|
> = z.object({
|
|
2363
2313
|
type: z.literal("INITIALS"),
|
|
2364
2314
|
fieldMeta: z.lazy(() =>
|
|
@@ -2373,29 +2323,22 @@ export const EnvelopeFieldUpdateManyDataInitials$outboundSchema: z.ZodType<
|
|
|
2373
2323
|
height: z.number().optional(),
|
|
2374
2324
|
});
|
|
2375
2325
|
|
|
2376
|
-
export function
|
|
2377
|
-
|
|
2378
|
-
): string {
|
|
2379
|
-
return JSON.stringify(
|
|
2380
|
-
EnvelopeFieldUpdateManyDataInitials$outboundSchema.parse(
|
|
2381
|
-
envelopeFieldUpdateManyDataInitials,
|
|
2382
|
-
),
|
|
2383
|
-
);
|
|
2326
|
+
export function dataInitialsToJSON(dataInitials: DataInitials): string {
|
|
2327
|
+
return JSON.stringify(DataInitials$outboundSchema.parse(dataInitials));
|
|
2384
2328
|
}
|
|
2385
|
-
export function
|
|
2329
|
+
export function dataInitialsFromJSON(
|
|
2386
2330
|
jsonString: string,
|
|
2387
|
-
): SafeParseResult<
|
|
2331
|
+
): SafeParseResult<DataInitials, SDKValidationError> {
|
|
2388
2332
|
return safeParse(
|
|
2389
2333
|
jsonString,
|
|
2390
|
-
(x) =>
|
|
2391
|
-
|
|
2392
|
-
`Failed to parse 'EnvelopeFieldUpdateManyDataInitials' from JSON`,
|
|
2334
|
+
(x) => DataInitials$inboundSchema.parse(JSON.parse(x)),
|
|
2335
|
+
`Failed to parse 'DataInitials' from JSON`,
|
|
2393
2336
|
);
|
|
2394
2337
|
}
|
|
2395
2338
|
|
|
2396
2339
|
/** @internal */
|
|
2397
|
-
export const
|
|
2398
|
-
|
|
2340
|
+
export const DataFreeSignature$inboundSchema: z.ZodType<
|
|
2341
|
+
DataFreeSignature,
|
|
2399
2342
|
z.ZodTypeDef,
|
|
2400
2343
|
unknown
|
|
2401
2344
|
> = z.object({
|
|
@@ -2409,7 +2352,7 @@ export const EnvelopeFieldUpdateManyDataFreeSignature$inboundSchema: z.ZodType<
|
|
|
2409
2352
|
height: z.number().optional(),
|
|
2410
2353
|
});
|
|
2411
2354
|
/** @internal */
|
|
2412
|
-
export type
|
|
2355
|
+
export type DataFreeSignature$Outbound = {
|
|
2413
2356
|
type: "FREE_SIGNATURE";
|
|
2414
2357
|
id: number;
|
|
2415
2358
|
envelopeItemId?: string | undefined;
|
|
@@ -2421,10 +2364,10 @@ export type EnvelopeFieldUpdateManyDataFreeSignature$Outbound = {
|
|
|
2421
2364
|
};
|
|
2422
2365
|
|
|
2423
2366
|
/** @internal */
|
|
2424
|
-
export const
|
|
2425
|
-
|
|
2367
|
+
export const DataFreeSignature$outboundSchema: z.ZodType<
|
|
2368
|
+
DataFreeSignature$Outbound,
|
|
2426
2369
|
z.ZodTypeDef,
|
|
2427
|
-
|
|
2370
|
+
DataFreeSignature
|
|
2428
2371
|
> = z.object({
|
|
2429
2372
|
type: z.literal("FREE_SIGNATURE"),
|
|
2430
2373
|
id: z.number(),
|
|
@@ -2436,29 +2379,20 @@ export const EnvelopeFieldUpdateManyDataFreeSignature$outboundSchema: z.ZodType<
|
|
|
2436
2379
|
height: z.number().optional(),
|
|
2437
2380
|
});
|
|
2438
2381
|
|
|
2439
|
-
export function
|
|
2440
|
-
|
|
2441
|
-
EnvelopeFieldUpdateManyDataFreeSignature,
|
|
2382
|
+
export function dataFreeSignatureToJSON(
|
|
2383
|
+
dataFreeSignature: DataFreeSignature,
|
|
2442
2384
|
): string {
|
|
2443
2385
|
return JSON.stringify(
|
|
2444
|
-
|
|
2445
|
-
envelopeFieldUpdateManyDataFreeSignature,
|
|
2446
|
-
),
|
|
2386
|
+
DataFreeSignature$outboundSchema.parse(dataFreeSignature),
|
|
2447
2387
|
);
|
|
2448
2388
|
}
|
|
2449
|
-
export function
|
|
2389
|
+
export function dataFreeSignatureFromJSON(
|
|
2450
2390
|
jsonString: string,
|
|
2451
|
-
): SafeParseResult<
|
|
2452
|
-
EnvelopeFieldUpdateManyDataFreeSignature,
|
|
2453
|
-
SDKValidationError
|
|
2454
|
-
> {
|
|
2391
|
+
): SafeParseResult<DataFreeSignature, SDKValidationError> {
|
|
2455
2392
|
return safeParse(
|
|
2456
2393
|
jsonString,
|
|
2457
|
-
(x) =>
|
|
2458
|
-
|
|
2459
|
-
JSON.parse(x),
|
|
2460
|
-
),
|
|
2461
|
-
`Failed to parse 'EnvelopeFieldUpdateManyDataFreeSignature' from JSON`,
|
|
2394
|
+
(x) => DataFreeSignature$inboundSchema.parse(JSON.parse(x)),
|
|
2395
|
+
`Failed to parse 'DataFreeSignature' from JSON`,
|
|
2462
2396
|
);
|
|
2463
2397
|
}
|
|
2464
2398
|
|
|
@@ -2537,8 +2471,8 @@ export function envelopeFieldUpdateManyFieldMetaSignatureRequestFromJSON(
|
|
|
2537
2471
|
}
|
|
2538
2472
|
|
|
2539
2473
|
/** @internal */
|
|
2540
|
-
export const
|
|
2541
|
-
|
|
2474
|
+
export const DataSignature$inboundSchema: z.ZodType<
|
|
2475
|
+
DataSignature,
|
|
2542
2476
|
z.ZodTypeDef,
|
|
2543
2477
|
unknown
|
|
2544
2478
|
> = z.object({
|
|
@@ -2555,7 +2489,7 @@ export const EnvelopeFieldUpdateManyDataSignature$inboundSchema: z.ZodType<
|
|
|
2555
2489
|
height: z.number().optional(),
|
|
2556
2490
|
});
|
|
2557
2491
|
/** @internal */
|
|
2558
|
-
export type
|
|
2492
|
+
export type DataSignature$Outbound = {
|
|
2559
2493
|
type: "SIGNATURE";
|
|
2560
2494
|
fieldMeta?:
|
|
2561
2495
|
| EnvelopeFieldUpdateManyFieldMetaSignatureRequest$Outbound
|
|
@@ -2570,10 +2504,10 @@ export type EnvelopeFieldUpdateManyDataSignature$Outbound = {
|
|
|
2570
2504
|
};
|
|
2571
2505
|
|
|
2572
2506
|
/** @internal */
|
|
2573
|
-
export const
|
|
2574
|
-
|
|
2507
|
+
export const DataSignature$outboundSchema: z.ZodType<
|
|
2508
|
+
DataSignature$Outbound,
|
|
2575
2509
|
z.ZodTypeDef,
|
|
2576
|
-
|
|
2510
|
+
DataSignature
|
|
2577
2511
|
> = z.object({
|
|
2578
2512
|
type: z.literal("SIGNATURE"),
|
|
2579
2513
|
fieldMeta: z.lazy(() =>
|
|
@@ -2588,23 +2522,16 @@ export const EnvelopeFieldUpdateManyDataSignature$outboundSchema: z.ZodType<
|
|
|
2588
2522
|
height: z.number().optional(),
|
|
2589
2523
|
});
|
|
2590
2524
|
|
|
2591
|
-
export function
|
|
2592
|
-
|
|
2593
|
-
): string {
|
|
2594
|
-
return JSON.stringify(
|
|
2595
|
-
EnvelopeFieldUpdateManyDataSignature$outboundSchema.parse(
|
|
2596
|
-
envelopeFieldUpdateManyDataSignature,
|
|
2597
|
-
),
|
|
2598
|
-
);
|
|
2525
|
+
export function dataSignatureToJSON(dataSignature: DataSignature): string {
|
|
2526
|
+
return JSON.stringify(DataSignature$outboundSchema.parse(dataSignature));
|
|
2599
2527
|
}
|
|
2600
|
-
export function
|
|
2528
|
+
export function dataSignatureFromJSON(
|
|
2601
2529
|
jsonString: string,
|
|
2602
|
-
): SafeParseResult<
|
|
2530
|
+
): SafeParseResult<DataSignature, SDKValidationError> {
|
|
2603
2531
|
return safeParse(
|
|
2604
2532
|
jsonString,
|
|
2605
|
-
(x) =>
|
|
2606
|
-
|
|
2607
|
-
`Failed to parse 'EnvelopeFieldUpdateManyDataSignature' from JSON`,
|
|
2533
|
+
(x) => DataSignature$inboundSchema.parse(JSON.parse(x)),
|
|
2534
|
+
`Failed to parse 'DataSignature' from JSON`,
|
|
2608
2535
|
);
|
|
2609
2536
|
}
|
|
2610
2537
|
|
|
@@ -2614,31 +2541,31 @@ export const EnvelopeFieldUpdateManyDataUnion$inboundSchema: z.ZodType<
|
|
|
2614
2541
|
z.ZodTypeDef,
|
|
2615
2542
|
unknown
|
|
2616
2543
|
> = z.union([
|
|
2617
|
-
z.lazy(() =>
|
|
2618
|
-
z.lazy(() =>
|
|
2619
|
-
z.lazy(() =>
|
|
2620
|
-
z.lazy(() =>
|
|
2621
|
-
z.lazy(() =>
|
|
2622
|
-
z.lazy(() =>
|
|
2623
|
-
z.lazy(() =>
|
|
2624
|
-
z.lazy(() =>
|
|
2625
|
-
z.lazy(() =>
|
|
2626
|
-
z.lazy(() =>
|
|
2627
|
-
z.lazy(() =>
|
|
2544
|
+
z.lazy(() => DataSignature$inboundSchema),
|
|
2545
|
+
z.lazy(() => DataFreeSignature$inboundSchema),
|
|
2546
|
+
z.lazy(() => DataInitials$inboundSchema),
|
|
2547
|
+
z.lazy(() => DataName$inboundSchema),
|
|
2548
|
+
z.lazy(() => DataEmail$inboundSchema),
|
|
2549
|
+
z.lazy(() => DataDate$inboundSchema),
|
|
2550
|
+
z.lazy(() => DataText$inboundSchema),
|
|
2551
|
+
z.lazy(() => DataNumber$inboundSchema),
|
|
2552
|
+
z.lazy(() => DataRadio$inboundSchema),
|
|
2553
|
+
z.lazy(() => DataCheckbox$inboundSchema),
|
|
2554
|
+
z.lazy(() => DataDropdown$inboundSchema),
|
|
2628
2555
|
]);
|
|
2629
2556
|
/** @internal */
|
|
2630
2557
|
export type EnvelopeFieldUpdateManyDataUnion$Outbound =
|
|
2631
|
-
|
|
|
2632
|
-
|
|
|
2633
|
-
|
|
|
2634
|
-
|
|
|
2635
|
-
|
|
|
2636
|
-
|
|
|
2637
|
-
|
|
|
2638
|
-
|
|
|
2639
|
-
|
|
|
2640
|
-
|
|
|
2641
|
-
|
|
|
2558
|
+
| DataSignature$Outbound
|
|
2559
|
+
| DataFreeSignature$Outbound
|
|
2560
|
+
| DataInitials$Outbound
|
|
2561
|
+
| DataName$Outbound
|
|
2562
|
+
| DataEmail$Outbound
|
|
2563
|
+
| DataDate$Outbound
|
|
2564
|
+
| DataText$Outbound
|
|
2565
|
+
| DataNumber$Outbound
|
|
2566
|
+
| DataRadio$Outbound
|
|
2567
|
+
| DataCheckbox$Outbound
|
|
2568
|
+
| DataDropdown$Outbound;
|
|
2642
2569
|
|
|
2643
2570
|
/** @internal */
|
|
2644
2571
|
export const EnvelopeFieldUpdateManyDataUnion$outboundSchema: z.ZodType<
|
|
@@ -2646,17 +2573,17 @@ export const EnvelopeFieldUpdateManyDataUnion$outboundSchema: z.ZodType<
|
|
|
2646
2573
|
z.ZodTypeDef,
|
|
2647
2574
|
EnvelopeFieldUpdateManyDataUnion
|
|
2648
2575
|
> = z.union([
|
|
2649
|
-
z.lazy(() =>
|
|
2650
|
-
z.lazy(() =>
|
|
2651
|
-
z.lazy(() =>
|
|
2652
|
-
z.lazy(() =>
|
|
2653
|
-
z.lazy(() =>
|
|
2654
|
-
z.lazy(() =>
|
|
2655
|
-
z.lazy(() =>
|
|
2656
|
-
z.lazy(() =>
|
|
2657
|
-
z.lazy(() =>
|
|
2658
|
-
z.lazy(() =>
|
|
2659
|
-
z.lazy(() =>
|
|
2576
|
+
z.lazy(() => DataSignature$outboundSchema),
|
|
2577
|
+
z.lazy(() => DataFreeSignature$outboundSchema),
|
|
2578
|
+
z.lazy(() => DataInitials$outboundSchema),
|
|
2579
|
+
z.lazy(() => DataName$outboundSchema),
|
|
2580
|
+
z.lazy(() => DataEmail$outboundSchema),
|
|
2581
|
+
z.lazy(() => DataDate$outboundSchema),
|
|
2582
|
+
z.lazy(() => DataText$outboundSchema),
|
|
2583
|
+
z.lazy(() => DataNumber$outboundSchema),
|
|
2584
|
+
z.lazy(() => DataRadio$outboundSchema),
|
|
2585
|
+
z.lazy(() => DataCheckbox$outboundSchema),
|
|
2586
|
+
z.lazy(() => DataDropdown$outboundSchema),
|
|
2660
2587
|
]);
|
|
2661
2588
|
|
|
2662
2589
|
export function envelopeFieldUpdateManyDataUnionToJSON(
|
|
@@ -2687,17 +2614,17 @@ export const EnvelopeFieldUpdateManyRequest$inboundSchema: z.ZodType<
|
|
|
2687
2614
|
envelopeId: z.string(),
|
|
2688
2615
|
data: z.array(
|
|
2689
2616
|
z.union([
|
|
2690
|
-
z.lazy(() =>
|
|
2691
|
-
z.lazy(() =>
|
|
2692
|
-
z.lazy(() =>
|
|
2693
|
-
z.lazy(() =>
|
|
2694
|
-
z.lazy(() =>
|
|
2695
|
-
z.lazy(() =>
|
|
2696
|
-
z.lazy(() =>
|
|
2697
|
-
z.lazy(() =>
|
|
2698
|
-
z.lazy(() =>
|
|
2699
|
-
z.lazy(() =>
|
|
2700
|
-
z.lazy(() =>
|
|
2617
|
+
z.lazy(() => DataSignature$inboundSchema),
|
|
2618
|
+
z.lazy(() => DataFreeSignature$inboundSchema),
|
|
2619
|
+
z.lazy(() => DataInitials$inboundSchema),
|
|
2620
|
+
z.lazy(() => DataName$inboundSchema),
|
|
2621
|
+
z.lazy(() => DataEmail$inboundSchema),
|
|
2622
|
+
z.lazy(() => DataDate$inboundSchema),
|
|
2623
|
+
z.lazy(() => DataText$inboundSchema),
|
|
2624
|
+
z.lazy(() => DataNumber$inboundSchema),
|
|
2625
|
+
z.lazy(() => DataRadio$inboundSchema),
|
|
2626
|
+
z.lazy(() => DataCheckbox$inboundSchema),
|
|
2627
|
+
z.lazy(() => DataDropdown$inboundSchema),
|
|
2701
2628
|
]),
|
|
2702
2629
|
),
|
|
2703
2630
|
});
|
|
@@ -2705,17 +2632,17 @@ export const EnvelopeFieldUpdateManyRequest$inboundSchema: z.ZodType<
|
|
|
2705
2632
|
export type EnvelopeFieldUpdateManyRequest$Outbound = {
|
|
2706
2633
|
envelopeId: string;
|
|
2707
2634
|
data: Array<
|
|
2708
|
-
|
|
|
2709
|
-
|
|
|
2710
|
-
|
|
|
2711
|
-
|
|
|
2712
|
-
|
|
|
2713
|
-
|
|
|
2714
|
-
|
|
|
2715
|
-
|
|
|
2716
|
-
|
|
|
2717
|
-
|
|
|
2718
|
-
|
|
|
2635
|
+
| DataSignature$Outbound
|
|
2636
|
+
| DataFreeSignature$Outbound
|
|
2637
|
+
| DataInitials$Outbound
|
|
2638
|
+
| DataName$Outbound
|
|
2639
|
+
| DataEmail$Outbound
|
|
2640
|
+
| DataDate$Outbound
|
|
2641
|
+
| DataText$Outbound
|
|
2642
|
+
| DataNumber$Outbound
|
|
2643
|
+
| DataRadio$Outbound
|
|
2644
|
+
| DataCheckbox$Outbound
|
|
2645
|
+
| DataDropdown$Outbound
|
|
2719
2646
|
>;
|
|
2720
2647
|
};
|
|
2721
2648
|
|
|
@@ -2728,17 +2655,17 @@ export const EnvelopeFieldUpdateManyRequest$outboundSchema: z.ZodType<
|
|
|
2728
2655
|
envelopeId: z.string(),
|
|
2729
2656
|
data: z.array(
|
|
2730
2657
|
z.union([
|
|
2731
|
-
z.lazy(() =>
|
|
2732
|
-
z.lazy(() =>
|
|
2733
|
-
z.lazy(() =>
|
|
2734
|
-
z.lazy(() =>
|
|
2735
|
-
z.lazy(() =>
|
|
2736
|
-
z.lazy(() =>
|
|
2737
|
-
z.lazy(() =>
|
|
2738
|
-
z.lazy(() =>
|
|
2739
|
-
z.lazy(() =>
|
|
2740
|
-
z.lazy(() =>
|
|
2741
|
-
z.lazy(() =>
|
|
2658
|
+
z.lazy(() => DataSignature$outboundSchema),
|
|
2659
|
+
z.lazy(() => DataFreeSignature$outboundSchema),
|
|
2660
|
+
z.lazy(() => DataInitials$outboundSchema),
|
|
2661
|
+
z.lazy(() => DataName$outboundSchema),
|
|
2662
|
+
z.lazy(() => DataEmail$outboundSchema),
|
|
2663
|
+
z.lazy(() => DataDate$outboundSchema),
|
|
2664
|
+
z.lazy(() => DataText$outboundSchema),
|
|
2665
|
+
z.lazy(() => DataNumber$outboundSchema),
|
|
2666
|
+
z.lazy(() => DataRadio$outboundSchema),
|
|
2667
|
+
z.lazy(() => DataCheckbox$outboundSchema),
|
|
2668
|
+
z.lazy(() => DataDropdown$outboundSchema),
|
|
2742
2669
|
]),
|
|
2743
2670
|
),
|
|
2744
2671
|
});
|