@bubblelab/bubble-core 0.1.118 → 0.1.122

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.
@@ -1,3 +1,3 @@
1
1
  export { SlackBubble } from './slack';
2
- export { markdownToMrkdwn, markdownToBlocks, createTextBlock, createDividerBlock, createHeaderBlock, createContextBlock, createTableBlock, SLACK_TABLE_MAX_ROWS, SLACK_TABLE_MAX_COLUMNS, type SlackBlock, type SlackTextObject, type SlackSectionBlock, type SlackDividerBlock, type SlackHeaderBlock, type SlackContextBlock, type SlackTableBlock, type SlackTableCell, type SlackTableCellRawText, type SlackTableCellRichText, type SlackTableColumnSetting, type CreateTableBlockResult, type MarkdownToBlocksOptions, } from './slack.utils.js';
2
+ export { markdownToMrkdwn, markdownToBlocks, createTextBlock, createDividerBlock, createHeaderBlock, createContextBlock, createTableBlock, SLACK_TABLE_MAX_ROWS, SLACK_TABLE_MAX_COLUMNS, type SlackBlock, type SlackTextObject, type SlackSectionBlock, type SlackDividerBlock, type SlackHeaderBlock, type SlackContextBlock, type SlackTableBlock, type SlackImageBlock, type SlackTableCell, type SlackTableCellRawText, type SlackTableCellRichText, type SlackTableColumnSetting, type CreateTableBlockResult, type MarkdownToBlocksOptions, } from './slack.utils.js';
3
3
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/bubbles/service-bubble/slack/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAGtC,OAAO,EACL,gBAAgB,EAChB,gBAAgB,EAChB,eAAe,EACf,kBAAkB,EAClB,iBAAiB,EACjB,kBAAkB,EAClB,gBAAgB,EAChB,oBAAoB,EACpB,uBAAuB,EACvB,KAAK,UAAU,EACf,KAAK,eAAe,EACpB,KAAK,iBAAiB,EACtB,KAAK,iBAAiB,EACtB,KAAK,gBAAgB,EACrB,KAAK,iBAAiB,EACtB,KAAK,eAAe,EACpB,KAAK,cAAc,EACnB,KAAK,qBAAqB,EAC1B,KAAK,sBAAsB,EAC3B,KAAK,uBAAuB,EAC5B,KAAK,sBAAsB,EAC3B,KAAK,uBAAuB,GAC7B,MAAM,kBAAkB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/bubbles/service-bubble/slack/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAGtC,OAAO,EACL,gBAAgB,EAChB,gBAAgB,EAChB,eAAe,EACf,kBAAkB,EAClB,iBAAiB,EACjB,kBAAkB,EAClB,gBAAgB,EAChB,oBAAoB,EACpB,uBAAuB,EACvB,KAAK,UAAU,EACf,KAAK,eAAe,EACpB,KAAK,iBAAiB,EACtB,KAAK,iBAAiB,EACtB,KAAK,gBAAgB,EACrB,KAAK,iBAAiB,EACtB,KAAK,eAAe,EACpB,KAAK,eAAe,EACpB,KAAK,cAAc,EACnB,KAAK,qBAAqB,EAC1B,KAAK,sBAAsB,EAC3B,KAAK,uBAAuB,EAC5B,KAAK,sBAAsB,EAC3B,KAAK,uBAAuB,GAC7B,MAAM,kBAAkB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/bubbles/service-bubble/slack/index.ts"],"names":[],"mappings":"AAAA,iFAAiF;AACjF,uFAAuF;AACvF,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAEtC,kBAAkB;AAClB,OAAO,EACL,gBAAgB,EAChB,gBAAgB,EAChB,eAAe,EACf,kBAAkB,EAClB,iBAAiB,EACjB,kBAAkB,EAClB,gBAAgB,EAChB,oBAAoB,EACpB,uBAAuB,GAcxB,MAAM,kBAAkB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/bubbles/service-bubble/slack/index.ts"],"names":[],"mappings":"AAAA,iFAAiF;AACjF,uFAAuF;AACvF,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAEtC,kBAAkB;AAClB,OAAO,EACL,gBAAgB,EAChB,gBAAgB,EAChB,eAAe,EACf,kBAAkB,EAClB,iBAAiB,EACjB,kBAAkB,EAClB,gBAAgB,EAChB,oBAAoB,EACpB,uBAAuB,GAexB,MAAM,kBAAkB,CAAC"}
@@ -105,15 +105,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
105
105
  text?: string | undefined;
106
106
  image_url?: string | undefined;
