@shushed/helpers 0.0.76 → 0.0.78
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/dist/index.d.ts +711 -27
- package/dist/index.js +109459 -69
- package/dist/package.json +2 -2
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -7,9 +7,10 @@ import { Context } from 'co-body';
|
|
|
7
7
|
import * as _google_cloud_scheduler_build_protos_protos from '@google-cloud/scheduler/build/protos/protos';
|
|
8
8
|
import { CloudSchedulerClient } from '@google-cloud/scheduler';
|
|
9
9
|
import { SecretManagerServiceClient } from '@google-cloud/secret-manager';
|
|
10
|
+
import { CloudTasksClient } from '@google-cloud/tasks';
|
|
10
11
|
import { BigQuery } from '@google-cloud/bigquery';
|
|
11
12
|
|
|
12
|
-
declare const schema$
|
|
13
|
+
declare const schema$p: {
|
|
13
14
|
readonly $schema: "http://json-schema.org/draft-07/schema#";
|
|
14
15
|
readonly title: "Country";
|
|
15
16
|
readonly type: "string";
|
|
@@ -17,7 +18,7 @@ declare const schema$n: {
|
|
|
17
18
|
readonly $id: "https://shushed.example.com/country.schema.json";
|
|
18
19
|
};
|
|
19
20
|
|
|
20
|
-
declare const schema$
|
|
21
|
+
declare const schema$o: {
|
|
21
22
|
readonly $schema: "http://json-schema.org/draft-07/schema#";
|
|
22
23
|
readonly title: "Currency";
|
|
23
24
|
readonly type: "string";
|
|
@@ -25,7 +26,7 @@ declare const schema$m: {
|
|
|
25
26
|
readonly $id: "https://shushed.example.com/currency.schema.json";
|
|
26
27
|
};
|
|
27
28
|
|
|
28
|
-
declare const schema$
|
|
29
|
+
declare const schema$n: {
|
|
29
30
|
readonly $schema: "http://json-schema.org/draft-07/schema#";
|
|
30
31
|
readonly title: "Money";
|
|
31
32
|
readonly type: "object";
|
|
@@ -66,7 +67,7 @@ declare const schema$l: {
|
|
|
66
67
|
readonly $id: "https://shushed.example.com/money.schema.json";
|
|
67
68
|
};
|
|
68
69
|
|
|
69
|
-
declare const schema$
|
|
70
|
+
declare const schema$m: {
|
|
70
71
|
readonly $schema: "http://json-schema.org/draft-07/schema#";
|
|
71
72
|
readonly title: "Price";
|
|
72
73
|
readonly type: "object";
|
|
@@ -112,7 +113,7 @@ declare const schema$k: {
|
|
|
112
113
|
readonly $id: "https://shushed.example.com/price.schema.json";
|
|
113
114
|
};
|
|
114
115
|
|
|
115
|
-
declare const schema$
|
|
116
|
+
declare const schema$l: {
|
|
116
117
|
readonly $schema: "http://json-schema.org/draft-07/schema#";
|
|
117
118
|
readonly title: "ProductDraft";
|
|
118
119
|
readonly type: "object";
|
|
@@ -618,7 +619,248 @@ declare const schema$j: {
|
|
|
618
619
|
readonly $id: "https://shushed.example.com/product-draft.schema.json";
|
|
619
620
|
};
|
|
620
621
|
|
|
621
|
-
declare const schema$
|
|
622
|
+
declare const schema$k: {
|
|
623
|
+
readonly $schema: "http://json-schema.org/draft-07/schema#";
|
|
624
|
+
readonly title: "Product";
|
|
625
|
+
readonly additionalProperties: false;
|
|
626
|
+
readonly type: "object";
|
|
627
|
+
readonly properties: {
|
|
628
|
+
readonly product_id: {
|
|
629
|
+
readonly type: "string";
|
|
630
|
+
};
|
|
631
|
+
readonly style_id: {
|
|
632
|
+
readonly type: readonly ["string"];
|
|
633
|
+
};
|
|
634
|
+
readonly colour_code: {
|
|
635
|
+
readonly type: "string";
|
|
636
|
+
readonly pattern: "^[a-z]+(-[a-z]+)*$";
|
|
637
|
+
};
|
|
638
|
+
readonly product_name: {
|
|
639
|
+
readonly type: "string";
|
|
640
|
+
};
|
|
641
|
+
readonly is_available_to_order: {
|
|
642
|
+
readonly type: "boolean";
|
|
643
|
+
};
|
|
644
|
+
readonly created_at: {
|
|
645
|
+
readonly type: "string";
|
|
646
|
+
readonly format: "date-time";
|
|
647
|
+
};
|
|
648
|
+
readonly last_modified_at: {
|
|
649
|
+
readonly type: "string";
|
|
650
|
+
readonly format: "date-time";
|
|
651
|
+
};
|
|
652
|
+
readonly colour_family_name: {
|
|
653
|
+
readonly type: "string";
|
|
654
|
+
};
|
|
655
|
+
readonly colour_label: {
|
|
656
|
+
readonly type: "string";
|
|
657
|
+
readonly pattern: "^[A-Z][a-z]+( [A-Z][a-z]+)*$";
|
|
658
|
+
};
|
|
659
|
+
readonly variants: {
|
|
660
|
+
readonly type: "array";
|
|
661
|
+
readonly items: {
|
|
662
|
+
readonly type: "object";
|
|
663
|
+
readonly properties: {
|
|
664
|
+
readonly size: {
|
|
665
|
+
readonly type: "string";
|
|
666
|
+
};
|
|
667
|
+
readonly size_label: {
|
|
668
|
+
readonly type: readonly ["string"];
|
|
669
|
+
};
|
|
670
|
+
};
|
|
671
|
+
readonly required: readonly ["size", "size_label"];
|
|
672
|
+
};
|
|
673
|
+
};
|
|
674
|
+
readonly images: {
|
|
675
|
+
readonly type: "array";
|
|
676
|
+
readonly properties: {
|
|
677
|
+
readonly image_type: {
|
|
678
|
+
readonly type: "string";
|
|
679
|
+
readonly enum: readonly ["Campaign", "Ecom x 4", "Flat lay", "UGC (multiple)", "AI Images"];
|
|
680
|
+
};
|
|
681
|
+
readonly image_url: {
|
|
682
|
+
readonly type: "string";
|
|
683
|
+
readonly format: "uri";
|
|
684
|
+
};
|
|
685
|
+
readonly path: {
|
|
686
|
+
readonly type: "string";
|
|
687
|
+
};
|
|
688
|
+
readonly title: {
|
|
689
|
+
readonly type: "string";
|
|
690
|
+
};
|
|
691
|
+
};
|
|
692
|
+
readonly required: readonly ["image_type", "image_url", "path", "title"];
|
|
693
|
+
};
|
|
694
|
+
readonly vat_amount: {
|
|
695
|
+
readonly type: "number";
|
|
696
|
+
readonly minimum: 0;
|
|
697
|
+
};
|
|
698
|
+
readonly commodity_code_ref: {
|
|
699
|
+
readonly type: "string";
|
|
700
|
+
};
|
|
701
|
+
readonly attributes: {
|
|
702
|
+
readonly type: "object";
|
|
703
|
+
readonly properties: {
|
|
704
|
+
readonly product_type: {
|
|
705
|
+
readonly type: "string";
|
|
706
|
+
};
|
|
707
|
+
readonly main_fibre: {
|
|
708
|
+
readonly type: "string";
|
|
709
|
+
};
|
|
710
|
+
readonly merch_product_category: {
|
|
711
|
+
readonly type: "string";
|
|
712
|
+
};
|
|
713
|
+
readonly merch_product_subcategory: {
|
|
714
|
+
readonly type: "string";
|
|
715
|
+
};
|
|
716
|
+
readonly extra_selling_point: {
|
|
717
|
+
readonly type: "string";
|
|
718
|
+
};
|
|
719
|
+
readonly length_measurement: {
|
|
720
|
+
readonly type: readonly ["string", "null"];
|
|
721
|
+
};
|
|
722
|
+
readonly country_of_origin: {
|
|
723
|
+
readonly $schema: "http://json-schema.org/draft-07/schema#";
|
|
724
|
+
readonly title: "Country";
|
|
725
|
+
readonly type: "string";
|
|
726
|
+
readonly enum: readonly ["AF", "AX", "AL", "DZ", "AS", "AD", "AO", "AI", "AQ", "AG", "AR", "AM", "AW", "AU", "AT", "AZ", "BS", "BH", "BD", "BB", "BY", "BE", "BZ", "BJ", "BM", "BT", "BO", "BQ", "BA", "BW", "BV", "BR", "IO", "BN", "BG", "BF", "BI", "CV", "KH", "CM", "CA", "KY", "CF", "TD", "CL", "CN", "CX", "CC", "CO", "KM", "CD", "CG", "CK", "CR", "CI", "HR", "CU", "CW", "CY", "CZ", "DK", "DJ", "DM", "DO", "EC", "EG", "SV", "GQ", "ER", "EE", "SZ", "ET", "FK", "FO", "FJ", "FI", "FR", "GF", "PF", "TF", "GA", "GM", "GE", "DE", "GH", "GI", "GR", "GL", "GD", "GP", "GU", "GT", "GG", "GN", "GW", "GY", "HT", "HM", "VA", "HN", "HK", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IM", "IL", "IT", "JM", "JP", "JE", "JO", "KZ", "KE", "KI", "KP", "KR", "KW", "KG", "LA", "LV", "LB", "LS", "LR", "LY", "LI", "LT", "LU", "MO", "MG", "MW", "MY", "MV", "ML", "MT", "MH", "MQ", "MR", "MU", "YT", "MX", "FM", "MD", "MC", "MN", "ME", "MS", "MA", "MZ", "MM", "NA", "NR", "NP", "NL", "NC", "NZ", "NI", "NE", "NG", "NU", "NF", "MK", "MP", "NO", "OM", "PK", "PW", "PS", "PA", "PG", "PY", "PE", "PH", "PN", "PL", "PT", "PR", "QA", "RE", "RO", "RU", "RW", "BL", "SH", "KN", "LC", "MF", "PM", "VC", "WS", "SM", "ST", "SA", "SN", "RS", "SC", "SL", "SG", "SX", "SK", "SI", "SB", "SO", "ZA", "GS", "SS", "ES", "LK", "SD", "SR", "SJ", "SE", "CH", "SY", "TW", "TJ", "TZ", "TH", "TL", "TG", "TK", "TO", "TT", "TN", "TR", "TM", "TC", "TV", "UG", "UA", "AE", "GB", "UM", "US", "UY", "UZ", "VU", "VE", "VN", "VG", "VI", "WF", "EH", "YE", "ZM", "ZW"];
|
|
727
|
+
};
|
|
728
|
+
readonly port_of_origin: {
|
|
729
|
+
readonly type: "string";
|
|
730
|
+
readonly pattern: "^[A-Z]+$";
|
|
731
|
+
};
|
|
732
|
+
readonly supplier_id: {
|
|
733
|
+
readonly type: "string";
|
|
734
|
+
readonly pattern: "^SUP\\d{5}$";
|
|
735
|
+
};
|
|
736
|
+
readonly supplier_name: {
|
|
737
|
+
readonly type: "string";
|
|
738
|
+
};
|
|
739
|
+
readonly factory_id: {
|
|
740
|
+
readonly type: "string";
|
|
741
|
+
readonly pattern: "^FAC\\d{5}$";
|
|
742
|
+
};
|
|
743
|
+
readonly first_purchased_at: {
|
|
744
|
+
readonly type: "string";
|
|
745
|
+
readonly format: "date-time";
|
|
746
|
+
};
|
|
747
|
+
readonly range: {
|
|
748
|
+
readonly type: readonly ["string", "null"];
|
|
749
|
+
readonly enum: readonly ["Main Collection", "Seasonal"];
|
|
750
|
+
};
|
|
751
|
+
readonly channel_exclusivity: {
|
|
752
|
+
readonly type: readonly ["string", "null"];
|
|
753
|
+
};
|
|
754
|
+
readonly collections: {
|
|
755
|
+
readonly type: readonly ["string"];
|
|
756
|
+
};
|
|
757
|
+
readonly seasons: {
|
|
758
|
+
readonly type: readonly ["string"];
|
|
759
|
+
readonly pattern: "^(AW|SS|FW|SP)[0-9]{2}$";
|
|
760
|
+
};
|
|
761
|
+
readonly block: {
|
|
762
|
+
readonly type: "string";
|
|
763
|
+
};
|
|
764
|
+
readonly packing_method: {
|
|
765
|
+
readonly type: readonly ["string", "null"];
|
|
766
|
+
readonly enum: readonly ["Standard", "Hanging"];
|
|
767
|
+
};
|
|
768
|
+
readonly is_bought_in_product: {
|
|
769
|
+
readonly type: "boolean";
|
|
770
|
+
};
|
|
771
|
+
readonly division: {
|
|
772
|
+
readonly type: readonly ["string", "null"];
|
|
773
|
+
readonly enum: readonly ["Women"];
|
|
774
|
+
};
|
|
775
|
+
readonly drops: {
|
|
776
|
+
readonly type: readonly ["string"];
|
|
777
|
+
};
|
|
778
|
+
readonly first_markdown_at: {
|
|
779
|
+
readonly type: "string";
|
|
780
|
+
readonly format: "date-time";
|
|
781
|
+
};
|
|
782
|
+
readonly measurement_table: {
|
|
783
|
+
readonly type: readonly ["string"];
|
|
784
|
+
};
|
|
785
|
+
readonly stock_type: {
|
|
786
|
+
readonly type: "string";
|
|
787
|
+
};
|
|
788
|
+
readonly development_type: {
|
|
789
|
+
readonly type: "string";
|
|
790
|
+
readonly pattern: "^[A-Z]{2}\\d{2}[A-Z]{3}-\\d{6}$";
|
|
791
|
+
};
|
|
792
|
+
readonly occasion: {
|
|
793
|
+
readonly type: "string";
|
|
794
|
+
};
|
|
795
|
+
readonly strategy_type: {
|
|
796
|
+
readonly type: "string";
|
|
797
|
+
};
|
|
798
|
+
readonly pattern_name: {
|
|
799
|
+
readonly type: "string";
|
|
800
|
+
};
|
|
801
|
+
readonly fit_type: {
|
|
802
|
+
readonly type: "string";
|
|
803
|
+
};
|
|
804
|
+
readonly neckline: {
|
|
805
|
+
readonly type: "string";
|
|
806
|
+
};
|
|
807
|
+
readonly sleeve_length: {
|
|
808
|
+
readonly type: "string";
|
|
809
|
+
readonly nullable: true;
|
|
810
|
+
};
|
|
811
|
+
readonly heel_height: {
|
|
812
|
+
readonly type: readonly ["string", "null"];
|
|
813
|
+
};
|
|
814
|
+
readonly heel_shape: {
|
|
815
|
+
readonly type: "string";
|
|
816
|
+
};
|
|
817
|
+
readonly toe_shape: {
|
|
818
|
+
readonly type: "string";
|
|
819
|
+
};
|
|
820
|
+
readonly trouser_fit: {
|
|
821
|
+
readonly type: "string";
|
|
822
|
+
readonly nullable: true;
|
|
823
|
+
};
|
|
824
|
+
readonly leg_length: {
|
|
825
|
+
readonly type: "string";
|
|
826
|
+
readonly nullable: true;
|
|
827
|
+
};
|
|
828
|
+
readonly handle_straps: {
|
|
829
|
+
readonly type: "string";
|
|
830
|
+
};
|
|
831
|
+
readonly fastening: {
|
|
832
|
+
readonly type: "string";
|
|
833
|
+
};
|
|
834
|
+
readonly sole_code: {
|
|
835
|
+
readonly type: "string";
|
|
836
|
+
};
|
|
837
|
+
readonly fashionability: {
|
|
838
|
+
readonly type: readonly ["string", "null"];
|
|
839
|
+
readonly enum: readonly ["Core"];
|
|
840
|
+
};
|
|
841
|
+
readonly weight: {
|
|
842
|
+
readonly type: "number";
|
|
843
|
+
readonly minimum: 1;
|
|
844
|
+
};
|
|
845
|
+
readonly average_weight_grams: {
|
|
846
|
+
readonly type: "number";
|
|
847
|
+
readonly minimum: 1;
|
|
848
|
+
};
|
|
849
|
+
readonly care_instructions: {
|
|
850
|
+
readonly type: "string";
|
|
851
|
+
};
|
|
852
|
+
readonly size_guide: {
|
|
853
|
+
readonly type: "string";
|
|
854
|
+
};
|
|
855
|
+
};
|
|
856
|
+
readonly required: readonly ["main_fibre", "merch_product_category", "product_type", "pattern_name", "fit_type", "care_instructions", "size_guide", "block", "stock_type", "packing_method", "is_bought_in_product", "merch_product_subcategory", "division", "range", "occasion", "strategy_type", "neckline", "sleeve_length", "leg_length", "heel_height", "heel_shape", "toe_shape", "handle_straps", "fastening", "sole_code", "fashionability", "weight", "average_weight_grams", "length_measurement"];
|
|
857
|
+
};
|
|
858
|
+
};
|
|
859
|
+
readonly required: readonly ["product_id", "style_id", "product_name", "variants", "images", "attributes", "is_available_to_order", "created_at", "last_modified_at", "colour_family_name", "colour_label", "vat_amount"];
|
|
860
|
+
readonly $id: "https://shushed.example.com/product.schema.json";
|
|
861
|
+
};
|
|
862
|
+
|
|
863
|
+
declare const schema$j: {
|
|
622
864
|
readonly $schema: "http://json-schema.org/draft-07/schema#";
|
|
623
865
|
readonly title: "Total";
|
|
624
866
|
readonly type: "object";
|
|
@@ -791,7 +1033,7 @@ declare const schema$i: {
|
|
|
791
1033
|
readonly $id: "https://shushed.example.com/total.schema.json";
|
|
792
1034
|
};
|
|
793
1035
|
|
|
794
|
-
declare const schema$
|
|
1036
|
+
declare const schema$i: {
|
|
795
1037
|
readonly $schema: "http://json-schema.org/draft-07/schema#";
|
|
796
1038
|
readonly title: "EANChange";
|
|
797
1039
|
readonly additionalProperties: false;
|
|
@@ -808,7 +1050,7 @@ declare const schema$h: {
|
|
|
808
1050
|
readonly $id: "https://shushed.example.com/messages/ean-change.schema.json";
|
|
809
1051
|
};
|
|
810
1052
|
|
|
811
|
-
declare const schema$
|
|
1053
|
+
declare const schema$h: {
|
|
812
1054
|
readonly $schema: "http://json-schema.org/draft-07/schema#";
|
|
813
1055
|
readonly title: "PriceChange";
|
|
814
1056
|
readonly additionalProperties: false;
|
|
@@ -863,7 +1105,7 @@ declare const schema$g: {
|
|
|
863
1105
|
readonly $id: "https://shushed.example.com/messages/price-change.schema.json";
|
|
864
1106
|
};
|
|
865
1107
|
|
|
866
|
-
declare const schema$
|
|
1108
|
+
declare const schema$g: {
|
|
867
1109
|
readonly $schema: "http://json-schema.org/draft-07/schema#";
|
|
868
1110
|
readonly title: "OrderReturnInitiated";
|
|
869
1111
|
readonly additionalProperties: false;
|
|
@@ -1378,6 +1620,256 @@ declare const schema$f: {
|
|
|
1378
1620
|
readonly $id: "https://shushed.example.com/messages/product-draft.schema.json";
|
|
1379
1621
|
};
|
|
1380
1622
|
|
|
1623
|
+
declare const schema$f: {
|
|
1624
|
+
readonly $schema: "http://json-schema.org/draft-07/schema#";
|
|
1625
|
+
readonly title: "ProductChange";
|
|
1626
|
+
readonly additionalProperties: false;
|
|
1627
|
+
readonly allOf: readonly [{
|
|
1628
|
+
readonly $schema: "http://json-schema.org/draft-07/schema#";
|
|
1629
|
+
readonly title: "Product";
|
|
1630
|
+
readonly additionalProperties: false;
|
|
1631
|
+
readonly type: "object";
|
|
1632
|
+
readonly properties: {
|
|
1633
|
+
readonly product_id: {
|
|
1634
|
+
readonly type: "string";
|
|
1635
|
+
};
|
|
1636
|
+
readonly style_id: {
|
|
1637
|
+
readonly type: readonly ["string"];
|
|
1638
|
+
};
|
|
1639
|
+
readonly colour_code: {
|
|
1640
|
+
readonly type: "string";
|
|
1641
|
+
readonly pattern: "^[a-z]+(-[a-z]+)*$";
|
|
1642
|
+
};
|
|
1643
|
+
readonly product_name: {
|
|
1644
|
+
readonly type: "string";
|
|
1645
|
+
};
|
|
1646
|
+
readonly is_available_to_order: {
|
|
1647
|
+
readonly type: "boolean";
|
|
1648
|
+
};
|
|
1649
|
+
readonly created_at: {
|
|
1650
|
+
readonly type: "string";
|
|
1651
|
+
readonly format: "date-time";
|
|
1652
|
+
};
|
|
1653
|
+
readonly last_modified_at: {
|
|
1654
|
+
readonly type: "string";
|
|
1655
|
+
readonly format: "date-time";
|
|
1656
|
+
};
|
|
1657
|
+
readonly colour_family_name: {
|
|
1658
|
+
readonly type: "string";
|
|
1659
|
+
};
|
|
1660
|
+
readonly colour_label: {
|
|
1661
|
+
readonly type: "string";
|
|
1662
|
+
readonly pattern: "^[A-Z][a-z]+( [A-Z][a-z]+)*$";
|
|
1663
|
+
};
|
|
1664
|
+
readonly variants: {
|
|
1665
|
+
readonly type: "array";
|
|
1666
|
+
readonly items: {
|
|
1667
|
+
readonly type: "object";
|
|
1668
|
+
readonly properties: {
|
|
1669
|
+
readonly size: {
|
|
1670
|
+
readonly type: "string";
|
|
1671
|
+
};
|
|
1672
|
+
readonly size_label: {
|
|
1673
|
+
readonly type: readonly ["string"];
|
|
1674
|
+
};
|
|
1675
|
+
};
|
|
1676
|
+
readonly required: readonly ["size", "size_label"];
|
|
1677
|
+
};
|
|
1678
|
+
};
|
|
1679
|
+
readonly images: {
|
|
1680
|
+
readonly type: "array";
|
|
1681
|
+
readonly properties: {
|
|
1682
|
+
readonly image_type: {
|
|
1683
|
+
readonly type: "string";
|
|
1684
|
+
readonly enum: readonly ["Campaign", "Ecom x 4", "Flat lay", "UGC (multiple)", "AI Images"];
|
|
1685
|
+
};
|
|
1686
|
+
readonly image_url: {
|
|
1687
|
+
readonly type: "string";
|
|
1688
|
+
readonly format: "uri";
|
|
1689
|
+
};
|
|
1690
|
+
readonly path: {
|
|
1691
|
+
readonly type: "string";
|
|
1692
|
+
};
|
|
1693
|
+
readonly title: {
|
|
1694
|
+
readonly type: "string";
|
|
1695
|
+
};
|
|
1696
|
+
};
|
|
1697
|
+
readonly required: readonly ["image_type", "image_url", "path", "title"];
|
|
1698
|
+
};
|
|
1699
|
+
readonly vat_amount: {
|
|
1700
|
+
readonly type: "number";
|
|
1701
|
+
readonly minimum: 0;
|
|
1702
|
+
};
|
|
1703
|
+
readonly commodity_code_ref: {
|
|
1704
|
+
readonly type: "string";
|
|
1705
|
+
};
|
|
1706
|
+
readonly attributes: {
|
|
1707
|
+
readonly type: "object";
|
|
1708
|
+
readonly properties: {
|
|
1709
|
+
readonly product_type: {
|
|
1710
|
+
readonly type: "string";
|
|
1711
|
+
};
|
|
1712
|
+
readonly main_fibre: {
|
|
1713
|
+
readonly type: "string";
|
|
1714
|
+
};
|
|
1715
|
+
readonly merch_product_category: {
|
|
1716
|
+
readonly type: "string";
|
|
1717
|
+
};
|
|
1718
|
+
readonly merch_product_subcategory: {
|
|
1719
|
+
readonly type: "string";
|
|
1720
|
+
};
|
|
1721
|
+
readonly extra_selling_point: {
|
|
1722
|
+
readonly type: "string";
|
|
1723
|
+
};
|
|
1724
|
+
readonly length_measurement: {
|
|
1725
|
+
readonly type: readonly ["string", "null"];
|
|
1726
|
+
};
|
|
1727
|
+
readonly country_of_origin: {
|
|
1728
|
+
readonly $schema: "http://json-schema.org/draft-07/schema#";
|
|
1729
|
+
readonly title: "Country";
|
|
1730
|
+
readonly type: "string";
|
|
1731
|
+
readonly enum: readonly ["AF", "AX", "AL", "DZ", "AS", "AD", "AO", "AI", "AQ", "AG", "AR", "AM", "AW", "AU", "AT", "AZ", "BS", "BH", "BD", "BB", "BY", "BE", "BZ", "BJ", "BM", "BT", "BO", "BQ", "BA", "BW", "BV", "BR", "IO", "BN", "BG", "BF", "BI", "CV", "KH", "CM", "CA", "KY", "CF", "TD", "CL", "CN", "CX", "CC", "CO", "KM", "CD", "CG", "CK", "CR", "CI", "HR", "CU", "CW", "CY", "CZ", "DK", "DJ", "DM", "DO", "EC", "EG", "SV", "GQ", "ER", "EE", "SZ", "ET", "FK", "FO", "FJ", "FI", "FR", "GF", "PF", "TF", "GA", "GM", "GE", "DE", "GH", "GI", "GR", "GL", "GD", "GP", "GU", "GT", "GG", "GN", "GW", "GY", "HT", "HM", "VA", "HN", "HK", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IM", "IL", "IT", "JM", "JP", "JE", "JO", "KZ", "KE", "KI", "KP", "KR", "KW", "KG", "LA", "LV", "LB", "LS", "LR", "LY", "LI", "LT", "LU", "MO", "MG", "MW", "MY", "MV", "ML", "MT", "MH", "MQ", "MR", "MU", "YT", "MX", "FM", "MD", "MC", "MN", "ME", "MS", "MA", "MZ", "MM", "NA", "NR", "NP", "NL", "NC", "NZ", "NI", "NE", "NG", "NU", "NF", "MK", "MP", "NO", "OM", "PK", "PW", "PS", "PA", "PG", "PY", "PE", "PH", "PN", "PL", "PT", "PR", "QA", "RE", "RO", "RU", "RW", "BL", "SH", "KN", "LC", "MF", "PM", "VC", "WS", "SM", "ST", "SA", "SN", "RS", "SC", "SL", "SG", "SX", "SK", "SI", "SB", "SO", "ZA", "GS", "SS", "ES", "LK", "SD", "SR", "SJ", "SE", "CH", "SY", "TW", "TJ", "TZ", "TH", "TL", "TG", "TK", "TO", "TT", "TN", "TR", "TM", "TC", "TV", "UG", "UA", "AE", "GB", "UM", "US", "UY", "UZ", "VU", "VE", "VN", "VG", "VI", "WF", "EH", "YE", "ZM", "ZW"];
|
|
1732
|
+
};
|
|
1733
|
+
readonly port_of_origin: {
|
|
1734
|
+
readonly type: "string";
|
|
1735
|
+
readonly pattern: "^[A-Z]+$";
|
|
1736
|
+
};
|
|
1737
|
+
readonly supplier_id: {
|
|
1738
|
+
readonly type: "string";
|
|
1739
|
+
readonly pattern: "^SUP\\d{5}$";
|
|
1740
|
+
};
|
|
1741
|
+
readonly supplier_name: {
|
|
1742
|
+
readonly type: "string";
|
|
1743
|
+
};
|
|
1744
|
+
readonly factory_id: {
|
|
1745
|
+
readonly type: "string";
|
|
1746
|
+
readonly pattern: "^FAC\\d{5}$";
|
|
1747
|
+
};
|
|
1748
|
+
readonly first_purchased_at: {
|
|
1749
|
+
readonly type: "string";
|
|
1750
|
+
readonly format: "date-time";
|
|
1751
|
+
};
|
|
1752
|
+
readonly range: {
|
|
1753
|
+
readonly type: readonly ["string", "null"];
|
|
1754
|
+
readonly enum: readonly ["Main Collection", "Seasonal"];
|
|
1755
|
+
};
|
|
1756
|
+
readonly channel_exclusivity: {
|
|
1757
|
+
readonly type: readonly ["string", "null"];
|
|
1758
|
+
};
|
|
1759
|
+
readonly collections: {
|
|
1760
|
+
readonly type: readonly ["string"];
|
|
1761
|
+
};
|
|
1762
|
+
readonly seasons: {
|
|
1763
|
+
readonly type: readonly ["string"];
|
|
1764
|
+
readonly pattern: "^(AW|SS|FW|SP)[0-9]{2}$";
|
|
1765
|
+
};
|
|
1766
|
+
readonly block: {
|
|
1767
|
+
readonly type: "string";
|
|
1768
|
+
};
|
|
1769
|
+
readonly packing_method: {
|
|
1770
|
+
readonly type: readonly ["string", "null"];
|
|
1771
|
+
readonly enum: readonly ["Standard", "Hanging"];
|
|
1772
|
+
};
|
|
1773
|
+
readonly is_bought_in_product: {
|
|
1774
|
+
readonly type: "boolean";
|
|
1775
|
+
};
|
|
1776
|
+
readonly division: {
|
|
1777
|
+
readonly type: readonly ["string", "null"];
|
|
1778
|
+
readonly enum: readonly ["Women"];
|
|
1779
|
+
};
|
|
1780
|
+
readonly drops: {
|
|
1781
|
+
readonly type: readonly ["string"];
|
|
1782
|
+
};
|
|
1783
|
+
readonly first_markdown_at: {
|
|
1784
|
+
readonly type: "string";
|
|
1785
|
+
readonly format: "date-time";
|
|
1786
|
+
};
|
|
1787
|
+
readonly measurement_table: {
|
|
1788
|
+
readonly type: readonly ["string"];
|
|
1789
|
+
};
|
|
1790
|
+
readonly stock_type: {
|
|
1791
|
+
readonly type: "string";
|
|
1792
|
+
};
|
|
1793
|
+
readonly development_type: {
|
|
1794
|
+
readonly type: "string";
|
|
1795
|
+
readonly pattern: "^[A-Z]{2}\\d{2}[A-Z]{3}-\\d{6}$";
|
|
1796
|
+
};
|
|
1797
|
+
readonly occasion: {
|
|
1798
|
+
readonly type: "string";
|
|
1799
|
+
};
|
|
1800
|
+
readonly strategy_type: {
|
|
1801
|
+
readonly type: "string";
|
|
1802
|
+
};
|
|
1803
|
+
readonly pattern_name: {
|
|
1804
|
+
readonly type: "string";
|
|
1805
|
+
};
|
|
1806
|
+
readonly fit_type: {
|
|
1807
|
+
readonly type: "string";
|
|
1808
|
+
};
|
|
1809
|
+
readonly neckline: {
|
|
1810
|
+
readonly type: "string";
|
|
1811
|
+
};
|
|
1812
|
+
readonly sleeve_length: {
|
|
1813
|
+
readonly type: "string";
|
|
1814
|
+
readonly nullable: true;
|
|
1815
|
+
};
|
|
1816
|
+
readonly heel_height: {
|
|
1817
|
+
readonly type: readonly ["string", "null"];
|
|
1818
|
+
};
|
|
1819
|
+
readonly heel_shape: {
|
|
1820
|
+
readonly type: "string";
|
|
1821
|
+
};
|
|
1822
|
+
readonly toe_shape: {
|
|
1823
|
+
readonly type: "string";
|
|
1824
|
+
};
|
|
1825
|
+
readonly trouser_fit: {
|
|
1826
|
+
readonly type: "string";
|
|
1827
|
+
readonly nullable: true;
|
|
1828
|
+
};
|
|
1829
|
+
readonly leg_length: {
|
|
1830
|
+
readonly type: "string";
|
|
1831
|
+
readonly nullable: true;
|
|
1832
|
+
};
|
|
1833
|
+
readonly handle_straps: {
|
|
1834
|
+
readonly type: "string";
|
|
1835
|
+
};
|
|
1836
|
+
readonly fastening: {
|
|
1837
|
+
readonly type: "string";
|
|
1838
|
+
};
|
|
1839
|
+
readonly sole_code: {
|
|
1840
|
+
readonly type: "string";
|
|
1841
|
+
};
|
|
1842
|
+
readonly fashionability: {
|
|
1843
|
+
readonly type: readonly ["string", "null"];
|
|
1844
|
+
readonly enum: readonly ["Core"];
|
|
1845
|
+
};
|
|
1846
|
+
readonly weight: {
|
|
1847
|
+
readonly type: "number";
|
|
1848
|
+
readonly minimum: 1;
|
|
1849
|
+
};
|
|
1850
|
+
readonly average_weight_grams: {
|
|
1851
|
+
readonly type: "number";
|
|
1852
|
+
readonly minimum: 1;
|
|
1853
|
+
};
|
|
1854
|
+
readonly care_instructions: {
|
|
1855
|
+
readonly type: "string";
|
|
1856
|
+
};
|
|
1857
|
+
readonly size_guide: {
|
|
1858
|
+
readonly type: "string";
|
|
1859
|
+
};
|
|
1860
|
+
};
|
|
1861
|
+
readonly required: readonly ["main_fibre", "merch_product_category", "product_type", "pattern_name", "fit_type", "care_instructions", "size_guide", "block", "stock_type", "packing_method", "is_bought_in_product", "merch_product_subcategory", "division", "range", "occasion", "strategy_type", "neckline", "sleeve_length", "leg_length", "heel_height", "heel_shape", "toe_shape", "handle_straps", "fastening", "sole_code", "fashionability", "weight", "average_weight_grams", "length_measurement"];
|
|
1862
|
+
};
|
|
1863
|
+
};
|
|
1864
|
+
readonly required: readonly ["product_id", "style_id", "product_name", "variants", "images", "attributes", "is_available_to_order", "created_at", "last_modified_at", "colour_family_name", "colour_label", "vat_amount"];
|
|
1865
|
+
}, {
|
|
1866
|
+
readonly type: "object";
|
|
1867
|
+
readonly additionalProperties: false;
|
|
1868
|
+
readonly required: readonly ["product_id", "style_id", "product_name", "variants", "images", "attributes", "is_available_to_order", "created_at", "last_modified_at", "colour_family_name", "colour_label", "vat_amount"];
|
|
1869
|
+
}];
|
|
1870
|
+
readonly $id: "https://shushed.example.com/messages/product-change.schema.json";
|
|
1871
|
+
};
|
|
1872
|
+
|
|
1381
1873
|
declare const schema$e: {
|
|
1382
1874
|
readonly $schema: "http://json-schema.org/draft-07/schema#";
|
|
1383
1875
|
readonly title: "OrderDelivered";
|
|
@@ -20637,7 +21129,7 @@ declare namespace index$g {
|
|
|
20637
21129
|
}
|
|
20638
21130
|
|
|
20639
21131
|
declare namespace index$f {
|
|
20640
|
-
export { schema$
|
|
21132
|
+
export { schema$i as EanChange, index$g as Order, schema$h as PriceChange, schema$f as Product, schema$g as ProductDraft };
|
|
20641
21133
|
}
|
|
20642
21134
|
|
|
20643
21135
|
declare const schema$8: {
|
|
@@ -26676,16 +27168,16 @@ declare namespace index$a {
|
|
|
26676
27168
|
}
|
|
26677
27169
|
|
|
26678
27170
|
declare namespace index$9 {
|
|
26679
|
-
export { schema$
|
|
27171
|
+
export { schema$p as Country, schema$o as Currency, index$f as Messages, schema$n as Money, index$a as Order, schema$m as Price, schema$k as Product, schema$l as ProductDraft, schema$j as Total };
|
|
26680
27172
|
}
|
|
26681
27173
|
|
|
26682
|
-
type __MainSchema$
|
|
27174
|
+
type __MainSchema$u = ("AF" | "AX" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "AQ" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BM" | "BT" | "BO" | "BQ" | "BA" | "BW" | "BV" | "BR" | "IO" | "BN" | "BG" | "BF" | "BI" | "CV" | "KH" | "CM" | "CA" | "KY" | "CF" | "TD" | "CL" | "CN" | "CX" | "CC" | "CO" | "KM" | "CD" | "CG" | "CK" | "CR" | "CI" | "HR" | "CU" | "CW" | "CY" | "CZ" | "DK" | "DJ" | "DM" | "DO" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "SZ" | "ET" | "FK" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "TF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GI" | "GR" | "GL" | "GD" | "GP" | "GU" | "GT" | "GG" | "GN" | "GW" | "GY" | "HT" | "HM" | "VA" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "KP" | "KR" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LY" | "LI" | "LT" | "LU" | "MO" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MH" | "MQ" | "MR" | "MU" | "YT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "MM" | "NA" | "NR" | "NP" | "NL" | "NC" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "MK" | "MP" | "NO" | "OM" | "PK" | "PW" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PN" | "PL" | "PT" | "PR" | "QA" | "RE" | "RO" | "RU" | "RW" | "BL" | "SH" | "KN" | "LC" | "MF" | "PM" | "VC" | "WS" | "SM" | "ST" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SX" | "SK" | "SI" | "SB" | "SO" | "ZA" | "GS" | "SS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SE" | "CH" | "SY" | "TW" | "TJ" | "TZ" | "TH" | "TL" | "TG" | "TK" | "TO" | "TT" | "TN" | "TR" | "TM" | "TC" | "TV" | "UG" | "UA" | "AE" | "GB" | "UM" | "US" | "UY" | "UZ" | "VU" | "VE" | "VN" | "VG" | "VI" | "WF" | "EH" | "YE" | "ZM" | "ZW");
|
|
26683
27175
|
|
|
26684
|
-
type __MainSchema$
|
|
27176
|
+
type __MainSchema$t = ("AFN" | "ALL" | "DZD" | "USD" | "EUR" | "AOA" | "XCD" | "ARS" | "AMD" | "AWG" | "AUD" | "AZN" | "BSD" | "BHD" | "BDT" | "BBD" | "BYN" | "BZD" | "XOF" | "BMD" | "BTN" | "INR" | "BOB" | "BOV" | "BAM" | "BWP" | "NOK" | "BRL" | "BND" | "BGN" | "BIF" | "CVE" | "KHR" | "XAF" | "CAD" | "KYD" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "KMF" | "CDF" | "NZD" | "CRC" | "CUC" | "CUP" | "ANG" | "CZK" | "DKK" | "DJF" | "DOP" | "EGP" | "SVC" | "ERN" | "ETB" | "FKP" | "FJD" | "XPF" | "GMD" | "GEL" | "GHS" | "GIP" | "GTQ" | "GBP" | "GNF" | "GYD" | "HTG" | "HNL" | "HKD" | "HUF" | "ISK" | "IDR" | "XDR" | "IRR" | "IQD" | "ILS" | "JMD" | "JPY" | "JOD" | "KZT" | "KES" | "KPW" | "KRW" | "KWD" | "KGS" | "LAK" | "LBP" | "LSL" | "ZAR" | "LRD" | "LYD" | "CHF" | "MOP" | "MGA" | "MWK" | "MYR" | "MVR" | "MRU" | "MUR" | "XUA" | "MXN" | "MXV" | "MDL" | "MNT" | "MAD" | "MZN" | "MMK" | "NAD" | "NPR" | "NIO" | "NGN" | "OMR" | "PKR" | "PAB" | "PGK" | "PYG" | "PEN" | "PHP" | "PLN" | "QAR" | "MKD" | "RON" | "RUB" | "RWF" | "SHP" | "WST" | "STN" | "SAR" | "RSD" | "SCR" | "SLE" | "SGD" | "XSU" | "SBD" | "SOS" | "SSP" | "LKR" | "SDG" | "SRD" | "SZL" | "SEK" | "CHE" | "CHW" | "SYP" | "TWD" | "TJS" | "TZS" | "THB" | "TOP" | "TTD" | "TND" | "TRY" | "TMT" | "UGX" | "UAH" | "AED" | "USN" | "UYI" | "UYU" | "UZS" | "VUV" | "VEF" | "VED" | "VND" | "YER" | "ZMW" | "ZWL");
|
|
26685
27177
|
|
|
26686
27178
|
type Currency$l = ("AFN" | "ALL" | "DZD" | "USD" | "EUR" | "AOA" | "XCD" | "ARS" | "AMD" | "AWG" | "AUD" | "AZN" | "BSD" | "BHD" | "BDT" | "BBD" | "BYN" | "BZD" | "XOF" | "BMD" | "BTN" | "INR" | "BOB" | "BOV" | "BAM" | "BWP" | "NOK" | "BRL" | "BND" | "BGN" | "BIF" | "CVE" | "KHR" | "XAF" | "CAD" | "KYD" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "KMF" | "CDF" | "NZD" | "CRC" | "CUC" | "CUP" | "ANG" | "CZK" | "DKK" | "DJF" | "DOP" | "EGP" | "SVC" | "ERN" | "ETB" | "FKP" | "FJD" | "XPF" | "GMD" | "GEL" | "GHS" | "GIP" | "GTQ" | "GBP" | "GNF" | "GYD" | "HTG" | "HNL" | "HKD" | "HUF" | "ISK" | "IDR" | "XDR" | "IRR" | "IQD" | "ILS" | "JMD" | "JPY" | "JOD" | "KZT" | "KES" | "KPW" | "KRW" | "KWD" | "KGS" | "LAK" | "LBP" | "LSL" | "ZAR" | "LRD" | "LYD" | "CHF" | "MOP" | "MGA" | "MWK" | "MYR" | "MVR" | "MRU" | "MUR" | "XUA" | "MXN" | "MXV" | "MDL" | "MNT" | "MAD" | "MZN" | "MMK" | "NAD" | "NPR" | "NIO" | "NGN" | "OMR" | "PKR" | "PAB" | "PGK" | "PYG" | "PEN" | "PHP" | "PLN" | "QAR" | "MKD" | "RON" | "RUB" | "RWF" | "SHP" | "WST" | "STN" | "SAR" | "RSD" | "SCR" | "SLE" | "SGD" | "XSU" | "SBD" | "SOS" | "SSP" | "LKR" | "SDG" | "SRD" | "SZL" | "SEK" | "CHE" | "CHW" | "SYP" | "TWD" | "TJS" | "TZS" | "THB" | "TOP" | "TTD" | "TND" | "TRY" | "TMT" | "UGX" | "UAH" | "AED" | "USN" | "UYI" | "UYU" | "UZS" | "VUV" | "VEF" | "VED" | "VND" | "YER" | "ZMW" | "ZWL");
|
|
26687
27179
|
type LCYCurrency$j = ("AFN" | "ALL" | "DZD" | "USD" | "EUR" | "AOA" | "XCD" | "ARS" | "AMD" | "AWG" | "AUD" | "AZN" | "BSD" | "BHD" | "BDT" | "BBD" | "BYN" | "BZD" | "XOF" | "BMD" | "BTN" | "INR" | "BOB" | "BOV" | "BAM" | "BWP" | "NOK" | "BRL" | "BND" | "BGN" | "BIF" | "CVE" | "KHR" | "XAF" | "CAD" | "KYD" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "KMF" | "CDF" | "NZD" | "CRC" | "CUC" | "CUP" | "ANG" | "CZK" | "DKK" | "DJF" | "DOP" | "EGP" | "SVC" | "ERN" | "ETB" | "FKP" | "FJD" | "XPF" | "GMD" | "GEL" | "GHS" | "GIP" | "GTQ" | "GBP" | "GNF" | "GYD" | "HTG" | "HNL" | "HKD" | "HUF" | "ISK" | "IDR" | "XDR" | "IRR" | "IQD" | "ILS" | "JMD" | "JPY" | "JOD" | "KZT" | "KES" | "KPW" | "KRW" | "KWD" | "KGS" | "LAK" | "LBP" | "LSL" | "ZAR" | "LRD" | "LYD" | "CHF" | "MOP" | "MGA" | "MWK" | "MYR" | "MVR" | "MRU" | "MUR" | "XUA" | "MXN" | "MXV" | "MDL" | "MNT" | "MAD" | "MZN" | "MMK" | "NAD" | "NPR" | "NIO" | "NGN" | "OMR" | "PKR" | "PAB" | "PGK" | "PYG" | "PEN" | "PHP" | "PLN" | "QAR" | "MKD" | "RON" | "RUB" | "RWF" | "SHP" | "WST" | "STN" | "SAR" | "RSD" | "SCR" | "SLE" | "SGD" | "XSU" | "SBD" | "SOS" | "SSP" | "LKR" | "SDG" | "SRD" | "SZL" | "SEK" | "CHE" | "CHW" | "SYP" | "TWD" | "TJS" | "TZS" | "THB" | "TOP" | "TTD" | "TND" | "TRY" | "TMT" | "UGX" | "UAH" | "AED" | "USN" | "UYI" | "UYU" | "UZS" | "VUV" | "VEF" | "VED" | "VND" | "YER" | "ZMW" | "ZWL");
|
|
26688
|
-
interface __MainSchema$
|
|
27180
|
+
interface __MainSchema$s {
|
|
26689
27181
|
value: number;
|
|
26690
27182
|
decimal_places: number;
|
|
26691
27183
|
currency: Currency$l;
|
|
@@ -26695,7 +27187,7 @@ interface __MainSchema$q {
|
|
|
26695
27187
|
}
|
|
26696
27188
|
|
|
26697
27189
|
type Currency$k = ("AFN" | "ALL" | "DZD" | "USD" | "EUR" | "AOA" | "XCD" | "ARS" | "AMD" | "AWG" | "AUD" | "AZN" | "BSD" | "BHD" | "BDT" | "BBD" | "BYN" | "BZD" | "XOF" | "BMD" | "BTN" | "INR" | "BOB" | "BOV" | "BAM" | "BWP" | "NOK" | "BRL" | "BND" | "BGN" | "BIF" | "CVE" | "KHR" | "XAF" | "CAD" | "KYD" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "KMF" | "CDF" | "NZD" | "CRC" | "CUC" | "CUP" | "ANG" | "CZK" | "DKK" | "DJF" | "DOP" | "EGP" | "SVC" | "ERN" | "ETB" | "FKP" | "FJD" | "XPF" | "GMD" | "GEL" | "GHS" | "GIP" | "GTQ" | "GBP" | "GNF" | "GYD" | "HTG" | "HNL" | "HKD" | "HUF" | "ISK" | "IDR" | "XDR" | "IRR" | "IQD" | "ILS" | "JMD" | "JPY" | "JOD" | "KZT" | "KES" | "KPW" | "KRW" | "KWD" | "KGS" | "LAK" | "LBP" | "LSL" | "ZAR" | "LRD" | "LYD" | "CHF" | "MOP" | "MGA" | "MWK" | "MYR" | "MVR" | "MRU" | "MUR" | "XUA" | "MXN" | "MXV" | "MDL" | "MNT" | "MAD" | "MZN" | "MMK" | "NAD" | "NPR" | "NIO" | "NGN" | "OMR" | "PKR" | "PAB" | "PGK" | "PYG" | "PEN" | "PHP" | "PLN" | "QAR" | "MKD" | "RON" | "RUB" | "RWF" | "SHP" | "WST" | "STN" | "SAR" | "RSD" | "SCR" | "SLE" | "SGD" | "XSU" | "SBD" | "SOS" | "SSP" | "LKR" | "SDG" | "SRD" | "SZL" | "SEK" | "CHE" | "CHW" | "SYP" | "TWD" | "TJS" | "TZS" | "THB" | "TOP" | "TTD" | "TND" | "TRY" | "TMT" | "UGX" | "UAH" | "AED" | "USN" | "UYI" | "UYU" | "UZS" | "VUV" | "VEF" | "VED" | "VND" | "YER" | "ZMW" | "ZWL");
|
|
26698
|
-
interface __MainSchema$
|
|
27190
|
+
interface __MainSchema$r {
|
|
26699
27191
|
style_id?: (string | null);
|
|
26700
27192
|
colour_id?: (string | null);
|
|
26701
27193
|
full_price?: number;
|
|
@@ -26707,8 +27199,8 @@ interface __MainSchema$p {
|
|
|
26707
27199
|
|
|
26708
27200
|
type Currency$j = ("AFN" | "ALL" | "DZD" | "USD" | "EUR" | "AOA" | "XCD" | "ARS" | "AMD" | "AWG" | "AUD" | "AZN" | "BSD" | "BHD" | "BDT" | "BBD" | "BYN" | "BZD" | "XOF" | "BMD" | "BTN" | "INR" | "BOB" | "BOV" | "BAM" | "BWP" | "NOK" | "BRL" | "BND" | "BGN" | "BIF" | "CVE" | "KHR" | "XAF" | "CAD" | "KYD" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "KMF" | "CDF" | "NZD" | "CRC" | "CUC" | "CUP" | "ANG" | "CZK" | "DKK" | "DJF" | "DOP" | "EGP" | "SVC" | "ERN" | "ETB" | "FKP" | "FJD" | "XPF" | "GMD" | "GEL" | "GHS" | "GIP" | "GTQ" | "GBP" | "GNF" | "GYD" | "HTG" | "HNL" | "HKD" | "HUF" | "ISK" | "IDR" | "XDR" | "IRR" | "IQD" | "ILS" | "JMD" | "JPY" | "JOD" | "KZT" | "KES" | "KPW" | "KRW" | "KWD" | "KGS" | "LAK" | "LBP" | "LSL" | "ZAR" | "LRD" | "LYD" | "CHF" | "MOP" | "MGA" | "MWK" | "MYR" | "MVR" | "MRU" | "MUR" | "XUA" | "MXN" | "MXV" | "MDL" | "MNT" | "MAD" | "MZN" | "MMK" | "NAD" | "NPR" | "NIO" | "NGN" | "OMR" | "PKR" | "PAB" | "PGK" | "PYG" | "PEN" | "PHP" | "PLN" | "QAR" | "MKD" | "RON" | "RUB" | "RWF" | "SHP" | "WST" | "STN" | "SAR" | "RSD" | "SCR" | "SLE" | "SGD" | "XSU" | "SBD" | "SOS" | "SSP" | "LKR" | "SDG" | "SRD" | "SZL" | "SEK" | "CHE" | "CHW" | "SYP" | "TWD" | "TJS" | "TZS" | "THB" | "TOP" | "TTD" | "TND" | "TRY" | "TMT" | "UGX" | "UAH" | "AED" | "USN" | "UYI" | "UYU" | "UZS" | "VUV" | "VEF" | "VED" | "VND" | "YER" | "ZMW" | "ZWL");
|
|
26709
27201
|
type LCYCurrency$i = ("AFN" | "ALL" | "DZD" | "USD" | "EUR" | "AOA" | "XCD" | "ARS" | "AMD" | "AWG" | "AUD" | "AZN" | "BSD" | "BHD" | "BDT" | "BBD" | "BYN" | "BZD" | "XOF" | "BMD" | "BTN" | "INR" | "BOB" | "BOV" | "BAM" | "BWP" | "NOK" | "BRL" | "BND" | "BGN" | "BIF" | "CVE" | "KHR" | "XAF" | "CAD" | "KYD" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "KMF" | "CDF" | "NZD" | "CRC" | "CUC" | "CUP" | "ANG" | "CZK" | "DKK" | "DJF" | "DOP" | "EGP" | "SVC" | "ERN" | "ETB" | "FKP" | "FJD" | "XPF" | "GMD" | "GEL" | "GHS" | "GIP" | "GTQ" | "GBP" | "GNF" | "GYD" | "HTG" | "HNL" | "HKD" | "HUF" | "ISK" | "IDR" | "XDR" | "IRR" | "IQD" | "ILS" | "JMD" | "JPY" | "JOD" | "KZT" | "KES" | "KPW" | "KRW" | "KWD" | "KGS" | "LAK" | "LBP" | "LSL" | "ZAR" | "LRD" | "LYD" | "CHF" | "MOP" | "MGA" | "MWK" | "MYR" | "MVR" | "MRU" | "MUR" | "XUA" | "MXN" | "MXV" | "MDL" | "MNT" | "MAD" | "MZN" | "MMK" | "NAD" | "NPR" | "NIO" | "NGN" | "OMR" | "PKR" | "PAB" | "PGK" | "PYG" | "PEN" | "PHP" | "PLN" | "QAR" | "MKD" | "RON" | "RUB" | "RWF" | "SHP" | "WST" | "STN" | "SAR" | "RSD" | "SCR" | "SLE" | "SGD" | "XSU" | "SBD" | "SOS" | "SSP" | "LKR" | "SDG" | "SRD" | "SZL" | "SEK" | "CHE" | "CHW" | "SYP" | "TWD" | "TJS" | "TZS" | "THB" | "TOP" | "TTD" | "TND" | "TRY" | "TMT" | "UGX" | "UAH" | "AED" | "USN" | "UYI" | "UYU" | "UZS" | "VUV" | "VEF" | "VED" | "VND" | "YER" | "ZMW" | "ZWL");
|
|
26710
|
-
type Country$
|
|
26711
|
-
interface __MainSchema$
|
|
27202
|
+
type Country$b = ("AF" | "AX" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "AQ" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BM" | "BT" | "BO" | "BQ" | "BA" | "BW" | "BV" | "BR" | "IO" | "BN" | "BG" | "BF" | "BI" | "CV" | "KH" | "CM" | "CA" | "KY" | "CF" | "TD" | "CL" | "CN" | "CX" | "CC" | "CO" | "KM" | "CD" | "CG" | "CK" | "CR" | "CI" | "HR" | "CU" | "CW" | "CY" | "CZ" | "DK" | "DJ" | "DM" | "DO" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "SZ" | "ET" | "FK" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "TF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GI" | "GR" | "GL" | "GD" | "GP" | "GU" | "GT" | "GG" | "GN" | "GW" | "GY" | "HT" | "HM" | "VA" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "KP" | "KR" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LY" | "LI" | "LT" | "LU" | "MO" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MH" | "MQ" | "MR" | "MU" | "YT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "MM" | "NA" | "NR" | "NP" | "NL" | "NC" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "MK" | "MP" | "NO" | "OM" | "PK" | "PW" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PN" | "PL" | "PT" | "PR" | "QA" | "RE" | "RO" | "RU" | "RW" | "BL" | "SH" | "KN" | "LC" | "MF" | "PM" | "VC" | "WS" | "SM" | "ST" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SX" | "SK" | "SI" | "SB" | "SO" | "ZA" | "GS" | "SS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SE" | "CH" | "SY" | "TW" | "TJ" | "TZ" | "TH" | "TL" | "TG" | "TK" | "TO" | "TT" | "TN" | "TR" | "TM" | "TC" | "TV" | "UG" | "UA" | "AE" | "GB" | "UM" | "US" | "UY" | "UZ" | "VU" | "VE" | "VN" | "VG" | "VI" | "WF" | "EH" | "YE" | "ZM" | "ZW");
|
|
27203
|
+
interface __MainSchema$q {
|
|
26712
27204
|
product_id: string;
|
|
26713
27205
|
product_name: string;
|
|
26714
27206
|
colour_label: string;
|
|
@@ -26772,7 +27264,7 @@ interface __MainSchema$o {
|
|
|
26772
27264
|
supplier_inco_terms?: (string | null);
|
|
26773
27265
|
};
|
|
26774
27266
|
supplier_data: {
|
|
26775
|
-
country_of_origin: Country$
|
|
27267
|
+
country_of_origin: Country$b;
|
|
26776
27268
|
port_of_origin: string;
|
|
26777
27269
|
supplier_id: string;
|
|
26778
27270
|
supplier_name?: (string | null);
|
|
@@ -26793,10 +27285,78 @@ interface Money$a {
|
|
|
26793
27285
|
lcy_decimal_places: number;
|
|
26794
27286
|
}
|
|
26795
27287
|
|
|
27288
|
+
type Country$a = ("AF" | "AX" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "AQ" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BM" | "BT" | "BO" | "BQ" | "BA" | "BW" | "BV" | "BR" | "IO" | "BN" | "BG" | "BF" | "BI" | "CV" | "KH" | "CM" | "CA" | "KY" | "CF" | "TD" | "CL" | "CN" | "CX" | "CC" | "CO" | "KM" | "CD" | "CG" | "CK" | "CR" | "CI" | "HR" | "CU" | "CW" | "CY" | "CZ" | "DK" | "DJ" | "DM" | "DO" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "SZ" | "ET" | "FK" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "TF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GI" | "GR" | "GL" | "GD" | "GP" | "GU" | "GT" | "GG" | "GN" | "GW" | "GY" | "HT" | "HM" | "VA" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "KP" | "KR" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LY" | "LI" | "LT" | "LU" | "MO" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MH" | "MQ" | "MR" | "MU" | "YT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "MM" | "NA" | "NR" | "NP" | "NL" | "NC" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "MK" | "MP" | "NO" | "OM" | "PK" | "PW" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PN" | "PL" | "PT" | "PR" | "QA" | "RE" | "RO" | "RU" | "RW" | "BL" | "SH" | "KN" | "LC" | "MF" | "PM" | "VC" | "WS" | "SM" | "ST" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SX" | "SK" | "SI" | "SB" | "SO" | "ZA" | "GS" | "SS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SE" | "CH" | "SY" | "TW" | "TJ" | "TZ" | "TH" | "TL" | "TG" | "TK" | "TO" | "TT" | "TN" | "TR" | "TM" | "TC" | "TV" | "UG" | "UA" | "AE" | "GB" | "UM" | "US" | "UY" | "UZ" | "VU" | "VE" | "VN" | "VG" | "VI" | "WF" | "EH" | "YE" | "ZM" | "ZW");
|
|
27289
|
+
interface __MainSchema$p {
|
|
27290
|
+
product_id: string;
|
|
27291
|
+
style_id: string;
|
|
27292
|
+
colour_code?: string;
|
|
27293
|
+
product_name: string;
|
|
27294
|
+
is_available_to_order: boolean;
|
|
27295
|
+
created_at: string;
|
|
27296
|
+
last_modified_at: string;
|
|
27297
|
+
colour_family_name: string;
|
|
27298
|
+
colour_label: string;
|
|
27299
|
+
variants: {
|
|
27300
|
+
size: string;
|
|
27301
|
+
size_label: string;
|
|
27302
|
+
[k: string]: unknown;
|
|
27303
|
+
}[];
|
|
27304
|
+
images: unknown[];
|
|
27305
|
+
vat_amount: number;
|
|
27306
|
+
commodity_code_ref?: string;
|
|
27307
|
+
attributes: {
|
|
27308
|
+
product_type: string;
|
|
27309
|
+
main_fibre: string;
|
|
27310
|
+
merch_product_category: string;
|
|
27311
|
+
merch_product_subcategory: string;
|
|
27312
|
+
extra_selling_point?: string;
|
|
27313
|
+
length_measurement: (string | null);
|
|
27314
|
+
country_of_origin?: Country$a;
|
|
27315
|
+
port_of_origin?: string;
|
|
27316
|
+
supplier_id?: string;
|
|
27317
|
+
supplier_name?: string;
|
|
27318
|
+
factory_id?: string;
|
|
27319
|
+
first_purchased_at?: string;
|
|
27320
|
+
range: (("Main Collection" | "Seasonal") | null);
|
|
27321
|
+
channel_exclusivity?: (string | null);
|
|
27322
|
+
collections?: string;
|
|
27323
|
+
seasons?: string;
|
|
27324
|
+
block: string;
|
|
27325
|
+
packing_method: (("Standard" | "Hanging") | null);
|
|
27326
|
+
is_bought_in_product: boolean;
|
|
27327
|
+
division: ("Women" | null);
|
|
27328
|
+
drops?: string;
|
|
27329
|
+
first_markdown_at?: string;
|
|
27330
|
+
measurement_table?: string;
|
|
27331
|
+
stock_type: string;
|
|
27332
|
+
development_type?: string;
|
|
27333
|
+
occasion: string;
|
|
27334
|
+
strategy_type: string;
|
|
27335
|
+
pattern_name: string;
|
|
27336
|
+
fit_type: string;
|
|
27337
|
+
neckline: string;
|
|
27338
|
+
sleeve_length: string;
|
|
27339
|
+
heel_height: (string | null);
|
|
27340
|
+
heel_shape: string;
|
|
27341
|
+
toe_shape: string;
|
|
27342
|
+
trouser_fit?: string;
|
|
27343
|
+
leg_length: string;
|
|
27344
|
+
handle_straps: string;
|
|
27345
|
+
fastening: string;
|
|
27346
|
+
sole_code: string;
|
|
27347
|
+
fashionability: ("Core" | null);
|
|
27348
|
+
weight: number;
|
|
27349
|
+
average_weight_grams: number;
|
|
27350
|
+
care_instructions: string;
|
|
27351
|
+
size_guide: string;
|
|
27352
|
+
[k: string]: unknown;
|
|
27353
|
+
};
|
|
27354
|
+
}
|
|
27355
|
+
|
|
26796
27356
|
type Currency$i = ("AFN" | "ALL" | "DZD" | "USD" | "EUR" | "AOA" | "XCD" | "ARS" | "AMD" | "AWG" | "AUD" | "AZN" | "BSD" | "BHD" | "BDT" | "BBD" | "BYN" | "BZD" | "XOF" | "BMD" | "BTN" | "INR" | "BOB" | "BOV" | "BAM" | "BWP" | "NOK" | "BRL" | "BND" | "BGN" | "BIF" | "CVE" | "KHR" | "XAF" | "CAD" | "KYD" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "KMF" | "CDF" | "NZD" | "CRC" | "CUC" | "CUP" | "ANG" | "CZK" | "DKK" | "DJF" | "DOP" | "EGP" | "SVC" | "ERN" | "ETB" | "FKP" | "FJD" | "XPF" | "GMD" | "GEL" | "GHS" | "GIP" | "GTQ" | "GBP" | "GNF" | "GYD" | "HTG" | "HNL" | "HKD" | "HUF" | "ISK" | "IDR" | "XDR" | "IRR" | "IQD" | "ILS" | "JMD" | "JPY" | "JOD" | "KZT" | "KES" | "KPW" | "KRW" | "KWD" | "KGS" | "LAK" | "LBP" | "LSL" | "ZAR" | "LRD" | "LYD" | "CHF" | "MOP" | "MGA" | "MWK" | "MYR" | "MVR" | "MRU" | "MUR" | "XUA" | "MXN" | "MXV" | "MDL" | "MNT" | "MAD" | "MZN" | "MMK" | "NAD" | "NPR" | "NIO" | "NGN" | "OMR" | "PKR" | "PAB" | "PGK" | "PYG" | "PEN" | "PHP" | "PLN" | "QAR" | "MKD" | "RON" | "RUB" | "RWF" | "SHP" | "WST" | "STN" | "SAR" | "RSD" | "SCR" | "SLE" | "SGD" | "XSU" | "SBD" | "SOS" | "SSP" | "LKR" | "SDG" | "SRD" | "SZL" | "SEK" | "CHE" | "CHW" | "SYP" | "TWD" | "TJS" | "TZS" | "THB" | "TOP" | "TTD" | "TND" | "TRY" | "TMT" | "UGX" | "UAH" | "AED" | "USN" | "UYI" | "UYU" | "UZS" | "VUV" | "VEF" | "VED" | "VND" | "YER" | "ZMW" | "ZWL");
|
|
26797
27357
|
type LCYCurrency$h = ("AFN" | "ALL" | "DZD" | "USD" | "EUR" | "AOA" | "XCD" | "ARS" | "AMD" | "AWG" | "AUD" | "AZN" | "BSD" | "BHD" | "BDT" | "BBD" | "BYN" | "BZD" | "XOF" | "BMD" | "BTN" | "INR" | "BOB" | "BOV" | "BAM" | "BWP" | "NOK" | "BRL" | "BND" | "BGN" | "BIF" | "CVE" | "KHR" | "XAF" | "CAD" | "KYD" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "KMF" | "CDF" | "NZD" | "CRC" | "CUC" | "CUP" | "ANG" | "CZK" | "DKK" | "DJF" | "DOP" | "EGP" | "SVC" | "ERN" | "ETB" | "FKP" | "FJD" | "XPF" | "GMD" | "GEL" | "GHS" | "GIP" | "GTQ" | "GBP" | "GNF" | "GYD" | "HTG" | "HNL" | "HKD" | "HUF" | "ISK" | "IDR" | "XDR" | "IRR" | "IQD" | "ILS" | "JMD" | "JPY" | "JOD" | "KZT" | "KES" | "KPW" | "KRW" | "KWD" | "KGS" | "LAK" | "LBP" | "LSL" | "ZAR" | "LRD" | "LYD" | "CHF" | "MOP" | "MGA" | "MWK" | "MYR" | "MVR" | "MRU" | "MUR" | "XUA" | "MXN" | "MXV" | "MDL" | "MNT" | "MAD" | "MZN" | "MMK" | "NAD" | "NPR" | "NIO" | "NGN" | "OMR" | "PKR" | "PAB" | "PGK" | "PYG" | "PEN" | "PHP" | "PLN" | "QAR" | "MKD" | "RON" | "RUB" | "RWF" | "SHP" | "WST" | "STN" | "SAR" | "RSD" | "SCR" | "SLE" | "SGD" | "XSU" | "SBD" | "SOS" | "SSP" | "LKR" | "SDG" | "SRD" | "SZL" | "SEK" | "CHE" | "CHW" | "SYP" | "TWD" | "TJS" | "TZS" | "THB" | "TOP" | "TTD" | "TND" | "TRY" | "TMT" | "UGX" | "UAH" | "AED" | "USN" | "UYI" | "UYU" | "UZS" | "VUV" | "VEF" | "VED" | "VND" | "YER" | "ZMW" | "ZWL");
|
|
26798
27358
|
type DiscountAmountPercent$f = number;
|
|
26799
|
-
interface __MainSchema$
|
|
27359
|
+
interface __MainSchema$o {
|
|
26800
27360
|
amount_net: AmountNet$8;
|
|
26801
27361
|
amount_gross: AmountGross$8;
|
|
26802
27362
|
discount_amount_net: DiscountAmountNet$8;
|
|
@@ -26836,12 +27396,12 @@ interface DiscountAmountGross$8 {
|
|
|
26836
27396
|
lcy_decimal_places: number;
|
|
26837
27397
|
}
|
|
26838
27398
|
|
|
26839
|
-
interface __MainSchema$
|
|
27399
|
+
interface __MainSchema$n {
|
|
26840
27400
|
sku: string;
|
|
26841
27401
|
ean: string;
|
|
26842
27402
|
}
|
|
26843
27403
|
|
|
26844
|
-
type __MainSchema$
|
|
27404
|
+
type __MainSchema$m = (Price & {});
|
|
26845
27405
|
type Currency$h = ("AFN" | "ALL" | "DZD" | "USD" | "EUR" | "AOA" | "XCD" | "ARS" | "AMD" | "AWG" | "AUD" | "AZN" | "BSD" | "BHD" | "BDT" | "BBD" | "BYN" | "BZD" | "XOF" | "BMD" | "BTN" | "INR" | "BOB" | "BOV" | "BAM" | "BWP" | "NOK" | "BRL" | "BND" | "BGN" | "BIF" | "CVE" | "KHR" | "XAF" | "CAD" | "KYD" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "KMF" | "CDF" | "NZD" | "CRC" | "CUC" | "CUP" | "ANG" | "CZK" | "DKK" | "DJF" | "DOP" | "EGP" | "SVC" | "ERN" | "ETB" | "FKP" | "FJD" | "XPF" | "GMD" | "GEL" | "GHS" | "GIP" | "GTQ" | "GBP" | "GNF" | "GYD" | "HTG" | "HNL" | "HKD" | "HUF" | "ISK" | "IDR" | "XDR" | "IRR" | "IQD" | "ILS" | "JMD" | "JPY" | "JOD" | "KZT" | "KES" | "KPW" | "KRW" | "KWD" | "KGS" | "LAK" | "LBP" | "LSL" | "ZAR" | "LRD" | "LYD" | "CHF" | "MOP" | "MGA" | "MWK" | "MYR" | "MVR" | "MRU" | "MUR" | "XUA" | "MXN" | "MXV" | "MDL" | "MNT" | "MAD" | "MZN" | "MMK" | "NAD" | "NPR" | "NIO" | "NGN" | "OMR" | "PKR" | "PAB" | "PGK" | "PYG" | "PEN" | "PHP" | "PLN" | "QAR" | "MKD" | "RON" | "RUB" | "RWF" | "SHP" | "WST" | "STN" | "SAR" | "RSD" | "SCR" | "SLE" | "SGD" | "XSU" | "SBD" | "SOS" | "SSP" | "LKR" | "SDG" | "SRD" | "SZL" | "SEK" | "CHE" | "CHW" | "SYP" | "TWD" | "TJS" | "TZS" | "THB" | "TOP" | "TTD" | "TND" | "TRY" | "TMT" | "UGX" | "UAH" | "AED" | "USN" | "UYI" | "UYU" | "UZS" | "VUV" | "VEF" | "VED" | "VND" | "YER" | "ZMW" | "ZWL");
|
|
26846
27406
|
interface Price {
|
|
26847
27407
|
style_id?: (string | null);
|
|
@@ -26853,10 +27413,10 @@ interface Price {
|
|
|
26853
27413
|
effective_from?: string;
|
|
26854
27414
|
}
|
|
26855
27415
|
|
|
26856
|
-
type __MainSchema$
|
|
27416
|
+
type __MainSchema$l = (ProductDraft & {});
|
|
26857
27417
|
type Currency$g = ("AFN" | "ALL" | "DZD" | "USD" | "EUR" | "AOA" | "XCD" | "ARS" | "AMD" | "AWG" | "AUD" | "AZN" | "BSD" | "BHD" | "BDT" | "BBD" | "BYN" | "BZD" | "XOF" | "BMD" | "BTN" | "INR" | "BOB" | "BOV" | "BAM" | "BWP" | "NOK" | "BRL" | "BND" | "BGN" | "BIF" | "CVE" | "KHR" | "XAF" | "CAD" | "KYD" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "KMF" | "CDF" | "NZD" | "CRC" | "CUC" | "CUP" | "ANG" | "CZK" | "DKK" | "DJF" | "DOP" | "EGP" | "SVC" | "ERN" | "ETB" | "FKP" | "FJD" | "XPF" | "GMD" | "GEL" | "GHS" | "GIP" | "GTQ" | "GBP" | "GNF" | "GYD" | "HTG" | "HNL" | "HKD" | "HUF" | "ISK" | "IDR" | "XDR" | "IRR" | "IQD" | "ILS" | "JMD" | "JPY" | "JOD" | "KZT" | "KES" | "KPW" | "KRW" | "KWD" | "KGS" | "LAK" | "LBP" | "LSL" | "ZAR" | "LRD" | "LYD" | "CHF" | "MOP" | "MGA" | "MWK" | "MYR" | "MVR" | "MRU" | "MUR" | "XUA" | "MXN" | "MXV" | "MDL" | "MNT" | "MAD" | "MZN" | "MMK" | "NAD" | "NPR" | "NIO" | "NGN" | "OMR" | "PKR" | "PAB" | "PGK" | "PYG" | "PEN" | "PHP" | "PLN" | "QAR" | "MKD" | "RON" | "RUB" | "RWF" | "SHP" | "WST" | "STN" | "SAR" | "RSD" | "SCR" | "SLE" | "SGD" | "XSU" | "SBD" | "SOS" | "SSP" | "LKR" | "SDG" | "SRD" | "SZL" | "SEK" | "CHE" | "CHW" | "SYP" | "TWD" | "TJS" | "TZS" | "THB" | "TOP" | "TTD" | "TND" | "TRY" | "TMT" | "UGX" | "UAH" | "AED" | "USN" | "UYI" | "UYU" | "UZS" | "VUV" | "VEF" | "VED" | "VND" | "YER" | "ZMW" | "ZWL");
|
|
26858
27418
|
type LCYCurrency$g = ("AFN" | "ALL" | "DZD" | "USD" | "EUR" | "AOA" | "XCD" | "ARS" | "AMD" | "AWG" | "AUD" | "AZN" | "BSD" | "BHD" | "BDT" | "BBD" | "BYN" | "BZD" | "XOF" | "BMD" | "BTN" | "INR" | "BOB" | "BOV" | "BAM" | "BWP" | "NOK" | "BRL" | "BND" | "BGN" | "BIF" | "CVE" | "KHR" | "XAF" | "CAD" | "KYD" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "KMF" | "CDF" | "NZD" | "CRC" | "CUC" | "CUP" | "ANG" | "CZK" | "DKK" | "DJF" | "DOP" | "EGP" | "SVC" | "ERN" | "ETB" | "FKP" | "FJD" | "XPF" | "GMD" | "GEL" | "GHS" | "GIP" | "GTQ" | "GBP" | "GNF" | "GYD" | "HTG" | "HNL" | "HKD" | "HUF" | "ISK" | "IDR" | "XDR" | "IRR" | "IQD" | "ILS" | "JMD" | "JPY" | "JOD" | "KZT" | "KES" | "KPW" | "KRW" | "KWD" | "KGS" | "LAK" | "LBP" | "LSL" | "ZAR" | "LRD" | "LYD" | "CHF" | "MOP" | "MGA" | "MWK" | "MYR" | "MVR" | "MRU" | "MUR" | "XUA" | "MXN" | "MXV" | "MDL" | "MNT" | "MAD" | "MZN" | "MMK" | "NAD" | "NPR" | "NIO" | "NGN" | "OMR" | "PKR" | "PAB" | "PGK" | "PYG" | "PEN" | "PHP" | "PLN" | "QAR" | "MKD" | "RON" | "RUB" | "RWF" | "SHP" | "WST" | "STN" | "SAR" | "RSD" | "SCR" | "SLE" | "SGD" | "XSU" | "SBD" | "SOS" | "SSP" | "LKR" | "SDG" | "SRD" | "SZL" | "SEK" | "CHE" | "CHW" | "SYP" | "TWD" | "TJS" | "TZS" | "THB" | "TOP" | "TTD" | "TND" | "TRY" | "TMT" | "UGX" | "UAH" | "AED" | "USN" | "UYI" | "UYU" | "UZS" | "VUV" | "VEF" | "VED" | "VND" | "YER" | "ZMW" | "ZWL");
|
|
26859
|
-
type Country$
|
|
27419
|
+
type Country$9 = ("AF" | "AX" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "AQ" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BM" | "BT" | "BO" | "BQ" | "BA" | "BW" | "BV" | "BR" | "IO" | "BN" | "BG" | "BF" | "BI" | "CV" | "KH" | "CM" | "CA" | "KY" | "CF" | "TD" | "CL" | "CN" | "CX" | "CC" | "CO" | "KM" | "CD" | "CG" | "CK" | "CR" | "CI" | "HR" | "CU" | "CW" | "CY" | "CZ" | "DK" | "DJ" | "DM" | "DO" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "SZ" | "ET" | "FK" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "TF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GI" | "GR" | "GL" | "GD" | "GP" | "GU" | "GT" | "GG" | "GN" | "GW" | "GY" | "HT" | "HM" | "VA" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "KP" | "KR" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LY" | "LI" | "LT" | "LU" | "MO" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MH" | "MQ" | "MR" | "MU" | "YT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "MM" | "NA" | "NR" | "NP" | "NL" | "NC" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "MK" | "MP" | "NO" | "OM" | "PK" | "PW" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PN" | "PL" | "PT" | "PR" | "QA" | "RE" | "RO" | "RU" | "RW" | "BL" | "SH" | "KN" | "LC" | "MF" | "PM" | "VC" | "WS" | "SM" | "ST" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SX" | "SK" | "SI" | "SB" | "SO" | "ZA" | "GS" | "SS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SE" | "CH" | "SY" | "TW" | "TJ" | "TZ" | "TH" | "TL" | "TG" | "TK" | "TO" | "TT" | "TN" | "TR" | "TM" | "TC" | "TV" | "UG" | "UA" | "AE" | "GB" | "UM" | "US" | "UY" | "UZ" | "VU" | "VE" | "VN" | "VG" | "VI" | "WF" | "EH" | "YE" | "ZM" | "ZW");
|
|
26860
27420
|
interface ProductDraft {
|
|
26861
27421
|
product_id: string;
|
|
26862
27422
|
product_name: string;
|
|
@@ -26921,7 +27481,7 @@ interface ProductDraft {
|
|
|
26921
27481
|
supplier_inco_terms?: (string | null);
|
|
26922
27482
|
};
|
|
26923
27483
|
supplier_data: {
|
|
26924
|
-
country_of_origin: Country$
|
|
27484
|
+
country_of_origin: Country$9;
|
|
26925
27485
|
port_of_origin: string;
|
|
26926
27486
|
supplier_id: string;
|
|
26927
27487
|
supplier_name?: (string | null);
|
|
@@ -26942,6 +27502,75 @@ interface Money$9 {
|
|
|
26942
27502
|
lcy_decimal_places: number;
|
|
26943
27503
|
}
|
|
26944
27504
|
|
|
27505
|
+
type __MainSchema$k = (Product & {});
|
|
27506
|
+
type Country$8 = ("AF" | "AX" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "AQ" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BM" | "BT" | "BO" | "BQ" | "BA" | "BW" | "BV" | "BR" | "IO" | "BN" | "BG" | "BF" | "BI" | "CV" | "KH" | "CM" | "CA" | "KY" | "CF" | "TD" | "CL" | "CN" | "CX" | "CC" | "CO" | "KM" | "CD" | "CG" | "CK" | "CR" | "CI" | "HR" | "CU" | "CW" | "CY" | "CZ" | "DK" | "DJ" | "DM" | "DO" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "SZ" | "ET" | "FK" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "TF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GI" | "GR" | "GL" | "GD" | "GP" | "GU" | "GT" | "GG" | "GN" | "GW" | "GY" | "HT" | "HM" | "VA" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "KP" | "KR" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LY" | "LI" | "LT" | "LU" | "MO" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MH" | "MQ" | "MR" | "MU" | "YT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "MM" | "NA" | "NR" | "NP" | "NL" | "NC" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "MK" | "MP" | "NO" | "OM" | "PK" | "PW" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PN" | "PL" | "PT" | "PR" | "QA" | "RE" | "RO" | "RU" | "RW" | "BL" | "SH" | "KN" | "LC" | "MF" | "PM" | "VC" | "WS" | "SM" | "ST" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SX" | "SK" | "SI" | "SB" | "SO" | "ZA" | "GS" | "SS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SE" | "CH" | "SY" | "TW" | "TJ" | "TZ" | "TH" | "TL" | "TG" | "TK" | "TO" | "TT" | "TN" | "TR" | "TM" | "TC" | "TV" | "UG" | "UA" | "AE" | "GB" | "UM" | "US" | "UY" | "UZ" | "VU" | "VE" | "VN" | "VG" | "VI" | "WF" | "EH" | "YE" | "ZM" | "ZW");
|
|
27507
|
+
interface Product {
|
|
27508
|
+
product_id: string;
|
|
27509
|
+
style_id: string;
|
|
27510
|
+
colour_code?: string;
|
|
27511
|
+
product_name: string;
|
|
27512
|
+
is_available_to_order: boolean;
|
|
27513
|
+
created_at: string;
|
|
27514
|
+
last_modified_at: string;
|
|
27515
|
+
colour_family_name: string;
|
|
27516
|
+
colour_label: string;
|
|
27517
|
+
variants: {
|
|
27518
|
+
size: string;
|
|
27519
|
+
size_label: string;
|
|
27520
|
+
[k: string]: unknown;
|
|
27521
|
+
}[];
|
|
27522
|
+
images: unknown[];
|
|
27523
|
+
vat_amount: number;
|
|
27524
|
+
commodity_code_ref?: string;
|
|
27525
|
+
attributes: {
|
|
27526
|
+
product_type: string;
|
|
27527
|
+
main_fibre: string;
|
|
27528
|
+
merch_product_category: string;
|
|
27529
|
+
merch_product_subcategory: string;
|
|
27530
|
+
extra_selling_point?: string;
|
|
27531
|
+
length_measurement: (string | null);
|
|
27532
|
+
country_of_origin?: Country$8;
|
|
27533
|
+
port_of_origin?: string;
|
|
27534
|
+
supplier_id?: string;
|
|
27535
|
+
supplier_name?: string;
|
|
27536
|
+
factory_id?: string;
|
|
27537
|
+
first_purchased_at?: string;
|
|
27538
|
+
range: (("Main Collection" | "Seasonal") | null);
|
|
27539
|
+
channel_exclusivity?: (string | null);
|
|
27540
|
+
collections?: string;
|
|
27541
|
+
seasons?: string;
|
|
27542
|
+
block: string;
|
|
27543
|
+
packing_method: (("Standard" | "Hanging") | null);
|
|
27544
|
+
is_bought_in_product: boolean;
|
|
27545
|
+
division: ("Women" | null);
|
|
27546
|
+
drops?: string;
|
|
27547
|
+
first_markdown_at?: string;
|
|
27548
|
+
measurement_table?: string;
|
|
27549
|
+
stock_type: string;
|
|
27550
|
+
development_type?: string;
|
|
27551
|
+
occasion: string;
|
|
27552
|
+
strategy_type: string;
|
|
27553
|
+
pattern_name: string;
|
|
27554
|
+
fit_type: string;
|
|
27555
|
+
neckline: string;
|
|
27556
|
+
sleeve_length: string;
|
|
27557
|
+
heel_height: (string | null);
|
|
27558
|
+
heel_shape: string;
|
|
27559
|
+
toe_shape: string;
|
|
27560
|
+
trouser_fit?: string;
|
|
27561
|
+
leg_length: string;
|
|
27562
|
+
handle_straps: string;
|
|
27563
|
+
fastening: string;
|
|
27564
|
+
sole_code: string;
|
|
27565
|
+
fashionability: ("Core" | null);
|
|
27566
|
+
weight: number;
|
|
27567
|
+
average_weight_grams: number;
|
|
27568
|
+
care_instructions: string;
|
|
27569
|
+
size_guide: string;
|
|
27570
|
+
[k: string]: unknown;
|
|
27571
|
+
};
|
|
27572
|
+
}
|
|
27573
|
+
|
|
26945
27574
|
type __MainSchema$j = (Order$5 & {
|
|
26946
27575
|
status?: ("SHIPPED" | "PARTIALLY-SHIPPED" | "RETURNED" | "PARTIALLY-RETURNED" | "CANCELLED");
|
|
26947
27576
|
});
|
|
@@ -28013,7 +28642,7 @@ declare namespace index$8 {
|
|
|
28013
28642
|
}
|
|
28014
28643
|
|
|
28015
28644
|
declare namespace index$7 {
|
|
28016
|
-
export { type __MainSchema$
|
|
28645
|
+
export { type __MainSchema$n as EanChange, index$8 as Order, type __MainSchema$m as PriceChange, type __MainSchema$k as Product, type __MainSchema$l as ProductDraft };
|
|
28017
28646
|
}
|
|
28018
28647
|
|
|
28019
28648
|
type Country$1 = ("AF" | "AX" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "AQ" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BM" | "BT" | "BO" | "BQ" | "BA" | "BW" | "BV" | "BR" | "IO" | "BN" | "BG" | "BF" | "BI" | "CV" | "KH" | "CM" | "CA" | "KY" | "CF" | "TD" | "CL" | "CN" | "CX" | "CC" | "CO" | "KM" | "CD" | "CG" | "CK" | "CR" | "CI" | "HR" | "CU" | "CW" | "CY" | "CZ" | "DK" | "DJ" | "DM" | "DO" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "SZ" | "ET" | "FK" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "TF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GI" | "GR" | "GL" | "GD" | "GP" | "GU" | "GT" | "GG" | "GN" | "GW" | "GY" | "HT" | "HM" | "VA" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "KP" | "KR" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LY" | "LI" | "LT" | "LU" | "MO" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MH" | "MQ" | "MR" | "MU" | "YT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "MM" | "NA" | "NR" | "NP" | "NL" | "NC" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "MK" | "MP" | "NO" | "OM" | "PK" | "PW" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PN" | "PL" | "PT" | "PR" | "QA" | "RE" | "RO" | "RU" | "RW" | "BL" | "SH" | "KN" | "LC" | "MF" | "PM" | "VC" | "WS" | "SM" | "ST" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SX" | "SK" | "SI" | "SB" | "SO" | "ZA" | "GS" | "SS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SE" | "CH" | "SY" | "TW" | "TJ" | "TZ" | "TH" | "TL" | "TG" | "TK" | "TO" | "TT" | "TN" | "TR" | "TM" | "TC" | "TV" | "UG" | "UA" | "AE" | "GB" | "UM" | "US" | "UY" | "UZ" | "VU" | "VE" | "VN" | "VG" | "VI" | "WF" | "EH" | "YE" | "ZM" | "ZW");
|
|
@@ -28817,7 +29446,7 @@ declare namespace index$2 {
|
|
|
28817
29446
|
}
|
|
28818
29447
|
|
|
28819
29448
|
declare namespace index$1 {
|
|
28820
|
-
export { type __MainSchema$
|
|
29449
|
+
export { type __MainSchema$u as Country, type __MainSchema$t as Currency, index$7 as Messages, type __MainSchema$s as Money, index$2 as Order, type __MainSchema$r as Price, type __MainSchema$p as Product, type __MainSchema$q as ProductDraft, type __MainSchema$o as Total };
|
|
28821
29450
|
}
|
|
28822
29451
|
|
|
28823
29452
|
type Log = {
|
|
@@ -28871,6 +29500,7 @@ declare class Runtime {
|
|
|
28871
29500
|
|
|
28872
29501
|
declare const isPubSubRequest: (headers: Record<string, string>) => boolean;
|
|
28873
29502
|
declare const isCronMessage: (headers: Record<string, string>) => boolean;
|
|
29503
|
+
declare const isCloudTask: (headers: Record<string, string>) => boolean;
|
|
28874
29504
|
declare const validateGoogleAuth: (opts: Opts & {
|
|
28875
29505
|
serviceAccount?: string | null;
|
|
28876
29506
|
}, headers: Record<string, string>, firestore: Firestore) => Promise<void>;
|
|
@@ -29069,6 +29699,13 @@ declare class SchedulerHelper extends Runtime {
|
|
|
29069
29699
|
httpTarget: _google_cloud_scheduler_build_protos_protos.google.cloud.scheduler.v1.IHttpTarget | null | undefined;
|
|
29070
29700
|
pubsubTarget: _google_cloud_scheduler_build_protos_protos.google.cloud.scheduler.v1.IPubsubTarget | null | undefined;
|
|
29071
29701
|
}>;
|
|
29702
|
+
retrieve(): Promise<{
|
|
29703
|
+
state: "STATE_UNSPECIFIED" | _google_cloud_scheduler_build_protos_protos.google.cloud.scheduler.v1.Job.State | "ENABLED" | "PAUSED" | "DISABLED" | "UPDATE_FAILED" | null | undefined;
|
|
29704
|
+
schedule: string | null | undefined;
|
|
29705
|
+
timeZone: string | null | undefined;
|
|
29706
|
+
httpTarget: _google_cloud_scheduler_build_protos_protos.google.cloud.scheduler.v1.IHttpTarget | null | undefined;
|
|
29707
|
+
pubsubTarget: _google_cloud_scheduler_build_protos_protos.google.cloud.scheduler.v1.IPubsubTarget | null | undefined;
|
|
29708
|
+
} | null>;
|
|
29072
29709
|
update({ schedule, timezone, extraQuery }: {
|
|
29073
29710
|
schedule: string;
|
|
29074
29711
|
timezone: string;
|
|
@@ -29089,6 +29726,50 @@ declare class Secrets extends Runtime {
|
|
|
29089
29726
|
getSecret(name: string): Promise<string>;
|
|
29090
29727
|
}
|
|
29091
29728
|
|
|
29729
|
+
interface CloudTasksHelperOpts {
|
|
29730
|
+
projectId: string;
|
|
29731
|
+
serviceAccount: string;
|
|
29732
|
+
envName: string;
|
|
29733
|
+
workflowId: string;
|
|
29734
|
+
triggerId: string;
|
|
29735
|
+
url: string;
|
|
29736
|
+
}
|
|
29737
|
+
interface CreateTaskOpts {
|
|
29738
|
+
topicName: string;
|
|
29739
|
+
httpTarget: {
|
|
29740
|
+
uri?: string;
|
|
29741
|
+
httpMethod?: 'POST' | 'GET' | 'PUT' | 'DELETE';
|
|
29742
|
+
headers?: Record<string, string>;
|
|
29743
|
+
body?: any;
|
|
29744
|
+
};
|
|
29745
|
+
extraQuery?: Record<string, string>;
|
|
29746
|
+
scheduleSeconds?: number;
|
|
29747
|
+
repeatCount?: number;
|
|
29748
|
+
doNotCreateIfExists?: boolean;
|
|
29749
|
+
deleteExistingTasks?: boolean;
|
|
29750
|
+
retryConfig?: {
|
|
29751
|
+
maxAttempts?: number;
|
|
29752
|
+
maxRetryDuration?: number;
|
|
29753
|
+
minBackoff?: number;
|
|
29754
|
+
maxBackoff?: number;
|
|
29755
|
+
maxDoublings?: number;
|
|
29756
|
+
};
|
|
29757
|
+
}
|
|
29758
|
+
declare class CloudTasksHelper extends Runtime {
|
|
29759
|
+
private client;
|
|
29760
|
+
private projectId;
|
|
29761
|
+
private serviceAccount;
|
|
29762
|
+
envName: string;
|
|
29763
|
+
workflowId: string;
|
|
29764
|
+
triggerId: string;
|
|
29765
|
+
private location;
|
|
29766
|
+
constructor(opts: CloudTasksHelperOpts, cloudTasksClient: CloudTasksClient);
|
|
29767
|
+
private getQueueName;
|
|
29768
|
+
private getQueuePath;
|
|
29769
|
+
create(opts: CreateTaskOpts): Promise<false | string[]>;
|
|
29770
|
+
delete(topicName: string): Promise<boolean>;
|
|
29771
|
+
}
|
|
29772
|
+
|
|
29092
29773
|
declare class JWKSHelper extends Runtime {
|
|
29093
29774
|
private firestore;
|
|
29094
29775
|
constructor(opts: Opts, firestore: Firestore);
|
|
@@ -29347,6 +30028,8 @@ type NodeOptions = {
|
|
|
29347
30028
|
|
|
29348
30029
|
type index_BigQueryHelper = BigQueryHelper;
|
|
29349
30030
|
declare const index_BigQueryHelper: typeof BigQueryHelper;
|
|
30031
|
+
type index_CloudTasksHelper = CloudTasksHelper;
|
|
30032
|
+
declare const index_CloudTasksHelper: typeof CloudTasksHelper;
|
|
29350
30033
|
type index_EnvEngine = EnvEngine;
|
|
29351
30034
|
declare const index_EnvEngine: typeof EnvEngine;
|
|
29352
30035
|
type index_ILogging = ILogging;
|
|
@@ -29367,6 +30050,7 @@ declare const index_Secrets: typeof Secrets;
|
|
|
29367
30050
|
type index_TriggerOnCreateOptions = TriggerOnCreateOptions;
|
|
29368
30051
|
type index_TriggerOnExecuteOptions = TriggerOnExecuteOptions;
|
|
29369
30052
|
declare const index_getEventTime: typeof getEventTime;
|
|
30053
|
+
declare const index_isCloudTask: typeof isCloudTask;
|
|
29370
30054
|
declare const index_isCronMessage: typeof isCronMessage;
|
|
29371
30055
|
declare const index_isPubSubRequest: typeof isPubSubRequest;
|
|
29372
30056
|
declare const index_parseDateOrDefault: typeof parseDateOrDefault;
|
|
@@ -29376,7 +30060,7 @@ declare const index_shortHash: typeof shortHash;
|
|
|
29376
30060
|
declare const index_validate: typeof validate;
|
|
29377
30061
|
declare const index_validateGoogleAuth: typeof validateGoogleAuth;
|
|
29378
30062
|
declare namespace index {
|
|
29379
|
-
export { index_BigQueryHelper as BigQueryHelper, index_EnvEngine as EnvEngine, type index_ILogging as ILogging, index_JWKSHelper as JWKSHelper, index_Logging as Logging, type index_Message as Message, type index_NodeOptions as NodeOptions, index_PubSubHelper as PubSubHelper, index_Runtime as Runtime, index_SchedulerHelper as SchedulerHelper, index_Secrets as Secrets, type index_TriggerOnCreateOptions as TriggerOnCreateOptions, type index_TriggerOnExecuteOptions as TriggerOnExecuteOptions, index_getEventTime as getEventTime, index_isCronMessage as isCronMessage, index_isPubSubRequest as isPubSubRequest, index_parseDateOrDefault as parseDateOrDefault, index_sanitize as sanitize, index_sanitizeToString as sanitizeToString, index_shortHash as shortHash, index_validate as validate, index_validateGoogleAuth as validateGoogleAuth };
|
|
30063
|
+
export { index_BigQueryHelper as BigQueryHelper, index_CloudTasksHelper as CloudTasksHelper, index_EnvEngine as EnvEngine, type index_ILogging as ILogging, index_JWKSHelper as JWKSHelper, index_Logging as Logging, type index_Message as Message, type index_NodeOptions as NodeOptions, index_PubSubHelper as PubSubHelper, index_Runtime as Runtime, index_SchedulerHelper as SchedulerHelper, index_Secrets as Secrets, type index_TriggerOnCreateOptions as TriggerOnCreateOptions, type index_TriggerOnExecuteOptions as TriggerOnExecuteOptions, index_getEventTime as getEventTime, index_isCloudTask as isCloudTask, index_isCronMessage as isCronMessage, index_isPubSubRequest as isPubSubRequest, index_parseDateOrDefault as parseDateOrDefault, index_sanitize as sanitize, index_sanitizeToString as sanitizeToString, index_shortHash as shortHash, index_validate as validate, index_validateGoogleAuth as validateGoogleAuth };
|
|
29380
30064
|
}
|
|
29381
30065
|
|
|
29382
30066
|
export { index as lib, index$9 as schema, index$1 as types };
|