mezon-js-protobuf 1.6.30 → 1.6.31
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.
|
@@ -2809,20 +2809,24 @@ export interface OnboardingItem {
|
|
|
2809
2809
|
title: string;
|
|
2810
2810
|
/** content */
|
|
2811
2811
|
content: string;
|
|
2812
|
+
/** image */
|
|
2813
|
+
image_url: string;
|
|
2812
2814
|
/** answers */
|
|
2813
|
-
answers:
|
|
2815
|
+
answers: OnboardingAnswer[];
|
|
2814
2816
|
/** The UNIX time (for gRPC clients) or ISO string (for REST clients) when the message was created. */
|
|
2815
2817
|
create_time: Date | undefined;
|
|
2816
2818
|
/** The UNIX time (for gRPC clients) or ISO string (for REST clients) when the message was last updated. */
|
|
2817
2819
|
update_time: Date | undefined;
|
|
2818
2820
|
}
|
|
2819
|
-
export interface
|
|
2821
|
+
export interface OnboardingAnswer {
|
|
2820
2822
|
/** title */
|
|
2821
2823
|
title: string;
|
|
2822
2824
|
/** description */
|
|
2823
2825
|
description: string;
|
|
2824
|
-
/**
|
|
2825
|
-
|
|
2826
|
+
/** emoji */
|
|
2827
|
+
emoji: string;
|
|
2828
|
+
/** image */
|
|
2829
|
+
image_url: string;
|
|
2826
2830
|
}
|
|
2827
2831
|
export interface OnboardingContent {
|
|
2828
2832
|
/** guide type */
|
|
@@ -2835,8 +2839,10 @@ export interface OnboardingContent {
|
|
|
2835
2839
|
title: string;
|
|
2836
2840
|
/** content */
|
|
2837
2841
|
content: string;
|
|
2842
|
+
/** image */
|
|
2843
|
+
image_url: string;
|
|
2838
2844
|
/** answers */
|
|
2839
|
-
answers:
|
|
2845
|
+
answers: OnboardingAnswer[];
|
|
2840
2846
|
}
|
|
2841
2847
|
export interface CreateOnboardingRequest {
|
|
2842
2848
|
/** clan id */
|
|
@@ -2857,8 +2863,10 @@ export interface UpdateOnboardingRequest {
|
|
|
2857
2863
|
title: string;
|
|
2858
2864
|
/** content */
|
|
2859
2865
|
content: string;
|
|
2866
|
+
/** image */
|
|
2867
|
+
image_url: string;
|
|
2860
2868
|
/** answers */
|
|
2861
|
-
answers:
|
|
2869
|
+
answers: OnboardingAnswer[];
|
|
2862
2870
|
}
|
|
2863
2871
|
export interface OnboardingRequest {
|
|
2864
2872
|
/** id */
|
|
@@ -2944,6 +2952,15 @@ export interface ClanWebhookHandlerRequest {
|
|
|
2944
2952
|
/** username. */
|
|
2945
2953
|
username: string;
|
|
2946
2954
|
}
|
|
2955
|
+
export interface UserStatus {
|
|
2956
|
+
user_id: string;
|
|
2957
|
+
status: string;
|
|
2958
|
+
}
|
|
2959
|
+
export interface UserStatusUpdate {
|
|
2960
|
+
status: string;
|
|
2961
|
+
minutes: number;
|
|
2962
|
+
until_turn_on: boolean;
|
|
2963
|
+
}
|
|
2947
2964
|
export interface OnboardingSteps {
|
|
2948
2965
|
/** id. */
|
|
2949
2966
|
id: string;
|
|
@@ -19330,10 +19347,12 @@ export declare const ListOnboardingResponse: {
|
|
|
19330
19347
|
channel_id?: string | undefined;
|
|
19331
19348
|
title?: string | undefined;
|
|
19332
19349
|
content?: string | undefined;
|
|
19350
|
+
image_url?: string | undefined;
|
|
19333
19351
|
answers?: {
|
|
19334
19352
|
title?: string | undefined;
|
|
19335
19353
|
description?: string | undefined;
|
|
19336
|
-
|
|
19354
|
+
emoji?: string | undefined;
|
|
19355
|
+
image_url?: string | undefined;
|
|
19337
19356
|
}[] | undefined;
|
|
19338
19357
|
create_time?: Date | undefined;
|
|
19339
19358
|
update_time?: Date | undefined;
|
|
@@ -19347,10 +19366,12 @@ export declare const ListOnboardingResponse: {
|
|
|
19347
19366
|
channel_id?: string | undefined;
|
|
19348
19367
|
title?: string | undefined;
|
|
19349
19368
|
content?: string | undefined;
|
|
19369
|
+
image_url?: string | undefined;
|
|
19350
19370
|
answers?: {
|
|
19351
19371
|
title?: string | undefined;
|
|
19352
19372
|
description?: string | undefined;
|
|
19353
|
-
|
|
19373
|
+
emoji?: string | undefined;
|
|
19374
|
+
image_url?: string | undefined;
|
|
19354
19375
|
}[] | undefined;
|
|
19355
19376
|
create_time?: Date | undefined;
|
|
19356
19377
|
update_time?: Date | undefined;
|
|
@@ -19362,10 +19383,12 @@ export declare const ListOnboardingResponse: {
|
|
|
19362
19383
|
channel_id?: string | undefined;
|
|
19363
19384
|
title?: string | undefined;
|
|
19364
19385
|
content?: string | undefined;
|
|
19386
|
+
image_url?: string | undefined;
|
|
19365
19387
|
answers?: {
|
|
19366
19388
|
title?: string | undefined;
|
|
19367
19389
|
description?: string | undefined;
|
|
19368
|
-
|
|
19390
|
+
emoji?: string | undefined;
|
|
19391
|
+
image_url?: string | undefined;
|
|
19369
19392
|
}[] | undefined;
|
|
19370
19393
|
create_time?: Date | undefined;
|
|
19371
19394
|
update_time?: Date | undefined;
|
|
@@ -19377,22 +19400,27 @@ export declare const ListOnboardingResponse: {
|
|
|
19377
19400
|
channel_id?: string | undefined;
|
|
19378
19401
|
title?: string | undefined;
|
|
19379
19402
|
content?: string | undefined;
|
|
19403
|
+
image_url?: string | undefined;
|
|
19380
19404
|
answers?: ({
|
|
19381
19405
|
title?: string | undefined;
|
|
19382
19406
|
description?: string | undefined;
|
|
19383
|
-
|
|
19407
|
+
emoji?: string | undefined;
|
|
19408
|
+
image_url?: string | undefined;
|
|
19384
19409
|
}[] & ({
|
|
19385
19410
|
title?: string | undefined;
|
|
19386
19411
|
description?: string | undefined;
|
|
19387
|
-
|
|
19412
|
+
emoji?: string | undefined;
|
|
19413
|
+
image_url?: string | undefined;
|
|
19388
19414
|
} & {
|
|
19389
19415
|
title?: string | undefined;
|
|
19390
19416
|
description?: string | undefined;
|
|
19391
|
-
|
|
19392
|
-
|
|
19417
|
+
emoji?: string | undefined;
|
|
19418
|
+
image_url?: string | undefined;
|
|
19419
|
+
} & { [K in Exclude<keyof I["list_onboarding"][number]["answers"][number], keyof OnboardingAnswer>]: never; })[] & { [K_1 in Exclude<keyof I["list_onboarding"][number]["answers"], keyof {
|
|
19393
19420
|
title?: string | undefined;
|
|
19394
19421
|
description?: string | undefined;
|
|
19395
|
-
|
|
19422
|
+
emoji?: string | undefined;
|
|
19423
|
+
image_url?: string | undefined;
|
|
19396
19424
|
}[]>]: never; }) | undefined;
|
|
19397
19425
|
create_time?: Date | undefined;
|
|
19398
19426
|
update_time?: Date | undefined;
|
|
@@ -19404,10 +19432,12 @@ export declare const ListOnboardingResponse: {
|
|
|
19404
19432
|
channel_id?: string | undefined;
|
|
19405
19433
|
title?: string | undefined;
|
|
19406
19434
|
content?: string | undefined;
|
|
19435
|
+
image_url?: string | undefined;
|
|
19407
19436
|
answers?: {
|
|
19408
19437
|
title?: string | undefined;
|
|
19409
19438
|
description?: string | undefined;
|
|
19410
|
-
|
|
19439
|
+
emoji?: string | undefined;
|
|
19440
|
+
image_url?: string | undefined;
|
|
19411
19441
|
}[] | undefined;
|
|
19412
19442
|
create_time?: Date | undefined;
|
|
19413
19443
|
update_time?: Date | undefined;
|
|
@@ -19422,10 +19452,12 @@ export declare const ListOnboardingResponse: {
|
|
|
19422
19452
|
channel_id?: string | undefined;
|
|
19423
19453
|
title?: string | undefined;
|
|
19424
19454
|
content?: string | undefined;
|
|
19455
|
+
image_url?: string | undefined;
|
|
19425
19456
|
answers?: {
|
|
19426
19457
|
title?: string | undefined;
|
|
19427
19458
|
description?: string | undefined;
|
|
19428
|
-
|
|
19459
|
+
emoji?: string | undefined;
|
|
19460
|
+
image_url?: string | undefined;
|
|
19429
19461
|
}[] | undefined;
|
|
19430
19462
|
create_time?: Date | undefined;
|
|
19431
19463
|
update_time?: Date | undefined;
|
|
@@ -19439,10 +19471,12 @@ export declare const ListOnboardingResponse: {
|
|
|
19439
19471
|
channel_id?: string | undefined;
|
|
19440
19472
|
title?: string | undefined;
|
|
19441
19473
|
content?: string | undefined;
|
|
19474
|
+
image_url?: string | undefined;
|
|
19442
19475
|
answers?: {
|
|
19443
19476
|
title?: string | undefined;
|
|
19444
19477
|
description?: string | undefined;
|
|
19445
|
-
|
|
19478
|
+
emoji?: string | undefined;
|
|
19479
|
+
image_url?: string | undefined;
|
|
19446
19480
|
}[] | undefined;
|
|
19447
19481
|
create_time?: Date | undefined;
|
|
19448
19482
|
update_time?: Date | undefined;
|
|
@@ -19454,10 +19488,12 @@ export declare const ListOnboardingResponse: {
|
|
|
19454
19488
|
channel_id?: string | undefined;
|
|
19455
19489
|
title?: string | undefined;
|
|
19456
19490
|
content?: string | undefined;
|
|
19491
|
+
image_url?: string | undefined;
|
|
19457
19492
|
answers?: {
|
|
19458
19493
|
title?: string | undefined;
|
|
19459
19494
|
description?: string | undefined;
|
|
19460
|
-
|
|
19495
|
+
emoji?: string | undefined;
|
|
19496
|
+
image_url?: string | undefined;
|
|
19461
19497
|
}[] | undefined;
|
|
19462
19498
|
create_time?: Date | undefined;
|
|
19463
19499
|
update_time?: Date | undefined;
|
|
@@ -19469,22 +19505,27 @@ export declare const ListOnboardingResponse: {
|
|
|
19469
19505
|
channel_id?: string | undefined;
|
|
19470
19506
|
title?: string | undefined;
|
|
19471
19507
|
content?: string | undefined;
|
|
19508
|
+
image_url?: string | undefined;
|
|
19472
19509
|
answers?: ({
|
|
19473
19510
|
title?: string | undefined;
|
|
19474
19511
|
description?: string | undefined;
|
|
19475
|
-
|
|
19512
|
+
emoji?: string | undefined;
|
|
19513
|
+
image_url?: string | undefined;
|
|
19476
19514
|
}[] & ({
|
|
19477
19515
|
title?: string | undefined;
|
|
19478
19516
|
description?: string | undefined;
|
|
19479
|
-
|
|
19517
|
+
emoji?: string | undefined;
|
|
19518
|
+
image_url?: string | undefined;
|
|
19480
19519
|
} & {
|
|
19481
19520
|
title?: string | undefined;
|
|
19482
19521
|
description?: string | undefined;
|
|
19483
|
-
|
|
19484
|
-
|
|
19522
|
+
emoji?: string | undefined;
|
|
19523
|
+
image_url?: string | undefined;
|
|
19524
|
+
} & { [K_5 in Exclude<keyof I_1["list_onboarding"][number]["answers"][number], keyof OnboardingAnswer>]: never; })[] & { [K_6 in Exclude<keyof I_1["list_onboarding"][number]["answers"], keyof {
|
|
19485
19525
|
title?: string | undefined;
|
|
19486
19526
|
description?: string | undefined;
|
|
19487
|
-
|
|
19527
|
+
emoji?: string | undefined;
|
|
19528
|
+
image_url?: string | undefined;
|
|
19488
19529
|
}[]>]: never; }) | undefined;
|
|
19489
19530
|
create_time?: Date | undefined;
|
|
19490
19531
|
update_time?: Date | undefined;
|
|
@@ -19496,10 +19537,12 @@ export declare const ListOnboardingResponse: {
|
|
|
19496
19537
|
channel_id?: string | undefined;
|
|
19497
19538
|
title?: string | undefined;
|
|
19498
19539
|
content?: string | undefined;
|
|
19540
|
+
image_url?: string | undefined;
|
|
19499
19541
|
answers?: {
|
|
19500
19542
|
title?: string | undefined;
|
|
19501
19543
|
description?: string | undefined;
|
|
19502
|
-
|
|
19544
|
+
emoji?: string | undefined;
|
|
19545
|
+
image_url?: string | undefined;
|
|
19503
19546
|
}[] | undefined;
|
|
19504
19547
|
create_time?: Date | undefined;
|
|
19505
19548
|
update_time?: Date | undefined;
|
|
@@ -19519,10 +19562,12 @@ export declare const OnboardingItem: {
|
|
|
19519
19562
|
channel_id?: string | undefined;
|
|
19520
19563
|
title?: string | undefined;
|
|
19521
19564
|
content?: string | undefined;
|
|
19565
|
+
image_url?: string | undefined;
|
|
19522
19566
|
answers?: {
|
|
19523
19567
|
title?: string | undefined;
|
|
19524
19568
|
description?: string | undefined;
|
|
19525
|
-
|
|
19569
|
+
emoji?: string | undefined;
|
|
19570
|
+
image_url?: string | undefined;
|
|
19526
19571
|
}[] | undefined;
|
|
19527
19572
|
create_time?: Date | undefined;
|
|
19528
19573
|
update_time?: Date | undefined;
|
|
@@ -19534,22 +19579,27 @@ export declare const OnboardingItem: {
|
|
|
19534
19579
|
channel_id?: string | undefined;
|
|
19535
19580
|
title?: string | undefined;
|
|
19536
19581
|
content?: string | undefined;
|
|
19582
|
+
image_url?: string | undefined;
|
|
19537
19583
|
answers?: ({
|
|
19538
19584
|
title?: string | undefined;
|
|
19539
19585
|
description?: string | undefined;
|
|
19540
|
-
|
|
19586
|
+
emoji?: string | undefined;
|
|
19587
|
+
image_url?: string | undefined;
|
|
19541
19588
|
}[] & ({
|
|
19542
19589
|
title?: string | undefined;
|
|
19543
19590
|
description?: string | undefined;
|
|
19544
|
-
|
|
19591
|
+
emoji?: string | undefined;
|
|
19592
|
+
image_url?: string | undefined;
|
|
19545
19593
|
} & {
|
|
19546
19594
|
title?: string | undefined;
|
|
19547
19595
|
description?: string | undefined;
|
|
19548
|
-
|
|
19549
|
-
|
|
19596
|
+
emoji?: string | undefined;
|
|
19597
|
+
image_url?: string | undefined;
|
|
19598
|
+
} & { [K in Exclude<keyof I["answers"][number], keyof OnboardingAnswer>]: never; })[] & { [K_1 in Exclude<keyof I["answers"], keyof {
|
|
19550
19599
|
title?: string | undefined;
|
|
19551
19600
|
description?: string | undefined;
|
|
19552
|
-
|
|
19601
|
+
emoji?: string | undefined;
|
|
19602
|
+
image_url?: string | undefined;
|
|
19553
19603
|
}[]>]: never; }) | undefined;
|
|
19554
19604
|
create_time?: Date | undefined;
|
|
19555
19605
|
update_time?: Date | undefined;
|
|
@@ -19562,10 +19612,12 @@ export declare const OnboardingItem: {
|
|
|
19562
19612
|
channel_id?: string | undefined;
|
|
19563
19613
|
title?: string | undefined;
|
|
19564
19614
|
content?: string | undefined;
|
|
19615
|
+
image_url?: string | undefined;
|
|
19565
19616
|
answers?: {
|
|
19566
19617
|
title?: string | undefined;
|
|
19567
19618
|
description?: string | undefined;
|
|
19568
|
-
|
|
19619
|
+
emoji?: string | undefined;
|
|
19620
|
+
image_url?: string | undefined;
|
|
19569
19621
|
}[] | undefined;
|
|
19570
19622
|
create_time?: Date | undefined;
|
|
19571
19623
|
update_time?: Date | undefined;
|
|
@@ -19577,50 +19629,59 @@ export declare const OnboardingItem: {
|
|
|
19577
19629
|
channel_id?: string | undefined;
|
|
19578
19630
|
title?: string | undefined;
|
|
19579
19631
|
content?: string | undefined;
|
|
19632
|
+
image_url?: string | undefined;
|
|
19580
19633
|
answers?: ({
|
|
19581
19634
|
title?: string | undefined;
|
|
19582
19635
|
description?: string | undefined;
|
|
19583
|
-
|
|
19636
|
+
emoji?: string | undefined;
|
|
19637
|
+
image_url?: string | undefined;
|
|
19584
19638
|
}[] & ({
|
|
19585
19639
|
title?: string | undefined;
|
|
19586
19640
|
description?: string | undefined;
|
|
19587
|
-
|
|
19641
|
+
emoji?: string | undefined;
|
|
19642
|
+
image_url?: string | undefined;
|
|
19588
19643
|
} & {
|
|
19589
19644
|
title?: string | undefined;
|
|
19590
19645
|
description?: string | undefined;
|
|
19591
|
-
|
|
19592
|
-
|
|
19646
|
+
emoji?: string | undefined;
|
|
19647
|
+
image_url?: string | undefined;
|
|
19648
|
+
} & { [K_3 in Exclude<keyof I_1["answers"][number], keyof OnboardingAnswer>]: never; })[] & { [K_4 in Exclude<keyof I_1["answers"], keyof {
|
|
19593
19649
|
title?: string | undefined;
|
|
19594
19650
|
description?: string | undefined;
|
|
19595
|
-
|
|
19651
|
+
emoji?: string | undefined;
|
|
19652
|
+
image_url?: string | undefined;
|
|
19596
19653
|
}[]>]: never; }) | undefined;
|
|
19597
19654
|
create_time?: Date | undefined;
|
|
19598
19655
|
update_time?: Date | undefined;
|
|
19599
19656
|
} & { [K_5 in Exclude<keyof I_1, keyof OnboardingItem>]: never; }>(object: I_1): OnboardingItem;
|
|
19600
19657
|
};
|
|
19601
|
-
export declare const
|
|
19602
|
-
encode(message:
|
|
19603
|
-
decode(input: _m0.Reader | Uint8Array, length?: number):
|
|
19604
|
-
fromJSON(object: any):
|
|
19605
|
-
toJSON(message:
|
|
19658
|
+
export declare const OnboardingAnswer: {
|
|
19659
|
+
encode(message: OnboardingAnswer, writer?: _m0.Writer): _m0.Writer;
|
|
19660
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): OnboardingAnswer;
|
|
19661
|
+
fromJSON(object: any): OnboardingAnswer;
|
|
19662
|
+
toJSON(message: OnboardingAnswer): unknown;
|
|
19606
19663
|
create<I extends {
|
|
19607
19664
|
title?: string | undefined;
|
|
19608
19665
|
description?: string | undefined;
|
|
19609
|
-
|
|
19666
|
+
emoji?: string | undefined;
|
|
19667
|
+
image_url?: string | undefined;
|
|
19610
19668
|
} & {
|
|
19611
19669
|
title?: string | undefined;
|
|
19612
19670
|
description?: string | undefined;
|
|
19613
|
-
|
|
19614
|
-
|
|
19671
|
+
emoji?: string | undefined;
|
|
19672
|
+
image_url?: string | undefined;
|
|
19673
|
+
} & { [K in Exclude<keyof I, keyof OnboardingAnswer>]: never; }>(base?: I | undefined): OnboardingAnswer;
|
|
19615
19674
|
fromPartial<I_1 extends {
|
|
19616
19675
|
title?: string | undefined;
|
|
19617
19676
|
description?: string | undefined;
|
|
19618
|
-
|
|
19677
|
+
emoji?: string | undefined;
|
|
19678
|
+
image_url?: string | undefined;
|
|
19619
19679
|
} & {
|
|
19620
19680
|
title?: string | undefined;
|
|
19621
19681
|
description?: string | undefined;
|
|
19622
|
-
|
|
19623
|
-
|
|
19682
|
+
emoji?: string | undefined;
|
|
19683
|
+
image_url?: string | undefined;
|
|
19684
|
+
} & { [K_1 in Exclude<keyof I_1, keyof OnboardingAnswer>]: never; }>(object: I_1): OnboardingAnswer;
|
|
19624
19685
|
};
|
|
19625
19686
|
export declare const OnboardingContent: {
|
|
19626
19687
|
encode(message: OnboardingContent, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -19633,10 +19694,12 @@ export declare const OnboardingContent: {
|
|
|
19633
19694
|
channel_id?: string | undefined;
|
|
19634
19695
|
title?: string | undefined;
|
|
19635
19696
|
content?: string | undefined;
|
|
19697
|
+
image_url?: string | undefined;
|
|
19636
19698
|
answers?: {
|
|
19637
19699
|
title?: string | undefined;
|
|
19638
19700
|
description?: string | undefined;
|
|
19639
|
-
|
|
19701
|
+
emoji?: string | undefined;
|
|
19702
|
+
image_url?: string | undefined;
|
|
19640
19703
|
}[] | undefined;
|
|
19641
19704
|
} & {
|
|
19642
19705
|
guide_type?: number | undefined;
|
|
@@ -19644,22 +19707,27 @@ export declare const OnboardingContent: {
|
|
|
19644
19707
|
channel_id?: string | undefined;
|
|
19645
19708
|
title?: string | undefined;
|
|
19646
19709
|
content?: string | undefined;
|
|
19710
|
+
image_url?: string | undefined;
|
|
19647
19711
|
answers?: ({
|
|
19648
19712
|
title?: string | undefined;
|
|
19649
19713
|
description?: string | undefined;
|
|
19650
|
-
|
|
19714
|
+
emoji?: string | undefined;
|
|
19715
|
+
image_url?: string | undefined;
|
|
19651
19716
|
}[] & ({
|
|
19652
19717
|
title?: string | undefined;
|
|
19653
19718
|
description?: string | undefined;
|
|
19654
|
-
|
|
19719
|
+
emoji?: string | undefined;
|
|
19720
|
+
image_url?: string | undefined;
|
|
19655
19721
|
} & {
|
|
19656
19722
|
title?: string | undefined;
|
|
19657
19723
|
description?: string | undefined;
|
|
19658
|
-
|
|
19659
|
-
|
|
19724
|
+
emoji?: string | undefined;
|
|
19725
|
+
image_url?: string | undefined;
|
|
19726
|
+
} & { [K in Exclude<keyof I["answers"][number], keyof OnboardingAnswer>]: never; })[] & { [K_1 in Exclude<keyof I["answers"], keyof {
|
|
19660
19727
|
title?: string | undefined;
|
|
19661
19728
|
description?: string | undefined;
|
|
19662
|
-
|
|
19729
|
+
emoji?: string | undefined;
|
|
19730
|
+
image_url?: string | undefined;
|
|
19663
19731
|
}[]>]: never; }) | undefined;
|
|
19664
19732
|
} & { [K_2 in Exclude<keyof I, keyof OnboardingContent>]: never; }>(base?: I | undefined): OnboardingContent;
|
|
19665
19733
|
fromPartial<I_1 extends {
|
|
@@ -19668,10 +19736,12 @@ export declare const OnboardingContent: {
|
|
|
19668
19736
|
channel_id?: string | undefined;
|
|
19669
19737
|
title?: string | undefined;
|
|
19670
19738
|
content?: string | undefined;
|
|
19739
|
+
image_url?: string | undefined;
|
|
19671
19740
|
answers?: {
|
|
19672
19741
|
title?: string | undefined;
|
|
19673
19742
|
description?: string | undefined;
|
|
19674
|
-
|
|
19743
|
+
emoji?: string | undefined;
|
|
19744
|
+
image_url?: string | undefined;
|
|
19675
19745
|
}[] | undefined;
|
|
19676
19746
|
} & {
|
|
19677
19747
|
guide_type?: number | undefined;
|
|
@@ -19679,22 +19749,27 @@ export declare const OnboardingContent: {
|
|
|
19679
19749
|
channel_id?: string | undefined;
|
|
19680
19750
|
title?: string | undefined;
|
|
19681
19751
|
content?: string | undefined;
|
|
19752
|
+
image_url?: string | undefined;
|
|
19682
19753
|
answers?: ({
|
|
19683
19754
|
title?: string | undefined;
|
|
19684
19755
|
description?: string | undefined;
|
|
19685
|
-
|
|
19756
|
+
emoji?: string | undefined;
|
|
19757
|
+
image_url?: string | undefined;
|
|
19686
19758
|
}[] & ({
|
|
19687
19759
|
title?: string | undefined;
|
|
19688
19760
|
description?: string | undefined;
|
|
19689
|
-
|
|
19761
|
+
emoji?: string | undefined;
|
|
19762
|
+
image_url?: string | undefined;
|
|
19690
19763
|
} & {
|
|
19691
19764
|
title?: string | undefined;
|
|
19692
19765
|
description?: string | undefined;
|
|
19693
|
-
|
|
19694
|
-
|
|
19766
|
+
emoji?: string | undefined;
|
|
19767
|
+
image_url?: string | undefined;
|
|
19768
|
+
} & { [K_3 in Exclude<keyof I_1["answers"][number], keyof OnboardingAnswer>]: never; })[] & { [K_4 in Exclude<keyof I_1["answers"], keyof {
|
|
19695
19769
|
title?: string | undefined;
|
|
19696
19770
|
description?: string | undefined;
|
|
19697
|
-
|
|
19771
|
+
emoji?: string | undefined;
|
|
19772
|
+
image_url?: string | undefined;
|
|
19698
19773
|
}[]>]: never; }) | undefined;
|
|
19699
19774
|
} & { [K_5 in Exclude<keyof I_1, keyof OnboardingContent>]: never; }>(object: I_1): OnboardingContent;
|
|
19700
19775
|
};
|
|
@@ -19711,10 +19786,12 @@ export declare const CreateOnboardingRequest: {
|
|
|
19711
19786
|
channel_id?: string | undefined;
|
|
19712
19787
|
title?: string | undefined;
|
|
19713
19788
|
content?: string | undefined;
|
|
19789
|
+
image_url?: string | undefined;
|
|
19714
19790
|
answers?: {
|
|
19715
19791
|
title?: string | undefined;
|
|
19716
19792
|
description?: string | undefined;
|
|
19717
|
-
|
|
19793
|
+
emoji?: string | undefined;
|
|
19794
|
+
image_url?: string | undefined;
|
|
19718
19795
|
}[] | undefined;
|
|
19719
19796
|
}[] | undefined;
|
|
19720
19797
|
} & {
|
|
@@ -19725,10 +19802,12 @@ export declare const CreateOnboardingRequest: {
|
|
|
19725
19802
|
channel_id?: string | undefined;
|
|
19726
19803
|
title?: string | undefined;
|
|
19727
19804
|
content?: string | undefined;
|
|
19805
|
+
image_url?: string | undefined;
|
|
19728
19806
|
answers?: {
|
|
19729
19807
|
title?: string | undefined;
|
|
19730
19808
|
description?: string | undefined;
|
|
19731
|
-
|
|
19809
|
+
emoji?: string | undefined;
|
|
19810
|
+
image_url?: string | undefined;
|
|
19732
19811
|
}[] | undefined;
|
|
19733
19812
|
}[] & ({
|
|
19734
19813
|
guide_type?: number | undefined;
|
|
@@ -19736,10 +19815,12 @@ export declare const CreateOnboardingRequest: {
|
|
|
19736
19815
|
channel_id?: string | undefined;
|
|
19737
19816
|
title?: string | undefined;
|
|
19738
19817
|
content?: string | undefined;
|
|
19818
|
+
image_url?: string | undefined;
|
|
19739
19819
|
answers?: {
|
|
19740
19820
|
title?: string | undefined;
|
|
19741
19821
|
description?: string | undefined;
|
|
19742
|
-
|
|
19822
|
+
emoji?: string | undefined;
|
|
19823
|
+
image_url?: string | undefined;
|
|
19743
19824
|
}[] | undefined;
|
|
19744
19825
|
} & {
|
|
19745
19826
|
guide_type?: number | undefined;
|
|
@@ -19747,22 +19828,27 @@ export declare const CreateOnboardingRequest: {
|
|
|
19747
19828
|
channel_id?: string | undefined;
|
|
19748
19829
|
title?: string | undefined;
|
|
19749
19830
|
content?: string | undefined;
|
|
19831
|
+
image_url?: string | undefined;
|
|
19750
19832
|
answers?: ({
|
|
19751
19833
|
title?: string | undefined;
|
|
19752
19834
|
description?: string | undefined;
|
|
19753
|
-
|
|
19835
|
+
emoji?: string | undefined;
|
|
19836
|
+
image_url?: string | undefined;
|
|
19754
19837
|
}[] & ({
|
|
19755
19838
|
title?: string | undefined;
|
|
19756
19839
|
description?: string | undefined;
|
|
19757
|
-
|
|
19840
|
+
emoji?: string | undefined;
|
|
19841
|
+
image_url?: string | undefined;
|
|
19758
19842
|
} & {
|
|
19759
19843
|
title?: string | undefined;
|
|
19760
19844
|
description?: string | undefined;
|
|
19761
|
-
|
|
19762
|
-
|
|
19845
|
+
emoji?: string | undefined;
|
|
19846
|
+
image_url?: string | undefined;
|
|
19847
|
+
} & { [K in Exclude<keyof I["contents"][number]["answers"][number], keyof OnboardingAnswer>]: never; })[] & { [K_1 in Exclude<keyof I["contents"][number]["answers"], keyof {
|
|
19763
19848
|
title?: string | undefined;
|
|
19764
19849
|
description?: string | undefined;
|
|
19765
|
-
|
|
19850
|
+
emoji?: string | undefined;
|
|
19851
|
+
image_url?: string | undefined;
|
|
19766
19852
|
}[]>]: never; }) | undefined;
|
|
19767
19853
|
} & { [K_2 in Exclude<keyof I["contents"][number], keyof OnboardingContent>]: never; })[] & { [K_3 in Exclude<keyof I["contents"], keyof {
|
|
19768
19854
|
guide_type?: number | undefined;
|
|
@@ -19770,10 +19856,12 @@ export declare const CreateOnboardingRequest: {
|
|
|
19770
19856
|
channel_id?: string | undefined;
|
|
19771
19857
|
title?: string | undefined;
|
|
19772
19858
|
content?: string | undefined;
|
|
19859
|
+
image_url?: string | undefined;
|
|
19773
19860
|
answers?: {
|
|
19774
19861
|
title?: string | undefined;
|
|
19775
19862
|
description?: string | undefined;
|
|
19776
|
-
|
|
19863
|
+
emoji?: string | undefined;
|
|
19864
|
+
image_url?: string | undefined;
|
|
19777
19865
|
}[] | undefined;
|
|
19778
19866
|
}[]>]: never; }) | undefined;
|
|
19779
19867
|
} & { [K_4 in Exclude<keyof I, keyof CreateOnboardingRequest>]: never; }>(base?: I | undefined): CreateOnboardingRequest;
|
|
@@ -19785,10 +19873,12 @@ export declare const CreateOnboardingRequest: {
|
|
|
19785
19873
|
channel_id?: string | undefined;
|
|
19786
19874
|
title?: string | undefined;
|
|
19787
19875
|
content?: string | undefined;
|
|
19876
|
+
image_url?: string | undefined;
|
|
19788
19877
|
answers?: {
|
|
19789
19878
|
title?: string | undefined;
|
|
19790
19879
|
description?: string | undefined;
|
|
19791
|
-
|
|
19880
|
+
emoji?: string | undefined;
|
|
19881
|
+
image_url?: string | undefined;
|
|
19792
19882
|
}[] | undefined;
|
|
19793
19883
|
}[] | undefined;
|
|
19794
19884
|
} & {
|
|
@@ -19799,10 +19889,12 @@ export declare const CreateOnboardingRequest: {
|
|
|
19799
19889
|
channel_id?: string | undefined;
|
|
19800
19890
|
title?: string | undefined;
|
|
19801
19891
|
content?: string | undefined;
|
|
19892
|
+
image_url?: string | undefined;
|
|
19802
19893
|
answers?: {
|
|
19803
19894
|
title?: string | undefined;
|
|
19804
19895
|
description?: string | undefined;
|
|
19805
|
-
|
|
19896
|
+
emoji?: string | undefined;
|
|
19897
|
+
image_url?: string | undefined;
|
|
19806
19898
|
}[] | undefined;
|
|
19807
19899
|
}[] & ({
|
|
19808
19900
|
guide_type?: number | undefined;
|
|
@@ -19810,10 +19902,12 @@ export declare const CreateOnboardingRequest: {
|
|
|
19810
19902
|
channel_id?: string | undefined;
|
|
19811
19903
|
title?: string | undefined;
|
|
19812
19904
|
content?: string | undefined;
|
|
19905
|
+
image_url?: string | undefined;
|
|
19813
19906
|
answers?: {
|
|
19814
19907
|
title?: string | undefined;
|
|
19815
19908
|
description?: string | undefined;
|
|
19816
|
-
|
|
19909
|
+
emoji?: string | undefined;
|
|
19910
|
+
image_url?: string | undefined;
|
|
19817
19911
|
}[] | undefined;
|
|
19818
19912
|
} & {
|
|
19819
19913
|
guide_type?: number | undefined;
|
|
@@ -19821,22 +19915,27 @@ export declare const CreateOnboardingRequest: {
|
|
|
19821
19915
|
channel_id?: string | undefined;
|
|
19822
19916
|
title?: string | undefined;
|
|
19823
19917
|
content?: string | undefined;
|
|
19918
|
+
image_url?: string | undefined;
|
|
19824
19919
|
answers?: ({
|
|
19825
19920
|
title?: string | undefined;
|
|
19826
19921
|
description?: string | undefined;
|
|
19827
|
-
|
|
19922
|
+
emoji?: string | undefined;
|
|
19923
|
+
image_url?: string | undefined;
|
|
19828
19924
|
}[] & ({
|
|
19829
19925
|
title?: string | undefined;
|
|
19830
19926
|
description?: string | undefined;
|
|
19831
|
-
|
|
19927
|
+
emoji?: string | undefined;
|
|
19928
|
+
image_url?: string | undefined;
|
|
19832
19929
|
} & {
|
|
19833
19930
|
title?: string | undefined;
|
|
19834
19931
|
description?: string | undefined;
|
|
19835
|
-
|
|
19836
|
-
|
|
19932
|
+
emoji?: string | undefined;
|
|
19933
|
+
image_url?: string | undefined;
|
|
19934
|
+
} & { [K_5 in Exclude<keyof I_1["contents"][number]["answers"][number], keyof OnboardingAnswer>]: never; })[] & { [K_6 in Exclude<keyof I_1["contents"][number]["answers"], keyof {
|
|
19837
19935
|
title?: string | undefined;
|
|
19838
19936
|
description?: string | undefined;
|
|
19839
|
-
|
|
19937
|
+
emoji?: string | undefined;
|
|
19938
|
+
image_url?: string | undefined;
|
|
19840
19939
|
}[]>]: never; }) | undefined;
|
|
19841
19940
|
} & { [K_7 in Exclude<keyof I_1["contents"][number], keyof OnboardingContent>]: never; })[] & { [K_8 in Exclude<keyof I_1["contents"], keyof {
|
|
19842
19941
|
guide_type?: number | undefined;
|
|
@@ -19844,10 +19943,12 @@ export declare const CreateOnboardingRequest: {
|
|
|
19844
19943
|
channel_id?: string | undefined;
|
|
19845
19944
|
title?: string | undefined;
|
|
19846
19945
|
content?: string | undefined;
|
|
19946
|
+
image_url?: string | undefined;
|
|
19847
19947
|
answers?: {
|
|
19848
19948
|
title?: string | undefined;
|
|
19849
19949
|
description?: string | undefined;
|
|
19850
|
-
|
|
19950
|
+
emoji?: string | undefined;
|
|
19951
|
+
image_url?: string | undefined;
|
|
19851
19952
|
}[] | undefined;
|
|
19852
19953
|
}[]>]: never; }) | undefined;
|
|
19853
19954
|
} & { [K_9 in Exclude<keyof I_1, keyof CreateOnboardingRequest>]: never; }>(object: I_1): CreateOnboardingRequest;
|
|
@@ -19864,10 +19965,12 @@ export declare const UpdateOnboardingRequest: {
|
|
|
19864
19965
|
channel_id?: string | undefined;
|
|
19865
19966
|
title?: string | undefined;
|
|
19866
19967
|
content?: string | undefined;
|
|
19968
|
+
image_url?: string | undefined;
|
|
19867
19969
|
answers?: {
|
|
19868
19970
|
title?: string | undefined;
|
|
19869
19971
|
description?: string | undefined;
|
|
19870
|
-
|
|
19972
|
+
emoji?: string | undefined;
|
|
19973
|
+
image_url?: string | undefined;
|
|
19871
19974
|
}[] | undefined;
|
|
19872
19975
|
} & {
|
|
19873
19976
|
id?: string | undefined;
|
|
@@ -19876,22 +19979,27 @@ export declare const UpdateOnboardingRequest: {
|
|
|
19876
19979
|
channel_id?: string | undefined;
|
|
19877
19980
|
title?: string | undefined;
|
|
19878
19981
|
content?: string | undefined;
|
|
19982
|
+
image_url?: string | undefined;
|
|
19879
19983
|
answers?: ({
|
|
19880
19984
|
title?: string | undefined;
|
|
19881
19985
|
description?: string | undefined;
|
|
19882
|
-
|
|
19986
|
+
emoji?: string | undefined;
|
|
19987
|
+
image_url?: string | undefined;
|
|
19883
19988
|
}[] & ({
|
|
19884
19989
|
title?: string | undefined;
|
|
19885
19990
|
description?: string | undefined;
|
|
19886
|
-
|
|
19991
|
+
emoji?: string | undefined;
|
|
19992
|
+
image_url?: string | undefined;
|
|
19887
19993
|
} & {
|
|
19888
19994
|
title?: string | undefined;
|
|
19889
19995
|
description?: string | undefined;
|
|
19890
|
-
|
|
19891
|
-
|
|
19996
|
+
emoji?: string | undefined;
|
|
19997
|
+
image_url?: string | undefined;
|
|
19998
|
+
} & { [K in Exclude<keyof I["answers"][number], keyof OnboardingAnswer>]: never; })[] & { [K_1 in Exclude<keyof I["answers"], keyof {
|
|
19892
19999
|
title?: string | undefined;
|
|
19893
20000
|
description?: string | undefined;
|
|
19894
|
-
|
|
20001
|
+
emoji?: string | undefined;
|
|
20002
|
+
image_url?: string | undefined;
|
|
19895
20003
|
}[]>]: never; }) | undefined;
|
|
19896
20004
|
} & { [K_2 in Exclude<keyof I, keyof UpdateOnboardingRequest>]: never; }>(base?: I | undefined): UpdateOnboardingRequest;
|
|
19897
20005
|
fromPartial<I_1 extends {
|
|
@@ -19901,10 +20009,12 @@ export declare const UpdateOnboardingRequest: {
|
|
|
19901
20009
|
channel_id?: string | undefined;
|
|
19902
20010
|
title?: string | undefined;
|
|
19903
20011
|
content?: string | undefined;
|
|
20012
|
+
image_url?: string | undefined;
|
|
19904
20013
|
answers?: {
|
|
19905
20014
|
title?: string | undefined;
|
|
19906
20015
|
description?: string | undefined;
|
|
19907
|
-
|
|
20016
|
+
emoji?: string | undefined;
|
|
20017
|
+
image_url?: string | undefined;
|
|
19908
20018
|
}[] | undefined;
|
|
19909
20019
|
} & {
|
|
19910
20020
|
id?: string | undefined;
|
|
@@ -19913,22 +20023,27 @@ export declare const UpdateOnboardingRequest: {
|
|
|
19913
20023
|
channel_id?: string | undefined;
|
|
19914
20024
|
title?: string | undefined;
|
|
19915
20025
|
content?: string | undefined;
|
|
20026
|
+
image_url?: string | undefined;
|
|
19916
20027
|
answers?: ({
|
|
19917
20028
|
title?: string | undefined;
|
|
19918
20029
|
description?: string | undefined;
|
|
19919
|
-
|
|
20030
|
+
emoji?: string | undefined;
|
|
20031
|
+
image_url?: string | undefined;
|
|
19920
20032
|
}[] & ({
|
|
19921
20033
|
title?: string | undefined;
|
|
19922
20034
|
description?: string | undefined;
|
|
19923
|
-
|
|
20035
|
+
emoji?: string | undefined;
|
|
20036
|
+
image_url?: string | undefined;
|
|
19924
20037
|
} & {
|
|
19925
20038
|
title?: string | undefined;
|
|
19926
20039
|
description?: string | undefined;
|
|
19927
|
-
|
|
19928
|
-
|
|
20040
|
+
emoji?: string | undefined;
|
|
20041
|
+
image_url?: string | undefined;
|
|
20042
|
+
} & { [K_3 in Exclude<keyof I_1["answers"][number], keyof OnboardingAnswer>]: never; })[] & { [K_4 in Exclude<keyof I_1["answers"], keyof {
|
|
19929
20043
|
title?: string | undefined;
|
|
19930
20044
|
description?: string | undefined;
|
|
19931
|
-
|
|
20045
|
+
emoji?: string | undefined;
|
|
20046
|
+
image_url?: string | undefined;
|
|
19932
20047
|
}[]>]: never; }) | undefined;
|
|
19933
20048
|
} & { [K_5 in Exclude<keyof I_1, keyof UpdateOnboardingRequest>]: never; }>(object: I_1): UpdateOnboardingRequest;
|
|
19934
20049
|
};
|
|
@@ -20452,6 +20567,50 @@ export declare const ClanWebhookHandlerRequest: {
|
|
|
20452
20567
|
username?: string | undefined;
|
|
20453
20568
|
} & { [K_7 in Exclude<keyof I_1, keyof ClanWebhookHandlerRequest>]: never; }>(object: I_1): ClanWebhookHandlerRequest;
|
|
20454
20569
|
};
|
|
20570
|
+
export declare const UserStatus: {
|
|
20571
|
+
encode(message: UserStatus, writer?: _m0.Writer): _m0.Writer;
|
|
20572
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): UserStatus;
|
|
20573
|
+
fromJSON(object: any): UserStatus;
|
|
20574
|
+
toJSON(message: UserStatus): unknown;
|
|
20575
|
+
create<I extends {
|
|
20576
|
+
user_id?: string | undefined;
|
|
20577
|
+
status?: string | undefined;
|
|
20578
|
+
} & {
|
|
20579
|
+
user_id?: string | undefined;
|
|
20580
|
+
status?: string | undefined;
|
|
20581
|
+
} & { [K in Exclude<keyof I, keyof UserStatus>]: never; }>(base?: I | undefined): UserStatus;
|
|
20582
|
+
fromPartial<I_1 extends {
|
|
20583
|
+
user_id?: string | undefined;
|
|
20584
|
+
status?: string | undefined;
|
|
20585
|
+
} & {
|
|
20586
|
+
user_id?: string | undefined;
|
|
20587
|
+
status?: string | undefined;
|
|
20588
|
+
} & { [K_1 in Exclude<keyof I_1, keyof UserStatus>]: never; }>(object: I_1): UserStatus;
|
|
20589
|
+
};
|
|
20590
|
+
export declare const UserStatusUpdate: {
|
|
20591
|
+
encode(message: UserStatusUpdate, writer?: _m0.Writer): _m0.Writer;
|
|
20592
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): UserStatusUpdate;
|
|
20593
|
+
fromJSON(object: any): UserStatusUpdate;
|
|
20594
|
+
toJSON(message: UserStatusUpdate): unknown;
|
|
20595
|
+
create<I extends {
|
|
20596
|
+
status?: string | undefined;
|
|
20597
|
+
minutes?: number | undefined;
|
|
20598
|
+
until_turn_on?: boolean | undefined;
|
|
20599
|
+
} & {
|
|
20600
|
+
status?: string | undefined;
|
|
20601
|
+
minutes?: number | undefined;
|
|
20602
|
+
until_turn_on?: boolean | undefined;
|
|
20603
|
+
} & { [K in Exclude<keyof I, keyof UserStatusUpdate>]: never; }>(base?: I | undefined): UserStatusUpdate;
|
|
20604
|
+
fromPartial<I_1 extends {
|
|
20605
|
+
status?: string | undefined;
|
|
20606
|
+
minutes?: number | undefined;
|
|
20607
|
+
until_turn_on?: boolean | undefined;
|
|
20608
|
+
} & {
|
|
20609
|
+
status?: string | undefined;
|
|
20610
|
+
minutes?: number | undefined;
|
|
20611
|
+
until_turn_on?: boolean | undefined;
|
|
20612
|
+
} & { [K_1 in Exclude<keyof I_1, keyof UserStatusUpdate>]: never; }>(object: I_1): UserStatusUpdate;
|
|
20613
|
+
};
|
|
20455
20614
|
export declare const OnboardingSteps: {
|
|
20456
20615
|
encode(message: OnboardingSteps, writer?: _m0.Writer): _m0.Writer;
|
|
20457
20616
|
decode(input: _m0.Reader | Uint8Array, length?: number): OnboardingSteps;
|