@tudopz/model 2.27.26 → 2.27.28
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 +1 -1
- package/src/index.d.ts +0 -1
- package/src/index.js +0 -2
- package/src/index.js.map +1 -1
- package/src/model/gmail-message-email-index.d.ts +14 -0
- package/src/model/gmail-message-email-index.js +43 -0
- package/src/model/gmail-message-email-index.js.map +1 -0
- package/src/model/gmail-message.js +8 -8
- package/src/model/gmail-message.js.map +1 -1
- package/src/model/google-user.d.ts +1 -0
- package/src/model/google-user.js +4 -0
- package/src/model/google-user.js.map +1 -1
- package/src/models.d.ts +1 -0
- package/src/models.js +1 -0
- package/src/models.js.map +1 -1
- package/src/enums.d.ts +0 -21
- package/src/enums.js +0 -25
- package/src/enums.js.map +0 -1
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
package/src/index.js
CHANGED
package/src/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../libs/model/src/index.ts"],"names":[],"mappings":";;;AAAA,mBAAmB;AACnB,sDAA4B;AAC5B,gBAAgB;AAChB,mDAAyB
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../libs/model/src/index.ts"],"names":[],"mappings":";;;AAAA,mBAAmB;AACnB,sDAA4B;AAC5B,gBAAgB;AAChB,mDAAyB"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { GmailMessage } from './gmail-message';
|
|
2
|
+
export declare enum GMAIL_MESSAGE_EMAIL_TYPE {
|
|
3
|
+
FROM = "FROM",
|
|
4
|
+
TO = "TO",
|
|
5
|
+
CC = "CC"
|
|
6
|
+
}
|
|
7
|
+
export declare class GmailMessageEmailIndex {
|
|
8
|
+
id: number;
|
|
9
|
+
email: string;
|
|
10
|
+
timestamp: string;
|
|
11
|
+
type: GMAIL_MESSAGE_EMAIL_TYPE;
|
|
12
|
+
gmailMessageId: number;
|
|
13
|
+
gmailMessage: GmailMessage;
|
|
14
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GmailMessageEmailIndex = exports.GMAIL_MESSAGE_EMAIL_TYPE = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const typeorm_1 = require("typeorm");
|
|
6
|
+
const gmail_message_1 = require("./gmail-message");
|
|
7
|
+
var GMAIL_MESSAGE_EMAIL_TYPE;
|
|
8
|
+
(function (GMAIL_MESSAGE_EMAIL_TYPE) {
|
|
9
|
+
GMAIL_MESSAGE_EMAIL_TYPE["FROM"] = "FROM";
|
|
10
|
+
GMAIL_MESSAGE_EMAIL_TYPE["TO"] = "TO";
|
|
11
|
+
GMAIL_MESSAGE_EMAIL_TYPE["CC"] = "CC";
|
|
12
|
+
})(GMAIL_MESSAGE_EMAIL_TYPE = exports.GMAIL_MESSAGE_EMAIL_TYPE || (exports.GMAIL_MESSAGE_EMAIL_TYPE = {}));
|
|
13
|
+
let GmailMessageEmailIndex = class GmailMessageEmailIndex {
|
|
14
|
+
};
|
|
15
|
+
tslib_1.__decorate([
|
|
16
|
+
(0, typeorm_1.PrimaryGeneratedColumn)(),
|
|
17
|
+
tslib_1.__metadata("design:type", Number)
|
|
18
|
+
], GmailMessageEmailIndex.prototype, "id", void 0);
|
|
19
|
+
tslib_1.__decorate([
|
|
20
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 500 }),
|
|
21
|
+
tslib_1.__metadata("design:type", String)
|
|
22
|
+
], GmailMessageEmailIndex.prototype, "email", void 0);
|
|
23
|
+
tslib_1.__decorate([
|
|
24
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 64 }),
|
|
25
|
+
tslib_1.__metadata("design:type", String)
|
|
26
|
+
], GmailMessageEmailIndex.prototype, "timestamp", void 0);
|
|
27
|
+
tslib_1.__decorate([
|
|
28
|
+
(0, typeorm_1.Column)({ type: 'enum', enum: ['FROM', 'TO', 'CC'] }),
|
|
29
|
+
tslib_1.__metadata("design:type", String)
|
|
30
|
+
], GmailMessageEmailIndex.prototype, "type", void 0);
|
|
31
|
+
tslib_1.__decorate([
|
|
32
|
+
(0, typeorm_1.Column)({ type: 'int' }),
|
|
33
|
+
tslib_1.__metadata("design:type", Number)
|
|
34
|
+
], GmailMessageEmailIndex.prototype, "gmailMessageId", void 0);
|
|
35
|
+
tslib_1.__decorate([
|
|
36
|
+
(0, typeorm_1.ManyToOne)(() => gmail_message_1.GmailMessage),
|
|
37
|
+
tslib_1.__metadata("design:type", gmail_message_1.GmailMessage)
|
|
38
|
+
], GmailMessageEmailIndex.prototype, "gmailMessage", void 0);
|
|
39
|
+
GmailMessageEmailIndex = tslib_1.__decorate([
|
|
40
|
+
(0, typeorm_1.Entity)({ name: 'gmail_message_email_index' })
|
|
41
|
+
], GmailMessageEmailIndex);
|
|
42
|
+
exports.GmailMessageEmailIndex = GmailMessageEmailIndex;
|
|
43
|
+
//# sourceMappingURL=gmail-message-email-index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"gmail-message-email-index.js","sourceRoot":"","sources":["../../../../../libs/model/src/model/gmail-message-email-index.ts"],"names":[],"mappings":";;;;AAAA,qCAA4E;AAE5E,mDAA+C;AAE/C,IAAY,wBAIX;AAJD,WAAY,wBAAwB;IAClC,yCAAa,CAAA;IACb,qCAAS,CAAA;IACT,qCAAS,CAAA;AACX,CAAC,EAJW,wBAAwB,GAAxB,gCAAwB,KAAxB,gCAAwB,QAInC;AAGM,IAAM,sBAAsB,GAA5B,MAAM,sBAAsB;CAkBlC,CAAA;AAjBC;IAAC,IAAA,gCAAsB,GAAE;;kDACd;AAEX;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC;;qDAC3B;AAEd;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,CAAC;;yDACtB;AAElB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,IAAI,EAAE,IAAI,CAAC,EAAE,CAAC;;oDACtB;AAE/B;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC;;8DACD;AAEvB;IAAC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,4BAAY,CAAC;sCAChB,4BAAY;4DAAC;AAjBhB,sBAAsB;IADlC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,2BAA2B,EAAE,CAAC;GACjC,sBAAsB,CAkBlC;AAlBY,wDAAsB"}
|
|
@@ -19,35 +19,35 @@ tslib_1.__decorate([
|
|
|
19
19
|
tslib_1.__metadata("design:type", String)
|
|
20
20
|
], GmailMessage.prototype, "threadId", void 0);
|
|
21
21
|
tslib_1.__decorate([
|
|
22
|
-
(0, typeorm_1.Column)({ type: 'varchar', length: 64 }),
|
|
22
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 64, nullable: true }),
|
|
23
23
|
tslib_1.__metadata("design:type", String)
|
|
24
24
|
], GmailMessage.prototype, "historyId", void 0);
|
|
25
25
|
tslib_1.__decorate([
|
|
26
|
-
(0, typeorm_1.Column)({ type: 'varchar', length: 64 }),
|
|
26
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 64, nullable: true }),
|
|
27
27
|
tslib_1.__metadata("design:type", String)
|
|
28
28
|
], GmailMessage.prototype, "timestamp", void 0);
|
|
29
29
|
tslib_1.__decorate([
|
|
30
|
-
(0, typeorm_1.Column)({ type: 'varchar', length: 500 }),
|
|
30
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 500, nullable: true }),
|
|
31
31
|
tslib_1.__metadata("design:type", String)
|
|
32
32
|
], GmailMessage.prototype, "snippet", void 0);
|
|
33
33
|
tslib_1.__decorate([
|
|
34
|
-
(0, typeorm_1.Column)({ type: 'varchar', length: 500 }),
|
|
34
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 500, nullable: true }),
|
|
35
35
|
tslib_1.__metadata("design:type", String)
|
|
36
36
|
], GmailMessage.prototype, "subject", void 0);
|
|
37
37
|
tslib_1.__decorate([
|
|
38
|
-
(0, typeorm_1.Column)({ type: 'varchar', length: 500 }),
|
|
38
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 500, nullable: true }),
|
|
39
39
|
tslib_1.__metadata("design:type", String)
|
|
40
40
|
], GmailMessage.prototype, "from", void 0);
|
|
41
41
|
tslib_1.__decorate([
|
|
42
|
-
(0, typeorm_1.Column)({ type: '
|
|
42
|
+
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
43
43
|
tslib_1.__metadata("design:type", String)
|
|
44
44
|
], GmailMessage.prototype, "to", void 0);
|
|
45
45
|
tslib_1.__decorate([
|
|
46
|
-
(0, typeorm_1.Column)({ type: '
|
|
46
|
+
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
47
47
|
tslib_1.__metadata("design:type", String)
|
|
48
48
|
], GmailMessage.prototype, "cc", void 0);
|
|
49
49
|
tslib_1.__decorate([
|
|
50
|
-
(0, typeorm_1.Column)({ type: 'varchar', length: 100 }),
|
|
50
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 100, nullable: true }),
|
|
51
51
|
tslib_1.__metadata("design:type", String)
|
|
52
52
|
], GmailMessage.prototype, "date", void 0);
|
|
53
53
|
tslib_1.__decorate([
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gmail-message.js","sourceRoot":"","sources":["../../../../../libs/model/src/model/gmail-message.ts"],"names":[],"mappings":";;;;AAAA,qCAA4E;AAE5E,+CAA2C;AAGpC,IAAM,YAAY,GAAlB,MAAM,YAAY;CA0CxB,CAAA;AAzCC;IAAC,IAAA,gCAAsB,GAAE;;wCACd;AAEX;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,CAAC;;+CACtB;AAElB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,CAAC;;8CACvB;AAEjB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,CAAC;;+
|
|
1
|
+
{"version":3,"file":"gmail-message.js","sourceRoot":"","sources":["../../../../../libs/model/src/model/gmail-message.ts"],"names":[],"mappings":";;;;AAAA,qCAA4E;AAE5E,+CAA2C;AAGpC,IAAM,YAAY,GAAlB,MAAM,YAAY;CA0CxB,CAAA;AAzCC;IAAC,IAAA,gCAAsB,GAAE;;wCACd;AAEX;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,CAAC;;+CACtB;AAElB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,CAAC;;8CACvB;AAEjB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+CACtC;AAElB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+CACtC;AAElB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6CACzC;AAEhB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6CACzC;AAEhB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0CAC5C;AAEb;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;wCAC9B;AAEX;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;wCAC9B;AAEX;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0CAC5C;AAEb;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;6CAC3B;AAEjB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC;;kDACH;AAErB;IAAC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,wBAAU,CAAC;sCAChB,wBAAU;gDAAC;AAzCZ,YAAY;IADxB,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,gBAAgB,EAAE,CAAC;GACtB,YAAY,CA0CxB;AA1CY,oCAAY"}
|
package/src/model/google-user.js
CHANGED
|
@@ -29,6 +29,10 @@ tslib_1.__decorate([
|
|
|
29
29
|
(0, typeorm_1.Column)({ type: 'varchar', length: 256 }),
|
|
30
30
|
tslib_1.__metadata("design:type", String)
|
|
31
31
|
], GoogleUser.prototype, "givenName", void 0);
|
|
32
|
+
tslib_1.__decorate([
|
|
33
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 64, nullable: true }),
|
|
34
|
+
tslib_1.__metadata("design:type", String)
|
|
35
|
+
], GoogleUser.prototype, "lastHistoryId", void 0);
|
|
32
36
|
GoogleUser = tslib_1.__decorate([
|
|
33
37
|
(0, typeorm_1.Entity)({ name: 'google_users' })
|
|
34
38
|
], GoogleUser);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"google-user.js","sourceRoot":"","sources":["../../../../../libs/model/src/model/google-user.ts"],"names":[],"mappings":";;;;AAAA,qCAAiE;AAG1D,IAAM,UAAU,GAAhB,MAAM,UAAU;
|
|
1
|
+
{"version":3,"file":"google-user.js","sourceRoot":"","sources":["../../../../../libs/model/src/model/google-user.ts"],"names":[],"mappings":";;;;AAAA,qCAAiE;AAG1D,IAAM,UAAU,GAAhB,MAAM,UAAU;CAqBtB,CAAA;AApBC;IAAC,IAAA,gCAAsB,GAAE;;sCACd;AAEX;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,CAAC;;0CACzB;AAEf;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,CAAC;;gDACnB;AAErB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC;;4CACxB;AAEjB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC;;8CACtB;AAEnB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC;;6CACvB;AAElB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;iDACjC;AApBZ,UAAU;IADtB,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,cAAc,EAAE,CAAC;GACpB,UAAU,CAqBtB;AArBY,gCAAU"}
|
package/src/models.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ export * from './model/extracurricular-activity';
|
|
|
14
14
|
export * from './model/file-access';
|
|
15
15
|
export * from './model/file-category';
|
|
16
16
|
export * from './model/file';
|
|
17
|
+
export * from './model/gmail-message-email-index';
|
|
17
18
|
export * from './model/gmail-message';
|
|
18
19
|
export * from './model/google-user';
|
|
19
20
|
export * from './model/log';
|
package/src/models.js
CHANGED
|
@@ -17,6 +17,7 @@ tslib_1.__exportStar(require("./model/extracurricular-activity"), exports);
|
|
|
17
17
|
tslib_1.__exportStar(require("./model/file-access"), exports);
|
|
18
18
|
tslib_1.__exportStar(require("./model/file-category"), exports);
|
|
19
19
|
tslib_1.__exportStar(require("./model/file"), exports);
|
|
20
|
+
tslib_1.__exportStar(require("./model/gmail-message-email-index"), exports);
|
|
20
21
|
tslib_1.__exportStar(require("./model/gmail-message"), exports);
|
|
21
22
|
tslib_1.__exportStar(require("./model/google-user"), exports);
|
|
22
23
|
tslib_1.__exportStar(require("./model/log"), exports);
|
package/src/models.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"models.js","sourceRoot":"","sources":["../../../../libs/model/src/models.ts"],"names":[],"mappings":";;;AAAA,+DAAqC;AACrC,+DAAqC;AACrC,6DAAmC;AACnC,6DAAmC;AACnC,mEAAyC;AACzC,wEAA8C;AAC9C,kEAAwC;AACxC,4DAAkC;AAClC,mEAAyC;AACzC,4DAAkC;AAClC,gEAAsC;AACtC,wDAA8B;AAC9B,2EAAiD;AACjD,8DAAoC;AACpC,gEAAsC;AACtC,uDAA6B;AAC7B,gEAAsC;AACtC,8DAAoC;AACpC,sDAA4B;AAC5B,2DAAiC;AACjC,qEAA2C;AAC3C,gEAAsC;AACtC,qEAA2C;AAC3C,0DAAgC;AAChC,kEAAwC;AACxC,kEAAwC;AACxC,4DAAkC;AAClC,6DAAmC;AACnC,uDAA6B;AAC7B,8DAAoC;AACpC,0DAAgC;AAChC,0DAAgC;AAChC,2DAAiC;AACjC,6DAAmC;AACnC,uDAA6B;AAC7B,yDAA+B;AAC/B,qEAA2C;AAC3C,6DAAmC;AACnC,oEAA0C;AAC1C,iEAAuC;AACvC,iEAAuC;AACvC,qEAA2C;AAC3C,gEAAsC;AACtC,+DAAqC;AACrC,8EAAoD;AACpD,+DAAqC;AACrC,iFAAuD;AACvD,6EAAmD;AACnD,kEAAwC;AACxC,iEAAuC;AACvC,+DAAqC;AACrC,gEAAsC;AACtC,gEAAsC;AACtC,8DAAoC;AACpC,6DAAmC;AACnC,+DAAqC;AACrC,uDAA6B;AAC7B,wEAA8C;AAC9C,kEAAwC;AACxC,mEAAyC;AACzC,uDAA6B;AAC7B,4DAAkC"}
|
|
1
|
+
{"version":3,"file":"models.js","sourceRoot":"","sources":["../../../../libs/model/src/models.ts"],"names":[],"mappings":";;;AAAA,+DAAqC;AACrC,+DAAqC;AACrC,6DAAmC;AACnC,6DAAmC;AACnC,mEAAyC;AACzC,wEAA8C;AAC9C,kEAAwC;AACxC,4DAAkC;AAClC,mEAAyC;AACzC,4DAAkC;AAClC,gEAAsC;AACtC,wDAA8B;AAC9B,2EAAiD;AACjD,8DAAoC;AACpC,gEAAsC;AACtC,uDAA6B;AAC7B,4EAAkD;AAClD,gEAAsC;AACtC,8DAAoC;AACpC,sDAA4B;AAC5B,2DAAiC;AACjC,qEAA2C;AAC3C,gEAAsC;AACtC,qEAA2C;AAC3C,0DAAgC;AAChC,kEAAwC;AACxC,kEAAwC;AACxC,4DAAkC;AAClC,6DAAmC;AACnC,uDAA6B;AAC7B,8DAAoC;AACpC,0DAAgC;AAChC,0DAAgC;AAChC,2DAAiC;AACjC,6DAAmC;AACnC,uDAA6B;AAC7B,yDAA+B;AAC/B,qEAA2C;AAC3C,6DAAmC;AACnC,oEAA0C;AAC1C,iEAAuC;AACvC,iEAAuC;AACvC,qEAA2C;AAC3C,gEAAsC;AACtC,+DAAqC;AACrC,8EAAoD;AACpD,+DAAqC;AACrC,iFAAuD;AACvD,6EAAmD;AACnD,kEAAwC;AACxC,iEAAuC;AACvC,+DAAqC;AACrC,gEAAsC;AACtC,gEAAsC;AACtC,8DAAoC;AACpC,6DAAmC;AACnC,+DAAqC;AACrC,uDAA6B;AAC7B,wEAA8C;AAC9C,kEAAwC;AACxC,mEAAyC;AACzC,uDAA6B;AAC7B,4DAAkC"}
|
package/src/enums.d.ts
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
export * from './model/conversion-table';
|
|
2
|
-
export * from './model/dimension';
|
|
3
|
-
export * from './model/event';
|
|
4
|
-
export * from './model/extracurricular-activity';
|
|
5
|
-
export * from './model/log';
|
|
6
|
-
export * from './model/lead-form-field';
|
|
7
|
-
export * from './model/lead-form';
|
|
8
|
-
export * from './model/lead';
|
|
9
|
-
export * from './model/profile';
|
|
10
|
-
export * from './model/sale';
|
|
11
|
-
export * from './model/school';
|
|
12
|
-
export * from './model/staff-availability';
|
|
13
|
-
export * from './model/staff-hour-log';
|
|
14
|
-
export * from './model/student-assignment';
|
|
15
|
-
export * from './model/student-note';
|
|
16
|
-
export * from './model/student-service-membership-log';
|
|
17
|
-
export * from './model/student-service';
|
|
18
|
-
export * from './model/test-attempt';
|
|
19
|
-
export * from './model/test-question';
|
|
20
|
-
export * from './model/user-to-guardian';
|
|
21
|
-
export * from './model/user';
|
package/src/enums.js
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./model/conversion-table"), exports);
|
|
5
|
-
tslib_1.__exportStar(require("./model/dimension"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./model/event"), exports);
|
|
7
|
-
tslib_1.__exportStar(require("./model/extracurricular-activity"), exports);
|
|
8
|
-
tslib_1.__exportStar(require("./model/log"), exports);
|
|
9
|
-
tslib_1.__exportStar(require("./model/lead-form-field"), exports);
|
|
10
|
-
tslib_1.__exportStar(require("./model/lead-form"), exports);
|
|
11
|
-
tslib_1.__exportStar(require("./model/lead"), exports);
|
|
12
|
-
tslib_1.__exportStar(require("./model/profile"), exports);
|
|
13
|
-
tslib_1.__exportStar(require("./model/sale"), exports);
|
|
14
|
-
tslib_1.__exportStar(require("./model/school"), exports);
|
|
15
|
-
tslib_1.__exportStar(require("./model/staff-availability"), exports);
|
|
16
|
-
tslib_1.__exportStar(require("./model/staff-hour-log"), exports);
|
|
17
|
-
tslib_1.__exportStar(require("./model/student-assignment"), exports);
|
|
18
|
-
tslib_1.__exportStar(require("./model/student-note"), exports);
|
|
19
|
-
tslib_1.__exportStar(require("./model/student-service-membership-log"), exports);
|
|
20
|
-
tslib_1.__exportStar(require("./model/student-service"), exports);
|
|
21
|
-
tslib_1.__exportStar(require("./model/test-attempt"), exports);
|
|
22
|
-
tslib_1.__exportStar(require("./model/test-question"), exports);
|
|
23
|
-
tslib_1.__exportStar(require("./model/user-to-guardian"), exports);
|
|
24
|
-
tslib_1.__exportStar(require("./model/user"), exports);
|
|
25
|
-
//# sourceMappingURL=enums.js.map
|
package/src/enums.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"enums.js","sourceRoot":"","sources":["../../../../libs/model/src/enums.ts"],"names":[],"mappings":";;;AAAA,mEAAyC;AACzC,4DAAkC;AAClC,wDAA8B;AAC9B,2EAAiD;AACjD,sDAA4B;AAC5B,kEAAwC;AACxC,4DAAkC;AAClC,uDAA6B;AAC7B,0DAAgC;AAChC,uDAA6B;AAC7B,yDAA+B;AAC/B,qEAA2C;AAC3C,iEAAuC;AACvC,qEAA2C;AAC3C,+DAAqC;AACrC,iFAAuD;AACvD,kEAAwC;AACxC,+DAAqC;AACrC,gEAAsC;AACtC,mEAAyC;AACzC,uDAA6B"}
|