From ea3faa9b16b76d6568ea1ab9e59b3444341af012 Mon Sep 17 00:00:00 2001 From: sdarbinyan Date: Tue, 18 Aug 2026 01:56:37 +0400 Subject: [PATCH] release: @marketplaces/payment 0.1.0 (built from main) --- README.md | 11 +++++++++++ dist/index.d.ts | 1 + dist/index.js | 1 + package.json | 14 ++++++++++++++ 4 files changed, 27 insertions(+) create mode 100644 README.md create mode 100644 dist/index.d.ts create mode 100644 dist/index.js create mode 100644 package.json diff --git a/README.md b/README.md new file mode 100644 index 0000000..9ddd6b6 --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +# @marketplaces/payment — release branch + +**Generated branch. Do not edit by hand.** + +This branch contains only the built output of `packages/payment` from `main`, laid out so the repository root *is* the package. That makes it installable directly over git, with no npm registry, no auth token, and no tunnel: + +```json +"@marketplaces/payment": "git+https://sources.vitanova.network/sdarbinyan/vitanovaPackages.git#release/payment" +``` + +Scaffold only — no implementation yet. Source lives on `main` under `packages/payment`. diff --git a/dist/index.d.ts b/dist/index.d.ts new file mode 100644 index 0000000..cb0ff5c --- /dev/null +++ b/dist/index.d.ts @@ -0,0 +1 @@ +export {}; diff --git a/dist/index.js b/dist/index.js new file mode 100644 index 0000000..cb0ff5c --- /dev/null +++ b/dist/index.js @@ -0,0 +1 @@ +export {}; diff --git a/package.json b/package.json new file mode 100644 index 0000000..c590fc0 --- /dev/null +++ b/package.json @@ -0,0 +1,14 @@ +{ + "name": "@marketplaces/payment", + "version": "0.1.0", + "description": "Shared payment/finance client (FX, pricing, checkout gateways) for marketplaces projects. Thin by design — payment business logic stays server-side per the Phase 1/7 backend contracts.", + "main": "dist/index.js", + "types": "dist/index.d.ts", + "files": ["dist"], + "peerDependencies": { + "@angular/core": ">=22.0.0", + "@angular/common": ">=22.0.0", + "rxjs": ">=7.8.0" + }, + "license": "UNLICENSED" +}