@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
|
@@ -2,349 +2,29 @@ import * as z from "zod/v3";
|
|
|
2
2
|
import { ClosedEnum } from "../../types/enums.js";
|
|
3
3
|
import { Result as SafeParseResult } from "../../types/fp.js";
|
|
4
4
|
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
|
|
5
|
-
export
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
value: string;
|
|
11
|
-
};
|
|
12
|
-
export type EnvelopeFieldCreateManyFieldMetaDropdownRequest = {
|
|
13
|
-
label?: string | undefined;
|
|
14
|
-
placeholder?: string | undefined;
|
|
15
|
-
required?: boolean | undefined;
|
|
16
|
-
readOnly?: boolean | undefined;
|
|
17
|
-
fontSize?: number | undefined;
|
|
18
|
-
type: EnvelopeFieldCreateManyTypeDropdownEnum;
|
|
19
|
-
values?: Array<EnvelopeFieldCreateManyValueDropdown> | undefined;
|
|
20
|
-
defaultValue?: string | undefined;
|
|
21
|
-
};
|
|
22
|
-
export type EnvelopeFieldCreateManyDataDropdown = {
|
|
23
|
-
type: "DROPDOWN";
|
|
24
|
-
fieldMeta?: EnvelopeFieldCreateManyFieldMetaDropdownRequest | undefined;
|
|
25
|
-
recipientId: number;
|
|
26
|
-
envelopeItemId?: string | undefined;
|
|
27
|
-
page: number;
|
|
28
|
-
positionX: number;
|
|
29
|
-
positionY: number;
|
|
30
|
-
width: number;
|
|
31
|
-
height: number;
|
|
32
|
-
};
|
|
33
|
-
export declare const EnvelopeFieldCreateManyTypeCheckboxEnum: {
|
|
34
|
-
readonly Checkbox: "checkbox";
|
|
35
|
-
};
|
|
36
|
-
export type EnvelopeFieldCreateManyTypeCheckboxEnum = ClosedEnum<typeof EnvelopeFieldCreateManyTypeCheckboxEnum>;
|
|
37
|
-
export type EnvelopeFieldCreateManyValueCheckbox = {
|
|
38
|
-
id: number;
|
|
39
|
-
checked: boolean;
|
|
40
|
-
value: string;
|
|
41
|
-
};
|
|
42
|
-
export declare const EnvelopeFieldCreateManyDirectionCheckbox: {
|
|
43
|
-
readonly Vertical: "vertical";
|
|
44
|
-
readonly Horizontal: "horizontal";
|
|
45
|
-
};
|
|
46
|
-
export type EnvelopeFieldCreateManyDirectionCheckbox = ClosedEnum<typeof EnvelopeFieldCreateManyDirectionCheckbox>;
|
|
47
|
-
export type EnvelopeFieldCreateManyFieldMetaCheckboxRequest = {
|
|
48
|
-
label?: string | undefined;
|
|
49
|
-
placeholder?: string | undefined;
|
|
50
|
-
required?: boolean | undefined;
|
|
51
|
-
readOnly?: boolean | undefined;
|
|
52
|
-
fontSize?: number | undefined;
|
|
53
|
-
type: EnvelopeFieldCreateManyTypeCheckboxEnum;
|
|
54
|
-
values?: Array<EnvelopeFieldCreateManyValueCheckbox> | undefined;
|
|
55
|
-
validationRule?: string | undefined;
|
|
56
|
-
validationLength?: number | undefined;
|
|
57
|
-
direction?: EnvelopeFieldCreateManyDirectionCheckbox | undefined;
|
|
58
|
-
};
|
|
59
|
-
export type EnvelopeFieldCreateManyDataCheckbox = {
|
|
60
|
-
type: "CHECKBOX";
|
|
61
|
-
fieldMeta?: EnvelopeFieldCreateManyFieldMetaCheckboxRequest | undefined;
|
|
5
|
+
export type EnvelopeFieldCreateManyDataRequest2 = {
|
|
6
|
+
placeholder: string;
|
|
7
|
+
width?: number | undefined;
|
|
8
|
+
height?: number | undefined;
|
|
9
|
+
matchAll?: boolean | undefined;
|
|
62
10
|
recipientId: number;
|
|
63
11
|
envelopeItemId?: string | undefined;
|
|
64
|
-
page: number;
|
|
65
|
-
positionX: number;
|
|
66
|
-
positionY: number;
|
|
67
|
-
width: number;
|
|
68
|
-
height: number;
|
|
69
|
-
};
|
|
70
|
-
export declare const EnvelopeFieldCreateManyTypeRadioEnum: {
|
|
71
|
-
readonly Radio: "radio";
|
|
72
|
-
};
|
|
73
|
-
export type EnvelopeFieldCreateManyTypeRadioEnum = ClosedEnum<typeof EnvelopeFieldCreateManyTypeRadioEnum>;
|
|
74
|
-
export type EnvelopeFieldCreateManyValueRadio = {
|
|
75
|
-
id: number;
|
|
76
|
-
checked: boolean;
|
|
77
|
-
value: string;
|
|
78
|
-
};
|
|
79
|
-
export declare const EnvelopeFieldCreateManyDirectionRadio: {
|
|
80
|
-
readonly Vertical: "vertical";
|
|
81
|
-
readonly Horizontal: "horizontal";
|
|
82
|
-
};
|
|
83
|
-
export type EnvelopeFieldCreateManyDirectionRadio = ClosedEnum<typeof EnvelopeFieldCreateManyDirectionRadio>;
|
|
84
|
-
export type EnvelopeFieldCreateManyFieldMetaRadioRequest = {
|
|
85
|
-
label?: string | undefined;
|
|
86
|
-
placeholder?: string | undefined;
|
|
87
|
-
required?: boolean | undefined;
|
|
88
|
-
readOnly?: boolean | undefined;
|
|
89
|
-
fontSize?: number | undefined;
|
|
90
|
-
type: EnvelopeFieldCreateManyTypeRadioEnum;
|
|
91
|
-
values?: Array<EnvelopeFieldCreateManyValueRadio> | undefined;
|
|
92
|
-
direction?: EnvelopeFieldCreateManyDirectionRadio | undefined;
|
|
93
|
-
};
|
|
94
|
-
export type EnvelopeFieldCreateManyDataRadio = {
|
|
95
|
-
type: "RADIO";
|
|
96
|
-
fieldMeta?: EnvelopeFieldCreateManyFieldMetaRadioRequest | undefined;
|
|
97
|
-
recipientId: number;
|
|
98
|
-
envelopeItemId?: string | undefined;
|
|
99
|
-
page: number;
|
|
100
|
-
positionX: number;
|
|
101
|
-
positionY: number;
|
|
102
|
-
width: number;
|
|
103
|
-
height: number;
|
|
104
|
-
};
|
|
105
|
-
export declare const EnvelopeFieldCreateManyTypeNumberEnum: {
|
|
106
|
-
readonly Number: "number";
|
|
107
12
|
};
|
|
108
|
-
export type
|
|
109
|
-
export declare const EnvelopeFieldCreateManyTextAlignNumber: {
|
|
110
|
-
readonly Left: "left";
|
|
111
|
-
readonly Center: "center";
|
|
112
|
-
readonly Right: "right";
|
|
113
|
-
};
|
|
114
|
-
export type EnvelopeFieldCreateManyTextAlignNumber = ClosedEnum<typeof EnvelopeFieldCreateManyTextAlignNumber>;
|
|
115
|
-
export declare const EnvelopeFieldCreateManyVerticalAlignNumber: {
|
|
116
|
-
readonly Top: "top";
|
|
117
|
-
readonly Middle: "middle";
|
|
118
|
-
readonly Bottom: "bottom";
|
|
119
|
-
};
|
|
120
|
-
export type EnvelopeFieldCreateManyVerticalAlignNumber = ClosedEnum<typeof EnvelopeFieldCreateManyVerticalAlignNumber>;
|
|
121
|
-
export type EnvelopeFieldCreateManyFieldMetaNumberRequest = {
|
|
122
|
-
label?: string | undefined;
|
|
123
|
-
placeholder?: string | undefined;
|
|
124
|
-
required?: boolean | undefined;
|
|
125
|
-
readOnly?: boolean | undefined;
|
|
126
|
-
fontSize?: number | undefined;
|
|
127
|
-
type: EnvelopeFieldCreateManyTypeNumberEnum;
|
|
128
|
-
numberFormat?: string | null | undefined;
|
|
129
|
-
value?: string | undefined;
|
|
130
|
-
minValue?: number | null | undefined;
|
|
131
|
-
maxValue?: number | null | undefined;
|
|
132
|
-
textAlign?: EnvelopeFieldCreateManyTextAlignNumber | undefined;
|
|
133
|
-
lineHeight?: number | null | undefined;
|
|
134
|
-
letterSpacing?: number | null | undefined;
|
|
135
|
-
verticalAlign?: EnvelopeFieldCreateManyVerticalAlignNumber | null | undefined;
|
|
136
|
-
};
|
|
137
|
-
export type EnvelopeFieldCreateManyDataNumber = {
|
|
138
|
-
type: "NUMBER";
|
|
139
|
-
fieldMeta?: EnvelopeFieldCreateManyFieldMetaNumberRequest | undefined;
|
|
140
|
-
recipientId: number;
|
|
141
|
-
envelopeItemId?: string | undefined;
|
|
13
|
+
export type EnvelopeFieldCreateManyDataRequest1 = {
|
|
142
14
|
page: number;
|
|
143
15
|
positionX: number;
|
|
144
16
|
positionY: number;
|
|
145
17
|
width: number;
|
|
146
18
|
height: number;
|
|
147
|
-
};
|
|
148
|
-
export declare const EnvelopeFieldCreateManyTypeTextEnum: {
|
|
149
|
-
readonly Text: "text";
|
|
150
|
-
};
|
|
151
|
-
export type EnvelopeFieldCreateManyTypeTextEnum = ClosedEnum<typeof EnvelopeFieldCreateManyTypeTextEnum>;
|
|
152
|
-
export declare const EnvelopeFieldCreateManyTextAlignText: {
|
|
153
|
-
readonly Left: "left";
|
|
154
|
-
readonly Center: "center";
|
|
155
|
-
readonly Right: "right";
|
|
156
|
-
};
|
|
157
|
-
export type EnvelopeFieldCreateManyTextAlignText = ClosedEnum<typeof EnvelopeFieldCreateManyTextAlignText>;
|
|
158
|
-
export declare const EnvelopeFieldCreateManyVerticalAlignText: {
|
|
159
|
-
readonly Top: "top";
|
|
160
|
-
readonly Middle: "middle";
|
|
161
|
-
readonly Bottom: "bottom";
|
|
162
|
-
};
|
|
163
|
-
export type EnvelopeFieldCreateManyVerticalAlignText = ClosedEnum<typeof EnvelopeFieldCreateManyVerticalAlignText>;
|
|
164
|
-
export type EnvelopeFieldCreateManyFieldMetaTextRequest = {
|
|
165
|
-
label?: string | undefined;
|
|
166
|
-
placeholder?: string | undefined;
|
|
167
|
-
required?: boolean | undefined;
|
|
168
|
-
readOnly?: boolean | undefined;
|
|
169
|
-
fontSize?: number | undefined;
|
|
170
|
-
type: EnvelopeFieldCreateManyTypeTextEnum;
|
|
171
|
-
text?: string | undefined;
|
|
172
|
-
characterLimit?: number | undefined;
|
|
173
|
-
textAlign?: EnvelopeFieldCreateManyTextAlignText | undefined;
|
|
174
|
-
lineHeight?: number | null | undefined;
|
|
175
|
-
letterSpacing?: number | null | undefined;
|
|
176
|
-
verticalAlign?: EnvelopeFieldCreateManyVerticalAlignText | null | undefined;
|
|
177
|
-
};
|
|
178
|
-
export type EnvelopeFieldCreateManyDataText = {
|
|
179
|
-
type: "TEXT";
|
|
180
|
-
fieldMeta?: EnvelopeFieldCreateManyFieldMetaTextRequest | undefined;
|
|
181
19
|
recipientId: number;
|
|
182
20
|
envelopeItemId?: string | undefined;
|
|
183
|
-
page: number;
|
|
184
|
-
positionX: number;
|
|
185
|
-
positionY: number;
|
|
186
|
-
width: number;
|
|
187
|
-
height: number;
|
|
188
21
|
};
|
|
189
|
-
export
|
|
190
|
-
readonly Date: "date";
|
|
191
|
-
};
|
|
192
|
-
export type EnvelopeFieldCreateManyTypeDateEnum = ClosedEnum<typeof EnvelopeFieldCreateManyTypeDateEnum>;
|
|
193
|
-
export declare const EnvelopeFieldCreateManyTextAlignDate: {
|
|
194
|
-
readonly Left: "left";
|
|
195
|
-
readonly Center: "center";
|
|
196
|
-
readonly Right: "right";
|
|
197
|
-
};
|
|
198
|
-
export type EnvelopeFieldCreateManyTextAlignDate = ClosedEnum<typeof EnvelopeFieldCreateManyTextAlignDate>;
|
|
199
|
-
export type EnvelopeFieldCreateManyFieldMetaDateRequest = {
|
|
200
|
-
label?: string | undefined;
|
|
201
|
-
placeholder?: string | undefined;
|
|
202
|
-
required?: boolean | undefined;
|
|
203
|
-
readOnly?: boolean | undefined;
|
|
204
|
-
fontSize?: number | undefined;
|
|
205
|
-
type: EnvelopeFieldCreateManyTypeDateEnum;
|
|
206
|
-
textAlign?: EnvelopeFieldCreateManyTextAlignDate | undefined;
|
|
207
|
-
};
|
|
208
|
-
export type EnvelopeFieldCreateManyDataDate = {
|
|
209
|
-
type: "DATE";
|
|
210
|
-
fieldMeta?: EnvelopeFieldCreateManyFieldMetaDateRequest | undefined;
|
|
211
|
-
recipientId: number;
|
|
212
|
-
envelopeItemId?: string | undefined;
|
|
213
|
-
page: number;
|
|
214
|
-
positionX: number;
|
|
215
|
-
positionY: number;
|
|
216
|
-
width: number;
|
|
217
|
-
height: number;
|
|
218
|
-
};
|
|
219
|
-
export declare const EnvelopeFieldCreateManyTypeEmailEnum: {
|
|
220
|
-
readonly Email: "email";
|
|
221
|
-
};
|
|
222
|
-
export type EnvelopeFieldCreateManyTypeEmailEnum = ClosedEnum<typeof EnvelopeFieldCreateManyTypeEmailEnum>;
|
|
223
|
-
export declare const EnvelopeFieldCreateManyTextAlignEmail: {
|
|
224
|
-
readonly Left: "left";
|
|
225
|
-
readonly Center: "center";
|
|
226
|
-
readonly Right: "right";
|
|
227
|
-
};
|
|
228
|
-
export type EnvelopeFieldCreateManyTextAlignEmail = ClosedEnum<typeof EnvelopeFieldCreateManyTextAlignEmail>;
|
|
229
|
-
export type EnvelopeFieldCreateManyFieldMetaEmailRequest = {
|
|
230
|
-
label?: string | undefined;
|
|
231
|
-
placeholder?: string | undefined;
|
|
232
|
-
required?: boolean | undefined;
|
|
233
|
-
readOnly?: boolean | undefined;
|
|
234
|
-
fontSize?: number | undefined;
|
|
235
|
-
type: EnvelopeFieldCreateManyTypeEmailEnum;
|
|
236
|
-
textAlign?: EnvelopeFieldCreateManyTextAlignEmail | undefined;
|
|
237
|
-
};
|
|
238
|
-
export type EnvelopeFieldCreateManyDataEmail = {
|
|
239
|
-
type: "EMAIL";
|
|
240
|
-
fieldMeta?: EnvelopeFieldCreateManyFieldMetaEmailRequest | undefined;
|
|
241
|
-
recipientId: number;
|
|
242
|
-
envelopeItemId?: string | undefined;
|
|
243
|
-
page: number;
|
|
244
|
-
positionX: number;
|
|
245
|
-
positionY: number;
|
|
246
|
-
width: number;
|
|
247
|
-
height: number;
|
|
248
|
-
};
|
|
249
|
-
export declare const EnvelopeFieldCreateManyTypeNameEnum: {
|
|
250
|
-
readonly Name: "name";
|
|
251
|
-
};
|
|
252
|
-
export type EnvelopeFieldCreateManyTypeNameEnum = ClosedEnum<typeof EnvelopeFieldCreateManyTypeNameEnum>;
|
|
253
|
-
export declare const EnvelopeFieldCreateManyTextAlignName: {
|
|
254
|
-
readonly Left: "left";
|
|
255
|
-
readonly Center: "center";
|
|
256
|
-
readonly Right: "right";
|
|
257
|
-
};
|
|
258
|
-
export type EnvelopeFieldCreateManyTextAlignName = ClosedEnum<typeof EnvelopeFieldCreateManyTextAlignName>;
|
|
259
|
-
export type EnvelopeFieldCreateManyFieldMetaNameRequest = {
|
|
260
|
-
label?: string | undefined;
|
|
261
|
-
placeholder?: string | undefined;
|
|
262
|
-
required?: boolean | undefined;
|
|
263
|
-
readOnly?: boolean | undefined;
|
|
264
|
-
fontSize?: number | undefined;
|
|
265
|
-
type: EnvelopeFieldCreateManyTypeNameEnum;
|
|
266
|
-
textAlign?: EnvelopeFieldCreateManyTextAlignName | undefined;
|
|
267
|
-
};
|
|
268
|
-
export type EnvelopeFieldCreateManyDataName = {
|
|
269
|
-
type: "NAME";
|
|
270
|
-
fieldMeta?: EnvelopeFieldCreateManyFieldMetaNameRequest | undefined;
|
|
271
|
-
recipientId: number;
|
|
272
|
-
envelopeItemId?: string | undefined;
|
|
273
|
-
page: number;
|
|
274
|
-
positionX: number;
|
|
275
|
-
positionY: number;
|
|
276
|
-
width: number;
|
|
277
|
-
height: number;
|
|
278
|
-
};
|
|
279
|
-
export declare const EnvelopeFieldCreateManyTypeInitialsEnum: {
|
|
280
|
-
readonly Initials: "initials";
|
|
281
|
-
};
|
|
282
|
-
export type EnvelopeFieldCreateManyTypeInitialsEnum = ClosedEnum<typeof EnvelopeFieldCreateManyTypeInitialsEnum>;
|
|
283
|
-
export declare const EnvelopeFieldCreateManyTextAlignInitials: {
|
|
284
|
-
readonly Left: "left";
|
|
285
|
-
readonly Center: "center";
|
|
286
|
-
readonly Right: "right";
|
|
287
|
-
};
|
|
288
|
-
export type EnvelopeFieldCreateManyTextAlignInitials = ClosedEnum<typeof EnvelopeFieldCreateManyTextAlignInitials>;
|
|
289
|
-
export type EnvelopeFieldCreateManyFieldMetaInitialsRequest = {
|
|
290
|
-
label?: string | undefined;
|
|
291
|
-
placeholder?: string | undefined;
|
|
292
|
-
required?: boolean | undefined;
|
|
293
|
-
readOnly?: boolean | undefined;
|
|
294
|
-
fontSize?: number | undefined;
|
|
295
|
-
type: EnvelopeFieldCreateManyTypeInitialsEnum;
|
|
296
|
-
textAlign?: EnvelopeFieldCreateManyTextAlignInitials | undefined;
|
|
297
|
-
};
|
|
298
|
-
export type EnvelopeFieldCreateManyDataInitials = {
|
|
299
|
-
type: "INITIALS";
|
|
300
|
-
fieldMeta?: EnvelopeFieldCreateManyFieldMetaInitialsRequest | undefined;
|
|
301
|
-
recipientId: number;
|
|
302
|
-
envelopeItemId?: string | undefined;
|
|
303
|
-
page: number;
|
|
304
|
-
positionX: number;
|
|
305
|
-
positionY: number;
|
|
306
|
-
width: number;
|
|
307
|
-
height: number;
|
|
308
|
-
};
|
|
309
|
-
export type EnvelopeFieldCreateManyDataFreeSignature = {
|
|
310
|
-
type: "FREE_SIGNATURE";
|
|
311
|
-
recipientId: number;
|
|
312
|
-
envelopeItemId?: string | undefined;
|
|
313
|
-
page: number;
|
|
314
|
-
positionX: number;
|
|
315
|
-
positionY: number;
|
|
316
|
-
width: number;
|
|
317
|
-
height: number;
|
|
318
|
-
};
|
|
319
|
-
export declare const EnvelopeFieldCreateManyTypeSignatureEnum: {
|
|
320
|
-
readonly Signature: "signature";
|
|
321
|
-
};
|
|
322
|
-
export type EnvelopeFieldCreateManyTypeSignatureEnum = ClosedEnum<typeof EnvelopeFieldCreateManyTypeSignatureEnum>;
|
|
323
|
-
export type EnvelopeFieldCreateManyFieldMetaSignatureRequest = {
|
|
324
|
-
label?: string | undefined;
|
|
325
|
-
placeholder?: string | undefined;
|
|
326
|
-
required?: boolean | undefined;
|
|
327
|
-
readOnly?: boolean | undefined;
|
|
328
|
-
fontSize?: number | undefined;
|
|
329
|
-
type: EnvelopeFieldCreateManyTypeSignatureEnum;
|
|
330
|
-
};
|
|
331
|
-
export type EnvelopeFieldCreateManyDataSignature = {
|
|
332
|
-
type: "SIGNATURE";
|
|
333
|
-
fieldMeta?: EnvelopeFieldCreateManyFieldMetaSignatureRequest | undefined;
|
|
334
|
-
recipientId: number;
|
|
335
|
-
envelopeItemId?: string | undefined;
|
|
336
|
-
page: number;
|
|
337
|
-
positionX: number;
|
|
338
|
-
positionY: number;
|
|
339
|
-
width: number;
|
|
340
|
-
height: number;
|
|
341
|
-
};
|
|
342
|
-
export type EnvelopeFieldCreateManyDataUnion = EnvelopeFieldCreateManyDataSignature | EnvelopeFieldCreateManyDataFreeSignature | EnvelopeFieldCreateManyDataInitials | EnvelopeFieldCreateManyDataName | EnvelopeFieldCreateManyDataEmail | EnvelopeFieldCreateManyDataDate | EnvelopeFieldCreateManyDataText | EnvelopeFieldCreateManyDataNumber | EnvelopeFieldCreateManyDataRadio | EnvelopeFieldCreateManyDataCheckbox | EnvelopeFieldCreateManyDataDropdown;
|
|
22
|
+
export type EnvelopeFieldCreateManyDataUnion = EnvelopeFieldCreateManyDataRequest1 | EnvelopeFieldCreateManyDataRequest2;
|
|
343
23
|
export type EnvelopeFieldCreateManyRequest = {
|
|
344
24
|
envelopeId: string;
|
|
345
|
-
data: Array<
|
|
25
|
+
data: Array<EnvelopeFieldCreateManyDataRequest1 | EnvelopeFieldCreateManyDataRequest2>;
|
|
346
26
|
};
|
|
347
|
-
export declare const
|
|
27
|
+
export declare const EnvelopeFieldCreateManyTypeEnum: {
|
|
348
28
|
readonly Signature: "SIGNATURE";
|
|
349
29
|
readonly FreeSignature: "FREE_SIGNATURE";
|
|
350
30
|
readonly Initials: "INITIALS";
|
|
@@ -357,75 +37,75 @@ export declare const EnvelopeFieldCreateManyTypeResponseEnum: {
|
|
|
357
37
|
readonly Checkbox: "CHECKBOX";
|
|
358
38
|
readonly Dropdown: "DROPDOWN";
|
|
359
39
|
};
|
|
360
|
-
export type
|
|
361
|
-
export type
|
|
40
|
+
export type EnvelopeFieldCreateManyTypeEnum = ClosedEnum<typeof EnvelopeFieldCreateManyTypeEnum>;
|
|
41
|
+
export type EnvelopeFieldCreateManyValue3 = {
|
|
362
42
|
value: string;
|
|
363
43
|
};
|
|
364
|
-
export type
|
|
44
|
+
export type EnvelopeFieldCreateManyFieldMetaDropdown = {
|
|
365
45
|
label?: string | undefined;
|
|
366
46
|
placeholder?: string | undefined;
|
|
367
47
|
required?: boolean | undefined;
|
|
368
48
|
readOnly?: boolean | undefined;
|
|
369
49
|
fontSize?: number | undefined;
|
|
370
50
|
type: "dropdown";
|
|
371
|
-
values?: Array<
|
|
51
|
+
values?: Array<EnvelopeFieldCreateManyValue3> | undefined;
|
|
372
52
|
defaultValue?: string | undefined;
|
|
373
53
|
};
|
|
374
|
-
export type
|
|
54
|
+
export type EnvelopeFieldCreateManyValue2 = {
|
|
375
55
|
id: number;
|
|
376
56
|
checked: boolean;
|
|
377
57
|
value: string;
|
|
378
58
|
};
|
|
379
|
-
export declare const
|
|
59
|
+
export declare const EnvelopeFieldCreateManyDirection2: {
|
|
380
60
|
readonly Vertical: "vertical";
|
|
381
61
|
readonly Horizontal: "horizontal";
|
|
382
62
|
};
|
|
383
|
-
export type
|
|
384
|
-
export type
|
|
63
|
+
export type EnvelopeFieldCreateManyDirection2 = ClosedEnum<typeof EnvelopeFieldCreateManyDirection2>;
|
|
64
|
+
export type EnvelopeFieldCreateManyFieldMetaCheckbox = {
|
|
385
65
|
label?: string | undefined;
|
|
386
66
|
placeholder?: string | undefined;
|
|
387
67
|
required?: boolean | undefined;
|
|
388
68
|
readOnly?: boolean | undefined;
|
|
389
69
|
fontSize?: number | undefined;
|
|
390
70
|
type: "checkbox";
|
|
391
|
-
values?: Array<
|
|
71
|
+
values?: Array<EnvelopeFieldCreateManyValue2> | undefined;
|
|
392
72
|
validationRule?: string | undefined;
|
|
393
73
|
validationLength?: number | undefined;
|
|
394
|
-
direction?:
|
|
74
|
+
direction?: EnvelopeFieldCreateManyDirection2 | undefined;
|
|
395
75
|
};
|
|
396
|
-
export type
|
|
76
|
+
export type EnvelopeFieldCreateManyValue1 = {
|
|
397
77
|
id: number;
|
|
398
78
|
checked: boolean;
|
|
399
79
|
value: string;
|
|
400
80
|
};
|
|
401
|
-
export declare const
|
|
81
|
+
export declare const EnvelopeFieldCreateManyDirection1: {
|
|
402
82
|
readonly Vertical: "vertical";
|
|
403
83
|
readonly Horizontal: "horizontal";
|
|
404
84
|
};
|
|
405
|
-
export type
|
|
406
|
-
export type
|
|
85
|
+
export type EnvelopeFieldCreateManyDirection1 = ClosedEnum<typeof EnvelopeFieldCreateManyDirection1>;
|
|
86
|
+
export type EnvelopeFieldCreateManyFieldMetaRadio = {
|
|
407
87
|
label?: string | undefined;
|
|
408
88
|
placeholder?: string | undefined;
|
|
409
89
|
required?: boolean | undefined;
|
|
410
90
|
readOnly?: boolean | undefined;
|
|
411
91
|
fontSize?: number | undefined;
|
|
412
92
|
type: "radio";
|
|
413
|
-
values?: Array<
|
|
414
|
-
direction?:
|
|
93
|
+
values?: Array<EnvelopeFieldCreateManyValue1> | undefined;
|
|
94
|
+
direction?: EnvelopeFieldCreateManyDirection1 | undefined;
|
|
415
95
|
};
|
|
416
|
-
export declare const
|
|
96
|
+
export declare const EnvelopeFieldCreateManyTextAlign6: {
|
|
417
97
|
readonly Left: "left";
|
|
418
98
|
readonly Center: "center";
|
|
419
99
|
readonly Right: "right";
|
|
420
100
|
};
|
|
421
|
-
export type
|
|
422
|
-
export declare const
|
|
101
|
+
export type EnvelopeFieldCreateManyTextAlign6 = ClosedEnum<typeof EnvelopeFieldCreateManyTextAlign6>;
|
|
102
|
+
export declare const EnvelopeFieldCreateManyVerticalAlign2: {
|
|
423
103
|
readonly Top: "top";
|
|
424
104
|
readonly Middle: "middle";
|
|
425
105
|
readonly Bottom: "bottom";
|
|
426
106
|
};
|
|
427
|
-
export type
|
|
428
|
-
export type
|
|
107
|
+
export type EnvelopeFieldCreateManyVerticalAlign2 = ClosedEnum<typeof EnvelopeFieldCreateManyVerticalAlign2>;
|
|
108
|
+
export type EnvelopeFieldCreateManyFieldMetaNumber = {
|
|
429
109
|
label?: string | undefined;
|
|
430
110
|
placeholder?: string | undefined;
|
|
431
111
|
required?: boolean | undefined;
|
|
@@ -436,24 +116,24 @@ export type EnvelopeFieldCreateManyFieldMetaNumberResponse = {
|
|
|
436
116
|
value?: string | undefined;
|
|
437
117
|
minValue?: number | null | undefined;
|
|
438
118
|
maxValue?: number | null | undefined;
|
|
439
|
-
textAlign?:
|
|
119
|
+
textAlign?: EnvelopeFieldCreateManyTextAlign6 | undefined;
|
|
440
120
|
lineHeight?: number | null | undefined;
|
|
441
121
|
letterSpacing?: number | null | undefined;
|
|
442
|
-
verticalAlign?:
|
|
122
|
+
verticalAlign?: EnvelopeFieldCreateManyVerticalAlign2 | null | undefined;
|
|
443
123
|
};
|
|
444
|
-
export declare const
|
|
124
|
+
export declare const EnvelopeFieldCreateManyTextAlign5: {
|
|
445
125
|
readonly Left: "left";
|
|
446
126
|
readonly Center: "center";
|
|
447
127
|
readonly Right: "right";
|
|
448
128
|
};
|
|
449
|
-
export type
|
|
450
|
-
export declare const
|
|
129
|
+
export type EnvelopeFieldCreateManyTextAlign5 = ClosedEnum<typeof EnvelopeFieldCreateManyTextAlign5>;
|
|
130
|
+
export declare const EnvelopeFieldCreateManyVerticalAlign1: {
|
|
451
131
|
readonly Top: "top";
|
|
452
132
|
readonly Middle: "middle";
|
|
453
133
|
readonly Bottom: "bottom";
|
|
454
134
|
};
|
|
455
|
-
export type
|
|
456
|
-
export type
|
|
135
|
+
export type EnvelopeFieldCreateManyVerticalAlign1 = ClosedEnum<typeof EnvelopeFieldCreateManyVerticalAlign1>;
|
|
136
|
+
export type EnvelopeFieldCreateManyFieldMetaText = {
|
|
457
137
|
label?: string | undefined;
|
|
458
138
|
placeholder?: string | undefined;
|
|
459
139
|
required?: boolean | undefined;
|
|
@@ -462,72 +142,72 @@ export type EnvelopeFieldCreateManyFieldMetaTextResponse = {
|
|
|
462
142
|
type: "text";
|
|
463
143
|
text?: string | undefined;
|
|
464
144
|
characterLimit?: number | undefined;
|
|
465
|
-
textAlign?:
|
|
145
|
+
textAlign?: EnvelopeFieldCreateManyTextAlign5 | undefined;
|
|
466
146
|
lineHeight?: number | null | undefined;
|
|
467
147
|
letterSpacing?: number | null | undefined;
|
|
468
|
-
verticalAlign?:
|
|
148
|
+
verticalAlign?: EnvelopeFieldCreateManyVerticalAlign1 | null | undefined;
|
|
469
149
|
};
|
|
470
|
-
export declare const
|
|
150
|
+
export declare const EnvelopeFieldCreateManyTextAlign4: {
|
|
471
151
|
readonly Left: "left";
|
|
472
152
|
readonly Center: "center";
|
|
473
153
|
readonly Right: "right";
|
|
474
154
|
};
|
|
475
|
-
export type
|
|
476
|
-
export type
|
|
155
|
+
export type EnvelopeFieldCreateManyTextAlign4 = ClosedEnum<typeof EnvelopeFieldCreateManyTextAlign4>;
|
|
156
|
+
export type EnvelopeFieldCreateManyFieldMetaDate = {
|
|
477
157
|
label?: string | undefined;
|
|
478
158
|
placeholder?: string | undefined;
|
|
479
159
|
required?: boolean | undefined;
|
|
480
160
|
readOnly?: boolean | undefined;
|
|
481
161
|
fontSize?: number | undefined;
|
|
482
162
|
type: "date";
|
|
483
|
-
textAlign?:
|
|
163
|
+
textAlign?: EnvelopeFieldCreateManyTextAlign4 | undefined;
|
|
484
164
|
};
|
|
485
|
-
export declare const
|
|
165
|
+
export declare const EnvelopeFieldCreateManyTextAlign3: {
|
|
486
166
|
readonly Left: "left";
|
|
487
167
|
readonly Center: "center";
|
|
488
168
|
readonly Right: "right";
|
|
489
169
|
};
|
|
490
|
-
export type
|
|
491
|
-
export type
|
|
170
|
+
export type EnvelopeFieldCreateManyTextAlign3 = ClosedEnum<typeof EnvelopeFieldCreateManyTextAlign3>;
|
|
171
|
+
export type EnvelopeFieldCreateManyFieldMetaEmail = {
|
|
492
172
|
label?: string | undefined;
|
|
493
173
|
placeholder?: string | undefined;
|
|
494
174
|
required?: boolean | undefined;
|
|
495
175
|
readOnly?: boolean | undefined;
|
|
496
176
|
fontSize?: number | undefined;
|
|
497
177
|
type: "email";
|
|
498
|
-
textAlign?:
|
|
178
|
+
textAlign?: EnvelopeFieldCreateManyTextAlign3 | undefined;
|
|
499
179
|
};
|
|
500
|
-
export declare const
|
|
180
|
+
export declare const EnvelopeFieldCreateManyTextAlign2: {
|
|
501
181
|
readonly Left: "left";
|
|
502
182
|
readonly Center: "center";
|
|
503
183
|
readonly Right: "right";
|
|
504
184
|
};
|
|
505
|
-
export type
|
|
506
|
-
export type
|
|
185
|
+
export type EnvelopeFieldCreateManyTextAlign2 = ClosedEnum<typeof EnvelopeFieldCreateManyTextAlign2>;
|
|
186
|
+
export type EnvelopeFieldCreateManyFieldMetaName = {
|
|
507
187
|
label?: string | undefined;
|
|
508
188
|
placeholder?: string | undefined;
|
|
509
189
|
required?: boolean | undefined;
|
|
510
190
|
readOnly?: boolean | undefined;
|
|
511
191
|
fontSize?: number | undefined;
|
|
512
192
|
type: "name";
|
|
513
|
-
textAlign?:
|
|
193
|
+
textAlign?: EnvelopeFieldCreateManyTextAlign2 | undefined;
|
|
514
194
|
};
|
|
515
|
-
export declare const
|
|
195
|
+
export declare const EnvelopeFieldCreateManyTextAlign1: {
|
|
516
196
|
readonly Left: "left";
|
|
517
197
|
readonly Center: "center";
|
|
518
198
|
readonly Right: "right";
|
|
519
199
|
};
|
|
520
|
-
export type
|
|
521
|
-
export type
|
|
200
|
+
export type EnvelopeFieldCreateManyTextAlign1 = ClosedEnum<typeof EnvelopeFieldCreateManyTextAlign1>;
|
|
201
|
+
export type EnvelopeFieldCreateManyFieldMetaInitials = {
|
|
522
202
|
label?: string | undefined;
|
|
523
203
|
placeholder?: string | undefined;
|
|
524
204
|
required?: boolean | undefined;
|
|
525
205
|
readOnly?: boolean | undefined;
|
|
526
206
|
fontSize?: number | undefined;
|
|
527
207
|
type: "initials";
|
|
528
|
-
textAlign?:
|
|
208
|
+
textAlign?: EnvelopeFieldCreateManyTextAlign1 | undefined;
|
|
529
209
|
};
|
|
530
|
-
export type
|
|
210
|
+
export type EnvelopeFieldCreateManyFieldMetaSignature = {
|
|
531
211
|
label?: string | undefined;
|
|
532
212
|
placeholder?: string | undefined;
|
|
533
213
|
required?: boolean | undefined;
|
|
@@ -535,11 +215,11 @@ export type EnvelopeFieldCreateManyFieldMetaSignatureResponse = {
|
|
|
535
215
|
fontSize?: number | undefined;
|
|
536
216
|
type: "signature";
|
|
537
217
|
};
|
|
538
|
-
export type EnvelopeFieldCreateManyFieldMetaUnion =
|
|
218
|
+
export type EnvelopeFieldCreateManyFieldMetaUnion = EnvelopeFieldCreateManyFieldMetaSignature | EnvelopeFieldCreateManyFieldMetaInitials | EnvelopeFieldCreateManyFieldMetaName | EnvelopeFieldCreateManyFieldMetaEmail | EnvelopeFieldCreateManyFieldMetaDate | EnvelopeFieldCreateManyFieldMetaText | EnvelopeFieldCreateManyFieldMetaNumber | EnvelopeFieldCreateManyFieldMetaRadio | EnvelopeFieldCreateManyFieldMetaCheckbox | EnvelopeFieldCreateManyFieldMetaDropdown;
|
|
539
219
|
export type EnvelopeFieldCreateManyDataResponse = {
|
|
540
220
|
envelopeId: string;
|
|
541
221
|
envelopeItemId: string;
|
|
542
|
-
type:
|
|
222
|
+
type: EnvelopeFieldCreateManyTypeEnum;
|
|
543
223
|
id: number;
|
|
544
224
|
secondaryId: string;
|
|
545
225
|
recipientId: number;
|
|
@@ -550,7 +230,7 @@ export type EnvelopeFieldCreateManyDataResponse = {
|
|
|
550
230
|
height?: any | undefined;
|
|
551
231
|
customText: string;
|
|
552
232
|
inserted: boolean;
|
|
553
|
-
fieldMeta:
|
|
233
|
+
fieldMeta: EnvelopeFieldCreateManyFieldMetaSignature | EnvelopeFieldCreateManyFieldMetaInitials | EnvelopeFieldCreateManyFieldMetaName | EnvelopeFieldCreateManyFieldMetaEmail | EnvelopeFieldCreateManyFieldMetaDate | EnvelopeFieldCreateManyFieldMetaText | EnvelopeFieldCreateManyFieldMetaNumber | EnvelopeFieldCreateManyFieldMetaRadio | EnvelopeFieldCreateManyFieldMetaCheckbox | EnvelopeFieldCreateManyFieldMetaDropdown | null;
|
|
554
234
|
documentId?: number | null | undefined;
|
|
555
235
|
templateId?: number | null | undefined;
|
|
556
236
|
};
|
|
@@ -561,496 +241,40 @@ export type EnvelopeFieldCreateManyResponse = {
|
|
|
561
241
|
data: Array<EnvelopeFieldCreateManyDataResponse>;
|
|
562
242
|
};
|
|
563
243
|
/** @internal */
|
|
564
|
-
export declare const
|
|
565
|
-
/** @internal */
|
|
566
|
-
export declare const EnvelopeFieldCreateManyTypeDropdownEnum$outboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTypeDropdownEnum>;
|
|
567
|
-
/** @internal */
|
|
568
|
-
export declare const EnvelopeFieldCreateManyValueDropdown$inboundSchema: z.ZodType<EnvelopeFieldCreateManyValueDropdown, z.ZodTypeDef, unknown>;
|
|
569
|
-
/** @internal */
|
|
570
|
-
export type EnvelopeFieldCreateManyValueDropdown$Outbound = {
|
|
571
|
-
value: string;
|
|
572
|
-
};
|
|
573
|
-
/** @internal */
|
|
574
|
-
export declare const EnvelopeFieldCreateManyValueDropdown$outboundSchema: z.ZodType<EnvelopeFieldCreateManyValueDropdown$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyValueDropdown>;
|
|
575
|
-
export declare function envelopeFieldCreateManyValueDropdownToJSON(envelopeFieldCreateManyValueDropdown: EnvelopeFieldCreateManyValueDropdown): string;
|
|
576
|
-
export declare function envelopeFieldCreateManyValueDropdownFromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyValueDropdown, SDKValidationError>;
|
|
577
|
-
/** @internal */
|
|
578
|
-
export declare const EnvelopeFieldCreateManyFieldMetaDropdownRequest$inboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaDropdownRequest, z.ZodTypeDef, unknown>;
|
|
579
|
-
/** @internal */
|
|
580
|
-
export type EnvelopeFieldCreateManyFieldMetaDropdownRequest$Outbound = {
|
|
581
|
-
label?: string | undefined;
|
|
582
|
-
placeholder?: string | undefined;
|
|
583
|
-
required?: boolean | undefined;
|
|
584
|
-
readOnly?: boolean | undefined;
|
|
585
|
-
fontSize: number;
|
|
586
|
-
type: string;
|
|
587
|
-
values?: Array<EnvelopeFieldCreateManyValueDropdown$Outbound> | undefined;
|
|
588
|
-
defaultValue?: string | undefined;
|
|
589
|
-
};
|
|
590
|
-
/** @internal */
|
|
591
|
-
export declare const EnvelopeFieldCreateManyFieldMetaDropdownRequest$outboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaDropdownRequest$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyFieldMetaDropdownRequest>;
|
|
592
|
-
export declare function envelopeFieldCreateManyFieldMetaDropdownRequestToJSON(envelopeFieldCreateManyFieldMetaDropdownRequest: EnvelopeFieldCreateManyFieldMetaDropdownRequest): string;
|
|
593
|
-
export declare function envelopeFieldCreateManyFieldMetaDropdownRequestFromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyFieldMetaDropdownRequest, SDKValidationError>;
|
|
594
|
-
/** @internal */
|
|
595
|
-
export declare const EnvelopeFieldCreateManyDataDropdown$inboundSchema: z.ZodType<EnvelopeFieldCreateManyDataDropdown, z.ZodTypeDef, unknown>;
|
|
596
|
-
/** @internal */
|
|
597
|
-
export type EnvelopeFieldCreateManyDataDropdown$Outbound = {
|
|
598
|
-
type: "DROPDOWN";
|
|
599
|
-
fieldMeta?: EnvelopeFieldCreateManyFieldMetaDropdownRequest$Outbound | undefined;
|
|
600
|
-
recipientId: number;
|
|
601
|
-
envelopeItemId?: string | undefined;
|
|
602
|
-
page: number;
|
|
603
|
-
positionX: number;
|
|
604
|
-
positionY: number;
|
|
605
|
-
width: number;
|
|
606
|
-
height: number;
|
|
607
|
-
};
|
|
608
|
-
/** @internal */
|
|
609
|
-
export declare const EnvelopeFieldCreateManyDataDropdown$outboundSchema: z.ZodType<EnvelopeFieldCreateManyDataDropdown$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyDataDropdown>;
|
|
610
|
-
export declare function envelopeFieldCreateManyDataDropdownToJSON(envelopeFieldCreateManyDataDropdown: EnvelopeFieldCreateManyDataDropdown): string;
|
|
611
|
-
export declare function envelopeFieldCreateManyDataDropdownFromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyDataDropdown, SDKValidationError>;
|
|
612
|
-
/** @internal */
|
|
613
|
-
export declare const EnvelopeFieldCreateManyTypeCheckboxEnum$inboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTypeCheckboxEnum>;
|
|
614
|
-
/** @internal */
|
|
615
|
-
export declare const EnvelopeFieldCreateManyTypeCheckboxEnum$outboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTypeCheckboxEnum>;
|
|
616
|
-
/** @internal */
|
|
617
|
-
export declare const EnvelopeFieldCreateManyValueCheckbox$inboundSchema: z.ZodType<EnvelopeFieldCreateManyValueCheckbox, z.ZodTypeDef, unknown>;
|
|
618
|
-
/** @internal */
|
|
619
|
-
export type EnvelopeFieldCreateManyValueCheckbox$Outbound = {
|
|
620
|
-
id: number;
|
|
621
|
-
checked: boolean;
|
|
622
|
-
value: string;
|
|
623
|
-
};
|
|
624
|
-
/** @internal */
|
|
625
|
-
export declare const EnvelopeFieldCreateManyValueCheckbox$outboundSchema: z.ZodType<EnvelopeFieldCreateManyValueCheckbox$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyValueCheckbox>;
|
|
626
|
-
export declare function envelopeFieldCreateManyValueCheckboxToJSON(envelopeFieldCreateManyValueCheckbox: EnvelopeFieldCreateManyValueCheckbox): string;
|
|
627
|
-
export declare function envelopeFieldCreateManyValueCheckboxFromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyValueCheckbox, SDKValidationError>;
|
|
628
|
-
/** @internal */
|
|
629
|
-
export declare const EnvelopeFieldCreateManyDirectionCheckbox$inboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyDirectionCheckbox>;
|
|
630
|
-
/** @internal */
|
|
631
|
-
export declare const EnvelopeFieldCreateManyDirectionCheckbox$outboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyDirectionCheckbox>;
|
|
632
|
-
/** @internal */
|
|
633
|
-
export declare const EnvelopeFieldCreateManyFieldMetaCheckboxRequest$inboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaCheckboxRequest, z.ZodTypeDef, unknown>;
|
|
634
|
-
/** @internal */
|
|
635
|
-
export type EnvelopeFieldCreateManyFieldMetaCheckboxRequest$Outbound = {
|
|
636
|
-
label?: string | undefined;
|
|
637
|
-
placeholder?: string | undefined;
|
|
638
|
-
required?: boolean | undefined;
|
|
639
|
-
readOnly?: boolean | undefined;
|
|
640
|
-
fontSize: number;
|
|
641
|
-
type: string;
|
|
642
|
-
values?: Array<EnvelopeFieldCreateManyValueCheckbox$Outbound> | undefined;
|
|
643
|
-
validationRule?: string | undefined;
|
|
644
|
-
validationLength?: number | undefined;
|
|
645
|
-
direction: string;
|
|
646
|
-
};
|
|
647
|
-
/** @internal */
|
|
648
|
-
export declare const EnvelopeFieldCreateManyFieldMetaCheckboxRequest$outboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaCheckboxRequest$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyFieldMetaCheckboxRequest>;
|
|
649
|
-
export declare function envelopeFieldCreateManyFieldMetaCheckboxRequestToJSON(envelopeFieldCreateManyFieldMetaCheckboxRequest: EnvelopeFieldCreateManyFieldMetaCheckboxRequest): string;
|
|
650
|
-
export declare function envelopeFieldCreateManyFieldMetaCheckboxRequestFromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyFieldMetaCheckboxRequest, SDKValidationError>;
|
|
651
|
-
/** @internal */
|
|
652
|
-
export declare const EnvelopeFieldCreateManyDataCheckbox$inboundSchema: z.ZodType<EnvelopeFieldCreateManyDataCheckbox, z.ZodTypeDef, unknown>;
|
|
653
|
-
/** @internal */
|
|
654
|
-
export type EnvelopeFieldCreateManyDataCheckbox$Outbound = {
|
|
655
|
-
type: "CHECKBOX";
|
|
656
|
-
fieldMeta?: EnvelopeFieldCreateManyFieldMetaCheckboxRequest$Outbound | undefined;
|
|
657
|
-
recipientId: number;
|
|
658
|
-
envelopeItemId?: string | undefined;
|
|
659
|
-
page: number;
|
|
660
|
-
positionX: number;
|
|
661
|
-
positionY: number;
|
|
662
|
-
width: number;
|
|
663
|
-
height: number;
|
|
664
|
-
};
|
|
665
|
-
/** @internal */
|
|
666
|
-
export declare const EnvelopeFieldCreateManyDataCheckbox$outboundSchema: z.ZodType<EnvelopeFieldCreateManyDataCheckbox$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyDataCheckbox>;
|
|
667
|
-
export declare function envelopeFieldCreateManyDataCheckboxToJSON(envelopeFieldCreateManyDataCheckbox: EnvelopeFieldCreateManyDataCheckbox): string;
|
|
668
|
-
export declare function envelopeFieldCreateManyDataCheckboxFromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyDataCheckbox, SDKValidationError>;
|
|
669
|
-
/** @internal */
|
|
670
|
-
export declare const EnvelopeFieldCreateManyTypeRadioEnum$inboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTypeRadioEnum>;
|
|
671
|
-
/** @internal */
|
|
672
|
-
export declare const EnvelopeFieldCreateManyTypeRadioEnum$outboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTypeRadioEnum>;
|
|
673
|
-
/** @internal */
|
|
674
|
-
export declare const EnvelopeFieldCreateManyValueRadio$inboundSchema: z.ZodType<EnvelopeFieldCreateManyValueRadio, z.ZodTypeDef, unknown>;
|
|
675
|
-
/** @internal */
|
|
676
|
-
export type EnvelopeFieldCreateManyValueRadio$Outbound = {
|
|
677
|
-
id: number;
|
|
678
|
-
checked: boolean;
|
|
679
|
-
value: string;
|
|
680
|
-
};
|
|
681
|
-
/** @internal */
|
|
682
|
-
export declare const EnvelopeFieldCreateManyValueRadio$outboundSchema: z.ZodType<EnvelopeFieldCreateManyValueRadio$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyValueRadio>;
|
|
683
|
-
export declare function envelopeFieldCreateManyValueRadioToJSON(envelopeFieldCreateManyValueRadio: EnvelopeFieldCreateManyValueRadio): string;
|
|
684
|
-
export declare function envelopeFieldCreateManyValueRadioFromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyValueRadio, SDKValidationError>;
|
|
685
|
-
/** @internal */
|
|
686
|
-
export declare const EnvelopeFieldCreateManyDirectionRadio$inboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyDirectionRadio>;
|
|
687
|
-
/** @internal */
|
|
688
|
-
export declare const EnvelopeFieldCreateManyDirectionRadio$outboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyDirectionRadio>;
|
|
689
|
-
/** @internal */
|
|
690
|
-
export declare const EnvelopeFieldCreateManyFieldMetaRadioRequest$inboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaRadioRequest, z.ZodTypeDef, unknown>;
|
|
691
|
-
/** @internal */
|
|
692
|
-
export type EnvelopeFieldCreateManyFieldMetaRadioRequest$Outbound = {
|
|
693
|
-
label?: string | undefined;
|
|
694
|
-
placeholder?: string | undefined;
|
|
695
|
-
required?: boolean | undefined;
|
|
696
|
-
readOnly?: boolean | undefined;
|
|
697
|
-
fontSize: number;
|
|
698
|
-
type: string;
|
|
699
|
-
values?: Array<EnvelopeFieldCreateManyValueRadio$Outbound> | undefined;
|
|
700
|
-
direction: string;
|
|
701
|
-
};
|
|
702
|
-
/** @internal */
|
|
703
|
-
export declare const EnvelopeFieldCreateManyFieldMetaRadioRequest$outboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaRadioRequest$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyFieldMetaRadioRequest>;
|
|
704
|
-
export declare function envelopeFieldCreateManyFieldMetaRadioRequestToJSON(envelopeFieldCreateManyFieldMetaRadioRequest: EnvelopeFieldCreateManyFieldMetaRadioRequest): string;
|
|
705
|
-
export declare function envelopeFieldCreateManyFieldMetaRadioRequestFromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyFieldMetaRadioRequest, SDKValidationError>;
|
|
706
|
-
/** @internal */
|
|
707
|
-
export declare const EnvelopeFieldCreateManyDataRadio$inboundSchema: z.ZodType<EnvelopeFieldCreateManyDataRadio, z.ZodTypeDef, unknown>;
|
|
244
|
+
export declare const EnvelopeFieldCreateManyDataRequest2$inboundSchema: z.ZodType<EnvelopeFieldCreateManyDataRequest2, z.ZodTypeDef, unknown>;
|
|
708
245
|
/** @internal */
|
|
709
|
-
export type
|
|
710
|
-
|
|
711
|
-
|
|
246
|
+
export type EnvelopeFieldCreateManyDataRequest2$Outbound = {
|
|
247
|
+
placeholder: string;
|
|
248
|
+
width?: number | undefined;
|
|
249
|
+
height?: number | undefined;
|
|
250
|
+
matchAll?: boolean | undefined;
|
|
712
251
|
recipientId: number;
|
|
713
252
|
envelopeItemId?: string | undefined;
|
|
714
|
-
page: number;
|
|
715
|
-
positionX: number;
|
|
716
|
-
positionY: number;
|
|
717
|
-
width: number;
|
|
718
|
-
height: number;
|
|
719
|
-
};
|
|
720
|
-
/** @internal */
|
|
721
|
-
export declare const EnvelopeFieldCreateManyDataRadio$outboundSchema: z.ZodType<EnvelopeFieldCreateManyDataRadio$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyDataRadio>;
|
|
722
|
-
export declare function envelopeFieldCreateManyDataRadioToJSON(envelopeFieldCreateManyDataRadio: EnvelopeFieldCreateManyDataRadio): string;
|
|
723
|
-
export declare function envelopeFieldCreateManyDataRadioFromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyDataRadio, SDKValidationError>;
|
|
724
|
-
/** @internal */
|
|
725
|
-
export declare const EnvelopeFieldCreateManyTypeNumberEnum$inboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTypeNumberEnum>;
|
|
726
|
-
/** @internal */
|
|
727
|
-
export declare const EnvelopeFieldCreateManyTypeNumberEnum$outboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTypeNumberEnum>;
|
|
728
|
-
/** @internal */
|
|
729
|
-
export declare const EnvelopeFieldCreateManyTextAlignNumber$inboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTextAlignNumber>;
|
|
730
|
-
/** @internal */
|
|
731
|
-
export declare const EnvelopeFieldCreateManyTextAlignNumber$outboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTextAlignNumber>;
|
|
732
|
-
/** @internal */
|
|
733
|
-
export declare const EnvelopeFieldCreateManyVerticalAlignNumber$inboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyVerticalAlignNumber>;
|
|
734
|
-
/** @internal */
|
|
735
|
-
export declare const EnvelopeFieldCreateManyVerticalAlignNumber$outboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyVerticalAlignNumber>;
|
|
736
|
-
/** @internal */
|
|
737
|
-
export declare const EnvelopeFieldCreateManyFieldMetaNumberRequest$inboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaNumberRequest, z.ZodTypeDef, unknown>;
|
|
738
|
-
/** @internal */
|
|
739
|
-
export type EnvelopeFieldCreateManyFieldMetaNumberRequest$Outbound = {
|
|
740
|
-
label?: string | undefined;
|
|
741
|
-
placeholder?: string | undefined;
|
|
742
|
-
required?: boolean | undefined;
|
|
743
|
-
readOnly?: boolean | undefined;
|
|
744
|
-
fontSize: number;
|
|
745
|
-
type: string;
|
|
746
|
-
numberFormat?: string | null | undefined;
|
|
747
|
-
value?: string | undefined;
|
|
748
|
-
minValue?: number | null | undefined;
|
|
749
|
-
maxValue?: number | null | undefined;
|
|
750
|
-
textAlign?: string | undefined;
|
|
751
|
-
lineHeight?: number | null | undefined;
|
|
752
|
-
letterSpacing?: number | null | undefined;
|
|
753
|
-
verticalAlign?: string | null | undefined;
|
|
754
253
|
};
|
|
755
254
|
/** @internal */
|
|
756
|
-
export declare const
|
|
757
|
-
export declare function
|
|
758
|
-
export declare function
|
|
255
|
+
export declare const EnvelopeFieldCreateManyDataRequest2$outboundSchema: z.ZodType<EnvelopeFieldCreateManyDataRequest2$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyDataRequest2>;
|
|
256
|
+
export declare function envelopeFieldCreateManyDataRequest2ToJSON(envelopeFieldCreateManyDataRequest2: EnvelopeFieldCreateManyDataRequest2): string;
|
|
257
|
+
export declare function envelopeFieldCreateManyDataRequest2FromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyDataRequest2, SDKValidationError>;
|
|
759
258
|
/** @internal */
|
|
760
|
-
export declare const
|
|
259
|
+
export declare const EnvelopeFieldCreateManyDataRequest1$inboundSchema: z.ZodType<EnvelopeFieldCreateManyDataRequest1, z.ZodTypeDef, unknown>;
|
|
761
260
|
/** @internal */
|
|
762
|
-
export type
|
|
763
|
-
type: "NUMBER";
|
|
764
|
-
fieldMeta?: EnvelopeFieldCreateManyFieldMetaNumberRequest$Outbound | undefined;
|
|
765
|
-
recipientId: number;
|
|
766
|
-
envelopeItemId?: string | undefined;
|
|
261
|
+
export type EnvelopeFieldCreateManyDataRequest1$Outbound = {
|
|
767
262
|
page: number;
|
|
768
263
|
positionX: number;
|
|
769
264
|
positionY: number;
|
|
770
265
|
width: number;
|
|
771
266
|
height: number;
|
|
772
|
-
};
|
|
773
|
-
/** @internal */
|
|
774
|
-
export declare const EnvelopeFieldCreateManyDataNumber$outboundSchema: z.ZodType<EnvelopeFieldCreateManyDataNumber$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyDataNumber>;
|
|
775
|
-
export declare function envelopeFieldCreateManyDataNumberToJSON(envelopeFieldCreateManyDataNumber: EnvelopeFieldCreateManyDataNumber): string;
|
|
776
|
-
export declare function envelopeFieldCreateManyDataNumberFromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyDataNumber, SDKValidationError>;
|
|
777
|
-
/** @internal */
|
|
778
|
-
export declare const EnvelopeFieldCreateManyTypeTextEnum$inboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTypeTextEnum>;
|
|
779
|
-
/** @internal */
|
|
780
|
-
export declare const EnvelopeFieldCreateManyTypeTextEnum$outboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTypeTextEnum>;
|
|
781
|
-
/** @internal */
|
|
782
|
-
export declare const EnvelopeFieldCreateManyTextAlignText$inboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTextAlignText>;
|
|
783
|
-
/** @internal */
|
|
784
|
-
export declare const EnvelopeFieldCreateManyTextAlignText$outboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTextAlignText>;
|
|
785
|
-
/** @internal */
|
|
786
|
-
export declare const EnvelopeFieldCreateManyVerticalAlignText$inboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyVerticalAlignText>;
|
|
787
|
-
/** @internal */
|
|
788
|
-
export declare const EnvelopeFieldCreateManyVerticalAlignText$outboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyVerticalAlignText>;
|
|
789
|
-
/** @internal */
|
|
790
|
-
export declare const EnvelopeFieldCreateManyFieldMetaTextRequest$inboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaTextRequest, z.ZodTypeDef, unknown>;
|
|
791
|
-
/** @internal */
|
|
792
|
-
export type EnvelopeFieldCreateManyFieldMetaTextRequest$Outbound = {
|
|
793
|
-
label?: string | undefined;
|
|
794
|
-
placeholder?: string | undefined;
|
|
795
|
-
required?: boolean | undefined;
|
|
796
|
-
readOnly?: boolean | undefined;
|
|
797
|
-
fontSize: number;
|
|
798
|
-
type: string;
|
|
799
|
-
text?: string | undefined;
|
|
800
|
-
characterLimit?: number | undefined;
|
|
801
|
-
textAlign?: string | undefined;
|
|
802
|
-
lineHeight?: number | null | undefined;
|
|
803
|
-
letterSpacing?: number | null | undefined;
|
|
804
|
-
verticalAlign?: string | null | undefined;
|
|
805
|
-
};
|
|
806
|
-
/** @internal */
|
|
807
|
-
export declare const EnvelopeFieldCreateManyFieldMetaTextRequest$outboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaTextRequest$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyFieldMetaTextRequest>;
|
|
808
|
-
export declare function envelopeFieldCreateManyFieldMetaTextRequestToJSON(envelopeFieldCreateManyFieldMetaTextRequest: EnvelopeFieldCreateManyFieldMetaTextRequest): string;
|
|
809
|
-
export declare function envelopeFieldCreateManyFieldMetaTextRequestFromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyFieldMetaTextRequest, SDKValidationError>;
|
|
810
|
-
/** @internal */
|
|
811
|
-
export declare const EnvelopeFieldCreateManyDataText$inboundSchema: z.ZodType<EnvelopeFieldCreateManyDataText, z.ZodTypeDef, unknown>;
|
|
812
|
-
/** @internal */
|
|
813
|
-
export type EnvelopeFieldCreateManyDataText$Outbound = {
|
|
814
|
-
type: "TEXT";
|
|
815
|
-
fieldMeta?: EnvelopeFieldCreateManyFieldMetaTextRequest$Outbound | undefined;
|
|
816
267
|
recipientId: number;
|
|
817
268
|
envelopeItemId?: string | undefined;
|
|
818
|
-
page: number;
|
|
819
|
-
positionX: number;
|
|
820
|
-
positionY: number;
|
|
821
|
-
width: number;
|
|
822
|
-
height: number;
|
|
823
|
-
};
|
|
824
|
-
/** @internal */
|
|
825
|
-
export declare const EnvelopeFieldCreateManyDataText$outboundSchema: z.ZodType<EnvelopeFieldCreateManyDataText$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyDataText>;
|
|
826
|
-
export declare function envelopeFieldCreateManyDataTextToJSON(envelopeFieldCreateManyDataText: EnvelopeFieldCreateManyDataText): string;
|
|
827
|
-
export declare function envelopeFieldCreateManyDataTextFromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyDataText, SDKValidationError>;
|
|
828
|
-
/** @internal */
|
|
829
|
-
export declare const EnvelopeFieldCreateManyTypeDateEnum$inboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTypeDateEnum>;
|
|
830
|
-
/** @internal */
|
|
831
|
-
export declare const EnvelopeFieldCreateManyTypeDateEnum$outboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTypeDateEnum>;
|
|
832
|
-
/** @internal */
|
|
833
|
-
export declare const EnvelopeFieldCreateManyTextAlignDate$inboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTextAlignDate>;
|
|
834
|
-
/** @internal */
|
|
835
|
-
export declare const EnvelopeFieldCreateManyTextAlignDate$outboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTextAlignDate>;
|
|
836
|
-
/** @internal */
|
|
837
|
-
export declare const EnvelopeFieldCreateManyFieldMetaDateRequest$inboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaDateRequest, z.ZodTypeDef, unknown>;
|
|
838
|
-
/** @internal */
|
|
839
|
-
export type EnvelopeFieldCreateManyFieldMetaDateRequest$Outbound = {
|
|
840
|
-
label?: string | undefined;
|
|
841
|
-
placeholder?: string | undefined;
|
|
842
|
-
required?: boolean | undefined;
|
|
843
|
-
readOnly?: boolean | undefined;
|
|
844
|
-
fontSize: number;
|
|
845
|
-
type: string;
|
|
846
|
-
textAlign?: string | undefined;
|
|
847
|
-
};
|
|
848
|
-
/** @internal */
|
|
849
|
-
export declare const EnvelopeFieldCreateManyFieldMetaDateRequest$outboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaDateRequest$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyFieldMetaDateRequest>;
|
|
850
|
-
export declare function envelopeFieldCreateManyFieldMetaDateRequestToJSON(envelopeFieldCreateManyFieldMetaDateRequest: EnvelopeFieldCreateManyFieldMetaDateRequest): string;
|
|
851
|
-
export declare function envelopeFieldCreateManyFieldMetaDateRequestFromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyFieldMetaDateRequest, SDKValidationError>;
|
|
852
|
-
/** @internal */
|
|
853
|
-
export declare const EnvelopeFieldCreateManyDataDate$inboundSchema: z.ZodType<EnvelopeFieldCreateManyDataDate, z.ZodTypeDef, unknown>;
|
|
854
|
-
/** @internal */
|
|
855
|
-
export type EnvelopeFieldCreateManyDataDate$Outbound = {
|
|
856
|
-
type: "DATE";
|
|
857
|
-
fieldMeta?: EnvelopeFieldCreateManyFieldMetaDateRequest$Outbound | undefined;
|
|
858
|
-
recipientId: number;
|
|
859
|
-
envelopeItemId?: string | undefined;
|
|
860
|
-
page: number;
|
|
861
|
-
positionX: number;
|
|
862
|
-
positionY: number;
|
|
863
|
-
width: number;
|
|
864
|
-
height: number;
|
|
865
|
-
};
|
|
866
|
-
/** @internal */
|
|
867
|
-
export declare const EnvelopeFieldCreateManyDataDate$outboundSchema: z.ZodType<EnvelopeFieldCreateManyDataDate$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyDataDate>;
|
|
868
|
-
export declare function envelopeFieldCreateManyDataDateToJSON(envelopeFieldCreateManyDataDate: EnvelopeFieldCreateManyDataDate): string;
|
|
869
|
-
export declare function envelopeFieldCreateManyDataDateFromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyDataDate, SDKValidationError>;
|
|
870
|
-
/** @internal */
|
|
871
|
-
export declare const EnvelopeFieldCreateManyTypeEmailEnum$inboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTypeEmailEnum>;
|
|
872
|
-
/** @internal */
|
|
873
|
-
export declare const EnvelopeFieldCreateManyTypeEmailEnum$outboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTypeEmailEnum>;
|
|
874
|
-
/** @internal */
|
|
875
|
-
export declare const EnvelopeFieldCreateManyTextAlignEmail$inboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTextAlignEmail>;
|
|
876
|
-
/** @internal */
|
|
877
|
-
export declare const EnvelopeFieldCreateManyTextAlignEmail$outboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTextAlignEmail>;
|
|
878
|
-
/** @internal */
|
|
879
|
-
export declare const EnvelopeFieldCreateManyFieldMetaEmailRequest$inboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaEmailRequest, z.ZodTypeDef, unknown>;
|
|
880
|
-
/** @internal */
|
|
881
|
-
export type EnvelopeFieldCreateManyFieldMetaEmailRequest$Outbound = {
|
|
882
|
-
label?: string | undefined;
|
|
883
|
-
placeholder?: string | undefined;
|
|
884
|
-
required?: boolean | undefined;
|
|
885
|
-
readOnly?: boolean | undefined;
|
|
886
|
-
fontSize: number;
|
|
887
|
-
type: string;
|
|
888
|
-
textAlign?: string | undefined;
|
|
889
|
-
};
|
|
890
|
-
/** @internal */
|
|
891
|
-
export declare const EnvelopeFieldCreateManyFieldMetaEmailRequest$outboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaEmailRequest$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyFieldMetaEmailRequest>;
|
|
892
|
-
export declare function envelopeFieldCreateManyFieldMetaEmailRequestToJSON(envelopeFieldCreateManyFieldMetaEmailRequest: EnvelopeFieldCreateManyFieldMetaEmailRequest): string;
|
|
893
|
-
export declare function envelopeFieldCreateManyFieldMetaEmailRequestFromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyFieldMetaEmailRequest, SDKValidationError>;
|
|
894
|
-
/** @internal */
|
|
895
|
-
export declare const EnvelopeFieldCreateManyDataEmail$inboundSchema: z.ZodType<EnvelopeFieldCreateManyDataEmail, z.ZodTypeDef, unknown>;
|
|
896
|
-
/** @internal */
|
|
897
|
-
export type EnvelopeFieldCreateManyDataEmail$Outbound = {
|
|
898
|
-
type: "EMAIL";
|
|
899
|
-
fieldMeta?: EnvelopeFieldCreateManyFieldMetaEmailRequest$Outbound | undefined;
|
|
900
|
-
recipientId: number;
|
|
901
|
-
envelopeItemId?: string | undefined;
|
|
902
|
-
page: number;
|
|
903
|
-
positionX: number;
|
|
904
|
-
positionY: number;
|
|
905
|
-
width: number;
|
|
906
|
-
height: number;
|
|
907
|
-
};
|
|
908
|
-
/** @internal */
|
|
909
|
-
export declare const EnvelopeFieldCreateManyDataEmail$outboundSchema: z.ZodType<EnvelopeFieldCreateManyDataEmail$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyDataEmail>;
|
|
910
|
-
export declare function envelopeFieldCreateManyDataEmailToJSON(envelopeFieldCreateManyDataEmail: EnvelopeFieldCreateManyDataEmail): string;
|
|
911
|
-
export declare function envelopeFieldCreateManyDataEmailFromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyDataEmail, SDKValidationError>;
|
|
912
|
-
/** @internal */
|
|
913
|
-
export declare const EnvelopeFieldCreateManyTypeNameEnum$inboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTypeNameEnum>;
|
|
914
|
-
/** @internal */
|
|
915
|
-
export declare const EnvelopeFieldCreateManyTypeNameEnum$outboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTypeNameEnum>;
|
|
916
|
-
/** @internal */
|
|
917
|
-
export declare const EnvelopeFieldCreateManyTextAlignName$inboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTextAlignName>;
|
|
918
|
-
/** @internal */
|
|
919
|
-
export declare const EnvelopeFieldCreateManyTextAlignName$outboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTextAlignName>;
|
|
920
|
-
/** @internal */
|
|
921
|
-
export declare const EnvelopeFieldCreateManyFieldMetaNameRequest$inboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaNameRequest, z.ZodTypeDef, unknown>;
|
|
922
|
-
/** @internal */
|
|
923
|
-
export type EnvelopeFieldCreateManyFieldMetaNameRequest$Outbound = {
|
|
924
|
-
label?: string | undefined;
|
|
925
|
-
placeholder?: string | undefined;
|
|
926
|
-
required?: boolean | undefined;
|
|
927
|
-
readOnly?: boolean | undefined;
|
|
928
|
-
fontSize: number;
|
|
929
|
-
type: string;
|
|
930
|
-
textAlign?: string | undefined;
|
|
931
|
-
};
|
|
932
|
-
/** @internal */
|
|
933
|
-
export declare const EnvelopeFieldCreateManyFieldMetaNameRequest$outboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaNameRequest$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyFieldMetaNameRequest>;
|
|
934
|
-
export declare function envelopeFieldCreateManyFieldMetaNameRequestToJSON(envelopeFieldCreateManyFieldMetaNameRequest: EnvelopeFieldCreateManyFieldMetaNameRequest): string;
|
|
935
|
-
export declare function envelopeFieldCreateManyFieldMetaNameRequestFromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyFieldMetaNameRequest, SDKValidationError>;
|
|
936
|
-
/** @internal */
|
|
937
|
-
export declare const EnvelopeFieldCreateManyDataName$inboundSchema: z.ZodType<EnvelopeFieldCreateManyDataName, z.ZodTypeDef, unknown>;
|
|
938
|
-
/** @internal */
|
|
939
|
-
export type EnvelopeFieldCreateManyDataName$Outbound = {
|
|
940
|
-
type: "NAME";
|
|
941
|
-
fieldMeta?: EnvelopeFieldCreateManyFieldMetaNameRequest$Outbound | undefined;
|
|
942
|
-
recipientId: number;
|
|
943
|
-
envelopeItemId?: string | undefined;
|
|
944
|
-
page: number;
|
|
945
|
-
positionX: number;
|
|
946
|
-
positionY: number;
|
|
947
|
-
width: number;
|
|
948
|
-
height: number;
|
|
949
|
-
};
|
|
950
|
-
/** @internal */
|
|
951
|
-
export declare const EnvelopeFieldCreateManyDataName$outboundSchema: z.ZodType<EnvelopeFieldCreateManyDataName$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyDataName>;
|
|
952
|
-
export declare function envelopeFieldCreateManyDataNameToJSON(envelopeFieldCreateManyDataName: EnvelopeFieldCreateManyDataName): string;
|
|
953
|
-
export declare function envelopeFieldCreateManyDataNameFromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyDataName, SDKValidationError>;
|
|
954
|
-
/** @internal */
|
|
955
|
-
export declare const EnvelopeFieldCreateManyTypeInitialsEnum$inboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTypeInitialsEnum>;
|
|
956
|
-
/** @internal */
|
|
957
|
-
export declare const EnvelopeFieldCreateManyTypeInitialsEnum$outboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTypeInitialsEnum>;
|
|
958
|
-
/** @internal */
|
|
959
|
-
export declare const EnvelopeFieldCreateManyTextAlignInitials$inboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTextAlignInitials>;
|
|
960
|
-
/** @internal */
|
|
961
|
-
export declare const EnvelopeFieldCreateManyTextAlignInitials$outboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTextAlignInitials>;
|
|
962
|
-
/** @internal */
|
|
963
|
-
export declare const EnvelopeFieldCreateManyFieldMetaInitialsRequest$inboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaInitialsRequest, z.ZodTypeDef, unknown>;
|
|
964
|
-
/** @internal */
|
|
965
|
-
export type EnvelopeFieldCreateManyFieldMetaInitialsRequest$Outbound = {
|
|
966
|
-
label?: string | undefined;
|
|
967
|
-
placeholder?: string | undefined;
|
|
968
|
-
required?: boolean | undefined;
|
|
969
|
-
readOnly?: boolean | undefined;
|
|
970
|
-
fontSize: number;
|
|
971
|
-
type: string;
|
|
972
|
-
textAlign?: string | undefined;
|
|
973
|
-
};
|
|
974
|
-
/** @internal */
|
|
975
|
-
export declare const EnvelopeFieldCreateManyFieldMetaInitialsRequest$outboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaInitialsRequest$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyFieldMetaInitialsRequest>;
|
|
976
|
-
export declare function envelopeFieldCreateManyFieldMetaInitialsRequestToJSON(envelopeFieldCreateManyFieldMetaInitialsRequest: EnvelopeFieldCreateManyFieldMetaInitialsRequest): string;
|
|
977
|
-
export declare function envelopeFieldCreateManyFieldMetaInitialsRequestFromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyFieldMetaInitialsRequest, SDKValidationError>;
|
|
978
|
-
/** @internal */
|
|
979
|
-
export declare const EnvelopeFieldCreateManyDataInitials$inboundSchema: z.ZodType<EnvelopeFieldCreateManyDataInitials, z.ZodTypeDef, unknown>;
|
|
980
|
-
/** @internal */
|
|
981
|
-
export type EnvelopeFieldCreateManyDataInitials$Outbound = {
|
|
982
|
-
type: "INITIALS";
|
|
983
|
-
fieldMeta?: EnvelopeFieldCreateManyFieldMetaInitialsRequest$Outbound | undefined;
|
|
984
|
-
recipientId: number;
|
|
985
|
-
envelopeItemId?: string | undefined;
|
|
986
|
-
page: number;
|
|
987
|
-
positionX: number;
|
|
988
|
-
positionY: number;
|
|
989
|
-
width: number;
|
|
990
|
-
height: number;
|
|
991
|
-
};
|
|
992
|
-
/** @internal */
|
|
993
|
-
export declare const EnvelopeFieldCreateManyDataInitials$outboundSchema: z.ZodType<EnvelopeFieldCreateManyDataInitials$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyDataInitials>;
|
|
994
|
-
export declare function envelopeFieldCreateManyDataInitialsToJSON(envelopeFieldCreateManyDataInitials: EnvelopeFieldCreateManyDataInitials): string;
|
|
995
|
-
export declare function envelopeFieldCreateManyDataInitialsFromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyDataInitials, SDKValidationError>;
|
|
996
|
-
/** @internal */
|
|
997
|
-
export declare const EnvelopeFieldCreateManyDataFreeSignature$inboundSchema: z.ZodType<EnvelopeFieldCreateManyDataFreeSignature, z.ZodTypeDef, unknown>;
|
|
998
|
-
/** @internal */
|
|
999
|
-
export type EnvelopeFieldCreateManyDataFreeSignature$Outbound = {
|
|
1000
|
-
type: "FREE_SIGNATURE";
|
|
1001
|
-
recipientId: number;
|
|
1002
|
-
envelopeItemId?: string | undefined;
|
|
1003
|
-
page: number;
|
|
1004
|
-
positionX: number;
|
|
1005
|
-
positionY: number;
|
|
1006
|
-
width: number;
|
|
1007
|
-
height: number;
|
|
1008
|
-
};
|
|
1009
|
-
/** @internal */
|
|
1010
|
-
export declare const EnvelopeFieldCreateManyDataFreeSignature$outboundSchema: z.ZodType<EnvelopeFieldCreateManyDataFreeSignature$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyDataFreeSignature>;
|
|
1011
|
-
export declare function envelopeFieldCreateManyDataFreeSignatureToJSON(envelopeFieldCreateManyDataFreeSignature: EnvelopeFieldCreateManyDataFreeSignature): string;
|
|
1012
|
-
export declare function envelopeFieldCreateManyDataFreeSignatureFromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyDataFreeSignature, SDKValidationError>;
|
|
1013
|
-
/** @internal */
|
|
1014
|
-
export declare const EnvelopeFieldCreateManyTypeSignatureEnum$inboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTypeSignatureEnum>;
|
|
1015
|
-
/** @internal */
|
|
1016
|
-
export declare const EnvelopeFieldCreateManyTypeSignatureEnum$outboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTypeSignatureEnum>;
|
|
1017
|
-
/** @internal */
|
|
1018
|
-
export declare const EnvelopeFieldCreateManyFieldMetaSignatureRequest$inboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaSignatureRequest, z.ZodTypeDef, unknown>;
|
|
1019
|
-
/** @internal */
|
|
1020
|
-
export type EnvelopeFieldCreateManyFieldMetaSignatureRequest$Outbound = {
|
|
1021
|
-
label?: string | undefined;
|
|
1022
|
-
placeholder?: string | undefined;
|
|
1023
|
-
required?: boolean | undefined;
|
|
1024
|
-
readOnly?: boolean | undefined;
|
|
1025
|
-
fontSize: number;
|
|
1026
|
-
type: string;
|
|
1027
|
-
};
|
|
1028
|
-
/** @internal */
|
|
1029
|
-
export declare const EnvelopeFieldCreateManyFieldMetaSignatureRequest$outboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaSignatureRequest$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyFieldMetaSignatureRequest>;
|
|
1030
|
-
export declare function envelopeFieldCreateManyFieldMetaSignatureRequestToJSON(envelopeFieldCreateManyFieldMetaSignatureRequest: EnvelopeFieldCreateManyFieldMetaSignatureRequest): string;
|
|
1031
|
-
export declare function envelopeFieldCreateManyFieldMetaSignatureRequestFromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyFieldMetaSignatureRequest, SDKValidationError>;
|
|
1032
|
-
/** @internal */
|
|
1033
|
-
export declare const EnvelopeFieldCreateManyDataSignature$inboundSchema: z.ZodType<EnvelopeFieldCreateManyDataSignature, z.ZodTypeDef, unknown>;
|
|
1034
|
-
/** @internal */
|
|
1035
|
-
export type EnvelopeFieldCreateManyDataSignature$Outbound = {
|
|
1036
|
-
type: "SIGNATURE";
|
|
1037
|
-
fieldMeta?: EnvelopeFieldCreateManyFieldMetaSignatureRequest$Outbound | undefined;
|
|
1038
|
-
recipientId: number;
|
|
1039
|
-
envelopeItemId?: string | undefined;
|
|
1040
|
-
page: number;
|
|
1041
|
-
positionX: number;
|
|
1042
|
-
positionY: number;
|
|
1043
|
-
width: number;
|
|
1044
|
-
height: number;
|
|
1045
269
|
};
|
|
1046
270
|
/** @internal */
|
|
1047
|
-
export declare const
|
|
1048
|
-
export declare function
|
|
1049
|
-
export declare function
|
|
271
|
+
export declare const EnvelopeFieldCreateManyDataRequest1$outboundSchema: z.ZodType<EnvelopeFieldCreateManyDataRequest1$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyDataRequest1>;
|
|
272
|
+
export declare function envelopeFieldCreateManyDataRequest1ToJSON(envelopeFieldCreateManyDataRequest1: EnvelopeFieldCreateManyDataRequest1): string;
|
|
273
|
+
export declare function envelopeFieldCreateManyDataRequest1FromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyDataRequest1, SDKValidationError>;
|
|
1050
274
|
/** @internal */
|
|
1051
275
|
export declare const EnvelopeFieldCreateManyDataUnion$inboundSchema: z.ZodType<EnvelopeFieldCreateManyDataUnion, z.ZodTypeDef, unknown>;
|
|
1052
276
|
/** @internal */
|
|
1053
|
-
export type EnvelopeFieldCreateManyDataUnion$Outbound =
|
|
277
|
+
export type EnvelopeFieldCreateManyDataUnion$Outbound = EnvelopeFieldCreateManyDataRequest1$Outbound | EnvelopeFieldCreateManyDataRequest2$Outbound;
|
|
1054
278
|
/** @internal */
|
|
1055
279
|
export declare const EnvelopeFieldCreateManyDataUnion$outboundSchema: z.ZodType<EnvelopeFieldCreateManyDataUnion$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyDataUnion>;
|
|
1056
280
|
export declare function envelopeFieldCreateManyDataUnionToJSON(envelopeFieldCreateManyDataUnion: EnvelopeFieldCreateManyDataUnion): string;
|
|
@@ -1060,123 +284,123 @@ export declare const EnvelopeFieldCreateManyRequest$inboundSchema: z.ZodType<Env
|
|
|
1060
284
|
/** @internal */
|
|
1061
285
|
export type EnvelopeFieldCreateManyRequest$Outbound = {
|
|
1062
286
|
envelopeId: string;
|
|
1063
|
-
data: Array<
|
|
287
|
+
data: Array<EnvelopeFieldCreateManyDataRequest1$Outbound | EnvelopeFieldCreateManyDataRequest2$Outbound>;
|
|
1064
288
|
};
|
|
1065
289
|
/** @internal */
|
|
1066
290
|
export declare const EnvelopeFieldCreateManyRequest$outboundSchema: z.ZodType<EnvelopeFieldCreateManyRequest$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyRequest>;
|
|
1067
291
|
export declare function envelopeFieldCreateManyRequestToJSON(envelopeFieldCreateManyRequest: EnvelopeFieldCreateManyRequest): string;
|
|
1068
292
|
export declare function envelopeFieldCreateManyRequestFromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyRequest, SDKValidationError>;
|
|
1069
293
|
/** @internal */
|
|
1070
|
-
export declare const
|
|
294
|
+
export declare const EnvelopeFieldCreateManyTypeEnum$inboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTypeEnum>;
|
|
1071
295
|
/** @internal */
|
|
1072
|
-
export declare const
|
|
296
|
+
export declare const EnvelopeFieldCreateManyTypeEnum$outboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTypeEnum>;
|
|
1073
297
|
/** @internal */
|
|
1074
|
-
export declare const
|
|
298
|
+
export declare const EnvelopeFieldCreateManyValue3$inboundSchema: z.ZodType<EnvelopeFieldCreateManyValue3, z.ZodTypeDef, unknown>;
|
|
1075
299
|
/** @internal */
|
|
1076
|
-
export type
|
|
300
|
+
export type EnvelopeFieldCreateManyValue3$Outbound = {
|
|
1077
301
|
value: string;
|
|
1078
302
|
};
|
|
1079
303
|
/** @internal */
|
|
1080
|
-
export declare const
|
|
1081
|
-
export declare function
|
|
1082
|
-
export declare function
|
|
304
|
+
export declare const EnvelopeFieldCreateManyValue3$outboundSchema: z.ZodType<EnvelopeFieldCreateManyValue3$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyValue3>;
|
|
305
|
+
export declare function envelopeFieldCreateManyValue3ToJSON(envelopeFieldCreateManyValue3: EnvelopeFieldCreateManyValue3): string;
|
|
306
|
+
export declare function envelopeFieldCreateManyValue3FromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyValue3, SDKValidationError>;
|
|
1083
307
|
/** @internal */
|
|
1084
|
-
export declare const
|
|
308
|
+
export declare const EnvelopeFieldCreateManyFieldMetaDropdown$inboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaDropdown, z.ZodTypeDef, unknown>;
|
|
1085
309
|
/** @internal */
|
|
1086
|
-
export type
|
|
310
|
+
export type EnvelopeFieldCreateManyFieldMetaDropdown$Outbound = {
|
|
1087
311
|
label?: string | undefined;
|
|
1088
312
|
placeholder?: string | undefined;
|
|
1089
313
|
required?: boolean | undefined;
|
|
1090
314
|
readOnly?: boolean | undefined;
|
|
1091
315
|
fontSize: number;
|
|
1092
316
|
type: "dropdown";
|
|
1093
|
-
values?: Array<
|
|
317
|
+
values?: Array<EnvelopeFieldCreateManyValue3$Outbound> | undefined;
|
|
1094
318
|
defaultValue?: string | undefined;
|
|
1095
319
|
};
|
|
1096
320
|
/** @internal */
|
|
1097
|
-
export declare const
|
|
1098
|
-
export declare function
|
|
1099
|
-
export declare function
|
|
321
|
+
export declare const EnvelopeFieldCreateManyFieldMetaDropdown$outboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaDropdown$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyFieldMetaDropdown>;
|
|
322
|
+
export declare function envelopeFieldCreateManyFieldMetaDropdownToJSON(envelopeFieldCreateManyFieldMetaDropdown: EnvelopeFieldCreateManyFieldMetaDropdown): string;
|
|
323
|
+
export declare function envelopeFieldCreateManyFieldMetaDropdownFromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyFieldMetaDropdown, SDKValidationError>;
|
|
1100
324
|
/** @internal */
|
|
1101
|
-
export declare const
|
|
325
|
+
export declare const EnvelopeFieldCreateManyValue2$inboundSchema: z.ZodType<EnvelopeFieldCreateManyValue2, z.ZodTypeDef, unknown>;
|
|
1102
326
|
/** @internal */
|
|
1103
|
-
export type
|
|
327
|
+
export type EnvelopeFieldCreateManyValue2$Outbound = {
|
|
1104
328
|
id: number;
|
|
1105
329
|
checked: boolean;
|
|
1106
330
|
value: string;
|
|
1107
331
|
};
|
|
1108
332
|
/** @internal */
|
|
1109
|
-
export declare const
|
|
1110
|
-
export declare function
|
|
1111
|
-
export declare function
|
|
333
|
+
export declare const EnvelopeFieldCreateManyValue2$outboundSchema: z.ZodType<EnvelopeFieldCreateManyValue2$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyValue2>;
|
|
334
|
+
export declare function envelopeFieldCreateManyValue2ToJSON(envelopeFieldCreateManyValue2: EnvelopeFieldCreateManyValue2): string;
|
|
335
|
+
export declare function envelopeFieldCreateManyValue2FromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyValue2, SDKValidationError>;
|
|
1112
336
|
/** @internal */
|
|
1113
|
-
export declare const
|
|
337
|
+
export declare const EnvelopeFieldCreateManyDirection2$inboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyDirection2>;
|
|
1114
338
|
/** @internal */
|
|
1115
|
-
export declare const
|
|
339
|
+
export declare const EnvelopeFieldCreateManyDirection2$outboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyDirection2>;
|
|
1116
340
|
/** @internal */
|
|
1117
|
-
export declare const
|
|
341
|
+
export declare const EnvelopeFieldCreateManyFieldMetaCheckbox$inboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaCheckbox, z.ZodTypeDef, unknown>;
|
|
1118
342
|
/** @internal */
|
|
1119
|
-
export type
|
|
343
|
+
export type EnvelopeFieldCreateManyFieldMetaCheckbox$Outbound = {
|
|
1120
344
|
label?: string | undefined;
|
|
1121
345
|
placeholder?: string | undefined;
|
|
1122
346
|
required?: boolean | undefined;
|
|
1123
347
|
readOnly?: boolean | undefined;
|
|
1124
348
|
fontSize: number;
|
|
1125
349
|
type: "checkbox";
|
|
1126
|
-
values?: Array<
|
|
350
|
+
values?: Array<EnvelopeFieldCreateManyValue2$Outbound> | undefined;
|
|
1127
351
|
validationRule?: string | undefined;
|
|
1128
352
|
validationLength?: number | undefined;
|
|
1129
353
|
direction: string;
|
|
1130
354
|
};
|
|
1131
355
|
/** @internal */
|
|
1132
|
-
export declare const
|
|
1133
|
-
export declare function
|
|
1134
|
-
export declare function
|
|
356
|
+
export declare const EnvelopeFieldCreateManyFieldMetaCheckbox$outboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaCheckbox$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyFieldMetaCheckbox>;
|
|
357
|
+
export declare function envelopeFieldCreateManyFieldMetaCheckboxToJSON(envelopeFieldCreateManyFieldMetaCheckbox: EnvelopeFieldCreateManyFieldMetaCheckbox): string;
|
|
358
|
+
export declare function envelopeFieldCreateManyFieldMetaCheckboxFromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyFieldMetaCheckbox, SDKValidationError>;
|
|
1135
359
|
/** @internal */
|
|
1136
|
-
export declare const
|
|
360
|
+
export declare const EnvelopeFieldCreateManyValue1$inboundSchema: z.ZodType<EnvelopeFieldCreateManyValue1, z.ZodTypeDef, unknown>;
|
|
1137
361
|
/** @internal */
|
|
1138
|
-
export type
|
|
362
|
+
export type EnvelopeFieldCreateManyValue1$Outbound = {
|
|
1139
363
|
id: number;
|
|
1140
364
|
checked: boolean;
|
|
1141
365
|
value: string;
|
|
1142
366
|
};
|
|
1143
367
|
/** @internal */
|
|
1144
|
-
export declare const
|
|
1145
|
-
export declare function
|
|
1146
|
-
export declare function
|
|
368
|
+
export declare const EnvelopeFieldCreateManyValue1$outboundSchema: z.ZodType<EnvelopeFieldCreateManyValue1$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyValue1>;
|
|
369
|
+
export declare function envelopeFieldCreateManyValue1ToJSON(envelopeFieldCreateManyValue1: EnvelopeFieldCreateManyValue1): string;
|
|
370
|
+
export declare function envelopeFieldCreateManyValue1FromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyValue1, SDKValidationError>;
|
|
1147
371
|
/** @internal */
|
|
1148
|
-
export declare const
|
|
372
|
+
export declare const EnvelopeFieldCreateManyDirection1$inboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyDirection1>;
|
|
1149
373
|
/** @internal */
|
|
1150
|
-
export declare const
|
|
374
|
+
export declare const EnvelopeFieldCreateManyDirection1$outboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyDirection1>;
|
|
1151
375
|
/** @internal */
|
|
1152
|
-
export declare const
|
|
376
|
+
export declare const EnvelopeFieldCreateManyFieldMetaRadio$inboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaRadio, z.ZodTypeDef, unknown>;
|
|
1153
377
|
/** @internal */
|
|
1154
|
-
export type
|
|
378
|
+
export type EnvelopeFieldCreateManyFieldMetaRadio$Outbound = {
|
|
1155
379
|
label?: string | undefined;
|
|
1156
380
|
placeholder?: string | undefined;
|
|
1157
381
|
required?: boolean | undefined;
|
|
1158
382
|
readOnly?: boolean | undefined;
|
|
1159
383
|
fontSize: number;
|
|
1160
384
|
type: "radio";
|
|
1161
|
-
values?: Array<
|
|
385
|
+
values?: Array<EnvelopeFieldCreateManyValue1$Outbound> | undefined;
|
|
1162
386
|
direction: string;
|
|
1163
387
|
};
|
|
1164
388
|
/** @internal */
|
|
1165
|
-
export declare const
|
|
1166
|
-
export declare function
|
|
1167
|
-
export declare function
|
|
389
|
+
export declare const EnvelopeFieldCreateManyFieldMetaRadio$outboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaRadio$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyFieldMetaRadio>;
|
|
390
|
+
export declare function envelopeFieldCreateManyFieldMetaRadioToJSON(envelopeFieldCreateManyFieldMetaRadio: EnvelopeFieldCreateManyFieldMetaRadio): string;
|
|
391
|
+
export declare function envelopeFieldCreateManyFieldMetaRadioFromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyFieldMetaRadio, SDKValidationError>;
|
|
1168
392
|
/** @internal */
|
|
1169
|
-
export declare const
|
|
393
|
+
export declare const EnvelopeFieldCreateManyTextAlign6$inboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTextAlign6>;
|
|
1170
394
|
/** @internal */
|
|
1171
|
-
export declare const
|
|
395
|
+
export declare const EnvelopeFieldCreateManyTextAlign6$outboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTextAlign6>;
|
|
1172
396
|
/** @internal */
|
|
1173
|
-
export declare const
|
|
397
|
+
export declare const EnvelopeFieldCreateManyVerticalAlign2$inboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyVerticalAlign2>;
|
|
1174
398
|
/** @internal */
|
|
1175
|
-
export declare const
|
|
399
|
+
export declare const EnvelopeFieldCreateManyVerticalAlign2$outboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyVerticalAlign2>;
|
|
1176
400
|
/** @internal */
|
|
1177
|
-
export declare const
|
|
401
|
+
export declare const EnvelopeFieldCreateManyFieldMetaNumber$inboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaNumber, z.ZodTypeDef, unknown>;
|
|
1178
402
|
/** @internal */
|
|
1179
|
-
export type
|
|
403
|
+
export type EnvelopeFieldCreateManyFieldMetaNumber$Outbound = {
|
|
1180
404
|
label?: string | undefined;
|
|
1181
405
|
placeholder?: string | undefined;
|
|
1182
406
|
required?: boolean | undefined;
|
|
@@ -1193,21 +417,21 @@ export type EnvelopeFieldCreateManyFieldMetaNumberResponse$Outbound = {
|
|
|
1193
417
|
verticalAlign?: string | null | undefined;
|
|
1194
418
|
};
|
|
1195
419
|
/** @internal */
|
|
1196
|
-
export declare const
|
|
1197
|
-
export declare function
|
|
1198
|
-
export declare function
|
|
420
|
+
export declare const EnvelopeFieldCreateManyFieldMetaNumber$outboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaNumber$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyFieldMetaNumber>;
|
|
421
|
+
export declare function envelopeFieldCreateManyFieldMetaNumberToJSON(envelopeFieldCreateManyFieldMetaNumber: EnvelopeFieldCreateManyFieldMetaNumber): string;
|
|
422
|
+
export declare function envelopeFieldCreateManyFieldMetaNumberFromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyFieldMetaNumber, SDKValidationError>;
|
|
1199
423
|
/** @internal */
|
|
1200
|
-
export declare const
|
|
424
|
+
export declare const EnvelopeFieldCreateManyTextAlign5$inboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTextAlign5>;
|
|
1201
425
|
/** @internal */
|
|
1202
|
-
export declare const
|
|
426
|
+
export declare const EnvelopeFieldCreateManyTextAlign5$outboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTextAlign5>;
|
|
1203
427
|
/** @internal */
|
|
1204
|
-
export declare const
|
|
428
|
+
export declare const EnvelopeFieldCreateManyVerticalAlign1$inboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyVerticalAlign1>;
|
|
1205
429
|
/** @internal */
|
|
1206
|
-
export declare const
|
|
430
|
+
export declare const EnvelopeFieldCreateManyVerticalAlign1$outboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyVerticalAlign1>;
|
|
1207
431
|
/** @internal */
|
|
1208
|
-
export declare const
|
|
432
|
+
export declare const EnvelopeFieldCreateManyFieldMetaText$inboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaText, z.ZodTypeDef, unknown>;
|
|
1209
433
|
/** @internal */
|
|
1210
|
-
export type
|
|
434
|
+
export type EnvelopeFieldCreateManyFieldMetaText$Outbound = {
|
|
1211
435
|
label?: string | undefined;
|
|
1212
436
|
placeholder?: string | undefined;
|
|
1213
437
|
required?: boolean | undefined;
|
|
@@ -1222,17 +446,17 @@ export type EnvelopeFieldCreateManyFieldMetaTextResponse$Outbound = {
|
|
|
1222
446
|
verticalAlign?: string | null | undefined;
|
|
1223
447
|
};
|
|
1224
448
|
/** @internal */
|
|
1225
|
-
export declare const
|
|
1226
|
-
export declare function
|
|
1227
|
-
export declare function
|
|
449
|
+
export declare const EnvelopeFieldCreateManyFieldMetaText$outboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaText$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyFieldMetaText>;
|
|
450
|
+
export declare function envelopeFieldCreateManyFieldMetaTextToJSON(envelopeFieldCreateManyFieldMetaText: EnvelopeFieldCreateManyFieldMetaText): string;
|
|
451
|
+
export declare function envelopeFieldCreateManyFieldMetaTextFromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyFieldMetaText, SDKValidationError>;
|
|
1228
452
|
/** @internal */
|
|
1229
|
-
export declare const
|
|
453
|
+
export declare const EnvelopeFieldCreateManyTextAlign4$inboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTextAlign4>;
|
|
1230
454
|
/** @internal */
|
|
1231
|
-
export declare const
|
|
455
|
+
export declare const EnvelopeFieldCreateManyTextAlign4$outboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTextAlign4>;
|
|
1232
456
|
/** @internal */
|
|
1233
|
-
export declare const
|
|
457
|
+
export declare const EnvelopeFieldCreateManyFieldMetaDate$inboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaDate, z.ZodTypeDef, unknown>;
|
|
1234
458
|
/** @internal */
|
|
1235
|
-
export type
|
|
459
|
+
export type EnvelopeFieldCreateManyFieldMetaDate$Outbound = {
|
|
1236
460
|
label?: string | undefined;
|
|
1237
461
|
placeholder?: string | undefined;
|
|
1238
462
|
required?: boolean | undefined;
|
|
@@ -1242,17 +466,17 @@ export type EnvelopeFieldCreateManyFieldMetaDateResponse$Outbound = {
|
|
|
1242
466
|
textAlign?: string | undefined;
|
|
1243
467
|
};
|
|
1244
468
|
/** @internal */
|
|
1245
|
-
export declare const
|
|
1246
|
-
export declare function
|
|
1247
|
-
export declare function
|
|
469
|
+
export declare const EnvelopeFieldCreateManyFieldMetaDate$outboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaDate$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyFieldMetaDate>;
|
|
470
|
+
export declare function envelopeFieldCreateManyFieldMetaDateToJSON(envelopeFieldCreateManyFieldMetaDate: EnvelopeFieldCreateManyFieldMetaDate): string;
|
|
471
|
+
export declare function envelopeFieldCreateManyFieldMetaDateFromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyFieldMetaDate, SDKValidationError>;
|
|
1248
472
|
/** @internal */
|
|
1249
|
-
export declare const
|
|
473
|
+
export declare const EnvelopeFieldCreateManyTextAlign3$inboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTextAlign3>;
|
|
1250
474
|
/** @internal */
|
|
1251
|
-
export declare const
|
|
475
|
+
export declare const EnvelopeFieldCreateManyTextAlign3$outboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTextAlign3>;
|
|
1252
476
|
/** @internal */
|
|
1253
|
-
export declare const
|
|
477
|
+
export declare const EnvelopeFieldCreateManyFieldMetaEmail$inboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaEmail, z.ZodTypeDef, unknown>;
|
|
1254
478
|
/** @internal */
|
|
1255
|
-
export type
|
|
479
|
+
export type EnvelopeFieldCreateManyFieldMetaEmail$Outbound = {
|
|
1256
480
|
label?: string | undefined;
|
|
1257
481
|
placeholder?: string | undefined;
|
|
1258
482
|
required?: boolean | undefined;
|
|
@@ -1262,17 +486,17 @@ export type EnvelopeFieldCreateManyFieldMetaEmailResponse$Outbound = {
|
|
|
1262
486
|
textAlign?: string | undefined;
|
|
1263
487
|
};
|
|
1264
488
|
/** @internal */
|
|
1265
|
-
export declare const
|
|
1266
|
-
export declare function
|
|
1267
|
-
export declare function
|
|
489
|
+
export declare const EnvelopeFieldCreateManyFieldMetaEmail$outboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaEmail$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyFieldMetaEmail>;
|
|
490
|
+
export declare function envelopeFieldCreateManyFieldMetaEmailToJSON(envelopeFieldCreateManyFieldMetaEmail: EnvelopeFieldCreateManyFieldMetaEmail): string;
|
|
491
|
+
export declare function envelopeFieldCreateManyFieldMetaEmailFromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyFieldMetaEmail, SDKValidationError>;
|
|
1268
492
|
/** @internal */
|
|
1269
|
-
export declare const
|
|
493
|
+
export declare const EnvelopeFieldCreateManyTextAlign2$inboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTextAlign2>;
|
|
1270
494
|
/** @internal */
|
|
1271
|
-
export declare const
|
|
495
|
+
export declare const EnvelopeFieldCreateManyTextAlign2$outboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTextAlign2>;
|
|
1272
496
|
/** @internal */
|
|
1273
|
-
export declare const
|
|
497
|
+
export declare const EnvelopeFieldCreateManyFieldMetaName$inboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaName, z.ZodTypeDef, unknown>;
|
|
1274
498
|
/** @internal */
|
|
1275
|
-
export type
|
|
499
|
+
export type EnvelopeFieldCreateManyFieldMetaName$Outbound = {
|
|
1276
500
|
label?: string | undefined;
|
|
1277
501
|
placeholder?: string | undefined;
|
|
1278
502
|
required?: boolean | undefined;
|
|
@@ -1282,17 +506,17 @@ export type EnvelopeFieldCreateManyFieldMetaNameResponse$Outbound = {
|
|
|
1282
506
|
textAlign?: string | undefined;
|
|
1283
507
|
};
|
|
1284
508
|
/** @internal */
|
|
1285
|
-
export declare const
|
|
1286
|
-
export declare function
|
|
1287
|
-
export declare function
|
|
509
|
+
export declare const EnvelopeFieldCreateManyFieldMetaName$outboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaName$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyFieldMetaName>;
|
|
510
|
+
export declare function envelopeFieldCreateManyFieldMetaNameToJSON(envelopeFieldCreateManyFieldMetaName: EnvelopeFieldCreateManyFieldMetaName): string;
|
|
511
|
+
export declare function envelopeFieldCreateManyFieldMetaNameFromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyFieldMetaName, SDKValidationError>;
|
|
1288
512
|
/** @internal */
|
|
1289
|
-
export declare const
|
|
513
|
+
export declare const EnvelopeFieldCreateManyTextAlign1$inboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTextAlign1>;
|
|
1290
514
|
/** @internal */
|
|
1291
|
-
export declare const
|
|
515
|
+
export declare const EnvelopeFieldCreateManyTextAlign1$outboundSchema: z.ZodNativeEnum<typeof EnvelopeFieldCreateManyTextAlign1>;
|
|
1292
516
|
/** @internal */
|
|
1293
|
-
export declare const
|
|
517
|
+
export declare const EnvelopeFieldCreateManyFieldMetaInitials$inboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaInitials, z.ZodTypeDef, unknown>;
|
|
1294
518
|
/** @internal */
|
|
1295
|
-
export type
|
|
519
|
+
export type EnvelopeFieldCreateManyFieldMetaInitials$Outbound = {
|
|
1296
520
|
label?: string | undefined;
|
|
1297
521
|
placeholder?: string | undefined;
|
|
1298
522
|
required?: boolean | undefined;
|
|
@@ -1302,13 +526,13 @@ export type EnvelopeFieldCreateManyFieldMetaInitialsResponse$Outbound = {
|
|
|
1302
526
|
textAlign?: string | undefined;
|
|
1303
527
|
};
|
|
1304
528
|
/** @internal */
|
|
1305
|
-
export declare const
|
|
1306
|
-
export declare function
|
|
1307
|
-
export declare function
|
|
529
|
+
export declare const EnvelopeFieldCreateManyFieldMetaInitials$outboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaInitials$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyFieldMetaInitials>;
|
|
530
|
+
export declare function envelopeFieldCreateManyFieldMetaInitialsToJSON(envelopeFieldCreateManyFieldMetaInitials: EnvelopeFieldCreateManyFieldMetaInitials): string;
|
|
531
|
+
export declare function envelopeFieldCreateManyFieldMetaInitialsFromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyFieldMetaInitials, SDKValidationError>;
|
|
1308
532
|
/** @internal */
|
|
1309
|
-
export declare const
|
|
533
|
+
export declare const EnvelopeFieldCreateManyFieldMetaSignature$inboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaSignature, z.ZodTypeDef, unknown>;
|
|
1310
534
|
/** @internal */
|
|
1311
|
-
export type
|
|
535
|
+
export type EnvelopeFieldCreateManyFieldMetaSignature$Outbound = {
|
|
1312
536
|
label?: string | undefined;
|
|
1313
537
|
placeholder?: string | undefined;
|
|
1314
538
|
required?: boolean | undefined;
|
|
@@ -1317,13 +541,13 @@ export type EnvelopeFieldCreateManyFieldMetaSignatureResponse$Outbound = {
|
|
|
1317
541
|
type: "signature";
|
|
1318
542
|
};
|
|
1319
543
|
/** @internal */
|
|
1320
|
-
export declare const
|
|
1321
|
-
export declare function
|
|
1322
|
-
export declare function
|
|
544
|
+
export declare const EnvelopeFieldCreateManyFieldMetaSignature$outboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaSignature$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyFieldMetaSignature>;
|
|
545
|
+
export declare function envelopeFieldCreateManyFieldMetaSignatureToJSON(envelopeFieldCreateManyFieldMetaSignature: EnvelopeFieldCreateManyFieldMetaSignature): string;
|
|
546
|
+
export declare function envelopeFieldCreateManyFieldMetaSignatureFromJSON(jsonString: string): SafeParseResult<EnvelopeFieldCreateManyFieldMetaSignature, SDKValidationError>;
|
|
1323
547
|
/** @internal */
|
|
1324
548
|
export declare const EnvelopeFieldCreateManyFieldMetaUnion$inboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaUnion, z.ZodTypeDef, unknown>;
|
|
1325
549
|
/** @internal */
|
|
1326
|
-
export type EnvelopeFieldCreateManyFieldMetaUnion$Outbound =
|
|
550
|
+
export type EnvelopeFieldCreateManyFieldMetaUnion$Outbound = EnvelopeFieldCreateManyFieldMetaSignature$Outbound | EnvelopeFieldCreateManyFieldMetaInitials$Outbound | EnvelopeFieldCreateManyFieldMetaName$Outbound | EnvelopeFieldCreateManyFieldMetaEmail$Outbound | EnvelopeFieldCreateManyFieldMetaDate$Outbound | EnvelopeFieldCreateManyFieldMetaText$Outbound | EnvelopeFieldCreateManyFieldMetaNumber$Outbound | EnvelopeFieldCreateManyFieldMetaRadio$Outbound | EnvelopeFieldCreateManyFieldMetaCheckbox$Outbound | EnvelopeFieldCreateManyFieldMetaDropdown$Outbound;
|
|
1327
551
|
/** @internal */
|
|
1328
552
|
export declare const EnvelopeFieldCreateManyFieldMetaUnion$outboundSchema: z.ZodType<EnvelopeFieldCreateManyFieldMetaUnion$Outbound, z.ZodTypeDef, EnvelopeFieldCreateManyFieldMetaUnion>;
|
|
1329
553
|
export declare function envelopeFieldCreateManyFieldMetaUnionToJSON(envelopeFieldCreateManyFieldMetaUnion: EnvelopeFieldCreateManyFieldMetaUnion): string;
|
|
@@ -1345,7 +569,7 @@ export type EnvelopeFieldCreateManyDataResponse$Outbound = {
|
|
|
1345
569
|
height?: any | undefined;
|
|
1346
570
|
customText: string;
|
|
1347
571
|
inserted: boolean;
|
|
1348
|
-
fieldMeta:
|
|
572
|
+
fieldMeta: EnvelopeFieldCreateManyFieldMetaSignature$Outbound | EnvelopeFieldCreateManyFieldMetaInitials$Outbound | EnvelopeFieldCreateManyFieldMetaName$Outbound | EnvelopeFieldCreateManyFieldMetaEmail$Outbound | EnvelopeFieldCreateManyFieldMetaDate$Outbound | EnvelopeFieldCreateManyFieldMetaText$Outbound | EnvelopeFieldCreateManyFieldMetaNumber$Outbound | EnvelopeFieldCreateManyFieldMetaRadio$Outbound | EnvelopeFieldCreateManyFieldMetaCheckbox$Outbound | EnvelopeFieldCreateManyFieldMetaDropdown$Outbound | null;
|
|
1349
573
|
documentId?: number | null | undefined;
|
|
1350
574
|
templateId?: number | null | undefined;
|
|
1351
575
|
};
|