@basmilius/apple-airplay 0.0.103 → 0.1.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.
@@ -0,0 +1,64 @@
1
+ import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
2
+ import type { Message } from "@bufbuild/protobuf";
3
+ /**
4
+ * Describes the file Artwork.proto.
5
+ */
6
+ export declare const file_Artwork: GenFile;
7
+ /**
8
+ * @generated from message AnimatedArtwork
9
+ */
10
+ export type AnimatedArtwork = Message<"AnimatedArtwork"> & {
11
+ /**
12
+ * @generated from field: optional string type = 1;
13
+ */
14
+ type: string;
15
+ /**
16
+ * @generated from field: optional bytes assetFileURLData = 2;
17
+ */
18
+ assetFileURLData: Uint8Array;
19
+ };
20
+ /**
21
+ * Describes the message AnimatedArtwork.
22
+ * Use `create(AnimatedArtworkSchema)` to create a new message.
23
+ */
24
+ export declare const AnimatedArtworkSchema: GenMessage<AnimatedArtwork>;
25
+ /**
26
+ * @generated from message DataArtwork
27
+ */
28
+ export type DataArtwork = Message<"DataArtwork"> & {
29
+ /**
30
+ * @generated from field: optional string type = 1;
31
+ */
32
+ type: string;
33
+ /**
34
+ * @generated from field: optional bytes imageData = 2;
35
+ */
36
+ imageData: Uint8Array;
37
+ };
38
+ /**
39
+ * Describes the message DataArtwork.
40
+ * Use `create(DataArtworkSchema)` to create a new message.
41
+ */
42
+ export declare const DataArtworkSchema: GenMessage<DataArtwork>;
43
+ /**
44
+ * @generated from message RemoteArtwork
45
+ */
46
+ export type RemoteArtwork = Message<"RemoteArtwork"> & {
47
+ /**
48
+ * @generated from field: optional string type = 1;
49
+ */
50
+ type: string;
51
+ /**
52
+ * @generated from field: optional string artworkURLString = 2;
53
+ */
54
+ artworkURLString: string;
55
+ /**
56
+ * @generated from field: optional bytes artworkURLTemplateData = 3;
57
+ */
58
+ artworkURLTemplateData: Uint8Array;
59
+ };
60
+ /**
61
+ * Describes the message RemoteArtwork.
62
+ * Use `create(RemoteArtworkSchema)` to create a new message.
63
+ */
64
+ export declare const RemoteArtworkSchema: GenMessage<RemoteArtwork>;
@@ -1,4 +1,5 @@
1
1
  import type { GenExtension, GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
2
+ import type { PlayerPath } from "./PlayerPath_pb";
2
3
  import type { ProtocolMessage } from "./ProtocolMessage_pb";
3
4
  import type { Message } from "@bufbuild/protobuf";
4
5
  /**
@@ -30,9 +31,13 @@ export type ClientUpdatesConfigMessage = Message<"ClientUpdatesConfigMessage"> &
30
31
  */
31
32
  outputDeviceUpdates: boolean;
32
33
  /**
33
- * @generated from field: optional bool __unknown1 = 6;
34
+ * @generated from field: optional bool systemEndpointUpdates = 6;
34
35
  */
35
- Unknown1: boolean;
36
+ systemEndpointUpdates: boolean;
37
+ /**
38
+ * @generated from field: repeated PlayerPath subscribedPlayerPaths = 7;
39
+ */
40
+ subscribedPlayerPaths: PlayerPath[];
36
41
  };
37
42
  /**
38
43
  * Describes the message ClientUpdatesConfigMessage.
@@ -1,5 +1,7 @@
1
1
  import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
2
2
  import type { RepeatMode_Enum, ShuffleMode_Enum } from "./Common_pb";
3
+ import type { Dictionary } from "./Dictionary_pb";
4
+ import type { SystemPlaybackQueue } from "./SystemPlaybackQueue_pb";
3
5
  import type { Message } from "@bufbuild/protobuf";
4
6
  /**
5
7
  * Describes the file CommandOptions.proto.
@@ -129,6 +131,226 @@ export type CommandOptions = Message<"CommandOptions"> & {
129
131
  * @generated from field: optional int32 replaceIntent = 31;
130
132
  */
