larksr_websdk 3.2.15 → 3.2.32

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.
@@ -6128,6 +6128,762 @@ export namespace CloudLark {
6128
6128
  }
6129
6129
  }
6130
6130
 
6131
+ /** Properties of an AiVoiceServiceStatus. */
6132
+ interface IAiVoiceServiceStatus {
6133
+
6134
+ /** AiVoiceServiceStatus success */
6135
+ success?: (boolean|null);
6136
+
6137
+ /** AiVoiceServiceStatus reason */
6138
+ reason?: (string|null);
6139
+ }
6140
+
6141
+ /** Represents an AiVoiceServiceStatus. */
6142
+ class AiVoiceServiceStatus implements IAiVoiceServiceStatus {
6143
+
6144
+ /**
6145
+ * Constructs a new AiVoiceServiceStatus.
6146
+ * @param [properties] Properties to set
6147
+ */
6148
+ constructor(properties?: CloudLark.IAiVoiceServiceStatus);
6149
+
6150
+ /** AiVoiceServiceStatus success. */
6151
+ public success: boolean;
6152
+
6153
+ /** AiVoiceServiceStatus reason. */
6154
+ public reason: string;
6155
+
6156
+ /**
6157
+ * Creates a new AiVoiceServiceStatus instance using the specified properties.
6158
+ * @param [properties] Properties to set
6159
+ * @returns AiVoiceServiceStatus instance
6160
+ */
6161
+ public static create(properties?: CloudLark.IAiVoiceServiceStatus): CloudLark.AiVoiceServiceStatus;
6162
+
6163
+ /**
6164
+ * Encodes the specified AiVoiceServiceStatus message. Does not implicitly {@link CloudLark.AiVoiceServiceStatus.verify|verify} messages.
6165
+ * @param message AiVoiceServiceStatus message or plain object to encode
6166
+ * @param [writer] Writer to encode to
6167
+ * @returns Writer
6168
+ */
6169
+ public static encode(message: CloudLark.IAiVoiceServiceStatus, writer?: $protobuf.Writer): $protobuf.Writer;
6170
+
6171
+ /**
6172
+ * Encodes the specified AiVoiceServiceStatus message, length delimited. Does not implicitly {@link CloudLark.AiVoiceServiceStatus.verify|verify} messages.
6173
+ * @param message AiVoiceServiceStatus message or plain object to encode
6174
+ * @param [writer] Writer to encode to
6175
+ * @returns Writer
6176
+ */
6177
+ public static encodeDelimited(message: CloudLark.IAiVoiceServiceStatus, writer?: $protobuf.Writer): $protobuf.Writer;
6178
+
6179
+ /**
6180
+ * Decodes an AiVoiceServiceStatus message from the specified reader or buffer.
6181
+ * @param reader Reader or buffer to decode from
6182
+ * @param [length] Message length if known beforehand
6183
+ * @returns AiVoiceServiceStatus
6184
+ * @throws {Error} If the payload is not a reader or valid buffer
6185
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6186
+ */
6187
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): CloudLark.AiVoiceServiceStatus;
6188
+
6189
+ /**
6190
+ * Decodes an AiVoiceServiceStatus message from the specified reader or buffer, length delimited.
6191
+ * @param reader Reader or buffer to decode from
6192
+ * @returns AiVoiceServiceStatus
6193
+ * @throws {Error} If the payload is not a reader or valid buffer
6194
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6195
+ */
6196
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): CloudLark.AiVoiceServiceStatus;
6197
+
6198
+ /**
6199
+ * Verifies an AiVoiceServiceStatus message.
6200
+ * @param message Plain object to verify
6201
+ * @returns `null` if valid, otherwise the reason why it is not
6202
+ */
6203
+ public static verify(message: { [k: string]: any }): (string|null);
6204
+
6205
+ /**
6206
+ * Creates an AiVoiceServiceStatus message from a plain object. Also converts values to their respective internal types.
6207
+ * @param object Plain object
6208
+ * @returns AiVoiceServiceStatus
6209
+ */
6210
+ public static fromObject(object: { [k: string]: any }): CloudLark.AiVoiceServiceStatus;
6211
+
6212
+ /**
6213
+ * Creates a plain object from an AiVoiceServiceStatus message. Also converts values to other types if specified.
6214
+ * @param message AiVoiceServiceStatus
6215
+ * @param [options] Conversion options
6216
+ * @returns Plain object
6217
+ */
6218
+ public static toObject(message: CloudLark.AiVoiceServiceStatus, options?: $protobuf.IConversionOptions): { [k: string]: any };
6219
+
6220
+ /**
6221
+ * Converts this AiVoiceServiceStatus to JSON.
6222
+ * @returns JSON object
6223
+ */
6224
+ public toJSON(): { [k: string]: any };
6225
+ }
6226
+
6227
+ /** Properties of an AiVoiceStreamStart. */
6228
+ interface IAiVoiceStreamStart {
6229
+
6230
+ /** AiVoiceStreamStart voiceId */
6231
+ voiceId?: (number|null);
6232
+ }
6233
+
6234
+ /** Represents an AiVoiceStreamStart. */
6235
+ class AiVoiceStreamStart implements IAiVoiceStreamStart {
6236
+
6237
+ /**
6238
+ * Constructs a new AiVoiceStreamStart.
6239
+ * @param [properties] Properties to set
6240
+ */
6241
+ constructor(properties?: CloudLark.IAiVoiceStreamStart);
6242
+
6243
+ /** AiVoiceStreamStart voiceId. */
6244
+ public voiceId: number;
6245
+
6246
+ /**
6247
+ * Creates a new AiVoiceStreamStart instance using the specified properties.
6248
+ * @param [properties] Properties to set
6249
+ * @returns AiVoiceStreamStart instance
6250
+ */
6251
+ public static create(properties?: CloudLark.IAiVoiceStreamStart): CloudLark.AiVoiceStreamStart;
6252
+
6253
+ /**
6254
+ * Encodes the specified AiVoiceStreamStart message. Does not implicitly {@link CloudLark.AiVoiceStreamStart.verify|verify} messages.
6255
+ * @param message AiVoiceStreamStart message or plain object to encode
6256
+ * @param [writer] Writer to encode to
6257
+ * @returns Writer
6258
+ */
6259
+ public static encode(message: CloudLark.IAiVoiceStreamStart, writer?: $protobuf.Writer): $protobuf.Writer;
6260
+
6261
+ /**
6262
+ * Encodes the specified AiVoiceStreamStart message, length delimited. Does not implicitly {@link CloudLark.AiVoiceStreamStart.verify|verify} messages.
6263
+ * @param message AiVoiceStreamStart message or plain object to encode
6264
+ * @param [writer] Writer to encode to
6265
+ * @returns Writer
6266
+ */
6267
+ public static encodeDelimited(message: CloudLark.IAiVoiceStreamStart, writer?: $protobuf.Writer): $protobuf.Writer;
6268
+
6269
+ /**
6270
+ * Decodes an AiVoiceStreamStart message from the specified reader or buffer.
6271
+ * @param reader Reader or buffer to decode from
6272
+ * @param [length] Message length if known beforehand
6273
+ * @returns AiVoiceStreamStart
6274
+ * @throws {Error} If the payload is not a reader or valid buffer
6275
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6276
+ */
6277
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): CloudLark.AiVoiceStreamStart;
6278
+
6279
+ /**
6280
+ * Decodes an AiVoiceStreamStart message from the specified reader or buffer, length delimited.
6281
+ * @param reader Reader or buffer to decode from
6282
+ * @returns AiVoiceStreamStart
6283
+ * @throws {Error} If the payload is not a reader or valid buffer
6284
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6285
+ */
6286
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): CloudLark.AiVoiceStreamStart;
6287
+
6288
+ /**
6289
+ * Verifies an AiVoiceStreamStart message.
6290
+ * @param message Plain object to verify
6291
+ * @returns `null` if valid, otherwise the reason why it is not
6292
+ */
6293
+ public static verify(message: { [k: string]: any }): (string|null);
6294
+
6295
+ /**
6296
+ * Creates an AiVoiceStreamStart message from a plain object. Also converts values to their respective internal types.
6297
+ * @param object Plain object
6298
+ * @returns AiVoiceStreamStart
6299
+ */
6300
+ public static fromObject(object: { [k: string]: any }): CloudLark.AiVoiceStreamStart;
6301
+
6302
+ /**
6303
+ * Creates a plain object from an AiVoiceStreamStart message. Also converts values to other types if specified.
6304
+ * @param message AiVoiceStreamStart
6305
+ * @param [options] Conversion options
6306
+ * @returns Plain object
6307
+ */
6308
+ public static toObject(message: CloudLark.AiVoiceStreamStart, options?: $protobuf.IConversionOptions): { [k: string]: any };
6309
+
6310
+ /**
6311
+ * Converts this AiVoiceStreamStart to JSON.
6312
+ * @returns JSON object
6313
+ */
6314
+ public toJSON(): { [k: string]: any };
6315
+ }
6316
+
6317
+ /** Properties of an AiVoiceStreamSlice. */
6318
+ interface IAiVoiceStreamSlice {
6319
+
6320
+ /** AiVoiceStreamSlice voiceId */
6321
+ voiceId?: (number|null);
6322
+
6323
+ /** AiVoiceStreamSlice sliceId */
6324
+ sliceId?: (number|null);
6325
+
6326
+ /** AiVoiceStreamSlice audio */
6327
+ audio?: (Uint8Array|null);
6328
+ }
6329
+
6330
+ /** Represents an AiVoiceStreamSlice. */
6331
+ class AiVoiceStreamSlice implements IAiVoiceStreamSlice {
6332
+
6333
+ /**
6334
+ * Constructs a new AiVoiceStreamSlice.
6335
+ * @param [properties] Properties to set
6336
+ */
6337
+ constructor(properties?: CloudLark.IAiVoiceStreamSlice);
6338
+
6339
+ /** AiVoiceStreamSlice voiceId. */
6340
+ public voiceId: number;
6341
+
6342
+ /** AiVoiceStreamSlice sliceId. */
6343
+ public sliceId: number;
6344
+
6345
+ /** AiVoiceStreamSlice audio. */
6346
+ public audio: Uint8Array;
6347
+
6348
+ /**
6349
+ * Creates a new AiVoiceStreamSlice instance using the specified properties.
6350
+ * @param [properties] Properties to set
6351
+ * @returns AiVoiceStreamSlice instance
6352
+ */
6353
+ public static create(properties?: CloudLark.IAiVoiceStreamSlice): CloudLark.AiVoiceStreamSlice;
6354
+
6355
+ /**
6356
+ * Encodes the specified AiVoiceStreamSlice message. Does not implicitly {@link CloudLark.AiVoiceStreamSlice.verify|verify} messages.
6357
+ * @param message AiVoiceStreamSlice message or plain object to encode
6358
+ * @param [writer] Writer to encode to
6359
+ * @returns Writer
6360
+ */
6361
+ public static encode(message: CloudLark.IAiVoiceStreamSlice, writer?: $protobuf.Writer): $protobuf.Writer;
6362
+
6363
+ /**
6364
+ * Encodes the specified AiVoiceStreamSlice message, length delimited. Does not implicitly {@link CloudLark.AiVoiceStreamSlice.verify|verify} messages.
6365
+ * @param message AiVoiceStreamSlice message or plain object to encode
6366
+ * @param [writer] Writer to encode to
6367
+ * @returns Writer
6368
+ */
6369
+ public static encodeDelimited(message: CloudLark.IAiVoiceStreamSlice, writer?: $protobuf.Writer): $protobuf.Writer;
6370
+
6371
+ /**
6372
+ * Decodes an AiVoiceStreamSlice message from the specified reader or buffer.
6373
+ * @param reader Reader or buffer to decode from
6374
+ * @param [length] Message length if known beforehand
6375
+ * @returns AiVoiceStreamSlice
6376
+ * @throws {Error} If the payload is not a reader or valid buffer
6377
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6378
+ */
6379
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): CloudLark.AiVoiceStreamSlice;
6380
+
6381
+ /**
6382
+ * Decodes an AiVoiceStreamSlice message from the specified reader or buffer, length delimited.
6383
+ * @param reader Reader or buffer to decode from
6384
+ * @returns AiVoiceStreamSlice
6385
+ * @throws {Error} If the payload is not a reader or valid buffer
6386
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6387
+ */
6388
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): CloudLark.AiVoiceStreamSlice;
6389
+
6390
+ /**
6391
+ * Verifies an AiVoiceStreamSlice message.
6392
+ * @param message Plain object to verify
6393
+ * @returns `null` if valid, otherwise the reason why it is not
6394
+ */
6395
+ public static verify(message: { [k: string]: any }): (string|null);
6396
+
6397
+ /**
6398
+ * Creates an AiVoiceStreamSlice message from a plain object. Also converts values to their respective internal types.
6399
+ * @param object Plain object
6400
+ * @returns AiVoiceStreamSlice
6401
+ */
6402
+ public static fromObject(object: { [k: string]: any }): CloudLark.AiVoiceStreamSlice;
6403
+
6404
+ /**
6405
+ * Creates a plain object from an AiVoiceStreamSlice message. Also converts values to other types if specified.
6406
+ * @param message AiVoiceStreamSlice
6407
+ * @param [options] Conversion options
6408
+ * @returns Plain object
6409
+ */
6410
+ public static toObject(message: CloudLark.AiVoiceStreamSlice, options?: $protobuf.IConversionOptions): { [k: string]: any };
6411
+
6412
+ /**
6413
+ * Converts this AiVoiceStreamSlice to JSON.
6414
+ * @returns JSON object
6415
+ */
6416
+ public toJSON(): { [k: string]: any };
6417
+ }
6418
+
6419
+ /** Properties of an AiVoiceStreamStop. */
6420
+ interface IAiVoiceStreamStop {
6421
+
6422
+ /** AiVoiceStreamStop voiceId */
6423
+ voiceId?: (number|null);
6424
+ }
6425
+
6426
+ /** Represents an AiVoiceStreamStop. */
6427
+ class AiVoiceStreamStop implements IAiVoiceStreamStop {
6428
+
6429
+ /**
6430
+ * Constructs a new AiVoiceStreamStop.
6431
+ * @param [properties] Properties to set
6432
+ */
6433
+ constructor(properties?: CloudLark.IAiVoiceStreamStop);
6434
+
6435
+ /** AiVoiceStreamStop voiceId. */
6436
+ public voiceId: number;
6437
+
6438
+ /**
6439
+ * Creates a new AiVoiceStreamStop instance using the specified properties.
6440
+ * @param [properties] Properties to set
6441
+ * @returns AiVoiceStreamStop instance
6442
+ */
6443
+ public static create(properties?: CloudLark.IAiVoiceStreamStop): CloudLark.AiVoiceStreamStop;
6444
+
6445
+ /**
6446
+ * Encodes the specified AiVoiceStreamStop message. Does not implicitly {@link CloudLark.AiVoiceStreamStop.verify|verify} messages.
6447
+ * @param message AiVoiceStreamStop message or plain object to encode
6448
+ * @param [writer] Writer to encode to
6449
+ * @returns Writer
6450
+ */
6451
+ public static encode(message: CloudLark.IAiVoiceStreamStop, writer?: $protobuf.Writer): $protobuf.Writer;
6452
+
6453
+ /**
6454
+ * Encodes the specified AiVoiceStreamStop message, length delimited. Does not implicitly {@link CloudLark.AiVoiceStreamStop.verify|verify} messages.
6455
+ * @param message AiVoiceStreamStop message or plain object to encode
6456
+ * @param [writer] Writer to encode to
6457
+ * @returns Writer
6458
+ */
6459
+ public static encodeDelimited(message: CloudLark.IAiVoiceStreamStop, writer?: $protobuf.Writer): $protobuf.Writer;
6460
+
6461
+ /**
6462
+ * Decodes an AiVoiceStreamStop message from the specified reader or buffer.
6463
+ * @param reader Reader or buffer to decode from
6464
+ * @param [length] Message length if known beforehand
6465
+ * @returns AiVoiceStreamStop
6466
+ * @throws {Error} If the payload is not a reader or valid buffer
6467
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6468
+ */
6469
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): CloudLark.AiVoiceStreamStop;
6470
+
6471
+ /**
6472
+ * Decodes an AiVoiceStreamStop message from the specified reader or buffer, length delimited.
6473
+ * @param reader Reader or buffer to decode from
6474
+ * @returns AiVoiceStreamStop
6475
+ * @throws {Error} If the payload is not a reader or valid buffer
6476
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6477
+ */
6478
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): CloudLark.AiVoiceStreamStop;
6479
+
6480
+ /**
6481
+ * Verifies an AiVoiceStreamStop message.
6482
+ * @param message Plain object to verify
6483
+ * @returns `null` if valid, otherwise the reason why it is not
6484
+ */
6485
+ public static verify(message: { [k: string]: any }): (string|null);
6486
+
6487
+ /**
6488
+ * Creates an AiVoiceStreamStop message from a plain object. Also converts values to their respective internal types.
6489
+ * @param object Plain object
6490
+ * @returns AiVoiceStreamStop
6491
+ */
6492
+ public static fromObject(object: { [k: string]: any }): CloudLark.AiVoiceStreamStop;
6493
+
6494
+ /**
6495
+ * Creates a plain object from an AiVoiceStreamStop message. Also converts values to other types if specified.
6496
+ * @param message AiVoiceStreamStop
6497
+ * @param [options] Conversion options
6498
+ * @returns Plain object
6499
+ */
6500
+ public static toObject(message: CloudLark.AiVoiceStreamStop, options?: $protobuf.IConversionOptions): { [k: string]: any };
6501
+
6502
+ /**
6503
+ * Converts this AiVoiceStreamStop to JSON.
6504
+ * @returns JSON object
6505
+ */
6506
+ public toJSON(): { [k: string]: any };
6507
+ }
6508
+
6509
+ /** Properties of an AiVoiceText. */
6510
+ interface IAiVoiceText {
6511
+
6512
+ /** AiVoiceText voiceId */
6513
+ voiceId?: (number|null);
6514
+
6515
+ /** AiVoiceText text */
6516
+ text?: (string|null);
6517
+ }
6518
+
6519
+ /** Represents an AiVoiceText. */
6520
+ class AiVoiceText implements IAiVoiceText {
6521
+
6522
+ /**
6523
+ * Constructs a new AiVoiceText.
6524
+ * @param [properties] Properties to set
6525
+ */
6526
+ constructor(properties?: CloudLark.IAiVoiceText);
6527
+
6528
+ /** AiVoiceText voiceId. */
6529
+ public voiceId: number;
6530
+
6531
+ /** AiVoiceText text. */
6532
+ public text: string;
6533
+
6534
+ /**
6535
+ * Creates a new AiVoiceText instance using the specified properties.
6536
+ * @param [properties] Properties to set
6537
+ * @returns AiVoiceText instance
6538
+ */
6539
+ public static create(properties?: CloudLark.IAiVoiceText): CloudLark.AiVoiceText;
6540
+
6541
+ /**
6542
+ * Encodes the specified AiVoiceText message. Does not implicitly {@link CloudLark.AiVoiceText.verify|verify} messages.
6543
+ * @param message AiVoiceText message or plain object to encode
6544
+ * @param [writer] Writer to encode to
6545
+ * @returns Writer
6546
+ */
6547
+ public static encode(message: CloudLark.IAiVoiceText, writer?: $protobuf.Writer): $protobuf.Writer;
6548
+
6549
+ /**
6550
+ * Encodes the specified AiVoiceText message, length delimited. Does not implicitly {@link CloudLark.AiVoiceText.verify|verify} messages.
6551
+ * @param message AiVoiceText message or plain object to encode
6552
+ * @param [writer] Writer to encode to
6553
+ * @returns Writer
6554
+ */
6555
+ public static encodeDelimited(message: CloudLark.IAiVoiceText, writer?: $protobuf.Writer): $protobuf.Writer;
6556
+
6557
+ /**
6558
+ * Decodes an AiVoiceText message from the specified reader or buffer.
6559
+ * @param reader Reader or buffer to decode from
6560
+ * @param [length] Message length if known beforehand
6561
+ * @returns AiVoiceText
6562
+ * @throws {Error} If the payload is not a reader or valid buffer
6563
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6564
+ */
6565
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): CloudLark.AiVoiceText;
6566
+
6567
+ /**
6568
+ * Decodes an AiVoiceText message from the specified reader or buffer, length delimited.
6569
+ * @param reader Reader or buffer to decode from
6570
+ * @returns AiVoiceText
6571
+ * @throws {Error} If the payload is not a reader or valid buffer
6572
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6573
+ */
6574
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): CloudLark.AiVoiceText;
6575
+
6576
+ /**
6577
+ * Verifies an AiVoiceText message.
6578
+ * @param message Plain object to verify
6579
+ * @returns `null` if valid, otherwise the reason why it is not
6580
+ */
6581
+ public static verify(message: { [k: string]: any }): (string|null);
6582
+
6583
+ /**
6584
+ * Creates an AiVoiceText message from a plain object. Also converts values to their respective internal types.
6585
+ * @param object Plain object
6586
+ * @returns AiVoiceText
6587
+ */
6588
+ public static fromObject(object: { [k: string]: any }): CloudLark.AiVoiceText;
6589
+
6590
+ /**
6591
+ * Creates a plain object from an AiVoiceText message. Also converts values to other types if specified.
6592
+ * @param message AiVoiceText
6593
+ * @param [options] Conversion options
6594
+ * @returns Plain object
6595
+ */
6596
+ public static toObject(message: CloudLark.AiVoiceText, options?: $protobuf.IConversionOptions): { [k: string]: any };
6597
+
6598
+ /**
6599
+ * Converts this AiVoiceText to JSON.
6600
+ * @returns JSON object
6601
+ */
6602
+ public toJSON(): { [k: string]: any };
6603
+ }
6604
+
6605
+ /** Properties of an AiVoiceStreamReset. */
6606
+ interface IAiVoiceStreamReset {
6607
+
6608
+ /** AiVoiceStreamReset voiceId */
6609
+ voiceId?: (number|null);
6610
+ }
6611
+
6612
+ /** Represents an AiVoiceStreamReset. */
6613
+ class AiVoiceStreamReset implements IAiVoiceStreamReset {
6614
+
6615
+ /**
6616
+ * Constructs a new AiVoiceStreamReset.
6617
+ * @param [properties] Properties to set
6618
+ */
6619
+ constructor(properties?: CloudLark.IAiVoiceStreamReset);
6620
+
6621
+ /** AiVoiceStreamReset voiceId. */
6622
+ public voiceId: number;
6623
+
6624
+ /**
6625
+ * Creates a new AiVoiceStreamReset instance using the specified properties.
6626
+ * @param [properties] Properties to set
6627
+ * @returns AiVoiceStreamReset instance
6628
+ */
6629
+ public static create(properties?: CloudLark.IAiVoiceStreamReset): CloudLark.AiVoiceStreamReset;
6630
+
6631
+ /**
6632
+ * Encodes the specified AiVoiceStreamReset message. Does not implicitly {@link CloudLark.AiVoiceStreamReset.verify|verify} messages.
6633
+ * @param message AiVoiceStreamReset message or plain object to encode
6634
+ * @param [writer] Writer to encode to
6635
+ * @returns Writer
6636
+ */
6637
+ public static encode(message: CloudLark.IAiVoiceStreamReset, writer?: $protobuf.Writer): $protobuf.Writer;
6638
+
6639
+ /**
6640
+ * Encodes the specified AiVoiceStreamReset message, length delimited. Does not implicitly {@link CloudLark.AiVoiceStreamReset.verify|verify} messages.
6641
+ * @param message AiVoiceStreamReset message or plain object to encode
6642
+ * @param [writer] Writer to encode to
6643
+ * @returns Writer
6644
+ */
6645
+ public static encodeDelimited(message: CloudLark.IAiVoiceStreamReset, writer?: $protobuf.Writer): $protobuf.Writer;
6646
+
6647
+ /**
6648
+ * Decodes an AiVoiceStreamReset message from the specified reader or buffer.
6649
+ * @param reader Reader or buffer to decode from
6650
+ * @param [length] Message length if known beforehand
6651
+ * @returns AiVoiceStreamReset
6652
+ * @throws {Error} If the payload is not a reader or valid buffer
6653
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6654
+ */
6655
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): CloudLark.AiVoiceStreamReset;
6656
+
6657
+ /**
6658
+ * Decodes an AiVoiceStreamReset message from the specified reader or buffer, length delimited.
6659
+ * @param reader Reader or buffer to decode from
6660
+ * @returns AiVoiceStreamReset
6661
+ * @throws {Error} If the payload is not a reader or valid buffer
6662
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6663
+ */
6664
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): CloudLark.AiVoiceStreamReset;
6665
+
6666
+ /**
6667
+ * Verifies an AiVoiceStreamReset message.
6668
+ * @param message Plain object to verify
6669
+ * @returns `null` if valid, otherwise the reason why it is not
6670
+ */
6671
+ public static verify(message: { [k: string]: any }): (string|null);
6672
+
6673
+ /**
6674
+ * Creates an AiVoiceStreamReset message from a plain object. Also converts values to their respective internal types.
6675
+ * @param object Plain object
6676
+ * @returns AiVoiceStreamReset
6677
+ */
6678
+ public static fromObject(object: { [k: string]: any }): CloudLark.AiVoiceStreamReset;
6679
+
6680
+ /**
6681
+ * Creates a plain object from an AiVoiceStreamReset message. Also converts values to other types if specified.
6682
+ * @param message AiVoiceStreamReset
6683
+ * @param [options] Conversion options
6684
+ * @returns Plain object
6685
+ */
6686
+ public static toObject(message: CloudLark.AiVoiceStreamReset, options?: $protobuf.IConversionOptions): { [k: string]: any };
6687
+
6688
+ /**
6689
+ * Converts this AiVoiceStreamReset to JSON.
6690
+ * @returns JSON object
6691
+ */
6692
+ public toJSON(): { [k: string]: any };
6693
+ }
6694
+
6695
+ /** Properties of an AiVoiceRealTimeParseResult. */
6696
+ interface IAiVoiceRealTimeParseResult {
6697
+
6698
+ /** AiVoiceRealTimeParseResult voiceId */
6699
+ voiceId?: (number|null);
6700
+
6701
+ /** AiVoiceRealTimeParseResult text */
6702
+ text?: (string|null);
6703
+ }
6704
+
6705
+ /** Represents an AiVoiceRealTimeParseResult. */
6706
+ class AiVoiceRealTimeParseResult implements IAiVoiceRealTimeParseResult {
6707
+
6708
+ /**
6709
+ * Constructs a new AiVoiceRealTimeParseResult.
6710
+ * @param [properties] Properties to set
6711
+ */
6712
+ constructor(properties?: CloudLark.IAiVoiceRealTimeParseResult);
6713
+
6714
+ /** AiVoiceRealTimeParseResult voiceId. */
6715
+ public voiceId: number;
6716
+
6717
+ /** AiVoiceRealTimeParseResult text. */
6718
+ public text: string;
6719
+
6720
+ /**
6721
+ * Creates a new AiVoiceRealTimeParseResult instance using the specified properties.
6722
+ * @param [properties] Properties to set
6723
+ * @returns AiVoiceRealTimeParseResult instance
6724
+ */
6725
+ public static create(properties?: CloudLark.IAiVoiceRealTimeParseResult): CloudLark.AiVoiceRealTimeParseResult;
6726
+
6727
+ /**
6728
+ * Encodes the specified AiVoiceRealTimeParseResult message. Does not implicitly {@link CloudLark.AiVoiceRealTimeParseResult.verify|verify} messages.
6729
+ * @param message AiVoiceRealTimeParseResult message or plain object to encode
6730
+ * @param [writer] Writer to encode to
6731
+ * @returns Writer
6732
+ */
6733
+ public static encode(message: CloudLark.IAiVoiceRealTimeParseResult, writer?: $protobuf.Writer): $protobuf.Writer;
6734
+
6735
+ /**
6736
+ * Encodes the specified AiVoiceRealTimeParseResult message, length delimited. Does not implicitly {@link CloudLark.AiVoiceRealTimeParseResult.verify|verify} messages.
6737
+ * @param message AiVoiceRealTimeParseResult message or plain object to encode
6738
+ * @param [writer] Writer to encode to
6739
+ * @returns Writer
6740
+ */
6741
+ public static encodeDelimited(message: CloudLark.IAiVoiceRealTimeParseResult, writer?: $protobuf.Writer): $protobuf.Writer;
6742
+
6743
+ /**
6744
+ * Decodes an AiVoiceRealTimeParseResult message from the specified reader or buffer.
6745
+ * @param reader Reader or buffer to decode from
6746
+ * @param [length] Message length if known beforehand
6747
+ * @returns AiVoiceRealTimeParseResult
6748
+ * @throws {Error} If the payload is not a reader or valid buffer
6749
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6750
+ */
6751
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): CloudLark.AiVoiceRealTimeParseResult;
6752
+
6753
+ /**
6754
+ * Decodes an AiVoiceRealTimeParseResult message from the specified reader or buffer, length delimited.
6755
+ * @param reader Reader or buffer to decode from
6756
+ * @returns AiVoiceRealTimeParseResult
6757
+ * @throws {Error} If the payload is not a reader or valid buffer
6758
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6759
+ */
6760
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): CloudLark.AiVoiceRealTimeParseResult;
6761
+
6762
+ /**
6763
+ * Verifies an AiVoiceRealTimeParseResult message.
6764
+ * @param message Plain object to verify
6765
+ * @returns `null` if valid, otherwise the reason why it is not
6766
+ */
6767
+ public static verify(message: { [k: string]: any }): (string|null);
6768
+
6769
+ /**
6770
+ * Creates an AiVoiceRealTimeParseResult message from a plain object. Also converts values to their respective internal types.
6771
+ * @param object Plain object
6772
+ * @returns AiVoiceRealTimeParseResult
6773
+ */
6774
+ public static fromObject(object: { [k: string]: any }): CloudLark.AiVoiceRealTimeParseResult;
6775
+
6776
+ /**
6777
+ * Creates a plain object from an AiVoiceRealTimeParseResult message. Also converts values to other types if specified.
6778
+ * @param message AiVoiceRealTimeParseResult
6779
+ * @param [options] Conversion options
6780
+ * @returns Plain object
6781
+ */
6782
+ public static toObject(message: CloudLark.AiVoiceRealTimeParseResult, options?: $protobuf.IConversionOptions): { [k: string]: any };
6783
+
6784
+ /**
6785
+ * Converts this AiVoiceRealTimeParseResult to JSON.
6786
+ * @returns JSON object
6787
+ */
6788
+ public toJSON(): { [k: string]: any };
6789
+ }
6790
+
6791
+ /** Properties of an AiVoiceResult. */
6792
+ interface IAiVoiceResult {
6793
+
6794
+ /** AiVoiceResult voiceId */
6795
+ voiceId?: (number|null);
6796
+
6797
+ /** AiVoiceResult text */
6798
+ text?: (string|null);
6799
+ }
6800
+
6801
+ /** Represents an AiVoiceResult. */
6802
+ class AiVoiceResult implements IAiVoiceResult {
6803
+
6804
+ /**
6805
+ * Constructs a new AiVoiceResult.
6806
+ * @param [properties] Properties to set
6807
+ */
6808
+ constructor(properties?: CloudLark.IAiVoiceResult);
6809
+
6810
+ /** AiVoiceResult voiceId. */
6811
+ public voiceId: number;
6812
+
6813
+ /** AiVoiceResult text. */
6814
+ public text: string;
6815
+
6816
+ /**
6817
+ * Creates a new AiVoiceResult instance using the specified properties.
6818
+ * @param [properties] Properties to set
6819
+ * @returns AiVoiceResult instance
6820
+ */
6821
+ public static create(properties?: CloudLark.IAiVoiceResult): CloudLark.AiVoiceResult;
6822
+
6823
+ /**
6824
+ * Encodes the specified AiVoiceResult message. Does not implicitly {@link CloudLark.AiVoiceResult.verify|verify} messages.
6825
+ * @param message AiVoiceResult message or plain object to encode
6826
+ * @param [writer] Writer to encode to
6827
+ * @returns Writer
6828
+ */
6829
+ public static encode(message: CloudLark.IAiVoiceResult, writer?: $protobuf.Writer): $protobuf.Writer;
6830
+
6831
+ /**
6832
+ * Encodes the specified AiVoiceResult message, length delimited. Does not implicitly {@link CloudLark.AiVoiceResult.verify|verify} messages.
6833
+ * @param message AiVoiceResult message or plain object to encode
6834
+ * @param [writer] Writer to encode to
6835
+ * @returns Writer
6836
+ */
6837
+ public static encodeDelimited(message: CloudLark.IAiVoiceResult, writer?: $protobuf.Writer): $protobuf.Writer;
6838
+
6839
+ /**
6840
+ * Decodes an AiVoiceResult message from the specified reader or buffer.
6841
+ * @param reader Reader or buffer to decode from
6842
+ * @param [length] Message length if known beforehand
6843
+ * @returns AiVoiceResult
6844
+ * @throws {Error} If the payload is not a reader or valid buffer
6845
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6846
+ */
6847
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): CloudLark.AiVoiceResult;
6848
+
6849
+ /**
6850
+ * Decodes an AiVoiceResult message from the specified reader or buffer, length delimited.
6851
+ * @param reader Reader or buffer to decode from
6852
+ * @returns AiVoiceResult
6853
+ * @throws {Error} If the payload is not a reader or valid buffer
6854
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6855
+ */
6856
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): CloudLark.AiVoiceResult;
6857
+
6858
+ /**
6859
+ * Verifies an AiVoiceResult message.
6860
+ * @param message Plain object to verify
6861
+ * @returns `null` if valid, otherwise the reason why it is not
6862
+ */
6863
+ public static verify(message: { [k: string]: any }): (string|null);
6864
+
6865
+ /**
6866
+ * Creates an AiVoiceResult message from a plain object. Also converts values to their respective internal types.
6867
+ * @param object Plain object
6868
+ * @returns AiVoiceResult
6869
+ */
6870
+ public static fromObject(object: { [k: string]: any }): CloudLark.AiVoiceResult;
6871
+
6872
+ /**
6873
+ * Creates a plain object from an AiVoiceResult message. Also converts values to other types if specified.
6874
+ * @param message AiVoiceResult
6875
+ * @param [options] Conversion options
6876
+ * @returns Plain object
6877
+ */
6878
+ public static toObject(message: CloudLark.AiVoiceResult, options?: $protobuf.IConversionOptions): { [k: string]: any };
6879
+
6880
+ /**
6881
+ * Converts this AiVoiceResult to JSON.
6882
+ * @returns JSON object
6883
+ */
6884
+ public toJSON(): { [k: string]: any };
6885
+ }
6886
+
6131
6887
  /** Properties of a ClientInput. */
