@commercetools/history-sdk 2.1.1 → 2.2.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
@@ -1,5 +1,18 @@
1
1
  # @commercetools/history-sdk
2
2
 
3
+ ## 2.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#188](https://github.com/commercetools/commercetools-sdk-typescript/pull/188) [`4c2d9b6`](https://github.com/commercetools/commercetools-sdk-typescript/commit/4c2d9b64b204200dffbeb18130239138dd2ad7d3) Thanks [@ajimae](https://github.com/ajimae)! - February package release
8
+
9
+ ### Patch Changes
10
+
11
+ - [#149](https://github.com/commercetools/commercetools-sdk-typescript/pull/149) [`08caea9`](https://github.com/commercetools/commercetools-sdk-typescript/commit/08caea93560c01e2158f018538b7a2b9f4be39c1) Thanks [@renovate](https://github.com/apps/renovate)! - fix(deps): update all dependencies
12
+
13
+ - Updated dependencies [[`08caea9`](https://github.com/commercetools/commercetools-sdk-typescript/commit/08caea93560c01e2158f018538b7a2b9f4be39c1), [`4c2d9b6`](https://github.com/commercetools/commercetools-sdk-typescript/commit/4c2d9b64b204200dffbeb18130239138dd2ad7d3)]:
14
+ - @commercetools/sdk-client-v2@1.1.0
15
+
3
16
  ## 2.1.1
4
17
 
5
18
  ### Patch Changes
package/README.md CHANGED
@@ -48,7 +48,7 @@ const authMiddlewareOptions = {
48
48
  clientId: 'mc-client-id',
49
49
  clientSecret: 'mc-client-secrets',
50
50
  },
51
- oauthUri: 'https://auth.europe-west1.gcp.commercetools.com',
51
+ oauthUri: '/oauth/token', // - optional: custom oauthUri
52
52
  scopes: [`manage_project:${projectKey}`],
53
53
  fetch,
54
54
  }
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "access": "public"
5
5
  },
6
6
  "name": "@commercetools/history-sdk",
7
- "version": "2.1.1",
7
+ "version": "2.2.0",
8
8
  "description": "Type script sdk for commercetools audit log features",
9
9
  "keywords": ["commercetools", "typescript", "sdk", "history"],
10
10
  "homepage": "https://github.com/commercetools/commercetools-typescript-sdks/packages/history-sdk",
@@ -23,16 +23,16 @@
23
23
  "./dist/commercetools-history-sdk.esm.js": "./dist/commercetools-history-sdk.browser.esm.js"
24
24
  },
25
25
  "dependencies": {
26
- "@commercetools/sdk-client-v2": "^1.0.1",
26
+ "@commercetools/sdk-client-v2": "^1.1.0",
27
27
  "@commercetools/sdk-middleware-auth": "^6.0.4",
28
28
  "@commercetools/sdk-middleware-http": "^6.0.4",
29
29
  "@commercetools/sdk-middleware-logger": "^2.1.1",
30
30
  "querystring": "^0.2.1"
31
31
  },
32
32
  "devDependencies": {
33
- "@commercetools/platform-sdk": "2.2.0",
34
- "@types/uuid": "8.3.3",
35
- "organize-imports-cli": "0.8.0",
33
+ "@commercetools/platform-sdk": "2.4.0",
34
+ "@types/uuid": "8.3.4",
35
+ "organize-imports-cli": "0.9.0",
36
36
  "tsconfig-replace-paths": "0.0.11",
37
37
  "uuid": "8.3.2"
38
38
  },