camstreamerlib 4.0.0-beta.109 → 4.0.0-beta.110
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/cjs/CamStreamerAPI.d.ts +42 -16
- package/cjs/types/CamStreamerAPI/CamStreamerAPI.d.ts +199 -57
- package/cjs/types/CamStreamerAPI/facebookSchema.d.ts +52 -0
- package/cjs/types/CamStreamerAPI/facebookSchema.js +17 -1
- package/cjs/types/CamStreamerAPI/gameChangerSchema.d.ts +2 -2
- package/cjs/types/CamStreamerAPI/mpegDvbSchema.d.ts +6 -6
- package/cjs/types/CamStreamerAPI/rtmpSchema.d.ts +4 -4
- package/cjs/types/CamStreamerAPI/youtubeSchema.d.ts +6 -6
- package/esm/types/CamStreamerAPI/facebookSchema.js +16 -0
- package/package.json +1 -1
- package/types/CamStreamerAPI.d.ts +42 -16
- package/types/types/CamStreamerAPI/CamStreamerAPI.d.ts +199 -57
- package/types/types/CamStreamerAPI/facebookSchema.d.ts +52 -0
- package/types/types/CamStreamerAPI/gameChangerSchema.d.ts +2 -2
- package/types/types/CamStreamerAPI/mpegDvbSchema.d.ts +6 -6
- package/types/types/CamStreamerAPI/rtmpSchema.d.ts +4 -4
- package/types/types/CamStreamerAPI/youtubeSchema.d.ts +6 -6
package/cjs/CamStreamerAPI.d.ts
CHANGED
|
@@ -14,6 +14,13 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
14
14
|
getUtcTime(options?: THttpRequestOptions): Promise<number>;
|
|
15
15
|
getMaxFps(source?: number, options?: THttpRequestOptions): Promise<any>;
|
|
16
16
|
getStreamList(options?: THttpRequestOptions): Promise<({
|
|
17
|
+
post: {
|
|
18
|
+
postLocation: "timeline";
|
|
19
|
+
streamPrivacy: "public" | "friends" | "only_me";
|
|
20
|
+
} | {
|
|
21
|
+
postLocation: "page";
|
|
22
|
+
page: string;
|
|
23
|
+
};
|
|
17
24
|
type: "facebook";
|
|
18
25
|
audio: {
|
|
19
26
|
source: "none";
|
|
@@ -66,6 +73,12 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
66
73
|
isActive: boolean;
|
|
67
74
|
}[];
|
|
68
75
|
};
|
|
76
|
+
deleteAfterEnd: boolean;
|
|
77
|
+
saveToSdCard: boolean;
|
|
78
|
+
statusCameraLed: boolean;
|
|
79
|
+
statusCameraOutput: string | null;
|
|
80
|
+
countdown: boolean;
|
|
81
|
+
description?: string | undefined;
|
|
69
82
|
} | {
|
|
70
83
|
type: "mpeg_dvb";
|
|
71
84
|
audio: {
|
|
@@ -120,6 +133,9 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
120
133
|
isActive: boolean;
|
|
121
134
|
}[];
|
|
122
135
|
};
|
|
136
|
+
saveToSdCard: boolean;
|
|
137
|
+
statusCameraLed: boolean;
|
|
138
|
+
statusCameraOutput: string | null;
|
|
123
139
|
ipAddress: string;
|
|
124
140
|
standard: "DVB" | "ATSC";
|
|
125
141
|
nullPacketsPaddingEnabled: boolean;
|
|
@@ -132,9 +148,6 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
132
148
|
pcrPeriodMs: number;
|
|
133
149
|
providerName: string;
|
|
134
150
|
serviceName: string;
|
|
135
|
-
statusCameraLed: boolean;
|
|
136
|
-
statusCameraOutput: string | null;
|
|
137
|
-
saveToSdCard: boolean;
|
|
138
151
|
} | {
|
|
139
152
|
type: "rtmp";
|
|
140
153
|
audio: {
|
|
@@ -188,9 +201,9 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
188
201
|
isActive: boolean;
|
|
189
202
|
}[];
|
|
190
203
|
};
|
|
204
|
+
saveToSdCard: boolean;
|
|
191
205
|
statusCameraLed: boolean;
|
|
192
206
|
statusCameraOutput: string | null;
|
|
193
|
-
saveToSdCard: boolean;
|
|
194
207
|
outputUrl: string;
|
|
195
208
|
streamKey: string;
|
|
196
209
|
streamIdentifier?: string | undefined;
|
|
@@ -353,16 +366,16 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
353
366
|
isActive: boolean;
|
|
354
367
|
}[];
|
|
355
368
|
};
|
|
369
|
+
streamPrivacy: "public" | "unlisted" | "private";
|
|
370
|
+
saveToSdCard: boolean;
|
|
356
371
|
statusCameraLed: boolean;
|
|
357
372
|
statusCameraOutput: string | null;
|
|
358
|
-
|
|
373
|
+
countdown: boolean;
|
|
359
374
|
tags: string[];
|
|
360
|
-
streamPrivacy: "public" | "unlisted" | "private";
|
|
361
375
|
latency: "normal" | "low" | "ultra_low";
|
|
362
376
|
afterEndStatus: "public" | "unlisted" | "private" | "no_change";
|
|
363
377
|
dvr: boolean;
|
|
364
378
|
hasWatchdogs: boolean;
|
|
365
|
-
countdown: boolean;
|
|
366
379
|
enableManualControl: boolean;
|
|
367
380
|
playlist?: string | undefined;
|
|
368
381
|
description?: string | undefined;
|
|
@@ -1056,15 +1069,22 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
1056
1069
|
isActive: boolean;
|
|
1057
1070
|
}[];
|
|
1058
1071
|
};
|
|
1072
|
+
saveToSdCard: boolean;
|
|
1059
1073
|
statusCameraLed: boolean;
|
|
1060
1074
|
statusCameraOutput: string | null;
|
|
1061
|
-
saveToSdCard: boolean;
|
|
1062
1075
|
outputUrl: string;
|
|
1063
1076
|
streamKey: string;
|
|
1064
1077
|
streamIdentifier?: string | undefined;
|
|
1065
1078
|
})[]>;
|
|
1066
1079
|
setStreamList(streamList: TStreamList['streamList'], options?: THttpRequestOptions): Promise<void>;
|
|
1067
1080
|
getStream(streamId: number, options?: THttpRequestOptions): Promise<{
|
|
1081
|
+
post: {
|
|
1082
|
+
postLocation: "timeline";
|
|
1083
|
+
streamPrivacy: "public" | "friends" | "only_me";
|
|
1084
|
+
} | {
|
|
1085
|
+
postLocation: "page";
|
|
1086
|
+
page: string;
|
|
1087
|
+
};
|
|
1068
1088
|
type: "facebook";
|
|
1069
1089
|
audio: {
|
|
1070
1090
|
source: "none";
|
|
@@ -1117,6 +1137,12 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
1117
1137
|
isActive: boolean;
|
|
1118
1138
|
}[];
|
|
1119
1139
|
};
|
|
1140
|
+
deleteAfterEnd: boolean;
|
|
1141
|
+
saveToSdCard: boolean;
|
|
1142
|
+
statusCameraLed: boolean;
|
|
1143
|
+
statusCameraOutput: string | null;
|
|
1144
|
+
countdown: boolean;
|
|
1145
|
+
description?: string | undefined;
|
|
1120
1146
|
} | {
|
|
1121
1147
|
type: "mpeg_dvb";
|
|
1122
1148
|
audio: {
|
|
@@ -1171,6 +1197,9 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
1171
1197
|
isActive: boolean;
|
|
1172
1198
|
}[];
|
|
1173
1199
|
};
|
|
1200
|
+
saveToSdCard: boolean;
|
|
1201
|
+
statusCameraLed: boolean;
|
|
1202
|
+
statusCameraOutput: string | null;
|
|
1174
1203
|
ipAddress: string;
|
|
1175
1204
|
standard: "DVB" | "ATSC";
|
|
1176
1205
|
nullPacketsPaddingEnabled: boolean;
|
|
@@ -1183,9 +1212,6 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
1183
1212
|
pcrPeriodMs: number;
|
|
1184
1213
|
providerName: string;
|
|
1185
1214
|
serviceName: string;
|
|
1186
|
-
statusCameraLed: boolean;
|
|
1187
|
-
statusCameraOutput: string | null;
|
|
1188
|
-
saveToSdCard: boolean;
|
|
1189
1215
|
} | {
|
|
1190
1216
|
type: "rtmp";
|
|
1191
1217
|
audio: {
|
|
@@ -1239,9 +1265,9 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
1239
1265
|
isActive: boolean;
|
|
1240
1266
|
}[];
|
|
1241
1267
|
};
|
|
1268
|
+
saveToSdCard: boolean;
|
|
1242
1269
|
statusCameraLed: boolean;
|
|
1243
1270
|
statusCameraOutput: string | null;
|
|
1244
|
-
saveToSdCard: boolean;
|
|
1245
1271
|
outputUrl: string;
|
|
1246
1272
|
streamKey: string;
|
|
1247
1273
|
streamIdentifier?: string | undefined;
|
|
@@ -1404,16 +1430,16 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
1404
1430
|
isActive: boolean;
|
|
1405
1431
|
}[];
|
|
1406
1432
|
};
|
|
1433
|
+
streamPrivacy: "public" | "unlisted" | "private";
|
|
1434
|
+
saveToSdCard: boolean;
|
|
1407
1435
|
statusCameraLed: boolean;
|
|
1408
1436
|
statusCameraOutput: string | null;
|
|
1409
|
-
|
|
1437
|
+
countdown: boolean;
|
|
1410
1438
|
tags: string[];
|
|
1411
|
-
streamPrivacy: "public" | "unlisted" | "private";
|
|
1412
1439
|
latency: "normal" | "low" | "ultra_low";
|
|
1413
1440
|
afterEndStatus: "public" | "unlisted" | "private" | "no_change";
|
|
1414
1441
|
dvr: boolean;
|
|
1415
1442
|
hasWatchdogs: boolean;
|
|
1416
|
-
countdown: boolean;
|
|
1417
1443
|
enableManualControl: boolean;
|
|
1418
1444
|
playlist?: string | undefined;
|
|
1419
1445
|
description?: string | undefined;
|
|
@@ -2107,9 +2133,9 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
2107
2133
|
isActive: boolean;
|
|
2108
2134
|
}[];
|
|
2109
2135
|
};
|
|
2136
|
+
saveToSdCard: boolean;
|
|
2110
2137
|
statusCameraLed: boolean;
|
|
2111
2138
|
statusCameraOutput: string | null;
|
|
2112
|
-
saveToSdCard: boolean;
|
|
2113
2139
|
outputUrl: string;
|
|
2114
2140
|
streamKey: string;
|
|
2115
2141
|
streamIdentifier?: string | undefined;
|