@wix/metro 1.0.80 → 1.0.82
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/package.json +3 -4
- package/type-bundles/context.bundle.d.ts +458 -199
- package/type-bundles/index.bundle.d.ts +99 -287
- package/type-bundles/meta.bundle.d.ts +173 -839
|
@@ -357,654 +357,124 @@ interface BulkDeleteProductsResponse$1 {
|
|
|
357
357
|
interface BulkDeleteProductsResponseBulkProductResult$1 {
|
|
358
358
|
itemMetadata?: ItemMetadata$1;
|
|
359
359
|
}
|
|
360
|
+
interface ImageNonNullableFields {
|
|
361
|
+
id: string;
|
|
362
|
+
url: string;
|
|
363
|
+
height: number;
|
|
364
|
+
width: number;
|
|
365
|
+
}
|
|
366
|
+
interface StreetAddressNonNullableFields$1 {
|
|
367
|
+
number: string;
|
|
368
|
+
name: string;
|
|
369
|
+
apt: string;
|
|
370
|
+
}
|
|
371
|
+
interface SubdivisionNonNullableFields {
|
|
372
|
+
code: string;
|
|
373
|
+
name: string;
|
|
374
|
+
type: SubdivisionType;
|
|
375
|
+
}
|
|
376
|
+
interface AddressNonNullableFields$1 {
|
|
377
|
+
streetAddress?: StreetAddressNonNullableFields$1;
|
|
378
|
+
subdivisions: SubdivisionNonNullableFields[];
|
|
379
|
+
}
|
|
380
|
+
interface DocumentNonNullableFields {
|
|
381
|
+
id: string;
|
|
382
|
+
url: string;
|
|
383
|
+
}
|
|
384
|
+
interface VideoResolutionNonNullableFields {
|
|
385
|
+
url: string;
|
|
386
|
+
height: number;
|
|
387
|
+
width: number;
|
|
388
|
+
poster?: ImageNonNullableFields;
|
|
389
|
+
format: string;
|
|
390
|
+
}
|
|
391
|
+
interface VideoV2NonNullableFields {
|
|
392
|
+
id: string;
|
|
393
|
+
url: string;
|
|
394
|
+
resolutions: VideoResolutionNonNullableFields[];
|
|
395
|
+
posters: ImageNonNullableFields[];
|
|
396
|
+
}
|
|
397
|
+
interface PageLinkNonNullableFields$1 {
|
|
398
|
+
pageId: string;
|
|
399
|
+
rel: LinkRel$1[];
|
|
400
|
+
}
|
|
401
|
+
interface AudioNonNullableFields {
|
|
402
|
+
id: string;
|
|
403
|
+
url: string;
|
|
404
|
+
}
|
|
405
|
+
interface VariantNonNullableFields$1 {
|
|
406
|
+
name: string;
|
|
407
|
+
value: string;
|
|
408
|
+
image?: ImageNonNullableFields;
|
|
409
|
+
}
|
|
410
|
+
interface MyAddressNonNullableFields$1 {
|
|
411
|
+
streetAddress?: StreetAddressNonNullableFields$1;
|
|
412
|
+
}
|
|
413
|
+
interface ProductNonNullableFields$1 {
|
|
414
|
+
id: string;
|
|
415
|
+
collectionId: string;
|
|
416
|
+
image?: ImageNonNullableFields;
|
|
417
|
+
address?: AddressNonNullableFields$1;
|
|
418
|
+
document?: DocumentNonNullableFields;
|
|
419
|
+
video?: VideoV2NonNullableFields;
|
|
420
|
+
pageLink?: PageLinkNonNullableFields$1;
|
|
421
|
+
audio?: AudioNonNullableFields;
|
|
422
|
+
variants: VariantNonNullableFields$1[];
|
|
423
|
+
mainVariant?: VariantNonNullableFields$1;
|
|
424
|
+
customAddress?: MyAddressNonNullableFields$1;
|
|
425
|
+
guid: string;
|
|
426
|
+
}
|
|
360
427
|
interface CreateProductResponseNonNullableFields$1 {
|
|
361
|
-
product?:
|
|
362
|
-
id: string;
|
|
363
|
-
collectionId: string;
|
|
364
|
-
image?: {
|
|
365
|
-
id: string;
|
|
366
|
-
url: string;
|
|
367
|
-
height: number;
|
|
368
|
-
width: number;
|
|
369
|
-
};
|
|
370
|
-
address?: {
|
|
371
|
-
streetAddress?: {
|
|
372
|
-
number: string;
|
|
373
|
-
name: string;
|
|
374
|
-
apt: string;
|
|
375
|
-
};
|
|
376
|
-
subdivisions: {
|
|
377
|
-
code: string;
|
|
378
|
-
name: string;
|
|
379
|
-
type: SubdivisionType;
|
|
380
|
-
}[];
|
|
381
|
-
};
|
|
382
|
-
document?: {
|
|
383
|
-
id: string;
|
|
384
|
-
url: string;
|
|
385
|
-
};
|
|
386
|
-
video?: {
|
|
387
|
-
id: string;
|
|
388
|
-
url: string;
|
|
389
|
-
resolutions: {
|
|
390
|
-
url: string;
|
|
391
|
-
height: number;
|
|
392
|
-
width: number;
|
|
393
|
-
poster?: {
|
|
394
|
-
id: string;
|
|
395
|
-
url: string;
|
|
396
|
-
height: number;
|
|
397
|
-
width: number;
|
|
398
|
-
};
|
|
399
|
-
format: string;
|
|
400
|
-
}[];
|
|
401
|
-
posters: {
|
|
402
|
-
id: string;
|
|
403
|
-
url: string;
|
|
404
|
-
height: number;
|
|
405
|
-
width: number;
|
|
406
|
-
}[];
|
|
407
|
-
};
|
|
408
|
-
pageLink?: {
|
|
409
|
-
pageId: string;
|
|
410
|
-
rel: LinkRel$1[];
|
|
411
|
-
};
|
|
412
|
-
audio?: {
|
|
413
|
-
id: string;
|
|
414
|
-
url: string;
|
|
415
|
-
};
|
|
416
|
-
variants: {
|
|
417
|
-
name: string;
|
|
418
|
-
value: string;
|
|
419
|
-
image?: {
|
|
420
|
-
id: string;
|
|
421
|
-
url: string;
|
|
422
|
-
height: number;
|
|
423
|
-
width: number;
|
|
424
|
-
};
|
|
425
|
-
}[];
|
|
426
|
-
mainVariant?: {
|
|
427
|
-
name: string;
|
|
428
|
-
value: string;
|
|
429
|
-
image?: {
|
|
430
|
-
id: string;
|
|
431
|
-
url: string;
|
|
432
|
-
height: number;
|
|
433
|
-
width: number;
|
|
434
|
-
};
|
|
435
|
-
};
|
|
436
|
-
customAddress?: {
|
|
437
|
-
streetAddress?: {
|
|
438
|
-
number: string;
|
|
439
|
-
name: string;
|
|
440
|
-
apt: string;
|
|
441
|
-
};
|
|
442
|
-
};
|
|
443
|
-
guid: string;
|
|
444
|
-
};
|
|
428
|
+
product?: ProductNonNullableFields$1;
|
|
445
429
|
}
|
|
446
430
|
interface UpdateProductResponseNonNullableFields$1 {
|
|
447
|
-
product?:
|
|
448
|
-
id: string;
|
|
449
|
-
collectionId: string;
|
|
450
|
-
image?: {
|
|
451
|
-
id: string;
|
|
452
|
-
url: string;
|
|
453
|
-
height: number;
|
|
454
|
-
width: number;
|
|
455
|
-
};
|
|
456
|
-
address?: {
|
|
457
|
-
streetAddress?: {
|
|
458
|
-
number: string;
|
|
459
|
-
name: string;
|
|
460
|
-
apt: string;
|
|
461
|
-
};
|
|
462
|
-
subdivisions: {
|
|
463
|
-
code: string;
|
|
464
|
-
name: string;
|
|
465
|
-
type: SubdivisionType;
|
|
466
|
-
}[];
|
|
467
|
-
};
|
|
468
|
-
document?: {
|
|
469
|
-
id: string;
|
|
470
|
-
url: string;
|
|
471
|
-
};
|
|
472
|
-
video?: {
|
|
473
|
-
id: string;
|
|
474
|
-
url: string;
|
|
475
|
-
resolutions: {
|
|
476
|
-
url: string;
|
|
477
|
-
height: number;
|
|
478
|
-
width: number;
|
|
479
|
-
poster?: {
|
|
480
|
-
id: string;
|
|
481
|
-
url: string;
|
|
482
|
-
height: number;
|
|
483
|
-
width: number;
|
|
484
|
-
};
|
|
485
|
-
format: string;
|
|
486
|
-
}[];
|
|
487
|
-
posters: {
|
|
488
|
-
id: string;
|
|
489
|
-
url: string;
|
|
490
|
-
height: number;
|
|
491
|
-
width: number;
|
|
492
|
-
}[];
|
|
493
|
-
};
|
|
494
|
-
pageLink?: {
|
|
495
|
-
pageId: string;
|
|
496
|
-
rel: LinkRel$1[];
|
|
497
|
-
};
|
|
498
|
-
audio?: {
|
|
499
|
-
id: string;
|
|
500
|
-
url: string;
|
|
501
|
-
};
|
|
502
|
-
variants: {
|
|
503
|
-
name: string;
|
|
504
|
-
value: string;
|
|
505
|
-
image?: {
|
|
506
|
-
id: string;
|
|
507
|
-
url: string;
|
|
508
|
-
height: number;
|
|
509
|
-
width: number;
|
|
510
|
-
};
|
|
511
|
-
}[];
|
|
512
|
-
mainVariant?: {
|
|
513
|
-
name: string;
|
|
514
|
-
value: string;
|
|
515
|
-
image?: {
|
|
516
|
-
id: string;
|
|
517
|
-
url: string;
|
|
518
|
-
height: number;
|
|
519
|
-
width: number;
|
|
520
|
-
};
|
|
521
|
-
};
|
|
522
|
-
customAddress?: {
|
|
523
|
-
streetAddress?: {
|
|
524
|
-
number: string;
|
|
525
|
-
name: string;
|
|
526
|
-
apt: string;
|
|
527
|
-
};
|
|
528
|
-
};
|
|
529
|
-
guid: string;
|
|
530
|
-
};
|
|
431
|
+
product?: ProductNonNullableFields$1;
|
|
531
432
|
}
|
|
532
433
|
interface GetProductResponseNonNullableFields$1 {
|
|
533
|
-
product?:
|
|
534
|
-
id: string;
|
|
535
|
-
collectionId: string;
|
|
536
|
-
image?: {
|
|
537
|
-
id: string;
|
|
538
|
-
url: string;
|
|
539
|
-
height: number;
|
|
540
|
-
width: number;
|
|
541
|
-
};
|
|
542
|
-
address?: {
|
|
543
|
-
streetAddress?: {
|
|
544
|
-
number: string;
|
|
545
|
-
name: string;
|
|
546
|
-
apt: string;
|
|
547
|
-
};
|
|
548
|
-
subdivisions: {
|
|
549
|
-
code: string;
|
|
550
|
-
name: string;
|
|
551
|
-
type: SubdivisionType;
|
|
552
|
-
}[];
|
|
553
|
-
};
|
|
554
|
-
document?: {
|
|
555
|
-
id: string;
|
|
556
|
-
url: string;
|
|
557
|
-
};
|
|
558
|
-
video?: {
|
|
559
|
-
id: string;
|
|
560
|
-
url: string;
|
|
561
|
-
resolutions: {
|
|
562
|
-
url: string;
|
|
563
|
-
height: number;
|
|
564
|
-
width: number;
|
|
565
|
-
poster?: {
|
|
566
|
-
id: string;
|
|
567
|
-
url: string;
|
|
568
|
-
height: number;
|
|
569
|
-
width: number;
|
|
570
|
-
};
|
|
571
|
-
format: string;
|
|
572
|
-
}[];
|
|
573
|
-
posters: {
|
|
574
|
-
id: string;
|
|
575
|
-
url: string;
|
|
576
|
-
height: number;
|
|
577
|
-
width: number;
|
|
578
|
-
}[];
|
|
579
|
-
};
|
|
580
|
-
pageLink?: {
|
|
581
|
-
pageId: string;
|
|
582
|
-
rel: LinkRel$1[];
|
|
583
|
-
};
|
|
584
|
-
audio?: {
|
|
585
|
-
id: string;
|
|
586
|
-
url: string;
|
|
587
|
-
};
|
|
588
|
-
variants: {
|
|
589
|
-
name: string;
|
|
590
|
-
value: string;
|
|
591
|
-
image?: {
|
|
592
|
-
id: string;
|
|
593
|
-
url: string;
|
|
594
|
-
height: number;
|
|
595
|
-
width: number;
|
|
596
|
-
};
|
|
597
|
-
}[];
|
|
598
|
-
mainVariant?: {
|
|
599
|
-
name: string;
|
|
600
|
-
value: string;
|
|
601
|
-
image?: {
|
|
602
|
-
id: string;
|
|
603
|
-
url: string;
|
|
604
|
-
height: number;
|
|
605
|
-
width: number;
|
|
606
|
-
};
|
|
607
|
-
};
|
|
608
|
-
customAddress?: {
|
|
609
|
-
streetAddress?: {
|
|
610
|
-
number: string;
|
|
611
|
-
name: string;
|
|
612
|
-
apt: string;
|
|
613
|
-
};
|
|
614
|
-
};
|
|
615
|
-
guid: string;
|
|
616
|
-
};
|
|
434
|
+
product?: ProductNonNullableFields$1;
|
|
617
435
|
}
|
|
618
436
|
interface GetProductsStartWithResponseNonNullableFields$1 {
|
|
619
|
-
products:
|
|
620
|
-
id: string;
|
|
621
|
-
collectionId: string;
|
|
622
|
-
image?: {
|
|
623
|
-
id: string;
|
|
624
|
-
url: string;
|
|
625
|
-
height: number;
|
|
626
|
-
width: number;
|
|
627
|
-
};
|
|
628
|
-
address?: {
|
|
629
|
-
streetAddress?: {
|
|
630
|
-
number: string;
|
|
631
|
-
name: string;
|
|
632
|
-
apt: string;
|
|
633
|
-
};
|
|
634
|
-
subdivisions: {
|
|
635
|
-
code: string;
|
|
636
|
-
name: string;
|
|
637
|
-
type: SubdivisionType;
|
|
638
|
-
}[];
|
|
639
|
-
};
|
|
640
|
-
document?: {
|
|
641
|
-
id: string;
|
|
642
|
-
url: string;
|
|
643
|
-
};
|
|
644
|
-
video?: {
|
|
645
|
-
id: string;
|
|
646
|
-
url: string;
|
|
647
|
-
resolutions: {
|
|
648
|
-
url: string;
|
|
649
|
-
height: number;
|
|
650
|
-
width: number;
|
|
651
|
-
poster?: {
|
|
652
|
-
id: string;
|
|
653
|
-
url: string;
|
|
654
|
-
height: number;
|
|
655
|
-
width: number;
|
|
656
|
-
};
|
|
657
|
-
format: string;
|
|
658
|
-
}[];
|
|
659
|
-
posters: {
|
|
660
|
-
id: string;
|
|
661
|
-
url: string;
|
|
662
|
-
height: number;
|
|
663
|
-
width: number;
|
|
664
|
-
}[];
|
|
665
|
-
};
|
|
666
|
-
pageLink?: {
|
|
667
|
-
pageId: string;
|
|
668
|
-
rel: LinkRel$1[];
|
|
669
|
-
};
|
|
670
|
-
audio?: {
|
|
671
|
-
id: string;
|
|
672
|
-
url: string;
|
|
673
|
-
};
|
|
674
|
-
variants: {
|
|
675
|
-
name: string;
|
|
676
|
-
value: string;
|
|
677
|
-
image?: {
|
|
678
|
-
id: string;
|
|
679
|
-
url: string;
|
|
680
|
-
height: number;
|
|
681
|
-
width: number;
|
|
682
|
-
};
|
|
683
|
-
}[];
|
|
684
|
-
mainVariant?: {
|
|
685
|
-
name: string;
|
|
686
|
-
value: string;
|
|
687
|
-
image?: {
|
|
688
|
-
id: string;
|
|
689
|
-
url: string;
|
|
690
|
-
height: number;
|
|
691
|
-
width: number;
|
|
692
|
-
};
|
|
693
|
-
};
|
|
694
|
-
customAddress?: {
|
|
695
|
-
streetAddress?: {
|
|
696
|
-
number: string;
|
|
697
|
-
name: string;
|
|
698
|
-
apt: string;
|
|
699
|
-
};
|
|
700
|
-
};
|
|
701
|
-
guid: string;
|
|
702
|
-
}[];
|
|
437
|
+
products: ProductNonNullableFields$1[];
|
|
703
438
|
}
|
|
704
439
|
interface QueryProductsResponseNonNullableFields$1 {
|
|
705
|
-
products:
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
}[];
|
|
725
|
-
};
|
|
726
|
-
document?: {
|
|
727
|
-
id: string;
|
|
728
|
-
url: string;
|
|
729
|
-
};
|
|
730
|
-
video?: {
|
|
731
|
-
id: string;
|
|
732
|
-
url: string;
|
|
733
|
-
resolutions: {
|
|
734
|
-
url: string;
|
|
735
|
-
height: number;
|
|
736
|
-
width: number;
|
|
737
|
-
poster?: {
|
|
738
|
-
id: string;
|
|
739
|
-
url: string;
|
|
740
|
-
height: number;
|
|
741
|
-
width: number;
|
|
742
|
-
};
|
|
743
|
-
format: string;
|
|
744
|
-
}[];
|
|
745
|
-
posters: {
|
|
746
|
-
id: string;
|
|
747
|
-
url: string;
|
|
748
|
-
height: number;
|
|
749
|
-
width: number;
|
|
750
|
-
}[];
|
|
751
|
-
};
|
|
752
|
-
pageLink?: {
|
|
753
|
-
pageId: string;
|
|
754
|
-
rel: LinkRel$1[];
|
|
755
|
-
};
|
|
756
|
-
audio?: {
|
|
757
|
-
id: string;
|
|
758
|
-
url: string;
|
|
759
|
-
};
|
|
760
|
-
variants: {
|
|
761
|
-
name: string;
|
|
762
|
-
value: string;
|
|
763
|
-
image?: {
|
|
764
|
-
id: string;
|
|
765
|
-
url: string;
|
|
766
|
-
height: number;
|
|
767
|
-
width: number;
|
|
768
|
-
};
|
|
769
|
-
}[];
|
|
770
|
-
mainVariant?: {
|
|
771
|
-
name: string;
|
|
772
|
-
value: string;
|
|
773
|
-
image?: {
|
|
774
|
-
id: string;
|
|
775
|
-
url: string;
|
|
776
|
-
height: number;
|
|
777
|
-
width: number;
|
|
778
|
-
};
|
|
779
|
-
};
|
|
780
|
-
customAddress?: {
|
|
781
|
-
streetAddress?: {
|
|
782
|
-
number: string;
|
|
783
|
-
name: string;
|
|
784
|
-
apt: string;
|
|
785
|
-
};
|
|
786
|
-
};
|
|
787
|
-
guid: string;
|
|
788
|
-
}[];
|
|
440
|
+
products: ProductNonNullableFields$1[];
|
|
441
|
+
}
|
|
442
|
+
interface ApplicationErrorNonNullableFields$1 {
|
|
443
|
+
code: string;
|
|
444
|
+
description: string;
|
|
445
|
+
}
|
|
446
|
+
interface ItemMetadataNonNullableFields$1 {
|
|
447
|
+
originalIndex: number;
|
|
448
|
+
success: boolean;
|
|
449
|
+
error?: ApplicationErrorNonNullableFields$1;
|
|
450
|
+
}
|
|
451
|
+
interface BulkProductResultNonNullableFields$1 {
|
|
452
|
+
itemMetadata?: ItemMetadataNonNullableFields$1;
|
|
453
|
+
item?: ProductNonNullableFields$1;
|
|
454
|
+
}
|
|
455
|
+
interface BulkActionMetadataNonNullableFields$1 {
|
|
456
|
+
totalSuccesses: number;
|
|
457
|
+
totalFailures: number;
|
|
458
|
+
undetailedFailures: number;
|
|
789
459
|
}
|
|
790
460
|
interface BulkCreateProductsResponseNonNullableFields$1 {
|
|
791
|
-
results:
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
description: string;
|
|
798
|
-
};
|
|
799
|
-
};
|
|
800
|
-
item?: {
|
|
801
|
-
id: string;
|
|
802
|
-
collectionId: string;
|
|
803
|
-
image?: {
|
|
804
|
-
id: string;
|
|
805
|
-
url: string;
|
|
806
|
-
height: number;
|
|
807
|
-
width: number;
|
|
808
|
-
};
|
|
809
|
-
address?: {
|
|
810
|
-
streetAddress?: {
|
|
811
|
-
number: string;
|
|
812
|
-
name: string;
|
|
813
|
-
apt: string;
|
|
814
|
-
};
|
|
815
|
-
subdivisions: {
|
|
816
|
-
code: string;
|
|
817
|
-
name: string;
|
|
818
|
-
type: SubdivisionType;
|
|
819
|
-
}[];
|
|
820
|
-
};
|
|
821
|
-
document?: {
|
|
822
|
-
id: string;
|
|
823
|
-
url: string;
|
|
824
|
-
};
|
|
825
|
-
video?: {
|
|
826
|
-
id: string;
|
|
827
|
-
url: string;
|
|
828
|
-
resolutions: {
|
|
829
|
-
url: string;
|
|
830
|
-
height: number;
|
|
831
|
-
width: number;
|
|
832
|
-
poster?: {
|
|
833
|
-
id: string;
|
|
834
|
-
url: string;
|
|
835
|
-
height: number;
|
|
836
|
-
width: number;
|
|
837
|
-
};
|
|
838
|
-
format: string;
|
|
839
|
-
}[];
|
|
840
|
-
posters: {
|
|
841
|
-
id: string;
|
|
842
|
-
url: string;
|
|
843
|
-
height: number;
|
|
844
|
-
width: number;
|
|
845
|
-
}[];
|
|
846
|
-
};
|
|
847
|
-
pageLink?: {
|
|
848
|
-
pageId: string;
|
|
849
|
-
rel: LinkRel$1[];
|
|
850
|
-
};
|
|
851
|
-
audio?: {
|
|
852
|
-
id: string;
|
|
853
|
-
url: string;
|
|
854
|
-
};
|
|
855
|
-
variants: {
|
|
856
|
-
name: string;
|
|
857
|
-
value: string;
|
|
858
|
-
image?: {
|
|
859
|
-
id: string;
|
|
860
|
-
url: string;
|
|
861
|
-
height: number;
|
|
862
|
-
width: number;
|
|
863
|
-
};
|
|
864
|
-
}[];
|
|
865
|
-
mainVariant?: {
|
|
866
|
-
name: string;
|
|
867
|
-
value: string;
|
|
868
|
-
image?: {
|
|
869
|
-
id: string;
|
|
870
|
-
url: string;
|
|
871
|
-
height: number;
|
|
872
|
-
width: number;
|
|
873
|
-
};
|
|
874
|
-
};
|
|
875
|
-
customAddress?: {
|
|
876
|
-
streetAddress?: {
|
|
877
|
-
number: string;
|
|
878
|
-
name: string;
|
|
879
|
-
apt: string;
|
|
880
|
-
};
|
|
881
|
-
};
|
|
882
|
-
guid: string;
|
|
883
|
-
};
|
|
884
|
-
}[];
|
|
885
|
-
bulkActionMetadata?: {
|
|
886
|
-
totalSuccesses: number;
|
|
887
|
-
totalFailures: number;
|
|
888
|
-
undetailedFailures: number;
|
|
889
|
-
};
|
|
461
|
+
results: BulkProductResultNonNullableFields$1[];
|
|
462
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields$1;
|
|
463
|
+
}
|
|
464
|
+
interface BulkUpdateProductsResponseBulkProductResultNonNullableFields$1 {
|
|
465
|
+
itemMetadata?: ItemMetadataNonNullableFields$1;
|
|
466
|
+
item?: ProductNonNullableFields$1;
|
|
890
467
|
}
|
|
891
468
|
interface BulkUpdateProductsResponseNonNullableFields$1 {
|
|
892
|
-
results:
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
code: string;
|
|
898
|
-
description: string;
|
|
899
|
-
};
|
|
900
|
-
};
|
|
901
|
-
item?: {
|
|
902
|
-
id: string;
|
|
903
|
-
collectionId: string;
|
|
904
|
-
image?: {
|
|
905
|
-
id: string;
|
|
906
|
-
url: string;
|
|
907
|
-
height: number;
|
|
908
|
-
width: number;
|
|
909
|
-
};
|
|
910
|
-
address?: {
|
|
911
|
-
streetAddress?: {
|
|
912
|
-
number: string;
|
|
913
|
-
name: string;
|
|
914
|
-
apt: string;
|
|
915
|
-
};
|
|
916
|
-
subdivisions: {
|
|
917
|
-
code: string;
|
|
918
|
-
name: string;
|
|
919
|
-
type: SubdivisionType;
|
|
920
|
-
}[];
|
|
921
|
-
};
|
|
922
|
-
document?: {
|
|
923
|
-
id: string;
|
|
924
|
-
url: string;
|
|
925
|
-
};
|
|
926
|
-
video?: {
|
|
927
|
-
id: string;
|
|
928
|
-
url: string;
|
|
929
|
-
resolutions: {
|
|
930
|
-
url: string;
|
|
931
|
-
height: number;
|
|
932
|
-
width: number;
|
|
933
|
-
poster?: {
|
|
934
|
-
id: string;
|
|
935
|
-
url: string;
|
|
936
|
-
height: number;
|
|
937
|
-
width: number;
|
|
938
|
-
};
|
|
939
|
-
format: string;
|
|
940
|
-
}[];
|
|
941
|
-
posters: {
|
|
942
|
-
id: string;
|
|
943
|
-
url: string;
|
|
944
|
-
height: number;
|
|
945
|
-
width: number;
|
|
946
|
-
}[];
|
|
947
|
-
};
|
|
948
|
-
pageLink?: {
|
|
949
|
-
pageId: string;
|
|
950
|
-
rel: LinkRel$1[];
|
|
951
|
-
};
|
|
952
|
-
audio?: {
|
|
953
|
-
id: string;
|
|
954
|
-
url: string;
|
|
955
|
-
};
|
|
956
|
-
variants: {
|
|
957
|
-
name: string;
|
|
958
|
-
value: string;
|
|
959
|
-
image?: {
|
|
960
|
-
id: string;
|
|
961
|
-
url: string;
|
|
962
|
-
height: number;
|
|
963
|
-
width: number;
|
|
964
|
-
};
|
|
965
|
-
}[];
|
|
966
|
-
mainVariant?: {
|
|
967
|
-
name: string;
|
|
968
|
-
value: string;
|
|
969
|
-
image?: {
|
|
970
|
-
id: string;
|
|
971
|
-
url: string;
|
|
972
|
-
height: number;
|
|
973
|
-
width: number;
|
|
974
|
-
};
|
|
975
|
-
};
|
|
976
|
-
customAddress?: {
|
|
977
|
-
streetAddress?: {
|
|
978
|
-
number: string;
|
|
979
|
-
name: string;
|
|
980
|
-
apt: string;
|
|
981
|
-
};
|
|
982
|
-
};
|
|
983
|
-
guid: string;
|
|
984
|
-
};
|
|
985
|
-
}[];
|
|
986
|
-
bulkActionMetadata?: {
|
|
987
|
-
totalSuccesses: number;
|
|
988
|
-
totalFailures: number;
|
|
989
|
-
undetailedFailures: number;
|
|
990
|
-
};
|
|
469
|
+
results: BulkUpdateProductsResponseBulkProductResultNonNullableFields$1[];
|
|
470
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields$1;
|
|
471
|
+
}
|
|
472
|
+
interface BulkDeleteProductsResponseBulkProductResultNonNullableFields$1 {
|
|
473
|
+
itemMetadata?: ItemMetadataNonNullableFields$1;
|
|
991
474
|
}
|
|
992
475
|
interface BulkDeleteProductsResponseNonNullableFields$1 {
|
|
993
|
-
results:
|
|
994
|
-
|
|
995
|
-
originalIndex: number;
|
|
996
|
-
success: boolean;
|
|
997
|
-
error?: {
|
|
998
|
-
code: string;
|
|
999
|
-
description: string;
|
|
1000
|
-
};
|
|
1001
|
-
};
|
|
1002
|
-
}[];
|
|
1003
|
-
bulkActionMetadata?: {
|
|
1004
|
-
totalSuccesses: number;
|
|
1005
|
-
totalFailures: number;
|
|
1006
|
-
undetailedFailures: number;
|
|
1007
|
-
};
|
|
476
|
+
results: BulkDeleteProductsResponseBulkProductResultNonNullableFields$1[];
|
|
477
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields$1;
|
|
1008
478
|
}
|
|
1009
479
|
|
|
1010
480
|
/** Physical address */
|
|
@@ -1263,227 +733,91 @@ interface BulkDeleteProductsResponse {
|
|
|
1263
733
|
interface BulkDeleteProductsResponseBulkProductResult {
|
|
1264
734
|
itemMetadata?: ItemMetadata;
|
|
1265
735
|
}
|
|
736
|
+
interface StreetAddressNonNullableFields {
|
|
737
|
+
number: string;
|
|
738
|
+
name: string;
|
|
739
|
+
apt: string;
|
|
740
|
+
}
|
|
741
|
+
interface AddressNonNullableFields {
|
|
742
|
+
streetAddress?: StreetAddressNonNullableFields;
|
|
743
|
+
}
|
|
744
|
+
interface PageLinkNonNullableFields {
|
|
745
|
+
pageId: string;
|
|
746
|
+
rel: LinkRel[];
|
|
747
|
+
}
|
|
748
|
+
interface VariantNonNullableFields {
|
|
749
|
+
name: string;
|
|
750
|
+
value: string;
|
|
751
|
+
image: string;
|
|
752
|
+
}
|
|
753
|
+
interface MyAddressNonNullableFields {
|
|
754
|
+
streetAddress?: StreetAddressNonNullableFields;
|
|
755
|
+
}
|
|
756
|
+
interface ProductNonNullableFields {
|
|
757
|
+
_id: string;
|
|
758
|
+
collectionId: string;
|
|
759
|
+
image: string;
|
|
760
|
+
address?: AddressNonNullableFields;
|
|
761
|
+
document: string;
|
|
762
|
+
video: string;
|
|
763
|
+
pageLink?: PageLinkNonNullableFields;
|
|
764
|
+
audio: string;
|
|
765
|
+
variants: VariantNonNullableFields[];
|
|
766
|
+
mainVariant?: VariantNonNullableFields;
|
|
767
|
+
customAddress?: MyAddressNonNullableFields;
|
|
768
|
+
guid: string;
|
|
769
|
+
}
|
|
1266
770
|
interface CreateProductResponseNonNullableFields {
|
|
1267
|
-
product?:
|
|
1268
|
-
_id: string;
|
|
1269
|
-
collectionId: string;
|
|
1270
|
-
image: string;
|
|
1271
|
-
document: string;
|
|
1272
|
-
video: string;
|
|
1273
|
-
pageLink?: {
|
|
1274
|
-
pageId: string;
|
|
1275
|
-
rel: LinkRel[];
|
|
1276
|
-
};
|
|
1277
|
-
audio: string;
|
|
1278
|
-
variants: {
|
|
1279
|
-
name: string;
|
|
1280
|
-
value: string;
|
|
1281
|
-
image: string;
|
|
1282
|
-
}[];
|
|
1283
|
-
mainVariant?: {
|
|
1284
|
-
name: string;
|
|
1285
|
-
value: string;
|
|
1286
|
-
image: string;
|
|
1287
|
-
};
|
|
1288
|
-
guid: string;
|
|
1289
|
-
};
|
|
771
|
+
product?: ProductNonNullableFields;
|
|
1290
772
|
}
|
|
1291
773
|
interface UpdateProductResponseNonNullableFields {
|
|
1292
|
-
product?:
|
|
1293
|
-
_id: string;
|
|
1294
|
-
collectionId: string;
|
|
1295
|
-
image: string;
|
|
1296
|
-
document: string;
|
|
1297
|
-
video: string;
|
|
1298
|
-
pageLink?: {
|
|
1299
|
-
pageId: string;
|
|
1300
|
-
rel: LinkRel[];
|
|
1301
|
-
};
|
|
1302
|
-
audio: string;
|
|
1303
|
-
variants: {
|
|
1304
|
-
name: string;
|
|
1305
|
-
value: string;
|
|
1306
|
-
image: string;
|
|
1307
|
-
}[];
|
|
1308
|
-
mainVariant?: {
|
|
1309
|
-
name: string;
|
|
1310
|
-
value: string;
|
|
1311
|
-
image: string;
|
|
1312
|
-
};
|
|
1313
|
-
guid: string;
|
|
1314
|
-
};
|
|
774
|
+
product?: ProductNonNullableFields;
|
|
1315
775
|
}
|
|
1316
776
|
interface GetProductResponseNonNullableFields {
|
|
1317
|
-
product?:
|
|
1318
|
-
_id: string;
|
|
1319
|
-
collectionId: string;
|
|
1320
|
-
image: string;
|
|
1321
|
-
document: string;
|
|
1322
|
-
video: string;
|
|
1323
|
-
pageLink?: {
|
|
1324
|
-
pageId: string;
|
|
1325
|
-
rel: LinkRel[];
|
|
1326
|
-
};
|
|
1327
|
-
audio: string;
|
|
1328
|
-
variants: {
|
|
1329
|
-
name: string;
|
|
1330
|
-
value: string;
|
|
1331
|
-
image: string;
|
|
1332
|
-
}[];
|
|
1333
|
-
mainVariant?: {
|
|
1334
|
-
name: string;
|
|
1335
|
-
value: string;
|
|
1336
|
-
image: string;
|
|
1337
|
-
};
|
|
1338
|
-
guid: string;
|
|
1339
|
-
};
|
|
777
|
+
product?: ProductNonNullableFields;
|
|
1340
778
|
}
|
|
1341
779
|
interface GetProductsStartWithResponseNonNullableFields {
|
|
1342
|
-
products:
|
|
1343
|
-
_id: string;
|
|
1344
|
-
collectionId: string;
|
|
1345
|
-
image: string;
|
|
1346
|
-
document: string;
|
|
1347
|
-
video: string;
|
|
1348
|
-
pageLink?: {
|
|
1349
|
-
pageId: string;
|
|
1350
|
-
rel: LinkRel[];
|
|
1351
|
-
};
|
|
1352
|
-
audio: string;
|
|
1353
|
-
variants: {
|
|
1354
|
-
name: string;
|
|
1355
|
-
value: string;
|
|
1356
|
-
image: string;
|
|
1357
|
-
}[];
|
|
1358
|
-
mainVariant?: {
|
|
1359
|
-
name: string;
|
|
1360
|
-
value: string;
|
|
1361
|
-
image: string;
|
|
1362
|
-
};
|
|
1363
|
-
guid: string;
|
|
1364
|
-
}[];
|
|
780
|
+
products: ProductNonNullableFields[];
|
|
1365
781
|
}
|
|
1366
782
|
interface QueryProductsResponseNonNullableFields {
|
|
1367
|
-
products:
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
image: string;
|
|
1387
|
-
};
|
|
1388
|
-
guid: string;
|
|
1389
|
-
}[];
|
|
783
|
+
products: ProductNonNullableFields[];
|
|
784
|
+
}
|
|
785
|
+
interface ApplicationErrorNonNullableFields {
|
|
786
|
+
code: string;
|
|
787
|
+
description: string;
|
|
788
|
+
}
|
|
789
|
+
interface ItemMetadataNonNullableFields {
|
|
790
|
+
originalIndex: number;
|
|
791
|
+
success: boolean;
|
|
792
|
+
error?: ApplicationErrorNonNullableFields;
|
|
793
|
+
}
|
|
794
|
+
interface BulkProductResultNonNullableFields {
|
|
795
|
+
itemMetadata?: ItemMetadataNonNullableFields;
|
|
796
|
+
item?: ProductNonNullableFields;
|
|
797
|
+
}
|
|
798
|
+
interface BulkActionMetadataNonNullableFields {
|
|
799
|
+
totalSuccesses: number;
|
|
800
|
+
totalFailures: number;
|
|
801
|
+
undetailedFailures: number;
|
|
1390
802
|
}
|
|
1391
803
|
interface BulkCreateProductsResponseNonNullableFields {
|
|
1392
|
-
results:
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
description: string;
|
|
1399
|
-
};
|
|
1400
|
-
};
|
|
1401
|
-
item?: {
|
|
1402
|
-
_id: string;
|
|
1403
|
-
collectionId: string;
|
|
1404
|
-
image: string;
|
|
1405
|
-
document: string;
|
|
1406
|
-
video: string;
|
|
1407
|
-
pageLink?: {
|
|
1408
|
-
pageId: string;
|
|
1409
|
-
rel: LinkRel[];
|
|
1410
|
-
};
|
|
1411
|
-
audio: string;
|
|
1412
|
-
variants: {
|
|
1413
|
-
name: string;
|
|
1414
|
-
value: string;
|
|
1415
|
-
image: string;
|
|
1416
|
-
}[];
|
|
1417
|
-
mainVariant?: {
|
|
1418
|
-
name: string;
|
|
1419
|
-
value: string;
|
|
1420
|
-
image: string;
|
|
1421
|
-
};
|
|
1422
|
-
guid: string;
|
|
1423
|
-
};
|
|
1424
|
-
}[];
|
|
1425
|
-
bulkActionMetadata?: {
|
|
1426
|
-
totalSuccesses: number;
|
|
1427
|
-
totalFailures: number;
|
|
1428
|
-
undetailedFailures: number;
|
|
1429
|
-
};
|
|
804
|
+
results: BulkProductResultNonNullableFields[];
|
|
805
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields;
|
|
806
|
+
}
|
|
807
|
+
interface BulkUpdateProductsResponseBulkProductResultNonNullableFields {
|
|
808
|
+
itemMetadata?: ItemMetadataNonNullableFields;
|
|
809
|
+
item?: ProductNonNullableFields;
|
|
1430
810
|
}
|
|
1431
811
|
interface BulkUpdateProductsResponseNonNullableFields {
|
|
1432
|
-
results:
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
code: string;
|
|
1438
|
-
description: string;
|
|
1439
|
-
};
|
|
1440
|
-
};
|
|
1441
|
-
item?: {
|
|
1442
|
-
_id: string;
|
|
1443
|
-
collectionId: string;
|
|
1444
|
-
image: string;
|
|
1445
|
-
document: string;
|
|
1446
|
-
video: string;
|
|
1447
|
-
pageLink?: {
|
|
1448
|
-
pageId: string;
|
|
1449
|
-
rel: LinkRel[];
|
|
1450
|
-
};
|
|
1451
|
-
audio: string;
|
|
1452
|
-
variants: {
|
|
1453
|
-
name: string;
|
|
1454
|
-
value: string;
|
|
1455
|
-
image: string;
|
|
1456
|
-
}[];
|
|
1457
|
-
mainVariant?: {
|
|
1458
|
-
name: string;
|
|
1459
|
-
value: string;
|
|
1460
|
-
image: string;
|
|
1461
|
-
};
|
|
1462
|
-
guid: string;
|
|
1463
|
-
};
|
|
1464
|
-
}[];
|
|
1465
|
-
bulkActionMetadata?: {
|
|
1466
|
-
totalSuccesses: number;
|
|
1467
|
-
totalFailures: number;
|
|
1468
|
-
undetailedFailures: number;
|
|
1469
|
-
};
|
|
812
|
+
results: BulkUpdateProductsResponseBulkProductResultNonNullableFields[];
|
|
813
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields;
|
|
814
|
+
}
|
|
815
|
+
interface BulkDeleteProductsResponseBulkProductResultNonNullableFields {
|
|
816
|
+
itemMetadata?: ItemMetadataNonNullableFields;
|
|
1470
817
|
}
|
|
1471
818
|
interface BulkDeleteProductsResponseNonNullableFields {
|
|
1472
|
-
results:
|
|
1473
|
-
|
|
1474
|
-
originalIndex: number;
|
|
1475
|
-
success: boolean;
|
|
1476
|
-
error?: {
|
|
1477
|
-
code: string;
|
|
1478
|
-
description: string;
|
|
1479
|
-
};
|
|
1480
|
-
};
|
|
1481
|
-
}[];
|
|
1482
|
-
bulkActionMetadata?: {
|
|
1483
|
-
totalSuccesses: number;
|
|
1484
|
-
totalFailures: number;
|
|
1485
|
-
undetailedFailures: number;
|
|
1486
|
-
};
|
|
819
|
+
results: BulkDeleteProductsResponseBulkProductResultNonNullableFields[];
|
|
820
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields;
|
|
1487
821
|
}
|
|
1488
822
|
interface Product {
|
|
1489
823
|
_id: string;
|