@peacom/core 0.0.160 → 0.0.164
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/package.json +5 -1
- package/src/index-react-native.d.ts +4 -0
- package/src/index-react-native.js +8 -0
- package/src/index-react-native.js.map +1 -0
- package/src/index.d.ts +5 -1
- package/src/index.js +5 -1
- package/src/index.js.map +1 -1
- package/src/lib/model/index-react-native.d.ts +16 -0
- package/src/lib/model/index-react-native.js +20 -0
- package/src/lib/model/index-react-native.js.map +1 -0
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@peacom/core",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.164",
|
4
4
|
"type": "commonjs",
|
5
5
|
"dependencies": {
|
6
6
|
"@aws-sdk/client-s3": "^3.350.0",
|
@@ -22,6 +22,10 @@
|
|
22
22
|
"@types/uuid": "^9.0.1",
|
23
23
|
"dotenv": "^16.1.4"
|
24
24
|
},
|
25
|
+
"exports": {
|
26
|
+
"default": "./src/index.js",
|
27
|
+
"react-native": "./src/index-react-native.js"
|
28
|
+
},
|
25
29
|
"peerDependencies": {
|
26
30
|
"tslib": "2.4.1"
|
27
31
|
},
|
@@ -0,0 +1,8 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
const tslib_1 = require("tslib");
|
4
|
+
tslib_1.__exportStar(require("./lib/model/index-react-native"), exports);
|
5
|
+
tslib_1.__exportStar(require("./lib/util"), exports);
|
6
|
+
tslib_1.__exportStar(require("./lib/api"), exports);
|
7
|
+
tslib_1.__exportStar(require("./lib/service"), exports);
|
8
|
+
//# sourceMappingURL=index-react-native.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index-react-native.js","sourceRoot":"","sources":["../../../../packages/core/src/index-react-native.ts"],"names":[],"mappings":";;;AAAA,yEAA+C;AAC/C,qDAA0B;AAC1B,oDAAyB;AACzB,wDAA6B"}
|
package/src/index.d.ts
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
export * from './lib/core';
|
2
2
|
export * from './lib/model';
|
3
|
-
export * from './lib/util';
|
3
|
+
export * from './lib/util/message/message.util';
|
4
|
+
export * from './lib/util/string.util';
|
5
|
+
export * from './lib/util/general.util';
|
6
|
+
export * from './lib/util/phone.util';
|
7
|
+
export * from './lib/util/date/index';
|
4
8
|
export * from './lib/api';
|
5
9
|
export * from './lib/service';
|
package/src/index.js
CHANGED
@@ -3,7 +3,11 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tslib_1 = require("tslib");
|
4
4
|
tslib_1.__exportStar(require("./lib/core"), exports);
|
5
5
|
tslib_1.__exportStar(require("./lib/model"), exports);
|
6
|
-
tslib_1.__exportStar(require("./lib/util"), exports);
|
6
|
+
tslib_1.__exportStar(require("./lib/util/message/message.util"), exports);
|
7
|
+
tslib_1.__exportStar(require("./lib/util/string.util"), exports);
|
8
|
+
tslib_1.__exportStar(require("./lib/util/general.util"), exports);
|
9
|
+
tslib_1.__exportStar(require("./lib/util/phone.util"), exports);
|
10
|
+
tslib_1.__exportStar(require("./lib/util/date/index"), exports);
|
7
11
|
tslib_1.__exportStar(require("./lib/api"), exports);
|
8
12
|
tslib_1.__exportStar(require("./lib/service"), exports);
|
9
13
|
//# sourceMappingURL=index.js.map
|
package/src/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../packages/core/src/index.ts"],"names":[],"mappings":";;;AAAA,qDAA2B;AAC3B,sDAA4B;AAC5B,
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../packages/core/src/index.ts"],"names":[],"mappings":";;;AAAA,qDAA2B;AAC3B,sDAA4B;AAC5B,0EAA+C;AAC/C,iEAAsC;AACtC,kEAAuC;AACvC,gEAAqC;AACrC,gEAAqC;AACrC,oDAAyB;AACzB,wDAA6B"}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
export * from './Application';
|
2
|
+
export * from './Billing';
|
3
|
+
export * from './viber-business';
|
4
|
+
export * from './conversation';
|
5
|
+
export * from './Currency';
|
6
|
+
export * from './template';
|
7
|
+
export * from './message';
|
8
|
+
export * from './FileInfo';
|
9
|
+
export * from './partner';
|
10
|
+
export * from './BackgroundTask';
|
11
|
+
export * from './bulk-campaign';
|
12
|
+
export * from './SystemSetting';
|
13
|
+
export * from './Property';
|
14
|
+
export * from './crm/Ticket';
|
15
|
+
export * from './crm/Customer';
|
16
|
+
export * from './crm/AgentGroup';
|
@@ -0,0 +1,20 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
const tslib_1 = require("tslib");
|
4
|
+
tslib_1.__exportStar(require("./Application"), exports);
|
5
|
+
tslib_1.__exportStar(require("./Billing"), exports);
|
6
|
+
tslib_1.__exportStar(require("./viber-business"), exports);
|
7
|
+
tslib_1.__exportStar(require("./conversation"), exports);
|
8
|
+
tslib_1.__exportStar(require("./Currency"), exports);
|
9
|
+
tslib_1.__exportStar(require("./template"), exports);
|
10
|
+
tslib_1.__exportStar(require("./message"), exports);
|
11
|
+
tslib_1.__exportStar(require("./FileInfo"), exports);
|
12
|
+
tslib_1.__exportStar(require("./partner"), exports);
|
13
|
+
tslib_1.__exportStar(require("./BackgroundTask"), exports);
|
14
|
+
tslib_1.__exportStar(require("./bulk-campaign"), exports);
|
15
|
+
tslib_1.__exportStar(require("./SystemSetting"), exports);
|
16
|
+
tslib_1.__exportStar(require("./Property"), exports);
|
17
|
+
tslib_1.__exportStar(require("./crm/Ticket"), exports);
|
18
|
+
tslib_1.__exportStar(require("./crm/Customer"), exports);
|
19
|
+
tslib_1.__exportStar(require("./crm/AgentGroup"), exports);
|
20
|
+
//# sourceMappingURL=index-react-native.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index-react-native.js","sourceRoot":"","sources":["../../../../../../packages/core/src/lib/model/index-react-native.ts"],"names":[],"mappings":";;;AAAA,wDAA6B;AAC7B,oDAAyB;AACzB,2DAAgC;AAChC,yDAA8B;AAC9B,qDAA0B;AAC1B,qDAA0B;AAC1B,oDAAyB;AACzB,qDAA0B;AAC1B,oDAAyB;AACzB,2DAAgC;AAChC,0DAA+B;AAC/B,0DAA+B;AAC/B,qDAA0B;AAC1B,uDAA4B;AAC5B,yDAA8B;AAC9B,2DAAgC"}
|