@contractspec/lib.files 1.61.0 → 2.0.0
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/contracts/index.d.ts +12 -13
- package/dist/contracts/index.js +1 -1
- package/dist/docs/files.docblock.d.ts +0 -1
- package/dist/docs/files.docblock.js +1 -1
- package/dist/docs/index.d.ts +0 -1
- package/dist/docs/index.js +1 -1
- package/dist/entities/index.d.ts +0 -1
- package/dist/events.d.ts +16 -17
- package/dist/events.js +1 -1
- package/dist/files.capability.d.ts +2 -3
- package/dist/files.capability.js +4 -1
- package/dist/files.feature.d.ts +1 -2
- package/dist/files.feature.js +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +4 -4
- package/dist/node/contracts/index.js +1 -1
- package/dist/node/docs/files.docblock.js +1 -1
- package/dist/node/docs/index.js +1 -1
- package/dist/node/events.js +1 -1
- package/dist/node/files.capability.js +4 -1
- package/dist/node/files.feature.js +1 -1
- package/dist/node/index.js +4 -4
- package/dist/storage/index.d.ts +0 -1
- package/package.json +5 -5
- package/dist/contracts/index.d.ts.map +0 -1
- package/dist/docs/files.docblock.d.ts.map +0 -1
- package/dist/docs/index.d.ts.map +0 -1
- package/dist/entities/index.d.ts.map +0 -1
- package/dist/events.d.ts.map +0 -1
- package/dist/files.capability.d.ts.map +0 -1
- package/dist/files.feature.d.ts.map +0 -1
- package/dist/index.d.ts.map +0 -1
- package/dist/storage/index.d.ts.map +0 -1
|
@@ -242,7 +242,7 @@ export declare const PresignedUrlModel: import("@contractspec/lib.schema").Schem
|
|
|
242
242
|
/**
|
|
243
243
|
* Upload a file.
|
|
244
244
|
*/
|
|
245
|
-
export declare const UploadFileContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
245
|
+
export declare const UploadFileContract: import("@contractspec/lib.contracts-spec").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
246
246
|
name: {
|
|
247
247
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
248
248
|
isOptional: false;
|
|
@@ -344,7 +344,7 @@ export declare const UploadFileContract: import("@contractspec/lib.contracts").O
|
|
|
344
344
|
/**
|
|
345
345
|
* Update a file.
|
|
346
346
|
*/
|
|
347
|
-
export declare const UpdateFileContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
347
|
+
export declare const UpdateFileContract: import("@contractspec/lib.contracts-spec").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
348
348
|
fileId: {
|
|
349
349
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
350
350
|
isOptional: false;
|
|
@@ -434,7 +434,7 @@ export declare const UpdateFileContract: import("@contractspec/lib.contracts").O
|
|
|
434
434
|
/**
|
|
435
435
|
* Delete a file.
|
|
436
436
|
*/
|
|
437
|
-
export declare const DeleteFileContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
437
|
+
export declare const DeleteFileContract: import("@contractspec/lib.contracts-spec").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
438
438
|
fileId: {
|
|
439
439
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
440
440
|
isOptional: false;
|
|
@@ -448,7 +448,7 @@ export declare const DeleteFileContract: import("@contractspec/lib.contracts").O
|
|
|
448
448
|
/**
|
|
449
449
|
* Get a file by ID.
|
|
450
450
|
*/
|
|
451
|
-
export declare const GetFileContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
451
|
+
export declare const GetFileContract: import("@contractspec/lib.contracts-spec").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
452
452
|
fileId: {
|
|
453
453
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
454
454
|
isOptional: false;
|
|
@@ -522,7 +522,7 @@ export declare const GetFileContract: import("@contractspec/lib.contracts").Oper
|
|
|
522
522
|
/**
|
|
523
523
|
* List files.
|
|
524
524
|
*/
|
|
525
|
-
export declare const ListFilesContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
525
|
+
export declare const ListFilesContract: import("@contractspec/lib.contracts-spec").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
526
526
|
orgId: {
|
|
527
527
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
528
528
|
isOptional: true;
|
|
@@ -630,7 +630,7 @@ export declare const ListFilesContract: import("@contractspec/lib.contracts").Op
|
|
|
630
630
|
/**
|
|
631
631
|
* Get download URL.
|
|
632
632
|
*/
|
|
633
|
-
export declare const GetDownloadUrlContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
633
|
+
export declare const GetDownloadUrlContract: import("@contractspec/lib.contracts-spec").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
634
634
|
fileId: {
|
|
635
635
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
636
636
|
isOptional: false;
|
|
@@ -664,7 +664,7 @@ export declare const GetDownloadUrlContract: import("@contractspec/lib.contracts
|
|
|
664
664
|
/**
|
|
665
665
|
* Create a file version.
|
|
666
666
|
*/
|
|
667
|
-
export declare const CreateVersionContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
667
|
+
export declare const CreateVersionContract: import("@contractspec/lib.contracts-spec").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
668
668
|
fileId: {
|
|
669
669
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
670
670
|
isOptional: false;
|
|
@@ -718,7 +718,7 @@ export declare const CreateVersionContract: import("@contractspec/lib.contracts"
|
|
|
718
718
|
/**
|
|
719
719
|
* Get file versions.
|
|
720
720
|
*/
|
|
721
|
-
export declare const GetVersionsContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
721
|
+
export declare const GetVersionsContract: import("@contractspec/lib.contracts-spec").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
722
722
|
fileId: {
|
|
723
723
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
724
724
|
isOptional: false;
|
|
@@ -782,7 +782,7 @@ export declare const GetVersionsContract: import("@contractspec/lib.contracts").
|
|
|
782
782
|
/**
|
|
783
783
|
* Attach a file to an entity.
|
|
784
784
|
*/
|
|
785
|
-
export declare const AttachFileContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
785
|
+
export declare const AttachFileContract: import("@contractspec/lib.contracts-spec").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
786
786
|
fileId: {
|
|
787
787
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
788
788
|
isOptional: false;
|
|
@@ -933,7 +933,7 @@ export declare const AttachFileContract: import("@contractspec/lib.contracts").O
|
|
|
933
933
|
/**
|
|
934
934
|
* Detach a file from an entity.
|
|
935
935
|
*/
|
|
936
|
-
export declare const DetachFileContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
936
|
+
export declare const DetachFileContract: import("@contractspec/lib.contracts-spec").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
937
937
|
attachmentId: {
|
|
938
938
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
939
939
|
isOptional: false;
|
|
@@ -947,7 +947,7 @@ export declare const DetachFileContract: import("@contractspec/lib.contracts").O
|
|
|
947
947
|
/**
|
|
948
948
|
* List attachments for an entity.
|
|
949
949
|
*/
|
|
950
|
-
export declare const ListAttachmentsContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
950
|
+
export declare const ListAttachmentsContract: import("@contractspec/lib.contracts-spec").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
951
951
|
entityType: {
|
|
952
952
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
953
953
|
isOptional: false;
|
|
@@ -1088,7 +1088,7 @@ export declare const ListAttachmentsContract: import("@contractspec/lib.contract
|
|
|
1088
1088
|
/**
|
|
1089
1089
|
* Create a presigned upload URL.
|
|
1090
1090
|
*/
|
|
1091
|
-
export declare const CreatePresignedUrlContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
1091
|
+
export declare const CreatePresignedUrlContract: import("@contractspec/lib.contracts-spec").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
1092
1092
|
fileName: {
|
|
1093
1093
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
1094
1094
|
isOptional: false;
|
|
@@ -1131,4 +1131,3 @@ export declare const CreatePresignedUrlContract: import("@contractspec/lib.contr
|
|
|
1131
1131
|
isOptional: true;
|
|
1132
1132
|
};
|
|
1133
1133
|
}>, undefined>;
|
|
1134
|
-
//# sourceMappingURL=index.d.ts.map
|
package/dist/contracts/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
// src/contracts/index.ts
|
|
3
3
|
import { ScalarTypeEnum, defineSchemaModel } from "@contractspec/lib.schema";
|
|
4
|
-
import { defineCommand, defineQuery } from "@contractspec/lib.contracts";
|
|
4
|
+
import { defineCommand, defineQuery } from "@contractspec/lib.contracts-spec";
|
|
5
5
|
var OWNERS = ["platform.files"];
|
|
6
6
|
var FileModel = defineSchemaModel({
|
|
7
7
|
name: "File",
|
package/dist/docs/index.d.ts
CHANGED
package/dist/docs/index.js
CHANGED
package/dist/entities/index.d.ts
CHANGED
package/dist/events.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Emitted when a file is uploaded.
|
|
3
3
|
*/
|
|
4
|
-
export declare const FileUploadedEvent: import("@contractspec/lib.contracts").EventSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
4
|
+
export declare const FileUploadedEvent: import("@contractspec/lib.contracts-spec").EventSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
5
5
|
fileId: {
|
|
6
6
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
7
7
|
isOptional: false;
|
|
@@ -38,7 +38,7 @@ export declare const FileUploadedEvent: import("@contractspec/lib.contracts").Ev
|
|
|
38
38
|
/**
|
|
39
39
|
* Emitted when a file is updated.
|
|
40
40
|
*/
|
|
41
|
-
export declare const FileUpdatedEvent: import("@contractspec/lib.contracts").EventSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
41
|
+
export declare const FileUpdatedEvent: import("@contractspec/lib.contracts-spec").EventSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
42
42
|
fileId: {
|
|
43
43
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
44
44
|
isOptional: false;
|
|
@@ -63,7 +63,7 @@ export declare const FileUpdatedEvent: import("@contractspec/lib.contracts").Eve
|
|
|
63
63
|
/**
|
|
64
64
|
* Emitted when a file is deleted.
|
|
65
65
|
*/
|
|
66
|
-
export declare const FileDeletedEvent: import("@contractspec/lib.contracts").EventSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
66
|
+
export declare const FileDeletedEvent: import("@contractspec/lib.contracts-spec").EventSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
67
67
|
fileId: {
|
|
68
68
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
69
69
|
isOptional: false;
|
|
@@ -92,7 +92,7 @@ export declare const FileDeletedEvent: import("@contractspec/lib.contracts").Eve
|
|
|
92
92
|
/**
|
|
93
93
|
* Emitted when a file version is created.
|
|
94
94
|
*/
|
|
95
|
-
export declare const FileVersionCreatedEvent: import("@contractspec/lib.contracts").EventSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
95
|
+
export declare const FileVersionCreatedEvent: import("@contractspec/lib.contracts-spec").EventSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
96
96
|
fileId: {
|
|
97
97
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
98
98
|
isOptional: false;
|
|
@@ -125,7 +125,7 @@ export declare const FileVersionCreatedEvent: import("@contractspec/lib.contract
|
|
|
125
125
|
/**
|
|
126
126
|
* Emitted when a file is attached to an entity.
|
|
127
127
|
*/
|
|
128
|
-
export declare const AttachmentAttachedEvent: import("@contractspec/lib.contracts").EventSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
128
|
+
export declare const AttachmentAttachedEvent: import("@contractspec/lib.contracts-spec").EventSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
129
129
|
attachmentId: {
|
|
130
130
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
131
131
|
isOptional: false;
|
|
@@ -158,7 +158,7 @@ export declare const AttachmentAttachedEvent: import("@contractspec/lib.contract
|
|
|
158
158
|
/**
|
|
159
159
|
* Emitted when a file is detached from an entity.
|
|
160
160
|
*/
|
|
161
|
-
export declare const AttachmentDetachedEvent: import("@contractspec/lib.contracts").EventSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
161
|
+
export declare const AttachmentDetachedEvent: import("@contractspec/lib.contracts-spec").EventSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
162
162
|
attachmentId: {
|
|
163
163
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
164
164
|
isOptional: false;
|
|
@@ -187,7 +187,7 @@ export declare const AttachmentDetachedEvent: import("@contractspec/lib.contract
|
|
|
187
187
|
/**
|
|
188
188
|
* Emitted when an upload session starts.
|
|
189
189
|
*/
|
|
190
|
-
export declare const UploadSessionStartedEvent: import("@contractspec/lib.contracts").EventSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
190
|
+
export declare const UploadSessionStartedEvent: import("@contractspec/lib.contracts-spec").EventSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
191
191
|
sessionId: {
|
|
192
192
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
193
193
|
isOptional: false;
|
|
@@ -216,7 +216,7 @@ export declare const UploadSessionStartedEvent: import("@contractspec/lib.contra
|
|
|
216
216
|
/**
|
|
217
217
|
* Emitted when an upload session completes.
|
|
218
218
|
*/
|
|
219
|
-
export declare const UploadSessionCompletedEvent: import("@contractspec/lib.contracts").EventSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
219
|
+
export declare const UploadSessionCompletedEvent: import("@contractspec/lib.contracts-spec").EventSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
220
220
|
sessionId: {
|
|
221
221
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
222
222
|
isOptional: false;
|
|
@@ -242,7 +242,7 @@ export declare const UploadSessionCompletedEvent: import("@contractspec/lib.cont
|
|
|
242
242
|
* All file events.
|
|
243
243
|
*/
|
|
244
244
|
export declare const FileEvents: {
|
|
245
|
-
FileUploadedEvent: import("@contractspec/lib.contracts").EventSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
245
|
+
FileUploadedEvent: import("@contractspec/lib.contracts-spec").EventSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
246
246
|
fileId: {
|
|
247
247
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
248
248
|
isOptional: false;
|
|
@@ -276,7 +276,7 @@ export declare const FileEvents: {
|
|
|
276
276
|
isOptional: false;
|
|
277
277
|
};
|
|
278
278
|
}>>;
|
|
279
|
-
FileUpdatedEvent: import("@contractspec/lib.contracts").EventSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
279
|
+
FileUpdatedEvent: import("@contractspec/lib.contracts-spec").EventSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
280
280
|
fileId: {
|
|
281
281
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
282
282
|
isOptional: false;
|
|
@@ -298,7 +298,7 @@ export declare const FileEvents: {
|
|
|
298
298
|
isOptional: false;
|
|
299
299
|
};
|
|
300
300
|
}>>;
|
|
301
|
-
FileDeletedEvent: import("@contractspec/lib.contracts").EventSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
301
|
+
FileDeletedEvent: import("@contractspec/lib.contracts-spec").EventSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
302
302
|
fileId: {
|
|
303
303
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
304
304
|
isOptional: false;
|
|
@@ -324,7 +324,7 @@ export declare const FileEvents: {
|
|
|
324
324
|
isOptional: false;
|
|
325
325
|
};
|
|
326
326
|
}>>;
|
|
327
|
-
FileVersionCreatedEvent: import("@contractspec/lib.contracts").EventSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
327
|
+
FileVersionCreatedEvent: import("@contractspec/lib.contracts-spec").EventSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
328
328
|
fileId: {
|
|
329
329
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
330
330
|
isOptional: false;
|
|
@@ -354,7 +354,7 @@ export declare const FileEvents: {
|
|
|
354
354
|
isOptional: false;
|
|
355
355
|
};
|
|
356
356
|
}>>;
|
|
357
|
-
AttachmentAttachedEvent: import("@contractspec/lib.contracts").EventSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
357
|
+
AttachmentAttachedEvent: import("@contractspec/lib.contracts-spec").EventSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
358
358
|
attachmentId: {
|
|
359
359
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
360
360
|
isOptional: false;
|
|
@@ -384,7 +384,7 @@ export declare const FileEvents: {
|
|
|
384
384
|
isOptional: false;
|
|
385
385
|
};
|
|
386
386
|
}>>;
|
|
387
|
-
AttachmentDetachedEvent: import("@contractspec/lib.contracts").EventSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
387
|
+
AttachmentDetachedEvent: import("@contractspec/lib.contracts-spec").EventSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
388
388
|
attachmentId: {
|
|
389
389
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
390
390
|
isOptional: false;
|
|
@@ -410,7 +410,7 @@ export declare const FileEvents: {
|
|
|
410
410
|
isOptional: false;
|
|
411
411
|
};
|
|
412
412
|
}>>;
|
|
413
|
-
UploadSessionStartedEvent: import("@contractspec/lib.contracts").EventSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
413
|
+
UploadSessionStartedEvent: import("@contractspec/lib.contracts-spec").EventSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
414
414
|
sessionId: {
|
|
415
415
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
416
416
|
isOptional: false;
|
|
@@ -436,7 +436,7 @@ export declare const FileEvents: {
|
|
|
436
436
|
isOptional: false;
|
|
437
437
|
};
|
|
438
438
|
}>>;
|
|
439
|
-
UploadSessionCompletedEvent: import("@contractspec/lib.contracts").EventSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
439
|
+
UploadSessionCompletedEvent: import("@contractspec/lib.contracts-spec").EventSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
440
440
|
sessionId: {
|
|
441
441
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
442
442
|
isOptional: false;
|
|
@@ -459,4 +459,3 @@ export declare const FileEvents: {
|
|
|
459
459
|
};
|
|
460
460
|
}>>;
|
|
461
461
|
};
|
|
462
|
-
//# sourceMappingURL=events.d.ts.map
|
package/dist/events.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
// src/events.ts
|
|
3
3
|
import { ScalarTypeEnum, defineSchemaModel } from "@contractspec/lib.schema";
|
|
4
|
-
import { defineEvent } from "@contractspec/lib.contracts";
|
|
4
|
+
import { defineEvent } from "@contractspec/lib.contracts-spec";
|
|
5
5
|
var FileUploadedPayload = defineSchemaModel({
|
|
6
6
|
name: "FileUploadedEventPayload",
|
|
7
7
|
description: "Payload when a file is uploaded",
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
export declare const FilesCapability: import("@contractspec/lib.contracts").CapabilitySpec;
|
|
2
|
-
export declare const AttachmentsCapability: import("@contractspec/lib.contracts").CapabilitySpec;
|
|
3
|
-
//# sourceMappingURL=files.capability.d.ts.map
|
|
1
|
+
export declare const FilesCapability: import("@contractspec/lib.contracts-spec").CapabilitySpec;
|
|
2
|
+
export declare const AttachmentsCapability: import("@contractspec/lib.contracts-spec").CapabilitySpec;
|
package/dist/files.capability.js
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
// src/files.capability.ts
|
|
3
|
-
import {
|
|
3
|
+
import {
|
|
4
|
+
defineCapability,
|
|
5
|
+
StabilityEnum
|
|
6
|
+
} from "@contractspec/lib.contracts-spec";
|
|
4
7
|
var FilesCapability = defineCapability({
|
|
5
8
|
meta: {
|
|
6
9
|
key: "files",
|
package/dist/files.feature.d.ts
CHANGED
|
@@ -2,5 +2,4 @@
|
|
|
2
2
|
* Files feature module that bundles file storage,
|
|
3
3
|
* attachments, and media processing capabilities.
|
|
4
4
|
*/
|
|
5
|
-
export declare const FilesFeature: import("@contractspec/lib.contracts").FeatureModuleSpec;
|
|
6
|
-
//# sourceMappingURL=files.feature.d.ts.map
|
|
5
|
+
export declare const FilesFeature: import("@contractspec/lib.contracts-spec").FeatureModuleSpec;
|
package/dist/files.feature.js
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
// src/contracts/index.ts
|
|
3
3
|
import { ScalarTypeEnum, defineSchemaModel } from "@contractspec/lib.schema";
|
|
4
|
-
import { defineCommand, defineQuery } from "@contractspec/lib.contracts";
|
|
4
|
+
import { defineCommand, defineQuery } from "@contractspec/lib.contracts-spec";
|
|
5
5
|
var OWNERS = ["platform.files"];
|
|
6
6
|
var FileModel = defineSchemaModel({
|
|
7
7
|
name: "File",
|
|
@@ -559,7 +559,7 @@ var CreatePresignedUrlContract = defineCommand({
|
|
|
559
559
|
});
|
|
560
560
|
|
|
561
561
|
// src/docs/files.docblock.ts
|
|
562
|
-
import { registerDocBlocks } from "@contractspec/lib.contracts/docs";
|
|
562
|
+
import { registerDocBlocks } from "@contractspec/lib.contracts-spec/docs";
|
|
563
563
|
var filesDocBlocks = [
|
|
564
564
|
{
|
|
565
565
|
id: "docs.files.attachments",
|
|
@@ -851,7 +851,7 @@ var filesSchemaContribution = {
|
|
|
851
851
|
|
|
852
852
|
// src/events.ts
|
|
853
853
|
import { ScalarTypeEnum as ScalarTypeEnum2, defineSchemaModel as defineSchemaModel2 } from "@contractspec/lib.schema";
|
|
854
|
-
import { defineEvent } from "@contractspec/lib.contracts";
|
|
854
|
+
import { defineEvent } from "@contractspec/lib.contracts-spec";
|
|
855
855
|
var FileUploadedPayload = defineSchemaModel2({
|
|
856
856
|
name: "FileUploadedEventPayload",
|
|
857
857
|
description: "Payload when a file is uploaded",
|
|
@@ -1059,7 +1059,7 @@ var FileEvents = {
|
|
|
1059
1059
|
};
|
|
1060
1060
|
|
|
1061
1061
|
// src/files.feature.ts
|
|
1062
|
-
import { defineFeature } from "@contractspec/lib.contracts";
|
|
1062
|
+
import { defineFeature } from "@contractspec/lib.contracts-spec";
|
|
1063
1063
|
var FilesFeature = defineFeature({
|
|
1064
1064
|
meta: {
|
|
1065
1065
|
key: "files",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// src/contracts/index.ts
|
|
2
2
|
import { ScalarTypeEnum, defineSchemaModel } from "@contractspec/lib.schema";
|
|
3
|
-
import { defineCommand, defineQuery } from "@contractspec/lib.contracts";
|
|
3
|
+
import { defineCommand, defineQuery } from "@contractspec/lib.contracts-spec";
|
|
4
4
|
var OWNERS = ["platform.files"];
|
|
5
5
|
var FileModel = defineSchemaModel({
|
|
6
6
|
name: "File",
|
package/dist/node/docs/index.js
CHANGED
package/dist/node/events.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// src/events.ts
|
|
2
2
|
import { ScalarTypeEnum, defineSchemaModel } from "@contractspec/lib.schema";
|
|
3
|
-
import { defineEvent } from "@contractspec/lib.contracts";
|
|
3
|
+
import { defineEvent } from "@contractspec/lib.contracts-spec";
|
|
4
4
|
var FileUploadedPayload = defineSchemaModel({
|
|
5
5
|
name: "FileUploadedEventPayload",
|
|
6
6
|
description: "Payload when a file is uploaded",
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
// src/files.capability.ts
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
defineCapability,
|
|
4
|
+
StabilityEnum
|
|
5
|
+
} from "@contractspec/lib.contracts-spec";
|
|
3
6
|
var FilesCapability = defineCapability({
|
|
4
7
|
meta: {
|
|
5
8
|
key: "files",
|
package/dist/node/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// src/contracts/index.ts
|
|
2
2
|
import { ScalarTypeEnum, defineSchemaModel } from "@contractspec/lib.schema";
|
|
3
|
-
import { defineCommand, defineQuery } from "@contractspec/lib.contracts";
|
|
3
|
+
import { defineCommand, defineQuery } from "@contractspec/lib.contracts-spec";
|
|
4
4
|
var OWNERS = ["platform.files"];
|
|
5
5
|
var FileModel = defineSchemaModel({
|
|
6
6
|
name: "File",
|
|
@@ -558,7 +558,7 @@ var CreatePresignedUrlContract = defineCommand({
|
|
|
558
558
|
});
|
|
559
559
|
|
|
560
560
|
// src/docs/files.docblock.ts
|
|
561
|
-
import { registerDocBlocks } from "@contractspec/lib.contracts/docs";
|
|
561
|
+
import { registerDocBlocks } from "@contractspec/lib.contracts-spec/docs";
|
|
562
562
|
var filesDocBlocks = [
|
|
563
563
|
{
|
|
564
564
|
id: "docs.files.attachments",
|
|
@@ -850,7 +850,7 @@ var filesSchemaContribution = {
|
|
|
850
850
|
|
|
851
851
|
// src/events.ts
|
|
852
852
|
import { ScalarTypeEnum as ScalarTypeEnum2, defineSchemaModel as defineSchemaModel2 } from "@contractspec/lib.schema";
|
|
853
|
-
import { defineEvent } from "@contractspec/lib.contracts";
|
|
853
|
+
import { defineEvent } from "@contractspec/lib.contracts-spec";
|
|
854
854
|
var FileUploadedPayload = defineSchemaModel2({
|
|
855
855
|
name: "FileUploadedEventPayload",
|
|
856
856
|
description: "Payload when a file is uploaded",
|
|
@@ -1058,7 +1058,7 @@ var FileEvents = {
|
|
|
1058
1058
|
};
|
|
1059
1059
|
|
|
1060
1060
|
// src/files.feature.ts
|
|
1061
|
-
import { defineFeature } from "@contractspec/lib.contracts";
|
|
1061
|
+
import { defineFeature } from "@contractspec/lib.contracts-spec";
|
|
1062
1062
|
var FilesFeature = defineFeature({
|
|
1063
1063
|
meta: {
|
|
1064
1064
|
key: "files",
|
package/dist/storage/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/lib.files",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "Files, documents and attachments module for ContractSpec applications",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"contractspec",
|
|
@@ -27,14 +27,14 @@
|
|
|
27
27
|
"typecheck": "tsc --noEmit"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@contractspec/lib.schema": "
|
|
31
|
-
"@contractspec/lib.contracts": "
|
|
30
|
+
"@contractspec/lib.schema": "2.0.0",
|
|
31
|
+
"@contractspec/lib.contracts-spec": "2.0.0",
|
|
32
32
|
"zod": "^4.3.5"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@contractspec/tool.typescript": "
|
|
35
|
+
"@contractspec/tool.typescript": "2.0.0",
|
|
36
36
|
"typescript": "^5.9.3",
|
|
37
|
-
"@contractspec/tool.bun": "
|
|
37
|
+
"@contractspec/tool.bun": "2.0.0"
|
|
38
38
|
},
|
|
39
39
|
"exports": {
|
|
40
40
|
".": {
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/contracts/index.ts"],"names":[],"mappings":"AAOA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAwBpB,CAAC;AAEH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAc3B,CAAC;AAEH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoB1B,CAAC;AAEH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;EAU5B,CAAC;AAkLH;;GAEG;AACH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAgC7B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cA0B7B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,kBAAkB;;;;;;;;;;cA0B7B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cA0B1B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAkB5B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cA0BjC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cA0BhC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cA0B9B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAgC7B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,kBAAkB;;;;;;;;;;cA0B7B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAkBlC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAgCrC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"files.docblock.d.ts","sourceRoot":"","sources":["../../src/docs/files.docblock.ts"],"names":[],"mappings":""}
|
package/dist/docs/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/docs/index.ts"],"names":[],"mappings":"AAAA,OAAO,kBAAkB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/entities/index.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,0BAA0B,CAAC;AAEzE;;GAEG;AACH,eAAO,MAAM,mBAAmB,kDAK9B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,cAAc,kDAYzB,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;EA0FrB,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;EAwC5B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;EAwD3B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;EA0D9B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAKxB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,uBAAuB,EAAE,wBAIrC,CAAC"}
|
package/dist/events.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"events.d.ts","sourceRoot":"","sources":["../src/events.ts"],"names":[],"mappings":"AA0HA;;GAEG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAU5B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;GAU3B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;GAU3B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAUlC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAUlC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;GAUlC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;GAUpC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;GAUtC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAStB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"files.capability.d.ts","sourceRoot":"","sources":["../src/files.capability.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,eAAe,sDAU1B,CAAC;AAEH,eAAO,MAAM,qBAAqB,sDAUhC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"files.feature.d.ts","sourceRoot":"","sources":["../src/files.feature.ts"],"names":[],"mappings":"AAOA;;;GAGG;AACH,eAAO,MAAM,YAAY,yDAgEvB,CAAC"}
|
package/dist/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,YAAY,CAAC;AAG3B,cAAc,aAAa,CAAC;AAG5B,cAAc,UAAU,CAAC;AAGzB,cAAc,WAAW,CAAC;AAG1B,cAAc,iBAAiB,CAAC;AAGhC,OAAO,QAAQ,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/storage/index.ts"],"names":[],"mappings":"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"}
|