@distilled.cloud/aws 0.25.2 → 0.26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/client/response-parser.d.ts.map +1 -1
- package/lib/client/response-parser.js +7 -2
- package/lib/client/response-parser.js.map +1 -1
- package/lib/services/cloudfront.d.ts +3 -3
- package/lib/services/cloudfront.d.ts.map +1 -1
- package/lib/services/cloudfront.js +3 -3
- package/lib/services/cloudfront.js.map +1 -1
- package/lib/services/route-53.d.ts +6 -6
- package/lib/services/route-53.d.ts.map +1 -1
- package/lib/services/route-53.js +6 -6
- package/lib/services/route-53.js.map +1 -1
- package/package.json +2 -2
- package/src/client/response-parser.ts +7 -2
- package/src/services/cloudfront.ts +6 -6
- package/src/services/route-53.ts +12 -12
|
@@ -3655,9 +3655,9 @@ export const VpcOriginSummaryList = /*@__PURE__*/ /*#__PURE__*/ S.Array(VpcOrigi
|
|
|
3655
3655
|
export const VpcOriginList = /*@__PURE__*/ /*#__PURE__*/ S.suspend(() => S.Struct({
|
|
3656
3656
|
Marker: S.optional(S.String),
|
|
3657
3657
|
NextMarker: S.optional(S.String),
|
|
3658
|
-
MaxItems: S.Number,
|
|
3659
|
-
IsTruncated: S.Boolean,
|
|
3660
|
-
Quantity: S.Number,
|
|
3658
|
+
MaxItems: S.optional(S.Number),
|
|
3659
|
+
IsTruncated: S.optional(S.Boolean),
|
|
3660
|
+
Quantity: S.optional(S.Number),
|
|
3661
3661
|
Items: S.optional(VpcOriginSummaryList),
|
|
3662
3662
|
})).annotate({ identifier: "VpcOriginList" });
|
|
3663
3663
|
export const ListVpcOriginsResult = /*@__PURE__*/ /*#__PURE__*/ S.suspend(() => S.Struct({
|