@channel.io/app-sdk-core 0.15.0 → 0.15.2

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.
Files changed (83) hide show
  1. package/dist/extensions/alftask.d.ts +7 -4
  2. package/dist/extensions/alftask.d.ts.map +1 -1
  3. package/dist/extensions/alftask.js.map +1 -1
  4. package/dist/extensions/apikey.d.ts +6 -3
  5. package/dist/extensions/apikey.d.ts.map +1 -1
  6. package/dist/extensions/apikey.js.map +1 -1
  7. package/dist/extensions/calendar.d.ts +8 -5
  8. package/dist/extensions/calendar.d.ts.map +1 -1
  9. package/dist/extensions/calendar.js.map +1 -1
  10. package/dist/extensions/command.d.ts +11 -28
  11. package/dist/extensions/command.d.ts.map +1 -1
  12. package/dist/extensions/command.js +0 -9
  13. package/dist/extensions/command.js.map +1 -1
  14. package/dist/extensions/config.d.ts +19 -17
  15. package/dist/extensions/config.d.ts.map +1 -1
  16. package/dist/extensions/config.js.map +1 -1
  17. package/dist/extensions/customtab.d.ts +7 -4
  18. package/dist/extensions/customtab.d.ts.map +1 -1
  19. package/dist/extensions/customtab.js.map +1 -1
  20. package/dist/extensions/function-schemas.d.ts +807 -523
  21. package/dist/extensions/function-schemas.d.ts.map +1 -1
  22. package/dist/extensions/hook.d.ts +5 -2
  23. package/dist/extensions/hook.d.ts.map +1 -1
  24. package/dist/extensions/hook.js.map +1 -1
  25. package/dist/extensions/index.d.ts +3 -3
  26. package/dist/extensions/index.d.ts.map +1 -1
  27. package/dist/extensions/index.js +3 -3
  28. package/dist/extensions/index.js.map +1 -1
  29. package/dist/extensions/interfaces/alftask.d.ts +2 -4
  30. package/dist/extensions/interfaces/alftask.d.ts.map +1 -1
  31. package/dist/extensions/interfaces/alftask.js.map +1 -1
  32. package/dist/extensions/interfaces/calendar.d.ts +11 -58
  33. package/dist/extensions/interfaces/calendar.d.ts.map +1 -1
  34. package/dist/extensions/interfaces/calendar.js.map +1 -1
  35. package/dist/extensions/interfaces/command.d.ts +9 -48
  36. package/dist/extensions/interfaces/command.d.ts.map +1 -1
  37. package/dist/extensions/interfaces/command.js.map +1 -1
  38. package/dist/extensions/interfaces/customtab.d.ts +3 -7
  39. package/dist/extensions/interfaces/customtab.d.ts.map +1 -1
  40. package/dist/extensions/interfaces/customtab.js.map +1 -1
  41. package/dist/extensions/interfaces/hook.d.ts +2 -1
  42. package/dist/extensions/interfaces/hook.d.ts.map +1 -1
  43. package/dist/extensions/interfaces/hook.js.map +1 -1
  44. package/dist/extensions/interfaces/order.d.ts +15 -65
  45. package/dist/extensions/interfaces/order.d.ts.map +1 -1
  46. package/dist/extensions/interfaces/order.js.map +1 -1
  47. package/dist/extensions/interfaces/polling.d.ts +2 -1
  48. package/dist/extensions/interfaces/polling.d.ts.map +1 -1
  49. package/dist/extensions/interfaces/polling.js.map +1 -1
  50. package/dist/extensions/interfaces/widget.d.ts +3 -10
  51. package/dist/extensions/interfaces/widget.d.ts.map +1 -1
  52. package/dist/extensions/interfaces/widget.js.map +1 -1
  53. package/dist/extensions/messaging.d.ts.map +1 -1
  54. package/dist/extensions/messaging.js +1 -7
  55. package/dist/extensions/messaging.js.map +1 -1
  56. package/dist/extensions/oauth.d.ts +7 -4
  57. package/dist/extensions/oauth.d.ts.map +1 -1
  58. package/dist/extensions/oauth.js.map +1 -1
  59. package/dist/extensions/order.d.ts +16 -13
  60. package/dist/extensions/order.d.ts.map +1 -1
  61. package/dist/extensions/order.js.map +1 -1
  62. package/dist/extensions/polling.d.ts +7 -4
  63. package/dist/extensions/polling.d.ts.map +1 -1
  64. package/dist/extensions/polling.js.map +1 -1
  65. package/dist/extensions/proto-contracts.d.ts +6 -3
  66. package/dist/extensions/proto-contracts.d.ts.map +1 -1
  67. package/dist/extensions/store.d.ts +598 -378
  68. package/dist/extensions/store.d.ts.map +1 -1
  69. package/dist/extensions/store.js +8 -3
  70. package/dist/extensions/store.js.map +1 -1
  71. package/dist/extensions/widget.d.ts +7 -4
  72. package/dist/extensions/widget.d.ts.map +1 -1
  73. package/dist/extensions/widget.js.map +1 -1
  74. package/dist/extensions/wms.d.ts +251 -180
  75. package/dist/extensions/wms.d.ts.map +1 -1
  76. package/dist/extensions/wms.js +3 -1
  77. package/dist/extensions/wms.js.map +1 -1
  78. package/dist/gen/channel/app/sdk/v1/common.zod.d.ts +4 -4
  79. package/dist/gen/channel/app/sdk/v1/context.zod.d.ts +6 -6
  80. package/dist/gen/channel/app/sdk/v1/extension.zod.d.ts +32 -32
  81. package/dist/gen/channel/app/sdk/v1/function.zod.d.ts +6 -6
  82. package/dist/gen/channel/app/sdk/v1/native.zod.d.ts +6 -6
  83. package/package.json +1 -1
