@wppconnect/wa-proto 1.1.3 → 1.1.5
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/CHANGELOG.md +8 -0
- package/WAProto.proto +133 -7
- package/dist/index.d.ts +1317 -19
- package/dist/index.js +3870 -74
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -1530,9 +1530,20 @@ export namespace waproto {
|
|
|
1530
1530
|
RICH_RESPONSE_HEADING = 2,
|
|
1531
1531
|
RICH_RESPONSE_NESTED_LIST = 3,
|
|
1532
1532
|
AI_MEMORY = 4,
|
|
1533
|
+
RICH_RESPONSE_THREAD_SURFING = 5,
|
|
1534
|
+
RICH_RESPONSE_TABLE = 6,
|
|
1535
|
+
RICH_RESPONSE_CODE = 7,
|
|
1533
1536
|
WA_IG_1P_PLUGIN_RANKING_CONTROL = 10,
|
|
1534
1537
|
WA_IG_1P_PLUGIN_RANKING_UPDATE_1 = 11,
|
|
1535
|
-
WA_IG_1P_PLUGIN_RANKING_UPDATE_2 = 12
|
|
1538
|
+
WA_IG_1P_PLUGIN_RANKING_UPDATE_2 = 12,
|
|
1539
|
+
WA_IG_1P_PLUGIN_RANKING_UPDATE_3 = 13,
|
|
1540
|
+
WA_IG_1P_PLUGIN_RANKING_UPDATE_4 = 14,
|
|
1541
|
+
WA_IG_1P_PLUGIN_RANKING_UPDATE_5 = 15,
|
|
1542
|
+
WA_IG_1P_PLUGIN_RANKING_UPDATE_6 = 16,
|
|
1543
|
+
WA_IG_1P_PLUGIN_RANKING_UPDATE_7 = 17,
|
|
1544
|
+
WA_IG_1P_PLUGIN_RANKING_UPDATE_8 = 18,
|
|
1545
|
+
WA_IG_1P_PLUGIN_RANKING_UPDATE_9 = 19,
|
|
1546
|
+
WA_IG_1P_PLUGIN_RANKING_UPDATE_10 = 20
|
|
1536
1547
|
}
|
|
1537
1548
|
}
|
|
1538
1549
|
|
|
@@ -2144,6 +2155,12 @@ export namespace waproto {
|
|
|
2144
2155
|
|
|
2145
2156
|
/** BotMetadata memoryMetadata */
|
|
2146
2157
|
memoryMetadata?: (waproto.IBotMemoryMetadata|null);
|
|
2158
|
+
|
|
2159
|
+
/** BotMetadata renderingMetadata */
|
|
2160
|
+
renderingMetadata?: (waproto.IBotRenderingMetadata|null);
|
|
2161
|
+
|
|
2162
|
+
/** BotMetadata botMetricsMetadata */
|
|
2163
|
+
botMetricsMetadata?: (waproto.IBotMetricsMetadata|null);
|
|
2147
2164
|
}
|
|
2148
2165
|
|
|
2149
2166
|
/** Represents a BotMetadata. */
|
|
@@ -2200,6 +2217,12 @@ export namespace waproto {
|
|
|
2200
2217
|
/** BotMetadata memoryMetadata. */
|
|
2201
2218
|
public memoryMetadata?: (waproto.IBotMemoryMetadata|null);
|
|
2202
2219
|
|
|
2220
|
+
/** BotMetadata renderingMetadata. */
|
|
2221
|
+
public renderingMetadata?: (waproto.IBotRenderingMetadata|null);
|
|
2222
|
+
|
|
2223
|
+
/** BotMetadata botMetricsMetadata. */
|
|
2224
|
+
public botMetricsMetadata?: (waproto.IBotMetricsMetadata|null);
|
|
2225
|
+
|
|
2203
2226
|
/**
|
|
2204
2227
|
* Creates a new BotMetadata instance using the specified properties.
|
|
2205
2228
|
* @param [properties] Properties to set
|
|
@@ -2278,6 +2301,129 @@ export namespace waproto {
|
|
|
2278
2301
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
2279
2302
|
}
|
|
2280
2303
|
|
|
2304
|
+
/** BotMetricsEntryPoint enum. */
|
|
2305
|
+
enum BotMetricsEntryPoint {
|
|
2306
|
+
FAVICON = 1,
|
|
2307
|
+
CHATLIST = 2,
|
|
2308
|
+
AISEARCH_NULL_STATE_PAPER_PLANE = 3,
|
|
2309
|
+
AISEARCH_NULL_STATE_SUGGESTION = 4,
|
|
2310
|
+
AISEARCH_TYPE_AHEAD_SUGGESTION = 5,
|
|
2311
|
+
AISEARCH_TYPE_AHEAD_PAPER_PLANE = 6,
|
|
2312
|
+
AISEARCH_TYPE_AHEAD_RESULT_CHATLIST = 7,
|
|
2313
|
+
AISEARCH_TYPE_AHEAD_RESULT_MESSAGES = 8,
|
|
2314
|
+
AIVOICE_SEARCH_BAR = 9,
|
|
2315
|
+
AIVOICE_FAVICON = 10,
|
|
2316
|
+
AISTUDIO = 11,
|
|
2317
|
+
DEEPLINK = 12,
|
|
2318
|
+
NOTIFICATION = 13,
|
|
2319
|
+
PROFILE_MESSAGE_BUTTON = 14,
|
|
2320
|
+
FORWARD = 15,
|
|
2321
|
+
APP_SHORTCUT = 16
|
|
2322
|
+
}
|
|
2323
|
+
|
|
2324
|
+
/** Properties of a BotMetricsMetadata. */
|
|
2325
|
+
interface IBotMetricsMetadata {
|
|
2326
|
+
|
|
2327
|
+
/** BotMetricsMetadata destinationId */
|
|
2328
|
+
destinationId?: (string|null);
|
|
2329
|
+
|
|
2330
|
+
/** BotMetricsMetadata destinationEntryPoint */
|
|
2331
|
+
destinationEntryPoint?: (waproto.BotMetricsEntryPoint|null);
|
|
2332
|
+
}
|
|
2333
|
+
|
|
2334
|
+
/** Represents a BotMetricsMetadata. */
|
|
2335
|
+
class BotMetricsMetadata implements IBotMetricsMetadata {
|
|
2336
|
+
|
|
2337
|
+
/**
|
|
2338
|
+
* Constructs a new BotMetricsMetadata.
|
|
2339
|
+
* @param [properties] Properties to set
|
|
2340
|
+
*/
|
|
2341
|
+
constructor(properties?: waproto.IBotMetricsMetadata);
|
|
2342
|
+
|
|
2343
|
+
/** BotMetricsMetadata destinationId. */
|
|
2344
|
+
public destinationId?: (string|null);
|
|
2345
|
+
|
|
2346
|
+
/** BotMetricsMetadata destinationEntryPoint. */
|
|
2347
|
+
public destinationEntryPoint?: (waproto.BotMetricsEntryPoint|null);
|
|
2348
|
+
|
|
2349
|
+
/**
|
|
2350
|
+
* Creates a new BotMetricsMetadata instance using the specified properties.
|
|
2351
|
+
* @param [properties] Properties to set
|
|
2352
|
+
* @returns BotMetricsMetadata instance
|
|
2353
|
+
*/
|
|
2354
|
+
public static create(properties?: waproto.IBotMetricsMetadata): waproto.BotMetricsMetadata;
|
|
2355
|
+
|
|
2356
|
+
/**
|
|
2357
|
+
* Encodes the specified BotMetricsMetadata message. Does not implicitly {@link waproto.BotMetricsMetadata.verify|verify} messages.
|
|
2358
|
+
* @param message BotMetricsMetadata message or plain object to encode
|
|
2359
|
+
* @param [writer] Writer to encode to
|
|
2360
|
+
* @returns Writer
|
|
2361
|
+
*/
|
|
2362
|
+
public static encode(message: waproto.IBotMetricsMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
2363
|
+
|
|
2364
|
+
/**
|
|
2365
|
+
* Encodes the specified BotMetricsMetadata message, length delimited. Does not implicitly {@link waproto.BotMetricsMetadata.verify|verify} messages.
|
|
2366
|
+
* @param message BotMetricsMetadata message or plain object to encode
|
|
2367
|
+
* @param [writer] Writer to encode to
|
|
2368
|
+
* @returns Writer
|
|
2369
|
+
*/
|
|
2370
|
+
public static encodeDelimited(message: waproto.IBotMetricsMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
2371
|
+
|
|
2372
|
+
/**
|
|
2373
|
+
* Decodes a BotMetricsMetadata message from the specified reader or buffer.
|
|
2374
|
+
* @param reader Reader or buffer to decode from
|
|
2375
|
+
* @param [length] Message length if known beforehand
|
|
2376
|
+
* @returns BotMetricsMetadata
|
|
2377
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
2378
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
2379
|
+
*/
|
|
2380
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): waproto.BotMetricsMetadata;
|
|
2381
|
+
|
|
2382
|
+
/**
|
|
2383
|
+
* Decodes a BotMetricsMetadata message from the specified reader or buffer, length delimited.
|
|
2384
|
+
* @param reader Reader or buffer to decode from
|
|
2385
|
+
* @returns BotMetricsMetadata
|
|
2386
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
2387
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
2388
|
+
*/
|
|
2389
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): waproto.BotMetricsMetadata;
|
|
2390
|
+
|
|
2391
|
+
/**
|
|
2392
|
+
* Verifies a BotMetricsMetadata message.
|
|
2393
|
+
* @param message Plain object to verify
|
|
2394
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
2395
|
+
*/
|
|
2396
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
2397
|
+
|
|
2398
|
+
/**
|
|
2399
|
+
* Creates a BotMetricsMetadata message from a plain object. Also converts values to their respective internal types.
|
|
2400
|
+
* @param object Plain object
|
|
2401
|
+
* @returns BotMetricsMetadata
|
|
2402
|
+
*/
|
|
2403
|
+
public static fromObject(object: { [k: string]: any }): waproto.BotMetricsMetadata;
|
|
2404
|
+
|
|
2405
|
+
/**
|
|
2406
|
+
* Creates a plain object from a BotMetricsMetadata message. Also converts values to other types if specified.
|
|
2407
|
+
* @param message BotMetricsMetadata
|
|
2408
|
+
* @param [options] Conversion options
|
|
2409
|
+
* @returns Plain object
|
|
2410
|
+
*/
|
|
2411
|
+
public static toObject(message: waproto.BotMetricsMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
2412
|
+
|
|
2413
|
+
/**
|
|
2414
|
+
* Converts this BotMetricsMetadata to JSON.
|
|
2415
|
+
* @returns JSON object
|
|
2416
|
+
*/
|
|
2417
|
+
public toJSON(): { [k: string]: any };
|
|
2418
|
+
|
|
2419
|
+
/**
|
|
2420
|
+
* Gets the default type url for BotMetricsMetadata
|
|
2421
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
2422
|
+
* @returns The default type url
|
|
2423
|
+
*/
|
|
2424
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
2425
|
+
}
|
|
2426
|
+
|
|
2281
2427
|
/** Properties of a BotModelMetadata. */
|
|
2282
2428
|
interface IBotModelMetadata {
|
|
2283
2429
|
|
|
@@ -2385,12 +2531,14 @@ export namespace waproto {
|
|
|
2385
2531
|
|
|
2386
2532
|
/** ModelType enum. */
|
|
2387
2533
|
enum ModelType {
|
|
2534
|
+
UNKNOWN_TYPE = 0,
|
|
2388
2535
|
LLAMA_PROD = 1,
|
|
2389
2536
|
LLAMA_PROD_PREMIUM = 2
|
|
2390
2537
|
}
|
|
2391
2538
|
|
|
2392
2539
|
/** PremiumModelStatus enum. */
|
|
2393
2540
|
enum PremiumModelStatus {
|
|
2541
|
+
UNKNOWN_STATUS = 0,
|
|
2394
2542
|
AVAILABLE = 1,
|
|
2395
2543
|
QUOTA_EXCEED_LIMIT = 2
|
|
2396
2544
|
}
|
|
@@ -2563,12 +2711,14 @@ export namespace waproto {
|
|
|
2563
2711
|
|
|
2564
2712
|
/** PluginType enum. */
|
|
2565
2713
|
enum PluginType {
|
|
2714
|
+
UNKNOWN_PLUGIN = 0,
|
|
2566
2715
|
REELS = 1,
|
|
2567
2716
|
SEARCH = 2
|
|
2568
2717
|
}
|
|
2569
2718
|
|
|
2570
2719
|
/** SearchProvider enum. */
|
|
2571
2720
|
enum SearchProvider {
|
|
2721
|
+
UNKNOWN = 0,
|
|
2572
2722
|
BING = 1,
|
|
2573
2723
|
GOOGLE = 2,
|
|
2574
2724
|
SUPPORT = 3
|
|
@@ -3013,6 +3163,209 @@ export namespace waproto {
|
|
|
3013
3163
|
}
|
|
3014
3164
|
}
|
|
3015
3165
|
|
|
3166
|
+
/** Properties of a BotRenderingMetadata. */
|
|
3167
|
+
interface IBotRenderingMetadata {
|
|
3168
|
+
|
|
3169
|
+
/** BotRenderingMetadata keywords */
|
|
3170
|
+
keywords?: (waproto.BotRenderingMetadata.IKeyword[]|null);
|
|
3171
|
+
}
|
|
3172
|
+
|
|
3173
|
+
/** Represents a BotRenderingMetadata. */
|
|
3174
|
+
class BotRenderingMetadata implements IBotRenderingMetadata {
|
|
3175
|
+
|
|
3176
|
+
/**
|
|
3177
|
+
* Constructs a new BotRenderingMetadata.
|
|
3178
|
+
* @param [properties] Properties to set
|
|
3179
|
+
*/
|
|
3180
|
+
constructor(properties?: waproto.IBotRenderingMetadata);
|
|
3181
|
+
|
|
3182
|
+
/** BotRenderingMetadata keywords. */
|
|
3183
|
+
public keywords: waproto.BotRenderingMetadata.IKeyword[];
|
|
3184
|
+
|
|
3185
|
+
/**
|
|
3186
|
+
* Creates a new BotRenderingMetadata instance using the specified properties.
|
|
3187
|
+
* @param [properties] Properties to set
|
|
3188
|
+
* @returns BotRenderingMetadata instance
|
|
3189
|
+
*/
|
|
3190
|
+
public static create(properties?: waproto.IBotRenderingMetadata): waproto.BotRenderingMetadata;
|
|
3191
|
+
|
|
3192
|
+
/**
|
|
3193
|
+
* Encodes the specified BotRenderingMetadata message. Does not implicitly {@link waproto.BotRenderingMetadata.verify|verify} messages.
|
|
3194
|
+
* @param message BotRenderingMetadata message or plain object to encode
|
|
3195
|
+
* @param [writer] Writer to encode to
|
|
3196
|
+
* @returns Writer
|
|
3197
|
+
*/
|
|
3198
|
+
public static encode(message: waproto.IBotRenderingMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
3199
|
+
|
|
3200
|
+
/**
|
|
3201
|
+
* Encodes the specified BotRenderingMetadata message, length delimited. Does not implicitly {@link waproto.BotRenderingMetadata.verify|verify} messages.
|
|
3202
|
+
* @param message BotRenderingMetadata message or plain object to encode
|
|
3203
|
+
* @param [writer] Writer to encode to
|
|
3204
|
+
* @returns Writer
|
|
3205
|
+
*/
|
|
3206
|
+
public static encodeDelimited(message: waproto.IBotRenderingMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
3207
|
+
|
|
3208
|
+
/**
|
|
3209
|
+
* Decodes a BotRenderingMetadata message from the specified reader or buffer.
|
|
3210
|
+
* @param reader Reader or buffer to decode from
|
|
3211
|
+
* @param [length] Message length if known beforehand
|
|
3212
|
+
* @returns BotRenderingMetadata
|
|
3213
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
3214
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
3215
|
+
*/
|
|
3216
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): waproto.BotRenderingMetadata;
|
|
3217
|
+
|
|
3218
|
+
/**
|
|
3219
|
+
* Decodes a BotRenderingMetadata message from the specified reader or buffer, length delimited.
|
|
3220
|
+
* @param reader Reader or buffer to decode from
|
|
3221
|
+
* @returns BotRenderingMetadata
|
|
3222
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
3223
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
3224
|
+
*/
|
|
3225
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): waproto.BotRenderingMetadata;
|
|
3226
|
+
|
|
3227
|
+
/**
|
|
3228
|
+
* Verifies a BotRenderingMetadata message.
|
|
3229
|
+
* @param message Plain object to verify
|
|
3230
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
3231
|
+
*/
|
|
3232
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
3233
|
+
|
|
3234
|
+
/**
|
|
3235
|
+
* Creates a BotRenderingMetadata message from a plain object. Also converts values to their respective internal types.
|
|
3236
|
+
* @param object Plain object
|
|
3237
|
+
* @returns BotRenderingMetadata
|
|
3238
|
+
*/
|
|
3239
|
+
public static fromObject(object: { [k: string]: any }): waproto.BotRenderingMetadata;
|
|
3240
|
+
|
|
3241
|
+
/**
|
|
3242
|
+
* Creates a plain object from a BotRenderingMetadata message. Also converts values to other types if specified.
|
|
3243
|
+
* @param message BotRenderingMetadata
|
|
3244
|
+
* @param [options] Conversion options
|
|
3245
|
+
* @returns Plain object
|
|
3246
|
+
*/
|
|
3247
|
+
public static toObject(message: waproto.BotRenderingMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
3248
|
+
|
|
3249
|
+
/**
|
|
3250
|
+
* Converts this BotRenderingMetadata to JSON.
|
|
3251
|
+
* @returns JSON object
|
|
3252
|
+
*/
|
|
3253
|
+
public toJSON(): { [k: string]: any };
|
|
3254
|
+
|
|
3255
|
+
/**
|
|
3256
|
+
* Gets the default type url for BotRenderingMetadata
|
|
3257
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
3258
|
+
* @returns The default type url
|
|
3259
|
+
*/
|
|
3260
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
3261
|
+
}
|
|
3262
|
+
|
|
3263
|
+
namespace BotRenderingMetadata {
|
|
3264
|
+
|
|
3265
|
+
/** Properties of a Keyword. */
|
|
3266
|
+
interface IKeyword {
|
|
3267
|
+
|
|
3268
|
+
/** Keyword value */
|
|
3269
|
+
value?: (string|null);
|
|
3270
|
+
|
|
3271
|
+
/** Keyword associatedPrompts */
|
|
3272
|
+
associatedPrompts?: (string[]|null);
|
|
3273
|
+
}
|
|
3274
|
+
|
|
3275
|
+
/** Represents a Keyword. */
|
|
3276
|
+
class Keyword implements IKeyword {
|
|
3277
|
+
|
|
3278
|
+
/**
|
|
3279
|
+
* Constructs a new Keyword.
|
|
3280
|
+
* @param [properties] Properties to set
|
|
3281
|
+
*/
|
|
3282
|
+
constructor(properties?: waproto.BotRenderingMetadata.IKeyword);
|
|
3283
|
+
|
|
3284
|
+
/** Keyword value. */
|
|
3285
|
+
public value?: (string|null);
|
|
3286
|
+
|
|
3287
|
+
/** Keyword associatedPrompts. */
|
|
3288
|
+
public associatedPrompts: string[];
|
|
3289
|
+
|
|
3290
|
+
/**
|
|
3291
|
+
* Creates a new Keyword instance using the specified properties.
|
|
3292
|
+
* @param [properties] Properties to set
|
|
3293
|
+
* @returns Keyword instance
|
|
3294
|
+
*/
|
|
3295
|
+
public static create(properties?: waproto.BotRenderingMetadata.IKeyword): waproto.BotRenderingMetadata.Keyword;
|
|
3296
|
+
|
|
3297
|
+
/**
|
|
3298
|
+
* Encodes the specified Keyword message. Does not implicitly {@link waproto.BotRenderingMetadata.Keyword.verify|verify} messages.
|
|
3299
|
+
* @param message Keyword message or plain object to encode
|
|
3300
|
+
* @param [writer] Writer to encode to
|
|
3301
|
+
* @returns Writer
|
|
3302
|
+
*/
|
|
3303
|
+
public static encode(message: waproto.BotRenderingMetadata.IKeyword, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
3304
|
+
|
|
3305
|
+
/**
|
|
3306
|
+
* Encodes the specified Keyword message, length delimited. Does not implicitly {@link waproto.BotRenderingMetadata.Keyword.verify|verify} messages.
|
|
3307
|
+
* @param message Keyword message or plain object to encode
|
|
3308
|
+
* @param [writer] Writer to encode to
|
|
3309
|
+
* @returns Writer
|
|
3310
|
+
*/
|
|
3311
|
+
public static encodeDelimited(message: waproto.BotRenderingMetadata.IKeyword, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
3312
|
+
|
|
3313
|
+
/**
|
|
3314
|
+
* Decodes a Keyword message from the specified reader or buffer.
|
|
3315
|
+
* @param reader Reader or buffer to decode from
|
|
3316
|
+
* @param [length] Message length if known beforehand
|
|
3317
|
+
* @returns Keyword
|
|
3318
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
3319
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
3320
|
+
*/
|
|
3321
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): waproto.BotRenderingMetadata.Keyword;
|
|
3322
|
+
|
|
3323
|
+
/**
|
|
3324
|
+
* Decodes a Keyword message from the specified reader or buffer, length delimited.
|
|
3325
|
+
* @param reader Reader or buffer to decode from
|
|
3326
|
+
* @returns Keyword
|
|
3327
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
3328
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
3329
|
+
*/
|
|
3330
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): waproto.BotRenderingMetadata.Keyword;
|
|
3331
|
+
|
|
3332
|
+
/**
|
|
3333
|
+
* Verifies a Keyword message.
|
|
3334
|
+
* @param message Plain object to verify
|
|
3335
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
3336
|
+
*/
|
|
3337
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
3338
|
+
|
|
3339
|
+
/**
|
|
3340
|
+
* Creates a Keyword message from a plain object. Also converts values to their respective internal types.
|
|
3341
|
+
* @param object Plain object
|
|
3342
|
+
* @returns Keyword
|
|
3343
|
+
*/
|
|
3344
|
+
public static fromObject(object: { [k: string]: any }): waproto.BotRenderingMetadata.Keyword;
|
|
3345
|
+
|
|
3346
|
+
/**
|
|
3347
|
+
* Creates a plain object from a Keyword message. Also converts values to other types if specified.
|
|
3348
|
+
* @param message Keyword
|
|
3349
|
+
* @param [options] Conversion options
|
|
3350
|
+
* @returns Plain object
|
|
3351
|
+
*/
|
|
3352
|
+
public static toObject(message: waproto.BotRenderingMetadata.Keyword, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
3353
|
+
|
|
3354
|
+
/**
|
|
3355
|
+
* Converts this Keyword to JSON.
|
|
3356
|
+
* @returns JSON object
|
|
3357
|
+
*/
|
|
3358
|
+
public toJSON(): { [k: string]: any };
|
|
3359
|
+
|
|
3360
|
+
/**
|
|
3361
|
+
* Gets the default type url for Keyword
|
|
3362
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
3363
|
+
* @returns The default type url
|
|
3364
|
+
*/
|
|
3365
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
3366
|
+
}
|
|
3367
|
+
}
|
|
3368
|
+
|
|
3016
3369
|
/** Properties of a BotSessionMetadata. */
|
|
3017
3370
|
interface IBotSessionMetadata {
|
|
3018
3371
|
|
|
@@ -4511,6 +4864,9 @@ export namespace waproto {
|
|
|
4511
4864
|
|
|
4512
4865
|
/** ClientPairingProps isChatDbLidMigrated */
|
|
4513
4866
|
isChatDbLidMigrated?: (boolean|null);
|
|
4867
|
+
|
|
4868
|
+
/** ClientPairingProps isSyncdPureLidSession */
|
|
4869
|
+
isSyncdPureLidSession?: (boolean|null);
|
|
4514
4870
|
}
|
|
4515
4871
|
|
|
4516
4872
|
/** Represents a ClientPairingProps. */
|
|
@@ -4525,6 +4881,9 @@ export namespace waproto {
|
|
|
4525
4881
|
/** ClientPairingProps isChatDbLidMigrated. */
|
|
4526
4882
|
public isChatDbLidMigrated?: (boolean|null);
|
|
4527
4883
|
|
|
4884
|
+
/** ClientPairingProps isSyncdPureLidSession. */
|
|
4885
|
+
public isSyncdPureLidSession?: (boolean|null);
|
|
4886
|
+
|
|
4528
4887
|
/**
|
|
4529
4888
|
* Creates a new ClientPairingProps instance using the specified properties.
|
|
4530
4889
|
* @param [properties] Properties to set
|
|
@@ -6034,6 +6393,103 @@ export namespace waproto {
|
|
|
6034
6393
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
6035
6394
|
}
|
|
6036
6395
|
|
|
6396
|
+
/** Properties of a CompanionCommitment. */
|
|
6397
|
+
interface ICompanionCommitment {
|
|
6398
|
+
|
|
6399
|
+
/** CompanionCommitment hash */
|
|
6400
|
+
hash?: (Uint8Array|null);
|
|
6401
|
+
}
|
|
6402
|
+
|
|
6403
|
+
/** Represents a CompanionCommitment. */
|
|
6404
|
+
class CompanionCommitment implements ICompanionCommitment {
|
|
6405
|
+
|
|
6406
|
+
/**
|
|
6407
|
+
* Constructs a new CompanionCommitment.
|
|
6408
|
+
* @param [properties] Properties to set
|
|
6409
|
+
*/
|
|
6410
|
+
constructor(properties?: waproto.ICompanionCommitment);
|
|
6411
|
+
|
|
6412
|
+
/** CompanionCommitment hash. */
|
|
6413
|
+
public hash?: (Uint8Array|null);
|
|
6414
|
+
|
|
6415
|
+
/**
|
|
6416
|
+
* Creates a new CompanionCommitment instance using the specified properties.
|
|
6417
|
+
* @param [properties] Properties to set
|
|
6418
|
+
* @returns CompanionCommitment instance
|
|
6419
|
+
*/
|
|
6420
|
+
public static create(properties?: waproto.ICompanionCommitment): waproto.CompanionCommitment;
|
|
6421
|
+
|
|
6422
|
+
/**
|
|
6423
|
+
* Encodes the specified CompanionCommitment message. Does not implicitly {@link waproto.CompanionCommitment.verify|verify} messages.
|
|
6424
|
+
* @param message CompanionCommitment message or plain object to encode
|
|
6425
|
+
* @param [writer] Writer to encode to
|
|
6426
|
+
* @returns Writer
|
|
6427
|
+
*/
|
|
6428
|
+
public static encode(message: waproto.ICompanionCommitment, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
6429
|
+
|
|
6430
|
+
/**
|
|
6431
|
+
* Encodes the specified CompanionCommitment message, length delimited. Does not implicitly {@link waproto.CompanionCommitment.verify|verify} messages.
|
|
6432
|
+
* @param message CompanionCommitment message or plain object to encode
|
|
6433
|
+
* @param [writer] Writer to encode to
|
|
6434
|
+
* @returns Writer
|
|
6435
|
+
*/
|
|
6436
|
+
public static encodeDelimited(message: waproto.ICompanionCommitment, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
6437
|
+
|
|
6438
|
+
/**
|
|
6439
|
+
* Decodes a CompanionCommitment message from the specified reader or buffer.
|
|
6440
|
+
* @param reader Reader or buffer to decode from
|
|
6441
|
+
* @param [length] Message length if known beforehand
|
|
6442
|
+
* @returns CompanionCommitment
|
|
6443
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
6444
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
6445
|
+
*/
|
|
6446
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): waproto.CompanionCommitment;
|
|
6447
|
+
|
|
6448
|
+
/**
|
|
6449
|
+
* Decodes a CompanionCommitment message from the specified reader or buffer, length delimited.
|
|
6450
|
+
* @param reader Reader or buffer to decode from
|
|
6451
|
+
* @returns CompanionCommitment
|
|
6452
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
6453
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
6454
|
+
*/
|
|
6455
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): waproto.CompanionCommitment;
|
|
6456
|
+
|
|
6457
|
+
/**
|
|
6458
|
+
* Verifies a CompanionCommitment message.
|
|
6459
|
+
* @param message Plain object to verify
|
|
6460
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
6461
|
+
*/
|
|
6462
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
6463
|
+
|
|
6464
|
+
/**
|
|
6465
|
+
* Creates a CompanionCommitment message from a plain object. Also converts values to their respective internal types.
|
|
6466
|
+
* @param object Plain object
|
|
6467
|
+
* @returns CompanionCommitment
|
|
6468
|
+
*/
|
|
6469
|
+
public static fromObject(object: { [k: string]: any }): waproto.CompanionCommitment;
|
|
6470
|
+
|
|
6471
|
+
/**
|
|
6472
|
+
* Creates a plain object from a CompanionCommitment message. Also converts values to other types if specified.
|
|
6473
|
+
* @param message CompanionCommitment
|
|
6474
|
+
* @param [options] Conversion options
|
|
6475
|
+
* @returns Plain object
|
|
6476
|
+
*/
|
|
6477
|
+
public static toObject(message: waproto.CompanionCommitment, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
6478
|
+
|
|
6479
|
+
/**
|
|
6480
|
+
* Converts this CompanionCommitment to JSON.
|
|
6481
|
+
* @returns JSON object
|
|
6482
|
+
*/
|
|
6483
|
+
public toJSON(): { [k: string]: any };
|
|
6484
|
+
|
|
6485
|
+
/**
|
|
6486
|
+
* Gets the default type url for CompanionCommitment
|
|
6487
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
6488
|
+
* @returns The default type url
|
|
6489
|
+
*/
|
|
6490
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
6491
|
+
}
|
|
6492
|
+
|
|
6037
6493
|
/** Properties of a CompanionEphemeralIdentity. */
|
|
6038
6494
|
interface ICompanionEphemeralIdentity {
|
|
6039
6495
|
|
|
@@ -6368,6 +6824,12 @@ export namespace waproto {
|
|
|
6368
6824
|
|
|
6369
6825
|
/** ContextInfo forwardedAiBotMessageInfo */
|
|
6370
6826
|
forwardedAiBotMessageInfo?: (waproto.ContextInfo.IForwardedAIBotMessageInfo|null);
|
|
6827
|
+
|
|
6828
|
+
/** ContextInfo statusAttributionType */
|
|
6829
|
+
statusAttributionType?: (waproto.ContextInfo.StatusAttributionType|null);
|
|
6830
|
+
|
|
6831
|
+
/** ContextInfo urlTrackingMap */
|
|
6832
|
+
urlTrackingMap?: (waproto.IUrlTrackingMap|null);
|
|
6371
6833
|
}
|
|
6372
6834
|
|
|
6373
6835
|
/** Represents a ContextInfo. */
|
|
@@ -6499,6 +6961,12 @@ export namespace waproto {
|
|
|
6499
6961
|
/** ContextInfo forwardedAiBotMessageInfo. */
|
|
6500
6962
|
public forwardedAiBotMessageInfo?: (waproto.ContextInfo.IForwardedAIBotMessageInfo|null);
|
|
6501
6963
|
|
|
6964
|
+
/** ContextInfo statusAttributionType. */
|
|
6965
|
+
public statusAttributionType?: (waproto.ContextInfo.StatusAttributionType|null);
|
|
6966
|
+
|
|
6967
|
+
/** ContextInfo urlTrackingMap. */
|
|
6968
|
+
public urlTrackingMap?: (waproto.IUrlTrackingMap|null);
|
|
6969
|
+
|
|
6502
6970
|
/**
|
|
6503
6971
|
* Creates a new ContextInfo instance using the specified properties.
|
|
6504
6972
|
* @param [properties] Properties to set
|
|
@@ -7616,6 +8084,12 @@ export namespace waproto {
|
|
|
7616
8084
|
}
|
|
7617
8085
|
}
|
|
7618
8086
|
|
|
8087
|
+
/** StatusAttributionType enum. */
|
|
8088
|
+
enum StatusAttributionType {
|
|
8089
|
+
NONE = 0,
|
|
8090
|
+
RESHARED_FROM_MENTION = 1
|
|
8091
|
+
}
|
|
8092
|
+
|
|
7619
8093
|
/** Properties of a UTMInfo. */
|
|
7620
8094
|
interface IUTMInfo {
|
|
7621
8095
|
|
|
@@ -7866,6 +8340,9 @@ export namespace waproto {
|
|
|
7866
8340
|
|
|
7867
8341
|
/** Conversation capiCreatedGroup */
|
|
7868
8342
|
capiCreatedGroup?: (boolean|null);
|
|
8343
|
+
|
|
8344
|
+
/** Conversation accountLid */
|
|
8345
|
+
accountLid?: (string|null);
|
|
7869
8346
|
}
|
|
7870
8347
|
|
|
7871
8348
|
/** Represents a Conversation. */
|
|
@@ -8021,6 +8498,9 @@ export namespace waproto {
|
|
|
8021
8498
|
/** Conversation capiCreatedGroup. */
|
|
8022
8499
|
public capiCreatedGroup?: (boolean|null);
|
|
8023
8500
|
|
|
8501
|
+
/** Conversation accountLid. */
|
|
8502
|
+
public accountLid?: (string|null);
|
|
8503
|
+
|
|
8024
8504
|
/**
|
|
8025
8505
|
* Creates a new Conversation instance using the specified properties.
|
|
8026
8506
|
* @param [properties] Properties to set
|
|
@@ -12385,6 +12865,115 @@ export namespace waproto {
|
|
|
12385
12865
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
12386
12866
|
}
|
|
12387
12867
|
|
|
12868
|
+
/** Properties of a LIDMigrationMapping. */
|
|
12869
|
+
interface ILIDMigrationMapping {
|
|
12870
|
+
|
|
12871
|
+
/** LIDMigrationMapping pn */
|
|
12872
|
+
pn: (number|Long);
|
|
12873
|
+
|
|
12874
|
+
/** LIDMigrationMapping assignedLid */
|
|
12875
|
+
assignedLid: (number|Long);
|
|
12876
|
+
|
|
12877
|
+
/** LIDMigrationMapping latestLid */
|
|
12878
|
+
latestLid?: (number|Long|null);
|
|
12879
|
+
}
|
|
12880
|
+
|
|
12881
|
+
/** Represents a LIDMigrationMapping. */
|
|
12882
|
+
class LIDMigrationMapping implements ILIDMigrationMapping {
|
|
12883
|
+
|
|
12884
|
+
/**
|
|
12885
|
+
* Constructs a new LIDMigrationMapping.
|
|
12886
|
+
* @param [properties] Properties to set
|
|
12887
|
+
*/
|
|
12888
|
+
constructor(properties?: waproto.ILIDMigrationMapping);
|
|
12889
|
+
|
|
12890
|
+
/** LIDMigrationMapping pn. */
|
|
12891
|
+
public pn: (number|Long);
|
|
12892
|
+
|
|
12893
|
+
/** LIDMigrationMapping assignedLid. */
|
|
12894
|
+
public assignedLid: (number|Long);
|
|
12895
|
+
|
|
12896
|
+
/** LIDMigrationMapping latestLid. */
|
|
12897
|
+
public latestLid?: (number|Long|null);
|
|
12898
|
+
|
|
12899
|
+
/**
|
|
12900
|
+
* Creates a new LIDMigrationMapping instance using the specified properties.
|
|
12901
|
+
* @param [properties] Properties to set
|
|
12902
|
+
* @returns LIDMigrationMapping instance
|
|
12903
|
+
*/
|
|
12904
|
+
public static create(properties?: waproto.ILIDMigrationMapping): waproto.LIDMigrationMapping;
|
|
12905
|
+
|
|
12906
|
+
/**
|
|
12907
|
+
* Encodes the specified LIDMigrationMapping message. Does not implicitly {@link waproto.LIDMigrationMapping.verify|verify} messages.
|
|
12908
|
+
* @param message LIDMigrationMapping message or plain object to encode
|
|
12909
|
+
* @param [writer] Writer to encode to
|
|
12910
|
+
* @returns Writer
|
|
12911
|
+
*/
|
|
12912
|
+
public static encode(message: waproto.ILIDMigrationMapping, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12913
|
+
|
|
12914
|
+
/**
|
|
12915
|
+
* Encodes the specified LIDMigrationMapping message, length delimited. Does not implicitly {@link waproto.LIDMigrationMapping.verify|verify} messages.
|
|
12916
|
+
* @param message LIDMigrationMapping message or plain object to encode
|
|
12917
|
+
* @param [writer] Writer to encode to
|
|
12918
|
+
* @returns Writer
|
|
12919
|
+
*/
|
|
12920
|
+
public static encodeDelimited(message: waproto.ILIDMigrationMapping, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12921
|
+
|
|
12922
|
+
/**
|
|
12923
|
+
* Decodes a LIDMigrationMapping message from the specified reader or buffer.
|
|
12924
|
+
* @param reader Reader or buffer to decode from
|
|
12925
|
+
* @param [length] Message length if known beforehand
|
|
12926
|
+
* @returns LIDMigrationMapping
|
|
12927
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12928
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12929
|
+
*/
|
|
12930
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): waproto.LIDMigrationMapping;
|
|
12931
|
+
|
|
12932
|
+
/**
|
|
12933
|
+
* Decodes a LIDMigrationMapping message from the specified reader or buffer, length delimited.
|
|
12934
|
+
* @param reader Reader or buffer to decode from
|
|
12935
|
+
* @returns LIDMigrationMapping
|
|
12936
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12937
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12938
|
+
*/
|
|
12939
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): waproto.LIDMigrationMapping;
|
|
12940
|
+
|
|
12941
|
+
/**
|
|
12942
|
+
* Verifies a LIDMigrationMapping message.
|
|
12943
|
+
* @param message Plain object to verify
|
|
12944
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
12945
|
+
*/
|
|
12946
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
12947
|
+
|
|
12948
|
+
/**
|
|
12949
|
+
* Creates a LIDMigrationMapping message from a plain object. Also converts values to their respective internal types.
|
|
12950
|
+
* @param object Plain object
|
|
12951
|
+
* @returns LIDMigrationMapping
|
|
12952
|
+
*/
|
|
12953
|
+
public static fromObject(object: { [k: string]: any }): waproto.LIDMigrationMapping;
|
|
12954
|
+
|
|
12955
|
+
/**
|
|
12956
|
+
* Creates a plain object from a LIDMigrationMapping message. Also converts values to other types if specified.
|
|
12957
|
+
* @param message LIDMigrationMapping
|
|
12958
|
+
* @param [options] Conversion options
|
|
12959
|
+
* @returns Plain object
|
|
12960
|
+
*/
|
|
12961
|
+
public static toObject(message: waproto.LIDMigrationMapping, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
12962
|
+
|
|
12963
|
+
/**
|
|
12964
|
+
* Converts this LIDMigrationMapping to JSON.
|
|
12965
|
+
* @returns JSON object
|
|
12966
|
+
*/
|
|
12967
|
+
public toJSON(): { [k: string]: any };
|
|
12968
|
+
|
|
12969
|
+
/**
|
|
12970
|
+
* Gets the default type url for LIDMigrationMapping
|
|
12971
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
12972
|
+
* @returns The default type url
|
|
12973
|
+
*/
|
|
12974
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
12975
|
+
}
|
|
12976
|
+
|
|
12388
12977
|
/** Properties of a LIDMigrationMappingSyncMessage. */
|
|
12389
12978
|
interface ILIDMigrationMappingSyncMessage {
|
|
12390
12979
|
|
|
@@ -12482,6 +13071,103 @@ export namespace waproto {
|
|
|
12482
13071
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
12483
13072
|
}
|
|
12484
13073
|
|
|
13074
|
+
/** Properties of a LIDMigrationMappingSyncPayload. */
|
|
13075
|
+
interface ILIDMigrationMappingSyncPayload {
|
|
13076
|
+
|
|
13077
|
+
/** LIDMigrationMappingSyncPayload pnToLidMappings */
|
|
13078
|
+
pnToLidMappings?: (waproto.ILIDMigrationMapping[]|null);
|
|
13079
|
+
}
|
|
13080
|
+
|
|
13081
|
+
/** Represents a LIDMigrationMappingSyncPayload. */
|
|
13082
|
+
class LIDMigrationMappingSyncPayload implements ILIDMigrationMappingSyncPayload {
|
|
13083
|
+
|
|
13084
|
+
/**
|
|
13085
|
+
* Constructs a new LIDMigrationMappingSyncPayload.
|
|
13086
|
+
* @param [properties] Properties to set
|
|
13087
|
+
*/
|
|
13088
|
+
constructor(properties?: waproto.ILIDMigrationMappingSyncPayload);
|
|
13089
|
+
|
|
13090
|
+
/** LIDMigrationMappingSyncPayload pnToLidMappings. */
|
|
13091
|
+
public pnToLidMappings: waproto.ILIDMigrationMapping[];
|
|
13092
|
+
|
|
13093
|
+
/**
|
|
13094
|
+
* Creates a new LIDMigrationMappingSyncPayload instance using the specified properties.
|
|
13095
|
+
* @param [properties] Properties to set
|
|
13096
|
+
* @returns LIDMigrationMappingSyncPayload instance
|
|
13097
|
+
*/
|
|
13098
|
+
public static create(properties?: waproto.ILIDMigrationMappingSyncPayload): waproto.LIDMigrationMappingSyncPayload;
|
|
13099
|
+
|
|
13100
|
+
/**
|
|
13101
|
+
* Encodes the specified LIDMigrationMappingSyncPayload message. Does not implicitly {@link waproto.LIDMigrationMappingSyncPayload.verify|verify} messages.
|
|
13102
|
+
* @param message LIDMigrationMappingSyncPayload message or plain object to encode
|
|
13103
|
+
* @param [writer] Writer to encode to
|
|
13104
|
+
* @returns Writer
|
|
13105
|
+
*/
|
|
13106
|
+
public static encode(message: waproto.ILIDMigrationMappingSyncPayload, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13107
|
+
|
|
13108
|
+
/**
|
|
13109
|
+
* Encodes the specified LIDMigrationMappingSyncPayload message, length delimited. Does not implicitly {@link waproto.LIDMigrationMappingSyncPayload.verify|verify} messages.
|
|
13110
|
+
* @param message LIDMigrationMappingSyncPayload message or plain object to encode
|
|
13111
|
+
* @param [writer] Writer to encode to
|
|
13112
|
+
* @returns Writer
|
|
13113
|
+
*/
|
|
13114
|
+
public static encodeDelimited(message: waproto.ILIDMigrationMappingSyncPayload, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13115
|
+
|
|
13116
|
+
/**
|
|
13117
|
+
* Decodes a LIDMigrationMappingSyncPayload message from the specified reader or buffer.
|
|
13118
|
+
* @param reader Reader or buffer to decode from
|
|
13119
|
+
* @param [length] Message length if known beforehand
|
|
13120
|
+
* @returns LIDMigrationMappingSyncPayload
|
|
13121
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13122
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13123
|
+
*/
|
|
13124
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): waproto.LIDMigrationMappingSyncPayload;
|
|
13125
|
+
|
|
13126
|
+
/**
|
|
13127
|
+
* Decodes a LIDMigrationMappingSyncPayload message from the specified reader or buffer, length delimited.
|
|
13128
|
+
* @param reader Reader or buffer to decode from
|
|
13129
|
+
* @returns LIDMigrationMappingSyncPayload
|
|
13130
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13131
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13132
|
+
*/
|
|
13133
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): waproto.LIDMigrationMappingSyncPayload;
|
|
13134
|
+
|
|
13135
|
+
/**
|
|
13136
|
+
* Verifies a LIDMigrationMappingSyncPayload message.
|
|
13137
|
+
* @param message Plain object to verify
|
|
13138
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
13139
|
+
*/
|
|
13140
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
13141
|
+
|
|
13142
|
+
/**
|
|
13143
|
+
* Creates a LIDMigrationMappingSyncPayload message from a plain object. Also converts values to their respective internal types.
|
|
13144
|
+
* @param object Plain object
|
|
13145
|
+
* @returns LIDMigrationMappingSyncPayload
|
|
13146
|
+
*/
|
|
13147
|
+
public static fromObject(object: { [k: string]: any }): waproto.LIDMigrationMappingSyncPayload;
|
|
13148
|
+
|
|
13149
|
+
/**
|
|
13150
|
+
* Creates a plain object from a LIDMigrationMappingSyncPayload message. Also converts values to other types if specified.
|
|
13151
|
+
* @param message LIDMigrationMappingSyncPayload
|
|
13152
|
+
* @param [options] Conversion options
|
|
13153
|
+
* @returns Plain object
|
|
13154
|
+
*/
|
|
13155
|
+
public static toObject(message: waproto.LIDMigrationMappingSyncPayload, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
13156
|
+
|
|
13157
|
+
/**
|
|
13158
|
+
* Converts this LIDMigrationMappingSyncPayload to JSON.
|
|
13159
|
+
* @returns JSON object
|
|
13160
|
+
*/
|
|
13161
|
+
public toJSON(): { [k: string]: any };
|
|
13162
|
+
|
|
13163
|
+
/**
|
|
13164
|
+
* Gets the default type url for LIDMigrationMappingSyncPayload
|
|
13165
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
13166
|
+
* @returns The default type url
|
|
13167
|
+
*/
|
|
13168
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
13169
|
+
}
|
|
13170
|
+
|
|
12485
13171
|
/** Properties of a LegacyMessage. */
|
|
12486
13172
|
interface ILegacyMessage {
|
|
12487
13173
|
|
|
@@ -13364,9 +14050,6 @@ export namespace waproto {
|
|
|
13364
14050
|
/** Message pollResultSnapshotMessage */
|
|
13365
14051
|
pollResultSnapshotMessage?: (waproto.Message.IPollResultSnapshotMessage|null);
|
|
13366
14052
|
|
|
13367
|
-
/** Message pollCreationMessageV4 */
|
|
13368
|
-
pollCreationMessageV4?: (waproto.Message.IFutureProofMessage|null);
|
|
13369
|
-
|
|
13370
14053
|
/** Message pollCreationOptionImageMessage */
|
|
13371
14054
|
pollCreationOptionImageMessage?: (waproto.Message.IFutureProofMessage|null);
|
|
13372
14055
|
|
|
@@ -13375,6 +14058,18 @@ export namespace waproto {
|
|
|
13375
14058
|
|
|
13376
14059
|
/** Message groupStatusMentionMessage */
|
|
13377
14060
|
groupStatusMentionMessage?: (waproto.Message.IFutureProofMessage|null);
|
|
14061
|
+
|
|
14062
|
+
/** Message pollCreationMessageV4 */
|
|
14063
|
+
pollCreationMessageV4?: (waproto.Message.IFutureProofMessage|null);
|
|
14064
|
+
|
|
14065
|
+
/** Message pollCreationMessageV5 */
|
|
14066
|
+
pollCreationMessageV5?: (waproto.Message.IFutureProofMessage|null);
|
|
14067
|
+
|
|
14068
|
+
/** Message statusAddYours */
|
|
14069
|
+
statusAddYours?: (waproto.Message.IFutureProofMessage|null);
|
|
14070
|
+
|
|
14071
|
+
/** Message groupStatusMessage */
|
|
14072
|
+
groupStatusMessage?: (waproto.Message.IFutureProofMessage|null);
|
|
13378
14073
|
}
|
|
13379
14074
|
|
|
13380
14075
|
/** Represents a Message. */
|
|
@@ -13605,9 +14300,6 @@ export namespace waproto {
|
|
|
13605
14300
|
/** Message pollResultSnapshotMessage. */
|
|
13606
14301
|
public pollResultSnapshotMessage?: (waproto.Message.IPollResultSnapshotMessage|null);
|
|
13607
14302
|
|
|
13608
|
-
/** Message pollCreationMessageV4. */
|
|
13609
|
-
public pollCreationMessageV4?: (waproto.Message.IFutureProofMessage|null);
|
|
13610
|
-
|
|
13611
14303
|
/** Message pollCreationOptionImageMessage. */
|
|
13612
14304
|
public pollCreationOptionImageMessage?: (waproto.Message.IFutureProofMessage|null);
|
|
13613
14305
|
|
|
@@ -13617,6 +14309,18 @@ export namespace waproto {
|
|
|
13617
14309
|
/** Message groupStatusMentionMessage. */
|
|
13618
14310
|
public groupStatusMentionMessage?: (waproto.Message.IFutureProofMessage|null);
|
|
13619
14311
|
|
|
14312
|
+
/** Message pollCreationMessageV4. */
|
|
14313
|
+
public pollCreationMessageV4?: (waproto.Message.IFutureProofMessage|null);
|
|
14314
|
+
|
|
14315
|
+
/** Message pollCreationMessageV5. */
|
|
14316
|
+
public pollCreationMessageV5?: (waproto.Message.IFutureProofMessage|null);
|
|
14317
|
+
|
|
14318
|
+
/** Message statusAddYours. */
|
|
14319
|
+
public statusAddYours?: (waproto.Message.IFutureProofMessage|null);
|
|
14320
|
+
|
|
14321
|
+
/** Message groupStatusMessage. */
|
|
14322
|
+
public groupStatusMessage?: (waproto.Message.IFutureProofMessage|null);
|
|
14323
|
+
|
|
13620
14324
|
/**
|
|
13621
14325
|
* Creates a new Message instance using the specified properties.
|
|
13622
14326
|
* @param [properties] Properties to set
|
|
@@ -19584,6 +20288,9 @@ export namespace waproto {
|
|
|
19584
20288
|
/** InteractiveMessage contextInfo */
|
|
19585
20289
|
contextInfo?: (waproto.IContextInfo|null);
|
|
19586
20290
|
|
|
20291
|
+
/** InteractiveMessage urlTrackingMap */
|
|
20292
|
+
urlTrackingMap?: (waproto.IUrlTrackingMap|null);
|
|
20293
|
+
|
|
19587
20294
|
/** InteractiveMessage shopStorefrontMessage */
|
|
19588
20295
|
shopStorefrontMessage?: (waproto.Message.InteractiveMessage.IShopMessage|null);
|
|
19589
20296
|
|
|
@@ -19618,6 +20325,9 @@ export namespace waproto {
|
|
|
19618
20325
|
/** InteractiveMessage contextInfo. */
|
|
19619
20326
|
public contextInfo?: (waproto.IContextInfo|null);
|
|
19620
20327
|
|
|
20328
|
+
/** InteractiveMessage urlTrackingMap. */
|
|
20329
|
+
public urlTrackingMap?: (waproto.IUrlTrackingMap|null);
|
|
20330
|
+
|
|
19621
20331
|
/** InteractiveMessage shopStorefrontMessage. */
|
|
19622
20332
|
public shopStorefrontMessage?: (waproto.Message.InteractiveMessage.IShopMessage|null);
|
|
19623
20333
|
|
|
@@ -25052,6 +25762,13 @@ export namespace waproto {
|
|
|
25052
25762
|
}
|
|
25053
25763
|
}
|
|
25054
25764
|
|
|
25765
|
+
/** PollContentType enum. */
|
|
25766
|
+
enum PollContentType {
|
|
25767
|
+
UNKNOWN = 0,
|
|
25768
|
+
TEXT = 1,
|
|
25769
|
+
IMAGE = 2
|
|
25770
|
+
}
|
|
25771
|
+
|
|
25055
25772
|
/** Properties of a PollCreationMessage. */
|
|
25056
25773
|
interface IPollCreationMessage {
|
|
25057
25774
|
|
|
@@ -25070,8 +25787,14 @@ export namespace waproto {
|
|
|
25070
25787
|
/** PollCreationMessage contextInfo */
|
|
25071
25788
|
contextInfo?: (waproto.IContextInfo|null);
|
|
25072
25789
|
|
|
25073
|
-
/** PollCreationMessage
|
|
25074
|
-
|
|
25790
|
+
/** PollCreationMessage pollContentType */
|
|
25791
|
+
pollContentType?: (waproto.Message.PollContentType|null);
|
|
25792
|
+
|
|
25793
|
+
/** PollCreationMessage pollType */
|
|
25794
|
+
pollType?: (waproto.Message.PollCreationMessage.PollType|null);
|
|
25795
|
+
|
|
25796
|
+
/** PollCreationMessage correctAnswer */
|
|
25797
|
+
correctAnswer?: (waproto.Message.PollCreationMessage.IOption|null);
|
|
25075
25798
|
}
|
|
25076
25799
|
|
|
25077
25800
|
/** Represents a PollCreationMessage. */
|
|
@@ -25098,8 +25821,14 @@ export namespace waproto {
|
|
|
25098
25821
|
/** PollCreationMessage contextInfo. */
|
|
25099
25822
|
public contextInfo?: (waproto.IContextInfo|null);
|
|
25100
25823
|
|
|
25101
|
-
/** PollCreationMessage
|
|
25102
|
-
public
|
|
25824
|
+
/** PollCreationMessage pollContentType. */
|
|
25825
|
+
public pollContentType?: (waproto.Message.PollContentType|null);
|
|
25826
|
+
|
|
25827
|
+
/** PollCreationMessage pollType. */
|
|
25828
|
+
public pollType?: (waproto.Message.PollCreationMessage.PollType|null);
|
|
25829
|
+
|
|
25830
|
+
/** PollCreationMessage correctAnswer. */
|
|
25831
|
+
public correctAnswer?: (waproto.Message.PollCreationMessage.IOption|null);
|
|
25103
25832
|
|
|
25104
25833
|
/**
|
|
25105
25834
|
* Creates a new PollCreationMessage instance using the specified properties.
|
|
@@ -25283,6 +26012,12 @@ export namespace waproto {
|
|
|
25283
26012
|
*/
|
|
25284
26013
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
25285
26014
|
}
|
|
26015
|
+
|
|
26016
|
+
/** PollType enum. */
|
|
26017
|
+
enum PollType {
|
|
26018
|
+
POLL = 0,
|
|
26019
|
+
QUIZ = 1
|
|
26020
|
+
}
|
|
25286
26021
|
}
|
|
25287
26022
|
|
|
25288
26023
|
/** Properties of a PollEncValue. */
|
|
@@ -25388,12 +26123,6 @@ export namespace waproto {
|
|
|
25388
26123
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
25389
26124
|
}
|
|
25390
26125
|
|
|
25391
|
-
/** PollMediaType enum. */
|
|
25392
|
-
enum PollMediaType {
|
|
25393
|
-
TEXT = 1,
|
|
25394
|
-
IMAGE = 2
|
|
25395
|
-
}
|
|
25396
|
-
|
|
25397
26126
|
/** Properties of a PollResultSnapshotMessage. */
|
|
25398
26127
|
interface IPollResultSnapshotMessage {
|
|
25399
26128
|
|
|
@@ -29433,7 +30162,8 @@ export namespace waproto {
|
|
|
29433
30162
|
STATUS_POLL = 4,
|
|
29434
30163
|
HD_VIDEO_DUAL_UPLOAD = 5,
|
|
29435
30164
|
STATUS_TAPPABLE_MESSAGE = 6,
|
|
29436
|
-
MEDIA_POLL = 7
|
|
30165
|
+
MEDIA_POLL = 7,
|
|
30166
|
+
STATUS_ADD_YOURS = 8
|
|
29437
30167
|
}
|
|
29438
30168
|
}
|
|
29439
30169
|
|
|
@@ -30011,6 +30741,9 @@ export namespace waproto {
|
|
|
30011
30741
|
/** MsgOpaqueData isSentCagPollCreation */
|
|
30012
30742
|
isSentCagPollCreation?: (boolean|null);
|
|
30013
30743
|
|
|
30744
|
+
/** MsgOpaqueData pollContentType */
|
|
30745
|
+
pollContentType?: (waproto.MsgOpaqueData.PollContentType|null);
|
|
30746
|
+
|
|
30014
30747
|
/** MsgOpaqueData pollVotesSnapshot */
|
|
30015
30748
|
pollVotesSnapshot?: (waproto.MsgOpaqueData.IPollVotesSnapshot|null);
|
|
30016
30749
|
|
|
@@ -30132,6 +30865,9 @@ export namespace waproto {
|
|
|
30132
30865
|
/** MsgOpaqueData isSentCagPollCreation. */
|
|
30133
30866
|
public isSentCagPollCreation?: (boolean|null);
|
|
30134
30867
|
|
|
30868
|
+
/** MsgOpaqueData pollContentType. */
|
|
30869
|
+
public pollContentType?: (waproto.MsgOpaqueData.PollContentType|null);
|
|
30870
|
+
|
|
30135
30871
|
/** MsgOpaqueData pollVotesSnapshot. */
|
|
30136
30872
|
public pollVotesSnapshot?: (waproto.MsgOpaqueData.IPollVotesSnapshot|null);
|
|
30137
30873
|
|
|
@@ -30384,6 +31120,13 @@ export namespace waproto {
|
|
|
30384
31120
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
30385
31121
|
}
|
|
30386
31122
|
|
|
31123
|
+
/** PollContentType enum. */
|
|
31124
|
+
enum PollContentType {
|
|
31125
|
+
UNKNOWN = 0,
|
|
31126
|
+
TEXT = 1,
|
|
31127
|
+
IMAGE = 2
|
|
31128
|
+
}
|
|
31129
|
+
|
|
30387
31130
|
/** Properties of a PollOption. */
|
|
30388
31131
|
interface IPollOption {
|
|
30389
31132
|
|
|
@@ -31254,6 +31997,115 @@ export namespace waproto {
|
|
|
31254
31997
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
31255
31998
|
}
|
|
31256
31999
|
|
|
32000
|
+
/** Properties of a PairingRequest. */
|
|
32001
|
+
interface IPairingRequest {
|
|
32002
|
+
|
|
32003
|
+
/** PairingRequest companionPublicKey */
|
|
32004
|
+
companionPublicKey?: (Uint8Array|null);
|
|
32005
|
+
|
|
32006
|
+
/** PairingRequest companionIdentityKey */
|
|
32007
|
+
companionIdentityKey?: (Uint8Array|null);
|
|
32008
|
+
|
|
32009
|
+
/** PairingRequest advSecret */
|
|
32010
|
+
advSecret?: (Uint8Array|null);
|
|
32011
|
+
}
|
|
32012
|
+
|
|
32013
|
+
/** Represents a PairingRequest. */
|
|
32014
|
+
class PairingRequest implements IPairingRequest {
|
|
32015
|
+
|
|
32016
|
+
/**
|
|
32017
|
+
* Constructs a new PairingRequest.
|
|
32018
|
+
* @param [properties] Properties to set
|
|
32019
|
+
*/
|
|
32020
|
+
constructor(properties?: waproto.IPairingRequest);
|
|
32021
|
+
|
|
32022
|
+
/** PairingRequest companionPublicKey. */
|
|
32023
|
+
public companionPublicKey?: (Uint8Array|null);
|
|
32024
|
+
|
|
32025
|
+
/** PairingRequest companionIdentityKey. */
|
|
32026
|
+
public companionIdentityKey?: (Uint8Array|null);
|
|
32027
|
+
|
|
32028
|
+
/** PairingRequest advSecret. */
|
|
32029
|
+
public advSecret?: (Uint8Array|null);
|
|
32030
|
+
|
|
32031
|
+
/**
|
|
32032
|
+
* Creates a new PairingRequest instance using the specified properties.
|
|
32033
|
+
* @param [properties] Properties to set
|
|
32034
|
+
* @returns PairingRequest instance
|
|
32035
|
+
*/
|
|
32036
|
+
public static create(properties?: waproto.IPairingRequest): waproto.PairingRequest;
|
|
32037
|
+
|
|
32038
|
+
/**
|
|
32039
|
+
* Encodes the specified PairingRequest message. Does not implicitly {@link waproto.PairingRequest.verify|verify} messages.
|
|
32040
|
+
* @param message PairingRequest message or plain object to encode
|
|
32041
|
+
* @param [writer] Writer to encode to
|
|
32042
|
+
* @returns Writer
|
|
32043
|
+
*/
|
|
32044
|
+
public static encode(message: waproto.IPairingRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
32045
|
+
|
|
32046
|
+
/**
|
|
32047
|
+
* Encodes the specified PairingRequest message, length delimited. Does not implicitly {@link waproto.PairingRequest.verify|verify} messages.
|
|
32048
|
+
* @param message PairingRequest message or plain object to encode
|
|
32049
|
+
* @param [writer] Writer to encode to
|
|
32050
|
+
* @returns Writer
|
|
32051
|
+
*/
|
|
32052
|
+
public static encodeDelimited(message: waproto.IPairingRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
32053
|
+
|
|
32054
|
+
/**
|
|
32055
|
+
* Decodes a PairingRequest message from the specified reader or buffer.
|
|
32056
|
+
* @param reader Reader or buffer to decode from
|
|
32057
|
+
* @param [length] Message length if known beforehand
|
|
32058
|
+
* @returns PairingRequest
|
|
32059
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
32060
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
32061
|
+
*/
|
|
32062
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): waproto.PairingRequest;
|
|
32063
|
+
|
|
32064
|
+
/**
|
|
32065
|
+
* Decodes a PairingRequest message from the specified reader or buffer, length delimited.
|
|
32066
|
+
* @param reader Reader or buffer to decode from
|
|
32067
|
+
* @returns PairingRequest
|
|
32068
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
32069
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
32070
|
+
*/
|
|
32071
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): waproto.PairingRequest;
|
|
32072
|
+
|
|
32073
|
+
/**
|
|
32074
|
+
* Verifies a PairingRequest message.
|
|
32075
|
+
* @param message Plain object to verify
|
|
32076
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
32077
|
+
*/
|
|
32078
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
32079
|
+
|
|
32080
|
+
/**
|
|
32081
|
+
* Creates a PairingRequest message from a plain object. Also converts values to their respective internal types.
|
|
32082
|
+
* @param object Plain object
|
|
32083
|
+
* @returns PairingRequest
|
|
32084
|
+
*/
|
|
32085
|
+
public static fromObject(object: { [k: string]: any }): waproto.PairingRequest;
|
|
32086
|
+
|
|
32087
|
+
/**
|
|
32088
|
+
* Creates a plain object from a PairingRequest message. Also converts values to other types if specified.
|
|
32089
|
+
* @param message PairingRequest
|
|
32090
|
+
* @param [options] Conversion options
|
|
32091
|
+
* @returns Plain object
|
|
32092
|
+
*/
|
|
32093
|
+
public static toObject(message: waproto.PairingRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
32094
|
+
|
|
32095
|
+
/**
|
|
32096
|
+
* Converts this PairingRequest to JSON.
|
|
32097
|
+
* @returns JSON object
|
|
32098
|
+
*/
|
|
32099
|
+
public toJSON(): { [k: string]: any };
|
|
32100
|
+
|
|
32101
|
+
/**
|
|
32102
|
+
* Gets the default type url for PairingRequest
|
|
32103
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
32104
|
+
* @returns The default type url
|
|
32105
|
+
*/
|
|
32106
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
32107
|
+
}
|
|
32108
|
+
|
|
31257
32109
|
/** Properties of a PastParticipant. */
|
|
31258
32110
|
interface IPastParticipant {
|
|
31259
32111
|
|
|
@@ -31642,7 +32494,9 @@ export namespace waproto {
|
|
|
31642
32494
|
SMBI = 3,
|
|
31643
32495
|
WEB = 4,
|
|
31644
32496
|
UWP = 5,
|
|
31645
|
-
DARWIN = 6
|
|
32497
|
+
DARWIN = 6,
|
|
32498
|
+
IPAD = 7,
|
|
32499
|
+
WEAROS = 8
|
|
31646
32500
|
}
|
|
31647
32501
|
}
|
|
31648
32502
|
|
|
@@ -33274,6 +34128,9 @@ export namespace waproto {
|
|
|
33274
34128
|
|
|
33275
34129
|
/** PrimaryEphemeralIdentity publicKey */
|
|
33276
34130
|
publicKey?: (Uint8Array|null);
|
|
34131
|
+
|
|
34132
|
+
/** PrimaryEphemeralIdentity nonce */
|
|
34133
|
+
nonce?: (Uint8Array|null);
|
|
33277
34134
|
}
|
|
33278
34135
|
|
|
33279
34136
|
/** Represents a PrimaryEphemeralIdentity. */
|
|
@@ -33288,6 +34145,9 @@ export namespace waproto {
|
|
|
33288
34145
|
/** PrimaryEphemeralIdentity publicKey. */
|
|
33289
34146
|
public publicKey?: (Uint8Array|null);
|
|
33290
34147
|
|
|
34148
|
+
/** PrimaryEphemeralIdentity nonce. */
|
|
34149
|
+
public nonce?: (Uint8Array|null);
|
|
34150
|
+
|
|
33291
34151
|
/**
|
|
33292
34152
|
* Creates a new PrimaryEphemeralIdentity instance using the specified properties.
|
|
33293
34153
|
* @param [properties] Properties to set
|
|
@@ -33523,6 +34383,109 @@ export namespace waproto {
|
|
|
33523
34383
|
}
|
|
33524
34384
|
}
|
|
33525
34385
|
|
|
34386
|
+
/** Properties of a ProloguePayload. */
|
|
34387
|
+
interface IProloguePayload {
|
|
34388
|
+
|
|
34389
|
+
/** ProloguePayload companionEphemeralIdentity */
|
|
34390
|
+
companionEphemeralIdentity?: (Uint8Array|null);
|
|
34391
|
+
|
|
34392
|
+
/** ProloguePayload commitment */
|
|
34393
|
+
commitment?: (waproto.ICompanionCommitment|null);
|
|
34394
|
+
}
|
|
34395
|
+
|
|
34396
|
+
/** Represents a ProloguePayload. */
|
|
34397
|
+
class ProloguePayload implements IProloguePayload {
|
|
34398
|
+
|
|
34399
|
+
/**
|
|
34400
|
+
* Constructs a new ProloguePayload.
|
|
34401
|
+
* @param [properties] Properties to set
|
|
34402
|
+
*/
|
|
34403
|
+
constructor(properties?: waproto.IProloguePayload);
|
|
34404
|
+
|
|
34405
|
+
/** ProloguePayload companionEphemeralIdentity. */
|
|
34406
|
+
public companionEphemeralIdentity?: (Uint8Array|null);
|
|
34407
|
+
|
|
34408
|
+
/** ProloguePayload commitment. */
|
|
34409
|
+
public commitment?: (waproto.ICompanionCommitment|null);
|
|
34410
|
+
|
|
34411
|
+
/**
|
|
34412
|
+
* Creates a new ProloguePayload instance using the specified properties.
|
|
34413
|
+
* @param [properties] Properties to set
|
|
34414
|
+
* @returns ProloguePayload instance
|
|
34415
|
+
*/
|
|
34416
|
+
public static create(properties?: waproto.IProloguePayload): waproto.ProloguePayload;
|
|
34417
|
+
|
|
34418
|
+
/**
|
|
34419
|
+
* Encodes the specified ProloguePayload message. Does not implicitly {@link waproto.ProloguePayload.verify|verify} messages.
|
|
34420
|
+
* @param message ProloguePayload message or plain object to encode
|
|
34421
|
+
* @param [writer] Writer to encode to
|
|
34422
|
+
* @returns Writer
|
|
34423
|
+
*/
|
|
34424
|
+
public static encode(message: waproto.IProloguePayload, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
34425
|
+
|
|
34426
|
+
/**
|
|
34427
|
+
* Encodes the specified ProloguePayload message, length delimited. Does not implicitly {@link waproto.ProloguePayload.verify|verify} messages.
|
|
34428
|
+
* @param message ProloguePayload message or plain object to encode
|
|
34429
|
+
* @param [writer] Writer to encode to
|
|
34430
|
+
* @returns Writer
|
|
34431
|
+
*/
|
|
34432
|
+
public static encodeDelimited(message: waproto.IProloguePayload, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
34433
|
+
|
|
34434
|
+
/**
|
|
34435
|
+
* Decodes a ProloguePayload message from the specified reader or buffer.
|
|
34436
|
+
* @param reader Reader or buffer to decode from
|
|
34437
|
+
* @param [length] Message length if known beforehand
|
|
34438
|
+
* @returns ProloguePayload
|
|
34439
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
34440
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
34441
|
+
*/
|
|
34442
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): waproto.ProloguePayload;
|
|
34443
|
+
|
|
34444
|
+
/**
|
|
34445
|
+
* Decodes a ProloguePayload message from the specified reader or buffer, length delimited.
|
|
34446
|
+
* @param reader Reader or buffer to decode from
|
|
34447
|
+
* @returns ProloguePayload
|
|
34448
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
34449
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
34450
|
+
*/
|
|
34451
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): waproto.ProloguePayload;
|
|
34452
|
+
|
|
34453
|
+
/**
|
|
34454
|
+
* Verifies a ProloguePayload message.
|
|
34455
|
+
* @param message Plain object to verify
|
|
34456
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
34457
|
+
*/
|
|
34458
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
34459
|
+
|
|
34460
|
+
/**
|
|
34461
|
+
* Creates a ProloguePayload message from a plain object. Also converts values to their respective internal types.
|
|
34462
|
+
* @param object Plain object
|
|
34463
|
+
* @returns ProloguePayload
|
|
34464
|
+
*/
|
|
34465
|
+
public static fromObject(object: { [k: string]: any }): waproto.ProloguePayload;
|
|
34466
|
+
|
|
34467
|
+
/**
|
|
34468
|
+
* Creates a plain object from a ProloguePayload message. Also converts values to other types if specified.
|
|
34469
|
+
* @param message ProloguePayload
|
|
34470
|
+
* @param [options] Conversion options
|
|
34471
|
+
* @returns Plain object
|
|
34472
|
+
*/
|
|
34473
|
+
public static toObject(message: waproto.ProloguePayload, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
34474
|
+
|
|
34475
|
+
/**
|
|
34476
|
+
* Converts this ProloguePayload to JSON.
|
|
34477
|
+
* @returns JSON object
|
|
34478
|
+
*/
|
|
34479
|
+
public toJSON(): { [k: string]: any };
|
|
34480
|
+
|
|
34481
|
+
/**
|
|
34482
|
+
* Gets the default type url for ProloguePayload
|
|
34483
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
34484
|
+
* @returns The default type url
|
|
34485
|
+
*/
|
|
34486
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
34487
|
+
}
|
|
34488
|
+
|
|
33526
34489
|
/** Properties of a Pushname. */
|
|
33527
34490
|
interface IPushname {
|
|
33528
34491
|
|
|
@@ -36635,6 +37598,9 @@ export namespace waproto {
|
|
|
36635
37598
|
|
|
36636
37599
|
/** SyncActionValue usernameChatStartMode */
|
|
36637
37600
|
usernameChatStartMode?: (waproto.SyncActionValue.IUsernameChatStartModeAction|null);
|
|
37601
|
+
|
|
37602
|
+
/** SyncActionValue notificationActivitySettingAction */
|
|
37603
|
+
notificationActivitySettingAction?: (waproto.SyncActionValue.INotificationActivitySettingAction|null);
|
|
36638
37604
|
}
|
|
36639
37605
|
|
|
36640
37606
|
/** Represents a SyncActionValue. */
|
|
@@ -36805,6 +37771,9 @@ export namespace waproto {
|
|
|
36805
37771
|
/** SyncActionValue usernameChatStartMode. */
|
|
36806
37772
|
public usernameChatStartMode?: (waproto.SyncActionValue.IUsernameChatStartModeAction|null);
|
|
36807
37773
|
|
|
37774
|
+
/** SyncActionValue notificationActivitySettingAction. */
|
|
37775
|
+
public notificationActivitySettingAction?: (waproto.SyncActionValue.INotificationActivitySettingAction|null);
|
|
37776
|
+
|
|
36808
37777
|
/**
|
|
36809
37778
|
* Creates a new SyncActionValue instance using the specified properties.
|
|
36810
37779
|
* @param [properties] Properties to set
|
|
@@ -40041,6 +41010,114 @@ export namespace waproto {
|
|
|
40041
41010
|
}
|
|
40042
41011
|
}
|
|
40043
41012
|
|
|
41013
|
+
/** Properties of a NotificationActivitySettingAction. */
|
|
41014
|
+
interface INotificationActivitySettingAction {
|
|
41015
|
+
|
|
41016
|
+
/** NotificationActivitySettingAction notificationActivitySetting */
|
|
41017
|
+
notificationActivitySetting?: (waproto.SyncActionValue.NotificationActivitySettingAction.NotificationActivitySetting|null);
|
|
41018
|
+
}
|
|
41019
|
+
|
|
41020
|
+
/** Represents a NotificationActivitySettingAction. */
|
|
41021
|
+
class NotificationActivitySettingAction implements INotificationActivitySettingAction {
|
|
41022
|
+
|
|
41023
|
+
/**
|
|
41024
|
+
* Constructs a new NotificationActivitySettingAction.
|
|
41025
|
+
* @param [properties] Properties to set
|
|
41026
|
+
*/
|
|
41027
|
+
constructor(properties?: waproto.SyncActionValue.INotificationActivitySettingAction);
|
|
41028
|
+
|
|
41029
|
+
/** NotificationActivitySettingAction notificationActivitySetting. */
|
|
41030
|
+
public notificationActivitySetting?: (waproto.SyncActionValue.NotificationActivitySettingAction.NotificationActivitySetting|null);
|
|
41031
|
+
|
|
41032
|
+
/**
|
|
41033
|
+
* Creates a new NotificationActivitySettingAction instance using the specified properties.
|
|
41034
|
+
* @param [properties] Properties to set
|
|
41035
|
+
* @returns NotificationActivitySettingAction instance
|
|
41036
|
+
*/
|
|
41037
|
+
public static create(properties?: waproto.SyncActionValue.INotificationActivitySettingAction): waproto.SyncActionValue.NotificationActivitySettingAction;
|
|
41038
|
+
|
|
41039
|
+
/**
|
|
41040
|
+
* Encodes the specified NotificationActivitySettingAction message. Does not implicitly {@link waproto.SyncActionValue.NotificationActivitySettingAction.verify|verify} messages.
|
|
41041
|
+
* @param message NotificationActivitySettingAction message or plain object to encode
|
|
41042
|
+
* @param [writer] Writer to encode to
|
|
41043
|
+
* @returns Writer
|
|
41044
|
+
*/
|
|
41045
|
+
public static encode(message: waproto.SyncActionValue.INotificationActivitySettingAction, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
41046
|
+
|
|
41047
|
+
/**
|
|
41048
|
+
* Encodes the specified NotificationActivitySettingAction message, length delimited. Does not implicitly {@link waproto.SyncActionValue.NotificationActivitySettingAction.verify|verify} messages.
|
|
41049
|
+
* @param message NotificationActivitySettingAction message or plain object to encode
|
|
41050
|
+
* @param [writer] Writer to encode to
|
|
41051
|
+
* @returns Writer
|
|
41052
|
+
*/
|
|
41053
|
+
public static encodeDelimited(message: waproto.SyncActionValue.INotificationActivitySettingAction, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
41054
|
+
|
|
41055
|
+
/**
|
|
41056
|
+
* Decodes a NotificationActivitySettingAction message from the specified reader or buffer.
|
|
41057
|
+
* @param reader Reader or buffer to decode from
|
|
41058
|
+
* @param [length] Message length if known beforehand
|
|
41059
|
+
* @returns NotificationActivitySettingAction
|
|
41060
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
41061
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
41062
|
+
*/
|
|
41063
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): waproto.SyncActionValue.NotificationActivitySettingAction;
|
|
41064
|
+
|
|
41065
|
+
/**
|
|
41066
|
+
* Decodes a NotificationActivitySettingAction message from the specified reader or buffer, length delimited.
|
|
41067
|
+
* @param reader Reader or buffer to decode from
|
|
41068
|
+
* @returns NotificationActivitySettingAction
|
|
41069
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
41070
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
41071
|
+
*/
|
|
41072
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): waproto.SyncActionValue.NotificationActivitySettingAction;
|
|
41073
|
+
|
|
41074
|
+
/**
|
|
41075
|
+
* Verifies a NotificationActivitySettingAction message.
|
|
41076
|
+
* @param message Plain object to verify
|
|
41077
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
41078
|
+
*/
|
|
41079
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
41080
|
+
|
|
41081
|
+
/**
|
|
41082
|
+
* Creates a NotificationActivitySettingAction message from a plain object. Also converts values to their respective internal types.
|
|
41083
|
+
* @param object Plain object
|
|
41084
|
+
* @returns NotificationActivitySettingAction
|
|
41085
|
+
*/
|
|
41086
|
+
public static fromObject(object: { [k: string]: any }): waproto.SyncActionValue.NotificationActivitySettingAction;
|
|
41087
|
+
|
|
41088
|
+
/**
|
|
41089
|
+
* Creates a plain object from a NotificationActivitySettingAction message. Also converts values to other types if specified.
|
|
41090
|
+
* @param message NotificationActivitySettingAction
|
|
41091
|
+
* @param [options] Conversion options
|
|
41092
|
+
* @returns Plain object
|
|
41093
|
+
*/
|
|
41094
|
+
public static toObject(message: waproto.SyncActionValue.NotificationActivitySettingAction, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
41095
|
+
|
|
41096
|
+
/**
|
|
41097
|
+
* Converts this NotificationActivitySettingAction to JSON.
|
|
41098
|
+
* @returns JSON object
|
|
41099
|
+
*/
|
|
41100
|
+
public toJSON(): { [k: string]: any };
|
|
41101
|
+
|
|
41102
|
+
/**
|
|
41103
|
+
* Gets the default type url for NotificationActivitySettingAction
|
|
41104
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
41105
|
+
* @returns The default type url
|
|
41106
|
+
*/
|
|
41107
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
41108
|
+
}
|
|
41109
|
+
|
|
41110
|
+
namespace NotificationActivitySettingAction {
|
|
41111
|
+
|
|
41112
|
+
/** NotificationActivitySetting enum. */
|
|
41113
|
+
enum NotificationActivitySetting {
|
|
41114
|
+
DEFAULT_ALL_MESSAGES = 0,
|
|
41115
|
+
ALL_MESSAGES = 1,
|
|
41116
|
+
HIGHLIGHTS = 2,
|
|
41117
|
+
DEFAULT_HIGHLIGHTS = 3
|
|
41118
|
+
}
|
|
41119
|
+
}
|
|
41120
|
+
|
|
40044
41121
|
/** Properties of a NuxAction. */
|
|
40045
41122
|
interface INuxAction {
|
|
40046
41123
|
|
|
@@ -44016,6 +45093,221 @@ export namespace waproto {
|
|
|
44016
45093
|
}
|
|
44017
45094
|
}
|
|
44018
45095
|
|
|
45096
|
+
/** Properties of an UrlTrackingMap. */
|
|
45097
|
+
interface IUrlTrackingMap {
|
|
45098
|
+
|
|
45099
|
+
/** UrlTrackingMap urlTrackingMapElements */
|
|
45100
|
+
urlTrackingMapElements?: (waproto.UrlTrackingMap.IUrlTrackingMapElement[]|null);
|
|
45101
|
+
}
|
|
45102
|
+
|
|
45103
|
+
/** Represents an UrlTrackingMap. */
|
|
45104
|
+
class UrlTrackingMap implements IUrlTrackingMap {
|
|
45105
|
+
|
|
45106
|
+
/**
|
|
45107
|
+
* Constructs a new UrlTrackingMap.
|
|
45108
|
+
* @param [properties] Properties to set
|
|
45109
|
+
*/
|
|
45110
|
+
constructor(properties?: waproto.IUrlTrackingMap);
|
|
45111
|
+
|
|
45112
|
+
/** UrlTrackingMap urlTrackingMapElements. */
|
|
45113
|
+
public urlTrackingMapElements: waproto.UrlTrackingMap.IUrlTrackingMapElement[];
|
|
45114
|
+
|
|
45115
|
+
/**
|
|
45116
|
+
* Creates a new UrlTrackingMap instance using the specified properties.
|
|
45117
|
+
* @param [properties] Properties to set
|
|
45118
|
+
* @returns UrlTrackingMap instance
|
|
45119
|
+
*/
|
|
45120
|
+
public static create(properties?: waproto.IUrlTrackingMap): waproto.UrlTrackingMap;
|
|
45121
|
+
|
|
45122
|
+
/**
|
|
45123
|
+
* Encodes the specified UrlTrackingMap message. Does not implicitly {@link waproto.UrlTrackingMap.verify|verify} messages.
|
|
45124
|
+
* @param message UrlTrackingMap message or plain object to encode
|
|
45125
|
+
* @param [writer] Writer to encode to
|
|
45126
|
+
* @returns Writer
|
|
45127
|
+
*/
|
|
45128
|
+
public static encode(message: waproto.IUrlTrackingMap, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
45129
|
+
|
|
45130
|
+
/**
|
|
45131
|
+
* Encodes the specified UrlTrackingMap message, length delimited. Does not implicitly {@link waproto.UrlTrackingMap.verify|verify} messages.
|
|
45132
|
+
* @param message UrlTrackingMap message or plain object to encode
|
|
45133
|
+
* @param [writer] Writer to encode to
|
|
45134
|
+
* @returns Writer
|
|
45135
|
+
*/
|
|
45136
|
+
public static encodeDelimited(message: waproto.IUrlTrackingMap, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
45137
|
+
|
|
45138
|
+
/**
|
|
45139
|
+
* Decodes an UrlTrackingMap message from the specified reader or buffer.
|
|
45140
|
+
* @param reader Reader or buffer to decode from
|
|
45141
|
+
* @param [length] Message length if known beforehand
|
|
45142
|
+
* @returns UrlTrackingMap
|
|
45143
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
45144
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
45145
|
+
*/
|
|
45146
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): waproto.UrlTrackingMap;
|
|
45147
|
+
|
|
45148
|
+
/**
|
|
45149
|
+
* Decodes an UrlTrackingMap message from the specified reader or buffer, length delimited.
|
|
45150
|
+
* @param reader Reader or buffer to decode from
|
|
45151
|
+
* @returns UrlTrackingMap
|
|
45152
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
45153
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
45154
|
+
*/
|
|
45155
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): waproto.UrlTrackingMap;
|
|
45156
|
+
|
|
45157
|
+
/**
|
|
45158
|
+
* Verifies an UrlTrackingMap message.
|
|
45159
|
+
* @param message Plain object to verify
|
|
45160
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
45161
|
+
*/
|
|
45162
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
45163
|
+
|
|
45164
|
+
/**
|
|
45165
|
+
* Creates an UrlTrackingMap message from a plain object. Also converts values to their respective internal types.
|
|
45166
|
+
* @param object Plain object
|
|
45167
|
+
* @returns UrlTrackingMap
|
|
45168
|
+
*/
|
|
45169
|
+
public static fromObject(object: { [k: string]: any }): waproto.UrlTrackingMap;
|
|
45170
|
+
|
|
45171
|
+
/**
|
|
45172
|
+
* Creates a plain object from an UrlTrackingMap message. Also converts values to other types if specified.
|
|
45173
|
+
* @param message UrlTrackingMap
|
|
45174
|
+
* @param [options] Conversion options
|
|
45175
|
+
* @returns Plain object
|
|
45176
|
+
*/
|
|
45177
|
+
public static toObject(message: waproto.UrlTrackingMap, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
45178
|
+
|
|
45179
|
+
/**
|
|
45180
|
+
* Converts this UrlTrackingMap to JSON.
|
|
45181
|
+
* @returns JSON object
|
|
45182
|
+
*/
|
|
45183
|
+
public toJSON(): { [k: string]: any };
|
|
45184
|
+
|
|
45185
|
+
/**
|
|
45186
|
+
* Gets the default type url for UrlTrackingMap
|
|
45187
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
45188
|
+
* @returns The default type url
|
|
45189
|
+
*/
|
|
45190
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
45191
|
+
}
|
|
45192
|
+
|
|
45193
|
+
namespace UrlTrackingMap {
|
|
45194
|
+
|
|
45195
|
+
/** Properties of an UrlTrackingMapElement. */
|
|
45196
|
+
interface IUrlTrackingMapElement {
|
|
45197
|
+
|
|
45198
|
+
/** UrlTrackingMapElement originalUrl */
|
|
45199
|
+
originalUrl?: (string|null);
|
|
45200
|
+
|
|
45201
|
+
/** UrlTrackingMapElement unconsentedUsersUrl */
|
|
45202
|
+
unconsentedUsersUrl?: (string|null);
|
|
45203
|
+
|
|
45204
|
+
/** UrlTrackingMapElement consentedUsersUrl */
|
|
45205
|
+
consentedUsersUrl?: (string|null);
|
|
45206
|
+
|
|
45207
|
+
/** UrlTrackingMapElement cardIndex */
|
|
45208
|
+
cardIndex?: (number|null);
|
|
45209
|
+
}
|
|
45210
|
+
|
|
45211
|
+
/** Represents an UrlTrackingMapElement. */
|
|
45212
|
+
class UrlTrackingMapElement implements IUrlTrackingMapElement {
|
|
45213
|
+
|
|
45214
|
+
/**
|
|
45215
|
+
* Constructs a new UrlTrackingMapElement.
|
|
45216
|
+
* @param [properties] Properties to set
|
|
45217
|
+
*/
|
|
45218
|
+
constructor(properties?: waproto.UrlTrackingMap.IUrlTrackingMapElement);
|
|
45219
|
+
|
|
45220
|
+
/** UrlTrackingMapElement originalUrl. */
|
|
45221
|
+
public originalUrl?: (string|null);
|
|
45222
|
+
|
|
45223
|
+
/** UrlTrackingMapElement unconsentedUsersUrl. */
|
|
45224
|
+
public unconsentedUsersUrl?: (string|null);
|
|
45225
|
+
|
|
45226
|
+
/** UrlTrackingMapElement consentedUsersUrl. */
|
|
45227
|
+
public consentedUsersUrl?: (string|null);
|
|
45228
|
+
|
|
45229
|
+
/** UrlTrackingMapElement cardIndex. */
|
|
45230
|
+
public cardIndex?: (number|null);
|
|
45231
|
+
|
|
45232
|
+
/**
|
|
45233
|
+
* Creates a new UrlTrackingMapElement instance using the specified properties.
|
|
45234
|
+
* @param [properties] Properties to set
|
|
45235
|
+
* @returns UrlTrackingMapElement instance
|
|
45236
|
+
*/
|
|
45237
|
+
public static create(properties?: waproto.UrlTrackingMap.IUrlTrackingMapElement): waproto.UrlTrackingMap.UrlTrackingMapElement;
|
|
45238
|
+
|
|
45239
|
+
/**
|
|
45240
|
+
* Encodes the specified UrlTrackingMapElement message. Does not implicitly {@link waproto.UrlTrackingMap.UrlTrackingMapElement.verify|verify} messages.
|
|
45241
|
+
* @param message UrlTrackingMapElement message or plain object to encode
|
|
45242
|
+
* @param [writer] Writer to encode to
|
|
45243
|
+
* @returns Writer
|
|
45244
|
+
*/
|
|
45245
|
+
public static encode(message: waproto.UrlTrackingMap.IUrlTrackingMapElement, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
45246
|
+
|
|
45247
|
+
/**
|
|
45248
|
+
* Encodes the specified UrlTrackingMapElement message, length delimited. Does not implicitly {@link waproto.UrlTrackingMap.UrlTrackingMapElement.verify|verify} messages.
|
|
45249
|
+
* @param message UrlTrackingMapElement message or plain object to encode
|
|
45250
|
+
* @param [writer] Writer to encode to
|
|
45251
|
+
* @returns Writer
|
|
45252
|
+
*/
|
|
45253
|
+
public static encodeDelimited(message: waproto.UrlTrackingMap.IUrlTrackingMapElement, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
45254
|
+
|
|
45255
|
+
/**
|
|
45256
|
+
* Decodes an UrlTrackingMapElement message from the specified reader or buffer.
|
|
45257
|
+
* @param reader Reader or buffer to decode from
|
|
45258
|
+
* @param [length] Message length if known beforehand
|
|
45259
|
+
* @returns UrlTrackingMapElement
|
|
45260
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
45261
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
45262
|
+
*/
|
|
45263
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): waproto.UrlTrackingMap.UrlTrackingMapElement;
|
|
45264
|
+
|
|
45265
|
+
/**
|
|
45266
|
+
* Decodes an UrlTrackingMapElement message from the specified reader or buffer, length delimited.
|
|
45267
|
+
* @param reader Reader or buffer to decode from
|
|
45268
|
+
* @returns UrlTrackingMapElement
|
|
45269
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
45270
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
45271
|
+
*/
|
|
45272
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): waproto.UrlTrackingMap.UrlTrackingMapElement;
|
|
45273
|
+
|
|
45274
|
+
/**
|
|
45275
|
+
* Verifies an UrlTrackingMapElement message.
|
|
45276
|
+
* @param message Plain object to verify
|
|
45277
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
45278
|
+
*/
|
|
45279
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
45280
|
+
|
|
45281
|
+
/**
|
|
45282
|
+
* Creates an UrlTrackingMapElement message from a plain object. Also converts values to their respective internal types.
|
|
45283
|
+
* @param object Plain object
|
|
45284
|
+
* @returns UrlTrackingMapElement
|
|
45285
|
+
*/
|
|
45286
|
+
public static fromObject(object: { [k: string]: any }): waproto.UrlTrackingMap.UrlTrackingMapElement;
|
|
45287
|
+
|
|
45288
|
+
/**
|
|
45289
|
+
* Creates a plain object from an UrlTrackingMapElement message. Also converts values to other types if specified.
|
|
45290
|
+
* @param message UrlTrackingMapElement
|
|
45291
|
+
* @param [options] Conversion options
|
|
45292
|
+
* @returns Plain object
|
|
45293
|
+
*/
|
|
45294
|
+
public static toObject(message: waproto.UrlTrackingMap.UrlTrackingMapElement, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
45295
|
+
|
|
45296
|
+
/**
|
|
45297
|
+
* Converts this UrlTrackingMapElement to JSON.
|
|
45298
|
+
* @returns JSON object
|
|
45299
|
+
*/
|
|
45300
|
+
public toJSON(): { [k: string]: any };
|
|
45301
|
+
|
|
45302
|
+
/**
|
|
45303
|
+
* Gets the default type url for UrlTrackingMapElement
|
|
45304
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
45305
|
+
* @returns The default type url
|
|
45306
|
+
*/
|
|
45307
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
45308
|
+
}
|
|
45309
|
+
}
|
|
45310
|
+
|
|
44019
45311
|
/** Properties of a UserPassword. */
|
|
44020
45312
|
interface IUserPassword {
|
|
44021
45313
|
|
|
@@ -45373,6 +46665,9 @@ export namespace waproto {
|
|
|
45373
46665
|
|
|
45374
46666
|
/** WebMessageInfo isSupportAiMessage */
|
|
45375
46667
|
isSupportAiMessage?: (boolean|null);
|
|
46668
|
+
|
|
46669
|
+
/** WebMessageInfo statusMentionSources */
|
|
46670
|
+
statusMentionSources?: (string[]|null);
|
|
45376
46671
|
}
|
|
45377
46672
|
|
|
45378
46673
|
/** Represents a WebMessageInfo. */
|
|
@@ -45561,6 +46856,9 @@ export namespace waproto {
|
|
|
45561
46856
|
/** WebMessageInfo isSupportAiMessage. */
|
|
45562
46857
|
public isSupportAiMessage?: (boolean|null);
|
|
45563
46858
|
|
|
46859
|
+
/** WebMessageInfo statusMentionSources. */
|
|
46860
|
+
public statusMentionSources: string[];
|
|
46861
|
+
|
|
45564
46862
|
/**
|
|
45565
46863
|
* Creates a new WebMessageInfo instance using the specified properties.
|
|
45566
46864
|
* @param [properties] Properties to set
|