@teemill/product-catalog 1.45.2 → 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 +119 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +119 -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 +119 -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).
|
|
@@ -214,6 +214,12 @@ export interface ApplicationSet1 {
|
|
|
214
214
|
* @memberof ApplicationSet1
|
|
215
215
|
*/
|
|
216
216
|
'id'?: string;
|
|
217
|
+
/**
|
|
218
|
+
* A reference to the resource location
|
|
219
|
+
* @type {string}
|
|
220
|
+
* @memberof ApplicationSet1
|
|
221
|
+
*/
|
|
222
|
+
'ref'?: string;
|
|
217
223
|
}
|
|
218
224
|
/**
|
|
219
225
|
*
|
|
@@ -801,6 +807,12 @@ export interface CreateProductVariant {
|
|
|
801
807
|
* @memberof CreateProductVariant
|
|
802
808
|
*/
|
|
803
809
|
'shopifyId'?: number;
|
|
810
|
+
/**
|
|
811
|
+
*
|
|
812
|
+
* @type {Array<UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner>}
|
|
813
|
+
* @memberof CreateProductVariant
|
|
814
|
+
*/
|
|
815
|
+
'integrationConnections'?: Array<UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner>;
|
|
804
816
|
}
|
|
805
817
|
/**
|
|
806
818
|
*
|
|
@@ -1234,6 +1246,12 @@ export interface Product {
|
|
|
1234
1246
|
* @memberof Product
|
|
1235
1247
|
*/
|
|
1236
1248
|
'optimisationHistory'?: Array<OptimisationHistoryItem>;
|
|
1249
|
+
/**
|
|
1250
|
+
*
|
|
1251
|
+
* @type {Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>}
|
|
1252
|
+
* @memberof Product
|
|
1253
|
+
*/
|
|
1254
|
+
'integrationConnections'?: Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>;
|
|
1237
1255
|
}
|
|
1238
1256
|
/**
|
|
1239
1257
|
*
|
|
@@ -1619,6 +1637,31 @@ export interface UpdateProductRequest {
|
|
|
1619
1637
|
* @memberof UpdateProductRequest
|
|
1620
1638
|
*/
|
|
1621
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;
|
|
1622
1665
|
}
|
|
1623
1666
|
/**
|
|
1624
1667
|
*
|
|
@@ -1705,6 +1748,31 @@ export interface UpdateProductsRequestProductsInner {
|
|
|
1705
1748
|
* @memberof UpdateProductsRequestProductsInner
|
|
1706
1749
|
*/
|
|
1707
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;
|
|
1708
1776
|
}
|
|
1709
1777
|
/**
|
|
1710
1778
|
*
|
|
@@ -1761,6 +1829,12 @@ export interface UpdateProductsRequestProductsInnerVariantsInner {
|
|
|
1761
1829
|
* @memberof UpdateProductsRequestProductsInnerVariantsInner
|
|
1762
1830
|
*/
|
|
1763
1831
|
'shopifyId'?: number;
|
|
1832
|
+
/**
|
|
1833
|
+
*
|
|
1834
|
+
* @type {Array<UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner>}
|
|
1835
|
+
* @memberof UpdateProductsRequestProductsInnerVariantsInner
|
|
1836
|
+
*/
|
|
1837
|
+
'integrationConnections'?: Array<UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner>;
|
|
1764
1838
|
}
|
|
1765
1839
|
/**
|
|
1766
1840
|
*
|
|
@@ -1789,6 +1863,25 @@ export const UpdateProductsRequestProductsInnerVariantsInnerAttributesInnerNameE
|
|
|
1789
1863
|
|
|
1790
1864
|
export type UpdateProductsRequestProductsInnerVariantsInnerAttributesInnerNameEnum = typeof UpdateProductsRequestProductsInnerVariantsInnerAttributesInnerNameEnum[keyof typeof UpdateProductsRequestProductsInnerVariantsInnerAttributesInnerNameEnum];
|
|
1791
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
|
+
}
|
|
1792
1885
|
/**
|
|
1793
1886
|
* Variant retail price including tax.
|
|
1794
1887
|
* @export
|
|
@@ -1962,6 +2055,31 @@ export interface Variant {
|
|
|
1962
2055
|
* @memberof Variant
|
|
1963
2056
|
*/
|
|
1964
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;
|
|
1965
2083
|
}
|
|
1966
2084
|
/**
|
|
1967
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).
|
|
@@ -200,6 +200,12 @@ export interface ApplicationSet1 {
|
|
|
200
200
|
* @memberof ApplicationSet1
|
|
201
201
|
*/
|
|
202
202
|
'id'?: string;
|
|
203
|
+
/**
|
|
204
|
+
* A reference to the resource location
|
|
205
|
+
* @type {string}
|
|
206
|
+
* @memberof ApplicationSet1
|
|
207
|
+
*/
|
|
208
|
+
'ref'?: string;
|
|
203
209
|
}
|
|
204
210
|
/**
|
|
205
211
|
*
|
|
@@ -779,6 +785,12 @@ export interface CreateProductVariant {
|
|
|
779
785
|
* @memberof CreateProductVariant
|
|
780
786
|
*/
|
|
781
787
|
'shopifyId'?: number;
|
|
788
|
+
/**
|
|
789
|
+
*
|
|
790
|
+
* @type {Array<UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner>}
|
|
791
|
+
* @memberof CreateProductVariant
|
|
792
|
+
*/
|
|
793
|
+
'integrationConnections'?: Array<UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner>;
|
|
782
794
|
}
|
|
783
795
|
/**
|
|
784
796
|
*
|
|
@@ -1209,6 +1221,12 @@ export interface Product {
|
|
|
1209
1221
|
* @memberof Product
|
|
1210
1222
|
*/
|
|
1211
1223
|
'optimisationHistory'?: Array<OptimisationHistoryItem>;
|
|
1224
|
+
/**
|
|
1225
|
+
*
|
|
1226
|
+
* @type {Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>}
|
|
1227
|
+
* @memberof Product
|
|
1228
|
+
*/
|
|
1229
|
+
'integrationConnections'?: Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>;
|
|
1212
1230
|
}
|
|
1213
1231
|
/**
|
|
1214
1232
|
*
|
|
@@ -1594,6 +1612,31 @@ export interface UpdateProductRequest {
|
|
|
1594
1612
|
* @memberof UpdateProductRequest
|
|
1595
1613
|
*/
|
|
1596
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;
|
|
1597
1640
|
}
|
|
1598
1641
|
/**
|
|
1599
1642
|
*
|
|
@@ -1680,6 +1723,31 @@ export interface UpdateProductsRequestProductsInner {
|
|
|
1680
1723
|
* @memberof UpdateProductsRequestProductsInner
|
|
1681
1724
|
*/
|
|
1682
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;
|
|
1683
1751
|
}
|
|
1684
1752
|
/**
|
|
1685
1753
|
*
|
|
@@ -1736,6 +1804,12 @@ export interface UpdateProductsRequestProductsInnerVariantsInner {
|
|
|
1736
1804
|
* @memberof UpdateProductsRequestProductsInnerVariantsInner
|
|
1737
1805
|
*/
|
|
1738
1806
|
'shopifyId'?: number;
|
|
1807
|
+
/**
|
|
1808
|
+
*
|
|
1809
|
+
* @type {Array<UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner>}
|
|
1810
|
+
* @memberof UpdateProductsRequestProductsInnerVariantsInner
|
|
1811
|
+
*/
|
|
1812
|
+
'integrationConnections'?: Array<UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner>;
|
|
1739
1813
|
}
|
|
1740
1814
|
/**
|
|
1741
1815
|
*
|
|
@@ -1761,6 +1835,25 @@ export declare const UpdateProductsRequestProductsInnerVariantsInnerAttributesIn
|
|
|
1761
1835
|
readonly Colour: "Colour";
|
|
1762
1836
|
};
|
|
1763
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
|
+
}
|
|
1764
1857
|
/**
|
|
1765
1858
|
* Variant retail price including tax.
|
|
1766
1859
|
* @export
|
|
@@ -1928,6 +2021,31 @@ export interface Variant {
|
|
|
1928
2021
|
* @memberof Variant
|
|
1929
2022
|
*/
|
|
1930
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;
|
|
1931
2049
|
}
|
|
1932
2050
|
/**
|
|
1933
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).
|
|
@@ -200,6 +200,12 @@ export interface ApplicationSet1 {
|
|
|
200
200
|
* @memberof ApplicationSet1
|
|
201
201
|
*/
|
|
202
202
|
'id'?: string;
|
|
203
|
+
/**
|
|
204
|
+
* A reference to the resource location
|
|
205
|
+
* @type {string}
|
|
206
|
+
* @memberof ApplicationSet1
|
|
207
|
+
*/
|
|
208
|
+
'ref'?: string;
|
|
203
209
|
}
|
|
204
210
|
/**
|
|
205
211
|
*
|
|
@@ -779,6 +785,12 @@ export interface CreateProductVariant {
|
|
|
779
785
|
* @memberof CreateProductVariant
|
|
780
786
|
*/
|
|
781
787
|
'shopifyId'?: number;
|
|
788
|
+
/**
|
|
789
|
+
*
|
|
790
|
+
* @type {Array<UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner>}
|
|
791
|
+
* @memberof CreateProductVariant
|
|
792
|
+
*/
|
|
793
|
+
'integrationConnections'?: Array<UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner>;
|
|
782
794
|
}
|
|
783
795
|
/**
|
|
784
796
|
*
|
|
@@ -1209,6 +1221,12 @@ export interface Product {
|
|
|
1209
1221
|
* @memberof Product
|
|
1210
1222
|
*/
|
|
1211
1223
|
'optimisationHistory'?: Array<OptimisationHistoryItem>;
|
|
1224
|
+
/**
|
|
1225
|
+
*
|
|
1226
|
+
* @type {Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>}
|
|
1227
|
+
* @memberof Product
|
|
1228
|
+
*/
|
|
1229
|
+
'integrationConnections'?: Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>;
|
|
1212
1230
|
}
|
|
1213
1231
|
/**
|
|
1214
1232
|
*
|
|
@@ -1594,6 +1612,31 @@ export interface UpdateProductRequest {
|
|
|
1594
1612
|
* @memberof UpdateProductRequest
|
|
1595
1613
|
*/
|
|
1596
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;
|
|
1597
1640
|
}
|
|
1598
1641
|
/**
|
|
1599
1642
|
*
|
|
@@ -1680,6 +1723,31 @@ export interface UpdateProductsRequestProductsInner {
|
|
|
1680
1723
|
* @memberof UpdateProductsRequestProductsInner
|
|
1681
1724
|
*/
|
|
1682
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;
|
|
1683
1751
|
}
|
|
1684
1752
|
/**
|
|
1685
1753
|
*
|
|
@@ -1736,6 +1804,12 @@ export interface UpdateProductsRequestProductsInnerVariantsInner {
|
|
|
1736
1804
|
* @memberof UpdateProductsRequestProductsInnerVariantsInner
|
|
1737
1805
|
*/
|
|
1738
1806
|
'shopifyId'?: number;
|
|
1807
|
+
/**
|
|
1808
|
+
*
|
|
1809
|
+
* @type {Array<UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner>}
|
|
1810
|
+
* @memberof UpdateProductsRequestProductsInnerVariantsInner
|
|
1811
|
+
*/
|
|
1812
|
+
'integrationConnections'?: Array<UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner>;
|
|
1739
1813
|
}
|
|
1740
1814
|
/**
|
|
1741
1815
|
*
|
|
@@ -1761,6 +1835,25 @@ export declare const UpdateProductsRequestProductsInnerVariantsInnerAttributesIn
|
|
|
1761
1835
|
readonly Colour: "Colour";
|
|
1762
1836
|
};
|
|
1763
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
|
+
}
|
|
1764
1857
|
/**
|
|
1765
1858
|
* Variant retail price including tax.
|
|
1766
1859
|
* @export
|
|
@@ -1928,6 +2021,31 @@ export interface Variant {
|
|
|
1928
2021
|
* @memberof Variant
|
|
1929
2022
|
*/
|
|
1930
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;
|
|
1931
2049
|
}
|
|
1932
2050
|
/**
|
|
1933
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).
|