@wix/motion 1.0.40 → 1.0.42
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 +5 -6
- package/type-bundles/context.bundle.d.ts +769 -284
- package/type-bundles/index.bundle.d.ts +144 -371
- package/type-bundles/meta.bundle.d.ts +201 -861
|
@@ -17,11 +17,12 @@ interface UpdateAlarmRequest$1 {
|
|
|
17
17
|
interface UpdateAlarmResponse$1 {
|
|
18
18
|
alarm?: AlarmMessage$1;
|
|
19
19
|
}
|
|
20
|
+
interface AlarmMessageNonNullableFields$1 {
|
|
21
|
+
id: string;
|
|
22
|
+
seconds: number;
|
|
23
|
+
}
|
|
20
24
|
interface UpdateAlarmResponseNonNullableFields$1 {
|
|
21
|
-
alarm?:
|
|
22
|
-
id: string;
|
|
23
|
-
seconds: number;
|
|
24
|
-
};
|
|
25
|
+
alarm?: AlarmMessageNonNullableFields$1;
|
|
25
26
|
}
|
|
26
27
|
|
|
27
28
|
interface AlarmMessage {
|
|
@@ -43,11 +44,12 @@ interface UpdateAlarmRequest {
|
|
|
43
44
|
interface UpdateAlarmResponse {
|
|
44
45
|
alarm?: AlarmMessage;
|
|
45
46
|
}
|
|
47
|
+
interface AlarmMessageNonNullableFields {
|
|
48
|
+
_id: string;
|
|
49
|
+
seconds: number;
|
|
50
|
+
}
|
|
46
51
|
interface UpdateAlarmResponseNonNullableFields {
|
|
47
|
-
alarm?:
|
|
48
|
-
_id: string;
|
|
49
|
-
seconds: number;
|
|
50
|
-
};
|
|
52
|
+
alarm?: AlarmMessageNonNullableFields;
|
|
51
53
|
}
|
|
52
54
|
|
|
53
55
|
type __PublicMethodMetaInfo$2<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
|
|
@@ -100,14 +102,16 @@ interface EchoResponse$1 {
|
|
|
100
102
|
/** messge reseult as string */
|
|
101
103
|
message?: string;
|
|
102
104
|
}
|
|
105
|
+
interface MessageItemNonNullableFields$1 {
|
|
106
|
+
innerMessage: string;
|
|
107
|
+
}
|
|
108
|
+
interface EchoMessageNonNullableFields$1 {
|
|
109
|
+
message: string;
|
|
110
|
+
messagesList: MessageItemNonNullableFields$1[];
|
|
111
|
+
id: string;
|
|
112
|
+
}
|
|
103
113
|
interface EchoResponseNonNullableFields$1 {
|
|
104
|
-
echoMessage?:
|
|
105
|
-
message: string;
|
|
106
|
-
messagesList: {
|
|
107
|
-
innerMessage: string;
|
|
108
|
-
}[];
|
|
109
|
-
id: string;
|
|
110
|
-
};
|
|
114
|
+
echoMessage?: EchoMessageNonNullableFields$1;
|
|
111
115
|
message: string;
|
|
112
116
|
}
|
|
113
117
|
|
|
@@ -127,14 +131,16 @@ interface EchoResponse {
|
|
|
127
131
|
/** messge reseult as string */
|
|
128
132
|
message?: string;
|
|
129
133
|
}
|
|
134
|
+
interface MessageItemNonNullableFields {
|
|
135
|
+
innerMessage: string;
|
|
136
|
+
}
|
|
137
|
+
interface EchoMessageNonNullableFields {
|
|
138
|
+
message: string;
|
|
139
|
+
messagesList: MessageItemNonNullableFields[];
|
|
140
|
+
_id: string;
|
|
141
|
+
}
|
|
130
142
|
interface EchoResponseNonNullableFields {
|
|
131
|
-
echoMessage?:
|
|
132
|
-
message: string;
|
|
133
|
-
messagesList: {
|
|
134
|
-
innerMessage: string;
|
|
135
|
-
}[];
|
|
136
|
-
_id: string;
|
|
137
|
-
};
|
|
143
|
+
echoMessage?: EchoMessageNonNullableFields;
|
|
138
144
|
message: string;
|
|
139
145
|
}
|
|
140
146
|
interface EchoMessage {
|
|
@@ -520,654 +526,124 @@ interface BulkDeleteProductsResponse$1 {
|
|
|
520
526
|
interface BulkDeleteProductsResponseBulkProductResult$1 {
|
|
521
527
|
itemMetadata?: ItemMetadata$1;
|
|
522
528
|
}
|
|
529
|
+
interface ImageNonNullableFields {
|
|
530
|
+
id: string;
|
|
531
|
+
url: string;
|
|
532
|
+
height: number;
|
|
533
|
+
width: number;
|
|
534
|
+
}
|
|
535
|
+
interface StreetAddressNonNullableFields$1 {
|
|
536
|
+
number: string;
|
|
537
|
+
name: string;
|
|
538
|
+
apt: string;
|
|
539
|
+
}
|
|
540
|
+
interface SubdivisionNonNullableFields {
|
|
541
|
+
code: string;
|
|
542
|
+
name: string;
|
|
543
|
+
type: SubdivisionType;
|
|
544
|
+
}
|
|
545
|
+
interface AddressNonNullableFields$1 {
|
|
546
|
+
streetAddress?: StreetAddressNonNullableFields$1;
|
|
547
|
+
subdivisions: SubdivisionNonNullableFields[];
|
|
548
|
+
}
|
|
549
|
+
interface DocumentNonNullableFields {
|
|
550
|
+
id: string;
|
|
551
|
+
url: string;
|
|
552
|
+
}
|
|
553
|
+
interface VideoResolutionNonNullableFields {
|
|
554
|
+
url: string;
|
|
555
|
+
height: number;
|
|
556
|
+
width: number;
|
|
557
|
+
poster?: ImageNonNullableFields;
|
|
558
|
+
format: string;
|
|
559
|
+
}
|
|
560
|
+
interface VideoV2NonNullableFields {
|
|
561
|
+
id: string;
|
|
562
|
+
url: string;
|
|
563
|
+
resolutions: VideoResolutionNonNullableFields[];
|
|
564
|
+
posters: ImageNonNullableFields[];
|
|
565
|
+
}
|
|
566
|
+
interface PageLinkNonNullableFields$1 {
|
|
567
|
+
pageId: string;
|
|
568
|
+
rel: LinkRel$1[];
|
|
569
|
+
}
|
|
570
|
+
interface AudioNonNullableFields {
|
|
571
|
+
id: string;
|
|
572
|
+
url: string;
|
|
573
|
+
}
|
|
574
|
+
interface VariantNonNullableFields$1 {
|
|
575
|
+
name: string;
|
|
576
|
+
value: string;
|
|
577
|
+
image?: ImageNonNullableFields;
|
|
578
|
+
}
|
|
579
|
+
interface MyAddressNonNullableFields$1 {
|
|
580
|
+
streetAddress?: StreetAddressNonNullableFields$1;
|
|
581
|
+
}
|
|
582
|
+
interface ProductNonNullableFields$1 {
|
|
583
|
+
id: string;
|
|
584
|
+
collectionId: string;
|
|
585
|
+
image?: ImageNonNullableFields;
|
|
586
|
+
address?: AddressNonNullableFields$1;
|
|
587
|
+
document?: DocumentNonNullableFields;
|
|
588
|
+
video?: VideoV2NonNullableFields;
|
|
589
|
+
pageLink?: PageLinkNonNullableFields$1;
|
|
590
|
+
audio?: AudioNonNullableFields;
|
|
591
|
+
variants: VariantNonNullableFields$1[];
|
|
592
|
+
mainVariant?: VariantNonNullableFields$1;
|
|
593
|
+
customAddress?: MyAddressNonNullableFields$1;
|
|
594
|
+
guid: string;
|
|
595
|
+
}
|
|
523
596
|
interface CreateProductResponseNonNullableFields$1 {
|
|
524
|
-
product?:
|
|
525
|
-
id: string;
|
|
526
|
-
collectionId: string;
|
|
527
|
-
image?: {
|
|
528
|
-
id: string;
|
|
529
|
-
url: string;
|
|
530
|
-
height: number;
|
|
531
|
-
width: number;
|
|
532
|
-
};
|
|
533
|
-
address?: {
|
|
534
|
-
streetAddress?: {
|
|
535
|
-
number: string;
|
|
536
|
-
name: string;
|
|
537
|
-
apt: string;
|
|
538
|
-
};
|
|
539
|
-
subdivisions: {
|
|
540
|
-
code: string;
|
|
541
|
-
name: string;
|
|
542
|
-
type: SubdivisionType;
|
|
543
|
-
}[];
|
|
544
|
-
};
|
|
545
|
-
document?: {
|
|
546
|
-
id: string;
|
|
547
|
-
url: string;
|
|
548
|
-
};
|
|
549
|
-
video?: {
|
|
550
|
-
id: string;
|
|
551
|
-
url: string;
|
|
552
|
-
resolutions: {
|
|
553
|
-
url: string;
|
|
554
|
-
height: number;
|
|
555
|
-
width: number;
|
|
556
|
-
poster?: {
|
|
557
|
-
id: string;
|
|
558
|
-
url: string;
|
|
559
|
-
height: number;
|
|
560
|
-
width: number;
|
|
561
|
-
};
|
|
562
|
-
format: string;
|
|
563
|
-
}[];
|
|
564
|
-
posters: {
|
|
565
|
-
id: string;
|
|
566
|
-
url: string;
|
|
567
|
-
height: number;
|
|
568
|
-
width: number;
|
|
569
|
-
}[];
|
|
570
|
-
};
|
|
571
|
-
pageLink?: {
|
|
572
|
-
pageId: string;
|
|
573
|
-
rel: LinkRel$1[];
|
|
574
|
-
};
|
|
575
|
-
audio?: {
|
|
576
|
-
id: string;
|
|
577
|
-
url: string;
|
|
578
|
-
};
|
|
579
|
-
variants: {
|
|
580
|
-
name: string;
|
|
581
|
-
value: string;
|
|
582
|
-
image?: {
|
|
583
|
-
id: string;
|
|
584
|
-
url: string;
|
|
585
|
-
height: number;
|
|
586
|
-
width: number;
|
|
587
|
-
};
|
|
588
|
-
}[];
|
|
589
|
-
mainVariant?: {
|
|
590
|
-
name: string;
|
|
591
|
-
value: string;
|
|
592
|
-
image?: {
|
|
593
|
-
id: string;
|
|
594
|
-
url: string;
|
|
595
|
-
height: number;
|
|
596
|
-
width: number;
|
|
597
|
-
};
|
|
598
|
-
};
|
|
599
|
-
customAddress?: {
|
|
600
|
-
streetAddress?: {
|
|
601
|
-
number: string;
|
|
602
|
-
name: string;
|
|
603
|
-
apt: string;
|
|
604
|
-
};
|
|
605
|
-
};
|
|
606
|
-
guid: string;
|
|
607
|
-
};
|
|
597
|
+
product?: ProductNonNullableFields$1;
|
|
608
598
|
}
|
|
609
599
|
interface UpdateProductResponseNonNullableFields$1 {
|
|
610
|
-
product?:
|
|
611
|
-
id: string;
|
|
612
|
-
collectionId: string;
|
|
613
|
-
image?: {
|
|
614
|
-
id: string;
|
|
615
|
-
url: string;
|
|
616
|
-
height: number;
|
|
617
|
-
width: number;
|
|
618
|
-
};
|
|
619
|
-
address?: {
|
|
620
|
-
streetAddress?: {
|
|
621
|
-
number: string;
|
|
622
|
-
name: string;
|
|
623
|
-
apt: string;
|
|
624
|
-
};
|
|
625
|
-
subdivisions: {
|
|
626
|
-
code: string;
|
|
627
|
-
name: string;
|
|
628
|
-
type: SubdivisionType;
|
|
629
|
-
}[];
|
|
630
|
-
};
|
|
631
|
-
document?: {
|
|
632
|
-
id: string;
|
|
633
|
-
url: string;
|
|
634
|
-
};
|
|
635
|
-
video?: {
|
|
636
|
-
id: string;
|
|
637
|
-
url: string;
|
|
638
|
-
resolutions: {
|
|
639
|
-
url: string;
|
|
640
|
-
height: number;
|
|
641
|
-
width: number;
|
|
642
|
-
poster?: {
|
|
643
|
-
id: string;
|
|
644
|
-
url: string;
|
|
645
|
-
height: number;
|
|
646
|
-
width: number;
|
|
647
|
-
};
|
|
648
|
-
format: string;
|
|
649
|
-
}[];
|
|
650
|
-
posters: {
|
|
651
|
-
id: string;
|
|
652
|
-
url: string;
|
|
653
|
-
height: number;
|
|
654
|
-
width: number;
|
|
655
|
-
}[];
|
|
656
|
-
};
|
|
657
|
-
pageLink?: {
|
|
658
|
-
pageId: string;
|
|
659
|
-
rel: LinkRel$1[];
|
|
660
|
-
};
|
|
661
|
-
audio?: {
|
|
662
|
-
id: string;
|
|
663
|
-
url: string;
|
|
664
|
-
};
|
|
665
|
-
variants: {
|
|
666
|
-
name: string;
|
|
667
|
-
value: string;
|
|
668
|
-
image?: {
|
|
669
|
-
id: string;
|
|
670
|
-
url: string;
|
|
671
|
-
height: number;
|
|
672
|
-
width: number;
|
|
673
|
-
};
|
|
674
|
-
}[];
|
|
675
|
-
mainVariant?: {
|
|
676
|
-
name: string;
|
|
677
|
-
value: string;
|
|
678
|
-
image?: {
|
|
679
|
-
id: string;
|
|
680
|
-
url: string;
|
|
681
|
-
height: number;
|
|
682
|
-
width: number;
|
|
683
|
-
};
|
|
684
|
-
};
|
|
685
|
-
customAddress?: {
|
|
686
|
-
streetAddress?: {
|
|
687
|
-
number: string;
|
|
688
|
-
name: string;
|
|
689
|
-
apt: string;
|
|
690
|
-
};
|
|
691
|
-
};
|
|
692
|
-
guid: string;
|
|
693
|
-
};
|
|
600
|
+
product?: ProductNonNullableFields$1;
|
|
694
601
|
}
|
|
695
602
|
interface GetProductResponseNonNullableFields$1 {
|
|
696
|
-
product?:
|
|
697
|
-
id: string;
|
|
698
|
-
collectionId: string;
|
|
699
|
-
image?: {
|
|
700
|
-
id: string;
|
|
701
|
-
url: string;
|
|
702
|
-
height: number;
|
|
703
|
-
width: number;
|
|
704
|
-
};
|
|
705
|
-
address?: {
|
|
706
|
-
streetAddress?: {
|
|
707
|
-
number: string;
|
|
708
|
-
name: string;
|
|
709
|
-
apt: string;
|
|
710
|
-
};
|
|
711
|
-
subdivisions: {
|
|
712
|
-
code: string;
|
|
713
|
-
name: string;
|
|
714
|
-
type: SubdivisionType;
|
|
715
|
-
}[];
|
|
716
|
-
};
|
|
717
|
-
document?: {
|
|
718
|
-
id: string;
|
|
719
|
-
url: string;
|
|
720
|
-
};
|
|
721
|
-
video?: {
|
|
722
|
-
id: string;
|
|
723
|
-
url: string;
|
|
724
|
-
resolutions: {
|
|
725
|
-
url: string;
|
|
726
|
-
height: number;
|
|
727
|
-
width: number;
|
|
728
|
-
poster?: {
|
|
729
|
-
id: string;
|
|
730
|
-
url: string;
|
|
731
|
-
height: number;
|
|
732
|
-
width: number;
|
|
733
|
-
};
|
|
734
|
-
format: string;
|
|
735
|
-
}[];
|
|
736
|
-
posters: {
|
|
737
|
-
id: string;
|
|
738
|
-
url: string;
|
|
739
|
-
height: number;
|
|
740
|
-
width: number;
|
|
741
|
-
}[];
|
|
742
|
-
};
|
|
743
|
-
pageLink?: {
|
|
744
|
-
pageId: string;
|
|
745
|
-
rel: LinkRel$1[];
|
|
746
|
-
};
|
|
747
|
-
audio?: {
|
|
748
|
-
id: string;
|
|
749
|
-
url: string;
|
|
750
|
-
};
|
|
751
|
-
variants: {
|
|
752
|
-
name: string;
|
|
753
|
-
value: string;
|
|
754
|
-
image?: {
|
|
755
|
-
id: string;
|
|
756
|
-
url: string;
|
|
757
|
-
height: number;
|
|
758
|
-
width: number;
|
|
759
|
-
};
|
|
760
|
-
}[];
|
|
761
|
-
mainVariant?: {
|
|
762
|
-
name: string;
|
|
763
|
-
value: string;
|
|
764
|
-
image?: {
|
|
765
|
-
id: string;
|
|
766
|
-
url: string;
|
|
767
|
-
height: number;
|
|
768
|
-
width: number;
|
|
769
|
-
};
|
|
770
|
-
};
|
|
771
|
-
customAddress?: {
|
|
772
|
-
streetAddress?: {
|
|
773
|
-
number: string;
|
|
774
|
-
name: string;
|
|
775
|
-
apt: string;
|
|
776
|
-
};
|
|
777
|
-
};
|
|
778
|
-
guid: string;
|
|
779
|
-
};
|
|
603
|
+
product?: ProductNonNullableFields$1;
|
|
780
604
|
}
|
|
781
605
|
interface GetProductsStartWithResponseNonNullableFields$1 {
|
|
782
|
-
products:
|
|
783
|
-
id: string;
|
|
784
|
-
collectionId: string;
|
|
785
|
-
image?: {
|
|
786
|
-
id: string;
|
|
787
|
-
url: string;
|
|
788
|
-
height: number;
|
|
789
|
-
width: number;
|
|
790
|
-
};
|
|
791
|
-
address?: {
|
|
792
|
-
streetAddress?: {
|
|
793
|
-
number: string;
|
|
794
|
-
name: string;
|
|
795
|
-
apt: string;
|
|
796
|
-
};
|
|
797
|
-
subdivisions: {
|
|
798
|
-
code: string;
|
|
799
|
-
name: string;
|
|
800
|
-
type: SubdivisionType;
|
|
801
|
-
}[];
|
|
802
|
-
};
|
|
803
|
-
document?: {
|
|
804
|
-
id: string;
|
|
805
|
-
url: string;
|
|
806
|
-
};
|
|
807
|
-
video?: {
|
|
808
|
-
id: string;
|
|
809
|
-
url: string;
|
|
810
|
-
resolutions: {
|
|
811
|
-
url: string;
|
|
812
|
-
height: number;
|
|
813
|
-
width: number;
|
|
814
|
-
poster?: {
|
|
815
|
-
id: string;
|
|
816
|
-
url: string;
|
|
817
|
-
height: number;
|
|
818
|
-
width: number;
|
|
819
|
-
};
|
|
820
|
-
format: string;
|
|
821
|
-
}[];
|
|
822
|
-
posters: {
|
|
823
|
-
id: string;
|
|
824
|
-
url: string;
|
|
825
|
-
height: number;
|
|
826
|
-
width: number;
|
|
827
|
-
}[];
|
|
828
|
-
};
|
|
829
|
-
pageLink?: {
|
|
830
|
-
pageId: string;
|
|
831
|
-
rel: LinkRel$1[];
|
|
832
|
-
};
|
|
833
|
-
audio?: {
|
|
834
|
-
id: string;
|
|
835
|
-
url: string;
|
|
836
|
-
};
|
|
837
|
-
variants: {
|
|
838
|
-
name: string;
|
|
839
|
-
value: string;
|
|
840
|
-
image?: {
|
|
841
|
-
id: string;
|
|
842
|
-
url: string;
|
|
843
|
-
height: number;
|
|
844
|
-
width: number;
|
|
845
|
-
};
|
|
846
|
-
}[];
|
|
847
|
-
mainVariant?: {
|
|
848
|
-
name: string;
|
|
849
|
-
value: string;
|
|
850
|
-
image?: {
|
|
851
|
-
id: string;
|
|
852
|
-
url: string;
|
|
853
|
-
height: number;
|
|
854
|
-
width: number;
|
|
855
|
-
};
|
|
856
|
-
};
|
|
857
|
-
customAddress?: {
|
|
858
|
-
streetAddress?: {
|
|
859
|
-
number: string;
|
|
860
|
-
name: string;
|
|
861
|
-
apt: string;
|
|
862
|
-
};
|
|
863
|
-
};
|
|
864
|
-
guid: string;
|
|
865
|
-
}[];
|
|
606
|
+
products: ProductNonNullableFields$1[];
|
|
866
607
|
}
|
|
867
608
|
interface QueryProductsResponseNonNullableFields$1 {
|
|
868
|
-
products:
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
}[];
|
|
888
|
-
};
|
|
889
|
-
document?: {
|
|
890
|
-
id: string;
|
|
891
|
-
url: string;
|
|
892
|
-
};
|
|
893
|
-
video?: {
|
|
894
|
-
id: string;
|
|
895
|
-
url: string;
|
|
896
|
-
resolutions: {
|
|
897
|
-
url: string;
|
|
898
|
-
height: number;
|
|
899
|
-
width: number;
|
|
900
|
-
poster?: {
|
|
901
|
-
id: string;
|
|
902
|
-
url: string;
|
|
903
|
-
height: number;
|
|
904
|
-
width: number;
|
|
905
|
-
};
|
|
906
|
-
format: string;
|
|
907
|
-
}[];
|
|
908
|
-
posters: {
|
|
909
|
-
id: string;
|
|
910
|
-
url: string;
|
|
911
|
-
height: number;
|
|
912
|
-
width: number;
|
|
913
|
-
}[];
|
|
914
|
-
};
|
|
915
|
-
pageLink?: {
|
|
916
|
-
pageId: string;
|
|
917
|
-
rel: LinkRel$1[];
|
|
918
|
-
};
|
|
919
|
-
audio?: {
|
|
920
|
-
id: string;
|
|
921
|
-
url: string;
|
|
922
|
-
};
|
|
923
|
-
variants: {
|
|
924
|
-
name: string;
|
|
925
|
-
value: string;
|
|
926
|
-
image?: {
|
|
927
|
-
id: string;
|
|
928
|
-
url: string;
|
|
929
|
-
height: number;
|
|
930
|
-
width: number;
|
|
931
|
-
};
|
|
932
|
-
}[];
|
|
933
|
-
mainVariant?: {
|
|
934
|
-
name: string;
|
|
935
|
-
value: string;
|
|
936
|
-
image?: {
|
|
937
|
-
id: string;
|
|
938
|
-
url: string;
|
|
939
|
-
height: number;
|
|
940
|
-
width: number;
|
|
941
|
-
};
|
|
942
|
-
};
|
|
943
|
-
customAddress?: {
|
|
944
|
-
streetAddress?: {
|
|
945
|
-
number: string;
|
|
946
|
-
name: string;
|
|
947
|
-
apt: string;
|
|
948
|
-
};
|
|
949
|
-
};
|
|
950
|
-
guid: string;
|
|
951
|
-
}[];
|
|
609
|
+
products: ProductNonNullableFields$1[];
|
|
610
|
+
}
|
|
611
|
+
interface ApplicationErrorNonNullableFields$1 {
|
|
612
|
+
code: string;
|
|
613
|
+
description: string;
|
|
614
|
+
}
|
|
615
|
+
interface ItemMetadataNonNullableFields$1 {
|
|
616
|
+
originalIndex: number;
|
|
617
|
+
success: boolean;
|
|
618
|
+
error?: ApplicationErrorNonNullableFields$1;
|
|
619
|
+
}
|
|
620
|
+
interface BulkProductResultNonNullableFields$1 {
|
|
621
|
+
itemMetadata?: ItemMetadataNonNullableFields$1;
|
|
622
|
+
item?: ProductNonNullableFields$1;
|
|
623
|
+
}
|
|
624
|
+
interface BulkActionMetadataNonNullableFields$1 {
|
|
625
|
+
totalSuccesses: number;
|
|
626
|
+
totalFailures: number;
|
|
627
|
+
undetailedFailures: number;
|
|
952
628
|
}
|
|
953
629
|
interface BulkCreateProductsResponseNonNullableFields$1 {
|
|
954
|
-
results:
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
description: string;
|
|
961
|
-
};
|
|
962
|
-
};
|
|
963
|
-
item?: {
|
|
964
|
-
id: string;
|
|
965
|
-
collectionId: string;
|
|
966
|
-
image?: {
|
|
967
|
-
id: string;
|
|
968
|
-
url: string;
|
|
969
|
-
height: number;
|
|
970
|
-
width: number;
|
|
971
|
-
};
|
|
972
|
-
address?: {
|
|
973
|
-
streetAddress?: {
|
|
974
|
-
number: string;
|
|
975
|
-
name: string;
|
|
976
|
-
apt: string;
|
|
977
|
-
};
|
|
978
|
-
subdivisions: {
|
|
979
|
-
code: string;
|
|
980
|
-
name: string;
|
|
981
|
-
type: SubdivisionType;
|
|
982
|
-
}[];
|
|
983
|
-
};
|
|
984
|
-
document?: {
|
|
985
|
-
id: string;
|
|
986
|
-
url: string;
|
|
987
|
-
};
|
|
988
|
-
video?: {
|
|
989
|
-
id: string;
|
|
990
|
-
url: string;
|
|
991
|
-
resolutions: {
|
|
992
|
-
url: string;
|
|
993
|
-
height: number;
|
|
994
|
-
width: number;
|
|
995
|
-
poster?: {
|
|
996
|
-
id: string;
|
|
997
|
-
url: string;
|
|
998
|
-
height: number;
|
|
999
|
-
width: number;
|
|
1000
|
-
};
|
|
1001
|
-
format: string;
|
|
1002
|
-
}[];
|
|
1003
|
-
posters: {
|
|
1004
|
-
id: string;
|
|
1005
|
-
url: string;
|
|
1006
|
-
height: number;
|
|
1007
|
-
width: number;
|
|
1008
|
-
}[];
|
|
1009
|
-
};
|
|
1010
|
-
pageLink?: {
|
|
1011
|
-
pageId: string;
|
|
1012
|
-
rel: LinkRel$1[];
|
|
1013
|
-
};
|
|
1014
|
-
audio?: {
|
|
1015
|
-
id: string;
|
|
1016
|
-
url: string;
|
|
1017
|
-
};
|
|
1018
|
-
variants: {
|
|
1019
|
-
name: string;
|
|
1020
|
-
value: string;
|
|
1021
|
-
image?: {
|
|
1022
|
-
id: string;
|
|
1023
|
-
url: string;
|
|
1024
|
-
height: number;
|
|
1025
|
-
width: number;
|
|
1026
|
-
};
|
|
1027
|
-
}[];
|
|
1028
|
-
mainVariant?: {
|
|
1029
|
-
name: string;
|
|
1030
|
-
value: string;
|
|
1031
|
-
image?: {
|
|
1032
|
-
id: string;
|
|
1033
|
-
url: string;
|
|
1034
|
-
height: number;
|
|
1035
|
-
width: number;
|
|
1036
|
-
};
|
|
1037
|
-
};
|
|
1038
|
-
customAddress?: {
|
|
1039
|
-
streetAddress?: {
|
|
1040
|
-
number: string;
|
|
1041
|
-
name: string;
|
|
1042
|
-
apt: string;
|
|
1043
|
-
};
|
|
1044
|
-
};
|
|
1045
|
-
guid: string;
|
|
1046
|
-
};
|
|
1047
|
-
}[];
|
|
1048
|
-
bulkActionMetadata?: {
|
|
1049
|
-
totalSuccesses: number;
|
|
1050
|
-
totalFailures: number;
|
|
1051
|
-
undetailedFailures: number;
|
|
1052
|
-
};
|
|
630
|
+
results: BulkProductResultNonNullableFields$1[];
|
|
631
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields$1;
|
|
632
|
+
}
|
|
633
|
+
interface BulkUpdateProductsResponseBulkProductResultNonNullableFields$1 {
|
|
634
|
+
itemMetadata?: ItemMetadataNonNullableFields$1;
|
|
635
|
+
item?: ProductNonNullableFields$1;
|
|
1053
636
|
}
|
|
1054
637
|
interface BulkUpdateProductsResponseNonNullableFields$1 {
|
|
1055
|
-
results:
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
code: string;
|
|
1061
|
-
description: string;
|
|
1062
|
-
};
|
|
1063
|
-
};
|
|
1064
|
-
item?: {
|
|
1065
|
-
id: string;
|
|
1066
|
-
collectionId: string;
|
|
1067
|
-
image?: {
|
|
1068
|
-
id: string;
|
|
1069
|
-
url: string;
|
|
1070
|
-
height: number;
|
|
1071
|
-
width: number;
|
|
1072
|
-
};
|
|
1073
|
-
address?: {
|
|
1074
|
-
streetAddress?: {
|
|
1075
|
-
number: string;
|
|
1076
|
-
name: string;
|
|
1077
|
-
apt: string;
|
|
1078
|
-
};
|
|
1079
|
-
subdivisions: {
|
|
1080
|
-
code: string;
|
|
1081
|
-
name: string;
|
|
1082
|
-
type: SubdivisionType;
|
|
1083
|
-
}[];
|
|
1084
|
-
};
|
|
1085
|
-
document?: {
|
|
1086
|
-
id: string;
|
|
1087
|
-
url: string;
|
|
1088
|
-
};
|
|
1089
|
-
video?: {
|
|
1090
|
-
id: string;
|
|
1091
|
-
url: string;
|
|
1092
|
-
resolutions: {
|
|
1093
|
-
url: string;
|
|
1094
|
-
height: number;
|
|
1095
|
-
width: number;
|
|
1096
|
-
poster?: {
|
|
1097
|
-
id: string;
|
|
1098
|
-
url: string;
|
|
1099
|
-
height: number;
|
|
1100
|
-
width: number;
|
|
1101
|
-
};
|
|
1102
|
-
format: string;
|
|
1103
|
-
}[];
|
|
1104
|
-
posters: {
|
|
1105
|
-
id: string;
|
|
1106
|
-
url: string;
|
|
1107
|
-
height: number;
|
|
1108
|
-
width: number;
|
|
1109
|
-
}[];
|
|
1110
|
-
};
|
|
1111
|
-
pageLink?: {
|
|
1112
|
-
pageId: string;
|
|
1113
|
-
rel: LinkRel$1[];
|
|
1114
|
-
};
|
|
1115
|
-
audio?: {
|
|
1116
|
-
id: string;
|
|
1117
|
-
url: string;
|
|
1118
|
-
};
|
|
1119
|
-
variants: {
|
|
1120
|
-
name: string;
|
|
1121
|
-
value: string;
|
|
1122
|
-
image?: {
|
|
1123
|
-
id: string;
|
|
1124
|
-
url: string;
|
|
1125
|
-
height: number;
|
|
1126
|
-
width: number;
|
|
1127
|
-
};
|
|
1128
|
-
}[];
|
|
1129
|
-
mainVariant?: {
|
|
1130
|
-
name: string;
|
|
1131
|
-
value: string;
|
|
1132
|
-
image?: {
|
|
1133
|
-
id: string;
|
|
1134
|
-
url: string;
|
|
1135
|
-
height: number;
|
|
1136
|
-
width: number;
|
|
1137
|
-
};
|
|
1138
|
-
};
|
|
1139
|
-
customAddress?: {
|
|
1140
|
-
streetAddress?: {
|
|
1141
|
-
number: string;
|
|
1142
|
-
name: string;
|
|
1143
|
-
apt: string;
|
|
1144
|
-
};
|
|
1145
|
-
};
|
|
1146
|
-
guid: string;
|
|
1147
|
-
};
|
|
1148
|
-
}[];
|
|
1149
|
-
bulkActionMetadata?: {
|
|
1150
|
-
totalSuccesses: number;
|
|
1151
|
-
totalFailures: number;
|
|
1152
|
-
undetailedFailures: number;
|
|
1153
|
-
};
|
|
638
|
+
results: BulkUpdateProductsResponseBulkProductResultNonNullableFields$1[];
|
|
639
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields$1;
|
|
640
|
+
}
|
|
641
|
+
interface BulkDeleteProductsResponseBulkProductResultNonNullableFields$1 {
|
|
642
|
+
itemMetadata?: ItemMetadataNonNullableFields$1;
|
|
1154
643
|
}
|
|
1155
644
|
interface BulkDeleteProductsResponseNonNullableFields$1 {
|
|
1156
|
-
results:
|
|
1157
|
-
|
|
1158
|
-
originalIndex: number;
|
|
1159
|
-
success: boolean;
|
|
1160
|
-
error?: {
|
|
1161
|
-
code: string;
|
|
1162
|
-
description: string;
|
|
1163
|
-
};
|
|
1164
|
-
};
|
|
1165
|
-
}[];
|
|
1166
|
-
bulkActionMetadata?: {
|
|
1167
|
-
totalSuccesses: number;
|
|
1168
|
-
totalFailures: number;
|
|
1169
|
-
undetailedFailures: number;
|
|
1170
|
-
};
|
|
645
|
+
results: BulkDeleteProductsResponseBulkProductResultNonNullableFields$1[];
|
|
646
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields$1;
|
|
1171
647
|
}
|
|
1172
648
|
|
|
1173
649
|
/** Physical address */
|
|
@@ -1426,227 +902,91 @@ interface BulkDeleteProductsResponse {
|
|
|
1426
902
|
interface BulkDeleteProductsResponseBulkProductResult {
|
|
1427
903
|
itemMetadata?: ItemMetadata;
|
|
1428
904
|
}
|
|
905
|
+
interface StreetAddressNonNullableFields {
|
|
906
|
+
number: string;
|
|
907
|
+
name: string;
|
|
908
|
+
apt: string;
|
|
909
|
+
}
|
|
910
|
+
interface AddressNonNullableFields {
|
|
911
|
+
streetAddress?: StreetAddressNonNullableFields;
|
|
912
|
+
}
|
|
913
|
+
interface PageLinkNonNullableFields {
|
|
914
|
+
pageId: string;
|
|
915
|
+
rel: LinkRel[];
|
|
916
|
+
}
|
|
917
|
+
interface VariantNonNullableFields {
|
|
918
|
+
name: string;
|
|
919
|
+
value: string;
|
|
920
|
+
image: string;
|
|
921
|
+
}
|
|
922
|
+
interface MyAddressNonNullableFields {
|
|
923
|
+
streetAddress?: StreetAddressNonNullableFields;
|
|
924
|
+
}
|
|
925
|
+
interface ProductNonNullableFields {
|
|
926
|
+
_id: string;
|
|
927
|
+
collectionId: string;
|
|
928
|
+
image: string;
|
|
929
|
+
address?: AddressNonNullableFields;
|
|
930
|
+
document: string;
|
|
931
|
+
video: string;
|
|
932
|
+
pageLink?: PageLinkNonNullableFields;
|
|
933
|
+
audio: string;
|
|
934
|
+
variants: VariantNonNullableFields[];
|
|
935
|
+
mainVariant?: VariantNonNullableFields;
|
|
936
|
+
customAddress?: MyAddressNonNullableFields;
|
|
937
|
+
guid: string;
|
|
938
|
+
}
|
|
1429
939
|
interface CreateProductResponseNonNullableFields {
|
|
1430
|
-
product?:
|
|
1431
|
-
_id: string;
|
|
1432
|
-
collectionId: string;
|
|
1433
|
-
image: string;
|
|
1434
|
-
document: string;
|
|
1435
|
-
video: string;
|
|
1436
|
-
pageLink?: {
|
|
1437
|
-
pageId: string;
|
|
1438
|
-
rel: LinkRel[];
|
|
1439
|
-
};
|
|
1440
|
-
audio: string;
|
|
1441
|
-
variants: {
|
|
1442
|
-
name: string;
|
|
1443
|
-
value: string;
|
|
1444
|
-
image: string;
|
|
1445
|
-
}[];
|
|
1446
|
-
mainVariant?: {
|
|
1447
|
-
name: string;
|
|
1448
|
-
value: string;
|
|
1449
|
-
image: string;
|
|
1450
|
-
};
|
|
1451
|
-
guid: string;
|
|
1452
|
-
};
|
|
940
|
+
product?: ProductNonNullableFields;
|
|
1453
941
|
}
|
|
1454
942
|
interface UpdateProductResponseNonNullableFields {
|
|
1455
|
-
product?:
|
|
1456
|
-
_id: string;
|
|
1457
|
-
collectionId: string;
|
|
1458
|
-
image: string;
|
|
1459
|
-
document: string;
|
|
1460
|
-
video: string;
|
|
1461
|
-
pageLink?: {
|
|
1462
|
-
pageId: string;
|
|
1463
|
-
rel: LinkRel[];
|
|
1464
|
-
};
|
|
1465
|
-
audio: string;
|
|
1466
|
-
variants: {
|
|
1467
|
-
name: string;
|
|
1468
|
-
value: string;
|
|
1469
|
-
image: string;
|
|
1470
|
-
}[];
|
|
1471
|
-
mainVariant?: {
|
|
1472
|
-
name: string;
|
|
1473
|
-
value: string;
|
|
1474
|
-
image: string;
|
|
1475
|
-
};
|
|
1476
|
-
guid: string;
|
|
1477
|
-
};
|
|
943
|
+
product?: ProductNonNullableFields;
|
|
1478
944
|
}
|
|
1479
945
|
interface GetProductResponseNonNullableFields {
|
|
1480
|
-
product?:
|
|
1481
|
-
_id: string;
|
|
1482
|
-
collectionId: string;
|
|
1483
|
-
image: string;
|
|
1484
|
-
document: string;
|
|
1485
|
-
video: string;
|
|
1486
|
-
pageLink?: {
|
|
1487
|
-
pageId: string;
|
|
1488
|
-
rel: LinkRel[];
|
|
1489
|
-
};
|
|
1490
|
-
audio: string;
|
|
1491
|
-
variants: {
|
|
1492
|
-
name: string;
|
|
1493
|
-
value: string;
|
|
1494
|
-
image: string;
|
|
1495
|
-
}[];
|
|
1496
|
-
mainVariant?: {
|
|
1497
|
-
name: string;
|
|
1498
|
-
value: string;
|
|
1499
|
-
image: string;
|
|
1500
|
-
};
|
|
1501
|
-
guid: string;
|
|
1502
|
-
};
|
|
946
|
+
product?: ProductNonNullableFields;
|
|
1503
947
|
}
|
|
1504
948
|
interface GetProductsStartWithResponseNonNullableFields {
|
|
1505
|
-
products:
|
|
1506
|
-
_id: string;
|
|
1507
|
-
collectionId: string;
|
|
1508
|
-
image: string;
|
|
1509
|
-
document: string;
|
|
1510
|
-
video: string;
|
|
1511
|
-
pageLink?: {
|
|
1512
|
-
pageId: string;
|
|
1513
|
-
rel: LinkRel[];
|
|
1514
|
-
};
|
|
1515
|
-
audio: string;
|
|
1516
|
-
variants: {
|
|
1517
|
-
name: string;
|
|
1518
|
-
value: string;
|
|
1519
|
-
image: string;
|
|
1520
|
-
}[];
|
|
1521
|
-
mainVariant?: {
|
|
1522
|
-
name: string;
|
|
1523
|
-
value: string;
|
|
1524
|
-
image: string;
|
|
1525
|
-
};
|
|
1526
|
-
guid: string;
|
|
1527
|
-
}[];
|
|
949
|
+
products: ProductNonNullableFields[];
|
|
1528
950
|
}
|
|
1529
951
|
interface QueryProductsResponseNonNullableFields {
|
|
1530
|
-
products:
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
image: string;
|
|
1550
|
-
};
|
|
1551
|
-
guid: string;
|
|
1552
|
-
}[];
|
|
952
|
+
products: ProductNonNullableFields[];
|
|
953
|
+
}
|
|
954
|
+
interface ApplicationErrorNonNullableFields {
|
|
955
|
+
code: string;
|
|
956
|
+
description: string;
|
|
957
|
+
}
|
|
958
|
+
interface ItemMetadataNonNullableFields {
|
|
959
|
+
originalIndex: number;
|
|
960
|
+
success: boolean;
|
|
961
|
+
error?: ApplicationErrorNonNullableFields;
|
|
962
|
+
}
|
|
963
|
+
interface BulkProductResultNonNullableFields {
|
|
964
|
+
itemMetadata?: ItemMetadataNonNullableFields;
|
|
965
|
+
item?: ProductNonNullableFields;
|
|
966
|
+
}
|
|
967
|
+
interface BulkActionMetadataNonNullableFields {
|
|
968
|
+
totalSuccesses: number;
|
|
969
|
+
totalFailures: number;
|
|
970
|
+
undetailedFailures: number;
|
|
1553
971
|
}
|
|
1554
972
|
interface BulkCreateProductsResponseNonNullableFields {
|
|
1555
|
-
results:
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
description: string;
|
|
1562
|
-
};
|
|
1563
|
-
};
|
|
1564
|
-
item?: {
|
|
1565
|
-
_id: string;
|
|
1566
|
-
collectionId: string;
|
|
1567
|
-
image: string;
|
|
1568
|
-
document: string;
|
|
1569
|
-
video: string;
|
|
1570
|
-
pageLink?: {
|
|
1571
|
-
pageId: string;
|
|
1572
|
-
rel: LinkRel[];
|
|
1573
|
-
};
|
|
1574
|
-
audio: string;
|
|
1575
|
-
variants: {
|
|
1576
|
-
name: string;
|
|
1577
|
-
value: string;
|
|
1578
|
-
image: string;
|
|
1579
|
-
}[];
|
|
1580
|
-
mainVariant?: {
|
|
1581
|
-
name: string;
|
|
1582
|
-
value: string;
|
|
1583
|
-
image: string;
|
|
1584
|
-
};
|
|
1585
|
-
guid: string;
|
|
1586
|
-
};
|
|
1587
|
-
}[];
|
|
1588
|
-
bulkActionMetadata?: {
|
|
1589
|
-
totalSuccesses: number;
|
|
1590
|
-
totalFailures: number;
|
|
1591
|
-
undetailedFailures: number;
|
|
1592
|
-
};
|
|
973
|
+
results: BulkProductResultNonNullableFields[];
|
|
974
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields;
|
|
975
|
+
}
|
|
976
|
+
interface BulkUpdateProductsResponseBulkProductResultNonNullableFields {
|
|
977
|
+
itemMetadata?: ItemMetadataNonNullableFields;
|
|
978
|
+
item?: ProductNonNullableFields;
|
|
1593
979
|
}
|
|
1594
980
|
interface BulkUpdateProductsResponseNonNullableFields {
|
|
1595
|
-
results:
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
code: string;
|
|
1601
|
-
description: string;
|
|
1602
|
-
};
|
|
1603
|
-
};
|
|
1604
|
-
item?: {
|
|
1605
|
-
_id: string;
|
|
1606
|
-
collectionId: string;
|
|
1607
|
-
image: string;
|
|
1608
|
-
document: string;
|
|
1609
|
-
video: string;
|
|
1610
|
-
pageLink?: {
|
|
1611
|
-
pageId: string;
|
|
1612
|
-
rel: LinkRel[];
|
|
1613
|
-
};
|
|
1614
|
-
audio: string;
|
|
1615
|
-
variants: {
|
|
1616
|
-
name: string;
|
|
1617
|
-
value: string;
|
|
1618
|
-
image: string;
|
|
1619
|
-
}[];
|
|
1620
|
-
mainVariant?: {
|
|
1621
|
-
name: string;
|
|
1622
|
-
value: string;
|
|
1623
|
-
image: string;
|
|
1624
|
-
};
|
|
1625
|
-
guid: string;
|
|
1626
|
-
};
|
|
1627
|
-
}[];
|
|
1628
|
-
bulkActionMetadata?: {
|
|
1629
|
-
totalSuccesses: number;
|
|
1630
|
-
totalFailures: number;
|
|
1631
|
-
undetailedFailures: number;
|
|
1632
|
-
};
|
|
981
|
+
results: BulkUpdateProductsResponseBulkProductResultNonNullableFields[];
|
|
982
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields;
|
|
983
|
+
}
|
|
984
|
+
interface BulkDeleteProductsResponseBulkProductResultNonNullableFields {
|
|
985
|
+
itemMetadata?: ItemMetadataNonNullableFields;
|
|
1633
986
|
}
|
|
1634
987
|
interface BulkDeleteProductsResponseNonNullableFields {
|
|
1635
|
-
results:
|
|
1636
|
-
|
|
1637
|
-
originalIndex: number;
|
|
1638
|
-
success: boolean;
|
|
1639
|
-
error?: {
|
|
1640
|
-
code: string;
|
|
1641
|
-
description: string;
|
|
1642
|
-
};
|
|
1643
|
-
};
|
|
1644
|
-
}[];
|
|
1645
|
-
bulkActionMetadata?: {
|
|
1646
|
-
totalSuccesses: number;
|
|
1647
|
-
totalFailures: number;
|
|
1648
|
-
undetailedFailures: number;
|
|
1649
|
-
};
|
|
988
|
+
results: BulkDeleteProductsResponseBulkProductResultNonNullableFields[];
|
|
989
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields;
|
|
1650
990
|
}
|
|
1651
991
|
interface Product {
|
|
1652
992
|
_id: string;
|