@opsregistry/contracts 0.1.4 → 0.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/README.md +49 -5
- package/dist/index.d.ts +9 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +9 -0
- package/dist/index.js.map +1 -1
- package/dist/inventory/stock-adjust.d.ts +137 -0
- package/dist/inventory/stock-adjust.d.ts.map +1 -0
- package/dist/inventory/stock-adjust.js +51 -0
- package/dist/inventory/stock-adjust.js.map +1 -0
- package/dist/inventory/stock-common.d.ts +161 -0
- package/dist/inventory/stock-common.d.ts.map +1 -0
- package/dist/inventory/stock-common.js +88 -0
- package/dist/inventory/stock-common.js.map +1 -0
- package/dist/inventory/stock-get-availability.d.ts +113 -0
- package/dist/inventory/stock-get-availability.d.ts.map +1 -0
- package/dist/inventory/stock-get-availability.js +34 -0
- package/dist/inventory/stock-get-availability.js.map +1 -0
- package/dist/inventory/stock-issue.d.ts +109 -0
- package/dist/inventory/stock-issue.d.ts.map +1 -0
- package/dist/inventory/stock-issue.js +26 -0
- package/dist/inventory/stock-issue.js.map +1 -0
- package/dist/inventory/stock-receive.d.ts +112 -0
- package/dist/inventory/stock-receive.d.ts.map +1 -0
- package/dist/inventory/stock-receive.js +24 -0
- package/dist/inventory/stock-receive.js.map +1 -0
- package/dist/inventory/stock-release.d.ts +98 -0
- package/dist/inventory/stock-release.d.ts.map +1 -0
- package/dist/inventory/stock-release.js +39 -0
- package/dist/inventory/stock-release.js.map +1 -0
- package/dist/inventory/stock-reserve.d.ts +151 -0
- package/dist/inventory/stock-reserve.d.ts.map +1 -0
- package/dist/inventory/stock-reserve.js +52 -0
- package/dist/inventory/stock-reserve.js.map +1 -0
- package/dist/inventory/stock-transfer.d.ts +137 -0
- package/dist/inventory/stock-transfer.d.ts.map +1 -0
- package/dist/inventory/stock-transfer.js +45 -0
- package/dist/inventory/stock-transfer.js.map +1 -0
- package/dist/logistics/shipment-list.d.ts +178 -0
- package/dist/logistics/shipment-list.d.ts.map +1 -0
- package/dist/logistics/shipment-list.js +53 -0
- package/dist/logistics/shipment-list.js.map +1 -0
- package/package.json +39 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opsregistry/contracts",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Operation specifications and shared schemas for opsregistry.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -28,6 +28,10 @@
|
|
|
28
28
|
"types": "./dist/logistics/shipment-create.d.ts",
|
|
29
29
|
"import": "./dist/logistics/shipment-create.js"
|
|
30
30
|
},
|
|
31
|
+
"./logistics/shipment-list": {
|
|
32
|
+
"types": "./dist/logistics/shipment-list.d.ts",
|
|
33
|
+
"import": "./dist/logistics/shipment-list.js"
|
|
34
|
+
},
|
|
31
35
|
"./logistics/shipment-track": {
|
|
32
36
|
"types": "./dist/logistics/shipment-track.d.ts",
|
|
33
37
|
"import": "./dist/logistics/shipment-track.js"
|
|
@@ -127,11 +131,44 @@
|
|
|
127
131
|
"./it/access-policy-evaluate": {
|
|
128
132
|
"types": "./dist/it/access-policy-evaluate.d.ts",
|
|
129
133
|
"import": "./dist/it/access-policy-evaluate.js"
|
|
134
|
+
},
|
|
135
|
+
"./inventory/stock-common": {
|
|
136
|
+
"types": "./dist/inventory/stock-common.d.ts",
|
|
137
|
+
"import": "./dist/inventory/stock-common.js"
|
|
138
|
+
},
|
|
139
|
+
"./inventory/stock-get-availability": {
|
|
140
|
+
"types": "./dist/inventory/stock-get-availability.d.ts",
|
|
141
|
+
"import": "./dist/inventory/stock-get-availability.js"
|
|
142
|
+
},
|
|
143
|
+
"./inventory/stock-receive": {
|
|
144
|
+
"types": "./dist/inventory/stock-receive.d.ts",
|
|
145
|
+
"import": "./dist/inventory/stock-receive.js"
|
|
146
|
+
},
|
|
147
|
+
"./inventory/stock-issue": {
|
|
148
|
+
"types": "./dist/inventory/stock-issue.d.ts",
|
|
149
|
+
"import": "./dist/inventory/stock-issue.js"
|
|
150
|
+
},
|
|
151
|
+
"./inventory/stock-reserve": {
|
|
152
|
+
"types": "./dist/inventory/stock-reserve.d.ts",
|
|
153
|
+
"import": "./dist/inventory/stock-reserve.js"
|
|
154
|
+
},
|
|
155
|
+
"./inventory/stock-release": {
|
|
156
|
+
"types": "./dist/inventory/stock-release.d.ts",
|
|
157
|
+
"import": "./dist/inventory/stock-release.js"
|
|
158
|
+
},
|
|
159
|
+
"./inventory/stock-transfer": {
|
|
160
|
+
"types": "./dist/inventory/stock-transfer.d.ts",
|
|
161
|
+
"import": "./dist/inventory/stock-transfer.js"
|
|
162
|
+
},
|
|
163
|
+
"./inventory/stock-adjust": {
|
|
164
|
+
"types": "./dist/inventory/stock-adjust.d.ts",
|
|
165
|
+
"import": "./dist/inventory/stock-adjust.js"
|
|
130
166
|
}
|
|
131
167
|
},
|
|
132
168
|
"scripts": {
|
|
133
169
|
"build": "rm -rf dist && tsc -p tsconfig.json",
|
|
134
|
-
"check": "tsc -p tsconfig.json --noEmit"
|
|
170
|
+
"check": "tsc -p tsconfig.json --noEmit",
|
|
171
|
+
"test": "bun test"
|
|
135
172
|
},
|
|
136
173
|
"dependencies": {
|
|
137
174
|
"zod": "4.4.3"
|