feed-common 1.11.1 → 1.13.0
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +14 -0
- package/dist/constants/profile.constants.d.ts +1 -1
- package/dist/constants/profile.constants.d.ts.map +1 -1
- package/dist/constants/profile.constants.js +147 -159
- package/dist/constants/profile.constants.js.map +1 -1
- package/package.json +1 -1
- package/src/constants/profile.constants.ts +387 -404
- package/tests/profile.spec.ts +70 -43
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,17 @@
|
|
1
|
+
# [1.13.0](https://github.com/advertikon/package-maxify-feed-common/compare/v1.12.0...v1.13.0) (2024-06-08)
|
2
|
+
|
3
|
+
|
4
|
+
### Features
|
5
|
+
|
6
|
+
* remove rules restriction on upload mappings ([9405040](https://github.com/advertikon/package-maxify-feed-common/commit/9405040406bf693dbaa637cf4e3f1b670112aa8d))
|
7
|
+
|
8
|
+
# [1.12.0](https://github.com/advertikon/package-maxify-feed-common/compare/v1.11.1...v1.12.0) (2024-06-08)
|
9
|
+
|
10
|
+
|
11
|
+
### Features
|
12
|
+
|
13
|
+
* add price to rules set ([9adf6bb](https://github.com/advertikon/package-maxify-feed-common/commit/9adf6bb043f9173f419e4de5f8e5b2831d303994))
|
14
|
+
|
1
15
|
## [1.11.1](https://github.com/advertikon/package-maxify-feed-common/compare/v1.11.0...v1.11.1) (2024-06-04)
|
2
16
|
|
3
17
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { ProductUploadMapSource, ProductUploadRuleFilterType } from
|
1
|
+
import { ProductUploadMapSource, ProductUploadRuleFilterType } from '../types/profile.types.js';
|
2
2
|
export declare const SOURCE_VENDORS = "source.vendor";
|
3
3
|
export declare const SOURCE_TAGS = "source.tag";
|
4
4
|
export declare const SOURCE_PRODUCT_TYPE = "source.product_type";
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"profile.constants.d.ts","sourceRoot":"","sources":["../../src/constants/profile.constants.ts"],"names":[],"mappings":"AACA,OAAO,
|
1
|
+
{"version":3,"file":"profile.constants.d.ts","sourceRoot":"","sources":["../../src/constants/profile.constants.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,sBAAsB,EAAE,2BAA2B,EAAE,MAAM,2BAA2B,CAAC;AAEhG,eAAO,MAAM,cAAc,kBAAkB,CAAC;AAC9C,eAAO,MAAM,WAAW,eAAe,CAAC;AACxC,eAAO,MAAM,mBAAmB,wBAAwB,CAAC;AACzD,eAAO,MAAM,kBAAkB,sBAAsB,CAAC;AACtD,eAAO,MAAM,eAAe,oBAAoB,CAAC;AACjD,eAAO,MAAM,sBAAsB,2BAA2B,CAAC;AAC/D,eAAO,MAAM,cAAc,mBAAmB,CAAC;AAE/C,eAAO,MAAM,sBAAsB,mBAAmB,CAAC;AACvD,eAAO,MAAM,sBAAsB,oBAAoB,CAAC;AACxD,eAAO,MAAM,kBAAkB,gBAAgB,CAAC;AAEhD,eAAO,MAAM,aAAa,iBAAiB,CAAC;AAE5C,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyDzB,CAAC;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;CAoBvC,CAAC;AAEF,eAAO,MAAM,wBAAwB,EAAE,2BAA2B,EA6CjE,CAAC;AASF,eAAO,MAAM,qBAAqB,EAAE,sBAAsB,EA2PzD,CAAC;AACF,eAAO,MAAM,OAAO,WAAW,CAAC;AAChC,eAAO,MAAM,uBAAuB,8BAA8B,CAAC;AACnE,eAAO,MAAM,sBAAsB,UAAsD,CAAC"}
|
@@ -1,70 +1,70 @@
|
|
1
|
-
export const SOURCE_VENDORS =
|
2
|
-
export const SOURCE_TAGS =
|
3
|
-
export const SOURCE_PRODUCT_TYPE =
|
4
|
-
export const SOURCE_COLLECTIONS =
|
5
|
-
export const SOURCE_LANGUAGE =
|
6
|
-
export const SOURCE_GOOGLE_CATEGORY =
|
7
|
-
export const SOURCE_COUNTRY =
|
8
|
-
export const SOURCE_SHOPIFY_VENDORS =
|
9
|
-
export const SOURCE_SHOPIFY_BARCODE =
|
10
|
-
export const SOURCE_SHOPIFY_SKU =
|
11
|
-
export const SOURCE_CUSTOM =
|
1
|
+
export const SOURCE_VENDORS = 'source.vendor';
|
2
|
+
export const SOURCE_TAGS = 'source.tag';
|
3
|
+
export const SOURCE_PRODUCT_TYPE = 'source.product_type';
|
4
|
+
export const SOURCE_COLLECTIONS = 'source.collection';
|
5
|
+
export const SOURCE_LANGUAGE = 'source.language';
|
6
|
+
export const SOURCE_GOOGLE_CATEGORY = 'source.google_category';
|
7
|
+
export const SOURCE_COUNTRY = 'source.country';
|
8
|
+
export const SOURCE_SHOPIFY_VENDORS = 'shopify.vendor';
|
9
|
+
export const SOURCE_SHOPIFY_BARCODE = 'shopify.barcode';
|
10
|
+
export const SOURCE_SHOPIFY_SKU = 'shopify.sku';
|
11
|
+
export const SOURCE_CUSTOM = 'custom_input';
|
12
12
|
export const RuleOperators = {
|
13
13
|
contains: {
|
14
|
-
label:
|
15
|
-
value:
|
14
|
+
label: 'Contains',
|
15
|
+
value: 'contains',
|
16
16
|
},
|
17
17
|
notContains: {
|
18
|
-
label:
|
19
|
-
value:
|
18
|
+
label: 'Not Contains',
|
19
|
+
value: 'notContains',
|
20
20
|
},
|
21
21
|
equals: {
|
22
|
-
label:
|
23
|
-
value:
|
22
|
+
label: 'Equals',
|
23
|
+
value: 'equals',
|
24
24
|
},
|
25
25
|
notEquals: {
|
26
|
-
label:
|
27
|
-
value:
|
26
|
+
label: 'Not Equals',
|
27
|
+
value: 'notEquals',
|
28
28
|
},
|
29
29
|
startsWith: {
|
30
|
-
label:
|
31
|
-
value:
|
30
|
+
label: 'Starts With',
|
31
|
+
value: 'startsWith',
|
32
32
|
},
|
33
33
|
notStartsWith: {
|
34
|
-
label:
|
35
|
-
value:
|
34
|
+
label: 'Not Starts With',
|
35
|
+
value: 'notStartsWith',
|
36
36
|
},
|
37
37
|
endsWith: {
|
38
|
-
label:
|
39
|
-
value:
|
38
|
+
label: 'Ends With',
|
39
|
+
value: 'endsWith',
|
40
40
|
},
|
41
41
|
notEndsWith: {
|
42
|
-
label:
|
43
|
-
value:
|
42
|
+
label: 'Not Ends With',
|
43
|
+
value: 'notEndsWith',
|
44
44
|
},
|
45
45
|
in: {
|
46
|
-
label:
|
47
|
-
value:
|
46
|
+
label: 'In',
|
47
|
+
value: 'in',
|
48
48
|
},
|
49
49
|
notIn: {
|
50
|
-
label:
|
51
|
-
value:
|
50
|
+
label: 'Not In',
|
51
|
+
value: 'notIn',
|
52
52
|
},
|
53
53
|
less: {
|
54
|
-
label:
|
55
|
-
value:
|
54
|
+
label: 'Less Than',
|
55
|
+
value: 'less',
|
56
56
|
},
|
57
57
|
greater: {
|
58
|
-
label:
|
59
|
-
value:
|
58
|
+
label: 'Greater Than',
|
59
|
+
value: 'greater',
|
60
60
|
},
|
61
61
|
lessOrEqual: {
|
62
|
-
label:
|
63
|
-
value:
|
62
|
+
label: 'Less Than or Equal',
|
63
|
+
value: 'lessOrEqual',
|
64
64
|
},
|
65
65
|
greaterOrEqual: {
|
66
|
-
label:
|
67
|
-
value:
|
66
|
+
label: 'Greater Than or Equal',
|
67
|
+
value: 'greaterOrEqual',
|
68
68
|
},
|
69
69
|
};
|
70
70
|
export const ProductUploadRulesOperators = {
|
@@ -90,203 +90,196 @@ export const ProductUploadRulesOperators = {
|
|
90
90
|
};
|
91
91
|
export const ProductUploadRuleFilters = [
|
92
92
|
{
|
93
|
-
label:
|
93
|
+
label: 'Title',
|
94
94
|
operators: ProductUploadRulesOperators.string,
|
95
|
-
value:
|
95
|
+
value: 'title',
|
96
96
|
},
|
97
97
|
{
|
98
|
-
label:
|
98
|
+
label: 'Collection',
|
99
99
|
operators: ProductUploadRulesOperators.list,
|
100
|
-
value:
|
100
|
+
value: 'collection',
|
101
101
|
},
|
102
102
|
{
|
103
|
-
label:
|
103
|
+
label: 'Product Type',
|
104
104
|
operators: ProductUploadRulesOperators.list,
|
105
|
-
value:
|
105
|
+
value: 'product_type',
|
106
106
|
},
|
107
107
|
{
|
108
|
-
label:
|
108
|
+
label: 'Vendor',
|
109
109
|
operators: ProductUploadRulesOperators.list,
|
110
|
-
value:
|
110
|
+
value: 'vendor',
|
111
111
|
},
|
112
112
|
{
|
113
|
-
label:
|
113
|
+
label: 'Tag',
|
114
114
|
operators: ProductUploadRulesOperators.list,
|
115
|
-
value:
|
115
|
+
value: 'tag',
|
116
116
|
},
|
117
117
|
{
|
118
|
-
label:
|
118
|
+
label: 'Inventory Policy',
|
119
119
|
operators: ProductUploadRulesOperators.is,
|
120
|
-
value:
|
120
|
+
value: 'inventory_policy',
|
121
121
|
values: [
|
122
|
-
{ label:
|
123
|
-
{ label:
|
122
|
+
{ label: 'Deny', value: 'deny' },
|
123
|
+
{ label: 'Continue', value: 'continue' },
|
124
124
|
],
|
125
125
|
},
|
126
126
|
{
|
127
|
-
label:
|
127
|
+
label: 'Inventory Quantity',
|
128
128
|
operators: ProductUploadRulesOperators.number,
|
129
|
-
value:
|
129
|
+
value: 'inventory_quantity',
|
130
|
+
},
|
131
|
+
{
|
132
|
+
label: 'Price',
|
133
|
+
operators: ProductUploadRulesOperators.number,
|
134
|
+
value: 'price',
|
130
135
|
},
|
131
136
|
];
|
132
137
|
const ShopifyProductSource = {
|
133
|
-
vendor: { label:
|
134
|
-
barcode: { label:
|
135
|
-
sku: { label:
|
136
|
-
custom: { label:
|
138
|
+
vendor: { label: 'Shopify Product Vendor', value: SOURCE_SHOPIFY_VENDORS },
|
139
|
+
barcode: { label: 'Shopify Product Barcode', value: SOURCE_SHOPIFY_BARCODE },
|
140
|
+
sku: { label: 'Shopify Product SKU', value: SOURCE_SHOPIFY_SKU },
|
141
|
+
custom: { label: 'Custom input', value: SOURCE_CUSTOM },
|
137
142
|
};
|
138
143
|
export const ProductUploadMappings = [
|
139
144
|
{
|
140
145
|
required: true,
|
141
|
-
label:
|
142
|
-
attribute:
|
143
|
-
type:
|
146
|
+
label: 'Content Language',
|
147
|
+
attribute: 'contentLanguage',
|
148
|
+
type: 'select',
|
144
149
|
choices: [SOURCE_LANGUAGE],
|
145
|
-
rules: [
|
146
|
-
description:
|
150
|
+
rules: [],
|
151
|
+
description: 'Language for the item',
|
147
152
|
},
|
148
153
|
{
|
149
154
|
required: true,
|
150
|
-
label:
|
151
|
-
attribute:
|
152
|
-
type:
|
155
|
+
label: 'Target Country',
|
156
|
+
attribute: 'targetCountry',
|
157
|
+
type: 'select',
|
153
158
|
choices: [SOURCE_COUNTRY],
|
154
|
-
rules: [
|
159
|
+
rules: [],
|
155
160
|
description: "The item's country of sale",
|
156
161
|
},
|
157
162
|
{
|
158
163
|
required: false,
|
159
|
-
label:
|
160
|
-
attribute:
|
161
|
-
type:
|
164
|
+
label: 'Adult',
|
165
|
+
attribute: 'adult',
|
166
|
+
type: 'select',
|
162
167
|
choices: [
|
163
|
-
{ label:
|
164
|
-
{ label:
|
168
|
+
{ label: 'Yes', value: true },
|
169
|
+
{ label: 'No', value: false },
|
165
170
|
],
|
166
|
-
rules: [
|
171
|
+
rules: [],
|
167
172
|
description: 'Should be set to "Yes" if the item is targeted towards adults',
|
168
173
|
},
|
169
174
|
{
|
170
175
|
required: false,
|
171
|
-
label:
|
172
|
-
attribute:
|
173
|
-
type:
|
176
|
+
label: 'Age Group',
|
177
|
+
attribute: 'ageGroup',
|
178
|
+
type: 'select',
|
174
179
|
choices: [
|
175
|
-
{ label:
|
176
|
-
{ label:
|
177
|
-
{ label:
|
178
|
-
{ label:
|
179
|
-
{ label:
|
180
|
+
{ label: '0-3 months old', value: 'newborn' },
|
181
|
+
{ label: '3-12 months old', value: 'infant' },
|
182
|
+
{ label: '1-5 years old', value: 'toddler' },
|
183
|
+
{ label: '5-13 years old', value: 'kids' },
|
184
|
+
{ label: '13 years old or more', value: 'adult' },
|
180
185
|
],
|
181
|
-
rules: [
|
182
|
-
description:
|
186
|
+
rules: [],
|
187
|
+
description: 'Target age group of the item',
|
183
188
|
},
|
184
189
|
{
|
185
190
|
required: true,
|
186
|
-
label:
|
187
|
-
attribute:
|
188
|
-
type:
|
191
|
+
label: 'Availability',
|
192
|
+
attribute: 'availability',
|
193
|
+
type: 'select',
|
189
194
|
choices: [
|
190
|
-
{ label:
|
191
|
-
{ label:
|
192
|
-
{ label:
|
193
|
-
{ label:
|
194
|
-
],
|
195
|
-
rules: [
|
196
|
-
"title",
|
197
|
-
"collection",
|
198
|
-
"product_type",
|
199
|
-
"vendor",
|
200
|
-
"tag",
|
201
|
-
"inventory_policy",
|
202
|
-
"inventory_quantity",
|
195
|
+
{ label: 'In Stock', value: 'in_stock' },
|
196
|
+
{ label: 'Out Of Stock', value: 'out_of_stock' },
|
197
|
+
{ label: 'Preorder', value: 'preorder' },
|
198
|
+
{ label: 'Backorder', value: 'backorder' },
|
203
199
|
],
|
204
|
-
|
200
|
+
rules: [],
|
201
|
+
description: 'Availability status of the item',
|
205
202
|
},
|
206
203
|
{
|
207
204
|
required: false,
|
208
|
-
label:
|
209
|
-
attribute:
|
210
|
-
type:
|
211
|
-
defaultValue:
|
212
|
-
rules: [
|
213
|
-
description:
|
214
|
-
choices: [
|
215
|
-
ShopifyProductSource.vendor,
|
216
|
-
SOURCE_VENDORS,
|
217
|
-
ShopifyProductSource.custom,
|
218
|
-
],
|
205
|
+
label: 'Brand',
|
206
|
+
attribute: 'brand',
|
207
|
+
type: 'select',
|
208
|
+
defaultValue: 'shopify.vendor',
|
209
|
+
rules: [],
|
210
|
+
description: 'Brand of the item',
|
211
|
+
choices: [ShopifyProductSource.vendor, SOURCE_VENDORS, ShopifyProductSource.custom],
|
219
212
|
},
|
220
213
|
{
|
221
214
|
required: false,
|
222
|
-
label:
|
223
|
-
attribute:
|
224
|
-
type:
|
215
|
+
label: 'Gender',
|
216
|
+
attribute: 'gender',
|
217
|
+
type: 'select',
|
225
218
|
choices: [
|
226
|
-
{ label:
|
227
|
-
{ label:
|
228
|
-
{ label:
|
219
|
+
{ label: 'Male', value: 'male' },
|
220
|
+
{ label: 'Female', value: 'female' },
|
221
|
+
{ label: 'Unisex', value: 'unisex' },
|
229
222
|
],
|
230
|
-
rules: [
|
231
|
-
description:
|
223
|
+
rules: [],
|
224
|
+
description: 'Target gender of the item',
|
232
225
|
},
|
233
226
|
{
|
234
227
|
required: false,
|
235
|
-
label:
|
236
|
-
attribute:
|
237
|
-
type:
|
228
|
+
label: 'Google category',
|
229
|
+
attribute: 'googleProductCategory',
|
230
|
+
type: 'select',
|
238
231
|
choices: [SOURCE_GOOGLE_CATEGORY],
|
239
|
-
rules: [
|
232
|
+
rules: [],
|
240
233
|
description: "Google's category of the item",
|
241
234
|
},
|
242
235
|
{
|
243
236
|
required: false,
|
244
|
-
label:
|
245
|
-
attribute:
|
246
|
-
type:
|
247
|
-
defaultValue:
|
248
|
-
rules: [
|
249
|
-
description:
|
237
|
+
label: 'GTIN',
|
238
|
+
attribute: 'gtin',
|
239
|
+
type: 'select',
|
240
|
+
defaultValue: 'shopify.vendor',
|
241
|
+
rules: [],
|
242
|
+
description: 'Global Trade Item Number (GTIN) of the item',
|
250
243
|
choices: [
|
251
244
|
ShopifyProductSource.barcode,
|
252
245
|
ShopifyProductSource.sku,
|
253
|
-
{ label:
|
246
|
+
{ label: 'Custom input', value: SOURCE_CUSTOM },
|
254
247
|
],
|
255
248
|
},
|
256
249
|
{
|
257
250
|
required: false,
|
258
|
-
label:
|
259
|
-
attribute:
|
260
|
-
type:
|
261
|
-
defaultValue:
|
262
|
-
rules: [
|
263
|
-
description:
|
251
|
+
label: 'MPN',
|
252
|
+
attribute: 'mpn',
|
253
|
+
type: 'select',
|
254
|
+
defaultValue: 'shopify.vendor',
|
255
|
+
rules: [],
|
256
|
+
description: 'Manufacturer Part Number (MPN) of the item',
|
264
257
|
choices: [
|
265
258
|
ShopifyProductSource.barcode,
|
266
259
|
ShopifyProductSource.sku,
|
267
|
-
{ label:
|
260
|
+
{ label: 'Custom input', value: SOURCE_CUSTOM },
|
268
261
|
],
|
269
262
|
},
|
270
263
|
{
|
271
264
|
required: false,
|
272
|
-
label:
|
273
|
-
attribute:
|
274
|
-
type:
|
265
|
+
label: 'Included Destinations',
|
266
|
+
attribute: 'includedDestinations',
|
267
|
+
type: 'multiselect',
|
275
268
|
choices: [
|
276
|
-
{ label:
|
277
|
-
{ label:
|
278
|
-
{ label:
|
269
|
+
{ label: 'Shopping ads', value: 'Shopping_ads' },
|
270
|
+
{ label: 'Dynamic remarketing ads', value: 'Display_ads' },
|
271
|
+
{ label: 'Free listings', value: 'Free_listings' },
|
279
272
|
],
|
280
|
-
rules: [
|
281
|
-
description:
|
273
|
+
rules: [],
|
274
|
+
description: 'The list of destinations to include for this target (corresponds to checked check boxes in Merchant Center)',
|
282
275
|
},
|
283
276
|
{
|
284
277
|
required: false,
|
285
|
-
label:
|
286
|
-
attribute:
|
287
|
-
type:
|
288
|
-
rules: [
|
289
|
-
description:
|
278
|
+
label: 'Shipping label',
|
279
|
+
attribute: 'shippingLabel',
|
280
|
+
type: 'text',
|
281
|
+
rules: [],
|
282
|
+
description: 'The shipping label of the product, used to group product in account-level shipping rules',
|
290
283
|
},
|
291
284
|
// /**
|
292
285
|
// * The day a pre-ordered product becomes available for delivery, in ISO 8601 format.
|
@@ -397,12 +390,7 @@ export const ProductUploadMappings = [
|
|
397
390
|
// */
|
398
391
|
// sizeType?: string | null;
|
399
392
|
];
|
400
|
-
export const CHANNEL =
|
401
|
-
export const GMC_PRODUCT_ID_TEMPLATE =
|
402
|
-
export const ProfileIdTemplateCodes = [
|
403
|
-
"PRODUCT_ID",
|
404
|
-
"VARIANT_ID",
|
405
|
-
"COUNTRY",
|
406
|
-
"LANGUAGE",
|
407
|
-
];
|
393
|
+
export const CHANNEL = 'online';
|
394
|
+
export const GMC_PRODUCT_ID_TEMPLATE = '{PRODUCT_ID}_{VARIANT_ID}';
|
395
|
+
export const ProfileIdTemplateCodes = ['PRODUCT_ID', 'VARIANT_ID', 'COUNTRY', 'LANGUAGE'];
|
408
396
|
//# sourceMappingURL=profile.constants.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"profile.constants.js","sourceRoot":"","sources":["../../src/constants/profile.constants.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"profile.constants.js","sourceRoot":"","sources":["../../src/constants/profile.constants.ts"],"names":[],"mappings":"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"}
|