@distilled.cloud/aws 0.5.1 → 0.5.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@distilled.cloud/aws",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/alchemy-run/distilled",
@@ -82,7 +82,7 @@
82
82
  "@aws-crypto/util": "^5.2.0",
83
83
  "@aws-sdk/credential-providers": "^3.994.0",
84
84
  "@aws-sdk/types": "^3.973.1",
85
- "@distilled.cloud/core": "0.5.1",
85
+ "@distilled.cloud/core": "0.5.2",
86
86
  "@smithy/shared-ini-file-loader": "^4.4.3",
87
87
  "@smithy/types": "^4.12.0",
88
88
  "@smithy/util-base64": "^4.3.0",
@@ -2816,7 +2816,7 @@ export const CreateKeyValueStoreRequest = /*@__PURE__*/ /*#__PURE__*/ S.suspend(
2816
2816
  export interface KeyValueStore {
2817
2817
  Name: string;
2818
2818
  Id: string;
2819
- Comment: string;
2819
+ Comment?: string;
2820
2820
  ARN: string;
2821
2821
  Status?: string;
2822
2822
  LastModifiedTime: Date;
@@ -2825,7 +2825,7 @@ export const KeyValueStore = /*@__PURE__*/ /*#__PURE__*/ S.suspend(() =>
2825
2825
  S.Struct({
2826
2826
  Name: S.String,
2827
2827
  Id: S.String,
2828
- Comment: S.String,
2828
+ Comment: S.optional(S.String),
2829
2829
  ARN: S.String,
2830
2830
  Status: S.optional(S.String),
2831
2831
  LastModifiedTime: T.DateFromString,