@aws-sdk/util-arn-parser 3.292.0 → 3.310.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.
@@ -13,7 +13,7 @@ export declare const validate: (str: any) => boolean;
13
13
  * Parse an ARN string into structure with partition, service, region, accountId and resource values
14
14
  */
15
15
  export declare const parse: (arn: string) => ARN;
16
- declare type buildOptions = Omit<ARN, "partition"> & {
16
+ type buildOptions = Omit<ARN, "partition"> & {
17
17
  partition?: string;
18
18
  };
19
19
  /**
@@ -7,7 +7,7 @@ export interface ARN {
7
7
  }
8
8
  export declare const validate: (str: any) => boolean;
9
9
  export declare const parse: (arn: string) => ARN;
10
- declare type buildOptions = Pick<ARN, Exclude<keyof ARN, "partition">> & {
10
+ type buildOptions = Pick<ARN, Exclude<keyof ARN, "partition">> & {
11
11
  partition?: string;
12
12
  };
13
13
  export declare const build: (arnObject: buildOptions) => string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/util-arn-parser",
3
- "version": "3.292.0",
3
+ "version": "3.310.0",
4
4
  "description": "A parser to Amazon Resource Names",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -20,7 +20,7 @@
20
20
  },
21
21
  "license": "Apache-2.0",
22
22
  "dependencies": {
23
- "tslib": "^2.3.1"
23
+ "tslib": "^2.5.0"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@tsconfig/recommended": "1.0.1",
@@ -29,7 +29,7 @@
29
29
  "downlevel-dts": "0.10.1",
30
30
  "rimraf": "3.0.2",
31
31
  "typedoc": "0.23.23",
32
- "typescript": "~4.6.2"
32
+ "typescript": "~4.9.5"
33
33
  },
34
34
  "types": "./dist-types/index.d.ts",
35
35
  "engines": {
@@ -43,7 +43,7 @@
43
43
  }
44
44
  },
45
45
  "files": [
46
- "dist-*"
46
+ "dist-*/**"
47
47
  ],
48
48
  "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/packages/util-arn-parser",
49
49
  "repository": {