@itentialopensource/adapter-godaddy 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.
Files changed (106) hide show
  1. package/.eslintignore +5 -0
  2. package/.eslintrc.js +18 -0
  3. package/.gitlab/.gitkeep +0 -0
  4. package/.gitlab/issue_templates/.gitkeep +0 -0
  5. package/.gitlab/issue_templates/Default.md +17 -0
  6. package/.gitlab/issue_templates/bugReportTemplate.md +76 -0
  7. package/.gitlab/issue_templates/featureRequestTemplate.md +14 -0
  8. package/.jshintrc +3 -0
  9. package/AUTH.md +34 -0
  10. package/BROKER.md +199 -0
  11. package/CALLS.md +748 -0
  12. package/CHANGELOG.md +9 -0
  13. package/CODE_OF_CONDUCT.md +43 -0
  14. package/CONTRIBUTING.md +13 -0
  15. package/ENHANCE.md +69 -0
  16. package/LICENSE +201 -0
  17. package/PROPERTIES.md +641 -0
  18. package/README.md +346 -0
  19. package/SUMMARY.md +9 -0
  20. package/SYSTEMINFO.md +13 -0
  21. package/TROUBLESHOOT.md +47 -0
  22. package/adapter.js +9144 -0
  23. package/adapterBase.js +1452 -0
  24. package/changelogs/CHANGELOG.md +0 -0
  25. package/entities/.generic/action.json +214 -0
  26. package/entities/.generic/schema.json +28 -0
  27. package/entities/.system/action.json +50 -0
  28. package/entities/.system/mockdatafiles/getToken-default.json +3 -0
  29. package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
  30. package/entities/.system/schema.json +19 -0
  31. package/entities/.system/schemaTokenReq.json +53 -0
  32. package/entities/.system/schemaTokenResp.json +53 -0
  33. package/entities/Abuse/action.json +66 -0
  34. package/entities/Abuse/schema.json +21 -0
  35. package/entities/Actions/action.json +66 -0
  36. package/entities/Actions/mockdatafiles/getV2CustomersCustomerIdDomainsDomainActions-default.json +126 -0
  37. package/entities/Actions/schema.json +21 -0
  38. package/entities/Aftermarket/action.json +44 -0
  39. package/entities/Aftermarket/schema.json +20 -0
  40. package/entities/Agreements/action.json +25 -0
  41. package/entities/Agreements/mockdatafiles/getAgreements-default.json +8 -0
  42. package/entities/Agreements/schema.json +19 -0
  43. package/entities/Certificate/action.json +517 -0
  44. package/entities/Certificate/mockdatafiles/certificateGetEntitlement-default.json +205 -0
  45. package/entities/Certificate/mockdatafiles/getDomainInformationByCertificateId-default.json +32 -0
  46. package/entities/Certificate/schema.json +43 -0
  47. package/entities/Countries/action.json +46 -0
  48. package/entities/Countries/schema.json +20 -0
  49. package/entities/Domains/action.json +696 -0
  50. package/entities/Domains/mockdatafiles/domainsForwardsGet-default.json +12 -0
  51. package/entities/Domains/mockdatafiles/getAgreement-default.json +8 -0
  52. package/entities/Domains/mockdatafiles/listDomains-default.json +198 -0
  53. package/entities/Domains/mockdatafiles/recordGet-default.json +24 -0
  54. package/entities/Domains/mockdatafiles/suggest-default.json +11 -0
  55. package/entities/Domains/mockdatafiles/tlds-default.json +14 -0
  56. package/entities/Domains/schema.json +52 -0
  57. package/entities/Notifications/action.json +107 -0
  58. package/entities/Notifications/mockdatafiles/getV2CustomersCustomerIdDomainsNotificationsOptIn-default.json +32 -0
  59. package/entities/Notifications/schema.json +23 -0
  60. package/entities/Orders/action.json +46 -0
  61. package/entities/Orders/schema.json +20 -0
  62. package/entities/Parking/action.json +46 -0
  63. package/entities/Parking/schema.json +20 -0
  64. package/entities/Shoppers/action.json +126 -0
  65. package/entities/Shoppers/schema.json +24 -0
  66. package/entities/Subscriptions/action.json +107 -0
  67. package/entities/Subscriptions/mockdatafiles/productGroups-default.json +10 -0
  68. package/entities/Subscriptions/schema.json +23 -0
  69. package/error.json +190 -0
  70. package/metadata.json +54 -0
  71. package/package.json +82 -0
  72. package/pronghorn.json +15805 -0
  73. package/propertiesDecorators.json +14 -0
  74. package/propertiesSchema.json +1661 -0
  75. package/refs?service=git-upload-pack +0 -0
  76. package/report/adapter-openapi.json +13714 -0
  77. package/report/adapter-openapi.yaml +20419 -0
  78. package/report/adapterInfo.json +10 -0
  79. package/report/creationReport.json +765 -0
  80. package/report/godaddy.json +13714 -0
  81. package/report/updateReport1706477552013.json +120 -0
  82. package/sampleProperties.json +254 -0
  83. package/test/integration/adapterTestBasicGet.js +83 -0
  84. package/test/integration/adapterTestConnectivity.js +142 -0
  85. package/test/integration/adapterTestIntegration.js +2925 -0
  86. package/test/unit/adapterBaseTestUnit.js +1024 -0
  87. package/test/unit/adapterTestUnit.js +4900 -0
  88. package/utils/adapterInfo.js +206 -0
  89. package/utils/addAuth.js +94 -0
  90. package/utils/artifactize.js +146 -0
  91. package/utils/basicGet.js +50 -0
  92. package/utils/checkMigrate.js +63 -0
  93. package/utils/entitiesToDB.js +179 -0
  94. package/utils/findPath.js +74 -0
  95. package/utils/methodDocumentor.js +273 -0
  96. package/utils/modify.js +152 -0
  97. package/utils/packModificationScript.js +35 -0
  98. package/utils/patches2bundledDeps.js +90 -0
  99. package/utils/pre-commit.sh +32 -0
  100. package/utils/removeHooks.js +20 -0
  101. package/utils/setup.js +33 -0
  102. package/utils/taskMover.js +309 -0
  103. package/utils/tbScript.js +239 -0
  104. package/utils/tbUtils.js +489 -0
  105. package/utils/testRunner.js +298 -0
  106. package/utils/troubleshootingAdapter.js +193 -0