131
133
  replaceIntent: number;
134
+ /**
135
+ * @generated from field: optional string commandID = 32;
136
+ */
137
+ commandID: string;
138
+ /**
139
+ * @generated from field: optional string senderID = 33;
140
+ */
141
+ senderID: string;
142
+ /**
143
+ * @generated from field: optional string remoteControlInterface = 34;
144
+ */
145
+ remoteControlInterface: string;
146
+ /**
147
+ * @generated from field: optional uint64 beginSeek = 40;
148
+ */
149
+ beginSeek: bigint;
150
+ /**
151
+ * @generated from field: optional uint64 endSeek = 41;
152
+ */
153
+ endSeek: bigint;
154
+ /**
155
+ * @generated from field: optional bytes playbackSession = 42;
156
+ */
157
+ playbackSession: Uint8Array;
158
+ /**
159
+ * @generated from field: optional bytes userIdentityData = 43;
160
+ */
161
+ userIdentityData: Uint8Array;
162
+ /**
163
+ * @generated from field: optional string insertBeforeContentItemID = 44;
164
+ */
165
+ insertBeforeContentItemID: string;
166
+ /**
167
+ * @generated from field: optional uint32 queueEndAction = 45;
168
+ */
169
+ queueEndAction: number;
170
+ /**
171
+ * @generated from field: optional bool preservesRepeatMode = 46;
172
+ */
173
+ preservesRepeatMode: boolean;
174
+ /**
175
+ * @generated from field: optional bool preservesShuffleMode = 47;
176
+ */
177
+ preservesShuffleMode: boolean;
178
+ /**
179
+ * @generated from field: optional bool preservesQueueEndAction = 48;
180
+ */
181
+ preservesQueueEndAction: boolean;
182
+ /**
183
+ * @generated from field: optional string homeKitUserIdentifier = 49;
184
+ */
185
+ homeKitUserIdentifier: string;
186
+ /**
187
+ * @generated from field: optional bool verifySupportedCommands = 50;
188
+ */
189
+ verifySupportedCommands: boolean;
190
+ /**
191
+ * @generated from field: optional uint32 playbackSessionPriority = 52;
192
+ */
193
+ playbackSessionPriority: number;
194
+ /**
195
+ * @generated from field: optional string playbackSessionFilePath = 53;
196
+ */
197
+ playbackSessionFilePath: string;
198
+ /**
199
+ * @generated from field: optional string playbackSessionRevision = 54;
200
+ */
201
+ playbackSessionRevision: string;
202
+ /**
203
+ * @generated from field: optional bytes playbackSessionMetadata = 55;
204
+ */
205
+ playbackSessionMetadata: Uint8Array;
206
+ /**
207
+ * @generated from field: optional string playbackSessionType = 56;
208
+ */
209
+ playbackSessionType: string;
210
+ /**
211
+ * @generated from field: optional bool trueCompletion = 57;
212
+ */
213
+ trueCompletion: boolean;
214
+ /**
215
+ * @generated from field: optional string playbackAuthorizationToken = 58;
216
+ */
217
+ playbackAuthorizationToken: string;
218
+ /**
219
+ * @generated from field: optional string eventNoticeType = 59;
220
+ */
221
+ eventNoticeType: string;
222
+ /**
223
+ * @generated from field: optional string eventNoticeIdentifier = 60;
224
+ */
225
+ eventNoticeIdentifier: string;
226
+ /**
227
+ * @generated from field: optional string sharedPlaybackSessionIdentifier = 61;
228
+ */
229
+ sharedPlaybackSessionIdentifier: string;
230
+ /**
231
+ * @generated from field: optional uint64 commandTimeout = 62;
232
+ */
233
+ commandTimeout: bigint;
234
+ /**
235
+ * @generated from field: optional uint64 assistantTTSEndTimestamp = 63;
236
+ */
237
+ assistantTTSEndTimestamp: bigint;
238
+ /**
239
+ * @generated from field: optional uint64 assistantCommandSendTimestamp = 64;
240
+ */
241
+ assistantCommandSendTimestamp: bigint;
242
+ /**
243
+ * @generated from field: optional string originatingDeviceUID = 65;
244
+ */
245
+ originatingDeviceUID: string;
246
+ /**
247
+ * @generated from field: optional bytes destinationDeviceUIDs = 66;
248
+ */
249
+ destinationDeviceUIDs: Uint8Array;
250
+ /**
251
+ * @generated from field: optional string desiredSessionID = 67;
252
+ */
253
+ desiredSessionID: string;
254
+ /**
255
+ * @generated from field: optional bool alwaysIgnoreDuringCall = 68;
256
+ */
257
+ alwaysIgnoreDuringCall: boolean;
258
+ /**
259
+ * @generated from field: optional bool alwaysIgnoreDuringSharePlay = 69;
260
+ */
261
+ alwaysIgnoreDuringSharePlay: boolean;
262
+ /**
263
+ * @generated from field: optional string commandSequenceUUID = 70;
264
+ */
265
+ commandSequenceUUID: string;
266
+ /**
267
+ * @generated from field: optional bool originatedFromRemoteDevice = 71;
268
+ */
269
+ originatedFromRemoteDevice: boolean;
270
+ /**
271
+ * @generated from field: optional string siriTurnIdentifier = 72;
272
+ */
273
+ siriTurnIdentifier: string;
274
+ /**
275
+ * @generated from field: optional string siriSearchDataSetIdentifier = 73;
276
+ */
277
+ siriSearchDataSetIdentifier: string;
278
+ /**
279
+ * @generated from field: optional bool prepareForSetQueueIsProactive = 74;
280
+ */
281
+ prepareForSetQueueIsProactive: boolean;
282
+ /**
283
+ * @generated from field: optional string prepareForSetQueueProactiveReason = 75;
284
+ */
285
+ prepareForSetQueueProactiveReason: string;
286
+ /**
287
+ * @generated from field: optional uint32 prepareForSetQueueProactiveReasonType = 76;
288
+ */
289
+ prepareForSetQueueProactiveReasonType: number;
290
+ /**
291
+ * @generated from field: optional bytes applicationUserIdentity = 77;
292
+ */
293
+ applicationUserIdentity: Uint8Array;
294
+ /**
295
+ * @generated from field: optional SystemPlaybackQueue systemAppPlaybackQueue = 78;
296
+ */
297
+ systemAppPlaybackQueue?: SystemPlaybackQueue;
298
+ /**
299
+ * @generated from field: optional bool vocalsControlActive = 79;
300
+ */
301
+ vocalsControlActive: boolean;
302
+ /**
303
+ * @generated from field: optional uint32 vocalsControlLevel = 80;
304
+ */
305
+ vocalsControlLevel: number;
306
+ /**
307
+ * @generated from field: optional uint32 vocalsControlMinLevel = 81;
308
+ */
309
+ vocalsControlMinLevel: number;
310
+ /**
311
+ * @generated from field: optional uint32 vocalsControlMaxLevel = 82;
312
+ */
313
+ vocalsControlMaxLevel: number;
314
+ /**
315
+ * @generated from field: optional bool vocalsControlContinuous = 83;
316
+ */
317
+ vocalsControlContinuous: boolean;
318
+ /**
319
+ * @generated from field: optional string associatedParticipantIdentifier = 84;
320
+ */
321
+ associatedParticipantIdentifier: string;
322
+ /**
323
+ * @generated from field: optional fixed64 sleepTimerTime = 85;
324
+ */
325
+ sleepTimerTime: bigint;
326
+ /**
327
+ * @generated from field: optional uint32 sleepTimerStopMode = 86;
328
+ */
329
+ sleepTimerStopMode: number;
330
+ /**
331
+ * @generated from field: optional Dictionary dialogOptions = 87;
332
+ */
333
+ dialogOptions?: Dictionary;
334
+ /**
335
+ * @generated from field: optional string clientPreferredLanguages = 88;
336
+ */
337
+ clientPreferredLanguages: string;
338
+ /**
339
+ * @generated from field: optional fixed64 referencePosition = 89;
340
+ */
341
+ referencePosition: bigint;
342
+ /**
343
+ * @generated from field: optional bytes delegateAccountData = 90;
344
+ */
345
+ delegateAccountData: Uint8Array;
346
+ /**
347
+ * @generated from field: optional string delegateAccountDataType = 91;
348
+ */
349
+ delegateAccountDataType: string;
350
+ /**
351
+ * @generated from field: optional bool enhanceDialogueActive = 92;
352
+ */
353
+ enhanceDialogueActive: boolean;
132
354
  };
