@distilled.cloud/aws 1.0.0-rc.10 → 1.0.0-rc.11

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": "1.0.0-rc.10",
3
+ "version": "1.0.0-rc.11",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/alchemy-run/distilled",
@@ -343,7 +343,7 @@
343
343
  "@smithy/types": "^4.17.2",
344
344
  "@smithy/util-base64": "^4.6.0",
345
345
  "fast-xml-parser": "^5.10.1",
346
- "@distilled.cloud/core": "1.0.0-rc.10"
346
+ "@distilled.cloud/core": "1.0.0-rc.11"
347
347
  },
348
348
  "devDependencies": {
349
349
  "@effect/platform-bun": ">=4.0.0-rc.115 || >=4.0.0",
@@ -14680,7 +14680,9 @@ export const describeDBClusterSnapshots: API.PaginatedOperationMethod<
14680
14680
  } as const,
14681
14681
  })) as any;
14682
14682
 
14683
- export type DescribeDBEngineVersionsError = CommonErrors;
14683
+ export type DescribeDBEngineVersionsError =
14684
+ | InvalidParameterCombination
14685
+ | CommonErrors;
14684
14686
  /**
14685
14687
  * Describes the properties of specific versions of DB engines.
14686
14688
  */
@@ -14693,7 +14695,7 @@ export const describeDBEngineVersions: API.PaginatedOperationMethod<
14693
14695
  > = /*@__PURE__*/ API.makePaginated(() => ({
14694
14696
  input: DescribeDBEngineVersionsMessage,
14695
14697
  output: DBEngineVersionMessage,
14696
- errors: [],
14698
+ errors: [InvalidParameterCombination],
14697
14699
  protocol: AwsProtocol,
14698
14700
  retry: Retry,
14699
14701
  operationName: "DescribeDBEngineVersions",