@gofynd/fdk-client-javascript 3.17.0 → 3.17.2
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 +1 -1
- package/package.json +1 -1
- package/sdk/application/Cart/CartApplicationClient.d.ts +40 -0
- package/sdk/application/Cart/CartApplicationClient.js +176 -0
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +18 -4
- package/sdk/application/Catalog/CatalogApplicationClient.js +47 -4
- package/sdk/application/Content/ContentApplicationClient.d.ts +11 -1
- package/sdk/application/Content/ContentApplicationClient.js +40 -2
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +1 -1
- package/sdk/application/Payment/PaymentApplicationClient.js +2 -0
- package/sdk/common/Constant.d.ts +9 -0
- package/sdk/common/Constant.js +11 -0
- package/sdk/partner/Theme/ThemePartnerModel.d.ts +3 -2
- package/sdk/partner/Theme/ThemePartnerModel.js +5 -2
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +72 -10
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +634 -33
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +225 -1
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +147 -0
- package/sdk/platform/Cart/CartPlatformModel.d.ts +951 -1
- package/sdk/platform/Cart/CartPlatformModel.js +597 -1
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +123 -3
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +829 -39
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +205 -7
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +154 -3
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +5 -5
- package/sdk/platform/Catalog/CatalogPlatformClient.js +8 -5
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +1023 -31
- package/sdk/platform/Catalog/CatalogPlatformModel.js +841 -26
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +7 -0
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +3 -0
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +7 -0
- package/sdk/platform/Communication/CommunicationPlatformModel.js +3 -0
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +92 -1
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +54 -0
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +5 -5
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +3 -3
- package/sdk/platform/Content/ContentPlatformModel.d.ts +9 -8
- package/sdk/platform/Content/ContentPlatformModel.js +11 -8
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +21 -0
- package/sdk/platform/Discount/DiscountPlatformModel.js +9 -0
- package/sdk/platform/Order/OrderPlatformClient.d.ts +2 -2
- package/sdk/platform/Order/OrderPlatformClient.js +2 -2
- package/sdk/platform/Order/OrderPlatformModel.d.ts +20 -2
- package/sdk/platform/Order/OrderPlatformModel.js +9 -1
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +14 -3
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +88 -6
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +28 -3
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +22 -2
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +356 -1
- package/sdk/platform/Payment/PaymentPlatformModel.js +229 -0
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +3 -2
- package/sdk/platform/Theme/ThemePlatformModel.js +5 -2
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +29 -0
- package/sdk/platform/Webhook/WebhookPlatformModel.js +13 -0
- package/sdk/public/Webhook/WebhookPublicModel.d.ts +29 -0
- package/sdk/public/Webhook/WebhookPublicModel.js +13 -0
|
@@ -9,6 +9,10 @@ export = CatalogPlatformModel;
|
|
|
9
9
|
* @typedef ValidationErrors
|
|
10
10
|
* @property {ValidationError[]} errors - A list of validation errors in the request.
|
|
11
11
|
*/
|
|
12
|
+
/**
|
|
13
|
+
* @typedef StandardError
|
|
14
|
+
* @property {string} message - A brief description of the error.
|
|
15
|
+
*/
|
|
12
16
|
/**
|
|
13
17
|
* @typedef AllSizes
|
|
14
18
|
* @property {ValidateIdentifier[]} [identifiers] - A collection of identifiers
|
|
@@ -106,6 +110,125 @@ export = CatalogPlatformModel;
|
|
|
106
110
|
* @property {string} [name] - Name of the application.
|
|
107
111
|
* @property {number} priority - Defines the priority level for this
|
|
108
112
|
* configuration, with 1 being the highest.
|
|
113
|
+
* @property {SortWeights} [weights]
|
|
114
|
+
* @property {CohortSortingConfiguration} [cohorts]
|
|
115
|
+
*/
|
|
116
|
+
/**
|
|
117
|
+
* @typedef SortWeights
|
|
118
|
+
* @property {number} [popularity] - Controls how strongly overall product
|
|
119
|
+
* popularity influences ranking. Products with higher engagement and demand
|
|
120
|
+
* are ranked higher.
|
|
121
|
+
* @property {number} [availability] - Controls the importance of product
|
|
122
|
+
* availability and fulfilment readiness in ranking. Products that are more
|
|
123
|
+
* consistently available are prioritized over low-stock or unreliable items.
|
|
124
|
+
* @property {number} [conversion] - Controls the effectiveness of product
|
|
125
|
+
* conversion rates in ranking. Products that convert views into purchases
|
|
126
|
+
* more efficiently are ranked higher.
|
|
127
|
+
* @property {number} [sold_quantity] - Reflects historical sales volume of a
|
|
128
|
+
* product. Products with higher sales volumes are ranked higher.
|
|
129
|
+
* @property {number} [depth] - Measures size or variant depth of a product.
|
|
130
|
+
* Products with more size options and inventory depth are ranked higher.
|
|
131
|
+
* @property {number} [listing] - Represents recency or freshness of the product
|
|
132
|
+
* listing. Products that are recently listed or have fresh inventory are
|
|
133
|
+
* ranked higher.
|
|
134
|
+
* @property {number} [discount] - Indicates the promotional value of a product.
|
|
135
|
+
* Products with higher discounts or promotions are ranked higher.
|
|
136
|
+
* @property {number} [cancelled] - Reflects historical cancellation reliability
|
|
137
|
+
* of a product or seller. Products with lower cancellation rates are ranked higher.
|
|
138
|
+
* @property {number} [returns] - Measures post-purchase return behavior.
|
|
139
|
+
* Products with lower return rates are ranked higher.
|
|
140
|
+
* @property {number} [catalogue] - Represents quality and completeness of
|
|
141
|
+
* catalog content. Products with more complete and high-quality content are
|
|
142
|
+
* ranked higher.
|
|
143
|
+
* @property {number} [revenue] - Represents revenue contribution potential of a
|
|
144
|
+
* product. Products that generate higher revenue are ranked higher.
|
|
145
|
+
*/
|
|
146
|
+
/**
|
|
147
|
+
* @typedef CohortWeights
|
|
148
|
+
* @property {SortWeights} weights
|
|
149
|
+
*/
|
|
150
|
+
/**
|
|
151
|
+
* @typedef HighSpenderRepeatCustomerWeights
|
|
152
|
+
* @property {SortWeights} weights
|
|
153
|
+
*/
|
|
154
|
+
/**
|
|
155
|
+
* @typedef HyperactiveRepeatCustomerWeights
|
|
156
|
+
* @property {SortWeights} weights
|
|
157
|
+
*/
|
|
158
|
+
/**
|
|
159
|
+
* @typedef HighSpenderOccasionalCustomerWeights
|
|
160
|
+
* @property {SortWeights} weights
|
|
161
|
+
*/
|
|
162
|
+
/**
|
|
163
|
+
* @typedef StandardOccasionalCustomerWeights
|
|
164
|
+
* @property {SortWeights} weights
|
|
165
|
+
*/
|
|
166
|
+
/**
|
|
167
|
+
* @typedef DormantPremiumCustomerWeights
|
|
168
|
+
* @property {SortWeights} weights
|
|
169
|
+
*/
|
|
170
|
+
/**
|
|
171
|
+
* @typedef BudgetRegularCustomerWeights
|
|
172
|
+
* @property {SortWeights} weights
|
|
173
|
+
*/
|
|
174
|
+
/**
|
|
175
|
+
* @typedef HighSpenderRegularCustomerWeights
|
|
176
|
+
* @property {SortWeights} weights
|
|
177
|
+
*/
|
|
178
|
+
/**
|
|
179
|
+
* @typedef StandardCustomerAboutToChurnWeights
|
|
180
|
+
* @property {SortWeights} weights
|
|
181
|
+
*/
|
|
182
|
+
/**
|
|
183
|
+
* @typedef PremiumCustomerAboutToChurnWeights
|
|
184
|
+
* @property {SortWeights} weights
|
|
185
|
+
*/
|
|
186
|
+
/**
|
|
187
|
+
* @typedef HighSpenderCustomerAboutToChurnWeights
|
|
188
|
+
* @property {SortWeights} weights
|
|
189
|
+
*/
|
|
190
|
+
/**
|
|
191
|
+
* @typedef StandardDormantCustomerWeights
|
|
192
|
+
* @property {SortWeights} weights
|
|
193
|
+
*/
|
|
194
|
+
/**
|
|
195
|
+
* @typedef HighSpenderDormantCustomerWeights
|
|
196
|
+
* @property {SortWeights} weights
|
|
197
|
+
*/
|
|
198
|
+
/**
|
|
199
|
+
* @typedef PotentialCustomerWeights
|
|
200
|
+
* @property {SortWeights} weights
|
|
201
|
+
*/
|
|
202
|
+
/**
|
|
203
|
+
* @typedef NewCustomerWeights
|
|
204
|
+
* @property {SortWeights} weights
|
|
205
|
+
*/
|
|
206
|
+
/**
|
|
207
|
+
* @typedef BudgetRepeatCustomerWeights
|
|
208
|
+
* @property {SortWeights} weights
|
|
209
|
+
*/
|
|
210
|
+
/**
|
|
211
|
+
* @typedef AverageSpenderRepeatCustomerWeights
|
|
212
|
+
* @property {SortWeights} weights
|
|
213
|
+
*/
|
|
214
|
+
/**
|
|
215
|
+
* @typedef CohortSortingConfiguration
|
|
216
|
+
* @property {HighSpenderRepeatCustomerWeights} [high_spender_repeat_customer]
|
|
217
|
+
* @property {HyperactiveRepeatCustomerWeights} [hyperactive_premium_repeat_customer]
|
|
218
|
+
* @property {HighSpenderOccasionalCustomerWeights} [high_spender_occasional_customer]
|
|
219
|
+
* @property {StandardOccasionalCustomerWeights} [standard_occasional_customer]
|
|
220
|
+
* @property {DormantPremiumCustomerWeights} [dormant_premium_customer]
|
|
221
|
+
* @property {BudgetRegularCustomerWeights} [budget_regular_customer]
|
|
222
|
+
* @property {HighSpenderRegularCustomerWeights} [high_spender_regular_customer]
|
|
223
|
+
* @property {StandardCustomerAboutToChurnWeights} [standard_customer_about_to_churn]
|
|
224
|
+
* @property {PremiumCustomerAboutToChurnWeights} [premium_customer_about_to_churn]
|
|
225
|
+
* @property {HighSpenderCustomerAboutToChurnWeights} [high_spender_customer_about_to_churn]
|
|
226
|
+
* @property {StandardDormantCustomerWeights} [standard_dormant_customer]
|
|
227
|
+
* @property {HighSpenderDormantCustomerWeights} [high_spender_dormant_customer]
|
|
228
|
+
* @property {PotentialCustomerWeights} [potential_customer]
|
|
229
|
+
* @property {NewCustomerWeights} [new_customer]
|
|
230
|
+
* @property {BudgetRepeatCustomerWeights} [budget_repeat_customer]
|
|
231
|
+
* @property {AverageSpenderRepeatCustomerWeights} [average_spender_repeat_customer]
|
|
109
232
|
*/
|
|
110
233
|
/**
|
|
111
234
|
* @typedef ApplicationBrandJson
|
|
@@ -2777,6 +2900,24 @@ export = CatalogPlatformModel;
|
|
|
2777
2900
|
* @property {CategoriesResponseSchema[]} [items]
|
|
2778
2901
|
* @property {Page} [page]
|
|
2779
2902
|
*/
|
|
2903
|
+
/**
|
|
2904
|
+
* @typedef PriceStrategySchema
|
|
2905
|
+
* @property {string} currency - Currency for the pricing strategy
|
|
2906
|
+
* @property {number} adjustment_value - Adjustment value for the pricing strategy
|
|
2907
|
+
* @property {string} adjustment_type - Type of adjustment for the pricing strategy
|
|
2908
|
+
*/
|
|
2909
|
+
/**
|
|
2910
|
+
* @typedef PriceFactoryResponseSchema
|
|
2911
|
+
* @property {string} [price_zone_id] - Unique identifier of the price zone
|
|
2912
|
+
* @property {string} [price_factory_id] - Unique identifier of the price factory
|
|
2913
|
+
* @property {string} [modified_by] - User who last modified the price factory
|
|
2914
|
+
* @property {string[]} [currencies] - List of currencies supported by the price factory
|
|
2915
|
+
* @property {string} [name] - Name of the price factory
|
|
2916
|
+
* @property {PriceStrategySchema[]} [price_strategy] - Pricing strategy for the
|
|
2917
|
+
* price factory
|
|
2918
|
+
* @property {boolean} [active] - Whether the price factory is active
|
|
2919
|
+
* @property {string} [created_by] - User who created the price factory
|
|
2920
|
+
*/
|
|
2780
2921
|
/**
|
|
2781
2922
|
* @typedef Product
|
|
2782
2923
|
* @property {Object} [_custom_json] - A custom JSON object that can hold any
|
|
@@ -4391,6 +4532,41 @@ export = CatalogPlatformModel;
|
|
|
4391
4532
|
* @typedef TaxReqBodyVersion
|
|
4392
4533
|
* @property {TaxComponent[]} components - List of tax components with their
|
|
4393
4534
|
* respective slabs and rates.
|
|
4535
|
+
* @property {string} [applicable_date] - Optional future effective date for the
|
|
4536
|
+
* version. Must be at least one minute ahead of the current time when supplied.
|
|
4537
|
+
* @property {string} [region_type] - Required whenever areas are supplied to
|
|
4538
|
+
* indicate the granularity of the provided regions.
|
|
4539
|
+
* @property {TaxGeoArea} [areas]
|
|
4540
|
+
* @property {number[]} [store_ids] - Store identifiers for store-level taxation.
|
|
4541
|
+
*/
|
|
4542
|
+
/**
|
|
4543
|
+
* @typedef TaxGeoArea
|
|
4544
|
+
* @property {string[]} regions - List of region identifiers based on the
|
|
4545
|
+
* selected region_type.
|
|
4546
|
+
* @property {string} country - Country identifier that groups the regions.
|
|
4547
|
+
*/
|
|
4548
|
+
/**
|
|
4549
|
+
* @typedef AreaDetails
|
|
4550
|
+
* @property {string} [uid]
|
|
4551
|
+
* @property {string} [display_name]
|
|
4552
|
+
* @property {string} [sub_type]
|
|
4553
|
+
* @property {string[]} [parent_id]
|
|
4554
|
+
*/
|
|
4555
|
+
/**
|
|
4556
|
+
* @typedef Country
|
|
4557
|
+
* @property {string} [uid]
|
|
4558
|
+
* @property {string} [display_name]
|
|
4559
|
+
*/
|
|
4560
|
+
/**
|
|
4561
|
+
* @typedef Area
|
|
4562
|
+
* @property {AreaDetails[]} regions
|
|
4563
|
+
* @property {Country} country
|
|
4564
|
+
*/
|
|
4565
|
+
/**
|
|
4566
|
+
* @typedef RegionReference
|
|
4567
|
+
* @property {string} [name]
|
|
4568
|
+
* @property {string} [slug]
|
|
4569
|
+
* @property {Area[]} [areas]
|
|
4394
4570
|
*/
|
|
4395
4571
|
/**
|
|
4396
4572
|
* @typedef CreateTaxRequestBody
|
|
@@ -4401,26 +4577,40 @@ export = CatalogPlatformModel;
|
|
|
4401
4577
|
* @typedef TaxVersion
|
|
4402
4578
|
* @property {string} [_id]
|
|
4403
4579
|
* @property {string} [rule_id] - Tax Rule ID.
|
|
4404
|
-
* @property {string} [applicable_date] -
|
|
4405
|
-
*
|
|
4580
|
+
* @property {string} [applicable_date] - Scheduled effective date for the
|
|
4581
|
+
* version. Must be at least one minute ahead of current time when provided.
|
|
4406
4582
|
* @property {string} [created_on]
|
|
4407
4583
|
* @property {string} [modified_on]
|
|
4408
4584
|
* @property {number} [company_id] - Company ID.
|
|
4409
4585
|
* @property {TaxStatusEnum} [status]
|
|
4586
|
+
* @property {string} [region_type] - Present when the version targets a
|
|
4587
|
+
* specific set of regions rather than the default country-level rule.
|
|
4588
|
+
* @property {TaxGeoArea} [areas]
|
|
4589
|
+
* @property {number[]} [store_ids] - Store identifiers for store-level taxation.
|
|
4590
|
+
* @property {TaxVersionScopeEnum} [scope]
|
|
4410
4591
|
* @property {TaxComponentResponseSchema[]} [components] - List of tax components.
|
|
4411
4592
|
*/
|
|
4412
4593
|
/**
|
|
4413
4594
|
* @typedef UpdateTaxVersionRequestBody
|
|
4414
4595
|
* @property {TaxComponentResponseSchema[]} components - List of tax components.
|
|
4415
4596
|
* @property {string} applicable_date - It is the date from when this rule will
|
|
4416
|
-
* come in effect. It should be
|
|
4597
|
+
* come in effect. It should be at least one minute in the future from the
|
|
4598
|
+
* current time.
|
|
4599
|
+
* @property {string} [region_type] - Required when areas are present to denote
|
|
4600
|
+
* the level (city/state/pincode) at which the version applies.
|
|
4601
|
+
* @property {TaxGeoArea} [areas]
|
|
4602
|
+
* @property {number[]} [store_ids] - Store identifiers for store-level taxation.
|
|
4417
4603
|
*/
|
|
4418
4604
|
/**
|
|
4419
4605
|
* @typedef CreateTaxVersionRequestBody
|
|
4420
4606
|
* @property {TaxComponent[]} components - List of tax components.
|
|
4421
|
-
* @property {string} applicable_date -
|
|
4422
|
-
* come in effect. It should be
|
|
4423
|
-
* current time. Date time format YYYY-MM-DDThh:mm:ss±hh:mm.
|
|
4607
|
+
* @property {string} [applicable_date] - Optional scheduled date from when this
|
|
4608
|
+
* rule will come in effect. It should be at least one minute in the future
|
|
4609
|
+
* from the current time. Date time format YYYY-MM-DDThh:mm:ss±hh:mm.
|
|
4610
|
+
* @property {string} [region_type] - Required when areas are present to denote
|
|
4611
|
+
* the level (city/state/pincode) at which the version applies.
|
|
4612
|
+
* @property {TaxGeoArea} [areas]
|
|
4613
|
+
* @property {number[]} [store_ids] - Store identifiers for store-level taxation.
|
|
4424
4614
|
*/
|
|
4425
4615
|
/**
|
|
4426
4616
|
* @typedef TaxRule
|
|
@@ -4438,12 +4628,19 @@ export = CatalogPlatformModel;
|
|
|
4438
4628
|
* @typedef TaxVersionDetail
|
|
4439
4629
|
* @property {string} _id
|
|
4440
4630
|
* @property {string} rule_id
|
|
4441
|
-
* @property {string} applicable_date
|
|
4631
|
+
* @property {string} applicable_date - It is the date from when this rule comes
|
|
4632
|
+
* in effect. Always present and should be at least one minute in the future
|
|
4633
|
+
* when scheduled.
|
|
4442
4634
|
* @property {string} created_on
|
|
4443
4635
|
* @property {string} modified_on
|
|
4444
4636
|
* @property {number} company_id
|
|
4445
4637
|
* @property {TaxStatusEnum} [status]
|
|
4638
|
+
* @property {string} [region_code] - Region code for areas sent when adding a
|
|
4639
|
+
* region override.
|
|
4640
|
+
* @property {number[]} [store_ids] - Store identifiers for store-level taxation.
|
|
4641
|
+
* @property {RegionReference} [region]
|
|
4446
4642
|
* @property {TaxComponent[]} components - List of components.
|
|
4643
|
+
* @property {TaxVersionScopeEnum} [scope]
|
|
4447
4644
|
* @property {string} version_status - Specifies the type of tax version.
|
|
4448
4645
|
*/
|
|
4449
4646
|
/**
|
|
@@ -4451,11 +4648,6 @@ export = CatalogPlatformModel;
|
|
|
4451
4648
|
* @property {TaxRule} [rule]
|
|
4452
4649
|
* @property {TaxVersion} [versions]
|
|
4453
4650
|
*/
|
|
4454
|
-
/**
|
|
4455
|
-
* @typedef UpdateTaxVersion
|
|
4456
|
-
* @property {TaxComponent[]} components - List of components.
|
|
4457
|
-
* @property {string} applicable_date
|
|
4458
|
-
*/
|
|
4459
4651
|
/**
|
|
4460
4652
|
* @typedef UpdateTaxRequestBody
|
|
4461
4653
|
* @property {TaxStatusEnum} status
|
|
@@ -4507,6 +4699,142 @@ export = CatalogPlatformModel;
|
|
|
4507
4699
|
* @property {TaxComponentResponseSchema[]} items
|
|
4508
4700
|
* @property {Page} page
|
|
4509
4701
|
*/
|
|
4702
|
+
/**
|
|
4703
|
+
* @typedef PriceFactoryListItemsSchema
|
|
4704
|
+
* @property {string} [price_factory_id] - Unique identifier for the price factory.
|
|
4705
|
+
* @property {string} [name] - Name of the price factory configuration.
|
|
4706
|
+
* @property {string} [type] - Type of price factory.
|
|
4707
|
+
* @property {string[]} [currencies] - List of currency codes (e.g., INR, USD).
|
|
4708
|
+
* @property {PriceStrategySchema[]} [price_strategy] - List of pricing
|
|
4709
|
+
* strategies to apply for each currency.
|
|
4710
|
+
* @property {string} [price_zone_id] - ID of the price zone.
|
|
4711
|
+
* @property {boolean} [active] - Status of the price factory (active/inactive).
|
|
4712
|
+
* @property {CreatedBy} [modified_by]
|
|
4713
|
+
* @property {CreatedBy} [created_by]
|
|
4714
|
+
* @property {string} [modified_on] - Timestamp of the last modification.
|
|
4715
|
+
*/
|
|
4716
|
+
/**
|
|
4717
|
+
* @typedef PriceFactoryListResponseSchema
|
|
4718
|
+
* @property {Page} [page]
|
|
4719
|
+
* @property {PriceFactoryListItemsSchema[]} [data] - List of price factory
|
|
4720
|
+
* configurations.
|
|
4721
|
+
*/
|
|
4722
|
+
/**
|
|
4723
|
+
* @typedef CreatePriceFactoryConfigSchema
|
|
4724
|
+
* @property {string} [name] - The name of the price factory configuration.
|
|
4725
|
+
* @property {string} [type] - Defines the type of price factory, either
|
|
4726
|
+
* regional or international.
|
|
4727
|
+
* @property {string[]} [currencies] - List of currency codes applicable for
|
|
4728
|
+
* pricing (e.g., USD, EUR).
|
|
4729
|
+
* @property {PriceStrategySchema[]} [price_strategy] - List of pricing
|
|
4730
|
+
* strategies to apply for each currency.
|
|
4731
|
+
* @property {string} [price_zone_id] - Identifier for the price zone associated
|
|
4732
|
+
* with the price factory.
|
|
4733
|
+
*/
|
|
4734
|
+
/**
|
|
4735
|
+
* @typedef UpdatePriceFactoryConfigSchema
|
|
4736
|
+
* @property {string} [name] - The name of the price factory configuration.
|
|
4737
|
+
* @property {string[]} [currencies] - List of currency codes applicable for
|
|
4738
|
+
* pricing (e.g., USD, EUR).
|
|
4739
|
+
* @property {PriceStrategySchema[]} [price_strategy] - List of pricing
|
|
4740
|
+
* strategies to apply for each currency.
|
|
4741
|
+
* @property {string} [price_zone_id] - Identifier for the price zone associated
|
|
4742
|
+
* with the price factory.
|
|
4743
|
+
*/
|
|
4744
|
+
/**
|
|
4745
|
+
* @typedef PriceFactoryConfigSchema
|
|
4746
|
+
* @property {string} [name] - The name of the price factory configuration.
|
|
4747
|
+
* @property {string} [type] - Defines the type of price factory, either
|
|
4748
|
+
* regional or international.
|
|
4749
|
+
* @property {string[]} [currencies] - List of currency codes applicable for
|
|
4750
|
+
* pricing (e.g., USD, EUR).
|
|
4751
|
+
* @property {PriceStrategySchema[]} [price_strategy] - List of pricing
|
|
4752
|
+
* strategies to apply for each currency.
|
|
4753
|
+
* @property {string} [price_zone_id] - Identifier for the price zone associated
|
|
4754
|
+
* with the price factory.
|
|
4755
|
+
* @property {CreatedBy} [created_by]
|
|
4756
|
+
* @property {CreatedBy} [modified_by]
|
|
4757
|
+
*/
|
|
4758
|
+
/**
|
|
4759
|
+
* @typedef CurrencyPriceSchema
|
|
4760
|
+
* @property {number} marked_price - Original price before any discounts.
|
|
4761
|
+
* @property {number} selling_price - Final price after applying discounts or adjustments.
|
|
4762
|
+
* @property {string} currency - Currency code (e.g., USD, EUR).
|
|
4763
|
+
*/
|
|
4764
|
+
/**
|
|
4765
|
+
* @typedef UpsertPriceFactorySizesSchema
|
|
4766
|
+
* @property {string} [size] - The identifier for the product size (e.g., S, M, L, OS).
|
|
4767
|
+
* @property {CurrencyPriceSchema[]} [currency_prices] - The list of currency prices
|
|
4768
|
+
*/
|
|
4769
|
+
/**
|
|
4770
|
+
* @typedef UpsertPriceFactoryProductSchema
|
|
4771
|
+
* @property {UpsertPriceFactorySizesSchema[]} [sizes] - List of size-level
|
|
4772
|
+
* pricing configurations.
|
|
4773
|
+
* @property {boolean} [active] - Indicates whether the product configuration is active.
|
|
4774
|
+
*/
|
|
4775
|
+
/**
|
|
4776
|
+
* @typedef PriceFactoryCurrencyPriceSchema
|
|
4777
|
+
* @property {boolean} [base_price] - Indicates if this price is the base price.
|
|
4778
|
+
* @property {string} [currency] - Currency code (e.g., INR).
|
|
4779
|
+
* @property {number} [selling_price] - The price at which the item is sold.
|
|
4780
|
+
* @property {number} [marked_price] - The original marked price of the item.
|
|
4781
|
+
*/
|
|
4782
|
+
/**
|
|
4783
|
+
* @typedef PriceFactorySizesSchema
|
|
4784
|
+
* @property {string} [price_factory_id] - ID of the price factory entry.
|
|
4785
|
+
* @property {string} [seller_identifier] - Identifier of the seller for the item.
|
|
4786
|
+
* @property {string} [size] - Size of the product (e.g., OS).
|
|
4787
|
+
* @property {string} [price_zone_id] - Price zone identifier for
|
|
4788
|
+
* regional/international pricing.
|
|
4789
|
+
* @property {PriceFactoryCurrencyPriceSchema[]} [currency_prices] - Pricing
|
|
4790
|
+
* information across different currencies.
|
|
4791
|
+
*/
|
|
4792
|
+
/**
|
|
4793
|
+
* @typedef PriceFactoryProductResponseSchema
|
|
4794
|
+
* @property {number} [item_id] - Unique identifier for the item in the price
|
|
4795
|
+
* factory response.
|
|
4796
|
+
* @property {string} [item_code] - Code identifying the item.
|
|
4797
|
+
* @property {string} [name] - Name of the item.
|
|
4798
|
+
* @property {boolean} [active] - Indicates if the item is currently active.
|
|
4799
|
+
* @property {string[]} [media] - List of media associated with the item.
|
|
4800
|
+
* @property {PriceFactorySizesSchema[]} [sizes] - List of size and pricing details.
|
|
4801
|
+
*/
|
|
4802
|
+
/**
|
|
4803
|
+
* @typedef PriceFactoryProductListResponseSchema
|
|
4804
|
+
* @property {PriceFactoryProductResponseSchema[]} [items] - List of products
|
|
4805
|
+
* details with sizes and prices details.
|
|
4806
|
+
* @property {Page} [page]
|
|
4807
|
+
*/
|
|
4808
|
+
/**
|
|
4809
|
+
* @typedef PriceRange
|
|
4810
|
+
* @property {number} [min] - Minimum price.
|
|
4811
|
+
* @property {number} [max] - Maximum price.
|
|
4812
|
+
*/
|
|
4813
|
+
/**
|
|
4814
|
+
* @typedef CurrencyPrice
|
|
4815
|
+
* @property {number} [discount] - Discount value applied in percentage.
|
|
4816
|
+
* @property {string} [currency_code] - Currency code (e.g., 'INR', 'EUR').
|
|
4817
|
+
* @property {string} [currency_symbol] - Symbol of the currency.
|
|
4818
|
+
* @property {PriceRange} [marked]
|
|
4819
|
+
* @property {PriceRange} [effective]
|
|
4820
|
+
* @property {PriceRange} [selling]
|
|
4821
|
+
*/
|
|
4822
|
+
/**
|
|
4823
|
+
* @typedef ProductPrice
|
|
4824
|
+
* @property {string} [zone_type] - Type of the pricing zone, e.g., 'price' or 'delivery'.
|
|
4825
|
+
* @property {string} [zone_identifier] - Unique identifier for the zone.
|
|
4826
|
+
* @property {CurrencyPrice[]} [currency_prices] - List of prices for different
|
|
4827
|
+
* currencies in this zone.
|
|
4828
|
+
*/
|
|
4829
|
+
/**
|
|
4830
|
+
* @typedef AppProductPricesSchema
|
|
4831
|
+
* @property {string} [item_code] - Unique code identifying the item.
|
|
4832
|
+
* @property {number} [brand_uid] - Unique identifier for the brand.
|
|
4833
|
+
* @property {number} [item_id] - Unique identifier for the item.
|
|
4834
|
+
* @property {Object} [discount_meta] - Additional discount metadata.
|
|
4835
|
+
* @property {ProductPrice[]} [product_price] - Pricing information for various
|
|
4836
|
+
* zones and currencies.
|
|
4837
|
+
*/
|
|
4510
4838
|
/**
|
|
4511
4839
|
* @typedef ActionPage
|
|
4512
4840
|
* @property {Object} [params] - Parameters that should be considered in path.
|
|
@@ -4550,6 +4878,7 @@ export = CatalogPlatformModel;
|
|
|
4550
4878
|
* string and length should not exceed 100 characters.
|
|
4551
4879
|
*/
|
|
4552
4880
|
/** @typedef {"ACTIVE" | "INACTIVE" | "DELETED"} TaxStatusEnum */
|
|
4881
|
+
/** @typedef {"COUNTRY" | "REGION" | "STORE"} TaxVersionScopeEnum */
|
|
4553
4882
|
/** @typedef {"HS" | "SAC"} HsTypeEnum */
|
|
4554
4883
|
/**
|
|
4555
4884
|
* @typedef {| "about-us"
|
|
@@ -4601,12 +4930,13 @@ export = CatalogPlatformModel;
|
|
|
4601
4930
|
* | "order-status"
|
|
4602
4931
|
* | "locate-us"
|
|
4603
4932
|
* | "single-page-checkout"
|
|
4604
|
-
* | "request-reattempt"
|
|
4933
|
+
* | "request-reattempt"
|
|
4934
|
+
* | "files"} PageType
|
|
4605
4935
|
*/
|
|
4606
4936
|
declare class CatalogPlatformModel {
|
|
4607
4937
|
}
|
|
4608
4938
|
declare namespace CatalogPlatformModel {
|
|
4609
|
-
export { Action, ValidationErrors, AllSizes, AllowSingleRequestSchema, AppCatalogConfiguration, AppCategoryReturnConfig, AppCategoryReturnConfigResponseSchema, AppConfiguration, AppConfigurationDetail, AppConfigurationsSort, ApplicationBrandJson, ApplicationCategoryJson, ApplicationDepartment, ApplicationDepartmentJson, ApplicationDepartmentListingResponseSchema, ApplicationItemMOQ, Scores, ApplicationItemMeta, ApplicationItemSeoSitemap, ApplicationItemSEO, ApplicationProductsSchema, ApplicationProductListingResponseSchema, ApplicationStoreJson, AppReturnConfigResponseSchema, ArticleStoreResponseSchema, AttributeDetailsGroup, AttributeMaster, AttributeMasterDetails, AttributeMasterFilter, AttributeMasterMandatoryDetails, AttributeMasterMeta, AttributeMasterSchema, AttributeSchemaRange, AutoCompleteMedia, AutocompleteAction, AutocompletePageAction, AutocompleteResult, BannerImage, BaseAppCategoryReturnConfig, BaseAppCategoryReturnConfigResponseSchema, Brand, BrandItem, BrandListingResponseSchema, ApplicationBrandListingItemSchema, ApplicationBrandListingSchema, ApplicationCategoryListingSchema, ApplicationCategoryListingItemSchema, BrandMeta, InventoryBrandMeta, BulkAssetResponseSchema, BulkHsnResponseSchema, BulkHsnUpsert, BulkInventoryGet, FailedRecord, BulkInventoryGetItems, BulkMeta, BulkProductJob, BulkJob, BulkProductRequestSchema, BulkResponseSchema, CatalogInsightBrand, CatalogInsightItem, CatalogInsightResponseSchema, CategoriesResponseSchema, Category, CategoryItems, CategoryListingResponseSchema, CategoryMapping, CategoryMappingValues, CategoryResponseSchema, Child, CollectionBadge, CollectionBanner, CollectionCreateResponseSchema, CollectionDetailResponseSchema, CollectionImage, CollectionItem, CollectionItemUpdate, CollectionListingFilter, CollectionListingFilterTag, CollectionListingFilterType, CollectionQuery, CollectionSchedule, CompanyBrandDetail, CompanyMeta, InventoryCompanyMeta, CompanyOptIn, ConfigErrorResponseSchema, ConfigSuccessResponseSchema, ConfigurationBucketPoints, ConfigurationListing, ConfigurationListingFilter, ConfigurationListingFilterConfig, ConfigurationListingFilterValue, ConfigurationListingSort, ConfigurationListingSortConfig, ConfigurationProduct, ConfigurationProductConfig, ConfigurationProductSimilar, ConfigurationProductVariant, ConfigurationProductVariantConfig, CreateAutocompleteKeyword, CreateAutocompleteWordsResponseSchema, CreateCollection, CreateSearchConfigurationRequestSchema, CreateSearchConfigurationResponseSchema, CreateSearchKeyword, CreateUpdateAppReturnConfig, CrossSellingData, CrossSellingResponseSchema, CustomOrder, DateMeta, DefaultKeyRequestSchema, DeleteAppCategoryReturnConfig, DeleteResponseSchema, DeleteSearchConfigurationResponseSchema, Department, DepartmentCategoryTree, DepartmentErrorResponseSchema, DepartmentIdentifier, DepartmentResponseSchema, DepartmentsResponseSchema, DimensionResponseSchema, InventoryDimensionResponseSchema, Document, EntityConfiguration, ErrorResponseSchema, FilerList, RawProduct, RawProductListingResponseSchema, GTIN, AttributeDetail, LatLong, ApplicationLocationAddressSchema, GetAddressSchema, GetAllSizes, GetAppCatalogConfiguration, GetAppCatalogEntityConfiguration, GetAutocompleteWordsData, GetAutocompleteWordsResponseSchema, GetCatalogConfigurationDetailsProduct, GetCatalogConfigurationDetailsSchemaListing, GetCatalogConfigurationMetaData, GetCollectionDetailNest, GetCollectionListingResponseSchema, GetCollectionQueryOptionResponseSchema, GetCompanySchema, ConditionItem, DataItem, ValueTypeItem, SortTypeItem, GetConfigMetadataResponseSchema, GetConfigMetadataValues, GetConfigResponseSchema, ConfigItem, AttributeConfig, GetDepartment, GetInventories, GetInventoriesResponseSchema, GetLocationSchema, GetOptInPlatform, GetProducts, ProductDetails, GetCollectionDetailResponseSchema, CommonResponseSchemaCollection, GetQueryFiltersKeysResponseSchema, GetQueryFiltersResponseSchema, GetCollectionItemsResponseSchemaV2, CollectionItemV2, Page1, CollectionItemSchemaV2, CollectionItemUpdateSchema, CollectionQuerySchemaV2, ProductDetailV2, GetSearchConfigurationResponseSchema, GetSearchWordsData, GetSearchWordsDetailResponseSchema, GetSearchWordsResponseSchema, GlobalValidation, Guide, HSNCodesResponseSchema, HSNData, CreatedBySchema, ModifiedBySchema, HSNDataInsertV2, Hierarchy, HsnCode, HsnCodesListingResponseSchemaV2, HsnCodesObject, HsnUpsert, Image, ImageUrls, InvSize, InventoryBulkRequestSchema, InventoryConfig, InventoryCreateRequestSchema, InventoryExportAdvanceOption, InventoryExportFilter, InventoryExportJob, InventoryExportJobListResponseSchema, InventoryExportQuantityFilter, InventoryExportRequestSchema, InventoryExportResponseSchema, InventoryFailedReason, InventoryJobDetailResponseSchema, InventoryJobFilters, InventoryJobPayload, InventoryPage, AddInventoryRequestPayload, InventoryPayload, InventoryRequestSchema, InventoryRequestSchemaV2, InventoryResponseSchema, InventoryResponseItem, InventoryResponsePaginated, InventorySellerIdentifierResponsePaginated, ApplicationInventorySellerIdentifierResponsePaginated, InventorySellerResponseSchema, ApplicationInventorySellerResponseSchema, InventorySet, InventoryStockResponseSchema, InventoryUpdateResponseSchema, InventoryValidationResponseSchema, InvoiceCredSchema, InvoiceDetailsSchema, ItemQuery, Items, LimitedProductData, SizeGuideItem, ListSizeGuide, LocationDayWiseSchema, LocationIntegrationType, LocationListSchema, LocationManagerSchema, LocationTimingSchema, Logo, MOQData, ManufacturerResponseSchema, InventoryManufacturerResponseSchema, Media, Media1, DepartmentMedia, BrandMedia, BundleDetails, Meta, MetaDataListingFilterMetaResponseSchema, MetaDataListingFilterResponseSchema, MetaDataListingResponseSchema, MetaDataListingSortMetaResponseSchema, MetaDataListingSortResponseSchema, MetaFields, NetQuantity, NetQuantityResponseSchema, NextSchedule, LocationPriceRequestSchema, LocationQuantityRequestSchema, LocationPriceQuantitySuccessResponseSchema, OptInPostRequestSchema, OptinCompanyBrandDetailsView, OptinCompanyDetail, OptinCompanyMetrics, OptinStoreDetails, OwnerAppItemResponseSchema, PTErrorResponseSchema, Page, PageResponseSchema, PageResponseType, Price, ProductListingDetailPrice, PriceArticle, PriceMeta, ProdcutTemplateCategoriesResponseSchema, Product, ProductAttributesResponseSchema, ProductBrand, ProductBulkAssets, ProductBulkRequestSchema, ProductBulkRequestList, ProductConfigurationDownloads, ProductCreateSchemaV3, ProductUpdateSchemaV3, ProductPatchSchemaV3, ProductSizePatch, ProductDetail, ProductDetailAttribute, ProductDetailGroupedAttribute, ProductDownloadsResponseSchema, CollectionProductFilters, ProductFilters, GetQueryFiltersValuesResponseSchema, ProductFiltersKeysOnly, ProductFiltersKey, ProductQueryFiltersValue, CollectionProductFiltersValue, ProductFiltersValue, CollectionProductListingDetail, ProductCategory, ApplicationCategoryAction, ApplicationCategoryItem, ApplicationProductMedia, ApplicationProductCategoryItem, CategoryPageAction, CategoryQuery, CategoryImage, ProductListingDetail, ActionObject, PageAction, ProductListingPrice, ProductListingResponseSchema, ProductListingResponseV2, ProductPublish, ProductPublished, ProductReturnConfigSchema, ProductReturnConfigBaseSchema, Identifier, SizeDetails, ProductSchemaV2, ProductSize, ProductSizeDeleteDataResponseSchema, ProductSizeDeleteResponseSchema, CollectionProductSortOn, ProductSortOn, ProductTagsViewResponseSchema, CreatedBy, ModifiedBy, ProductTemplate, ProductTemplateDownloadsExport, ProductTemplateExportFilterRequestSchema, ProductTemplateExportResponseSchema, ProductVariants, ProductVariantsResponseSchema, Properties, Quantities, QuantitiesArticle, Quantity, QuantityBase, ReturnConfig, InventoryReturnConfig, ReturnConfig2, ReturnConfigResponseSchema, Sitemap, PageQuery, ApplicationCollectionItemSeoPage, ApplicationCollectionItemSeoAction, ApplicationItemSeoAction, ApplicationItemSeoBreadcrumbs, ApplicationCollectionItemSeoBreadcrumbs, ApplicationItemSeoMetaTagItem, ApplicationItemSeoMetaTags, Metatags, SizePromotionThreshold, SEOData, SearchKeywordResult, SearchableAttribute, SecondLevelChild, SellerPhoneNumber, CollectionSeoDetail, SeoDetail, SetSize, SingleCategoryResponseSchema, SingleProductResponseSchema, Size, SizeDistribution, SizeGuideResponseSchema, StoreDetail, StoreMeta, SuccessResponseSchema, SuccessResponseObject, TaxIdentifier, TaxIdentifierV3, TaxSlab, TeaserTag, TemplateDetails, TemplateGlobalValidationData, TemplateValidationData, TemplatesResponseSchema, TemplatesGlobalValidationResponseSchema, TemplatesValidationResponseSchema, ThirdLevelChild, Trader, Trader1, TraderResponseSchema, UpdateCollection, UpdateSearchConfigurationRequestSchema, UpdateSearchConfigurationResponseSchema, CreateMarketplaceOptinResponseSchema, UserCommon, UserDetail, UserDetail1, UserInfo, UserSchema, RequestUserSchema, ValidateIdentifier, ValidateProduct, ValidateSizeGuide, VerifiedBy, WeightResponseSchema, InventoryWeightResponseSchema, BulkInventoryJob, Marketplaces, GetAllMarketplaces, UpdateMarketplaceOptinRequestSchema, UpdateMarketplaceOptinResponseSchema, Filters, FollowedProducts, FollowProduct, TaxReqBodyRule, TaxThreshold, TaxComponent, TaxComponentResponseSchema, TaxComponentName, CreateTaxComponentNameRequestSchema, TaxReqBodyVersion, CreateTaxRequestBody, TaxVersion, UpdateTaxVersionRequestBody, CreateTaxVersionRequestBody, TaxRule, TaxVersionDetail, CreateTax, UpdateTaxVersion, UpdateTaxRequestBody, TaxRuleItem, TaxRules, TaxVersionPastData, TaxRuleVersion, HSCodeItem, HSCodes, GetTaxComponents, ActionPage, ValidationError, Price1, MultiCategoriesSchema, NetQuantitySchema, CustomMeta, TaxStatusEnum, HsTypeEnum, PageType };
|
|
4939
|
+
export { Action, ValidationErrors, StandardError, AllSizes, AllowSingleRequestSchema, AppCatalogConfiguration, AppCategoryReturnConfig, AppCategoryReturnConfigResponseSchema, AppConfiguration, AppConfigurationDetail, AppConfigurationsSort, SortWeights, CohortWeights, HighSpenderRepeatCustomerWeights, HyperactiveRepeatCustomerWeights, HighSpenderOccasionalCustomerWeights, StandardOccasionalCustomerWeights, DormantPremiumCustomerWeights, BudgetRegularCustomerWeights, HighSpenderRegularCustomerWeights, StandardCustomerAboutToChurnWeights, PremiumCustomerAboutToChurnWeights, HighSpenderCustomerAboutToChurnWeights, StandardDormantCustomerWeights, HighSpenderDormantCustomerWeights, PotentialCustomerWeights, NewCustomerWeights, BudgetRepeatCustomerWeights, AverageSpenderRepeatCustomerWeights, CohortSortingConfiguration, ApplicationBrandJson, ApplicationCategoryJson, ApplicationDepartment, ApplicationDepartmentJson, ApplicationDepartmentListingResponseSchema, ApplicationItemMOQ, Scores, ApplicationItemMeta, ApplicationItemSeoSitemap, ApplicationItemSEO, ApplicationProductsSchema, ApplicationProductListingResponseSchema, ApplicationStoreJson, AppReturnConfigResponseSchema, ArticleStoreResponseSchema, AttributeDetailsGroup, AttributeMaster, AttributeMasterDetails, AttributeMasterFilter, AttributeMasterMandatoryDetails, AttributeMasterMeta, AttributeMasterSchema, AttributeSchemaRange, AutoCompleteMedia, AutocompleteAction, AutocompletePageAction, AutocompleteResult, BannerImage, BaseAppCategoryReturnConfig, BaseAppCategoryReturnConfigResponseSchema, Brand, BrandItem, BrandListingResponseSchema, ApplicationBrandListingItemSchema, ApplicationBrandListingSchema, ApplicationCategoryListingSchema, ApplicationCategoryListingItemSchema, BrandMeta, InventoryBrandMeta, BulkAssetResponseSchema, BulkHsnResponseSchema, BulkHsnUpsert, BulkInventoryGet, FailedRecord, BulkInventoryGetItems, BulkMeta, BulkProductJob, BulkJob, BulkProductRequestSchema, BulkResponseSchema, CatalogInsightBrand, CatalogInsightItem, CatalogInsightResponseSchema, CategoriesResponseSchema, Category, CategoryItems, CategoryListingResponseSchema, CategoryMapping, CategoryMappingValues, CategoryResponseSchema, Child, CollectionBadge, CollectionBanner, CollectionCreateResponseSchema, CollectionDetailResponseSchema, CollectionImage, CollectionItem, CollectionItemUpdate, CollectionListingFilter, CollectionListingFilterTag, CollectionListingFilterType, CollectionQuery, CollectionSchedule, CompanyBrandDetail, CompanyMeta, InventoryCompanyMeta, CompanyOptIn, ConfigErrorResponseSchema, ConfigSuccessResponseSchema, ConfigurationBucketPoints, ConfigurationListing, ConfigurationListingFilter, ConfigurationListingFilterConfig, ConfigurationListingFilterValue, ConfigurationListingSort, ConfigurationListingSortConfig, ConfigurationProduct, ConfigurationProductConfig, ConfigurationProductSimilar, ConfigurationProductVariant, ConfigurationProductVariantConfig, CreateAutocompleteKeyword, CreateAutocompleteWordsResponseSchema, CreateCollection, CreateSearchConfigurationRequestSchema, CreateSearchConfigurationResponseSchema, CreateSearchKeyword, CreateUpdateAppReturnConfig, CrossSellingData, CrossSellingResponseSchema, CustomOrder, DateMeta, DefaultKeyRequestSchema, DeleteAppCategoryReturnConfig, DeleteResponseSchema, DeleteSearchConfigurationResponseSchema, Department, DepartmentCategoryTree, DepartmentErrorResponseSchema, DepartmentIdentifier, DepartmentResponseSchema, DepartmentsResponseSchema, DimensionResponseSchema, InventoryDimensionResponseSchema, Document, EntityConfiguration, ErrorResponseSchema, FilerList, RawProduct, RawProductListingResponseSchema, GTIN, AttributeDetail, LatLong, ApplicationLocationAddressSchema, GetAddressSchema, GetAllSizes, GetAppCatalogConfiguration, GetAppCatalogEntityConfiguration, GetAutocompleteWordsData, GetAutocompleteWordsResponseSchema, GetCatalogConfigurationDetailsProduct, GetCatalogConfigurationDetailsSchemaListing, GetCatalogConfigurationMetaData, GetCollectionDetailNest, GetCollectionListingResponseSchema, GetCollectionQueryOptionResponseSchema, GetCompanySchema, ConditionItem, DataItem, ValueTypeItem, SortTypeItem, GetConfigMetadataResponseSchema, GetConfigMetadataValues, GetConfigResponseSchema, ConfigItem, AttributeConfig, GetDepartment, GetInventories, GetInventoriesResponseSchema, GetLocationSchema, GetOptInPlatform, GetProducts, ProductDetails, GetCollectionDetailResponseSchema, CommonResponseSchemaCollection, GetQueryFiltersKeysResponseSchema, GetQueryFiltersResponseSchema, GetCollectionItemsResponseSchemaV2, CollectionItemV2, Page1, CollectionItemSchemaV2, CollectionItemUpdateSchema, CollectionQuerySchemaV2, ProductDetailV2, GetSearchConfigurationResponseSchema, GetSearchWordsData, GetSearchWordsDetailResponseSchema, GetSearchWordsResponseSchema, GlobalValidation, Guide, HSNCodesResponseSchema, HSNData, CreatedBySchema, ModifiedBySchema, HSNDataInsertV2, Hierarchy, HsnCode, HsnCodesListingResponseSchemaV2, HsnCodesObject, HsnUpsert, Image, ImageUrls, InvSize, InventoryBulkRequestSchema, InventoryConfig, InventoryCreateRequestSchema, InventoryExportAdvanceOption, InventoryExportFilter, InventoryExportJob, InventoryExportJobListResponseSchema, InventoryExportQuantityFilter, InventoryExportRequestSchema, InventoryExportResponseSchema, InventoryFailedReason, InventoryJobDetailResponseSchema, InventoryJobFilters, InventoryJobPayload, InventoryPage, AddInventoryRequestPayload, InventoryPayload, InventoryRequestSchema, InventoryRequestSchemaV2, InventoryResponseSchema, InventoryResponseItem, InventoryResponsePaginated, InventorySellerIdentifierResponsePaginated, ApplicationInventorySellerIdentifierResponsePaginated, InventorySellerResponseSchema, ApplicationInventorySellerResponseSchema, InventorySet, InventoryStockResponseSchema, InventoryUpdateResponseSchema, InventoryValidationResponseSchema, InvoiceCredSchema, InvoiceDetailsSchema, ItemQuery, Items, LimitedProductData, SizeGuideItem, ListSizeGuide, LocationDayWiseSchema, LocationIntegrationType, LocationListSchema, LocationManagerSchema, LocationTimingSchema, Logo, MOQData, ManufacturerResponseSchema, InventoryManufacturerResponseSchema, Media, Media1, DepartmentMedia, BrandMedia, BundleDetails, Meta, MetaDataListingFilterMetaResponseSchema, MetaDataListingFilterResponseSchema, MetaDataListingResponseSchema, MetaDataListingSortMetaResponseSchema, MetaDataListingSortResponseSchema, MetaFields, NetQuantity, NetQuantityResponseSchema, NextSchedule, LocationPriceRequestSchema, LocationQuantityRequestSchema, LocationPriceQuantitySuccessResponseSchema, OptInPostRequestSchema, OptinCompanyBrandDetailsView, OptinCompanyDetail, OptinCompanyMetrics, OptinStoreDetails, OwnerAppItemResponseSchema, PTErrorResponseSchema, Page, PageResponseSchema, PageResponseType, Price, ProductListingDetailPrice, PriceArticle, PriceMeta, ProdcutTemplateCategoriesResponseSchema, PriceStrategySchema, PriceFactoryResponseSchema, Product, ProductAttributesResponseSchema, ProductBrand, ProductBulkAssets, ProductBulkRequestSchema, ProductBulkRequestList, ProductConfigurationDownloads, ProductCreateSchemaV3, ProductUpdateSchemaV3, ProductPatchSchemaV3, ProductSizePatch, ProductDetail, ProductDetailAttribute, ProductDetailGroupedAttribute, ProductDownloadsResponseSchema, CollectionProductFilters, ProductFilters, GetQueryFiltersValuesResponseSchema, ProductFiltersKeysOnly, ProductFiltersKey, ProductQueryFiltersValue, CollectionProductFiltersValue, ProductFiltersValue, CollectionProductListingDetail, ProductCategory, ApplicationCategoryAction, ApplicationCategoryItem, ApplicationProductMedia, ApplicationProductCategoryItem, CategoryPageAction, CategoryQuery, CategoryImage, ProductListingDetail, ActionObject, PageAction, ProductListingPrice, ProductListingResponseSchema, ProductListingResponseV2, ProductPublish, ProductPublished, ProductReturnConfigSchema, ProductReturnConfigBaseSchema, Identifier, SizeDetails, ProductSchemaV2, ProductSize, ProductSizeDeleteDataResponseSchema, ProductSizeDeleteResponseSchema, CollectionProductSortOn, ProductSortOn, ProductTagsViewResponseSchema, CreatedBy, ModifiedBy, ProductTemplate, ProductTemplateDownloadsExport, ProductTemplateExportFilterRequestSchema, ProductTemplateExportResponseSchema, ProductVariants, ProductVariantsResponseSchema, Properties, Quantities, QuantitiesArticle, Quantity, QuantityBase, ReturnConfig, InventoryReturnConfig, ReturnConfig2, ReturnConfigResponseSchema, Sitemap, PageQuery, ApplicationCollectionItemSeoPage, ApplicationCollectionItemSeoAction, ApplicationItemSeoAction, ApplicationItemSeoBreadcrumbs, ApplicationCollectionItemSeoBreadcrumbs, ApplicationItemSeoMetaTagItem, ApplicationItemSeoMetaTags, Metatags, SizePromotionThreshold, SEOData, SearchKeywordResult, SearchableAttribute, SecondLevelChild, SellerPhoneNumber, CollectionSeoDetail, SeoDetail, SetSize, SingleCategoryResponseSchema, SingleProductResponseSchema, Size, SizeDistribution, SizeGuideResponseSchema, StoreDetail, StoreMeta, SuccessResponseSchema, SuccessResponseObject, TaxIdentifier, TaxIdentifierV3, TaxSlab, TeaserTag, TemplateDetails, TemplateGlobalValidationData, TemplateValidationData, TemplatesResponseSchema, TemplatesGlobalValidationResponseSchema, TemplatesValidationResponseSchema, ThirdLevelChild, Trader, Trader1, TraderResponseSchema, UpdateCollection, UpdateSearchConfigurationRequestSchema, UpdateSearchConfigurationResponseSchema, CreateMarketplaceOptinResponseSchema, UserCommon, UserDetail, UserDetail1, UserInfo, UserSchema, RequestUserSchema, ValidateIdentifier, ValidateProduct, ValidateSizeGuide, VerifiedBy, WeightResponseSchema, InventoryWeightResponseSchema, BulkInventoryJob, Marketplaces, GetAllMarketplaces, UpdateMarketplaceOptinRequestSchema, UpdateMarketplaceOptinResponseSchema, Filters, FollowedProducts, FollowProduct, TaxReqBodyRule, TaxThreshold, TaxComponent, TaxComponentResponseSchema, TaxComponentName, CreateTaxComponentNameRequestSchema, TaxReqBodyVersion, TaxGeoArea, AreaDetails, Country, Area, RegionReference, CreateTaxRequestBody, TaxVersion, UpdateTaxVersionRequestBody, CreateTaxVersionRequestBody, TaxRule, TaxVersionDetail, CreateTax, UpdateTaxRequestBody, TaxRuleItem, TaxRules, TaxVersionPastData, TaxRuleVersion, HSCodeItem, HSCodes, GetTaxComponents, PriceFactoryListItemsSchema, PriceFactoryListResponseSchema, CreatePriceFactoryConfigSchema, UpdatePriceFactoryConfigSchema, PriceFactoryConfigSchema, CurrencyPriceSchema, UpsertPriceFactorySizesSchema, UpsertPriceFactoryProductSchema, PriceFactoryCurrencyPriceSchema, PriceFactorySizesSchema, PriceFactoryProductResponseSchema, PriceFactoryProductListResponseSchema, PriceRange, CurrencyPrice, ProductPrice, AppProductPricesSchema, ActionPage, ValidationError, Price1, MultiCategoriesSchema, NetQuantitySchema, CustomMeta, TaxStatusEnum, TaxVersionScopeEnum, HsTypeEnum, PageType };
|
|
4610
4940
|
}
|
|
4611
4941
|
/** @returns {Action} */
|
|
4612
4942
|
declare function Action(): Action;
|
|
@@ -4626,6 +4956,14 @@ type ValidationErrors = {
|
|
|
4626
4956
|
*/
|
|
4627
4957
|
errors: ValidationError[];
|
|
4628
4958
|
};
|
|
4959
|
+
/** @returns {StandardError} */
|
|
4960
|
+
declare function StandardError(): StandardError;
|
|
4961
|
+
type StandardError = {
|
|
4962
|
+
/**
|
|
4963
|
+
* - A brief description of the error.
|
|
4964
|
+
*/
|
|
4965
|
+
message: string;
|
|
4966
|
+
};
|
|
4629
4967
|
/** @returns {AllSizes} */
|
|
4630
4968
|
declare function AllSizes(): AllSizes;
|
|
4631
4969
|
type AllSizes = {
|
|
@@ -4818,6 +5156,177 @@ type AppConfigurationsSort = {
|
|
|
4818
5156
|
* configuration, with 1 being the highest.
|
|
4819
5157
|
*/
|
|
4820
5158
|
priority: number;
|
|
5159
|
+
weights?: SortWeights;
|
|
5160
|
+
cohorts?: CohortSortingConfiguration;
|
|
5161
|
+
};
|
|
5162
|
+
/** @returns {SortWeights} */
|
|
5163
|
+
declare function SortWeights(): SortWeights;
|
|
5164
|
+
type SortWeights = {
|
|
5165
|
+
/**
|
|
5166
|
+
* - Controls how strongly overall product
|
|
5167
|
+
* popularity influences ranking. Products with higher engagement and demand
|
|
5168
|
+
* are ranked higher.
|
|
5169
|
+
*/
|
|
5170
|
+
popularity?: number;
|
|
5171
|
+
/**
|
|
5172
|
+
* - Controls the importance of product
|
|
5173
|
+
* availability and fulfilment readiness in ranking. Products that are more
|
|
5174
|
+
* consistently available are prioritized over low-stock or unreliable items.
|
|
5175
|
+
*/
|
|
5176
|
+
availability?: number;
|
|
5177
|
+
/**
|
|
5178
|
+
* - Controls the effectiveness of product
|
|
5179
|
+
* conversion rates in ranking. Products that convert views into purchases
|
|
5180
|
+
* more efficiently are ranked higher.
|
|
5181
|
+
*/
|
|
5182
|
+
conversion?: number;
|
|
5183
|
+
/**
|
|
5184
|
+
* - Reflects historical sales volume of a
|
|
5185
|
+
* product. Products with higher sales volumes are ranked higher.
|
|
5186
|
+
*/
|
|
5187
|
+
sold_quantity?: number;
|
|
5188
|
+
/**
|
|
5189
|
+
* - Measures size or variant depth of a product.
|
|
5190
|
+
* Products with more size options and inventory depth are ranked higher.
|
|
5191
|
+
*/
|
|
5192
|
+
depth?: number;
|
|
5193
|
+
/**
|
|
5194
|
+
* - Represents recency or freshness of the product
|
|
5195
|
+
* listing. Products that are recently listed or have fresh inventory are
|
|
5196
|
+
* ranked higher.
|
|
5197
|
+
*/
|
|
5198
|
+
listing?: number;
|
|
5199
|
+
/**
|
|
5200
|
+
* - Indicates the promotional value of a product.
|
|
5201
|
+
* Products with higher discounts or promotions are ranked higher.
|
|
5202
|
+
*/
|
|
5203
|
+
discount?: number;
|
|
5204
|
+
/**
|
|
5205
|
+
* - Reflects historical cancellation reliability
|
|
5206
|
+
* of a product or seller. Products with lower cancellation rates are ranked higher.
|
|
5207
|
+
*/
|
|
5208
|
+
cancelled?: number;
|
|
5209
|
+
/**
|
|
5210
|
+
* - Measures post-purchase return behavior.
|
|
5211
|
+
* Products with lower return rates are ranked higher.
|
|
5212
|
+
*/
|
|
5213
|
+
returns?: number;
|
|
5214
|
+
/**
|
|
5215
|
+
* - Represents quality and completeness of
|
|
5216
|
+
* catalog content. Products with more complete and high-quality content are
|
|
5217
|
+
* ranked higher.
|
|
5218
|
+
*/
|
|
5219
|
+
catalogue?: number;
|
|
5220
|
+
/**
|
|
5221
|
+
* - Represents revenue contribution potential of a
|
|
5222
|
+
* product. Products that generate higher revenue are ranked higher.
|
|
5223
|
+
*/
|
|
5224
|
+
revenue?: number;
|
|
5225
|
+
};
|
|
5226
|
+
/** @returns {CohortWeights} */
|
|
5227
|
+
declare function CohortWeights(): CohortWeights;
|
|
5228
|
+
type CohortWeights = {
|
|
5229
|
+
weights: SortWeights;
|
|
5230
|
+
};
|
|
5231
|
+
/** @returns {HighSpenderRepeatCustomerWeights} */
|
|
5232
|
+
declare function HighSpenderRepeatCustomerWeights(): HighSpenderRepeatCustomerWeights;
|
|
5233
|
+
type HighSpenderRepeatCustomerWeights = {
|
|
5234
|
+
weights: SortWeights;
|
|
5235
|
+
};
|
|
5236
|
+
/** @returns {HyperactiveRepeatCustomerWeights} */
|
|
5237
|
+
declare function HyperactiveRepeatCustomerWeights(): HyperactiveRepeatCustomerWeights;
|
|
5238
|
+
type HyperactiveRepeatCustomerWeights = {
|
|
5239
|
+
weights: SortWeights;
|
|
5240
|
+
};
|
|
5241
|
+
/** @returns {HighSpenderOccasionalCustomerWeights} */
|
|
5242
|
+
declare function HighSpenderOccasionalCustomerWeights(): HighSpenderOccasionalCustomerWeights;
|
|
5243
|
+
type HighSpenderOccasionalCustomerWeights = {
|
|
5244
|
+
weights: SortWeights;
|
|
5245
|
+
};
|
|
5246
|
+
/** @returns {StandardOccasionalCustomerWeights} */
|
|
5247
|
+
declare function StandardOccasionalCustomerWeights(): StandardOccasionalCustomerWeights;
|
|
5248
|
+
type StandardOccasionalCustomerWeights = {
|
|
5249
|
+
weights: SortWeights;
|
|
5250
|
+
};
|
|
5251
|
+
/** @returns {DormantPremiumCustomerWeights} */
|
|
5252
|
+
declare function DormantPremiumCustomerWeights(): DormantPremiumCustomerWeights;
|
|
5253
|
+
type DormantPremiumCustomerWeights = {
|
|
5254
|
+
weights: SortWeights;
|
|
5255
|
+
};
|
|
5256
|
+
/** @returns {BudgetRegularCustomerWeights} */
|
|
5257
|
+
declare function BudgetRegularCustomerWeights(): BudgetRegularCustomerWeights;
|
|
5258
|
+
type BudgetRegularCustomerWeights = {
|
|
5259
|
+
weights: SortWeights;
|
|
5260
|
+
};
|
|
5261
|
+
/** @returns {HighSpenderRegularCustomerWeights} */
|
|
5262
|
+
declare function HighSpenderRegularCustomerWeights(): HighSpenderRegularCustomerWeights;
|
|
5263
|
+
type HighSpenderRegularCustomerWeights = {
|
|
5264
|
+
weights: SortWeights;
|
|
5265
|
+
};
|
|
5266
|
+
/** @returns {StandardCustomerAboutToChurnWeights} */
|
|
5267
|
+
declare function StandardCustomerAboutToChurnWeights(): StandardCustomerAboutToChurnWeights;
|
|
5268
|
+
type StandardCustomerAboutToChurnWeights = {
|
|
5269
|
+
weights: SortWeights;
|
|
5270
|
+
};
|
|
5271
|
+
/** @returns {PremiumCustomerAboutToChurnWeights} */
|
|
5272
|
+
declare function PremiumCustomerAboutToChurnWeights(): PremiumCustomerAboutToChurnWeights;
|
|
5273
|
+
type PremiumCustomerAboutToChurnWeights = {
|
|
5274
|
+
weights: SortWeights;
|
|
5275
|
+
};
|
|
5276
|
+
/** @returns {HighSpenderCustomerAboutToChurnWeights} */
|
|
5277
|
+
declare function HighSpenderCustomerAboutToChurnWeights(): HighSpenderCustomerAboutToChurnWeights;
|
|
5278
|
+
type HighSpenderCustomerAboutToChurnWeights = {
|
|
5279
|
+
weights: SortWeights;
|
|
5280
|
+
};
|
|
5281
|
+
/** @returns {StandardDormantCustomerWeights} */
|
|
5282
|
+
declare function StandardDormantCustomerWeights(): StandardDormantCustomerWeights;
|
|
5283
|
+
type StandardDormantCustomerWeights = {
|
|
5284
|
+
weights: SortWeights;
|
|
5285
|
+
};
|
|
5286
|
+
/** @returns {HighSpenderDormantCustomerWeights} */
|
|
5287
|
+
declare function HighSpenderDormantCustomerWeights(): HighSpenderDormantCustomerWeights;
|
|
5288
|
+
type HighSpenderDormantCustomerWeights = {
|
|
5289
|
+
weights: SortWeights;
|
|
5290
|
+
};
|
|
5291
|
+
/** @returns {PotentialCustomerWeights} */
|
|
5292
|
+
declare function PotentialCustomerWeights(): PotentialCustomerWeights;
|
|
5293
|
+
type PotentialCustomerWeights = {
|
|
5294
|
+
weights: SortWeights;
|
|
5295
|
+
};
|
|
5296
|
+
/** @returns {NewCustomerWeights} */
|
|
5297
|
+
declare function NewCustomerWeights(): NewCustomerWeights;
|
|
5298
|
+
type NewCustomerWeights = {
|
|
5299
|
+
weights: SortWeights;
|
|
5300
|
+
};
|
|
5301
|
+
/** @returns {BudgetRepeatCustomerWeights} */
|
|
5302
|
+
declare function BudgetRepeatCustomerWeights(): BudgetRepeatCustomerWeights;
|
|
5303
|
+
type BudgetRepeatCustomerWeights = {
|
|
5304
|
+
weights: SortWeights;
|
|
5305
|
+
};
|
|
5306
|
+
/** @returns {AverageSpenderRepeatCustomerWeights} */
|
|
5307
|
+
declare function AverageSpenderRepeatCustomerWeights(): AverageSpenderRepeatCustomerWeights;
|
|
5308
|
+
type AverageSpenderRepeatCustomerWeights = {
|
|
5309
|
+
weights: SortWeights;
|
|
5310
|
+
};
|
|
5311
|
+
/** @returns {CohortSortingConfiguration} */
|
|
5312
|
+
declare function CohortSortingConfiguration(): CohortSortingConfiguration;
|
|
5313
|
+
type CohortSortingConfiguration = {
|
|
5314
|
+
high_spender_repeat_customer?: HighSpenderRepeatCustomerWeights;
|
|
5315
|
+
hyperactive_premium_repeat_customer?: HyperactiveRepeatCustomerWeights;
|
|
5316
|
+
high_spender_occasional_customer?: HighSpenderOccasionalCustomerWeights;
|
|
5317
|
+
standard_occasional_customer?: StandardOccasionalCustomerWeights;
|
|
5318
|
+
dormant_premium_customer?: DormantPremiumCustomerWeights;
|
|
5319
|
+
budget_regular_customer?: BudgetRegularCustomerWeights;
|
|
5320
|
+
high_spender_regular_customer?: HighSpenderRegularCustomerWeights;
|
|
5321
|
+
standard_customer_about_to_churn?: StandardCustomerAboutToChurnWeights;
|
|
5322
|
+
premium_customer_about_to_churn?: PremiumCustomerAboutToChurnWeights;
|
|
5323
|
+
high_spender_customer_about_to_churn?: HighSpenderCustomerAboutToChurnWeights;
|
|
5324
|
+
standard_dormant_customer?: StandardDormantCustomerWeights;
|
|
5325
|
+
high_spender_dormant_customer?: HighSpenderDormantCustomerWeights;
|
|
5326
|
+
potential_customer?: PotentialCustomerWeights;
|
|
5327
|
+
new_customer?: NewCustomerWeights;
|
|
5328
|
+
budget_repeat_customer?: BudgetRepeatCustomerWeights;
|
|
5329
|
+
average_spender_repeat_customer?: AverageSpenderRepeatCustomerWeights;
|
|
4821
5330
|
};
|
|
4822
5331
|
/** @returns {ApplicationBrandJson} */
|
|
4823
5332
|
declare function ApplicationBrandJson(): ApplicationBrandJson;
|
|
@@ -10490,6 +10999,59 @@ type ProdcutTemplateCategoriesResponseSchema = {
|
|
|
10490
10999
|
items?: CategoriesResponseSchema[];
|
|
10491
11000
|
page?: Page;
|
|
10492
11001
|
};
|
|
11002
|
+
/** @returns {PriceStrategySchema} */
|
|
11003
|
+
declare function PriceStrategySchema(): PriceStrategySchema;
|
|
11004
|
+
type PriceStrategySchema = {
|
|
11005
|
+
/**
|
|
11006
|
+
* - Currency for the pricing strategy
|
|
11007
|
+
*/
|
|
11008
|
+
currency: string;
|
|
11009
|
+
/**
|
|
11010
|
+
* - Adjustment value for the pricing strategy
|
|
11011
|
+
*/
|
|
11012
|
+
adjustment_value: number;
|
|
11013
|
+
/**
|
|
11014
|
+
* - Type of adjustment for the pricing strategy
|
|
11015
|
+
*/
|
|
11016
|
+
adjustment_type: string;
|
|
11017
|
+
};
|
|
11018
|
+
/** @returns {PriceFactoryResponseSchema} */
|
|
11019
|
+
declare function PriceFactoryResponseSchema(): PriceFactoryResponseSchema;
|
|
11020
|
+
type PriceFactoryResponseSchema = {
|
|
11021
|
+
/**
|
|
11022
|
+
* - Unique identifier of the price zone
|
|
11023
|
+
*/
|
|
11024
|
+
price_zone_id?: string;
|
|
11025
|
+
/**
|
|
11026
|
+
* - Unique identifier of the price factory
|
|
11027
|
+
*/
|
|
11028
|
+
price_factory_id?: string;
|
|
11029
|
+
/**
|
|
11030
|
+
* - User who last modified the price factory
|
|
11031
|
+
*/
|
|
11032
|
+
modified_by?: string;
|
|
11033
|
+
/**
|
|
11034
|
+
* - List of currencies supported by the price factory
|
|
11035
|
+
*/
|
|
11036
|
+
currencies?: string[];
|
|
11037
|
+
/**
|
|
11038
|
+
* - Name of the price factory
|
|
11039
|
+
*/
|
|
11040
|
+
name?: string;
|
|
11041
|
+
/**
|
|
11042
|
+
* - Pricing strategy for the
|
|
11043
|
+
* price factory
|
|
11044
|
+
*/
|
|
11045
|
+
price_strategy?: PriceStrategySchema[];
|
|
11046
|
+
/**
|
|
11047
|
+
* - Whether the price factory is active
|
|
11048
|
+
*/
|
|
11049
|
+
active?: boolean;
|
|
11050
|
+
/**
|
|
11051
|
+
* - User who created the price factory
|
|
11052
|
+
*/
|
|
11053
|
+
created_by?: string;
|
|
11054
|
+
};
|
|
10493
11055
|
/** @returns {Product} */
|
|
10494
11056
|
declare function Product(): Product;
|
|
10495
11057
|
type Product = {
|
|
@@ -14123,6 +14685,61 @@ type TaxReqBodyVersion = {
|
|
|
14123
14685
|
* respective slabs and rates.
|
|
14124
14686
|
*/
|
|
14125
14687
|
components: TaxComponent[];
|
|
14688
|
+
/**
|
|
14689
|
+
* - Optional future effective date for the
|
|
14690
|
+
* version. Must be at least one minute ahead of the current time when supplied.
|
|
14691
|
+
*/
|
|
14692
|
+
applicable_date?: string;
|
|
14693
|
+
/**
|
|
14694
|
+
* - Required whenever areas are supplied to
|
|
14695
|
+
* indicate the granularity of the provided regions.
|
|
14696
|
+
*/
|
|
14697
|
+
region_type?: string;
|
|
14698
|
+
areas?: TaxGeoArea;
|
|
14699
|
+
/**
|
|
14700
|
+
* - Store identifiers for store-level taxation.
|
|
14701
|
+
*/
|
|
14702
|
+
store_ids?: number[];
|
|
14703
|
+
};
|
|
14704
|
+
/** @returns {TaxGeoArea} */
|
|
14705
|
+
declare function TaxGeoArea(): TaxGeoArea;
|
|
14706
|
+
type TaxGeoArea = {
|
|
14707
|
+
/**
|
|
14708
|
+
* - List of region identifiers based on the
|
|
14709
|
+
* selected region_type.
|
|
14710
|
+
*/
|
|
14711
|
+
regions: string[];
|
|
14712
|
+
/**
|
|
14713
|
+
* - Country identifier that groups the regions.
|
|
14714
|
+
*/
|
|
14715
|
+
country: string;
|
|
14716
|
+
};
|
|
14717
|
+
/** @returns {AreaDetails} */
|
|
14718
|
+
declare function AreaDetails(): AreaDetails;
|
|
14719
|
+
type AreaDetails = {
|
|
14720
|
+
uid?: string;
|
|
14721
|
+
display_name?: string;
|
|
14722
|
+
sub_type?: string;
|
|
14723
|
+
parent_id?: string[];
|
|
14724
|
+
};
|
|
14725
|
+
/** @returns {Country} */
|
|
14726
|
+
declare function Country(): Country;
|
|
14727
|
+
type Country = {
|
|
14728
|
+
uid?: string;
|
|
14729
|
+
display_name?: string;
|
|
14730
|
+
};
|
|
14731
|
+
/** @returns {Area} */
|
|
14732
|
+
declare function Area(): Area;
|
|
14733
|
+
type Area = {
|
|
14734
|
+
regions: AreaDetails[];
|
|
14735
|
+
country: Country;
|
|
14736
|
+
};
|
|
14737
|
+
/** @returns {RegionReference} */
|
|
14738
|
+
declare function RegionReference(): RegionReference;
|
|
14739
|
+
type RegionReference = {
|
|
14740
|
+
name?: string;
|
|
14741
|
+
slug?: string;
|
|
14742
|
+
areas?: Area[];
|
|
14126
14743
|
};
|
|
14127
14744
|
/** @returns {CreateTaxRequestBody} */
|
|
14128
14745
|
declare function CreateTaxRequestBody(): CreateTaxRequestBody;
|
|
@@ -14142,8 +14759,8 @@ type TaxVersion = {
|
|
|
14142
14759
|
*/
|
|
14143
14760
|
rule_id?: string;
|
|
14144
14761
|
/**
|
|
14145
|
-
* -
|
|
14146
|
-
*
|
|
14762
|
+
* - Scheduled effective date for the
|
|
14763
|
+
* version. Must be at least one minute ahead of current time when provided.
|
|
14147
14764
|
*/
|
|
14148
14765
|
applicable_date?: string;
|
|
14149
14766
|
created_on?: string;
|
|
@@ -14153,6 +14770,17 @@ type TaxVersion = {
|
|
|
14153
14770
|
*/
|
|
14154
14771
|
company_id?: number;
|
|
14155
14772
|
status?: TaxStatusEnum;
|
|
14773
|
+
/**
|
|
14774
|
+
* - Present when the version targets a
|
|
14775
|
+
* specific set of regions rather than the default country-level rule.
|
|
14776
|
+
*/
|
|
14777
|
+
region_type?: string;
|
|
14778
|
+
areas?: TaxGeoArea;
|
|
14779
|
+
/**
|
|
14780
|
+
* - Store identifiers for store-level taxation.
|
|
14781
|
+
*/
|
|
14782
|
+
store_ids?: number[];
|
|
14783
|
+
scope?: TaxVersionScopeEnum;
|
|
14156
14784
|
/**
|
|
14157
14785
|
* - List of tax components.
|
|
14158
14786
|
*/
|
|
@@ -14167,9 +14795,20 @@ type UpdateTaxVersionRequestBody = {
|
|
|
14167
14795
|
components: TaxComponentResponseSchema[];
|
|
14168
14796
|
/**
|
|
14169
14797
|
* - It is the date from when this rule will
|
|
14170
|
-
* come in effect. It should be
|
|
14798
|
+
* come in effect. It should be at least one minute in the future from the
|
|
14799
|
+
* current time.
|
|
14171
14800
|
*/
|
|
14172
14801
|
applicable_date: string;
|
|
14802
|
+
/**
|
|
14803
|
+
* - Required when areas are present to denote
|
|
14804
|
+
* the level (city/state/pincode) at which the version applies.
|
|
14805
|
+
*/
|
|
14806
|
+
region_type?: string;
|
|
14807
|
+
areas?: TaxGeoArea;
|
|
14808
|
+
/**
|
|
14809
|
+
* - Store identifiers for store-level taxation.
|
|
14810
|
+
*/
|
|
14811
|
+
store_ids?: number[];
|
|
14173
14812
|
};
|
|
14174
14813
|
/** @returns {CreateTaxVersionRequestBody} */
|
|
14175
14814
|
declare function CreateTaxVersionRequestBody(): CreateTaxVersionRequestBody;
|
|
@@ -14179,11 +14818,21 @@ type CreateTaxVersionRequestBody = {
|
|
|
14179
14818
|
*/
|
|
14180
14819
|
components: TaxComponent[];
|
|
14181
14820
|
/**
|
|
14182
|
-
* -
|
|
14183
|
-
* come in effect. It should be
|
|
14184
|
-
* current time. Date time format YYYY-MM-DDThh:mm:ss±hh:mm.
|
|
14821
|
+
* - Optional scheduled date from when this
|
|
14822
|
+
* rule will come in effect. It should be at least one minute in the future
|
|
14823
|
+
* from the current time. Date time format YYYY-MM-DDThh:mm:ss±hh:mm.
|
|
14185
14824
|
*/
|
|
14186
|
-
applicable_date
|
|
14825
|
+
applicable_date?: string;
|
|
14826
|
+
/**
|
|
14827
|
+
* - Required when areas are present to denote
|
|
14828
|
+
* the level (city/state/pincode) at which the version applies.
|
|
14829
|
+
*/
|
|
14830
|
+
region_type?: string;
|
|
14831
|
+
areas?: TaxGeoArea;
|
|
14832
|
+
/**
|
|
14833
|
+
* - Store identifiers for store-level taxation.
|
|
14834
|
+
*/
|
|
14835
|
+
store_ids?: number[];
|
|
14187
14836
|
};
|
|
14188
14837
|
/** @returns {TaxRule} */
|
|
14189
14838
|
declare function TaxRule(): TaxRule;
|
|
@@ -14209,15 +14858,31 @@ declare function TaxVersionDetail(): TaxVersionDetail;
|
|
|
14209
14858
|
type TaxVersionDetail = {
|
|
14210
14859
|
_id: string;
|
|
14211
14860
|
rule_id: string;
|
|
14861
|
+
/**
|
|
14862
|
+
* - It is the date from when this rule comes
|
|
14863
|
+
* in effect. Always present and should be at least one minute in the future
|
|
14864
|
+
* when scheduled.
|
|
14865
|
+
*/
|
|
14212
14866
|
applicable_date: string;
|
|
14213
14867
|
created_on: string;
|
|
14214
14868
|
modified_on: string;
|
|
14215
14869
|
company_id: number;
|
|
14216
14870
|
status?: TaxStatusEnum;
|
|
14871
|
+
/**
|
|
14872
|
+
* - Region code for areas sent when adding a
|
|
14873
|
+
* region override.
|
|
14874
|
+
*/
|
|
14875
|
+
region_code?: string;
|
|
14876
|
+
/**
|
|
14877
|
+
* - Store identifiers for store-level taxation.
|
|
14878
|
+
*/
|
|
14879
|
+
store_ids?: number[];
|
|
14880
|
+
region?: RegionReference;
|
|
14217
14881
|
/**
|
|
14218
14882
|
* - List of components.
|
|
14219
14883
|
*/
|
|
14220
14884
|
components: TaxComponent[];
|
|
14885
|
+
scope?: TaxVersionScopeEnum;
|
|
14221
14886
|
/**
|
|
14222
14887
|
* - Specifies the type of tax version.
|
|
14223
14888
|
*/
|
|
@@ -14229,15 +14894,6 @@ type CreateTax = {
|
|
|
14229
14894
|
rule?: TaxRule;
|
|
14230
14895
|
versions?: TaxVersion;
|
|
14231
14896
|
};
|
|
14232
|
-
/** @returns {UpdateTaxVersion} */
|
|
14233
|
-
declare function UpdateTaxVersion(): UpdateTaxVersion;
|
|
14234
|
-
type UpdateTaxVersion = {
|
|
14235
|
-
/**
|
|
14236
|
-
* - List of components.
|
|
14237
|
-
*/
|
|
14238
|
-
components: TaxComponent[];
|
|
14239
|
-
applicable_date: string;
|
|
14240
|
-
};
|
|
14241
14897
|
/** @returns {UpdateTaxRequestBody} */
|
|
14242
14898
|
declare function UpdateTaxRequestBody(): UpdateTaxRequestBody;
|
|
14243
14899
|
type UpdateTaxRequestBody = {
|
|
@@ -14333,6 +14989,335 @@ type GetTaxComponents = {
|
|
|
14333
14989
|
items: TaxComponentResponseSchema[];
|
|
14334
14990
|
page: Page;
|
|
14335
14991
|
};
|
|
14992
|
+
/** @returns {PriceFactoryListItemsSchema} */
|
|
14993
|
+
declare function PriceFactoryListItemsSchema(): PriceFactoryListItemsSchema;
|
|
14994
|
+
type PriceFactoryListItemsSchema = {
|
|
14995
|
+
/**
|
|
14996
|
+
* - Unique identifier for the price factory.
|
|
14997
|
+
*/
|
|
14998
|
+
price_factory_id?: string;
|
|
14999
|
+
/**
|
|
15000
|
+
* - Name of the price factory configuration.
|
|
15001
|
+
*/
|
|
15002
|
+
name?: string;
|
|
15003
|
+
/**
|
|
15004
|
+
* - Type of price factory.
|
|
15005
|
+
*/
|
|
15006
|
+
type?: string;
|
|
15007
|
+
/**
|
|
15008
|
+
* - List of currency codes (e.g., INR, USD).
|
|
15009
|
+
*/
|
|
15010
|
+
currencies?: string[];
|
|
15011
|
+
/**
|
|
15012
|
+
* - List of pricing
|
|
15013
|
+
* strategies to apply for each currency.
|
|
15014
|
+
*/
|
|
15015
|
+
price_strategy?: PriceStrategySchema[];
|
|
15016
|
+
/**
|
|
15017
|
+
* - ID of the price zone.
|
|
15018
|
+
*/
|
|
15019
|
+
price_zone_id?: string;
|
|
15020
|
+
/**
|
|
15021
|
+
* - Status of the price factory (active/inactive).
|
|
15022
|
+
*/
|
|
15023
|
+
active?: boolean;
|
|
15024
|
+
modified_by?: CreatedBy;
|
|
15025
|
+
created_by?: CreatedBy;
|
|
15026
|
+
/**
|
|
15027
|
+
* - Timestamp of the last modification.
|
|
15028
|
+
*/
|
|
15029
|
+
modified_on?: string;
|
|
15030
|
+
};
|
|
15031
|
+
/** @returns {PriceFactoryListResponseSchema} */
|
|
15032
|
+
declare function PriceFactoryListResponseSchema(): PriceFactoryListResponseSchema;
|
|
15033
|
+
type PriceFactoryListResponseSchema = {
|
|
15034
|
+
page?: Page;
|
|
15035
|
+
/**
|
|
15036
|
+
* - List of price factory
|
|
15037
|
+
* configurations.
|
|
15038
|
+
*/
|
|
15039
|
+
data?: PriceFactoryListItemsSchema[];
|
|
15040
|
+
};
|
|
15041
|
+
/** @returns {CreatePriceFactoryConfigSchema} */
|
|
15042
|
+
declare function CreatePriceFactoryConfigSchema(): CreatePriceFactoryConfigSchema;
|
|
15043
|
+
type CreatePriceFactoryConfigSchema = {
|
|
15044
|
+
/**
|
|
15045
|
+
* - The name of the price factory configuration.
|
|
15046
|
+
*/
|
|
15047
|
+
name?: string;
|
|
15048
|
+
/**
|
|
15049
|
+
* - Defines the type of price factory, either
|
|
15050
|
+
* regional or international.
|
|
15051
|
+
*/
|
|
15052
|
+
type?: string;
|
|
15053
|
+
/**
|
|
15054
|
+
* - List of currency codes applicable for
|
|
15055
|
+
* pricing (e.g., USD, EUR).
|
|
15056
|
+
*/
|
|
15057
|
+
currencies?: string[];
|
|
15058
|
+
/**
|
|
15059
|
+
* - List of pricing
|
|
15060
|
+
* strategies to apply for each currency.
|
|
15061
|
+
*/
|
|
15062
|
+
price_strategy?: PriceStrategySchema[];
|
|
15063
|
+
/**
|
|
15064
|
+
* - Identifier for the price zone associated
|
|
15065
|
+
* with the price factory.
|
|
15066
|
+
*/
|
|
15067
|
+
price_zone_id?: string;
|
|
15068
|
+
};
|
|
15069
|
+
/** @returns {UpdatePriceFactoryConfigSchema} */
|
|
15070
|
+
declare function UpdatePriceFactoryConfigSchema(): UpdatePriceFactoryConfigSchema;
|
|
15071
|
+
type UpdatePriceFactoryConfigSchema = {
|
|
15072
|
+
/**
|
|
15073
|
+
* - The name of the price factory configuration.
|
|
15074
|
+
*/
|
|
15075
|
+
name?: string;
|
|
15076
|
+
/**
|
|
15077
|
+
* - List of currency codes applicable for
|
|
15078
|
+
* pricing (e.g., USD, EUR).
|
|
15079
|
+
*/
|
|
15080
|
+
currencies?: string[];
|
|
15081
|
+
/**
|
|
15082
|
+
* - List of pricing
|
|
15083
|
+
* strategies to apply for each currency.
|
|
15084
|
+
*/
|
|
15085
|
+
price_strategy?: PriceStrategySchema[];
|
|
15086
|
+
/**
|
|
15087
|
+
* - Identifier for the price zone associated
|
|
15088
|
+
* with the price factory.
|
|
15089
|
+
*/
|
|
15090
|
+
price_zone_id?: string;
|
|
15091
|
+
};
|
|
15092
|
+
/** @returns {PriceFactoryConfigSchema} */
|
|
15093
|
+
declare function PriceFactoryConfigSchema(): PriceFactoryConfigSchema;
|
|
15094
|
+
type PriceFactoryConfigSchema = {
|
|
15095
|
+
/**
|
|
15096
|
+
* - The name of the price factory configuration.
|
|
15097
|
+
*/
|
|
15098
|
+
name?: string;
|
|
15099
|
+
/**
|
|
15100
|
+
* - Defines the type of price factory, either
|
|
15101
|
+
* regional or international.
|
|
15102
|
+
*/
|
|
15103
|
+
type?: string;
|
|
15104
|
+
/**
|
|
15105
|
+
* - List of currency codes applicable for
|
|
15106
|
+
* pricing (e.g., USD, EUR).
|
|
15107
|
+
*/
|
|
15108
|
+
currencies?: string[];
|
|
15109
|
+
/**
|
|
15110
|
+
* - List of pricing
|
|
15111
|
+
* strategies to apply for each currency.
|
|
15112
|
+
*/
|
|
15113
|
+
price_strategy?: PriceStrategySchema[];
|
|
15114
|
+
/**
|
|
15115
|
+
* - Identifier for the price zone associated
|
|
15116
|
+
* with the price factory.
|
|
15117
|
+
*/
|
|
15118
|
+
price_zone_id?: string;
|
|
15119
|
+
created_by?: CreatedBy;
|
|
15120
|
+
modified_by?: CreatedBy;
|
|
15121
|
+
};
|
|
15122
|
+
/** @returns {CurrencyPriceSchema} */
|
|
15123
|
+
declare function CurrencyPriceSchema(): CurrencyPriceSchema;
|
|
15124
|
+
type CurrencyPriceSchema = {
|
|
15125
|
+
/**
|
|
15126
|
+
* - Original price before any discounts.
|
|
15127
|
+
*/
|
|
15128
|
+
marked_price: number;
|
|
15129
|
+
/**
|
|
15130
|
+
* - Final price after applying discounts or adjustments.
|
|
15131
|
+
*/
|
|
15132
|
+
selling_price: number;
|
|
15133
|
+
/**
|
|
15134
|
+
* - Currency code (e.g., USD, EUR).
|
|
15135
|
+
*/
|
|
15136
|
+
currency: string;
|
|
15137
|
+
};
|
|
15138
|
+
/** @returns {UpsertPriceFactorySizesSchema} */
|
|
15139
|
+
declare function UpsertPriceFactorySizesSchema(): UpsertPriceFactorySizesSchema;
|
|
15140
|
+
type UpsertPriceFactorySizesSchema = {
|
|
15141
|
+
/**
|
|
15142
|
+
* - The identifier for the product size (e.g., S, M, L, OS).
|
|
15143
|
+
*/
|
|
15144
|
+
size?: string;
|
|
15145
|
+
/**
|
|
15146
|
+
* - The list of currency prices
|
|
15147
|
+
*/
|
|
15148
|
+
currency_prices?: CurrencyPriceSchema[];
|
|
15149
|
+
};
|
|
15150
|
+
/** @returns {UpsertPriceFactoryProductSchema} */
|
|
15151
|
+
declare function UpsertPriceFactoryProductSchema(): UpsertPriceFactoryProductSchema;
|
|
15152
|
+
type UpsertPriceFactoryProductSchema = {
|
|
15153
|
+
/**
|
|
15154
|
+
* - List of size-level
|
|
15155
|
+
* pricing configurations.
|
|
15156
|
+
*/
|
|
15157
|
+
sizes?: UpsertPriceFactorySizesSchema[];
|
|
15158
|
+
/**
|
|
15159
|
+
* - Indicates whether the product configuration is active.
|
|
15160
|
+
*/
|
|
15161
|
+
active?: boolean;
|
|
15162
|
+
};
|
|
15163
|
+
/** @returns {PriceFactoryCurrencyPriceSchema} */
|
|
15164
|
+
declare function PriceFactoryCurrencyPriceSchema(): PriceFactoryCurrencyPriceSchema;
|
|
15165
|
+
type PriceFactoryCurrencyPriceSchema = {
|
|
15166
|
+
/**
|
|
15167
|
+
* - Indicates if this price is the base price.
|
|
15168
|
+
*/
|
|
15169
|
+
base_price?: boolean;
|
|
15170
|
+
/**
|
|
15171
|
+
* - Currency code (e.g., INR).
|
|
15172
|
+
*/
|
|
15173
|
+
currency?: string;
|
|
15174
|
+
/**
|
|
15175
|
+
* - The price at which the item is sold.
|
|
15176
|
+
*/
|
|
15177
|
+
selling_price?: number;
|
|
15178
|
+
/**
|
|
15179
|
+
* - The original marked price of the item.
|
|
15180
|
+
*/
|
|
15181
|
+
marked_price?: number;
|
|
15182
|
+
};
|
|
15183
|
+
/** @returns {PriceFactorySizesSchema} */
|
|
15184
|
+
declare function PriceFactorySizesSchema(): PriceFactorySizesSchema;
|
|
15185
|
+
type PriceFactorySizesSchema = {
|
|
15186
|
+
/**
|
|
15187
|
+
* - ID of the price factory entry.
|
|
15188
|
+
*/
|
|
15189
|
+
price_factory_id?: string;
|
|
15190
|
+
/**
|
|
15191
|
+
* - Identifier of the seller for the item.
|
|
15192
|
+
*/
|
|
15193
|
+
seller_identifier?: string;
|
|
15194
|
+
/**
|
|
15195
|
+
* - Size of the product (e.g., OS).
|
|
15196
|
+
*/
|
|
15197
|
+
size?: string;
|
|
15198
|
+
/**
|
|
15199
|
+
* - Price zone identifier for
|
|
15200
|
+
* regional/international pricing.
|
|
15201
|
+
*/
|
|
15202
|
+
price_zone_id?: string;
|
|
15203
|
+
/**
|
|
15204
|
+
* - Pricing
|
|
15205
|
+
* information across different currencies.
|
|
15206
|
+
*/
|
|
15207
|
+
currency_prices?: PriceFactoryCurrencyPriceSchema[];
|
|
15208
|
+
};
|
|
15209
|
+
/** @returns {PriceFactoryProductResponseSchema} */
|
|
15210
|
+
declare function PriceFactoryProductResponseSchema(): PriceFactoryProductResponseSchema;
|
|
15211
|
+
type PriceFactoryProductResponseSchema = {
|
|
15212
|
+
/**
|
|
15213
|
+
* - Unique identifier for the item in the price
|
|
15214
|
+
* factory response.
|
|
15215
|
+
*/
|
|
15216
|
+
item_id?: number;
|
|
15217
|
+
/**
|
|
15218
|
+
* - Code identifying the item.
|
|
15219
|
+
*/
|
|
15220
|
+
item_code?: string;
|
|
15221
|
+
/**
|
|
15222
|
+
* - Name of the item.
|
|
15223
|
+
*/
|
|
15224
|
+
name?: string;
|
|
15225
|
+
/**
|
|
15226
|
+
* - Indicates if the item is currently active.
|
|
15227
|
+
*/
|
|
15228
|
+
active?: boolean;
|
|
15229
|
+
/**
|
|
15230
|
+
* - List of media associated with the item.
|
|
15231
|
+
*/
|
|
15232
|
+
media?: string[];
|
|
15233
|
+
/**
|
|
15234
|
+
* - List of size and pricing details.
|
|
15235
|
+
*/
|
|
15236
|
+
sizes?: PriceFactorySizesSchema[];
|
|
15237
|
+
};
|
|
15238
|
+
/** @returns {PriceFactoryProductListResponseSchema} */
|
|
15239
|
+
declare function PriceFactoryProductListResponseSchema(): PriceFactoryProductListResponseSchema;
|
|
15240
|
+
type PriceFactoryProductListResponseSchema = {
|
|
15241
|
+
/**
|
|
15242
|
+
* - List of products
|
|
15243
|
+
* details with sizes and prices details.
|
|
15244
|
+
*/
|
|
15245
|
+
items?: PriceFactoryProductResponseSchema[];
|
|
15246
|
+
page?: Page;
|
|
15247
|
+
};
|
|
15248
|
+
/** @returns {PriceRange} */
|
|
15249
|
+
declare function PriceRange(): PriceRange;
|
|
15250
|
+
type PriceRange = {
|
|
15251
|
+
/**
|
|
15252
|
+
* - Minimum price.
|
|
15253
|
+
*/
|
|
15254
|
+
min?: number;
|
|
15255
|
+
/**
|
|
15256
|
+
* - Maximum price.
|
|
15257
|
+
*/
|
|
15258
|
+
max?: number;
|
|
15259
|
+
};
|
|
15260
|
+
/** @returns {CurrencyPrice} */
|
|
15261
|
+
declare function CurrencyPrice(): CurrencyPrice;
|
|
15262
|
+
type CurrencyPrice = {
|
|
15263
|
+
/**
|
|
15264
|
+
* - Discount value applied in percentage.
|
|
15265
|
+
*/
|
|
15266
|
+
discount?: number;
|
|
15267
|
+
/**
|
|
15268
|
+
* - Currency code (e.g., 'INR', 'EUR').
|
|
15269
|
+
*/
|
|
15270
|
+
currency_code?: string;
|
|
15271
|
+
/**
|
|
15272
|
+
* - Symbol of the currency.
|
|
15273
|
+
*/
|
|
15274
|
+
currency_symbol?: string;
|
|
15275
|
+
marked?: PriceRange;
|
|
15276
|
+
effective?: PriceRange;
|
|
15277
|
+
selling?: PriceRange;
|
|
15278
|
+
};
|
|
15279
|
+
/** @returns {ProductPrice} */
|
|
15280
|
+
declare function ProductPrice(): ProductPrice;
|
|
15281
|
+
type ProductPrice = {
|
|
15282
|
+
/**
|
|
15283
|
+
* - Type of the pricing zone, e.g., 'price' or 'delivery'.
|
|
15284
|
+
*/
|
|
15285
|
+
zone_type?: string;
|
|
15286
|
+
/**
|
|
15287
|
+
* - Unique identifier for the zone.
|
|
15288
|
+
*/
|
|
15289
|
+
zone_identifier?: string;
|
|
15290
|
+
/**
|
|
15291
|
+
* - List of prices for different
|
|
15292
|
+
* currencies in this zone.
|
|
15293
|
+
*/
|
|
15294
|
+
currency_prices?: CurrencyPrice[];
|
|
15295
|
+
};
|
|
15296
|
+
/** @returns {AppProductPricesSchema} */
|
|
15297
|
+
declare function AppProductPricesSchema(): AppProductPricesSchema;
|
|
15298
|
+
type AppProductPricesSchema = {
|
|
15299
|
+
/**
|
|
15300
|
+
* - Unique code identifying the item.
|
|
15301
|
+
*/
|
|
15302
|
+
item_code?: string;
|
|
15303
|
+
/**
|
|
15304
|
+
* - Unique identifier for the brand.
|
|
15305
|
+
*/
|
|
15306
|
+
brand_uid?: number;
|
|
15307
|
+
/**
|
|
15308
|
+
* - Unique identifier for the item.
|
|
15309
|
+
*/
|
|
15310
|
+
item_id?: number;
|
|
15311
|
+
/**
|
|
15312
|
+
* - Additional discount metadata.
|
|
15313
|
+
*/
|
|
15314
|
+
discount_meta?: any;
|
|
15315
|
+
/**
|
|
15316
|
+
* - Pricing information for various
|
|
15317
|
+
* zones and currencies.
|
|
15318
|
+
*/
|
|
15319
|
+
product_price?: ProductPrice[];
|
|
15320
|
+
};
|
|
14336
15321
|
/** @returns {ActionPage} */
|
|
14337
15322
|
declare function ActionPage(): ActionPage;
|
|
14338
15323
|
type ActionPage = {
|
|
@@ -14433,6 +15418,13 @@ type CustomMeta = {
|
|
|
14433
15418
|
*/
|
|
14434
15419
|
declare function TaxStatusEnum(): TaxStatusEnum;
|
|
14435
15420
|
type TaxStatusEnum = "ACTIVE" | "INACTIVE" | "DELETED";
|
|
15421
|
+
/**
|
|
15422
|
+
* Enum: TaxVersionScopeEnum Used By: Catalog
|
|
15423
|
+
*
|
|
15424
|
+
* @returns {TaxVersionScopeEnum}
|
|
15425
|
+
*/
|
|
15426
|
+
declare function TaxVersionScopeEnum(): TaxVersionScopeEnum;
|
|
15427
|
+
type TaxVersionScopeEnum = "COUNTRY" | "REGION" | "STORE";
|
|
14436
15428
|
/**
|
|
14437
15429
|
* Enum: HsTypeEnum Used By: Catalog
|
|
14438
15430
|
*
|
|
@@ -14446,4 +15438,4 @@ type HsTypeEnum = "HS" | "SAC";
|
|
|
14446
15438
|
* @returns {PageType}
|
|
14447
15439
|
*/
|
|
14448
15440
|
declare function PageType(): PageType;
|
|
14449
|
-
type PageType = "about-us" | "addresses" | "blog" | "brands" | "cards" | "cart" | "categories" | "brand" | "category" | "collection" | "collections" | "custom" | "contact-us" | "external" | "faq" | "freshchat" | "home" | "notification-settings" | "orders" | "page" | "policy" | "product" | "product-request" | "products" | "profile" | "profile-order-shipment" | "profile-basic" | "profile-company" | "profile-email" | "profile-phone" | "rate-us" | "refer-earn" | "settings" | "shared-cart" | "tnc" | "track-order" | "wishlist" | "sections" | "form" | "cart-delivery" | "cart-payment" | "cart-review" | "login" | "register" | "shipping-policy" | "return-policy" | "order-status" | "locate-us" | "single-page-checkout" | "request-reattempt";
|
|
15441
|
+
type PageType = "about-us" | "addresses" | "blog" | "brands" | "cards" | "cart" | "categories" | "brand" | "category" | "collection" | "collections" | "custom" | "contact-us" | "external" | "faq" | "freshchat" | "home" | "notification-settings" | "orders" | "page" | "policy" | "product" | "product-request" | "products" | "profile" | "profile-order-shipment" | "profile-basic" | "profile-company" | "profile-email" | "profile-phone" | "rate-us" | "refer-earn" | "settings" | "shared-cart" | "tnc" | "track-order" | "wishlist" | "sections" | "form" | "cart-delivery" | "cart-payment" | "cart-review" | "login" | "register" | "shipping-policy" | "return-policy" | "order-status" | "locate-us" | "single-page-checkout" | "request-reattempt" | "files";
|