133
355
  /**
134
356
  * Describes the message CommandOptions.
@@ -13,6 +13,22 @@ export type ConfigureConnectionMessage = Message<"ConfigureConnectionMessage"> &
13
13
  * @generated from field: optional string groupID = 1;
14
14
  */
15
15
  groupID: string;
16
+ /**
17
+ * @generated from field: optional string serviceName = 2;
18
+ */
19
+ serviceName: string;
20
+ /**
21
+ * @generated from field: optional string sourceOutputDeviceUID = 3;
22
+ */
23
+ sourceOutputDeviceUID: string;
24
+ /**
25
+ * @generated from field: optional string sourceOutputDeviceName = 4;
26
+ */
27
+ sourceOutputDeviceName: string;
28
+ /**
29
+ * @generated from field: optional string destinationOutputDeviceUID = 5;
30
+ */
31
+ destinationOutputDeviceUID: string;
16
32
  };
17
33
  /**
18
34
  * Describes the message ConfigureConnectionMessage.
@@ -1,6 +1,9 @@
1
1
  import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
2
+ import type { AnimatedArtwork, DataArtwork, RemoteArtwork } from "./Artwork_pb";
2
3
  import type { ContentItemMetadata } from "./ContentItemMetadata_pb";
3
4
  import type { LanguageOption } from "./LanguageOption_pb";
5
+ import type { LyricsItem } from "./LyricsItem_pb";
6
+ import type { TranscriptAlignment } from "./Transcript_pb";
4
7
  import type { Message } from "@bufbuild/protobuf";
5
8
  /**
6
9
  * Describes the file ContentItem.proto.
@@ -57,9 +60,14 @@ export type ContentItem = Message<"ContentItem"> & {
57
60
  */