107
107
  emoji?: boolean | undefined;
108
- verbatim?: boolean | undefined;
109
108
  alt_text?: string | undefined;
109
+ verbatim?: boolean | undefined;
110
110
  }, {
111
111
  type: "image" | "plain_text" | "mrkdwn";
112
112
  text?: string | undefined;
113
113
  image_url?: string | undefined;
114
114
  emoji?: boolean | undefined;
115
- verbatim?: boolean | undefined;
116
115
  alt_text?: string | undefined;
116
+ verbatim?: boolean | undefined;
117
117
  }>, "many">>;
118
118
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
119
119
  type: z.ZodString;
@@ -145,15 +145,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
145
145
  text?: string | undefined;
146
146
  image_url?: string | undefined;
147
147
  emoji?: boolean | undefined;
148
- verbatim?: boolean | undefined;
149
148
  alt_text?: string | undefined;
149
+ verbatim?: boolean | undefined;
150
150
  }, {
151
151
  type: "image" | "plain_text" | "mrkdwn";
152
152
  text?: string | undefined;
153
153
  image_url?: string | undefined;
154
154
  emoji?: boolean | undefined;
155
- verbatim?: boolean | undefined;
156
155
  alt_text?: string | undefined;
156
+ verbatim?: boolean | undefined;
157
157
  }>, "many">>;
158
158
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
159
159
  type: z.ZodString;
@@ -185,15 +185,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
185
185
  text?: string | undefined;
186
186
  image_url?: string | undefined;
187
187
  emoji?: boolean | undefined;
188
- verbatim?: boolean | undefined;
189
188
  alt_text?: string | undefined;
189
+ verbatim?: boolean | undefined;
190
190
  }, {
191
191
  type: "image" | "plain_text" | "mrkdwn";
192
192
  text?: string | undefined;
193
193
  image_url?: string | undefined;
194
194
  emoji?: boolean | undefined;
195
- verbatim?: boolean | undefined;
196
195
  alt_text?: string | undefined;
196
+ verbatim?: boolean | undefined;
197
197
  }>, "many">>;
198
198
  }, z.ZodTypeAny, "passthrough">>, "many">>;
199
199
  thread_ts: z.ZodOptional<z.ZodString>;
@@ -262,15 +262,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
262
262
  text?: string | undefined;
263
263
  image_url?: string | undefined;
264
264
  emoji?: boolean | undefined;
265
- verbatim?: boolean | undefined;
266
265
  alt_text?: string | undefined;
266
+ verbatim?: boolean | undefined;
267
267
  }, {
268
268
  type: "image" | "plain_text" | "mrkdwn";
269
269
  text?: string | undefined;
270
270
  image_url?: string | undefined;
271
271
  emoji?: boolean | undefined;
272
- verbatim?: boolean | undefined;
273
272
  alt_text?: string | undefined;
273
+ verbatim?: boolean | undefined;
274
274
  }>, "many">>;
275
275
  }, z.ZodTypeAny, "passthrough">[] | undefined;
276
276
  thread_ts?: string | undefined;
@@ -332,15 +332,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
332
332
  text?: string | undefined;
333
333
  image_url?: string | undefined;
334
334
  emoji?: boolean | undefined;
335
- verbatim?: boolean | undefined;
336
335
  alt_text?: string | undefined;
336
+ verbatim?: boolean | undefined;
337
337
  }, {
338
338
  type: "image" | "plain_text" | "mrkdwn";
339
339
  text?: string | undefined;
340
340
  image_url?: string | undefined;
341
341
  emoji?: boolean | undefined;
342
- verbatim?: boolean | undefined;
343
342
  alt_text?: string | undefined;
343
+ verbatim?: boolean | undefined;
344
344
  }>, "many">>;
345
345
  }, z.ZodTypeAny, "passthrough">[] | undefined;
346
346
  thread_ts?: string | undefined;
@@ -574,15 +574,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
574
574
  text?: string | undefined;
575
575
  image_url?: string | undefined;
576
576
  emoji?: boolean | undefined;
577
- verbatim?: boolean | undefined;
578
577
  alt_text?: string | undefined;
578
+ verbatim?: boolean | undefined;
579
579
  }, {
580
580
  type: "image" | "plain_text" | "mrkdwn";
581
581
  text?: string | undefined;
582
582
  image_url?: string | undefined;
583
583
  emoji?: boolean | undefined;
584
- verbatim?: boolean | undefined;
585
584
  alt_text?: string | undefined;
585
+ verbatim?: boolean | undefined;
586
586
  }>, "many">>;