@@ -544,6 +544,7 @@ export declare const ChannelUserChatProtoSchema: z.ZodObject<{
544
544
  name?: string | undefined;
545
545
  expiresAt?: string | undefined;
546
546
  description?: string | undefined;
547
+ profile?: Record<string, any> | undefined;
547
548
  updatedAt?: string | undefined;
548
549
  tags?: string[] | undefined;
549
550
  version?: string | undefined;
@@ -558,7 +559,6 @@ export declare const ChannelUserChatProtoSchema: z.ZodObject<{
558
559
  askedAt?: string | undefined;
559
560
  managed?: boolean | undefined;
560
561
  oneStop?: boolean | undefined;
561
- profile?: Record<string, any> | undefined;
562
562
  closedAt?: string | undefined;
563
563
  handling?: Record<string, any> | undefined;
564
564
  mediumId?: string | undefined;
@@ -605,6 +605,7 @@ export declare const ChannelUserChatProtoSchema: z.ZodObject<{
605
605
  name?: string | undefined;
606
606
  expiresAt?: string | undefined;
607
607
  description?: string | undefined;
608
+ profile?: Record<string, any> | undefined;
608
609
  updatedAt?: string | undefined;
609
610
  tags?: string[] | undefined;
610
611
  version?: string | undefined;
@@ -619,7 +620,6 @@ export declare const ChannelUserChatProtoSchema: z.ZodObject<{
619
620
  askedAt?: string | undefined;
620
621
  managed?: boolean | undefined;
621
622
  oneStop?: boolean | undefined;
622
- profile?: Record<string, any> | undefined;
623
623
  closedAt?: string | undefined;
624
624
  handling?: Record<string, any> | undefined;
625
625
  mediumId?: string | undefined;
@@ -701,6 +701,7 @@ export declare const ChannelUserProtoSchema: z.ZodObject<{
701
701
  id?: string | undefined;
702
702
  channelId?: string | undefined;
703
703
  name?: string | undefined;
704
+ profile?: Record<string, any> | undefined;
704
705
  updatedAt?: string | undefined;
705
706
  tags?: string[] | undefined;
706
707
  version?: string | undefined;
@@ -708,7 +709,6 @@ export declare const ChannelUserProtoSchema: z.ZodObject<{
708
709
  city?: string | undefined;
709
710
  province?: string | undefined;
710
711
  createdAt?: string | undefined;
711
- profile?: Record<string, any> | undefined;
712
712
  alert?: number | undefined;
713
713
  mobile?: Record<string, any> | undefined;
714
714
  unread?: number | undefined;
@@ -736,6 +736,7 @@ export declare const ChannelUserProtoSchema: z.ZodObject<{
736
736
  id?: string | undefined;
737
737
  channelId?: string | undefined;
738
738
  name?: string | undefined;
739
+ profile?: Record<string, any> | undefined;
739
740
  updatedAt?: string | undefined;
740
741
  tags?: string[] | undefined;
741
742
  version?: string | undefined;
@@ -743,7 +744,6 @@ export declare const ChannelUserProtoSchema: z.ZodObject<{
743
744
  city?: string | undefined;
744
745
  province?: string | undefined;
745
746
  createdAt?: string | undefined;
746
- profile?: Record<string, any> | undefined;
747
747
  alert?: number | undefined;
748
748
  mobile?: Record<string, any> | undefined;
749
749
  unread?: number | undefined;
@@ -58,12 +58,12 @@ export declare const UserChatProtoSchema: z.ZodObject<{
58
58
  state: z.ZodOptional<z.ZodString>;
59
59
  }, "strip", z.ZodTypeAny, {
60
60
  id?: string | undefined;
61
- state?: string | undefined;
62
61
  profile?: Record<string, any> | undefined;
62
+ state?: string | undefined;
63
63
  }, {
64
64
  id?: string | undefined;
65
- state?: string | undefined;
66
65
  profile?: Record<string, any> | undefined;
66
+ state?: string | undefined;
67
67
  }>;
68
68
  export type UserChatProto = z.infer<typeof UserChatProtoSchema>;
69
69
  export declare const FunctionContextProtoSchema: z.ZodObject<{
@@ -112,12 +112,12 @@ export declare const FunctionContextProtoSchema: z.ZodObject<{
112
112
  state: z.ZodOptional<z.ZodString>;
113
113
  }, "strip", z.ZodTypeAny, {
114
114
  id?: string | undefined;
115
- state?: string | undefined;
116
115
  profile?: Record<string, any> | undefined;
116
+ state?: string | undefined;
117
117
  }, {
118
118
  id?: string | undefined;
119
- state?: string | undefined;
120
119
  profile?: Record<string, any> | undefined;
120
+ state?: string | undefined;
121
121
  }>>>;
122
122
  authToken: z.ZodOptional<z.ZodString>;
123
123
  legacyAuthToken: z.ZodOptional<z.ZodString>;
@@ -152,8 +152,8 @@ export declare const FunctionContextProtoSchema: z.ZodObject<{
152
152
  seedState?: any;
153
153
  userChat?: {
154
154
  id?: string | undefined;
155
- state?: string | undefined;
156
155
  profile?: Record<string, any> | undefined;
156
+ state?: string | undefined;
157
157
  } | undefined;
158
158
  legacyAuthToken?: string | undefined;
159
159
  }, {
@@ -181,8 +181,8 @@ export declare const FunctionContextProtoSchema: z.ZodObject<{
181
181
  seedState?: any;
182
182
  userChat?: {
183
183
  id?: string | undefined;
184
- state?: string | undefined;
185
184
  profile?: Record<string, any> | undefined;
185
+ state?: string | undefined;
186
186
  } | undefined;
187
187
  legacyAuthToken?: string | undefined;
188
188
  }>;
@@ -10400,6 +10400,7 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
10400
10400
  name?: string | undefined;
10401
10401
  expiresAt?: string | undefined;
10402
10402
  description?: string | undefined;
10403
+ profile?: Record<string, any> | undefined;
10403
10404
  updatedAt?: string | undefined;
10404
10405
  tags?: string[] | undefined;
10405
10406
  version?: string | undefined;
@@ -10414,7 +10415,6 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
10414
10415
  askedAt?: string | undefined;
10415
10416
  managed?: boolean | undefined;
10416
10417
  oneStop?: boolean | undefined;
10417
- profile?: Record<string, any> | undefined;
10418
10418
  closedAt?: string | undefined;
10419
10419
  handling?: Record<string, any> | undefined;
10420
10420
  mediumId?: string | undefined;
@@ -10461,6 +10461,7 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
10461
10461
  name?: string | undefined;
10462
10462
  expiresAt?: string | undefined;
10463
10463
  description?: string | undefined;
10464
+ profile?: Record<string, any> | undefined;
10464
10465
  updatedAt?: string | undefined;
10465
10466
  tags?: string[] | undefined;
10466
10467
  version?: string | undefined;
@@ -10475,7 +10476,6 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
10475
10476
  askedAt?: string | undefined;
10476
10477
  managed?: boolean | undefined;
10477
10478
  oneStop?: boolean | undefined;
10478
- profile?: Record<string, any> | undefined;
10479
10479
  closedAt?: string | undefined;
10480
10480
  handling?: Record<string, any> | undefined;
10481
10481
  mediumId?: string | undefined;
@@ -10840,6 +10840,7 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
10840
10840
  name?: string | undefined;
10841
10841
  expiresAt?: string | undefined;
10842
10842
  description?: string | undefined;
10843
+ profile?: Record<string, any> | undefined;
10843
10844
  updatedAt?: string | undefined;
10844
10845
  tags?: string[] | undefined;
10845
10846
  version?: string | undefined;
@@ -10854,7 +10855,6 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
10854
10855
  askedAt?: string | undefined;
10855
10856
  managed?: boolean | undefined;
10856
10857
  oneStop?: boolean | undefined;
10857
- profile?: Record<string, any> | undefined;
10858
10858
  closedAt?: string | undefined;
10859
10859
  handling?: Record<string, any> | undefined;
10860
10860
  mediumId?: string | undefined;
@@ -10967,6 +10967,7 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
10967
10967
  name?: string | undefined;
10968
10968
  expiresAt?: string | undefined;
10969
10969
  description?: string | undefined;
10970
+ profile?: Record<string, any> | undefined;
10970
10971
  updatedAt?: string | undefined;
10971
10972
  tags?: string[] | undefined;
10972
10973
  version?: string | undefined;
@@ -10981,7 +10982,6 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
10981
10982
  askedAt?: string | undefined;
10982
10983
  managed?: boolean | undefined;
10983
10984
  oneStop?: boolean | undefined;
10984
- profile?: Record<string, any> | undefined;
10985
10985
  closedAt?: string | undefined;
10986
10986
  handling?: Record<string, any> | undefined;
10987
10987
  mediumId?: string | undefined;
@@ -11127,6 +11127,7 @@ export declare const MessagingInboxOnMediumUserChatClosedInputProtoSchema: z.Zod
11127
11127
  name?: string | undefined;
11128
11128
  expiresAt?: string | undefined;
11129
11129
  description?: string | undefined;
11130
+ profile?: Record<string, any> | undefined;
11130
11131
  updatedAt?: string | undefined;
11131
11132
  tags?: string[] | undefined;
11132
11133
  version?: string | undefined;
@@ -11141,7 +11142,6 @@ export declare const MessagingInboxOnMediumUserChatClosedInputProtoSchema: z.Zod
11141
11142
  askedAt?: string | undefined;
11142
11143
  managed?: boolean | undefined;
11143
11144
  oneStop?: boolean | undefined;
11144
- profile?: Record<string, any> | undefined;
11145
11145
  closedAt?: string | undefined;
11146
11146
  handling?: Record<string, any> | undefined;
11147
11147
  mediumId?: string | undefined;
@@ -11188,6 +11188,7 @@ export declare const MessagingInboxOnMediumUserChatClosedInputProtoSchema: z.Zod
11188
11188
  name?: string | undefined;
11189
11189
  expiresAt?: string | undefined;
11190
11190
  description?: string | undefined;
11191
+ profile?: Record<string, any> | undefined;
11191
11192
  updatedAt?: string | undefined;
11192
11193
  tags?: string[] | undefined;
11193
11194
  version?: string | undefined;
@@ -11202,7 +11203,6 @@ export declare const MessagingInboxOnMediumUserChatClosedInputProtoSchema: z.Zod
11202
11203
  askedAt?: string | undefined;
11203
11204
  managed?: boolean | undefined;
11204
11205
  oneStop?: boolean | undefined;
11205
- profile?: Record<string, any> | undefined;
11206
11206
  closedAt?: string | undefined;
11207
11207
  handling?: Record<string, any> | undefined;
11208
11208
  mediumId?: string | undefined;
@@ -11251,6 +11251,7 @@ export declare const MessagingInboxOnMediumUserChatClosedInputProtoSchema: z.Zod
11251
11251
  name?: string | undefined;
11252
11252
  expiresAt?: string | undefined;
11253
11253
  description?: string | undefined;
11254
+ profile?: Record<string, any> | undefined;
11254
11255
  updatedAt?: string | undefined;
11255
11256
  tags?: string[] | undefined;
11256
11257
  version?: string | undefined;
@@ -11265,7 +11266,6 @@ export declare const MessagingInboxOnMediumUserChatClosedInputProtoSchema: z.Zod
11265
11266
  askedAt?: string | undefined;
11266
11267
  managed?: boolean | undefined;
11267
11268
  oneStop?: boolean | undefined;
11268
- profile?: Record<string, any> | undefined;
11269
11269
  closedAt?: string | undefined;
11270
11270
  handling?: Record<string, any> | undefined;
11271
11271
  mediumId?: string | undefined;
@@ -11314,6 +11314,7 @@ export declare const MessagingInboxOnMediumUserChatClosedInputProtoSchema: z.Zod
11314
11314
  name?: string | undefined;
11315
11315
  expiresAt?: string | undefined;
11316
11316
  description?: string | undefined;
11317
+ profile?: Record<string, any> | undefined;
11317
11318
  updatedAt?: string | undefined;
11318
11319
  tags?: string[] | undefined;
11319
11320
  version?: string | undefined;
@@ -11328,7 +11329,6 @@ export declare const MessagingInboxOnMediumUserChatClosedInputProtoSchema: z.Zod
11328
11329
  askedAt?: string | undefined;
11329
11330
  managed?: boolean | undefined;
11330
11331
  oneStop?: boolean | undefined;
11331
- profile?: Record<string, any> | undefined;
11332
11332
  closedAt?: string | undefined;
11333
11333
  handling?: Record<string, any> | undefined;
11334
11334
  mediumId?: string | undefined;
@@ -11442,6 +11442,7 @@ export declare const MessagingInboxGetWritingTypesInputProtoSchema: z.ZodObject<
11442
11442
  name?: string | undefined;
11443
11443
  expiresAt?: string | undefined;
11444
11444
  description?: string | undefined;
11445
+ profile?: Record<string, any> | undefined;
11445
11446
  updatedAt?: string | undefined;
11446
11447
  tags?: string[] | undefined;
11447
11448
  version?: string | undefined;
@@ -11456,7 +11457,6 @@ export declare const MessagingInboxGetWritingTypesInputProtoSchema: z.ZodObject<
11456
11457
  askedAt?: string | undefined;
11457
11458
  managed?: boolean | undefined;
11458
11459
  oneStop?: boolean | undefined;
11459
- profile?: Record<string, any> | undefined;
11460
11460
  closedAt?: string | undefined;
11461
11461
  handling?: Record<string, any> | undefined;
11462
11462
  mediumId?: string | undefined;
@@ -11503,6 +11503,7 @@ export declare const MessagingInboxGetWritingTypesInputProtoSchema: z.ZodObject<
11503
11503
  name?: string | undefined;
11504
11504
  expiresAt?: string | undefined;
11505
11505
  description?: string | undefined;
11506
+ profile?: Record<string, any> | undefined;
11506
11507
  updatedAt?: string | undefined;
11507
11508
  tags?: string[] | undefined;
11508
11509
  version?: string | undefined;
@@ -11517,7 +11518,6 @@ export declare const MessagingInboxGetWritingTypesInputProtoSchema: z.ZodObject<
11517
11518
  askedAt?: string | undefined;
11518
11519
  managed?: boolean | undefined;
11519
11520
  oneStop?: boolean | undefined;
11520
- profile?: Record<string, any> | undefined;
11521
11521
  closedAt?: string | undefined;
11522
11522
  handling?: Record<string, any> | undefined;
11523
11523
  mediumId?: string | undefined;
@@ -11566,6 +11566,7 @@ export declare const MessagingInboxGetWritingTypesInputProtoSchema: z.ZodObject<
11566
11566
  name?: string | undefined;
11567
11567
  expiresAt?: string | undefined;
11568
11568
  description?: string | undefined;
11569
+ profile?: Record<string, any> | undefined;
11569
11570
  updatedAt?: string | undefined;
11570
11571
  tags?: string[] | undefined;
11571
11572
  version?: string | undefined;
@@ -11580,7 +11581,6 @@ export declare const MessagingInboxGetWritingTypesInputProtoSchema: z.ZodObject<
11580
11581
  askedAt?: string | undefined;
11581
11582
  managed?: boolean | undefined;
11582
11583
  oneStop?: boolean | undefined;
11583
- profile?: Record<string, any> | undefined;
11584
11584
  closedAt?: string | undefined;
11585
11585
  handling?: Record<string, any> | undefined;
11586
11586
  mediumId?: string | undefined;
@@ -11629,6 +11629,7 @@ export declare const MessagingInboxGetWritingTypesInputProtoSchema: z.ZodObject<
11629
11629
  name?: string | undefined;
11630
11630
  expiresAt?: string | undefined;
11631
11631
  description?: string | undefined;
11632
+ profile?: Record<string, any> | undefined;
11632
11633
  updatedAt?: string | undefined;
11633
11634
  tags?: string[] | undefined;
11634
11635
  version?: string | undefined;
@@ -11643,7 +11644,6 @@ export declare const MessagingInboxGetWritingTypesInputProtoSchema: z.ZodObject<
11643
11644
  askedAt?: string | undefined;
11644
11645
  managed?: boolean | undefined;
11645
11646
  oneStop?: boolean | undefined;
11646
- profile?: Record<string, any> | undefined;
11647
11647
  closedAt?: string | undefined;
11648
11648
  handling?: Record<string, any> | undefined;
11649
11649
  mediumId?: string | undefined;
@@ -11864,6 +11864,7 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
11864
11864
  id?: string | undefined;
11865
11865
  channelId?: string | undefined;
11866
11866
  name?: string | undefined;
11867
+ profile?: Record<string, any> | undefined;
11867
11868
  updatedAt?: string | undefined;
11868
11869
  tags?: string[] | undefined;
11869
11870
  version?: string | undefined;
@@ -11871,7 +11872,6 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
11871
11872
  city?: string | undefined;
11872
11873
  province?: string | undefined;
11873
11874
  createdAt?: string | undefined;
11874
- profile?: Record<string, any> | undefined;
11875
11875
  alert?: number | undefined;
11876
11876
  mobile?: Record<string, any> | undefined;
11877
11877
  unread?: number | undefined;
@@ -11899,6 +11899,7 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
11899
11899
  id?: string | undefined;
11900
11900
  channelId?: string | undefined;
11901
11901
  name?: string | undefined;
11902
+ profile?: Record<string, any> | undefined;
11902
11903
  updatedAt?: string | undefined;
11903
11904
  tags?: string[] | undefined;
11904
11905
  version?: string | undefined;
@@ -11906,7 +11907,6 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
11906
11907
  city?: string | undefined;
11907
11908
  province?: string | undefined;
11908
11909
  createdAt?: string | undefined;
11909
- profile?: Record<string, any> | undefined;
11910
11910
  alert?: number | undefined;
11911
11911
  mobile?: Record<string, any> | undefined;
11912
11912
  unread?: number | undefined;
@@ -11998,6 +11998,7 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
11998
11998
  name?: string | undefined;
11999
11999
  expiresAt?: string | undefined;
12000
12000
  description?: string | undefined;
12001
+ profile?: Record<string, any> | undefined;
12001
12002
  updatedAt?: string | undefined;
12002
12003
  tags?: string[] | undefined;
12003
12004
  version?: string | undefined;
@@ -12012,7 +12013,6 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
12012
12013
  askedAt?: string | undefined;
12013
12014
  managed?: boolean | undefined;
12014
12015
  oneStop?: boolean | undefined;
12015
- profile?: Record<string, any> | undefined;
12016
12016
  closedAt?: string | undefined;
12017
12017
  handling?: Record<string, any> | undefined;
12018
12018
  mediumId?: string | undefined;
@@ -12059,6 +12059,7 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
12059
12059
  name?: string | undefined;
12060
12060
  expiresAt?: string | undefined;
12061
12061
  description?: string | undefined;
12062
+ profile?: Record<string, any> | undefined;
12062
12063
  updatedAt?: string | undefined;
12063
12064
  tags?: string[] | undefined;
12064
12065
  version?: string | undefined;
@@ -12073,7 +12074,6 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
12073
12074
  askedAt?: string | undefined;
12074
12075
  managed?: boolean | undefined;
12075
12076
  oneStop?: boolean | undefined;
12076
- profile?: Record<string, any> | undefined;
12077
12077
  closedAt?: string | undefined;
12078
12078
  handling?: Record<string, any> | undefined;
12079
12079
  mediumId?: string | undefined;
@@ -12375,6 +12375,7 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
12375
12375
  id?: string | undefined;
12376
12376
  channelId?: string | undefined;
12377
12377
  name?: string | undefined;
12378
+ profile?: Record<string, any> | undefined;
12378
12379
  updatedAt?: string | undefined;
12379
12380
  tags?: string[] | undefined;
12380
12381
  version?: string | undefined;
@@ -12382,7 +12383,6 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
12382
12383
  city?: string | undefined;
12383
12384
  province?: string | undefined;
12384
12385
  createdAt?: string | undefined;
12385
- profile?: Record<string, any> | undefined;
12386
12386
  alert?: number | undefined;
12387
12387
  mobile?: Record<string, any> | undefined;
12388
12388
  unread?: number | undefined;
@@ -12477,6 +12477,7 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
12477
12477
  name?: string | undefined;
12478
12478
  expiresAt?: string | undefined;
12479
12479
  description?: string | undefined;
12480
+ profile?: Record<string, any> | undefined;
12480
12481
  updatedAt?: string | undefined;
12481
12482
  tags?: string[] | undefined;
12482
12483
  version?: string | undefined;
@@ -12491,7 +12492,6 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
12491
12492
  askedAt?: string | undefined;
12492
12493
  managed?: boolean | undefined;
12493
12494
  oneStop?: boolean | undefined;
12494
- profile?: Record<string, any> | undefined;
12495
12495
  closedAt?: string | undefined;
12496
12496
  handling?: Record<string, any> | undefined;
12497
12497
  mediumId?: string | undefined;
@@ -12541,6 +12541,7 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
12541
12541
  id?: string | undefined;
12542
12542
  channelId?: string | undefined;
12543
12543
  name?: string | undefined;
12544
+ profile?: Record<string, any> | undefined;
12544
12545
  updatedAt?: string | undefined;
12545
12546
  tags?: string[] | undefined;
12546
12547
  version?: string | undefined;
@@ -12548,7 +12549,6 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
12548
12549
  city?: string | undefined;
12549
12550
  province?: string | undefined;
12550
12551
  createdAt?: string | undefined;
12551
- profile?: Record<string, any> | undefined;
12552
12552
  alert?: number | undefined;
12553
12553
  mobile?: Record<string, any> | undefined;
12554
12554
  unread?: number | undefined;
@@ -12643,6 +12643,7 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
12643
12643
  name?: string | undefined;
12644
12644
  expiresAt?: string | undefined;
12645
12645
  description?: string | undefined;
12646
+ profile?: Record<string, any> | undefined;
12646
12647
  updatedAt?: string | undefined;
12647
12648
  tags?: string[] | undefined;
12648
12649
  version?: string | undefined;
@@ -12657,7 +12658,6 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
12657
12658
  askedAt?: string | undefined;
12658
12659
  managed?: boolean | undefined;
12659
12660
  oneStop?: boolean | undefined;
12660
- profile?: Record<string, any> | undefined;
12661
12661
  closedAt?: string | undefined;
12662
12662
  handling?: Record<string, any> | undefined;
12663
12663
  mediumId?: string | undefined;
@@ -12744,6 +12744,7 @@ export declare const MessagingInboxGetMediumTopicSelectorWamInputProtoSchema: z.
12744
12744
  id?: string | undefined;
12745
12745
  channelId?: string | undefined;
12746
12746
  name?: string | undefined;
12747
+ profile?: Record<string, any> | undefined;
12747
12748
  updatedAt?: string | undefined;
12748
12749
  tags?: string[] | undefined;
12749
12750
  version?: string | undefined;
@@ -12751,7 +12752,6 @@ export declare const MessagingInboxGetMediumTopicSelectorWamInputProtoSchema: z.
12751
12752
  city?: string | undefined;
12752
12753
  province?: string | undefined;
12753
12754
  createdAt?: string | undefined;
12754
- profile?: Record<string, any> | undefined;
12755
12755
  alert?: number | undefined;
12756
12756
  mobile?: Record<string, any> | undefined;
12757
12757
  unread?: number | undefined;
@@ -12779,6 +12779,7 @@ export declare const MessagingInboxGetMediumTopicSelectorWamInputProtoSchema: z.
12779
12779
  id?: string | undefined;
12780
12780
  channelId?: string | undefined;
12781
12781
  name?: string | undefined;
12782
+ profile?: Record<string, any> | undefined;
12782
12783
  updatedAt?: string | undefined;
12783
12784
  tags?: string[] | undefined;
12784
12785
  version?: string | undefined;
@@ -12786,7 +12787,6 @@ export declare const MessagingInboxGetMediumTopicSelectorWamInputProtoSchema: z.
12786
12787
  city?: string | undefined;
12787
12788
  province?: string | undefined;
12788
12789
  createdAt?: string | undefined;
12789
- profile?: Record<string, any> | undefined;
12790
12790
  alert?: number | undefined;
12791
12791
  mobile?: Record<string, any> | undefined;
12792
12792
  unread?: number | undefined;
@@ -12816,6 +12816,7 @@ export declare const MessagingInboxGetMediumTopicSelectorWamInputProtoSchema: z.
12816
12816
  id?: string | undefined;
12817
12817
  channelId?: string | undefined;
12818
12818
  name?: string | undefined;
12819
+ profile?: Record<string, any> | undefined;
12819
12820
  updatedAt?: string | undefined;
12820
12821
  tags?: string[] | undefined;
12821
12822
  version?: string | undefined;
@@ -12823,7 +12824,6 @@ export declare const MessagingInboxGetMediumTopicSelectorWamInputProtoSchema: z.
12823
12824
  city?: string | undefined;
12824
12825
  province?: string | undefined;
12825
12826
  createdAt?: string | undefined;
12826
- profile?: Record<string, any> | undefined;
12827
12827
  alert?: number | undefined;
12828
12828
  mobile?: Record<string, any> | undefined;
12829
12829
  unread?: number | undefined;
@@ -12853,6 +12853,7 @@ export declare const MessagingInboxGetMediumTopicSelectorWamInputProtoSchema: z.
12853
12853
  id?: string | undefined;
12854
12854
  channelId?: string | undefined;
12855
12855
  name?: string | undefined;
12856
+ profile?: Record<string, any> | undefined;
12856
12857
  updatedAt?: string | undefined;
12857
12858
  tags?: string[] | undefined;
12858
12859
  version?: string | undefined;
@@ -12860,7 +12861,6 @@ export declare const MessagingInboxGetMediumTopicSelectorWamInputProtoSchema: z.
12860
12861
  city?: string | undefined;
12861
12862
  province?: string | undefined;
12862
12863
  createdAt?: string | undefined;
12863
- profile?: Record<string, any> | undefined;
12864
12864
  alert?: number | undefined;
12865
12865
  mobile?: Record<string, any> | undefined;
12866
12866
  unread?: number | undefined;
@@ -12955,6 +12955,7 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
12955
12955
  name?: string | undefined;
12956
12956
  expiresAt?: string | undefined;
12957
12957
  description?: string | undefined;
12958
+ profile?: Record<string, any> | undefined;
12958
12959
  updatedAt?: string | undefined;
12959
12960
  tags?: string[] | undefined;
12960
12961
  version?: string | undefined;
@@ -12969,7 +12970,6 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
12969
12970
  askedAt?: string | undefined;
12970
12971
  managed?: boolean | undefined;
12971
12972
  oneStop?: boolean | undefined;
12972
- profile?: Record<string, any> | undefined;
12973
12973
  closedAt?: string | undefined;
12974
12974
  handling?: Record<string, any> | undefined;
12975
12975
  mediumId?: string | undefined;
@@ -13016,6 +13016,7 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
13016
13016
  name?: string | undefined;
13017
13017
  expiresAt?: string | undefined;
13018
13018
  description?: string | undefined;
13019
+ profile?: Record<string, any> | undefined;
13019
13020
  updatedAt?: string | undefined;
13020
13021
  tags?: string[] | undefined;
13021
13022
  version?: string | undefined;
@@ -13030,7 +13031,6 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
13030
13031
  askedAt?: string | undefined;
13031
13032
  managed?: boolean | undefined;
13032
13033
  oneStop?: boolean | undefined;
13033
- profile?: Record<string, any> | undefined;
13034
13034
  closedAt?: string | undefined;
13035
13035
  handling?: Record<string, any> | undefined;
13036
13036
  mediumId?: string | undefined;
@@ -13395,6 +13395,7 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
13395
13395
  name?: string | undefined;
13396
13396
  expiresAt?: string | undefined;
13397
13397
  description?: string | undefined;
13398
+ profile?: Record<string, any> | undefined;
13398
13399
  updatedAt?: string | undefined;
13399
13400
  tags?: string[] | undefined;
13400
13401
  version?: string | undefined;
@@ -13409,7 +13410,6 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
13409
13410
  askedAt?: string | undefined;
13410
13411
  managed?: boolean | undefined;
13411
13412
  oneStop?: boolean | undefined;
13412
- profile?: Record<string, any> | undefined;
13413
13413
  closedAt?: string | undefined;
13414
13414
  handling?: Record<string, any> | undefined;
13415
13415
  mediumId?: string | undefined;
@@ -13522,6 +13522,7 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
13522
13522
  name?: string | undefined;
13523
13523
  expiresAt?: string | undefined;
13524
13524
  description?: string | undefined;
13525
+ profile?: Record<string, any> | undefined;
13525
13526
  updatedAt?: string | undefined;
13526
13527
  tags?: string[] | undefined;
13527
13528
  version?: string | undefined;
@@ -13536,7 +13537,6 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
13536
13537
  askedAt?: string | undefined;
13537
13538
  managed?: boolean | undefined;
13538
13539
  oneStop?: boolean | undefined;
13539
- profile?: Record<string, any> | undefined;
13540
13540
  closedAt?: string | undefined;
13541
13541
  handling?: Record<string, any> | undefined;
13542
13542
  mediumId?: string | undefined;
@@ -14133,6 +14133,7 @@ export declare const MessagingPrebuiltBuildMediumTopicsInputProtoSchema: z.ZodOb
14133
14133
  id?: string | undefined;
14134
14134
  channelId?: string | undefined;
14135
14135
  name?: string | undefined;
14136
+ profile?: Record<string, any> | undefined;
14136
14137
  updatedAt?: string | undefined;
14137
14138
  tags?: string[] | undefined;
14138
14139
  version?: string | undefined;
@@ -14140,7 +14141,6 @@ export declare const MessagingPrebuiltBuildMediumTopicsInputProtoSchema: z.ZodOb
14140
14141
  city?: string | undefined;
14141
14142
  province?: string | undefined;
14142
14143
  createdAt?: string | undefined;
14143
- profile?: Record<string, any> | undefined;
14144
14144
  alert?: number | undefined;
14145
14145
  mobile?: Record<string, any> | undefined;
14146
14146
  unread?: number | undefined;
@@ -14168,6 +14168,7 @@ export declare const MessagingPrebuiltBuildMediumTopicsInputProtoSchema: z.ZodOb
14168
14168
  id?: string | undefined;
14169
14169
  channelId?: string | undefined;
14170
14170
  name?: string | undefined;
14171
+ profile?: Record<string, any> | undefined;
14171
14172
  updatedAt?: string | undefined;
14172
14173
  tags?: string[] | undefined;
14173
14174
  version?: string | undefined;
@@ -14175,7 +14176,6 @@ export declare const MessagingPrebuiltBuildMediumTopicsInputProtoSchema: z.ZodOb
14175
14176
  city?: string | undefined;
14176
14177
  province?: string | undefined;
14177
14178
  createdAt?: string | undefined;
14178
- profile?: Record<string, any> | undefined;
14179
14179
  alert?: number | undefined;
14180
14180
  mobile?: Record<string, any> | undefined;
14181
14181
  unread?: number | undefined;
@@ -14207,6 +14207,7 @@ export declare const MessagingPrebuiltBuildMediumTopicsInputProtoSchema: z.ZodOb
14207
14207
  id?: string | undefined;
14208
14208
  channelId?: string | undefined;
14209
14209
  name?: string | undefined;
14210
+ profile?: Record<string, any> | undefined;
14210
14211
  updatedAt?: string | undefined;
14211
14212
  tags?: string[] | undefined;
14212
14213
  version?: string | undefined;
@@ -14214,7 +14215,6 @@ export declare const MessagingPrebuiltBuildMediumTopicsInputProtoSchema: z.ZodOb
14214
14215
  city?: string | undefined;
14215
14216
  province?: string | undefined;
14216
14217
  createdAt?: string | undefined;
14217
- profile?: Record<string, any> | undefined;
14218
14218
  alert?: number | undefined;
14219
14219
  mobile?: Record<string, any> | undefined;
14220
14220
  unread?: number | undefined;
@@ -14246,6 +14246,7 @@ export declare const MessagingPrebuiltBuildMediumTopicsInputProtoSchema: z.ZodOb
14246
14246
  id?: string | undefined;
14247
14247
  channelId?: string | undefined;
14248
14248
  name?: string | undefined;
14249
+ profile?: Record<string, any> | undefined;
14249
14250
  updatedAt?: string | undefined;
14250
14251
  tags?: string[] | undefined;
14251
14252
  version?: string | undefined;
@@ -14253,7 +14254,6 @@ export declare const MessagingPrebuiltBuildMediumTopicsInputProtoSchema: z.ZodOb
14253
14254
  city?: string | undefined;
14254
14255
  province?: string | undefined;
14255
14256
  createdAt?: string | undefined;
14256
- profile?: Record<string, any> | undefined;
14257
14257
  alert?: number | undefined;
14258
14258
  mobile?: Record<string, any> | undefined;
14259
14259
  unread?: number | undefined;
@@ -48,12 +48,12 @@ export declare const FunctionRequestProtoSchema: z.ZodObject<{
48
48
  state: z.ZodOptional<z.ZodString>;
49
49
  }, "strip", z.ZodTypeAny, {
50
50
  id?: string | undefined;
51
- state?: string | undefined;
52
51
  profile?: Record<string, any> | undefined;
52
+ state?: string | undefined;
53
53
  }, {
54
54
  id?: string | undefined;
55
- state?: string | undefined;
56
55
  profile?: Record<string, any> | undefined;
56
+ state?: string | undefined;
57
57
  }>>>;
58
58
  authToken: z.ZodOptional<z.ZodString>;
59
59
  legacyAuthToken: z.ZodOptional<z.ZodString>;
@@ -88,8 +88,8 @@ export declare const FunctionRequestProtoSchema: z.ZodObject<{
88
88
  seedState?: any;
89
89
  userChat?: {
90
90
  id?: string | undefined;
91
- state?: string | undefined;
92
91
  profile?: Record<string, any> | undefined;
92
+ state?: string | undefined;
93
93
  } | undefined;
94
94
  legacyAuthToken?: string | undefined;
95
95
  }, {
@@ -117,8 +117,8 @@ export declare const FunctionRequestProtoSchema: z.ZodObject<{
117
117
  seedState?: any;
118
118
  userChat?: {
119
119
  id?: string | undefined;
120
- state?: string | undefined;
121
120
  profile?: Record<string, any> | undefined;
121
+ state?: string | undefined;
122
122
  } | undefined;
123
123
  legacyAuthToken?: string | undefined;
124
124
  }>>;
@@ -152,8 +152,8 @@ export declare const FunctionRequestProtoSchema: z.ZodObject<{
152
152
  seedState?: any;
153
153
  userChat?: {
154
154
  id?: string | undefined;
155
- state?: string | undefined;
156
155
  profile?: Record<string, any> | undefined;
156
+ state?: string | undefined;
157
157
  } | undefined;
158
158
  legacyAuthToken?: string | undefined;
159
159
  } | undefined;
@@ -186,8 +186,8 @@ export declare const FunctionRequestProtoSchema: z.ZodObject<{
186
186
  seedState?: any;
187
187
  userChat?: {
188
188
  id?: string | undefined;
189
- state?: string | undefined;
190
189
  profile?: Record<string, any> | undefined;
190
+ state?: string | undefined;
191
191
  } | undefined;
192
192
  legacyAuthToken?: string | undefined;
193
193
  } | undefined;