@402flow/sdk 0.1.0-alpha.14 → 0.1.0-alpha.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +92 -25
- package/dist/agent-harness.d.ts +2 -2
- package/dist/agent-harness.js +2 -2
- package/dist/agent-harness.js.map +1 -1
- package/dist/contracts.d.ts +693 -1168
- package/dist/contracts.js +2 -11
- package/dist/contracts.js.map +1 -1
- package/dist/index.d.ts +14 -2
- package/dist/index.js +76 -49
- package/dist/index.js.map +1 -1
- package/package.json +4 -3
package/dist/contracts.d.ts
CHANGED
|
@@ -130,21 +130,21 @@ export declare const paidRequestChallengeSchema: z.ZodObject<{
|
|
|
130
130
|
body?: unknown;
|
|
131
131
|
}>;
|
|
132
132
|
export type PaidRequestChallenge = z.infer<typeof paidRequestChallengeSchema>;
|
|
133
|
-
export declare const sdkPreparationSourceSchema: z.ZodEnum<["
|
|
133
|
+
export declare const sdkPreparationSourceSchema: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
134
134
|
export type SdkPreparationSource = z.infer<typeof sdkPreparationSourceSchema>;
|
|
135
|
-
export declare const sdkPreparationAuthoritySchema: z.ZodEnum<["authoritative", "
|
|
135
|
+
export declare const sdkPreparationAuthoritySchema: z.ZodEnum<["authoritative", "advisory"]>;
|
|
136
136
|
export type SdkPreparationAuthority = z.infer<typeof sdkPreparationAuthoritySchema>;
|
|
137
137
|
export declare const sdkPreparationAttributionSchema: z.ZodObject<{
|
|
138
|
-
source: z.ZodEnum<["
|
|
139
|
-
authority: z.ZodEnum<["authoritative", "
|
|
138
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
139
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
140
140
|
note: z.ZodOptional<z.ZodString>;
|
|
141
141
|
}, "strip", z.ZodTypeAny, {
|
|
142
|
-
source: "
|
|
143
|
-
authority: "authoritative" | "
|
|
142
|
+
source: "merchant_challenge" | "external_metadata";
|
|
143
|
+
authority: "authoritative" | "advisory";
|
|
144
144
|
note?: string | undefined;
|
|
145
145
|
}, {
|
|
146
|
-
source: "
|
|
147
|
-
authority: "authoritative" | "
|
|
146
|
+
source: "merchant_challenge" | "external_metadata";
|
|
147
|
+
authority: "authoritative" | "advisory";
|
|
148
148
|
note?: string | undefined;
|
|
149
149
|
}>;
|
|
150
150
|
export type SdkPreparationAttribution = z.infer<typeof sdkPreparationAttributionSchema>;
|
|
@@ -172,7 +172,7 @@ export declare const sdkPreparationFieldSchema: z.ZodObject<{
|
|
|
172
172
|
}>;
|
|
173
173
|
export type SdkPreparationField = z.infer<typeof sdkPreparationFieldSchema>;
|
|
174
174
|
/** Optional caller-supplied metadata used to enrich preparation hints. */
|
|
175
|
-
export declare const
|
|
175
|
+
export declare const sdkExternalMetadataSchema: z.ZodObject<{
|
|
176
176
|
description: z.ZodOptional<z.ZodString>;
|
|
177
177
|
requestBodyType: z.ZodOptional<z.ZodString>;
|
|
178
178
|
requestBodyExample: z.ZodOptional<z.ZodString>;
|
|
@@ -302,420 +302,34 @@ export declare const sdkPreparationMetadataSchema: z.ZodObject<{
|
|
|
302
302
|
}[] | undefined;
|
|
303
303
|
notes?: string[] | undefined;
|
|
304
304
|
}>;
|
|
305
|
-
export type
|
|
306
|
-
/** Optional external metadata channels the SDK knows how to merge. */
|
|
307
|
-
export declare const sdkPreparationDiscoveryMetadataSchema: z.ZodObject<{
|
|
308
|
-
provider: z.ZodOptional<z.ZodObject<{
|
|
309
|
-
description: z.ZodOptional<z.ZodString>;
|
|
310
|
-
requestBodyType: z.ZodOptional<z.ZodString>;
|
|
311
|
-
requestBodyExample: z.ZodOptional<z.ZodString>;
|
|
312
|
-
requestBodyFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
313
|
-
name: z.ZodString;
|
|
314
|
-
type: z.ZodOptional<z.ZodString>;
|
|
315
|
-
description: z.ZodOptional<z.ZodString>;
|
|
316
|
-
required: z.ZodOptional<z.ZodBoolean>;
|
|
317
|
-
defaultValue: z.ZodOptional<z.ZodUnknown>;
|
|
318
|
-
enumValues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
319
|
-
}, "strip", z.ZodTypeAny, {
|
|
320
|
-
name: string;
|
|
321
|
-
type?: string | undefined;
|
|
322
|
-
required?: boolean | undefined;
|
|
323
|
-
description?: string | undefined;
|
|
324
|
-
defaultValue?: unknown;
|
|
325
|
-
enumValues?: string[] | undefined;
|
|
326
|
-
}, {
|
|
327
|
-
name: string;
|
|
328
|
-
type?: string | undefined;
|
|
329
|
-
required?: boolean | undefined;
|
|
330
|
-
description?: string | undefined;
|
|
331
|
-
defaultValue?: unknown;
|
|
332
|
-
enumValues?: string[] | undefined;
|
|
333
|
-
}>, "many">>;
|
|
334
|
-
requestQueryParams: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
335
|
-
name: z.ZodString;
|
|
336
|
-
type: z.ZodOptional<z.ZodString>;
|
|
337
|
-
description: z.ZodOptional<z.ZodString>;
|
|
338
|
-
required: z.ZodOptional<z.ZodBoolean>;
|
|
339
|
-
defaultValue: z.ZodOptional<z.ZodUnknown>;
|
|
340
|
-
enumValues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
341
|
-
}, "strip", z.ZodTypeAny, {
|
|
342
|
-
name: string;
|
|
343
|
-
type?: string | undefined;
|
|
344
|
-
required?: boolean | undefined;
|
|
345
|
-
description?: string | undefined;
|
|
346
|
-
defaultValue?: unknown;
|
|
347
|
-
enumValues?: string[] | undefined;
|
|
348
|
-
}, {
|
|
349
|
-
name: string;
|
|
350
|
-
type?: string | undefined;
|
|
351
|
-
required?: boolean | undefined;
|
|
352
|
-
description?: string | undefined;
|
|
353
|
-
defaultValue?: unknown;
|
|
354
|
-
enumValues?: string[] | undefined;
|
|
355
|
-
}>, "many">>;
|
|
356
|
-
requestPathParams: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
357
|
-
name: z.ZodString;
|
|
358
|
-
type: z.ZodOptional<z.ZodString>;
|
|
359
|
-
description: z.ZodOptional<z.ZodString>;
|
|
360
|
-
required: z.ZodOptional<z.ZodBoolean>;
|
|
361
|
-
defaultValue: z.ZodOptional<z.ZodUnknown>;
|
|
362
|
-
enumValues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
363
|
-
}, "strip", z.ZodTypeAny, {
|
|
364
|
-
name: string;
|
|
365
|
-
type?: string | undefined;
|
|
366
|
-
required?: boolean | undefined;
|
|
367
|
-
description?: string | undefined;
|
|
368
|
-
defaultValue?: unknown;
|
|
369
|
-
enumValues?: string[] | undefined;
|
|
370
|
-
}, {
|
|
371
|
-
name: string;
|
|
372
|
-
type?: string | undefined;
|
|
373
|
-
required?: boolean | undefined;
|
|
374
|
-
description?: string | undefined;
|
|
375
|
-
defaultValue?: unknown;
|
|
376
|
-
enumValues?: string[] | undefined;
|
|
377
|
-
}>, "many">>;
|
|
378
|
-
notes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
379
|
-
}, "strip", z.ZodTypeAny, {
|
|
380
|
-
description?: string | undefined;
|
|
381
|
-
requestBodyType?: string | undefined;
|
|
382
|
-
requestBodyExample?: string | undefined;
|
|
383
|
-
requestBodyFields?: {
|
|
384
|
-
name: string;
|
|
385
|
-
type?: string | undefined;
|
|
386
|
-
required?: boolean | undefined;
|
|
387
|
-
description?: string | undefined;
|
|
388
|
-
defaultValue?: unknown;
|
|
389
|
-
enumValues?: string[] | undefined;
|
|
390
|
-
}[] | undefined;
|
|
391
|
-
requestQueryParams?: {
|
|
392
|
-
name: string;
|
|
393
|
-
type?: string | undefined;
|
|
394
|
-
required?: boolean | undefined;
|
|
395
|
-
description?: string | undefined;
|
|
396
|
-
defaultValue?: unknown;
|
|
397
|
-
enumValues?: string[] | undefined;
|
|
398
|
-
}[] | undefined;
|
|
399
|
-
requestPathParams?: {
|
|
400
|
-
name: string;
|
|
401
|
-
type?: string | undefined;
|
|
402
|
-
required?: boolean | undefined;
|
|
403
|
-
description?: string | undefined;
|
|
404
|
-
defaultValue?: unknown;
|
|
405
|
-
enumValues?: string[] | undefined;
|
|
406
|
-
}[] | undefined;
|
|
407
|
-
notes?: string[] | undefined;
|
|
408
|
-
}, {
|
|
409
|
-
description?: string | undefined;
|
|
410
|
-
requestBodyType?: string | undefined;
|
|
411
|
-
requestBodyExample?: string | undefined;
|
|
412
|
-
requestBodyFields?: {
|
|
413
|
-
name: string;
|
|
414
|
-
type?: string | undefined;
|
|
415
|
-
required?: boolean | undefined;
|
|
416
|
-
description?: string | undefined;
|
|
417
|
-
defaultValue?: unknown;
|
|
418
|
-
enumValues?: string[] | undefined;
|
|
419
|
-
}[] | undefined;
|
|
420
|
-
requestQueryParams?: {
|
|
421
|
-
name: string;
|
|
422
|
-
type?: string | undefined;
|
|
423
|
-
required?: boolean | undefined;
|
|
424
|
-
description?: string | undefined;
|
|
425
|
-
defaultValue?: unknown;
|
|
426
|
-
enumValues?: string[] | undefined;
|
|
427
|
-
}[] | undefined;
|
|
428
|
-
requestPathParams?: {
|
|
429
|
-
name: string;
|
|
430
|
-
type?: string | undefined;
|
|
431
|
-
required?: boolean | undefined;
|
|
432
|
-
description?: string | undefined;
|
|
433
|
-
defaultValue?: unknown;
|
|
434
|
-
enumValues?: string[] | undefined;
|
|
435
|
-
}[] | undefined;
|
|
436
|
-
notes?: string[] | undefined;
|
|
437
|
-
}>>;
|
|
438
|
-
marketplace: z.ZodOptional<z.ZodObject<{
|
|
439
|
-
description: z.ZodOptional<z.ZodString>;
|
|
440
|
-
requestBodyType: z.ZodOptional<z.ZodString>;
|
|
441
|
-
requestBodyExample: z.ZodOptional<z.ZodString>;
|
|
442
|
-
requestBodyFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
443
|
-
name: z.ZodString;
|
|
444
|
-
type: z.ZodOptional<z.ZodString>;
|
|
445
|
-
description: z.ZodOptional<z.ZodString>;
|
|
446
|
-
required: z.ZodOptional<z.ZodBoolean>;
|
|
447
|
-
defaultValue: z.ZodOptional<z.ZodUnknown>;
|
|
448
|
-
enumValues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
449
|
-
}, "strip", z.ZodTypeAny, {
|
|
450
|
-
name: string;
|
|
451
|
-
type?: string | undefined;
|
|
452
|
-
required?: boolean | undefined;
|
|
453
|
-
description?: string | undefined;
|
|
454
|
-
defaultValue?: unknown;
|
|
455
|
-
enumValues?: string[] | undefined;
|
|
456
|
-
}, {
|
|
457
|
-
name: string;
|
|
458
|
-
type?: string | undefined;
|
|
459
|
-
required?: boolean | undefined;
|
|
460
|
-
description?: string | undefined;
|
|
461
|
-
defaultValue?: unknown;
|
|
462
|
-
enumValues?: string[] | undefined;
|
|
463
|
-
}>, "many">>;
|
|
464
|
-
requestQueryParams: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
465
|
-
name: z.ZodString;
|
|
466
|
-
type: z.ZodOptional<z.ZodString>;
|
|
467
|
-
description: z.ZodOptional<z.ZodString>;
|
|
468
|
-
required: z.ZodOptional<z.ZodBoolean>;
|
|
469
|
-
defaultValue: z.ZodOptional<z.ZodUnknown>;
|
|
470
|
-
enumValues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
471
|
-
}, "strip", z.ZodTypeAny, {
|
|
472
|
-
name: string;
|
|
473
|
-
type?: string | undefined;
|
|
474
|
-
required?: boolean | undefined;
|
|
475
|
-
description?: string | undefined;
|
|
476
|
-
defaultValue?: unknown;
|
|
477
|
-
enumValues?: string[] | undefined;
|
|
478
|
-
}, {
|
|
479
|
-
name: string;
|
|
480
|
-
type?: string | undefined;
|
|
481
|
-
required?: boolean | undefined;
|
|
482
|
-
description?: string | undefined;
|
|
483
|
-
defaultValue?: unknown;
|
|
484
|
-
enumValues?: string[] | undefined;
|
|
485
|
-
}>, "many">>;
|
|
486
|
-
requestPathParams: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
487
|
-
name: z.ZodString;
|
|
488
|
-
type: z.ZodOptional<z.ZodString>;
|
|
489
|
-
description: z.ZodOptional<z.ZodString>;
|
|
490
|
-
required: z.ZodOptional<z.ZodBoolean>;
|
|
491
|
-
defaultValue: z.ZodOptional<z.ZodUnknown>;
|
|
492
|
-
enumValues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
493
|
-
}, "strip", z.ZodTypeAny, {
|
|
494
|
-
name: string;
|
|
495
|
-
type?: string | undefined;
|
|
496
|
-
required?: boolean | undefined;
|
|
497
|
-
description?: string | undefined;
|
|
498
|
-
defaultValue?: unknown;
|
|
499
|
-
enumValues?: string[] | undefined;
|
|
500
|
-
}, {
|
|
501
|
-
name: string;
|
|
502
|
-
type?: string | undefined;
|
|
503
|
-
required?: boolean | undefined;
|
|
504
|
-
description?: string | undefined;
|
|
505
|
-
defaultValue?: unknown;
|
|
506
|
-
enumValues?: string[] | undefined;
|
|
507
|
-
}>, "many">>;
|
|
508
|
-
notes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
509
|
-
}, "strip", z.ZodTypeAny, {
|
|
510
|
-
description?: string | undefined;
|
|
511
|
-
requestBodyType?: string | undefined;
|
|
512
|
-
requestBodyExample?: string | undefined;
|
|
513
|
-
requestBodyFields?: {
|
|
514
|
-
name: string;
|
|
515
|
-
type?: string | undefined;
|
|
516
|
-
required?: boolean | undefined;
|
|
517
|
-
description?: string | undefined;
|
|
518
|
-
defaultValue?: unknown;
|
|
519
|
-
enumValues?: string[] | undefined;
|
|
520
|
-
}[] | undefined;
|
|
521
|
-
requestQueryParams?: {
|
|
522
|
-
name: string;
|
|
523
|
-
type?: string | undefined;
|
|
524
|
-
required?: boolean | undefined;
|
|
525
|
-
description?: string | undefined;
|
|
526
|
-
defaultValue?: unknown;
|
|
527
|
-
enumValues?: string[] | undefined;
|
|
528
|
-
}[] | undefined;
|
|
529
|
-
requestPathParams?: {
|
|
530
|
-
name: string;
|
|
531
|
-
type?: string | undefined;
|
|
532
|
-
required?: boolean | undefined;
|
|
533
|
-
description?: string | undefined;
|
|
534
|
-
defaultValue?: unknown;
|
|
535
|
-
enumValues?: string[] | undefined;
|
|
536
|
-
}[] | undefined;
|
|
537
|
-
notes?: string[] | undefined;
|
|
538
|
-
}, {
|
|
539
|
-
description?: string | undefined;
|
|
540
|
-
requestBodyType?: string | undefined;
|
|
541
|
-
requestBodyExample?: string | undefined;
|
|
542
|
-
requestBodyFields?: {
|
|
543
|
-
name: string;
|
|
544
|
-
type?: string | undefined;
|
|
545
|
-
required?: boolean | undefined;
|
|
546
|
-
description?: string | undefined;
|
|
547
|
-
defaultValue?: unknown;
|
|
548
|
-
enumValues?: string[] | undefined;
|
|
549
|
-
}[] | undefined;
|
|
550
|
-
requestQueryParams?: {
|
|
551
|
-
name: string;
|
|
552
|
-
type?: string | undefined;
|
|
553
|
-
required?: boolean | undefined;
|
|
554
|
-
description?: string | undefined;
|
|
555
|
-
defaultValue?: unknown;
|
|
556
|
-
enumValues?: string[] | undefined;
|
|
557
|
-
}[] | undefined;
|
|
558
|
-
requestPathParams?: {
|
|
559
|
-
name: string;
|
|
560
|
-
type?: string | undefined;
|
|
561
|
-
required?: boolean | undefined;
|
|
562
|
-
description?: string | undefined;
|
|
563
|
-
defaultValue?: unknown;
|
|
564
|
-
enumValues?: string[] | undefined;
|
|
565
|
-
}[] | undefined;
|
|
566
|
-
notes?: string[] | undefined;
|
|
567
|
-
}>>;
|
|
568
|
-
}, "strip", z.ZodTypeAny, {
|
|
569
|
-
marketplace?: {
|
|
570
|
-
description?: string | undefined;
|
|
571
|
-
requestBodyType?: string | undefined;
|
|
572
|
-
requestBodyExample?: string | undefined;
|
|
573
|
-
requestBodyFields?: {
|
|
574
|
-
name: string;
|
|
575
|
-
type?: string | undefined;
|
|
576
|
-
required?: boolean | undefined;
|
|
577
|
-
description?: string | undefined;
|
|
578
|
-
defaultValue?: unknown;
|
|
579
|
-
enumValues?: string[] | undefined;
|
|
580
|
-
}[] | undefined;
|
|
581
|
-
requestQueryParams?: {
|
|
582
|
-
name: string;
|
|
583
|
-
type?: string | undefined;
|
|
584
|
-
required?: boolean | undefined;
|
|
585
|
-
description?: string | undefined;
|
|
586
|
-
defaultValue?: unknown;
|
|
587
|
-
enumValues?: string[] | undefined;
|
|
588
|
-
}[] | undefined;
|
|
589
|
-
requestPathParams?: {
|
|
590
|
-
name: string;
|
|
591
|
-
type?: string | undefined;
|
|
592
|
-
required?: boolean | undefined;
|
|
593
|
-
description?: string | undefined;
|
|
594
|
-
defaultValue?: unknown;
|
|
595
|
-
enumValues?: string[] | undefined;
|
|
596
|
-
}[] | undefined;
|
|
597
|
-
notes?: string[] | undefined;
|
|
598
|
-
} | undefined;
|
|
599
|
-
provider?: {
|
|
600
|
-
description?: string | undefined;
|
|
601
|
-
requestBodyType?: string | undefined;
|
|
602
|
-
requestBodyExample?: string | undefined;
|
|
603
|
-
requestBodyFields?: {
|
|
604
|
-
name: string;
|
|
605
|
-
type?: string | undefined;
|
|
606
|
-
required?: boolean | undefined;
|
|
607
|
-
description?: string | undefined;
|
|
608
|
-
defaultValue?: unknown;
|
|
609
|
-
enumValues?: string[] | undefined;
|
|
610
|
-
}[] | undefined;
|
|
611
|
-
requestQueryParams?: {
|
|
612
|
-
name: string;
|
|
613
|
-
type?: string | undefined;
|
|
614
|
-
required?: boolean | undefined;
|
|
615
|
-
description?: string | undefined;
|
|
616
|
-
defaultValue?: unknown;
|
|
617
|
-
enumValues?: string[] | undefined;
|
|
618
|
-
}[] | undefined;
|
|
619
|
-
requestPathParams?: {
|
|
620
|
-
name: string;
|
|
621
|
-
type?: string | undefined;
|
|
622
|
-
required?: boolean | undefined;
|
|
623
|
-
description?: string | undefined;
|
|
624
|
-
defaultValue?: unknown;
|
|
625
|
-
enumValues?: string[] | undefined;
|
|
626
|
-
}[] | undefined;
|
|
627
|
-
notes?: string[] | undefined;
|
|
628
|
-
} | undefined;
|
|
629
|
-
}, {
|
|
630
|
-
marketplace?: {
|
|
631
|
-
description?: string | undefined;
|
|
632
|
-
requestBodyType?: string | undefined;
|
|
633
|
-
requestBodyExample?: string | undefined;
|
|
634
|
-
requestBodyFields?: {
|
|
635
|
-
name: string;
|
|
636
|
-
type?: string | undefined;
|
|
637
|
-
required?: boolean | undefined;
|
|
638
|
-
description?: string | undefined;
|
|
639
|
-
defaultValue?: unknown;
|
|
640
|
-
enumValues?: string[] | undefined;
|
|
641
|
-
}[] | undefined;
|
|
642
|
-
requestQueryParams?: {
|
|
643
|
-
name: string;
|
|
644
|
-
type?: string | undefined;
|
|
645
|
-
required?: boolean | undefined;
|
|
646
|
-
description?: string | undefined;
|
|
647
|
-
defaultValue?: unknown;
|
|
648
|
-
enumValues?: string[] | undefined;
|
|
649
|
-
}[] | undefined;
|
|
650
|
-
requestPathParams?: {
|
|
651
|
-
name: string;
|
|
652
|
-
type?: string | undefined;
|
|
653
|
-
required?: boolean | undefined;
|
|
654
|
-
description?: string | undefined;
|
|
655
|
-
defaultValue?: unknown;
|
|
656
|
-
enumValues?: string[] | undefined;
|
|
657
|
-
}[] | undefined;
|
|
658
|
-
notes?: string[] | undefined;
|
|
659
|
-
} | undefined;
|
|
660
|
-
provider?: {
|
|
661
|
-
description?: string | undefined;
|
|
662
|
-
requestBodyType?: string | undefined;
|
|
663
|
-
requestBodyExample?: string | undefined;
|
|
664
|
-
requestBodyFields?: {
|
|
665
|
-
name: string;
|
|
666
|
-
type?: string | undefined;
|
|
667
|
-
required?: boolean | undefined;
|
|
668
|
-
description?: string | undefined;
|
|
669
|
-
defaultValue?: unknown;
|
|
670
|
-
enumValues?: string[] | undefined;
|
|
671
|
-
}[] | undefined;
|
|
672
|
-
requestQueryParams?: {
|
|
673
|
-
name: string;
|
|
674
|
-
type?: string | undefined;
|
|
675
|
-
required?: boolean | undefined;
|
|
676
|
-
description?: string | undefined;
|
|
677
|
-
defaultValue?: unknown;
|
|
678
|
-
enumValues?: string[] | undefined;
|
|
679
|
-
}[] | undefined;
|
|
680
|
-
requestPathParams?: {
|
|
681
|
-
name: string;
|
|
682
|
-
type?: string | undefined;
|
|
683
|
-
required?: boolean | undefined;
|
|
684
|
-
description?: string | undefined;
|
|
685
|
-
defaultValue?: unknown;
|
|
686
|
-
enumValues?: string[] | undefined;
|
|
687
|
-
}[] | undefined;
|
|
688
|
-
notes?: string[] | undefined;
|
|
689
|
-
} | undefined;
|
|
690
|
-
}>;
|
|
691
|
-
export type SdkPreparationDiscoveryMetadata = z.infer<typeof sdkPreparationDiscoveryMetadataSchema>;
|
|
305
|
+
export type SdkExternalMetadata = z.infer<typeof sdkExternalMetadataSchema>;
|
|
692
306
|
export declare const sdkPreparedHintValueSchema: z.ZodObject<{
|
|
693
307
|
value: z.ZodString;
|
|
694
308
|
attribution: z.ZodObject<{
|
|
695
|
-
source: z.ZodEnum<["
|
|
696
|
-
authority: z.ZodEnum<["authoritative", "
|
|
309
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
310
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
697
311
|
note: z.ZodOptional<z.ZodString>;
|
|
698
312
|
}, "strip", z.ZodTypeAny, {
|
|
699
|
-
source: "
|
|
700
|
-
authority: "authoritative" | "
|
|
313
|
+
source: "merchant_challenge" | "external_metadata";
|
|
314
|
+
authority: "authoritative" | "advisory";
|
|
701
315
|
note?: string | undefined;
|
|
702
316
|
}, {
|
|
703
|
-
source: "
|
|
704
|
-
authority: "authoritative" | "
|
|
317
|
+
source: "merchant_challenge" | "external_metadata";
|
|
318
|
+
authority: "authoritative" | "advisory";
|
|
705
319
|
note?: string | undefined;
|
|
706
320
|
}>;
|
|
707
321
|
}, "strip", z.ZodTypeAny, {
|
|
708
322
|
value: string;
|
|
709
323
|
attribution: {
|
|
710
|
-
source: "
|
|
711
|
-
authority: "authoritative" | "
|
|
324
|
+
source: "merchant_challenge" | "external_metadata";
|
|
325
|
+
authority: "authoritative" | "advisory";
|
|
712
326
|
note?: string | undefined;
|
|
713
327
|
};
|
|
714
328
|
}, {
|
|
715
329
|
value: string;
|
|
716
330
|
attribution: {
|
|
717
|
-
source: "
|
|
718
|
-
authority: "authoritative" | "
|
|
331
|
+
source: "merchant_challenge" | "external_metadata";
|
|
332
|
+
authority: "authoritative" | "advisory";
|
|
719
333
|
note?: string | undefined;
|
|
720
334
|
};
|
|
721
335
|
}>;
|
|
@@ -729,23 +343,23 @@ export declare const sdkPreparedHintFieldSchema: z.ZodObject<{
|
|
|
729
343
|
enumValues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
730
344
|
} & {
|
|
731
345
|
attribution: z.ZodObject<{
|
|
732
|
-
source: z.ZodEnum<["
|
|
733
|
-
authority: z.ZodEnum<["authoritative", "
|
|
346
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
347
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
734
348
|
note: z.ZodOptional<z.ZodString>;
|
|
735
349
|
}, "strip", z.ZodTypeAny, {
|
|
736
|
-
source: "
|
|
737
|
-
authority: "authoritative" | "
|
|
350
|
+
source: "merchant_challenge" | "external_metadata";
|
|
351
|
+
authority: "authoritative" | "advisory";
|
|
738
352
|
note?: string | undefined;
|
|
739
353
|
}, {
|
|
740
|
-
source: "
|
|
741
|
-
authority: "authoritative" | "
|
|
354
|
+
source: "merchant_challenge" | "external_metadata";
|
|
355
|
+
authority: "authoritative" | "advisory";
|
|
742
356
|
note?: string | undefined;
|
|
743
357
|
}>;
|
|
744
358
|
}, "strip", z.ZodTypeAny, {
|
|
745
359
|
name: string;
|
|
746
360
|
attribution: {
|
|
747
|
-
source: "
|
|
748
|
-
authority: "authoritative" | "
|
|
361
|
+
source: "merchant_challenge" | "external_metadata";
|
|
362
|
+
authority: "authoritative" | "advisory";
|
|
749
363
|
note?: string | undefined;
|
|
750
364
|
};
|
|
751
365
|
type?: string | undefined;
|
|
@@ -756,8 +370,8 @@ export declare const sdkPreparedHintFieldSchema: z.ZodObject<{
|
|
|
756
370
|
}, {
|
|
757
371
|
name: string;
|
|
758
372
|
attribution: {
|
|
759
|
-
source: "
|
|
760
|
-
authority: "authoritative" | "
|
|
373
|
+
source: "merchant_challenge" | "external_metadata";
|
|
374
|
+
authority: "authoritative" | "advisory";
|
|
761
375
|
note?: string | undefined;
|
|
762
376
|
};
|
|
763
377
|
type?: string | undefined;
|
|
@@ -776,90 +390,90 @@ export declare const sdkPreparedRequestHintsSchema: z.ZodObject<{
|
|
|
776
390
|
description: z.ZodOptional<z.ZodObject<{
|
|
777
391
|
value: z.ZodString;
|
|
778
392
|
attribution: z.ZodObject<{
|
|
779
|
-
source: z.ZodEnum<["
|
|
780
|
-
authority: z.ZodEnum<["authoritative", "
|
|
393
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
394
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
781
395
|
note: z.ZodOptional<z.ZodString>;
|
|
782
396
|
}, "strip", z.ZodTypeAny, {
|
|
783
|
-
source: "
|
|
784
|
-
authority: "authoritative" | "
|
|
397
|
+
source: "merchant_challenge" | "external_metadata";
|
|
398
|
+
authority: "authoritative" | "advisory";
|
|
785
399
|
note?: string | undefined;
|
|
786
400
|
}, {
|
|
787
|
-
source: "
|
|
788
|
-
authority: "authoritative" | "
|
|
401
|
+
source: "merchant_challenge" | "external_metadata";
|
|
402
|
+
authority: "authoritative" | "advisory";
|
|
789
403
|
note?: string | undefined;
|
|
790
404
|
}>;
|
|
791
405
|
}, "strip", z.ZodTypeAny, {
|
|
792
406
|
value: string;
|
|
793
407
|
attribution: {
|
|
794
|
-
source: "
|
|
795
|
-
authority: "authoritative" | "
|
|
408
|
+
source: "merchant_challenge" | "external_metadata";
|
|
409
|
+
authority: "authoritative" | "advisory";
|
|
796
410
|
note?: string | undefined;
|
|
797
411
|
};
|
|
798
412
|
}, {
|
|
799
413
|
value: string;
|
|
800
414
|
attribution: {
|
|
801
|
-
source: "
|
|
802
|
-
authority: "authoritative" | "
|
|
415
|
+
source: "merchant_challenge" | "external_metadata";
|
|
416
|
+
authority: "authoritative" | "advisory";
|
|
803
417
|
note?: string | undefined;
|
|
804
418
|
};
|
|
805
419
|
}>>;
|
|
806
420
|
requestBodyType: z.ZodOptional<z.ZodObject<{
|
|
807
421
|
value: z.ZodString;
|
|
808
422
|
attribution: z.ZodObject<{
|
|
809
|
-
source: z.ZodEnum<["
|
|
810
|
-
authority: z.ZodEnum<["authoritative", "
|
|
423
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
424
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
811
425
|
note: z.ZodOptional<z.ZodString>;
|
|
812
426
|
}, "strip", z.ZodTypeAny, {
|
|
813
|
-
source: "
|
|
814
|
-
authority: "authoritative" | "
|
|
427
|
+
source: "merchant_challenge" | "external_metadata";
|
|
428
|
+
authority: "authoritative" | "advisory";
|
|
815
429
|
note?: string | undefined;
|
|
816
430
|
}, {
|
|
817
|
-
source: "
|
|
818
|
-
authority: "authoritative" | "
|
|
431
|
+
source: "merchant_challenge" | "external_metadata";
|
|
432
|
+
authority: "authoritative" | "advisory";
|
|
819
433
|
note?: string | undefined;
|
|
820
434
|
}>;
|
|
821
435
|
}, "strip", z.ZodTypeAny, {
|
|
822
436
|
value: string;
|
|
823
437
|
attribution: {
|
|
824
|
-
source: "
|
|
825
|
-
authority: "authoritative" | "
|
|
438
|
+
source: "merchant_challenge" | "external_metadata";
|
|
439
|
+
authority: "authoritative" | "advisory";
|
|
826
440
|
note?: string | undefined;
|
|
827
441
|
};
|
|
828
442
|
}, {
|
|
829
443
|
value: string;
|
|
830
444
|
attribution: {
|
|
831
|
-
source: "
|
|
832
|
-
authority: "authoritative" | "
|
|
445
|
+
source: "merchant_challenge" | "external_metadata";
|
|
446
|
+
authority: "authoritative" | "advisory";
|
|
833
447
|
note?: string | undefined;
|
|
834
448
|
};
|
|
835
449
|
}>>;
|
|
836
450
|
requestBodyExample: z.ZodOptional<z.ZodObject<{
|
|
837
451
|
value: z.ZodString;
|
|
838
452
|
attribution: z.ZodObject<{
|
|
839
|
-
source: z.ZodEnum<["
|
|
840
|
-
authority: z.ZodEnum<["authoritative", "
|
|
453
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
454
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
841
455
|
note: z.ZodOptional<z.ZodString>;
|
|
842
456
|
}, "strip", z.ZodTypeAny, {
|
|
843
|
-
source: "
|
|
844
|
-
authority: "authoritative" | "
|
|
457
|
+
source: "merchant_challenge" | "external_metadata";
|
|
458
|
+
authority: "authoritative" | "advisory";
|
|
845
459
|
note?: string | undefined;
|
|
846
460
|
}, {
|
|
847
|
-
source: "
|
|
848
|
-
authority: "authoritative" | "
|
|
461
|
+
source: "merchant_challenge" | "external_metadata";
|
|
462
|
+
authority: "authoritative" | "advisory";
|
|
849
463
|
note?: string | undefined;
|
|
850
464
|
}>;
|
|
851
465
|
}, "strip", z.ZodTypeAny, {
|
|
852
466
|
value: string;
|
|
853
467
|
attribution: {
|
|
854
|
-
source: "
|
|
855
|
-
authority: "authoritative" | "
|
|
468
|
+
source: "merchant_challenge" | "external_metadata";
|
|
469
|
+
authority: "authoritative" | "advisory";
|
|
856
470
|
note?: string | undefined;
|
|
857
471
|
};
|
|
858
472
|
}, {
|
|
859
473
|
value: string;
|
|
860
474
|
attribution: {
|
|
861
|
-
source: "
|
|
862
|
-
authority: "authoritative" | "
|
|
475
|
+
source: "merchant_challenge" | "external_metadata";
|
|
476
|
+
authority: "authoritative" | "advisory";
|
|
863
477
|
note?: string | undefined;
|
|
864
478
|
};
|
|
865
479
|
}>>;
|
|
@@ -872,23 +486,23 @@ export declare const sdkPreparedRequestHintsSchema: z.ZodObject<{
|
|
|
872
486
|
enumValues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
873
487
|
} & {
|
|
874
488
|
attribution: z.ZodObject<{
|
|
875
|
-
source: z.ZodEnum<["
|
|
876
|
-
authority: z.ZodEnum<["authoritative", "
|
|
489
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
490
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
877
491
|
note: z.ZodOptional<z.ZodString>;
|
|
878
492
|
}, "strip", z.ZodTypeAny, {
|
|
879
|
-
source: "
|
|
880
|
-
authority: "authoritative" | "
|
|
493
|
+
source: "merchant_challenge" | "external_metadata";
|
|
494
|
+
authority: "authoritative" | "advisory";
|
|
881
495
|
note?: string | undefined;
|
|
882
496
|
}, {
|
|
883
|
-
source: "
|
|
884
|
-
authority: "authoritative" | "
|
|
497
|
+
source: "merchant_challenge" | "external_metadata";
|
|
498
|
+
authority: "authoritative" | "advisory";
|
|
885
499
|
note?: string | undefined;
|
|
886
500
|
}>;
|
|
887
501
|
}, "strip", z.ZodTypeAny, {
|
|
888
502
|
name: string;
|
|
889
503
|
attribution: {
|
|
890
|
-
source: "
|
|
891
|
-
authority: "authoritative" | "
|
|
504
|
+
source: "merchant_challenge" | "external_metadata";
|
|
505
|
+
authority: "authoritative" | "advisory";
|
|
892
506
|
note?: string | undefined;
|
|
893
507
|
};
|
|
894
508
|
type?: string | undefined;
|
|
@@ -899,8 +513,8 @@ export declare const sdkPreparedRequestHintsSchema: z.ZodObject<{
|
|
|
899
513
|
}, {
|
|
900
514
|
name: string;
|
|
901
515
|
attribution: {
|
|
902
|
-
source: "
|
|
903
|
-
authority: "authoritative" | "
|
|
516
|
+
source: "merchant_challenge" | "external_metadata";
|
|
517
|
+
authority: "authoritative" | "advisory";
|
|
904
518
|
note?: string | undefined;
|
|
905
519
|
};
|
|
906
520
|
type?: string | undefined;
|
|
@@ -918,23 +532,23 @@ export declare const sdkPreparedRequestHintsSchema: z.ZodObject<{
|
|
|
918
532
|
enumValues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
919
533
|
} & {
|
|
920
534
|
attribution: z.ZodObject<{
|
|
921
|
-
source: z.ZodEnum<["
|
|
922
|
-
authority: z.ZodEnum<["authoritative", "
|
|
535
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
536
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
923
537
|
note: z.ZodOptional<z.ZodString>;
|
|
924
538
|
}, "strip", z.ZodTypeAny, {
|
|
925
|
-
source: "
|
|
926
|
-
authority: "authoritative" | "
|
|
539
|
+
source: "merchant_challenge" | "external_metadata";
|
|
540
|
+
authority: "authoritative" | "advisory";
|
|
927
541
|
note?: string | undefined;
|
|
928
542
|
}, {
|
|
929
|
-
source: "
|
|
930
|
-
authority: "authoritative" | "
|
|
543
|
+
source: "merchant_challenge" | "external_metadata";
|
|
544
|
+
authority: "authoritative" | "advisory";
|
|
931
545
|
note?: string | undefined;
|
|
932
546
|
}>;
|
|
933
547
|
}, "strip", z.ZodTypeAny, {
|
|
934
548
|
name: string;
|
|
935
549
|
attribution: {
|
|
936
|
-
source: "
|
|
937
|
-
authority: "authoritative" | "
|
|
550
|
+
source: "merchant_challenge" | "external_metadata";
|
|
551
|
+
authority: "authoritative" | "advisory";
|
|
938
552
|
note?: string | undefined;
|
|
939
553
|
};
|
|
940
554
|
type?: string | undefined;
|
|
@@ -945,8 +559,8 @@ export declare const sdkPreparedRequestHintsSchema: z.ZodObject<{
|
|
|
945
559
|
}, {
|
|
946
560
|
name: string;
|
|
947
561
|
attribution: {
|
|
948
|
-
source: "
|
|
949
|
-
authority: "authoritative" | "
|
|
562
|
+
source: "merchant_challenge" | "external_metadata";
|
|
563
|
+
authority: "authoritative" | "advisory";
|
|
950
564
|
note?: string | undefined;
|
|
951
565
|
};
|
|
952
566
|
type?: string | undefined;
|
|
@@ -964,23 +578,23 @@ export declare const sdkPreparedRequestHintsSchema: z.ZodObject<{
|
|
|
964
578
|
enumValues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
965
579
|
} & {
|
|
966
580
|
attribution: z.ZodObject<{
|
|
967
|
-
source: z.ZodEnum<["
|
|
968
|
-
authority: z.ZodEnum<["authoritative", "
|
|
581
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
582
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
969
583
|
note: z.ZodOptional<z.ZodString>;
|
|
970
584
|
}, "strip", z.ZodTypeAny, {
|
|
971
|
-
source: "
|
|
972
|
-
authority: "authoritative" | "
|
|
585
|
+
source: "merchant_challenge" | "external_metadata";
|
|
586
|
+
authority: "authoritative" | "advisory";
|
|
973
587
|
note?: string | undefined;
|
|
974
588
|
}, {
|
|
975
|
-
source: "
|
|
976
|
-
authority: "authoritative" | "
|
|
589
|
+
source: "merchant_challenge" | "external_metadata";
|
|
590
|
+
authority: "authoritative" | "advisory";
|
|
977
591
|
note?: string | undefined;
|
|
978
592
|
}>;
|
|
979
593
|
}, "strip", z.ZodTypeAny, {
|
|
980
594
|
name: string;
|
|
981
595
|
attribution: {
|
|
982
|
-
source: "
|
|
983
|
-
authority: "authoritative" | "
|
|
596
|
+
source: "merchant_challenge" | "external_metadata";
|
|
597
|
+
authority: "authoritative" | "advisory";
|
|
984
598
|
note?: string | undefined;
|
|
985
599
|
};
|
|
986
600
|
type?: string | undefined;
|
|
@@ -991,8 +605,8 @@ export declare const sdkPreparedRequestHintsSchema: z.ZodObject<{
|
|
|
991
605
|
}, {
|
|
992
606
|
name: string;
|
|
993
607
|
attribution: {
|
|
994
|
-
source: "
|
|
995
|
-
authority: "authoritative" | "
|
|
608
|
+
source: "merchant_challenge" | "external_metadata";
|
|
609
|
+
authority: "authoritative" | "advisory";
|
|
996
610
|
note?: string | undefined;
|
|
997
611
|
};
|
|
998
612
|
type?: string | undefined;
|
|
@@ -1004,30 +618,30 @@ export declare const sdkPreparedRequestHintsSchema: z.ZodObject<{
|
|
|
1004
618
|
notes: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1005
619
|
value: z.ZodString;
|
|
1006
620
|
attribution: z.ZodObject<{
|
|
1007
|
-
source: z.ZodEnum<["
|
|
1008
|
-
authority: z.ZodEnum<["authoritative", "
|
|
621
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
622
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
1009
623
|
note: z.ZodOptional<z.ZodString>;
|
|
1010
624
|
}, "strip", z.ZodTypeAny, {
|
|
1011
|
-
source: "
|
|
1012
|
-
authority: "authoritative" | "
|
|
625
|
+
source: "merchant_challenge" | "external_metadata";
|
|
626
|
+
authority: "authoritative" | "advisory";
|
|
1013
627
|
note?: string | undefined;
|
|
1014
628
|
}, {
|
|
1015
|
-
source: "
|
|
1016
|
-
authority: "authoritative" | "
|
|
629
|
+
source: "merchant_challenge" | "external_metadata";
|
|
630
|
+
authority: "authoritative" | "advisory";
|
|
1017
631
|
note?: string | undefined;
|
|
1018
632
|
}>;
|
|
1019
633
|
}, "strip", z.ZodTypeAny, {
|
|
1020
634
|
value: string;
|
|
1021
635
|
attribution: {
|
|
1022
|
-
source: "
|
|
1023
|
-
authority: "authoritative" | "
|
|
636
|
+
source: "merchant_challenge" | "external_metadata";
|
|
637
|
+
authority: "authoritative" | "advisory";
|
|
1024
638
|
note?: string | undefined;
|
|
1025
639
|
};
|
|
1026
640
|
}, {
|
|
1027
641
|
value: string;
|
|
1028
642
|
attribution: {
|
|
1029
|
-
source: "
|
|
1030
|
-
authority: "authoritative" | "
|
|
643
|
+
source: "merchant_challenge" | "external_metadata";
|
|
644
|
+
authority: "authoritative" | "advisory";
|
|
1031
645
|
note?: string | undefined;
|
|
1032
646
|
};
|
|
1033
647
|
}>, "many">>;
|
|
@@ -1035,8 +649,8 @@ export declare const sdkPreparedRequestHintsSchema: z.ZodObject<{
|
|
|
1035
649
|
requestBodyFields: {
|
|
1036
650
|
name: string;
|
|
1037
651
|
attribution: {
|
|
1038
|
-
source: "
|
|
1039
|
-
authority: "authoritative" | "
|
|
652
|
+
source: "merchant_challenge" | "external_metadata";
|
|
653
|
+
authority: "authoritative" | "advisory";
|
|
1040
654
|
note?: string | undefined;
|
|
1041
655
|
};
|
|
1042
656
|
type?: string | undefined;
|
|
@@ -1048,8 +662,8 @@ export declare const sdkPreparedRequestHintsSchema: z.ZodObject<{
|
|
|
1048
662
|
requestQueryParams: {
|
|
1049
663
|
name: string;
|
|
1050
664
|
attribution: {
|
|
1051
|
-
source: "
|
|
1052
|
-
authority: "authoritative" | "
|
|
665
|
+
source: "merchant_challenge" | "external_metadata";
|
|
666
|
+
authority: "authoritative" | "advisory";
|
|
1053
667
|
note?: string | undefined;
|
|
1054
668
|
};
|
|
1055
669
|
type?: string | undefined;
|
|
@@ -1061,8 +675,8 @@ export declare const sdkPreparedRequestHintsSchema: z.ZodObject<{
|
|
|
1061
675
|
requestPathParams: {
|
|
1062
676
|
name: string;
|
|
1063
677
|
attribution: {
|
|
1064
|
-
source: "
|
|
1065
|
-
authority: "authoritative" | "
|
|
678
|
+
source: "merchant_challenge" | "external_metadata";
|
|
679
|
+
authority: "authoritative" | "advisory";
|
|
1066
680
|
note?: string | undefined;
|
|
1067
681
|
};
|
|
1068
682
|
type?: string | undefined;
|
|
@@ -1074,32 +688,32 @@ export declare const sdkPreparedRequestHintsSchema: z.ZodObject<{
|
|
|
1074
688
|
notes: {
|
|
1075
689
|
value: string;
|
|
1076
690
|
attribution: {
|
|
1077
|
-
source: "
|
|
1078
|
-
authority: "authoritative" | "
|
|
691
|
+
source: "merchant_challenge" | "external_metadata";
|
|
692
|
+
authority: "authoritative" | "advisory";
|
|
1079
693
|
note?: string | undefined;
|
|
1080
694
|
};
|
|
1081
695
|
}[];
|
|
1082
696
|
description?: {
|
|
1083
697
|
value: string;
|
|
1084
698
|
attribution: {
|
|
1085
|
-
source: "
|
|
1086
|
-
authority: "authoritative" | "
|
|
699
|
+
source: "merchant_challenge" | "external_metadata";
|
|
700
|
+
authority: "authoritative" | "advisory";
|
|
1087
701
|
note?: string | undefined;
|
|
1088
702
|
};
|
|
1089
703
|
} | undefined;
|
|
1090
704
|
requestBodyType?: {
|
|
1091
705
|
value: string;
|
|
1092
706
|
attribution: {
|
|
1093
|
-
source: "
|
|
1094
|
-
authority: "authoritative" | "
|
|
707
|
+
source: "merchant_challenge" | "external_metadata";
|
|
708
|
+
authority: "authoritative" | "advisory";
|
|
1095
709
|
note?: string | undefined;
|
|
1096
710
|
};
|
|
1097
711
|
} | undefined;
|
|
1098
712
|
requestBodyExample?: {
|
|
1099
713
|
value: string;
|
|
1100
714
|
attribution: {
|
|
1101
|
-
source: "
|
|
1102
|
-
authority: "authoritative" | "
|
|
715
|
+
source: "merchant_challenge" | "external_metadata";
|
|
716
|
+
authority: "authoritative" | "advisory";
|
|
1103
717
|
note?: string | undefined;
|
|
1104
718
|
};
|
|
1105
719
|
} | undefined;
|
|
@@ -1107,32 +721,32 @@ export declare const sdkPreparedRequestHintsSchema: z.ZodObject<{
|
|
|
1107
721
|
description?: {
|
|
1108
722
|
value: string;
|
|
1109
723
|
attribution: {
|
|
1110
|
-
source: "
|
|
1111
|
-
authority: "authoritative" | "
|
|
724
|
+
source: "merchant_challenge" | "external_metadata";
|
|
725
|
+
authority: "authoritative" | "advisory";
|
|
1112
726
|
note?: string | undefined;
|
|
1113
727
|
};
|
|
1114
728
|
} | undefined;
|
|
1115
729
|
requestBodyType?: {
|
|
1116
730
|
value: string;
|
|
1117
731
|
attribution: {
|
|
1118
|
-
source: "
|
|
1119
|
-
authority: "authoritative" | "
|
|
732
|
+
source: "merchant_challenge" | "external_metadata";
|
|
733
|
+
authority: "authoritative" | "advisory";
|
|
1120
734
|
note?: string | undefined;
|
|
1121
735
|
};
|
|
1122
736
|
} | undefined;
|
|
1123
737
|
requestBodyExample?: {
|
|
1124
738
|
value: string;
|
|
1125
739
|
attribution: {
|
|
1126
|
-
source: "
|
|
1127
|
-
authority: "authoritative" | "
|
|
740
|
+
source: "merchant_challenge" | "external_metadata";
|
|
741
|
+
authority: "authoritative" | "advisory";
|
|
1128
742
|
note?: string | undefined;
|
|
1129
743
|
};
|
|
1130
744
|
} | undefined;
|
|
1131
745
|
requestBodyFields?: {
|
|
1132
746
|
name: string;
|
|
1133
747
|
attribution: {
|
|
1134
|
-
source: "
|
|
1135
|
-
authority: "authoritative" | "
|
|
748
|
+
source: "merchant_challenge" | "external_metadata";
|
|
749
|
+
authority: "authoritative" | "advisory";
|
|
1136
750
|
note?: string | undefined;
|
|
1137
751
|
};
|
|
1138
752
|
type?: string | undefined;
|
|
@@ -1144,8 +758,8 @@ export declare const sdkPreparedRequestHintsSchema: z.ZodObject<{
|
|
|
1144
758
|
requestQueryParams?: {
|
|
1145
759
|
name: string;
|
|
1146
760
|
attribution: {
|
|
1147
|
-
source: "
|
|
1148
|
-
authority: "authoritative" | "
|
|
761
|
+
source: "merchant_challenge" | "external_metadata";
|
|
762
|
+
authority: "authoritative" | "advisory";
|
|
1149
763
|
note?: string | undefined;
|
|
1150
764
|
};
|
|
1151
765
|
type?: string | undefined;
|
|
@@ -1157,8 +771,8 @@ export declare const sdkPreparedRequestHintsSchema: z.ZodObject<{
|
|
|
1157
771
|
requestPathParams?: {
|
|
1158
772
|
name: string;
|
|
1159
773
|
attribution: {
|
|
1160
|
-
source: "
|
|
1161
|
-
authority: "authoritative" | "
|
|
774
|
+
source: "merchant_challenge" | "external_metadata";
|
|
775
|
+
authority: "authoritative" | "advisory";
|
|
1162
776
|
note?: string | undefined;
|
|
1163
777
|
};
|
|
1164
778
|
type?: string | undefined;
|
|
@@ -1170,8 +784,8 @@ export declare const sdkPreparedRequestHintsSchema: z.ZodObject<{
|
|
|
1170
784
|
notes?: {
|
|
1171
785
|
value: string;
|
|
1172
786
|
attribution: {
|
|
1173
|
-
source: "
|
|
1174
|
-
authority: "authoritative" | "
|
|
787
|
+
source: "merchant_challenge" | "external_metadata";
|
|
788
|
+
authority: "authoritative" | "advisory";
|
|
1175
789
|
note?: string | undefined;
|
|
1176
790
|
};
|
|
1177
791
|
}[] | undefined;
|
|
@@ -1191,36 +805,23 @@ export declare const sdkPreparedPaymentRequirementSchema: z.ZodObject<{
|
|
|
1191
805
|
amountMinor: z.ZodOptional<z.ZodString>;
|
|
1192
806
|
precision: z.ZodOptional<z.ZodNumber>;
|
|
1193
807
|
provenance: z.ZodObject<{
|
|
1194
|
-
source: z.ZodEnum<["
|
|
1195
|
-
authority: z.ZodEnum<["authoritative", "
|
|
808
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
809
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
1196
810
|
note: z.ZodOptional<z.ZodString>;
|
|
1197
811
|
}, "strip", z.ZodTypeAny, {
|
|
1198
|
-
source: "
|
|
1199
|
-
authority: "authoritative" | "
|
|
812
|
+
source: "merchant_challenge" | "external_metadata";
|
|
813
|
+
authority: "authoritative" | "advisory";
|
|
1200
814
|
note?: string | undefined;
|
|
1201
815
|
}, {
|
|
1202
|
-
source: "
|
|
1203
|
-
authority: "authoritative" | "
|
|
816
|
+
source: "merchant_challenge" | "external_metadata";
|
|
817
|
+
authority: "authoritative" | "advisory";
|
|
1204
818
|
note?: string | undefined;
|
|
1205
819
|
}>;
|
|
1206
|
-
confirmation: z.ZodOptional<z.ZodObject<{
|
|
1207
|
-
source: z.ZodEnum<["marketplace", "provider", "merchant_challenge", "runtime_probe"]>;
|
|
1208
|
-
authority: z.ZodEnum<["authoritative", "confirmatory", "advisory"]>;
|
|
1209
|
-
note: z.ZodOptional<z.ZodString>;
|
|
1210
|
-
}, "strip", z.ZodTypeAny, {
|
|
1211
|
-
source: "marketplace" | "provider" | "merchant_challenge" | "runtime_probe";
|
|
1212
|
-
authority: "authoritative" | "confirmatory" | "advisory";
|
|
1213
|
-
note?: string | undefined;
|
|
1214
|
-
}, {
|
|
1215
|
-
source: "marketplace" | "provider" | "merchant_challenge" | "runtime_probe";
|
|
1216
|
-
authority: "authoritative" | "confirmatory" | "advisory";
|
|
1217
|
-
note?: string | undefined;
|
|
1218
|
-
}>>;
|
|
1219
820
|
}, "strip", z.ZodTypeAny, {
|
|
1220
821
|
protocol: "x402" | "l402";
|
|
1221
822
|
provenance: {
|
|
1222
|
-
source: "
|
|
1223
|
-
authority: "authoritative" | "
|
|
823
|
+
source: "merchant_challenge" | "external_metadata";
|
|
824
|
+
authority: "authoritative" | "advisory";
|
|
1224
825
|
note?: string | undefined;
|
|
1225
826
|
};
|
|
1226
827
|
asset?: string | undefined;
|
|
@@ -1231,16 +832,11 @@ export declare const sdkPreparedPaymentRequirementSchema: z.ZodObject<{
|
|
|
1231
832
|
network?: string | undefined;
|
|
1232
833
|
payee?: string | undefined;
|
|
1233
834
|
amountType?: "exact" | "max" | undefined;
|
|
1234
|
-
confirmation?: {
|
|
1235
|
-
source: "marketplace" | "provider" | "merchant_challenge" | "runtime_probe";
|
|
1236
|
-
authority: "authoritative" | "confirmatory" | "advisory";
|
|
1237
|
-
note?: string | undefined;
|
|
1238
|
-
} | undefined;
|
|
1239
835
|
}, {
|
|
1240
836
|
protocol: "x402" | "l402";
|
|
1241
837
|
provenance: {
|
|
1242
|
-
source: "
|
|
1243
|
-
authority: "authoritative" | "
|
|
838
|
+
source: "merchant_challenge" | "external_metadata";
|
|
839
|
+
authority: "authoritative" | "advisory";
|
|
1244
840
|
note?: string | undefined;
|
|
1245
841
|
};
|
|
1246
842
|
asset?: string | undefined;
|
|
@@ -1251,11 +847,6 @@ export declare const sdkPreparedPaymentRequirementSchema: z.ZodObject<{
|
|
|
1251
847
|
network?: string | undefined;
|
|
1252
848
|
payee?: string | undefined;
|
|
1253
849
|
amountType?: "exact" | "max" | undefined;
|
|
1254
|
-
confirmation?: {
|
|
1255
|
-
source: "marketplace" | "provider" | "merchant_challenge" | "runtime_probe";
|
|
1256
|
-
authority: "authoritative" | "confirmatory" | "advisory";
|
|
1257
|
-
note?: string | undefined;
|
|
1258
|
-
} | undefined;
|
|
1259
850
|
}>;
|
|
1260
851
|
export type SdkPreparedPaymentRequirement = z.infer<typeof sdkPreparedPaymentRequirementSchema>;
|
|
1261
852
|
/** Evidence that the SDK performed an unpaid live probe before preparation. */
|
|
@@ -1280,14 +871,14 @@ export declare const sdkPreparedValidationIssueSchema: z.ZodObject<{
|
|
|
1280
871
|
field: z.ZodString;
|
|
1281
872
|
code: z.ZodString;
|
|
1282
873
|
message: z.ZodString;
|
|
1283
|
-
source: z.ZodEnum<["
|
|
874
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
1284
875
|
blocking: z.ZodBoolean;
|
|
1285
876
|
severity: z.ZodEnum<["error", "warning"]>;
|
|
1286
877
|
suggestedFix: z.ZodOptional<z.ZodString>;
|
|
1287
878
|
}, "strip", z.ZodTypeAny, {
|
|
1288
879
|
code: string;
|
|
1289
880
|
message: string;
|
|
1290
|
-
source: "
|
|
881
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1291
882
|
location: "path" | "headers" | "body" | "query";
|
|
1292
883
|
field: string;
|
|
1293
884
|
blocking: boolean;
|
|
@@ -1296,7 +887,7 @@ export declare const sdkPreparedValidationIssueSchema: z.ZodObject<{
|
|
|
1296
887
|
}, {
|
|
1297
888
|
code: string;
|
|
1298
889
|
message: string;
|
|
1299
|
-
source: "
|
|
890
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1300
891
|
location: "path" | "headers" | "body" | "query";
|
|
1301
892
|
field: string;
|
|
1302
893
|
blocking: boolean;
|
|
@@ -1334,90 +925,90 @@ export declare const sdkPreparedPaidRequestPassthroughSchema: z.ZodObject<{
|
|
|
1334
925
|
description: z.ZodOptional<z.ZodObject<{
|
|
1335
926
|
value: z.ZodString;
|
|
1336
927
|
attribution: z.ZodObject<{
|
|
1337
|
-
source: z.ZodEnum<["
|
|
1338
|
-
authority: z.ZodEnum<["authoritative", "
|
|
928
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
929
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
1339
930
|
note: z.ZodOptional<z.ZodString>;
|
|
1340
931
|
}, "strip", z.ZodTypeAny, {
|
|
1341
|
-
source: "
|
|
1342
|
-
authority: "authoritative" | "
|
|
932
|
+
source: "merchant_challenge" | "external_metadata";
|
|
933
|
+
authority: "authoritative" | "advisory";
|
|
1343
934
|
note?: string | undefined;
|
|
1344
935
|
}, {
|
|
1345
|
-
source: "
|
|
1346
|
-
authority: "authoritative" | "
|
|
936
|
+
source: "merchant_challenge" | "external_metadata";
|
|
937
|
+
authority: "authoritative" | "advisory";
|
|
1347
938
|
note?: string | undefined;
|
|
1348
939
|
}>;
|
|
1349
940
|
}, "strip", z.ZodTypeAny, {
|
|
1350
941
|
value: string;
|
|
1351
942
|
attribution: {
|
|
1352
|
-
source: "
|
|
1353
|
-
authority: "authoritative" | "
|
|
943
|
+
source: "merchant_challenge" | "external_metadata";
|
|
944
|
+
authority: "authoritative" | "advisory";
|
|
1354
945
|
note?: string | undefined;
|
|
1355
946
|
};
|
|
1356
947
|
}, {
|
|
1357
948
|
value: string;
|
|
1358
949
|
attribution: {
|
|
1359
|
-
source: "
|
|
1360
|
-
authority: "authoritative" | "
|
|
950
|
+
source: "merchant_challenge" | "external_metadata";
|
|
951
|
+
authority: "authoritative" | "advisory";
|
|
1361
952
|
note?: string | undefined;
|
|
1362
953
|
};
|
|
1363
954
|
}>>;
|
|
1364
955
|
requestBodyType: z.ZodOptional<z.ZodObject<{
|
|
1365
956
|
value: z.ZodString;
|
|
1366
957
|
attribution: z.ZodObject<{
|
|
1367
|
-
source: z.ZodEnum<["
|
|
1368
|
-
authority: z.ZodEnum<["authoritative", "
|
|
958
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
959
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
1369
960
|
note: z.ZodOptional<z.ZodString>;
|
|
1370
961
|
}, "strip", z.ZodTypeAny, {
|
|
1371
|
-
source: "
|
|
1372
|
-
authority: "authoritative" | "
|
|
962
|
+
source: "merchant_challenge" | "external_metadata";
|
|
963
|
+
authority: "authoritative" | "advisory";
|
|
1373
964
|
note?: string | undefined;
|
|
1374
965
|
}, {
|
|
1375
|
-
source: "
|
|
1376
|
-
authority: "authoritative" | "
|
|
966
|
+
source: "merchant_challenge" | "external_metadata";
|
|
967
|
+
authority: "authoritative" | "advisory";
|
|
1377
968
|
note?: string | undefined;
|
|
1378
969
|
}>;
|
|
1379
970
|
}, "strip", z.ZodTypeAny, {
|
|
1380
971
|
value: string;
|
|
1381
972
|
attribution: {
|
|
1382
|
-
source: "
|
|
1383
|
-
authority: "authoritative" | "
|
|
973
|
+
source: "merchant_challenge" | "external_metadata";
|
|
974
|
+
authority: "authoritative" | "advisory";
|
|
1384
975
|
note?: string | undefined;
|
|
1385
976
|
};
|
|
1386
977
|
}, {
|
|
1387
978
|
value: string;
|
|
1388
979
|
attribution: {
|
|
1389
|
-
source: "
|
|
1390
|
-
authority: "authoritative" | "
|
|
980
|
+
source: "merchant_challenge" | "external_metadata";
|
|
981
|
+
authority: "authoritative" | "advisory";
|
|
1391
982
|
note?: string | undefined;
|
|
1392
983
|
};
|
|
1393
984
|
}>>;
|
|
1394
985
|
requestBodyExample: z.ZodOptional<z.ZodObject<{
|
|
1395
986
|
value: z.ZodString;
|
|
1396
987
|
attribution: z.ZodObject<{
|
|
1397
|
-
source: z.ZodEnum<["
|
|
1398
|
-
authority: z.ZodEnum<["authoritative", "
|
|
988
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
989
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
1399
990
|
note: z.ZodOptional<z.ZodString>;
|
|
1400
991
|
}, "strip", z.ZodTypeAny, {
|
|
1401
|
-
source: "
|
|
1402
|
-
authority: "authoritative" | "
|
|
992
|
+
source: "merchant_challenge" | "external_metadata";
|
|
993
|
+
authority: "authoritative" | "advisory";
|
|
1403
994
|
note?: string | undefined;
|
|
1404
995
|
}, {
|
|
1405
|
-
source: "
|
|
1406
|
-
authority: "authoritative" | "
|
|
996
|
+
source: "merchant_challenge" | "external_metadata";
|
|
997
|
+
authority: "authoritative" | "advisory";
|
|
1407
998
|
note?: string | undefined;
|
|
1408
999
|
}>;
|
|
1409
1000
|
}, "strip", z.ZodTypeAny, {
|
|
1410
1001
|
value: string;
|
|
1411
1002
|
attribution: {
|
|
1412
|
-
source: "
|
|
1413
|
-
authority: "authoritative" | "
|
|
1003
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1004
|
+
authority: "authoritative" | "advisory";
|
|
1414
1005
|
note?: string | undefined;
|
|
1415
1006
|
};
|
|
1416
1007
|
}, {
|
|
1417
1008
|
value: string;
|
|
1418
1009
|
attribution: {
|
|
1419
|
-
source: "
|
|
1420
|
-
authority: "authoritative" | "
|
|
1010
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1011
|
+
authority: "authoritative" | "advisory";
|
|
1421
1012
|
note?: string | undefined;
|
|
1422
1013
|
};
|
|
1423
1014
|
}>>;
|
|
@@ -1430,23 +1021,23 @@ export declare const sdkPreparedPaidRequestPassthroughSchema: z.ZodObject<{
|
|
|
1430
1021
|
enumValues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1431
1022
|
} & {
|
|
1432
1023
|
attribution: z.ZodObject<{
|
|
1433
|
-
source: z.ZodEnum<["
|
|
1434
|
-
authority: z.ZodEnum<["authoritative", "
|
|
1024
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
1025
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
1435
1026
|
note: z.ZodOptional<z.ZodString>;
|
|
1436
1027
|
}, "strip", z.ZodTypeAny, {
|
|
1437
|
-
source: "
|
|
1438
|
-
authority: "authoritative" | "
|
|
1028
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1029
|
+
authority: "authoritative" | "advisory";
|
|
1439
1030
|
note?: string | undefined;
|
|
1440
1031
|
}, {
|
|
1441
|
-
source: "
|
|
1442
|
-
authority: "authoritative" | "
|
|
1032
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1033
|
+
authority: "authoritative" | "advisory";
|
|
1443
1034
|
note?: string | undefined;
|
|
1444
1035
|
}>;
|
|
1445
1036
|
}, "strip", z.ZodTypeAny, {
|
|
1446
1037
|
name: string;
|
|
1447
1038
|
attribution: {
|
|
1448
|
-
source: "
|
|
1449
|
-
authority: "authoritative" | "
|
|
1039
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1040
|
+
authority: "authoritative" | "advisory";
|
|
1450
1041
|
note?: string | undefined;
|
|
1451
1042
|
};
|
|
1452
1043
|
type?: string | undefined;
|
|
@@ -1457,8 +1048,8 @@ export declare const sdkPreparedPaidRequestPassthroughSchema: z.ZodObject<{
|
|
|
1457
1048
|
}, {
|
|
1458
1049
|
name: string;
|
|
1459
1050
|
attribution: {
|
|
1460
|
-
source: "
|
|
1461
|
-
authority: "authoritative" | "
|
|
1051
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1052
|
+
authority: "authoritative" | "advisory";
|
|
1462
1053
|
note?: string | undefined;
|
|
1463
1054
|
};
|
|
1464
1055
|
type?: string | undefined;
|
|
@@ -1476,23 +1067,23 @@ export declare const sdkPreparedPaidRequestPassthroughSchema: z.ZodObject<{
|
|
|
1476
1067
|
enumValues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1477
1068
|
} & {
|
|
1478
1069
|
attribution: z.ZodObject<{
|
|
1479
|
-
source: z.ZodEnum<["
|
|
1480
|
-
authority: z.ZodEnum<["authoritative", "
|
|
1070
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
1071
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
1481
1072
|
note: z.ZodOptional<z.ZodString>;
|
|
1482
1073
|
}, "strip", z.ZodTypeAny, {
|
|
1483
|
-
source: "
|
|
1484
|
-
authority: "authoritative" | "
|
|
1074
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1075
|
+
authority: "authoritative" | "advisory";
|
|
1485
1076
|
note?: string | undefined;
|
|
1486
1077
|
}, {
|
|
1487
|
-
source: "
|
|
1488
|
-
authority: "authoritative" | "
|
|
1078
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1079
|
+
authority: "authoritative" | "advisory";
|
|
1489
1080
|
note?: string | undefined;
|
|
1490
1081
|
}>;
|
|
1491
1082
|
}, "strip", z.ZodTypeAny, {
|
|
1492
1083
|
name: string;
|
|
1493
1084
|
attribution: {
|
|
1494
|
-
source: "
|
|
1495
|
-
authority: "authoritative" | "
|
|
1085
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1086
|
+
authority: "authoritative" | "advisory";
|
|
1496
1087
|
note?: string | undefined;
|
|
1497
1088
|
};
|
|
1498
1089
|
type?: string | undefined;
|
|
@@ -1503,8 +1094,8 @@ export declare const sdkPreparedPaidRequestPassthroughSchema: z.ZodObject<{
|
|
|
1503
1094
|
}, {
|
|
1504
1095
|
name: string;
|
|
1505
1096
|
attribution: {
|
|
1506
|
-
source: "
|
|
1507
|
-
authority: "authoritative" | "
|
|
1097
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1098
|
+
authority: "authoritative" | "advisory";
|
|
1508
1099
|
note?: string | undefined;
|
|
1509
1100
|
};
|
|
1510
1101
|
type?: string | undefined;
|
|
@@ -1522,23 +1113,23 @@ export declare const sdkPreparedPaidRequestPassthroughSchema: z.ZodObject<{
|
|
|
1522
1113
|
enumValues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1523
1114
|
} & {
|
|
1524
1115
|
attribution: z.ZodObject<{
|
|
1525
|
-
source: z.ZodEnum<["
|
|
1526
|
-
authority: z.ZodEnum<["authoritative", "
|
|
1116
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
1117
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
1527
1118
|
note: z.ZodOptional<z.ZodString>;
|
|
1528
1119
|
}, "strip", z.ZodTypeAny, {
|
|
1529
|
-
source: "
|
|
1530
|
-
authority: "authoritative" | "
|
|
1120
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1121
|
+
authority: "authoritative" | "advisory";
|
|
1531
1122
|
note?: string | undefined;
|
|
1532
1123
|
}, {
|
|
1533
|
-
source: "
|
|
1534
|
-
authority: "authoritative" | "
|
|
1124
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1125
|
+
authority: "authoritative" | "advisory";
|
|
1535
1126
|
note?: string | undefined;
|
|
1536
1127
|
}>;
|
|
1537
1128
|
}, "strip", z.ZodTypeAny, {
|
|
1538
1129
|
name: string;
|
|
1539
1130
|
attribution: {
|
|
1540
|
-
source: "
|
|
1541
|
-
authority: "authoritative" | "
|
|
1131
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1132
|
+
authority: "authoritative" | "advisory";
|
|
1542
1133
|
note?: string | undefined;
|
|
1543
1134
|
};
|
|
1544
1135
|
type?: string | undefined;
|
|
@@ -1549,8 +1140,8 @@ export declare const sdkPreparedPaidRequestPassthroughSchema: z.ZodObject<{
|
|
|
1549
1140
|
}, {
|
|
1550
1141
|
name: string;
|
|
1551
1142
|
attribution: {
|
|
1552
|
-
source: "
|
|
1553
|
-
authority: "authoritative" | "
|
|
1143
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1144
|
+
authority: "authoritative" | "advisory";
|
|
1554
1145
|
note?: string | undefined;
|
|
1555
1146
|
};
|
|
1556
1147
|
type?: string | undefined;
|
|
@@ -1562,30 +1153,30 @@ export declare const sdkPreparedPaidRequestPassthroughSchema: z.ZodObject<{
|
|
|
1562
1153
|
notes: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1563
1154
|
value: z.ZodString;
|
|
1564
1155
|
attribution: z.ZodObject<{
|
|
1565
|
-
source: z.ZodEnum<["
|
|
1566
|
-
authority: z.ZodEnum<["authoritative", "
|
|
1156
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
1157
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
1567
1158
|
note: z.ZodOptional<z.ZodString>;
|
|
1568
1159
|
}, "strip", z.ZodTypeAny, {
|
|
1569
|
-
source: "
|
|
1570
|
-
authority: "authoritative" | "
|
|
1160
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1161
|
+
authority: "authoritative" | "advisory";
|
|
1571
1162
|
note?: string | undefined;
|
|
1572
1163
|
}, {
|
|
1573
|
-
source: "
|
|
1574
|
-
authority: "authoritative" | "
|
|
1164
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1165
|
+
authority: "authoritative" | "advisory";
|
|
1575
1166
|
note?: string | undefined;
|
|
1576
1167
|
}>;
|
|
1577
1168
|
}, "strip", z.ZodTypeAny, {
|
|
1578
1169
|
value: string;
|
|
1579
1170
|
attribution: {
|
|
1580
|
-
source: "
|
|
1581
|
-
authority: "authoritative" | "
|
|
1171
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1172
|
+
authority: "authoritative" | "advisory";
|
|
1582
1173
|
note?: string | undefined;
|
|
1583
1174
|
};
|
|
1584
1175
|
}, {
|
|
1585
1176
|
value: string;
|
|
1586
1177
|
attribution: {
|
|
1587
|
-
source: "
|
|
1588
|
-
authority: "authoritative" | "
|
|
1178
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1179
|
+
authority: "authoritative" | "advisory";
|
|
1589
1180
|
note?: string | undefined;
|
|
1590
1181
|
};
|
|
1591
1182
|
}>, "many">>;
|
|
@@ -1593,8 +1184,8 @@ export declare const sdkPreparedPaidRequestPassthroughSchema: z.ZodObject<{
|
|
|
1593
1184
|
requestBodyFields: {
|
|
1594
1185
|
name: string;
|
|
1595
1186
|
attribution: {
|
|
1596
|
-
source: "
|
|
1597
|
-
authority: "authoritative" | "
|
|
1187
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1188
|
+
authority: "authoritative" | "advisory";
|
|
1598
1189
|
note?: string | undefined;
|
|
1599
1190
|
};
|
|
1600
1191
|
type?: string | undefined;
|
|
@@ -1606,8 +1197,8 @@ export declare const sdkPreparedPaidRequestPassthroughSchema: z.ZodObject<{
|
|
|
1606
1197
|
requestQueryParams: {
|
|
1607
1198
|
name: string;
|
|
1608
1199
|
attribution: {
|
|
1609
|
-
source: "
|
|
1610
|
-
authority: "authoritative" | "
|
|
1200
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1201
|
+
authority: "authoritative" | "advisory";
|
|
1611
1202
|
note?: string | undefined;
|
|
1612
1203
|
};
|
|
1613
1204
|
type?: string | undefined;
|
|
@@ -1619,8 +1210,8 @@ export declare const sdkPreparedPaidRequestPassthroughSchema: z.ZodObject<{
|
|
|
1619
1210
|
requestPathParams: {
|
|
1620
1211
|
name: string;
|
|
1621
1212
|
attribution: {
|
|
1622
|
-
source: "
|
|
1623
|
-
authority: "authoritative" | "
|
|
1213
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1214
|
+
authority: "authoritative" | "advisory";
|
|
1624
1215
|
note?: string | undefined;
|
|
1625
1216
|
};
|
|
1626
1217
|
type?: string | undefined;
|
|
@@ -1632,32 +1223,32 @@ export declare const sdkPreparedPaidRequestPassthroughSchema: z.ZodObject<{
|
|
|
1632
1223
|
notes: {
|
|
1633
1224
|
value: string;
|
|
1634
1225
|
attribution: {
|
|
1635
|
-
source: "
|
|
1636
|
-
authority: "authoritative" | "
|
|
1226
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1227
|
+
authority: "authoritative" | "advisory";
|
|
1637
1228
|
note?: string | undefined;
|
|
1638
1229
|
};
|
|
1639
1230
|
}[];
|
|
1640
1231
|
description?: {
|
|
1641
1232
|
value: string;
|
|
1642
1233
|
attribution: {
|
|
1643
|
-
source: "
|
|
1644
|
-
authority: "authoritative" | "
|
|
1234
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1235
|
+
authority: "authoritative" | "advisory";
|
|
1645
1236
|
note?: string | undefined;
|
|
1646
1237
|
};
|
|
1647
1238
|
} | undefined;
|
|
1648
1239
|
requestBodyType?: {
|
|
1649
1240
|
value: string;
|
|
1650
1241
|
attribution: {
|
|
1651
|
-
source: "
|
|
1652
|
-
authority: "authoritative" | "
|
|
1242
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1243
|
+
authority: "authoritative" | "advisory";
|
|
1653
1244
|
note?: string | undefined;
|
|
1654
1245
|
};
|
|
1655
1246
|
} | undefined;
|
|
1656
1247
|
requestBodyExample?: {
|
|
1657
1248
|
value: string;
|
|
1658
1249
|
attribution: {
|
|
1659
|
-
source: "
|
|
1660
|
-
authority: "authoritative" | "
|
|
1250
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1251
|
+
authority: "authoritative" | "advisory";
|
|
1661
1252
|
note?: string | undefined;
|
|
1662
1253
|
};
|
|
1663
1254
|
} | undefined;
|
|
@@ -1665,32 +1256,32 @@ export declare const sdkPreparedPaidRequestPassthroughSchema: z.ZodObject<{
|
|
|
1665
1256
|
description?: {
|
|
1666
1257
|
value: string;
|
|
1667
1258
|
attribution: {
|
|
1668
|
-
source: "
|
|
1669
|
-
authority: "authoritative" | "
|
|
1259
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1260
|
+
authority: "authoritative" | "advisory";
|
|
1670
1261
|
note?: string | undefined;
|
|
1671
1262
|
};
|
|
1672
1263
|
} | undefined;
|
|
1673
1264
|
requestBodyType?: {
|
|
1674
1265
|
value: string;
|
|
1675
1266
|
attribution: {
|
|
1676
|
-
source: "
|
|
1677
|
-
authority: "authoritative" | "
|
|
1267
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1268
|
+
authority: "authoritative" | "advisory";
|
|
1678
1269
|
note?: string | undefined;
|
|
1679
1270
|
};
|
|
1680
1271
|
} | undefined;
|
|
1681
1272
|
requestBodyExample?: {
|
|
1682
1273
|
value: string;
|
|
1683
1274
|
attribution: {
|
|
1684
|
-
source: "
|
|
1685
|
-
authority: "authoritative" | "
|
|
1275
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1276
|
+
authority: "authoritative" | "advisory";
|
|
1686
1277
|
note?: string | undefined;
|
|
1687
1278
|
};
|
|
1688
1279
|
} | undefined;
|
|
1689
1280
|
requestBodyFields?: {
|
|
1690
1281
|
name: string;
|
|
1691
1282
|
attribution: {
|
|
1692
|
-
source: "
|
|
1693
|
-
authority: "authoritative" | "
|
|
1283
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1284
|
+
authority: "authoritative" | "advisory";
|
|
1694
1285
|
note?: string | undefined;
|
|
1695
1286
|
};
|
|
1696
1287
|
type?: string | undefined;
|
|
@@ -1702,8 +1293,8 @@ export declare const sdkPreparedPaidRequestPassthroughSchema: z.ZodObject<{
|
|
|
1702
1293
|
requestQueryParams?: {
|
|
1703
1294
|
name: string;
|
|
1704
1295
|
attribution: {
|
|
1705
|
-
source: "
|
|
1706
|
-
authority: "authoritative" | "
|
|
1296
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1297
|
+
authority: "authoritative" | "advisory";
|
|
1707
1298
|
note?: string | undefined;
|
|
1708
1299
|
};
|
|
1709
1300
|
type?: string | undefined;
|
|
@@ -1715,8 +1306,8 @@ export declare const sdkPreparedPaidRequestPassthroughSchema: z.ZodObject<{
|
|
|
1715
1306
|
requestPathParams?: {
|
|
1716
1307
|
name: string;
|
|
1717
1308
|
attribution: {
|
|
1718
|
-
source: "
|
|
1719
|
-
authority: "authoritative" | "
|
|
1309
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1310
|
+
authority: "authoritative" | "advisory";
|
|
1720
1311
|
note?: string | undefined;
|
|
1721
1312
|
};
|
|
1722
1313
|
type?: string | undefined;
|
|
@@ -1728,8 +1319,8 @@ export declare const sdkPreparedPaidRequestPassthroughSchema: z.ZodObject<{
|
|
|
1728
1319
|
notes?: {
|
|
1729
1320
|
value: string;
|
|
1730
1321
|
attribution: {
|
|
1731
|
-
source: "
|
|
1732
|
-
authority: "authoritative" | "
|
|
1322
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1323
|
+
authority: "authoritative" | "advisory";
|
|
1733
1324
|
note?: string | undefined;
|
|
1734
1325
|
};
|
|
1735
1326
|
}[] | undefined;
|
|
@@ -1749,14 +1340,14 @@ export declare const sdkPreparedPaidRequestPassthroughSchema: z.ZodObject<{
|
|
|
1749
1340
|
field: z.ZodString;
|
|
1750
1341
|
code: z.ZodString;
|
|
1751
1342
|
message: z.ZodString;
|
|
1752
|
-
source: z.ZodEnum<["
|
|
1343
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
1753
1344
|
blocking: z.ZodBoolean;
|
|
1754
1345
|
severity: z.ZodEnum<["error", "warning"]>;
|
|
1755
1346
|
suggestedFix: z.ZodOptional<z.ZodString>;
|
|
1756
1347
|
}, "strip", z.ZodTypeAny, {
|
|
1757
1348
|
code: string;
|
|
1758
1349
|
message: string;
|
|
1759
|
-
source: "
|
|
1350
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1760
1351
|
location: "path" | "headers" | "body" | "query";
|
|
1761
1352
|
field: string;
|
|
1762
1353
|
blocking: boolean;
|
|
@@ -1765,7 +1356,7 @@ export declare const sdkPreparedPaidRequestPassthroughSchema: z.ZodObject<{
|
|
|
1765
1356
|
}, {
|
|
1766
1357
|
code: string;
|
|
1767
1358
|
message: string;
|
|
1768
|
-
source: "
|
|
1359
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1769
1360
|
location: "path" | "headers" | "body" | "query";
|
|
1770
1361
|
field: string;
|
|
1771
1362
|
blocking: boolean;
|
|
@@ -1787,8 +1378,8 @@ export declare const sdkPreparedPaidRequestPassthroughSchema: z.ZodObject<{
|
|
|
1787
1378
|
requestBodyFields: {
|
|
1788
1379
|
name: string;
|
|
1789
1380
|
attribution: {
|
|
1790
|
-
source: "
|
|
1791
|
-
authority: "authoritative" | "
|
|
1381
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1382
|
+
authority: "authoritative" | "advisory";
|
|
1792
1383
|
note?: string | undefined;
|
|
1793
1384
|
};
|
|
1794
1385
|
type?: string | undefined;
|
|
@@ -1800,8 +1391,8 @@ export declare const sdkPreparedPaidRequestPassthroughSchema: z.ZodObject<{
|
|
|
1800
1391
|
requestQueryParams: {
|
|
1801
1392
|
name: string;
|
|
1802
1393
|
attribution: {
|
|
1803
|
-
source: "
|
|
1804
|
-
authority: "authoritative" | "
|
|
1394
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1395
|
+
authority: "authoritative" | "advisory";
|
|
1805
1396
|
note?: string | undefined;
|
|
1806
1397
|
};
|
|
1807
1398
|
type?: string | undefined;
|
|
@@ -1813,8 +1404,8 @@ export declare const sdkPreparedPaidRequestPassthroughSchema: z.ZodObject<{
|
|
|
1813
1404
|
requestPathParams: {
|
|
1814
1405
|
name: string;
|
|
1815
1406
|
attribution: {
|
|
1816
|
-
source: "
|
|
1817
|
-
authority: "authoritative" | "
|
|
1407
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1408
|
+
authority: "authoritative" | "advisory";
|
|
1818
1409
|
note?: string | undefined;
|
|
1819
1410
|
};
|
|
1820
1411
|
type?: string | undefined;
|
|
@@ -1826,32 +1417,32 @@ export declare const sdkPreparedPaidRequestPassthroughSchema: z.ZodObject<{
|
|
|
1826
1417
|
notes: {
|
|
1827
1418
|
value: string;
|
|
1828
1419
|
attribution: {
|
|
1829
|
-
source: "
|
|
1830
|
-
authority: "authoritative" | "
|
|
1420
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1421
|
+
authority: "authoritative" | "advisory";
|
|
1831
1422
|
note?: string | undefined;
|
|
1832
1423
|
};
|
|
1833
1424
|
}[];
|
|
1834
1425
|
description?: {
|
|
1835
1426
|
value: string;
|
|
1836
1427
|
attribution: {
|
|
1837
|
-
source: "
|
|
1838
|
-
authority: "authoritative" | "
|
|
1428
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1429
|
+
authority: "authoritative" | "advisory";
|
|
1839
1430
|
note?: string | undefined;
|
|
1840
1431
|
};
|
|
1841
1432
|
} | undefined;
|
|
1842
1433
|
requestBodyType?: {
|
|
1843
1434
|
value: string;
|
|
1844
1435
|
attribution: {
|
|
1845
|
-
source: "
|
|
1846
|
-
authority: "authoritative" | "
|
|
1436
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1437
|
+
authority: "authoritative" | "advisory";
|
|
1847
1438
|
note?: string | undefined;
|
|
1848
1439
|
};
|
|
1849
1440
|
} | undefined;
|
|
1850
1441
|
requestBodyExample?: {
|
|
1851
1442
|
value: string;
|
|
1852
1443
|
attribution: {
|
|
1853
|
-
source: "
|
|
1854
|
-
authority: "authoritative" | "
|
|
1444
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1445
|
+
authority: "authoritative" | "advisory";
|
|
1855
1446
|
note?: string | undefined;
|
|
1856
1447
|
};
|
|
1857
1448
|
} | undefined;
|
|
@@ -1859,7 +1450,7 @@ export declare const sdkPreparedPaidRequestPassthroughSchema: z.ZodObject<{
|
|
|
1859
1450
|
validationIssues: {
|
|
1860
1451
|
code: string;
|
|
1861
1452
|
message: string;
|
|
1862
|
-
source: "
|
|
1453
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1863
1454
|
location: "path" | "headers" | "body" | "query";
|
|
1864
1455
|
field: string;
|
|
1865
1456
|
blocking: boolean;
|
|
@@ -1885,32 +1476,32 @@ export declare const sdkPreparedPaidRequestPassthroughSchema: z.ZodObject<{
|
|
|
1885
1476
|
description?: {
|
|
1886
1477
|
value: string;
|
|
1887
1478
|
attribution: {
|
|
1888
|
-
source: "
|
|
1889
|
-
authority: "authoritative" | "
|
|
1479
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1480
|
+
authority: "authoritative" | "advisory";
|
|
1890
1481
|
note?: string | undefined;
|
|
1891
1482
|
};
|
|
1892
1483
|
} | undefined;
|
|
1893
1484
|
requestBodyType?: {
|
|
1894
1485
|
value: string;
|
|
1895
1486
|
attribution: {
|
|
1896
|
-
source: "
|
|
1897
|
-
authority: "authoritative" | "
|
|
1487
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1488
|
+
authority: "authoritative" | "advisory";
|
|
1898
1489
|
note?: string | undefined;
|
|
1899
1490
|
};
|
|
1900
1491
|
} | undefined;
|
|
1901
1492
|
requestBodyExample?: {
|
|
1902
1493
|
value: string;
|
|
1903
1494
|
attribution: {
|
|
1904
|
-
source: "
|
|
1905
|
-
authority: "authoritative" | "
|
|
1495
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1496
|
+
authority: "authoritative" | "advisory";
|
|
1906
1497
|
note?: string | undefined;
|
|
1907
1498
|
};
|
|
1908
1499
|
} | undefined;
|
|
1909
1500
|
requestBodyFields?: {
|
|
1910
1501
|
name: string;
|
|
1911
1502
|
attribution: {
|
|
1912
|
-
source: "
|
|
1913
|
-
authority: "authoritative" | "
|
|
1503
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1504
|
+
authority: "authoritative" | "advisory";
|
|
1914
1505
|
note?: string | undefined;
|
|
1915
1506
|
};
|
|
1916
1507
|
type?: string | undefined;
|
|
@@ -1922,8 +1513,8 @@ export declare const sdkPreparedPaidRequestPassthroughSchema: z.ZodObject<{
|
|
|
1922
1513
|
requestQueryParams?: {
|
|
1923
1514
|
name: string;
|
|
1924
1515
|
attribution: {
|
|
1925
|
-
source: "
|
|
1926
|
-
authority: "authoritative" | "
|
|
1516
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1517
|
+
authority: "authoritative" | "advisory";
|
|
1927
1518
|
note?: string | undefined;
|
|
1928
1519
|
};
|
|
1929
1520
|
type?: string | undefined;
|
|
@@ -1935,8 +1526,8 @@ export declare const sdkPreparedPaidRequestPassthroughSchema: z.ZodObject<{
|
|
|
1935
1526
|
requestPathParams?: {
|
|
1936
1527
|
name: string;
|
|
1937
1528
|
attribution: {
|
|
1938
|
-
source: "
|
|
1939
|
-
authority: "authoritative" | "
|
|
1529
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1530
|
+
authority: "authoritative" | "advisory";
|
|
1940
1531
|
note?: string | undefined;
|
|
1941
1532
|
};
|
|
1942
1533
|
type?: string | undefined;
|
|
@@ -1948,8 +1539,8 @@ export declare const sdkPreparedPaidRequestPassthroughSchema: z.ZodObject<{
|
|
|
1948
1539
|
notes?: {
|
|
1949
1540
|
value: string;
|
|
1950
1541
|
attribution: {
|
|
1951
|
-
source: "
|
|
1952
|
-
authority: "authoritative" | "
|
|
1542
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1543
|
+
authority: "authoritative" | "advisory";
|
|
1953
1544
|
note?: string | undefined;
|
|
1954
1545
|
};
|
|
1955
1546
|
}[] | undefined;
|
|
@@ -1962,7 +1553,7 @@ export declare const sdkPreparedPaidRequestPassthroughSchema: z.ZodObject<{
|
|
|
1962
1553
|
validationIssues?: {
|
|
1963
1554
|
code: string;
|
|
1964
1555
|
message: string;
|
|
1965
|
-
source: "
|
|
1556
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1966
1557
|
location: "path" | "headers" | "body" | "query";
|
|
1967
1558
|
field: string;
|
|
1968
1559
|
blocking: boolean;
|
|
@@ -2018,36 +1609,23 @@ export declare const sdkPreparedPaidRequestReadySchema: z.ZodObject<{
|
|
|
2018
1609
|
amountMinor: z.ZodOptional<z.ZodString>;
|
|
2019
1610
|
precision: z.ZodOptional<z.ZodNumber>;
|
|
2020
1611
|
provenance: z.ZodObject<{
|
|
2021
|
-
source: z.ZodEnum<["
|
|
2022
|
-
authority: z.ZodEnum<["authoritative", "
|
|
1612
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
1613
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
2023
1614
|
note: z.ZodOptional<z.ZodString>;
|
|
2024
1615
|
}, "strip", z.ZodTypeAny, {
|
|
2025
|
-
source: "
|
|
2026
|
-
authority: "authoritative" | "
|
|
1616
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1617
|
+
authority: "authoritative" | "advisory";
|
|
2027
1618
|
note?: string | undefined;
|
|
2028
1619
|
}, {
|
|
2029
|
-
source: "
|
|
2030
|
-
authority: "authoritative" | "
|
|
1620
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1621
|
+
authority: "authoritative" | "advisory";
|
|
2031
1622
|
note?: string | undefined;
|
|
2032
1623
|
}>;
|
|
2033
|
-
confirmation: z.ZodOptional<z.ZodObject<{
|
|
2034
|
-
source: z.ZodEnum<["marketplace", "provider", "merchant_challenge", "runtime_probe"]>;
|
|
2035
|
-
authority: z.ZodEnum<["authoritative", "confirmatory", "advisory"]>;
|
|
2036
|
-
note: z.ZodOptional<z.ZodString>;
|
|
2037
|
-
}, "strip", z.ZodTypeAny, {
|
|
2038
|
-
source: "marketplace" | "provider" | "merchant_challenge" | "runtime_probe";
|
|
2039
|
-
authority: "authoritative" | "confirmatory" | "advisory";
|
|
2040
|
-
note?: string | undefined;
|
|
2041
|
-
}, {
|
|
2042
|
-
source: "marketplace" | "provider" | "merchant_challenge" | "runtime_probe";
|
|
2043
|
-
authority: "authoritative" | "confirmatory" | "advisory";
|
|
2044
|
-
note?: string | undefined;
|
|
2045
|
-
}>>;
|
|
2046
1624
|
}, "strip", z.ZodTypeAny, {
|
|
2047
1625
|
protocol: "x402" | "l402";
|
|
2048
1626
|
provenance: {
|
|
2049
|
-
source: "
|
|
2050
|
-
authority: "authoritative" | "
|
|
1627
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1628
|
+
authority: "authoritative" | "advisory";
|
|
2051
1629
|
note?: string | undefined;
|
|
2052
1630
|
};
|
|
2053
1631
|
asset?: string | undefined;
|
|
@@ -2058,16 +1636,11 @@ export declare const sdkPreparedPaidRequestReadySchema: z.ZodObject<{
|
|
|
2058
1636
|
network?: string | undefined;
|
|
2059
1637
|
payee?: string | undefined;
|
|
2060
1638
|
amountType?: "exact" | "max" | undefined;
|
|
2061
|
-
confirmation?: {
|
|
2062
|
-
source: "marketplace" | "provider" | "merchant_challenge" | "runtime_probe";
|
|
2063
|
-
authority: "authoritative" | "confirmatory" | "advisory";
|
|
2064
|
-
note?: string | undefined;
|
|
2065
|
-
} | undefined;
|
|
2066
1639
|
}, {
|
|
2067
1640
|
protocol: "x402" | "l402";
|
|
2068
1641
|
provenance: {
|
|
2069
|
-
source: "
|
|
2070
|
-
authority: "authoritative" | "
|
|
1642
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1643
|
+
authority: "authoritative" | "advisory";
|
|
2071
1644
|
note?: string | undefined;
|
|
2072
1645
|
};
|
|
2073
1646
|
asset?: string | undefined;
|
|
@@ -2078,100 +1651,95 @@ export declare const sdkPreparedPaidRequestReadySchema: z.ZodObject<{
|
|
|
2078
1651
|
network?: string | undefined;
|
|
2079
1652
|
payee?: string | undefined;
|
|
2080
1653
|
amountType?: "exact" | "max" | undefined;
|
|
2081
|
-
confirmation?: {
|
|
2082
|
-
source: "marketplace" | "provider" | "merchant_challenge" | "runtime_probe";
|
|
2083
|
-
authority: "authoritative" | "confirmatory" | "advisory";
|
|
2084
|
-
note?: string | undefined;
|
|
2085
|
-
} | undefined;
|
|
2086
1654
|
}>>;
|
|
2087
1655
|
hints: z.ZodObject<{
|
|
2088
1656
|
description: z.ZodOptional<z.ZodObject<{
|
|
2089
1657
|
value: z.ZodString;
|
|
2090
1658
|
attribution: z.ZodObject<{
|
|
2091
|
-
source: z.ZodEnum<["
|
|
2092
|
-
authority: z.ZodEnum<["authoritative", "
|
|
1659
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
1660
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
2093
1661
|
note: z.ZodOptional<z.ZodString>;
|
|
2094
1662
|
}, "strip", z.ZodTypeAny, {
|
|
2095
|
-
source: "
|
|
2096
|
-
authority: "authoritative" | "
|
|
1663
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1664
|
+
authority: "authoritative" | "advisory";
|
|
2097
1665
|
note?: string | undefined;
|
|
2098
1666
|
}, {
|
|
2099
|
-
source: "
|
|
2100
|
-
authority: "authoritative" | "
|
|
1667
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1668
|
+
authority: "authoritative" | "advisory";
|
|
2101
1669
|
note?: string | undefined;
|
|
2102
1670
|
}>;
|
|
2103
1671
|
}, "strip", z.ZodTypeAny, {
|
|
2104
1672
|
value: string;
|
|
2105
1673
|
attribution: {
|
|
2106
|
-
source: "
|
|
2107
|
-
authority: "authoritative" | "
|
|
1674
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1675
|
+
authority: "authoritative" | "advisory";
|
|
2108
1676
|
note?: string | undefined;
|
|
2109
1677
|
};
|
|
2110
1678
|
}, {
|
|
2111
1679
|
value: string;
|
|
2112
1680
|
attribution: {
|
|
2113
|
-
source: "
|
|
2114
|
-
authority: "authoritative" | "
|
|
1681
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1682
|
+
authority: "authoritative" | "advisory";
|
|
2115
1683
|
note?: string | undefined;
|
|
2116
1684
|
};
|
|
2117
1685
|
}>>;
|
|
2118
1686
|
requestBodyType: z.ZodOptional<z.ZodObject<{
|
|
2119
1687
|
value: z.ZodString;
|
|
2120
1688
|
attribution: z.ZodObject<{
|
|
2121
|
-
source: z.ZodEnum<["
|
|
2122
|
-
authority: z.ZodEnum<["authoritative", "
|
|
1689
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
1690
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
2123
1691
|
note: z.ZodOptional<z.ZodString>;
|
|
2124
1692
|
}, "strip", z.ZodTypeAny, {
|
|
2125
|
-
source: "
|
|
2126
|
-
authority: "authoritative" | "
|
|
1693
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1694
|
+
authority: "authoritative" | "advisory";
|
|
2127
1695
|
note?: string | undefined;
|
|
2128
1696
|
}, {
|
|
2129
|
-
source: "
|
|
2130
|
-
authority: "authoritative" | "
|
|
1697
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1698
|
+
authority: "authoritative" | "advisory";
|
|
2131
1699
|
note?: string | undefined;
|
|
2132
1700
|
}>;
|
|
2133
1701
|
}, "strip", z.ZodTypeAny, {
|
|
2134
1702
|
value: string;
|
|
2135
1703
|
attribution: {
|
|
2136
|
-
source: "
|
|
2137
|
-
authority: "authoritative" | "
|
|
1704
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1705
|
+
authority: "authoritative" | "advisory";
|
|
2138
1706
|
note?: string | undefined;
|
|
2139
1707
|
};
|
|
2140
1708
|
}, {
|
|
2141
1709
|
value: string;
|
|
2142
1710
|
attribution: {
|
|
2143
|
-
source: "
|
|
2144
|
-
authority: "authoritative" | "
|
|
1711
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1712
|
+
authority: "authoritative" | "advisory";
|
|
2145
1713
|
note?: string | undefined;
|
|
2146
1714
|
};
|
|
2147
1715
|
}>>;
|
|
2148
1716
|
requestBodyExample: z.ZodOptional<z.ZodObject<{
|
|
2149
1717
|
value: z.ZodString;
|
|
2150
1718
|
attribution: z.ZodObject<{
|
|
2151
|
-
source: z.ZodEnum<["
|
|
2152
|
-
authority: z.ZodEnum<["authoritative", "
|
|
1719
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
1720
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
2153
1721
|
note: z.ZodOptional<z.ZodString>;
|
|
2154
1722
|
}, "strip", z.ZodTypeAny, {
|
|
2155
|
-
source: "
|
|
2156
|
-
authority: "authoritative" | "
|
|
1723
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1724
|
+
authority: "authoritative" | "advisory";
|
|
2157
1725
|
note?: string | undefined;
|
|
2158
1726
|
}, {
|
|
2159
|
-
source: "
|
|
2160
|
-
authority: "authoritative" | "
|
|
1727
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1728
|
+
authority: "authoritative" | "advisory";
|
|
2161
1729
|
note?: string | undefined;
|
|
2162
1730
|
}>;
|
|
2163
1731
|
}, "strip", z.ZodTypeAny, {
|
|
2164
1732
|
value: string;
|
|
2165
1733
|
attribution: {
|
|
2166
|
-
source: "
|
|
2167
|
-
authority: "authoritative" | "
|
|
1734
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1735
|
+
authority: "authoritative" | "advisory";
|
|
2168
1736
|
note?: string | undefined;
|
|
2169
1737
|
};
|
|
2170
1738
|
}, {
|
|
2171
1739
|
value: string;
|
|
2172
1740
|
attribution: {
|
|
2173
|
-
source: "
|
|
2174
|
-
authority: "authoritative" | "
|
|
1741
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1742
|
+
authority: "authoritative" | "advisory";
|
|
2175
1743
|
note?: string | undefined;
|
|
2176
1744
|
};
|
|
2177
1745
|
}>>;
|
|
@@ -2184,23 +1752,23 @@ export declare const sdkPreparedPaidRequestReadySchema: z.ZodObject<{
|
|
|
2184
1752
|
enumValues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2185
1753
|
} & {
|
|
2186
1754
|
attribution: z.ZodObject<{
|
|
2187
|
-
source: z.ZodEnum<["
|
|
2188
|
-
authority: z.ZodEnum<["authoritative", "
|
|
1755
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
1756
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
2189
1757
|
note: z.ZodOptional<z.ZodString>;
|
|
2190
1758
|
}, "strip", z.ZodTypeAny, {
|
|
2191
|
-
source: "
|
|
2192
|
-
authority: "authoritative" | "
|
|
1759
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1760
|
+
authority: "authoritative" | "advisory";
|
|
2193
1761
|
note?: string | undefined;
|
|
2194
1762
|
}, {
|
|
2195
|
-
source: "
|
|
2196
|
-
authority: "authoritative" | "
|
|
1763
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1764
|
+
authority: "authoritative" | "advisory";
|
|
2197
1765
|
note?: string | undefined;
|
|
2198
1766
|
}>;
|
|
2199
1767
|
}, "strip", z.ZodTypeAny, {
|
|
2200
1768
|
name: string;
|
|
2201
1769
|
attribution: {
|
|
2202
|
-
source: "
|
|
2203
|
-
authority: "authoritative" | "
|
|
1770
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1771
|
+
authority: "authoritative" | "advisory";
|
|
2204
1772
|
note?: string | undefined;
|
|
2205
1773
|
};
|
|
2206
1774
|
type?: string | undefined;
|
|
@@ -2211,8 +1779,8 @@ export declare const sdkPreparedPaidRequestReadySchema: z.ZodObject<{
|
|
|
2211
1779
|
}, {
|
|
2212
1780
|
name: string;
|
|
2213
1781
|
attribution: {
|
|
2214
|
-
source: "
|
|
2215
|
-
authority: "authoritative" | "
|
|
1782
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1783
|
+
authority: "authoritative" | "advisory";
|
|
2216
1784
|
note?: string | undefined;
|
|
2217
1785
|
};
|
|
2218
1786
|
type?: string | undefined;
|
|
@@ -2230,23 +1798,23 @@ export declare const sdkPreparedPaidRequestReadySchema: z.ZodObject<{
|
|
|
2230
1798
|
enumValues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2231
1799
|
} & {
|
|
2232
1800
|
attribution: z.ZodObject<{
|
|
2233
|
-
source: z.ZodEnum<["
|
|
2234
|
-
authority: z.ZodEnum<["authoritative", "
|
|
1801
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
1802
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
2235
1803
|
note: z.ZodOptional<z.ZodString>;
|
|
2236
1804
|
}, "strip", z.ZodTypeAny, {
|
|
2237
|
-
source: "
|
|
2238
|
-
authority: "authoritative" | "
|
|
1805
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1806
|
+
authority: "authoritative" | "advisory";
|
|
2239
1807
|
note?: string | undefined;
|
|
2240
1808
|
}, {
|
|
2241
|
-
source: "
|
|
2242
|
-
authority: "authoritative" | "
|
|
1809
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1810
|
+
authority: "authoritative" | "advisory";
|
|
2243
1811
|
note?: string | undefined;
|
|
2244
1812
|
}>;
|
|
2245
1813
|
}, "strip", z.ZodTypeAny, {
|
|
2246
1814
|
name: string;
|
|
2247
1815
|
attribution: {
|
|
2248
|
-
source: "
|
|
2249
|
-
authority: "authoritative" | "
|
|
1816
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1817
|
+
authority: "authoritative" | "advisory";
|
|
2250
1818
|
note?: string | undefined;
|
|
2251
1819
|
};
|
|
2252
1820
|
type?: string | undefined;
|
|
@@ -2257,8 +1825,8 @@ export declare const sdkPreparedPaidRequestReadySchema: z.ZodObject<{
|
|
|
2257
1825
|
}, {
|
|
2258
1826
|
name: string;
|
|
2259
1827
|
attribution: {
|
|
2260
|
-
source: "
|
|
2261
|
-
authority: "authoritative" | "
|
|
1828
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1829
|
+
authority: "authoritative" | "advisory";
|
|
2262
1830
|
note?: string | undefined;
|
|
2263
1831
|
};
|
|
2264
1832
|
type?: string | undefined;
|
|
@@ -2276,23 +1844,23 @@ export declare const sdkPreparedPaidRequestReadySchema: z.ZodObject<{
|
|
|
2276
1844
|
enumValues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2277
1845
|
} & {
|
|
2278
1846
|
attribution: z.ZodObject<{
|
|
2279
|
-
source: z.ZodEnum<["
|
|
2280
|
-
authority: z.ZodEnum<["authoritative", "
|
|
1847
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
1848
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
2281
1849
|
note: z.ZodOptional<z.ZodString>;
|
|
2282
1850
|
}, "strip", z.ZodTypeAny, {
|
|
2283
|
-
source: "
|
|
2284
|
-
authority: "authoritative" | "
|
|
1851
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1852
|
+
authority: "authoritative" | "advisory";
|
|
2285
1853
|
note?: string | undefined;
|
|
2286
1854
|
}, {
|
|
2287
|
-
source: "
|
|
2288
|
-
authority: "authoritative" | "
|
|
1855
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1856
|
+
authority: "authoritative" | "advisory";
|
|
2289
1857
|
note?: string | undefined;
|
|
2290
1858
|
}>;
|
|
2291
1859
|
}, "strip", z.ZodTypeAny, {
|
|
2292
1860
|
name: string;
|
|
2293
1861
|
attribution: {
|
|
2294
|
-
source: "
|
|
2295
|
-
authority: "authoritative" | "
|
|
1862
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1863
|
+
authority: "authoritative" | "advisory";
|
|
2296
1864
|
note?: string | undefined;
|
|
2297
1865
|
};
|
|
2298
1866
|
type?: string | undefined;
|
|
@@ -2303,8 +1871,8 @@ export declare const sdkPreparedPaidRequestReadySchema: z.ZodObject<{
|
|
|
2303
1871
|
}, {
|
|
2304
1872
|
name: string;
|
|
2305
1873
|
attribution: {
|
|
2306
|
-
source: "
|
|
2307
|
-
authority: "authoritative" | "
|
|
1874
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1875
|
+
authority: "authoritative" | "advisory";
|
|
2308
1876
|
note?: string | undefined;
|
|
2309
1877
|
};
|
|
2310
1878
|
type?: string | undefined;
|
|
@@ -2316,30 +1884,30 @@ export declare const sdkPreparedPaidRequestReadySchema: z.ZodObject<{
|
|
|
2316
1884
|
notes: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2317
1885
|
value: z.ZodString;
|
|
2318
1886
|
attribution: z.ZodObject<{
|
|
2319
|
-
source: z.ZodEnum<["
|
|
2320
|
-
authority: z.ZodEnum<["authoritative", "
|
|
1887
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
1888
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
2321
1889
|
note: z.ZodOptional<z.ZodString>;
|
|
2322
1890
|
}, "strip", z.ZodTypeAny, {
|
|
2323
|
-
source: "
|
|
2324
|
-
authority: "authoritative" | "
|
|
1891
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1892
|
+
authority: "authoritative" | "advisory";
|
|
2325
1893
|
note?: string | undefined;
|
|
2326
1894
|
}, {
|
|
2327
|
-
source: "
|
|
2328
|
-
authority: "authoritative" | "
|
|
1895
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1896
|
+
authority: "authoritative" | "advisory";
|
|
2329
1897
|
note?: string | undefined;
|
|
2330
1898
|
}>;
|
|
2331
1899
|
}, "strip", z.ZodTypeAny, {
|
|
2332
1900
|
value: string;
|
|
2333
1901
|
attribution: {
|
|
2334
|
-
source: "
|
|
2335
|
-
authority: "authoritative" | "
|
|
1902
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1903
|
+
authority: "authoritative" | "advisory";
|
|
2336
1904
|
note?: string | undefined;
|
|
2337
1905
|
};
|
|
2338
1906
|
}, {
|
|
2339
1907
|
value: string;
|
|
2340
1908
|
attribution: {
|
|
2341
|
-
source: "
|
|
2342
|
-
authority: "authoritative" | "
|
|
1909
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1910
|
+
authority: "authoritative" | "advisory";
|
|
2343
1911
|
note?: string | undefined;
|
|
2344
1912
|
};
|
|
2345
1913
|
}>, "many">>;
|
|
@@ -2347,8 +1915,8 @@ export declare const sdkPreparedPaidRequestReadySchema: z.ZodObject<{
|
|
|
2347
1915
|
requestBodyFields: {
|
|
2348
1916
|
name: string;
|
|
2349
1917
|
attribution: {
|
|
2350
|
-
source: "
|
|
2351
|
-
authority: "authoritative" | "
|
|
1918
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1919
|
+
authority: "authoritative" | "advisory";
|
|
2352
1920
|
note?: string | undefined;
|
|
2353
1921
|
};
|
|
2354
1922
|
type?: string | undefined;
|
|
@@ -2360,8 +1928,8 @@ export declare const sdkPreparedPaidRequestReadySchema: z.ZodObject<{
|
|
|
2360
1928
|
requestQueryParams: {
|
|
2361
1929
|
name: string;
|
|
2362
1930
|
attribution: {
|
|
2363
|
-
source: "
|
|
2364
|
-
authority: "authoritative" | "
|
|
1931
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1932
|
+
authority: "authoritative" | "advisory";
|
|
2365
1933
|
note?: string | undefined;
|
|
2366
1934
|
};
|
|
2367
1935
|
type?: string | undefined;
|
|
@@ -2373,8 +1941,8 @@ export declare const sdkPreparedPaidRequestReadySchema: z.ZodObject<{
|
|
|
2373
1941
|
requestPathParams: {
|
|
2374
1942
|
name: string;
|
|
2375
1943
|
attribution: {
|
|
2376
|
-
source: "
|
|
2377
|
-
authority: "authoritative" | "
|
|
1944
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1945
|
+
authority: "authoritative" | "advisory";
|
|
2378
1946
|
note?: string | undefined;
|
|
2379
1947
|
};
|
|
2380
1948
|
type?: string | undefined;
|
|
@@ -2386,32 +1954,32 @@ export declare const sdkPreparedPaidRequestReadySchema: z.ZodObject<{
|
|
|
2386
1954
|
notes: {
|
|
2387
1955
|
value: string;
|
|
2388
1956
|
attribution: {
|
|
2389
|
-
source: "
|
|
2390
|
-
authority: "authoritative" | "
|
|
1957
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1958
|
+
authority: "authoritative" | "advisory";
|
|
2391
1959
|
note?: string | undefined;
|
|
2392
1960
|
};
|
|
2393
1961
|
}[];
|
|
2394
1962
|
description?: {
|
|
2395
1963
|
value: string;
|
|
2396
1964
|
attribution: {
|
|
2397
|
-
source: "
|
|
2398
|
-
authority: "authoritative" | "
|
|
1965
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1966
|
+
authority: "authoritative" | "advisory";
|
|
2399
1967
|
note?: string | undefined;
|
|
2400
1968
|
};
|
|
2401
1969
|
} | undefined;
|
|
2402
1970
|
requestBodyType?: {
|
|
2403
1971
|
value: string;
|
|
2404
1972
|
attribution: {
|
|
2405
|
-
source: "
|
|
2406
|
-
authority: "authoritative" | "
|
|
1973
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1974
|
+
authority: "authoritative" | "advisory";
|
|
2407
1975
|
note?: string | undefined;
|
|
2408
1976
|
};
|
|
2409
1977
|
} | undefined;
|
|
2410
1978
|
requestBodyExample?: {
|
|
2411
1979
|
value: string;
|
|
2412
1980
|
attribution: {
|
|
2413
|
-
source: "
|
|
2414
|
-
authority: "authoritative" | "
|
|
1981
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1982
|
+
authority: "authoritative" | "advisory";
|
|
2415
1983
|
note?: string | undefined;
|
|
2416
1984
|
};
|
|
2417
1985
|
} | undefined;
|
|
@@ -2419,32 +1987,32 @@ export declare const sdkPreparedPaidRequestReadySchema: z.ZodObject<{
|
|
|
2419
1987
|
description?: {
|
|
2420
1988
|
value: string;
|
|
2421
1989
|
attribution: {
|
|
2422
|
-
source: "
|
|
2423
|
-
authority: "authoritative" | "
|
|
1990
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1991
|
+
authority: "authoritative" | "advisory";
|
|
2424
1992
|
note?: string | undefined;
|
|
2425
1993
|
};
|
|
2426
1994
|
} | undefined;
|
|
2427
1995
|
requestBodyType?: {
|
|
2428
1996
|
value: string;
|
|
2429
1997
|
attribution: {
|
|
2430
|
-
source: "
|
|
2431
|
-
authority: "authoritative" | "
|
|
1998
|
+
source: "merchant_challenge" | "external_metadata";
|
|
1999
|
+
authority: "authoritative" | "advisory";
|
|
2432
2000
|
note?: string | undefined;
|
|
2433
2001
|
};
|
|
2434
2002
|
} | undefined;
|
|
2435
2003
|
requestBodyExample?: {
|
|
2436
2004
|
value: string;
|
|
2437
2005
|
attribution: {
|
|
2438
|
-
source: "
|
|
2439
|
-
authority: "authoritative" | "
|
|
2006
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2007
|
+
authority: "authoritative" | "advisory";
|
|
2440
2008
|
note?: string | undefined;
|
|
2441
2009
|
};
|
|
2442
2010
|
} | undefined;
|
|
2443
2011
|
requestBodyFields?: {
|
|
2444
2012
|
name: string;
|
|
2445
2013
|
attribution: {
|
|
2446
|
-
source: "
|
|
2447
|
-
authority: "authoritative" | "
|
|
2014
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2015
|
+
authority: "authoritative" | "advisory";
|
|
2448
2016
|
note?: string | undefined;
|
|
2449
2017
|
};
|
|
2450
2018
|
type?: string | undefined;
|
|
@@ -2456,8 +2024,8 @@ export declare const sdkPreparedPaidRequestReadySchema: z.ZodObject<{
|
|
|
2456
2024
|
requestQueryParams?: {
|
|
2457
2025
|
name: string;
|
|
2458
2026
|
attribution: {
|
|
2459
|
-
source: "
|
|
2460
|
-
authority: "authoritative" | "
|
|
2027
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2028
|
+
authority: "authoritative" | "advisory";
|
|
2461
2029
|
note?: string | undefined;
|
|
2462
2030
|
};
|
|
2463
2031
|
type?: string | undefined;
|
|
@@ -2469,8 +2037,8 @@ export declare const sdkPreparedPaidRequestReadySchema: z.ZodObject<{
|
|
|
2469
2037
|
requestPathParams?: {
|
|
2470
2038
|
name: string;
|
|
2471
2039
|
attribution: {
|
|
2472
|
-
source: "
|
|
2473
|
-
authority: "authoritative" | "
|
|
2040
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2041
|
+
authority: "authoritative" | "advisory";
|
|
2474
2042
|
note?: string | undefined;
|
|
2475
2043
|
};
|
|
2476
2044
|
type?: string | undefined;
|
|
@@ -2482,8 +2050,8 @@ export declare const sdkPreparedPaidRequestReadySchema: z.ZodObject<{
|
|
|
2482
2050
|
notes?: {
|
|
2483
2051
|
value: string;
|
|
2484
2052
|
attribution: {
|
|
2485
|
-
source: "
|
|
2486
|
-
authority: "authoritative" | "
|
|
2053
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2054
|
+
authority: "authoritative" | "advisory";
|
|
2487
2055
|
note?: string | undefined;
|
|
2488
2056
|
};
|
|
2489
2057
|
}[] | undefined;
|
|
@@ -2503,14 +2071,14 @@ export declare const sdkPreparedPaidRequestReadySchema: z.ZodObject<{
|
|
|
2503
2071
|
field: z.ZodString;
|
|
2504
2072
|
code: z.ZodString;
|
|
2505
2073
|
message: z.ZodString;
|
|
2506
|
-
source: z.ZodEnum<["
|
|
2074
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
2507
2075
|
blocking: z.ZodBoolean;
|
|
2508
2076
|
severity: z.ZodEnum<["error", "warning"]>;
|
|
2509
2077
|
suggestedFix: z.ZodOptional<z.ZodString>;
|
|
2510
2078
|
}, "strip", z.ZodTypeAny, {
|
|
2511
2079
|
code: string;
|
|
2512
2080
|
message: string;
|
|
2513
|
-
source: "
|
|
2081
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2514
2082
|
location: "path" | "headers" | "body" | "query";
|
|
2515
2083
|
field: string;
|
|
2516
2084
|
blocking: boolean;
|
|
@@ -2519,7 +2087,7 @@ export declare const sdkPreparedPaidRequestReadySchema: z.ZodObject<{
|
|
|
2519
2087
|
}, {
|
|
2520
2088
|
code: string;
|
|
2521
2089
|
message: string;
|
|
2522
|
-
source: "
|
|
2090
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2523
2091
|
location: "path" | "headers" | "body" | "query";
|
|
2524
2092
|
field: string;
|
|
2525
2093
|
blocking: boolean;
|
|
@@ -2541,8 +2109,8 @@ export declare const sdkPreparedPaidRequestReadySchema: z.ZodObject<{
|
|
|
2541
2109
|
requestBodyFields: {
|
|
2542
2110
|
name: string;
|
|
2543
2111
|
attribution: {
|
|
2544
|
-
source: "
|
|
2545
|
-
authority: "authoritative" | "
|
|
2112
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2113
|
+
authority: "authoritative" | "advisory";
|
|
2546
2114
|
note?: string | undefined;
|
|
2547
2115
|
};
|
|
2548
2116
|
type?: string | undefined;
|
|
@@ -2554,8 +2122,8 @@ export declare const sdkPreparedPaidRequestReadySchema: z.ZodObject<{
|
|
|
2554
2122
|
requestQueryParams: {
|
|
2555
2123
|
name: string;
|
|
2556
2124
|
attribution: {
|
|
2557
|
-
source: "
|
|
2558
|
-
authority: "authoritative" | "
|
|
2125
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2126
|
+
authority: "authoritative" | "advisory";
|
|
2559
2127
|
note?: string | undefined;
|
|
2560
2128
|
};
|
|
2561
2129
|
type?: string | undefined;
|
|
@@ -2567,8 +2135,8 @@ export declare const sdkPreparedPaidRequestReadySchema: z.ZodObject<{
|
|
|
2567
2135
|
requestPathParams: {
|
|
2568
2136
|
name: string;
|
|
2569
2137
|
attribution: {
|
|
2570
|
-
source: "
|
|
2571
|
-
authority: "authoritative" | "
|
|
2138
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2139
|
+
authority: "authoritative" | "advisory";
|
|
2572
2140
|
note?: string | undefined;
|
|
2573
2141
|
};
|
|
2574
2142
|
type?: string | undefined;
|
|
@@ -2580,32 +2148,32 @@ export declare const sdkPreparedPaidRequestReadySchema: z.ZodObject<{
|
|
|
2580
2148
|
notes: {
|
|
2581
2149
|
value: string;
|
|
2582
2150
|
attribution: {
|
|
2583
|
-
source: "
|
|
2584
|
-
authority: "authoritative" | "
|
|
2151
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2152
|
+
authority: "authoritative" | "advisory";
|
|
2585
2153
|
note?: string | undefined;
|
|
2586
2154
|
};
|
|
2587
2155
|
}[];
|
|
2588
2156
|
description?: {
|
|
2589
2157
|
value: string;
|
|
2590
2158
|
attribution: {
|
|
2591
|
-
source: "
|
|
2592
|
-
authority: "authoritative" | "
|
|
2159
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2160
|
+
authority: "authoritative" | "advisory";
|
|
2593
2161
|
note?: string | undefined;
|
|
2594
2162
|
};
|
|
2595
2163
|
} | undefined;
|
|
2596
2164
|
requestBodyType?: {
|
|
2597
2165
|
value: string;
|
|
2598
2166
|
attribution: {
|
|
2599
|
-
source: "
|
|
2600
|
-
authority: "authoritative" | "
|
|
2167
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2168
|
+
authority: "authoritative" | "advisory";
|
|
2601
2169
|
note?: string | undefined;
|
|
2602
2170
|
};
|
|
2603
2171
|
} | undefined;
|
|
2604
2172
|
requestBodyExample?: {
|
|
2605
2173
|
value: string;
|
|
2606
2174
|
attribution: {
|
|
2607
|
-
source: "
|
|
2608
|
-
authority: "authoritative" | "
|
|
2175
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2176
|
+
authority: "authoritative" | "advisory";
|
|
2609
2177
|
note?: string | undefined;
|
|
2610
2178
|
};
|
|
2611
2179
|
} | undefined;
|
|
@@ -2613,7 +2181,7 @@ export declare const sdkPreparedPaidRequestReadySchema: z.ZodObject<{
|
|
|
2613
2181
|
validationIssues: {
|
|
2614
2182
|
code: string;
|
|
2615
2183
|
message: string;
|
|
2616
|
-
source: "
|
|
2184
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2617
2185
|
location: "path" | "headers" | "body" | "query";
|
|
2618
2186
|
field: string;
|
|
2619
2187
|
blocking: boolean;
|
|
@@ -2633,8 +2201,8 @@ export declare const sdkPreparedPaidRequestReadySchema: z.ZodObject<{
|
|
|
2633
2201
|
paymentRequirement?: {
|
|
2634
2202
|
protocol: "x402" | "l402";
|
|
2635
2203
|
provenance: {
|
|
2636
|
-
source: "
|
|
2637
|
-
authority: "authoritative" | "
|
|
2204
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2205
|
+
authority: "authoritative" | "advisory";
|
|
2638
2206
|
note?: string | undefined;
|
|
2639
2207
|
};
|
|
2640
2208
|
asset?: string | undefined;
|
|
@@ -2645,11 +2213,6 @@ export declare const sdkPreparedPaidRequestReadySchema: z.ZodObject<{
|
|
|
2645
2213
|
network?: string | undefined;
|
|
2646
2214
|
payee?: string | undefined;
|
|
2647
2215
|
amountType?: "exact" | "max" | undefined;
|
|
2648
|
-
confirmation?: {
|
|
2649
|
-
source: "marketplace" | "provider" | "merchant_challenge" | "runtime_probe";
|
|
2650
|
-
authority: "authoritative" | "confirmatory" | "advisory";
|
|
2651
|
-
note?: string | undefined;
|
|
2652
|
-
} | undefined;
|
|
2653
2216
|
} | undefined;
|
|
2654
2217
|
}, {
|
|
2655
2218
|
protocol: "x402" | "l402";
|
|
@@ -2665,32 +2228,32 @@ export declare const sdkPreparedPaidRequestReadySchema: z.ZodObject<{
|
|
|
2665
2228
|
description?: {
|
|
2666
2229
|
value: string;
|
|
2667
2230
|
attribution: {
|
|
2668
|
-
source: "
|
|
2669
|
-
authority: "authoritative" | "
|
|
2231
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2232
|
+
authority: "authoritative" | "advisory";
|
|
2670
2233
|
note?: string | undefined;
|
|
2671
2234
|
};
|
|
2672
2235
|
} | undefined;
|
|
2673
2236
|
requestBodyType?: {
|
|
2674
2237
|
value: string;
|
|
2675
2238
|
attribution: {
|
|
2676
|
-
source: "
|
|
2677
|
-
authority: "authoritative" | "
|
|
2239
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2240
|
+
authority: "authoritative" | "advisory";
|
|
2678
2241
|
note?: string | undefined;
|
|
2679
2242
|
};
|
|
2680
2243
|
} | undefined;
|
|
2681
2244
|
requestBodyExample?: {
|
|
2682
2245
|
value: string;
|
|
2683
2246
|
attribution: {
|
|
2684
|
-
source: "
|
|
2685
|
-
authority: "authoritative" | "
|
|
2247
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2248
|
+
authority: "authoritative" | "advisory";
|
|
2686
2249
|
note?: string | undefined;
|
|
2687
2250
|
};
|
|
2688
2251
|
} | undefined;
|
|
2689
2252
|
requestBodyFields?: {
|
|
2690
2253
|
name: string;
|
|
2691
2254
|
attribution: {
|
|
2692
|
-
source: "
|
|
2693
|
-
authority: "authoritative" | "
|
|
2255
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2256
|
+
authority: "authoritative" | "advisory";
|
|
2694
2257
|
note?: string | undefined;
|
|
2695
2258
|
};
|
|
2696
2259
|
type?: string | undefined;
|
|
@@ -2702,8 +2265,8 @@ export declare const sdkPreparedPaidRequestReadySchema: z.ZodObject<{
|
|
|
2702
2265
|
requestQueryParams?: {
|
|
2703
2266
|
name: string;
|
|
2704
2267
|
attribution: {
|
|
2705
|
-
source: "
|
|
2706
|
-
authority: "authoritative" | "
|
|
2268
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2269
|
+
authority: "authoritative" | "advisory";
|
|
2707
2270
|
note?: string | undefined;
|
|
2708
2271
|
};
|
|
2709
2272
|
type?: string | undefined;
|
|
@@ -2715,8 +2278,8 @@ export declare const sdkPreparedPaidRequestReadySchema: z.ZodObject<{
|
|
|
2715
2278
|
requestPathParams?: {
|
|
2716
2279
|
name: string;
|
|
2717
2280
|
attribution: {
|
|
2718
|
-
source: "
|
|
2719
|
-
authority: "authoritative" | "
|
|
2281
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2282
|
+
authority: "authoritative" | "advisory";
|
|
2720
2283
|
note?: string | undefined;
|
|
2721
2284
|
};
|
|
2722
2285
|
type?: string | undefined;
|
|
@@ -2728,8 +2291,8 @@ export declare const sdkPreparedPaidRequestReadySchema: z.ZodObject<{
|
|
|
2728
2291
|
notes?: {
|
|
2729
2292
|
value: string;
|
|
2730
2293
|
attribution: {
|
|
2731
|
-
source: "
|
|
2732
|
-
authority: "authoritative" | "
|
|
2294
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2295
|
+
authority: "authoritative" | "advisory";
|
|
2733
2296
|
note?: string | undefined;
|
|
2734
2297
|
};
|
|
2735
2298
|
}[] | undefined;
|
|
@@ -2747,7 +2310,7 @@ export declare const sdkPreparedPaidRequestReadySchema: z.ZodObject<{
|
|
|
2747
2310
|
validationIssues?: {
|
|
2748
2311
|
code: string;
|
|
2749
2312
|
message: string;
|
|
2750
|
-
source: "
|
|
2313
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2751
2314
|
location: "path" | "headers" | "body" | "query";
|
|
2752
2315
|
field: string;
|
|
2753
2316
|
blocking: boolean;
|
|
@@ -2757,8 +2320,8 @@ export declare const sdkPreparedPaidRequestReadySchema: z.ZodObject<{
|
|
|
2757
2320
|
paymentRequirement?: {
|
|
2758
2321
|
protocol: "x402" | "l402";
|
|
2759
2322
|
provenance: {
|
|
2760
|
-
source: "
|
|
2761
|
-
authority: "authoritative" | "
|
|
2323
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2324
|
+
authority: "authoritative" | "advisory";
|
|
2762
2325
|
note?: string | undefined;
|
|
2763
2326
|
};
|
|
2764
2327
|
asset?: string | undefined;
|
|
@@ -2769,11 +2332,6 @@ export declare const sdkPreparedPaidRequestReadySchema: z.ZodObject<{
|
|
|
2769
2332
|
network?: string | undefined;
|
|
2770
2333
|
payee?: string | undefined;
|
|
2771
2334
|
amountType?: "exact" | "max" | undefined;
|
|
2772
|
-
confirmation?: {
|
|
2773
|
-
source: "marketplace" | "provider" | "merchant_challenge" | "runtime_probe";
|
|
2774
|
-
authority: "authoritative" | "confirmatory" | "advisory";
|
|
2775
|
-
note?: string | undefined;
|
|
2776
|
-
} | undefined;
|
|
2777
2335
|
} | undefined;
|
|
2778
2336
|
}>;
|
|
2779
2337
|
export type SdkPreparedPaidRequestReady = z.infer<typeof sdkPreparedPaidRequestReadySchema>;
|
|
@@ -2804,90 +2362,90 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
2804
2362
|
description: z.ZodOptional<z.ZodObject<{
|
|
2805
2363
|
value: z.ZodString;
|
|
2806
2364
|
attribution: z.ZodObject<{
|
|
2807
|
-
source: z.ZodEnum<["
|
|
2808
|
-
authority: z.ZodEnum<["authoritative", "
|
|
2365
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
2366
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
2809
2367
|
note: z.ZodOptional<z.ZodString>;
|
|
2810
2368
|
}, "strip", z.ZodTypeAny, {
|
|
2811
|
-
source: "
|
|
2812
|
-
authority: "authoritative" | "
|
|
2369
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2370
|
+
authority: "authoritative" | "advisory";
|
|
2813
2371
|
note?: string | undefined;
|
|
2814
2372
|
}, {
|
|
2815
|
-
source: "
|
|
2816
|
-
authority: "authoritative" | "
|
|
2373
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2374
|
+
authority: "authoritative" | "advisory";
|
|
2817
2375
|
note?: string | undefined;
|
|
2818
2376
|
}>;
|
|
2819
2377
|
}, "strip", z.ZodTypeAny, {
|
|
2820
2378
|
value: string;
|
|
2821
2379
|
attribution: {
|
|
2822
|
-
source: "
|
|
2823
|
-
authority: "authoritative" | "
|
|
2380
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2381
|
+
authority: "authoritative" | "advisory";
|
|
2824
2382
|
note?: string | undefined;
|
|
2825
2383
|
};
|
|
2826
2384
|
}, {
|
|
2827
2385
|
value: string;
|
|
2828
2386
|
attribution: {
|
|
2829
|
-
source: "
|
|
2830
|
-
authority: "authoritative" | "
|
|
2387
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2388
|
+
authority: "authoritative" | "advisory";
|
|
2831
2389
|
note?: string | undefined;
|
|
2832
2390
|
};
|
|
2833
2391
|
}>>;
|
|
2834
2392
|
requestBodyType: z.ZodOptional<z.ZodObject<{
|
|
2835
2393
|
value: z.ZodString;
|
|
2836
2394
|
attribution: z.ZodObject<{
|
|
2837
|
-
source: z.ZodEnum<["
|
|
2838
|
-
authority: z.ZodEnum<["authoritative", "
|
|
2395
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
2396
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
2839
2397
|
note: z.ZodOptional<z.ZodString>;
|
|
2840
2398
|
}, "strip", z.ZodTypeAny, {
|
|
2841
|
-
source: "
|
|
2842
|
-
authority: "authoritative" | "
|
|
2399
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2400
|
+
authority: "authoritative" | "advisory";
|
|
2843
2401
|
note?: string | undefined;
|
|
2844
2402
|
}, {
|
|
2845
|
-
source: "
|
|
2846
|
-
authority: "authoritative" | "
|
|
2403
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2404
|
+
authority: "authoritative" | "advisory";
|
|
2847
2405
|
note?: string | undefined;
|
|
2848
2406
|
}>;
|
|
2849
2407
|
}, "strip", z.ZodTypeAny, {
|
|
2850
2408
|
value: string;
|
|
2851
2409
|
attribution: {
|
|
2852
|
-
source: "
|
|
2853
|
-
authority: "authoritative" | "
|
|
2410
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2411
|
+
authority: "authoritative" | "advisory";
|
|
2854
2412
|
note?: string | undefined;
|
|
2855
2413
|
};
|
|
2856
2414
|
}, {
|
|
2857
2415
|
value: string;
|
|
2858
2416
|
attribution: {
|
|
2859
|
-
source: "
|
|
2860
|
-
authority: "authoritative" | "
|
|
2417
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2418
|
+
authority: "authoritative" | "advisory";
|
|
2861
2419
|
note?: string | undefined;
|
|
2862
2420
|
};
|
|
2863
2421
|
}>>;
|
|
2864
2422
|
requestBodyExample: z.ZodOptional<z.ZodObject<{
|
|
2865
2423
|
value: z.ZodString;
|
|
2866
2424
|
attribution: z.ZodObject<{
|
|
2867
|
-
source: z.ZodEnum<["
|
|
2868
|
-
authority: z.ZodEnum<["authoritative", "
|
|
2425
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
2426
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
2869
2427
|
note: z.ZodOptional<z.ZodString>;
|
|
2870
2428
|
}, "strip", z.ZodTypeAny, {
|
|
2871
|
-
source: "
|
|
2872
|
-
authority: "authoritative" | "
|
|
2429
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2430
|
+
authority: "authoritative" | "advisory";
|
|
2873
2431
|
note?: string | undefined;
|
|
2874
2432
|
}, {
|
|
2875
|
-
source: "
|
|
2876
|
-
authority: "authoritative" | "
|
|
2433
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2434
|
+
authority: "authoritative" | "advisory";
|
|
2877
2435
|
note?: string | undefined;
|
|
2878
2436
|
}>;
|
|
2879
2437
|
}, "strip", z.ZodTypeAny, {
|
|
2880
2438
|
value: string;
|
|
2881
2439
|
attribution: {
|
|
2882
|
-
source: "
|
|
2883
|
-
authority: "authoritative" | "
|
|
2440
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2441
|
+
authority: "authoritative" | "advisory";
|
|
2884
2442
|
note?: string | undefined;
|
|
2885
2443
|
};
|
|
2886
2444
|
}, {
|
|
2887
2445
|
value: string;
|
|
2888
2446
|
attribution: {
|
|
2889
|
-
source: "
|
|
2890
|
-
authority: "authoritative" | "
|
|
2447
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2448
|
+
authority: "authoritative" | "advisory";
|
|
2891
2449
|
note?: string | undefined;
|
|
2892
2450
|
};
|
|
2893
2451
|
}>>;
|
|
@@ -2900,23 +2458,23 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
2900
2458
|
enumValues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2901
2459
|
} & {
|
|
2902
2460
|
attribution: z.ZodObject<{
|
|
2903
|
-
source: z.ZodEnum<["
|
|
2904
|
-
authority: z.ZodEnum<["authoritative", "
|
|
2461
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
2462
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
2905
2463
|
note: z.ZodOptional<z.ZodString>;
|
|
2906
2464
|
}, "strip", z.ZodTypeAny, {
|
|
2907
|
-
source: "
|
|
2908
|
-
authority: "authoritative" | "
|
|
2465
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2466
|
+
authority: "authoritative" | "advisory";
|
|
2909
2467
|
note?: string | undefined;
|
|
2910
2468
|
}, {
|
|
2911
|
-
source: "
|
|
2912
|
-
authority: "authoritative" | "
|
|
2469
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2470
|
+
authority: "authoritative" | "advisory";
|
|
2913
2471
|
note?: string | undefined;
|
|
2914
2472
|
}>;
|
|
2915
2473
|
}, "strip", z.ZodTypeAny, {
|
|
2916
2474
|
name: string;
|
|
2917
2475
|
attribution: {
|
|
2918
|
-
source: "
|
|
2919
|
-
authority: "authoritative" | "
|
|
2476
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2477
|
+
authority: "authoritative" | "advisory";
|
|
2920
2478
|
note?: string | undefined;
|
|
2921
2479
|
};
|
|
2922
2480
|
type?: string | undefined;
|
|
@@ -2927,8 +2485,8 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
2927
2485
|
}, {
|
|
2928
2486
|
name: string;
|
|
2929
2487
|
attribution: {
|
|
2930
|
-
source: "
|
|
2931
|
-
authority: "authoritative" | "
|
|
2488
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2489
|
+
authority: "authoritative" | "advisory";
|
|
2932
2490
|
note?: string | undefined;
|
|
2933
2491
|
};
|
|
2934
2492
|
type?: string | undefined;
|
|
@@ -2946,23 +2504,23 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
2946
2504
|
enumValues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2947
2505
|
} & {
|
|
2948
2506
|
attribution: z.ZodObject<{
|
|
2949
|
-
source: z.ZodEnum<["
|
|
2950
|
-
authority: z.ZodEnum<["authoritative", "
|
|
2507
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
2508
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
2951
2509
|
note: z.ZodOptional<z.ZodString>;
|
|
2952
2510
|
}, "strip", z.ZodTypeAny, {
|
|
2953
|
-
source: "
|
|
2954
|
-
authority: "authoritative" | "
|
|
2511
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2512
|
+
authority: "authoritative" | "advisory";
|
|
2955
2513
|
note?: string | undefined;
|
|
2956
2514
|
}, {
|
|
2957
|
-
source: "
|
|
2958
|
-
authority: "authoritative" | "
|
|
2515
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2516
|
+
authority: "authoritative" | "advisory";
|
|
2959
2517
|
note?: string | undefined;
|
|
2960
2518
|
}>;
|
|
2961
2519
|
}, "strip", z.ZodTypeAny, {
|
|
2962
2520
|
name: string;
|
|
2963
2521
|
attribution: {
|
|
2964
|
-
source: "
|
|
2965
|
-
authority: "authoritative" | "
|
|
2522
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2523
|
+
authority: "authoritative" | "advisory";
|
|
2966
2524
|
note?: string | undefined;
|
|
2967
2525
|
};
|
|
2968
2526
|
type?: string | undefined;
|
|
@@ -2973,8 +2531,8 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
2973
2531
|
}, {
|
|
2974
2532
|
name: string;
|
|
2975
2533
|
attribution: {
|
|
2976
|
-
source: "
|
|
2977
|
-
authority: "authoritative" | "
|
|
2534
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2535
|
+
authority: "authoritative" | "advisory";
|
|
2978
2536
|
note?: string | undefined;
|
|
2979
2537
|
};
|
|
2980
2538
|
type?: string | undefined;
|
|
@@ -2992,23 +2550,23 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
2992
2550
|
enumValues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2993
2551
|
} & {
|
|
2994
2552
|
attribution: z.ZodObject<{
|
|
2995
|
-
source: z.ZodEnum<["
|
|
2996
|
-
authority: z.ZodEnum<["authoritative", "
|
|
2553
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
2554
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
2997
2555
|
note: z.ZodOptional<z.ZodString>;
|
|
2998
2556
|
}, "strip", z.ZodTypeAny, {
|
|
2999
|
-
source: "
|
|
3000
|
-
authority: "authoritative" | "
|
|
2557
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2558
|
+
authority: "authoritative" | "advisory";
|
|
3001
2559
|
note?: string | undefined;
|
|
3002
2560
|
}, {
|
|
3003
|
-
source: "
|
|
3004
|
-
authority: "authoritative" | "
|
|
2561
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2562
|
+
authority: "authoritative" | "advisory";
|
|
3005
2563
|
note?: string | undefined;
|
|
3006
2564
|
}>;
|
|
3007
2565
|
}, "strip", z.ZodTypeAny, {
|
|
3008
2566
|
name: string;
|
|
3009
2567
|
attribution: {
|
|
3010
|
-
source: "
|
|
3011
|
-
authority: "authoritative" | "
|
|
2568
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2569
|
+
authority: "authoritative" | "advisory";
|
|
3012
2570
|
note?: string | undefined;
|
|
3013
2571
|
};
|
|
3014
2572
|
type?: string | undefined;
|
|
@@ -3019,8 +2577,8 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3019
2577
|
}, {
|
|
3020
2578
|
name: string;
|
|
3021
2579
|
attribution: {
|
|
3022
|
-
source: "
|
|
3023
|
-
authority: "authoritative" | "
|
|
2580
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2581
|
+
authority: "authoritative" | "advisory";
|
|
3024
2582
|
note?: string | undefined;
|
|
3025
2583
|
};
|
|
3026
2584
|
type?: string | undefined;
|
|
@@ -3032,30 +2590,30 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3032
2590
|
notes: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3033
2591
|
value: z.ZodString;
|
|
3034
2592
|
attribution: z.ZodObject<{
|
|
3035
|
-
source: z.ZodEnum<["
|
|
3036
|
-
authority: z.ZodEnum<["authoritative", "
|
|
2593
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
2594
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
3037
2595
|
note: z.ZodOptional<z.ZodString>;
|
|
3038
2596
|
}, "strip", z.ZodTypeAny, {
|
|
3039
|
-
source: "
|
|
3040
|
-
authority: "authoritative" | "
|
|
2597
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2598
|
+
authority: "authoritative" | "advisory";
|
|
3041
2599
|
note?: string | undefined;
|
|
3042
2600
|
}, {
|
|
3043
|
-
source: "
|
|
3044
|
-
authority: "authoritative" | "
|
|
2601
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2602
|
+
authority: "authoritative" | "advisory";
|
|
3045
2603
|
note?: string | undefined;
|
|
3046
2604
|
}>;
|
|
3047
2605
|
}, "strip", z.ZodTypeAny, {
|
|
3048
2606
|
value: string;
|
|
3049
2607
|
attribution: {
|
|
3050
|
-
source: "
|
|
3051
|
-
authority: "authoritative" | "
|
|
2608
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2609
|
+
authority: "authoritative" | "advisory";
|
|
3052
2610
|
note?: string | undefined;
|
|
3053
2611
|
};
|
|
3054
2612
|
}, {
|
|
3055
2613
|
value: string;
|
|
3056
2614
|
attribution: {
|
|
3057
|
-
source: "
|
|
3058
|
-
authority: "authoritative" | "
|
|
2615
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2616
|
+
authority: "authoritative" | "advisory";
|
|
3059
2617
|
note?: string | undefined;
|
|
3060
2618
|
};
|
|
3061
2619
|
}>, "many">>;
|
|
@@ -3063,8 +2621,8 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3063
2621
|
requestBodyFields: {
|
|
3064
2622
|
name: string;
|
|
3065
2623
|
attribution: {
|
|
3066
|
-
source: "
|
|
3067
|
-
authority: "authoritative" | "
|
|
2624
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2625
|
+
authority: "authoritative" | "advisory";
|
|
3068
2626
|
note?: string | undefined;
|
|
3069
2627
|
};
|
|
3070
2628
|
type?: string | undefined;
|
|
@@ -3076,8 +2634,8 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3076
2634
|
requestQueryParams: {
|
|
3077
2635
|
name: string;
|
|
3078
2636
|
attribution: {
|
|
3079
|
-
source: "
|
|
3080
|
-
authority: "authoritative" | "
|
|
2637
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2638
|
+
authority: "authoritative" | "advisory";
|
|
3081
2639
|
note?: string | undefined;
|
|
3082
2640
|
};
|
|
3083
2641
|
type?: string | undefined;
|
|
@@ -3089,8 +2647,8 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3089
2647
|
requestPathParams: {
|
|
3090
2648
|
name: string;
|
|
3091
2649
|
attribution: {
|
|
3092
|
-
source: "
|
|
3093
|
-
authority: "authoritative" | "
|
|
2650
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2651
|
+
authority: "authoritative" | "advisory";
|
|
3094
2652
|
note?: string | undefined;
|
|
3095
2653
|
};
|
|
3096
2654
|
type?: string | undefined;
|
|
@@ -3102,32 +2660,32 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3102
2660
|
notes: {
|
|
3103
2661
|
value: string;
|
|
3104
2662
|
attribution: {
|
|
3105
|
-
source: "
|
|
3106
|
-
authority: "authoritative" | "
|
|
2663
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2664
|
+
authority: "authoritative" | "advisory";
|
|
3107
2665
|
note?: string | undefined;
|
|
3108
2666
|
};
|
|
3109
2667
|
}[];
|
|
3110
2668
|
description?: {
|
|
3111
2669
|
value: string;
|
|
3112
2670
|
attribution: {
|
|
3113
|
-
source: "
|
|
3114
|
-
authority: "authoritative" | "
|
|
2671
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2672
|
+
authority: "authoritative" | "advisory";
|
|
3115
2673
|
note?: string | undefined;
|
|
3116
2674
|
};
|
|
3117
2675
|
} | undefined;
|
|
3118
2676
|
requestBodyType?: {
|
|
3119
2677
|
value: string;
|
|
3120
2678
|
attribution: {
|
|
3121
|
-
source: "
|
|
3122
|
-
authority: "authoritative" | "
|
|
2679
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2680
|
+
authority: "authoritative" | "advisory";
|
|
3123
2681
|
note?: string | undefined;
|
|
3124
2682
|
};
|
|
3125
2683
|
} | undefined;
|
|
3126
2684
|
requestBodyExample?: {
|
|
3127
2685
|
value: string;
|
|
3128
2686
|
attribution: {
|
|
3129
|
-
source: "
|
|
3130
|
-
authority: "authoritative" | "
|
|
2687
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2688
|
+
authority: "authoritative" | "advisory";
|
|
3131
2689
|
note?: string | undefined;
|
|
3132
2690
|
};
|
|
3133
2691
|
} | undefined;
|
|
@@ -3135,32 +2693,32 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3135
2693
|
description?: {
|
|
3136
2694
|
value: string;
|
|
3137
2695
|
attribution: {
|
|
3138
|
-
source: "
|
|
3139
|
-
authority: "authoritative" | "
|
|
2696
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2697
|
+
authority: "authoritative" | "advisory";
|
|
3140
2698
|
note?: string | undefined;
|
|
3141
2699
|
};
|
|
3142
2700
|
} | undefined;
|
|
3143
2701
|
requestBodyType?: {
|
|
3144
2702
|
value: string;
|
|
3145
2703
|
attribution: {
|
|
3146
|
-
source: "
|
|
3147
|
-
authority: "authoritative" | "
|
|
2704
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2705
|
+
authority: "authoritative" | "advisory";
|
|
3148
2706
|
note?: string | undefined;
|
|
3149
2707
|
};
|
|
3150
2708
|
} | undefined;
|
|
3151
2709
|
requestBodyExample?: {
|
|
3152
2710
|
value: string;
|
|
3153
2711
|
attribution: {
|
|
3154
|
-
source: "
|
|
3155
|
-
authority: "authoritative" | "
|
|
2712
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2713
|
+
authority: "authoritative" | "advisory";
|
|
3156
2714
|
note?: string | undefined;
|
|
3157
2715
|
};
|
|
3158
2716
|
} | undefined;
|
|
3159
2717
|
requestBodyFields?: {
|
|
3160
2718
|
name: string;
|
|
3161
2719
|
attribution: {
|
|
3162
|
-
source: "
|
|
3163
|
-
authority: "authoritative" | "
|
|
2720
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2721
|
+
authority: "authoritative" | "advisory";
|
|
3164
2722
|
note?: string | undefined;
|
|
3165
2723
|
};
|
|
3166
2724
|
type?: string | undefined;
|
|
@@ -3172,8 +2730,8 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3172
2730
|
requestQueryParams?: {
|
|
3173
2731
|
name: string;
|
|
3174
2732
|
attribution: {
|
|
3175
|
-
source: "
|
|
3176
|
-
authority: "authoritative" | "
|
|
2733
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2734
|
+
authority: "authoritative" | "advisory";
|
|
3177
2735
|
note?: string | undefined;
|
|
3178
2736
|
};
|
|
3179
2737
|
type?: string | undefined;
|
|
@@ -3185,8 +2743,8 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3185
2743
|
requestPathParams?: {
|
|
3186
2744
|
name: string;
|
|
3187
2745
|
attribution: {
|
|
3188
|
-
source: "
|
|
3189
|
-
authority: "authoritative" | "
|
|
2746
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2747
|
+
authority: "authoritative" | "advisory";
|
|
3190
2748
|
note?: string | undefined;
|
|
3191
2749
|
};
|
|
3192
2750
|
type?: string | undefined;
|
|
@@ -3198,8 +2756,8 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3198
2756
|
notes?: {
|
|
3199
2757
|
value: string;
|
|
3200
2758
|
attribution: {
|
|
3201
|
-
source: "
|
|
3202
|
-
authority: "authoritative" | "
|
|
2759
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2760
|
+
authority: "authoritative" | "advisory";
|
|
3203
2761
|
note?: string | undefined;
|
|
3204
2762
|
};
|
|
3205
2763
|
}[] | undefined;
|
|
@@ -3219,14 +2777,14 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3219
2777
|
field: z.ZodString;
|
|
3220
2778
|
code: z.ZodString;
|
|
3221
2779
|
message: z.ZodString;
|
|
3222
|
-
source: z.ZodEnum<["
|
|
2780
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
3223
2781
|
blocking: z.ZodBoolean;
|
|
3224
2782
|
severity: z.ZodEnum<["error", "warning"]>;
|
|
3225
2783
|
suggestedFix: z.ZodOptional<z.ZodString>;
|
|
3226
2784
|
}, "strip", z.ZodTypeAny, {
|
|
3227
2785
|
code: string;
|
|
3228
2786
|
message: string;
|
|
3229
|
-
source: "
|
|
2787
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3230
2788
|
location: "path" | "headers" | "body" | "query";
|
|
3231
2789
|
field: string;
|
|
3232
2790
|
blocking: boolean;
|
|
@@ -3235,7 +2793,7 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3235
2793
|
}, {
|
|
3236
2794
|
code: string;
|
|
3237
2795
|
message: string;
|
|
3238
|
-
source: "
|
|
2796
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3239
2797
|
location: "path" | "headers" | "body" | "query";
|
|
3240
2798
|
field: string;
|
|
3241
2799
|
blocking: boolean;
|
|
@@ -3257,8 +2815,8 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3257
2815
|
requestBodyFields: {
|
|
3258
2816
|
name: string;
|
|
3259
2817
|
attribution: {
|
|
3260
|
-
source: "
|
|
3261
|
-
authority: "authoritative" | "
|
|
2818
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2819
|
+
authority: "authoritative" | "advisory";
|
|
3262
2820
|
note?: string | undefined;
|
|
3263
2821
|
};
|
|
3264
2822
|
type?: string | undefined;
|
|
@@ -3270,8 +2828,8 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3270
2828
|
requestQueryParams: {
|
|
3271
2829
|
name: string;
|
|
3272
2830
|
attribution: {
|
|
3273
|
-
source: "
|
|
3274
|
-
authority: "authoritative" | "
|
|
2831
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2832
|
+
authority: "authoritative" | "advisory";
|
|
3275
2833
|
note?: string | undefined;
|
|
3276
2834
|
};
|
|
3277
2835
|
type?: string | undefined;
|
|
@@ -3283,8 +2841,8 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3283
2841
|
requestPathParams: {
|
|
3284
2842
|
name: string;
|
|
3285
2843
|
attribution: {
|
|
3286
|
-
source: "
|
|
3287
|
-
authority: "authoritative" | "
|
|
2844
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2845
|
+
authority: "authoritative" | "advisory";
|
|
3288
2846
|
note?: string | undefined;
|
|
3289
2847
|
};
|
|
3290
2848
|
type?: string | undefined;
|
|
@@ -3296,32 +2854,32 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3296
2854
|
notes: {
|
|
3297
2855
|
value: string;
|
|
3298
2856
|
attribution: {
|
|
3299
|
-
source: "
|
|
3300
|
-
authority: "authoritative" | "
|
|
2857
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2858
|
+
authority: "authoritative" | "advisory";
|
|
3301
2859
|
note?: string | undefined;
|
|
3302
2860
|
};
|
|
3303
2861
|
}[];
|
|
3304
2862
|
description?: {
|
|
3305
2863
|
value: string;
|
|
3306
2864
|
attribution: {
|
|
3307
|
-
source: "
|
|
3308
|
-
authority: "authoritative" | "
|
|
2865
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2866
|
+
authority: "authoritative" | "advisory";
|
|
3309
2867
|
note?: string | undefined;
|
|
3310
2868
|
};
|
|
3311
2869
|
} | undefined;
|
|
3312
2870
|
requestBodyType?: {
|
|
3313
2871
|
value: string;
|
|
3314
2872
|
attribution: {
|
|
3315
|
-
source: "
|
|
3316
|
-
authority: "authoritative" | "
|
|
2873
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2874
|
+
authority: "authoritative" | "advisory";
|
|
3317
2875
|
note?: string | undefined;
|
|
3318
2876
|
};
|
|
3319
2877
|
} | undefined;
|
|
3320
2878
|
requestBodyExample?: {
|
|
3321
2879
|
value: string;
|
|
3322
2880
|
attribution: {
|
|
3323
|
-
source: "
|
|
3324
|
-
authority: "authoritative" | "
|
|
2881
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2882
|
+
authority: "authoritative" | "advisory";
|
|
3325
2883
|
note?: string | undefined;
|
|
3326
2884
|
};
|
|
3327
2885
|
} | undefined;
|
|
@@ -3329,7 +2887,7 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3329
2887
|
validationIssues: {
|
|
3330
2888
|
code: string;
|
|
3331
2889
|
message: string;
|
|
3332
|
-
source: "
|
|
2890
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3333
2891
|
location: "path" | "headers" | "body" | "query";
|
|
3334
2892
|
field: string;
|
|
3335
2893
|
blocking: boolean;
|
|
@@ -3355,32 +2913,32 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3355
2913
|
description?: {
|
|
3356
2914
|
value: string;
|
|
3357
2915
|
attribution: {
|
|
3358
|
-
source: "
|
|
3359
|
-
authority: "authoritative" | "
|
|
2916
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2917
|
+
authority: "authoritative" | "advisory";
|
|
3360
2918
|
note?: string | undefined;
|
|
3361
2919
|
};
|
|
3362
2920
|
} | undefined;
|
|
3363
2921
|
requestBodyType?: {
|
|
3364
2922
|
value: string;
|
|
3365
2923
|
attribution: {
|
|
3366
|
-
source: "
|
|
3367
|
-
authority: "authoritative" | "
|
|
2924
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2925
|
+
authority: "authoritative" | "advisory";
|
|
3368
2926
|
note?: string | undefined;
|
|
3369
2927
|
};
|
|
3370
2928
|
} | undefined;
|
|
3371
2929
|
requestBodyExample?: {
|
|
3372
2930
|
value: string;
|
|
3373
2931
|
attribution: {
|
|
3374
|
-
source: "
|
|
3375
|
-
authority: "authoritative" | "
|
|
2932
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2933
|
+
authority: "authoritative" | "advisory";
|
|
3376
2934
|
note?: string | undefined;
|
|
3377
2935
|
};
|
|
3378
2936
|
} | undefined;
|
|
3379
2937
|
requestBodyFields?: {
|
|
3380
2938
|
name: string;
|
|
3381
2939
|
attribution: {
|
|
3382
|
-
source: "
|
|
3383
|
-
authority: "authoritative" | "
|
|
2940
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2941
|
+
authority: "authoritative" | "advisory";
|
|
3384
2942
|
note?: string | undefined;
|
|
3385
2943
|
};
|
|
3386
2944
|
type?: string | undefined;
|
|
@@ -3392,8 +2950,8 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3392
2950
|
requestQueryParams?: {
|
|
3393
2951
|
name: string;
|
|
3394
2952
|
attribution: {
|
|
3395
|
-
source: "
|
|
3396
|
-
authority: "authoritative" | "
|
|
2953
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2954
|
+
authority: "authoritative" | "advisory";
|
|
3397
2955
|
note?: string | undefined;
|
|
3398
2956
|
};
|
|
3399
2957
|
type?: string | undefined;
|
|
@@ -3405,8 +2963,8 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3405
2963
|
requestPathParams?: {
|
|
3406
2964
|
name: string;
|
|
3407
2965
|
attribution: {
|
|
3408
|
-
source: "
|
|
3409
|
-
authority: "authoritative" | "
|
|
2966
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2967
|
+
authority: "authoritative" | "advisory";
|
|
3410
2968
|
note?: string | undefined;
|
|
3411
2969
|
};
|
|
3412
2970
|
type?: string | undefined;
|
|
@@ -3418,8 +2976,8 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3418
2976
|
notes?: {
|
|
3419
2977
|
value: string;
|
|
3420
2978
|
attribution: {
|
|
3421
|
-
source: "
|
|
3422
|
-
authority: "authoritative" | "
|
|
2979
|
+
source: "merchant_challenge" | "external_metadata";
|
|
2980
|
+
authority: "authoritative" | "advisory";
|
|
3423
2981
|
note?: string | undefined;
|
|
3424
2982
|
};
|
|
3425
2983
|
}[] | undefined;
|
|
@@ -3432,7 +2990,7 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3432
2990
|
validationIssues?: {
|
|
3433
2991
|
code: string;
|
|
3434
2992
|
message: string;
|
|
3435
|
-
source: "
|
|
2993
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3436
2994
|
location: "path" | "headers" | "body" | "query";
|
|
3437
2995
|
field: string;
|
|
3438
2996
|
blocking: boolean;
|
|
@@ -3485,36 +3043,23 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3485
3043
|
amountMinor: z.ZodOptional<z.ZodString>;
|
|
3486
3044
|
precision: z.ZodOptional<z.ZodNumber>;
|
|
3487
3045
|
provenance: z.ZodObject<{
|
|
3488
|
-
source: z.ZodEnum<["
|
|
3489
|
-
authority: z.ZodEnum<["authoritative", "
|
|
3046
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
3047
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
3490
3048
|
note: z.ZodOptional<z.ZodString>;
|
|
3491
3049
|
}, "strip", z.ZodTypeAny, {
|
|
3492
|
-
source: "
|
|
3493
|
-
authority: "authoritative" | "
|
|
3050
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3051
|
+
authority: "authoritative" | "advisory";
|
|
3494
3052
|
note?: string | undefined;
|
|
3495
3053
|
}, {
|
|
3496
|
-
source: "
|
|
3497
|
-
authority: "authoritative" | "
|
|
3054
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3055
|
+
authority: "authoritative" | "advisory";
|
|
3498
3056
|
note?: string | undefined;
|
|
3499
3057
|
}>;
|
|
3500
|
-
confirmation: z.ZodOptional<z.ZodObject<{
|
|
3501
|
-
source: z.ZodEnum<["marketplace", "provider", "merchant_challenge", "runtime_probe"]>;
|
|
3502
|
-
authority: z.ZodEnum<["authoritative", "confirmatory", "advisory"]>;
|
|
3503
|
-
note: z.ZodOptional<z.ZodString>;
|
|
3504
|
-
}, "strip", z.ZodTypeAny, {
|
|
3505
|
-
source: "marketplace" | "provider" | "merchant_challenge" | "runtime_probe";
|
|
3506
|
-
authority: "authoritative" | "confirmatory" | "advisory";
|
|
3507
|
-
note?: string | undefined;
|
|
3508
|
-
}, {
|
|
3509
|
-
source: "marketplace" | "provider" | "merchant_challenge" | "runtime_probe";
|
|
3510
|
-
authority: "authoritative" | "confirmatory" | "advisory";
|
|
3511
|
-
note?: string | undefined;
|
|
3512
|
-
}>>;
|
|
3513
3058
|
}, "strip", z.ZodTypeAny, {
|
|
3514
3059
|
protocol: "x402" | "l402";
|
|
3515
3060
|
provenance: {
|
|
3516
|
-
source: "
|
|
3517
|
-
authority: "authoritative" | "
|
|
3061
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3062
|
+
authority: "authoritative" | "advisory";
|
|
3518
3063
|
note?: string | undefined;
|
|
3519
3064
|
};
|
|
3520
3065
|
asset?: string | undefined;
|
|
@@ -3525,16 +3070,11 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3525
3070
|
network?: string | undefined;
|
|
3526
3071
|
payee?: string | undefined;
|
|
3527
3072
|
amountType?: "exact" | "max" | undefined;
|
|
3528
|
-
confirmation?: {
|
|
3529
|
-
source: "marketplace" | "provider" | "merchant_challenge" | "runtime_probe";
|
|
3530
|
-
authority: "authoritative" | "confirmatory" | "advisory";
|
|
3531
|
-
note?: string | undefined;
|
|
3532
|
-
} | undefined;
|
|
3533
3073
|
}, {
|
|
3534
3074
|
protocol: "x402" | "l402";
|
|
3535
3075
|
provenance: {
|
|
3536
|
-
source: "
|
|
3537
|
-
authority: "authoritative" | "
|
|
3076
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3077
|
+
authority: "authoritative" | "advisory";
|
|
3538
3078
|
note?: string | undefined;
|
|
3539
3079
|
};
|
|
3540
3080
|
asset?: string | undefined;
|
|
@@ -3545,100 +3085,95 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3545
3085
|
network?: string | undefined;
|
|
3546
3086
|
payee?: string | undefined;
|
|
3547
3087
|
amountType?: "exact" | "max" | undefined;
|
|
3548
|
-
confirmation?: {
|
|
3549
|
-
source: "marketplace" | "provider" | "merchant_challenge" | "runtime_probe";
|
|
3550
|
-
authority: "authoritative" | "confirmatory" | "advisory";
|
|
3551
|
-
note?: string | undefined;
|
|
3552
|
-
} | undefined;
|
|
3553
3088
|
}>>;
|
|
3554
3089
|
hints: z.ZodObject<{
|
|
3555
3090
|
description: z.ZodOptional<z.ZodObject<{
|
|
3556
3091
|
value: z.ZodString;
|
|
3557
3092
|
attribution: z.ZodObject<{
|
|
3558
|
-
source: z.ZodEnum<["
|
|
3559
|
-
authority: z.ZodEnum<["authoritative", "
|
|
3093
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
3094
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
3560
3095
|
note: z.ZodOptional<z.ZodString>;
|
|
3561
3096
|
}, "strip", z.ZodTypeAny, {
|
|
3562
|
-
source: "
|
|
3563
|
-
authority: "authoritative" | "
|
|
3097
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3098
|
+
authority: "authoritative" | "advisory";
|
|
3564
3099
|
note?: string | undefined;
|
|
3565
3100
|
}, {
|
|
3566
|
-
source: "
|
|
3567
|
-
authority: "authoritative" | "
|
|
3101
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3102
|
+
authority: "authoritative" | "advisory";
|
|
3568
3103
|
note?: string | undefined;
|
|
3569
3104
|
}>;
|
|
3570
3105
|
}, "strip", z.ZodTypeAny, {
|
|
3571
3106
|
value: string;
|
|
3572
3107
|
attribution: {
|
|
3573
|
-
source: "
|
|
3574
|
-
authority: "authoritative" | "
|
|
3108
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3109
|
+
authority: "authoritative" | "advisory";
|
|
3575
3110
|
note?: string | undefined;
|
|
3576
3111
|
};
|
|
3577
3112
|
}, {
|
|
3578
3113
|
value: string;
|
|
3579
3114
|
attribution: {
|
|
3580
|
-
source: "
|
|
3581
|
-
authority: "authoritative" | "
|
|
3115
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3116
|
+
authority: "authoritative" | "advisory";
|
|
3582
3117
|
note?: string | undefined;
|
|
3583
3118
|
};
|
|
3584
3119
|
}>>;
|
|
3585
3120
|
requestBodyType: z.ZodOptional<z.ZodObject<{
|
|
3586
3121
|
value: z.ZodString;
|
|
3587
3122
|
attribution: z.ZodObject<{
|
|
3588
|
-
source: z.ZodEnum<["
|
|
3589
|
-
authority: z.ZodEnum<["authoritative", "
|
|
3123
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
3124
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
3590
3125
|
note: z.ZodOptional<z.ZodString>;
|
|
3591
3126
|
}, "strip", z.ZodTypeAny, {
|
|
3592
|
-
source: "
|
|
3593
|
-
authority: "authoritative" | "
|
|
3127
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3128
|
+
authority: "authoritative" | "advisory";
|
|
3594
3129
|
note?: string | undefined;
|
|
3595
3130
|
}, {
|
|
3596
|
-
source: "
|
|
3597
|
-
authority: "authoritative" | "
|
|
3131
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3132
|
+
authority: "authoritative" | "advisory";
|
|
3598
3133
|
note?: string | undefined;
|
|
3599
3134
|
}>;
|
|
3600
3135
|
}, "strip", z.ZodTypeAny, {
|
|
3601
3136
|
value: string;
|
|
3602
3137
|
attribution: {
|
|
3603
|
-
source: "
|
|
3604
|
-
authority: "authoritative" | "
|
|
3138
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3139
|
+
authority: "authoritative" | "advisory";
|
|
3605
3140
|
note?: string | undefined;
|
|
3606
3141
|
};
|
|
3607
3142
|
}, {
|
|
3608
3143
|
value: string;
|
|
3609
3144
|
attribution: {
|
|
3610
|
-
source: "
|
|
3611
|
-
authority: "authoritative" | "
|
|
3145
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3146
|
+
authority: "authoritative" | "advisory";
|
|
3612
3147
|
note?: string | undefined;
|
|
3613
3148
|
};
|
|
3614
3149
|
}>>;
|
|
3615
3150
|
requestBodyExample: z.ZodOptional<z.ZodObject<{
|
|
3616
3151
|
value: z.ZodString;
|
|
3617
3152
|
attribution: z.ZodObject<{
|
|
3618
|
-
source: z.ZodEnum<["
|
|
3619
|
-
authority: z.ZodEnum<["authoritative", "
|
|
3153
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
3154
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
3620
3155
|
note: z.ZodOptional<z.ZodString>;
|
|
3621
3156
|
}, "strip", z.ZodTypeAny, {
|
|
3622
|
-
source: "
|
|
3623
|
-
authority: "authoritative" | "
|
|
3157
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3158
|
+
authority: "authoritative" | "advisory";
|
|
3624
3159
|
note?: string | undefined;
|
|
3625
3160
|
}, {
|
|
3626
|
-
source: "
|
|
3627
|
-
authority: "authoritative" | "
|
|
3161
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3162
|
+
authority: "authoritative" | "advisory";
|
|
3628
3163
|
note?: string | undefined;
|
|
3629
3164
|
}>;
|
|
3630
3165
|
}, "strip", z.ZodTypeAny, {
|
|
3631
3166
|
value: string;
|
|
3632
3167
|
attribution: {
|
|
3633
|
-
source: "
|
|
3634
|
-
authority: "authoritative" | "
|
|
3168
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3169
|
+
authority: "authoritative" | "advisory";
|
|
3635
3170
|
note?: string | undefined;
|
|
3636
3171
|
};
|
|
3637
3172
|
}, {
|
|
3638
3173
|
value: string;
|
|
3639
3174
|
attribution: {
|
|
3640
|
-
source: "
|
|
3641
|
-
authority: "authoritative" | "
|
|
3175
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3176
|
+
authority: "authoritative" | "advisory";
|
|
3642
3177
|
note?: string | undefined;
|
|
3643
3178
|
};
|
|
3644
3179
|
}>>;
|
|
@@ -3651,23 +3186,23 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3651
3186
|
enumValues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3652
3187
|
} & {
|
|
3653
3188
|
attribution: z.ZodObject<{
|
|
3654
|
-
source: z.ZodEnum<["
|
|
3655
|
-
authority: z.ZodEnum<["authoritative", "
|
|
3189
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
3190
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
3656
3191
|
note: z.ZodOptional<z.ZodString>;
|
|
3657
3192
|
}, "strip", z.ZodTypeAny, {
|
|
3658
|
-
source: "
|
|
3659
|
-
authority: "authoritative" | "
|
|
3193
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3194
|
+
authority: "authoritative" | "advisory";
|
|
3660
3195
|
note?: string | undefined;
|
|
3661
3196
|
}, {
|
|
3662
|
-
source: "
|
|
3663
|
-
authority: "authoritative" | "
|
|
3197
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3198
|
+
authority: "authoritative" | "advisory";
|
|
3664
3199
|
note?: string | undefined;
|
|
3665
3200
|
}>;
|
|
3666
3201
|
}, "strip", z.ZodTypeAny, {
|
|
3667
3202
|
name: string;
|
|
3668
3203
|
attribution: {
|
|
3669
|
-
source: "
|
|
3670
|
-
authority: "authoritative" | "
|
|
3204
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3205
|
+
authority: "authoritative" | "advisory";
|
|
3671
3206
|
note?: string | undefined;
|
|
3672
3207
|
};
|
|
3673
3208
|
type?: string | undefined;
|
|
@@ -3678,8 +3213,8 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3678
3213
|
}, {
|
|
3679
3214
|
name: string;
|
|
3680
3215
|
attribution: {
|
|
3681
|
-
source: "
|
|
3682
|
-
authority: "authoritative" | "
|
|
3216
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3217
|
+
authority: "authoritative" | "advisory";
|
|
3683
3218
|
note?: string | undefined;
|
|
3684
3219
|
};
|
|
3685
3220
|
type?: string | undefined;
|
|
@@ -3697,23 +3232,23 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3697
3232
|
enumValues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3698
3233
|
} & {
|
|
3699
3234
|
attribution: z.ZodObject<{
|
|
3700
|
-
source: z.ZodEnum<["
|
|
3701
|
-
authority: z.ZodEnum<["authoritative", "
|
|
3235
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
3236
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
3702
3237
|
note: z.ZodOptional<z.ZodString>;
|
|
3703
3238
|
}, "strip", z.ZodTypeAny, {
|
|
3704
|
-
source: "
|
|
3705
|
-
authority: "authoritative" | "
|
|
3239
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3240
|
+
authority: "authoritative" | "advisory";
|
|
3706
3241
|
note?: string | undefined;
|
|
3707
3242
|
}, {
|
|
3708
|
-
source: "
|
|
3709
|
-
authority: "authoritative" | "
|
|
3243
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3244
|
+
authority: "authoritative" | "advisory";
|
|
3710
3245
|
note?: string | undefined;
|
|
3711
3246
|
}>;
|
|
3712
3247
|
}, "strip", z.ZodTypeAny, {
|
|
3713
3248
|
name: string;
|
|
3714
3249
|
attribution: {
|
|
3715
|
-
source: "
|
|
3716
|
-
authority: "authoritative" | "
|
|
3250
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3251
|
+
authority: "authoritative" | "advisory";
|
|
3717
3252
|
note?: string | undefined;
|
|
3718
3253
|
};
|
|
3719
3254
|
type?: string | undefined;
|
|
@@ -3724,8 +3259,8 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3724
3259
|
}, {
|
|
3725
3260
|
name: string;
|
|
3726
3261
|
attribution: {
|
|
3727
|
-
source: "
|
|
3728
|
-
authority: "authoritative" | "
|
|
3262
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3263
|
+
authority: "authoritative" | "advisory";
|
|
3729
3264
|
note?: string | undefined;
|
|
3730
3265
|
};
|
|
3731
3266
|
type?: string | undefined;
|
|
@@ -3743,23 +3278,23 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3743
3278
|
enumValues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3744
3279
|
} & {
|
|
3745
3280
|
attribution: z.ZodObject<{
|
|
3746
|
-
source: z.ZodEnum<["
|
|
3747
|
-
authority: z.ZodEnum<["authoritative", "
|
|
3281
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
3282
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
3748
3283
|
note: z.ZodOptional<z.ZodString>;
|
|
3749
3284
|
}, "strip", z.ZodTypeAny, {
|
|
3750
|
-
source: "
|
|
3751
|
-
authority: "authoritative" | "
|
|
3285
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3286
|
+
authority: "authoritative" | "advisory";
|
|
3752
3287
|
note?: string | undefined;
|
|
3753
3288
|
}, {
|
|
3754
|
-
source: "
|
|
3755
|
-
authority: "authoritative" | "
|
|
3289
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3290
|
+
authority: "authoritative" | "advisory";
|
|
3756
3291
|
note?: string | undefined;
|
|
3757
3292
|
}>;
|
|
3758
3293
|
}, "strip", z.ZodTypeAny, {
|
|
3759
3294
|
name: string;
|
|
3760
3295
|
attribution: {
|
|
3761
|
-
source: "
|
|
3762
|
-
authority: "authoritative" | "
|
|
3296
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3297
|
+
authority: "authoritative" | "advisory";
|
|
3763
3298
|
note?: string | undefined;
|
|
3764
3299
|
};
|
|
3765
3300
|
type?: string | undefined;
|
|
@@ -3770,8 +3305,8 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3770
3305
|
}, {
|
|
3771
3306
|
name: string;
|
|
3772
3307
|
attribution: {
|
|
3773
|
-
source: "
|
|
3774
|
-
authority: "authoritative" | "
|
|
3308
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3309
|
+
authority: "authoritative" | "advisory";
|
|
3775
3310
|
note?: string | undefined;
|
|
3776
3311
|
};
|
|
3777
3312
|
type?: string | undefined;
|
|
@@ -3783,30 +3318,30 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3783
3318
|
notes: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3784
3319
|
value: z.ZodString;
|
|
3785
3320
|
attribution: z.ZodObject<{
|
|
3786
|
-
source: z.ZodEnum<["
|
|
3787
|
-
authority: z.ZodEnum<["authoritative", "
|
|
3321
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
3322
|
+
authority: z.ZodEnum<["authoritative", "advisory"]>;
|
|
3788
3323
|
note: z.ZodOptional<z.ZodString>;
|
|
3789
3324
|
}, "strip", z.ZodTypeAny, {
|
|
3790
|
-
source: "
|
|
3791
|
-
authority: "authoritative" | "
|
|
3325
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3326
|
+
authority: "authoritative" | "advisory";
|
|
3792
3327
|
note?: string | undefined;
|
|
3793
3328
|
}, {
|
|
3794
|
-
source: "
|
|
3795
|
-
authority: "authoritative" | "
|
|
3329
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3330
|
+
authority: "authoritative" | "advisory";
|
|
3796
3331
|
note?: string | undefined;
|
|
3797
3332
|
}>;
|
|
3798
3333
|
}, "strip", z.ZodTypeAny, {
|
|
3799
3334
|
value: string;
|
|
3800
3335
|
attribution: {
|
|
3801
|
-
source: "
|
|
3802
|
-
authority: "authoritative" | "
|
|
3336
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3337
|
+
authority: "authoritative" | "advisory";
|
|
3803
3338
|
note?: string | undefined;
|
|
3804
3339
|
};
|
|
3805
3340
|
}, {
|
|
3806
3341
|
value: string;
|
|
3807
3342
|
attribution: {
|
|
3808
|
-
source: "
|
|
3809
|
-
authority: "authoritative" | "
|
|
3343
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3344
|
+
authority: "authoritative" | "advisory";
|
|
3810
3345
|
note?: string | undefined;
|
|
3811
3346
|
};
|
|
3812
3347
|
}>, "many">>;
|
|
@@ -3814,8 +3349,8 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3814
3349
|
requestBodyFields: {
|
|
3815
3350
|
name: string;
|
|
3816
3351
|
attribution: {
|
|
3817
|
-
source: "
|
|
3818
|
-
authority: "authoritative" | "
|
|
3352
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3353
|
+
authority: "authoritative" | "advisory";
|
|
3819
3354
|
note?: string | undefined;
|
|
3820
3355
|
};
|
|
3821
3356
|
type?: string | undefined;
|
|
@@ -3827,8 +3362,8 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3827
3362
|
requestQueryParams: {
|
|
3828
3363
|
name: string;
|
|
3829
3364
|
attribution: {
|
|
3830
|
-
source: "
|
|
3831
|
-
authority: "authoritative" | "
|
|
3365
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3366
|
+
authority: "authoritative" | "advisory";
|
|
3832
3367
|
note?: string | undefined;
|
|
3833
3368
|
};
|
|
3834
3369
|
type?: string | undefined;
|
|
@@ -3840,8 +3375,8 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3840
3375
|
requestPathParams: {
|
|
3841
3376
|
name: string;
|
|
3842
3377
|
attribution: {
|
|
3843
|
-
source: "
|
|
3844
|
-
authority: "authoritative" | "
|
|
3378
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3379
|
+
authority: "authoritative" | "advisory";
|
|
3845
3380
|
note?: string | undefined;
|
|
3846
3381
|
};
|
|
3847
3382
|
type?: string | undefined;
|
|
@@ -3853,32 +3388,32 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3853
3388
|
notes: {
|
|
3854
3389
|
value: string;
|
|
3855
3390
|
attribution: {
|
|
3856
|
-
source: "
|
|
3857
|
-
authority: "authoritative" | "
|
|
3391
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3392
|
+
authority: "authoritative" | "advisory";
|
|
3858
3393
|
note?: string | undefined;
|
|
3859
3394
|
};
|
|
3860
3395
|
}[];
|
|
3861
3396
|
description?: {
|
|
3862
3397
|
value: string;
|
|
3863
3398
|
attribution: {
|
|
3864
|
-
source: "
|
|
3865
|
-
authority: "authoritative" | "
|
|
3399
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3400
|
+
authority: "authoritative" | "advisory";
|
|
3866
3401
|
note?: string | undefined;
|
|
3867
3402
|
};
|
|
3868
3403
|
} | undefined;
|
|
3869
3404
|
requestBodyType?: {
|
|
3870
3405
|
value: string;
|
|
3871
3406
|
attribution: {
|
|
3872
|
-
source: "
|
|
3873
|
-
authority: "authoritative" | "
|
|
3407
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3408
|
+
authority: "authoritative" | "advisory";
|
|
3874
3409
|
note?: string | undefined;
|
|
3875
3410
|
};
|
|
3876
3411
|
} | undefined;
|
|
3877
3412
|
requestBodyExample?: {
|
|
3878
3413
|
value: string;
|
|
3879
3414
|
attribution: {
|
|
3880
|
-
source: "
|
|
3881
|
-
authority: "authoritative" | "
|
|
3415
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3416
|
+
authority: "authoritative" | "advisory";
|
|
3882
3417
|
note?: string | undefined;
|
|
3883
3418
|
};
|
|
3884
3419
|
} | undefined;
|
|
@@ -3886,32 +3421,32 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3886
3421
|
description?: {
|
|
3887
3422
|
value: string;
|
|
3888
3423
|
attribution: {
|
|
3889
|
-
source: "
|
|
3890
|
-
authority: "authoritative" | "
|
|
3424
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3425
|
+
authority: "authoritative" | "advisory";
|
|
3891
3426
|
note?: string | undefined;
|
|
3892
3427
|
};
|
|
3893
3428
|
} | undefined;
|
|
3894
3429
|
requestBodyType?: {
|
|
3895
3430
|
value: string;
|
|
3896
3431
|
attribution: {
|
|
3897
|
-
source: "
|
|
3898
|
-
authority: "authoritative" | "
|
|
3432
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3433
|
+
authority: "authoritative" | "advisory";
|
|
3899
3434
|
note?: string | undefined;
|
|
3900
3435
|
};
|
|
3901
3436
|
} | undefined;
|
|
3902
3437
|
requestBodyExample?: {
|
|
3903
3438
|
value: string;
|
|
3904
3439
|
attribution: {
|
|
3905
|
-
source: "
|
|
3906
|
-
authority: "authoritative" | "
|
|
3440
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3441
|
+
authority: "authoritative" | "advisory";
|
|
3907
3442
|
note?: string | undefined;
|
|
3908
3443
|
};
|
|
3909
3444
|
} | undefined;
|
|
3910
3445
|
requestBodyFields?: {
|
|
3911
3446
|
name: string;
|
|
3912
3447
|
attribution: {
|
|
3913
|
-
source: "
|
|
3914
|
-
authority: "authoritative" | "
|
|
3448
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3449
|
+
authority: "authoritative" | "advisory";
|
|
3915
3450
|
note?: string | undefined;
|
|
3916
3451
|
};
|
|
3917
3452
|
type?: string | undefined;
|
|
@@ -3923,8 +3458,8 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3923
3458
|
requestQueryParams?: {
|
|
3924
3459
|
name: string;
|
|
3925
3460
|
attribution: {
|
|
3926
|
-
source: "
|
|
3927
|
-
authority: "authoritative" | "
|
|
3461
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3462
|
+
authority: "authoritative" | "advisory";
|
|
3928
3463
|
note?: string | undefined;
|
|
3929
3464
|
};
|
|
3930
3465
|
type?: string | undefined;
|
|
@@ -3936,8 +3471,8 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3936
3471
|
requestPathParams?: {
|
|
3937
3472
|
name: string;
|
|
3938
3473
|
attribution: {
|
|
3939
|
-
source: "
|
|
3940
|
-
authority: "authoritative" | "
|
|
3474
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3475
|
+
authority: "authoritative" | "advisory";
|
|
3941
3476
|
note?: string | undefined;
|
|
3942
3477
|
};
|
|
3943
3478
|
type?: string | undefined;
|
|
@@ -3949,8 +3484,8 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3949
3484
|
notes?: {
|
|
3950
3485
|
value: string;
|
|
3951
3486
|
attribution: {
|
|
3952
|
-
source: "
|
|
3953
|
-
authority: "authoritative" | "
|
|
3487
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3488
|
+
authority: "authoritative" | "advisory";
|
|
3954
3489
|
note?: string | undefined;
|
|
3955
3490
|
};
|
|
3956
3491
|
}[] | undefined;
|
|
@@ -3970,14 +3505,14 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3970
3505
|
field: z.ZodString;
|
|
3971
3506
|
code: z.ZodString;
|
|
3972
3507
|
message: z.ZodString;
|
|
3973
|
-
source: z.ZodEnum<["
|
|
3508
|
+
source: z.ZodEnum<["merchant_challenge", "external_metadata"]>;
|
|
3974
3509
|
blocking: z.ZodBoolean;
|
|
3975
3510
|
severity: z.ZodEnum<["error", "warning"]>;
|
|
3976
3511
|
suggestedFix: z.ZodOptional<z.ZodString>;
|
|
3977
3512
|
}, "strip", z.ZodTypeAny, {
|
|
3978
3513
|
code: string;
|
|
3979
3514
|
message: string;
|
|
3980
|
-
source: "
|
|
3515
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3981
3516
|
location: "path" | "headers" | "body" | "query";
|
|
3982
3517
|
field: string;
|
|
3983
3518
|
blocking: boolean;
|
|
@@ -3986,7 +3521,7 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
3986
3521
|
}, {
|
|
3987
3522
|
code: string;
|
|
3988
3523
|
message: string;
|
|
3989
|
-
source: "
|
|
3524
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3990
3525
|
location: "path" | "headers" | "body" | "query";
|
|
3991
3526
|
field: string;
|
|
3992
3527
|
blocking: boolean;
|
|
@@ -4008,8 +3543,8 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
4008
3543
|
requestBodyFields: {
|
|
4009
3544
|
name: string;
|
|
4010
3545
|
attribution: {
|
|
4011
|
-
source: "
|
|
4012
|
-
authority: "authoritative" | "
|
|
3546
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3547
|
+
authority: "authoritative" | "advisory";
|
|
4013
3548
|
note?: string | undefined;
|
|
4014
3549
|
};
|
|
4015
3550
|
type?: string | undefined;
|
|
@@ -4021,8 +3556,8 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
4021
3556
|
requestQueryParams: {
|
|
4022
3557
|
name: string;
|
|
4023
3558
|
attribution: {
|
|
4024
|
-
source: "
|
|
4025
|
-
authority: "authoritative" | "
|
|
3559
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3560
|
+
authority: "authoritative" | "advisory";
|
|
4026
3561
|
note?: string | undefined;
|
|
4027
3562
|
};
|
|
4028
3563
|
type?: string | undefined;
|
|
@@ -4034,8 +3569,8 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
4034
3569
|
requestPathParams: {
|
|
4035
3570
|
name: string;
|
|
4036
3571
|
attribution: {
|
|
4037
|
-
source: "
|
|
4038
|
-
authority: "authoritative" | "
|
|
3572
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3573
|
+
authority: "authoritative" | "advisory";
|
|
4039
3574
|
note?: string | undefined;
|
|
4040
3575
|
};
|
|
4041
3576
|
type?: string | undefined;
|
|
@@ -4047,32 +3582,32 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
4047
3582
|
notes: {
|
|
4048
3583
|
value: string;
|
|
4049
3584
|
attribution: {
|
|
4050
|
-
source: "
|
|
4051
|
-
authority: "authoritative" | "
|
|
3585
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3586
|
+
authority: "authoritative" | "advisory";
|
|
4052
3587
|
note?: string | undefined;
|
|
4053
3588
|
};
|
|
4054
3589
|
}[];
|
|
4055
3590
|
description?: {
|
|
4056
3591
|
value: string;
|
|
4057
3592
|
attribution: {
|
|
4058
|
-
source: "
|
|
4059
|
-
authority: "authoritative" | "
|
|
3593
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3594
|
+
authority: "authoritative" | "advisory";
|
|
4060
3595
|
note?: string | undefined;
|
|
4061
3596
|
};
|
|
4062
3597
|
} | undefined;
|
|
4063
3598
|
requestBodyType?: {
|
|
4064
3599
|
value: string;
|
|
4065
3600
|
attribution: {
|
|
4066
|
-
source: "
|
|
4067
|
-
authority: "authoritative" | "
|
|
3601
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3602
|
+
authority: "authoritative" | "advisory";
|
|
4068
3603
|
note?: string | undefined;
|
|
4069
3604
|
};
|
|
4070
3605
|
} | undefined;
|
|
4071
3606
|
requestBodyExample?: {
|
|
4072
3607
|
value: string;
|
|
4073
3608
|
attribution: {
|
|
4074
|
-
source: "
|
|
4075
|
-
authority: "authoritative" | "
|
|
3609
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3610
|
+
authority: "authoritative" | "advisory";
|
|
4076
3611
|
note?: string | undefined;
|
|
4077
3612
|
};
|
|
4078
3613
|
} | undefined;
|
|
@@ -4080,7 +3615,7 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
4080
3615
|
validationIssues: {
|
|
4081
3616
|
code: string;
|
|
4082
3617
|
message: string;
|
|
4083
|
-
source: "
|
|
3618
|
+
source: "merchant_challenge" | "external_metadata";
|
|
4084
3619
|
location: "path" | "headers" | "body" | "query";
|
|
4085
3620
|
field: string;
|
|
4086
3621
|
blocking: boolean;
|
|
@@ -4100,8 +3635,8 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
4100
3635
|
paymentRequirement?: {
|
|
4101
3636
|
protocol: "x402" | "l402";
|
|
4102
3637
|
provenance: {
|
|
4103
|
-
source: "
|
|
4104
|
-
authority: "authoritative" | "
|
|
3638
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3639
|
+
authority: "authoritative" | "advisory";
|
|
4105
3640
|
note?: string | undefined;
|
|
4106
3641
|
};
|
|
4107
3642
|
asset?: string | undefined;
|
|
@@ -4112,11 +3647,6 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
4112
3647
|
network?: string | undefined;
|
|
4113
3648
|
payee?: string | undefined;
|
|
4114
3649
|
amountType?: "exact" | "max" | undefined;
|
|
4115
|
-
confirmation?: {
|
|
4116
|
-
source: "marketplace" | "provider" | "merchant_challenge" | "runtime_probe";
|
|
4117
|
-
authority: "authoritative" | "confirmatory" | "advisory";
|
|
4118
|
-
note?: string | undefined;
|
|
4119
|
-
} | undefined;
|
|
4120
3650
|
} | undefined;
|
|
4121
3651
|
}, {
|
|
4122
3652
|
protocol: "x402" | "l402";
|
|
@@ -4132,32 +3662,32 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
4132
3662
|
description?: {
|
|
4133
3663
|
value: string;
|
|
4134
3664
|
attribution: {
|
|
4135
|
-
source: "
|
|
4136
|
-
authority: "authoritative" | "
|
|
3665
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3666
|
+
authority: "authoritative" | "advisory";
|
|
4137
3667
|
note?: string | undefined;
|
|
4138
3668
|
};
|
|
4139
3669
|
} | undefined;
|
|
4140
3670
|
requestBodyType?: {
|
|
4141
3671
|
value: string;
|
|
4142
3672
|
attribution: {
|
|
4143
|
-
source: "
|
|
4144
|
-
authority: "authoritative" | "
|
|
3673
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3674
|
+
authority: "authoritative" | "advisory";
|
|
4145
3675
|
note?: string | undefined;
|
|
4146
3676
|
};
|
|
4147
3677
|
} | undefined;
|
|
4148
3678
|
requestBodyExample?: {
|
|
4149
3679
|
value: string;
|
|
4150
3680
|
attribution: {
|
|
4151
|
-
source: "
|
|
4152
|
-
authority: "authoritative" | "
|
|
3681
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3682
|
+
authority: "authoritative" | "advisory";
|
|
4153
3683
|
note?: string | undefined;
|
|
4154
3684
|
};
|
|
4155
3685
|
} | undefined;
|
|
4156
3686
|
requestBodyFields?: {
|
|
4157
3687
|
name: string;
|
|
4158
3688
|
attribution: {
|
|
4159
|
-
source: "
|
|
4160
|
-
authority: "authoritative" | "
|
|
3689
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3690
|
+
authority: "authoritative" | "advisory";
|
|
4161
3691
|
note?: string | undefined;
|
|
4162
3692
|
};
|
|
4163
3693
|
type?: string | undefined;
|
|
@@ -4169,8 +3699,8 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
4169
3699
|
requestQueryParams?: {
|
|
4170
3700
|
name: string;
|
|
4171
3701
|
attribution: {
|
|
4172
|
-
source: "
|
|
4173
|
-
authority: "authoritative" | "
|
|
3702
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3703
|
+
authority: "authoritative" | "advisory";
|
|
4174
3704
|
note?: string | undefined;
|
|
4175
3705
|
};
|
|
4176
3706
|
type?: string | undefined;
|
|
@@ -4182,8 +3712,8 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
4182
3712
|
requestPathParams?: {
|
|
4183
3713
|
name: string;
|
|
4184
3714
|
attribution: {
|
|
4185
|
-
source: "
|
|
4186
|
-
authority: "authoritative" | "
|
|
3715
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3716
|
+
authority: "authoritative" | "advisory";
|
|
4187
3717
|
note?: string | undefined;
|
|
4188
3718
|
};
|
|
4189
3719
|
type?: string | undefined;
|
|
@@ -4195,8 +3725,8 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
4195
3725
|
notes?: {
|
|
4196
3726
|
value: string;
|
|
4197
3727
|
attribution: {
|
|
4198
|
-
source: "
|
|
4199
|
-
authority: "authoritative" | "
|
|
3728
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3729
|
+
authority: "authoritative" | "advisory";
|
|
4200
3730
|
note?: string | undefined;
|
|
4201
3731
|
};
|
|
4202
3732
|
}[] | undefined;
|
|
@@ -4214,7 +3744,7 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
4214
3744
|
validationIssues?: {
|
|
4215
3745
|
code: string;
|
|
4216
3746
|
message: string;
|
|
4217
|
-
source: "
|
|
3747
|
+
source: "merchant_challenge" | "external_metadata";
|
|
4218
3748
|
location: "path" | "headers" | "body" | "query";
|
|
4219
3749
|
field: string;
|
|
4220
3750
|
blocking: boolean;
|
|
@@ -4224,8 +3754,8 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
4224
3754
|
paymentRequirement?: {
|
|
4225
3755
|
protocol: "x402" | "l402";
|
|
4226
3756
|
provenance: {
|
|
4227
|
-
source: "
|
|
4228
|
-
authority: "authoritative" | "
|
|
3757
|
+
source: "merchant_challenge" | "external_metadata";
|
|
3758
|
+
authority: "authoritative" | "advisory";
|
|
4229
3759
|
note?: string | undefined;
|
|
4230
3760
|
};
|
|
4231
3761
|
asset?: string | undefined;
|
|
@@ -4236,11 +3766,6 @@ export declare const sdkPreparedPaidRequestSchema: z.ZodDiscriminatedUnion<"kind
|
|
|
4236
3766
|
network?: string | undefined;
|
|
4237
3767
|
payee?: string | undefined;
|
|
4238
3768
|
amountType?: "exact" | "max" | undefined;
|
|
4239
|
-
confirmation?: {
|
|
4240
|
-
source: "marketplace" | "provider" | "merchant_challenge" | "runtime_probe";
|
|
4241
|
-
authority: "authoritative" | "confirmatory" | "advisory";
|
|
4242
|
-
note?: string | undefined;
|
|
4243
|
-
} | undefined;
|
|
4244
3769
|
} | undefined;
|
|
4245
3770
|
}>]>;
|
|
4246
3771
|
export type SdkPreparedPaidRequest = z.infer<typeof sdkPreparedPaidRequestSchema>;
|