tychat-contracts 1.0.41 → 1.0.44

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/index.d.ts CHANGED
@@ -9,4 +9,5 @@ export * from './professionals';
9
9
  export * from './payments';
10
10
  export * from './billing';
11
11
  export * from './ai';
12
+ export * from './storage';
12
13
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC;AACjC,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,MAAM,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC;AACjC,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,MAAM,CAAC;AACrB,cAAc,WAAW,CAAC"}
package/dist/index.js CHANGED
@@ -25,3 +25,4 @@ __exportStar(require("./professionals"), exports);
25
25
  __exportStar(require("./payments"), exports);
26
26
  __exportStar(require("./billing"), exports);
27
27
  __exportStar(require("./ai"), exports);
28
+ __exportStar(require("./storage"), exports);
@@ -0,0 +1,4 @@
1
+ export declare class DeleteObjectDto {
2
+ key: string;
3
+ }
4
+ //# sourceMappingURL=delete-object.dto.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"delete-object.dto.d.ts","sourceRoot":"","sources":["../../src/storage/delete-object.dto.ts"],"names":[],"mappings":"AAGA,qBAAa,eAAe;IAQ1B,GAAG,EAAE,MAAM,CAAC;CACb"}
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.DeleteObjectDto = void 0;
13
+ const swagger_1 = require("@nestjs/swagger");
14
+ const class_validator_1 = require("class-validator");
15
+ class DeleteObjectDto {
16
+ key;
17
+ }
18
+ exports.DeleteObjectDto = DeleteObjectDto;
19
+ __decorate([
20
+ (0, swagger_1.ApiProperty)({
21
+ description: 'Object key (path) inside the bucket to delete',
22
+ example: 'tenants/acme/uploads/photo.jpg',
23
+ }),
24
+ (0, class_validator_1.IsString)(),
25
+ (0, class_validator_1.IsNotEmpty)(),
26
+ (0, class_validator_1.MaxLength)(1024),
27
+ __metadata("design:type", String)
28
+ ], DeleteObjectDto.prototype, "key", void 0);
@@ -0,0 +1,4 @@
1
+ export declare class ExistsQueryDto {
2
+ key: string;
3
+ }
4
+ //# sourceMappingURL=exists-query.dto.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"exists-query.dto.d.ts","sourceRoot":"","sources":["../../src/storage/exists-query.dto.ts"],"names":[],"mappings":"AAGA,qBAAa,cAAc;IAQzB,GAAG,EAAE,MAAM,CAAC;CACb"}
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.ExistsQueryDto = void 0;
13
+ const swagger_1 = require("@nestjs/swagger");
14
+ const class_validator_1 = require("class-validator");
15
+ class ExistsQueryDto {
16
+ key;
17
+ }
18
+ exports.ExistsQueryDto = ExistsQueryDto;
19
+ __decorate([
20
+ (0, swagger_1.ApiProperty)({
21
+ description: 'Object key (path) inside the bucket',
22
+ example: 'tenants/acme/uploads/photo.jpg',
23
+ }),
24
+ (0, class_validator_1.IsString)(),
25
+ (0, class_validator_1.MinLength)(1),
26
+ (0, class_validator_1.MaxLength)(1024),
27
+ __metadata("design:type", String)
28
+ ], ExistsQueryDto.prototype, "key", void 0);
@@ -0,0 +1,6 @@
1
+ export * from './presign-upload.dto';
2
+ export * from './presign-download-query.dto';
3
+ export * from './delete-object.dto';
4
+ export * from './presigned-url-response.dto';
5
+ export * from './exists-query.dto';
6
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/storage/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,qBAAqB,CAAC;AACpC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,oBAAoB,CAAC"}
@@ -0,0 +1,21 @@
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("./presign-upload.dto"), exports);
18
+ __exportStar(require("./presign-download-query.dto"), exports);
19
+ __exportStar(require("./delete-object.dto"), exports);
20
+ __exportStar(require("./presigned-url-response.dto"), exports);
21
+ __exportStar(require("./exists-query.dto"), exports);
@@ -0,0 +1,5 @@
1
+ export declare class PresignDownloadQueryDto {
2
+ key: string;
3
+ expiresInSeconds?: number;
4
+ }
5
+ //# sourceMappingURL=presign-download-query.dto.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"presign-download-query.dto.d.ts","sourceRoot":"","sources":["../../src/storage/presign-download-query.dto.ts"],"names":[],"mappings":"AAGA,qBAAa,uBAAuB;IAQlC,GAAG,EAAE,MAAM,CAAC;IAYZ,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC3B"}
@@ -0,0 +1,42 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.PresignDownloadQueryDto = void 0;
13
+ const swagger_1 = require("@nestjs/swagger");
14
+ const class_validator_1 = require("class-validator");
15
+ class PresignDownloadQueryDto {
16
+ key;
17
+ expiresInSeconds;
18
+ }
19
+ exports.PresignDownloadQueryDto = PresignDownloadQueryDto;
20
+ __decorate([
21
+ (0, swagger_1.ApiProperty)({
22
+ description: 'Object key (path) inside the bucket',
23
+ example: 'tenants/acme/uploads/photo.jpg',
24
+ }),
25
+ (0, class_validator_1.IsString)(),
26
+ (0, class_validator_1.MinLength)(1),
27
+ (0, class_validator_1.MaxLength)(1024),
28
+ __metadata("design:type", String)
29
+ ], PresignDownloadQueryDto.prototype, "key", void 0);
30
+ __decorate([
31
+ (0, swagger_1.ApiPropertyOptional)({
32
+ description: 'Presigned URL lifetime in seconds (default from server config)',
33
+ example: 900,
34
+ minimum: 60,
35
+ maximum: 604800,
36
+ }),
37
+ (0, class_validator_1.IsOptional)(),
38
+ (0, class_validator_1.IsInt)(),
39
+ (0, class_validator_1.Min)(60),
40
+ (0, class_validator_1.Max)(604800),
41
+ __metadata("design:type", Number)
42
+ ], PresignDownloadQueryDto.prototype, "expiresInSeconds", void 0);
@@ -0,0 +1,6 @@
1
+ export declare class PresignUploadDto {
2
+ key: string;
3
+ contentType: string;
4
+ expiresInSeconds?: number;
5
+ }
6
+ //# sourceMappingURL=presign-upload.dto.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"presign-upload.dto.d.ts","sourceRoot":"","sources":["../../src/storage/presign-upload.dto.ts"],"names":[],"mappings":"AAGA,qBAAa,gBAAgB;IAQ3B,GAAG,EAAE,MAAM,CAAC;IAQZ,WAAW,EAAE,MAAM,CAAC;IAYpB,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC3B"}
@@ -0,0 +1,52 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.PresignUploadDto = void 0;
13
+ const swagger_1 = require("@nestjs/swagger");
14
+ const class_validator_1 = require("class-validator");
15
+ class PresignUploadDto {
16
+ key;
17
+ contentType;
18
+ expiresInSeconds;
19
+ }
20
+ exports.PresignUploadDto = PresignUploadDto;
21
+ __decorate([
22
+ (0, swagger_1.ApiProperty)({
23
+ description: 'Object key (path) inside the bucket, e.g. tenants/acme/uploads/photo.jpg',
24
+ example: 'tenants/acme/uploads/photo.jpg',
25
+ }),
26
+ (0, class_validator_1.IsString)(),
27
+ (0, class_validator_1.IsNotEmpty)(),
28
+ (0, class_validator_1.MaxLength)(1024),
29
+ __metadata("design:type", String)
30
+ ], PresignUploadDto.prototype, "key", void 0);
31
+ __decorate([
32
+ (0, swagger_1.ApiProperty)({
33
+ description: 'MIME type the client will send with the PUT request',
34
+ example: 'image/jpeg',
35
+ }),
36
+ (0, class_validator_1.IsString)(),
37
+ (0, class_validator_1.IsNotEmpty)(),
38
+ __metadata("design:type", String)
39
+ ], PresignUploadDto.prototype, "contentType", void 0);
40
+ __decorate([
41
+ (0, swagger_1.ApiPropertyOptional)({
42
+ description: 'Presigned URL lifetime in seconds (default from server config)',
43
+ example: 900,
44
+ minimum: 60,
45
+ maximum: 604800,
46
+ }),
47
+ (0, class_validator_1.IsOptional)(),
48
+ (0, class_validator_1.IsInt)(),
49
+ (0, class_validator_1.Min)(60),
50
+ (0, class_validator_1.Max)(604800),
51
+ __metadata("design:type", Number)
52
+ ], PresignUploadDto.prototype, "expiresInSeconds", void 0);
@@ -0,0 +1,9 @@
1
+ export declare class PresignedUrlResponseDto {
2
+ method: 'PUT' | 'GET';
3
+ url: string;
4
+ key: string;
5
+ expiresAt: number;
6
+ expiresInSeconds: number;
7
+ storageId?: string;
8
+ }
9
+ //# sourceMappingURL=presigned-url-response.dto.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"presigned-url-response.dto.d.ts","sourceRoot":"","sources":["../../src/storage/presigned-url-response.dto.ts"],"names":[],"mappings":"AAEA,qBAAa,uBAAuB;IAElC,MAAM,EAAE,KAAK,GAAG,KAAK,CAAC;IAGtB,GAAG,EAAE,MAAM,CAAC;IAGZ,GAAG,EAAE,MAAM,CAAC;IAGZ,SAAS,EAAE,MAAM,CAAC;IAGlB,gBAAgB,EAAE,MAAM,CAAC;IAMzB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB"}
@@ -0,0 +1,49 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.PresignedUrlResponseDto = void 0;
13
+ const swagger_1 = require("@nestjs/swagger");
14
+ class PresignedUrlResponseDto {
15
+ method;
16
+ url;
17
+ key;
18
+ expiresAt;
19
+ expiresInSeconds;
20
+ storageId;
21
+ }
22
+ exports.PresignedUrlResponseDto = PresignedUrlResponseDto;
23
+ __decorate([
24
+ (0, swagger_1.ApiProperty)({ description: 'HTTP method to use with the presigned URL', example: 'PUT' }),
25
+ __metadata("design:type", String)
26
+ ], PresignedUrlResponseDto.prototype, "method", void 0);
27
+ __decorate([
28
+ (0, swagger_1.ApiProperty)({ description: 'Presigned URL' }),
29
+ __metadata("design:type", String)
30
+ ], PresignedUrlResponseDto.prototype, "url", void 0);
31
+ __decorate([
32
+ (0, swagger_1.ApiProperty)({ description: 'Object key in the bucket' }),
33
+ __metadata("design:type", String)
34
+ ], PresignedUrlResponseDto.prototype, "key", void 0);
35
+ __decorate([
36
+ (0, swagger_1.ApiProperty)({ description: 'Unix timestamp (ms) when the URL expires' }),
37
+ __metadata("design:type", Number)
38
+ ], PresignedUrlResponseDto.prototype, "expiresAt", void 0);
39
+ __decorate([
40
+ (0, swagger_1.ApiProperty)({ description: 'Lifetime used for signing, in seconds' }),
41
+ __metadata("design:type", Number)
42
+ ], PresignedUrlResponseDto.prototype, "expiresInSeconds", void 0);
43
+ __decorate([
44
+ (0, swagger_1.ApiPropertyOptional)({
45
+ description: 'Tenant DB row id (set on presign-upload after persisting metadata)',
46
+ example: '550e8400-e29b-41d4-a716-446655440000',
47
+ }),
48
+ __metadata("design:type", String)
49
+ ], PresignedUrlResponseDto.prototype, "storageId", void 0);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tychat-contracts",
3
- "version": "1.0.41",
3
+ "version": "1.0.44",
4
4
  "description": "DTOs compartilhados com class-validator (API e microserviços)",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/index.ts CHANGED