6132
6888
  interface IClientInput {
6133
6889
 
@@ -6187,6 +6943,21 @@ export namespace CloudLark {
6187
6943
 
6188
6944
  /** ClientInput touchUp */
6189
6945
  touchUp?: (CloudLark.ITouchUp|null);
6946
+
6947
+ /** ClientInput aiVoicestreamStart */
6948
+ aiVoicestreamStart?: (CloudLark.IAiVoiceStreamStart|null);
6949
+
6950
+ /** ClientInput aiVoicestreamSlice */
6951
+ aiVoicestreamSlice?: (CloudLark.IAiVoiceStreamSlice|null);
6952
+
6953
+ /** ClientInput aiVoicestreamStop */
6954
+ aiVoicestreamStop?: (CloudLark.IAiVoiceStreamStop|null);
6955
+
6956
+ /** ClientInput aiVoicestreamReset */
6957
+ aiVoicestreamReset?: (CloudLark.IAiVoiceStreamReset|null);
6958
+
6959
+ /** ClientInput aiVoiceText */
6960
+ aiVoiceText?: (CloudLark.IAiVoiceText|null);
6190
6961
  }
6191
6962
 
6192
6963
  /** Represents a ClientInput. */
@@ -6255,8 +7026,23 @@ export namespace CloudLark {
6255
7026
  /** ClientInput touchUp. */
6256
7027
  public touchUp?: (CloudLark.ITouchUp|null);
6257
7028
 
7029
+ /** ClientInput aiVoicestreamStart. */
7030
+ public aiVoicestreamStart?: (CloudLark.IAiVoiceStreamStart|null);
7031
+
7032
+ /** ClientInput aiVoicestreamSlice. */
7033
+ public aiVoicestreamSlice?: (CloudLark.IAiVoiceStreamSlice|null);
7034
+
7035
+ /** ClientInput aiVoicestreamStop. */
7036
+ public aiVoicestreamStop?: (CloudLark.IAiVoiceStreamStop|null);
7037
+
7038
+ /** ClientInput aiVoicestreamReset. */
7039
+ public aiVoicestreamReset?: (CloudLark.IAiVoiceStreamReset|null);
7040
+
7041
+ /** ClientInput aiVoiceText. */
7042
+ public aiVoiceText?: (CloudLark.IAiVoiceText|null);
7043
+
6258
7044
  /** ClientInput input. */
6259
- public input?: ("mouseMove"|"mouseDown"|"mouseUp"|"mouseWheel"|"keyDown"|"keyUp"|"clientEnter"|"clientLeave"|"dispatchController"|"requesController"|"textInput"|"gamepadInputJoystickStates"|"gamepadInputButtonDown"|"gamepadInputButtonUp"|"gamepadInputTriger"|"clientDcMsg"|"touchMove"|"touchDown"|"touchUp");
7045
+ public input?: ("mouseMove"|"mouseDown"|"mouseUp"|"mouseWheel"|"keyDown"|"keyUp"|"clientEnter"|"clientLeave"|"dispatchController"|"requesController"|"textInput"|"gamepadInputJoystickStates"|"gamepadInputButtonDown"|"gamepadInputButtonUp"|"gamepadInputTriger"|"clientDcMsg"|"touchMove"|"touchDown"|"touchUp"|"aiVoicestreamStart"|"aiVoicestreamSlice"|"aiVoicestreamStop"|"aiVoicestreamReset"|"aiVoiceText");
6260
7046
 
6261
7047
  /**
6262
7048
  * Creates a new ClientInput instance using the specified properties.
@@ -6355,6 +7141,15 @@ export namespace CloudLark {
6355
7141
 
6356
7142
  /** AppNotification cursorStyle */
6357
7143
  cursorStyle?: (CloudLark.ISyncCursorStyle|null);
7144
+
7145
+ /** AppNotification aiVoiceRealtimeParseresult */
7146
+ aiVoiceRealtimeParseresult?: (CloudLark.IAiVoiceRealTimeParseResult|null);
7147
+
7148
+ /** AppNotification aiVoiceResult */
7149
+ aiVoiceResult?: (CloudLark.IAiVoiceResult|null);
7150
+
7151
+ /** AppNotification aiVoiceServiceStatus */
7152
+ aiVoiceServiceStatus?: (CloudLark.IAiVoiceServiceStatus|null);
6358
7153
  }
6359
7154
 
6360
7155
  /** Represents an AppNotification. */
@@ -6390,8 +7185,17 @@ export namespace CloudLark {
6390
7185
  /** AppNotification cursorStyle. */
6391
7186
  public cursorStyle?: (CloudLark.ISyncCursorStyle|null);
6392
7187
 
7188
+ /** AppNotification aiVoiceRealtimeParseresult. */
7189
+ public aiVoiceRealtimeParseresult?: (CloudLark.IAiVoiceRealTimeParseResult|null);
7190
+
7191
+ /** AppNotification aiVoiceResult. */
7192
+ public aiVoiceResult?: (CloudLark.IAiVoiceResult|null);
7193
+
7194
+ /** AppNotification aiVoiceServiceStatus. */
7195
+ public aiVoiceServiceStatus?: (CloudLark.IAiVoiceServiceStatus|null);
7196
+
6393
7197
  /** AppNotification notify. */
6394
- public notify?: ("resize"|"mousemode"|"updatePlayers"|"requestInput"|"gamepadOutput"|"datachannelState"|"appDcMsg"|"cursorStyle");
7198
+ public notify?: ("resize"|"mousemode"|"updatePlayers"|"requestInput"|"gamepadOutput"|"datachannelState"|"appDcMsg"|"cursorStyle"|"aiVoiceRealtimeParseresult"|"aiVoiceResult"|"aiVoiceServiceStatus");
6395
7199
 
6396
7200
  /**
6397
7201
  * Creates a new AppNotification instance using the specified properties.