@fluxomni/api-client 0.11.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 +2 -2
- package/src/errors.ts +6 -2
- package/src/generated/graphql.ts +575 -4
|
@@ -147,6 +147,8 @@ export type AdminSettingsInfo = {
|
|
|
147
147
|
__typename?: 'AdminSettingsInfo';
|
|
148
148
|
/** Owned artifact-library defaults for imports, probing, and picker behavior. */
|
|
149
149
|
artifactLibraryPolicy: ArtifactLibraryPolicy;
|
|
150
|
+
/** Server-owned route baseline presets used for compatibility gates. */
|
|
151
|
+
baselineProfilePresets: Array<BaselineProfilePreset>;
|
|
150
152
|
/** Whether destructive actions should ask for confirmation. */
|
|
151
153
|
deleteConfirmation?: Maybe<Scalars['Boolean']['output']>;
|
|
152
154
|
/** Whether enable/disable actions should ask for confirmation. */
|
|
@@ -387,7 +389,23 @@ export type BaselineProfile = {
|
|
|
387
389
|
/** Required video width in pixels. */
|
|
388
390
|
width: Scalars['Int']['output'];
|
|
389
391
|
};
|
|
390
|
-
|
|
392
|
+
export type BaselineProfileInput = {
|
|
393
|
+
/** Required audio channel count. */
|
|
394
|
+
audioChannels: Scalars['Int']['input'];
|
|
395
|
+
/** Required audio codec name. */
|
|
396
|
+
audioCodec: Scalars['String']['input'];
|
|
397
|
+
/** Required audio sample rate in hertz. */
|
|
398
|
+
audioSampleRate: Scalars['Int']['input'];
|
|
399
|
+
/** Required frame rate as a rational string. */
|
|
400
|
+
framerate: Scalars['String']['input'];
|
|
401
|
+
/** Required video height in pixels. */
|
|
402
|
+
height: Scalars['Int']['input'];
|
|
403
|
+
/** Required video codec name. */
|
|
404
|
+
videoCodec: Scalars['String']['input'];
|
|
405
|
+
/** Required video width in pixels. */
|
|
406
|
+
width: Scalars['Int']['input'];
|
|
407
|
+
};
|
|
408
|
+
/** Baseline preset exposed to operator clients. */
|
|
391
409
|
export type BaselineProfilePreset = {
|
|
392
410
|
__typename?: 'BaselineProfilePreset';
|
|
393
411
|
/** Stable preset identifier. */
|
|
@@ -397,6 +415,14 @@ export type BaselineProfilePreset = {
|
|
|
397
415
|
/** Full media profile represented by this preset. */
|
|
398
416
|
profile: BaselineProfile;
|
|
399
417
|
};
|
|
418
|
+
export type BaselineProfilePresetInput = {
|
|
419
|
+
/** Stable preset identifier. */
|
|
420
|
+
id: Scalars['String']['input'];
|
|
421
|
+
/** Operator-facing preset label. */
|
|
422
|
+
label: Scalars['String']['input'];
|
|
423
|
+
/** Full media profile represented by this preset. */
|
|
424
|
+
profile: BaselineProfileInput;
|
|
425
|
+
};
|
|
400
426
|
/** Explicit result payload for bulk library catalog mutations. */
|
|
401
427
|
export type BulkLibraryFileMutationResult = {
|
|
402
428
|
__typename?: 'BulkLibraryFileMutationResult';
|
|
@@ -1110,6 +1136,8 @@ export declare enum ObservedTransitionKind {
|
|
|
1110
1136
|
}
|
|
1111
1137
|
export type Output = {
|
|
1112
1138
|
__typename?: 'Output';
|
|
1139
|
+
/** Origin audio selection applied before mix-ins. */
|
|
1140
|
+
audioSelection: OutputAudioSelection;
|
|
1113
1141
|
/** Downstream URL to stream a live stream onto. */
|
|
1114
1142
|
dst: Scalars['OutputDstUrl']['output'];
|
|
1115
1143
|
/** Whether this output is enabled. */
|
|
@@ -1127,6 +1155,32 @@ export type Output = {
|
|
|
1127
1155
|
/** Volume rate of this output's audio tracks when mixed with mixins. */
|
|
1128
1156
|
volume: Volume;
|
|
1129
1157
|
};
|
|
1158
|
+
/** Origin-audio selection applied before output mix-ins. */
|
|
1159
|
+
export type OutputAudioSelection = {
|
|
1160
|
+
__typename?: 'OutputAudioSelection';
|
|
1161
|
+
/** Zero-based track or channel index for indexed modes. */
|
|
1162
|
+
index?: Maybe<Scalars['Int']['output']>;
|
|
1163
|
+
/** Selection mode. */
|
|
1164
|
+
mode: OutputAudioSelectionMode;
|
|
1165
|
+
};
|
|
1166
|
+
/** Origin-audio selection payload for output create/update. */
|
|
1167
|
+
export type OutputAudioSelectionInput = {
|
|
1168
|
+
/** Zero-based track or channel index for indexed modes. */
|
|
1169
|
+
index?: InputMaybe<Scalars['Int']['input']>;
|
|
1170
|
+
/** Selection mode. */
|
|
1171
|
+
mode?: OutputAudioSelectionMode;
|
|
1172
|
+
};
|
|
1173
|
+
/** Origin-audio selection mode for an output. */
|
|
1174
|
+
export declare enum OutputAudioSelectionMode {
|
|
1175
|
+
/** Select one audio channel by channel index. */
|
|
1176
|
+
Channel = "CHANNEL",
|
|
1177
|
+
/** Preserve source audio without explicit selection. */
|
|
1178
|
+
Default = "DEFAULT",
|
|
1179
|
+
/** Keep an audio stream but replace origin samples with silence before mix-ins. */
|
|
1180
|
+
Muted = "MUTED",
|
|
1181
|
+
/** Select one audio stream by track index. */
|
|
1182
|
+
Track = "TRACK"
|
|
1183
|
+
}
|
|
1130
1184
|
/** Output health counts bucketed by `OutputPresentationPhase` for a single route. */
|
|
1131
1185
|
export type OutputHealthSummary = {
|
|
1132
1186
|
__typename?: 'OutputHealthSummary';
|
|
@@ -1259,7 +1313,7 @@ export type PlaylistFileInfo = {
|
|
|
1259
1313
|
name: Scalars['String']['output'];
|
|
1260
1314
|
/** Stream statistics from `LocalFileManager` (video/audio codecs, resolution, etc.) */
|
|
1261
1315
|
streamStat?: Maybe<StreamStatistics>;
|
|
1262
|
-
/** Whether the file
|
|
1316
|
+
/** Whether the file has completed playback in the current queue history. */
|
|
1263
1317
|
wasPlayed: Scalars['Boolean']['output'];
|
|
1264
1318
|
};
|
|
1265
1319
|
export type PlaylistFileInput = {
|
|
@@ -1697,7 +1751,7 @@ export type RouteMutation = {
|
|
|
1697
1751
|
*/
|
|
1698
1752
|
revokePublishCredential: PublishCredentialMutationResult;
|
|
1699
1753
|
/**
|
|
1700
|
-
* Sets or
|
|
1754
|
+
* Sets, clears, or adopts the route baseline profile used to gate route media inputs.
|
|
1701
1755
|
*
|
|
1702
1756
|
* Returns a `RouteMutationResult` with `status` set to `UPDATED` or `NOT_FOUND`.
|
|
1703
1757
|
*/
|
|
@@ -1739,6 +1793,14 @@ export type RouteMutation = {
|
|
|
1739
1793
|
* Returns a `RouteSourceMutationResult` with `status` set to `UPDATED`, `UNCHANGED`, or `NOT_FOUND`.
|
|
1740
1794
|
*/
|
|
1741
1795
|
updateRouteSourceLabel: RouteSourceMutationResult;
|
|
1796
|
+
/**
|
|
1797
|
+
* Updates the configured source topology for a Route without changing other Route settings.
|
|
1798
|
+
*
|
|
1799
|
+
* This is the source-management counterpart to `setRoute`: it replaces the route-source
|
|
1800
|
+
* list and failover policy while preserving route identity, label, outputs, playlist,
|
|
1801
|
+
* baseline, ownership, and source preference when the preferred source still exists.
|
|
1802
|
+
*/
|
|
1803
|
+
updateRouteSources: RouteSourceMutationResult;
|
|
1742
1804
|
/**
|
|
1743
1805
|
* Updates the failover policy for the specified Route's source set.
|
|
1744
1806
|
*
|
|
@@ -1916,8 +1978,10 @@ export type RouteMutationRevokePublishCredentialArgs = {
|
|
|
1916
1978
|
* These operations require Admin or Operator role.
|
|
1917
1979
|
*/
|
|
1918
1980
|
export type RouteMutationSetBaselineProfileArgs = {
|
|
1981
|
+
fileId?: InputMaybe<Scalars['FileId']['input']>;
|
|
1919
1982
|
presetId?: InputMaybe<Scalars['String']['input']>;
|
|
1920
1983
|
routeId: Scalars['RouteId']['input'];
|
|
1984
|
+
sourceId?: InputMaybe<Scalars['RouteSourceId']['input']>;
|
|
1921
1985
|
};
|
|
1922
1986
|
/**
|
|
1923
1987
|
* Mutation operations for the public route domain.
|
|
@@ -1978,6 +2042,15 @@ export type RouteMutationUpdateRouteSourceLabelArgs = {
|
|
|
1978
2042
|
routeId: Scalars['RouteId']['input'];
|
|
1979
2043
|
sourceId: Scalars['RouteSourceId']['input'];
|
|
1980
2044
|
};
|
|
2045
|
+
/**
|
|
2046
|
+
* Mutation operations for the public route domain.
|
|
2047
|
+
*
|
|
2048
|
+
* These operations require Admin or Operator role.
|
|
2049
|
+
*/
|
|
2050
|
+
export type RouteMutationUpdateRouteSourcesArgs = {
|
|
2051
|
+
routeId: Scalars['RouteId']['input'];
|
|
2052
|
+
routeSources: RouteSourcesInput;
|
|
2053
|
+
};
|
|
1981
2054
|
/**
|
|
1982
2055
|
* Mutation operations for the public route domain.
|
|
1983
2056
|
*
|
|
@@ -2053,7 +2126,7 @@ export type RouteQuery = {
|
|
|
2053
2126
|
__typename?: 'RouteQuery';
|
|
2054
2127
|
/** Get all routes. */
|
|
2055
2128
|
allRoutes: Array<Route>;
|
|
2056
|
-
/**
|
|
2129
|
+
/** Server route baseline profiles available for route media compatibility gating. */
|
|
2057
2130
|
baselineProfilePresets: Array<BaselineProfilePreset>;
|
|
2058
2131
|
/** Get current server information (CPU, memory, network stats). */
|
|
2059
2132
|
serverInfo: StatisticsServerInfo;
|
|
@@ -2316,8 +2389,14 @@ export type RtmpPushSource = {
|
|
|
2316
2389
|
/** Whether this push source has a publish credential. */
|
|
2317
2390
|
hasPublishCredential: Scalars['Boolean']['output'];
|
|
2318
2391
|
};
|
|
2392
|
+
export type SetBaselineProfilePresetsInput = {
|
|
2393
|
+
/** Complete server-owned route baseline profile preset catalog. */
|
|
2394
|
+
baselineProfilePresets: Array<BaselineProfilePresetInput>;
|
|
2395
|
+
};
|
|
2319
2396
|
/** Output create/update payload. */
|
|
2320
2397
|
export type SetOutputInput = {
|
|
2398
|
+
/** Origin audio selection applied before mix-ins. */
|
|
2399
|
+
audioSelection?: OutputAudioSelectionInput;
|
|
2321
2400
|
/** Destination URL to stream a live stream onto. */
|
|
2322
2401
|
dst: Scalars['OutputDstUrl']['input'];
|
|
2323
2402
|
/** ID of the Output to be updated rather than creating a new one. */
|
|
@@ -2351,6 +2430,8 @@ export type SetRouteInput = {
|
|
|
2351
2430
|
export type SetSettingsInput = {
|
|
2352
2431
|
/** Artifact library policy defaults. */
|
|
2353
2432
|
artifactLibraryPolicy?: InputMaybe<ArtifactLibraryPolicyInput>;
|
|
2433
|
+
/** Server-owned route baseline profile presets. */
|
|
2434
|
+
baselineProfilePresets?: InputMaybe<Array<BaselineProfilePresetInput>>;
|
|
2354
2435
|
/** Whether to confirm deletions. */
|
|
2355
2436
|
deleteConfirmation?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2356
2437
|
/** Whether to confirm enabling/disabling. */
|
|
@@ -2377,6 +2458,8 @@ export type SettingsInfo = {
|
|
|
2377
2458
|
__typename?: 'SettingsInfo';
|
|
2378
2459
|
/** Owned artifact-library defaults for imports, probing, and picker behavior. */
|
|
2379
2460
|
artifactLibraryPolicy: ArtifactLibraryPolicy;
|
|
2461
|
+
/** Server-owned route baseline presets used for compatibility gates. */
|
|
2462
|
+
baselineProfilePresets: Array<BaselineProfilePreset>;
|
|
2380
2463
|
/** Whether destructive actions should ask for confirmation. */
|
|
2381
2464
|
deleteConfirmation?: Maybe<Scalars['Boolean']['output']>;
|
|
2382
2465
|
/** Whether enable/disable actions should ask for confirmation. */
|
|
@@ -2610,6 +2693,8 @@ export type StreamStatistics = {
|
|
|
2610
2693
|
audioCodecName?: Maybe<Scalars['String']['output']>;
|
|
2611
2694
|
/** Audio sample rate. Example: "44100" */
|
|
2612
2695
|
audioSampleRate?: Maybe<Scalars['String']['output']>;
|
|
2696
|
+
/** Count of audio streams/tracks. Example: 2 */
|
|
2697
|
+
audioTrackCount?: Maybe<Scalars['Unumber']['output']>;
|
|
2613
2698
|
/** Total bit rate */
|
|
2614
2699
|
bitRate?: Maybe<Scalars['String']['output']>;
|
|
2615
2700
|
/** Duration in whole seconds (rounded down) */
|
|
@@ -2648,6 +2733,8 @@ export type SystemSettingsMutation = {
|
|
|
2648
2733
|
* Returns a `SettingsImportMutationResult` with `status` set to `UPDATED`, `UNCHANGED`, or `NOT_FOUND`.
|
|
2649
2734
|
*/
|
|
2650
2735
|
import: SettingsImportMutationResult;
|
|
2736
|
+
/** Replace the server-owned route baseline profile preset catalog. */
|
|
2737
|
+
setBaselineProfilePresets: SettingsMutationResult;
|
|
2651
2738
|
/**
|
|
2652
2739
|
* Compatibility password mutation for admin clients.
|
|
2653
2740
|
*
|
|
@@ -2689,6 +2776,9 @@ export type SystemSettingsMutationImportArgs = {
|
|
|
2689
2776
|
routeId?: InputMaybe<Scalars['RouteId']['input']>;
|
|
2690
2777
|
spec: Scalars['String']['input'];
|
|
2691
2778
|
};
|
|
2779
|
+
export type SystemSettingsMutationSetBaselineProfilePresetsArgs = {
|
|
2780
|
+
input: SetBaselineProfilePresetsInput;
|
|
2781
|
+
};
|
|
2692
2782
|
export type SystemSettingsMutationSetPasswordArgs = {
|
|
2693
2783
|
input: PasswordMutationInput;
|
|
2694
2784
|
};
|
|
@@ -3011,6 +3101,8 @@ export type SetRouteOwnerMutation = {
|
|
|
3011
3101
|
export type SetBaselineProfileMutationVariables = Exact<{
|
|
3012
3102
|
routeId: Scalars['RouteId']['input'];
|
|
3013
3103
|
presetId?: InputMaybe<Scalars['String']['input']>;
|
|
3104
|
+
sourceId?: InputMaybe<Scalars['RouteSourceId']['input']>;
|
|
3105
|
+
fileId?: InputMaybe<Scalars['FileId']['input']>;
|
|
3014
3106
|
}>;
|
|
3015
3107
|
export type SetBaselineProfileMutation = {
|
|
3016
3108
|
__typename?: 'UnifiedMutation';
|
|
@@ -3119,6 +3211,22 @@ export type UpdateRouteSourcesFailoverPolicyMutation = {
|
|
|
3119
3211
|
};
|
|
3120
3212
|
};
|
|
3121
3213
|
};
|
|
3214
|
+
export type UpdateRouteSourcesMutationVariables = Exact<{
|
|
3215
|
+
routeId: Scalars['RouteId']['input'];
|
|
3216
|
+
routeSources: RouteSourcesInput;
|
|
3217
|
+
}>;
|
|
3218
|
+
export type UpdateRouteSourcesMutation = {
|
|
3219
|
+
__typename?: 'UnifiedMutation';
|
|
3220
|
+
routes: {
|
|
3221
|
+
__typename?: 'RouteMutation';
|
|
3222
|
+
updateRouteSources: {
|
|
3223
|
+
__typename?: 'RouteSourceMutationResult';
|
|
3224
|
+
status: MutationResultStatus;
|
|
3225
|
+
routeId: string;
|
|
3226
|
+
sourceId?: string | null;
|
|
3227
|
+
};
|
|
3228
|
+
};
|
|
3229
|
+
};
|
|
3122
3230
|
export type SetRouteMutationVariables = Exact<{
|
|
3123
3231
|
input: SetRouteInput;
|
|
3124
3232
|
}>;
|
|
@@ -3969,6 +4077,19 @@ export type SetSettingsMutation = {
|
|
|
3969
4077
|
};
|
|
3970
4078
|
};
|
|
3971
4079
|
};
|
|
4080
|
+
export type SetBaselineProfilePresetsMutationVariables = Exact<{
|
|
4081
|
+
input: SetBaselineProfilePresetsInput;
|
|
4082
|
+
}>;
|
|
4083
|
+
export type SetBaselineProfilePresetsMutation = {
|
|
4084
|
+
__typename?: 'UnifiedMutation';
|
|
4085
|
+
settings: {
|
|
4086
|
+
__typename?: 'SystemSettingsMutation';
|
|
4087
|
+
setBaselineProfilePresets: {
|
|
4088
|
+
__typename?: 'SettingsMutationResult';
|
|
4089
|
+
status: MutationResultStatus;
|
|
4090
|
+
};
|
|
4091
|
+
};
|
|
4092
|
+
};
|
|
3972
4093
|
export type ImportMutationVariables = Exact<{
|
|
3973
4094
|
routeId?: InputMaybe<Scalars['RouteId']['input']>;
|
|
3974
4095
|
replace: Scalars['Boolean']['input'];
|
|
@@ -4008,6 +4129,22 @@ export type GetInfoQuery = {
|
|
|
4008
4129
|
pickerCompatibilityDefault: ArtifactPickerCompatibilityDefault;
|
|
4009
4130
|
defaultDerivedArtifactLifecyclePolicy: ArtifactLifecyclePolicy;
|
|
4010
4131
|
};
|
|
4132
|
+
baselineProfilePresets: Array<{
|
|
4133
|
+
__typename?: 'BaselineProfilePreset';
|
|
4134
|
+
id: string;
|
|
4135
|
+
label: string;
|
|
4136
|
+
profile: {
|
|
4137
|
+
__typename?: 'BaselineProfile';
|
|
4138
|
+
presetId: string;
|
|
4139
|
+
videoCodec: string;
|
|
4140
|
+
width: number;
|
|
4141
|
+
height: number;
|
|
4142
|
+
framerate: string;
|
|
4143
|
+
audioCodec: string;
|
|
4144
|
+
audioChannels: number;
|
|
4145
|
+
audioSampleRate: number;
|
|
4146
|
+
};
|
|
4147
|
+
}>;
|
|
4011
4148
|
};
|
|
4012
4149
|
me?: {
|
|
4013
4150
|
__typename?: 'UserAccount';
|
|
@@ -4139,6 +4276,7 @@ export type GetAllRoutesQuery = {
|
|
|
4139
4276
|
__typename?: 'StreamStatistics';
|
|
4140
4277
|
audioChannelLayout?: string | null;
|
|
4141
4278
|
audioChannels?: number | null;
|
|
4279
|
+
audioTrackCount?: number | null;
|
|
4142
4280
|
audioSampleRate?: string | null;
|
|
4143
4281
|
audioCodecName?: string | null;
|
|
4144
4282
|
videoCodecName?: string | null;
|
|
@@ -4269,6 +4407,7 @@ export type GetAllRoutesQuery = {
|
|
|
4269
4407
|
__typename?: 'StreamStatistics';
|
|
4270
4408
|
audioChannelLayout?: string | null;
|
|
4271
4409
|
audioChannels?: number | null;
|
|
4410
|
+
audioTrackCount?: number | null;
|
|
4272
4411
|
audioSampleRate?: string | null;
|
|
4273
4412
|
audioCodecName?: string | null;
|
|
4274
4413
|
videoCodecName?: string | null;
|
|
@@ -4291,6 +4430,7 @@ export type GetAllRoutesQuery = {
|
|
|
4291
4430
|
__typename?: 'StreamStatistics';
|
|
4292
4431
|
audioChannelLayout?: string | null;
|
|
4293
4432
|
audioChannels?: number | null;
|
|
4433
|
+
audioTrackCount?: number | null;
|
|
4294
4434
|
audioSampleRate?: string | null;
|
|
4295
4435
|
audioCodecName?: string | null;
|
|
4296
4436
|
videoCodecName?: string | null;
|
|
@@ -4362,6 +4502,7 @@ export type GetAllRoutesQuery = {
|
|
|
4362
4502
|
__typename?: 'StreamStatistics';
|
|
4363
4503
|
audioChannelLayout?: string | null;
|
|
4364
4504
|
audioChannels?: number | null;
|
|
4505
|
+
audioTrackCount?: number | null;
|
|
4365
4506
|
audioSampleRate?: string | null;
|
|
4366
4507
|
audioCodecName?: string | null;
|
|
4367
4508
|
videoCodecName?: string | null;
|
|
@@ -4389,6 +4530,7 @@ export type GetAllRoutesQuery = {
|
|
|
4389
4530
|
__typename?: 'StreamStatistics';
|
|
4390
4531
|
audioChannelLayout?: string | null;
|
|
4391
4532
|
audioChannels?: number | null;
|
|
4533
|
+
audioTrackCount?: number | null;
|
|
4392
4534
|
audioSampleRate?: string | null;
|
|
4393
4535
|
audioCodecName?: string | null;
|
|
4394
4536
|
videoCodecName?: string | null;
|
|
@@ -4420,6 +4562,11 @@ export type GetAllRoutesQuery = {
|
|
|
4420
4562
|
label?: string | null;
|
|
4421
4563
|
previewUrl?: string | null;
|
|
4422
4564
|
enabled: boolean;
|
|
4565
|
+
audioSelection: {
|
|
4566
|
+
__typename?: 'OutputAudioSelection';
|
|
4567
|
+
mode: OutputAudioSelectionMode;
|
|
4568
|
+
index?: number | null;
|
|
4569
|
+
};
|
|
4423
4570
|
volume: {
|
|
4424
4571
|
__typename?: 'Volume';
|
|
4425
4572
|
level: number;
|
|
@@ -4556,6 +4703,7 @@ export type LibraryFilesQuery = {
|
|
|
4556
4703
|
__typename?: 'StreamStatistics';
|
|
4557
4704
|
audioChannelLayout?: string | null;
|
|
4558
4705
|
audioChannels?: number | null;
|
|
4706
|
+
audioTrackCount?: number | null;
|
|
4559
4707
|
audioSampleRate?: string | null;
|
|
4560
4708
|
audioCodecName?: string | null;
|
|
4561
4709
|
videoCodecName?: string | null;
|
|
@@ -4812,6 +4960,7 @@ export type RouteBasicQueryFragment = {
|
|
|
4812
4960
|
__typename?: 'StreamStatistics';
|
|
4813
4961
|
audioChannelLayout?: string | null;
|
|
4814
4962
|
audioChannels?: number | null;
|
|
4963
|
+
audioTrackCount?: number | null;
|
|
4815
4964
|
audioSampleRate?: string | null;
|
|
4816
4965
|
audioCodecName?: string | null;
|
|
4817
4966
|
videoCodecName?: string | null;
|
|
@@ -4942,6 +5091,7 @@ export type RouteBasicQueryFragment = {
|
|
|
4942
5091
|
__typename?: 'StreamStatistics';
|
|
4943
5092
|
audioChannelLayout?: string | null;
|
|
4944
5093
|
audioChannels?: number | null;
|
|
5094
|
+
audioTrackCount?: number | null;
|
|
4945
5095
|
audioSampleRate?: string | null;
|
|
4946
5096
|
audioCodecName?: string | null;
|
|
4947
5097
|
videoCodecName?: string | null;
|
|
@@ -4964,6 +5114,7 @@ export type RouteBasicQueryFragment = {
|
|
|
4964
5114
|
__typename?: 'StreamStatistics';
|
|
4965
5115
|
audioChannelLayout?: string | null;
|
|
4966
5116
|
audioChannels?: number | null;
|
|
5117
|
+
audioTrackCount?: number | null;
|
|
4967
5118
|
audioSampleRate?: string | null;
|
|
4968
5119
|
audioCodecName?: string | null;
|
|
4969
5120
|
videoCodecName?: string | null;
|
|
@@ -5018,6 +5169,11 @@ export type RouteBasicQueryFragment = {
|
|
|
5018
5169
|
label?: string | null;
|
|
5019
5170
|
previewUrl?: string | null;
|
|
5020
5171
|
enabled: boolean;
|
|
5172
|
+
audioSelection: {
|
|
5173
|
+
__typename?: 'OutputAudioSelection';
|
|
5174
|
+
mode: OutputAudioSelectionMode;
|
|
5175
|
+
index?: number | null;
|
|
5176
|
+
};
|
|
5021
5177
|
volume: {
|
|
5022
5178
|
__typename?: 'Volume';
|
|
5023
5179
|
level: number;
|
|
@@ -5081,6 +5237,7 @@ export type RoutePlaylistQueryFragment = {
|
|
|
5081
5237
|
__typename?: 'StreamStatistics';
|
|
5082
5238
|
audioChannelLayout?: string | null;
|
|
5083
5239
|
audioChannels?: number | null;
|
|
5240
|
+
audioTrackCount?: number | null;
|
|
5084
5241
|
audioSampleRate?: string | null;
|
|
5085
5242
|
audioCodecName?: string | null;
|
|
5086
5243
|
videoCodecName?: string | null;
|
|
@@ -5108,6 +5265,7 @@ export type RoutePlaylistQueryFragment = {
|
|
|
5108
5265
|
__typename?: 'StreamStatistics';
|
|
5109
5266
|
audioChannelLayout?: string | null;
|
|
5110
5267
|
audioChannels?: number | null;
|
|
5268
|
+
audioTrackCount?: number | null;
|
|
5111
5269
|
audioSampleRate?: string | null;
|
|
5112
5270
|
audioCodecName?: string | null;
|
|
5113
5271
|
videoCodecName?: string | null;
|
|
@@ -5142,6 +5300,11 @@ export type RouteOutputsQueryFragment = {
|
|
|
5142
5300
|
label?: string | null;
|
|
5143
5301
|
previewUrl?: string | null;
|
|
5144
5302
|
enabled: boolean;
|
|
5303
|
+
audioSelection: {
|
|
5304
|
+
__typename?: 'OutputAudioSelection';
|
|
5305
|
+
mode: OutputAudioSelectionMode;
|
|
5306
|
+
index?: number | null;
|
|
5307
|
+
};
|
|
5145
5308
|
volume: {
|
|
5146
5309
|
__typename?: 'Volume';
|
|
5147
5310
|
level: number;
|
|
@@ -5173,6 +5336,7 @@ export type StreamStatQueryFragment = {
|
|
|
5173
5336
|
__typename?: 'StreamStatistics';
|
|
5174
5337
|
audioChannelLayout?: string | null;
|
|
5175
5338
|
audioChannels?: number | null;
|
|
5339
|
+
audioTrackCount?: number | null;
|
|
5176
5340
|
audioSampleRate?: string | null;
|
|
5177
5341
|
audioCodecName?: string | null;
|
|
5178
5342
|
videoCodecName?: string | null;
|
|
@@ -5268,6 +5432,7 @@ export type StateSubscription = {
|
|
|
5268
5432
|
__typename?: 'StreamStatistics';
|
|
5269
5433
|
audioChannelLayout?: string | null;
|
|
5270
5434
|
audioChannels?: number | null;
|
|
5435
|
+
audioTrackCount?: number | null;
|
|
5271
5436
|
audioSampleRate?: string | null;
|
|
5272
5437
|
audioCodecName?: string | null;
|
|
5273
5438
|
videoCodecName?: string | null;
|
|
@@ -5398,6 +5563,7 @@ export type StateSubscription = {
|
|
|
5398
5563
|
__typename?: 'StreamStatistics';
|
|
5399
5564
|
audioChannelLayout?: string | null;
|
|
5400
5565
|
audioChannels?: number | null;
|
|
5566
|
+
audioTrackCount?: number | null;
|
|
5401
5567
|
audioSampleRate?: string | null;
|
|
5402
5568
|
audioCodecName?: string | null;
|
|
5403
5569
|
videoCodecName?: string | null;
|
|
@@ -5420,6 +5586,7 @@ export type StateSubscription = {
|
|
|
5420
5586
|
__typename?: 'StreamStatistics';
|
|
5421
5587
|
audioChannelLayout?: string | null;
|
|
5422
5588
|
audioChannels?: number | null;
|
|
5589
|
+
audioTrackCount?: number | null;
|
|
5423
5590
|
audioSampleRate?: string | null;
|
|
5424
5591
|
audioCodecName?: string | null;
|
|
5425
5592
|
videoCodecName?: string | null;
|
|
@@ -5491,6 +5658,7 @@ export type StateSubscription = {
|
|
|
5491
5658
|
__typename?: 'StreamStatistics';
|
|
5492
5659
|
audioChannelLayout?: string | null;
|
|
5493
5660
|
audioChannels?: number | null;
|
|
5661
|
+
audioTrackCount?: number | null;
|
|
5494
5662
|
audioSampleRate?: string | null;
|
|
5495
5663
|
audioCodecName?: string | null;
|
|
5496
5664
|
videoCodecName?: string | null;
|
|
@@ -5518,6 +5686,7 @@ export type StateSubscription = {
|
|
|
5518
5686
|
__typename?: 'StreamStatistics';
|
|
5519
5687
|
audioChannelLayout?: string | null;
|
|
5520
5688
|
audioChannels?: number | null;
|
|
5689
|
+
audioTrackCount?: number | null;
|
|
5521
5690
|
audioSampleRate?: string | null;
|
|
5522
5691
|
audioCodecName?: string | null;
|
|
5523
5692
|
videoCodecName?: string | null;
|
|
@@ -5549,6 +5718,11 @@ export type StateSubscription = {
|
|
|
5549
5718
|
label?: string | null;
|
|
5550
5719
|
previewUrl?: string | null;
|
|
5551
5720
|
enabled: boolean;
|
|
5721
|
+
audioSelection: {
|
|
5722
|
+
__typename?: 'OutputAudioSelection';
|
|
5723
|
+
mode: OutputAudioSelectionMode;
|
|
5724
|
+
index?: number | null;
|
|
5725
|
+
};
|
|
5552
5726
|
volume: {
|
|
5553
5727
|
__typename?: 'Volume';
|
|
5554
5728
|
level: number;
|
|
@@ -5656,6 +5830,7 @@ export type RouteWithParentSubscription = {
|
|
|
5656
5830
|
__typename?: 'StreamStatistics';
|
|
5657
5831
|
audioChannelLayout?: string | null;
|
|
5658
5832
|
audioChannels?: number | null;
|
|
5833
|
+
audioTrackCount?: number | null;
|
|
5659
5834
|
audioSampleRate?: string | null;
|
|
5660
5835
|
audioCodecName?: string | null;
|
|
5661
5836
|
videoCodecName?: string | null;
|
|
@@ -5786,6 +5961,7 @@ export type RouteWithParentSubscription = {
|
|
|
5786
5961
|
__typename?: 'StreamStatistics';
|
|
5787
5962
|
audioChannelLayout?: string | null;
|
|
5788
5963
|
audioChannels?: number | null;
|
|
5964
|
+
audioTrackCount?: number | null;
|
|
5789
5965
|
audioSampleRate?: string | null;
|
|
5790
5966
|
audioCodecName?: string | null;
|
|
5791
5967
|
videoCodecName?: string | null;
|
|
@@ -5808,6 +5984,7 @@ export type RouteWithParentSubscription = {
|
|
|
5808
5984
|
__typename?: 'StreamStatistics';
|
|
5809
5985
|
audioChannelLayout?: string | null;
|
|
5810
5986
|
audioChannels?: number | null;
|
|
5987
|
+
audioTrackCount?: number | null;
|
|
5811
5988
|
audioSampleRate?: string | null;
|
|
5812
5989
|
audioCodecName?: string | null;
|
|
5813
5990
|
videoCodecName?: string | null;
|
|
@@ -5879,6 +6056,7 @@ export type RouteWithParentSubscription = {
|
|
|
5879
6056
|
__typename?: 'StreamStatistics';
|
|
5880
6057
|
audioChannelLayout?: string | null;
|
|
5881
6058
|
audioChannels?: number | null;
|
|
6059
|
+
audioTrackCount?: number | null;
|
|
5882
6060
|
audioSampleRate?: string | null;
|
|
5883
6061
|
audioCodecName?: string | null;
|
|
5884
6062
|
videoCodecName?: string | null;
|
|
@@ -5906,6 +6084,7 @@ export type RouteWithParentSubscription = {
|
|
|
5906
6084
|
__typename?: 'StreamStatistics';
|
|
5907
6085
|
audioChannelLayout?: string | null;
|
|
5908
6086
|
audioChannels?: number | null;
|
|
6087
|
+
audioTrackCount?: number | null;
|
|
5909
6088
|
audioSampleRate?: string | null;
|
|
5910
6089
|
audioCodecName?: string | null;
|
|
5911
6090
|
videoCodecName?: string | null;
|
|
@@ -5937,6 +6116,11 @@ export type RouteWithParentSubscription = {
|
|
|
5937
6116
|
label?: string | null;
|
|
5938
6117
|
previewUrl?: string | null;
|
|
5939
6118
|
enabled: boolean;
|
|
6119
|
+
audioSelection: {
|
|
6120
|
+
__typename?: 'OutputAudioSelection';
|
|
6121
|
+
mode: OutputAudioSelectionMode;
|
|
6122
|
+
index?: number | null;
|
|
6123
|
+
};
|
|
5940
6124
|
volume: {
|
|
5941
6125
|
__typename?: 'Volume';
|
|
5942
6126
|
level: number;
|
|
@@ -5977,6 +6161,11 @@ export type RouteWithParentSubscription = {
|
|
|
5977
6161
|
label?: string | null;
|
|
5978
6162
|
previewUrl?: string | null;
|
|
5979
6163
|
enabled: boolean;
|
|
6164
|
+
audioSelection: {
|
|
6165
|
+
__typename?: 'OutputAudioSelection';
|
|
6166
|
+
mode: OutputAudioSelectionMode;
|
|
6167
|
+
index?: number | null;
|
|
6168
|
+
};
|
|
5980
6169
|
volume: {
|
|
5981
6170
|
__typename?: 'Volume';
|
|
5982
6171
|
level: number;
|
|
@@ -6027,6 +6216,7 @@ export type FilesSubscription = {
|
|
|
6027
6216
|
__typename?: 'StreamStatistics';
|
|
6028
6217
|
audioChannelLayout?: string | null;
|
|
6029
6218
|
audioChannels?: number | null;
|
|
6219
|
+
audioTrackCount?: number | null;
|
|
6030
6220
|
audioSampleRate?: string | null;
|
|
6031
6221
|
audioCodecName?: string | null;
|
|
6032
6222
|
videoCodecName?: string | null;
|
|
@@ -6059,6 +6249,7 @@ export type SingleFileSubscription = {
|
|
|
6059
6249
|
__typename?: 'StreamStatistics';
|
|
6060
6250
|
audioChannelLayout?: string | null;
|
|
6061
6251
|
audioChannels?: number | null;
|
|
6252
|
+
audioTrackCount?: number | null;
|
|
6062
6253
|
audioSampleRate?: string | null;
|
|
6063
6254
|
audioCodecName?: string | null;
|
|
6064
6255
|
videoCodecName?: string | null;
|
|
@@ -6301,6 +6492,7 @@ export type RouteBasicFragment = {
|
|
|
6301
6492
|
__typename?: 'StreamStatistics';
|
|
6302
6493
|
audioChannelLayout?: string | null;
|
|
6303
6494
|
audioChannels?: number | null;
|
|
6495
|
+
audioTrackCount?: number | null;
|
|
6304
6496
|
audioSampleRate?: string | null;
|
|
6305
6497
|
audioCodecName?: string | null;
|
|
6306
6498
|
videoCodecName?: string | null;
|
|
@@ -6431,6 +6623,7 @@ export type RouteBasicFragment = {
|
|
|
6431
6623
|
__typename?: 'StreamStatistics';
|
|
6432
6624
|
audioChannelLayout?: string | null;
|
|
6433
6625
|
audioChannels?: number | null;
|
|
6626
|
+
audioTrackCount?: number | null;
|
|
6434
6627
|
audioSampleRate?: string | null;
|
|
6435
6628
|
audioCodecName?: string | null;
|
|
6436
6629
|
videoCodecName?: string | null;
|
|
@@ -6453,6 +6646,7 @@ export type RouteBasicFragment = {
|
|
|
6453
6646
|
__typename?: 'StreamStatistics';
|
|
6454
6647
|
audioChannelLayout?: string | null;
|
|
6455
6648
|
audioChannels?: number | null;
|
|
6649
|
+
audioTrackCount?: number | null;
|
|
6456
6650
|
audioSampleRate?: string | null;
|
|
6457
6651
|
audioCodecName?: string | null;
|
|
6458
6652
|
videoCodecName?: string | null;
|
|
@@ -6507,6 +6701,11 @@ export type RouteBasicFragment = {
|
|
|
6507
6701
|
label?: string | null;
|
|
6508
6702
|
previewUrl?: string | null;
|
|
6509
6703
|
enabled: boolean;
|
|
6704
|
+
audioSelection: {
|
|
6705
|
+
__typename?: 'OutputAudioSelection';
|
|
6706
|
+
mode: OutputAudioSelectionMode;
|
|
6707
|
+
index?: number | null;
|
|
6708
|
+
};
|
|
6510
6709
|
volume: {
|
|
6511
6710
|
__typename?: 'Volume';
|
|
6512
6711
|
level: number;
|
|
@@ -6560,6 +6759,7 @@ export type RoutePlaylistSubscriptionFragment = {
|
|
|
6560
6759
|
__typename?: 'StreamStatistics';
|
|
6561
6760
|
audioChannelLayout?: string | null;
|
|
6562
6761
|
audioChannels?: number | null;
|
|
6762
|
+
audioTrackCount?: number | null;
|
|
6563
6763
|
audioSampleRate?: string | null;
|
|
6564
6764
|
audioCodecName?: string | null;
|
|
6565
6765
|
videoCodecName?: string | null;
|
|
@@ -6587,6 +6787,7 @@ export type RoutePlaylistSubscriptionFragment = {
|
|
|
6587
6787
|
__typename?: 'StreamStatistics';
|
|
6588
6788
|
audioChannelLayout?: string | null;
|
|
6589
6789
|
audioChannels?: number | null;
|
|
6790
|
+
audioTrackCount?: number | null;
|
|
6590
6791
|
audioSampleRate?: string | null;
|
|
6591
6792
|
audioCodecName?: string | null;
|
|
6592
6793
|
videoCodecName?: string | null;
|
|
@@ -6621,6 +6822,11 @@ export type RouteOutputsFragment = {
|
|
|
6621
6822
|
label?: string | null;
|
|
6622
6823
|
previewUrl?: string | null;
|
|
6623
6824
|
enabled: boolean;
|
|
6825
|
+
audioSelection: {
|
|
6826
|
+
__typename?: 'OutputAudioSelection';
|
|
6827
|
+
mode: OutputAudioSelectionMode;
|
|
6828
|
+
index?: number | null;
|
|
6829
|
+
};
|
|
6624
6830
|
volume: {
|
|
6625
6831
|
__typename?: 'Volume';
|
|
6626
6832
|
level: number;
|
|
@@ -6652,6 +6858,7 @@ export type StreamStatFragment = {
|
|
|
6652
6858
|
__typename?: 'StreamStatistics';
|
|
6653
6859
|
audioChannelLayout?: string | null;
|
|
6654
6860
|
audioChannels?: number | null;
|
|
6861
|
+
audioTrackCount?: number | null;
|
|
6655
6862
|
audioSampleRate?: string | null;
|
|
6656
6863
|
audioCodecName?: string | null;
|
|
6657
6864
|
videoCodecName?: string | null;
|
|
@@ -6677,6 +6884,7 @@ export type LocalFileInfoFragment = {
|
|
|
6677
6884
|
__typename?: 'StreamStatistics';
|
|
6678
6885
|
audioChannelLayout?: string | null;
|
|
6679
6886
|
audioChannels?: number | null;
|
|
6887
|
+
audioTrackCount?: number | null;
|
|
6680
6888
|
audioSampleRate?: string | null;
|
|
6681
6889
|
audioCodecName?: string | null;
|
|
6682
6890
|
videoCodecName?: string | null;
|
|
@@ -6711,6 +6919,7 @@ export declare const PreferRouteSourceDocument: DocumentNode<PreferRouteSourceMu
|
|
|
6711
6919
|
export declare const ClearRouteSourcePreferenceDocument: DocumentNode<ClearRouteSourcePreferenceMutation, ClearRouteSourcePreferenceMutationVariables>;
|
|
6712
6920
|
export declare const UpdateRouteSourceLabelDocument: DocumentNode<UpdateRouteSourceLabelMutation, UpdateRouteSourceLabelMutationVariables>;
|
|
6713
6921
|
export declare const UpdateRouteSourcesFailoverPolicyDocument: DocumentNode<UpdateRouteSourcesFailoverPolicyMutation, UpdateRouteSourcesFailoverPolicyMutationVariables>;
|
|
6922
|
+
export declare const UpdateRouteSourcesDocument: DocumentNode<UpdateRouteSourcesMutation, UpdateRouteSourcesMutationVariables>;
|
|
6714
6923
|
export declare const SetRouteDocument: DocumentNode<SetRouteMutation, SetRouteMutationVariables>;
|
|
6715
6924
|
export declare const SetOutputDocument: DocumentNode<SetOutputMutation, SetOutputMutationVariables>;
|
|
6716
6925
|
export declare const MoveOutputDocument: DocumentNode<MoveOutputMutation, MoveOutputMutationVariables>;
|
|
@@ -6753,6 +6962,7 @@ export declare const CreateUserDocument: DocumentNode<CreateUserMutation, Create
|
|
|
6753
6962
|
export declare const UpdateUserRoleDocument: DocumentNode<UpdateUserRoleMutation, UpdateUserRoleMutationVariables>;
|
|
6754
6963
|
export declare const DeleteUserDocument: DocumentNode<DeleteUserMutation, DeleteUserMutationVariables>;
|
|
6755
6964
|
export declare const SetSettingsDocument: DocumentNode<SetSettingsMutation, SetSettingsMutationVariables>;
|
|
6965
|
+
export declare const SetBaselineProfilePresetsDocument: DocumentNode<SetBaselineProfilePresetsMutation, SetBaselineProfilePresetsMutationVariables>;
|
|
6756
6966
|
export declare const ImportDocument: DocumentNode<ImportMutation, ImportMutationVariables>;
|
|
6757
6967
|
export declare const GetInfoDocument: DocumentNode<GetInfoQuery, GetInfoQueryVariables>;
|
|
6758
6968
|
export declare const GetServerInfoDocument: DocumentNode<GetServerInfoQuery, GetServerInfoQueryVariables>;
|