@teemill/product-catalog 1.45.3 → 1.47.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/api.ts +113 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +113 -1
- package/dist/api.js +1 -1
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +113 -1
- package/dist/esm/api.js +1 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/product-catalog@1.
|
|
1
|
+
## @teemill/product-catalog@1.47.0
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @teemill/product-catalog@1.
|
|
39
|
+
npm install @teemill/product-catalog@1.47.0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.47.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -807,6 +807,12 @@ export interface CreateProductVariant {
|
|
|
807
807
|
* @memberof CreateProductVariant
|
|
808
808
|
*/
|
|
809
809
|
'shopifyId'?: number;
|
|
810
|
+
/**
|
|
811
|
+
*
|
|
812
|
+
* @type {Array<UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner>}
|
|
813
|
+
* @memberof CreateProductVariant
|
|
814
|
+
*/
|
|
815
|
+
'integrationConnections'?: Array<UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner>;
|
|
810
816
|
}
|
|
811
817
|
/**
|
|
812
818
|
*
|
|
@@ -1240,6 +1246,12 @@ export interface Product {
|
|
|
1240
1246
|
* @memberof Product
|
|
1241
1247
|
*/
|
|
1242
1248
|
'optimisationHistory'?: Array<OptimisationHistoryItem>;
|
|
1249
|
+
/**
|
|
1250
|
+
*
|
|
1251
|
+
* @type {Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>}
|
|
1252
|
+
* @memberof Product
|
|
1253
|
+
*/
|
|
1254
|
+
'integrationConnections'?: Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>;
|
|
1243
1255
|
}
|
|
1244
1256
|
/**
|
|
1245
1257
|
*
|
|
@@ -1625,6 +1637,31 @@ export interface UpdateProductRequest {
|
|
|
1625
1637
|
* @memberof UpdateProductRequest
|
|
1626
1638
|
*/
|
|
1627
1639
|
'personalizationTemplate'?: string;
|
|
1640
|
+
/**
|
|
1641
|
+
* Integration connections for the product
|
|
1642
|
+
* @type {Array<UpdateProductRequestIntegrationConnectionsInner>}
|
|
1643
|
+
* @memberof UpdateProductRequest
|
|
1644
|
+
*/
|
|
1645
|
+
'integrationConnections'?: Array<UpdateProductRequestIntegrationConnectionsInner>;
|
|
1646
|
+
}
|
|
1647
|
+
/**
|
|
1648
|
+
*
|
|
1649
|
+
* @export
|
|
1650
|
+
* @interface UpdateProductRequestIntegrationConnectionsInner
|
|
1651
|
+
*/
|
|
1652
|
+
export interface UpdateProductRequestIntegrationConnectionsInner {
|
|
1653
|
+
/**
|
|
1654
|
+
* Code identifying the integration
|
|
1655
|
+
* @type {string}
|
|
1656
|
+
* @memberof UpdateProductRequestIntegrationConnectionsInner
|
|
1657
|
+
*/
|
|
1658
|
+
'integrationCode': string;
|
|
1659
|
+
/**
|
|
1660
|
+
* The value of the identifying property on the foreign product
|
|
1661
|
+
* @type {string}
|
|
1662
|
+
* @memberof UpdateProductRequestIntegrationConnectionsInner
|
|
1663
|
+
*/
|
|
1664
|
+
'foreignKey': string;
|
|
1628
1665
|
}
|
|
1629
1666
|
/**
|
|
1630
1667
|
*
|
|
@@ -1711,6 +1748,31 @@ export interface UpdateProductsRequestProductsInner {
|
|
|
1711
1748
|
* @memberof UpdateProductsRequestProductsInner
|
|
1712
1749
|
*/
|
|
1713
1750
|
'shopifyId'?: number;
|
|
1751
|
+
/**
|
|
1752
|
+
*
|
|
1753
|
+
* @type {Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>}
|
|
1754
|
+
* @memberof UpdateProductsRequestProductsInner
|
|
1755
|
+
*/
|
|
1756
|
+
'integrationConnections'?: Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>;
|
|
1757
|
+
}
|
|
1758
|
+
/**
|
|
1759
|
+
*
|
|
1760
|
+
* @export
|
|
1761
|
+
* @interface UpdateProductsRequestProductsInnerIntegrationConnectionsInner
|
|
1762
|
+
*/
|
|
1763
|
+
export interface UpdateProductsRequestProductsInnerIntegrationConnectionsInner {
|
|
1764
|
+
/**
|
|
1765
|
+
*
|
|
1766
|
+
* @type {string}
|
|
1767
|
+
* @memberof UpdateProductsRequestProductsInnerIntegrationConnectionsInner
|
|
1768
|
+
*/
|
|
1769
|
+
'integrationCode': string;
|
|
1770
|
+
/**
|
|
1771
|
+
* The value of the identifying property on the foreign product
|
|
1772
|
+
* @type {string}
|
|
1773
|
+
* @memberof UpdateProductsRequestProductsInnerIntegrationConnectionsInner
|
|
1774
|
+
*/
|
|
1775
|
+
'foreignKey': string;
|
|
1714
1776
|
}
|
|
1715
1777
|
/**
|
|
1716
1778
|
*
|
|
@@ -1767,6 +1829,12 @@ export interface UpdateProductsRequestProductsInnerVariantsInner {
|
|
|
1767
1829
|
* @memberof UpdateProductsRequestProductsInnerVariantsInner
|
|
1768
1830
|
*/
|
|
1769
1831
|
'shopifyId'?: number;
|
|
1832
|
+
/**
|
|
1833
|
+
*
|
|
1834
|
+
* @type {Array<UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner>}
|
|
1835
|
+
* @memberof UpdateProductsRequestProductsInnerVariantsInner
|
|
1836
|
+
*/
|
|
1837
|
+
'integrationConnections'?: Array<UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner>;
|
|
1770
1838
|
}
|
|
1771
1839
|
/**
|
|
1772
1840
|
*
|
|
@@ -1795,6 +1863,25 @@ export const UpdateProductsRequestProductsInnerVariantsInnerAttributesInnerNameE
|
|
|
1795
1863
|
|
|
1796
1864
|
export type UpdateProductsRequestProductsInnerVariantsInnerAttributesInnerNameEnum = typeof UpdateProductsRequestProductsInnerVariantsInnerAttributesInnerNameEnum[keyof typeof UpdateProductsRequestProductsInnerVariantsInnerAttributesInnerNameEnum];
|
|
1797
1865
|
|
|
1866
|
+
/**
|
|
1867
|
+
*
|
|
1868
|
+
* @export
|
|
1869
|
+
* @interface UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner
|
|
1870
|
+
*/
|
|
1871
|
+
export interface UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner {
|
|
1872
|
+
/**
|
|
1873
|
+
*
|
|
1874
|
+
* @type {string}
|
|
1875
|
+
* @memberof UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner
|
|
1876
|
+
*/
|
|
1877
|
+
'integrationCode': string;
|
|
1878
|
+
/**
|
|
1879
|
+
* The value of the identifying property on the foreign variant
|
|
1880
|
+
* @type {string}
|
|
1881
|
+
* @memberof UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner
|
|
1882
|
+
*/
|
|
1883
|
+
'foreignKey': string;
|
|
1884
|
+
}
|
|
1798
1885
|
/**
|
|
1799
1886
|
* Variant retail price including tax.
|
|
1800
1887
|
* @export
|
|
@@ -1968,6 +2055,31 @@ export interface Variant {
|
|
|
1968
2055
|
* @memberof Variant
|
|
1969
2056
|
*/
|
|
1970
2057
|
'metafields'?: Array<MetaField>;
|
|
2058
|
+
/**
|
|
2059
|
+
*
|
|
2060
|
+
* @type {Array<VariantIntegrationConnectionsInner>}
|
|
2061
|
+
* @memberof Variant
|
|
2062
|
+
*/
|
|
2063
|
+
'integrationConnections'?: Array<VariantIntegrationConnectionsInner>;
|
|
2064
|
+
}
|
|
2065
|
+
/**
|
|
2066
|
+
*
|
|
2067
|
+
* @export
|
|
2068
|
+
* @interface VariantIntegrationConnectionsInner
|
|
2069
|
+
*/
|
|
2070
|
+
export interface VariantIntegrationConnectionsInner {
|
|
2071
|
+
/**
|
|
2072
|
+
*
|
|
2073
|
+
* @type {string}
|
|
2074
|
+
* @memberof VariantIntegrationConnectionsInner
|
|
2075
|
+
*/
|
|
2076
|
+
'integrationCode': string;
|
|
2077
|
+
/**
|
|
2078
|
+
* The value of the identifying property on the foreign variant
|
|
2079
|
+
* @type {string}
|
|
2080
|
+
* @memberof VariantIntegrationConnectionsInner
|
|
2081
|
+
*/
|
|
2082
|
+
'foreignKey': string;
|
|
1971
2083
|
}
|
|
1972
2084
|
/**
|
|
1973
2085
|
*
|
package/base.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.47.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/common.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.47.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/configuration.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.47.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.47.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -785,6 +785,12 @@ export interface CreateProductVariant {
|
|
|
785
785
|
* @memberof CreateProductVariant
|
|
786
786
|
*/
|
|
787
787
|
'shopifyId'?: number;
|
|
788
|
+
/**
|
|
789
|
+
*
|
|
790
|
+
* @type {Array<UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner>}
|
|
791
|
+
* @memberof CreateProductVariant
|
|
792
|
+
*/
|
|
793
|
+
'integrationConnections'?: Array<UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner>;
|
|
788
794
|
}
|
|
789
795
|
/**
|
|
790
796
|
*
|
|
@@ -1215,6 +1221,12 @@ export interface Product {
|
|
|
1215
1221
|
* @memberof Product
|
|
1216
1222
|
*/
|
|
1217
1223
|
'optimisationHistory'?: Array<OptimisationHistoryItem>;
|
|
1224
|
+
/**
|
|
1225
|
+
*
|
|
1226
|
+
* @type {Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>}
|
|
1227
|
+
* @memberof Product
|
|
1228
|
+
*/
|
|
1229
|
+
'integrationConnections'?: Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>;
|
|
1218
1230
|
}
|
|
1219
1231
|
/**
|
|
1220
1232
|
*
|
|
@@ -1600,6 +1612,31 @@ export interface UpdateProductRequest {
|
|
|
1600
1612
|
* @memberof UpdateProductRequest
|
|
1601
1613
|
*/
|
|
1602
1614
|
'personalizationTemplate'?: string;
|
|
1615
|
+
/**
|
|
1616
|
+
* Integration connections for the product
|
|
1617
|
+
* @type {Array<UpdateProductRequestIntegrationConnectionsInner>}
|
|
1618
|
+
* @memberof UpdateProductRequest
|
|
1619
|
+
*/
|
|
1620
|
+
'integrationConnections'?: Array<UpdateProductRequestIntegrationConnectionsInner>;
|
|
1621
|
+
}
|
|
1622
|
+
/**
|
|
1623
|
+
*
|
|
1624
|
+
* @export
|
|
1625
|
+
* @interface UpdateProductRequestIntegrationConnectionsInner
|
|
1626
|
+
*/
|
|
1627
|
+
export interface UpdateProductRequestIntegrationConnectionsInner {
|
|
1628
|
+
/**
|
|
1629
|
+
* Code identifying the integration
|
|
1630
|
+
* @type {string}
|
|
1631
|
+
* @memberof UpdateProductRequestIntegrationConnectionsInner
|
|
1632
|
+
*/
|
|
1633
|
+
'integrationCode': string;
|
|
1634
|
+
/**
|
|
1635
|
+
* The value of the identifying property on the foreign product
|
|
1636
|
+
* @type {string}
|
|
1637
|
+
* @memberof UpdateProductRequestIntegrationConnectionsInner
|
|
1638
|
+
*/
|
|
1639
|
+
'foreignKey': string;
|
|
1603
1640
|
}
|
|
1604
1641
|
/**
|
|
1605
1642
|
*
|
|
@@ -1686,6 +1723,31 @@ export interface UpdateProductsRequestProductsInner {
|
|
|
1686
1723
|
* @memberof UpdateProductsRequestProductsInner
|
|
1687
1724
|
*/
|
|
1688
1725
|
'shopifyId'?: number;
|
|
1726
|
+
/**
|
|
1727
|
+
*
|
|
1728
|
+
* @type {Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>}
|
|
1729
|
+
* @memberof UpdateProductsRequestProductsInner
|
|
1730
|
+
*/
|
|
1731
|
+
'integrationConnections'?: Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>;
|
|
1732
|
+
}
|
|
1733
|
+
/**
|
|
1734
|
+
*
|
|
1735
|
+
* @export
|
|
1736
|
+
* @interface UpdateProductsRequestProductsInnerIntegrationConnectionsInner
|
|
1737
|
+
*/
|
|
1738
|
+
export interface UpdateProductsRequestProductsInnerIntegrationConnectionsInner {
|
|
1739
|
+
/**
|
|
1740
|
+
*
|
|
1741
|
+
* @type {string}
|
|
1742
|
+
* @memberof UpdateProductsRequestProductsInnerIntegrationConnectionsInner
|
|
1743
|
+
*/
|
|
1744
|
+
'integrationCode': string;
|
|
1745
|
+
/**
|
|
1746
|
+
* The value of the identifying property on the foreign product
|
|
1747
|
+
* @type {string}
|
|
1748
|
+
* @memberof UpdateProductsRequestProductsInnerIntegrationConnectionsInner
|
|
1749
|
+
*/
|
|
1750
|
+
'foreignKey': string;
|
|
1689
1751
|
}
|
|
1690
1752
|
/**
|
|
1691
1753
|
*
|
|
@@ -1742,6 +1804,12 @@ export interface UpdateProductsRequestProductsInnerVariantsInner {
|
|
|
1742
1804
|
* @memberof UpdateProductsRequestProductsInnerVariantsInner
|
|
1743
1805
|
*/
|
|
1744
1806
|
'shopifyId'?: number;
|
|
1807
|
+
/**
|
|
1808
|
+
*
|
|
1809
|
+
* @type {Array<UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner>}
|
|
1810
|
+
* @memberof UpdateProductsRequestProductsInnerVariantsInner
|
|
1811
|
+
*/
|
|
1812
|
+
'integrationConnections'?: Array<UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner>;
|
|
1745
1813
|
}
|
|
1746
1814
|
/**
|
|
1747
1815
|
*
|
|
@@ -1767,6 +1835,25 @@ export declare const UpdateProductsRequestProductsInnerVariantsInnerAttributesIn
|
|
|
1767
1835
|
readonly Colour: "Colour";
|
|
1768
1836
|
};
|
|
1769
1837
|
export type UpdateProductsRequestProductsInnerVariantsInnerAttributesInnerNameEnum = typeof UpdateProductsRequestProductsInnerVariantsInnerAttributesInnerNameEnum[keyof typeof UpdateProductsRequestProductsInnerVariantsInnerAttributesInnerNameEnum];
|
|
1838
|
+
/**
|
|
1839
|
+
*
|
|
1840
|
+
* @export
|
|
1841
|
+
* @interface UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner
|
|
1842
|
+
*/
|
|
1843
|
+
export interface UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner {
|
|
1844
|
+
/**
|
|
1845
|
+
*
|
|
1846
|
+
* @type {string}
|
|
1847
|
+
* @memberof UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner
|
|
1848
|
+
*/
|
|
1849
|
+
'integrationCode': string;
|
|
1850
|
+
/**
|
|
1851
|
+
* The value of the identifying property on the foreign variant
|
|
1852
|
+
* @type {string}
|
|
1853
|
+
* @memberof UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner
|
|
1854
|
+
*/
|
|
1855
|
+
'foreignKey': string;
|
|
1856
|
+
}
|
|
1770
1857
|
/**
|
|
1771
1858
|
* Variant retail price including tax.
|
|
1772
1859
|
* @export
|
|
@@ -1934,6 +2021,31 @@ export interface Variant {
|
|
|
1934
2021
|
* @memberof Variant
|
|
1935
2022
|
*/
|
|
1936
2023
|
'metafields'?: Array<MetaField>;
|
|
2024
|
+
/**
|
|
2025
|
+
*
|
|
2026
|
+
* @type {Array<VariantIntegrationConnectionsInner>}
|
|
2027
|
+
* @memberof Variant
|
|
2028
|
+
*/
|
|
2029
|
+
'integrationConnections'?: Array<VariantIntegrationConnectionsInner>;
|
|
2030
|
+
}
|
|
2031
|
+
/**
|
|
2032
|
+
*
|
|
2033
|
+
* @export
|
|
2034
|
+
* @interface VariantIntegrationConnectionsInner
|
|
2035
|
+
*/
|
|
2036
|
+
export interface VariantIntegrationConnectionsInner {
|
|
2037
|
+
/**
|
|
2038
|
+
*
|
|
2039
|
+
* @type {string}
|
|
2040
|
+
* @memberof VariantIntegrationConnectionsInner
|
|
2041
|
+
*/
|
|
2042
|
+
'integrationCode': string;
|
|
2043
|
+
/**
|
|
2044
|
+
* The value of the identifying property on the foreign variant
|
|
2045
|
+
* @type {string}
|
|
2046
|
+
* @memberof VariantIntegrationConnectionsInner
|
|
2047
|
+
*/
|
|
2048
|
+
'foreignKey': string;
|
|
1937
2049
|
}
|
|
1938
2050
|
/**
|
|
1939
2051
|
*
|
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.47.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.47.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.47.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.47.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.47.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.47.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.47.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.47.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -785,6 +785,12 @@ export interface CreateProductVariant {
|
|
|
785
785
|
* @memberof CreateProductVariant
|
|
786
786
|
*/
|
|
787
787
|
'shopifyId'?: number;
|
|
788
|
+
/**
|
|
789
|
+
*
|
|
790
|
+
* @type {Array<UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner>}
|
|
791
|
+
* @memberof CreateProductVariant
|
|
792
|
+
*/
|
|
793
|
+
'integrationConnections'?: Array<UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner>;
|
|
788
794
|
}
|
|
789
795
|
/**
|
|
790
796
|
*
|
|
@@ -1215,6 +1221,12 @@ export interface Product {
|
|
|
1215
1221
|
* @memberof Product
|
|
1216
1222
|
*/
|
|
1217
1223
|
'optimisationHistory'?: Array<OptimisationHistoryItem>;
|
|
1224
|
+
/**
|
|
1225
|
+
*
|
|
1226
|
+
* @type {Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>}
|
|
1227
|
+
* @memberof Product
|
|
1228
|
+
*/
|
|
1229
|
+
'integrationConnections'?: Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>;
|
|
1218
1230
|
}
|
|
1219
1231
|
/**
|
|
1220
1232
|
*
|
|
@@ -1600,6 +1612,31 @@ export interface UpdateProductRequest {
|
|
|
1600
1612
|
* @memberof UpdateProductRequest
|
|
1601
1613
|
*/
|
|
1602
1614
|
'personalizationTemplate'?: string;
|
|
1615
|
+
/**
|
|
1616
|
+
* Integration connections for the product
|
|
1617
|
+
* @type {Array<UpdateProductRequestIntegrationConnectionsInner>}
|
|
1618
|
+
* @memberof UpdateProductRequest
|
|
1619
|
+
*/
|
|
1620
|
+
'integrationConnections'?: Array<UpdateProductRequestIntegrationConnectionsInner>;
|
|
1621
|
+
}
|
|
1622
|
+
/**
|
|
1623
|
+
*
|
|
1624
|
+
* @export
|
|
1625
|
+
* @interface UpdateProductRequestIntegrationConnectionsInner
|
|
1626
|
+
*/
|
|
1627
|
+
export interface UpdateProductRequestIntegrationConnectionsInner {
|
|
1628
|
+
/**
|
|
1629
|
+
* Code identifying the integration
|
|
1630
|
+
* @type {string}
|
|
1631
|
+
* @memberof UpdateProductRequestIntegrationConnectionsInner
|
|
1632
|
+
*/
|
|
1633
|
+
'integrationCode': string;
|
|
1634
|
+
/**
|
|
1635
|
+
* The value of the identifying property on the foreign product
|
|
1636
|
+
* @type {string}
|
|
1637
|
+
* @memberof UpdateProductRequestIntegrationConnectionsInner
|
|
1638
|
+
*/
|
|
1639
|
+
'foreignKey': string;
|
|
1603
1640
|
}
|
|
1604
1641
|
/**
|
|
1605
1642
|
*
|
|
@@ -1686,6 +1723,31 @@ export interface UpdateProductsRequestProductsInner {
|
|
|
1686
1723
|
* @memberof UpdateProductsRequestProductsInner
|
|
1687
1724
|
*/
|
|
1688
1725
|
'shopifyId'?: number;
|
|
1726
|
+
/**
|
|
1727
|
+
*
|
|
1728
|
+
* @type {Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>}
|
|
1729
|
+
* @memberof UpdateProductsRequestProductsInner
|
|
1730
|
+
*/
|
|
1731
|
+
'integrationConnections'?: Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>;
|
|
1732
|
+
}
|
|
1733
|
+
/**
|
|
1734
|
+
*
|
|
1735
|
+
* @export
|
|
1736
|
+
* @interface UpdateProductsRequestProductsInnerIntegrationConnectionsInner
|
|
1737
|
+
*/
|
|
1738
|
+
export interface UpdateProductsRequestProductsInnerIntegrationConnectionsInner {
|
|
1739
|
+
/**
|
|
1740
|
+
*
|
|
1741
|
+
* @type {string}
|
|
1742
|
+
* @memberof UpdateProductsRequestProductsInnerIntegrationConnectionsInner
|
|
1743
|
+
*/
|
|
1744
|
+
'integrationCode': string;
|
|
1745
|
+
/**
|
|
1746
|
+
* The value of the identifying property on the foreign product
|
|
1747
|
+
* @type {string}
|
|
1748
|
+
* @memberof UpdateProductsRequestProductsInnerIntegrationConnectionsInner
|
|
1749
|
+
*/
|
|
1750
|
+
'foreignKey': string;
|
|
1689
1751
|
}
|
|
1690
1752
|
/**
|
|
1691
1753
|
*
|
|
@@ -1742,6 +1804,12 @@ export interface UpdateProductsRequestProductsInnerVariantsInner {
|
|
|
1742
1804
|
* @memberof UpdateProductsRequestProductsInnerVariantsInner
|
|
1743
1805
|
*/
|
|
1744
1806
|
'shopifyId'?: number;
|
|
1807
|
+
/**
|
|
1808
|
+
*
|
|
1809
|
+
* @type {Array<UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner>}
|
|
1810
|
+
* @memberof UpdateProductsRequestProductsInnerVariantsInner
|
|
1811
|
+
*/
|
|
1812
|
+
'integrationConnections'?: Array<UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner>;
|
|
1745
1813
|
}
|
|
1746
1814
|
/**
|
|
1747
1815
|
*
|
|
@@ -1767,6 +1835,25 @@ export declare const UpdateProductsRequestProductsInnerVariantsInnerAttributesIn
|
|
|
1767
1835
|
readonly Colour: "Colour";
|
|
1768
1836
|
};
|
|
1769
1837
|
export type UpdateProductsRequestProductsInnerVariantsInnerAttributesInnerNameEnum = typeof UpdateProductsRequestProductsInnerVariantsInnerAttributesInnerNameEnum[keyof typeof UpdateProductsRequestProductsInnerVariantsInnerAttributesInnerNameEnum];
|
|
1838
|
+
/**
|
|
1839
|
+
*
|
|
1840
|
+
* @export
|
|
1841
|
+
* @interface UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner
|
|
1842
|
+
*/
|
|
1843
|
+
export interface UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner {
|
|
1844
|
+
/**
|
|
1845
|
+
*
|
|
1846
|
+
* @type {string}
|
|
1847
|
+
* @memberof UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner
|
|
1848
|
+
*/
|
|
1849
|
+
'integrationCode': string;
|
|
1850
|
+
/**
|
|
1851
|
+
* The value of the identifying property on the foreign variant
|
|
1852
|
+
* @type {string}
|
|
1853
|
+
* @memberof UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner
|
|
1854
|
+
*/
|
|
1855
|
+
'foreignKey': string;
|
|
1856
|
+
}
|
|
1770
1857
|
/**
|
|
1771
1858
|
* Variant retail price including tax.
|
|
1772
1859
|
* @export
|
|
@@ -1934,6 +2021,31 @@ export interface Variant {
|
|
|
1934
2021
|
* @memberof Variant
|
|
1935
2022
|
*/
|
|
1936
2023
|
'metafields'?: Array<MetaField>;
|
|
2024
|
+
/**
|
|
2025
|
+
*
|
|
2026
|
+
* @type {Array<VariantIntegrationConnectionsInner>}
|
|
2027
|
+
* @memberof Variant
|
|
2028
|
+
*/
|
|
2029
|
+
'integrationConnections'?: Array<VariantIntegrationConnectionsInner>;
|
|
2030
|
+
}
|
|
2031
|
+
/**
|
|
2032
|
+
*
|
|
2033
|
+
* @export
|
|
2034
|
+
* @interface VariantIntegrationConnectionsInner
|
|
2035
|
+
*/
|
|
2036
|
+
export interface VariantIntegrationConnectionsInner {
|
|
2037
|
+
/**
|
|
2038
|
+
*
|
|
2039
|
+
* @type {string}
|
|
2040
|
+
* @memberof VariantIntegrationConnectionsInner
|
|
2041
|
+
*/
|
|
2042
|
+
'integrationCode': string;
|
|
2043
|
+
/**
|
|
2044
|
+
* The value of the identifying property on the foreign variant
|
|
2045
|
+
* @type {string}
|
|
2046
|
+
* @memberof VariantIntegrationConnectionsInner
|
|
2047
|
+
*/
|
|
2048
|
+
'foreignKey': string;
|
|
1937
2049
|
}
|
|
1938
2050
|
/**
|
|
1939
2051
|
*
|
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.47.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.47.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/base.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.47.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.47.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.47.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.47.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.47.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.47.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.47.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.47.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.47.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/index.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.47.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|