@atmosphere-money/testing 0.0.0-beta.0 → 0.0.0-beta.1

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,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.0.0-beta.1
4
+
5
+ - Verifies npm trusted publishing through the GitHub release workflow.
6
+ - Keeps signed webhook fixtures and replay/idempotency helpers aligned with the
7
+ closed-beta App Node SDK.
8
+
3
9
  ## 0.0.0-beta.0
4
10
 
5
11
  - Initial closed-beta testing package for ATM app integrations.
package/README.md CHANGED
@@ -9,20 +9,13 @@ without calling Stripe or ATM production services.
9
9
 
10
10
  ## Status
11
11
 
12
- `@atmosphere-money/testing` is the planned dev-only testing package for ATM app
13
- integrations. Until npm publishing is enabled, closed-beta apps install it from
14
- a local checkout or private tarball.
12
+ `@atmosphere-money/testing` is the dev-only testing package for ATM app
13
+ integrations. The current beta is published on npm for invited app developers.
15
14
 
16
- ## Install during closed beta
15
+ ## Install
17
16
 
18
17
  ```sh
19
- npm install ../path/to/atmosphere-money/packages/testing
20
- ```
21
-
22
- When published:
23
-
24
- ```sh
25
- npm install -D @atmosphere-money/testing
18
+ npm install -D @atmosphere-money/testing@beta
26
19
  ```
27
20
 
28
21
  ## Signed webhook fixture
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atmosphere-money/testing",
3
- "version": "0.0.0-beta.0",
3
+ "version": "0.0.0-beta.1",
4
4
  "description": "Testing fixtures and assertions for Atmosphere Money app integrations.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -38,7 +38,7 @@
38
38
  },
39
39
  "types": "./dist/index.d.ts",
40
40
  "main": "./dist/index.js",
41
- "scripts": {
41
+ "scripts": {
42
42
  "build": "tsc -p tsconfig.json",
43
43
  "test": "tsx test/index.test.ts",
44
44
  "api:snapshot": "node ../../scripts/check-sdk-api-snapshot.mjs packages/testing --write",