@@ -0,0 +1,696 @@
1
+ {
2
+ "actions": [
3
+ {
4
+ "name": "listDomains",
5
+ "protocol": "REST",
6
+ "method": "GET",
7
+ "entitypath": "{base_path}/{version}/v1/domains?{query}",
8
+ "requestSchema": "schema.json",
9
+ "responseSchema": "schema.json",
10
+ "timeout": 0,
11
+ "sendEmpty": false,
12
+ "sendGetBody": false,
13
+ "requestDatatype": "JSON",
14
+ "responseDatatype": "JSON",
15
+ "headers": {},
16
+ "responseObjects": [
17
+ {
18
+ "type": "default",
19
+ "key": "",
20
+ "mockFile": "mockdatafiles/listDomains-default.json"
21
+ }
22
+ ]
23
+ },
24
+ {
25
+ "name": "getAgreement",
26
+ "protocol": "REST",
27
+ "method": "GET",
28
+ "entitypath": "{base_path}/{version}/v1/domains/agreements?{query}",
29
+ "requestSchema": "schema.json",
30
+ "responseSchema": "schema.json",
31
+ "timeout": 0,
32
+ "sendEmpty": false,
33
+ "sendGetBody": false,
34
+ "requestDatatype": "JSON",
35
+ "responseDatatype": "JSON",
36
+ "headers": {},
37
+ "responseObjects": [
38
+ {
39
+ "type": "default",
40
+ "key": "",
41
+ "mockFile": "mockdatafiles/getAgreement-default.json"
42
+ }
43
+ ]
44
+ },
45
+ {
46
+ "name": "available",
47
+ "protocol": "REST",
48
+ "method": "GET",
49
+ "entitypath": "{base_path}/{version}/v1/domains/available?{query}",
50
+ "requestSchema": "schema.json",
51
+ "responseSchema": "schema.json",
52
+ "timeout": 0,
53
+ "sendEmpty": false,
54
+ "sendGetBody": false,
55
+ "requestDatatype": "JSON",
56
+ "responseDatatype": "JSON",
57
+ "headers": {},
58
+ "responseObjects": [
59
+ {
60
+ "type": "default",
61
+ "key": "",
62
+ "mockFile": ""
63
+ }
64
+ ]
65
+ },
66
+ {
67
+ "name": "availableBulk",
68
+ "protocol": "REST",
69
+ "method": "POST",
70
+ "entitypath": "{base_path}/{version}/v1/domains/available?{query}",
71
+ "requestSchema": "schema.json",
72
+ "responseSchema": "schema.json",
73
+ "timeout": 0,
74
+ "sendEmpty": false,
75
+ "requestDatatype": "JSON",
76
+ "responseDatatype": "JSON",
77
+ "headers": {},
78
+ "responseObjects": [
79
+ {
80
+ "type": "default",
81
+ "key": "",
82
+ "mockFile": ""
83
+ }
84
+ ]
85
+ },
86
+ {
87
+ "name": "contactsValidate",
88
+ "protocol": "REST",
89
+ "method": "POST",
90
+ "entitypath": "{base_path}/{version}/v1/domains/contacts/validate?{query}",
91
+ "requestSchema": "schema.json",
92
+ "responseSchema": "schema.json",
93
+ "timeout": 0,
94
+ "sendEmpty": false,
95
+ "requestDatatype": "JSON",
96
+ "responseDatatype": "JSON",
97
+ "headers": {},
98
+ "responseObjects": [
99
+ {
100
+ "type": "default",
101
+ "key": "",
102
+ "mockFile": ""
103
+ }
104
+ ]
105
+ },
106
+ {
107
+ "name": "purchase",
108
+ "protocol": "REST",
109
+ "method": "POST",
110
+ "entitypath": "{base_path}/{version}/v1/domains/purchase?{query}",
111
+ "requestSchema": "schema.json",
112
+ "responseSchema": "schema.json",
113
+ "timeout": 0,
114
+ "sendEmpty": false,
115
+ "requestDatatype": "JSON",
116
+ "responseDatatype": "JSON",
117
+ "headers": {},
118
+ "responseObjects": [
119
+ {
120
+ "type": "default",
121
+ "key": "",
122
+ "mockFile": ""
123
+ }
124
+ ]
125
+ },
126
+ {
127
+ "name": "schema",
128
+ "protocol": "REST",
129
+ "method": "GET",
130
+ "entitypath": "{base_path}/{version}/v1/domains/purchase/schema/{pathv1}?{query}",
131
+ "requestSchema": "schema.json",
132
+ "responseSchema": "schema.json",
133
+ "timeout": 0,
134
+ "sendEmpty": false,
135
+ "sendGetBody": false,
136
+ "requestDatatype": "JSON",
137
+ "responseDatatype": "JSON",
138
+ "headers": {},
139
+ "responseObjects": [
140
+ {
141
+ "type": "default",
142
+ "key": "",
143
+ "mockFile": ""
144
+ }
145
+ ]
146
+ },
147
+ {
148
+ "name": "validate",
149
+ "protocol": "REST",
150
+ "method": "POST",
151
+ "entitypath": "{base_path}/{version}/v1/domains/purchase/validate?{query}",
152
+ "requestSchema": "schema.json",
153
+ "responseSchema": "schema.json",
154
+ "timeout": 0,
155
+ "sendEmpty": false,
156
+ "requestDatatype": "JSON",
157
+ "responseDatatype": "JSON",
158
+ "headers": {},
159
+ "responseObjects": [
160
+ {
161
+ "type": "default",
162
+ "key": "",
163
+ "mockFile": ""
164
+ }
165
+ ]
166
+ },
167
+ {
168
+ "name": "suggest",
169
+ "protocol": "REST",
170
+ "method": "GET",
171
+ "entitypath": "{base_path}/{version}/v1/domains/suggest?{query}",
172
+ "requestSchema": "schema.json",
173
+ "responseSchema": "schema.json",
174
+ "timeout": 0,
175
+ "sendEmpty": false,
176
+ "sendGetBody": false,
177
+ "requestDatatype": "JSON",
178
+ "responseDatatype": "JSON",
179
+ "headers": {},
180
+ "responseObjects": [
181
+ {
182
+ "type": "default",
183
+ "key": "",
184
+ "mockFile": "mockdatafiles/suggest-default.json"
185
+ }
186
+ ]
187
+ },
188
+ {
189
+ "name": "tlds",
190
+ "protocol": "REST",
191
+ "method": "GET",
192
+ "entitypath": "{base_path}/{version}/v1/domains/tlds?{query}",
193
+ "requestSchema": "schema.json",
194
+ "responseSchema": "schema.json",
195
+ "timeout": 0,
196
+ "sendEmpty": false,
197
+ "sendGetBody": false,
198
+ "requestDatatype": "JSON",
199
+ "responseDatatype": "JSON",
200
+ "headers": {},
201
+ "responseObjects": [
202
+ {
203
+ "type": "default",
204
+ "key": "",
205
+ "mockFile": "mockdatafiles/tlds-default.json"
206
+ }
207
+ ]
208
+ },
209
+ {
210
+ "name": "cancel",
211
+ "protocol": "REST",
212
+ "method": "DELETE",
213
+ "entitypath": "{base_path}/{version}/v1/domains/{pathv1}?{query}",
214
+ "requestSchema": "schema.json",
215
+ "responseSchema": "schema.json",
216
+ "timeout": 0,
217
+ "sendEmpty": false,
218
+ "requestDatatype": "JSON",
219
+ "responseDatatype": "JSON",
220
+ "headers": {},
221
+ "responseObjects": [
222
+ {
223
+ "type": "default",
224
+ "key": "",
225
+ "mockFile": ""
226
+ }
227
+ ]
228
+ },
229
+ {
230
+ "name": "getDomain",
231
+ "protocol": "REST",
232
+ "method": "GET",
233
+ "entitypath": "{base_path}/{version}/v1/domains/{pathv1}?{query}",
234
+ "requestSchema": "schema.json",
235
+ "responseSchema": "schema.json",
236
+ "timeout": 0,
237
+ "sendEmpty": false,
238
+ "sendGetBody": false,
239
+ "requestDatatype": "JSON",
240
+ "responseDatatype": "JSON",
241
+ "headers": {},
242
+ "responseObjects": [
243
+ {
244
+ "type": "default",
245
+ "key": "",
246
+ "mockFile": ""
247
+ }
248
+ ]
249
+ },
250
+ {
251
+ "name": "update",
252
+ "protocol": "REST",
253
+ "method": "PATCH",
254
+ "entitypath": "{base_path}/{version}/v1/domains/{pathv1}?{query}",
255
+ "requestSchema": "schema.json",
256
+ "responseSchema": "schema.json",
257
+ "timeout": 0,
258
+ "sendEmpty": false,
259
+ "requestDatatype": "JSON",
260
+ "responseDatatype": "JSON",
261
+ "headers": {},
262
+ "responseObjects": [
263
+ {
264
+ "type": "default",
265
+ "key": "",
266
+ "mockFile": ""
267
+ }
268
+ ]
269
+ },
270
+ {
271
+ "name": "updateContacts",
272
+ "protocol": "REST",
273
+ "method": "PATCH",
274
+ "entitypath": "{base_path}/{version}/v1/domains/{pathv1}/contacts?{query}",
275
+ "requestSchema": "schema.json",
276
+ "responseSchema": "schema.json",
277
+ "timeout": 0,
278
+ "sendEmpty": false,
279
+ "requestDatatype": "JSON",
280
+ "responseDatatype": "JSON",
281
+ "headers": {},
282
+ "responseObjects": [
283
+ {
284
+ "type": "default",
285
+ "key": "",
286
+ "mockFile": ""
287
+ }
288
+ ]
289
+ },
290
+ {
291
+ "name": "cancelPrivacy",
292
+ "protocol": "REST",
293
+ "method": "DELETE",
294
+ "entitypath": "{base_path}/{version}/v1/domains/{pathv1}/privacy?{query}",
295
+ "requestSchema": "schema.json",
296
+ "responseSchema": "schema.json",
297
+ "timeout": 0,
298
+ "sendEmpty": false,
299
+ "requestDatatype": "JSON",
300
+ "responseDatatype": "JSON",
301
+ "headers": {},
302
+ "responseObjects": [
303
+ {
304
+ "type": "default",
305
+ "key": "",
306
+ "mockFile": ""
307
+ }
308
+ ]
309
+ },
310
+ {
311
+ "name": "purchasePrivacy",
312
+ "protocol": "REST",
313
+ "method": "POST",
314
+ "entitypath": "{base_path}/{version}/v1/domains/{pathv1}/privacy/purchase?{query}",
315
+ "requestSchema": "schema.json",
316
+ "responseSchema": "schema.json",
317
+ "timeout": 0,
318
+ "sendEmpty": false,
319
+ "requestDatatype": "JSON",
320
+ "responseDatatype": "JSON",
321
+ "headers": {},
322
+ "responseObjects": [
323
+ {
324
+ "type": "default",
325
+ "key": "",
326
+ "mockFile": ""
327
+ }
328
+ ]
329
+ },
330
+ {
331
+ "name": "recordAdd",
332
+ "protocol": "REST",
333
+ "method": "PATCH",
334
+ "entitypath": "{base_path}/{version}/v1/domains/{pathv1}/records?{query}",
335
+ "requestSchema": "schema.json",
336
+ "responseSchema": "schema.json",
337
+ "timeout": 0,
338
+ "sendEmpty": false,
339
+ "requestDatatype": "JSON",
340
+ "responseDatatype": "JSON",
341
+ "headers": {},
342
+ "responseObjects": [
343
+ {
344
+ "type": "default",
345
+ "key": "",
346
+ "mockFile": ""
347
+ }
348
+ ]
349
+ },
350
+ {
351
+ "name": "recordReplace",
352
+ "protocol": "REST",
353
+ "method": "PUT",
354
+ "entitypath": "{base_path}/{version}/v1/domains/{pathv1}/records?{query}",
355
+ "requestSchema": "schema.json",
356
+ "responseSchema": "schema.json",
357
+ "timeout": 0,
358
+ "sendEmpty": false,
359
+ "requestDatatype": "JSON",
360
+ "responseDatatype": "JSON",
361
+ "headers": {},
362
+ "responseObjects": [
363
+ {
364
+ "type": "default",
365
+ "key": "",
366
+ "mockFile": ""
367
+ }
368
+ ]
369
+ },
370
+ {
371
+ "name": "recordGet",
372
+ "protocol": "REST",
373
+ "method": "GET",
374
+ "entitypath": "{base_path}/{version}/v1/domains/{pathv1}/records/{pathv2}/{pathv3}?{query}",
375
+ "requestSchema": "schema.json",
376
+ "responseSchema": "schema.json",
377
+ "timeout": 0,
378
+ "sendEmpty": false,
379
+ "sendGetBody": false,
380
+ "requestDatatype": "JSON",
381
+ "responseDatatype": "JSON",
382
+ "headers": {},
383
+ "responseObjects": [
384
+ {
385
+ "type": "default",
386
+ "key": "",
387
+ "mockFile": "mockdatafiles/recordGet-default.json"
388
+ }
389
+ ]
390
+ },
391
+ {
392
+ "name": "recordReplaceTypeName",
393
+ "protocol": "REST",
394
+ "method": "PUT",
395
+ "entitypath": "{base_path}/{version}/v1/domains/{pathv1}/records/{pathv2}/{pathv3}?{query}",
396
+ "requestSchema": "schema.json",
397
+ "responseSchema": "schema.json",
398
+ "timeout": 0,
399
+ "sendEmpty": false,
400
+ "requestDatatype": "JSON",
401
+ "responseDatatype": "JSON",
402
+ "headers": {},
403
+ "responseObjects": [
404
+ {
405
+ "type": "default",
406
+ "key": "",
407
+ "mockFile": ""
408
+ }
409
+ ]
410
+ },
411
+ {
412
+ "name": "recordDeleteTypeName",
413
+ "protocol": "REST",
414
+ "method": "DELETE",
415
+ "entitypath": "{base_path}/{version}/v1/domains/{pathv1}/records/{pathv2}/{pathv3}?{query}",
416
+ "requestSchema": "schema.json",
417
+ "responseSchema": "schema.json",
418
+ "timeout": 0,
419
+ "sendEmpty": false,
420
+ "requestDatatype": "JSON",
421
+ "responseDatatype": "JSON",
422
+ "headers": {},
423
+ "responseObjects": [
424
+ {
425
+ "type": "default",
426
+ "key": "",
427
+ "mockFile": ""
428
+ }
429
+ ]
430
+ },
431
+ {
432
+ "name": "recordReplaceType",
433
+ "protocol": "REST",
434
+ "method": "PUT",
435
+ "entitypath": "{base_path}/{version}/v1/domains/{pathv1}/records/{pathv2}?{query}",
436
+ "requestSchema": "schema.json",
437
+ "responseSchema": "schema.json",
438
+ "timeout": 0,
439
+ "sendEmpty": false,
440
+ "requestDatatype": "JSON",
441
+ "responseDatatype": "JSON",
442
+ "headers": {},
443
+ "responseObjects": [
444
+ {
445
+ "type": "default",
446
+ "key": "",
447
+ "mockFile": ""
448
+ }
449
+ ]
450
+ },
451
+ {
452
+ "name": "renew",
453
+ "protocol": "REST",
454
+ "method": "POST",
455
+ "entitypath": "{base_path}/{version}/v1/domains/{pathv1}/renew?{query}",
456
+ "requestSchema": "schema.json",
457
+ "responseSchema": "schema.json",
458
+ "timeout": 0,
459
+ "sendEmpty": false,
460
+ "requestDatatype": "JSON",
461
+ "responseDatatype": "JSON",
462
+ "headers": {},
463
+ "responseObjects": [
464
+ {
465
+ "type": "default",
466
+ "key": "",
467
+ "mockFile": ""
468
+ }
469
+ ]
470
+ },
471
+ {
472
+ "name": "transferIn",
473
+ "protocol": "REST",
474
+ "method": "POST",
475
+ "entitypath": "{base_path}/{version}/v1/domains/{pathv1}/transfer?{query}",
476
+ "requestSchema": "schema.json",
477
+ "responseSchema": "schema.json",
478
+ "timeout": 0,
479
+ "sendEmpty": false,
480
+ "requestDatatype": "JSON",
481
+ "responseDatatype": "JSON",
482
+ "headers": {},
483
+ "responseObjects": [
484
+ {
485
+ "type": "default",
486
+ "key": "",
487
+ "mockFile": ""
488
+ }
489
+ ]
490
+ },
491
+ {
492
+ "name": "verifyEmail",
493
+ "protocol": "REST",
494
+ "method": "POST",
495
+ "entitypath": "{base_path}/{version}/v1/domains/{pathv1}/verifyRegistrantEmail?{query}",
496
+ "requestSchema": "schema.json",
497
+ "responseSchema": "schema.json",
498
+ "timeout": 0,
499
+ "sendEmpty": false,
500
+ "requestDatatype": "JSON",
501
+ "responseDatatype": "JSON",
502
+ "headers": {},
503
+ "responseObjects": [
504
+ {
505
+ "type": "default",
506
+ "key": "",
507
+ "mockFile": ""
508
+ }
509
+ ]
510
+ },
511
+ {
512
+ "name": "getV2CustomersCustomerIdDomainsDomain",
513
+ "protocol": "REST",
514
+ "method": "GET",
515
+ "entitypath": "{base_path}/{version}/v2/customers/{pathv1}/domains/{pathv2}?{query}",
516
+ "requestSchema": "schema.json",
517
+ "responseSchema": "schema.json",
518
+ "timeout": 0,
519
+ "sendEmpty": false,
520
+ "sendGetBody": false,
521
+ "requestDatatype": "JSON",
522
+ "responseDatatype": "JSON",
523
+ "headers": {},
524
+ "responseObjects": [
525
+ {
526
+ "type": "default",
527
+ "key": "",
528
+ "mockFile": ""
529
+ }
530
+ ]
531
+ },
532
+ {
533
+ "name": "postV2CustomersCustomerIdDomainsDomainRedeem",
534
+ "protocol": "REST",
535
+ "method": "POST",
536
+ "entitypath": "{base_path}/{version}/v2/customers/{pathv1}/domains/{pathv2}/redeem?{query}",
537
+ "requestSchema": "schema.json",
538
+ "responseSchema": "schema.json",
539
+ "timeout": 0,
540
+ "sendEmpty": false,
541
+ "requestDatatype": "JSON",
542
+ "responseDatatype": "JSON",
543
+ "headers": {},
544
+ "responseObjects": [
545
+ {
546
+ "type": "default",
547
+ "key": "",
548
+ "mockFile": ""
549
+ }
550
+ ]
551
+ },
552
+ {
553
+ "name": "postV2CustomersCustomerIdDomainsDomainTransferOut",
554
+ "protocol": "REST",
555
+ "method": "POST",
556
+ "entitypath": "{base_path}/{version}/v2/customers/{pathv1}/domains/{pathv2}/transferOut?{query}",
557
+ "requestSchema": "schema.json",
558
+ "responseSchema": "schema.json",
559
+ "timeout": 0,
560
+ "sendEmpty": false,
561
+ "requestDatatype": "JSON",
562
+ "responseDatatype": "JSON",
563
+ "headers": {},
564
+ "responseObjects": [
565
+ {
566
+ "type": "default",
567
+ "key": "",
568
+ "mockFile": ""
569
+ }
570
+ ]
571
+ },
572
+ {
573
+ "name": "domainsForwardsDelete",
574
+ "protocol": "REST",
575
+ "method": "DELETE",
576
+ "entitypath": "{base_path}/{version}/v2/customers/{pathv1}/domains/forwards/{pathv2}?{query}",
577
+ "requestSchema": "schema.json",
578
+ "responseSchema": "schema.json",
579
+ "timeout": 0,
580
+ "sendEmpty": false,
581
+ "requestDatatype": "JSON",
582
+ "responseDatatype": "JSON",
583
+ "headers": {},
584
+ "responseObjects": [
585
+ {
586
+ "type": "default",
587
+ "key": "",
588
+ "mockFile": ""
589
+ }
590
+ ]
591
+ },
592
+ {
593
+ "name": "domainsForwardsGet",
594
+ "protocol": "REST",
595
+ "method": "GET",
596
+ "entitypath": "{base_path}/{version}/v2/customers/{pathv1}/domains/forwards/{pathv2}?{query}",
597
+ "requestSchema": "schema.json",
598
+ "responseSchema": "schema.json",
599
+ "timeout": 0,
600
+ "sendEmpty": false,
601
+ "sendGetBody": false,
602
+ "requestDatatype": "JSON",
603
+ "responseDatatype": "JSON",
604
+ "headers": {},
605
+ "responseObjects": [
606
+ {
607
+ "type": "default",
608
+ "key": "",
609
+ "mockFile": "mockdatafiles/domainsForwardsGet-default.json"
610
+ }
611
+ ]
612
+ },
613
+ {
614
+ "name": "domainsForwardsPut",
615
+ "protocol": "REST",
616
+ "method": "PUT",
617
+ "entitypath": "{base_path}/{version}/v2/customers/{pathv1}/domains/forwards/{pathv2}?{query}",
618
+ "requestSchema": "schema.json",
619
+ "responseSchema": "schema.json",
620
+ "timeout": 0,
621
+ "sendEmpty": false,
622
+ "requestDatatype": "JSON",
623
+ "responseDatatype": "JSON",
624
+ "headers": {},
625
+ "responseObjects": [
626
+ {
627
+ "type": "default",
628
+ "key": "",
629
+ "mockFile": ""
630
+ }
631
+ ]
632
+ },
633
+ {
634
+ "name": "domainsForwardsPost",
635
+ "protocol": "REST",
636
+ "method": "POST",
637
+ "entitypath": "{base_path}/{version}/v2/customers/{pathv1}/domains/forwards/{pathv2}?{query}",
638
+ "requestSchema": "schema.json",
639
+ "responseSchema": "schema.json",
640
+ "timeout": 0,
641
+ "sendEmpty": false,
642
+ "requestDatatype": "JSON",
643
+ "responseDatatype": "JSON",
644
+ "headers": {},
645
+ "responseObjects": [
646
+ {
647
+ "type": "default",
648
+ "key": "",
649
+ "mockFile": ""
650
+ }
651
+ ]
652
+ },
653
+ {
654
+ "name": "getV2DomainsMaintenances",
655
+ "protocol": "REST",
656
+ "method": "GET",
657
+ "entitypath": "{base_path}/{version}/v2/domains/maintenances?{query}",
658
+ "requestSchema": "schema.json",
659
+ "responseSchema": "schema.json",
660
+ "timeout": 0,
661
+ "sendEmpty": false,
662
+ "sendGetBody": false,
663
+ "requestDatatype": "JSON",
664
+ "responseDatatype": "JSON",
665
+ "headers": {},
666
+ "responseObjects": [
667
+ {
668
+ "type": "default",
669
+ "key": "",
670
+ "mockFile": ""
671
+ }
672
+ ]
673
+ },
674
+ {
675
+ "name": "getV2DomainsMaintenancesMaintenanceId",
676
+ "protocol": "REST",
677
+ "method": "GET",
678
+ "entitypath": "{base_path}/{version}/v2/domains/maintenances/{pathv1}?{query}",
679
+ "requestSchema": "schema.json",
680
+ "responseSchema": "schema.json",
681
+ "timeout": 0,
682
+ "sendEmpty": false,
683
+ "sendGetBody": false,
684
+ "requestDatatype": "JSON",
685
+ "responseDatatype": "JSON",
686
+ "headers": {},
687
+ "responseObjects": [
688
+ {
689
+ "type": "default",
690
+ "key": "",
691
+ "mockFile": ""
692
+ }
693
+ ]
694
+ }
695
+ ]
696
+ }