@distilled.cloud/aws 0.5.0 → 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.0",
3
+ "version": "0.5.2",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/alchemy-run/distilled",
@@ -74,7 +74,7 @@
74
74
  "test": "bunx vitest run test",
75
75
  "publish:npm": "bun run build && bun publish --access public",
76
76
  "generate": "bun run scripts/generate.ts && oxlint --fix src && oxfmt --write src && oxfmt --write src",
77
- "specs:fetch": "git submodule update --force --init --recursive specs/api-models-aws && git -C specs/api-models-aws checkout -- . && git submodule update --force --init --recursive specs/aws-sdk-js-v3 && git -C specs/aws-sdk-js-v3 checkout -- . && git submodule update --force --init --recursive specs/smithy && git -C specs/smithy checkout -- . && git submodule update --force --init --recursive specs/smithy-typescript && git -C specs/smithy-typescript checkout -- .",
77
+ "specs:fetch": "git submodule update --force --init --recursive --depth=1 specs/api-models-aws && git -C specs/api-models-aws checkout -- . && git submodule update --force --init --recursive --depth=1 specs/aws-sdk-js-v3 && git -C specs/aws-sdk-js-v3 checkout -- . && git submodule update --force --init --recursive --depth=1 specs/smithy && git -C specs/smithy checkout -- . && git submodule update --force --init --recursive --depth=1 specs/smithy-typescript && git -C specs/smithy-typescript checkout -- .",
78
78
  "specs:update": "git -C specs/api-models-aws fetch && git -C specs/api-models-aws checkout main && git -C specs/api-models-aws pull && git -C specs/aws-sdk-js-v3 fetch && git -C specs/aws-sdk-js-v3 checkout main && git -C specs/aws-sdk-js-v3 pull && git -C specs/smithy fetch && git -C specs/smithy checkout main && git -C specs/smithy pull && git -C specs/smithy-typescript fetch && git -C specs/smithy-typescript checkout main && git -C specs/smithy-typescript pull"
79
79
  },
80
80
  "dependencies": {
@@ -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.0",
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,