feat(organizations): migrate source storage to polymorphic records

This commit is contained in:
2026-05-19 10:23:53 +02:00
parent 19a7d5a91c
commit 4ca2fa25d5
44 changed files with 7129 additions and 1551 deletions

26
ts_client/package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "@mostovik/organizations-api-client",
"version": "0.1.0",
"description": "TypeScript client for Mostovik organizations API v2",
"type": "module",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
},
"files": [
"dist/src",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "tsc -p tsconfig.json && node --test dist/test/*.test.js"
},
"devDependencies": {
"@types/node": "^25.0.0",
"typescript": "^5.9.3"
}
}