587
587
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
588
588
  type: z.ZodString;
@@ -614,15 +614,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
614
614
  text?: string | undefined;
615
615
  image_url?: string | undefined;
616
616
  emoji?: boolean | undefined;
617
- verbatim?: boolean | undefined;
618
617
  alt_text?: string | undefined;
618
+ verbatim?: boolean | undefined;
619
619
  }, {
620
620
  type: "image" | "plain_text" | "mrkdwn";
621
621
  text?: string | undefined;
622
622
  image_url?: string | undefined;
623
623
  emoji?: boolean | undefined;
624
- verbatim?: boolean | undefined;
625
624
  alt_text?: string | undefined;
625
+ verbatim?: boolean | undefined;
626
626
  }>, "many">>;
627
627
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
628
628
  type: z.ZodString;
@@ -654,15 +654,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
654
654
  text?: string | undefined;
655
655
  image_url?: string | undefined;
656
656
  emoji?: boolean | undefined;
657
- verbatim?: boolean | undefined;
658
657
  alt_text?: string | undefined;
658
+ verbatim?: boolean | undefined;
659
659
  }, {
660
660
  type: "image" | "plain_text" | "mrkdwn";
661
661
  text?: string | undefined;
662
662
  image_url?: string | undefined;
663
663
  emoji?: boolean | undefined;
664
- verbatim?: boolean | undefined;
665
664
  alt_text?: string | undefined;
665
+ verbatim?: boolean | undefined;
666
666
  }>, "many">>;
667
667
  }, z.ZodTypeAny, "passthrough">>, "many">>;
668
668
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
@@ -722,15 +722,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
722
722
  text?: string | undefined;
723
723
  image_url?: string | undefined;
724
724
  emoji?: boolean | undefined;
725
- verbatim?: boolean | undefined;
726
725
  alt_text?: string | undefined;
726
+ verbatim?: boolean | undefined;
727
727
  }, {
728
728
  type: "image" | "plain_text" | "mrkdwn";
729
729
  text?: string | undefined;
730
730
  image_url?: string | undefined;
731
731
  emoji?: boolean | undefined;
732
- verbatim?: boolean | undefined;
733
732
  alt_text?: string | undefined;
733
+ verbatim?: boolean | undefined;
734
734
  }>, "many">>;
735
735
  }, z.ZodTypeAny, "passthrough">[] | undefined;
736
736
  }, {
@@ -789,15 +789,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
789
789
  text?: string | undefined;
790
790
  image_url?: string | undefined;
791
791
  emoji?: boolean | undefined;
792
- verbatim?: boolean | undefined;
793
792
  alt_text?: string | undefined;
793
+ verbatim?: boolean | undefined;
794
794
  }, {
795
795
  type: "image" | "plain_text" | "mrkdwn";
796
796
  text?: string | undefined;
797
797
  image_url?: string | undefined;
798
798
  emoji?: boolean | undefined;
799
- verbatim?: boolean | undefined;
800
799
  alt_text?: string | undefined;
800
+ verbatim?: boolean | undefined;
801
801
  }>, "many">>;
802
802
  }, z.ZodTypeAny, "passthrough">[] | undefined;
803
803
  }>, z.ZodObject<{
@@ -929,15 +929,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
929
929
  text?: string | undefined;
930
930
  image_url?: string | undefined;
931
931
  emoji?: boolean | undefined;
932
- verbatim?: boolean | undefined;
933
932
  alt_text?: string | undefined;
933
+ verbatim?: boolean | undefined;
934
934
  }, {
935
935
  type: "image" | "plain_text" | "mrkdwn";
936
936
  text?: string | undefined;
937
937
  image_url?: string | undefined;
938
938
  emoji?: boolean | undefined;
939
- verbatim?: boolean | undefined;
940
939
  alt_text?: string | undefined;
940
+ verbatim?: boolean | undefined;
941
941
  }>, "many">>;
942
942
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
943
943
  type: z.ZodString;
@@ -969,15 +969,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
969
969
  text?: string | undefined;
970
970
  image_url?: string | undefined;
971
971
  emoji?: boolean | undefined;
972
- verbatim?: boolean | undefined;
973
972
  alt_text?: string | undefined;
973
+ verbatim?: boolean | undefined;
974
974
  }, {
975
975
  type: "image" | "plain_text" | "mrkdwn";
976
976
  text?: string | undefined;
977
977
  image_url?: string | undefined;
978
978
  emoji?: boolean | undefined;
979
- verbatim?: boolean | undefined;
980
979
  alt_text?: string | undefined;
980
+ verbatim?: boolean | undefined;
981
981
  }>, "many">>;
