@teemill/product-catalog 1.98.0 → 1.99.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 +10 -5
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +10 -5
- package/dist/api.js +2 -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 +10 -5
- package/dist/esm/api.js +2 -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/docs/TextApplicationPropertiesPersonalizationRules.md +6 -4
- 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.99.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.99.0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog
|
|
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 product from the GFN Catalog, 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.99.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1895,6 +1895,7 @@ export const TextApplicationPropertiesPersonalizationTypeEnum = {
|
|
|
1895
1895
|
Text: 'text',
|
|
1896
1896
|
Number: 'number',
|
|
1897
1897
|
Textarea: 'textarea',
|
|
1898
|
+
Dropdown: 'dropdown',
|
|
1898
1899
|
} as const;
|
|
1899
1900
|
|
|
1900
1901
|
export type TextApplicationPropertiesPersonalizationTypeEnum = typeof TextApplicationPropertiesPersonalizationTypeEnum[keyof typeof TextApplicationPropertiesPersonalizationTypeEnum];
|
|
@@ -1902,11 +1903,11 @@ export type TextApplicationPropertiesPersonalizationTypeEnum = typeof TextApplic
|
|
|
1902
1903
|
export interface TextApplicationPropertiesPersonalizationRules {
|
|
1903
1904
|
'optional'?: PersonalizationOptional;
|
|
1904
1905
|
/**
|
|
1905
|
-
* The maximum length of the text, in characters.
|
|
1906
|
+
* The maximum length of the text, in characters. Only valid when metadata.personalization.type is \"text\"
|
|
1906
1907
|
*/
|
|
1907
1908
|
'maxLength'?: number;
|
|
1908
1909
|
/**
|
|
1909
|
-
* If true, suspected profanities will be replaced by
|
|
1910
|
+
* If true, suspected profanities will be replaced by asterisks. Only valid when metadata.personalization.type is \"text\" or \"textarea\"
|
|
1910
1911
|
*/
|
|
1911
1912
|
'profanityFilter'?: boolean;
|
|
1912
1913
|
/**
|
|
@@ -1914,13 +1915,17 @@ export interface TextApplicationPropertiesPersonalizationRules {
|
|
|
1914
1915
|
*/
|
|
1915
1916
|
'scaleToFit'?: boolean;
|
|
1916
1917
|
/**
|
|
1917
|
-
* If true, all text on this element will be formatted to uppercase.
|
|
1918
|
+
* If true, all text on this element will be formatted to uppercase. Only valid when metadata.personalization.type is \"text\" or \"textarea\"
|
|
1918
1919
|
*/
|
|
1919
1920
|
'forceCapitalisation'?: boolean;
|
|
1920
1921
|
/**
|
|
1921
1922
|
* If true, customers can choose the colour of this element.
|
|
1922
1923
|
*/
|
|
1923
1924
|
'enableColourPicker'?: boolean;
|
|
1925
|
+
/**
|
|
1926
|
+
* Pre-defined text options a customer can choose from. Only valid when metadata.personalization.type is \"dropdown\"
|
|
1927
|
+
*/
|
|
1928
|
+
'enums'?: Array<string>;
|
|
1924
1929
|
/**
|
|
1925
1930
|
* The maximum value of the number. Only valid when metadata.personalization.type is \"number\"
|
|
1926
1931
|
*/
|
|
@@ -1930,7 +1935,7 @@ export interface TextApplicationPropertiesPersonalizationRules {
|
|
|
1930
1935
|
*/
|
|
1931
1936
|
'minValue'?: number;
|
|
1932
1937
|
/**
|
|
1933
|
-
* If the entered number is below the specified digits it will be padded with 0s. E.g. 7 will become 007 when pad is 3. Only valid when metadata.personalization.type is number
|
|
1938
|
+
* If the entered number is below the specified digits it will be padded with 0s. E.g. 7 will become 007 when pad is 3. Only valid when metadata.personalization.type is \"number\"
|
|
1934
1939
|
*/
|
|
1935
1940
|
'pad'?: number;
|
|
1936
1941
|
}
|
package/base.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog
|
|
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 product from the GFN Catalog, 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.99.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
|
|
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 product from the GFN Catalog, 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.99.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/configuration.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Product Catalog
|
|
4
4
|
* 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 product from the GFN Catalog, plus listing information such as title, description and tags.
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 1.
|
|
6
|
+
* The version of the OpenAPI document: 1.99.0
|
|
7
7
|
*
|
|
8
8
|
*
|
|
9
9
|
* 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
|
|
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 product from the GFN Catalog, 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.99.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1836,16 +1836,17 @@ export declare const TextApplicationPropertiesPersonalizationTypeEnum: {
|
|
|
1836
1836
|
readonly Text: "text";
|
|
1837
1837
|
readonly Number: "number";
|
|
1838
1838
|
readonly Textarea: "textarea";
|
|
1839
|
+
readonly Dropdown: "dropdown";
|
|
1839
1840
|
};
|
|
1840
1841
|
export type TextApplicationPropertiesPersonalizationTypeEnum = typeof TextApplicationPropertiesPersonalizationTypeEnum[keyof typeof TextApplicationPropertiesPersonalizationTypeEnum];
|
|
1841
1842
|
export interface TextApplicationPropertiesPersonalizationRules {
|
|
1842
1843
|
'optional'?: PersonalizationOptional;
|
|
1843
1844
|
/**
|
|
1844
|
-
* The maximum length of the text, in characters.
|
|
1845
|
+
* The maximum length of the text, in characters. Only valid when metadata.personalization.type is \"text\"
|
|
1845
1846
|
*/
|
|
1846
1847
|
'maxLength'?: number;
|
|
1847
1848
|
/**
|
|
1848
|
-
* If true, suspected profanities will be replaced by
|
|
1849
|
+
* If true, suspected profanities will be replaced by asterisks. Only valid when metadata.personalization.type is \"text\" or \"textarea\"
|
|
1849
1850
|
*/
|
|
1850
1851
|
'profanityFilter'?: boolean;
|
|
1851
1852
|
/**
|
|
@@ -1853,13 +1854,17 @@ export interface TextApplicationPropertiesPersonalizationRules {
|
|
|
1853
1854
|
*/
|
|
1854
1855
|
'scaleToFit'?: boolean;
|
|
1855
1856
|
/**
|
|
1856
|
-
* If true, all text on this element will be formatted to uppercase.
|
|
1857
|
+
* If true, all text on this element will be formatted to uppercase. Only valid when metadata.personalization.type is \"text\" or \"textarea\"
|
|
1857
1858
|
*/
|
|
1858
1859
|
'forceCapitalisation'?: boolean;
|
|
1859
1860
|
/**
|
|
1860
1861
|
* If true, customers can choose the colour of this element.
|
|
1861
1862
|
*/
|
|
1862
1863
|
'enableColourPicker'?: boolean;
|
|
1864
|
+
/**
|
|
1865
|
+
* Pre-defined text options a customer can choose from. Only valid when metadata.personalization.type is \"dropdown\"
|
|
1866
|
+
*/
|
|
1867
|
+
'enums'?: Array<string>;
|
|
1863
1868
|
/**
|
|
1864
1869
|
* The maximum value of the number. Only valid when metadata.personalization.type is \"number\"
|
|
1865
1870
|
*/
|
|
@@ -1869,7 +1874,7 @@ export interface TextApplicationPropertiesPersonalizationRules {
|
|
|
1869
1874
|
*/
|
|
1870
1875
|
'minValue'?: number;
|
|
1871
1876
|
/**
|
|
1872
|
-
* If the entered number is below the specified digits it will be padded with 0s. E.g. 7 will become 007 when pad is 3. Only valid when metadata.personalization.type is number
|
|
1877
|
+
* If the entered number is below the specified digits it will be padded with 0s. E.g. 7 will become 007 when pad is 3. Only valid when metadata.personalization.type is \"number\"
|
|
1873
1878
|
*/
|
|
1874
1879
|
'pad'?: number;
|
|
1875
1880
|
}
|
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog
|
|
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 product from the GFN Catalog, 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.99.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -155,6 +155,7 @@ exports.TextApplicationPropertiesPersonalizationTypeEnum = {
|
|
|
155
155
|
Text: 'text',
|
|
156
156
|
Number: 'number',
|
|
157
157
|
Textarea: 'textarea',
|
|
158
|
+
Dropdown: 'dropdown',
|
|
158
159
|
};
|
|
159
160
|
exports.UpdateProductsRequestProductsInnerVariantsInnerAttributesInnerNameEnum = {
|
|
160
161
|
Size: 'Size',
|
package/dist/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog
|
|
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 product from the GFN Catalog, 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.99.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
|
|
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 product from the GFN Catalog, 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.99.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
|
|
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 product from the GFN Catalog, 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.99.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
|
|
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 product from the GFN Catalog, 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.99.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
|
|
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 product from the GFN Catalog, 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.99.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
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog
|
|
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 product from the GFN Catalog, 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.99.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* 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
|
|
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 product from the GFN Catalog, 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.99.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1836,16 +1836,17 @@ export declare const TextApplicationPropertiesPersonalizationTypeEnum: {
|
|
|
1836
1836
|
readonly Text: "text";
|
|
1837
1837
|
readonly Number: "number";
|
|
1838
1838
|
readonly Textarea: "textarea";
|
|
1839
|
+
readonly Dropdown: "dropdown";
|
|
1839
1840
|
};
|
|
1840
1841
|
export type TextApplicationPropertiesPersonalizationTypeEnum = typeof TextApplicationPropertiesPersonalizationTypeEnum[keyof typeof TextApplicationPropertiesPersonalizationTypeEnum];
|
|
1841
1842
|
export interface TextApplicationPropertiesPersonalizationRules {
|
|
1842
1843
|
'optional'?: PersonalizationOptional;
|
|
1843
1844
|
/**
|
|
1844
|
-
* The maximum length of the text, in characters.
|
|
1845
|
+
* The maximum length of the text, in characters. Only valid when metadata.personalization.type is \"text\"
|
|
1845
1846
|
*/
|
|
1846
1847
|
'maxLength'?: number;
|
|
1847
1848
|
/**
|
|
1848
|
-
* If true, suspected profanities will be replaced by
|
|
1849
|
+
* If true, suspected profanities will be replaced by asterisks. Only valid when metadata.personalization.type is \"text\" or \"textarea\"
|
|
1849
1850
|
*/
|
|
1850
1851
|
'profanityFilter'?: boolean;
|
|
1851
1852
|
/**
|
|
@@ -1853,13 +1854,17 @@ export interface TextApplicationPropertiesPersonalizationRules {
|
|
|
1853
1854
|
*/
|
|
1854
1855
|
'scaleToFit'?: boolean;
|
|
1855
1856
|
/**
|
|
1856
|
-
* If true, all text on this element will be formatted to uppercase.
|
|
1857
|
+
* If true, all text on this element will be formatted to uppercase. Only valid when metadata.personalization.type is \"text\" or \"textarea\"
|
|
1857
1858
|
*/
|
|
1858
1859
|
'forceCapitalisation'?: boolean;
|
|
1859
1860
|
/**
|
|
1860
1861
|
* If true, customers can choose the colour of this element.
|
|
1861
1862
|
*/
|
|
1862
1863
|
'enableColourPicker'?: boolean;
|
|
1864
|
+
/**
|
|
1865
|
+
* Pre-defined text options a customer can choose from. Only valid when metadata.personalization.type is \"dropdown\"
|
|
1866
|
+
*/
|
|
1867
|
+
'enums'?: Array<string>;
|
|
1863
1868
|
/**
|
|
1864
1869
|
* The maximum value of the number. Only valid when metadata.personalization.type is \"number\"
|
|
1865
1870
|
*/
|
|
@@ -1869,7 +1874,7 @@ export interface TextApplicationPropertiesPersonalizationRules {
|
|
|
1869
1874
|
*/
|
|
1870
1875
|
'minValue'?: number;
|
|
1871
1876
|
/**
|
|
1872
|
-
* If the entered number is below the specified digits it will be padded with 0s. E.g. 7 will become 007 when pad is 3. Only valid when metadata.personalization.type is number
|
|
1877
|
+
* If the entered number is below the specified digits it will be padded with 0s. E.g. 7 will become 007 when pad is 3. Only valid when metadata.personalization.type is \"number\"
|
|
1873
1878
|
*/
|
|
1874
1879
|
'pad'?: number;
|
|
1875
1880
|
}
|
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog
|
|
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 product from the GFN Catalog, 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.99.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -151,6 +151,7 @@ export const TextApplicationPropertiesPersonalizationTypeEnum = {
|
|
|
151
151
|
Text: 'text',
|
|
152
152
|
Number: 'number',
|
|
153
153
|
Textarea: 'textarea',
|
|
154
|
+
Dropdown: 'dropdown',
|
|
154
155
|
};
|
|
155
156
|
export const UpdateProductsRequestProductsInnerVariantsInnerAttributesInnerNameEnum = {
|
|
156
157
|
Size: 'Size',
|
package/dist/esm/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog
|
|
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 product from the GFN Catalog, 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.99.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
|
|
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 product from the GFN Catalog, 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.99.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
|
|
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 product from the GFN Catalog, 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.99.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
|
|
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 product from the GFN Catalog, 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.99.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
|
|
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 product from the GFN Catalog, 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.99.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Product Catalog
|
|
4
4
|
* 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 product from the GFN Catalog, plus listing information such as title, description and tags.
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 1.
|
|
6
|
+
* The version of the OpenAPI document: 1.99.0
|
|
7
7
|
*
|
|
8
8
|
*
|
|
9
9
|
* 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
|
|
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 product from the GFN Catalog, 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.99.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
|
|
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 product from the GFN Catalog, 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.99.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
|
|
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 product from the GFN Catalog, 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.99.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
|
|
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 product from the GFN Catalog, 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.99.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -6,14 +6,15 @@
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**optional** | [**PersonalizationOptional**](PersonalizationOptional.md) | | [optional] [default to undefined]
|
|
9
|
-
**maxLength** | **number** | The maximum length of the text, in characters. | [optional] [default to 100]
|
|
10
|
-
**profanityFilter** | **boolean** | If true, suspected profanities will be replaced by
|
|
9
|
+
**maxLength** | **number** | The maximum length of the text, in characters. Only valid when metadata.personalization.type is \"text\" | [optional] [default to 100]
|
|
10
|
+
**profanityFilter** | **boolean** | If true, suspected profanities will be replaced by asterisks. Only valid when metadata.personalization.type is \"text\" or \"textarea\" | [optional] [default to false]
|
|
11
11
|
**scaleToFit** | **boolean** | If true, and the inputted text is longer than the original text, the font size will be reduced to keep the text within the application\'s original bounds. | [optional] [default to false]
|
|
12
|
-
**forceCapitalisation** | **boolean** | If true, all text on this element will be formatted to uppercase. | [optional] [default to false]
|
|
12
|
+
**forceCapitalisation** | **boolean** | If true, all text on this element will be formatted to uppercase. Only valid when metadata.personalization.type is \"text\" or \"textarea\" | [optional] [default to false]
|
|
13
13
|
**enableColourPicker** | **boolean** | If true, customers can choose the colour of this element. | [optional] [default to false]
|
|
14
|
+
**enums** | **Array<string>** | Pre-defined text options a customer can choose from. Only valid when metadata.personalization.type is \"dropdown\" | [optional] [default to undefined]
|
|
14
15
|
**maxValue** | **number** | The maximum value of the number. Only valid when metadata.personalization.type is \"number\" | [optional] [default to 100]
|
|
15
16
|
**minValue** | **number** | The minimum value of the number. Only valid when metadata.personalization.type is \"number\" | [optional] [default to 0]
|
|
16
|
-
**pad** | **number** | If the entered number is below the specified digits it will be padded with 0s. E.g. 7 will become 007 when pad is 3. Only valid when metadata.personalization.type is number | [optional] [default to 0]
|
|
17
|
+
**pad** | **number** | If the entered number is below the specified digits it will be padded with 0s. E.g. 7 will become 007 when pad is 3. Only valid when metadata.personalization.type is \"number\" | [optional] [default to 0]
|
|
17
18
|
|
|
18
19
|
## Example
|
|
19
20
|
|
|
@@ -27,6 +28,7 @@ const instance: TextApplicationPropertiesPersonalizationRules = {
|
|
|
27
28
|
scaleToFit,
|
|
28
29
|
forceCapitalisation,
|
|
29
30
|
enableColourPicker,
|
|
31
|
+
enums,
|
|
30
32
|
maxValue,
|
|
31
33
|
minValue,
|
|
32
34
|
pad,
|
package/index.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog
|
|
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 product from the GFN Catalog, 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.99.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|