@pulsar.money/atlas-sdk 0.4.4 → 0.4.5
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/dist/modules/profiles/dto/update-profile.dto.js +0 -4
- package/dist/modules/profiles/dto/update-profile.dto.js.map +1 -1
- package/dist/modules/profiles/profiles.controller.d.ts +4 -3
- package/dist/modules/profiles/profiles.controller.js +27 -0
- package/dist/modules/profiles/profiles.controller.js.map +1 -1
- package/dist/modules/profiles/profiles.service.d.ts +2 -1
- package/dist/modules/profiles/profiles.service.js +13 -0
- package/dist/modules/profiles/profiles.service.js.map +1 -1
- package/dist/modules/profiles/profiles.types.d.ts +20 -1
- package/dist/modules/profiles/profiles.types.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -2
package/package.json
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulsar.money/atlas-sdk",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.5",
|
|
4
4
|
"description": "SDK for interacting with Pulsar Money Atlas service",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"build": "rimraf dist && tsc",
|
|
9
|
-
"prepublishOnly": "npm run build"
|
|
9
|
+
"prepublishOnly": "npm run build",
|
|
10
|
+
"version:patch": "npm version patch",
|
|
11
|
+
"publish:patch": "npm run version:patch && npm publish"
|
|
10
12
|
},
|
|
11
13
|
"keywords": [
|
|
12
14
|
"nestjs",
|