982
982
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
983
983
  type: z.ZodString;
@@ -1009,15 +1009,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1009
1009
  text?: string | undefined;
1010
1010
  image_url?: string | undefined;
1011
1011
  emoji?: boolean | undefined;
1012
- verbatim?: boolean | undefined;
1013
1012
  alt_text?: string | undefined;
1013
+ verbatim?: boolean | undefined;
1014
1014
  }, {
1015
1015
  type: "image" | "plain_text" | "mrkdwn";
1016
1016
  text?: string | undefined;
1017
1017
  image_url?: string | undefined;
1018
1018
  emoji?: boolean | undefined;
1019
- verbatim?: boolean | undefined;
1020
1019
  alt_text?: string | undefined;
1020
+ verbatim?: boolean | undefined;
1021
1021
  }>, "many">>;
1022
1022
  }, z.ZodTypeAny, "passthrough">>, "many">>;
1023
1023
  unfurl_links: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
@@ -1061,15 +1061,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1061
1061
  text?: string | undefined;
1062
1062
  image_url?: string | undefined;
1063
1063
  emoji?: boolean | undefined;
1064
- verbatim?: boolean | undefined;
1065
1064
  alt_text?: string | undefined;
1065
+ verbatim?: boolean | undefined;
1066
1066
  }, {
1067
1067
  type: "image" | "plain_text" | "mrkdwn";
1068
1068
  text?: string | undefined;
1069
1069
  image_url?: string | undefined;
1070
1070
  emoji?: boolean | undefined;
1071
- verbatim?: boolean | undefined;
1072
1071
  alt_text?: string | undefined;
1072
+ verbatim?: boolean | undefined;
1073
1073
  }>, "many">>;
1074
1074
  }, z.ZodTypeAny, "passthrough">[] | undefined;
1075
1075
  thread_ts?: string | undefined;
@@ -1109,15 +1109,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1109
1109
  text?: string | undefined;
1110
1110
  image_url?: string | undefined;
1111
1111
  emoji?: boolean | undefined;
1112
- verbatim?: boolean | undefined;
1113
1112
  alt_text?: string | undefined;
1113
+ verbatim?: boolean | undefined;
1114
1114
  }, {
1115
1115
  type: "image" | "plain_text" | "mrkdwn";
1116
1116
  text?: string | undefined;
1117
1117
  image_url?: string | undefined;
1118
1118
  emoji?: boolean | undefined;
1119
- verbatim?: boolean | undefined;
1120
1119
  alt_text?: string | undefined;
1120
+ verbatim?: boolean | undefined;
1121
1121
  }>, "many">>;
1122
1122
  }, z.ZodTypeAny, "passthrough">[] | undefined;
1123
1123
  thread_ts?: string | undefined;
@@ -4120,15 +4120,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4120
4120
  text?: string | undefined;
4121
4121
  image_url?: string | undefined;
4122
4122
  emoji?: boolean | undefined;
4123
- verbatim?: boolean | undefined;
4124
4123
  alt_text?: string | undefined;
4124
+ verbatim?: boolean | undefined;
4125
4125
  }, {
4126
4126
  type: "image" | "plain_text" | "mrkdwn";
4127
4127
  text?: string | undefined;
4128
4128
  image_url?: string | undefined;
4129
4129
  emoji?: boolean | undefined;
4130
- verbatim?: boolean | undefined;
4131
4130
  alt_text?: string | undefined;
4131
+ verbatim?: boolean | undefined;
4132
4132
  }>, "many">>;
4133
4133
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
4134
4134
  type: z.ZodString;
@@ -4160,15 +4160,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4160
4160
  text?: string | undefined;
4161
4161
  image_url?: string | undefined;
4162
4162
  emoji?: boolean | undefined;
4163
- verbatim?: boolean | undefined;
4164
4163
  alt_text?: string | undefined;
4164
+ verbatim?: boolean | undefined;
4165
4165
  }, {
4166
4166
  type: "image" | "plain_text" | "mrkdwn";
4167
4167
  text?: string | undefined;
4168
4168
  image_url?: string | undefined;
4169
4169
  emoji?: boolean | undefined;
4170
- verbatim?: boolean | undefined;
4171
4170
  alt_text?: string | undefined;
4171
+ verbatim?: boolean | undefined;
4172
4172
  }>, "many">>;
4173
4173
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
4174
4174
  type: z.ZodString;
@@ -4200,15 +4200,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4200
4200
  text?: string | undefined;
