@nest-boot/file-upload 7.0.0-beta.4 → 7.0.0-beta.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/dist/file-upload-field.object.js +3 -3
- package/dist/file-upload-field.object.js.map +1 -1
- package/dist/file-upload.object.js +2 -2
- package/dist/file-upload.object.js.map +1 -1
- package/dist/file-upload.resolver.js +1 -1
- package/dist/file-upload.resolver.js.map +1 -1
- package/dist/inputs/file-upload.input.js +3 -3
- package/dist/inputs/file-upload.input.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +7 -5
|
@@ -10,16 +10,16 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.FileUploadField = void 0;
|
|
13
|
-
const graphql_1 = require("@
|
|
13
|
+
const graphql_1 = require("@nest-boot/graphql");
|
|
14
14
|
let FileUploadField = class FileUploadField {
|
|
15
15
|
};
|
|
16
16
|
exports.FileUploadField = FileUploadField;
|
|
17
17
|
__decorate([
|
|
18
|
-
(0, graphql_1.Field)(),
|
|
18
|
+
(0, graphql_1.Field)(() => String),
|
|
19
19
|
__metadata("design:type", String)
|
|
20
20
|
], FileUploadField.prototype, "name", void 0);
|
|
21
21
|
__decorate([
|
|
22
|
-
(0, graphql_1.Field)(),
|
|
22
|
+
(0, graphql_1.Field)(() => String),
|
|
23
23
|
__metadata("design:type", String)
|
|
24
24
|
], FileUploadField.prototype, "value", void 0);
|
|
25
25
|
exports.FileUploadField = FileUploadField = __decorate([
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"file-upload-field.object.js","sourceRoot":"","sources":["../src/file-upload-field.object.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,
|
|
1
|
+
{"version":3,"file":"file-upload-field.object.js","sourceRoot":"","sources":["../src/file-upload-field.object.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,gDAAuD;AAGhD,IAAM,eAAe,GAArB,MAAM,eAAe;CAM3B,CAAA;AANY,0CAAe;AAE1B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;;6CACN;AAGd;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;;8CACL;0BALJ,eAAe;IAD3B,IAAA,oBAAU,GAAE;GACA,eAAe,CAM3B"}
|
|
@@ -10,7 +10,7 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.FileUpload = void 0;
|
|
13
|
-
const graphql_1 = require("@
|
|
13
|
+
const graphql_1 = require("@nest-boot/graphql");
|
|
14
14
|
const file_upload_field_object_1 = require("./file-upload-field.object");
|
|
15
15
|
let FileUpload = class FileUpload {
|
|
16
16
|
};
|
|
@@ -20,7 +20,7 @@ __decorate([
|
|
|
20
20
|
__metadata("design:type", Array)
|
|
21
21
|
], FileUpload.prototype, "fields", void 0);
|
|
22
22
|
__decorate([
|
|
23
|
-
(0, graphql_1.Field)(),
|
|
23
|
+
(0, graphql_1.Field)(() => String),
|
|
24
24
|
__metadata("design:type", String)
|
|
25
25
|
], FileUpload.prototype, "url", void 0);
|
|
26
26
|
exports.FileUpload = FileUpload = __decorate([
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"file-upload.object.js","sourceRoot":"","sources":["../src/file-upload.object.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,
|
|
1
|
+
{"version":3,"file":"file-upload.object.js","sourceRoot":"","sources":["../src/file-upload.object.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,gDAAuD;AAEvD,yEAA6D;AAGtD,IAAM,UAAU,GAAhB,MAAM,UAAU;CAMtB,CAAA;AANY,gCAAU;AAErB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,CAAC,0CAAe,CAAC,CAAC;;0CACJ;AAG3B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;;uCACP;qBALF,UAAU;IADtB,IAAA,oBAAU,GAAE;GACA,UAAU,CAMtB"}
|
|
@@ -13,7 +13,7 @@ var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
|
13
13
|
};
|
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
15
|
exports.FileUploadResolver = void 0;
|
|
16
|
-
const graphql_1 = require("@
|
|
16
|
+
const graphql_1 = require("@nest-boot/graphql");
|
|
17
17
|
const file_upload_object_1 = require("./file-upload.object");
|
|
18
18
|
const file_upload_service_1 = require("./file-upload.service");
|
|
19
19
|
const file_upload_input_1 = require("./inputs/file-upload.input");
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"file-upload.resolver.js","sourceRoot":"","sources":["../src/file-upload.resolver.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,
|
|
1
|
+
{"version":3,"file":"file-upload.resolver.js","sourceRoot":"","sources":["../src/file-upload.resolver.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,gDAA8D;AAE9D,6DAAkD;AAClD,+DAA0D;AAC1D,kEAA6D;AAGtD,IAAM,kBAAkB,GAAxB,MAAM,kBAAkB;IAC7B,YAA6B,iBAAoC;QAApC,sBAAiB,GAAjB,iBAAiB,CAAmB;IAAG,CAAC;IAG/D,AAAN,KAAK,CAAC,iBAAiB,CAErB,KAAwB;QAExB,OAAO,MAAM,IAAI,CAAC,iBAAiB,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;IACpD,CAAC;CACF,CAAA;AAVY,gDAAkB;AAIvB;IADL,IAAA,kBAAQ,EAAC,GAAG,EAAE,CAAC,CAAC,+BAAU,CAAC,CAAC;IAE1B,WAAA,IAAA,cAAI,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,CAAC,mCAAe,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC,CAAA;;;;2DAIxD;6BATU,kBAAkB;IAD9B,IAAA,kBAAQ,EAAC,GAAG,EAAE,CAAC,+BAAU,CAAC;qCAEuB,uCAAiB;GADtD,kBAAkB,CAU9B"}
|
|
@@ -10,12 +10,12 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.FileUploadInput = void 0;
|
|
13
|
-
const graphql_1 = require("@
|
|
13
|
+
const graphql_1 = require("@nest-boot/graphql");
|
|
14
14
|
let FileUploadInput = class FileUploadInput {
|
|
15
15
|
};
|
|
16
16
|
exports.FileUploadInput = FileUploadInput;
|
|
17
17
|
__decorate([
|
|
18
|
-
(0, graphql_1.Field)(),
|
|
18
|
+
(0, graphql_1.Field)(() => String),
|
|
19
19
|
__metadata("design:type", String)
|
|
20
20
|
], FileUploadInput.prototype, "name", void 0);
|
|
21
21
|
__decorate([
|
|
@@ -23,7 +23,7 @@ __decorate([
|
|
|
23
23
|
__metadata("design:type", Number)
|
|
24
24
|
], FileUploadInput.prototype, "fileSize", void 0);
|
|
25
25
|
__decorate([
|
|
26
|
-
(0, graphql_1.Field)(),
|
|
26
|
+
(0, graphql_1.Field)(() => String),
|
|
27
27
|
__metadata("design:type", String)
|
|
28
28
|
], FileUploadInput.prototype, "mimeType", void 0);
|
|
29
29
|
exports.FileUploadInput = FileUploadInput = __decorate([
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"file-upload.input.js","sourceRoot":"","sources":["../../src/inputs/file-upload.input.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,
|
|
1
|
+
{"version":3,"file":"file-upload.input.js","sourceRoot":"","sources":["../../src/inputs/file-upload.input.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,gDAA2D;AAGpD,IAAM,eAAe,GAArB,MAAM,eAAe;CAS3B,CAAA;AATY,0CAAe;AAE1B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;;6CACN;AAGd;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,aAAG,CAAC;;iDACC;AAGlB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;;iDACF;0BARP,eAAe;IAD3B,IAAA,mBAAS,GAAE;GACC,eAAe,CAS3B"}
|