@wenex/sdk 1.1.32 → 1.1.34

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 CHANGED
@@ -14,7 +14,7 @@ Follow these steps to set up the project locally:
14
14
  ```bash
15
15
  git clone git@github.com:wenex-org/platform-sdk.git
16
16
  cd platform-sdk
17
- ````
17
+ ```
18
18
 
19
19
  2. **Initialize Git submodules:**
20
20
 
@@ -28,12 +28,6 @@ npm run git:clone
28
28
  pnpm install
29
29
  ```
30
30
 
31
- > *Tip:* If you see a notification about pnpm updates, run:
32
-
33
- ```bash
34
- corepack use pnpm@latest
35
- ```
36
-
37
31
  4. **Set up Husky Git hooks (for development):**
38
32
 
39
33
  ```bash
@@ -44,11 +38,11 @@ npm run husky
44
38
 
45
39
  ## Development
46
40
 
47
- * Run `npm run husky` to enable Husky hooks during development.
41
+ - Run `npm run husky` to enable Husky hooks during development.
48
42
 
49
43
  ---
50
44
 
51
45
  ## License
52
46
 
53
- This project is licensed under the [MIT License](./LICENSE).
47
+ This project is licensed under the [Apache License](./LICENSE).
54
48
 
@@ -1,8 +1,10 @@
1
1
  export declare enum BusinessType {
2
- NONPROFIT = "NONPROFIT",
2
+ CHARITY = "CHARITY",
3
+ INSURANCE = "INSURANCE",
3
4
  GOVERNMENT = "GOVERNMENT",
4
5
  INDIVIDUAL = "INDIVIDUAL",
5
6
  PARTNERSHIP = "PARTNERSHIP",
6
7
  COOPERATIVE = "COOPERATIVE",
7
- CORPORATION = "CORPORATION"
8
+ CORPORATION = "CORPORATION",
9
+ NONPROFIT = "NONPROFIT"
8
10
  }
@@ -3,11 +3,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.BusinessType = void 0;
4
4
  var BusinessType;
5
5
  (function (BusinessType) {
6
- BusinessType["NONPROFIT"] = "NONPROFIT";
6
+ BusinessType["CHARITY"] = "CHARITY";
7
+ BusinessType["INSURANCE"] = "INSURANCE";
7
8
  BusinessType["GOVERNMENT"] = "GOVERNMENT";
8
9
  BusinessType["INDIVIDUAL"] = "INDIVIDUAL";
9
10
  BusinessType["PARTNERSHIP"] = "PARTNERSHIP";
10
11
  BusinessType["COOPERATIVE"] = "COOPERATIVE";
11
12
  BusinessType["CORPORATION"] = "CORPORATION";
13
+ BusinessType["NONPROFIT"] = "NONPROFIT";
12
14
  })(BusinessType || (exports.BusinessType = BusinessType = {}));
13
15
  //# sourceMappingURL=type.enum.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"type.enum.js","sourceRoot":"","sources":["../../../../src/common/enums/career/businesses/type.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,YAOX;AAPD,WAAY,YAAY;IACtB,uCAAuB,CAAA;IACvB,yCAAyB,CAAA;IACzB,yCAAyB,CAAA;IACzB,2CAA2B,CAAA;IAC3B,2CAA2B,CAAA;IAC3B,2CAA2B,CAAA;AAC7B,CAAC,EAPW,YAAY,4BAAZ,YAAY,QAOvB"}
1
+ {"version":3,"file":"type.enum.js","sourceRoot":"","sources":["../../../../src/common/enums/career/businesses/type.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,YASX;AATD,WAAY,YAAY;IACtB,mCAAmB,CAAA;IACnB,uCAAuB,CAAA;IACvB,yCAAyB,CAAA;IACzB,yCAAyB,CAAA;IACzB,2CAA2B,CAAA;IAC3B,2CAA2B,CAAA;IAC3B,2CAA2B,CAAA;IAC3B,uCAAuB,CAAA;AACzB,CAAC,EATW,YAAY,4BAAZ,YAAY,QASvB"}
@@ -1,6 +1,4 @@
1
- import { Status } from '../../../core/enums';
2
1
  export type ConfigCQRS = {
3
- status: Status;
4
2
  webhook: string;
5
3
  authorization?: string;
6
4
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wenex/sdk",
3
- "version": "1.1.32",
3
+ "version": "1.1.34",
4
4
  "description": "Wenex SDK",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",