@dsmrt/axiom-aws-sdk 1.0.0 → 1.0.3

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,23 @@
1
1
  # @dsmrt/axiom-aws-sdk
2
2
 
3
+ ## 1.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 0459ce3: fix(ci): restore NPM_TOKEN auth — pnpm publish does not support npm Trusted Publishers OIDC
8
+
9
+ ## 1.0.2
10
+
11
+ ### Patch Changes
12
+
13
+ - 762e5c6: chore: test npm Trusted Publisher OIDC publish flow
14
+
15
+ ## 1.0.1
16
+
17
+ ### Patch Changes
18
+
19
+ - 31ae74a: fix(ci): move --provenance into changeset-publish script to avoid pnpm arg-passthrough bug
20
+
3
21
  ## 1.0.0
4
22
 
5
23
  ### Major Changes
package/dist/index.mjs CHANGED
@@ -1,8 +1,8 @@
1
1
  // src/ssm-parameters.ts
2
2
  import {
3
- SSMClient,
4
3
  GetParametersByPathCommand,
5
- GetParametersCommand
4
+ GetParametersCommand,
5
+ SSMClient
6
6
  } from "@aws-sdk/client-ssm";
7
7
  var ssmClient = new SSMClient({});
8
8
  var getParametersByPath = async (path, parameters, nextToken, client) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dsmrt/axiom-aws-sdk",
3
- "version": "1.0.0",
3
+ "version": "1.0.3",
4
4
  "description": "AWS sdk library for working with axiom cli",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -31,7 +31,7 @@
31
31
  "ts-node": "^10.9.2",
32
32
  "tsup": "^8.3.5",
33
33
  "typescript": "^5.7.2",
34
- "vitest": "^4.0.0"
34
+ "vitest": "^4.1.0"
35
35
  },
36
36
  "dependencies": {
37
37
  "@aws-sdk/client-ssm": "^3.716.0",