4201
4201
  image_url?: string | undefined;
4202
4202
  emoji?: boolean | undefined;
4203
- verbatim?: boolean | undefined;
4204
4203
  alt_text?: string | undefined;
4204
+ verbatim?: boolean | undefined;
4205
4205
  }, {
4206
4206
  type: "image" | "plain_text" | "mrkdwn";
4207
4207
  text?: string | undefined;
4208
4208
  image_url?: string | undefined;
4209
4209
  emoji?: boolean | undefined;
4210
- verbatim?: boolean | undefined;
4211
4210
  alt_text?: string | undefined;
4211
+ verbatim?: boolean | undefined;
4212
4212
  }>, "many">>;
4213
4213
  }, z.ZodTypeAny, "passthrough">>, "many">>;
4214
4214
  thread_ts: z.ZodOptional<z.ZodString>;
@@ -4277,15 +4277,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4277
4277
  text?: string | undefined;
4278
4278
  image_url?: string | undefined;
4279
4279
  emoji?: boolean | undefined;
4280
- verbatim?: boolean | undefined;
4281
4280
  alt_text?: string | undefined;
4281
+ verbatim?: boolean | undefined;
4282
4282
  }, {
4283
4283
  type: "image" | "plain_text" | "mrkdwn";
4284
4284
  text?: string | undefined;
4285
4285
  image_url?: string | undefined;
4286
4286
  emoji?: boolean | undefined;
4287
- verbatim?: boolean | undefined;
4288
4287
  alt_text?: string | undefined;
4288
+ verbatim?: boolean | undefined;
4289
4289
  }>, "many">>;
4290
4290
  }, z.ZodTypeAny, "passthrough">[] | undefined;
4291
4291
  thread_ts?: string | undefined;
@@ -4347,15 +4347,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4347
4347
  text?: string | undefined;
4348
4348
  image_url?: string | undefined;
4349
4349
  emoji?: boolean | undefined;
4350
- verbatim?: boolean | undefined;
4351
4350
  alt_text?: string | undefined;
4351
+ verbatim?: boolean | undefined;
4352
4352
  }, {
4353
4353
  type: "image" | "plain_text" | "mrkdwn";
4354
4354
  text?: string | undefined;
4355
4355
  image_url?: string | undefined;
4356
4356
  emoji?: boolean | undefined;
4357
- verbatim?: boolean | undefined;
4358
4357
  alt_text?: string | undefined;
4358
+ verbatim?: boolean | undefined;
4359
4359
  }>, "many">>;
4360
4360
  }, z.ZodTypeAny, "passthrough">[] | undefined;
4361
4361
  thread_ts?: string | undefined;
@@ -4589,15 +4589,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4589
4589
  text?: string | undefined;
4590
4590
  image_url?: string | undefined;
4591
4591
  emoji?: boolean | undefined;
4592
- verbatim?: boolean | undefined;
4593
4592
  alt_text?: string | undefined;
4593
+ verbatim?: boolean | undefined;
4594
4594
  }, {
4595
4595
  type: "image" | "plain_text" | "mrkdwn";
4596
4596
  text?: string | undefined;
4597
4597
  image_url?: string | undefined;
4598
4598
  emoji?: boolean | undefined;
4599
- verbatim?: boolean | undefined;
4600
4599
  alt_text?: string | undefined;
4600
+ verbatim?: boolean | undefined;
4601
4601
  }>, "many">>;
4602
4602
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
4603
4603
  type: z.ZodString;
@@ -4629,15 +4629,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4629
4629
  text?: string | undefined;
4630
4630
  image_url?: string | undefined;
4631
4631
  emoji?: boolean | undefined;
4632
- verbatim?: boolean | undefined;
4633
4632
  alt_text?: string | undefined;
4633
+ verbatim?: boolean | undefined;
4634
4634
  }, {
4635
4635
  type: "image" | "plain_text" | "mrkdwn";
4636
4636
  text?: string | undefined;
4637
4637
  image_url?: string | undefined;
4638
4638
  emoji?: boolean | undefined;
4639
- verbatim?: boolean | undefined;
4640
4639
  alt_text?: string | undefined;
4640
+ verbatim?: boolean | undefined;
4641
4641
  }>, "many">>;
4642
4642
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
4643
4643
  type: z.ZodString;
@@ -4669,15 +4669,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4669
4669
  text?: string | undefined;
4670
4670
  image_url?: string | undefined;
4671
4671
  emoji?: boolean | undefined;
4672
- verbatim?: boolean | undefined;
4673
4672
  alt_text?: string | undefined;
