@messenger-box/cron-job-server-module 5.0.3-alpha.3 → 5.0.3-alpha.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/CHANGELOG.md +8 -0
- package/lib/index.js +10 -3
- package/lib/index.js.map +1 -1
- package/lib/interfaces/generated-models.d.ts +94 -56
- package/package.json +4 -4
- package/src/interfaces/generated-models.ts +102 -56
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [5.0.3-alpha.5](https://github.com/CDEBase/messenger-box/compare/v5.0.3-alpha.4...v5.0.3-alpha.5) (2024-03-27)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @messenger-box/cron-job-server-module
|
|
9
|
+
|
|
10
|
+
## [5.0.3-alpha.4](https://github.com/cdmbase/messenger-box/compare/v5.0.3-alpha.3...v5.0.3-alpha.4) (2024-03-23)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @messenger-box/cron-job-server-module
|
|
13
|
+
|
|
6
14
|
## [5.0.3-alpha.3](https://github.com/cdmbase/messenger-box/compare/v5.0.3-alpha.2...v5.0.3-alpha.3) (2024-03-22)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @messenger-box/cron-job-server-module
|
package/lib/index.js
CHANGED
|
@@ -59,6 +59,7 @@ const schema = [_messenger_notification_cron_moleculer_service_graphql__WEBPACK_
|
|
|
59
59
|
__webpack_require__.r(__webpack_exports__);
|
|
60
60
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
61
61
|
/* harmony export */ IApplicationRoles: () => (/* binding */ IApplicationRoles),
|
|
62
|
+
/* harmony export */ ICacheControlScope: () => (/* binding */ ICacheControlScope),
|
|
62
63
|
/* harmony export */ IClientTypes: () => (/* binding */ IClientTypes),
|
|
63
64
|
/* harmony export */ IConfigCollectionName: () => (/* binding */ IConfigCollectionName),
|
|
64
65
|
/* harmony export */ IConfigFragmentName: () => (/* binding */ IConfigFragmentName),
|
|
@@ -120,6 +121,11 @@ var IApplicationRoles;
|
|
|
120
121
|
/** User who is logged in */
|
|
121
122
|
IApplicationRoles["User"] = "USER";
|
|
122
123
|
})(IApplicationRoles || (IApplicationRoles = {}));
|
|
124
|
+
var ICacheControlScope;
|
|
125
|
+
(function (ICacheControlScope) {
|
|
126
|
+
ICacheControlScope["Public"] = "PUBLIC";
|
|
127
|
+
ICacheControlScope["Private"] = "PRIVATE";
|
|
128
|
+
})(ICacheControlScope || (ICacheControlScope = {}));
|
|
123
129
|
var IClientTypes;
|
|
124
130
|
(function (IClientTypes) {
|
|
125
131
|
IClientTypes["Business"] = "Business";
|
|
@@ -147,11 +153,11 @@ var IConfigFragmentName;
|
|
|
147
153
|
IConfigFragmentName["ApplicationPolicies"] = "applicationPolicies";
|
|
148
154
|
IConfigFragmentName["Roles"] = "roles";
|
|
149
155
|
IConfigFragmentName["ContributionRoles"] = "contributionRoles";
|
|
150
|
-
/**
|
|
156
|
+
/** Team Members Document with role value */
|
|
151
157
|
IConfigFragmentName["TeamMembers"] = "teamMembers";
|
|
152
|
-
/**
|
|
158
|
+
/** Organization Members Document with role value */
|
|
153
159
|
IConfigFragmentName["OrgMembers"] = "orgMembers";
|
|
154
|
-
/**
|
|
160
|
+
/** Billing */
|
|
155
161
|
IConfigFragmentName["BillingPlanPolicies"] = "billingPlanPolicies";
|
|
156
162
|
})(IConfigFragmentName || (IConfigFragmentName = {}));
|
|
157
163
|
var IConfigurationContributionNames;
|
|
@@ -429,6 +435,7 @@ var IVisibility;
|
|
|
429
435
|
__webpack_require__.r(__webpack_exports__);
|
|
430
436
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
431
437
|
/* harmony export */ IApplicationRoles: () => (/* reexport safe */ _generated_models__WEBPACK_IMPORTED_MODULE_0__.IApplicationRoles),
|
|
438
|
+
/* harmony export */ ICacheControlScope: () => (/* reexport safe */ _generated_models__WEBPACK_IMPORTED_MODULE_0__.ICacheControlScope),
|
|
432
439
|
/* harmony export */ IClientTypes: () => (/* reexport safe */ _generated_models__WEBPACK_IMPORTED_MODULE_0__.IClientTypes),
|
|
433
440
|
/* harmony export */ IConfigCollectionName: () => (/* reexport safe */ _generated_models__WEBPACK_IMPORTED_MODULE_0__.IConfigCollectionName),
|
|
434
441
|
/* harmony export */ IConfigFragmentName: () => (/* reexport safe */ _generated_models__WEBPACK_IMPORTED_MODULE_0__.IConfigFragmentName),
|