@channel.io/app-sdk-core 0.10.0 → 0.11.0

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.
@@ -0,0 +1,1506 @@
1
+ import { z } from "zod";
2
+ import type { Context } from "../types/context.js";
3
+ import type { ExtensionDefinition } from "../types/extension.js";
4
+ export declare const StoreMediaTypeSchema: z.ZodEnum<["image", "video"]>;
5
+ export type StoreMediaType = z.infer<typeof StoreMediaTypeSchema>;
6
+ export declare const StoreMediaSchema: z.ZodObject<{
7
+ type: z.ZodEnum<["image", "video"]>;
8
+ url: z.ZodString;
9
+ thumbnailUrl: z.ZodOptional<z.ZodString>;
10
+ alt: z.ZodOptional<z.ZodString>;
11
+ }, "strip", z.ZodTypeAny, {
12
+ type: "image" | "video";
13
+ url: string;
14
+ thumbnailUrl?: string | undefined;
15
+ alt?: string | undefined;
16
+ }, {
17
+ type: "image" | "video";
18
+ url: string;
19
+ thumbnailUrl?: string | undefined;
20
+ alt?: string | undefined;
21
+ }>;
22
+ export type StoreMedia = z.infer<typeof StoreMediaSchema>;
23
+ export declare const StoreTargetUserSchema: z.ZodObject<{
24
+ key: z.ZodString;
25
+ label: z.ZodString;
26
+ description: z.ZodOptional<z.ZodString>;
27
+ }, "strip", z.ZodTypeAny, {
28
+ label: string;
29
+ key: string;
30
+ description?: string | undefined;
31
+ }, {
32
+ label: string;
33
+ key: string;
34
+ description?: string | undefined;
35
+ }>;
36
+ export type StoreTargetUser = z.infer<typeof StoreTargetUserSchema>;
37
+ export declare const StoreUseCaseSchema: z.ZodObject<{
38
+ id: z.ZodString;
39
+ title: z.ZodString;
40
+ description: z.ZodOptional<z.ZodString>;
41
+ surfaceKeys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
42
+ requiredAppIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
43
+ }, "strip", z.ZodTypeAny, {
44
+ id: string;
45
+ title: string;
46
+ description?: string | undefined;
47
+ surfaceKeys?: string[] | undefined;
48
+ requiredAppIds?: string[] | undefined;
49
+ }, {
50
+ id: string;
51
+ title: string;
52
+ description?: string | undefined;
53
+ surfaceKeys?: string[] | undefined;
54
+ requiredAppIds?: string[] | undefined;
55
+ }>;
56
+ export type StoreUseCase = z.infer<typeof StoreUseCaseSchema>;
57
+ export declare const StoreCapabilitySchema: z.ZodObject<{
58
+ key: z.ZodString;
59
+ label: z.ZodString;
60
+ description: z.ZodOptional<z.ZodString>;
61
+ }, "strip", z.ZodTypeAny, {
62
+ label: string;
63
+ key: string;
64
+ description?: string | undefined;
65
+ }, {
66
+ label: string;
67
+ key: string;
68
+ description?: string | undefined;
69
+ }>;
70
+ export type StoreCapability = z.infer<typeof StoreCapabilitySchema>;
71
+ export declare const StoreSurfaceSchema: z.ZodObject<{
72
+ key: z.ZodString;
73
+ label: z.ZodString;
74
+ description: z.ZodOptional<z.ZodString>;
75
+ }, "strip", z.ZodTypeAny, {
76
+ label: string;
77
+ key: string;
78
+ description?: string | undefined;
79
+ }, {
80
+ label: string;
81
+ key: string;
82
+ description?: string | undefined;
83
+ }>;
84
+ export type StoreSurface = z.infer<typeof StoreSurfaceSchema>;
85
+ export declare const StoreRelationshipTypeSchema: z.ZodEnum<["dependsOn", "worksBestWith", "alternative", "replaces", "requiredBy"]>;
86
+ export type StoreRelationshipType = z.infer<typeof StoreRelationshipTypeSchema>;
87
+ export declare const StoreRelationshipSchema: z.ZodObject<{
88
+ type: z.ZodEnum<["dependsOn", "worksBestWith", "alternative", "replaces", "requiredBy"]>;
89
+ appId: z.ZodString;
90
+ label: z.ZodOptional<z.ZodString>;
91
+ description: z.ZodOptional<z.ZodString>;
92
+ }, "strip", z.ZodTypeAny, {
93
+ type: "dependsOn" | "worksBestWith" | "alternative" | "replaces" | "requiredBy";
94
+ appId: string;
95
+ description?: string | undefined;
96
+ label?: string | undefined;
97
+ }, {
98
+ type: "dependsOn" | "worksBestWith" | "alternative" | "replaces" | "requiredBy";
99
+ appId: string;
100
+ description?: string | undefined;
101
+ label?: string | undefined;
102
+ }>;
103
+ export type StoreRelationship = z.infer<typeof StoreRelationshipSchema>;
104
+ export declare const StoreSetupStepSchema: z.ZodObject<{
105
+ id: z.ZodString;
106
+ title: z.ZodString;
107
+ description: z.ZodOptional<z.ZodString>;
108
+ externalUrl: z.ZodOptional<z.ZodString>;
109
+ }, "strip", z.ZodTypeAny, {
110
+ id: string;
111
+ title: string;
112
+ description?: string | undefined;
113
+ externalUrl?: string | undefined;
114
+ }, {
115
+ id: string;
116
+ title: string;
117
+ description?: string | undefined;
118
+ externalUrl?: string | undefined;
119
+ }>;
120
+ export type StoreSetupStep = z.infer<typeof StoreSetupStepSchema>;
121
+ export declare const StoreSetupFieldSchema: z.ZodObject<{
122
+ key: z.ZodString;
123
+ label: z.ZodString;
124
+ description: z.ZodOptional<z.ZodString>;
125
+ example: z.ZodOptional<z.ZodString>;
126
+ helpUrl: z.ZodOptional<z.ZodString>;
127
+ }, "strip", z.ZodTypeAny, {
128
+ label: string;
129
+ key: string;
130
+ description?: string | undefined;
131
+ example?: string | undefined;
132
+ helpUrl?: string | undefined;
133
+ }, {
134
+ label: string;
135
+ key: string;
136
+ description?: string | undefined;
137
+ example?: string | undefined;
138
+ helpUrl?: string | undefined;
139
+ }>;
140
+ export type StoreSetupField = z.infer<typeof StoreSetupFieldSchema>;
141
+ export declare const StoreSetupOverviewSchema: z.ZodObject<{
142
+ steps: z.ZodOptional<z.ZodArray<z.ZodObject<{
143
+ id: z.ZodString;
144
+ title: z.ZodString;
145
+ description: z.ZodOptional<z.ZodString>;
146
+ externalUrl: z.ZodOptional<z.ZodString>;
147
+ }, "strip", z.ZodTypeAny, {
148
+ id: string;
149
+ title: string;
150
+ description?: string | undefined;
151
+ externalUrl?: string | undefined;
152
+ }, {
153
+ id: string;
154
+ title: string;
155
+ description?: string | undefined;
156
+ externalUrl?: string | undefined;
157
+ }>, "many">>;
158
+ fields: z.ZodOptional<z.ZodArray<z.ZodObject<{
159
+ key: z.ZodString;
160
+ label: z.ZodString;
161
+ description: z.ZodOptional<z.ZodString>;
162
+ example: z.ZodOptional<z.ZodString>;
163
+ helpUrl: z.ZodOptional<z.ZodString>;
164
+ }, "strip", z.ZodTypeAny, {
165
+ label: string;
166
+ key: string;
167
+ description?: string | undefined;
168
+ example?: string | undefined;
169
+ helpUrl?: string | undefined;
170
+ }, {
171
+ label: string;
172
+ key: string;
173
+ description?: string | undefined;
174
+ example?: string | undefined;
175
+ helpUrl?: string | undefined;
176
+ }>, "many">>;
177
+ estimatedTimeText: z.ZodOptional<z.ZodString>;
178
+ }, "strip", z.ZodTypeAny, {
179
+ fields?: {
180
+ label: string;
181
+ key: string;
182
+ description?: string | undefined;
183
+ example?: string | undefined;
184
+ helpUrl?: string | undefined;
185
+ }[] | undefined;
186
+ steps?: {
187
+ id: string;
188
+ title: string;
189
+ description?: string | undefined;
190
+ externalUrl?: string | undefined;
191
+ }[] | undefined;
192
+ estimatedTimeText?: string | undefined;
193
+ }, {
194
+ fields?: {
195
+ label: string;
196
+ key: string;
197
+ description?: string | undefined;
198
+ example?: string | undefined;
199
+ helpUrl?: string | undefined;
200
+ }[] | undefined;
201
+ steps?: {
202
+ id: string;
203
+ title: string;
204
+ description?: string | undefined;
205
+ externalUrl?: string | undefined;
206
+ }[] | undefined;
207
+ estimatedTimeText?: string | undefined;
208
+ }>;
209
+ export type StoreSetupOverview = z.infer<typeof StoreSetupOverviewSchema>;
210
+ export declare const StoreGuideSectionSchema: z.ZodObject<{
211
+ id: z.ZodString;
212
+ title: z.ZodString;
213
+ blocks: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
214
+ }, "strip", z.ZodTypeAny, {
215
+ id: string;
216
+ title: string;
217
+ blocks?: Record<string, unknown>[] | undefined;
218
+ }, {
219
+ id: string;
220
+ title: string;
221
+ blocks?: Record<string, unknown>[] | undefined;
222
+ }>;
223
+ export type StoreGuideSection = z.infer<typeof StoreGuideSectionSchema>;
224
+ export declare const StoreFaqSchema: z.ZodObject<{
225
+ question: z.ZodString;
226
+ answer: z.ZodString;
227
+ }, "strip", z.ZodTypeAny, {
228
+ question: string;
229
+ answer: string;
230
+ }, {
231
+ question: string;
232
+ answer: string;
233
+ }>;
234
+ export type StoreFaq = z.infer<typeof StoreFaqSchema>;
235
+ export declare const StoreCaseStudySchema: z.ZodObject<{
236
+ title: z.ZodString;
237
+ summary: z.ZodOptional<z.ZodString>;
238
+ url: z.ZodOptional<z.ZodString>;
239
+ metrics: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
240
+ }, "strip", z.ZodTypeAny, {
241
+ title: string;
242
+ url?: string | undefined;
243
+ summary?: string | undefined;
244
+ metrics?: string[] | undefined;
245
+ }, {
246
+ title: string;
247
+ url?: string | undefined;
248
+ summary?: string | undefined;
249
+ metrics?: string[] | undefined;
250
+ }>;
251
+ export type StoreCaseStudy = z.infer<typeof StoreCaseStudySchema>;
252
+ export declare const StoreProfileI18nSchema: z.ZodObject<{
253
+ headline: z.ZodOptional<z.ZodString>;
254
+ summary: z.ZodOptional<z.ZodString>;
255
+ targetUsers: z.ZodOptional<z.ZodArray<z.ZodObject<{
256
+ key: z.ZodString;
257
+ label: z.ZodString;
258
+ description: z.ZodOptional<z.ZodString>;
259
+ }, "strip", z.ZodTypeAny, {
260
+ label: string;
261
+ key: string;
262
+ description?: string | undefined;
263
+ }, {
264
+ label: string;
265
+ key: string;
266
+ description?: string | undefined;
267
+ }>, "many">>;
268
+ primaryUseCases: z.ZodOptional<z.ZodArray<z.ZodObject<{
269
+ id: z.ZodString;
270
+ title: z.ZodString;
271
+ description: z.ZodOptional<z.ZodString>;
272
+ surfaceKeys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
273
+ requiredAppIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
274
+ }, "strip", z.ZodTypeAny, {
275
+ id: string;
276
+ title: string;
277
+ description?: string | undefined;
278
+ surfaceKeys?: string[] | undefined;
279
+ requiredAppIds?: string[] | undefined;
280
+ }, {
281
+ id: string;
282
+ title: string;
283
+ description?: string | undefined;
284
+ surfaceKeys?: string[] | undefined;
285
+ requiredAppIds?: string[] | undefined;
286
+ }>, "many">>;
287
+ guideSections: z.ZodOptional<z.ZodArray<z.ZodObject<{
288
+ id: z.ZodString;
289
+ title: z.ZodString;
290
+ blocks: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
291
+ }, "strip", z.ZodTypeAny, {
292
+ id: string;
293
+ title: string;
294
+ blocks?: Record<string, unknown>[] | undefined;
295
+ }, {
296
+ id: string;
297
+ title: string;
298
+ blocks?: Record<string, unknown>[] | undefined;
299
+ }>, "many">>;
300
+ faqs: z.ZodOptional<z.ZodArray<z.ZodObject<{
301
+ question: z.ZodString;
302
+ answer: z.ZodString;
303
+ }, "strip", z.ZodTypeAny, {
304
+ question: string;
305
+ answer: string;
306
+ }, {
307
+ question: string;
308
+ answer: string;
309
+ }>, "many">>;
310
+ caseStudy: z.ZodOptional<z.ZodObject<{
311
+ title: z.ZodString;
312
+ summary: z.ZodOptional<z.ZodString>;
313
+ url: z.ZodOptional<z.ZodString>;
314
+ metrics: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
315
+ }, "strip", z.ZodTypeAny, {
316
+ title: string;
317
+ url?: string | undefined;
318
+ summary?: string | undefined;
319
+ metrics?: string[] | undefined;
320
+ }, {
321
+ title: string;
322
+ url?: string | undefined;
323
+ summary?: string | undefined;
324
+ metrics?: string[] | undefined;
325
+ }>>;
326
+ pricingNote: z.ZodOptional<z.ZodString>;
327
+ }, "strip", z.ZodTypeAny, {
328
+ summary?: string | undefined;
329
+ headline?: string | undefined;
330
+ targetUsers?: {
331
+ label: string;
332
+ key: string;
333
+ description?: string | undefined;
334
+ }[] | undefined;
335
+ primaryUseCases?: {
336
+ id: string;
337
+ title: string;
338
+ description?: string | undefined;
339
+ surfaceKeys?: string[] | undefined;
340
+ requiredAppIds?: string[] | undefined;
341
+ }[] | undefined;
342
+ guideSections?: {
343
+ id: string;
344
+ title: string;
345
+ blocks?: Record<string, unknown>[] | undefined;
346
+ }[] | undefined;
347
+ faqs?: {
348
+ question: string;
349
+ answer: string;
350
+ }[] | undefined;
351
+ caseStudy?: {
352
+ title: string;
353
+ url?: string | undefined;
354
+ summary?: string | undefined;
355
+ metrics?: string[] | undefined;
356
+ } | undefined;
357
+ pricingNote?: string | undefined;
358
+ }, {
359
+ summary?: string | undefined;
360
+ headline?: string | undefined;
361
+ targetUsers?: {
362
+ label: string;
363
+ key: string;
364
+ description?: string | undefined;
365
+ }[] | undefined;
366
+ primaryUseCases?: {
367
+ id: string;
368
+ title: string;
369
+ description?: string | undefined;
370
+ surfaceKeys?: string[] | undefined;
371
+ requiredAppIds?: string[] | undefined;
372
+ }[] | undefined;
373
+ guideSections?: {
374
+ id: string;
375
+ title: string;
376
+ blocks?: Record<string, unknown>[] | undefined;
377
+ }[] | undefined;
378
+ faqs?: {
379
+ question: string;
380
+ answer: string;
381
+ }[] | undefined;
382
+ caseStudy?: {
383
+ title: string;
384
+ url?: string | undefined;
385
+ summary?: string | undefined;
386
+ metrics?: string[] | undefined;
387
+ } | undefined;
388
+ pricingNote?: string | undefined;
389
+ }>;
390
+ export type StoreProfileI18n = z.infer<typeof StoreProfileI18nSchema>;
391
+ export declare const StoreProfileSchema: z.ZodObject<{
392
+ providerName: z.ZodOptional<z.ZodString>;
393
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
394
+ headline: z.ZodString;
395
+ summary: z.ZodString;
396
+ primaryScreenshotUrl: z.ZodString;
397
+ targetUsers: z.ZodArray<z.ZodObject<{
398
+ key: z.ZodString;
399
+ label: z.ZodString;
400
+ description: z.ZodOptional<z.ZodString>;
401
+ }, "strip", z.ZodTypeAny, {
402
+ label: string;
403
+ key: string;
404
+ description?: string | undefined;
405
+ }, {
406
+ label: string;
407
+ key: string;
408
+ description?: string | undefined;
409
+ }>, "many">;
410
+ primaryUseCases: z.ZodArray<z.ZodObject<{
411
+ id: z.ZodString;
412
+ title: z.ZodString;
413
+ description: z.ZodOptional<z.ZodString>;
414
+ surfaceKeys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
415
+ requiredAppIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
416
+ }, "strip", z.ZodTypeAny, {
417
+ id: string;
418
+ title: string;
419
+ description?: string | undefined;
420
+ surfaceKeys?: string[] | undefined;
421
+ requiredAppIds?: string[] | undefined;
422
+ }, {
423
+ id: string;
424
+ title: string;
425
+ description?: string | undefined;
426
+ surfaceKeys?: string[] | undefined;
427
+ requiredAppIds?: string[] | undefined;
428
+ }>, "many">;
429
+ media: z.ZodArray<z.ZodObject<{
430
+ type: z.ZodEnum<["image", "video"]>;
431
+ url: z.ZodString;
432
+ thumbnailUrl: z.ZodOptional<z.ZodString>;
433
+ alt: z.ZodOptional<z.ZodString>;
434
+ }, "strip", z.ZodTypeAny, {
435
+ type: "image" | "video";
436
+ url: string;
437
+ thumbnailUrl?: string | undefined;
438
+ alt?: string | undefined;
439
+ }, {
440
+ type: "image" | "video";
441
+ url: string;
442
+ thumbnailUrl?: string | undefined;
443
+ alt?: string | undefined;
444
+ }>, "many">;
445
+ capabilities: z.ZodOptional<z.ZodArray<z.ZodObject<{
446
+ key: z.ZodString;
447
+ label: z.ZodString;
448
+ description: z.ZodOptional<z.ZodString>;
449
+ }, "strip", z.ZodTypeAny, {
450
+ label: string;
451
+ key: string;
452
+ description?: string | undefined;
453
+ }, {
454
+ label: string;
455
+ key: string;
456
+ description?: string | undefined;
457
+ }>, "many">>;
458
+ surfaces: z.ZodOptional<z.ZodArray<z.ZodObject<{
459
+ key: z.ZodString;
460
+ label: z.ZodString;
461
+ description: z.ZodOptional<z.ZodString>;
462
+ }, "strip", z.ZodTypeAny, {
463
+ label: string;
464
+ key: string;
465
+ description?: string | undefined;
466
+ }, {
467
+ label: string;
468
+ key: string;
469
+ description?: string | undefined;
470
+ }>, "many">>;
471
+ relationships: z.ZodOptional<z.ZodArray<z.ZodObject<{
472
+ type: z.ZodEnum<["dependsOn", "worksBestWith", "alternative", "replaces", "requiredBy"]>;
473
+ appId: z.ZodString;
474
+ label: z.ZodOptional<z.ZodString>;
475
+ description: z.ZodOptional<z.ZodString>;
476
+ }, "strip", z.ZodTypeAny, {
477
+ type: "dependsOn" | "worksBestWith" | "alternative" | "replaces" | "requiredBy";
478
+ appId: string;
479
+ description?: string | undefined;
480
+ label?: string | undefined;
481
+ }, {
482
+ type: "dependsOn" | "worksBestWith" | "alternative" | "replaces" | "requiredBy";
483
+ appId: string;
484
+ description?: string | undefined;
485
+ label?: string | undefined;
486
+ }>, "many">>;
487
+ setupOverview: z.ZodOptional<z.ZodObject<{
488
+ steps: z.ZodOptional<z.ZodArray<z.ZodObject<{
489
+ id: z.ZodString;
490
+ title: z.ZodString;
491
+ description: z.ZodOptional<z.ZodString>;
492
+ externalUrl: z.ZodOptional<z.ZodString>;
493
+ }, "strip", z.ZodTypeAny, {
494
+ id: string;
495
+ title: string;
496
+ description?: string | undefined;
497
+ externalUrl?: string | undefined;
498
+ }, {
499
+ id: string;
500
+ title: string;
501
+ description?: string | undefined;
502
+ externalUrl?: string | undefined;
503
+ }>, "many">>;
504
+ fields: z.ZodOptional<z.ZodArray<z.ZodObject<{
505
+ key: z.ZodString;
506
+ label: z.ZodString;
507
+ description: z.ZodOptional<z.ZodString>;
508
+ example: z.ZodOptional<z.ZodString>;
509
+ helpUrl: z.ZodOptional<z.ZodString>;
510
+ }, "strip", z.ZodTypeAny, {
511
+ label: string;
512
+ key: string;
513
+ description?: string | undefined;
514
+ example?: string | undefined;
515
+ helpUrl?: string | undefined;
516
+ }, {
517
+ label: string;
518
+ key: string;
519
+ description?: string | undefined;
520
+ example?: string | undefined;
521
+ helpUrl?: string | undefined;
522
+ }>, "many">>;
523
+ estimatedTimeText: z.ZodOptional<z.ZodString>;
524
+ }, "strip", z.ZodTypeAny, {
525
+ fields?: {
526
+ label: string;
527
+ key: string;
528
+ description?: string | undefined;
529
+ example?: string | undefined;
530
+ helpUrl?: string | undefined;
531
+ }[] | undefined;
532
+ steps?: {
533
+ id: string;
534
+ title: string;
535
+ description?: string | undefined;
536
+ externalUrl?: string | undefined;
537
+ }[] | undefined;
538
+ estimatedTimeText?: string | undefined;
539
+ }, {
540
+ fields?: {
541
+ label: string;
542
+ key: string;
543
+ description?: string | undefined;
544
+ example?: string | undefined;
545
+ helpUrl?: string | undefined;
546
+ }[] | undefined;
547
+ steps?: {
548
+ id: string;
549
+ title: string;
550
+ description?: string | undefined;
551
+ externalUrl?: string | undefined;
552
+ }[] | undefined;
553
+ estimatedTimeText?: string | undefined;
554
+ }>>;
555
+ guideSections: z.ZodOptional<z.ZodArray<z.ZodObject<{
556
+ id: z.ZodString;
557
+ title: z.ZodString;
558
+ blocks: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
559
+ }, "strip", z.ZodTypeAny, {
560
+ id: string;
561
+ title: string;
562
+ blocks?: Record<string, unknown>[] | undefined;
563
+ }, {
564
+ id: string;
565
+ title: string;
566
+ blocks?: Record<string, unknown>[] | undefined;
567
+ }>, "many">>;
568
+ faqs: z.ZodOptional<z.ZodArray<z.ZodObject<{
569
+ question: z.ZodString;
570
+ answer: z.ZodString;
571
+ }, "strip", z.ZodTypeAny, {
572
+ question: string;
573
+ answer: string;
574
+ }, {
575
+ question: string;
576
+ answer: string;
577
+ }>, "many">>;
578
+ externalGuideUrl: z.ZodOptional<z.ZodString>;
579
+ caseStudy: z.ZodOptional<z.ZodObject<{
580
+ title: z.ZodString;
581
+ summary: z.ZodOptional<z.ZodString>;
582
+ url: z.ZodOptional<z.ZodString>;
583
+ metrics: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
584
+ }, "strip", z.ZodTypeAny, {
585
+ title: string;
586
+ url?: string | undefined;
587
+ summary?: string | undefined;
588
+ metrics?: string[] | undefined;
589
+ }, {
590
+ title: string;
591
+ url?: string | undefined;
592
+ summary?: string | undefined;
593
+ metrics?: string[] | undefined;
594
+ }>>;
595
+ pricingNote: z.ZodOptional<z.ZodString>;
596
+ i18nMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
597
+ headline: z.ZodOptional<z.ZodString>;
598
+ summary: z.ZodOptional<z.ZodString>;
599
+ targetUsers: z.ZodOptional<z.ZodArray<z.ZodObject<{
600
+ key: z.ZodString;
601
+ label: z.ZodString;
602
+ description: z.ZodOptional<z.ZodString>;
603
+ }, "strip", z.ZodTypeAny, {
604
+ label: string;
605
+ key: string;
606
+ description?: string | undefined;
607
+ }, {
608
+ label: string;
609
+ key: string;
610
+ description?: string | undefined;
611
+ }>, "many">>;
612
+ primaryUseCases: z.ZodOptional<z.ZodArray<z.ZodObject<{
613
+ id: z.ZodString;
614
+ title: z.ZodString;
615
+ description: z.ZodOptional<z.ZodString>;
616
+ surfaceKeys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
617
+ requiredAppIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
618
+ }, "strip", z.ZodTypeAny, {
619
+ id: string;
620
+ title: string;
621
+ description?: string | undefined;
622
+ surfaceKeys?: string[] | undefined;
623
+ requiredAppIds?: string[] | undefined;
624
+ }, {
625
+ id: string;
626
+ title: string;
627
+ description?: string | undefined;
628
+ surfaceKeys?: string[] | undefined;
629
+ requiredAppIds?: string[] | undefined;
630
+ }>, "many">>;
631
+ guideSections: z.ZodOptional<z.ZodArray<z.ZodObject<{
632
+ id: z.ZodString;
633
+ title: z.ZodString;
634
+ blocks: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
635
+ }, "strip", z.ZodTypeAny, {
636
+ id: string;
637
+ title: string;
638
+ blocks?: Record<string, unknown>[] | undefined;
639
+ }, {
640
+ id: string;
641
+ title: string;
642
+ blocks?: Record<string, unknown>[] | undefined;
643
+ }>, "many">>;
644
+ faqs: z.ZodOptional<z.ZodArray<z.ZodObject<{
645
+ question: z.ZodString;
646
+ answer: z.ZodString;
647
+ }, "strip", z.ZodTypeAny, {
648
+ question: string;
649
+ answer: string;
650
+ }, {
651
+ question: string;
652
+ answer: string;
653
+ }>, "many">>;
654
+ caseStudy: z.ZodOptional<z.ZodObject<{
655
+ title: z.ZodString;
656
+ summary: z.ZodOptional<z.ZodString>;
657
+ url: z.ZodOptional<z.ZodString>;
658
+ metrics: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
659
+ }, "strip", z.ZodTypeAny, {
660
+ title: string;
661
+ url?: string | undefined;
662
+ summary?: string | undefined;
663
+ metrics?: string[] | undefined;
664
+ }, {
665
+ title: string;
666
+ url?: string | undefined;
667
+ summary?: string | undefined;
668
+ metrics?: string[] | undefined;
669
+ }>>;
670
+ pricingNote: z.ZodOptional<z.ZodString>;
671
+ }, "strip", z.ZodTypeAny, {
672
+ summary?: string | undefined;
673
+ headline?: string | undefined;
674
+ targetUsers?: {
675
+ label: string;
676
+ key: string;
677
+ description?: string | undefined;
678
+ }[] | undefined;
679
+ primaryUseCases?: {
680
+ id: string;
681
+ title: string;
682
+ description?: string | undefined;
683
+ surfaceKeys?: string[] | undefined;
684
+ requiredAppIds?: string[] | undefined;
685
+ }[] | undefined;
686
+ guideSections?: {
687
+ id: string;
688
+ title: string;
689
+ blocks?: Record<string, unknown>[] | undefined;
690
+ }[] | undefined;
691
+ faqs?: {
692
+ question: string;
693
+ answer: string;
694
+ }[] | undefined;
695
+ caseStudy?: {
696
+ title: string;
697
+ url?: string | undefined;
698
+ summary?: string | undefined;
699
+ metrics?: string[] | undefined;
700
+ } | undefined;
701
+ pricingNote?: string | undefined;
702
+ }, {
703
+ summary?: string | undefined;
704
+ headline?: string | undefined;
705
+ targetUsers?: {
706
+ label: string;
707
+ key: string;
708
+ description?: string | undefined;
709
+ }[] | undefined;
710
+ primaryUseCases?: {
711
+ id: string;
712
+ title: string;
713
+ description?: string | undefined;
714
+ surfaceKeys?: string[] | undefined;
715
+ requiredAppIds?: string[] | undefined;
716
+ }[] | undefined;
717
+ guideSections?: {
718
+ id: string;
719
+ title: string;
720
+ blocks?: Record<string, unknown>[] | undefined;
721
+ }[] | undefined;
722
+ faqs?: {
723
+ question: string;
724
+ answer: string;
725
+ }[] | undefined;
726
+ caseStudy?: {
727
+ title: string;
728
+ url?: string | undefined;
729
+ summary?: string | undefined;
730
+ metrics?: string[] | undefined;
731
+ } | undefined;
732
+ pricingNote?: string | undefined;
733
+ }>>>;
734
+ }, "strip", z.ZodTypeAny, {
735
+ media: {
736
+ type: "image" | "video";
737
+ url: string;
738
+ thumbnailUrl?: string | undefined;
739
+ alt?: string | undefined;
740
+ }[];
741
+ summary: string;
742
+ headline: string;
743
+ targetUsers: {
744
+ label: string;
745
+ key: string;
746
+ description?: string | undefined;
747
+ }[];
748
+ primaryUseCases: {
749
+ id: string;
750
+ title: string;
751
+ description?: string | undefined;
752
+ surfaceKeys?: string[] | undefined;
753
+ requiredAppIds?: string[] | undefined;
754
+ }[];
755
+ primaryScreenshotUrl: string;
756
+ providerName?: string | undefined;
757
+ guideSections?: {
758
+ id: string;
759
+ title: string;
760
+ blocks?: Record<string, unknown>[] | undefined;
761
+ }[] | undefined;
762
+ faqs?: {
763
+ question: string;
764
+ answer: string;
765
+ }[] | undefined;
766
+ caseStudy?: {
767
+ title: string;
768
+ url?: string | undefined;
769
+ summary?: string | undefined;
770
+ metrics?: string[] | undefined;
771
+ } | undefined;
772
+ pricingNote?: string | undefined;
773
+ categories?: string[] | undefined;
774
+ capabilities?: {
775
+ label: string;
776
+ key: string;
777
+ description?: string | undefined;
778
+ }[] | undefined;
779
+ surfaces?: {
780
+ label: string;
781
+ key: string;
782
+ description?: string | undefined;
783
+ }[] | undefined;
784
+ relationships?: {
785
+ type: "dependsOn" | "worksBestWith" | "alternative" | "replaces" | "requiredBy";
786
+ appId: string;
787
+ description?: string | undefined;
788
+ label?: string | undefined;
789
+ }[] | undefined;
790
+ setupOverview?: {
791
+ fields?: {
792
+ label: string;
793
+ key: string;
794
+ description?: string | undefined;
795
+ example?: string | undefined;
796
+ helpUrl?: string | undefined;
797
+ }[] | undefined;
798
+ steps?: {
799
+ id: string;
800
+ title: string;
801
+ description?: string | undefined;
802
+ externalUrl?: string | undefined;
803
+ }[] | undefined;
804
+ estimatedTimeText?: string | undefined;
805
+ } | undefined;
806
+ externalGuideUrl?: string | undefined;
807
+ i18nMap?: Record<string, {
808
+ summary?: string | undefined;
809
+ headline?: string | undefined;
810
+ targetUsers?: {
811
+ label: string;
812
+ key: string;
813
+ description?: string | undefined;
814
+ }[] | undefined;
815
+ primaryUseCases?: {
816
+ id: string;
817
+ title: string;
818
+ description?: string | undefined;
819
+ surfaceKeys?: string[] | undefined;
820
+ requiredAppIds?: string[] | undefined;
821
+ }[] | undefined;
822
+ guideSections?: {
823
+ id: string;
824
+ title: string;
825
+ blocks?: Record<string, unknown>[] | undefined;
826
+ }[] | undefined;
827
+ faqs?: {
828
+ question: string;
829
+ answer: string;
830
+ }[] | undefined;
831
+ caseStudy?: {
832
+ title: string;
833
+ url?: string | undefined;
834
+ summary?: string | undefined;
835
+ metrics?: string[] | undefined;
836
+ } | undefined;
837
+ pricingNote?: string | undefined;
838
+ }> | undefined;
839
+ }, {
840
+ media: {
841
+ type: "image" | "video";
842
+ url: string;
843
+ thumbnailUrl?: string | undefined;
844
+ alt?: string | undefined;
845
+ }[];
846
+ summary: string;
847
+ headline: string;
848
+ targetUsers: {
849
+ label: string;
850
+ key: string;
851
+ description?: string | undefined;
852
+ }[];
853
+ primaryUseCases: {
854
+ id: string;
855
+ title: string;
856
+ description?: string | undefined;
857
+ surfaceKeys?: string[] | undefined;
858
+ requiredAppIds?: string[] | undefined;
859
+ }[];
860
+ primaryScreenshotUrl: string;
861
+ providerName?: string | undefined;
862
+ guideSections?: {
863
+ id: string;
864
+ title: string;
865
+ blocks?: Record<string, unknown>[] | undefined;
866
+ }[] | undefined;
867
+ faqs?: {
868
+ question: string;
869
+ answer: string;
870
+ }[] | undefined;
871
+ caseStudy?: {
872
+ title: string;
873
+ url?: string | undefined;
874
+ summary?: string | undefined;
875
+ metrics?: string[] | undefined;
876
+ } | undefined;
877
+ pricingNote?: string | undefined;
878
+ categories?: string[] | undefined;
879
+ capabilities?: {
880
+ label: string;
881
+ key: string;
882
+ description?: string | undefined;
883
+ }[] | undefined;
884
+ surfaces?: {
885
+ label: string;
886
+ key: string;
887
+ description?: string | undefined;
888
+ }[] | undefined;
889
+ relationships?: {
890
+ type: "dependsOn" | "worksBestWith" | "alternative" | "replaces" | "requiredBy";
891
+ appId: string;
892
+ description?: string | undefined;
893
+ label?: string | undefined;
894
+ }[] | undefined;
895
+ setupOverview?: {
896
+ fields?: {
897
+ label: string;
898
+ key: string;
899
+ description?: string | undefined;
900
+ example?: string | undefined;
901
+ helpUrl?: string | undefined;
902
+ }[] | undefined;
903
+ steps?: {
904
+ id: string;
905
+ title: string;
906
+ description?: string | undefined;
907
+ externalUrl?: string | undefined;
908
+ }[] | undefined;
909
+ estimatedTimeText?: string | undefined;
910
+ } | undefined;
911
+ externalGuideUrl?: string | undefined;
912
+ i18nMap?: Record<string, {
913
+ summary?: string | undefined;
914
+ headline?: string | undefined;
915
+ targetUsers?: {
916
+ label: string;
917
+ key: string;
918
+ description?: string | undefined;
919
+ }[] | undefined;
920
+ primaryUseCases?: {
921
+ id: string;
922
+ title: string;
923
+ description?: string | undefined;
924
+ surfaceKeys?: string[] | undefined;
925
+ requiredAppIds?: string[] | undefined;
926
+ }[] | undefined;
927
+ guideSections?: {
928
+ id: string;
929
+ title: string;
930
+ blocks?: Record<string, unknown>[] | undefined;
931
+ }[] | undefined;
932
+ faqs?: {
933
+ question: string;
934
+ answer: string;
935
+ }[] | undefined;
936
+ caseStudy?: {
937
+ title: string;
938
+ url?: string | undefined;
939
+ summary?: string | undefined;
940
+ metrics?: string[] | undefined;
941
+ } | undefined;
942
+ pricingNote?: string | undefined;
943
+ }> | undefined;
944
+ }>;
945
+ export type StoreProfile = z.infer<typeof StoreProfileSchema>;
946
+ export declare const GetStoreProfileInputSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
947
+ export type GetStoreProfileInput = z.infer<typeof GetStoreProfileInputSchema>;
948
+ export declare const GetStoreProfileOutputSchema: z.ZodObject<{
949
+ providerName: z.ZodOptional<z.ZodString>;
950
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
951
+ headline: z.ZodString;
952
+ summary: z.ZodString;
953
+ primaryScreenshotUrl: z.ZodString;
954
+ targetUsers: z.ZodArray<z.ZodObject<{
955
+ key: z.ZodString;
956
+ label: z.ZodString;
957
+ description: z.ZodOptional<z.ZodString>;
958
+ }, "strip", z.ZodTypeAny, {
959
+ label: string;
960
+ key: string;
961
+ description?: string | undefined;
962
+ }, {
963
+ label: string;
964
+ key: string;
965
+ description?: string | undefined;
966
+ }>, "many">;
967
+ primaryUseCases: z.ZodArray<z.ZodObject<{
968
+ id: z.ZodString;
969
+ title: z.ZodString;
970
+ description: z.ZodOptional<z.ZodString>;
971
+ surfaceKeys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
972
+ requiredAppIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
973
+ }, "strip", z.ZodTypeAny, {
974
+ id: string;
975
+ title: string;
976
+ description?: string | undefined;
977
+ surfaceKeys?: string[] | undefined;
978
+ requiredAppIds?: string[] | undefined;
979
+ }, {
980
+ id: string;
981
+ title: string;
982
+ description?: string | undefined;
983
+ surfaceKeys?: string[] | undefined;
984
+ requiredAppIds?: string[] | undefined;
985
+ }>, "many">;
986
+ media: z.ZodArray<z.ZodObject<{
987
+ type: z.ZodEnum<["image", "video"]>;
988
+ url: z.ZodString;
989
+ thumbnailUrl: z.ZodOptional<z.ZodString>;
990
+ alt: z.ZodOptional<z.ZodString>;
991
+ }, "strip", z.ZodTypeAny, {
992
+ type: "image" | "video";
993
+ url: string;
994
+ thumbnailUrl?: string | undefined;
995
+ alt?: string | undefined;
996
+ }, {
997
+ type: "image" | "video";
998
+ url: string;
999
+ thumbnailUrl?: string | undefined;
1000
+ alt?: string | undefined;
1001
+ }>, "many">;
1002
+ capabilities: z.ZodOptional<z.ZodArray<z.ZodObject<{
1003
+ key: z.ZodString;
1004
+ label: z.ZodString;
1005
+ description: z.ZodOptional<z.ZodString>;
1006
+ }, "strip", z.ZodTypeAny, {
1007
+ label: string;
1008
+ key: string;
1009
+ description?: string | undefined;
1010
+ }, {
1011
+ label: string;
1012
+ key: string;
1013
+ description?: string | undefined;
1014
+ }>, "many">>;
1015
+ surfaces: z.ZodOptional<z.ZodArray<z.ZodObject<{
1016
+ key: z.ZodString;
1017
+ label: z.ZodString;
1018
+ description: z.ZodOptional<z.ZodString>;
1019
+ }, "strip", z.ZodTypeAny, {
1020
+ label: string;
1021
+ key: string;
1022
+ description?: string | undefined;
1023
+ }, {
1024
+ label: string;
1025
+ key: string;
1026
+ description?: string | undefined;
1027
+ }>, "many">>;
1028
+ relationships: z.ZodOptional<z.ZodArray<z.ZodObject<{
1029
+ type: z.ZodEnum<["dependsOn", "worksBestWith", "alternative", "replaces", "requiredBy"]>;
1030
+ appId: z.ZodString;
1031
+ label: z.ZodOptional<z.ZodString>;
1032
+ description: z.ZodOptional<z.ZodString>;
1033
+ }, "strip", z.ZodTypeAny, {
1034
+ type: "dependsOn" | "worksBestWith" | "alternative" | "replaces" | "requiredBy";
1035
+ appId: string;
1036
+ description?: string | undefined;
1037
+ label?: string | undefined;
1038
+ }, {
1039
+ type: "dependsOn" | "worksBestWith" | "alternative" | "replaces" | "requiredBy";
1040
+ appId: string;
1041
+ description?: string | undefined;
1042
+ label?: string | undefined;
1043
+ }>, "many">>;
1044
+ setupOverview: z.ZodOptional<z.ZodObject<{
1045
+ steps: z.ZodOptional<z.ZodArray<z.ZodObject<{
1046
+ id: z.ZodString;
1047
+ title: z.ZodString;
1048
+ description: z.ZodOptional<z.ZodString>;
1049
+ externalUrl: z.ZodOptional<z.ZodString>;
1050
+ }, "strip", z.ZodTypeAny, {
1051
+ id: string;
1052
+ title: string;
1053
+ description?: string | undefined;
1054
+ externalUrl?: string | undefined;
1055
+ }, {
1056
+ id: string;
1057
+ title: string;
1058
+ description?: string | undefined;
1059
+ externalUrl?: string | undefined;
1060
+ }>, "many">>;
1061
+ fields: z.ZodOptional<z.ZodArray<z.ZodObject<{
1062
+ key: z.ZodString;
1063
+ label: z.ZodString;
1064
+ description: z.ZodOptional<z.ZodString>;
1065
+ example: z.ZodOptional<z.ZodString>;
1066
+ helpUrl: z.ZodOptional<z.ZodString>;
1067
+ }, "strip", z.ZodTypeAny, {
1068
+ label: string;
1069
+ key: string;
1070
+ description?: string | undefined;
1071
+ example?: string | undefined;
1072
+ helpUrl?: string | undefined;
1073
+ }, {
1074
+ label: string;
1075
+ key: string;
1076
+ description?: string | undefined;
1077
+ example?: string | undefined;
1078
+ helpUrl?: string | undefined;
1079
+ }>, "many">>;
1080
+ estimatedTimeText: z.ZodOptional<z.ZodString>;
1081
+ }, "strip", z.ZodTypeAny, {
1082
+ fields?: {
1083
+ label: string;
1084
+ key: string;
1085
+ description?: string | undefined;
1086
+ example?: string | undefined;
1087
+ helpUrl?: string | undefined;
1088
+ }[] | undefined;
1089
+ steps?: {
1090
+ id: string;
1091
+ title: string;
1092
+ description?: string | undefined;
1093
+ externalUrl?: string | undefined;
1094
+ }[] | undefined;
1095
+ estimatedTimeText?: string | undefined;
1096
+ }, {
1097
+ fields?: {
1098
+ label: string;
1099
+ key: string;
1100
+ description?: string | undefined;
1101
+ example?: string | undefined;
1102
+ helpUrl?: string | undefined;
1103
+ }[] | undefined;
1104
+ steps?: {
1105
+ id: string;
1106
+ title: string;
1107
+ description?: string | undefined;
1108
+ externalUrl?: string | undefined;
1109
+ }[] | undefined;
1110
+ estimatedTimeText?: string | undefined;
1111
+ }>>;
1112
+ guideSections: z.ZodOptional<z.ZodArray<z.ZodObject<{
1113
+ id: z.ZodString;
1114
+ title: z.ZodString;
1115
+ blocks: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
1116
+ }, "strip", z.ZodTypeAny, {
1117
+ id: string;
1118
+ title: string;
1119
+ blocks?: Record<string, unknown>[] | undefined;
1120
+ }, {
1121
+ id: string;
1122
+ title: string;
1123
+ blocks?: Record<string, unknown>[] | undefined;
1124
+ }>, "many">>;
1125
+ faqs: z.ZodOptional<z.ZodArray<z.ZodObject<{
1126
+ question: z.ZodString;
1127
+ answer: z.ZodString;
1128
+ }, "strip", z.ZodTypeAny, {
1129
+ question: string;
1130
+ answer: string;
1131
+ }, {
1132
+ question: string;
1133
+ answer: string;
1134
+ }>, "many">>;
1135
+ externalGuideUrl: z.ZodOptional<z.ZodString>;
1136
+ caseStudy: z.ZodOptional<z.ZodObject<{
1137
+ title: z.ZodString;
1138
+ summary: z.ZodOptional<z.ZodString>;
1139
+ url: z.ZodOptional<z.ZodString>;
1140
+ metrics: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1141
+ }, "strip", z.ZodTypeAny, {
1142
+ title: string;
1143
+ url?: string | undefined;
1144
+ summary?: string | undefined;
1145
+ metrics?: string[] | undefined;
1146
+ }, {
1147
+ title: string;
1148
+ url?: string | undefined;
1149
+ summary?: string | undefined;
1150
+ metrics?: string[] | undefined;
1151
+ }>>;
1152
+ pricingNote: z.ZodOptional<z.ZodString>;
1153
+ i18nMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
1154
+ headline: z.ZodOptional<z.ZodString>;
1155
+ summary: z.ZodOptional<z.ZodString>;
1156
+ targetUsers: z.ZodOptional<z.ZodArray<z.ZodObject<{
1157
+ key: z.ZodString;
1158
+ label: z.ZodString;
1159
+ description: z.ZodOptional<z.ZodString>;
1160
+ }, "strip", z.ZodTypeAny, {
1161
+ label: string;
1162
+ key: string;
1163
+ description?: string | undefined;
1164
+ }, {
1165
+ label: string;
1166
+ key: string;
1167
+ description?: string | undefined;
1168
+ }>, "many">>;
1169
+ primaryUseCases: z.ZodOptional<z.ZodArray<z.ZodObject<{
1170
+ id: z.ZodString;
1171
+ title: z.ZodString;
1172
+ description: z.ZodOptional<z.ZodString>;
1173
+ surfaceKeys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1174
+ requiredAppIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1175
+ }, "strip", z.ZodTypeAny, {
1176
+ id: string;
1177
+ title: string;
1178
+ description?: string | undefined;
1179
+ surfaceKeys?: string[] | undefined;
1180
+ requiredAppIds?: string[] | undefined;
1181
+ }, {
1182
+ id: string;
1183
+ title: string;
1184
+ description?: string | undefined;
1185
+ surfaceKeys?: string[] | undefined;
1186
+ requiredAppIds?: string[] | undefined;
1187
+ }>, "many">>;
1188
+ guideSections: z.ZodOptional<z.ZodArray<z.ZodObject<{
1189
+ id: z.ZodString;
1190
+ title: z.ZodString;
1191
+ blocks: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
1192
+ }, "strip", z.ZodTypeAny, {
1193
+ id: string;
1194
+ title: string;
1195
+ blocks?: Record<string, unknown>[] | undefined;
1196
+ }, {
1197
+ id: string;
1198
+ title: string;
1199
+ blocks?: Record<string, unknown>[] | undefined;
1200
+ }>, "many">>;
1201
+ faqs: z.ZodOptional<z.ZodArray<z.ZodObject<{
1202
+ question: z.ZodString;
1203
+ answer: z.ZodString;
1204
+ }, "strip", z.ZodTypeAny, {
1205
+ question: string;
1206
+ answer: string;
1207
+ }, {
1208
+ question: string;
1209
+ answer: string;
1210
+ }>, "many">>;
1211
+ caseStudy: z.ZodOptional<z.ZodObject<{
1212
+ title: z.ZodString;
1213
+ summary: z.ZodOptional<z.ZodString>;
1214
+ url: z.ZodOptional<z.ZodString>;
1215
+ metrics: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1216
+ }, "strip", z.ZodTypeAny, {
1217
+ title: string;
1218
+ url?: string | undefined;
1219
+ summary?: string | undefined;
1220
+ metrics?: string[] | undefined;
1221
+ }, {
1222
+ title: string;
1223
+ url?: string | undefined;
1224
+ summary?: string | undefined;
1225
+ metrics?: string[] | undefined;
1226
+ }>>;
1227
+ pricingNote: z.ZodOptional<z.ZodString>;
1228
+ }, "strip", z.ZodTypeAny, {
1229
+ summary?: string | undefined;
1230
+ headline?: string | undefined;
1231
+ targetUsers?: {
1232
+ label: string;
1233
+ key: string;
1234
+ description?: string | undefined;
1235
+ }[] | undefined;
1236
+ primaryUseCases?: {
1237
+ id: string;
1238
+ title: string;
1239
+ description?: string | undefined;
1240
+ surfaceKeys?: string[] | undefined;
1241
+ requiredAppIds?: string[] | undefined;
1242
+ }[] | undefined;
1243
+ guideSections?: {
1244
+ id: string;
1245
+ title: string;
1246
+ blocks?: Record<string, unknown>[] | undefined;
1247
+ }[] | undefined;
1248
+ faqs?: {
1249
+ question: string;
1250
+ answer: string;
1251
+ }[] | undefined;
1252
+ caseStudy?: {
1253
+ title: string;
1254
+ url?: string | undefined;
1255
+ summary?: string | undefined;
1256
+ metrics?: string[] | undefined;
1257
+ } | undefined;
1258
+ pricingNote?: string | undefined;
1259
+ }, {
1260
+ summary?: string | undefined;
1261
+ headline?: string | undefined;
1262
+ targetUsers?: {
1263
+ label: string;
1264
+ key: string;
1265
+ description?: string | undefined;
1266
+ }[] | undefined;
1267
+ primaryUseCases?: {
1268
+ id: string;
1269
+ title: string;
1270
+ description?: string | undefined;
1271
+ surfaceKeys?: string[] | undefined;
1272
+ requiredAppIds?: string[] | undefined;
1273
+ }[] | undefined;
1274
+ guideSections?: {
1275
+ id: string;
1276
+ title: string;
1277
+ blocks?: Record<string, unknown>[] | undefined;
1278
+ }[] | undefined;
1279
+ faqs?: {
1280
+ question: string;
1281
+ answer: string;
1282
+ }[] | undefined;
1283
+ caseStudy?: {
1284
+ title: string;
1285
+ url?: string | undefined;
1286
+ summary?: string | undefined;
1287
+ metrics?: string[] | undefined;
1288
+ } | undefined;
1289
+ pricingNote?: string | undefined;
1290
+ }>>>;
1291
+ }, "strip", z.ZodTypeAny, {
1292
+ media: {
1293
+ type: "image" | "video";
1294
+ url: string;
1295
+ thumbnailUrl?: string | undefined;
1296
+ alt?: string | undefined;
1297
+ }[];
1298
+ summary: string;
1299
+ headline: string;
1300
+ targetUsers: {
1301
+ label: string;
1302
+ key: string;
1303
+ description?: string | undefined;
1304
+ }[];
1305
+ primaryUseCases: {
1306
+ id: string;
1307
+ title: string;
1308
+ description?: string | undefined;
1309
+ surfaceKeys?: string[] | undefined;
1310
+ requiredAppIds?: string[] | undefined;
1311
+ }[];
1312
+ primaryScreenshotUrl: string;
1313
+ providerName?: string | undefined;
1314
+ guideSections?: {
1315
+ id: string;
1316
+ title: string;
1317
+ blocks?: Record<string, unknown>[] | undefined;
1318
+ }[] | undefined;
1319
+ faqs?: {
1320
+ question: string;
1321
+ answer: string;
1322
+ }[] | undefined;
1323
+ caseStudy?: {
1324
+ title: string;
1325
+ url?: string | undefined;
1326
+ summary?: string | undefined;
1327
+ metrics?: string[] | undefined;
1328
+ } | undefined;
1329
+ pricingNote?: string | undefined;
1330
+ categories?: string[] | undefined;
1331
+ capabilities?: {
1332
+ label: string;
1333
+ key: string;
1334
+ description?: string | undefined;
1335
+ }[] | undefined;
1336
+ surfaces?: {
1337
+ label: string;
1338
+ key: string;
1339
+ description?: string | undefined;
1340
+ }[] | undefined;
1341
+ relationships?: {
1342
+ type: "dependsOn" | "worksBestWith" | "alternative" | "replaces" | "requiredBy";
1343
+ appId: string;
1344
+ description?: string | undefined;
1345
+ label?: string | undefined;
1346
+ }[] | undefined;
1347
+ setupOverview?: {
1348
+ fields?: {
1349
+ label: string;
1350
+ key: string;
1351
+ description?: string | undefined;
1352
+ example?: string | undefined;
1353
+ helpUrl?: string | undefined;
1354
+ }[] | undefined;
1355
+ steps?: {
1356
+ id: string;
1357
+ title: string;
1358
+ description?: string | undefined;
1359
+ externalUrl?: string | undefined;
1360
+ }[] | undefined;
1361
+ estimatedTimeText?: string | undefined;
1362
+ } | undefined;
1363
+ externalGuideUrl?: string | undefined;
1364
+ i18nMap?: Record<string, {
1365
+ summary?: string | undefined;
1366
+ headline?: string | undefined;
1367
+ targetUsers?: {
1368
+ label: string;
1369
+ key: string;
1370
+ description?: string | undefined;
1371
+ }[] | undefined;
1372
+ primaryUseCases?: {
1373
+ id: string;
1374
+ title: string;
1375
+ description?: string | undefined;
1376
+ surfaceKeys?: string[] | undefined;
1377
+ requiredAppIds?: string[] | undefined;
1378
+ }[] | undefined;
1379
+ guideSections?: {
1380
+ id: string;
1381
+ title: string;
1382
+ blocks?: Record<string, unknown>[] | undefined;
1383
+ }[] | undefined;
1384
+ faqs?: {
1385
+ question: string;
1386
+ answer: string;
1387
+ }[] | undefined;
1388
+ caseStudy?: {
1389
+ title: string;
1390
+ url?: string | undefined;
1391
+ summary?: string | undefined;
1392
+ metrics?: string[] | undefined;
1393
+ } | undefined;
1394
+ pricingNote?: string | undefined;
1395
+ }> | undefined;
1396
+ }, {
1397
+ media: {
1398
+ type: "image" | "video";
1399
+ url: string;
1400
+ thumbnailUrl?: string | undefined;
1401
+ alt?: string | undefined;
1402
+ }[];
1403
+ summary: string;
1404
+ headline: string;
1405
+ targetUsers: {
1406
+ label: string;
1407
+ key: string;
1408
+ description?: string | undefined;
1409
+ }[];
1410
+ primaryUseCases: {
1411
+ id: string;
1412
+ title: string;
1413
+ description?: string | undefined;
1414
+ surfaceKeys?: string[] | undefined;
1415
+ requiredAppIds?: string[] | undefined;
1416
+ }[];
1417
+ primaryScreenshotUrl: string;
1418
+ providerName?: string | undefined;
1419
+ guideSections?: {
1420
+ id: string;
1421
+ title: string;
1422
+ blocks?: Record<string, unknown>[] | undefined;
1423
+ }[] | undefined;
1424
+ faqs?: {
1425
+ question: string;
1426
+ answer: string;
1427
+ }[] | undefined;
1428
+ caseStudy?: {
1429
+ title: string;
1430
+ url?: string | undefined;
1431
+ summary?: string | undefined;
1432
+ metrics?: string[] | undefined;
1433
+ } | undefined;
1434
+ pricingNote?: string | undefined;
1435
+ categories?: string[] | undefined;
1436
+ capabilities?: {
1437
+ label: string;
1438
+ key: string;
1439
+ description?: string | undefined;
1440
+ }[] | undefined;
1441
+ surfaces?: {
1442
+ label: string;
1443
+ key: string;
1444
+ description?: string | undefined;
1445
+ }[] | undefined;
1446
+ relationships?: {
1447
+ type: "dependsOn" | "worksBestWith" | "alternative" | "replaces" | "requiredBy";
1448
+ appId: string;
1449
+ description?: string | undefined;
1450
+ label?: string | undefined;
1451
+ }[] | undefined;
1452
+ setupOverview?: {
1453
+ fields?: {
1454
+ label: string;
1455
+ key: string;
1456
+ description?: string | undefined;
1457
+ example?: string | undefined;
1458
+ helpUrl?: string | undefined;
1459
+ }[] | undefined;
1460
+ steps?: {
1461
+ id: string;
1462
+ title: string;
1463
+ description?: string | undefined;
1464
+ externalUrl?: string | undefined;
1465
+ }[] | undefined;
1466
+ estimatedTimeText?: string | undefined;
1467
+ } | undefined;
1468
+ externalGuideUrl?: string | undefined;
1469
+ i18nMap?: Record<string, {
1470
+ summary?: string | undefined;
1471
+ headline?: string | undefined;
1472
+ targetUsers?: {
1473
+ label: string;
1474
+ key: string;
1475
+ description?: string | undefined;
1476
+ }[] | undefined;
1477
+ primaryUseCases?: {
1478
+ id: string;
1479
+ title: string;
1480
+ description?: string | undefined;
1481
+ surfaceKeys?: string[] | undefined;
1482
+ requiredAppIds?: string[] | undefined;
1483
+ }[] | undefined;
1484
+ guideSections?: {
1485
+ id: string;
1486
+ title: string;
1487
+ blocks?: Record<string, unknown>[] | undefined;
1488
+ }[] | undefined;
1489
+ faqs?: {
1490
+ question: string;
1491
+ answer: string;
1492
+ }[] | undefined;
1493
+ caseStudy?: {
1494
+ title: string;
1495
+ url?: string | undefined;
1496
+ summary?: string | undefined;
1497
+ metrics?: string[] | undefined;
1498
+ } | undefined;
1499
+ pricingNote?: string | undefined;
1500
+ }> | undefined;
1501
+ }>;
1502
+ export type GetStoreProfileOutput = z.infer<typeof GetStoreProfileOutputSchema>;
1503
+ export type StoreProfileProvider = StoreProfile | ((ctx: Context) => StoreProfile | Promise<StoreProfile>);
1504
+ export declare function defineStoreProfile(profile: StoreProfile): StoreProfile;
1505
+ export declare function createStoreExtension(provider: StoreProfileProvider): ExtensionDefinition;
1506
+ //# sourceMappingURL=store.d.ts.map