4673
+ verbatim?: boolean | undefined;
4674
4674
  }, {
4675
4675
  type: "image" | "plain_text" | "mrkdwn";
4676
4676
  text?: string | undefined;
4677
4677
  image_url?: string | undefined;
4678
4678
  emoji?: boolean | undefined;
4679
- verbatim?: boolean | undefined;
4680
4679
  alt_text?: string | undefined;
4680
+ verbatim?: boolean | undefined;
4681
4681
  }>, "many">>;
4682
4682
  }, z.ZodTypeAny, "passthrough">>, "many">>;
4683
4683
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
@@ -4737,15 +4737,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4737
4737
  text?: string | undefined;
4738
4738
  image_url?: string | undefined;
4739
4739
  emoji?: boolean | undefined;
4740
- verbatim?: boolean | undefined;
4741
4740
  alt_text?: string | undefined;
4741
+ verbatim?: boolean | undefined;
4742
4742
  }, {
4743
4743
  type: "image" | "plain_text" | "mrkdwn";
4744
4744
  text?: string | undefined;
4745
4745
  image_url?: string | undefined;
4746
4746
  emoji?: boolean | undefined;
4747
- verbatim?: boolean | undefined;
4748
4747
  alt_text?: string | undefined;
4748
+ verbatim?: boolean | undefined;
4749
4749
  }>, "many">>;
4750
4750
  }, z.ZodTypeAny, "passthrough">[] | undefined;
4751
4751
  }, {
@@ -4804,15 +4804,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4804
4804
  text?: string | undefined;
4805
4805
  image_url?: string | undefined;
4806
4806
  emoji?: boolean | undefined;
4807
- verbatim?: boolean | undefined;
4808
4807
  alt_text?: string | undefined;
4808
+ verbatim?: boolean | undefined;
4809
4809
  }, {
4810
4810
  type: "image" | "plain_text" | "mrkdwn";
4811
4811
  text?: string | undefined;
4812
4812
  image_url?: string | undefined;
4813
4813
  emoji?: boolean | undefined;
4814
- verbatim?: boolean | undefined;
4815
4814
  alt_text?: string | undefined;
4815
+ verbatim?: boolean | undefined;
4816
4816
  }>, "many">>;
4817
4817
  }, z.ZodTypeAny, "passthrough">[] | undefined;
4818
4818
  }>, z.ZodObject<{
@@ -4944,15 +4944,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4944
4944
  text?: string | undefined;
4945
4945
  image_url?: string | undefined;
4946
4946
  emoji?: boolean | undefined;
4947
- verbatim?: boolean | undefined;
4948
4947
  alt_text?: string | undefined;
4948
+ verbatim?: boolean | undefined;
4949
4949
  }, {
4950
4950
  type: "image" | "plain_text" | "mrkdwn";
4951
4951
  text?: string | undefined;
4952
4952
  image_url?: string | undefined;
4953
4953
  emoji?: boolean | undefined;
4954
- verbatim?: boolean | undefined;
4955
4954
  alt_text?: string | undefined;
4955
+ verbatim?: boolean | undefined;
4956
4956
  }>, "many">>;
4957
4957
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
4958
4958
  type: z.ZodString;
@@ -4984,15 +4984,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4984
4984
  text?: string | undefined;
4985
4985
  image_url?: string | undefined;
4986
4986
  emoji?: boolean | undefined;
4987
- verbatim?: boolean | undefined;
4988
4987
  alt_text?: string | undefined;
4988
+ verbatim?: boolean | undefined;
4989
4989
  }, {
4990
4990
  type: "image" | "plain_text" | "mrkdwn";
4991
4991
  text?: string | undefined;
4992
4992
  image_url?: string | undefined;
4993
4993
  emoji?: boolean | undefined;
4994
- verbatim?: boolean | undefined;
4995
4994
  alt_text?: string | undefined;
4995
+ verbatim?: boolean | undefined;
4996
4996
  }>, "many">>;
4997
4997
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
4998
4998
  type: z.ZodString;
@@ -5024,15 +5024,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5024
5024
  text?: string | undefined;
5025
5025
  image_url?: string | undefined;
5026
5026
  emoji?: boolean | undefined;
5027
- verbatim?: boolean | undefined;
5028
5027
  alt_text?: string | undefined;
5028
+ verbatim?: boolean | undefined;
5029
5029
  }, {
5030
5030
  type: "image" | "plain_text" | "mrkdwn";
5031
5031
  text?: string | undefined;
5032
5032
  image_url?: string | undefined;
5033
5033
  emoji?: boolean | undefined;
5034
- verbatim?: boolean | undefined;
5035
5034
  alt_text?: string | undefined;
5035
+ verbatim?: boolean | undefined;
5036
5036
  }>, "many">>;
