@aws-sdk/util-user-agent-node 3.168.0 → 3.170.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/util-user-agent-node
9
+
10
+
11
+
12
+
13
+
6
14
  # [3.168.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.167.0...v3.168.0) (2022-09-09)
7
15
 
8
16
  **Note:** Version bump only for package @aws-sdk/util-user-agent-node
@@ -1,10 +1,13 @@
1
- import { Provider, UserAgent } from "@aws-sdk/types";
2
- export declare const UA_APP_ID_ENV_NAME = "AWS_SDK_UA_APP_ID";
3
- export declare const UA_APP_ID_INI_NAME = "sdk-ua-app-id";
4
- interface DefaultUserAgentOptions {
5
- serviceId?: string;
6
- clientVersion: string;
7
- }
8
-
9
- export declare const defaultUserAgent: ({ serviceId, clientVersion }: DefaultUserAgentOptions) => Provider<UserAgent>;
10
- export {};
1
+ import { Provider, UserAgent } from "@aws-sdk/types";
2
+ export declare const UA_APP_ID_ENV_NAME = "AWS_SDK_UA_APP_ID";
3
+ export declare const UA_APP_ID_INI_NAME = "sdk-ua-app-id";
4
+ interface DefaultUserAgentOptions {
5
+ serviceId?: string;
6
+ clientVersion: string;
7
+ }
8
+
9
+ export declare const defaultUserAgent: ({
10
+ serviceId,
11
+ clientVersion,
12
+ }: DefaultUserAgentOptions) => Provider<UserAgent>;
13
+ export {};
@@ -1,2 +1,2 @@
1
- import { UserAgentPair } from "@aws-sdk/types";
2
- export declare const isCrtAvailable: () => UserAgentPair | null;
1
+ import { UserAgentPair } from "@aws-sdk/types";
2
+ export declare const isCrtAvailable: () => UserAgentPair | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/util-user-agent-node",
3
- "version": "3.168.0",
3
+ "version": "3.170.0",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
6
6
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,16 +20,16 @@
20
20
  },
21
21
  "license": "Apache-2.0",
22
22
  "dependencies": {
23
- "@aws-sdk/node-config-provider": "3.168.0",
24
- "@aws-sdk/types": "3.168.0",
23
+ "@aws-sdk/node-config-provider": "3.170.0",
24
+ "@aws-sdk/types": "3.170.0",
25
25
  "tslib": "^2.3.1"
26
26
  },
27
27
  "devDependencies": {
28
- "@aws-sdk/protocol-http": "3.168.0",
28
+ "@aws-sdk/protocol-http": "3.170.0",
29
29
  "@tsconfig/recommended": "1.0.1",
30
30
  "@types/node": "^10.0.0",
31
31
  "concurrently": "7.0.0",
32
- "downlevel-dts": "0.7.0",
32
+ "downlevel-dts": "0.10.1",
33
33
  "rimraf": "3.0.2",
34
34
  "typedoc": "0.19.2",
35
35
  "typescript": "~4.6.2"