biz-slide-core 1.2.123 → 1.2.125
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.
@@ -27,6 +27,7 @@ export interface IPPTFTPQueueSchema {
|
|
27
27
|
url: string;
|
28
28
|
sent: boolean;
|
29
29
|
fileName: string;
|
30
|
+
prefix: string;
|
30
31
|
}
|
31
32
|
export declare const PPTFTPQueueModel: import("mongoose").Model<IPPTFTPQueueSchema, {}, {}, {}, import("mongoose").Document<unknown, {}, IPPTFTPQueueSchema> & Omit<IPPTFTPQueueSchema & {
|
32
33
|
_id: Types.ObjectId;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"ppt-ftp.entity.d.ts","sourceRoot":"","sources":["../../src/entity/ppt-ftp.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,EAAiB,KAAK,EAAE,MAAM,UAAU,CAAC;AAEhD,MAAM,WAAW,kBAAkB;IACjC,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,OAAO,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;
|
1
|
+
{"version":3,"file":"ppt-ftp.entity.d.ts","sourceRoot":"","sources":["../../src/entity/ppt-ftp.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,EAAiB,KAAK,EAAE,MAAM,UAAU,CAAC;AAEhD,MAAM,WAAW,kBAAkB;IACjC,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,OAAO,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;CAChB;AAgBD,eAAO,MAAM,gBAAgB;;eAAgE,CAAC"}
|
package/dist/types/index.d.ts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC;AAC9B,cAAc,YAAY,CAAC;AAE3B,oBAAY,MAAM;IAChB,gBAAgB,qBAAqB,CAAE,uCAAuC;IAC9E,kBAAkB,uBAAuB,CAAE,yCAAyC;IACpF,YAAY,iBAAiB,CAAE,iBAAiB;IAChD,SAAS,cAAc,CAAE,sBAAsB;IAC/C,GAAG,QAAQ,CAAE,sBAAsB;IACnC,OAAO,YAAY;CACpB"}
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC;AAC9B,cAAc,YAAY,CAAC;AAE3B,oBAAY,MAAM;IAChB,gBAAgB,qBAAqB,CAAE,uCAAuC;IAC9E,kBAAkB,uBAAuB,CAAE,yCAAyC;IACpF,YAAY,iBAAiB,CAAE,iBAAiB;IAChD,SAAS,cAAc,CAAE,sBAAsB;IAC/C,GAAG,QAAQ,CAAE,sBAAsB;IACnC,OAAO,YAAY;CACpB;AAED,oBAAY,gBAAgB;IAC1B,MAAM,WAAW;IACjB,GAAG,QAAQ;IACX,UAAU,eAAe;CAC1B"}
|
package/dist/types/index.js
CHANGED
@@ -14,7 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
15
15
|
};
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
17
|
-
exports.QUEUES = void 0;
|
17
|
+
exports.PPT_FILE_PRE_FIX = exports.QUEUES = void 0;
|
18
18
|
__exportStar(require("./IController"), exports);
|
19
19
|
__exportStar(require("./IRequest"), exports);
|
20
20
|
var QUEUES;
|
@@ -26,3 +26,9 @@ var QUEUES;
|
|
26
26
|
QUEUES["PPT"] = "ppt";
|
27
27
|
QUEUES["PNG_SVG"] = "png-svg"; // to convert raster to vector image
|
28
28
|
})(QUEUES || (exports.QUEUES = QUEUES = {}));
|
29
|
+
var PPT_FILE_PRE_FIX;
|
30
|
+
(function (PPT_FILE_PRE_FIX) {
|
31
|
+
PPT_FILE_PRE_FIX["CUSTOM"] = "custom";
|
32
|
+
PPT_FILE_PRE_FIX["FIX"] = "fix";
|
33
|
+
PPT_FILE_PRE_FIX["PERPLEXITY"] = "perplexity";
|
34
|
+
})(PPT_FILE_PRE_FIX || (exports.PPT_FILE_PRE_FIX = PPT_FILE_PRE_FIX = {}));
|