5037
5037
  }, z.ZodTypeAny, "passthrough">>, "many">>;
5038
5038
  unfurl_links: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
@@ -5076,15 +5076,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5076
5076
  text?: string | undefined;
5077
5077
  image_url?: string | undefined;
5078
5078
  emoji?: boolean | undefined;
5079
- verbatim?: boolean | undefined;
5080
5079
  alt_text?: string | undefined;
5080
+ verbatim?: boolean | undefined;
5081
5081
  }, {
5082
5082
  type: "image" | "plain_text" | "mrkdwn";
5083
5083
  text?: string | undefined;
5084
5084
  image_url?: string | undefined;
5085
5085
  emoji?: boolean | undefined;
5086
- verbatim?: boolean | undefined;
5087
5086
  alt_text?: string | undefined;
5087
+ verbatim?: boolean | undefined;
5088
5088
  }>, "many">>;
5089
5089
  }, z.ZodTypeAny, "passthrough">[] | undefined;
5090
5090
  thread_ts?: string | undefined;
@@ -5124,15 +5124,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5124
5124
  text?: string | undefined;
5125
5125
  image_url?: string | undefined;
5126
5126
  emoji?: boolean | undefined;
5127
- verbatim?: boolean | undefined;
5128
5127
  alt_text?: string | undefined;
5128
+ verbatim?: boolean | undefined;
5129
5129
  }, {
5130
5130
  type: "image" | "plain_text" | "mrkdwn";
5131
5131
  text?: string | undefined;
5132
5132
  image_url?: string | undefined;
5133
5133
  emoji?: boolean | undefined;
5134
- verbatim?: boolean | undefined;
5135
5134
  alt_text?: string | undefined;
5135
+ verbatim?: boolean | undefined;
5136
5136
  }>, "many">>;
5137
5137
  }, z.ZodTypeAny, "passthrough">[] | undefined;
5138
5138
  thread_ts?: string | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"slack.d.ts","sourceRoot":"","sources":["../../../../src/bubbles/service-bubble/slack/slack.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,aAAa,EAAE,MAAM,wCAAwC,CAAC;AACvE,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AAC9D,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAoG3D,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA0iBrB,CAAC;AAmSH,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAmXrB,CAAC;AAEH,KAAK,WAAW,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,iBAAiB,CAAC,CAAC;AACtD,KAAK,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAIrD,MAAM,MAAM,oBAAoB,CAAC,CAAC,SAAS,WAAW,CAAC,WAAW,CAAC,IAAI,OAAO,CAC5E,WAAW,EACX;IAAE,SAAS,EAAE,CAAC,CAAA;CAAE,CACjB,CAAC;AAkBF,qBAAa,WAAW,CACtB,CAAC,SAAS,WAAW,GAAG,WAAW,CACnC,SAAQ,aAAa,CACrB,CAAC,EACD,OAAO,CAAC,WAAW,EAAE;IAAE,SAAS,EAAE,CAAC,CAAC,WAAW,CAAC,CAAA;CAAE,CAAC,CACpD;IACc,cAAc,IAAI,OAAO,CAAC,OAAO,CAAC;IAQ/C,MAAM,CAAC,QAAQ,CAAC,IAAI,EAAG,SAAS,CAAU;IAC1C,MAAM,CAAC,QAAQ,CAAC,OAAO,WAAW;IAClC,MAAM,CAAC,QAAQ,CAAC,QAAQ,EAAG,QAAQ,CAAU;IAC7C,MAAM,CAAC,QAAQ,CAAC,UAAU,WAAW;IACrC,MAAM,CAAC,QAAQ,CAAC,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SAAqB;IAC3C,MAAM,CAAC,QAAQ,CAAC,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SAAqB;IACjD,MAAM,CAAC,QAAQ,CAAC,gBAAgB,8DAC6B;IAC7D,MAAM,CAAC,QAAQ,CAAC,eAAe,mFAE7B;IACF,MAAM,CAAC,QAAQ,CAAC,KAAK,WAAW;gBAG9B,MAAM,GAAE,CAEF,EACN,OAAO,CAAC,EAAE,aAAa,EACvB,UAAU,CAAC,EAAE,MAAM;cAKL,aAAa,CAC3B,OAAO,CAAC,EAAE,aAAa,GACtB,OAAO,CAAC,OAAO,CAAC,WAAW,EAAE;QAAE,SAAS,EAAE,CAAC,CAAC,WAAW,CAAC,CAAA;KAAE,CAAC,CAAC;IA8D/D;;;;OAIG;YACW,gBAAgB;IAiD9B,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,sBAAsB,CAAM;YAEtC,WAAW;IAsFzB;;;OAGG;YACW,0BAA0B;YAwG1B,YAAY;YA4CZ,cAAc;YAoCd,WAAW;YAiCX,SAAS;YA2CT,sBAAsB;YAmDtB,gBAAgB;YAiDhB,aAAa;YAkCb,aAAa;YAyBb,WAAW;YAwBX,cAAc;YAwBd,UAAU;YA0KV,WAAW;YA6BX,eAAe;YA8Cf,WAAW;YA+DX,YAAY;IA8G1B;;;OAGG;YACW,kBAAkB;IAsBhC,SAAS,CAAC,gBAAgB,IAAI,MAAM,GAAG,SAAS;YAclC,gBAAgB;CAuF/B"}