@@ -9,3 +9,4 @@ export * from './professionals';
9
9
  export * from './payments';
10
10
  export * from './billing';
11
11
  export * from './ai';
12
+ export * from './storage';
@@ -0,0 +1,13 @@
1
+ import { ApiProperty } from '@nestjs/swagger';
2
+ import { IsNotEmpty, IsString, MaxLength } from 'class-validator';
3
+
4
+ export class DeleteObjectDto {
5
+ @ApiProperty({
6
+ description: 'Object key (path) inside the bucket to delete',
7
+ example: 'tenants/acme/uploads/photo.jpg',
8
+ })
9
+ @IsString()
10
+ @IsNotEmpty()
11
+ @MaxLength(1024)
12
+ key: string;
13
+ }
@@ -0,0 +1,13 @@
1
+ import { ApiProperty } from '@nestjs/swagger';
2
+ import { IsString, MaxLength, MinLength } from 'class-validator';
3
+
4
+ export class ExistsQueryDto {
5
+ @ApiProperty({
6
+ description: 'Object key (path) inside the bucket',
7
+ example: 'tenants/acme/uploads/photo.jpg',
8
+ })
9
+ @IsString()
10
+ @MinLength(1)
11
+ @MaxLength(1024)
12
+ key: string;
13
+ }
@@ -0,0 +1,5 @@
1
+ export * from './presign-upload.dto';
2
+ export * from './presign-download-query.dto';
3
+ export * from './delete-object.dto';
4
+ export * from './presigned-url-response.dto';
5
+ export * from './exists-query.dto';
@@ -0,0 +1,25 @@
1
+ import { ApiProperty, ApiPropertyOptional } from '@nestjs/swagger';
2
+ import { IsInt, IsOptional, IsString, Max, MaxLength, Min, MinLength } from 'class-validator';
3
+
4
+ export class PresignDownloadQueryDto {
5
+ @ApiProperty({
6
+ description: 'Object key (path) inside the bucket',
7
+ example: 'tenants/acme/uploads/photo.jpg',
8
+ })
9
+ @IsString()
10
+ @MinLength(1)
11
+ @MaxLength(1024)
12
+ key: string;
13
+
14
+ @ApiPropertyOptional({
15
+ description: 'Presigned URL lifetime in seconds (default from server config)',
16
+ example: 900,
17
+ minimum: 60,
18
+ maximum: 604800,
19
+ })
20
+ @IsOptional()
21
+ @IsInt()
22
+ @Min(60)
23
+ @Max(604800)
24
+ expiresInSeconds?: number;
25
+ }
@@ -0,0 +1,33 @@
1
+ import { ApiProperty, ApiPropertyOptional } from '@nestjs/swagger';
2
+ import { IsInt, IsNotEmpty, IsOptional, IsString, Max, MaxLength, Min } from 'class-validator';
3
+
4
+ export class PresignUploadDto {
5
+ @ApiProperty({
6
+ description: 'Object key (path) inside the bucket, e.g. tenants/acme/uploads/photo.jpg',
7
+ example: 'tenants/acme/uploads/photo.jpg',
8
+ })
9
+ @IsString()
10
+ @IsNotEmpty()
11
+ @MaxLength(1024)
12
+ key: string;
13
+
14
+ @ApiProperty({
15
+ description: 'MIME type the client will send with the PUT request',
16
+ example: 'image/jpeg',
17
+ })
18
+ @IsString()
19
+ @IsNotEmpty()
20
+ contentType: string;
21
+
22
+ @ApiPropertyOptional({
23
+ description: 'Presigned URL lifetime in seconds (default from server config)',
24
+ example: 900,
25
+ minimum: 60,
26
+ maximum: 604800,
27
+ })
28
+ @IsOptional()
29
+ @IsInt()
30
+ @Min(60)
31
+ @Max(604800)
32
+ expiresInSeconds?: number;
33
+ }
@@ -0,0 +1,24 @@
1
+ import { ApiProperty, ApiPropertyOptional } from '@nestjs/swagger';
2
+
3
+ export class PresignedUrlResponseDto {
4
+ @ApiProperty({ description: 'HTTP method to use with the presigned URL', example: 'PUT' })
5
+ method: 'PUT' | 'GET';
6
+
7
+ @ApiProperty({ description: 'Presigned URL' })
8
+ url: string;
9
+
10
+ @ApiProperty({ description: 'Object key in the bucket' })
11
+ key: string;
12
+
13
+ @ApiProperty({ description: 'Unix timestamp (ms) when the URL expires' })
14
+ expiresAt: number;
15
+
16
+ @ApiProperty({ description: 'Lifetime used for signing, in seconds' })
17
+ expiresInSeconds: number;
18
+
19
+ @ApiPropertyOptional({
20
+ description: 'Tenant DB row id (set on presign-upload after persisting metadata)',
21
+ example: '550e8400-e29b-41d4-a716-446655440000',
22
+ })
23
+ storageId?: string;
24
+ }
Binary file
Binary file