@aws-sdk/util-arn-parser 3.957.0 → 3.966.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.
@@ -1,3 +1,6 @@
1
+ /**
2
+ * @internal
3
+ */
1
4
  export interface ARN {
2
5
  partition: string;
3
6
  service: string;
@@ -7,17 +10,23 @@ export interface ARN {
7
10
  }
8
11
  /**
9
12
  * Validate whether a string is an ARN.
13
+ * @internal
10
14
  */
11
15
  export declare const validate: (str: any) => boolean;
12
16
  /**
13
17
  * Parse an ARN string into structure with partition, service, region, accountId and resource values
18
+ * @internal
14
19
  */
15
20
  export declare const parse: (arn: string) => ARN;
21
+ /**
22
+ * @internal
23
+ */
16
24
  type buildOptions = Omit<ARN, "partition"> & {
17
25
  partition?: string;
18
26
  };
19
27
  /**
20
28
  * Build an ARN with service, partition, region, accountId, and resources strings
29
+ * @internal
21
30
  */
22
31
  export declare const build: (arnObject: buildOptions) => string;
23
32
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/util-arn-parser",
3
- "version": "3.957.0",
3
+ "version": "3.966.0",
4
4
  "description": "A parser to Amazon Resource Names",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -29,7 +29,7 @@
29
29
  "@types/node": "^18.19.69",
30
30
  "concurrently": "7.0.0",
31
31
  "downlevel-dts": "0.10.1",
32
- "rimraf": "3.0.2",
32
+ "rimraf": "5.0.10",
33
33
  "typescript": "~5.8.3"
34
34
  },
35
35
  "types": "./dist-types/index.d.ts",