@opengeni/contracts 0.36.0 → 0.37.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/{chunk-F4KMLKSL.js → chunk-WVE7RAHN.js} +2 -2
- package/dist/chunk-WVE7RAHN.js.map +1 -0
- package/dist/chunk-WYBDERIY.js +102 -0
- package/dist/chunk-WYBDERIY.js.map +1 -0
- package/dist/connector-destinations.d.ts +48 -0
- package/dist/connector-destinations.js +21 -0
- package/dist/connector-destinations.js.map +1 -0
- package/dist/google-drive.d.ts +61 -8
- package/dist/google-drive.js +14 -3
- package/dist/google-drive.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +19 -1
- package/package.json +5 -1
- package/src/connector-destinations.ts +132 -0
- package/src/google-drive.ts +32 -18
- package/src/index.ts +7 -2
- package/dist/chunk-F4KMLKSL.js.map +0 -1
|
@@ -3844,7 +3844,7 @@ var WorkspaceVoiceInputSettings = z7.object({
|
|
|
3844
3844
|
var ClientVoiceInputConfig = z7.object({
|
|
3845
3845
|
available: z7.boolean(),
|
|
3846
3846
|
maxDurationSeconds: z7.number().int().positive().max(600),
|
|
3847
|
-
maxSizeBytes: z7.number().int().positive(),
|
|
3847
|
+
maxSizeBytes: z7.number().int().positive().max(25 * 1024 * 1024),
|
|
3848
3848
|
acceptedMimeTypes: z7.array(z7.string().trim().min(1).max(128)).min(1).max(32)
|
|
3849
3849
|
}).strict();
|
|
3850
3850
|
var TranscribeAudioResponse = z7.object({
|
|
@@ -10627,4 +10627,4 @@ export {
|
|
|
10627
10627
|
ClientConfig,
|
|
10628
10628
|
evaluateWorkspaceModelPolicy
|
|
10629
10629
|
};
|
|
10630
|
-
//# sourceMappingURL=chunk-
|
|
10630
|
+
//# sourceMappingURL=chunk-WVE7RAHN.js.map
|