@mixedbread/sdk 0.51.0 → 0.52.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 +194 -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 +4 -0
- package/resources/stores/files.d.mts.map +1 -1
- package/resources/stores/files.d.ts +4 -0
- package/resources/stores/files.d.ts.map +1 -1
- package/resources/stores/stores.d.mts +20 -0
- package/resources/stores/stores.d.mts.map +1 -1
- package/resources/stores/stores.d.ts +20 -0
- 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 +8 -0
- package/src/resources/stores/stores.ts +28 -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
|
@@ -201,6 +201,11 @@ export interface ScoredAudioURLInputChunk {
|
|
|
201
201
|
*/
|
|
202
202
|
store_id: string;
|
|
203
203
|
|
|
204
|
+
/**
|
|
205
|
+
* external identifier for this file
|
|
206
|
+
*/
|
|
207
|
+
external_id?: string | null;
|
|
208
|
+
|
|
204
209
|
/**
|
|
205
210
|
* file metadata
|
|
206
211
|
*/
|
|
@@ -354,6 +359,8 @@ export namespace ScoredAudioURLInputChunk {
|
|
|
354
359
|
|
|
355
360
|
frame_count: number;
|
|
356
361
|
|
|
362
|
+
has_audio_stream?: boolean;
|
|
363
|
+
|
|
357
364
|
[k: string]: unknown;
|
|
358
365
|
}
|
|
359
366
|
|
|
@@ -416,6 +423,11 @@ export interface ScoredImageURLInputChunk {
|
|
|
416
423
|
*/
|
|
417
424
|
store_id: string;
|
|
418
425
|
|
|
426
|
+
/**
|
|
427
|
+
* external identifier for this file
|
|
428
|
+
*/
|
|
429
|
+
external_id?: string | null;
|
|
430
|
+
|
|
419
431
|
/**
|
|
420
432
|
* file metadata
|
|
421
433
|
*/
|
|
@@ -564,6 +576,8 @@ export namespace ScoredImageURLInputChunk {
|
|
|
564
576
|
|
|
565
577
|
frame_count: number;
|
|
566
578
|
|
|
579
|
+
has_audio_stream?: boolean;
|
|
580
|
+
|
|
567
581
|
[k: string]: unknown;
|
|
568
582
|
}
|
|
569
583
|
|
|
@@ -631,6 +645,11 @@ export interface ScoredTextInputChunk {
|
|
|
631
645
|
*/
|
|
632
646
|
store_id: string;
|
|
633
647
|
|
|
648
|
+
/**
|
|
649
|
+
* external identifier for this file
|
|
650
|
+
*/
|
|
651
|
+
external_id?: string | null;
|
|
652
|
+
|
|
634
653
|
/**
|
|
635
654
|
* file metadata
|
|
636
655
|
*/
|
|
@@ -774,6 +793,8 @@ export namespace ScoredTextInputChunk {
|
|
|
774
793
|
|
|
775
794
|
frame_count: number;
|
|
776
795
|
|
|
796
|
+
has_audio_stream?: boolean;
|
|
797
|
+
|
|
777
798
|
[k: string]: unknown;
|
|
778
799
|
}
|
|
779
800
|
}
|
|
@@ -826,6 +847,11 @@ export interface ScoredVideoURLInputChunk {
|
|
|
826
847
|
*/
|
|
827
848
|
store_id: string;
|
|
828
849
|
|
|
850
|
+
/**
|
|
851
|
+
* external identifier for this file
|
|
852
|
+
*/
|
|
853
|
+
external_id?: string | null;
|
|
854
|
+
|
|
829
855
|
/**
|
|
830
856
|
* file metadata
|
|
831
857
|
*/
|
|
@@ -974,6 +1000,8 @@ export namespace ScoredVideoURLInputChunk {
|
|
|
974
1000
|
|
|
975
1001
|
frame_count: number;
|
|
976
1002
|
|
|
1003
|
+
has_audio_stream?: boolean;
|
|
1004
|
+
|
|
977
1005
|
[k: string]: unknown;
|
|
978
1006
|
}
|
|
979
1007
|
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.52.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.52.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.52.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.52.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|