58
61
  currentLanguageOptions: LanguageOption[];
59
62
  /**
60
- * optional Lyrics lyrics = 7;
61
- * repeated Sections sections = 8;
62
- *
63
+ * @generated from field: optional LyricsItem lyrics = 7;
64
+ */
65
+ lyrics?: LyricsItem;
66
+ /**
67
+ * @generated from field: repeated ContentItem sections = 8;
68
+ */
69
+ sections: ContentItem[];
70
+ /**
63
71
  * @generated from field: optional string parentIdentifier = 9;
64
72
  */
65
73
  parentIdentifier: string;
@@ -83,6 +91,42 @@ export type ContentItem = Message<"ContentItem"> & {
83
91
  * @generated from field: optional int32 artworkDataHeight = 14;
84
92
  */
85
93
  artworkDataHeight: number;
94
+ /**
95
+ * @generated from field: optional string associatedParticipantIdentifier = 15;
96
+ */
97
+ associatedParticipantIdentifier: string;
98
+ /**
99
+ * @generated from field: repeated string availableArtworkFormats = 16;
100
+ */
101
+ availableArtworkFormats: string[];
102
+ /**
103
+ * @generated from field: repeated string availableRemoteArtworkFormats = 17;
104
+ */
105
+ availableRemoteArtworkFormats: string[];
106
+ /**
107
+ * @generated from field: repeated DataArtwork dataArtworks = 18;
108
+ */
109
+ dataArtworks: DataArtwork[];
110
+ /**
111
+ * @generated from field: repeated RemoteArtwork remoteArtworks = 19;
112
+ */
113
+ remoteArtworks: RemoteArtwork[];
114
+ /**
115
+ * @generated from field: repeated TranscriptAlignment transcriptAlignments = 20;
116
+ */
117
+ transcriptAlignments: TranscriptAlignment[];
118
+ /**
119
+ * @generated from field: repeated string availableAnimatedArtworkFormats = 21;
120
+ */
121
+ availableAnimatedArtworkFormats: string[];
122
+ /**
123
+ * @generated from field: repeated DataArtwork animatedArtworkPreviewFrames = 22;
124
+ */
125
+ animatedArtworkPreviewFrames: DataArtwork[];
126
+ /**
127
+ * @generated from field: repeated AnimatedArtwork animatedArtworks = 23;
128
+ */
129
+ animatedArtworks: AnimatedArtwork[];
86
130
  };
