dominion-cli 0.1.1 → 0.2.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/dist/cli.js +13 -9
- package/dist/cli.js.map +1 -1
- package/dist/commands/account.d.ts +1 -1
- package/dist/commands/account.d.ts.map +1 -1
- package/dist/commands/account.js +6 -9
- package/dist/commands/account.js.map +1 -1
- package/dist/commands/billing.d.ts +1 -1
- package/dist/commands/billing.d.ts.map +1 -1
- package/dist/commands/billing.js +3 -7
- package/dist/commands/billing.js.map +1 -1
- package/dist/commands/buy.d.ts +7 -7
- package/dist/commands/buy.d.ts.map +1 -1
- package/dist/commands/buy.js +45 -141
- package/dist/commands/buy.js.map +1 -1
- package/dist/commands/cart/add.d.ts +1 -1
- package/dist/commands/cart/add.d.ts.map +1 -1
- package/dist/commands/cart/add.js +9 -8
- package/dist/commands/cart/add.js.map +1 -1
- package/dist/commands/credits.js +1 -1
- package/dist/commands/dns/add.d.ts +3 -3
- package/dist/commands/dns/add.d.ts.map +1 -1
- package/dist/commands/dns/add.js +3 -3
- package/dist/commands/dns/add.js.map +1 -1
- package/dist/commands/dns/list.d.ts +3 -3
- package/dist/commands/dns/list.d.ts.map +1 -1
- package/dist/commands/dns/list.js +3 -3
- package/dist/commands/dns/list.js.map +1 -1
- package/dist/commands/dns/remove.d.ts +3 -3
- package/dist/commands/dns/remove.d.ts.map +1 -1
- package/dist/commands/dns/remove.js +3 -3
- package/dist/commands/dns/remove.js.map +1 -1
- package/dist/commands/domains/detail.d.ts +1 -1
- package/dist/commands/domains/detail.js +3 -3
- package/dist/commands/domains/detail.js.map +1 -1
- package/dist/commands/domains/list.d.ts +1 -1
- package/dist/commands/domains/list.js +3 -3
- package/dist/commands/domains/list.js.map +1 -1
- package/dist/commands/login.d.ts +6 -6
- package/dist/commands/login.d.ts.map +1 -1
- package/dist/commands/login.js +58 -42
- package/dist/commands/login.js.map +1 -1
- package/dist/commands/logout.d.ts +1 -1
- package/dist/commands/logout.js +1 -1
- package/dist/commands/search.d.ts +2 -2
- package/dist/commands/search.js +4 -4
- package/dist/commands/search.js.map +1 -1
- package/dist/commands/settings/set.d.ts +4 -4
- package/dist/commands/settings/set.d.ts.map +1 -1
- package/dist/commands/settings/set.js +10 -11
- package/dist/commands/settings/set.js.map +1 -1
- package/dist/commands/settings/view.d.ts +3 -3
- package/dist/commands/settings/view.d.ts.map +1 -1
- package/dist/commands/settings/view.js +4 -4
- package/dist/commands/settings/view.js.map +1 -1
- package/dist/commands/vercel/link.d.ts +4 -4
- package/dist/commands/vercel/link.d.ts.map +1 -1
- package/dist/commands/vercel/link.js +8 -8
- package/dist/commands/vercel/link.js.map +1 -1
- package/dist/commands/whoami.d.ts +1 -1
- package/dist/commands/whoami.js +3 -3
- package/dist/commands/whoami.js.map +1 -1
- package/dist/components/account-card.d.ts +3 -3
- package/dist/components/account-card.d.ts.map +1 -1
- package/dist/components/account-card.js +3 -3
- package/dist/components/account-card.js.map +1 -1
- package/dist/components/command-runner.d.ts +25 -0
- package/dist/components/command-runner.d.ts.map +1 -0
- package/dist/components/command-runner.js +67 -0
- package/dist/components/command-runner.js.map +1 -0
- package/dist/components/prompt.d.ts +24 -0
- package/dist/components/prompt.d.ts.map +1 -0
- package/dist/components/prompt.js +113 -0
- package/dist/components/prompt.js.map +1 -0
- package/dist/components/search-results.d.ts +1 -1
- package/dist/components/search-results.js +1 -1
- package/dist/lib/auth.d.ts +17 -9
- package/dist/lib/auth.d.ts.map +1 -1
- package/dist/lib/auth.js +125 -46
- package/dist/lib/auth.js.map +1 -1
- package/dist/lib/command-registry.d.ts +47 -0
- package/dist/lib/command-registry.d.ts.map +1 -0
- package/dist/lib/command-registry.js +384 -0
- package/dist/lib/command-registry.js.map +1 -0
- package/dist/lib/config.d.ts.map +1 -1
- package/dist/lib/config.js +0 -8
- package/dist/lib/config.js.map +1 -1
- package/dist/lib/dns-validation.d.ts +1 -1
- package/dist/lib/dns-validation.d.ts.map +1 -1
- package/dist/lib/dns-validation.js +2 -2
- package/dist/lib/dns-validation.js.map +1 -1
- package/dist/lib/dominion-client.d.ts +43 -0
- package/dist/lib/dominion-client.d.ts.map +1 -0
- package/dist/lib/dominion-client.js +183 -0
- package/dist/lib/dominion-client.js.map +1 -0
- package/dist/lib/error-personality.js +7 -7
- package/dist/lib/error-personality.js.map +1 -1
- package/dist/lib/history.d.ts +40 -0
- package/dist/lib/history.d.ts.map +1 -0
- package/dist/lib/history.js +113 -0
- package/dist/lib/history.js.map +1 -0
- package/dist/lib/nameserver-presets.js +4 -4
- package/dist/lib/nameserver-presets.js.map +1 -1
- package/dist/lib/purchase.d.ts +20 -23
- package/dist/lib/purchase.d.ts.map +1 -1
- package/dist/lib/purchase.js +42 -70
- package/dist/lib/purchase.js.map +1 -1
- package/dist/lib/schemas.d.ts +351 -352
- package/dist/lib/schemas.d.ts.map +1 -1
- package/dist/lib/schemas.js +1 -2
- package/dist/lib/schemas.js.map +1 -1
- package/dist/lib/types.d.ts +8 -11
- package/dist/lib/types.d.ts.map +1 -1
- package/dist/lib/types.js +1 -4
- package/dist/lib/types.js.map +1 -1
- package/dist/repl.d.ts +17 -0
- package/dist/repl.d.ts.map +1 -0
- package/dist/repl.js +189 -0
- package/dist/repl.js.map +1 -0
- package/package.json +4 -2
package/dist/lib/schemas.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Zod schemas for
|
|
3
|
-
* Vendored from dominion-site — kept identical for consistency.
|
|
2
|
+
* Zod schemas for API request/response validation.
|
|
4
3
|
*
|
|
5
4
|
* All API responses are validated before returning to callers.
|
|
6
5
|
*/
|
|
@@ -18,25 +17,25 @@ export declare const ContactInfoSchema: z.ZodObject<{
|
|
|
18
17
|
country: z.ZodString;
|
|
19
18
|
organization: z.ZodOptional<z.ZodString>;
|
|
20
19
|
}, "strip", z.ZodTypeAny, {
|
|
20
|
+
email: string;
|
|
21
|
+
state: string;
|
|
21
22
|
firstName: string;
|
|
22
23
|
lastName: string;
|
|
23
|
-
email: string;
|
|
24
24
|
phone: string;
|
|
25
25
|
address1: string;
|
|
26
26
|
city: string;
|
|
27
|
-
state: string;
|
|
28
27
|
zip: string;
|
|
29
28
|
country: string;
|
|
30
29
|
address2?: string | undefined;
|
|
31
30
|
organization?: string | undefined;
|
|
32
31
|
}, {
|
|
32
|
+
email: string;
|
|
33
|
+
state: string;
|
|
33
34
|
firstName: string;
|
|
34
35
|
lastName: string;
|
|
35
|
-
email: string;
|
|
36
36
|
phone: string;
|
|
37
37
|
address1: string;
|
|
38
38
|
city: string;
|
|
39
|
-
state: string;
|
|
40
39
|
zip: string;
|
|
41
40
|
country: string;
|
|
42
41
|
address2?: string | undefined;
|
|
@@ -56,25 +55,25 @@ export declare const ContactsSchema: z.ZodObject<{
|
|
|
56
55
|
country: z.ZodString;
|
|
57
56
|
organization: z.ZodOptional<z.ZodString>;
|
|
58
57
|
}, "strip", z.ZodTypeAny, {
|
|
58
|
+
email: string;
|
|
59
|
+
state: string;
|
|
59
60
|
firstName: string;
|
|
60
61
|
lastName: string;
|
|
61
|
-
email: string;
|
|
62
62
|
phone: string;
|
|
63
63
|
address1: string;
|
|
64
64
|
city: string;
|
|
65
|
-
state: string;
|
|
66
65
|
zip: string;
|
|
67
66
|
country: string;
|
|
68
67
|
address2?: string | undefined;
|
|
69
68
|
organization?: string | undefined;
|
|
70
69
|
}, {
|
|
70
|
+
email: string;
|
|
71
|
+
state: string;
|
|
71
72
|
firstName: string;
|
|
72
73
|
lastName: string;
|
|
73
|
-
email: string;
|
|
74
74
|
phone: string;
|
|
75
75
|
address1: string;
|
|
76
76
|
city: string;
|
|
77
|
-
state: string;
|
|
78
77
|
zip: string;
|
|
79
78
|
country: string;
|
|
80
79
|
address2?: string | undefined;
|
|
@@ -93,25 +92,25 @@ export declare const ContactsSchema: z.ZodObject<{
|
|
|
93
92
|
country: z.ZodString;
|
|
94
93
|
organization: z.ZodOptional<z.ZodString>;
|
|
95
94
|
}, "strip", z.ZodTypeAny, {
|
|
95
|
+
email: string;
|
|
96
|
+
state: string;
|
|
96
97
|
firstName: string;
|
|
97
98
|
lastName: string;
|
|
98
|
-
email: string;
|
|
99
99
|
phone: string;
|
|
100
100
|
address1: string;
|
|
101
101
|
city: string;
|
|
102
|
-
state: string;
|
|
103
102
|
zip: string;
|
|
104
103
|
country: string;
|
|
105
104
|
address2?: string | undefined;
|
|
106
105
|
organization?: string | undefined;
|
|
107
106
|
}, {
|
|
107
|
+
email: string;
|
|
108
|
+
state: string;
|
|
108
109
|
firstName: string;
|
|
109
110
|
lastName: string;
|
|
110
|
-
email: string;
|
|
111
111
|
phone: string;
|
|
112
112
|
address1: string;
|
|
113
113
|
city: string;
|
|
114
|
-
state: string;
|
|
115
114
|
zip: string;
|
|
116
115
|
country: string;
|
|
117
116
|
address2?: string | undefined;
|
|
@@ -130,25 +129,25 @@ export declare const ContactsSchema: z.ZodObject<{
|
|
|
130
129
|
country: z.ZodString;
|
|
131
130
|
organization: z.ZodOptional<z.ZodString>;
|
|
132
131
|
}, "strip", z.ZodTypeAny, {
|
|
132
|
+
email: string;
|
|
133
|
+
state: string;
|
|
133
134
|
firstName: string;
|
|
134
135
|
lastName: string;
|
|
135
|
-
email: string;
|
|
136
136
|
phone: string;
|
|
137
137
|
address1: string;
|
|
138
138
|
city: string;
|
|
139
|
-
state: string;
|
|
140
139
|
zip: string;
|
|
141
140
|
country: string;
|
|
142
141
|
address2?: string | undefined;
|
|
143
142
|
organization?: string | undefined;
|
|
144
143
|
}, {
|
|
144
|
+
email: string;
|
|
145
|
+
state: string;
|
|
145
146
|
firstName: string;
|
|
146
147
|
lastName: string;
|
|
147
|
-
email: string;
|
|
148
148
|
phone: string;
|
|
149
149
|
address1: string;
|
|
150
150
|
city: string;
|
|
151
|
-
state: string;
|
|
152
151
|
zip: string;
|
|
153
152
|
country: string;
|
|
154
153
|
address2?: string | undefined;
|
|
@@ -167,131 +166,131 @@ export declare const ContactsSchema: z.ZodObject<{
|
|
|
167
166
|
country: z.ZodString;
|
|
168
167
|
organization: z.ZodOptional<z.ZodString>;
|
|
169
168
|
}, "strip", z.ZodTypeAny, {
|
|
169
|
+
email: string;
|
|
170
|
+
state: string;
|
|
170
171
|
firstName: string;
|
|
171
172
|
lastName: string;
|
|
172
|
-
email: string;
|
|
173
173
|
phone: string;
|
|
174
174
|
address1: string;
|
|
175
175
|
city: string;
|
|
176
|
-
state: string;
|
|
177
176
|
zip: string;
|
|
178
177
|
country: string;
|
|
179
178
|
address2?: string | undefined;
|
|
180
179
|
organization?: string | undefined;
|
|
181
180
|
}, {
|
|
181
|
+
email: string;
|
|
182
|
+
state: string;
|
|
182
183
|
firstName: string;
|
|
183
184
|
lastName: string;
|
|
184
|
-
email: string;
|
|
185
185
|
phone: string;
|
|
186
186
|
address1: string;
|
|
187
187
|
city: string;
|
|
188
|
-
state: string;
|
|
189
188
|
zip: string;
|
|
190
189
|
country: string;
|
|
191
190
|
address2?: string | undefined;
|
|
192
191
|
organization?: string | undefined;
|
|
193
192
|
}>;
|
|
194
193
|
}, "strip", z.ZodTypeAny, {
|
|
195
|
-
|
|
194
|
+
admin: {
|
|
195
|
+
email: string;
|
|
196
|
+
state: string;
|
|
196
197
|
firstName: string;
|
|
197
198
|
lastName: string;
|
|
198
|
-
email: string;
|
|
199
199
|
phone: string;
|
|
200
200
|
address1: string;
|
|
201
201
|
city: string;
|
|
202
|
-
state: string;
|
|
203
202
|
zip: string;
|
|
204
203
|
country: string;
|
|
205
204
|
address2?: string | undefined;
|
|
206
205
|
organization?: string | undefined;
|
|
207
206
|
};
|
|
208
|
-
|
|
207
|
+
billing: {
|
|
208
|
+
email: string;
|
|
209
|
+
state: string;
|
|
209
210
|
firstName: string;
|
|
210
211
|
lastName: string;
|
|
211
|
-
email: string;
|
|
212
212
|
phone: string;
|
|
213
213
|
address1: string;
|
|
214
214
|
city: string;
|
|
215
|
-
state: string;
|
|
216
215
|
zip: string;
|
|
217
216
|
country: string;
|
|
218
217
|
address2?: string | undefined;
|
|
219
218
|
organization?: string | undefined;
|
|
220
219
|
};
|
|
221
|
-
|
|
220
|
+
registrant: {
|
|
221
|
+
email: string;
|
|
222
|
+
state: string;
|
|
222
223
|
firstName: string;
|
|
223
224
|
lastName: string;
|
|
224
|
-
email: string;
|
|
225
225
|
phone: string;
|
|
226
226
|
address1: string;
|
|
227
227
|
city: string;
|
|
228
|
-
state: string;
|
|
229
228
|
zip: string;
|
|
230
229
|
country: string;
|
|
231
230
|
address2?: string | undefined;
|
|
232
231
|
organization?: string | undefined;
|
|
233
232
|
};
|
|
234
|
-
|
|
233
|
+
tech: {
|
|
234
|
+
email: string;
|
|
235
|
+
state: string;
|
|
235
236
|
firstName: string;
|
|
236
237
|
lastName: string;
|
|
237
|
-
email: string;
|
|
238
238
|
phone: string;
|
|
239
239
|
address1: string;
|
|
240
240
|
city: string;
|
|
241
|
-
state: string;
|
|
242
241
|
zip: string;
|
|
243
242
|
country: string;
|
|
244
243
|
address2?: string | undefined;
|
|
245
244
|
organization?: string | undefined;
|
|
246
245
|
};
|
|
247
246
|
}, {
|
|
248
|
-
|
|
247
|
+
admin: {
|
|
248
|
+
email: string;
|
|
249
|
+
state: string;
|
|
249
250
|
firstName: string;
|
|
250
251
|
lastName: string;
|
|
251
|
-
email: string;
|
|
252
252
|
phone: string;
|
|
253
253
|
address1: string;
|
|
254
254
|
city: string;
|
|
255
|
-
state: string;
|
|
256
255
|
zip: string;
|
|
257
256
|
country: string;
|
|
258
257
|
address2?: string | undefined;
|
|
259
258
|
organization?: string | undefined;
|
|
260
259
|
};
|
|
261
|
-
|
|
260
|
+
billing: {
|
|
261
|
+
email: string;
|
|
262
|
+
state: string;
|
|
262
263
|
firstName: string;
|
|
263
264
|
lastName: string;
|
|
264
|
-
email: string;
|
|
265
265
|
phone: string;
|
|
266
266
|
address1: string;
|
|
267
267
|
city: string;
|
|
268
|
-
state: string;
|
|
269
268
|
zip: string;
|
|
270
269
|
country: string;
|
|
271
270
|
address2?: string | undefined;
|
|
272
271
|
organization?: string | undefined;
|
|
273
272
|
};
|
|
274
|
-
|
|
273
|
+
registrant: {
|
|
274
|
+
email: string;
|
|
275
|
+
state: string;
|
|
275
276
|
firstName: string;
|
|
276
277
|
lastName: string;
|
|
277
|
-
email: string;
|
|
278
278
|
phone: string;
|
|
279
279
|
address1: string;
|
|
280
280
|
city: string;
|
|
281
|
-
state: string;
|
|
282
281
|
zip: string;
|
|
283
282
|
country: string;
|
|
284
283
|
address2?: string | undefined;
|
|
285
284
|
organization?: string | undefined;
|
|
286
285
|
};
|
|
287
|
-
|
|
286
|
+
tech: {
|
|
287
|
+
email: string;
|
|
288
|
+
state: string;
|
|
288
289
|
firstName: string;
|
|
289
290
|
lastName: string;
|
|
290
|
-
email: string;
|
|
291
291
|
phone: string;
|
|
292
292
|
address1: string;
|
|
293
293
|
city: string;
|
|
294
|
-
state: string;
|
|
295
294
|
zip: string;
|
|
296
295
|
country: string;
|
|
297
296
|
address2?: string | undefined;
|
|
@@ -309,22 +308,22 @@ export declare const DomainSearchResultSchema: z.ZodObject<{
|
|
|
309
308
|
renewalPrice: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
310
309
|
}, "strip", z.ZodTypeAny, {
|
|
311
310
|
premium: boolean;
|
|
311
|
+
renewalPrice: number;
|
|
312
312
|
domainName: string;
|
|
313
|
-
sld: string;
|
|
314
313
|
tld: string;
|
|
315
314
|
purchasable: boolean;
|
|
315
|
+
sld: string;
|
|
316
316
|
purchasePrice: number;
|
|
317
317
|
purchaseType: string;
|
|
318
|
-
renewalPrice: number;
|
|
319
318
|
}, {
|
|
320
319
|
domainName: string;
|
|
321
320
|
premium?: boolean | undefined;
|
|
322
|
-
|
|
321
|
+
renewalPrice?: number | undefined;
|
|
323
322
|
tld?: string | undefined;
|
|
324
323
|
purchasable?: boolean | undefined;
|
|
324
|
+
sld?: string | undefined;
|
|
325
325
|
purchasePrice?: number | undefined;
|
|
326
326
|
purchaseType?: string | undefined;
|
|
327
|
-
renewalPrice?: number | undefined;
|
|
328
327
|
}>;
|
|
329
328
|
export declare const DomainSearchResponseSchema: z.ZodObject<{
|
|
330
329
|
results: z.ZodArray<z.ZodObject<{
|
|
@@ -338,44 +337,44 @@ export declare const DomainSearchResponseSchema: z.ZodObject<{
|
|
|
338
337
|
renewalPrice: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
339
338
|
}, "strip", z.ZodTypeAny, {
|
|
340
339
|
premium: boolean;
|
|
340
|
+
renewalPrice: number;
|
|
341
341
|
domainName: string;
|
|
342
|
-
sld: string;
|
|
343
342
|
tld: string;
|
|
344
343
|
purchasable: boolean;
|
|
344
|
+
sld: string;
|
|
345
345
|
purchasePrice: number;
|
|
346
346
|
purchaseType: string;
|
|
347
|
-
renewalPrice: number;
|
|
348
347
|
}, {
|
|
349
348
|
domainName: string;
|
|
350
349
|
premium?: boolean | undefined;
|
|
351
|
-
|
|
350
|
+
renewalPrice?: number | undefined;
|
|
352
351
|
tld?: string | undefined;
|
|
353
352
|
purchasable?: boolean | undefined;
|
|
353
|
+
sld?: string | undefined;
|
|
354
354
|
purchasePrice?: number | undefined;
|
|
355
355
|
purchaseType?: string | undefined;
|
|
356
|
-
renewalPrice?: number | undefined;
|
|
357
356
|
}>, "many">;
|
|
358
357
|
}, "strip", z.ZodTypeAny, {
|
|
359
358
|
results: {
|
|
360
359
|
premium: boolean;
|
|
360
|
+
renewalPrice: number;
|
|
361
361
|
domainName: string;
|
|
362
|
-
sld: string;
|
|
363
362
|
tld: string;
|
|
364
363
|
purchasable: boolean;
|
|
364
|
+
sld: string;
|
|
365
365
|
purchasePrice: number;
|
|
366
366
|
purchaseType: string;
|
|
367
|
-
renewalPrice: number;
|
|
368
367
|
}[];
|
|
369
368
|
}, {
|
|
370
369
|
results: {
|
|
371
370
|
domainName: string;
|
|
372
371
|
premium?: boolean | undefined;
|
|
373
|
-
|
|
372
|
+
renewalPrice?: number | undefined;
|
|
374
373
|
tld?: string | undefined;
|
|
375
374
|
purchasable?: boolean | undefined;
|
|
375
|
+
sld?: string | undefined;
|
|
376
376
|
purchasePrice?: number | undefined;
|
|
377
377
|
purchaseType?: string | undefined;
|
|
378
|
-
renewalPrice?: number | undefined;
|
|
379
378
|
}[];
|
|
380
379
|
}>;
|
|
381
380
|
export declare const DomainAvailabilitySchema: z.ZodObject<{
|
|
@@ -386,16 +385,16 @@ export declare const DomainAvailabilitySchema: z.ZodObject<{
|
|
|
386
385
|
renewalPrice: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
387
386
|
}, "strip", z.ZodTypeAny, {
|
|
388
387
|
premium: boolean;
|
|
388
|
+
renewalPrice: number;
|
|
389
389
|
domainName: string;
|
|
390
390
|
purchasable: boolean;
|
|
391
391
|
purchasePrice: number;
|
|
392
|
-
renewalPrice: number;
|
|
393
392
|
}, {
|
|
394
393
|
domainName: string;
|
|
395
394
|
premium?: boolean | undefined;
|
|
395
|
+
renewalPrice?: number | undefined;
|
|
396
396
|
purchasable?: boolean | undefined;
|
|
397
397
|
purchasePrice?: number | undefined;
|
|
398
|
-
renewalPrice?: number | undefined;
|
|
399
398
|
}>;
|
|
400
399
|
export declare const DomainSchema: z.ZodObject<{
|
|
401
400
|
domainName: z.ZodString;
|
|
@@ -414,25 +413,25 @@ export declare const DomainSchema: z.ZodObject<{
|
|
|
414
413
|
country: z.ZodString;
|
|
415
414
|
organization: z.ZodOptional<z.ZodString>;
|
|
416
415
|
}, "strip", z.ZodTypeAny, {
|
|
416
|
+
email: string;
|
|
417
|
+
state: string;
|
|
417
418
|
firstName: string;
|
|
418
419
|
lastName: string;
|
|
419
|
-
email: string;
|
|
420
420
|
phone: string;
|
|
421
421
|
address1: string;
|
|
422
422
|
city: string;
|
|
423
|
-
state: string;
|
|
424
423
|
zip: string;
|
|
425
424
|
country: string;
|
|
426
425
|
address2?: string | undefined;
|
|
427
426
|
organization?: string | undefined;
|
|
428
427
|
}, {
|
|
428
|
+
email: string;
|
|
429
|
+
state: string;
|
|
429
430
|
firstName: string;
|
|
430
431
|
lastName: string;
|
|
431
|
-
email: string;
|
|
432
432
|
phone: string;
|
|
433
433
|
address1: string;
|
|
434
434
|
city: string;
|
|
435
|
-
state: string;
|
|
436
435
|
zip: string;
|
|
437
436
|
country: string;
|
|
438
437
|
address2?: string | undefined;
|
|
@@ -451,25 +450,25 @@ export declare const DomainSchema: z.ZodObject<{
|
|
|
451
450
|
country: z.ZodString;
|
|
452
451
|
organization: z.ZodOptional<z.ZodString>;
|
|
453
452
|
}, "strip", z.ZodTypeAny, {
|
|
453
|
+
email: string;
|
|
454
|
+
state: string;
|
|
454
455
|
firstName: string;
|
|
455
456
|
lastName: string;
|
|
456
|
-
email: string;
|
|
457
457
|
phone: string;
|
|
458
458
|
address1: string;
|
|
459
459
|
city: string;
|
|
460
|
-
state: string;
|
|
461
460
|
zip: string;
|
|
462
461
|
country: string;
|
|
463
462
|
address2?: string | undefined;
|
|
464
463
|
organization?: string | undefined;
|
|
465
464
|
}, {
|
|
465
|
+
email: string;
|
|
466
|
+
state: string;
|
|
466
467
|
firstName: string;
|
|
467
468
|
lastName: string;
|
|
468
|
-
email: string;
|
|
469
469
|
phone: string;
|
|
470
470
|
address1: string;
|
|
471
471
|
city: string;
|
|
472
|
-
state: string;
|
|
473
472
|
zip: string;
|
|
474
473
|
country: string;
|
|
475
474
|
address2?: string | undefined;
|
|
@@ -488,25 +487,25 @@ export declare const DomainSchema: z.ZodObject<{
|
|
|
488
487
|
country: z.ZodString;
|
|
489
488
|
organization: z.ZodOptional<z.ZodString>;
|
|
490
489
|
}, "strip", z.ZodTypeAny, {
|
|
490
|
+
email: string;
|
|
491
|
+
state: string;
|
|
491
492
|
firstName: string;
|
|
492
493
|
lastName: string;
|
|
493
|
-
email: string;
|
|
494
494
|
phone: string;
|
|
495
495
|
address1: string;
|
|
496
496
|
city: string;
|
|
497
|
-
state: string;
|
|
498
497
|
zip: string;
|
|
499
498
|
country: string;
|
|
500
499
|
address2?: string | undefined;
|
|
501
500
|
organization?: string | undefined;
|
|
502
501
|
}, {
|
|
502
|
+
email: string;
|
|
503
|
+
state: string;
|
|
503
504
|
firstName: string;
|
|
504
505
|
lastName: string;
|
|
505
|
-
email: string;
|
|
506
506
|
phone: string;
|
|
507
507
|
address1: string;
|
|
508
508
|
city: string;
|
|
509
|
-
state: string;
|
|
510
509
|
zip: string;
|
|
511
510
|
country: string;
|
|
512
511
|
address2?: string | undefined;
|
|
@@ -525,131 +524,131 @@ export declare const DomainSchema: z.ZodObject<{
|
|
|
525
524
|
country: z.ZodString;
|
|
526
525
|
organization: z.ZodOptional<z.ZodString>;
|
|
527
526
|
}, "strip", z.ZodTypeAny, {
|
|
527
|
+
email: string;
|
|
528
|
+
state: string;
|
|
528
529
|
firstName: string;
|
|
529
530
|
lastName: string;
|
|
530
|
-
email: string;
|
|
531
531
|
phone: string;
|
|
532
532
|
address1: string;
|
|
533
533
|
city: string;
|
|
534
|
-
state: string;
|
|
535
534
|
zip: string;
|
|
536
535
|
country: string;
|
|
537
536
|
address2?: string | undefined;
|
|
538
537
|
organization?: string | undefined;
|
|
539
538
|
}, {
|
|
539
|
+
email: string;
|
|
540
|
+
state: string;
|
|
540
541
|
firstName: string;
|
|
541
542
|
lastName: string;
|
|
542
|
-
email: string;
|
|
543
543
|
phone: string;
|
|
544
544
|
address1: string;
|
|
545
545
|
city: string;
|
|
546
|
-
state: string;
|
|
547
546
|
zip: string;
|
|
548
547
|
country: string;
|
|
549
548
|
address2?: string | undefined;
|
|
550
549
|
organization?: string | undefined;
|
|
551
550
|
}>;
|
|
552
551
|
}, "strip", z.ZodTypeAny, {
|
|
553
|
-
|
|
552
|
+
admin: {
|
|
553
|
+
email: string;
|
|
554
|
+
state: string;
|
|
554
555
|
firstName: string;
|
|
555
556
|
lastName: string;
|
|
556
|
-
email: string;
|
|
557
557
|
phone: string;
|
|
558
558
|
address1: string;
|
|
559
559
|
city: string;
|
|
560
|
-
state: string;
|
|
561
560
|
zip: string;
|
|
562
561
|
country: string;
|
|
563
562
|
address2?: string | undefined;
|
|
564
563
|
organization?: string | undefined;
|
|
565
564
|
};
|
|
566
|
-
|
|
565
|
+
billing: {
|
|
566
|
+
email: string;
|
|
567
|
+
state: string;
|
|
567
568
|
firstName: string;
|
|
568
569
|
lastName: string;
|
|
569
|
-
email: string;
|
|
570
570
|
phone: string;
|
|
571
571
|
address1: string;
|
|
572
572
|
city: string;
|
|
573
|
-
state: string;
|
|
574
573
|
zip: string;
|
|
575
574
|
country: string;
|
|
576
575
|
address2?: string | undefined;
|
|
577
576
|
organization?: string | undefined;
|
|
578
577
|
};
|
|
579
|
-
|
|
578
|
+
registrant: {
|
|
579
|
+
email: string;
|
|
580
|
+
state: string;
|
|
580
581
|
firstName: string;
|
|
581
582
|
lastName: string;
|
|
582
|
-
email: string;
|
|
583
583
|
phone: string;
|
|
584
584
|
address1: string;
|
|
585
585
|
city: string;
|
|
586
|
-
state: string;
|
|
587
586
|
zip: string;
|
|
588
587
|
country: string;
|
|
589
588
|
address2?: string | undefined;
|
|
590
589
|
organization?: string | undefined;
|
|
591
590
|
};
|
|
592
|
-
|
|
591
|
+
tech: {
|
|
592
|
+
email: string;
|
|
593
|
+
state: string;
|
|
593
594
|
firstName: string;
|
|
594
595
|
lastName: string;
|
|
595
|
-
email: string;
|
|
596
596
|
phone: string;
|
|
597
597
|
address1: string;
|
|
598
598
|
city: string;
|
|
599
|
-
state: string;
|
|
600
599
|
zip: string;
|
|
601
600
|
country: string;
|
|
602
601
|
address2?: string | undefined;
|
|
603
602
|
organization?: string | undefined;
|
|
604
603
|
};
|
|
605
604
|
}, {
|
|
606
|
-
|
|
605
|
+
admin: {
|
|
606
|
+
email: string;
|
|
607
|
+
state: string;
|
|
607
608
|
firstName: string;
|
|
608
609
|
lastName: string;
|
|
609
|
-
email: string;
|
|
610
610
|
phone: string;
|
|
611
611
|
address1: string;
|
|
612
612
|
city: string;
|
|
613
|
-
state: string;
|
|
614
613
|
zip: string;
|
|
615
614
|
country: string;
|
|
616
615
|
address2?: string | undefined;
|
|
617
616
|
organization?: string | undefined;
|
|
618
617
|
};
|
|
619
|
-
|
|
618
|
+
billing: {
|
|
619
|
+
email: string;
|
|
620
|
+
state: string;
|
|
620
621
|
firstName: string;
|
|
621
622
|
lastName: string;
|
|
622
|
-
email: string;
|
|
623
623
|
phone: string;
|
|
624
624
|
address1: string;
|
|
625
625
|
city: string;
|
|
626
|
-
state: string;
|
|
627
626
|
zip: string;
|
|
628
627
|
country: string;
|
|
629
628
|
address2?: string | undefined;
|
|
630
629
|
organization?: string | undefined;
|
|
631
630
|
};
|
|
632
|
-
|
|
631
|
+
registrant: {
|
|
632
|
+
email: string;
|
|
633
|
+
state: string;
|
|
633
634
|
firstName: string;
|
|
634
635
|
lastName: string;
|
|
635
|
-
email: string;
|
|
636
636
|
phone: string;
|
|
637
637
|
address1: string;
|
|
638
638
|
city: string;
|
|
639
|
-
state: string;
|
|
640
639
|
zip: string;
|
|
641
640
|
country: string;
|
|
642
641
|
address2?: string | undefined;
|
|
643
642
|
organization?: string | undefined;
|
|
644
643
|
};
|
|
645
|
-
|
|
644
|
+
tech: {
|
|
645
|
+
email: string;
|
|
646
|
+
state: string;
|
|
646
647
|
firstName: string;
|
|
647
648
|
lastName: string;
|
|
648
|
-
email: string;
|
|
649
649
|
phone: string;
|
|
650
650
|
address1: string;
|
|
651
651
|
city: string;
|
|
652
|
-
state: string;
|
|
653
652
|
zip: string;
|
|
654
653
|
country: string;
|
|
655
654
|
address2?: string | undefined;
|
|
@@ -663,131 +662,131 @@ export declare const DomainSchema: z.ZodObject<{
|
|
|
663
662
|
createDate: z.ZodString;
|
|
664
663
|
renewalPrice: z.ZodNumber;
|
|
665
664
|
}, "strip", z.ZodTypeAny, {
|
|
666
|
-
|
|
665
|
+
privacyEnabled: boolean;
|
|
666
|
+
createDate: string;
|
|
667
667
|
renewalPrice: number;
|
|
668
|
+
domainName: string;
|
|
668
669
|
nameservers: string[];
|
|
669
670
|
contacts: {
|
|
670
|
-
|
|
671
|
+
admin: {
|
|
672
|
+
email: string;
|
|
673
|
+
state: string;
|
|
671
674
|
firstName: string;
|
|
672
675
|
lastName: string;
|
|
673
|
-
email: string;
|
|
674
676
|
phone: string;
|
|
675
677
|
address1: string;
|
|
676
678
|
city: string;
|
|
677
|
-
state: string;
|
|
678
679
|
zip: string;
|
|
679
680
|
country: string;
|
|
680
681
|
address2?: string | undefined;
|
|
681
682
|
organization?: string | undefined;
|
|
682
683
|
};
|
|
683
|
-
|
|
684
|
+
billing: {
|
|
685
|
+
email: string;
|
|
686
|
+
state: string;
|
|
684
687
|
firstName: string;
|
|
685
688
|
lastName: string;
|
|
686
|
-
email: string;
|
|
687
689
|
phone: string;
|
|
688
690
|
address1: string;
|
|
689
691
|
city: string;
|
|
690
|
-
state: string;
|
|
691
692
|
zip: string;
|
|
692
693
|
country: string;
|
|
693
694
|
address2?: string | undefined;
|
|
694
695
|
organization?: string | undefined;
|
|
695
696
|
};
|
|
696
|
-
|
|
697
|
+
registrant: {
|
|
698
|
+
email: string;
|
|
699
|
+
state: string;
|
|
697
700
|
firstName: string;
|
|
698
701
|
lastName: string;
|
|
699
|
-
email: string;
|
|
700
702
|
phone: string;
|
|
701
703
|
address1: string;
|
|
702
704
|
city: string;
|
|
703
|
-
state: string;
|
|
704
705
|
zip: string;
|
|
705
706
|
country: string;
|
|
706
707
|
address2?: string | undefined;
|
|
707
708
|
organization?: string | undefined;
|
|
708
709
|
};
|
|
709
|
-
|
|
710
|
+
tech: {
|
|
711
|
+
email: string;
|
|
712
|
+
state: string;
|
|
710
713
|
firstName: string;
|
|
711
714
|
lastName: string;
|
|
712
|
-
email: string;
|
|
713
715
|
phone: string;
|
|
714
716
|
address1: string;
|
|
715
717
|
city: string;
|
|
716
|
-
state: string;
|
|
717
718
|
zip: string;
|
|
718
719
|
country: string;
|
|
719
720
|
address2?: string | undefined;
|
|
720
721
|
organization?: string | undefined;
|
|
721
722
|
};
|
|
722
723
|
};
|
|
723
|
-
privacyEnabled: boolean;
|
|
724
724
|
locked: boolean;
|
|
725
725
|
autoRenewEnabled: boolean;
|
|
726
726
|
expireDate: string;
|
|
727
|
-
createDate: string;
|
|
728
727
|
}, {
|
|
729
|
-
|
|
728
|
+
privacyEnabled: boolean;
|
|
729
|
+
createDate: string;
|
|
730
730
|
renewalPrice: number;
|
|
731
|
+
domainName: string;
|
|
731
732
|
nameservers: string[];
|
|
732
733
|
contacts: {
|
|
733
|
-
|
|
734
|
+
admin: {
|
|
735
|
+
email: string;
|
|
736
|
+
state: string;
|
|
734
737
|
firstName: string;
|
|
735
738
|
lastName: string;
|
|
736
|
-
email: string;
|
|
737
739
|
phone: string;
|
|
738
740
|
address1: string;
|
|
739
741
|
city: string;
|
|
740
|
-
state: string;
|
|
741
742
|
zip: string;
|
|
742
743
|
country: string;
|
|
743
744
|
address2?: string | undefined;
|
|
744
745
|
organization?: string | undefined;
|
|
745
746
|
};
|
|
746
|
-
|
|
747
|
+
billing: {
|
|
748
|
+
email: string;
|
|
749
|
+
state: string;
|
|
747
750
|
firstName: string;
|
|
748
751
|
lastName: string;
|
|
749
|
-
email: string;
|
|
750
752
|
phone: string;
|
|
751
753
|
address1: string;
|
|
752
754
|
city: string;
|
|
753
|
-
state: string;
|
|
754
755
|
zip: string;
|
|
755
756
|
country: string;
|
|
756
757
|
address2?: string | undefined;
|
|
757
758
|
organization?: string | undefined;
|
|
758
759
|
};
|
|
759
|
-
|
|
760
|
+
registrant: {
|
|
761
|
+
email: string;
|
|
762
|
+
state: string;
|
|
760
763
|
firstName: string;
|
|
761
764
|
lastName: string;
|
|
762
|
-
email: string;
|
|
763
765
|
phone: string;
|
|
764
766
|
address1: string;
|
|
765
767
|
city: string;
|
|
766
|
-
state: string;
|
|
767
768
|
zip: string;
|
|
768
769
|
country: string;
|
|
769
770
|
address2?: string | undefined;
|
|
770
771
|
organization?: string | undefined;
|
|
771
772
|
};
|
|
772
|
-
|
|
773
|
+
tech: {
|
|
774
|
+
email: string;
|
|
775
|
+
state: string;
|
|
773
776
|
firstName: string;
|
|
774
777
|
lastName: string;
|
|
775
|
-
email: string;
|
|
776
778
|
phone: string;
|
|
777
779
|
address1: string;
|
|
778
780
|
city: string;
|
|
779
|
-
state: string;
|
|
780
781
|
zip: string;
|
|
781
782
|
country: string;
|
|
782
783
|
address2?: string | undefined;
|
|
783
784
|
organization?: string | undefined;
|
|
784
785
|
};
|
|
785
786
|
};
|
|
786
|
-
privacyEnabled: boolean;
|
|
787
787
|
locked: boolean;
|
|
788
788
|
autoRenewEnabled: boolean;
|
|
789
789
|
expireDate: string;
|
|
790
|
-
createDate: string;
|
|
791
790
|
}>;
|
|
792
791
|
export declare const ListDomainsResponseSchema: z.ZodObject<{
|
|
793
792
|
domains: z.ZodArray<z.ZodObject<{
|
|
@@ -807,25 +806,25 @@ export declare const ListDomainsResponseSchema: z.ZodObject<{
|
|
|
807
806
|
country: z.ZodString;
|
|
808
807
|
organization: z.ZodOptional<z.ZodString>;
|
|
809
808
|
}, "strip", z.ZodTypeAny, {
|
|
809
|
+
email: string;
|
|
810
|
+
state: string;
|
|
810
811
|
firstName: string;
|
|
811
812
|
lastName: string;
|
|
812
|
-
email: string;
|
|
813
813
|
phone: string;
|
|
814
814
|
address1: string;
|
|
815
815
|
city: string;
|
|
816
|
-
state: string;
|
|
817
816
|
zip: string;
|
|
818
817
|
country: string;
|
|
819
818
|
address2?: string | undefined;
|
|
820
819
|
organization?: string | undefined;
|
|
821
820
|
}, {
|
|
821
|
+
email: string;
|
|
822
|
+
state: string;
|
|
822
823
|
firstName: string;
|
|
823
824
|
lastName: string;
|
|
824
|
-
email: string;
|
|
825
825
|
phone: string;
|
|
826
826
|
address1: string;
|
|
827
827
|
city: string;
|
|
828
|
-
state: string;
|
|
829
828
|
zip: string;
|
|
830
829
|
country: string;
|
|
831
830
|
address2?: string | undefined;
|
|
@@ -844,25 +843,25 @@ export declare const ListDomainsResponseSchema: z.ZodObject<{
|
|
|
844
843
|
country: z.ZodString;
|
|
845
844
|
organization: z.ZodOptional<z.ZodString>;
|
|
846
845
|
}, "strip", z.ZodTypeAny, {
|
|
846
|
+
email: string;
|
|
847
|
+
state: string;
|
|
847
848
|
firstName: string;
|
|
848
849
|
lastName: string;
|
|
849
|
-
email: string;
|
|
850
850
|
phone: string;
|
|
851
851
|
address1: string;
|
|
852
852
|
city: string;
|
|
853
|
-
state: string;
|
|
854
853
|
zip: string;
|
|
855
854
|
country: string;
|
|
856
855
|
address2?: string | undefined;
|
|
857
856
|
organization?: string | undefined;
|
|
858
857
|
}, {
|
|
858
|
+
email: string;
|
|
859
|
+
state: string;
|
|
859
860
|
firstName: string;
|
|
860
861
|
lastName: string;
|
|
861
|
-
email: string;
|
|
862
862
|
phone: string;
|
|
863
863
|
address1: string;
|
|
864
864
|
city: string;
|
|
865
|
-
state: string;
|
|
866
865
|
zip: string;
|
|
867
866
|
country: string;
|
|
868
867
|
address2?: string | undefined;
|
|
@@ -881,25 +880,25 @@ export declare const ListDomainsResponseSchema: z.ZodObject<{
|
|
|
881
880
|
country: z.ZodString;
|
|
882
881
|
organization: z.ZodOptional<z.ZodString>;
|
|
883
882
|
}, "strip", z.ZodTypeAny, {
|
|
883
|
+
email: string;
|
|
884
|
+
state: string;
|
|
884
885
|
firstName: string;
|
|
885
886
|
lastName: string;
|
|
886
|
-
email: string;
|
|
887
887
|
phone: string;
|
|
888
888
|
address1: string;
|
|
889
889
|
city: string;
|
|
890
|
-
state: string;
|
|
891
890
|
zip: string;
|
|
892
891
|
country: string;
|
|
893
892
|
address2?: string | undefined;
|
|
894
893
|
organization?: string | undefined;
|
|
895
894
|
}, {
|
|
895
|
+
email: string;
|
|
896
|
+
state: string;
|
|
896
897
|
firstName: string;
|
|
897
898
|
lastName: string;
|
|
898
|
-
email: string;
|
|
899
899
|
phone: string;
|
|
900
900
|
address1: string;
|
|
901
901
|
city: string;
|
|
902
|
-
state: string;
|
|
903
902
|
zip: string;
|
|
904
903
|
country: string;
|
|
905
904
|
address2?: string | undefined;
|
|
@@ -918,131 +917,131 @@ export declare const ListDomainsResponseSchema: z.ZodObject<{
|
|
|
918
917
|
country: z.ZodString;
|
|
919
918
|
organization: z.ZodOptional<z.ZodString>;
|
|
920
919
|
}, "strip", z.ZodTypeAny, {
|
|
920
|
+
email: string;
|
|
921
|
+
state: string;
|
|
921
922
|
firstName: string;
|
|
922
923
|
lastName: string;
|
|
923
|
-
email: string;
|
|
924
924
|
phone: string;
|
|
925
925
|
address1: string;
|
|
926
926
|
city: string;
|
|
927
|
-
state: string;
|
|
928
927
|
zip: string;
|
|
929
928
|
country: string;
|
|
930
929
|
address2?: string | undefined;
|
|
931
930
|
organization?: string | undefined;
|
|
932
931
|
}, {
|
|
932
|
+
email: string;
|
|
933
|
+
state: string;
|
|
933
934
|
firstName: string;
|
|
934
935
|
lastName: string;
|
|
935
|
-
email: string;
|
|
936
936
|
phone: string;
|
|
937
937
|
address1: string;
|
|
938
938
|
city: string;
|
|
939
|
-
state: string;
|
|
940
939
|
zip: string;
|
|
941
940
|
country: string;
|
|
942
941
|
address2?: string | undefined;
|
|
943
942
|
organization?: string | undefined;
|
|
944
943
|
}>;
|
|
945
944
|
}, "strip", z.ZodTypeAny, {
|
|
946
|
-
|
|
945
|
+
admin: {
|
|
946
|
+
email: string;
|
|
947
|
+
state: string;
|
|
947
948
|
firstName: string;
|
|
948
949
|
lastName: string;
|
|
949
|
-
email: string;
|
|
950
950
|
phone: string;
|
|
951
951
|
address1: string;
|
|
952
952
|
city: string;
|
|
953
|
-
state: string;
|
|
954
953
|
zip: string;
|
|
955
954
|
country: string;
|
|
956
955
|
address2?: string | undefined;
|
|
957
956
|
organization?: string | undefined;
|
|
958
957
|
};
|
|
959
|
-
|
|
958
|
+
billing: {
|
|
959
|
+
email: string;
|
|
960
|
+
state: string;
|
|
960
961
|
firstName: string;
|
|
961
962
|
lastName: string;
|
|
962
|
-
email: string;
|
|
963
963
|
phone: string;
|
|
964
964
|
address1: string;
|
|
965
965
|
city: string;
|
|
966
|
-
state: string;
|
|
967
966
|
zip: string;
|
|
968
967
|
country: string;
|
|
969
968
|
address2?: string | undefined;
|
|
970
969
|
organization?: string | undefined;
|
|
971
970
|
};
|
|
972
|
-
|
|
971
|
+
registrant: {
|
|
972
|
+
email: string;
|
|
973
|
+
state: string;
|
|
973
974
|
firstName: string;
|
|
974
975
|
lastName: string;
|
|
975
|
-
email: string;
|
|
976
976
|
phone: string;
|
|
977
977
|
address1: string;
|
|
978
978
|
city: string;
|
|
979
|
-
state: string;
|
|
980
979
|
zip: string;
|
|
981
980
|
country: string;
|
|
982
981
|
address2?: string | undefined;
|
|
983
982
|
organization?: string | undefined;
|
|
984
983
|
};
|
|
985
|
-
|
|
984
|
+
tech: {
|
|
985
|
+
email: string;
|
|
986
|
+
state: string;
|
|
986
987
|
firstName: string;
|
|
987
988
|
lastName: string;
|
|
988
|
-
email: string;
|
|
989
989
|
phone: string;
|
|
990
990
|
address1: string;
|
|
991
991
|
city: string;
|
|
992
|
-
state: string;
|
|
993
992
|
zip: string;
|
|
994
993
|
country: string;
|
|
995
994
|
address2?: string | undefined;
|
|
996
995
|
organization?: string | undefined;
|
|
997
996
|
};
|
|
998
997
|
}, {
|
|
999
|
-
|
|
998
|
+
admin: {
|
|
999
|
+
email: string;
|
|
1000
|
+
state: string;
|
|
1000
1001
|
firstName: string;
|
|
1001
1002
|
lastName: string;
|
|
1002
|
-
email: string;
|
|
1003
1003
|
phone: string;
|
|
1004
1004
|
address1: string;
|
|
1005
1005
|
city: string;
|
|
1006
|
-
state: string;
|
|
1007
1006
|
zip: string;
|
|
1008
1007
|
country: string;
|
|
1009
1008
|
address2?: string | undefined;
|
|
1010
1009
|
organization?: string | undefined;
|
|
1011
1010
|
};
|
|
1012
|
-
|
|
1011
|
+
billing: {
|
|
1012
|
+
email: string;
|
|
1013
|
+
state: string;
|
|
1013
1014
|
firstName: string;
|
|
1014
1015
|
lastName: string;
|
|
1015
|
-
email: string;
|
|
1016
1016
|
phone: string;
|
|
1017
1017
|
address1: string;
|
|
1018
1018
|
city: string;
|
|
1019
|
-
state: string;
|
|
1020
1019
|
zip: string;
|
|
1021
1020
|
country: string;
|
|
1022
1021
|
address2?: string | undefined;
|
|
1023
1022
|
organization?: string | undefined;
|
|
1024
1023
|
};
|
|
1025
|
-
|
|
1024
|
+
registrant: {
|
|
1025
|
+
email: string;
|
|
1026
|
+
state: string;
|
|
1026
1027
|
firstName: string;
|
|
1027
1028
|
lastName: string;
|
|
1028
|
-
email: string;
|
|
1029
1029
|
phone: string;
|
|
1030
1030
|
address1: string;
|
|
1031
1031
|
city: string;
|
|
1032
|
-
state: string;
|
|
1033
1032
|
zip: string;
|
|
1034
1033
|
country: string;
|
|
1035
1034
|
address2?: string | undefined;
|
|
1036
1035
|
organization?: string | undefined;
|
|
1037
1036
|
};
|
|
1038
|
-
|
|
1037
|
+
tech: {
|
|
1038
|
+
email: string;
|
|
1039
|
+
state: string;
|
|
1039
1040
|
firstName: string;
|
|
1040
1041
|
lastName: string;
|
|
1041
|
-
email: string;
|
|
1042
1042
|
phone: string;
|
|
1043
1043
|
address1: string;
|
|
1044
1044
|
city: string;
|
|
1045
|
-
state: string;
|
|
1046
1045
|
zip: string;
|
|
1047
1046
|
country: string;
|
|
1048
1047
|
address2?: string | undefined;
|
|
@@ -1056,265 +1055,265 @@ export declare const ListDomainsResponseSchema: z.ZodObject<{
|
|
|
1056
1055
|
createDate: z.ZodString;
|
|
1057
1056
|
renewalPrice: z.ZodNumber;
|
|
1058
1057
|
}, "strip", z.ZodTypeAny, {
|
|
1059
|
-
|
|
1058
|
+
privacyEnabled: boolean;
|
|
1059
|
+
createDate: string;
|
|
1060
1060
|
renewalPrice: number;
|
|
1061
|
+
domainName: string;
|
|
1061
1062
|
nameservers: string[];
|
|
1062
1063
|
contacts: {
|
|
1063
|
-
|
|
1064
|
+
admin: {
|
|
1065
|
+
email: string;
|
|
1066
|
+
state: string;
|
|
1064
1067
|
firstName: string;
|
|
1065
1068
|
lastName: string;
|
|
1066
|
-
email: string;
|
|
1067
1069
|
phone: string;
|
|
1068
1070
|
address1: string;
|
|
1069
1071
|
city: string;
|
|
1070
|
-
state: string;
|
|
1071
1072
|
zip: string;
|
|
1072
1073
|
country: string;
|
|
1073
1074
|
address2?: string | undefined;
|
|
1074
1075
|
organization?: string | undefined;
|
|
1075
1076
|
};
|
|
1076
|
-
|
|
1077
|
+
billing: {
|
|
1078
|
+
email: string;
|
|
1079
|
+
state: string;
|
|
1077
1080
|
firstName: string;
|
|
1078
1081
|
lastName: string;
|
|
1079
|
-
email: string;
|
|
1080
1082
|
phone: string;
|
|
1081
1083
|
address1: string;
|
|
1082
1084
|
city: string;
|
|
1083
|
-
state: string;
|
|
1084
1085
|
zip: string;
|
|
1085
1086
|
country: string;
|
|
1086
1087
|
address2?: string | undefined;
|
|
1087
1088
|
organization?: string | undefined;
|
|
1088
1089
|
};
|
|
1089
|
-
|
|
1090
|
+
registrant: {
|
|
1091
|
+
email: string;
|
|
1092
|
+
state: string;
|
|
1090
1093
|
firstName: string;
|
|
1091
1094
|
lastName: string;
|
|
1092
|
-
email: string;
|
|
1093
1095
|
phone: string;
|
|
1094
1096
|
address1: string;
|
|
1095
1097
|
city: string;
|
|
1096
|
-
state: string;
|
|
1097
1098
|
zip: string;
|
|
1098
1099
|
country: string;
|
|
1099
1100
|
address2?: string | undefined;
|
|
1100
1101
|
organization?: string | undefined;
|
|
1101
1102
|
};
|
|
1102
|
-
|
|
1103
|
+
tech: {
|
|
1104
|
+
email: string;
|
|
1105
|
+
state: string;
|
|
1103
1106
|
firstName: string;
|
|
1104
1107
|
lastName: string;
|
|
1105
|
-
email: string;
|
|
1106
1108
|
phone: string;
|
|
1107
1109
|
address1: string;
|
|
1108
1110
|
city: string;
|
|
1109
|
-
state: string;
|
|
1110
1111
|
zip: string;
|
|
1111
1112
|
country: string;
|
|
1112
1113
|
address2?: string | undefined;
|
|
1113
1114
|
organization?: string | undefined;
|
|
1114
1115
|
};
|
|
1115
1116
|
};
|
|
1116
|
-
privacyEnabled: boolean;
|
|
1117
1117
|
locked: boolean;
|
|
1118
1118
|
autoRenewEnabled: boolean;
|
|
1119
1119
|
expireDate: string;
|
|
1120
|
-
createDate: string;
|
|
1121
1120
|
}, {
|
|
1122
|
-
|
|
1121
|
+
privacyEnabled: boolean;
|
|
1122
|
+
createDate: string;
|
|
1123
1123
|
renewalPrice: number;
|
|
1124
|
+
domainName: string;
|
|
1124
1125
|
nameservers: string[];
|
|
1125
1126
|
contacts: {
|
|
1126
|
-
|
|
1127
|
+
admin: {
|
|
1128
|
+
email: string;
|
|
1129
|
+
state: string;
|
|
1127
1130
|
firstName: string;
|
|
1128
1131
|
lastName: string;
|
|
1129
|
-
email: string;
|
|
1130
1132
|
phone: string;
|
|
1131
1133
|
address1: string;
|
|
1132
1134
|
city: string;
|
|
1133
|
-
state: string;
|
|
1134
1135
|
zip: string;
|
|
1135
1136
|
country: string;
|
|
1136
1137
|
address2?: string | undefined;
|
|
1137
1138
|
organization?: string | undefined;
|
|
1138
1139
|
};
|
|
1139
|
-
|
|
1140
|
+
billing: {
|
|
1141
|
+
email: string;
|
|
1142
|
+
state: string;
|
|
1140
1143
|
firstName: string;
|
|
1141
1144
|
lastName: string;
|
|
1142
|
-
email: string;
|
|
1143
1145
|
phone: string;
|
|
1144
1146
|
address1: string;
|
|
1145
1147
|
city: string;
|
|
1146
|
-
state: string;
|
|
1147
1148
|
zip: string;
|
|
1148
1149
|
country: string;
|
|
1149
1150
|
address2?: string | undefined;
|
|
1150
1151
|
organization?: string | undefined;
|
|
1151
1152
|
};
|
|
1152
|
-
|
|
1153
|
+
registrant: {
|
|
1154
|
+
email: string;
|
|
1155
|
+
state: string;
|
|
1153
1156
|
firstName: string;
|
|
1154
1157
|
lastName: string;
|
|
1155
|
-
email: string;
|
|
1156
1158
|
phone: string;
|
|
1157
1159
|
address1: string;
|
|
1158
1160
|
city: string;
|
|
1159
|
-
state: string;
|
|
1160
1161
|
zip: string;
|
|
1161
1162
|
country: string;
|
|
1162
1163
|
address2?: string | undefined;
|
|
1163
1164
|
organization?: string | undefined;
|
|
1164
1165
|
};
|
|
1165
|
-
|
|
1166
|
+
tech: {
|
|
1167
|
+
email: string;
|
|
1168
|
+
state: string;
|
|
1166
1169
|
firstName: string;
|
|
1167
1170
|
lastName: string;
|
|
1168
|
-
email: string;
|
|
1169
1171
|
phone: string;
|
|
1170
1172
|
address1: string;
|
|
1171
1173
|
city: string;
|
|
1172
|
-
state: string;
|
|
1173
1174
|
zip: string;
|
|
1174
1175
|
country: string;
|
|
1175
1176
|
address2?: string | undefined;
|
|
1176
1177
|
organization?: string | undefined;
|
|
1177
1178
|
};
|
|
1178
1179
|
};
|
|
1179
|
-
privacyEnabled: boolean;
|
|
1180
1180
|
locked: boolean;
|
|
1181
1181
|
autoRenewEnabled: boolean;
|
|
1182
1182
|
expireDate: string;
|
|
1183
|
-
createDate: string;
|
|
1184
1183
|
}>, "many">;
|
|
1185
1184
|
nextPage: z.ZodOptional<z.ZodNumber>;
|
|
1186
1185
|
lastPage: z.ZodOptional<z.ZodNumber>;
|
|
1187
1186
|
}, "strip", z.ZodTypeAny, {
|
|
1188
1187
|
domains: {
|
|
1189
|
-
|
|
1188
|
+
privacyEnabled: boolean;
|
|
1189
|
+
createDate: string;
|
|
1190
1190
|
renewalPrice: number;
|
|
1191
|
+
domainName: string;
|
|
1191
1192
|
nameservers: string[];
|
|
1192
1193
|
contacts: {
|
|
1193
|
-
|
|
1194
|
+
admin: {
|
|
1195
|
+
email: string;
|
|
1196
|
+
state: string;
|
|
1194
1197
|
firstName: string;
|
|
1195
1198
|
lastName: string;
|
|
1196
|
-
email: string;
|
|
1197
1199
|
phone: string;
|
|
1198
1200
|
address1: string;
|
|
1199
1201
|
city: string;
|
|
1200
|
-
state: string;
|
|
1201
1202
|
zip: string;
|
|
1202
1203
|
country: string;
|
|
1203
1204
|
address2?: string | undefined;
|
|
1204
1205
|
organization?: string | undefined;
|
|
1205
1206
|
};
|
|
1206
|
-
|
|
1207
|
+
billing: {
|
|
1208
|
+
email: string;
|
|
1209
|
+
state: string;
|
|
1207
1210
|
firstName: string;
|
|
1208
1211
|
lastName: string;
|
|
1209
|
-
email: string;
|
|
1210
1212
|
phone: string;
|
|
1211
1213
|
address1: string;
|
|
1212
1214
|
city: string;
|
|
1213
|
-
state: string;
|
|
1214
1215
|
zip: string;
|
|
1215
1216
|
country: string;
|
|
1216
1217
|
address2?: string | undefined;
|
|
1217
1218
|
organization?: string | undefined;
|
|
1218
1219
|
};
|
|
1219
|
-
|
|
1220
|
+
registrant: {
|
|
1221
|
+
email: string;
|
|
1222
|
+
state: string;
|
|
1220
1223
|
firstName: string;
|
|
1221
1224
|
lastName: string;
|
|
1222
|
-
email: string;
|
|
1223
1225
|
phone: string;
|
|
1224
1226
|
address1: string;
|
|
1225
1227
|
city: string;
|
|
1226
|
-
state: string;
|
|
1227
1228
|
zip: string;
|
|
1228
1229
|
country: string;
|
|
1229
1230
|
address2?: string | undefined;
|
|
1230
1231
|
organization?: string | undefined;
|
|
1231
1232
|
};
|
|
1232
|
-
|
|
1233
|
+
tech: {
|
|
1234
|
+
email: string;
|
|
1235
|
+
state: string;
|
|
1233
1236
|
firstName: string;
|
|
1234
1237
|
lastName: string;
|
|
1235
|
-
email: string;
|
|
1236
1238
|
phone: string;
|
|
1237
1239
|
address1: string;
|
|
1238
1240
|
city: string;
|
|
1239
|
-
state: string;
|
|
1240
1241
|
zip: string;
|
|
1241
1242
|
country: string;
|
|
1242
1243
|
address2?: string | undefined;
|
|
1243
1244
|
organization?: string | undefined;
|
|
1244
1245
|
};
|
|
1245
1246
|
};
|
|
1246
|
-
privacyEnabled: boolean;
|
|
1247
1247
|
locked: boolean;
|
|
1248
1248
|
autoRenewEnabled: boolean;
|
|
1249
1249
|
expireDate: string;
|
|
1250
|
-
createDate: string;
|
|
1251
1250
|
}[];
|
|
1252
1251
|
nextPage?: number | undefined;
|
|
1253
1252
|
lastPage?: number | undefined;
|
|
1254
1253
|
}, {
|
|
1255
1254
|
domains: {
|
|
1256
|
-
|
|
1255
|
+
privacyEnabled: boolean;
|
|
1256
|
+
createDate: string;
|
|
1257
1257
|
renewalPrice: number;
|
|
1258
|
+
domainName: string;
|
|
1258
1259
|
nameservers: string[];
|
|
1259
1260
|
contacts: {
|
|
1260
|
-
|
|
1261
|
+
admin: {
|
|
1262
|
+
email: string;
|
|
1263
|
+
state: string;
|
|
1261
1264
|
firstName: string;
|
|
1262
1265
|
lastName: string;
|
|
1263
|
-
email: string;
|
|
1264
1266
|
phone: string;
|
|
1265
1267
|
address1: string;
|
|
1266
1268
|
city: string;
|
|
1267
|
-
state: string;
|
|
1268
1269
|
zip: string;
|
|
1269
1270
|
country: string;
|
|
1270
1271
|
address2?: string | undefined;
|
|
1271
1272
|
organization?: string | undefined;
|
|
1272
1273
|
};
|
|
1273
|
-
|
|
1274
|
+
billing: {
|
|
1275
|
+
email: string;
|
|
1276
|
+
state: string;
|
|
1274
1277
|
firstName: string;
|
|
1275
1278
|
lastName: string;
|
|
1276
|
-
email: string;
|
|
1277
1279
|
phone: string;
|
|
1278
1280
|
address1: string;
|
|
1279
1281
|
city: string;
|
|
1280
|
-
state: string;
|
|
1281
1282
|
zip: string;
|
|
1282
1283
|
country: string;
|
|
1283
1284
|
address2?: string | undefined;
|
|
1284
1285
|
organization?: string | undefined;
|
|
1285
1286
|
};
|
|
1286
|
-
|
|
1287
|
+
registrant: {
|
|
1288
|
+
email: string;
|
|
1289
|
+
state: string;
|
|
1287
1290
|
firstName: string;
|
|
1288
1291
|
lastName: string;
|
|
1289
|
-
email: string;
|
|
1290
1292
|
phone: string;
|
|
1291
1293
|
address1: string;
|
|
1292
1294
|
city: string;
|
|
1293
|
-
state: string;
|
|
1294
1295
|
zip: string;
|
|
1295
1296
|
country: string;
|
|
1296
1297
|
address2?: string | undefined;
|
|
1297
1298
|
organization?: string | undefined;
|
|
1298
1299
|
};
|
|
1299
|
-
|
|
1300
|
+
tech: {
|
|
1301
|
+
email: string;
|
|
1302
|
+
state: string;
|
|
1300
1303
|
firstName: string;
|
|
1301
1304
|
lastName: string;
|
|
1302
|
-
email: string;
|
|
1303
1305
|
phone: string;
|
|
1304
1306
|
address1: string;
|
|
1305
1307
|
city: string;
|
|
1306
|
-
state: string;
|
|
1307
1308
|
zip: string;
|
|
1308
1309
|
country: string;
|
|
1309
1310
|
address2?: string | undefined;
|
|
1310
1311
|
organization?: string | undefined;
|
|
1311
1312
|
};
|
|
1312
1313
|
};
|
|
1313
|
-
privacyEnabled: boolean;
|
|
1314
1314
|
locked: boolean;
|
|
1315
1315
|
autoRenewEnabled: boolean;
|
|
1316
1316
|
expireDate: string;
|
|
1317
|
-
createDate: string;
|
|
1318
1317
|
}[];
|
|
1319
1318
|
nextPage?: number | undefined;
|
|
1320
1319
|
lastPage?: number | undefined;
|
|
@@ -1330,22 +1329,22 @@ export declare const DnsRecordSchema: z.ZodObject<{
|
|
|
1330
1329
|
ttl: z.ZodNumber;
|
|
1331
1330
|
priority: z.ZodOptional<z.ZodNumber>;
|
|
1332
1331
|
}, "strip", z.ZodTypeAny, {
|
|
1333
|
-
|
|
1332
|
+
host: string;
|
|
1334
1333
|
domainName: string;
|
|
1334
|
+
type: "A" | "AAAA" | "ANAME" | "CNAME" | "MX" | "NS" | "SRV" | "TXT" | "URL";
|
|
1335
|
+
ttl: number;
|
|
1335
1336
|
id: number;
|
|
1336
|
-
host: string;
|
|
1337
1337
|
fqdn: string;
|
|
1338
1338
|
answer: string;
|
|
1339
|
-
ttl: number;
|
|
1340
1339
|
priority?: number | undefined;
|
|
1341
1340
|
}, {
|
|
1342
|
-
|
|
1341
|
+
host: string;
|
|
1343
1342
|
domainName: string;
|
|
1343
|
+
type: "A" | "AAAA" | "ANAME" | "CNAME" | "MX" | "NS" | "SRV" | "TXT" | "URL";
|
|
1344
|
+
ttl: number;
|
|
1344
1345
|
id: number;
|
|
1345
|
-
host: string;
|
|
1346
1346
|
fqdn: string;
|
|
1347
1347
|
answer: string;
|
|
1348
|
-
ttl: number;
|
|
1349
1348
|
priority?: number | undefined;
|
|
1350
1349
|
}>;
|
|
1351
1350
|
export declare const DnsRecordInputSchema: z.ZodObject<{
|
|
@@ -1355,17 +1354,17 @@ export declare const DnsRecordInputSchema: z.ZodObject<{
|
|
|
1355
1354
|
ttl: z.ZodOptional<z.ZodNumber>;
|
|
1356
1355
|
priority: z.ZodOptional<z.ZodNumber>;
|
|
1357
1356
|
}, "strip", z.ZodTypeAny, {
|
|
1358
|
-
type: "A" | "AAAA" | "ANAME" | "CNAME" | "MX" | "NS" | "SRV" | "TXT" | "URL";
|
|
1359
1357
|
host: string;
|
|
1358
|
+
type: "A" | "AAAA" | "ANAME" | "CNAME" | "MX" | "NS" | "SRV" | "TXT" | "URL";
|
|
1360
1359
|
answer: string;
|
|
1361
|
-
ttl?: number | undefined;
|
|
1362
1360
|
priority?: number | undefined;
|
|
1361
|
+
ttl?: number | undefined;
|
|
1363
1362
|
}, {
|
|
1364
|
-
type: "A" | "AAAA" | "ANAME" | "CNAME" | "MX" | "NS" | "SRV" | "TXT" | "URL";
|
|
1365
1363
|
host: string;
|
|
1364
|
+
type: "A" | "AAAA" | "ANAME" | "CNAME" | "MX" | "NS" | "SRV" | "TXT" | "URL";
|
|
1366
1365
|
answer: string;
|
|
1367
|
-
ttl?: number | undefined;
|
|
1368
1366
|
priority?: number | undefined;
|
|
1367
|
+
ttl?: number | undefined;
|
|
1369
1368
|
}>;
|
|
1370
1369
|
export declare const ListDnsRecordsResponseSchema: z.ZodObject<{
|
|
1371
1370
|
records: z.ZodArray<z.ZodObject<{
|
|
@@ -1378,48 +1377,48 @@ export declare const ListDnsRecordsResponseSchema: z.ZodObject<{
|
|
|
1378
1377
|
ttl: z.ZodNumber;
|
|
1379
1378
|
priority: z.ZodOptional<z.ZodNumber>;
|
|
1380
1379
|
}, "strip", z.ZodTypeAny, {
|
|
1381
|
-
|
|
1380
|
+
host: string;
|
|
1382
1381
|
domainName: string;
|
|
1382
|
+
type: "A" | "AAAA" | "ANAME" | "CNAME" | "MX" | "NS" | "SRV" | "TXT" | "URL";
|
|
1383
|
+
ttl: number;
|
|
1383
1384
|
id: number;
|
|
1384
|
-
host: string;
|
|
1385
1385
|
fqdn: string;
|
|
1386
1386
|
answer: string;
|
|
1387
|
-
ttl: number;
|
|
1388
1387
|
priority?: number | undefined;
|
|
1389
1388
|
}, {
|
|
1390
|
-
|
|
1389
|
+
host: string;
|
|
1391
1390
|
domainName: string;
|
|
1391
|
+
type: "A" | "AAAA" | "ANAME" | "CNAME" | "MX" | "NS" | "SRV" | "TXT" | "URL";
|
|
1392
|
+
ttl: number;
|
|
1392
1393
|
id: number;
|
|
1393
|
-
host: string;
|
|
1394
1394
|
fqdn: string;
|
|
1395
1395
|
answer: string;
|
|
1396
|
-
ttl: number;
|
|
1397
1396
|
priority?: number | undefined;
|
|
1398
1397
|
}>, "many">;
|
|
1399
1398
|
nextPage: z.ZodOptional<z.ZodNumber>;
|
|
1400
1399
|
lastPage: z.ZodOptional<z.ZodNumber>;
|
|
1401
1400
|
}, "strip", z.ZodTypeAny, {
|
|
1402
1401
|
records: {
|
|
1403
|
-
|
|
1402
|
+
host: string;
|
|
1404
1403
|
domainName: string;
|
|
1404
|
+
type: "A" | "AAAA" | "ANAME" | "CNAME" | "MX" | "NS" | "SRV" | "TXT" | "URL";
|
|
1405
|
+
ttl: number;
|
|
1405
1406
|
id: number;
|
|
1406
|
-
host: string;
|
|
1407
1407
|
fqdn: string;
|
|
1408
1408
|
answer: string;
|
|
1409
|
-
ttl: number;
|
|
1410
1409
|
priority?: number | undefined;
|
|
1411
1410
|
}[];
|
|
1412
1411
|
nextPage?: number | undefined;
|
|
1413
1412
|
lastPage?: number | undefined;
|
|
1414
1413
|
}, {
|
|
1415
1414
|
records: {
|
|
1416
|
-
|
|
1415
|
+
host: string;
|
|
1417
1416
|
domainName: string;
|
|
1417
|
+
type: "A" | "AAAA" | "ANAME" | "CNAME" | "MX" | "NS" | "SRV" | "TXT" | "URL";
|
|
1418
|
+
ttl: number;
|
|
1418
1419
|
id: number;
|
|
1419
|
-
host: string;
|
|
1420
1420
|
fqdn: string;
|
|
1421
1421
|
answer: string;
|
|
1422
|
-
ttl: number;
|
|
1423
1422
|
priority?: number | undefined;
|
|
1424
1423
|
}[];
|
|
1425
1424
|
nextPage?: number | undefined;
|
|
@@ -1443,25 +1442,25 @@ export declare const RenewDomainResponseSchema: z.ZodObject<{
|
|
|
1443
1442
|
country: z.ZodString;
|
|
1444
1443
|
organization: z.ZodOptional<z.ZodString>;
|
|
1445
1444
|
}, "strip", z.ZodTypeAny, {
|
|
1445
|
+
email: string;
|
|
1446
|
+
state: string;
|
|
1446
1447
|
firstName: string;
|
|
1447
1448
|
lastName: string;
|
|
1448
|
-
email: string;
|
|
1449
1449
|
phone: string;
|
|
1450
1450
|
address1: string;
|
|
1451
1451
|
city: string;
|
|
1452
|
-
state: string;
|
|
1453
1452
|
zip: string;
|
|
1454
1453
|
country: string;
|
|
1455
1454
|
address2?: string | undefined;
|
|
1456
1455
|
organization?: string | undefined;
|
|
1457
1456
|
}, {
|
|
1457
|
+
email: string;
|
|
1458
|
+
state: string;
|
|
1458
1459
|
firstName: string;
|
|
1459
1460
|
lastName: string;
|
|
1460
|
-
email: string;
|
|
1461
1461
|
phone: string;
|
|
1462
1462
|
address1: string;
|
|
1463
1463
|
city: string;
|
|
1464
|
-
state: string;
|
|
1465
1464
|
zip: string;
|
|
1466
1465
|
country: string;
|
|
1467
1466
|
address2?: string | undefined;
|
|
@@ -1480,25 +1479,25 @@ export declare const RenewDomainResponseSchema: z.ZodObject<{
|
|
|
1480
1479
|
country: z.ZodString;
|
|
1481
1480
|
organization: z.ZodOptional<z.ZodString>;
|
|
1482
1481
|
}, "strip", z.ZodTypeAny, {
|
|
1482
|
+
email: string;
|
|
1483
|
+
state: string;
|
|
1483
1484
|
firstName: string;
|
|
1484
1485
|
lastName: string;
|
|
1485
|
-
email: string;
|
|
1486
1486
|
phone: string;
|
|
1487
1487
|
address1: string;
|
|
1488
1488
|
city: string;
|
|
1489
|
-
state: string;
|
|
1490
1489
|
zip: string;
|
|
1491
1490
|
country: string;
|
|
1492
1491
|
address2?: string | undefined;
|
|
1493
1492
|
organization?: string | undefined;
|
|
1494
1493
|
}, {
|
|
1494
|
+
email: string;
|
|
1495
|
+
state: string;
|
|
1495
1496
|
firstName: string;
|
|
1496
1497
|
lastName: string;
|
|
1497
|
-
email: string;
|
|
1498
1498
|
phone: string;
|
|
1499
1499
|
address1: string;
|
|
1500
1500
|
city: string;
|
|
1501
|
-
state: string;
|
|
1502
1501
|
zip: string;
|
|
1503
1502
|
country: string;
|
|
1504
1503
|
address2?: string | undefined;
|
|
@@ -1517,25 +1516,25 @@ export declare const RenewDomainResponseSchema: z.ZodObject<{
|
|
|
1517
1516
|
country: z.ZodString;
|
|
1518
1517
|
organization: z.ZodOptional<z.ZodString>;
|
|
1519
1518
|
}, "strip", z.ZodTypeAny, {
|
|
1519
|
+
email: string;
|
|
1520
|
+
state: string;
|
|
1520
1521
|
firstName: string;
|
|
1521
1522
|
lastName: string;
|
|
1522
|
-
email: string;
|
|
1523
1523
|
phone: string;
|
|
1524
1524
|
address1: string;
|
|
1525
1525
|
city: string;
|
|
1526
|
-
state: string;
|
|
1527
1526
|
zip: string;
|
|
1528
1527
|
country: string;
|
|
1529
1528
|
address2?: string | undefined;
|
|
1530
1529
|
organization?: string | undefined;
|
|
1531
1530
|
}, {
|
|
1531
|
+
email: string;
|
|
1532
|
+
state: string;
|
|
1532
1533
|
firstName: string;
|
|
1533
1534
|
lastName: string;
|
|
1534
|
-
email: string;
|
|
1535
1535
|
phone: string;
|
|
1536
1536
|
address1: string;
|
|
1537
1537
|
city: string;
|
|
1538
|
-
state: string;
|
|
1539
1538
|
zip: string;
|
|
1540
1539
|
country: string;
|
|
1541
1540
|
address2?: string | undefined;
|
|
@@ -1554,131 +1553,131 @@ export declare const RenewDomainResponseSchema: z.ZodObject<{
|
|
|
1554
1553
|
country: z.ZodString;
|
|
1555
1554
|
organization: z.ZodOptional<z.ZodString>;
|
|
1556
1555
|
}, "strip", z.ZodTypeAny, {
|
|
1556
|
+
email: string;
|
|
1557
|
+
state: string;
|
|
1557
1558
|
firstName: string;
|
|
1558
1559
|
lastName: string;
|
|
1559
|
-
email: string;
|
|
1560
1560
|
phone: string;
|
|
1561
1561
|
address1: string;
|
|
1562
1562
|
city: string;
|
|
1563
|
-
state: string;
|
|
1564
1563
|
zip: string;
|
|
1565
1564
|
country: string;
|
|
1566
1565
|
address2?: string | undefined;
|
|
1567
1566
|
organization?: string | undefined;
|
|
1568
1567
|
}, {
|
|
1568
|
+
email: string;
|
|
1569
|
+
state: string;
|
|
1569
1570
|
firstName: string;
|
|
1570
1571
|
lastName: string;
|
|
1571
|
-
email: string;
|
|
1572
1572
|
phone: string;
|
|
1573
1573
|
address1: string;
|
|
1574
1574
|
city: string;
|
|
1575
|
-
state: string;
|
|
1576
1575
|
zip: string;
|
|
1577
1576
|
country: string;
|
|
1578
1577
|
address2?: string | undefined;
|
|
1579
1578
|
organization?: string | undefined;
|
|
1580
1579
|
}>;
|
|
1581
1580
|
}, "strip", z.ZodTypeAny, {
|
|
1582
|
-
|
|
1581
|
+
admin: {
|
|
1582
|
+
email: string;
|
|
1583
|
+
state: string;
|
|
1583
1584
|
firstName: string;
|
|
1584
1585
|
lastName: string;
|
|
1585
|
-
email: string;
|
|
1586
1586
|
phone: string;
|
|
1587
1587
|
address1: string;
|
|
1588
1588
|
city: string;
|
|
1589
|
-
state: string;
|
|
1590
1589
|
zip: string;
|
|
1591
1590
|
country: string;
|
|
1592
1591
|
address2?: string | undefined;
|
|
1593
1592
|
organization?: string | undefined;
|
|
1594
1593
|
};
|
|
1595
|
-
|
|
1594
|
+
billing: {
|
|
1595
|
+
email: string;
|
|
1596
|
+
state: string;
|
|
1596
1597
|
firstName: string;
|
|
1597
1598
|
lastName: string;
|
|
1598
|
-
email: string;
|
|
1599
1599
|
phone: string;
|
|
1600
1600
|
address1: string;
|
|
1601
1601
|
city: string;
|
|
1602
|
-
state: string;
|
|
1603
1602
|
zip: string;
|
|
1604
1603
|
country: string;
|
|
1605
1604
|
address2?: string | undefined;
|
|
1606
1605
|
organization?: string | undefined;
|
|
1607
1606
|
};
|
|
1608
|
-
|
|
1607
|
+
registrant: {
|
|
1608
|
+
email: string;
|
|
1609
|
+
state: string;
|
|
1609
1610
|
firstName: string;
|
|
1610
1611
|
lastName: string;
|
|
1611
|
-
email: string;
|
|
1612
1612
|
phone: string;
|
|
1613
1613
|
address1: string;
|
|
1614
1614
|
city: string;
|
|
1615
|
-
state: string;
|
|
1616
1615
|
zip: string;
|
|
1617
1616
|
country: string;
|
|
1618
1617
|
address2?: string | undefined;
|
|
1619
1618
|
organization?: string | undefined;
|
|
1620
1619
|
};
|
|
1621
|
-
|
|
1620
|
+
tech: {
|
|
1621
|
+
email: string;
|
|
1622
|
+
state: string;
|
|
1622
1623
|
firstName: string;
|
|
1623
1624
|
lastName: string;
|
|
1624
|
-
email: string;
|
|
1625
1625
|
phone: string;
|
|
1626
1626
|
address1: string;
|
|
1627
1627
|
city: string;
|
|
1628
|
-
state: string;
|
|
1629
1628
|
zip: string;
|
|
1630
1629
|
country: string;
|
|
1631
1630
|
address2?: string | undefined;
|
|
1632
1631
|
organization?: string | undefined;
|
|
1633
1632
|
};
|
|
1634
1633
|
}, {
|
|
1635
|
-
|
|
1634
|
+
admin: {
|
|
1635
|
+
email: string;
|
|
1636
|
+
state: string;
|
|
1636
1637
|
firstName: string;
|
|
1637
1638
|
lastName: string;
|
|
1638
|
-
email: string;
|
|
1639
1639
|
phone: string;
|
|
1640
1640
|
address1: string;
|
|
1641
1641
|
city: string;
|
|
1642
|
-
state: string;
|
|
1643
1642
|
zip: string;
|
|
1644
1643
|
country: string;
|
|
1645
1644
|
address2?: string | undefined;
|
|
1646
1645
|
organization?: string | undefined;
|
|
1647
1646
|
};
|
|
1648
|
-
|
|
1647
|
+
billing: {
|
|
1648
|
+
email: string;
|
|
1649
|
+
state: string;
|
|
1649
1650
|
firstName: string;
|
|
1650
1651
|
lastName: string;
|
|
1651
|
-
email: string;
|
|
1652
1652
|
phone: string;
|
|
1653
1653
|
address1: string;
|
|
1654
1654
|
city: string;
|
|
1655
|
-
state: string;
|
|
1656
1655
|
zip: string;
|
|
1657
1656
|
country: string;
|
|
1658
1657
|
address2?: string | undefined;
|
|
1659
1658
|
organization?: string | undefined;
|
|
1660
1659
|
};
|
|
1661
|
-
|
|
1660
|
+
registrant: {
|
|
1661
|
+
email: string;
|
|
1662
|
+
state: string;
|
|
1662
1663
|
firstName: string;
|
|
1663
1664
|
lastName: string;
|
|
1664
|
-
email: string;
|
|
1665
1665
|
phone: string;
|
|
1666
1666
|
address1: string;
|
|
1667
1667
|
city: string;
|
|
1668
|
-
state: string;
|
|
1669
1668
|
zip: string;
|
|
1670
1669
|
country: string;
|
|
1671
1670
|
address2?: string | undefined;
|
|
1672
1671
|
organization?: string | undefined;
|
|
1673
1672
|
};
|
|
1674
|
-
|
|
1673
|
+
tech: {
|
|
1674
|
+
email: string;
|
|
1675
|
+
state: string;
|
|
1675
1676
|
firstName: string;
|
|
1676
1677
|
lastName: string;
|
|
1677
|
-
email: string;
|
|
1678
1678
|
phone: string;
|
|
1679
1679
|
address1: string;
|
|
1680
1680
|
city: string;
|
|
1681
|
-
state: string;
|
|
1682
1681
|
zip: string;
|
|
1683
1682
|
country: string;
|
|
1684
1683
|
address2?: string | undefined;
|
|
@@ -1692,265 +1691,265 @@ export declare const RenewDomainResponseSchema: z.ZodObject<{
|
|
|
1692
1691
|
createDate: z.ZodString;
|
|
1693
1692
|
renewalPrice: z.ZodNumber;
|
|
1694
1693
|
}, "strip", z.ZodTypeAny, {
|
|
1695
|
-
|
|
1694
|
+
privacyEnabled: boolean;
|
|
1695
|
+
createDate: string;
|
|
1696
1696
|
renewalPrice: number;
|
|
1697
|
+
domainName: string;
|
|
1697
1698
|
nameservers: string[];
|
|
1698
1699
|
contacts: {
|
|
1699
|
-
|
|
1700
|
+
admin: {
|
|
1701
|
+
email: string;
|
|
1702
|
+
state: string;
|
|
1700
1703
|
firstName: string;
|
|
1701
1704
|
lastName: string;
|
|
1702
|
-
email: string;
|
|
1703
1705
|
phone: string;
|
|
1704
1706
|
address1: string;
|
|
1705
1707
|
city: string;
|
|
1706
|
-
state: string;
|
|
1707
1708
|
zip: string;
|
|
1708
1709
|
country: string;
|
|
1709
1710
|
address2?: string | undefined;
|
|
1710
1711
|
organization?: string | undefined;
|
|
1711
1712
|
};
|
|
1712
|
-
|
|
1713
|
+
billing: {
|
|
1714
|
+
email: string;
|
|
1715
|
+
state: string;
|
|
1713
1716
|
firstName: string;
|
|
1714
1717
|
lastName: string;
|
|
1715
|
-
email: string;
|
|
1716
1718
|
phone: string;
|
|
1717
1719
|
address1: string;
|
|
1718
1720
|
city: string;
|
|
1719
|
-
state: string;
|
|
1720
1721
|
zip: string;
|
|
1721
1722
|
country: string;
|
|
1722
1723
|
address2?: string | undefined;
|
|
1723
1724
|
organization?: string | undefined;
|
|
1724
1725
|
};
|
|
1725
|
-
|
|
1726
|
+
registrant: {
|
|
1727
|
+
email: string;
|
|
1728
|
+
state: string;
|
|
1726
1729
|
firstName: string;
|
|
1727
1730
|
lastName: string;
|
|
1728
|
-
email: string;
|
|
1729
1731
|
phone: string;
|
|
1730
1732
|
address1: string;
|
|
1731
1733
|
city: string;
|
|
1732
|
-
state: string;
|
|
1733
1734
|
zip: string;
|
|
1734
1735
|
country: string;
|
|
1735
1736
|
address2?: string | undefined;
|
|
1736
1737
|
organization?: string | undefined;
|
|
1737
1738
|
};
|
|
1738
|
-
|
|
1739
|
+
tech: {
|
|
1740
|
+
email: string;
|
|
1741
|
+
state: string;
|
|
1739
1742
|
firstName: string;
|
|
1740
1743
|
lastName: string;
|
|
1741
|
-
email: string;
|
|
1742
1744
|
phone: string;
|
|
1743
1745
|
address1: string;
|
|
1744
1746
|
city: string;
|
|
1745
|
-
state: string;
|
|
1746
1747
|
zip: string;
|
|
1747
1748
|
country: string;
|
|
1748
1749
|
address2?: string | undefined;
|
|
1749
1750
|
organization?: string | undefined;
|
|
1750
1751
|
};
|
|
1751
1752
|
};
|
|
1752
|
-
privacyEnabled: boolean;
|
|
1753
1753
|
locked: boolean;
|
|
1754
1754
|
autoRenewEnabled: boolean;
|
|
1755
1755
|
expireDate: string;
|
|
1756
|
-
createDate: string;
|
|
1757
1756
|
}, {
|
|
1758
|
-
|
|
1757
|
+
privacyEnabled: boolean;
|
|
1758
|
+
createDate: string;
|
|
1759
1759
|
renewalPrice: number;
|
|
1760
|
+
domainName: string;
|
|
1760
1761
|
nameservers: string[];
|
|
1761
1762
|
contacts: {
|
|
1762
|
-
|
|
1763
|
+
admin: {
|
|
1764
|
+
email: string;
|
|
1765
|
+
state: string;
|
|
1763
1766
|
firstName: string;
|
|
1764
1767
|
lastName: string;
|
|
1765
|
-
email: string;
|
|
1766
1768
|
phone: string;
|
|
1767
1769
|
address1: string;
|
|
1768
1770
|
city: string;
|
|
1769
|
-
state: string;
|
|
1770
1771
|
zip: string;
|
|
1771
1772
|
country: string;
|
|
1772
1773
|
address2?: string | undefined;
|
|
1773
1774
|
organization?: string | undefined;
|
|
1774
1775
|
};
|
|
1775
|
-
|
|
1776
|
+
billing: {
|
|
1777
|
+
email: string;
|
|
1778
|
+
state: string;
|
|
1776
1779
|
firstName: string;
|
|
1777
1780
|
lastName: string;
|
|
1778
|
-
email: string;
|
|
1779
1781
|
phone: string;
|
|
1780
1782
|
address1: string;
|
|
1781
1783
|
city: string;
|
|
1782
|
-
state: string;
|
|
1783
1784
|
zip: string;
|
|
1784
1785
|
country: string;
|
|
1785
1786
|
address2?: string | undefined;
|
|
1786
1787
|
organization?: string | undefined;
|
|
1787
1788
|
};
|
|
1788
|
-
|
|
1789
|
+
registrant: {
|
|
1790
|
+
email: string;
|
|
1791
|
+
state: string;
|
|
1789
1792
|
firstName: string;
|
|
1790
1793
|
lastName: string;
|
|
1791
|
-
email: string;
|
|
1792
1794
|
phone: string;
|
|
1793
1795
|
address1: string;
|
|
1794
1796
|
city: string;
|
|
1795
|
-
state: string;
|
|
1796
1797
|
zip: string;
|
|
1797
1798
|
country: string;
|
|
1798
1799
|
address2?: string | undefined;
|
|
1799
1800
|
organization?: string | undefined;
|
|
1800
1801
|
};
|
|
1801
|
-
|
|
1802
|
+
tech: {
|
|
1803
|
+
email: string;
|
|
1804
|
+
state: string;
|
|
1802
1805
|
firstName: string;
|
|
1803
1806
|
lastName: string;
|
|
1804
|
-
email: string;
|
|
1805
1807
|
phone: string;
|
|
1806
1808
|
address1: string;
|
|
1807
1809
|
city: string;
|
|
1808
|
-
state: string;
|
|
1809
1810
|
zip: string;
|
|
1810
1811
|
country: string;
|
|
1811
1812
|
address2?: string | undefined;
|
|
1812
1813
|
organization?: string | undefined;
|
|
1813
1814
|
};
|
|
1814
1815
|
};
|
|
1815
|
-
privacyEnabled: boolean;
|
|
1816
1816
|
locked: boolean;
|
|
1817
1817
|
autoRenewEnabled: boolean;
|
|
1818
1818
|
expireDate: string;
|
|
1819
|
-
createDate: string;
|
|
1820
1819
|
}>;
|
|
1821
1820
|
order: z.ZodNumber;
|
|
1822
1821
|
totalPaid: z.ZodNumber;
|
|
1823
1822
|
}, "strip", z.ZodTypeAny, {
|
|
1824
1823
|
domain: {
|
|
1825
|
-
|
|
1824
|
+
privacyEnabled: boolean;
|
|
1825
|
+
createDate: string;
|
|
1826
1826
|
renewalPrice: number;
|
|
1827
|
+
domainName: string;
|
|
1827
1828
|
nameservers: string[];
|
|
1828
1829
|
contacts: {
|
|
1829
|
-
|
|
1830
|
+
admin: {
|
|
1831
|
+
email: string;
|
|
1832
|
+
state: string;
|
|
1830
1833
|
firstName: string;
|
|
1831
1834
|
lastName: string;
|
|
1832
|
-
email: string;
|
|
1833
1835
|
phone: string;
|
|
1834
1836
|
address1: string;
|
|
1835
1837
|
city: string;
|
|
1836
|
-
state: string;
|
|
1837
1838
|
zip: string;
|
|
1838
1839
|
country: string;
|
|
1839
1840
|
address2?: string | undefined;
|
|
1840
1841
|
organization?: string | undefined;
|
|
1841
1842
|
};
|
|
1842
|
-
|
|
1843
|
+
billing: {
|
|
1844
|
+
email: string;
|
|
1845
|
+
state: string;
|
|
1843
1846
|
firstName: string;
|
|
1844
1847
|
lastName: string;
|
|
1845
|
-
email: string;
|
|
1846
1848
|
phone: string;
|
|
1847
1849
|
address1: string;
|
|
1848
1850
|
city: string;
|
|
1849
|
-
state: string;
|
|
1850
1851
|
zip: string;
|
|
1851
1852
|
country: string;
|
|
1852
1853
|
address2?: string | undefined;
|
|
1853
1854
|
organization?: string | undefined;
|
|
1854
1855
|
};
|
|
1855
|
-
|
|
1856
|
+
registrant: {
|
|
1857
|
+
email: string;
|
|
1858
|
+
state: string;
|
|
1856
1859
|
firstName: string;
|
|
1857
1860
|
lastName: string;
|
|
1858
|
-
email: string;
|
|
1859
1861
|
phone: string;
|
|
1860
1862
|
address1: string;
|
|
1861
1863
|
city: string;
|
|
1862
|
-
state: string;
|
|
1863
1864
|
zip: string;
|
|
1864
1865
|
country: string;
|
|
1865
1866
|
address2?: string | undefined;
|
|
1866
1867
|
organization?: string | undefined;
|
|
1867
1868
|
};
|
|
1868
|
-
|
|
1869
|
+
tech: {
|
|
1870
|
+
email: string;
|
|
1871
|
+
state: string;
|
|
1869
1872
|
firstName: string;
|
|
1870
1873
|
lastName: string;
|
|
1871
|
-
email: string;
|
|
1872
1874
|
phone: string;
|
|
1873
1875
|
address1: string;
|
|
1874
1876
|
city: string;
|
|
1875
|
-
state: string;
|
|
1876
1877
|
zip: string;
|
|
1877
1878
|
country: string;
|
|
1878
1879
|
address2?: string | undefined;
|
|
1879
1880
|
organization?: string | undefined;
|
|
1880
1881
|
};
|
|
1881
1882
|
};
|
|
1882
|
-
privacyEnabled: boolean;
|
|
1883
1883
|
locked: boolean;
|
|
1884
1884
|
autoRenewEnabled: boolean;
|
|
1885
1885
|
expireDate: string;
|
|
1886
|
-
createDate: string;
|
|
1887
1886
|
};
|
|
1888
1887
|
order: number;
|
|
1889
1888
|
totalPaid: number;
|
|
1890
1889
|
}, {
|
|
1891
1890
|
domain: {
|
|
1892
|
-
|
|
1891
|
+
privacyEnabled: boolean;
|
|
1892
|
+
createDate: string;
|
|
1893
1893
|
renewalPrice: number;
|
|
1894
|
+
domainName: string;
|
|
1894
1895
|
nameservers: string[];
|
|
1895
1896
|
contacts: {
|
|
1896
|
-
|
|
1897
|
+
admin: {
|
|
1898
|
+
email: string;
|
|
1899
|
+
state: string;
|
|
1897
1900
|
firstName: string;
|
|
1898
1901
|
lastName: string;
|
|
1899
|
-
email: string;
|
|
1900
1902
|
phone: string;
|
|
1901
1903
|
address1: string;
|
|
1902
1904
|
city: string;
|
|
1903
|
-
state: string;
|
|
1904
1905
|
zip: string;
|
|
1905
1906
|
country: string;
|
|
1906
1907
|
address2?: string | undefined;
|
|
1907
1908
|
organization?: string | undefined;
|
|
1908
1909
|
};
|
|
1909
|
-
|
|
1910
|
+
billing: {
|
|
1911
|
+
email: string;
|
|
1912
|
+
state: string;
|
|
1910
1913
|
firstName: string;
|
|
1911
1914
|
lastName: string;
|
|
1912
|
-
email: string;
|
|
1913
1915
|
phone: string;
|
|
1914
1916
|
address1: string;
|
|
1915
1917
|
city: string;
|
|
1916
|
-
state: string;
|
|
1917
1918
|
zip: string;
|
|
1918
1919
|
country: string;
|
|
1919
1920
|
address2?: string | undefined;
|
|
1920
1921
|
organization?: string | undefined;
|
|
1921
1922
|
};
|
|
1922
|
-
|
|
1923
|
+
registrant: {
|
|
1924
|
+
email: string;
|
|
1925
|
+
state: string;
|
|
1923
1926
|
firstName: string;
|
|
1924
1927
|
lastName: string;
|
|
1925
|
-
email: string;
|
|
1926
1928
|
phone: string;
|
|
1927
1929
|
address1: string;
|
|
1928
1930
|
city: string;
|
|
1929
|
-
state: string;
|
|
1930
1931
|
zip: string;
|
|
1931
1932
|
country: string;
|
|
1932
1933
|
address2?: string | undefined;
|
|
1933
1934
|
organization?: string | undefined;
|
|
1934
1935
|
};
|
|
1935
|
-
|
|
1936
|
+
tech: {
|
|
1937
|
+
email: string;
|
|
1938
|
+
state: string;
|
|
1936
1939
|
firstName: string;
|
|
1937
1940
|
lastName: string;
|
|
1938
|
-
email: string;
|
|
1939
1941
|
phone: string;
|
|
1940
1942
|
address1: string;
|
|
1941
1943
|
city: string;
|
|
1942
|
-
state: string;
|
|
1943
1944
|
zip: string;
|
|
1944
1945
|
country: string;
|
|
1945
1946
|
address2?: string | undefined;
|
|
1946
1947
|
organization?: string | undefined;
|
|
1947
1948
|
};
|
|
1948
1949
|
};
|
|
1949
|
-
privacyEnabled: boolean;
|
|
1950
1950
|
locked: boolean;
|
|
1951
1951
|
autoRenewEnabled: boolean;
|
|
1952
1952
|
expireDate: string;
|
|
1953
|
-
createDate: string;
|
|
1954
1953
|
};
|
|
1955
1954
|
order: number;
|
|
1956
1955
|
totalPaid: number;
|