@or-sdk/billing 11.93.4-beta.4579.0 → 11.93.4-beta.4580.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/AGENTS.md +14 -0
- package/package.json +3 -3
package/AGENTS.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# SDK Package Guide
|
|
2
|
+
|
|
3
|
+
## Responsibility
|
|
4
|
+
TypeScript SDK for interacting with Billing API contracts.
|
|
5
|
+
|
|
6
|
+
## Local Rules
|
|
7
|
+
- Keep SDK APIs aligned with current backend contracts.
|
|
8
|
+
- Preserve strong typing; avoid `any`.
|
|
9
|
+
- Keep public SDK surface consistent and backward-compatible unless explicitly changed.
|
|
10
|
+
|
|
11
|
+
## Local Documentation
|
|
12
|
+
- Document SDK contract/behavior changes in a focused feature doc under `docs/features/` when relevant.
|
|
13
|
+
- If contract strategy or cross-package architecture changes, add an ADR file.
|
|
14
|
+
- Avoid adding implementation notes to shared index README files.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@or-sdk/billing",
|
|
3
|
-
"version": "11.93.4-beta.
|
|
3
|
+
"version": "11.93.4-beta.4580.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"dev": "pnpm build:watch:esm"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@onereach/billing-dto": "^11.93.4-beta.
|
|
19
|
-
"@onereach/billing-shared": "^11.93.4-beta.
|
|
18
|
+
"@onereach/billing-dto": "^11.93.4-beta.4580.0",
|
|
19
|
+
"@onereach/billing-shared": "^11.93.4-beta.4580.0",
|
|
20
20
|
"@or-sdk/base": "^0.42.4",
|
|
21
21
|
"@or-sdk/discovery": "1.10.6",
|
|
22
22
|
"@types/qs": "6.14.0",
|