87
131
  /**
88
132
  * Describes the message ContentItem.
@@ -0,0 +1,84 @@
1
+ import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
2
+ import type { Message } from "@bufbuild/protobuf";
3
+ /**
4
+ * Describes the file Dictionary.proto.
5
+ */
6
+ export declare const file_Dictionary: GenFile;
7
+ /**
8
+ * @generated from message Dictionary
9
+ */
10
+ export type Dictionary = Message<"Dictionary"> & {
11
+ /**
12
+ * @generated from field: repeated KeyValuePair pairs = 1;
13
+ */
14
+ pairs: KeyValuePair[];
15
+ };
16
+ /**
17
+ * Describes the message Dictionary.
18
+ * Use `create(DictionarySchema)` to create a new message.
19
+ */
20
+ export declare const DictionarySchema: GenMessage<Dictionary>;
21
+ /**
22
+ * @generated from message KeyValuePair
23
+ */
24
+ export type KeyValuePair = Message<"KeyValuePair"> & {
25
+ /**
26
+ * @generated from field: optional string key = 1;
27
+ */
28
+ key: string;
29
+ /**
30
+ * @generated from field: optional Value value = 2;
31
+ */
32
+ value?: Value;
33
+ };
34
+ /**
35
+ * Describes the message KeyValuePair.
36
+ * Use `create(KeyValuePairSchema)` to create a new message.
37
+ */
38
+ export declare const KeyValuePairSchema: GenMessage<KeyValuePair>;
39
+ /**
40
+ * @generated from message Value
41
+ */
42
+ export type Value = Message<"Value"> & {
43
+ /**
44
+ * @generated from field: optional string stringValue = 1;
45
+ */
46
+ stringValue: string;
47
+ /**
48
+ * @generated from field: optional int64 int64Value = 2;
49
+ */
50
+ int64Value: bigint;
51
+ /**
52
+ * @generated from field: optional float floatValue = 3;
53
+ */
54
+ floatValue: number;
55
+ /**
56
+ * @generated from field: optional double doubleValue = 4;
57
+ */
58
+ doubleValue: number;
59
+ /**
60
+ * @generated from field: optional bytes dataValue = 5;
61
+ */
62
+ dataValue: Uint8Array;
63
+ /**
64
+ * @generated from field: optional bool boolValue = 6;
65
+ */
66
+ boolValue: boolean;
67
+ /**
68
+ * @generated from field: optional string dateValue = 7;
69
+ */
70
+ dateValue: string;
71
+ /**
72
+ * @generated from field: repeated Value arrayValue = 8;
73
+ */
74
+ arrayValue: Value[];
75
+ /**
76
+ * @generated from field: optional Dictionary dictionaryValue = 9;
77
+ */
78
+ dictionaryValue?: Dictionary;
79
+ };
80
+ /**
81
+ * Describes the message Value.
82
+ * Use `create(ValueSchema)` to create a new message.
83
+ */
84
+ export declare const ValueSchema: GenMessage<Value>;
@@ -0,0 +1,20 @@
1
+ import type { GenExtension, GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
2
+ import type { ProtocolMessage } from "./ProtocolMessage_pb";
3
+ import type { Message } from "@bufbuild/protobuf";
4
+ /**
5
+ * Describes the file GetStateMessage.proto.
6
+ */
7
+ export declare const file_GetStateMessage: GenFile;
8
+ /**
9
+ * @generated from message GetStateMessage
10
+ */
11
+ export type GetStateMessage = Message<"GetStateMessage"> & {};
12
+ /**
13
+ * Describes the message GetStateMessage.
14
+ * Use `create(GetStateMessageSchema)` to create a new message.
15
+ */
16
+ export declare const GetStateMessageSchema: GenMessage<GetStateMessage>;
17
+ /**
18
+ * @generated from extension: optional GetStateMessage getStateMessage = 8;
19
+ */
20
+ export declare const getStateMessage: GenExtension<ProtocolMessage, GetStateMessage>;
@@ -0,0 +1,25 @@
1
+ import type { GenExtension, GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
2
+ import type { ProtocolMessage } from "./ProtocolMessage_pb";
3
+ import type { Message } from "@bufbuild/protobuf";
4
+ /**
5
+ * Describes the file GetVolumeMutedMessage.proto.
6
+ */
7
+ export declare const file_GetVolumeMutedMessage: GenFile;
8
+ /**
9
+ * @generated from message GetVolumeMutedMessage
10
+ */
11
+ export type GetVolumeMutedMessage = Message<"GetVolumeMutedMessage"> & {
12
+ /**
13
+ * @generated from field: optional string outputDeviceUID = 1;
14
+ */
15
+ outputDeviceUID: string;
16
+ };
17
+ /**
18
+ * Describes the message GetVolumeMutedMessage.
19
+ * Use `create(GetVolumeMutedMessageSchema)` to create a new message.
20
+ */
21
+ export declare const GetVolumeMutedMessageSchema: GenMessage<GetVolumeMutedMessage>;
22
+ /**
23
+ * @generated from extension: optional GetVolumeMutedMessage getVolumeMutedMessage = 98;
24
+ */
25
+ export declare const getVolumeMutedMessage: GenExtension<ProtocolMessage, GetVolumeMutedMessage>;
@@ -0,0 +1,25 @@
1
+ import type { GenExtension, GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
2
+ import type { ProtocolMessage } from "./ProtocolMessage_pb";
3
+ import type { Message } from "@bufbuild/protobuf";
4
+ /**
5
+ * Describes the file GetVolumeMutedResultMessage.proto.
6
+ */
7
+ export declare const file_GetVolumeMutedResultMessage: GenFile;
8
+ /**
9
+ * @generated from message GetVolumeMutedResultMessage
10
+ */
11
+ export type GetVolumeMutedResultMessage = Message<"GetVolumeMutedResultMessage"> & {
12
+ /**
13
+ * @generated from field: optional bool isMuted = 1;
14
+ */
15
+ isMuted: boolean;
16
+ };
17
+ /**
18
+ * Describes the message GetVolumeMutedResultMessage.
19
+ * Use `create(GetVolumeMutedResultMessageSchema)` to create a new message.
20
+ */
21
+ export declare const GetVolumeMutedResultMessageSchema: GenMessage<GetVolumeMutedResultMessage>;
22
+ /**
23
+ * @generated from extension: optional GetVolumeMutedResultMessage getVolumeMutedResultMessage = 99;
24
+ */
25
+ export declare const getVolumeMutedResultMessage: GenExtension<ProtocolMessage, GetVolumeMutedResultMessage>;
@@ -0,0 +1,46 @@
1
+ import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
2
+ import type { Message } from "@bufbuild/protobuf";
3
+ /**
4
+ * Describes the file LyricsItem.proto.
5
+ */
6
+ export declare const file_LyricsItem: GenFile;
7
+ /**
8
+ * @generated from message LyricsItem
9
+ */
10
+ export type LyricsItem = Message<"LyricsItem"> & {
11
+ /**
12
+ * @generated from field: optional string lyrics = 1;
13
+ */
14
+ lyrics: string;
15
+ /**
16
+ * @generated from field: optional bool userProvided = 2;
17
+ */
18
+ userProvided: boolean;
19
+ /**
20
+ * @generated from field: optional LyricsToken token = 3;
21
+ */
22
+ token?: LyricsToken;
23
+ };
24
+ /**
25
+ * Describes the message LyricsItem.
26
+ * Use `create(LyricsItemSchema)` to create a new message.
27
+ */
28
+ export declare const LyricsItemSchema: GenMessage<LyricsItem>;
29
+ /**
30
+ * @generated from message LyricsToken
31
+ */
32
+ export type LyricsToken = Message<"LyricsToken"> & {
33
+ /**
34
+ * @generated from field: optional string identifier = 1;
35
+ */
36
+ identifier: string;
37
+ /**
38
+ * @generated from field: optional bytes userData = 2;
39
+ */
40
+ userData: Uint8Array;
41
+ };
42
+ /**
43
+ * Describes the message LyricsToken.
44
+ * Use `create(LyricsTokenSchema)` to create a new message.
45
+ */
46
+ export declare const LyricsTokenSchema: GenMessage<LyricsToken>;
@@ -1,4 +1,5 @@
1
1
  import type { GenExtension, GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
2
+ import type { PlayerPath } from "./PlayerPath_pb";
2
3
  import type { ProtocolMessage } from "./ProtocolMessage_pb";
3
4
  import type { Message } from "@bufbuild/protobuf";
4
5
  /**
@@ -10,13 +11,17 @@ export declare const file_NotificationMessage: GenFile;
10
11
  */
11
12
  export type NotificationMessage = Message<"NotificationMessage"> & {
12
13
  /**
13
- * @generated from field: repeated string notification = 1;
14
+ * @generated from field: optional string notification = 1;
14
15
  */
15
- notification: string[];
16
+ notification: string;
16
17
  /**
17
- * @generated from field: repeated bytes userInfo = 2;
18
+ * @generated from field: optional bytes userInfo = 2;
18
19
  */
19
- userInfo: Uint8Array[];
20
+ userInfo: Uint8Array;
21
+ /**
22
+ * @generated from field: repeated PlayerPath playerPath = 3;
23
+ */
24
+ playerPath: PlayerPath[];
20
25
  };
21
26
  /**
22
27
  * Describes the message NotificationMessage.
@@ -79,6 +79,34 @@ export type PlaybackQueueRequestMessage = Message<"PlaybackQueueRequestMessage">
79
79
  * @generated from field: optional bool isLegacyNowPlayingInfoRequest = 17;
80
80
  */
81
81
  isLegacyNowPlayingInfoRequest: boolean;
82
+ /**
83
+ * @generated from field: optional bool includeParticipants = 18;
84
+ */
85
+ includeParticipants: boolean;
86
+ /**
87
+ * @generated from field: optional bool includeAvailableArtworkFormats = 19;
88
+ */
89
+ includeAvailableArtworkFormats: boolean;
90
+ /**
91
+ * @generated from field: repeated string requestedArtworkFormats = 20;
92
+ */
93
+ requestedArtworkFormats: string[];
94
+ /**
95
+ * @generated from field: repeated string requestedRemoteArtworkFormats = 21;
96
+ */
97
+ requestedRemoteArtworkFormats: string[];
98
+ /**
99
+ * @generated from field: optional bool includeAlignments = 22;
100
+ */
101
+ includeAlignments: boolean;
102
+ /**
103
+ * @generated from field: repeated string requestedAnimatedArtworkPreviewFrameFormats = 23;
104
+ */
105
+ requestedAnimatedArtworkPreviewFrameFormats: string[];
106
+ /**
107
+ * @generated from field: repeated string requestedAnimatedArtworkAssetURLFormats = 24;
108
+ */
109
+ requestedAnimatedArtworkAssetURLFormats: string[];
82
110
  };
83
111
  /**
84
112
  * Describes the message PlaybackQueueRequestMessage.