@messenger-box/core 0.0.1-alpha.156 → 0.0.1-alpha.174
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/lib/constants/constant.d.ts +1 -0
- package/lib/constants/index.d.ts +1 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +44 -0
- package/lib/index.js.map +1 -1
- package/lib/interfaces/generated-models.d.ts +123 -29
- package/package.json +2 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const MESSAGE_SLOT_FILL_NAME = "message-slot-fill-name";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './constant';
|
package/lib/index.d.ts
CHANGED
package/lib/index.js
CHANGED
|
@@ -87,6 +87,47 @@ module.exports =
|
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
89
89
|
|
|
90
|
+
/***/ "./src/constants/constant.ts":
|
|
91
|
+
/*!***********************************!*\
|
|
92
|
+
!*** ./src/constants/constant.ts ***!
|
|
93
|
+
\***********************************/
|
|
94
|
+
/*! no static exports found */
|
|
95
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
96
|
+
|
|
97
|
+
"use strict";
|
|
98
|
+
|
|
99
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
100
|
+
exports.MESSAGE_SLOT_FILL_NAME = void 0;
|
|
101
|
+
exports.MESSAGE_SLOT_FILL_NAME = 'message-slot-fill-name';
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
/***/ }),
|
|
105
|
+
|
|
106
|
+
/***/ "./src/constants/index.ts":
|
|
107
|
+
/*!********************************!*\
|
|
108
|
+
!*** ./src/constants/index.ts ***!
|
|
109
|
+
\********************************/
|
|
110
|
+
/*! no static exports found */
|
|
111
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
112
|
+
|
|
113
|
+
"use strict";
|
|
114
|
+
|
|
115
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
116
|
+
if (k2 === undefined) k2 = k;
|
|
117
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
118
|
+
}) : (function(o, m, k, k2) {
|
|
119
|
+
if (k2 === undefined) k2 = k;
|
|
120
|
+
o[k2] = m[k];
|
|
121
|
+
}));
|
|
122
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
123
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
124
|
+
};
|
|
125
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126
|
+
__exportStar(__webpack_require__(/*! ./constant */ "./src/constants/constant.ts"), exports);
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
/***/ }),
|
|
130
|
+
|
|
90
131
|
/***/ "./src/index.ts":
|
|
91
132
|
/*!**********************!*\
|
|
92
133
|
!*** ./src/index.ts ***!
|
|
@@ -108,6 +149,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
108
149
|
};
|
|
109
150
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
110
151
|
__exportStar(__webpack_require__(/*! ./interfaces */ "./src/interfaces/index.ts"), exports);
|
|
152
|
+
__exportStar(__webpack_require__(/*! ./constants */ "./src/constants/index.ts"), exports);
|
|
111
153
|
|
|
112
154
|
|
|
113
155
|
/***/ }),
|
|
@@ -304,6 +346,7 @@ var IInviteStatus;
|
|
|
304
346
|
var IMailTemplateId;
|
|
305
347
|
(function (IMailTemplateId) {
|
|
306
348
|
IMailTemplateId["MessageNotificationServiceId"] = "MessageNotificationServiceId";
|
|
349
|
+
IMailTemplateId["dummy"] = "dummy";
|
|
307
350
|
})(IMailTemplateId = exports.IMailTemplateId || (exports.IMailTemplateId = {}));
|
|
308
351
|
var IMessengerNotificationServiceCommands;
|
|
309
352
|
(function (IMessengerNotificationServiceCommands) {
|
|
@@ -319,6 +362,7 @@ var IMessengerUserStatus;
|
|
|
319
362
|
var IMoleculerCronServiceName;
|
|
320
363
|
(function (IMoleculerCronServiceName) {
|
|
321
364
|
IMoleculerCronServiceName["MessengerCronJob"] = "MessengerCronJob";
|
|
365
|
+
IMoleculerCronServiceName["dummy"] = "dummy";
|
|
322
366
|
})(IMoleculerCronServiceName = exports.IMoleculerCronServiceName || (exports.IMoleculerCronServiceName = {}));
|
|
323
367
|
/** All Moleculer Topic names are extended from this. */
|
|
324
368
|
var IMoleculerServiceName;
|