ia-common 1.0.1-beta.236 → 1.0.1-beta.239
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 +7 -7
- package/build/@enum.d.ts +1 -1
- package/build/@enum.js +1 -1
- package/build/@type.d.ts +1 -0
- package/build/@type.js +1 -0
- package/build/enum/kafka-topics.enum.d.ts +1 -0
- package/build/enum/kafka-topics.enum.js +1 -0
- package/build/interface/advice-expire-topic-value.interface.d.ts +5 -0
- package/build/interface/advice-expire-topic-value.interface.js +2 -0
- package/package.json +38 -37
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
# ia-common
|
|
2
|
-
|
|
3
|
-
# npm run version:deploy:beta to publish demo beta version
|
|
4
|
-
|
|
5
|
-
# npm run version:deploy:patch to upgrade version eg 1.0.0 to 1.0.1 and publish package
|
|
6
|
-
|
|
7
|
-
# npm run version:deploy:minor to upgrade version eg 1.0.0 to 1.1.0 and publish package
|
|
1
|
+
# ia-common
|
|
2
|
+
|
|
3
|
+
# npm run version:deploy:beta to publish demo beta version
|
|
4
|
+
|
|
5
|
+
# npm run version:deploy:patch to upgrade version eg 1.0.0 to 1.0.1 and publish package
|
|
6
|
+
|
|
7
|
+
# npm run version:deploy:minor to upgrade version eg 1.0.0 to 1.1.0 and publish package
|
package/build/@enum.d.ts
CHANGED
|
@@ -18,7 +18,6 @@ export * from "./enum/corporate-actions/corporate-actions-type.enum";
|
|
|
18
18
|
export * from "./enum/corporate-actions/corporate-actions-advice-transaction-type.enum";
|
|
19
19
|
export * from "./enum/corporate-actions/ipo-listing-exchange.enum";
|
|
20
20
|
export * from "./enum/corporate-actions/split-and-bonus-stock-order.enum";
|
|
21
|
-
export * from "./enum/kafka-topics.enum";
|
|
22
21
|
export * from "./enum/corporate-actions/corporate-actions-status.enum";
|
|
23
22
|
export * from "./enum/corporate-actions/buy-back-type.enum";
|
|
24
23
|
export * from "./enum/mutual-fund/nfo-advice-transaction-type.enum";
|
|
@@ -29,3 +28,4 @@ export * from "./enum/corporate-actions/corporate-action-advice-status.enum";
|
|
|
29
28
|
export * from "./enum/configuration.enum";
|
|
30
29
|
export * from "./enum/cron-job.enum";
|
|
31
30
|
export * from "./enum/time-zone.enum";
|
|
31
|
+
export * from "./enum/kafka-topics.enum";
|
package/build/@enum.js
CHANGED
|
@@ -34,7 +34,6 @@ __exportStar(require("./enum/corporate-actions/corporate-actions-type.enum"), ex
|
|
|
34
34
|
__exportStar(require("./enum/corporate-actions/corporate-actions-advice-transaction-type.enum"), exports);
|
|
35
35
|
__exportStar(require("./enum/corporate-actions/ipo-listing-exchange.enum"), exports);
|
|
36
36
|
__exportStar(require("./enum/corporate-actions/split-and-bonus-stock-order.enum"), exports);
|
|
37
|
-
__exportStar(require("./enum/kafka-topics.enum"), exports);
|
|
38
37
|
__exportStar(require("./enum/corporate-actions/corporate-actions-status.enum"), exports);
|
|
39
38
|
__exportStar(require("./enum/corporate-actions/buy-back-type.enum"), exports);
|
|
40
39
|
__exportStar(require("./enum/mutual-fund/nfo-advice-transaction-type.enum"), exports);
|
|
@@ -45,3 +44,4 @@ __exportStar(require("./enum/corporate-actions/corporate-action-advice-status.en
|
|
|
45
44
|
__exportStar(require("./enum/configuration.enum"), exports);
|
|
46
45
|
__exportStar(require("./enum/cron-job.enum"), exports);
|
|
47
46
|
__exportStar(require("./enum/time-zone.enum"), exports);
|
|
47
|
+
__exportStar(require("./enum/kafka-topics.enum"), exports);
|
package/build/@type.d.ts
CHANGED
|
@@ -16,3 +16,4 @@ export * from "./interface/advice-file-documents.interface";
|
|
|
16
16
|
export * from "./interface/last-trade.interface";
|
|
17
17
|
export * from "./interface/stock-advice.interface";
|
|
18
18
|
export * from "./interface/tree-value.interface";
|
|
19
|
+
export * from './interface/advice-expire-topic-value.interface';
|
package/build/@type.js
CHANGED
|
@@ -32,3 +32,4 @@ __exportStar(require("./interface/advice-file-documents.interface"), exports);
|
|
|
32
32
|
__exportStar(require("./interface/last-trade.interface"), exports);
|
|
33
33
|
__exportStar(require("./interface/stock-advice.interface"), exports);
|
|
34
34
|
__exportStar(require("./interface/tree-value.interface"), exports);
|
|
35
|
+
__exportStar(require("./interface/advice-expire-topic-value.interface"), exports);
|
|
@@ -5,6 +5,7 @@ var KAFKA_TOPICS;
|
|
|
5
5
|
(function (KAFKA_TOPICS) {
|
|
6
6
|
KAFKA_TOPICS["TICKER_SERVICE"] = "ticker-service";
|
|
7
7
|
KAFKA_TOPICS["ADVICE_CREATED"] = "advice.created";
|
|
8
|
+
KAFKA_TOPICS["ADVICE_UPDATED"] = "advice.updated";
|
|
8
9
|
KAFKA_TOPICS["ADVICE_STATUS_UPDATED"] = "advice_status_updated";
|
|
9
10
|
KAFKA_TOPICS["ADVICE_EXPIRED"] = "advice_expired";
|
|
10
11
|
})(KAFKA_TOPICS || (exports.KAFKA_TOPICS = KAFKA_TOPICS = {}));
|
package/package.json
CHANGED
|
@@ -1,37 +1,38 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "ia-common",
|
|
3
|
-
"version": "1.0.1-beta.
|
|
4
|
-
"description": "",
|
|
5
|
-
"main": "./build/index.js",
|
|
6
|
-
"types": "./build/index.d.ts",
|
|
7
|
-
"files": [
|
|
8
|
-
"build/**/*"
|
|
9
|
-
],
|
|
10
|
-
"scripts": {
|
|
11
|
-
"clean": "rm -rf build",
|
|
12
|
-
"build": "npm run clean && tsc",
|
|
13
|
-
"version:deploy:beta": "npm version prerelease --preid beta && git push && npm run build && npm publish --tag beta",
|
|
14
|
-
"version:deploy:patch": "npm version patch && git push && npm run build && npm publish",
|
|
15
|
-
"version:deploy:minor": "npm version minor && git push && npm run build && npm publish",
|
|
16
|
-
"test": "echo \"Error: no test specified\" && exit 1",
|
|
17
|
-
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" 2>&1| tee eslint.log",
|
|
18
|
-
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
"
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
|
|
28
|
-
"@
|
|
29
|
-
"@typescript-eslint/
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "ia-common",
|
|
3
|
+
"version": "1.0.1-beta.239",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "./build/index.js",
|
|
6
|
+
"types": "./build/index.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"build/**/*"
|
|
9
|
+
],
|
|
10
|
+
"scripts": {
|
|
11
|
+
"clean": "rm -rf build",
|
|
12
|
+
"build": "npm run clean && tsc",
|
|
13
|
+
"version:deploy:beta": "npm version prerelease --preid beta && git push && npm run build && npm publish --tag beta",
|
|
14
|
+
"version:deploy:patch": "npm version patch && git push && npm run build && npm publish",
|
|
15
|
+
"version:deploy:minor": "npm version minor && git push && npm run build && npm publish",
|
|
16
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
17
|
+
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" 2>&1| tee eslint.log",
|
|
18
|
+
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
|
|
19
|
+
"link": "npm run build && npm link"
|
|
20
|
+
},
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "github__bellex-dev__ia-common:bellex-dev/ia-common.git"
|
|
24
|
+
},
|
|
25
|
+
"author": "",
|
|
26
|
+
"license": "ISC",
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@types/node": "^20.11.5",
|
|
29
|
+
"@typescript-eslint/eslint-plugin": "^6.19.0",
|
|
30
|
+
"@typescript-eslint/parser": "^6.19.0",
|
|
31
|
+
"del-cli": "^5.1.0",
|
|
32
|
+
"eslint": "^8.56.0",
|
|
33
|
+
"typescript": "^5.3.3"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"date-fns": "^3.3.1"
|
|
37
|
+
}
|
|
38
|
+
}
|