@maravilla-labs/platform 0.4.3 → 0.4.4
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/config.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export {
|
|
1
|
+
import { o as TransformsConfig } from './transforms-BkgPh93b.js';
|
|
2
|
+
export { p as TransformsPatternSpec } from './transforms-BkgPh93b.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* @fileoverview Typed schema for `maravilla.config.{ts,yaml,json}` files.
|
package/dist/events.d.ts
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { R as RenClient, a as RenClientOptions, b as RenEvent, g as getOrCreateClientId, r as renFetch, s as storageDelete, c as storageUpload } from './ren-DrYefHO5.js';
|
|
2
2
|
import { LocalParticipant } from 'livekit-client';
|
|
3
3
|
export { RegisterPushOptions, RegisterPushResult, offsetBefore, registerPush, unregisterPush } from './push.js';
|
|
4
|
-
export { D as DocConvertOpts,
|
|
4
|
+
export { D as DocConvertOpts, a as DocFormat, b as DocInsertQrCodeOpts, c as DocReplaceImagesOpts, d as DocTemplateMergeOpts, e as DocThumbnailOpts, f as DocToHtmlOpts, g as DocToMarkdownOpts, h as DocToPdfOpts, I as ImageFormat, i as ImageRef, J as JobHandle, j as JobStatus, k as JobStatusResponse, M as MediaInfo, O as OcrOpts, Q as QrCodeSpec, l as QrPayload, R as ResizeOpts, T as ThumbnailOpts, m as TranscodeOpts, n as TransformSpec, o as TransformsConfig, p as TransformsPatternSpec, q as TransformsService, V as VideoFormat, r as keyFor, t as transforms } from './transforms-BkgPh93b.js';
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
7
|
* Media service for video/audio room management.
|
|
@@ -45,4 +45,4 @@ declare function renFetch(input: string | URL | Request, init?: RequestInit, cli
|
|
|
45
45
|
declare function storageUpload(path: string, file: Blob | File, clientId?: string): Promise<any>;
|
|
46
46
|
declare function storageDelete(path: string, clientId?: string): Promise<any>;
|
|
47
47
|
|
|
48
|
-
export {
|
|
48
|
+
export { RenClient as R, type RenClientOptions as a, type RenEvent as b, storageUpload as c, getOrCreateClientId as g, renFetch as r, storageDelete as s };
|
|
@@ -297,4 +297,4 @@ interface TransformsPatternSpec {
|
|
|
297
297
|
*/
|
|
298
298
|
type TransformsConfig = Record<string, TransformsPatternSpec>;
|
|
299
299
|
|
|
300
|
-
export { type DocConvertOpts as D, type ImageFormat as I, type JobHandle as J, type MediaInfo as M, type OcrOpts as O, type QrCodeSpec as Q, type ResizeOpts as R, type
|
|
300
|
+
export { type DocConvertOpts as D, type ImageFormat as I, type JobHandle as J, type MediaInfo as M, type OcrOpts as O, type QrCodeSpec as Q, type ResizeOpts as R, type ThumbnailOpts as T, type VideoFormat as V, type DocFormat as a, type DocInsertQrCodeOpts as b, type DocReplaceImagesOpts as c, type DocTemplateMergeOpts as d, type DocThumbnailOpts as e, type DocToHtmlOpts as f, type DocToMarkdownOpts as g, type DocToPdfOpts as h, type ImageRef as i, type JobStatus as j, type JobStatusResponse as k, type QrPayload as l, type TranscodeOpts as m, type TransformSpec as n, type TransformsConfig as o, type TransformsPatternSpec as p, type TransformsService as q, keyFor as r, transforms as t };
|