@connectedxm/admin-sdk 7.0.2 → 7.0.3
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/api.ts +2 -1
- package/dist/api.d.ts +2 -1
- package/dist/api.js +1 -0
- package/dist/esm/api.d.ts +2 -1
- package/dist/esm/api.js +1 -0
- package/docs/VideoSource.md +2 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -14070,7 +14070,8 @@ export enum VideoCaptionStatusEnum {
|
|
|
14070
14070
|
export enum VideoSource {
|
|
14071
14071
|
Admin = 'admin',
|
|
14072
14072
|
Activity = 'activity',
|
|
14073
|
-
Content = 'content'
|
|
14073
|
+
Content = 'content',
|
|
14074
|
+
Thread = 'thread'
|
|
14074
14075
|
}
|
|
14075
14076
|
|
|
14076
14077
|
|
package/dist/api.d.ts
CHANGED
|
@@ -12525,7 +12525,8 @@ export declare enum VideoCaptionStatusEnum {
|
|
|
12525
12525
|
export declare enum VideoSource {
|
|
12526
12526
|
Admin = "admin",
|
|
12527
12527
|
Activity = "activity",
|
|
12528
|
-
Content = "content"
|
|
12528
|
+
Content = "content",
|
|
12529
|
+
Thread = "thread"
|
|
12529
12530
|
}
|
|
12530
12531
|
export declare enum VideoStatus {
|
|
12531
12532
|
Pendingupload = "pendingupload",
|
package/dist/api.js
CHANGED
|
@@ -2674,6 +2674,7 @@ var VideoSource;
|
|
|
2674
2674
|
VideoSource["Admin"] = "admin";
|
|
2675
2675
|
VideoSource["Activity"] = "activity";
|
|
2676
2676
|
VideoSource["Content"] = "content";
|
|
2677
|
+
VideoSource["Thread"] = "thread";
|
|
2677
2678
|
})(VideoSource || (exports.VideoSource = VideoSource = {}));
|
|
2678
2679
|
var VideoStatus;
|
|
2679
2680
|
(function (VideoStatus) {
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -12525,7 +12525,8 @@ export declare enum VideoCaptionStatusEnum {
|
|
|
12525
12525
|
export declare enum VideoSource {
|
|
12526
12526
|
Admin = "admin",
|
|
12527
12527
|
Activity = "activity",
|
|
12528
|
-
Content = "content"
|
|
12528
|
+
Content = "content",
|
|
12529
|
+
Thread = "thread"
|
|
12529
12530
|
}
|
|
12530
12531
|
export declare enum VideoStatus {
|
|
12531
12532
|
Pendingupload = "pendingupload",
|
package/dist/esm/api.js
CHANGED
|
@@ -2645,6 +2645,7 @@ export var VideoSource;
|
|
|
2645
2645
|
VideoSource["Admin"] = "admin";
|
|
2646
2646
|
VideoSource["Activity"] = "activity";
|
|
2647
2647
|
VideoSource["Content"] = "content";
|
|
2648
|
+
VideoSource["Thread"] = "thread";
|
|
2648
2649
|
})(VideoSource || (VideoSource = {}));
|
|
2649
2650
|
export var VideoStatus;
|
|
2650
2651
|
(function (VideoStatus) {
|
package/docs/VideoSource.md
CHANGED