@distilled.cloud/cloudflare 0.16.3 → 0.16.5
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/lib/client/api.d.ts.map +1 -1
- package/lib/client/api.js +29 -3
- package/lib/client/api.js.map +1 -1
- package/lib/services/ai.js +25 -25
- package/lib/services/ai.js.map +1 -1
- package/lib/services/api-gateway.js +84 -84
- package/lib/services/api-gateway.js.map +1 -1
- package/lib/services/connectivity.js +12 -12
- package/lib/services/connectivity.js.map +1 -1
- package/lib/services/dns.js +439 -439
- package/lib/services/dns.js.map +1 -1
- package/lib/services/firewall.js +76 -76
- package/lib/services/firewall.js.map +1 -1
- package/lib/services/hyperdrive.js +26 -26
- package/lib/services/hyperdrive.js.map +1 -1
- package/lib/services/magic-cloud-networking.js +7 -7
- package/lib/services/magic-cloud-networking.js.map +1 -1
- package/lib/services/magic-transit.js +8 -8
- package/lib/services/magic-transit.js.map +1 -1
- package/lib/services/pipelines.js +101 -101
- package/lib/services/pipelines.js.map +1 -1
- package/lib/services/radar.js +32 -32
- package/lib/services/radar.js.map +1 -1
- package/lib/services/realtime-kit.js +5 -5
- package/lib/services/realtime-kit.js.map +1 -1
- package/lib/services/rules.js +4 -4
- package/lib/services/rules.js.map +1 -1
- package/lib/services/token-validation.js +84 -84
- package/lib/services/token-validation.js.map +1 -1
- package/lib/services/workers-for-platforms.js +438 -438
- package/lib/services/workers-for-platforms.js.map +1 -1
- package/lib/services/workers.js +1207 -1207
- package/lib/services/workers.js.map +1 -1
- package/lib/services/workflows.js +9 -9
- package/lib/services/workflows.js.map +1 -1
- package/lib/services/zero-trust.js +3979 -3979
- package/lib/services/zero-trust.js.map +1 -1
- package/lib/services/zones.js +50 -50
- package/lib/services/zones.js.map +1 -1
- package/package.json +6 -6
- package/src/client/api.ts +30 -3
- package/src/services/ai.ts +35 -35
- package/src/services/api-gateway.ts +130 -130
- package/src/services/connectivity.ts +12 -12
- package/src/services/dns.ts +523 -523
- package/src/services/firewall.ts +80 -80
- package/src/services/hyperdrive.ts +28 -28
- package/src/services/magic-cloud-networking.ts +8 -8
- package/src/services/magic-transit.ts +8 -8
- package/src/services/pipelines.ts +149 -149
- package/src/services/radar.ts +32 -32
- package/src/services/realtime-kit.ts +5 -5
- package/src/services/rules.ts +4 -4
- package/src/services/token-validation.ts +84 -84
- package/src/services/workers-for-platforms.ts +555 -555
- package/src/services/workers.ts +1524 -1524
- package/src/services/workflows.ts +9 -9
- package/src/services/zero-trust.ts +5599 -5599
- package/src/services/zones.ts +74 -74
package/lib/services/dns.js
CHANGED
|
@@ -265,6 +265,42 @@ export const ScanListRecordRequest = /*@__PURE__*/ /*#__PURE__*/ Schema.Struct({
|
|
|
265
265
|
}).pipe(T.Http({ method: "GET", path: "/zones/{zone_id}/dns_records/scan/review" }));
|
|
266
266
|
export const ScanListRecordResponse = /*@__PURE__*/ /*#__PURE__*/ Schema.Struct({
|
|
267
267
|
result: Schema.Array(Schema.Union([
|
|
268
|
+
Schema.Struct({
|
|
269
|
+
id: Schema.String,
|
|
270
|
+
comment: Schema.String,
|
|
271
|
+
content: Schema.String,
|
|
272
|
+
createdOn: Schema.String,
|
|
273
|
+
meta: Schema.Unknown,
|
|
274
|
+
modifiedOn: Schema.String,
|
|
275
|
+
name: Schema.String,
|
|
276
|
+
proxiable: Schema.Boolean,
|
|
277
|
+
proxied: Schema.Boolean,
|
|
278
|
+
settings: Schema.Struct({
|
|
279
|
+
ipv4Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
280
|
+
ipv6Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
281
|
+
}).pipe(Schema.encodeKeys({ ipv4Only: "ipv4_only", ipv6Only: "ipv6_only" })),
|
|
282
|
+
tags: Schema.Array(Schema.String),
|
|
283
|
+
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
284
|
+
type: Schema.Literal("OPENPGPKEY"),
|
|
285
|
+
commentModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
286
|
+
tagsModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
287
|
+
}).pipe(Schema.encodeKeys({
|
|
288
|
+
id: "id",
|
|
289
|
+
comment: "comment",
|
|
290
|
+
content: "content",
|
|
291
|
+
createdOn: "created_on",
|
|
292
|
+
meta: "meta",
|
|
293
|
+
modifiedOn: "modified_on",
|
|
294
|
+
name: "name",
|
|
295
|
+
proxiable: "proxiable",
|
|
296
|
+
proxied: "proxied",
|
|
297
|
+
settings: "settings",
|
|
298
|
+
tags: "tags",
|
|
299
|
+
ttl: "ttl",
|
|
300
|
+
type: "type",
|
|
301
|
+
commentModifiedOn: "comment_modified_on",
|
|
302
|
+
tagsModifiedOn: "tags_modified_on",
|
|
303
|
+
})),
|
|
268
304
|
Schema.Struct({
|
|
269
305
|
name: Schema.String,
|
|
270
306
|
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
@@ -479,42 +515,6 @@ export const ScanListRecordResponse = /*@__PURE__*/ /*#__PURE__*/ Schema.Struct(
|
|
|
479
515
|
commentModifiedOn: "comment_modified_on",
|
|
480
516
|
tagsModifiedOn: "tags_modified_on",
|
|
481
517
|
})),
|
|
482
|
-
Schema.Struct({
|
|
483
|
-
id: Schema.String,
|
|
484
|
-
comment: Schema.String,
|
|
485
|
-
content: Schema.String,
|
|
486
|
-
createdOn: Schema.String,
|
|
487
|
-
meta: Schema.Unknown,
|
|
488
|
-
modifiedOn: Schema.String,
|
|
489
|
-
name: Schema.String,
|
|
490
|
-
proxiable: Schema.Boolean,
|
|
491
|
-
proxied: Schema.Boolean,
|
|
492
|
-
settings: Schema.Struct({
|
|
493
|
-
ipv4Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
494
|
-
ipv6Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
495
|
-
}).pipe(Schema.encodeKeys({ ipv4Only: "ipv4_only", ipv6Only: "ipv6_only" })),
|
|
496
|
-
tags: Schema.Array(Schema.String),
|
|
497
|
-
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
498
|
-
type: Schema.Literal("OPENPGPKEY"),
|
|
499
|
-
commentModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
500
|
-
tagsModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
501
|
-
}).pipe(Schema.encodeKeys({
|
|
502
|
-
id: "id",
|
|
503
|
-
comment: "comment",
|
|
504
|
-
content: "content",
|
|
505
|
-
createdOn: "created_on",
|
|
506
|
-
meta: "meta",
|
|
507
|
-
modifiedOn: "modified_on",
|
|
508
|
-
name: "name",
|
|
509
|
-
proxiable: "proxiable",
|
|
510
|
-
proxied: "proxied",
|
|
511
|
-
settings: "settings",
|
|
512
|
-
tags: "tags",
|
|
513
|
-
ttl: "ttl",
|
|
514
|
-
type: "type",
|
|
515
|
-
commentModifiedOn: "comment_modified_on",
|
|
516
|
-
tagsModifiedOn: "tags_modified_on",
|
|
517
|
-
})),
|
|
518
518
|
Schema.Struct({
|
|
519
519
|
name: Schema.String,
|
|
520
520
|
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
@@ -1350,6 +1350,42 @@ export const GetRecordRequest = /*@__PURE__*/ /*#__PURE__*/ Schema.Struct({
|
|
|
1350
1350
|
zoneId: Schema.String.pipe(T.HttpPath("zone_id")),
|
|
1351
1351
|
}).pipe(T.Http({ method: "GET", path: "/zones/{zone_id}/dns_records/{dnsRecordId}" }));
|
|
1352
1352
|
export const GetRecordResponse = /*@__PURE__*/ /*#__PURE__*/ Schema.Union([
|
|
1353
|
+
Schema.Struct({
|
|
1354
|
+
id: Schema.String,
|
|
1355
|
+
comment: Schema.String,
|
|
1356
|
+
content: Schema.String,
|
|
1357
|
+
createdOn: Schema.String,
|
|
1358
|
+
meta: Schema.Unknown,
|
|
1359
|
+
modifiedOn: Schema.String,
|
|
1360
|
+
name: Schema.String,
|
|
1361
|
+
proxiable: Schema.Boolean,
|
|
1362
|
+
proxied: Schema.Boolean,
|
|
1363
|
+
settings: Schema.Struct({
|
|
1364
|
+
ipv4Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
1365
|
+
ipv6Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
1366
|
+
}).pipe(Schema.encodeKeys({ ipv4Only: "ipv4_only", ipv6Only: "ipv6_only" })),
|
|
1367
|
+
tags: Schema.Array(Schema.String),
|
|
1368
|
+
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
1369
|
+
type: Schema.Literal("OPENPGPKEY"),
|
|
1370
|
+
commentModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
1371
|
+
tagsModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
1372
|
+
}).pipe(Schema.encodeKeys({
|
|
1373
|
+
id: "id",
|
|
1374
|
+
comment: "comment",
|
|
1375
|
+
content: "content",
|
|
1376
|
+
createdOn: "created_on",
|
|
1377
|
+
meta: "meta",
|
|
1378
|
+
modifiedOn: "modified_on",
|
|
1379
|
+
name: "name",
|
|
1380
|
+
proxiable: "proxiable",
|
|
1381
|
+
proxied: "proxied",
|
|
1382
|
+
settings: "settings",
|
|
1383
|
+
tags: "tags",
|
|
1384
|
+
ttl: "ttl",
|
|
1385
|
+
type: "type",
|
|
1386
|
+
commentModifiedOn: "comment_modified_on",
|
|
1387
|
+
tagsModifiedOn: "tags_modified_on",
|
|
1388
|
+
})),
|
|
1353
1389
|
Schema.Struct({
|
|
1354
1390
|
name: Schema.String,
|
|
1355
1391
|
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
@@ -1552,42 +1588,6 @@ export const GetRecordResponse = /*@__PURE__*/ /*#__PURE__*/ Schema.Union([
|
|
|
1552
1588
|
commentModifiedOn: "comment_modified_on",
|
|
1553
1589
|
tagsModifiedOn: "tags_modified_on",
|
|
1554
1590
|
})),
|
|
1555
|
-
Schema.Struct({
|
|
1556
|
-
id: Schema.String,
|
|
1557
|
-
comment: Schema.String,
|
|
1558
|
-
content: Schema.String,
|
|
1559
|
-
createdOn: Schema.String,
|
|
1560
|
-
meta: Schema.Unknown,
|
|
1561
|
-
modifiedOn: Schema.String,
|
|
1562
|
-
name: Schema.String,
|
|
1563
|
-
proxiable: Schema.Boolean,
|
|
1564
|
-
proxied: Schema.Boolean,
|
|
1565
|
-
settings: Schema.Struct({
|
|
1566
|
-
ipv4Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
1567
|
-
ipv6Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
1568
|
-
}).pipe(Schema.encodeKeys({ ipv4Only: "ipv4_only", ipv6Only: "ipv6_only" })),
|
|
1569
|
-
tags: Schema.Array(Schema.String),
|
|
1570
|
-
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
1571
|
-
type: Schema.Literal("OPENPGPKEY"),
|
|
1572
|
-
commentModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
1573
|
-
tagsModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
1574
|
-
}).pipe(Schema.encodeKeys({
|
|
1575
|
-
id: "id",
|
|
1576
|
-
comment: "comment",
|
|
1577
|
-
content: "content",
|
|
1578
|
-
createdOn: "created_on",
|
|
1579
|
-
meta: "meta",
|
|
1580
|
-
modifiedOn: "modified_on",
|
|
1581
|
-
name: "name",
|
|
1582
|
-
proxiable: "proxiable",
|
|
1583
|
-
proxied: "proxied",
|
|
1584
|
-
settings: "settings",
|
|
1585
|
-
tags: "tags",
|
|
1586
|
-
ttl: "ttl",
|
|
1587
|
-
type: "type",
|
|
1588
|
-
commentModifiedOn: "comment_modified_on",
|
|
1589
|
-
tagsModifiedOn: "tags_modified_on",
|
|
1590
|
-
})),
|
|
1591
1591
|
Schema.Struct({
|
|
1592
1592
|
name: Schema.String,
|
|
1593
1593
|
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
@@ -2417,6 +2417,42 @@ export const ListRecordsRequest = /*@__PURE__*/ /*#__PURE__*/ Schema.Struct({
|
|
|
2417
2417
|
}).pipe(T.Http({ method: "GET", path: "/zones/{zone_id}/dns_records" }));
|
|
2418
2418
|
export const ListRecordsResponse = /*@__PURE__*/ /*#__PURE__*/ Schema.Struct({
|
|
2419
2419
|
result: Schema.Array(Schema.Union([
|
|
2420
|
+
Schema.Struct({
|
|
2421
|
+
id: Schema.String,
|
|
2422
|
+
comment: Schema.String,
|
|
2423
|
+
content: Schema.String,
|
|
2424
|
+
createdOn: Schema.String,
|
|
2425
|
+
meta: Schema.Unknown,
|
|
2426
|
+
modifiedOn: Schema.String,
|
|
2427
|
+
name: Schema.String,
|
|
2428
|
+
proxiable: Schema.Boolean,
|
|
2429
|
+
proxied: Schema.Boolean,
|
|
2430
|
+
settings: Schema.Struct({
|
|
2431
|
+
ipv4Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
2432
|
+
ipv6Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
2433
|
+
}).pipe(Schema.encodeKeys({ ipv4Only: "ipv4_only", ipv6Only: "ipv6_only" })),
|
|
2434
|
+
tags: Schema.Array(Schema.String),
|
|
2435
|
+
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
2436
|
+
type: Schema.Literal("OPENPGPKEY"),
|
|
2437
|
+
commentModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
2438
|
+
tagsModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
2439
|
+
}).pipe(Schema.encodeKeys({
|
|
2440
|
+
id: "id",
|
|
2441
|
+
comment: "comment",
|
|
2442
|
+
content: "content",
|
|
2443
|
+
createdOn: "created_on",
|
|
2444
|
+
meta: "meta",
|
|
2445
|
+
modifiedOn: "modified_on",
|
|
2446
|
+
name: "name",
|
|
2447
|
+
proxiable: "proxiable",
|
|
2448
|
+
proxied: "proxied",
|
|
2449
|
+
settings: "settings",
|
|
2450
|
+
tags: "tags",
|
|
2451
|
+
ttl: "ttl",
|
|
2452
|
+
type: "type",
|
|
2453
|
+
commentModifiedOn: "comment_modified_on",
|
|
2454
|
+
tagsModifiedOn: "tags_modified_on",
|
|
2455
|
+
})),
|
|
2420
2456
|
Schema.Struct({
|
|
2421
2457
|
name: Schema.String,
|
|
2422
2458
|
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
@@ -2631,42 +2667,6 @@ export const ListRecordsResponse = /*@__PURE__*/ /*#__PURE__*/ Schema.Struct({
|
|
|
2631
2667
|
commentModifiedOn: "comment_modified_on",
|
|
2632
2668
|
tagsModifiedOn: "tags_modified_on",
|
|
2633
2669
|
})),
|
|
2634
|
-
Schema.Struct({
|
|
2635
|
-
id: Schema.String,
|
|
2636
|
-
comment: Schema.String,
|
|
2637
|
-
content: Schema.String,
|
|
2638
|
-
createdOn: Schema.String,
|
|
2639
|
-
meta: Schema.Unknown,
|
|
2640
|
-
modifiedOn: Schema.String,
|
|
2641
|
-
name: Schema.String,
|
|
2642
|
-
proxiable: Schema.Boolean,
|
|
2643
|
-
proxied: Schema.Boolean,
|
|
2644
|
-
settings: Schema.Struct({
|
|
2645
|
-
ipv4Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
2646
|
-
ipv6Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
2647
|
-
}).pipe(Schema.encodeKeys({ ipv4Only: "ipv4_only", ipv6Only: "ipv6_only" })),
|
|
2648
|
-
tags: Schema.Array(Schema.String),
|
|
2649
|
-
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
2650
|
-
type: Schema.Literal("OPENPGPKEY"),
|
|
2651
|
-
commentModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
2652
|
-
tagsModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
2653
|
-
}).pipe(Schema.encodeKeys({
|
|
2654
|
-
id: "id",
|
|
2655
|
-
comment: "comment",
|
|
2656
|
-
content: "content",
|
|
2657
|
-
createdOn: "created_on",
|
|
2658
|
-
meta: "meta",
|
|
2659
|
-
modifiedOn: "modified_on",
|
|
2660
|
-
name: "name",
|
|
2661
|
-
proxiable: "proxiable",
|
|
2662
|
-
proxied: "proxied",
|
|
2663
|
-
settings: "settings",
|
|
2664
|
-
tags: "tags",
|
|
2665
|
-
ttl: "ttl",
|
|
2666
|
-
type: "type",
|
|
2667
|
-
commentModifiedOn: "comment_modified_on",
|
|
2668
|
-
tagsModifiedOn: "tags_modified_on",
|
|
2669
|
-
})),
|
|
2670
2670
|
Schema.Struct({
|
|
2671
2671
|
name: Schema.String,
|
|
2672
2672
|
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
@@ -3511,6 +3511,42 @@ export const CreateRecordRequest = /*@__PURE__*/ /*#__PURE__*/ Schema.Struct({
|
|
|
3511
3511
|
tags: Schema.optional(Schema.Array(Schema.String)),
|
|
3512
3512
|
}).pipe(T.Http({ method: "POST", path: "/zones/{zone_id}/dns_records" }));
|
|
3513
3513
|
export const CreateRecordResponse = /*@__PURE__*/ /*#__PURE__*/ Schema.Union([
|
|
3514
|
+
Schema.Struct({
|
|
3515
|
+
id: Schema.String,
|
|
3516
|
+
comment: Schema.String,
|
|
3517
|
+
content: Schema.String,
|
|
3518
|
+
createdOn: Schema.String,
|
|
3519
|
+
meta: Schema.Unknown,
|
|
3520
|
+
modifiedOn: Schema.String,
|
|
3521
|
+
name: Schema.String,
|
|
3522
|
+
proxiable: Schema.Boolean,
|
|
3523
|
+
proxied: Schema.Boolean,
|
|
3524
|
+
settings: Schema.Struct({
|
|
3525
|
+
ipv4Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
3526
|
+
ipv6Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
3527
|
+
}).pipe(Schema.encodeKeys({ ipv4Only: "ipv4_only", ipv6Only: "ipv6_only" })),
|
|
3528
|
+
tags: Schema.Array(Schema.String),
|
|
3529
|
+
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
3530
|
+
type: Schema.Literal("OPENPGPKEY"),
|
|
3531
|
+
commentModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
3532
|
+
tagsModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
3533
|
+
}).pipe(Schema.encodeKeys({
|
|
3534
|
+
id: "id",
|
|
3535
|
+
comment: "comment",
|
|
3536
|
+
content: "content",
|
|
3537
|
+
createdOn: "created_on",
|
|
3538
|
+
meta: "meta",
|
|
3539
|
+
modifiedOn: "modified_on",
|
|
3540
|
+
name: "name",
|
|
3541
|
+
proxiable: "proxiable",
|
|
3542
|
+
proxied: "proxied",
|
|
3543
|
+
settings: "settings",
|
|
3544
|
+
tags: "tags",
|
|
3545
|
+
ttl: "ttl",
|
|
3546
|
+
type: "type",
|
|
3547
|
+
commentModifiedOn: "comment_modified_on",
|
|
3548
|
+
tagsModifiedOn: "tags_modified_on",
|
|
3549
|
+
})),
|
|
3514
3550
|
Schema.Struct({
|
|
3515
3551
|
name: Schema.String,
|
|
3516
3552
|
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
@@ -3713,42 +3749,6 @@ export const CreateRecordResponse = /*@__PURE__*/ /*#__PURE__*/ Schema.Union([
|
|
|
3713
3749
|
commentModifiedOn: "comment_modified_on",
|
|
3714
3750
|
tagsModifiedOn: "tags_modified_on",
|
|
3715
3751
|
})),
|
|
3716
|
-
Schema.Struct({
|
|
3717
|
-
id: Schema.String,
|
|
3718
|
-
comment: Schema.String,
|
|
3719
|
-
content: Schema.String,
|
|
3720
|
-
createdOn: Schema.String,
|
|
3721
|
-
meta: Schema.Unknown,
|
|
3722
|
-
modifiedOn: Schema.String,
|
|
3723
|
-
name: Schema.String,
|
|
3724
|
-
proxiable: Schema.Boolean,
|
|
3725
|
-
proxied: Schema.Boolean,
|
|
3726
|
-
settings: Schema.Struct({
|
|
3727
|
-
ipv4Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
3728
|
-
ipv6Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
3729
|
-
}).pipe(Schema.encodeKeys({ ipv4Only: "ipv4_only", ipv6Only: "ipv6_only" })),
|
|
3730
|
-
tags: Schema.Array(Schema.String),
|
|
3731
|
-
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
3732
|
-
type: Schema.Literal("OPENPGPKEY"),
|
|
3733
|
-
commentModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
3734
|
-
tagsModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
3735
|
-
}).pipe(Schema.encodeKeys({
|
|
3736
|
-
id: "id",
|
|
3737
|
-
comment: "comment",
|
|
3738
|
-
content: "content",
|
|
3739
|
-
createdOn: "created_on",
|
|
3740
|
-
meta: "meta",
|
|
3741
|
-
modifiedOn: "modified_on",
|
|
3742
|
-
name: "name",
|
|
3743
|
-
proxiable: "proxiable",
|
|
3744
|
-
proxied: "proxied",
|
|
3745
|
-
settings: "settings",
|
|
3746
|
-
tags: "tags",
|
|
3747
|
-
ttl: "ttl",
|
|
3748
|
-
type: "type",
|
|
3749
|
-
commentModifiedOn: "comment_modified_on",
|
|
3750
|
-
tagsModifiedOn: "tags_modified_on",
|
|
3751
|
-
})),
|
|
3752
3752
|
Schema.Struct({
|
|
3753
3753
|
name: Schema.String,
|
|
3754
3754
|
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
@@ -4530,6 +4530,42 @@ export const UpdateRecordRequest = /*@__PURE__*/ /*#__PURE__*/ Schema.Struct({
|
|
|
4530
4530
|
tags: Schema.optional(Schema.Array(Schema.String)),
|
|
4531
4531
|
}).pipe(T.Http({ method: "PUT", path: "/zones/{zone_id}/dns_records/{dnsRecordId}" }));
|
|
4532
4532
|
export const UpdateRecordResponse = /*@__PURE__*/ /*#__PURE__*/ Schema.Union([
|
|
4533
|
+
Schema.Struct({
|
|
4534
|
+
id: Schema.String,
|
|
4535
|
+
comment: Schema.String,
|
|
4536
|
+
content: Schema.String,
|
|
4537
|
+
createdOn: Schema.String,
|
|
4538
|
+
meta: Schema.Unknown,
|
|
4539
|
+
modifiedOn: Schema.String,
|
|
4540
|
+
name: Schema.String,
|
|
4541
|
+
proxiable: Schema.Boolean,
|
|
4542
|
+
proxied: Schema.Boolean,
|
|
4543
|
+
settings: Schema.Struct({
|
|
4544
|
+
ipv4Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
4545
|
+
ipv6Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
4546
|
+
}).pipe(Schema.encodeKeys({ ipv4Only: "ipv4_only", ipv6Only: "ipv6_only" })),
|
|
4547
|
+
tags: Schema.Array(Schema.String),
|
|
4548
|
+
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
4549
|
+
type: Schema.Literal("OPENPGPKEY"),
|
|
4550
|
+
commentModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
4551
|
+
tagsModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
4552
|
+
}).pipe(Schema.encodeKeys({
|
|
4553
|
+
id: "id",
|
|
4554
|
+
comment: "comment",
|
|
4555
|
+
content: "content",
|
|
4556
|
+
createdOn: "created_on",
|
|
4557
|
+
meta: "meta",
|
|
4558
|
+
modifiedOn: "modified_on",
|
|
4559
|
+
name: "name",
|
|
4560
|
+
proxiable: "proxiable",
|
|
4561
|
+
proxied: "proxied",
|
|
4562
|
+
settings: "settings",
|
|
4563
|
+
tags: "tags",
|
|
4564
|
+
ttl: "ttl",
|
|
4565
|
+
type: "type",
|
|
4566
|
+
commentModifiedOn: "comment_modified_on",
|
|
4567
|
+
tagsModifiedOn: "tags_modified_on",
|
|
4568
|
+
})),
|
|
4533
4569
|
Schema.Struct({
|
|
4534
4570
|
name: Schema.String,
|
|
4535
4571
|
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
@@ -4707,64 +4743,28 @@ export const UpdateRecordResponse = /*@__PURE__*/ /*#__PURE__*/ Schema.Union([
|
|
|
4707
4743
|
}).pipe(Schema.encodeKeys({ ipv4Only: "ipv4_only", ipv6Only: "ipv6_only" })),
|
|
4708
4744
|
Schema.Null,
|
|
4709
4745
|
])),
|
|
4710
|
-
tags: Schema.optional(Schema.Union([Schema.Array(Schema.String), Schema.Null])),
|
|
4711
|
-
id: Schema.String,
|
|
4712
|
-
createdOn: Schema.String,
|
|
4713
|
-
meta: Schema.Unknown,
|
|
4714
|
-
modifiedOn: Schema.String,
|
|
4715
|
-
proxiable: Schema.Boolean,
|
|
4716
|
-
commentModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
4717
|
-
tagsModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
4718
|
-
}).pipe(Schema.encodeKeys({
|
|
4719
|
-
name: "name",
|
|
4720
|
-
ttl: "ttl",
|
|
4721
|
-
type: "type",
|
|
4722
|
-
comment: "comment",
|
|
4723
|
-
content: "content",
|
|
4724
|
-
proxied: "proxied",
|
|
4725
|
-
settings: "settings",
|
|
4726
|
-
tags: "tags",
|
|
4727
|
-
id: "id",
|
|
4728
|
-
createdOn: "created_on",
|
|
4729
|
-
meta: "meta",
|
|
4730
|
-
modifiedOn: "modified_on",
|
|
4731
|
-
proxiable: "proxiable",
|
|
4732
|
-
commentModifiedOn: "comment_modified_on",
|
|
4733
|
-
tagsModifiedOn: "tags_modified_on",
|
|
4734
|
-
})),
|
|
4735
|
-
Schema.Struct({
|
|
4736
|
-
id: Schema.String,
|
|
4737
|
-
comment: Schema.String,
|
|
4738
|
-
content: Schema.String,
|
|
4739
|
-
createdOn: Schema.String,
|
|
4740
|
-
meta: Schema.Unknown,
|
|
4741
|
-
modifiedOn: Schema.String,
|
|
4742
|
-
name: Schema.String,
|
|
4743
|
-
proxiable: Schema.Boolean,
|
|
4744
|
-
proxied: Schema.Boolean,
|
|
4745
|
-
settings: Schema.Struct({
|
|
4746
|
-
ipv4Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
4747
|
-
ipv6Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
4748
|
-
}).pipe(Schema.encodeKeys({ ipv4Only: "ipv4_only", ipv6Only: "ipv6_only" })),
|
|
4749
|
-
tags: Schema.Array(Schema.String),
|
|
4750
|
-
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
4751
|
-
type: Schema.Literal("OPENPGPKEY"),
|
|
4746
|
+
tags: Schema.optional(Schema.Union([Schema.Array(Schema.String), Schema.Null])),
|
|
4747
|
+
id: Schema.String,
|
|
4748
|
+
createdOn: Schema.String,
|
|
4749
|
+
meta: Schema.Unknown,
|
|
4750
|
+
modifiedOn: Schema.String,
|
|
4751
|
+
proxiable: Schema.Boolean,
|
|
4752
4752
|
commentModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
4753
4753
|
tagsModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
4754
4754
|
}).pipe(Schema.encodeKeys({
|
|
4755
|
-
|
|
4755
|
+
name: "name",
|
|
4756
|
+
ttl: "ttl",
|
|
4757
|
+
type: "type",
|
|
4756
4758
|
comment: "comment",
|
|
4757
4759
|
content: "content",
|
|
4760
|
+
proxied: "proxied",
|
|
4761
|
+
settings: "settings",
|
|
4762
|
+
tags: "tags",
|
|
4763
|
+
id: "id",
|
|
4758
4764
|
createdOn: "created_on",
|
|
4759
4765
|
meta: "meta",
|
|
4760
4766
|
modifiedOn: "modified_on",
|
|
4761
|
-
name: "name",
|
|
4762
4767
|
proxiable: "proxiable",
|
|
4763
|
-
proxied: "proxied",
|
|
4764
|
-
settings: "settings",
|
|
4765
|
-
tags: "tags",
|
|
4766
|
-
ttl: "ttl",
|
|
4767
|
-
type: "type",
|
|
4768
4768
|
commentModifiedOn: "comment_modified_on",
|
|
4769
4769
|
tagsModifiedOn: "tags_modified_on",
|
|
4770
4770
|
})),
|
|
@@ -5552,6 +5552,42 @@ export const PatchRecordRequest = /*@__PURE__*/ /*#__PURE__*/ Schema.Struct({
|
|
|
5552
5552
|
path: "/zones/{zone_id}/dns_records/{dnsRecordId}",
|
|
5553
5553
|
}));
|
|
5554
5554
|
export const PatchRecordResponse = /*@__PURE__*/ /*#__PURE__*/ Schema.Union([
|
|
5555
|
+
Schema.Struct({
|
|
5556
|
+
id: Schema.String,
|
|
5557
|
+
comment: Schema.String,
|
|
5558
|
+
content: Schema.String,
|
|
5559
|
+
createdOn: Schema.String,
|
|
5560
|
+
meta: Schema.Unknown,
|
|
5561
|
+
modifiedOn: Schema.String,
|
|
5562
|
+
name: Schema.String,
|
|
5563
|
+
proxiable: Schema.Boolean,
|
|
5564
|
+
proxied: Schema.Boolean,
|
|
5565
|
+
settings: Schema.Struct({
|
|
5566
|
+
ipv4Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
5567
|
+
ipv6Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
5568
|
+
}).pipe(Schema.encodeKeys({ ipv4Only: "ipv4_only", ipv6Only: "ipv6_only" })),
|
|
5569
|
+
tags: Schema.Array(Schema.String),
|
|
5570
|
+
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
5571
|
+
type: Schema.Literal("OPENPGPKEY"),
|
|
5572
|
+
commentModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
5573
|
+
tagsModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
5574
|
+
}).pipe(Schema.encodeKeys({
|
|
5575
|
+
id: "id",
|
|
5576
|
+
comment: "comment",
|
|
5577
|
+
content: "content",
|
|
5578
|
+
createdOn: "created_on",
|
|
5579
|
+
meta: "meta",
|
|
5580
|
+
modifiedOn: "modified_on",
|
|
5581
|
+
name: "name",
|
|
5582
|
+
proxiable: "proxiable",
|
|
5583
|
+
proxied: "proxied",
|
|
5584
|
+
settings: "settings",
|
|
5585
|
+
tags: "tags",
|
|
5586
|
+
ttl: "ttl",
|
|
5587
|
+
type: "type",
|
|
5588
|
+
commentModifiedOn: "comment_modified_on",
|
|
5589
|
+
tagsModifiedOn: "tags_modified_on",
|
|
5590
|
+
})),
|
|
5555
5591
|
Schema.Struct({
|
|
5556
5592
|
name: Schema.String,
|
|
5557
5593
|
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
@@ -5754,42 +5790,6 @@ export const PatchRecordResponse = /*@__PURE__*/ /*#__PURE__*/ Schema.Union([
|
|
|
5754
5790
|
commentModifiedOn: "comment_modified_on",
|
|
5755
5791
|
tagsModifiedOn: "tags_modified_on",
|
|
5756
5792
|
})),
|
|
5757
|
-
Schema.Struct({
|
|
5758
|
-
id: Schema.String,
|
|
5759
|
-
comment: Schema.String,
|
|
5760
|
-
content: Schema.String,
|
|
5761
|
-
createdOn: Schema.String,
|
|
5762
|
-
meta: Schema.Unknown,
|
|
5763
|
-
modifiedOn: Schema.String,
|
|
5764
|
-
name: Schema.String,
|
|
5765
|
-
proxiable: Schema.Boolean,
|
|
5766
|
-
proxied: Schema.Boolean,
|
|
5767
|
-
settings: Schema.Struct({
|
|
5768
|
-
ipv4Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
5769
|
-
ipv6Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
5770
|
-
}).pipe(Schema.encodeKeys({ ipv4Only: "ipv4_only", ipv6Only: "ipv6_only" })),
|
|
5771
|
-
tags: Schema.Array(Schema.String),
|
|
5772
|
-
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
5773
|
-
type: Schema.Literal("OPENPGPKEY"),
|
|
5774
|
-
commentModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
5775
|
-
tagsModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
5776
|
-
}).pipe(Schema.encodeKeys({
|
|
5777
|
-
id: "id",
|
|
5778
|
-
comment: "comment",
|
|
5779
|
-
content: "content",
|
|
5780
|
-
createdOn: "created_on",
|
|
5781
|
-
meta: "meta",
|
|
5782
|
-
modifiedOn: "modified_on",
|
|
5783
|
-
name: "name",
|
|
5784
|
-
proxiable: "proxiable",
|
|
5785
|
-
proxied: "proxied",
|
|
5786
|
-
settings: "settings",
|
|
5787
|
-
tags: "tags",
|
|
5788
|
-
ttl: "ttl",
|
|
5789
|
-
type: "type",
|
|
5790
|
-
commentModifiedOn: "comment_modified_on",
|
|
5791
|
-
tagsModifiedOn: "tags_modified_on",
|
|
5792
|
-
})),
|
|
5793
5793
|
Schema.Struct({
|
|
5794
5794
|
name: Schema.String,
|
|
5795
5795
|
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
@@ -7968,6 +7968,45 @@ export const BatchRecordRequest = /*@__PURE__*/ /*#__PURE__*/ Schema.Struct({
|
|
|
7968
7968
|
export const BatchRecordResponse = /*@__PURE__*/ /*#__PURE__*/ Schema.Struct({
|
|
7969
7969
|
deletes: Schema.optional(Schema.Union([
|
|
7970
7970
|
Schema.Array(Schema.Union([
|
|
7971
|
+
Schema.Struct({
|
|
7972
|
+
id: Schema.String,
|
|
7973
|
+
comment: Schema.String,
|
|
7974
|
+
content: Schema.String,
|
|
7975
|
+
createdOn: Schema.String,
|
|
7976
|
+
meta: Schema.Unknown,
|
|
7977
|
+
modifiedOn: Schema.String,
|
|
7978
|
+
name: Schema.String,
|
|
7979
|
+
proxiable: Schema.Boolean,
|
|
7980
|
+
proxied: Schema.Boolean,
|
|
7981
|
+
settings: Schema.Struct({
|
|
7982
|
+
ipv4Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
7983
|
+
ipv6Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
7984
|
+
}).pipe(Schema.encodeKeys({
|
|
7985
|
+
ipv4Only: "ipv4_only",
|
|
7986
|
+
ipv6Only: "ipv6_only",
|
|
7987
|
+
})),
|
|
7988
|
+
tags: Schema.Array(Schema.String),
|
|
7989
|
+
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
7990
|
+
type: Schema.Literal("OPENPGPKEY"),
|
|
7991
|
+
commentModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
7992
|
+
tagsModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
7993
|
+
}).pipe(Schema.encodeKeys({
|
|
7994
|
+
id: "id",
|
|
7995
|
+
comment: "comment",
|
|
7996
|
+
content: "content",
|
|
7997
|
+
createdOn: "created_on",
|
|
7998
|
+
meta: "meta",
|
|
7999
|
+
modifiedOn: "modified_on",
|
|
8000
|
+
name: "name",
|
|
8001
|
+
proxiable: "proxiable",
|
|
8002
|
+
proxied: "proxied",
|
|
8003
|
+
settings: "settings",
|
|
8004
|
+
tags: "tags",
|
|
8005
|
+
ttl: "ttl",
|
|
8006
|
+
type: "type",
|
|
8007
|
+
commentModifiedOn: "comment_modified_on",
|
|
8008
|
+
tagsModifiedOn: "tags_modified_on",
|
|
8009
|
+
})),
|
|
7971
8010
|
Schema.Struct({
|
|
7972
8011
|
name: Schema.String,
|
|
7973
8012
|
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
@@ -8182,45 +8221,6 @@ export const BatchRecordResponse = /*@__PURE__*/ /*#__PURE__*/ Schema.Struct({
|
|
|
8182
8221
|
commentModifiedOn: "comment_modified_on",
|
|
8183
8222
|
tagsModifiedOn: "tags_modified_on",
|
|
8184
8223
|
})),
|
|
8185
|
-
Schema.Struct({
|
|
8186
|
-
id: Schema.String,
|
|
8187
|
-
comment: Schema.String,
|
|
8188
|
-
content: Schema.String,
|
|
8189
|
-
createdOn: Schema.String,
|
|
8190
|
-
meta: Schema.Unknown,
|
|
8191
|
-
modifiedOn: Schema.String,
|
|
8192
|
-
name: Schema.String,
|
|
8193
|
-
proxiable: Schema.Boolean,
|
|
8194
|
-
proxied: Schema.Boolean,
|
|
8195
|
-
settings: Schema.Struct({
|
|
8196
|
-
ipv4Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
8197
|
-
ipv6Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
8198
|
-
}).pipe(Schema.encodeKeys({
|
|
8199
|
-
ipv4Only: "ipv4_only",
|
|
8200
|
-
ipv6Only: "ipv6_only",
|
|
8201
|
-
})),
|
|
8202
|
-
tags: Schema.Array(Schema.String),
|
|
8203
|
-
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
8204
|
-
type: Schema.Literal("OPENPGPKEY"),
|
|
8205
|
-
commentModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
8206
|
-
tagsModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
8207
|
-
}).pipe(Schema.encodeKeys({
|
|
8208
|
-
id: "id",
|
|
8209
|
-
comment: "comment",
|
|
8210
|
-
content: "content",
|
|
8211
|
-
createdOn: "created_on",
|
|
8212
|
-
meta: "meta",
|
|
8213
|
-
modifiedOn: "modified_on",
|
|
8214
|
-
name: "name",
|
|
8215
|
-
proxiable: "proxiable",
|
|
8216
|
-
proxied: "proxied",
|
|
8217
|
-
settings: "settings",
|
|
8218
|
-
tags: "tags",
|
|
8219
|
-
ttl: "ttl",
|
|
8220
|
-
type: "type",
|
|
8221
|
-
commentModifiedOn: "comment_modified_on",
|
|
8222
|
-
tagsModifiedOn: "tags_modified_on",
|
|
8223
|
-
})),
|
|
8224
8224
|
Schema.Struct({
|
|
8225
8225
|
name: Schema.String,
|
|
8226
8226
|
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
@@ -9030,6 +9030,45 @@ export const BatchRecordResponse = /*@__PURE__*/ /*#__PURE__*/ Schema.Struct({
|
|
|
9030
9030
|
])),
|
|
9031
9031
|
patches: Schema.optional(Schema.Union([
|
|
9032
9032
|
Schema.Array(Schema.Union([
|
|
9033
|
+
Schema.Struct({
|
|
9034
|
+
id: Schema.String,
|
|
9035
|
+
comment: Schema.String,
|
|
9036
|
+
content: Schema.String,
|
|
9037
|
+
createdOn: Schema.String,
|
|
9038
|
+
meta: Schema.Unknown,
|
|
9039
|
+
modifiedOn: Schema.String,
|
|
9040
|
+
name: Schema.String,
|
|
9041
|
+
proxiable: Schema.Boolean,
|
|
9042
|
+
proxied: Schema.Boolean,
|
|
9043
|
+
settings: Schema.Struct({
|
|
9044
|
+
ipv4Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
9045
|
+
ipv6Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
9046
|
+
}).pipe(Schema.encodeKeys({
|
|
9047
|
+
ipv4Only: "ipv4_only",
|
|
9048
|
+
ipv6Only: "ipv6_only",
|
|
9049
|
+
})),
|
|
9050
|
+
tags: Schema.Array(Schema.String),
|
|
9051
|
+
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
9052
|
+
type: Schema.Literal("OPENPGPKEY"),
|
|
9053
|
+
commentModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
9054
|
+
tagsModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
9055
|
+
}).pipe(Schema.encodeKeys({
|
|
9056
|
+
id: "id",
|
|
9057
|
+
comment: "comment",
|
|
9058
|
+
content: "content",
|
|
9059
|
+
createdOn: "created_on",
|
|
9060
|
+
meta: "meta",
|
|
9061
|
+
modifiedOn: "modified_on",
|
|
9062
|
+
name: "name",
|
|
9063
|
+
proxiable: "proxiable",
|
|
9064
|
+
proxied: "proxied",
|
|
9065
|
+
settings: "settings",
|
|
9066
|
+
tags: "tags",
|
|
9067
|
+
ttl: "ttl",
|
|
9068
|
+
type: "type",
|
|
9069
|
+
commentModifiedOn: "comment_modified_on",
|
|
9070
|
+
tagsModifiedOn: "tags_modified_on",
|
|
9071
|
+
})),
|
|
9033
9072
|
Schema.Struct({
|
|
9034
9073
|
name: Schema.String,
|
|
9035
9074
|
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
@@ -9217,69 +9256,30 @@ export const BatchRecordResponse = /*@__PURE__*/ /*#__PURE__*/ Schema.Struct({
|
|
|
9217
9256
|
ipv4Only: "ipv4_only",
|
|
9218
9257
|
ipv6Only: "ipv6_only",
|
|
9219
9258
|
})),
|
|
9220
|
-
Schema.Null,
|
|
9221
|
-
])),
|
|
9222
|
-
tags: Schema.optional(Schema.Union([Schema.Array(Schema.String), Schema.Null])),
|
|
9223
|
-
id: Schema.String,
|
|
9224
|
-
createdOn: Schema.String,
|
|
9225
|
-
meta: Schema.Unknown,
|
|
9226
|
-
modifiedOn: Schema.String,
|
|
9227
|
-
proxiable: Schema.Boolean,
|
|
9228
|
-
commentModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
9229
|
-
tagsModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
9230
|
-
}).pipe(Schema.encodeKeys({
|
|
9231
|
-
name: "name",
|
|
9232
|
-
ttl: "ttl",
|
|
9233
|
-
type: "type",
|
|
9234
|
-
comment: "comment",
|
|
9235
|
-
content: "content",
|
|
9236
|
-
proxied: "proxied",
|
|
9237
|
-
settings: "settings",
|
|
9238
|
-
tags: "tags",
|
|
9239
|
-
id: "id",
|
|
9240
|
-
createdOn: "created_on",
|
|
9241
|
-
meta: "meta",
|
|
9242
|
-
modifiedOn: "modified_on",
|
|
9243
|
-
proxiable: "proxiable",
|
|
9244
|
-
commentModifiedOn: "comment_modified_on",
|
|
9245
|
-
tagsModifiedOn: "tags_modified_on",
|
|
9246
|
-
})),
|
|
9247
|
-
Schema.Struct({
|
|
9248
|
-
id: Schema.String,
|
|
9249
|
-
comment: Schema.String,
|
|
9250
|
-
content: Schema.String,
|
|
9251
|
-
createdOn: Schema.String,
|
|
9252
|
-
meta: Schema.Unknown,
|
|
9253
|
-
modifiedOn: Schema.String,
|
|
9254
|
-
name: Schema.String,
|
|
9255
|
-
proxiable: Schema.Boolean,
|
|
9256
|
-
proxied: Schema.Boolean,
|
|
9257
|
-
settings: Schema.Struct({
|
|
9258
|
-
ipv4Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
9259
|
-
ipv6Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
9260
|
-
}).pipe(Schema.encodeKeys({
|
|
9261
|
-
ipv4Only: "ipv4_only",
|
|
9262
|
-
ipv6Only: "ipv6_only",
|
|
9263
|
-
})),
|
|
9264
|
-
tags: Schema.Array(Schema.String),
|
|
9265
|
-
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
9266
|
-
type: Schema.Literal("OPENPGPKEY"),
|
|
9259
|
+
Schema.Null,
|
|
9260
|
+
])),
|
|
9261
|
+
tags: Schema.optional(Schema.Union([Schema.Array(Schema.String), Schema.Null])),
|
|
9262
|
+
id: Schema.String,
|
|
9263
|
+
createdOn: Schema.String,
|
|
9264
|
+
meta: Schema.Unknown,
|
|
9265
|
+
modifiedOn: Schema.String,
|
|
9266
|
+
proxiable: Schema.Boolean,
|
|
9267
9267
|
commentModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
9268
9268
|
tagsModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
9269
9269
|
}).pipe(Schema.encodeKeys({
|
|
9270
|
-
|
|
9270
|
+
name: "name",
|
|
9271
|
+
ttl: "ttl",
|
|
9272
|
+
type: "type",
|
|
9271
9273
|
comment: "comment",
|
|
9272
9274
|
content: "content",
|
|
9275
|
+
proxied: "proxied",
|
|
9276
|
+
settings: "settings",
|
|
9277
|
+
tags: "tags",
|
|
9278
|
+
id: "id",
|
|
9273
9279
|
createdOn: "created_on",
|
|
9274
9280
|
meta: "meta",
|
|
9275
9281
|
modifiedOn: "modified_on",
|
|
9276
|
-
name: "name",
|
|
9277
9282
|
proxiable: "proxiable",
|
|
9278
|
-
proxied: "proxied",
|
|
9279
|
-
settings: "settings",
|
|
9280
|
-
tags: "tags",
|
|
9281
|
-
ttl: "ttl",
|
|
9282
|
-
type: "type",
|
|
9283
9283
|
commentModifiedOn: "comment_modified_on",
|
|
9284
9284
|
tagsModifiedOn: "tags_modified_on",
|
|
9285
9285
|
})),
|
|
@@ -10092,6 +10092,45 @@ export const BatchRecordResponse = /*@__PURE__*/ /*#__PURE__*/ Schema.Struct({
|
|
|
10092
10092
|
])),
|
|
10093
10093
|
posts: Schema.optional(Schema.Union([
|
|
10094
10094
|
Schema.Array(Schema.Union([
|
|
10095
|
+
Schema.Struct({
|
|
10096
|
+
id: Schema.String,
|
|
10097
|
+
comment: Schema.String,
|
|
10098
|
+
content: Schema.String,
|
|
10099
|
+
createdOn: Schema.String,
|
|
10100
|
+
meta: Schema.Unknown,
|
|
10101
|
+
modifiedOn: Schema.String,
|
|
10102
|
+
name: Schema.String,
|
|
10103
|
+
proxiable: Schema.Boolean,
|
|
10104
|
+
proxied: Schema.Boolean,
|
|
10105
|
+
settings: Schema.Struct({
|
|
10106
|
+
ipv4Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
10107
|
+
ipv6Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
10108
|
+
}).pipe(Schema.encodeKeys({
|
|
10109
|
+
ipv4Only: "ipv4_only",
|
|
10110
|
+
ipv6Only: "ipv6_only",
|
|
10111
|
+
})),
|
|
10112
|
+
tags: Schema.Array(Schema.String),
|
|
10113
|
+
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
10114
|
+
type: Schema.Literal("OPENPGPKEY"),
|
|
10115
|
+
commentModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
10116
|
+
tagsModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
10117
|
+
}).pipe(Schema.encodeKeys({
|
|
10118
|
+
id: "id",
|
|
10119
|
+
comment: "comment",
|
|
10120
|
+
content: "content",
|
|
10121
|
+
createdOn: "created_on",
|
|
10122
|
+
meta: "meta",
|
|
10123
|
+
modifiedOn: "modified_on",
|
|
10124
|
+
name: "name",
|
|
10125
|
+
proxiable: "proxiable",
|
|
10126
|
+
proxied: "proxied",
|
|
10127
|
+
settings: "settings",
|
|
10128
|
+
tags: "tags",
|
|
10129
|
+
ttl: "ttl",
|
|
10130
|
+
type: "type",
|
|
10131
|
+
commentModifiedOn: "comment_modified_on",
|
|
10132
|
+
tagsModifiedOn: "tags_modified_on",
|
|
10133
|
+
})),
|
|
10095
10134
|
Schema.Struct({
|
|
10096
10135
|
name: Schema.String,
|
|
10097
10136
|
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
@@ -10306,45 +10345,6 @@ export const BatchRecordResponse = /*@__PURE__*/ /*#__PURE__*/ Schema.Struct({
|
|
|
10306
10345
|
commentModifiedOn: "comment_modified_on",
|
|
10307
10346
|
tagsModifiedOn: "tags_modified_on",
|
|
10308
10347
|
})),
|
|
10309
|
-
Schema.Struct({
|
|
10310
|
-
id: Schema.String,
|
|
10311
|
-
comment: Schema.String,
|
|
10312
|
-
content: Schema.String,
|
|
10313
|
-
createdOn: Schema.String,
|
|
10314
|
-
meta: Schema.Unknown,
|
|
10315
|
-
modifiedOn: Schema.String,
|
|
10316
|
-
name: Schema.String,
|
|
10317
|
-
proxiable: Schema.Boolean,
|
|
10318
|
-
proxied: Schema.Boolean,
|
|
10319
|
-
settings: Schema.Struct({
|
|
10320
|
-
ipv4Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
10321
|
-
ipv6Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
10322
|
-
}).pipe(Schema.encodeKeys({
|
|
10323
|
-
ipv4Only: "ipv4_only",
|
|
10324
|
-
ipv6Only: "ipv6_only",
|
|
10325
|
-
})),
|
|
10326
|
-
tags: Schema.Array(Schema.String),
|
|
10327
|
-
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
10328
|
-
type: Schema.Literal("OPENPGPKEY"),
|
|
10329
|
-
commentModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
10330
|
-
tagsModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
10331
|
-
}).pipe(Schema.encodeKeys({
|
|
10332
|
-
id: "id",
|
|
10333
|
-
comment: "comment",
|
|
10334
|
-
content: "content",
|
|
10335
|
-
createdOn: "created_on",
|
|
10336
|
-
meta: "meta",
|
|
10337
|
-
modifiedOn: "modified_on",
|
|
10338
|
-
name: "name",
|
|
10339
|
-
proxiable: "proxiable",
|
|
10340
|
-
proxied: "proxied",
|
|
10341
|
-
settings: "settings",
|
|
10342
|
-
tags: "tags",
|
|
10343
|
-
ttl: "ttl",
|
|
10344
|
-
type: "type",
|
|
10345
|
-
commentModifiedOn: "comment_modified_on",
|
|
10346
|
-
tagsModifiedOn: "tags_modified_on",
|
|
10347
|
-
})),
|
|
10348
10348
|
Schema.Struct({
|
|
10349
10349
|
name: Schema.String,
|
|
10350
10350
|
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
@@ -11154,6 +11154,45 @@ export const BatchRecordResponse = /*@__PURE__*/ /*#__PURE__*/ Schema.Struct({
|
|
|
11154
11154
|
])),
|
|
11155
11155
|
puts: Schema.optional(Schema.Union([
|
|
11156
11156
|
Schema.Array(Schema.Union([
|
|
11157
|
+
Schema.Struct({
|
|
11158
|
+
id: Schema.String,
|
|
11159
|
+
comment: Schema.String,
|
|
11160
|
+
content: Schema.String,
|
|
11161
|
+
createdOn: Schema.String,
|
|
11162
|
+
meta: Schema.Unknown,
|
|
11163
|
+
modifiedOn: Schema.String,
|
|
11164
|
+
name: Schema.String,
|
|
11165
|
+
proxiable: Schema.Boolean,
|
|
11166
|
+
proxied: Schema.Boolean,
|
|
11167
|
+
settings: Schema.Struct({
|
|
11168
|
+
ipv4Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
11169
|
+
ipv6Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
11170
|
+
}).pipe(Schema.encodeKeys({
|
|
11171
|
+
ipv4Only: "ipv4_only",
|
|
11172
|
+
ipv6Only: "ipv6_only",
|
|
11173
|
+
})),
|
|
11174
|
+
tags: Schema.Array(Schema.String),
|
|
11175
|
+
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
11176
|
+
type: Schema.Literal("OPENPGPKEY"),
|
|
11177
|
+
commentModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
11178
|
+
tagsModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
11179
|
+
}).pipe(Schema.encodeKeys({
|
|
11180
|
+
id: "id",
|
|
11181
|
+
comment: "comment",
|
|
11182
|
+
content: "content",
|
|
11183
|
+
createdOn: "created_on",
|
|
11184
|
+
meta: "meta",
|
|
11185
|
+
modifiedOn: "modified_on",
|
|
11186
|
+
name: "name",
|
|
11187
|
+
proxiable: "proxiable",
|
|
11188
|
+
proxied: "proxied",
|
|
11189
|
+
settings: "settings",
|
|
11190
|
+
tags: "tags",
|
|
11191
|
+
ttl: "ttl",
|
|
11192
|
+
type: "type",
|
|
11193
|
+
commentModifiedOn: "comment_modified_on",
|
|
11194
|
+
tagsModifiedOn: "tags_modified_on",
|
|
11195
|
+
})),
|
|
11157
11196
|
Schema.Struct({
|
|
11158
11197
|
name: Schema.String,
|
|
11159
11198
|
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
@@ -11368,45 +11407,6 @@ export const BatchRecordResponse = /*@__PURE__*/ /*#__PURE__*/ Schema.Struct({
|
|
|
11368
11407
|
commentModifiedOn: "comment_modified_on",
|
|
11369
11408
|
tagsModifiedOn: "tags_modified_on",
|
|
11370
11409
|
})),
|
|
11371
|
-
Schema.Struct({
|
|
11372
|
-
id: Schema.String,
|
|
11373
|
-
comment: Schema.String,
|
|
11374
|
-
content: Schema.String,
|
|
11375
|
-
createdOn: Schema.String,
|
|
11376
|
-
meta: Schema.Unknown,
|
|
11377
|
-
modifiedOn: Schema.String,
|
|
11378
|
-
name: Schema.String,
|
|
11379
|
-
proxiable: Schema.Boolean,
|
|
11380
|
-
proxied: Schema.Boolean,
|
|
11381
|
-
settings: Schema.Struct({
|
|
11382
|
-
ipv4Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
11383
|
-
ipv6Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
11384
|
-
}).pipe(Schema.encodeKeys({
|
|
11385
|
-
ipv4Only: "ipv4_only",
|
|
11386
|
-
ipv6Only: "ipv6_only",
|
|
11387
|
-
})),
|
|
11388
|
-
tags: Schema.Array(Schema.String),
|
|
11389
|
-
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
11390
|
-
type: Schema.Literal("OPENPGPKEY"),
|
|
11391
|
-
commentModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
11392
|
-
tagsModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
11393
|
-
}).pipe(Schema.encodeKeys({
|
|
11394
|
-
id: "id",
|
|
11395
|
-
comment: "comment",
|
|
11396
|
-
content: "content",
|
|
11397
|
-
createdOn: "created_on",
|
|
11398
|
-
meta: "meta",
|
|
11399
|
-
modifiedOn: "modified_on",
|
|
11400
|
-
name: "name",
|
|
11401
|
-
proxiable: "proxiable",
|
|
11402
|
-
proxied: "proxied",
|
|
11403
|
-
settings: "settings",
|
|
11404
|
-
tags: "tags",
|
|
11405
|
-
ttl: "ttl",
|
|
11406
|
-
type: "type",
|
|
11407
|
-
commentModifiedOn: "comment_modified_on",
|
|
11408
|
-
tagsModifiedOn: "tags_modified_on",
|
|
11409
|
-
})),
|
|
11410
11410
|
Schema.Struct({
|
|
11411
11411
|
name: Schema.String,
|
|
11412
11412
|
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
@@ -12734,6 +12734,45 @@ export const ScanReviewRecordResponse =
|
|
|
12734
12734
|
/*@__PURE__*/ /*#__PURE__*/ Schema.Struct({
|
|
12735
12735
|
accepts: Schema.optional(Schema.Union([
|
|
12736
12736
|
Schema.Array(Schema.Union([
|
|
12737
|
+
Schema.Struct({
|
|
12738
|
+
id: Schema.String,
|
|
12739
|
+
comment: Schema.String,
|
|
12740
|
+
content: Schema.String,
|
|
12741
|
+
createdOn: Schema.String,
|
|
12742
|
+
meta: Schema.Unknown,
|
|
12743
|
+
modifiedOn: Schema.String,
|
|
12744
|
+
name: Schema.String,
|
|
12745
|
+
proxiable: Schema.Boolean,
|
|
12746
|
+
proxied: Schema.Boolean,
|
|
12747
|
+
settings: Schema.Struct({
|
|
12748
|
+
ipv4Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
12749
|
+
ipv6Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
12750
|
+
}).pipe(Schema.encodeKeys({
|
|
12751
|
+
ipv4Only: "ipv4_only",
|
|
12752
|
+
ipv6Only: "ipv6_only",
|
|
12753
|
+
})),
|
|
12754
|
+
tags: Schema.Array(Schema.String),
|
|
12755
|
+
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
12756
|
+
type: Schema.Literal("OPENPGPKEY"),
|
|
12757
|
+
commentModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
12758
|
+
tagsModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
12759
|
+
}).pipe(Schema.encodeKeys({
|
|
12760
|
+
id: "id",
|
|
12761
|
+
comment: "comment",
|
|
12762
|
+
content: "content",
|
|
12763
|
+
createdOn: "created_on",
|
|
12764
|
+
meta: "meta",
|
|
12765
|
+
modifiedOn: "modified_on",
|
|
12766
|
+
name: "name",
|
|
12767
|
+
proxiable: "proxiable",
|
|
12768
|
+
proxied: "proxied",
|
|
12769
|
+
settings: "settings",
|
|
12770
|
+
tags: "tags",
|
|
12771
|
+
ttl: "ttl",
|
|
12772
|
+
type: "type",
|
|
12773
|
+
commentModifiedOn: "comment_modified_on",
|
|
12774
|
+
tagsModifiedOn: "tags_modified_on",
|
|
12775
|
+
})),
|
|
12737
12776
|
Schema.Struct({
|
|
12738
12777
|
name: Schema.String,
|
|
12739
12778
|
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
@@ -12948,45 +12987,6 @@ export const ScanReviewRecordResponse =
|
|
|
12948
12987
|
commentModifiedOn: "comment_modified_on",
|
|
12949
12988
|
tagsModifiedOn: "tags_modified_on",
|
|
12950
12989
|
})),
|
|
12951
|
-
Schema.Struct({
|
|
12952
|
-
id: Schema.String,
|
|
12953
|
-
comment: Schema.String,
|
|
12954
|
-
content: Schema.String,
|
|
12955
|
-
createdOn: Schema.String,
|
|
12956
|
-
meta: Schema.Unknown,
|
|
12957
|
-
modifiedOn: Schema.String,
|
|
12958
|
-
name: Schema.String,
|
|
12959
|
-
proxiable: Schema.Boolean,
|
|
12960
|
-
proxied: Schema.Boolean,
|
|
12961
|
-
settings: Schema.Struct({
|
|
12962
|
-
ipv4Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
12963
|
-
ipv6Only: Schema.optional(Schema.Union([Schema.Boolean, Schema.Null])),
|
|
12964
|
-
}).pipe(Schema.encodeKeys({
|
|
12965
|
-
ipv4Only: "ipv4_only",
|
|
12966
|
-
ipv6Only: "ipv6_only",
|
|
12967
|
-
})),
|
|
12968
|
-
tags: Schema.Array(Schema.String),
|
|
12969
|
-
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|
|
12970
|
-
type: Schema.Literal("OPENPGPKEY"),
|
|
12971
|
-
commentModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
12972
|
-
tagsModifiedOn: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
12973
|
-
}).pipe(Schema.encodeKeys({
|
|
12974
|
-
id: "id",
|
|
12975
|
-
comment: "comment",
|
|
12976
|
-
content: "content",
|
|
12977
|
-
createdOn: "created_on",
|
|
12978
|
-
meta: "meta",
|
|
12979
|
-
modifiedOn: "modified_on",
|
|
12980
|
-
name: "name",
|
|
12981
|
-
proxiable: "proxiable",
|
|
12982
|
-
proxied: "proxied",
|
|
12983
|
-
settings: "settings",
|
|
12984
|
-
tags: "tags",
|
|
12985
|
-
ttl: "ttl",
|
|
12986
|
-
type: "type",
|
|
12987
|
-
commentModifiedOn: "comment_modified_on",
|
|
12988
|
-
tagsModifiedOn: "tags_modified_on",
|
|
12989
|
-
})),
|
|
12990
12990
|
Schema.Struct({
|
|
12991
12991
|
name: Schema.String,
|
|
12992
12992
|
ttl: Schema.Union([Schema.Number, Schema.Literal("1")]),
|