1
+ {"version":3,"file":"slack.d.ts","sourceRoot":"","sources":["../../../../src/bubbles/service-bubble/slack/slack.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,aAAa,EAAE,MAAM,wCAAwC,CAAC;AACvE,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AAC9D,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAoG3D,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA0iBrB,CAAC;AAmSH,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAmXrB,CAAC;AAEH,KAAK,WAAW,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,iBAAiB,CAAC,CAAC;AACtD,KAAK,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAIrD,MAAM,MAAM,oBAAoB,CAAC,CAAC,SAAS,WAAW,CAAC,WAAW,CAAC,IAAI,OAAO,CAC5E,WAAW,EACX;IAAE,SAAS,EAAE,CAAC,CAAA;CAAE,CACjB,CAAC;AAkBF,qBAAa,WAAW,CACtB,CAAC,SAAS,WAAW,GAAG,WAAW,CACnC,SAAQ,aAAa,CACrB,CAAC,EACD,OAAO,CAAC,WAAW,EAAE;IAAE,SAAS,EAAE,CAAC,CAAC,WAAW,CAAC,CAAA;CAAE,CAAC,CACpD;IACc,cAAc,IAAI,OAAO,CAAC,OAAO,CAAC;IAQ/C,MAAM,CAAC,QAAQ,CAAC,IAAI,EAAG,SAAS,CAAU;IAC1C,MAAM,CAAC,QAAQ,CAAC,OAAO,WAAW;IAClC,MAAM,CAAC,QAAQ,CAAC,QAAQ,EAAG,QAAQ,CAAU;IAC7C,MAAM,CAAC,QAAQ,CAAC,UAAU,WAAW;IACrC,MAAM,CAAC,QAAQ,CAAC,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SAAqB;IAC3C,MAAM,CAAC,QAAQ,CAAC,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SAAqB;IACjD,MAAM,CAAC,QAAQ,CAAC,gBAAgB,8DAC6B;IAC7D,MAAM,CAAC,QAAQ,CAAC,eAAe,mFAE7B;IACF,MAAM,CAAC,QAAQ,CAAC,KAAK,WAAW;gBAG9B,MAAM,GAAE,CAEF,EACN,OAAO,CAAC,EAAE,aAAa,EACvB,UAAU,CAAC,EAAE,MAAM;cAKL,aAAa,CAC3B,OAAO,CAAC,EAAE,aAAa,GACtB,OAAO,CAAC,OAAO,CAAC,WAAW,EAAE;QAAE,SAAS,EAAE,CAAC,CAAC,WAAW,CAAC,CAAA;KAAE,CAAC,CAAC;IA8D/D;;;;OAIG;YACW,gBAAgB;IAiD9B,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,sBAAsB,CAAM;YAEtC,WAAW;IAsFzB;;;OAGG;YACW,0BAA0B;YAwG1B,YAAY;YA4CZ,cAAc;YAoCd,WAAW;YAiCX,SAAS;YA2CT,sBAAsB;YAmDtB,gBAAgB;YAiDhB,aAAa;YAkCb,aAAa;YAyBb,WAAW;YAwBX,cAAc;YAwBd,UAAU;YA0KV,WAAW;YA6BX,eAAe;YA8Cf,WAAW;YA+DX,YAAY;IA8G1B;;;OAGG;YACW,kBAAkB;IAsBhC,SAAS,CAAC,gBAAgB,IAAI,MAAM,GAAG,SAAS;YAiBlC,gBAAgB;CA6F/B"}