@messenger-box/core 0.0.1-alpha.44 → 0.0.1-alpha.455
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/constant.js +5 -0
- package/lib/constants/constant.js.map +1 -0
- package/lib/constants/index.d.ts +1 -0
- package/lib/constants/index.js +18 -0
- package/lib/constants/index.js.map +1 -0
- package/lib/index.d.ts +3 -0
- package/lib/index.js +9 -388
- package/lib/index.js.map +1 -1
- package/lib/interfaces/generated-models.d.ts +5486 -1889
- package/lib/interfaces/generated-models.js +1743 -0
- package/lib/interfaces/generated-models.js.map +1 -0
- package/lib/interfaces/index.js +18 -0
- package/lib/interfaces/index.js.map +1 -0
- package/lib/modules/inbox/enums/index.d.ts +20 -0
- package/lib/modules/inbox/enums/index.js +30 -0
- package/lib/modules/inbox/enums/index.js.map +1 -0
- package/lib/modules/inbox/index.d.ts +1 -0
- package/lib/modules/inbox/index.js +18 -0
- package/lib/modules/inbox/index.js.map +1 -0
- package/lib/server/constants/index.d.ts +1 -0
- package/lib/server/constants/index.js +18 -0
- package/lib/server/constants/index.js.map +1 -0
- package/lib/server/constants/types.d.ts +13 -0
- package/lib/server/constants/types.js +17 -0
- package/lib/server/constants/types.js.map +1 -0
- package/lib/server/index.d.ts +2 -0
- package/lib/server/index.js +19 -0
- package/lib/server/index.js.map +1 -0
- package/lib/server/interfaces/channel-params.d.ts +22 -0
- package/lib/server/interfaces/channel-params.js +3 -0
- package/lib/server/interfaces/channel-params.js.map +1 -0
- package/lib/server/interfaces/channel-service.d.ts +68 -0
- package/lib/server/interfaces/channel-service.js +3 -0
- package/lib/server/interfaces/channel-service.js.map +1 -0
- package/lib/server/interfaces/index.d.ts +3 -0
- package/lib/server/interfaces/index.js +20 -0
- package/lib/server/interfaces/index.js.map +1 -0
- package/lib/server/interfaces/post-service.d.ts +30 -0
- package/lib/server/interfaces/post-service.js +3 -0
- package/lib/server/interfaces/post-service.js.map +1 -0
- package/lib/utils/index.d.ts +1 -0
- package/lib/utils/index.js +18 -0
- package/lib/utils/index.js.map +1 -0
- package/lib/utils/objectid.d.ts +1 -0
- package/lib/utils/objectid.js +7 -0
- package/lib/utils/objectid.js.map +1 -0
- package/package.json +29 -26
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const MESSAGE_SLOT_FILL_NAME = "message-slot-fill-name";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constant.js","sourceRoot":"","sources":["../../src/constants/constant.ts"],"names":[],"mappings":";;;AAAa,QAAA,sBAAsB,GAAG,wBAAwB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './constant';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./constant"), exports);
|
|
18
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/constants/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6CAA2B"}
|
package/lib/index.d.ts
CHANGED
package/lib/index.js
CHANGED
|
@@ -1,104 +1,11 @@
|
|
|
1
|
-
module.exports =
|
|
2
|
-
/******/ (function(modules) { // webpackBootstrap
|
|
3
|
-
/******/ // The module cache
|
|
4
|
-
/******/ var installedModules = {};
|
|
5
|
-
/******/
|
|
6
|
-
/******/ // The require function
|
|
7
|
-
/******/ function __webpack_require__(moduleId) {
|
|
8
|
-
/******/
|
|
9
|
-
/******/ // Check if module is in cache
|
|
10
|
-
/******/ if(installedModules[moduleId]) {
|
|
11
|
-
/******/ return installedModules[moduleId].exports;
|
|
12
|
-
/******/ }
|
|
13
|
-
/******/ // Create a new module (and put it into the cache)
|
|
14
|
-
/******/ var module = installedModules[moduleId] = {
|
|
15
|
-
/******/ i: moduleId,
|
|
16
|
-
/******/ l: false,
|
|
17
|
-
/******/ exports: {}
|
|
18
|
-
/******/ };
|
|
19
|
-
/******/
|
|
20
|
-
/******/ // Execute the module function
|
|
21
|
-
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
|
22
|
-
/******/
|
|
23
|
-
/******/ // Flag the module as loaded
|
|
24
|
-
/******/ module.l = true;
|
|
25
|
-
/******/
|
|
26
|
-
/******/ // Return the exports of the module
|
|
27
|
-
/******/ return module.exports;
|
|
28
|
-
/******/ }
|
|
29
|
-
/******/
|
|
30
|
-
/******/
|
|
31
|
-
/******/ // expose the modules object (__webpack_modules__)
|
|
32
|
-
/******/ __webpack_require__.m = modules;
|
|
33
|
-
/******/
|
|
34
|
-
/******/ // expose the module cache
|
|
35
|
-
/******/ __webpack_require__.c = installedModules;
|
|
36
|
-
/******/
|
|
37
|
-
/******/ // define getter function for harmony exports
|
|
38
|
-
/******/ __webpack_require__.d = function(exports, name, getter) {
|
|
39
|
-
/******/ if(!__webpack_require__.o(exports, name)) {
|
|
40
|
-
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
|
41
|
-
/******/ }
|
|
42
|
-
/******/ };
|
|
43
|
-
/******/
|
|
44
|
-
/******/ // define __esModule on exports
|
|
45
|
-
/******/ __webpack_require__.r = function(exports) {
|
|
46
|
-
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
|
47
|
-
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
48
|
-
/******/ }
|
|
49
|
-
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
|
50
|
-
/******/ };
|
|
51
|
-
/******/
|
|
52
|
-
/******/ // create a fake namespace object
|
|
53
|
-
/******/ // mode & 1: value is a module id, require it
|
|
54
|
-
/******/ // mode & 2: merge all properties of value into the ns
|
|
55
|
-
/******/ // mode & 4: return value when already ns object
|
|
56
|
-
/******/ // mode & 8|1: behave like require
|
|
57
|
-
/******/ __webpack_require__.t = function(value, mode) {
|
|
58
|
-
/******/ if(mode & 1) value = __webpack_require__(value);
|
|
59
|
-
/******/ if(mode & 8) return value;
|
|
60
|
-
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
|
61
|
-
/******/ var ns = Object.create(null);
|
|
62
|
-
/******/ __webpack_require__.r(ns);
|
|
63
|
-
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
|
64
|
-
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
|
65
|
-
/******/ return ns;
|
|
66
|
-
/******/ };
|
|
67
|
-
/******/
|
|
68
|
-
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|
69
|
-
/******/ __webpack_require__.n = function(module) {
|
|
70
|
-
/******/ var getter = module && module.__esModule ?
|
|
71
|
-
/******/ function getDefault() { return module['default']; } :
|
|
72
|
-
/******/ function getModuleExports() { return module; };
|
|
73
|
-
/******/ __webpack_require__.d(getter, 'a', getter);
|
|
74
|
-
/******/ return getter;
|
|
75
|
-
/******/ };
|
|
76
|
-
/******/
|
|
77
|
-
/******/ // Object.prototype.hasOwnProperty.call
|
|
78
|
-
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
|
79
|
-
/******/
|
|
80
|
-
/******/ // __webpack_public_path__
|
|
81
|
-
/******/ __webpack_require__.p = "";
|
|
82
|
-
/******/
|
|
83
|
-
/******/
|
|
84
|
-
/******/ // Load entry module and return exports
|
|
85
|
-
/******/ return __webpack_require__(__webpack_require__.s = "./src/index.ts");
|
|
86
|
-
/******/ })
|
|
87
|
-
/************************************************************************/
|
|
88
|
-
/******/ ({
|
|
89
|
-
|
|
90
|
-
/***/ "./src/index.ts":
|
|
91
|
-
/*!**********************!*\
|
|
92
|
-
!*** ./src/index.ts ***!
|
|
93
|
-
\**********************/
|
|
94
|
-
/*! no static exports found */
|
|
95
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
96
|
-
|
|
97
1
|
"use strict";
|
|
98
|
-
|
|
99
2
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
100
3
|
if (k2 === undefined) k2 = k;
|
|
101
|
-
Object.
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
102
9
|
}) : (function(o, m, k, k2) {
|
|
103
10
|
if (k2 === undefined) k2 = k;
|
|
104
11
|
o[k2] = m[k];
|
|
@@ -107,294 +14,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
107
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
108
15
|
};
|
|
109
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
110
|
-
__exportStar(
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
/***/ "./src/interfaces/generated-models.ts":
|
|
116
|
-
/*!********************************************!*\
|
|
117
|
-
!*** ./src/interfaces/generated-models.ts ***!
|
|
118
|
-
\********************************************/
|
|
119
|
-
/*! no static exports found */
|
|
120
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
121
|
-
|
|
122
|
-
"use strict";
|
|
123
|
-
|
|
124
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
125
|
-
exports.IVisibility = exports.IUserOrderBy = exports.ISortEnum = exports.ISettingValueType = exports.IRoomType = exports.IRole = exports.IProjectType = exports.IPreDefinedRole = exports.IPortalLanguage = exports.IPermissionType = exports.IPermissionResource = exports.IPermissionAction = exports.IOrgUserRole = exports.IOrganizationContextPubSubEvents = exports.IOrgainizationInvitationRole = exports.IMoleculerServiceName = exports.IMessengerUserStatus = exports.IInviteStatus = exports.IConfigurationTarget = exports.IConfigurationScope = exports.IConfigFragmentName = exports.IConfigCollectionName = exports.IClientTypes = exports.IChannelSort = exports.IChannelPrivacy = exports.IApplicationRoles = void 0;
|
|
126
|
-
var IApplicationRoles;
|
|
127
|
-
(function (IApplicationRoles) {
|
|
128
|
-
/** Admin of an Organization */
|
|
129
|
-
IApplicationRoles["ADMIN"] = "ADMIN";
|
|
130
|
-
/** Project Contributors */
|
|
131
|
-
IApplicationRoles["CONTRIBUTORS"] = "CONTRIBUTORS";
|
|
132
|
-
/** Guest */
|
|
133
|
-
IApplicationRoles["GUEST"] = "GUEST";
|
|
134
|
-
IApplicationRoles["MEMBER"] = "MEMBER";
|
|
135
|
-
/** organization member */
|
|
136
|
-
IApplicationRoles["ORGANIZATION_MANAGER"] = "ORGANIZATION_MANAGER";
|
|
137
|
-
/** Owner of an Organization */
|
|
138
|
-
IApplicationRoles["OWNER"] = "OWNER";
|
|
139
|
-
/** Project Admin */
|
|
140
|
-
IApplicationRoles["PROJECT_ADMIN"] = "PROJECT_ADMIN";
|
|
141
|
-
/** Project Viewer */
|
|
142
|
-
IApplicationRoles["PROJECT_VIEWER"] = "PROJECT_VIEWER";
|
|
143
|
-
IApplicationRoles["TEAM_MAINTAINER"] = "TEAM_MAINTAINER";
|
|
144
|
-
IApplicationRoles["TEAM_MEMBER"] = "TEAM_MEMBER";
|
|
145
|
-
/** User who is logged in */
|
|
146
|
-
IApplicationRoles["USER"] = "USER";
|
|
147
|
-
})(IApplicationRoles = exports.IApplicationRoles || (exports.IApplicationRoles = {}));
|
|
148
|
-
var IChannelPrivacy;
|
|
149
|
-
(function (IChannelPrivacy) {
|
|
150
|
-
IChannelPrivacy["PRIVATE"] = "PRIVATE";
|
|
151
|
-
IChannelPrivacy["PUBLIC"] = "PUBLIC";
|
|
152
|
-
IChannelPrivacy["ALL"] = "ALL";
|
|
153
|
-
})(IChannelPrivacy = exports.IChannelPrivacy || (exports.IChannelPrivacy = {}));
|
|
154
|
-
var IChannelSort;
|
|
155
|
-
(function (IChannelSort) {
|
|
156
|
-
IChannelSort["NAME"] = "NAME";
|
|
157
|
-
IChannelSort["NUMBER_OF_MESSAGES"] = "NUMBER_OF_MESSAGES";
|
|
158
|
-
})(IChannelSort = exports.IChannelSort || (exports.IChannelSort = {}));
|
|
159
|
-
var IClientTypes;
|
|
160
|
-
(function (IClientTypes) {
|
|
161
|
-
IClientTypes["Business"] = "Business";
|
|
162
|
-
IClientTypes["Individuals"] = "Individuals";
|
|
163
|
-
})(IClientTypes = exports.IClientTypes || (exports.IClientTypes = {}));
|
|
164
|
-
var IConfigCollectionName;
|
|
165
|
-
(function (IConfigCollectionName) {
|
|
166
|
-
IConfigCollectionName["application"] = "application";
|
|
167
|
-
IConfigCollectionName["accounts"] = "accounts";
|
|
168
|
-
IConfigCollectionName["organizations"] = "organizations";
|
|
169
|
-
IConfigCollectionName["machines"] = "machines";
|
|
170
|
-
IConfigCollectionName["workspaces"] = "workspaces";
|
|
171
|
-
IConfigCollectionName["teams"] = "teams";
|
|
172
|
-
IConfigCollectionName["projects"] = "projects";
|
|
173
|
-
IConfigCollectionName["clients"] = "clients";
|
|
174
|
-
})(IConfigCollectionName = exports.IConfigCollectionName || (exports.IConfigCollectionName = {}));
|
|
175
|
-
var IConfigFragmentName;
|
|
176
|
-
(function (IConfigFragmentName) {
|
|
177
|
-
IConfigFragmentName["resources"] = "resources";
|
|
178
|
-
IConfigFragmentName["settings"] = "settings";
|
|
179
|
-
IConfigFragmentName["policies"] = "policies";
|
|
180
|
-
IConfigFragmentName["applicationPolicies"] = "applicationPolicies";
|
|
181
|
-
IConfigFragmentName["roles"] = "roles";
|
|
182
|
-
IConfigFragmentName["contributionRoles"] = "contributionRoles";
|
|
183
|
-
/** Team Members Document with role value */
|
|
184
|
-
IConfigFragmentName["teamMembers"] = "teamMembers";
|
|
185
|
-
/** Organization Members Document with role value */
|
|
186
|
-
IConfigFragmentName["orgMembers"] = "orgMembers";
|
|
187
|
-
/** Billing Plans */
|
|
188
|
-
IConfigFragmentName["billingPlanPolicies"] = "billingPlanPolicies";
|
|
189
|
-
})(IConfigFragmentName = exports.IConfigFragmentName || (exports.IConfigFragmentName = {}));
|
|
190
|
-
/**
|
|
191
|
-
* A configuration settings can have one of the following possible scopes.
|
|
192
|
-
* Configuration scopes determine when a settings is available to the user through the Settings editor and
|
|
193
|
-
* whether the setting is applicable. If no scope is declared, the default is `window`.
|
|
194
|
-
*/
|
|
195
|
-
var IConfigurationScope;
|
|
196
|
-
(function (IConfigurationScope) {
|
|
197
|
-
/** Application specific configuration, which can be configured only in local user settings. */
|
|
198
|
-
IConfigurationScope["APPLICATION"] = "APPLICATION";
|
|
199
|
-
/** Machine specific configuration, which can be configured only in local and remote user settings. */
|
|
200
|
-
IConfigurationScope["MACHINE"] = "MACHINE";
|
|
201
|
-
/** Window specific configuration, which can be configured in the user or organization settings. */
|
|
202
|
-
IConfigurationScope["WINDOW"] = "WINDOW";
|
|
203
|
-
/** Resource specific configuration, which can be configured in the user, organization or workspace settings. */
|
|
204
|
-
IConfigurationScope["RESOURCE"] = "RESOURCE";
|
|
205
|
-
})(IConfigurationScope = exports.IConfigurationScope || (exports.IConfigurationScope = {}));
|
|
206
|
-
var IConfigurationTarget;
|
|
207
|
-
(function (IConfigurationTarget) {
|
|
208
|
-
/** Targets the user configuration file for writing. */
|
|
209
|
-
IConfigurationTarget["USER"] = "USER";
|
|
210
|
-
IConfigurationTarget["APPLICATION"] = "APPLICATION";
|
|
211
|
-
IConfigurationTarget["MACHINE"] = "MACHINE";
|
|
212
|
-
/** Targets the organization configuration file for writing. This only works if a organization is opened. */
|
|
213
|
-
IConfigurationTarget["ORGANIZATION"] = "ORGANIZATION";
|
|
214
|
-
/** Targets the resource configuration file for writing. This only works if a organization is opened. */
|
|
215
|
-
IConfigurationTarget["ORGANIZATION_RESOURCE"] = "ORGANIZATION_RESOURCE";
|
|
216
|
-
IConfigurationTarget["DEFAULT"] = "DEFAULT";
|
|
217
|
-
IConfigurationTarget["MEMORY"] = "MEMORY";
|
|
218
|
-
})(IConfigurationTarget = exports.IConfigurationTarget || (exports.IConfigurationTarget = {}));
|
|
219
|
-
var IInviteStatus;
|
|
220
|
-
(function (IInviteStatus) {
|
|
221
|
-
IInviteStatus["PENDING"] = "PENDING";
|
|
222
|
-
IInviteStatus["ACCEPTED"] = "ACCEPTED";
|
|
223
|
-
IInviteStatus["DECLINED"] = "DECLINED";
|
|
224
|
-
})(IInviteStatus = exports.IInviteStatus || (exports.IInviteStatus = {}));
|
|
225
|
-
var IMessengerUserStatus;
|
|
226
|
-
(function (IMessengerUserStatus) {
|
|
227
|
-
IMessengerUserStatus["ONLINE"] = "ONLINE";
|
|
228
|
-
IMessengerUserStatus["AWAY"] = "AWAY";
|
|
229
|
-
IMessengerUserStatus["BUSY"] = "BUSY";
|
|
230
|
-
IMessengerUserStatus["INVISIBLE"] = "INVISIBLE";
|
|
231
|
-
})(IMessengerUserStatus = exports.IMessengerUserStatus || (exports.IMessengerUserStatus = {}));
|
|
232
|
-
/** All Moleculer Topic names are extended from this. */
|
|
233
|
-
var IMoleculerServiceName;
|
|
234
|
-
(function (IMoleculerServiceName) {
|
|
235
|
-
IMoleculerServiceName["dummy"] = "dummy";
|
|
236
|
-
})(IMoleculerServiceName = exports.IMoleculerServiceName || (exports.IMoleculerServiceName = {}));
|
|
237
|
-
/**
|
|
238
|
-
* OrganizationInvitationRole: The possible organization invitation roles.
|
|
239
|
-
*
|
|
240
|
-
* @property
|
|
241
|
-
* ADMIN: The user is invited to be an admin of the organization
|
|
242
|
-
* BILLING_MANAGER: The user is invited to be a billing manager of the organization.
|
|
243
|
-
* DIRECT_MEMBER: The user is invited to be a direct member of the organization.
|
|
244
|
-
* REINSTATE: The user's previous role will be reinstated.
|
|
245
|
-
*/
|
|
246
|
-
var IOrgainizationInvitationRole;
|
|
247
|
-
(function (IOrgainizationInvitationRole) {
|
|
248
|
-
IOrgainizationInvitationRole["ADMIN"] = "ADMIN";
|
|
249
|
-
IOrgainizationInvitationRole["REINSTATE"] = "REINSTATE";
|
|
250
|
-
IOrgainizationInvitationRole["DIRECT_MEMBER"] = "DIRECT_MEMBER";
|
|
251
|
-
IOrgainizationInvitationRole["BILLING_MANAGER"] = "BILLING_MANAGER";
|
|
252
|
-
})(IOrgainizationInvitationRole = exports.IOrgainizationInvitationRole || (exports.IOrgainizationInvitationRole = {}));
|
|
253
|
-
/** Subscription event for context */
|
|
254
|
-
var IOrganizationContextPubSubEvents;
|
|
255
|
-
(function (IOrganizationContextPubSubEvents) {
|
|
256
|
-
IOrganizationContextPubSubEvents["OrganizationContextUpdated"] = "OrganizationContextUpdated";
|
|
257
|
-
IOrganizationContextPubSubEvents["OrganizationPolicyUpdated"] = "OrganizationPolicyUpdated";
|
|
258
|
-
IOrganizationContextPubSubEvents["OrganizationConfigurationUpdated"] = "OrganizationConfigurationUpdated";
|
|
259
|
-
IOrganizationContextPubSubEvents["OrganizationPermissionUpdated"] = "OrganizationPermissionUpdated";
|
|
260
|
-
})(IOrganizationContextPubSubEvents = exports.IOrganizationContextPubSubEvents || (exports.IOrganizationContextPubSubEvents = {}));
|
|
261
|
-
var IOrgUserRole;
|
|
262
|
-
(function (IOrgUserRole) {
|
|
263
|
-
IOrgUserRole["BILLING_LEADER"] = "BILLING_LEADER";
|
|
264
|
-
IOrgUserRole["MEMBER"] = "MEMBER";
|
|
265
|
-
IOrgUserRole["ADMIN"] = "ADMIN";
|
|
266
|
-
IOrgUserRole["OWNER"] = "OWNER";
|
|
267
|
-
})(IOrgUserRole = exports.IOrgUserRole || (exports.IOrgUserRole = {}));
|
|
268
|
-
var IPermissionAction;
|
|
269
|
-
(function (IPermissionAction) {
|
|
270
|
-
IPermissionAction["Create"] = "Create";
|
|
271
|
-
IPermissionAction["Delete"] = "Delete";
|
|
272
|
-
IPermissionAction["Edit"] = "Edit";
|
|
273
|
-
IPermissionAction["Invite"] = "Invite";
|
|
274
|
-
IPermissionAction["Manage"] = "Manage";
|
|
275
|
-
IPermissionAction["View"] = "View";
|
|
276
|
-
})(IPermissionAction = exports.IPermissionAction || (exports.IPermissionAction = {}));
|
|
277
|
-
var IPermissionResource;
|
|
278
|
-
(function (IPermissionResource) {
|
|
279
|
-
IPermissionResource["Members"] = "Members";
|
|
280
|
-
IPermissionResource["Organization"] = "Organization";
|
|
281
|
-
IPermissionResource["Permissions"] = "Permissions";
|
|
282
|
-
IPermissionResource["Roles"] = "Roles";
|
|
283
|
-
IPermissionResource["Settings"] = "Settings";
|
|
284
|
-
IPermissionResource["Teams"] = "Teams";
|
|
285
|
-
})(IPermissionResource = exports.IPermissionResource || (exports.IPermissionResource = {}));
|
|
286
|
-
var IPermissionType;
|
|
287
|
-
(function (IPermissionType) {
|
|
288
|
-
IPermissionType["Allow"] = "Allow";
|
|
289
|
-
IPermissionType["Deny"] = "Deny";
|
|
290
|
-
IPermissionType["NotSet"] = "NotSet";
|
|
291
|
-
})(IPermissionType = exports.IPermissionType || (exports.IPermissionType = {}));
|
|
292
|
-
var IPortalLanguage;
|
|
293
|
-
(function (IPortalLanguage) {
|
|
294
|
-
IPortalLanguage["English"] = "English";
|
|
295
|
-
IPortalLanguage["Hindi"] = "Hindi";
|
|
296
|
-
IPortalLanguage["Gujarati"] = "Gujarati";
|
|
297
|
-
IPortalLanguage["Spanish"] = "Spanish";
|
|
298
|
-
IPortalLanguage["Russian"] = "Russian";
|
|
299
|
-
})(IPortalLanguage = exports.IPortalLanguage || (exports.IPortalLanguage = {}));
|
|
300
|
-
var IPreDefinedRole;
|
|
301
|
-
(function (IPreDefinedRole) {
|
|
302
|
-
IPreDefinedRole["OWNER"] = "OWNER";
|
|
303
|
-
IPreDefinedRole["ADMIN"] = "ADMIN";
|
|
304
|
-
IPreDefinedRole["MAINTAINER"] = "MAINTAINER";
|
|
305
|
-
IPreDefinedRole["MEMBER"] = "MEMBER";
|
|
306
|
-
IPreDefinedRole["PROJECT_ADMIN"] = "PROJECT_ADMIN";
|
|
307
|
-
IPreDefinedRole["BILLING_LEADER"] = "BILLING_LEADER";
|
|
308
|
-
IPreDefinedRole["DIRECT_MEMBER"] = "DIRECT_MEMBER";
|
|
309
|
-
IPreDefinedRole["VIEWER"] = "VIEWER";
|
|
310
|
-
IPreDefinedRole["GUEST"] = "GUEST";
|
|
311
|
-
IPreDefinedRole["CONTRIBUTORS"] = "CONTRIBUTORS";
|
|
312
|
-
})(IPreDefinedRole = exports.IPreDefinedRole || (exports.IPreDefinedRole = {}));
|
|
313
|
-
var IProjectType;
|
|
314
|
-
(function (IProjectType) {
|
|
315
|
-
IProjectType["internal"] = "internal";
|
|
316
|
-
IProjectType["others"] = "others";
|
|
317
|
-
IProjectType["asana"] = "asana";
|
|
318
|
-
})(IProjectType = exports.IProjectType || (exports.IProjectType = {}));
|
|
319
|
-
var IRole;
|
|
320
|
-
(function (IRole) {
|
|
321
|
-
IRole["ADMIN"] = "ADMIN";
|
|
322
|
-
IRole["REVIEWER"] = "REVIEWER";
|
|
323
|
-
IRole["USER"] = "USER";
|
|
324
|
-
IRole["UNKNOWN"] = "UNKNOWN";
|
|
325
|
-
})(IRole = exports.IRole || (exports.IRole = {}));
|
|
326
|
-
var IRoomType;
|
|
327
|
-
(function (IRoomType) {
|
|
328
|
-
IRoomType["CHANNEL"] = "CHANNEL";
|
|
329
|
-
IRoomType["DIRECT"] = "DIRECT";
|
|
330
|
-
IRoomType["GROUP"] = "GROUP";
|
|
331
|
-
IRoomType["PRIVATE"] = "PRIVATE";
|
|
332
|
-
IRoomType["VISITOR"] = "VISITOR";
|
|
333
|
-
})(IRoomType = exports.IRoomType || (exports.IRoomType = {}));
|
|
334
|
-
var ISettingValueType;
|
|
335
|
-
(function (ISettingValueType) {
|
|
336
|
-
ISettingValueType["Null"] = "Null";
|
|
337
|
-
ISettingValueType["Enum"] = "Enum";
|
|
338
|
-
ISettingValueType["String"] = "String";
|
|
339
|
-
ISettingValueType["Integer"] = "Integer";
|
|
340
|
-
ISettingValueType["Number"] = "Number";
|
|
341
|
-
ISettingValueType["Boolean"] = "Boolean";
|
|
342
|
-
ISettingValueType["Exclude"] = "Exclude";
|
|
343
|
-
ISettingValueType["Complex"] = "Complex";
|
|
344
|
-
ISettingValueType["NullableInteger"] = "NullableInteger";
|
|
345
|
-
ISettingValueType["NullableNumber"] = "NullableNumber";
|
|
346
|
-
})(ISettingValueType = exports.ISettingValueType || (exports.ISettingValueType = {}));
|
|
347
|
-
var ISortEnum;
|
|
348
|
-
(function (ISortEnum) {
|
|
349
|
-
ISortEnum["ASC"] = "ASC";
|
|
350
|
-
ISortEnum["DESC"] = "DESC";
|
|
351
|
-
})(ISortEnum = exports.ISortEnum || (exports.ISortEnum = {}));
|
|
352
|
-
var IUserOrderBy;
|
|
353
|
-
(function (IUserOrderBy) {
|
|
354
|
-
IUserOrderBy["auth0UserId_ASC"] = "auth0UserId_ASC";
|
|
355
|
-
IUserOrderBy["auth0UserId_DESC"] = "auth0UserId_DESC";
|
|
356
|
-
IUserOrderBy["createdAt_ASC"] = "createdAt_ASC";
|
|
357
|
-
IUserOrderBy["createdAt_DESC"] = "createdAt_DESC";
|
|
358
|
-
IUserOrderBy["emailSubscription_ASC"] = "emailSubscription_ASC";
|
|
359
|
-
IUserOrderBy["emailSubscription_DESC"] = "emailSubscription_DESC";
|
|
360
|
-
IUserOrderBy["id_ASC"] = "id_ASC";
|
|
361
|
-
IUserOrderBy["id_DESC"] = "id_DESC";
|
|
362
|
-
IUserOrderBy["updatedAt_ASC"] = "updatedAt_ASC";
|
|
363
|
-
IUserOrderBy["updatedAt_DESC"] = "updatedAt_DESC";
|
|
364
|
-
})(IUserOrderBy = exports.IUserOrderBy || (exports.IUserOrderBy = {}));
|
|
365
|
-
var IVisibility;
|
|
366
|
-
(function (IVisibility) {
|
|
367
|
-
IVisibility["private"] = "private";
|
|
368
|
-
IVisibility["public"] = "public";
|
|
369
|
-
})(IVisibility = exports.IVisibility || (exports.IVisibility = {}));
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
/***/ }),
|
|
373
|
-
|
|
374
|
-
/***/ "./src/interfaces/index.ts":
|
|
375
|
-
/*!*********************************!*\
|
|
376
|
-
!*** ./src/interfaces/index.ts ***!
|
|
377
|
-
\*********************************/
|
|
378
|
-
/*! no static exports found */
|
|
379
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
380
|
-
|
|
381
|
-
"use strict";
|
|
382
|
-
|
|
383
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
384
|
-
if (k2 === undefined) k2 = k;
|
|
385
|
-
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
386
|
-
}) : (function(o, m, k, k2) {
|
|
387
|
-
if (k2 === undefined) k2 = k;
|
|
388
|
-
o[k2] = m[k];
|
|
389
|
-
}));
|
|
390
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
391
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
392
|
-
};
|
|
393
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
394
|
-
__exportStar(__webpack_require__(/*! ./generated-models */ "./src/interfaces/generated-models.ts"), exports);
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
/***/ })
|
|
398
|
-
|
|
399
|
-
/******/ });
|
|
17
|
+
__exportStar(require("./interfaces"), exports);
|
|
18
|
+
__exportStar(require("./constants"), exports);
|
|
19
|
+
__exportStar(require("./utils"), exports);
|
|
20
|
+
__exportStar(require("./modules/inbox"), exports);
|
|
400
21
|
//# sourceMappingURL=index.js.map
|