@aviaryhq/cloudglue-js 0.6.3 → 0.6.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.
|
@@ -11,6 +11,7 @@ type ShareableAsset = {
|
|
|
11
11
|
media_download_url?: string | undefined;
|
|
12
12
|
media_download_expires_at?: (number | null) | undefined;
|
|
13
13
|
share_url?: string | undefined;
|
|
14
|
+
stream_url?: string | undefined;
|
|
14
15
|
status?: ('pending' | 'processing' | 'completed' | 'failed') | undefined;
|
|
15
16
|
asset_type?: ('file' | 'file_segment') | undefined;
|
|
16
17
|
created_at: number;
|
package/dist/generated/Share.js
CHANGED
|
@@ -16,6 +16,7 @@ const ShareableAsset = zod_1.z
|
|
|
16
16
|
media_download_url: zod_1.z.string().optional(),
|
|
17
17
|
media_download_expires_at: zod_1.z.number().nullish(),
|
|
18
18
|
share_url: zod_1.z.string().optional(),
|
|
19
|
+
stream_url: zod_1.z.string().optional(),
|
|
19
20
|
status: zod_1.z.enum(['pending', 'processing', 'completed', 'failed']).optional(),
|
|
20
21
|
asset_type: zod_1.z.enum(['file', 'file_segment']).optional(),
|
|
21
22
|
created_at: zod_1.z.number(),
|
|
@@ -22,6 +22,7 @@ export declare class EnhancedShareableApi {
|
|
|
22
22
|
media_download_url?: string | undefined;
|
|
23
23
|
media_download_expires_at?: (number | null) | undefined;
|
|
24
24
|
share_url?: string | undefined;
|
|
25
|
+
stream_url?: string | undefined;
|
|
25
26
|
status?: ("pending" | "processing" | "completed" | "failed") | undefined;
|
|
26
27
|
asset_type?: ("file" | "file_segment") | undefined;
|
|
27
28
|
created_at: number;
|
|
@@ -48,6 +49,7 @@ export declare class EnhancedShareableApi {
|
|
|
48
49
|
media_download_url?: string | undefined;
|
|
49
50
|
media_download_expires_at?: (number | null) | undefined;
|
|
50
51
|
share_url?: string | undefined;
|
|
52
|
+
stream_url?: string | undefined;
|
|
51
53
|
status?: ("pending" | "processing" | "completed" | "failed") | undefined;
|
|
52
54
|
asset_type?: ("file" | "file_segment") | undefined;
|
|
53
55
|
created_at: number;
|
|
@@ -64,6 +66,7 @@ export declare class EnhancedShareableApi {
|
|
|
64
66
|
media_download_url?: string | undefined;
|
|
65
67
|
media_download_expires_at?: (number | null) | undefined;
|
|
66
68
|
share_url?: string | undefined;
|
|
69
|
+
stream_url?: string | undefined;
|
|
67
70
|
status?: ("pending" | "processing" | "completed" | "failed") | undefined;
|
|
68
71
|
asset_type?: ("file" | "file_segment") | undefined;
|
|
69
72
|
created_at: number;
|
|
@@ -84,6 +87,7 @@ export declare class EnhancedShareableApi {
|
|
|
84
87
|
media_download_url?: string | undefined;
|
|
85
88
|
media_download_expires_at?: (number | null) | undefined;
|
|
86
89
|
share_url?: string | undefined;
|
|
90
|
+
stream_url?: string | undefined;
|
|
87
91
|
status?: ("pending" | "processing" | "completed" | "failed") | undefined;
|
|
88
92
|
asset_type?: ("file" | "file_segment") | undefined;
|
|
89
93
|
created_at: number;
|
|
@@ -111,6 +115,7 @@ export declare class EnhancedShareableApi {
|
|
|
111
115
|
media_download_url?: string | undefined;
|
|
112
116
|
media_download_expires_at?: (number | null) | undefined;
|
|
113
117
|
share_url?: string | undefined;
|
|
118
|
+
stream_url?: string | undefined;
|
|
114
119
|
status?: ("pending" | "processing" | "completed" | "failed") | undefined;
|
|
115
120
|
asset_type?: ("file" | "file_segment") | undefined;
|
|
116
121
|
created_at: number;
|
|
@@ -138,6 +143,7 @@ export declare class EnhancedShareableApi {
|
|
|
138
143
|
media_download_url?: string | undefined;
|
|
139
144
|
media_download_expires_at?: (number | null) | undefined;
|
|
140
145
|
share_url?: string | undefined;
|
|
146
|
+
stream_url?: string | undefined;
|
|
141
147
|
status?: ("pending" | "processing" | "completed" | "failed") | undefined;
|
|
142
148
|
asset_type?: ("file" | "file_segment") | undefined;
|
|
143
149
|
created_at: number;
|
package/dist/src/client.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aviaryhq/cloudglue-js",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.4",
|
|
4
4
|
"description": "Cloudglue API client for Node.js",
|
|
5
5
|
"main": "dist/src/index.js",
|
|
6
6
|
"types": "dist/src/index.d.ts",
|
|
@@ -51,7 +51,8 @@
|
|
|
51
51
|
"overrides": {
|
|
52
52
|
"js-yaml": "^4.1.1",
|
|
53
53
|
"axios": "^1.12.0",
|
|
54
|
-
"glob": "^
|
|
54
|
+
"glob": "^13.0.3",
|
|
55
|
+
"ajv": "^8.18.0"
|
|
55
56
|
}
|
|
56
57
|
}
|
|
57
58
|
}
|