@mixedbread/sdk 0.51.0 → 0.53.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/CHANGELOG.md +207 -0
- package/client.d.mts.map +1 -1
- package/client.d.ts.map +1 -1
- package/client.js +7 -0
- package/client.js.map +1 -1
- package/client.mjs +7 -0
- package/client.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/stores/files.d.mts +68 -4
- package/resources/stores/files.d.mts.map +1 -1
- package/resources/stores/files.d.ts +68 -4
- package/resources/stores/files.d.ts.map +1 -1
- package/resources/stores/stores.d.mts +84 -4
- package/resources/stores/stores.d.mts.map +1 -1
- package/resources/stores/stores.d.ts +84 -4
- package/resources/stores/stores.d.ts.map +1 -1
- package/resources/stores/stores.js.map +1 -1
- package/resources/stores/stores.mjs.map +1 -1
- package/src/client.ts +9 -1
- package/src/resources/stores/files.ts +124 -0
- package/src/resources/stores/stores.ts +144 -0
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -572,6 +572,7 @@ export namespace StoreFile {
|
|
|
572
572
|
| TextInputChunk.CodeChunkGeneratedMetadata
|
|
573
573
|
| TextInputChunk.AudioChunkGeneratedMetadata
|
|
574
574
|
| TextInputChunk.VideoChunkGeneratedMetadata
|
|
575
|
+
| TextInputChunk.ImageChunkGeneratedMetadata
|
|
575
576
|
| null;
|
|
576
577
|
|
|
577
578
|
/**
|
|
@@ -615,6 +616,8 @@ export namespace StoreFile {
|
|
|
615
616
|
|
|
616
617
|
num_lines?: number;
|
|
617
618
|
|
|
619
|
+
file_extension?: string | null;
|
|
620
|
+
|
|
618
621
|
frontmatter?: { [key: string]: unknown };
|
|
619
622
|
|
|
620
623
|
[k: string]: unknown;
|
|
@@ -649,6 +652,8 @@ export namespace StoreFile {
|
|
|
649
652
|
|
|
650
653
|
num_lines?: number;
|
|
651
654
|
|
|
655
|
+
file_extension?: string | null;
|
|
656
|
+
|
|
652
657
|
[k: string]: unknown;
|
|
653
658
|
}
|
|
654
659
|
|
|
@@ -661,6 +666,8 @@ export namespace StoreFile {
|
|
|
661
666
|
|
|
662
667
|
total_size: number;
|
|
663
668
|
|
|
669
|
+
file_extension?: string | null;
|
|
670
|
+
|
|
664
671
|
[k: string]: unknown;
|
|
665
672
|
}
|
|
666
673
|
|
|
@@ -679,6 +686,8 @@ export namespace StoreFile {
|
|
|
679
686
|
|
|
680
687
|
num_lines?: number;
|
|
681
688
|
|
|
689
|
+
file_extension?: string | null;
|
|
690
|
+
|
|
682
691
|
[k: string]: unknown;
|
|
683
692
|
}
|
|
684
693
|
|
|
@@ -697,6 +706,8 @@ export namespace StoreFile {
|
|
|
697
706
|
|
|
698
707
|
audio_format: number;
|
|
699
708
|
|
|
709
|
+
file_extension?: string | null;
|
|
710
|
+
|
|
700
711
|
[k: string]: unknown;
|
|
701
712
|
}
|
|
702
713
|
|
|
@@ -717,6 +728,26 @@ export namespace StoreFile {
|
|
|
717
728
|
|
|
718
729
|
frame_count: number;
|
|
719
730
|
|
|
731
|
+
has_audio_stream?: boolean;
|
|
732
|
+
|
|
733
|
+
file_extension?: string | null;
|
|
734
|
+
|
|
735
|
+
[k: string]: unknown;
|
|
736
|
+
}
|
|
737
|
+
|
|
738
|
+
export interface ImageChunkGeneratedMetadata {
|
|
739
|
+
type?: 'image';
|
|
740
|
+
|
|
741
|
+
file_type: string;
|
|
742
|
+
|
|
743
|
+
file_size: number;
|
|
744
|
+
|
|
745
|
+
width: number;
|
|
746
|
+
|
|
747
|
+
height: number;
|
|
748
|
+
|
|
749
|
+
file_extension?: string | null;
|
|
750
|
+
|
|
720
751
|
[k: string]: unknown;
|
|
721
752
|
}
|
|
722
753
|
}
|
|
@@ -742,6 +773,7 @@ export namespace StoreFile {
|
|
|
742
773
|
| ImageURLInputChunk.CodeChunkGeneratedMetadata
|
|
743
774
|
| ImageURLInputChunk.AudioChunkGeneratedMetadata
|
|
744
775
|
| ImageURLInputChunk.VideoChunkGeneratedMetadata
|
|
776
|
+
| ImageURLInputChunk.ImageChunkGeneratedMetadata
|
|
745
777
|
| null;
|
|
746
778
|
|
|
747
779
|
/**
|
|
@@ -790,6 +822,8 @@ export namespace StoreFile {
|
|
|
790
822
|
|
|
791
823
|
num_lines?: number;
|
|
792
824
|
|
|
825
|
+
file_extension?: string | null;
|
|
826
|
+
|
|
793
827
|
frontmatter?: { [key: string]: unknown };
|
|
794
828
|
|
|
795
829
|
[k: string]: unknown;
|
|
@@ -824,6 +858,8 @@ export namespace StoreFile {
|
|
|
824
858
|
|
|
825
859
|
num_lines?: number;
|
|
826
860
|
|
|
861
|
+
file_extension?: string | null;
|
|
862
|
+
|
|
827
863
|
[k: string]: unknown;
|
|
828
864
|
}
|
|
829
865
|
|
|
@@ -836,6 +872,8 @@ export namespace StoreFile {
|
|
|
836
872
|
|
|
837
873
|
total_size: number;
|
|
838
874
|
|
|
875
|
+
file_extension?: string | null;
|
|
876
|
+
|
|
839
877
|
[k: string]: unknown;
|
|
840
878
|
}
|
|
841
879
|
|
|
@@ -854,6 +892,8 @@ export namespace StoreFile {
|
|
|
854
892
|
|
|
855
893
|
num_lines?: number;
|
|
856
894
|
|
|
895
|
+
file_extension?: string | null;
|
|
896
|
+
|
|
857
897
|
[k: string]: unknown;
|
|
858
898
|
}
|
|
859
899
|
|
|
@@ -872,6 +912,8 @@ export namespace StoreFile {
|
|
|
872
912
|
|
|
873
913
|
audio_format: number;
|
|
874
914
|
|
|
915
|
+
file_extension?: string | null;
|
|
916
|
+
|
|
875
917
|
[k: string]: unknown;
|
|
876
918
|
}
|
|
877
919
|
|
|
@@ -892,6 +934,26 @@ export namespace StoreFile {
|
|
|
892
934
|
|
|
893
935
|
frame_count: number;
|
|
894
936
|
|
|
937
|
+
has_audio_stream?: boolean;
|
|
938
|
+
|
|
939
|
+
file_extension?: string | null;
|
|
940
|
+
|
|
941
|
+
[k: string]: unknown;
|
|
942
|
+
}
|
|
943
|
+
|
|
944
|
+
export interface ImageChunkGeneratedMetadata {
|
|
945
|
+
type?: 'image';
|
|
946
|
+
|
|
947
|
+
file_type: string;
|
|
948
|
+
|
|
949
|
+
file_size: number;
|
|
950
|
+
|
|
951
|
+
width: number;
|
|
952
|
+
|
|
953
|
+
height: number;
|
|
954
|
+
|
|
955
|
+
file_extension?: string | null;
|
|
956
|
+
|
|
895
957
|
[k: string]: unknown;
|
|
896
958
|
}
|
|
897
959
|
|
|
@@ -932,6 +994,7 @@ export namespace StoreFile {
|
|
|
932
994
|
| AudioURLInputChunk.CodeChunkGeneratedMetadata
|
|
933
995
|
| AudioURLInputChunk.AudioChunkGeneratedMetadata
|
|
934
996
|
| AudioURLInputChunk.VideoChunkGeneratedMetadata
|
|
997
|
+
| AudioURLInputChunk.ImageChunkGeneratedMetadata
|
|
935
998
|
| null;
|
|
936
999
|
|
|
937
1000
|
/**
|
|
@@ -985,6 +1048,8 @@ export namespace StoreFile {
|
|
|
985
1048
|
|
|
986
1049
|
num_lines?: number;
|
|
987
1050
|
|
|
1051
|
+
file_extension?: string | null;
|
|
1052
|
+
|
|
988
1053
|
frontmatter?: { [key: string]: unknown };
|
|
989
1054
|
|
|
990
1055
|
[k: string]: unknown;
|
|
@@ -1019,6 +1084,8 @@ export namespace StoreFile {
|
|
|
1019
1084
|
|
|
1020
1085
|
num_lines?: number;
|
|
1021
1086
|
|
|
1087
|
+
file_extension?: string | null;
|
|
1088
|
+
|
|
1022
1089
|
[k: string]: unknown;
|
|
1023
1090
|
}
|
|
1024
1091
|
|
|
@@ -1031,6 +1098,8 @@ export namespace StoreFile {
|
|
|
1031
1098
|
|
|
1032
1099
|
total_size: number;
|
|
1033
1100
|
|
|
1101
|
+
file_extension?: string | null;
|
|
1102
|
+
|
|
1034
1103
|
[k: string]: unknown;
|
|
1035
1104
|
}
|
|
1036
1105
|
|
|
@@ -1049,6 +1118,8 @@ export namespace StoreFile {
|
|
|
1049
1118
|
|
|
1050
1119
|
num_lines?: number;
|
|
1051
1120
|
|
|
1121
|
+
file_extension?: string | null;
|
|
1122
|
+
|
|
1052
1123
|
[k: string]: unknown;
|
|
1053
1124
|
}
|
|
1054
1125
|
|
|
@@ -1067,6 +1138,8 @@ export namespace StoreFile {
|
|
|
1067
1138
|
|
|
1068
1139
|
audio_format: number;
|
|
1069
1140
|
|
|
1141
|
+
file_extension?: string | null;
|
|
1142
|
+
|
|
1070
1143
|
[k: string]: unknown;
|
|
1071
1144
|
}
|
|
1072
1145
|
|
|
@@ -1087,6 +1160,26 @@ export namespace StoreFile {
|
|
|
1087
1160
|
|
|
1088
1161
|
frame_count: number;
|
|
1089
1162
|
|
|
1163
|
+
has_audio_stream?: boolean;
|
|
1164
|
+
|
|
1165
|
+
file_extension?: string | null;
|
|
1166
|
+
|
|
1167
|
+
[k: string]: unknown;
|
|
1168
|
+
}
|
|
1169
|
+
|
|
1170
|
+
export interface ImageChunkGeneratedMetadata {
|
|
1171
|
+
type?: 'image';
|
|
1172
|
+
|
|
1173
|
+
file_type: string;
|
|
1174
|
+
|
|
1175
|
+
file_size: number;
|
|
1176
|
+
|
|
1177
|
+
width: number;
|
|
1178
|
+
|
|
1179
|
+
height: number;
|
|
1180
|
+
|
|
1181
|
+
file_extension?: string | null;
|
|
1182
|
+
|
|
1090
1183
|
[k: string]: unknown;
|
|
1091
1184
|
}
|
|
1092
1185
|
|
|
@@ -1122,6 +1215,7 @@ export namespace StoreFile {
|
|
|
1122
1215
|
| VideoURLInputChunk.CodeChunkGeneratedMetadata
|
|
1123
1216
|
| VideoURLInputChunk.AudioChunkGeneratedMetadata
|
|
1124
1217
|
| VideoURLInputChunk.VideoChunkGeneratedMetadata
|
|
1218
|
+
| VideoURLInputChunk.ImageChunkGeneratedMetadata
|
|
1125
1219
|
| null;
|
|
1126
1220
|
|
|
1127
1221
|
/**
|
|
@@ -1170,6 +1264,8 @@ export namespace StoreFile {
|
|
|
1170
1264
|
|
|
1171
1265
|
num_lines?: number;
|
|
1172
1266
|
|
|
1267
|
+
file_extension?: string | null;
|
|
1268
|
+
|
|
1173
1269
|
frontmatter?: { [key: string]: unknown };
|
|
1174
1270
|
|
|
1175
1271
|
[k: string]: unknown;
|
|
@@ -1204,6 +1300,8 @@ export namespace StoreFile {
|
|
|
1204
1300
|
|
|
1205
1301
|
num_lines?: number;
|
|
1206
1302
|
|
|
1303
|
+
file_extension?: string | null;
|
|
1304
|
+
|
|
1207
1305
|
[k: string]: unknown;
|
|
1208
1306
|
}
|
|
1209
1307
|
|
|
@@ -1216,6 +1314,8 @@ export namespace StoreFile {
|
|
|
1216
1314
|
|
|
1217
1315
|
total_size: number;
|
|
1218
1316
|
|
|
1317
|
+
file_extension?: string | null;
|
|
1318
|
+
|
|
1219
1319
|
[k: string]: unknown;
|
|
1220
1320
|
}
|
|
1221
1321
|
|
|
@@ -1234,6 +1334,8 @@ export namespace StoreFile {
|
|
|
1234
1334
|
|
|
1235
1335
|
num_lines?: number;
|
|
1236
1336
|
|
|
1337
|
+
file_extension?: string | null;
|
|
1338
|
+
|
|
1237
1339
|
[k: string]: unknown;
|
|
1238
1340
|
}
|
|
1239
1341
|
|
|
@@ -1252,6 +1354,8 @@ export namespace StoreFile {
|
|
|
1252
1354
|
|
|
1253
1355
|
audio_format: number;
|
|
1254
1356
|
|
|
1357
|
+
file_extension?: string | null;
|
|
1358
|
+
|
|
1255
1359
|
[k: string]: unknown;
|
|
1256
1360
|
}
|
|
1257
1361
|
|
|
@@ -1272,6 +1376,26 @@ export namespace StoreFile {
|
|
|
1272
1376
|
|
|
1273
1377
|
frame_count: number;
|
|
1274
1378
|
|
|
1379
|
+
has_audio_stream?: boolean;
|
|
1380
|
+
|
|
1381
|
+
file_extension?: string | null;
|
|
1382
|
+
|
|
1383
|
+
[k: string]: unknown;
|
|
1384
|
+
}
|
|
1385
|
+
|
|
1386
|
+
export interface ImageChunkGeneratedMetadata {
|
|
1387
|
+
type?: 'image';
|
|
1388
|
+
|
|
1389
|
+
file_type: string;
|
|
1390
|
+
|
|
1391
|
+
file_size: number;
|
|
1392
|
+
|
|
1393
|
+
width: number;
|
|
1394
|
+
|
|
1395
|
+
height: number;
|
|
1396
|
+
|
|
1397
|
+
file_extension?: string | null;
|
|
1398
|
+
|
|
1275
1399
|
[k: string]: unknown;
|
|
1276
1400
|
}
|
|
1277
1401
|
|
|
@@ -174,6 +174,7 @@ export interface ScoredAudioURLInputChunk {
|
|
|
174
174
|
| ScoredAudioURLInputChunk.CodeChunkGeneratedMetadata
|
|
175
175
|
| ScoredAudioURLInputChunk.AudioChunkGeneratedMetadata
|
|
176
176
|
| ScoredAudioURLInputChunk.VideoChunkGeneratedMetadata
|
|
177
|
+
| ScoredAudioURLInputChunk.ImageChunkGeneratedMetadata
|
|
177
178
|
| null;
|
|
178
179
|
|
|
179
180
|
/**
|
|
@@ -201,6 +202,11 @@ export interface ScoredAudioURLInputChunk {
|
|
|
201
202
|
*/
|
|
202
203
|
store_id: string;
|
|
203
204
|
|
|
205
|
+
/**
|
|
206
|
+
* external identifier for this file
|
|
207
|
+
*/
|
|
208
|
+
external_id?: string | null;
|
|
209
|
+
|
|
204
210
|
/**
|
|
205
211
|
* file metadata
|
|
206
212
|
*/
|
|
@@ -252,6 +258,8 @@ export namespace ScoredAudioURLInputChunk {
|
|
|
252
258
|
|
|
253
259
|
num_lines?: number;
|
|
254
260
|
|
|
261
|
+
file_extension?: string | null;
|
|
262
|
+
|
|
255
263
|
frontmatter?: { [key: string]: unknown };
|
|
256
264
|
|
|
257
265
|
[k: string]: unknown;
|
|
@@ -286,6 +294,8 @@ export namespace ScoredAudioURLInputChunk {
|
|
|
286
294
|
|
|
287
295
|
num_lines?: number;
|
|
288
296
|
|
|
297
|
+
file_extension?: string | null;
|
|
298
|
+
|
|
289
299
|
[k: string]: unknown;
|
|
290
300
|
}
|
|
291
301
|
|
|
@@ -298,6 +308,8 @@ export namespace ScoredAudioURLInputChunk {
|
|
|
298
308
|
|
|
299
309
|
total_size: number;
|
|
300
310
|
|
|
311
|
+
file_extension?: string | null;
|
|
312
|
+
|
|
301
313
|
[k: string]: unknown;
|
|
302
314
|
}
|
|
303
315
|
|
|
@@ -316,6 +328,8 @@ export namespace ScoredAudioURLInputChunk {
|
|
|
316
328
|
|
|
317
329
|
num_lines?: number;
|
|
318
330
|
|
|
331
|
+
file_extension?: string | null;
|
|
332
|
+
|
|
319
333
|
[k: string]: unknown;
|
|
320
334
|
}
|
|
321
335
|
|
|
@@ -334,6 +348,8 @@ export namespace ScoredAudioURLInputChunk {
|
|
|
334
348
|
|
|
335
349
|
audio_format: number;
|
|
336
350
|
|
|
351
|
+
file_extension?: string | null;
|
|
352
|
+
|
|
337
353
|
[k: string]: unknown;
|
|
338
354
|
}
|
|
339
355
|
|
|
@@ -354,6 +370,26 @@ export namespace ScoredAudioURLInputChunk {
|
|
|
354
370
|
|
|
355
371
|
frame_count: number;
|
|
356
372
|
|
|
373
|
+
has_audio_stream?: boolean;
|
|
374
|
+
|
|
375
|
+
file_extension?: string | null;
|
|
376
|
+
|
|
377
|
+
[k: string]: unknown;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
export interface ImageChunkGeneratedMetadata {
|
|
381
|
+
type?: 'image';
|
|
382
|
+
|
|
383
|
+
file_type: string;
|
|
384
|
+
|
|
385
|
+
file_size: number;
|
|
386
|
+
|
|
387
|
+
width: number;
|
|
388
|
+
|
|
389
|
+
height: number;
|
|
390
|
+
|
|
391
|
+
file_extension?: string | null;
|
|
392
|
+
|
|
357
393
|
[k: string]: unknown;
|
|
358
394
|
}
|
|
359
395
|
|
|
@@ -389,6 +425,7 @@ export interface ScoredImageURLInputChunk {
|
|
|
389
425
|
| ScoredImageURLInputChunk.CodeChunkGeneratedMetadata
|
|
390
426
|
| ScoredImageURLInputChunk.AudioChunkGeneratedMetadata
|
|
391
427
|
| ScoredImageURLInputChunk.VideoChunkGeneratedMetadata
|
|
428
|
+
| ScoredImageURLInputChunk.ImageChunkGeneratedMetadata
|
|
392
429
|
| null;
|
|
393
430
|
|
|
394
431
|
/**
|
|
@@ -416,6 +453,11 @@ export interface ScoredImageURLInputChunk {
|
|
|
416
453
|
*/
|
|
417
454
|
store_id: string;
|
|
418
455
|
|
|
456
|
+
/**
|
|
457
|
+
* external identifier for this file
|
|
458
|
+
*/
|
|
459
|
+
external_id?: string | null;
|
|
460
|
+
|
|
419
461
|
/**
|
|
420
462
|
* file metadata
|
|
421
463
|
*/
|
|
@@ -462,6 +504,8 @@ export namespace ScoredImageURLInputChunk {
|
|
|
462
504
|
|
|
463
505
|
num_lines?: number;
|
|
464
506
|
|
|
507
|
+
file_extension?: string | null;
|
|
508
|
+
|
|
465
509
|
frontmatter?: { [key: string]: unknown };
|
|
466
510
|
|
|
467
511
|
[k: string]: unknown;
|
|
@@ -496,6 +540,8 @@ export namespace ScoredImageURLInputChunk {
|
|
|
496
540
|
|
|
497
541
|
num_lines?: number;
|
|
498
542
|
|
|
543
|
+
file_extension?: string | null;
|
|
544
|
+
|
|
499
545
|
[k: string]: unknown;
|
|
500
546
|
}
|
|
501
547
|
|
|
@@ -508,6 +554,8 @@ export namespace ScoredImageURLInputChunk {
|
|
|
508
554
|
|
|
509
555
|
total_size: number;
|
|
510
556
|
|
|
557
|
+
file_extension?: string | null;
|
|
558
|
+
|
|
511
559
|
[k: string]: unknown;
|
|
512
560
|
}
|
|
513
561
|
|
|
@@ -526,6 +574,8 @@ export namespace ScoredImageURLInputChunk {
|
|
|
526
574
|
|
|
527
575
|
num_lines?: number;
|
|
528
576
|
|
|
577
|
+
file_extension?: string | null;
|
|
578
|
+
|
|
529
579
|
[k: string]: unknown;
|
|
530
580
|
}
|
|
531
581
|
|
|
@@ -544,6 +594,8 @@ export namespace ScoredImageURLInputChunk {
|
|
|
544
594
|
|
|
545
595
|
audio_format: number;
|
|
546
596
|
|
|
597
|
+
file_extension?: string | null;
|
|
598
|
+
|
|
547
599
|
[k: string]: unknown;
|
|
548
600
|
}
|
|
549
601
|
|
|
@@ -564,6 +616,26 @@ export namespace ScoredImageURLInputChunk {
|
|
|
564
616
|
|
|
565
617
|
frame_count: number;
|
|
566
618
|
|
|
619
|
+
has_audio_stream?: boolean;
|
|
620
|
+
|
|
621
|
+
file_extension?: string | null;
|
|
622
|
+
|
|
623
|
+
[k: string]: unknown;
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
export interface ImageChunkGeneratedMetadata {
|
|
627
|
+
type?: 'image';
|
|
628
|
+
|
|
629
|
+
file_type: string;
|
|
630
|
+
|
|
631
|
+
file_size: number;
|
|
632
|
+
|
|
633
|
+
width: number;
|
|
634
|
+
|
|
635
|
+
height: number;
|
|
636
|
+
|
|
637
|
+
file_extension?: string | null;
|
|
638
|
+
|
|
567
639
|
[k: string]: unknown;
|
|
568
640
|
}
|
|
569
641
|
|
|
@@ -604,6 +676,7 @@ export interface ScoredTextInputChunk {
|
|
|
604
676
|
| ScoredTextInputChunk.CodeChunkGeneratedMetadata
|
|
605
677
|
| ScoredTextInputChunk.AudioChunkGeneratedMetadata
|
|
606
678
|
| ScoredTextInputChunk.VideoChunkGeneratedMetadata
|
|
679
|
+
| ScoredTextInputChunk.ImageChunkGeneratedMetadata
|
|
607
680
|
| null;
|
|
608
681
|
|
|
609
682
|
/**
|
|
@@ -631,6 +704,11 @@ export interface ScoredTextInputChunk {
|
|
|
631
704
|
*/
|
|
632
705
|
store_id: string;
|
|
633
706
|
|
|
707
|
+
/**
|
|
708
|
+
* external identifier for this file
|
|
709
|
+
*/
|
|
710
|
+
external_id?: string | null;
|
|
711
|
+
|
|
634
712
|
/**
|
|
635
713
|
* file metadata
|
|
636
714
|
*/
|
|
@@ -672,6 +750,8 @@ export namespace ScoredTextInputChunk {
|
|
|
672
750
|
|
|
673
751
|
num_lines?: number;
|
|
674
752
|
|
|
753
|
+
file_extension?: string | null;
|
|
754
|
+
|
|
675
755
|
frontmatter?: { [key: string]: unknown };
|
|
676
756
|
|
|
677
757
|
[k: string]: unknown;
|
|
@@ -706,6 +786,8 @@ export namespace ScoredTextInputChunk {
|
|
|
706
786
|
|
|
707
787
|
num_lines?: number;
|
|
708
788
|
|
|
789
|
+
file_extension?: string | null;
|
|
790
|
+
|
|
709
791
|
[k: string]: unknown;
|
|
710
792
|
}
|
|
711
793
|
|
|
@@ -718,6 +800,8 @@ export namespace ScoredTextInputChunk {
|
|
|
718
800
|
|
|
719
801
|
total_size: number;
|
|
720
802
|
|
|
803
|
+
file_extension?: string | null;
|
|
804
|
+
|
|
721
805
|
[k: string]: unknown;
|
|
722
806
|
}
|
|
723
807
|
|
|
@@ -736,6 +820,8 @@ export namespace ScoredTextInputChunk {
|
|
|
736
820
|
|
|
737
821
|
num_lines?: number;
|
|
738
822
|
|
|
823
|
+
file_extension?: string | null;
|
|
824
|
+
|
|
739
825
|
[k: string]: unknown;
|
|
740
826
|
}
|
|
741
827
|
|
|
@@ -754,6 +840,8 @@ export namespace ScoredTextInputChunk {
|
|
|
754
840
|
|
|
755
841
|
audio_format: number;
|
|
756
842
|
|
|
843
|
+
file_extension?: string | null;
|
|
844
|
+
|
|
757
845
|
[k: string]: unknown;
|
|
758
846
|
}
|
|
759
847
|
|
|
@@ -774,6 +862,26 @@ export namespace ScoredTextInputChunk {
|
|
|
774
862
|
|
|
775
863
|
frame_count: number;
|
|
776
864
|
|
|
865
|
+
has_audio_stream?: boolean;
|
|
866
|
+
|
|
867
|
+
file_extension?: string | null;
|
|
868
|
+
|
|
869
|
+
[k: string]: unknown;
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
export interface ImageChunkGeneratedMetadata {
|
|
873
|
+
type?: 'image';
|
|
874
|
+
|
|
875
|
+
file_type: string;
|
|
876
|
+
|
|
877
|
+
file_size: number;
|
|
878
|
+
|
|
879
|
+
width: number;
|
|
880
|
+
|
|
881
|
+
height: number;
|
|
882
|
+
|
|
883
|
+
file_extension?: string | null;
|
|
884
|
+
|
|
777
885
|
[k: string]: unknown;
|
|
778
886
|
}
|
|
779
887
|
}
|
|
@@ -799,6 +907,7 @@ export interface ScoredVideoURLInputChunk {
|
|
|
799
907
|
| ScoredVideoURLInputChunk.CodeChunkGeneratedMetadata
|
|
800
908
|
| ScoredVideoURLInputChunk.AudioChunkGeneratedMetadata
|
|
801
909
|
| ScoredVideoURLInputChunk.VideoChunkGeneratedMetadata
|
|
910
|
+
| ScoredVideoURLInputChunk.ImageChunkGeneratedMetadata
|
|
802
911
|
| null;
|
|
803
912
|
|
|
804
913
|
/**
|
|
@@ -826,6 +935,11 @@ export interface ScoredVideoURLInputChunk {
|
|
|
826
935
|
*/
|
|
827
936
|
store_id: string;
|
|
828
937
|
|
|
938
|
+
/**
|
|
939
|
+
* external identifier for this file
|
|
940
|
+
*/
|
|
941
|
+
external_id?: string | null;
|
|
942
|
+
|
|
829
943
|
/**
|
|
830
944
|
* file metadata
|
|
831
945
|
*/
|
|
@@ -872,6 +986,8 @@ export namespace ScoredVideoURLInputChunk {
|
|
|
872
986
|
|
|
873
987
|
num_lines?: number;
|
|
874
988
|
|
|
989
|
+
file_extension?: string | null;
|
|
990
|
+
|
|
875
991
|
frontmatter?: { [key: string]: unknown };
|
|
876
992
|
|
|
877
993
|
[k: string]: unknown;
|
|
@@ -906,6 +1022,8 @@ export namespace ScoredVideoURLInputChunk {
|
|
|
906
1022
|
|
|
907
1023
|
num_lines?: number;
|
|
908
1024
|
|
|
1025
|
+
file_extension?: string | null;
|
|
1026
|
+
|
|
909
1027
|
[k: string]: unknown;
|
|
910
1028
|
}
|
|
911
1029
|
|
|
@@ -918,6 +1036,8 @@ export namespace ScoredVideoURLInputChunk {
|
|
|
918
1036
|
|
|
919
1037
|
total_size: number;
|
|
920
1038
|
|
|
1039
|
+
file_extension?: string | null;
|
|
1040
|
+
|
|
921
1041
|
[k: string]: unknown;
|
|
922
1042
|
}
|
|
923
1043
|
|
|
@@ -936,6 +1056,8 @@ export namespace ScoredVideoURLInputChunk {
|
|
|
936
1056
|
|
|
937
1057
|
num_lines?: number;
|
|
938
1058
|
|
|
1059
|
+
file_extension?: string | null;
|
|
1060
|
+
|
|
939
1061
|
[k: string]: unknown;
|
|
940
1062
|
}
|
|
941
1063
|
|
|
@@ -954,6 +1076,8 @@ export namespace ScoredVideoURLInputChunk {
|
|
|
954
1076
|
|
|
955
1077
|
audio_format: number;
|
|
956
1078
|
|
|
1079
|
+
file_extension?: string | null;
|
|
1080
|
+
|
|
957
1081
|
[k: string]: unknown;
|
|
958
1082
|
}
|
|
959
1083
|
|
|
@@ -974,6 +1098,26 @@ export namespace ScoredVideoURLInputChunk {
|
|
|
974
1098
|
|
|
975
1099
|
frame_count: number;
|
|
976
1100
|
|
|
1101
|
+
has_audio_stream?: boolean;
|
|
1102
|
+
|
|
1103
|
+
file_extension?: string | null;
|
|
1104
|
+
|
|
1105
|
+
[k: string]: unknown;
|
|
1106
|
+
}
|
|
1107
|
+
|
|
1108
|
+
export interface ImageChunkGeneratedMetadata {
|
|
1109
|
+
type?: 'image';
|
|
1110
|
+
|
|
1111
|
+
file_type: string;
|
|
1112
|
+
|
|
1113
|
+
file_size: number;
|
|
1114
|
+
|
|
1115
|
+
width: number;
|
|
1116
|
+
|
|
1117
|
+
height: number;
|
|
1118
|
+
|
|
1119
|
+
file_extension?: string | null;
|
|
1120
|
+
|
|
977
1121
|
[k: string]: unknown;
|
|
978
1122
|
}
|
|
979
1123
|
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.53.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.53.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.53.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.53.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|