@distilled.cloud/cloudflare 0.16.3 → 0.16.4

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 (55) hide show
  1. package/lib/services/ai.js +25 -25
  2. package/lib/services/ai.js.map +1 -1
  3. package/lib/services/api-gateway.js +84 -84
  4. package/lib/services/api-gateway.js.map +1 -1
  5. package/lib/services/connectivity.js +12 -12
  6. package/lib/services/connectivity.js.map +1 -1
  7. package/lib/services/dns.js +439 -439
  8. package/lib/services/dns.js.map +1 -1
  9. package/lib/services/firewall.js +76 -76
  10. package/lib/services/firewall.js.map +1 -1
  11. package/lib/services/hyperdrive.js +26 -26
  12. package/lib/services/hyperdrive.js.map +1 -1
  13. package/lib/services/magic-cloud-networking.js +7 -7
  14. package/lib/services/magic-cloud-networking.js.map +1 -1
  15. package/lib/services/magic-transit.js +8 -8
  16. package/lib/services/magic-transit.js.map +1 -1
  17. package/lib/services/pipelines.js +101 -101
  18. package/lib/services/pipelines.js.map +1 -1
  19. package/lib/services/radar.js +32 -32
  20. package/lib/services/radar.js.map +1 -1
  21. package/lib/services/realtime-kit.js +5 -5
  22. package/lib/services/realtime-kit.js.map +1 -1
  23. package/lib/services/rules.js +4 -4
  24. package/lib/services/rules.js.map +1 -1
  25. package/lib/services/token-validation.js +84 -84
  26. package/lib/services/token-validation.js.map +1 -1
  27. package/lib/services/workers-for-platforms.js +438 -438
  28. package/lib/services/workers-for-platforms.js.map +1 -1
  29. package/lib/services/workers.js +1207 -1207
  30. package/lib/services/workers.js.map +1 -1
  31. package/lib/services/workflows.js +9 -9
  32. package/lib/services/workflows.js.map +1 -1
  33. package/lib/services/zero-trust.js +3979 -3979
  34. package/lib/services/zero-trust.js.map +1 -1
  35. package/lib/services/zones.js +50 -50
  36. package/lib/services/zones.js.map +1 -1
  37. package/package.json +2 -2
  38. package/src/services/ai.ts +35 -35
  39. package/src/services/api-gateway.ts +130 -130
  40. package/src/services/connectivity.ts +12 -12
  41. package/src/services/dns.ts +523 -523
  42. package/src/services/firewall.ts +80 -80
  43. package/src/services/hyperdrive.ts +28 -28
  44. package/src/services/magic-cloud-networking.ts +8 -8
  45. package/src/services/magic-transit.ts +8 -8
  46. package/src/services/pipelines.ts +149 -149
  47. package/src/services/radar.ts +32 -32
  48. package/src/services/realtime-kit.ts +5 -5
  49. package/src/services/rules.ts +4 -4
  50. package/src/services/token-validation.ts +84 -84
  51. package/src/services/workers-for-platforms.ts +555 -555
  52. package/src/services/workers.ts +1524 -1524
  53. package/src/services/workflows.ts +9 -9
  54. package/src/services/zero-trust.ts +5599 -5599
  55. package/src/services/zones.ts +74 -74
@@ -99,24 +99,6 @@ export type RunAiResponse =
99
99
  | { description?: string | null };
100
100
 
