@mixedbread/sdk 0.52.0 → 0.53.1
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 +21 -0
- package/package.json +1 -1
- package/resources/stores/files.d.mts +64 -4
- package/resources/stores/files.d.mts.map +1 -1
- package/resources/stores/files.d.ts +64 -4
- package/resources/stores/files.d.ts.map +1 -1
- package/resources/stores/stores.d.mts +64 -4
- package/resources/stores/stores.d.mts.map +1 -1
- package/resources/stores/stores.d.ts +64 -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/resources/stores/files.ts +116 -0
- package/src/resources/stores/stores.ts +116 -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
|
@@ -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
|
/**
|
|
@@ -257,6 +258,8 @@ export namespace ScoredAudioURLInputChunk {
|
|
|
257
258
|
|
|
258
259
|
num_lines?: number;
|
|
259
260
|
|
|
261
|
+
file_extension?: string | null;
|
|
262
|
+
|
|
260
263
|
frontmatter?: { [key: string]: unknown };
|
|
261
264
|
|
|
262
265
|
[k: string]: unknown;
|
|
@@ -291,6 +294,8 @@ export namespace ScoredAudioURLInputChunk {
|
|
|
291
294
|
|
|
292
295
|
num_lines?: number;
|
|
293
296
|
|
|
297
|
+
file_extension?: string | null;
|
|
298
|
+
|
|
294
299
|
[k: string]: unknown;
|
|
295
300
|
}
|
|
296
301
|
|
|
@@ -303,6 +308,8 @@ export namespace ScoredAudioURLInputChunk {
|
|
|
303
308
|
|
|
304
309
|
total_size: number;
|
|
305
310
|
|
|
311
|
+
file_extension?: string | null;
|
|
312
|
+
|
|
306
313
|
[k: string]: unknown;
|
|
307
314
|
}
|
|
308
315
|
|
|
@@ -321,6 +328,8 @@ export namespace ScoredAudioURLInputChunk {
|
|
|
321
328
|
|
|
322
329
|
num_lines?: number;
|
|
323
330
|
|
|
331
|
+
file_extension?: string | null;
|
|
332
|
+
|
|
324
333
|
[k: string]: unknown;
|
|
325
334
|
}
|
|
326
335
|
|
|
@@ -339,6 +348,8 @@ export namespace ScoredAudioURLInputChunk {
|
|
|
339
348
|
|
|
340
349
|
audio_format: number;
|
|
341
350
|
|
|
351
|
+
file_extension?: string | null;
|
|
352
|
+
|
|
342
353
|
[k: string]: unknown;
|
|
343
354
|
}
|
|
344
355
|
|
|
@@ -361,6 +372,24 @@ export namespace ScoredAudioURLInputChunk {
|
|
|
361
372
|
|
|
362
373
|
has_audio_stream?: boolean;
|
|
363
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
|
+
|
|
364
393
|
[k: string]: unknown;
|
|
365
394
|
}
|
|
366
395
|
|
|
@@ -396,6 +425,7 @@ export interface ScoredImageURLInputChunk {
|
|
|
396
425
|
| ScoredImageURLInputChunk.CodeChunkGeneratedMetadata
|
|
397
426
|
| ScoredImageURLInputChunk.AudioChunkGeneratedMetadata
|
|
398
427
|
| ScoredImageURLInputChunk.VideoChunkGeneratedMetadata
|
|
428
|
+
| ScoredImageURLInputChunk.ImageChunkGeneratedMetadata
|
|
399
429
|
| null;
|
|
400
430
|
|
|
401
431
|
/**
|
|
@@ -474,6 +504,8 @@ export namespace ScoredImageURLInputChunk {
|
|
|
474
504
|
|
|
475
505
|
num_lines?: number;
|
|
476
506
|
|
|
507
|
+
file_extension?: string | null;
|
|
508
|
+
|
|
477
509
|
frontmatter?: { [key: string]: unknown };
|
|
478
510
|
|
|
479
511
|
[k: string]: unknown;
|
|
@@ -508,6 +540,8 @@ export namespace ScoredImageURLInputChunk {
|
|
|
508
540
|
|
|
509
541
|
num_lines?: number;
|
|
510
542
|
|
|
543
|
+
file_extension?: string | null;
|
|
544
|
+
|
|
511
545
|
[k: string]: unknown;
|
|
512
546
|
}
|
|
513
547
|
|
|
@@ -520,6 +554,8 @@ export namespace ScoredImageURLInputChunk {
|
|
|
520
554
|
|
|
521
555
|
total_size: number;
|
|
522
556
|
|
|
557
|
+
file_extension?: string | null;
|
|
558
|
+
|
|
523
559
|
[k: string]: unknown;
|
|
524
560
|
}
|
|
525
561
|
|
|
@@ -538,6 +574,8 @@ export namespace ScoredImageURLInputChunk {
|
|
|
538
574
|
|
|
539
575
|
num_lines?: number;
|
|
540
576
|
|
|
577
|
+
file_extension?: string | null;
|
|
578
|
+
|
|
541
579
|
[k: string]: unknown;
|
|
542
580
|
}
|
|
543
581
|
|
|
@@ -556,6 +594,8 @@ export namespace ScoredImageURLInputChunk {
|
|
|
556
594
|
|
|
557
595
|
audio_format: number;
|
|
558
596
|
|
|
597
|
+
file_extension?: string | null;
|
|
598
|
+
|
|
559
599
|
[k: string]: unknown;
|
|
560
600
|
}
|
|
561
601
|
|
|
@@ -578,6 +618,24 @@ export namespace ScoredImageURLInputChunk {
|
|
|
578
618
|
|
|
579
619
|
has_audio_stream?: boolean;
|
|
580
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
|
+
|
|
581
639
|
[k: string]: unknown;
|
|
582
640
|
}
|
|
583
641
|
|
|
@@ -618,6 +676,7 @@ export interface ScoredTextInputChunk {
|
|
|
618
676
|
| ScoredTextInputChunk.CodeChunkGeneratedMetadata
|
|
619
677
|
| ScoredTextInputChunk.AudioChunkGeneratedMetadata
|
|
620
678
|
| ScoredTextInputChunk.VideoChunkGeneratedMetadata
|
|
679
|
+
| ScoredTextInputChunk.ImageChunkGeneratedMetadata
|
|
621
680
|
| null;
|
|
622
681
|
|
|
623
682
|
/**
|
|
@@ -691,6 +750,8 @@ export namespace ScoredTextInputChunk {
|
|
|
691
750
|
|
|
692
751
|
num_lines?: number;
|
|
693
752
|
|
|
753
|
+
file_extension?: string | null;
|
|
754
|
+
|
|
694
755
|
frontmatter?: { [key: string]: unknown };
|
|
695
756
|
|
|
696
757
|
[k: string]: unknown;
|
|
@@ -725,6 +786,8 @@ export namespace ScoredTextInputChunk {
|
|
|
725
786
|
|
|
726
787
|
num_lines?: number;
|
|
727
788
|
|
|
789
|
+
file_extension?: string | null;
|
|
790
|
+
|
|
728
791
|
[k: string]: unknown;
|
|
729
792
|
}
|
|
730
793
|
|
|
@@ -737,6 +800,8 @@ export namespace ScoredTextInputChunk {
|
|
|
737
800
|
|
|
738
801
|
total_size: number;
|
|
739
802
|
|
|
803
|
+
file_extension?: string | null;
|
|
804
|
+
|
|
740
805
|
[k: string]: unknown;
|
|
741
806
|
}
|
|
742
807
|
|
|
@@ -755,6 +820,8 @@ export namespace ScoredTextInputChunk {
|
|
|
755
820
|
|
|
756
821
|
num_lines?: number;
|
|
757
822
|
|
|
823
|
+
file_extension?: string | null;
|
|
824
|
+
|
|
758
825
|
[k: string]: unknown;
|
|
759
826
|
}
|
|
760
827
|
|
|
@@ -773,6 +840,8 @@ export namespace ScoredTextInputChunk {
|
|
|
773
840
|
|
|
774
841
|
audio_format: number;
|
|
775
842
|
|
|
843
|
+
file_extension?: string | null;
|
|
844
|
+
|
|
776
845
|
[k: string]: unknown;
|
|
777
846
|
}
|
|
778
847
|
|
|
@@ -795,6 +864,24 @@ export namespace ScoredTextInputChunk {
|
|
|
795
864
|
|
|
796
865
|
has_audio_stream?: boolean;
|
|
797
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
|
+
|
|
798
885
|
[k: string]: unknown;
|
|
799
886
|
}
|
|
800
887
|
}
|
|
@@ -820,6 +907,7 @@ export interface ScoredVideoURLInputChunk {
|
|
|
820
907
|
| ScoredVideoURLInputChunk.CodeChunkGeneratedMetadata
|
|
821
908
|
| ScoredVideoURLInputChunk.AudioChunkGeneratedMetadata
|
|
822
909
|
| ScoredVideoURLInputChunk.VideoChunkGeneratedMetadata
|
|
910
|
+
| ScoredVideoURLInputChunk.ImageChunkGeneratedMetadata
|
|
823
911
|
| null;
|
|
824
912
|
|
|
825
913
|
/**
|
|
@@ -898,6 +986,8 @@ export namespace ScoredVideoURLInputChunk {
|
|
|
898
986
|
|
|
899
987
|
num_lines?: number;
|
|
900
988
|
|
|
989
|
+
file_extension?: string | null;
|
|
990
|
+
|
|
901
991
|
frontmatter?: { [key: string]: unknown };
|
|
902
992
|
|
|
903
993
|
[k: string]: unknown;
|
|
@@ -932,6 +1022,8 @@ export namespace ScoredVideoURLInputChunk {
|
|
|
932
1022
|
|
|
933
1023
|
num_lines?: number;
|
|
934
1024
|
|
|
1025
|
+
file_extension?: string | null;
|
|
1026
|
+
|
|
935
1027
|
[k: string]: unknown;
|
|
936
1028
|
}
|
|
937
1029
|
|
|
@@ -944,6 +1036,8 @@ export namespace ScoredVideoURLInputChunk {
|
|
|
944
1036
|
|
|
945
1037
|
total_size: number;
|
|
946
1038
|
|
|
1039
|
+
file_extension?: string | null;
|
|
1040
|
+
|
|
947
1041
|
[k: string]: unknown;
|
|
948
1042
|
}
|
|
949
1043
|
|
|
@@ -962,6 +1056,8 @@ export namespace ScoredVideoURLInputChunk {
|
|
|
962
1056
|
|
|
963
1057
|
num_lines?: number;
|
|
964
1058
|
|
|
1059
|
+
file_extension?: string | null;
|
|
1060
|
+
|
|
965
1061
|
[k: string]: unknown;
|
|
966
1062
|
}
|
|
967
1063
|
|
|
@@ -980,6 +1076,8 @@ export namespace ScoredVideoURLInputChunk {
|
|
|
980
1076
|
|
|
981
1077
|
audio_format: number;
|
|
982
1078
|
|
|
1079
|
+
file_extension?: string | null;
|
|
1080
|
+
|
|
983
1081
|
[k: string]: unknown;
|
|
984
1082
|
}
|
|
985
1083
|
|
|
@@ -1002,6 +1100,24 @@ export namespace ScoredVideoURLInputChunk {
|
|
|
1002
1100
|
|
|
1003
1101
|
has_audio_stream?: boolean;
|
|
1004
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
|
+
|
|
1005
1121
|
[k: string]: unknown;
|
|
1006
1122
|
}
|
|
1007
1123
|
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.53.1'; // 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.1";
|
|
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.1";
|
|
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.1'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|