@fluxomni/api-client 0.12.0 → 0.13.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/errors.d.ts.map +1 -1
- package/dist/errors.js +4 -1
- package/dist/errors.js.map +1 -1
- package/dist/generated/graphql.d.ts +214 -4
- package/dist/generated/graphql.d.ts.map +1 -1
- package/dist/generated/graphql.js +357 -0
- package/dist/generated/graphql.js.map +1 -1
- package/package.json +1 -1
- package/src/errors.ts +6 -2
- package/src/generated/graphql.ts +575 -4
package/src/generated/graphql.ts
CHANGED
|
@@ -85,6 +85,8 @@ export type AdminSettingsInfo = {
|
|
|
85
85
|
__typename?: 'AdminSettingsInfo';
|
|
86
86
|
/** Owned artifact-library defaults for imports, probing, and picker behavior. */
|
|
87
87
|
artifactLibraryPolicy: ArtifactLibraryPolicy;
|
|
88
|
+
/** Server-owned route baseline presets used for compatibility gates. */
|
|
89
|
+
baselineProfilePresets: Array<BaselineProfilePreset>;
|
|
88
90
|
/** Whether destructive actions should ask for confirmation. */
|
|
89
91
|
deleteConfirmation?: Maybe<Scalars['Boolean']['output']>;
|
|
90
92
|
/** Whether enable/disable actions should ask for confirmation. */
|
|
@@ -355,7 +357,24 @@ export type BaselineProfile = {
|
|
|
355
357
|
width: Scalars['Int']['output'];
|
|
356
358
|
};
|
|
357
359
|
|
|
358
|
-
|
|
360
|
+
export type BaselineProfileInput = {
|
|
361
|
+
/** Required audio channel count. */
|
|
362
|
+
audioChannels: Scalars['Int']['input'];
|
|
363
|
+
/** Required audio codec name. */
|
|
364
|
+
audioCodec: Scalars['String']['input'];
|
|
365
|
+
/** Required audio sample rate in hertz. */
|
|
366
|
+
audioSampleRate: Scalars['Int']['input'];
|
|
367
|
+
/** Required frame rate as a rational string. */
|
|
368
|
+
framerate: Scalars['String']['input'];
|
|
369
|
+
/** Required video height in pixels. */
|
|
370
|
+
height: Scalars['Int']['input'];
|
|
371
|
+
/** Required video codec name. */
|
|
372
|
+
videoCodec: Scalars['String']['input'];
|
|
373
|
+
/** Required video width in pixels. */
|
|
374
|
+
width: Scalars['Int']['input'];
|
|
375
|
+
};
|
|
376
|
+
|
|
377
|
+
/** Baseline preset exposed to operator clients. */
|
|
359
378
|
export type BaselineProfilePreset = {
|
|
360
379
|
__typename?: 'BaselineProfilePreset';
|
|
361
380
|
/** Stable preset identifier. */
|
|
@@ -366,6 +385,15 @@ export type BaselineProfilePreset = {
|
|
|
366
385
|
profile: BaselineProfile;
|
|
367
386
|
};
|
|
368
387
|
|
|
388
|
+
export type BaselineProfilePresetInput = {
|
|
389
|
+
/** Stable preset identifier. */
|
|
390
|
+
id: Scalars['String']['input'];
|
|
391
|
+
/** Operator-facing preset label. */
|
|
392
|
+
label: Scalars['String']['input'];
|
|
393
|
+
/** Full media profile represented by this preset. */
|
|
394
|
+
profile: BaselineProfileInput;
|
|
395
|
+
};
|
|
396
|
+
|
|
369
397
|
/** Explicit result payload for bulk library catalog mutations. */
|
|
370
398
|
export type BulkLibraryFileMutationResult = {
|
|
371
399
|
__typename?: 'BulkLibraryFileMutationResult';
|
|
@@ -1136,6 +1164,8 @@ export enum ObservedTransitionKind {
|
|
|
1136
1164
|
|
|
1137
1165
|
export type Output = {
|
|
1138
1166
|
__typename?: 'Output';
|
|
1167
|
+
/** Origin audio selection applied before mix-ins. */
|
|
1168
|
+
audioSelection: OutputAudioSelection;
|
|
1139
1169
|
/** Downstream URL to stream a live stream onto. */
|
|
1140
1170
|
dst: Scalars['OutputDstUrl']['output'];
|
|
1141
1171
|
/** Whether this output is enabled. */
|
|
@@ -1154,6 +1184,35 @@ export type Output = {
|
|
|
1154
1184
|
volume: Volume;
|
|
1155
1185
|
};
|
|
1156
1186
|
|
|
1187
|
+
/** Origin-audio selection applied before output mix-ins. */
|
|
1188
|
+
export type OutputAudioSelection = {
|
|
1189
|
+
__typename?: 'OutputAudioSelection';
|
|
1190
|
+
/** Zero-based track or channel index for indexed modes. */
|
|
1191
|
+
index?: Maybe<Scalars['Int']['output']>;
|
|
1192
|
+
/** Selection mode. */
|
|
1193
|
+
mode: OutputAudioSelectionMode;
|
|
1194
|
+
};
|
|
1195
|
+
|
|
1196
|
+
/** Origin-audio selection payload for output create/update. */
|
|
1197
|
+
export type OutputAudioSelectionInput = {
|
|
1198
|
+
/** Zero-based track or channel index for indexed modes. */
|
|
1199
|
+
index?: InputMaybe<Scalars['Int']['input']>;
|
|
1200
|
+
/** Selection mode. */
|
|
1201
|
+
mode?: OutputAudioSelectionMode;
|
|
1202
|
+
};
|
|
1203
|
+
|
|
1204
|
+
/** Origin-audio selection mode for an output. */
|
|
1205
|
+
export enum OutputAudioSelectionMode {
|
|
1206
|
+
/** Select one audio channel by channel index. */
|
|
1207
|
+
Channel = 'CHANNEL',
|
|
1208
|
+
/** Preserve source audio without explicit selection. */
|
|
1209
|
+
Default = 'DEFAULT',
|
|
1210
|
+
/** Keep an audio stream but replace origin samples with silence before mix-ins. */
|
|
1211
|
+
Muted = 'MUTED',
|
|
1212
|
+
/** Select one audio stream by track index. */
|
|
1213
|
+
Track = 'TRACK',
|
|
1214
|
+
}
|
|
1215
|
+
|
|
1157
1216
|
/** Output health counts bucketed by `OutputPresentationPhase` for a single route. */
|
|
1158
1217
|
export type OutputHealthSummary = {
|
|
1159
1218
|
__typename?: 'OutputHealthSummary';
|
|
@@ -1296,7 +1355,7 @@ export type PlaylistFileInfo = {
|
|
|
1296
1355
|
name: Scalars['String']['output'];
|
|
1297
1356
|
/** Stream statistics from `LocalFileManager` (video/audio codecs, resolution, etc.) */
|
|
1298
1357
|
streamStat?: Maybe<StreamStatistics>;
|
|
1299
|
-
/** Whether the file
|
|
1358
|
+
/** Whether the file has completed playback in the current queue history. */
|
|
1300
1359
|
wasPlayed: Scalars['Boolean']['output'];
|
|
1301
1360
|
};
|
|
1302
1361
|
|
|
@@ -1765,7 +1824,7 @@ export type RouteMutation = {
|
|
|
1765
1824
|
*/
|
|
1766
1825
|
revokePublishCredential: PublishCredentialMutationResult;
|
|
1767
1826
|
/**
|
|
1768
|
-
* Sets or
|
|
1827
|
+
* Sets, clears, or adopts the route baseline profile used to gate route media inputs.
|
|
1769
1828
|
*
|
|
1770
1829
|
* Returns a `RouteMutationResult` with `status` set to `UPDATED` or `NOT_FOUND`.
|
|
1771
1830
|
*/
|
|
@@ -1807,6 +1866,14 @@ export type RouteMutation = {
|
|
|
1807
1866
|
* Returns a `RouteSourceMutationResult` with `status` set to `UPDATED`, `UNCHANGED`, or `NOT_FOUND`.
|
|
1808
1867
|
*/
|
|
1809
1868
|
updateRouteSourceLabel: RouteSourceMutationResult;
|
|
1869
|
+
/**
|
|
1870
|
+
* Updates the configured source topology for a Route without changing other Route settings.
|
|
1871
|
+
*
|
|
1872
|
+
* This is the source-management counterpart to `setRoute`: it replaces the route-source
|
|
1873
|
+
* list and failover policy while preserving route identity, label, outputs, playlist,
|
|
1874
|
+
* baseline, ownership, and source preference when the preferred source still exists.
|
|
1875
|
+
*/
|
|
1876
|
+
updateRouteSources: RouteSourceMutationResult;
|
|
1810
1877
|
/**
|
|
1811
1878
|
* Updates the failover policy for the specified Route's source set.
|
|
1812
1879
|
*
|
|
@@ -2004,8 +2071,10 @@ export type RouteMutationRevokePublishCredentialArgs = {
|
|
|
2004
2071
|
* These operations require Admin or Operator role.
|
|
2005
2072
|
*/
|
|
2006
2073
|
export type RouteMutationSetBaselineProfileArgs = {
|
|
2074
|
+
fileId?: InputMaybe<Scalars['FileId']['input']>;
|
|
2007
2075
|
presetId?: InputMaybe<Scalars['String']['input']>;
|
|
2008
2076
|
routeId: Scalars['RouteId']['input'];
|
|
2077
|
+
sourceId?: InputMaybe<Scalars['RouteSourceId']['input']>;
|
|
2009
2078
|
};
|
|
2010
2079
|
|
|
2011
2080
|
/**
|
|
@@ -2074,6 +2143,16 @@ export type RouteMutationUpdateRouteSourceLabelArgs = {
|
|
|
2074
2143
|
sourceId: Scalars['RouteSourceId']['input'];
|
|
2075
2144
|
};
|
|
2076
2145
|
|
|
2146
|
+
/**
|
|
2147
|
+
* Mutation operations for the public route domain.
|
|
2148
|
+
*
|
|
2149
|
+
* These operations require Admin or Operator role.
|
|
2150
|
+
*/
|
|
2151
|
+
export type RouteMutationUpdateRouteSourcesArgs = {
|
|
2152
|
+
routeId: Scalars['RouteId']['input'];
|
|
2153
|
+
routeSources: RouteSourcesInput;
|
|
2154
|
+
};
|
|
2155
|
+
|
|
2077
2156
|
/**
|
|
2078
2157
|
* Mutation operations for the public route domain.
|
|
2079
2158
|
*
|
|
@@ -2155,7 +2234,7 @@ export type RouteQuery = {
|
|
|
2155
2234
|
__typename?: 'RouteQuery';
|
|
2156
2235
|
/** Get all routes. */
|
|
2157
2236
|
allRoutes: Array<Route>;
|
|
2158
|
-
/**
|
|
2237
|
+
/** Server route baseline profiles available for route media compatibility gating. */
|
|
2159
2238
|
baselineProfilePresets: Array<BaselineProfilePreset>;
|
|
2160
2239
|
/** Get current server information (CPU, memory, network stats). */
|
|
2161
2240
|
serverInfo: StatisticsServerInfo;
|
|
@@ -2443,8 +2522,15 @@ export type RtmpPushSource = {
|
|
|
2443
2522
|
hasPublishCredential: Scalars['Boolean']['output'];
|
|
2444
2523
|
};
|
|
2445
2524
|
|
|
2525
|
+
export type SetBaselineProfilePresetsInput = {
|
|
2526
|
+
/** Complete server-owned route baseline profile preset catalog. */
|
|
2527
|
+
baselineProfilePresets: Array<BaselineProfilePresetInput>;
|
|
2528
|
+
};
|
|
2529
|
+
|
|
2446
2530
|
/** Output create/update payload. */
|
|
2447
2531
|
export type SetOutputInput = {
|
|
2532
|
+
/** Origin audio selection applied before mix-ins. */
|
|
2533
|
+
audioSelection?: OutputAudioSelectionInput;
|
|
2448
2534
|
/** Destination URL to stream a live stream onto. */
|
|
2449
2535
|
dst: Scalars['OutputDstUrl']['input'];
|
|
2450
2536
|
/** ID of the Output to be updated rather than creating a new one. */
|
|
@@ -2481,6 +2567,8 @@ export type SetRouteInput = {
|
|
|
2481
2567
|
export type SetSettingsInput = {
|
|
2482
2568
|
/** Artifact library policy defaults. */
|
|
2483
2569
|
artifactLibraryPolicy?: InputMaybe<ArtifactLibraryPolicyInput>;
|
|
2570
|
+
/** Server-owned route baseline profile presets. */
|
|
2571
|
+
baselineProfilePresets?: InputMaybe<Array<BaselineProfilePresetInput>>;
|
|
2484
2572
|
/** Whether to confirm deletions. */
|
|
2485
2573
|
deleteConfirmation?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2486
2574
|
/** Whether to confirm enabling/disabling. */
|
|
@@ -2509,6 +2597,8 @@ export type SettingsInfo = {
|
|
|
2509
2597
|
__typename?: 'SettingsInfo';
|
|
2510
2598
|
/** Owned artifact-library defaults for imports, probing, and picker behavior. */
|
|
2511
2599
|
artifactLibraryPolicy: ArtifactLibraryPolicy;
|
|
2600
|
+
/** Server-owned route baseline presets used for compatibility gates. */
|
|
2601
|
+
baselineProfilePresets: Array<BaselineProfilePreset>;
|
|
2512
2602
|
/** Whether destructive actions should ask for confirmation. */
|
|
2513
2603
|
deleteConfirmation?: Maybe<Scalars['Boolean']['output']>;
|
|
2514
2604
|
/** Whether enable/disable actions should ask for confirmation. */
|
|
@@ -2767,6 +2857,8 @@ export type StreamStatistics = {
|
|
|
2767
2857
|
audioCodecName?: Maybe<Scalars['String']['output']>;
|
|
2768
2858
|
/** Audio sample rate. Example: "44100" */
|
|
2769
2859
|
audioSampleRate?: Maybe<Scalars['String']['output']>;
|
|
2860
|
+
/** Count of audio streams/tracks. Example: 2 */
|
|
2861
|
+
audioTrackCount?: Maybe<Scalars['Unumber']['output']>;
|
|
2770
2862
|
/** Total bit rate */
|
|
2771
2863
|
bitRate?: Maybe<Scalars['String']['output']>;
|
|
2772
2864
|
/** Duration in whole seconds (rounded down) */
|
|
@@ -2806,6 +2898,8 @@ export type SystemSettingsMutation = {
|
|
|
2806
2898
|
* Returns a `SettingsImportMutationResult` with `status` set to `UPDATED`, `UNCHANGED`, or `NOT_FOUND`.
|
|
2807
2899
|
*/
|
|
2808
2900
|
import: SettingsImportMutationResult;
|
|
2901
|
+
/** Replace the server-owned route baseline profile preset catalog. */
|
|
2902
|
+
setBaselineProfilePresets: SettingsMutationResult;
|
|
2809
2903
|
/**
|
|
2810
2904
|
* Compatibility password mutation for admin clients.
|
|
2811
2905
|
*
|
|
@@ -2852,6 +2946,10 @@ export type SystemSettingsMutationImportArgs = {
|
|
|
2852
2946
|
spec: Scalars['String']['input'];
|
|
2853
2947
|
};
|
|
2854
2948
|
|
|
2949
|
+
export type SystemSettingsMutationSetBaselineProfilePresetsArgs = {
|
|
2950
|
+
input: SetBaselineProfilePresetsInput;
|
|
2951
|
+
};
|
|
2952
|
+
|
|
2855
2953
|
export type SystemSettingsMutationSetPasswordArgs = {
|
|
2856
2954
|
input: PasswordMutationInput;
|
|
2857
2955
|
};
|
|
@@ -3208,6 +3306,8 @@ export type SetRouteOwnerMutation = {
|
|
|
3208
3306
|
export type SetBaselineProfileMutationVariables = Exact<{
|
|
3209
3307
|
routeId: Scalars['RouteId']['input'];
|
|
3210
3308
|
presetId?: InputMaybe<Scalars['String']['input']>;
|
|
3309
|
+
sourceId?: InputMaybe<Scalars['RouteSourceId']['input']>;
|
|
3310
|
+
fileId?: InputMaybe<Scalars['FileId']['input']>;
|
|
3211
3311
|
}>;
|
|
3212
3312
|
|
|
3213
3313
|
export type SetBaselineProfileMutation = {
|
|
@@ -3330,6 +3430,24 @@ export type UpdateRouteSourcesFailoverPolicyMutation = {
|
|
|
3330
3430
|
};
|
|
3331
3431
|
};
|
|
3332
3432
|
|
|
3433
|
+
export type UpdateRouteSourcesMutationVariables = Exact<{
|
|
3434
|
+
routeId: Scalars['RouteId']['input'];
|
|
3435
|
+
routeSources: RouteSourcesInput;
|
|
3436
|
+
}>;
|
|
3437
|
+
|
|
3438
|
+
export type UpdateRouteSourcesMutation = {
|
|
3439
|
+
__typename?: 'UnifiedMutation';
|
|
3440
|
+
routes: {
|
|
3441
|
+
__typename?: 'RouteMutation';
|
|
3442
|
+
updateRouteSources: {
|
|
3443
|
+
__typename?: 'RouteSourceMutationResult';
|
|
3444
|
+
status: MutationResultStatus;
|
|
3445
|
+
routeId: string;
|
|
3446
|
+
sourceId?: string | null;
|
|
3447
|
+
};
|
|
3448
|
+
};
|
|
3449
|
+
};
|
|
3450
|
+
|
|
3333
3451
|
export type SetRouteMutationVariables = Exact<{
|
|
3334
3452
|
input: SetRouteInput;
|
|
3335
3453
|
}>;
|
|
@@ -4265,6 +4383,21 @@ export type SetSettingsMutation = {
|
|
|
4265
4383
|
};
|
|
4266
4384
|
};
|
|
4267
4385
|
|
|
4386
|
+
export type SetBaselineProfilePresetsMutationVariables = Exact<{
|
|
4387
|
+
input: SetBaselineProfilePresetsInput;
|
|
4388
|
+
}>;
|
|
4389
|
+
|
|
4390
|
+
export type SetBaselineProfilePresetsMutation = {
|
|
4391
|
+
__typename?: 'UnifiedMutation';
|
|
4392
|
+
settings: {
|
|
4393
|
+
__typename?: 'SystemSettingsMutation';
|
|
4394
|
+
setBaselineProfilePresets: {
|
|
4395
|
+
__typename?: 'SettingsMutationResult';
|
|
4396
|
+
status: MutationResultStatus;
|
|
4397
|
+
};
|
|
4398
|
+
};
|
|
4399
|
+
};
|
|
4400
|
+
|
|
4268
4401
|
export type ImportMutationVariables = Exact<{
|
|
4269
4402
|
routeId?: InputMaybe<Scalars['RouteId']['input']>;
|
|
4270
4403
|
replace: Scalars['Boolean']['input'];
|
|
@@ -4305,6 +4438,22 @@ export type GetInfoQuery = {
|
|
|
4305
4438
|
pickerCompatibilityDefault: ArtifactPickerCompatibilityDefault;
|
|
4306
4439
|
defaultDerivedArtifactLifecyclePolicy: ArtifactLifecyclePolicy;
|
|
4307
4440
|
};
|
|
4441
|
+
baselineProfilePresets: Array<{
|
|
4442
|
+
__typename?: 'BaselineProfilePreset';
|
|
4443
|
+
id: string;
|
|
4444
|
+
label: string;
|
|
4445
|
+
profile: {
|
|
4446
|
+
__typename?: 'BaselineProfile';
|
|
4447
|
+
presetId: string;
|
|
4448
|
+
videoCodec: string;
|
|
4449
|
+
width: number;
|
|
4450
|
+
height: number;
|
|
4451
|
+
framerate: string;
|
|
4452
|
+
audioCodec: string;
|
|
4453
|
+
audioChannels: number;
|
|
4454
|
+
audioSampleRate: number;
|
|
4455
|
+
};
|
|
4456
|
+
}>;
|
|
4308
4457
|
};
|
|
4309
4458
|
me?: {
|
|
4310
4459
|
__typename?: 'UserAccount';
|
|
@@ -4438,6 +4587,7 @@ export type GetAllRoutesQuery = {
|
|
|
4438
4587
|
__typename?: 'StreamStatistics';
|
|
4439
4588
|
audioChannelLayout?: string | null;
|
|
4440
4589
|
audioChannels?: number | null;
|
|
4590
|
+
audioTrackCount?: number | null;
|
|
4441
4591
|
audioSampleRate?: string | null;
|
|
4442
4592
|
audioCodecName?: string | null;
|
|
4443
4593
|
videoCodecName?: string | null;
|
|
@@ -4561,6 +4711,7 @@ export type GetAllRoutesQuery = {
|
|
|
4561
4711
|
__typename?: 'StreamStatistics';
|
|
4562
4712
|
audioChannelLayout?: string | null;
|
|
4563
4713
|
audioChannels?: number | null;
|
|
4714
|
+
audioTrackCount?: number | null;
|
|
4564
4715
|
audioSampleRate?: string | null;
|
|
4565
4716
|
audioCodecName?: string | null;
|
|
4566
4717
|
videoCodecName?: string | null;
|
|
@@ -4583,6 +4734,7 @@ export type GetAllRoutesQuery = {
|
|
|
4583
4734
|
__typename?: 'StreamStatistics';
|
|
4584
4735
|
audioChannelLayout?: string | null;
|
|
4585
4736
|
audioChannels?: number | null;
|
|
4737
|
+
audioTrackCount?: number | null;
|
|
4586
4738
|
audioSampleRate?: string | null;
|
|
4587
4739
|
audioCodecName?: string | null;
|
|
4588
4740
|
videoCodecName?: string | null;
|
|
@@ -4654,6 +4806,7 @@ export type GetAllRoutesQuery = {
|
|
|
4654
4806
|
__typename?: 'StreamStatistics';
|
|
4655
4807
|
audioChannelLayout?: string | null;
|
|
4656
4808
|
audioChannels?: number | null;
|
|
4809
|
+
audioTrackCount?: number | null;
|
|
4657
4810
|
audioSampleRate?: string | null;
|
|
4658
4811
|
audioCodecName?: string | null;
|
|
4659
4812
|
videoCodecName?: string | null;
|
|
@@ -4681,6 +4834,7 @@ export type GetAllRoutesQuery = {
|
|
|
4681
4834
|
__typename?: 'StreamStatistics';
|
|
4682
4835
|
audioChannelLayout?: string | null;
|
|
4683
4836
|
audioChannels?: number | null;
|
|
4837
|
+
audioTrackCount?: number | null;
|
|
4684
4838
|
audioSampleRate?: string | null;
|
|
4685
4839
|
audioCodecName?: string | null;
|
|
4686
4840
|
videoCodecName?: string | null;
|
|
@@ -4712,6 +4866,11 @@ export type GetAllRoutesQuery = {
|
|
|
4712
4866
|
label?: string | null;
|
|
4713
4867
|
previewUrl?: string | null;
|
|
4714
4868
|
enabled: boolean;
|
|
4869
|
+
audioSelection: {
|
|
4870
|
+
__typename?: 'OutputAudioSelection';
|
|
4871
|
+
mode: OutputAudioSelectionMode;
|
|
4872
|
+
index?: number | null;
|
|
4873
|
+
};
|
|
4715
4874
|
volume: { __typename?: 'Volume'; level: number; muted: boolean };
|
|
4716
4875
|
mixins: Array<{
|
|
4717
4876
|
__typename?: 'Mixin';
|
|
@@ -4841,6 +5000,7 @@ export type LibraryFilesQuery = {
|
|
|
4841
5000
|
__typename?: 'StreamStatistics';
|
|
4842
5001
|
audioChannelLayout?: string | null;
|
|
4843
5002
|
audioChannels?: number | null;
|
|
5003
|
+
audioTrackCount?: number | null;
|
|
4844
5004
|
audioSampleRate?: string | null;
|
|
4845
5005
|
audioCodecName?: string | null;
|
|
4846
5006
|
videoCodecName?: string | null;
|
|
@@ -5096,6 +5256,7 @@ export type RouteBasicQueryFragment = {
|
|
|
5096
5256
|
__typename?: 'StreamStatistics';
|
|
5097
5257
|
audioChannelLayout?: string | null;
|
|
5098
5258
|
audioChannels?: number | null;
|
|
5259
|
+
audioTrackCount?: number | null;
|
|
5099
5260
|
audioSampleRate?: string | null;
|
|
5100
5261
|
audioCodecName?: string | null;
|
|
5101
5262
|
videoCodecName?: string | null;
|
|
@@ -5219,6 +5380,7 @@ export type RouteBasicQueryFragment = {
|
|
|
5219
5380
|
__typename?: 'StreamStatistics';
|
|
5220
5381
|
audioChannelLayout?: string | null;
|
|
5221
5382
|
audioChannels?: number | null;
|
|
5383
|
+
audioTrackCount?: number | null;
|
|
5222
5384
|
audioSampleRate?: string | null;
|
|
5223
5385
|
audioCodecName?: string | null;
|
|
5224
5386
|
videoCodecName?: string | null;
|
|
@@ -5241,6 +5403,7 @@ export type RouteBasicQueryFragment = {
|
|
|
5241
5403
|
__typename?: 'StreamStatistics';
|
|
5242
5404
|
audioChannelLayout?: string | null;
|
|
5243
5405
|
audioChannels?: number | null;
|
|
5406
|
+
audioTrackCount?: number | null;
|
|
5244
5407
|
audioSampleRate?: string | null;
|
|
5245
5408
|
audioCodecName?: string | null;
|
|
5246
5409
|
videoCodecName?: string | null;
|
|
@@ -5295,6 +5458,11 @@ export type RouteBasicQueryFragment = {
|
|
|
5295
5458
|
label?: string | null;
|
|
5296
5459
|
previewUrl?: string | null;
|
|
5297
5460
|
enabled: boolean;
|
|
5461
|
+
audioSelection: {
|
|
5462
|
+
__typename?: 'OutputAudioSelection';
|
|
5463
|
+
mode: OutputAudioSelectionMode;
|
|
5464
|
+
index?: number | null;
|
|
5465
|
+
};
|
|
5298
5466
|
volume: { __typename?: 'Volume'; level: number; muted: boolean };
|
|
5299
5467
|
mixins: Array<{
|
|
5300
5468
|
__typename?: 'Mixin';
|
|
@@ -5352,6 +5520,7 @@ export type RoutePlaylistQueryFragment = {
|
|
|
5352
5520
|
__typename?: 'StreamStatistics';
|
|
5353
5521
|
audioChannelLayout?: string | null;
|
|
5354
5522
|
audioChannels?: number | null;
|
|
5523
|
+
audioTrackCount?: number | null;
|
|
5355
5524
|
audioSampleRate?: string | null;
|
|
5356
5525
|
audioCodecName?: string | null;
|
|
5357
5526
|
videoCodecName?: string | null;
|
|
@@ -5379,6 +5548,7 @@ export type RoutePlaylistQueryFragment = {
|
|
|
5379
5548
|
__typename?: 'StreamStatistics';
|
|
5380
5549
|
audioChannelLayout?: string | null;
|
|
5381
5550
|
audioChannels?: number | null;
|
|
5551
|
+
audioTrackCount?: number | null;
|
|
5382
5552
|
audioSampleRate?: string | null;
|
|
5383
5553
|
audioCodecName?: string | null;
|
|
5384
5554
|
videoCodecName?: string | null;
|
|
@@ -5414,6 +5584,11 @@ export type RouteOutputsQueryFragment = {
|
|
|
5414
5584
|
label?: string | null;
|
|
5415
5585
|
previewUrl?: string | null;
|
|
5416
5586
|
enabled: boolean;
|
|
5587
|
+
audioSelection: {
|
|
5588
|
+
__typename?: 'OutputAudioSelection';
|
|
5589
|
+
mode: OutputAudioSelectionMode;
|
|
5590
|
+
index?: number | null;
|
|
5591
|
+
};
|
|
5417
5592
|
volume: { __typename?: 'Volume'; level: number; muted: boolean };
|
|
5418
5593
|
mixins: Array<{
|
|
5419
5594
|
__typename?: 'Mixin';
|
|
@@ -5438,6 +5613,7 @@ export type StreamStatQueryFragment = {
|
|
|
5438
5613
|
__typename?: 'StreamStatistics';
|
|
5439
5614
|
audioChannelLayout?: string | null;
|
|
5440
5615
|
audioChannels?: number | null;
|
|
5616
|
+
audioTrackCount?: number | null;
|
|
5441
5617
|
audioSampleRate?: string | null;
|
|
5442
5618
|
audioCodecName?: string | null;
|
|
5443
5619
|
videoCodecName?: string | null;
|
|
@@ -5533,6 +5709,7 @@ export type StateSubscription = {
|
|
|
5533
5709
|
__typename?: 'StreamStatistics';
|
|
5534
5710
|
audioChannelLayout?: string | null;
|
|
5535
5711
|
audioChannels?: number | null;
|
|
5712
|
+
audioTrackCount?: number | null;
|
|
5536
5713
|
audioSampleRate?: string | null;
|
|
5537
5714
|
audioCodecName?: string | null;
|
|
5538
5715
|
videoCodecName?: string | null;
|
|
@@ -5656,6 +5833,7 @@ export type StateSubscription = {
|
|
|
5656
5833
|
__typename?: 'StreamStatistics';
|
|
5657
5834
|
audioChannelLayout?: string | null;
|
|
5658
5835
|
audioChannels?: number | null;
|
|
5836
|
+
audioTrackCount?: number | null;
|
|
5659
5837
|
audioSampleRate?: string | null;
|
|
5660
5838
|
audioCodecName?: string | null;
|
|
5661
5839
|
videoCodecName?: string | null;
|
|
@@ -5678,6 +5856,7 @@ export type StateSubscription = {
|
|
|
5678
5856
|
__typename?: 'StreamStatistics';
|
|
5679
5857
|
audioChannelLayout?: string | null;
|
|
5680
5858
|
audioChannels?: number | null;
|
|
5859
|
+
audioTrackCount?: number | null;
|
|
5681
5860
|
audioSampleRate?: string | null;
|
|
5682
5861
|
audioCodecName?: string | null;
|
|
5683
5862
|
videoCodecName?: string | null;
|
|
@@ -5749,6 +5928,7 @@ export type StateSubscription = {
|
|
|
5749
5928
|
__typename?: 'StreamStatistics';
|
|
5750
5929
|
audioChannelLayout?: string | null;
|
|
5751
5930
|
audioChannels?: number | null;
|
|
5931
|
+
audioTrackCount?: number | null;
|
|
5752
5932
|
audioSampleRate?: string | null;
|
|
5753
5933
|
audioCodecName?: string | null;
|
|
5754
5934
|
videoCodecName?: string | null;
|
|
@@ -5776,6 +5956,7 @@ export type StateSubscription = {
|
|
|
5776
5956
|
__typename?: 'StreamStatistics';
|
|
5777
5957
|
audioChannelLayout?: string | null;
|
|
5778
5958
|
audioChannels?: number | null;
|
|
5959
|
+
audioTrackCount?: number | null;
|
|
5779
5960
|
audioSampleRate?: string | null;
|
|
5780
5961
|
audioCodecName?: string | null;
|
|
5781
5962
|
videoCodecName?: string | null;
|
|
@@ -5807,6 +5988,11 @@ export type StateSubscription = {
|
|
|
5807
5988
|
label?: string | null;
|
|
5808
5989
|
previewUrl?: string | null;
|
|
5809
5990
|
enabled: boolean;
|
|
5991
|
+
audioSelection: {
|
|
5992
|
+
__typename?: 'OutputAudioSelection';
|
|
5993
|
+
mode: OutputAudioSelectionMode;
|
|
5994
|
+
index?: number | null;
|
|
5995
|
+
};
|
|
5810
5996
|
volume: { __typename?: 'Volume'; level: number; muted: boolean };
|
|
5811
5997
|
mixins: Array<{
|
|
5812
5998
|
__typename?: 'Mixin';
|
|
@@ -5910,6 +6096,7 @@ export type RouteWithParentSubscription = {
|
|
|
5910
6096
|
__typename?: 'StreamStatistics';
|
|
5911
6097
|
audioChannelLayout?: string | null;
|
|
5912
6098
|
audioChannels?: number | null;
|
|
6099
|
+
audioTrackCount?: number | null;
|
|
5913
6100
|
audioSampleRate?: string | null;
|
|
5914
6101
|
audioCodecName?: string | null;
|
|
5915
6102
|
videoCodecName?: string | null;
|
|
@@ -6033,6 +6220,7 @@ export type RouteWithParentSubscription = {
|
|
|
6033
6220
|
__typename?: 'StreamStatistics';
|
|
6034
6221
|
audioChannelLayout?: string | null;
|
|
6035
6222
|
audioChannels?: number | null;
|
|
6223
|
+
audioTrackCount?: number | null;
|
|
6036
6224
|
audioSampleRate?: string | null;
|
|
6037
6225
|
audioCodecName?: string | null;
|
|
6038
6226
|
videoCodecName?: string | null;
|
|
@@ -6055,6 +6243,7 @@ export type RouteWithParentSubscription = {
|
|
|
6055
6243
|
__typename?: 'StreamStatistics';
|
|
6056
6244
|
audioChannelLayout?: string | null;
|
|
6057
6245
|
audioChannels?: number | null;
|
|
6246
|
+
audioTrackCount?: number | null;
|
|
6058
6247
|
audioSampleRate?: string | null;
|
|
6059
6248
|
audioCodecName?: string | null;
|
|
6060
6249
|
videoCodecName?: string | null;
|
|
@@ -6126,6 +6315,7 @@ export type RouteWithParentSubscription = {
|
|
|
6126
6315
|
__typename?: 'StreamStatistics';
|
|
6127
6316
|
audioChannelLayout?: string | null;
|
|
6128
6317
|
audioChannels?: number | null;
|
|
6318
|
+
audioTrackCount?: number | null;
|
|
6129
6319
|
audioSampleRate?: string | null;
|
|
6130
6320
|
audioCodecName?: string | null;
|
|
6131
6321
|
videoCodecName?: string | null;
|
|
@@ -6153,6 +6343,7 @@ export type RouteWithParentSubscription = {
|
|
|
6153
6343
|
__typename?: 'StreamStatistics';
|
|
6154
6344
|
audioChannelLayout?: string | null;
|
|
6155
6345
|
audioChannels?: number | null;
|
|
6346
|
+
audioTrackCount?: number | null;
|
|
6156
6347
|
audioSampleRate?: string | null;
|
|
6157
6348
|
audioCodecName?: string | null;
|
|
6158
6349
|
videoCodecName?: string | null;
|
|
@@ -6184,6 +6375,11 @@ export type RouteWithParentSubscription = {
|
|
|
6184
6375
|
label?: string | null;
|
|
6185
6376
|
previewUrl?: string | null;
|
|
6186
6377
|
enabled: boolean;
|
|
6378
|
+
audioSelection: {
|
|
6379
|
+
__typename?: 'OutputAudioSelection';
|
|
6380
|
+
mode: OutputAudioSelectionMode;
|
|
6381
|
+
index?: number | null;
|
|
6382
|
+
};
|
|
6187
6383
|
volume: { __typename?: 'Volume'; level: number; muted: boolean };
|
|
6188
6384
|
mixins: Array<{
|
|
6189
6385
|
__typename?: 'Mixin';
|
|
@@ -6216,6 +6412,11 @@ export type RouteWithParentSubscription = {
|
|
|
6216
6412
|
label?: string | null;
|
|
6217
6413
|
previewUrl?: string | null;
|
|
6218
6414
|
enabled: boolean;
|
|
6415
|
+
audioSelection: {
|
|
6416
|
+
__typename?: 'OutputAudioSelection';
|
|
6417
|
+
mode: OutputAudioSelectionMode;
|
|
6418
|
+
index?: number | null;
|
|
6419
|
+
};
|
|
6219
6420
|
volume: { __typename?: 'Volume'; level: number; muted: boolean };
|
|
6220
6421
|
mixins: Array<{
|
|
6221
6422
|
__typename?: 'Mixin';
|
|
@@ -6258,6 +6459,7 @@ export type FilesSubscription = {
|
|
|
6258
6459
|
__typename?: 'StreamStatistics';
|
|
6259
6460
|
audioChannelLayout?: string | null;
|
|
6260
6461
|
audioChannels?: number | null;
|
|
6462
|
+
audioTrackCount?: number | null;
|
|
6261
6463
|
audioSampleRate?: string | null;
|
|
6262
6464
|
audioCodecName?: string | null;
|
|
6263
6465
|
videoCodecName?: string | null;
|
|
@@ -6292,6 +6494,7 @@ export type SingleFileSubscription = {
|
|
|
6292
6494
|
__typename?: 'StreamStatistics';
|
|
6293
6495
|
audioChannelLayout?: string | null;
|
|
6294
6496
|
audioChannels?: number | null;
|
|
6497
|
+
audioTrackCount?: number | null;
|
|
6295
6498
|
audioSampleRate?: string | null;
|
|
6296
6499
|
audioCodecName?: string | null;
|
|
6297
6500
|
videoCodecName?: string | null;
|
|
@@ -6531,6 +6734,7 @@ export type RouteBasicFragment = {
|
|
|
6531
6734
|
__typename?: 'StreamStatistics';
|
|
6532
6735
|
audioChannelLayout?: string | null;
|
|
6533
6736
|
audioChannels?: number | null;
|
|
6737
|
+
audioTrackCount?: number | null;
|
|
6534
6738
|
audioSampleRate?: string | null;
|
|
6535
6739
|
audioCodecName?: string | null;
|
|
6536
6740
|
videoCodecName?: string | null;
|
|
@@ -6654,6 +6858,7 @@ export type RouteBasicFragment = {
|
|
|
6654
6858
|
__typename?: 'StreamStatistics';
|
|
6655
6859
|
audioChannelLayout?: string | null;
|
|
6656
6860
|
audioChannels?: number | null;
|
|
6861
|
+
audioTrackCount?: number | null;
|
|
6657
6862
|
audioSampleRate?: string | null;
|
|
6658
6863
|
audioCodecName?: string | null;
|
|
6659
6864
|
videoCodecName?: string | null;
|
|
@@ -6676,6 +6881,7 @@ export type RouteBasicFragment = {
|
|
|
6676
6881
|
__typename?: 'StreamStatistics';
|
|
6677
6882
|
audioChannelLayout?: string | null;
|
|
6678
6883
|
audioChannels?: number | null;
|
|
6884
|
+
audioTrackCount?: number | null;
|
|
6679
6885
|
audioSampleRate?: string | null;
|
|
6680
6886
|
audioCodecName?: string | null;
|
|
6681
6887
|
videoCodecName?: string | null;
|
|
@@ -6730,6 +6936,11 @@ export type RouteBasicFragment = {
|
|
|
6730
6936
|
label?: string | null;
|
|
6731
6937
|
previewUrl?: string | null;
|
|
6732
6938
|
enabled: boolean;
|
|
6939
|
+
audioSelection: {
|
|
6940
|
+
__typename?: 'OutputAudioSelection';
|
|
6941
|
+
mode: OutputAudioSelectionMode;
|
|
6942
|
+
index?: number | null;
|
|
6943
|
+
};
|
|
6733
6944
|
volume: { __typename?: 'Volume'; level: number; muted: boolean };
|
|
6734
6945
|
mixins: Array<{
|
|
6735
6946
|
__typename?: 'Mixin';
|
|
@@ -6776,6 +6987,7 @@ export type RoutePlaylistSubscriptionFragment = {
|
|
|
6776
6987
|
__typename?: 'StreamStatistics';
|
|
6777
6988
|
audioChannelLayout?: string | null;
|
|
6778
6989
|
audioChannels?: number | null;
|
|
6990
|
+
audioTrackCount?: number | null;
|
|
6779
6991
|
audioSampleRate?: string | null;
|
|
6780
6992
|
audioCodecName?: string | null;
|
|
6781
6993
|
videoCodecName?: string | null;
|
|
@@ -6803,6 +7015,7 @@ export type RoutePlaylistSubscriptionFragment = {
|
|
|
6803
7015
|
__typename?: 'StreamStatistics';
|
|
6804
7016
|
audioChannelLayout?: string | null;
|
|
6805
7017
|
audioChannels?: number | null;
|
|
7018
|
+
audioTrackCount?: number | null;
|
|
6806
7019
|
audioSampleRate?: string | null;
|
|
6807
7020
|
audioCodecName?: string | null;
|
|
6808
7021
|
videoCodecName?: string | null;
|
|
@@ -6838,6 +7051,11 @@ export type RouteOutputsFragment = {
|
|
|
6838
7051
|
label?: string | null;
|
|
6839
7052
|
previewUrl?: string | null;
|
|
6840
7053
|
enabled: boolean;
|
|
7054
|
+
audioSelection: {
|
|
7055
|
+
__typename?: 'OutputAudioSelection';
|
|
7056
|
+
mode: OutputAudioSelectionMode;
|
|
7057
|
+
index?: number | null;
|
|
7058
|
+
};
|
|
6841
7059
|
volume: { __typename?: 'Volume'; level: number; muted: boolean };
|
|
6842
7060
|
mixins: Array<{
|
|
6843
7061
|
__typename?: 'Mixin';
|
|
@@ -6862,6 +7080,7 @@ export type StreamStatFragment = {
|
|
|
6862
7080
|
__typename?: 'StreamStatistics';
|
|
6863
7081
|
audioChannelLayout?: string | null;
|
|
6864
7082
|
audioChannels?: number | null;
|
|
7083
|
+
audioTrackCount?: number | null;
|
|
6865
7084
|
audioSampleRate?: string | null;
|
|
6866
7085
|
audioCodecName?: string | null;
|
|
6867
7086
|
videoCodecName?: string | null;
|
|
@@ -6888,6 +7107,7 @@ export type LocalFileInfoFragment = {
|
|
|
6888
7107
|
__typename?: 'StreamStatistics';
|
|
6889
7108
|
audioChannelLayout?: string | null;
|
|
6890
7109
|
audioChannels?: number | null;
|
|
7110
|
+
audioTrackCount?: number | null;
|
|
6891
7111
|
audioSampleRate?: string | null;
|
|
6892
7112
|
audioCodecName?: string | null;
|
|
6893
7113
|
videoCodecName?: string | null;
|
|
@@ -6943,6 +7163,7 @@ export const StreamStatQueryFragmentDoc = {
|
|
|
6943
7163
|
name: { kind: 'Name', value: 'audioChannelLayout' },
|
|
6944
7164
|
},
|
|
6945
7165
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioChannels' } },
|
|
7166
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'audioTrackCount' } },
|
|
6946
7167
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioSampleRate' } },
|
|
6947
7168
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioCodecName' } },
|
|
6948
7169
|
{ kind: 'Field', name: { kind: 'Name', value: 'videoCodecName' } },
|
|
@@ -6980,6 +7201,17 @@ export const RouteOutputsQueryFragmentDoc = {
|
|
|
6980
7201
|
{ kind: 'Field', name: { kind: 'Name', value: 'dst' } },
|
|
6981
7202
|
{ kind: 'Field', name: { kind: 'Name', value: 'label' } },
|
|
6982
7203
|
{ kind: 'Field', name: { kind: 'Name', value: 'previewUrl' } },
|
|
7204
|
+
{
|
|
7205
|
+
kind: 'Field',
|
|
7206
|
+
name: { kind: 'Name', value: 'audioSelection' },
|
|
7207
|
+
selectionSet: {
|
|
7208
|
+
kind: 'SelectionSet',
|
|
7209
|
+
selections: [
|
|
7210
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'mode' } },
|
|
7211
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'index' } },
|
|
7212
|
+
],
|
|
7213
|
+
},
|
|
7214
|
+
},
|
|
6983
7215
|
{
|
|
6984
7216
|
kind: 'Field',
|
|
6985
7217
|
name: { kind: 'Name', value: 'volume' },
|
|
@@ -7720,6 +7952,17 @@ export const RouteBasicQueryFragmentDoc = {
|
|
|
7720
7952
|
{ kind: 'Field', name: { kind: 'Name', value: 'dst' } },
|
|
7721
7953
|
{ kind: 'Field', name: { kind: 'Name', value: 'label' } },
|
|
7722
7954
|
{ kind: 'Field', name: { kind: 'Name', value: 'previewUrl' } },
|
|
7955
|
+
{
|
|
7956
|
+
kind: 'Field',
|
|
7957
|
+
name: { kind: 'Name', value: 'audioSelection' },
|
|
7958
|
+
selectionSet: {
|
|
7959
|
+
kind: 'SelectionSet',
|
|
7960
|
+
selections: [
|
|
7961
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'mode' } },
|
|
7962
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'index' } },
|
|
7963
|
+
],
|
|
7964
|
+
},
|
|
7965
|
+
},
|
|
7723
7966
|
{
|
|
7724
7967
|
kind: 'Field',
|
|
7725
7968
|
name: { kind: 'Name', value: 'volume' },
|
|
@@ -7806,6 +8049,7 @@ export const RouteBasicQueryFragmentDoc = {
|
|
|
7806
8049
|
name: { kind: 'Name', value: 'audioChannelLayout' },
|
|
7807
8050
|
},
|
|
7808
8051
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioChannels' } },
|
|
8052
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'audioTrackCount' } },
|
|
7809
8053
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioSampleRate' } },
|
|
7810
8054
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioCodecName' } },
|
|
7811
8055
|
{ kind: 'Field', name: { kind: 'Name', value: 'videoCodecName' } },
|
|
@@ -8060,6 +8304,7 @@ export const RoutePlaylistQueryFragmentDoc = {
|
|
|
8060
8304
|
name: { kind: 'Name', value: 'audioChannelLayout' },
|
|
8061
8305
|
},
|
|
8062
8306
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioChannels' } },
|
|
8307
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'audioTrackCount' } },
|
|
8063
8308
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioSampleRate' } },
|
|
8064
8309
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioCodecName' } },
|
|
8065
8310
|
{ kind: 'Field', name: { kind: 'Name', value: 'videoCodecName' } },
|
|
@@ -8092,6 +8337,7 @@ export const StreamStatFragmentDoc = {
|
|
|
8092
8337
|
name: { kind: 'Name', value: 'audioChannelLayout' },
|
|
8093
8338
|
},
|
|
8094
8339
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioChannels' } },
|
|
8340
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'audioTrackCount' } },
|
|
8095
8341
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioSampleRate' } },
|
|
8096
8342
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioCodecName' } },
|
|
8097
8343
|
{ kind: 'Field', name: { kind: 'Name', value: 'videoCodecName' } },
|
|
@@ -8129,6 +8375,17 @@ export const RouteOutputsFragmentDoc = {
|
|
|
8129
8375
|
{ kind: 'Field', name: { kind: 'Name', value: 'dst' } },
|
|
8130
8376
|
{ kind: 'Field', name: { kind: 'Name', value: 'label' } },
|
|
8131
8377
|
{ kind: 'Field', name: { kind: 'Name', value: 'previewUrl' } },
|
|
8378
|
+
{
|
|
8379
|
+
kind: 'Field',
|
|
8380
|
+
name: { kind: 'Name', value: 'audioSelection' },
|
|
8381
|
+
selectionSet: {
|
|
8382
|
+
kind: 'SelectionSet',
|
|
8383
|
+
selections: [
|
|
8384
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'mode' } },
|
|
8385
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'index' } },
|
|
8386
|
+
],
|
|
8387
|
+
},
|
|
8388
|
+
},
|
|
8132
8389
|
{
|
|
8133
8390
|
kind: 'Field',
|
|
8134
8391
|
name: { kind: 'Name', value: 'volume' },
|
|
@@ -8866,6 +9123,17 @@ export const RouteBasicFragmentDoc = {
|
|
|
8866
9123
|
{ kind: 'Field', name: { kind: 'Name', value: 'dst' } },
|
|
8867
9124
|
{ kind: 'Field', name: { kind: 'Name', value: 'label' } },
|
|
8868
9125
|
{ kind: 'Field', name: { kind: 'Name', value: 'previewUrl' } },
|
|
9126
|
+
{
|
|
9127
|
+
kind: 'Field',
|
|
9128
|
+
name: { kind: 'Name', value: 'audioSelection' },
|
|
9129
|
+
selectionSet: {
|
|
9130
|
+
kind: 'SelectionSet',
|
|
9131
|
+
selections: [
|
|
9132
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'mode' } },
|
|
9133
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'index' } },
|
|
9134
|
+
],
|
|
9135
|
+
},
|
|
9136
|
+
},
|
|
8869
9137
|
{
|
|
8870
9138
|
kind: 'Field',
|
|
8871
9139
|
name: { kind: 'Name', value: 'volume' },
|
|
@@ -8952,6 +9220,7 @@ export const RouteBasicFragmentDoc = {
|
|
|
8952
9220
|
name: { kind: 'Name', value: 'audioChannelLayout' },
|
|
8953
9221
|
},
|
|
8954
9222
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioChannels' } },
|
|
9223
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'audioTrackCount' } },
|
|
8955
9224
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioSampleRate' } },
|
|
8956
9225
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioCodecName' } },
|
|
8957
9226
|
{ kind: 'Field', name: { kind: 'Name', value: 'videoCodecName' } },
|
|
@@ -9181,6 +9450,7 @@ export const RoutePlaylistSubscriptionFragmentDoc = {
|
|
|
9181
9450
|
name: { kind: 'Name', value: 'audioChannelLayout' },
|
|
9182
9451
|
},
|
|
9183
9452
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioChannels' } },
|
|
9453
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'audioTrackCount' } },
|
|
9184
9454
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioSampleRate' } },
|
|
9185
9455
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioCodecName' } },
|
|
9186
9456
|
{ kind: 'Field', name: { kind: 'Name', value: 'videoCodecName' } },
|
|
@@ -9257,6 +9527,7 @@ export const LocalFileInfoFragmentDoc = {
|
|
|
9257
9527
|
name: { kind: 'Name', value: 'audioChannelLayout' },
|
|
9258
9528
|
},
|
|
9259
9529
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioChannels' } },
|
|
9530
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'audioTrackCount' } },
|
|
9260
9531
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioSampleRate' } },
|
|
9261
9532
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioCodecName' } },
|
|
9262
9533
|
{ kind: 'Field', name: { kind: 'Name', value: 'videoCodecName' } },
|
|
@@ -9652,6 +9923,25 @@ export const SetBaselineProfileDocument = {
|
|
|
9652
9923
|
},
|
|
9653
9924
|
type: { kind: 'NamedType', name: { kind: 'Name', value: 'String' } },
|
|
9654
9925
|
},
|
|
9926
|
+
{
|
|
9927
|
+
kind: 'VariableDefinition',
|
|
9928
|
+
variable: {
|
|
9929
|
+
kind: 'Variable',
|
|
9930
|
+
name: { kind: 'Name', value: 'sourceId' },
|
|
9931
|
+
},
|
|
9932
|
+
type: {
|
|
9933
|
+
kind: 'NamedType',
|
|
9934
|
+
name: { kind: 'Name', value: 'RouteSourceId' },
|
|
9935
|
+
},
|
|
9936
|
+
},
|
|
9937
|
+
{
|
|
9938
|
+
kind: 'VariableDefinition',
|
|
9939
|
+
variable: {
|
|
9940
|
+
kind: 'Variable',
|
|
9941
|
+
name: { kind: 'Name', value: 'fileId' },
|
|
9942
|
+
},
|
|
9943
|
+
type: { kind: 'NamedType', name: { kind: 'Name', value: 'FileId' } },
|
|
9944
|
+
},
|
|
9655
9945
|
],
|
|
9656
9946
|
selectionSet: {
|
|
9657
9947
|
kind: 'SelectionSet',
|
|
@@ -9682,6 +9972,22 @@ export const SetBaselineProfileDocument = {
|
|
|
9682
9972
|
name: { kind: 'Name', value: 'presetId' },
|
|
9683
9973
|
},
|
|
9684
9974
|
},
|
|
9975
|
+
{
|
|
9976
|
+
kind: 'Argument',
|
|
9977
|
+
name: { kind: 'Name', value: 'sourceId' },
|
|
9978
|
+
value: {
|
|
9979
|
+
kind: 'Variable',
|
|
9980
|
+
name: { kind: 'Name', value: 'sourceId' },
|
|
9981
|
+
},
|
|
9982
|
+
},
|
|
9983
|
+
{
|
|
9984
|
+
kind: 'Argument',
|
|
9985
|
+
name: { kind: 'Name', value: 'fileId' },
|
|
9986
|
+
value: {
|
|
9987
|
+
kind: 'Variable',
|
|
9988
|
+
name: { kind: 'Name', value: 'fileId' },
|
|
9989
|
+
},
|
|
9990
|
+
},
|
|
9685
9991
|
],
|
|
9686
9992
|
selectionSet: {
|
|
9687
9993
|
kind: 'SelectionSet',
|
|
@@ -10281,6 +10587,102 @@ export const UpdateRouteSourcesFailoverPolicyDocument = {
|
|
|
10281
10587
|
UpdateRouteSourcesFailoverPolicyMutation,
|
|
10282
10588
|
UpdateRouteSourcesFailoverPolicyMutationVariables
|
|
10283
10589
|
>;
|
|
10590
|
+
export const UpdateRouteSourcesDocument = {
|
|
10591
|
+
kind: 'Document',
|
|
10592
|
+
definitions: [
|
|
10593
|
+
{
|
|
10594
|
+
kind: 'OperationDefinition',
|
|
10595
|
+
operation: 'mutation',
|
|
10596
|
+
name: { kind: 'Name', value: 'UpdateRouteSources' },
|
|
10597
|
+
variableDefinitions: [
|
|
10598
|
+
{
|
|
10599
|
+
kind: 'VariableDefinition',
|
|
10600
|
+
variable: {
|
|
10601
|
+
kind: 'Variable',
|
|
10602
|
+
name: { kind: 'Name', value: 'routeId' },
|
|
10603
|
+
},
|
|
10604
|
+
type: {
|
|
10605
|
+
kind: 'NonNullType',
|
|
10606
|
+
type: {
|
|
10607
|
+
kind: 'NamedType',
|
|
10608
|
+
name: { kind: 'Name', value: 'RouteId' },
|
|
10609
|
+
},
|
|
10610
|
+
},
|
|
10611
|
+
},
|
|
10612
|
+
{
|
|
10613
|
+
kind: 'VariableDefinition',
|
|
10614
|
+
variable: {
|
|
10615
|
+
kind: 'Variable',
|
|
10616
|
+
name: { kind: 'Name', value: 'routeSources' },
|
|
10617
|
+
},
|
|
10618
|
+
type: {
|
|
10619
|
+
kind: 'NonNullType',
|
|
10620
|
+
type: {
|
|
10621
|
+
kind: 'NamedType',
|
|
10622
|
+
name: { kind: 'Name', value: 'RouteSourcesInput' },
|
|
10623
|
+
},
|
|
10624
|
+
},
|
|
10625
|
+
},
|
|
10626
|
+
],
|
|
10627
|
+
selectionSet: {
|
|
10628
|
+
kind: 'SelectionSet',
|
|
10629
|
+
selections: [
|
|
10630
|
+
{
|
|
10631
|
+
kind: 'Field',
|
|
10632
|
+
name: { kind: 'Name', value: 'routes' },
|
|
10633
|
+
selectionSet: {
|
|
10634
|
+
kind: 'SelectionSet',
|
|
10635
|
+
selections: [
|
|
10636
|
+
{
|
|
10637
|
+
kind: 'Field',
|
|
10638
|
+
name: { kind: 'Name', value: 'updateRouteSources' },
|
|
10639
|
+
arguments: [
|
|
10640
|
+
{
|
|
10641
|
+
kind: 'Argument',
|
|
10642
|
+
name: { kind: 'Name', value: 'routeId' },
|
|
10643
|
+
value: {
|
|
10644
|
+
kind: 'Variable',
|
|
10645
|
+
name: { kind: 'Name', value: 'routeId' },
|
|
10646
|
+
},
|
|
10647
|
+
},
|
|
10648
|
+
{
|
|
10649
|
+
kind: 'Argument',
|
|
10650
|
+
name: { kind: 'Name', value: 'routeSources' },
|
|
10651
|
+
value: {
|
|
10652
|
+
kind: 'Variable',
|
|
10653
|
+
name: { kind: 'Name', value: 'routeSources' },
|
|
10654
|
+
},
|
|
10655
|
+
},
|
|
10656
|
+
],
|
|
10657
|
+
selectionSet: {
|
|
10658
|
+
kind: 'SelectionSet',
|
|
10659
|
+
selections: [
|
|
10660
|
+
{
|
|
10661
|
+
kind: 'Field',
|
|
10662
|
+
name: { kind: 'Name', value: 'status' },
|
|
10663
|
+
},
|
|
10664
|
+
{
|
|
10665
|
+
kind: 'Field',
|
|
10666
|
+
name: { kind: 'Name', value: 'routeId' },
|
|
10667
|
+
},
|
|
10668
|
+
{
|
|
10669
|
+
kind: 'Field',
|
|
10670
|
+
name: { kind: 'Name', value: 'sourceId' },
|
|
10671
|
+
},
|
|
10672
|
+
],
|
|
10673
|
+
},
|
|
10674
|
+
},
|
|
10675
|
+
],
|
|
10676
|
+
},
|
|
10677
|
+
},
|
|
10678
|
+
],
|
|
10679
|
+
},
|
|
10680
|
+
},
|
|
10681
|
+
],
|
|
10682
|
+
} as unknown as DocumentNode<
|
|
10683
|
+
UpdateRouteSourcesMutation,
|
|
10684
|
+
UpdateRouteSourcesMutationVariables
|
|
10685
|
+
>;
|
|
10284
10686
|
export const SetRouteDocument = {
|
|
10285
10687
|
kind: 'Document',
|
|
10286
10688
|
definitions: [
|
|
@@ -14451,6 +14853,72 @@ export const SetSettingsDocument = {
|
|
|
14451
14853
|
},
|
|
14452
14854
|
],
|
|
14453
14855
|
} as unknown as DocumentNode<SetSettingsMutation, SetSettingsMutationVariables>;
|
|
14856
|
+
export const SetBaselineProfilePresetsDocument = {
|
|
14857
|
+
kind: 'Document',
|
|
14858
|
+
definitions: [
|
|
14859
|
+
{
|
|
14860
|
+
kind: 'OperationDefinition',
|
|
14861
|
+
operation: 'mutation',
|
|
14862
|
+
name: { kind: 'Name', value: 'SetBaselineProfilePresets' },
|
|
14863
|
+
variableDefinitions: [
|
|
14864
|
+
{
|
|
14865
|
+
kind: 'VariableDefinition',
|
|
14866
|
+
variable: {
|
|
14867
|
+
kind: 'Variable',
|
|
14868
|
+
name: { kind: 'Name', value: 'input' },
|
|
14869
|
+
},
|
|
14870
|
+
type: {
|
|
14871
|
+
kind: 'NonNullType',
|
|
14872
|
+
type: {
|
|
14873
|
+
kind: 'NamedType',
|
|
14874
|
+
name: { kind: 'Name', value: 'SetBaselineProfilePresetsInput' },
|
|
14875
|
+
},
|
|
14876
|
+
},
|
|
14877
|
+
},
|
|
14878
|
+
],
|
|
14879
|
+
selectionSet: {
|
|
14880
|
+
kind: 'SelectionSet',
|
|
14881
|
+
selections: [
|
|
14882
|
+
{
|
|
14883
|
+
kind: 'Field',
|
|
14884
|
+
name: { kind: 'Name', value: 'settings' },
|
|
14885
|
+
selectionSet: {
|
|
14886
|
+
kind: 'SelectionSet',
|
|
14887
|
+
selections: [
|
|
14888
|
+
{
|
|
14889
|
+
kind: 'Field',
|
|
14890
|
+
name: { kind: 'Name', value: 'setBaselineProfilePresets' },
|
|
14891
|
+
arguments: [
|
|
14892
|
+
{
|
|
14893
|
+
kind: 'Argument',
|
|
14894
|
+
name: { kind: 'Name', value: 'input' },
|
|
14895
|
+
value: {
|
|
14896
|
+
kind: 'Variable',
|
|
14897
|
+
name: { kind: 'Name', value: 'input' },
|
|
14898
|
+
},
|
|
14899
|
+
},
|
|
14900
|
+
],
|
|
14901
|
+
selectionSet: {
|
|
14902
|
+
kind: 'SelectionSet',
|
|
14903
|
+
selections: [
|
|
14904
|
+
{
|
|
14905
|
+
kind: 'Field',
|
|
14906
|
+
name: { kind: 'Name', value: 'status' },
|
|
14907
|
+
},
|
|
14908
|
+
],
|
|
14909
|
+
},
|
|
14910
|
+
},
|
|
14911
|
+
],
|
|
14912
|
+
},
|
|
14913
|
+
},
|
|
14914
|
+
],
|
|
14915
|
+
},
|
|
14916
|
+
},
|
|
14917
|
+
],
|
|
14918
|
+
} as unknown as DocumentNode<
|
|
14919
|
+
SetBaselineProfilePresetsMutation,
|
|
14920
|
+
SetBaselineProfilePresetsMutationVariables
|
|
14921
|
+
>;
|
|
14454
14922
|
export const ImportDocument = {
|
|
14455
14923
|
kind: 'Document',
|
|
14456
14924
|
definitions: [
|
|
@@ -14627,6 +15095,70 @@ export const GetInfoDocument = {
|
|
|
14627
15095
|
],
|
|
14628
15096
|
},
|
|
14629
15097
|
},
|
|
15098
|
+
{
|
|
15099
|
+
kind: 'Field',
|
|
15100
|
+
name: { kind: 'Name', value: 'baselineProfilePresets' },
|
|
15101
|
+
selectionSet: {
|
|
15102
|
+
kind: 'SelectionSet',
|
|
15103
|
+
selections: [
|
|
15104
|
+
{
|
|
15105
|
+
kind: 'Field',
|
|
15106
|
+
name: { kind: 'Name', value: 'id' },
|
|
15107
|
+
},
|
|
15108
|
+
{
|
|
15109
|
+
kind: 'Field',
|
|
15110
|
+
name: { kind: 'Name', value: 'label' },
|
|
15111
|
+
},
|
|
15112
|
+
{
|
|
15113
|
+
kind: 'Field',
|
|
15114
|
+
name: { kind: 'Name', value: 'profile' },
|
|
15115
|
+
selectionSet: {
|
|
15116
|
+
kind: 'SelectionSet',
|
|
15117
|
+
selections: [
|
|
15118
|
+
{
|
|
15119
|
+
kind: 'Field',
|
|
15120
|
+
name: { kind: 'Name', value: 'presetId' },
|
|
15121
|
+
},
|
|
15122
|
+
{
|
|
15123
|
+
kind: 'Field',
|
|
15124
|
+
name: { kind: 'Name', value: 'videoCodec' },
|
|
15125
|
+
},
|
|
15126
|
+
{
|
|
15127
|
+
kind: 'Field',
|
|
15128
|
+
name: { kind: 'Name', value: 'width' },
|
|
15129
|
+
},
|
|
15130
|
+
{
|
|
15131
|
+
kind: 'Field',
|
|
15132
|
+
name: { kind: 'Name', value: 'height' },
|
|
15133
|
+
},
|
|
15134
|
+
{
|
|
15135
|
+
kind: 'Field',
|
|
15136
|
+
name: { kind: 'Name', value: 'framerate' },
|
|
15137
|
+
},
|
|
15138
|
+
{
|
|
15139
|
+
kind: 'Field',
|
|
15140
|
+
name: { kind: 'Name', value: 'audioCodec' },
|
|
15141
|
+
},
|
|
15142
|
+
{
|
|
15143
|
+
kind: 'Field',
|
|
15144
|
+
name: {
|
|
15145
|
+
kind: 'Name',
|
|
15146
|
+
value: 'audioChannels',
|
|
15147
|
+
},
|
|
15148
|
+
},
|
|
15149
|
+
{
|
|
15150
|
+
kind: 'Field',
|
|
15151
|
+
name: {
|
|
15152
|
+
kind: 'Name',
|
|
15153
|
+
value: 'audioSampleRate',
|
|
15154
|
+
},
|
|
15155
|
+
},
|
|
15156
|
+
],
|
|
15157
|
+
},
|
|
15158
|
+
},
|
|
15159
|
+
],
|
|
15160
|
+
},
|
|
15161
|
+
},
|
|
14630
15162
|
{
|
|
14631
15163
|
kind: 'Field',
|
|
14632
15164
|
name: { kind: 'Name', value: 'publicHost' },
|
|
@@ -15868,6 +16400,17 @@ export const GetAllRoutesDocument = {
|
|
|
15868
16400
|
{ kind: 'Field', name: { kind: 'Name', value: 'dst' } },
|
|
15869
16401
|
{ kind: 'Field', name: { kind: 'Name', value: 'label' } },
|
|
15870
16402
|
{ kind: 'Field', name: { kind: 'Name', value: 'previewUrl' } },
|
|
16403
|
+
{
|
|
16404
|
+
kind: 'Field',
|
|
16405
|
+
name: { kind: 'Name', value: 'audioSelection' },
|
|
16406
|
+
selectionSet: {
|
|
16407
|
+
kind: 'SelectionSet',
|
|
16408
|
+
selections: [
|
|
16409
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'mode' } },
|
|
16410
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'index' } },
|
|
16411
|
+
],
|
|
16412
|
+
},
|
|
16413
|
+
},
|
|
15871
16414
|
{
|
|
15872
16415
|
kind: 'Field',
|
|
15873
16416
|
name: { kind: 'Name', value: 'volume' },
|
|
@@ -15954,6 +16497,7 @@ export const GetAllRoutesDocument = {
|
|
|
15954
16497
|
name: { kind: 'Name', value: 'audioChannelLayout' },
|
|
15955
16498
|
},
|
|
15956
16499
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioChannels' } },
|
|
16500
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'audioTrackCount' } },
|
|
15957
16501
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioSampleRate' } },
|
|
15958
16502
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioCodecName' } },
|
|
15959
16503
|
{ kind: 'Field', name: { kind: 'Name', value: 'videoCodecName' } },
|
|
@@ -16435,6 +16979,7 @@ export const LibraryFilesDocument = {
|
|
|
16435
16979
|
name: { kind: 'Name', value: 'audioChannelLayout' },
|
|
16436
16980
|
},
|
|
16437
16981
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioChannels' } },
|
|
16982
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'audioTrackCount' } },
|
|
16438
16983
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioSampleRate' } },
|
|
16439
16984
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioCodecName' } },
|
|
16440
16985
|
{ kind: 'Field', name: { kind: 'Name', value: 'videoCodecName' } },
|
|
@@ -18141,6 +18686,17 @@ export const StateDocument = {
|
|
|
18141
18686
|
{ kind: 'Field', name: { kind: 'Name', value: 'dst' } },
|
|
18142
18687
|
{ kind: 'Field', name: { kind: 'Name', value: 'label' } },
|
|
18143
18688
|
{ kind: 'Field', name: { kind: 'Name', value: 'previewUrl' } },
|
|
18689
|
+
{
|
|
18690
|
+
kind: 'Field',
|
|
18691
|
+
name: { kind: 'Name', value: 'audioSelection' },
|
|
18692
|
+
selectionSet: {
|
|
18693
|
+
kind: 'SelectionSet',
|
|
18694
|
+
selections: [
|
|
18695
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'mode' } },
|
|
18696
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'index' } },
|
|
18697
|
+
],
|
|
18698
|
+
},
|
|
18699
|
+
},
|
|
18144
18700
|
{
|
|
18145
18701
|
kind: 'Field',
|
|
18146
18702
|
name: { kind: 'Name', value: 'volume' },
|
|
@@ -18227,6 +18783,7 @@ export const StateDocument = {
|
|
|
18227
18783
|
name: { kind: 'Name', value: 'audioChannelLayout' },
|
|
18228
18784
|
},
|
|
18229
18785
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioChannels' } },
|
|
18786
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'audioTrackCount' } },
|
|
18230
18787
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioSampleRate' } },
|
|
18231
18788
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioCodecName' } },
|
|
18232
18789
|
{ kind: 'Field', name: { kind: 'Name', value: 'videoCodecName' } },
|
|
@@ -19285,6 +19842,17 @@ export const RouteWithParentDocument = {
|
|
|
19285
19842
|
{ kind: 'Field', name: { kind: 'Name', value: 'dst' } },
|
|
19286
19843
|
{ kind: 'Field', name: { kind: 'Name', value: 'label' } },
|
|
19287
19844
|
{ kind: 'Field', name: { kind: 'Name', value: 'previewUrl' } },
|
|
19845
|
+
{
|
|
19846
|
+
kind: 'Field',
|
|
19847
|
+
name: { kind: 'Name', value: 'audioSelection' },
|
|
19848
|
+
selectionSet: {
|
|
19849
|
+
kind: 'SelectionSet',
|
|
19850
|
+
selections: [
|
|
19851
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'mode' } },
|
|
19852
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'index' } },
|
|
19853
|
+
],
|
|
19854
|
+
},
|
|
19855
|
+
},
|
|
19288
19856
|
{
|
|
19289
19857
|
kind: 'Field',
|
|
19290
19858
|
name: { kind: 'Name', value: 'volume' },
|
|
@@ -19371,6 +19939,7 @@ export const RouteWithParentDocument = {
|
|
|
19371
19939
|
name: { kind: 'Name', value: 'audioChannelLayout' },
|
|
19372
19940
|
},
|
|
19373
19941
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioChannels' } },
|
|
19942
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'audioTrackCount' } },
|
|
19374
19943
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioSampleRate' } },
|
|
19375
19944
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioCodecName' } },
|
|
19376
19945
|
{ kind: 'Field', name: { kind: 'Name', value: 'videoCodecName' } },
|
|
@@ -19429,6 +19998,7 @@ export const FilesDocument = {
|
|
|
19429
19998
|
name: { kind: 'Name', value: 'audioChannelLayout' },
|
|
19430
19999
|
},
|
|
19431
20000
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioChannels' } },
|
|
20001
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'audioTrackCount' } },
|
|
19432
20002
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioSampleRate' } },
|
|
19433
20003
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioCodecName' } },
|
|
19434
20004
|
{ kind: 'Field', name: { kind: 'Name', value: 'videoCodecName' } },
|
|
@@ -19554,6 +20124,7 @@ export const SingleFileDocument = {
|
|
|
19554
20124
|
name: { kind: 'Name', value: 'audioChannelLayout' },
|
|
19555
20125
|
},
|
|
19556
20126
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioChannels' } },
|
|
20127
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'audioTrackCount' } },
|
|
19557
20128
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioSampleRate' } },
|
|
19558
20129
|
{ kind: 'Field', name: { kind: 'Name', value: 'audioCodecName' } },
|
|
19559
20130
|
{ kind: 'Field', name: { kind: 'Name', value: 'videoCodecName' } },
|