101
101
  export const RunAiResponse = /*@__PURE__*/ /*#__PURE__*/ Schema.Union([
102
- Schema.Array(
103
- Schema.Struct({
104
- label: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
105
- score: Schema.optional(Schema.Union([Schema.Number, Schema.Null])),
106
- }),
107
- ),
108
- UploadableSchema.pipe(T.HttpFormDataFile()),
109
- Schema.Struct({
110
- audio: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
111
- }),
112
- Schema.Struct({
113
- data: Schema.optional(
114
- Schema.Union([Schema.Array(Schema.Array(Schema.Number)), Schema.Null]),
115
- ),
116
- shape: Schema.optional(
117
- Schema.Union([Schema.Array(Schema.Number), Schema.Null]),
118
- ),
119
- }),
120
102
  Schema.Struct({
121
103
  text: Schema.String,
122
104
  vtt: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
@@ -141,23 +123,6 @@ export const RunAiResponse = /*@__PURE__*/ /*#__PURE__*/ Schema.Union([
141
123
  words: "words",
142
124
  }),
143
125
  ),
144
- Schema.Array(
145
- Schema.Struct({
146
- box: Schema.optional(
147
- Schema.Union([
148
- Schema.Struct({
149
- xmax: Schema.optional(Schema.Union([Schema.Number, Schema.Null])),
150
- xmin: Schema.optional(Schema.Union([Schema.Number, Schema.Null])),
151
- ymax: Schema.optional(Schema.Union([Schema.Number, Schema.Null])),
152
- ymin: Schema.optional(Schema.Union([Schema.Number, Schema.Null])),
153
- }),
154
- Schema.Null,
155
- ]),
156
- ),
157
- label: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
158
- score: Schema.optional(Schema.Union([Schema.Number, Schema.Null])),
159
- }),
160
- ),
161
126
  Schema.Struct({
162
127
  response: Schema.String,
163
128
  toolCalls: Schema.optional(
@@ -202,6 +167,41 @@ export const RunAiResponse = /*@__PURE__*/ /*#__PURE__*/ Schema.Union([
202
167
  usage: "usage",
203
168
  }),
204
169
  ),
170
+ Schema.Array(
171
+ Schema.Struct({
172
+ label: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
173
+ score: Schema.optional(Schema.Union([Schema.Number, Schema.Null])),
174
+ }),
175
+ ),
176
+ UploadableSchema.pipe(T.HttpFormDataFile()),
177
+ Schema.Struct({
178
+ audio: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
179
+ }),
180
+ Schema.Struct({
181
+ data: Schema.optional(
182
+ Schema.Union([Schema.Array(Schema.Array(Schema.Number)), Schema.Null]),
183
+ ),
184
+ shape: Schema.optional(
185
+ Schema.Union([Schema.Array(Schema.Number), Schema.Null]),
186
+ ),
187
+ }),
188
+ Schema.Array(
189
+ Schema.Struct({
190
+ box: Schema.optional(
191
+ Schema.Union([
192
+ Schema.Struct({
193
+ xmax: Schema.optional(Schema.Union([Schema.Number, Schema.Null])),
194
+ xmin: Schema.optional(Schema.Union([Schema.Number, Schema.Null])),
195
+ ymax: Schema.optional(Schema.Union([Schema.Number, Schema.Null])),
196
+ ymin: Schema.optional(Schema.Union([Schema.Number, Schema.Null])),
197
+ }),
198
+ Schema.Null,
199
+ ]),
200
+ ),
201
+ label: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
202
+ score: Schema.optional(Schema.Union([Schema.Number, Schema.Null])),
203
+ }),
204
+ ),
205
205
  Schema.Struct({
206
206
  translatedText: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
207
207
  }).pipe(Schema.encodeKeys({ translatedText: "translated_text" })),
@@ -700,6 +700,29 @@ export const GetOperationResponse = /*@__PURE__*/ /*#__PURE__*/ Schema.Struct({
700
700
  features: Schema.optional(
701
701
  Schema.Union([
702
702
  Schema.Union([
703
+ Schema.Struct({
704
+ parameterSchemas: Schema.Struct({
705
+ lastUpdated: Schema.optional(
706
+ Schema.Union([Schema.String, Schema.Null]),
707
+ ),
708
+ parameterSchemas: Schema.optional(
709
+ Schema.Union([
710
+ Schema.Struct({
711
+ parameters: Schema.optional(
712
+ Schema.Union([Schema.Array(Schema.Unknown), Schema.Null]),
713
+ ),
714
+ responses: Schema.optional(Schema.Null),
715
+ }),
716
+ Schema.Null,
717
+ ]),
718
+ ),
719
+ }).pipe(
720
+ Schema.encodeKeys({
721
+ lastUpdated: "last_updated",
722
+ parameterSchemas: "parameter_schemas",
723
+ }),
724
+ ),
725
+ }).pipe(Schema.encodeKeys({ parameterSchemas: "parameter_schemas" })),
703
726
  Schema.Struct({
704
727
  thresholds: Schema.optional(
705
728
  Schema.Union([
@@ -748,29 +771,6 @@ export const GetOperationResponse = /*@__PURE__*/ /*#__PURE__*/ Schema.Struct({
748
771
  ]),
749
772
  ),
750
773
  }),
751
- Schema.Struct({
752
- parameterSchemas: Schema.Struct({
753
- lastUpdated: Schema.optional(
754
- Schema.Union([Schema.String, Schema.Null]),
755
- ),
756
- parameterSchemas: Schema.optional(
757
- Schema.Union([
758
- Schema.Struct({
759
- parameters: Schema.optional(
760
- Schema.Union([Schema.Array(Schema.Unknown), Schema.Null]),
761
- ),
762
- responses: Schema.optional(Schema.Null),
763
- }),
764
- Schema.Null,
765
- ]),
766
- ),
767
- }).pipe(
768
- Schema.encodeKeys({
769
- lastUpdated: "last_updated",
770
- parameterSchemas: "parameter_schemas",
771
- }),
772
- ),
773
- }).pipe(Schema.encodeKeys({ parameterSchemas: "parameter_schemas" })),
774
774
  Schema.Struct({
775
775
  apiRouting: Schema.optional(
776
776
  Schema.Union([
@@ -1103,6 +1103,34 @@ export const ListOperationsResponse = /*@__PURE__*/ /*#__PURE__*/ Schema.Struct(
1103
1103
  features: Schema.optional(
1104
1104
  Schema.Union([
1105
1105
  Schema.Union([
1106
+ Schema.Struct({
1107
+ parameterSchemas: Schema.Struct({
1108
+ lastUpdated: Schema.optional(
1109
+ Schema.Union([Schema.String, Schema.Null]),
1110
+ ),
1111
+ parameterSchemas: Schema.optional(
1112
+ Schema.Union([
1113
+ Schema.Struct({
1114
+ parameters: Schema.optional(
1115
+ Schema.Union([
1116
+ Schema.Array(Schema.Unknown),
1117
+ Schema.Null,
1118
+ ]),
1119
+ ),
1120
+ responses: Schema.optional(Schema.Null),
1121
+ }),
1122
+ Schema.Null,
1123
+ ]),
1124
+ ),
1125
+ }).pipe(
1126
+ Schema.encodeKeys({
1127
+ lastUpdated: "last_updated",
1128
+ parameterSchemas: "parameter_schemas",
1129
+ }),
1130
+ ),
1131
+ }).pipe(
1132
+ Schema.encodeKeys({ parameterSchemas: "parameter_schemas" }),
1133
+ ),
1106
1134
  Schema.Struct({
1107
1135
  thresholds: Schema.optional(
1108
1136
  Schema.Union([
@@ -1151,34 +1179,6 @@ export const ListOperationsResponse = /*@__PURE__*/ /*#__PURE__*/ Schema.Struct(
1151
1179
  ]),
1152
1180
  ),
1153
1181
  }),
1154
- Schema.Struct({
1155
- parameterSchemas: Schema.Struct({
1156
- lastUpdated: Schema.optional(
1157
- Schema.Union([Schema.String, Schema.Null]),
1158
- ),
1159
- parameterSchemas: Schema.optional(
1160
- Schema.Union([
1161
- Schema.Struct({
1162
- parameters: Schema.optional(
1163
- Schema.Union([
1164
- Schema.Array(Schema.Unknown),
1165
- Schema.Null,
1166
- ]),
1167
- ),
1168
- responses: Schema.optional(Schema.Null),
1169
- }),
1170
- Schema.Null,
1171
- ]),
1172
- ),
1173
- }).pipe(
1174
- Schema.encodeKeys({
1175
- lastUpdated: "last_updated",
1176
- parameterSchemas: "parameter_schemas",
1177
- }),
1178
- ),
1179
- }).pipe(
1180
- Schema.encodeKeys({ parameterSchemas: "parameter_schemas" }),
1181
- ),
1182
1182
  Schema.Struct({
1183
1183
  apiRouting: Schema.optional(
1184
1184
  Schema.Union([
@@ -1544,6 +1544,29 @@ export const CreateOperationResponse =
1544
1544
  features: Schema.optional(
1545
1545
  Schema.Union([
1546
1546
  Schema.Union([
1547
+ Schema.Struct({
1548
+ parameterSchemas: Schema.Struct({
1549
+ lastUpdated: Schema.optional(
1550
+ Schema.Union([Schema.String, Schema.Null]),
1551
+ ),
1552
+ parameterSchemas: Schema.optional(
1553
+ Schema.Union([
1554
+ Schema.Struct({
1555
+ parameters: Schema.optional(
1556
+ Schema.Union([Schema.Array(Schema.Unknown), Schema.Null]),
1557
+ ),
1558
+ responses: Schema.optional(Schema.Null),
1559
+ }),
1560
+ Schema.Null,
1561
+ ]),
1562
+ ),
1563
+ }).pipe(
1564
+ Schema.encodeKeys({
1565
+ lastUpdated: "last_updated",
1566
+ parameterSchemas: "parameter_schemas",
1567
+ }),
1568
+ ),
1569
+ }).pipe(Schema.encodeKeys({ parameterSchemas: "parameter_schemas" })),
1547
1570
  Schema.Struct({
1548
1571
  thresholds: Schema.optional(
1549
1572
  Schema.Union([
@@ -1592,29 +1615,6 @@ export const CreateOperationResponse =
1592
1615
  ]),
1593
1616
  ),
1594
1617
  }),
1595
- Schema.Struct({
1596
- parameterSchemas: Schema.Struct({
1597
- lastUpdated: Schema.optional(
1598
- Schema.Union([Schema.String, Schema.Null]),
1599
- ),
1600
- parameterSchemas: Schema.optional(
1601
- Schema.Union([
1602
- Schema.Struct({
1603
- parameters: Schema.optional(
1604
- Schema.Union([Schema.Array(Schema.Unknown), Schema.Null]),
1605
- ),
1606
- responses: Schema.optional(Schema.Null),
1607
- }),
1608
- Schema.Null,
1609
- ]),
1610
- ),
1611
- }).pipe(
1612
- Schema.encodeKeys({
1613
- lastUpdated: "last_updated",
1614
- parameterSchemas: "parameter_schemas",
1615
- }),
1616
- ),
1617
- }).pipe(Schema.encodeKeys({ parameterSchemas: "parameter_schemas" })),
1618
1618
  Schema.Struct({
1619
1619
  apiRouting: Schema.optional(
1620
1620
  Schema.Union([
@@ -2065,6 +2065,34 @@ export const BulkCreateOperationsResponse =
2065
2065
  features: Schema.optional(
2066
2066
  Schema.Union([
2067
2067
  Schema.Union([
2068
+ Schema.Struct({
2069
+ parameterSchemas: Schema.Struct({
2070
+ lastUpdated: Schema.optional(
2071
+ Schema.Union([Schema.String, Schema.Null]),
2072
+ ),
2073
+ parameterSchemas: Schema.optional(
2074
+ Schema.Union([
2075
+ Schema.Struct({
2076
+ parameters: Schema.optional(
2077
+ Schema.Union([
2078
+ Schema.Array(Schema.Unknown),
2079
+ Schema.Null,
2080
+ ]),
2081
+ ),
2082
+ responses: Schema.optional(Schema.Null),
2083
+ }),
2084
+ Schema.Null,
2085
+ ]),
2086
+ ),
2087
+ }).pipe(
2088
+ Schema.encodeKeys({
2089
+ lastUpdated: "last_updated",
2090
+ parameterSchemas: "parameter_schemas",
2091
+ }),
2092
+ ),
2093
+ }).pipe(
2094
+ Schema.encodeKeys({ parameterSchemas: "parameter_schemas" }),
2095
+ ),
2068
2096
  Schema.Struct({
2069
2097
  thresholds: Schema.optional(
2070
2098
  Schema.Union([
@@ -2113,34 +2141,6 @@ export const BulkCreateOperationsResponse =
2113
2141
  ]),
2114
2142
  ),
2115
2143
  }),
2116
- Schema.Struct({
2117
- parameterSchemas: Schema.Struct({
2118
- lastUpdated: Schema.optional(
2119
- Schema.Union([Schema.String, Schema.Null]),
2120
- ),
2121
- parameterSchemas: Schema.optional(
2122
- Schema.Union([
2123
- Schema.Struct({
2124
- parameters: Schema.optional(
2125
- Schema.Union([
2126
- Schema.Array(Schema.Unknown),
2127
- Schema.Null,
2128
- ]),
2129
- ),
2130
- responses: Schema.optional(Schema.Null),
2131
- }),
2132
- Schema.Null,
2133
- ]),
2134
- ),
2135
- }).pipe(
2136
- Schema.encodeKeys({
2137
- lastUpdated: "last_updated",
2138
- parameterSchemas: "parameter_schemas",
2139
- }),
2140
- ),
2141
- }).pipe(
2142
- Schema.encodeKeys({ parameterSchemas: "parameter_schemas" }),
2143
- ),
2144
2144
  Schema.Struct({
2145
2145
  apiRouting: Schema.optional(
2146
2146
  Schema.Union([
@@ -3631,6 +3631,34 @@ export const ListUserSchemaOperationsResponse =
3631
3631
  features: Schema.optional(
3632
3632
  Schema.Union([
3633
3633
  Schema.Union([
3634
+ Schema.Struct({
3635
+ parameterSchemas: Schema.Struct({
3636
+ lastUpdated: Schema.optional(
3637
+ Schema.Union([Schema.String, Schema.Null]),
3638
+ ),
3639
+ parameterSchemas: Schema.optional(
3640
+ Schema.Union([
3641
+ Schema.Struct({
3642
+ parameters: Schema.optional(
3643
+ Schema.Union([
3644
+ Schema.Array(Schema.Unknown),
3645
+ Schema.Null,
3646
+ ]),
3647
+ ),
3648
+ responses: Schema.optional(Schema.Null),
3649
+ }),
3650
+ Schema.Null,
3651
+ ]),
3652
+ ),
3653
+ }).pipe(
3654
+ Schema.encodeKeys({
3655
+ lastUpdated: "last_updated",
3656
+ parameterSchemas: "parameter_schemas",
3657
+ }),
3658
+ ),
3659
+ }).pipe(
3660
+ Schema.encodeKeys({ parameterSchemas: "parameter_schemas" }),
3661
+ ),
3634
3662
  Schema.Struct({
3635
3663
  thresholds: Schema.optional(
3636
3664
  Schema.Union([
@@ -3679,34 +3707,6 @@ export const ListUserSchemaOperationsResponse =
3679
3707
  ]),
3680
3708
  ),
3681
3709
  }),
3682
- Schema.Struct({
3683
- parameterSchemas: Schema.Struct({
3684
- lastUpdated: Schema.optional(
3685
- Schema.Union([Schema.String, Schema.Null]),
3686
- ),
3687
- parameterSchemas: Schema.optional(
3688
- Schema.Union([
3689
- Schema.Struct({
3690
- parameters: Schema.optional(
3691
- Schema.Union([
3692
- Schema.Array(Schema.Unknown),
3693
- Schema.Null,
3694
- ]),
3695
- ),
3696
- responses: Schema.optional(Schema.Null),
3697
- }),
3698
- Schema.Null,
3699
- ]),
3700
- ),
3701
- }).pipe(
3702
- Schema.encodeKeys({
3703
- lastUpdated: "last_updated",
3704
- parameterSchemas: "parameter_schemas",
3705
- }),
3706
- ),
3707
- }).pipe(
3708
- Schema.encodeKeys({ parameterSchemas: "parameter_schemas" }),
3709
- ),
3710
3710
  Schema.Struct({
3711
3711
  apiRouting: Schema.optional(
3712
3712
  Schema.Union([
@@ -81,18 +81,18 @@ export const GetDirectoryServiceResponse =
81
81
  host: Schema.Union([
82
82
  Schema.Struct({
83
83
  ipv4: Schema.String,
84
+ ipv6: Schema.String,
84
85
  network: Schema.Struct({
85
86
  tunnelId: Schema.String,
86
87
  }).pipe(Schema.encodeKeys({ tunnelId: "tunnel_id" })),
87
88
  }),
88
89
  Schema.Struct({
89
- ipv6: Schema.String,
90
+ ipv4: Schema.String,
90
91
  network: Schema.Struct({
91
92
  tunnelId: Schema.String,
92
93
  }).pipe(Schema.encodeKeys({ tunnelId: "tunnel_id" })),
93
94
  }),
94
95
  Schema.Struct({
95
- ipv4: Schema.String,
96
96
  ipv6: Schema.String,
97
97
  network: Schema.Struct({
98
98
  tunnelId: Schema.String,
@@ -212,18 +212,18 @@ export const ListDirectoryServicesResponse =
212
212
  host: Schema.Union([
213
213
  Schema.Struct({
214
214
  ipv4: Schema.String,
215
+ ipv6: Schema.String,
215
216
  network: Schema.Struct({
216
217
  tunnelId: Schema.String,
217
218
  }).pipe(Schema.encodeKeys({ tunnelId: "tunnel_id" })),
218
219
  }),
219
220
  Schema.Struct({
220
- ipv6: Schema.String,
221
+ ipv4: Schema.String,
221
222
  network: Schema.Struct({
222
223
  tunnelId: Schema.String,
223
224
  }).pipe(Schema.encodeKeys({ tunnelId: "tunnel_id" })),
224
225
  }),
225
226
  Schema.Struct({
226
- ipv4: Schema.String,
227
227
  ipv6: Schema.String,
228
228
  network: Schema.Struct({
229
229
  tunnelId: Schema.String,
@@ -341,18 +341,18 @@ export const CreateDirectoryServiceRequest =
341
341
  host: Schema.Union([
342
342
  Schema.Struct({
343
343
  ipv4: Schema.String,
344
+ ipv6: Schema.String,
344
345
  network: Schema.Struct({
345
346
  tunnelId: Schema.String,
346
347
  }).pipe(Schema.encodeKeys({ tunnelId: "tunnel_id" })),
347
348
  }),
348
349
  Schema.Struct({
349
- ipv6: Schema.String,
350
+ ipv4: Schema.String,
350
351
  network: Schema.Struct({
351
352
  tunnelId: Schema.String,
352
353
  }).pipe(Schema.encodeKeys({ tunnelId: "tunnel_id" })),
353
354
  }),
354
355
  Schema.Struct({
355
- ipv4: Schema.String,
356
356
  ipv6: Schema.String,
357
357
  network: Schema.Struct({
358
358
  tunnelId: Schema.String,
@@ -419,18 +419,18 @@ export const CreateDirectoryServiceResponse =
419
419
  host: Schema.Union([
420
420
  Schema.Struct({
421
421
  ipv4: Schema.String,
422
+ ipv6: Schema.String,
422
423
  network: Schema.Struct({
423
424
  tunnelId: Schema.String,
424
425
  }).pipe(Schema.encodeKeys({ tunnelId: "tunnel_id" })),
425
426
  }),
426
427
  Schema.Struct({
427
- ipv6: Schema.String,
428
+ ipv4: Schema.String,
428
429
  network: Schema.Struct({
429
430
  tunnelId: Schema.String,
430
431
  }).pipe(Schema.encodeKeys({ tunnelId: "tunnel_id" })),
431
432
  }),
432
433
  Schema.Struct({
433
- ipv4: Schema.String,
434
434
  ipv6: Schema.String,
435
435
  network: Schema.Struct({
436
436
  tunnelId: Schema.String,
@@ -526,18 +526,18 @@ export const UpdateDirectoryServiceRequest =
526
526
  host: Schema.Union([
527
527
  Schema.Struct({
528
528
  ipv4: Schema.String,
529
+ ipv6: Schema.String,
529
530
  network: Schema.Struct({
530
531
  tunnelId: Schema.String,
531
532
  }).pipe(Schema.encodeKeys({ tunnelId: "tunnel_id" })),
532
533
  }),
533
534
  Schema.Struct({
534
- ipv6: Schema.String,
535
+ ipv4: Schema.String,
535
536
  network: Schema.Struct({
536
537
  tunnelId: Schema.String,
537
538
  }).pipe(Schema.encodeKeys({ tunnelId: "tunnel_id" })),
538
539
  }),
539
540
  Schema.Struct({
540
- ipv4: Schema.String,
541
541
  ipv6: Schema.String,
542
542
  network: Schema.Struct({
543
543
  tunnelId: Schema.String,
@@ -604,18 +604,18 @@ export const UpdateDirectoryServiceResponse =
604
604
  host: Schema.Union([
605
605
  Schema.Struct({
606
606
  ipv4: Schema.String,
607
+ ipv6: Schema.String,
607
608
  network: Schema.Struct({
608
609
  tunnelId: Schema.String,
609
610
  }).pipe(Schema.encodeKeys({ tunnelId: "tunnel_id" })),
610
611
  }),
611
612
  Schema.Struct({
612
- ipv6: Schema.String,
613
+ ipv4: Schema.String,
613
614
  network: Schema.Struct({
614
615
  tunnelId: Schema.String,
615
616
  }).pipe(Schema.encodeKeys({ tunnelId: "tunnel_id" })),
616
617
  }),
617
618
  Schema.Struct({
618
- ipv4: Schema.String,
619
619
  ipv6: Schema.String,
620
620
  network: Schema.Struct({
621
621
  tunnelId: Schema.String,