@gofynd/fdk-client-javascript 1.4.14 → 1.4.15-beta.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/application.d.ts +1 -2
- package/application.js +2 -3
- package/index.d.ts +1 -2
- package/index.js +7 -1
- package/package.json +2 -3
- package/sdk/application/ApplicationClient.d.ts +0 -2
- package/sdk/application/ApplicationClient.js +0 -20
- package/sdk/application/Cart/CartApplicationClient.d.ts +55 -97
- package/sdk/application/Cart/CartApplicationClient.js +60 -1262
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +80 -162
- package/sdk/application/Catalog/CatalogApplicationClient.js +148 -1313
- package/sdk/application/Common/CommonApplicationClient.d.ts +4 -9
- package/sdk/application/Common/CommonApplicationClient.js +5 -90
- package/sdk/application/Communication/CommunicationApplicationClient.d.ts +6 -19
- package/sdk/application/Communication/CommunicationApplicationClient.js +6 -145
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +32 -80
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +31 -725
- package/sdk/application/Content/ContentApplicationClient.d.ts +63 -85
- package/sdk/application/Content/ContentApplicationClient.js +126 -942
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +11 -15
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +26 -130
- package/sdk/application/Lead/LeadApplicationClient.d.ts +10 -17
- package/sdk/application/Lead/LeadApplicationClient.js +32 -201
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +22 -62
- package/sdk/application/Logistic/LogisticApplicationClient.js +51 -647
- package/sdk/application/Order/OrderApplicationClient.d.ts +22 -56
- package/sdk/application/Order/OrderApplicationClient.js +86 -555
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +92 -209
- package/sdk/application/Payment/PaymentApplicationClient.js +57 -2099
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +15 -26
- package/sdk/application/Rewards/RewardsApplicationClient.js +17 -303
- package/sdk/application/Share/ShareApplicationClient.d.ts +14 -24
- package/sdk/application/Share/ShareApplicationClient.js +34 -294
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +8 -14
- package/sdk/application/Theme/ThemeApplicationClient.js +30 -166
- package/sdk/application/User/UserApplicationClient.d.ts +87 -138
- package/sdk/application/User/UserApplicationClient.js +47 -1817
- package/sdk/application/Webhook/WebhookApplicationClient.d.ts +4 -7
- package/sdk/application/Webhook/WebhookApplicationClient.js +6 -49
- package/sdk/application/index.d.ts +0 -19
- package/sdk/application/index.js +0 -35
- package/sdk/common/Utility.d.ts +1 -1
- package/sdk/common/Utility.js +10 -7
- package/sdk/common/Validator.d.ts +1 -0
- package/sdk/common/Validator.js +20 -0
- package/sdk/common/utils.d.ts +0 -1
- package/sdk/common/utils.js +0 -14
- package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +12 -86
- package/sdk/partner/FileStorage/FileStoragePartnerClient.js +24 -582
- package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +21 -116
- package/sdk/partner/FileStorage/FileStoragePartnerModel.js +16 -121
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +1 -8
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +4 -51
- package/sdk/partner/Lead/LeadPartnerClient.d.ts +2 -2
- package/sdk/partner/Lead/LeadPartnerClient.js +2 -2
- package/sdk/partner/Lead/LeadPartnerModel.d.ts +5 -5
- package/sdk/partner/Lead/LeadPartnerModel.js +15 -15
- package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +20 -126
- package/sdk/partner/Logistics/LogisticsPartnerClient.js +20 -970
- package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +85 -767
- package/sdk/partner/Logistics/LogisticsPartnerModel.js +76 -429
- package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +0 -10
- package/sdk/partner/Logistics/LogisticsPartnerValidator.js +6 -120
- package/sdk/partner/OAuthClient.js +1 -0
- package/sdk/partner/Theme/ThemePartnerClient.d.ts +10 -8
- package/sdk/partner/Theme/ThemePartnerClient.js +16 -14
- package/sdk/partner/Theme/ThemePartnerModel.d.ts +39 -135
- package/sdk/partner/Theme/ThemePartnerModel.js +38 -114
- package/sdk/partner/Theme/ThemePartnerValidator.js +4 -4
- package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +18 -28
- package/sdk/partner/Webhook/WebhookPartnerClient.js +18 -103
- package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +179 -612
- package/sdk/partner/Webhook/WebhookPartnerModel.js +150 -253
- package/sdk/partner/Webhook/WebhookPartnerValidator.d.ts +0 -1
- package/sdk/partner/Webhook/WebhookPartnerValidator.js +3 -11
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +4 -5
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +8 -14
- package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +9 -59
- package/sdk/platform/Analytics/AnalyticsPlatformModel.js +4 -40
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +32 -2
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +243 -3
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +130 -11
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +152 -12
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +39 -1
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +35 -0
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +12 -12
- package/sdk/platform/Billing/BillingPlatformClient.js +15 -15
- package/sdk/platform/Billing/BillingPlatformModel.d.ts +388 -443
- package/sdk/platform/Billing/BillingPlatformModel.js +263 -280
- package/sdk/platform/Billing/BillingPlatformValidator.d.ts +18 -16
- package/sdk/platform/Billing/BillingPlatformValidator.js +9 -8
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +103 -134
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +112 -407
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +65 -111
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +44 -106
- package/sdk/platform/Cart/CartPlatformModel.d.ts +1328 -4975
- package/sdk/platform/Cart/CartPlatformModel.js +1229 -1922
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +183 -208
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +358 -383
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +126 -122
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +68 -66
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +118 -141
- package/sdk/platform/Catalog/CatalogPlatformClient.js +170 -193
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +1744 -1501
- package/sdk/platform/Catalog/CatalogPlatformModel.js +1211 -1383
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +18 -18
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +18 -18
- package/sdk/platform/Common/CommonPlatformClient.d.ts +2 -3
- package/sdk/platform/Common/CommonPlatformClient.js +2 -3
- package/sdk/platform/Common/CommonPlatformModel.d.ts +9 -9
- package/sdk/platform/Common/CommonPlatformModel.js +6 -6
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +17 -16
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +17 -16
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +8 -8
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +8 -8
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +33 -43
- package/sdk/platform/Communication/CommunicationPlatformModel.js +34 -38
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +42 -46
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +43 -47
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +223 -223
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +212 -210
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +12 -12
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +12 -12
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +33 -46
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +54 -67
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +18 -18
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +18 -18
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +24 -45
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +30 -134
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +138 -283
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +100 -219
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +9 -37
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +8 -27
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +141 -124
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +422 -449
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +141 -179
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +130 -168
- package/sdk/platform/Content/ContentPlatformClient.d.ts +106 -142
- package/sdk/platform/Content/ContentPlatformClient.js +336 -523
- package/sdk/platform/Content/ContentPlatformModel.d.ts +395 -1241
- package/sdk/platform/Content/ContentPlatformModel.js +390 -521
- package/sdk/platform/Content/ContentPlatformValidator.d.ts +117 -168
- package/sdk/platform/Content/ContentPlatformValidator.js +108 -162
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +12 -14
- package/sdk/platform/Discount/DiscountPlatformClient.js +12 -14
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +13 -13
- package/sdk/platform/Discount/DiscountPlatformModel.js +12 -12
- package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +2 -2
- package/sdk/platform/Discount/DiscountPlatformValidator.js +2 -2
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +39 -95
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +63 -462
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +15 -62
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +13 -75
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +22 -20
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +24 -21
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +116 -370
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +104 -313
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
- package/sdk/platform/Finance/FinancePlatformClient.d.ts +320 -0
- package/sdk/platform/Finance/FinancePlatformClient.js +2333 -0
- package/sdk/platform/Finance/FinancePlatformModel.d.ts +2890 -0
- package/sdk/platform/Finance/FinancePlatformModel.js +2148 -0
- package/sdk/platform/Finance/FinancePlatformValidator.d.ts +284 -0
- package/sdk/platform/Finance/FinancePlatformValidator.js +354 -0
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +2 -2
- package/sdk/platform/Lead/LeadPlatformClient.js +2 -2
- package/sdk/platform/Lead/LeadPlatformModel.d.ts +5 -5
- package/sdk/platform/Lead/LeadPlatformModel.js +16 -16
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +4 -25
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +5 -175
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +4 -52
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +3 -34
- package/sdk/platform/Order/OrderPlatformClient.d.ts +103 -174
- package/sdk/platform/Order/OrderPlatformClient.js +275 -528
- package/sdk/platform/Order/OrderPlatformModel.d.ts +3078 -5449
- package/sdk/platform/Order/OrderPlatformModel.js +1659 -3501
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +219 -234
- package/sdk/platform/Order/OrderPlatformValidator.js +118 -146
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -6
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +7 -9
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +9 -9
- package/sdk/platform/Partner/PartnerPlatformModel.js +8 -8
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +106 -94
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +146 -131
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +93 -64
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +70 -62
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +20 -20
- package/sdk/platform/Payment/PaymentPlatformClient.js +20 -20
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +507 -386
- package/sdk/platform/Payment/PaymentPlatformModel.js +376 -323
- package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +10 -10
- package/sdk/platform/Payment/PaymentPlatformValidator.js +10 -10
- package/sdk/platform/PlatformClient.d.ts +2 -0
- package/sdk/platform/PlatformClient.js +4 -0
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +2 -2
- package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +9 -9
- package/sdk/platform/Rewards/RewardsPlatformModel.js +8 -8
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +35 -45
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +38 -117
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +13 -22
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +12 -24
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +46 -40
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +68 -62
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +396 -620
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +326 -501
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +11 -11
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +10 -10
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +2 -2
- package/sdk/platform/Share/SharePlatformApplicationClient.js +2 -2
- package/sdk/platform/Share/SharePlatformModel.d.ts +5 -36
- package/sdk/platform/Share/SharePlatformModel.js +4 -27
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +3 -3
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +4 -8
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +0 -5
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +0 -2
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +13 -76
- package/sdk/platform/Theme/ThemePlatformModel.js +17 -57
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +12 -12
- package/sdk/platform/User/UserPlatformApplicationClient.js +12 -12
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +2 -2
- package/sdk/platform/User/UserPlatformApplicationValidator.js +2 -2
- package/sdk/platform/User/UserPlatformModel.d.ts +21 -21
- package/sdk/platform/User/UserPlatformModel.js +23 -23
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +78 -25
- package/sdk/platform/Webhook/WebhookPlatformClient.js +470 -75
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +427 -720
- package/sdk/platform/Webhook/WebhookPlatformModel.js +386 -410
- package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +55 -10
- package/sdk/platform/Webhook/WebhookPlatformValidator.js +72 -12
- package/sdk/platform/index.d.ts +1 -0
- package/sdk/platform/index.js +2 -0
- package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +2 -3
- package/sdk/public/Configuration/ConfigurationPublicClient.js +10 -8
- package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +9 -9
- package/sdk/public/Configuration/ConfigurationPublicModel.js +6 -6
- package/sdk/public/Content/ContentPublicClient.d.ts +2 -112
- package/sdk/public/Content/ContentPublicClient.js +19 -793
- package/sdk/public/Content/ContentPublicModel.d.ts +3 -549
- package/sdk/public/Content/ContentPublicModel.js +3 -649
- package/sdk/public/Content/ContentPublicValidator.d.ts +3 -69
- package/sdk/public/Content/ContentPublicValidator.js +2 -88
- package/sdk/public/Partner/PartnerPublicClient.d.ts +1 -1
- package/sdk/public/Partner/PartnerPublicClient.js +14 -2
- package/sdk/public/Webhook/WebhookPublicClient.d.ts +8 -8
- package/sdk/public/Webhook/WebhookPublicClient.js +13 -10
- package/sdk/public/Webhook/WebhookPublicModel.d.ts +21 -21
- package/sdk/public/Webhook/WebhookPublicModel.js +15 -15
- package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
- package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
- package/sdk/application/Cart/CartApplicationModel.d.ts +0 -4340
- package/sdk/application/Cart/CartApplicationModel.js +0 -2718
- package/sdk/application/Cart/CartApplicationValidator.d.ts +0 -788
- package/sdk/application/Cart/CartApplicationValidator.js +0 -546
- package/sdk/application/Catalog/CatalogApplicationModel.d.ts +0 -3909
- package/sdk/application/Catalog/CatalogApplicationModel.js +0 -2667
- package/sdk/application/Catalog/CatalogApplicationValidator.d.ts +0 -791
- package/sdk/application/Catalog/CatalogApplicationValidator.js +0 -551
- package/sdk/application/Common/CommonApplicationModel.d.ts +0 -449
- package/sdk/application/Common/CommonApplicationModel.js +0 -308
- package/sdk/application/Common/CommonApplicationValidator.d.ts +0 -46
- package/sdk/application/Common/CommonApplicationValidator.js +0 -38
- package/sdk/application/Communication/CommunicationApplicationModel.d.ts +0 -293
- package/sdk/application/Communication/CommunicationApplicationModel.js +0 -201
- package/sdk/application/Communication/CommunicationApplicationValidator.d.ts +0 -29
- package/sdk/application/Communication/CommunicationApplicationValidator.js +0 -38
- package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +0 -2544
- package/sdk/application/Configuration/ConfigurationApplicationModel.js +0 -1875
- package/sdk/application/Configuration/ConfigurationApplicationValidator.d.ts +0 -179
- package/sdk/application/Configuration/ConfigurationApplicationValidator.js +0 -176
- package/sdk/application/Content/ContentApplicationModel.d.ts +0 -2189
- package/sdk/application/Content/ContentApplicationModel.js +0 -1640
- package/sdk/application/Content/ContentApplicationValidator.d.ts +0 -290
- package/sdk/application/Content/ContentApplicationValidator.js +0 -269
- package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +0 -270
- package/sdk/application/FileStorage/FileStorageApplicationModel.js +0 -188
- package/sdk/application/FileStorage/FileStorageApplicationValidator.d.ts +0 -56
- package/sdk/application/FileStorage/FileStorageApplicationValidator.js +0 -53
- package/sdk/application/Finance/FinanceApplicationClient.d.ts +0 -36
- package/sdk/application/Finance/FinanceApplicationClient.js +0 -202
- package/sdk/application/Finance/FinanceApplicationModel.d.ts +0 -289
- package/sdk/application/Finance/FinanceApplicationModel.js +0 -208
- package/sdk/application/Finance/FinanceApplicationValidator.d.ts +0 -25
- package/sdk/application/Finance/FinanceApplicationValidator.js +0 -31
- package/sdk/application/Lead/LeadApplicationModel.d.ts +0 -590
- package/sdk/application/Lead/LeadApplicationModel.js +0 -480
- package/sdk/application/Lead/LeadApplicationValidator.d.ts +0 -68
- package/sdk/application/Lead/LeadApplicationValidator.js +0 -71
- package/sdk/application/Logistic/LogisticApplicationModel.d.ts +0 -2034
- package/sdk/application/Logistic/LogisticApplicationModel.js +0 -1391
- package/sdk/application/Logistic/LogisticApplicationValidator.d.ts +0 -299
- package/sdk/application/Logistic/LogisticApplicationValidator.js +0 -224
- package/sdk/application/Order/OrderApplicationModel.d.ts +0 -2612
- package/sdk/application/Order/OrderApplicationModel.js +0 -1669
- package/sdk/application/Order/OrderApplicationValidator.d.ts +0 -279
- package/sdk/application/Order/OrderApplicationValidator.js +0 -210
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +0 -4062
- package/sdk/application/Payment/PaymentApplicationModel.js +0 -2632
- package/sdk/application/Payment/PaymentApplicationValidator.d.ts +0 -576
- package/sdk/application/Payment/PaymentApplicationValidator.js +0 -594
- package/sdk/application/Rewards/RewardsApplicationModel.d.ts +0 -365
- package/sdk/application/Rewards/RewardsApplicationModel.js +0 -396
- package/sdk/application/Rewards/RewardsApplicationValidator.d.ts +0 -73
- package/sdk/application/Rewards/RewardsApplicationValidator.js +0 -84
- package/sdk/application/Share/ShareApplicationModel.d.ts +0 -339
- package/sdk/application/Share/ShareApplicationModel.js +0 -234
- package/sdk/application/Share/ShareApplicationValidator.d.ts +0 -90
- package/sdk/application/Share/ShareApplicationValidator.js +0 -91
- package/sdk/application/Theme/ThemeApplicationModel.d.ts +0 -1744
- package/sdk/application/Theme/ThemeApplicationModel.js +0 -1446
- package/sdk/application/Theme/ThemeApplicationValidator.d.ts +0 -79
- package/sdk/application/Theme/ThemeApplicationValidator.js +0 -65
- package/sdk/application/User/UserApplicationModel.d.ts +0 -1943
- package/sdk/application/User/UserApplicationModel.js +0 -1382
- package/sdk/application/User/UserApplicationValidator.d.ts +0 -560
- package/sdk/application/User/UserApplicationValidator.js +0 -573
- package/sdk/application/Webhook/WebhookApplicationModel.d.ts +0 -54
- package/sdk/application/Webhook/WebhookApplicationModel.js +0 -48
- package/sdk/application/Webhook/WebhookApplicationValidator.d.ts +0 -16
- package/sdk/application/Webhook/WebhookApplicationValidator.js +0 -19
- package/sdk/common/Clickstream.d.ts +0 -1
- package/sdk/common/Clickstream.js +0 -464
|
@@ -1,28 +1,6 @@
|
|
|
1
1
|
export = ConfigurationPlatformModel;
|
|
2
|
-
/**
|
|
3
|
-
* @typedef CurrencyExchangeResponseV2
|
|
4
|
-
* @property {string} base - The 3-letter ISO 4217 code representing the base currency.
|
|
5
|
-
* @property {string} base_currency_name - The name of the base currency.
|
|
6
|
-
* @property {number} ttl_seconds - Time in seconds for which the exchange rates
|
|
7
|
-
* are valid.
|
|
8
|
-
* @property {CurrencyExchangeItem[]} items - List of exchange rates and currency details.
|
|
9
|
-
* @property {number} total - Total number of currency exchange items.
|
|
10
|
-
*/
|
|
11
|
-
/**
|
|
12
|
-
* @typedef CurrencyExchangeItem
|
|
13
|
-
* @property {string} currency_code - 3-letter ISO 4217 exchange currency code.
|
|
14
|
-
* @property {string} name - Name of the exchange currency
|
|
15
|
-
* @property {number} rate - Exchange rate of the currency with respect to the
|
|
16
|
-
* base currency.
|
|
17
|
-
* @property {string} country_code - ISO 3166 country code.
|
|
18
|
-
* @property {string} country_name - Name of the country using this currency.
|
|
19
|
-
* @property {string} subunit - The name of the subunit for the currency.
|
|
20
|
-
* @property {number} decimal_digits - Number of decimal digits the currency supports.
|
|
21
|
-
* @property {string} symbol - The symbol of the currency.
|
|
22
|
-
*/
|
|
23
2
|
/**
|
|
24
3
|
* @typedef ApplicationInventory
|
|
25
|
-
* @property {SearchConfig} [search]
|
|
26
4
|
* @property {AppInventoryConfig} [inventory]
|
|
27
5
|
* @property {AuthenticationConfig} [authentication]
|
|
28
6
|
* @property {ArticleAssignmentConfig} [article_assignment]
|
|
@@ -55,22 +33,6 @@ export = ConfigurationPlatformModel;
|
|
|
55
33
|
* @typedef PiiMasking
|
|
56
34
|
* @property {boolean} [enabled]
|
|
57
35
|
*/
|
|
58
|
-
/**
|
|
59
|
-
* @typedef FstIdentification
|
|
60
|
-
* @property {boolean} [enabled] - Indicates whether FST identification is
|
|
61
|
-
* enabled for the application.
|
|
62
|
-
*/
|
|
63
|
-
/**
|
|
64
|
-
* @typedef QuerySuggestions
|
|
65
|
-
* @property {boolean} [enabled] - Indicates whether query suggestions are enabled.
|
|
66
|
-
* @property {number} [max_limit] - Specifies the maximum number of query
|
|
67
|
-
* suggestions that can be returned.
|
|
68
|
-
*/
|
|
69
|
-
/**
|
|
70
|
-
* @typedef SearchConfig
|
|
71
|
-
* @property {FstIdentification} [fst_identification]
|
|
72
|
-
* @property {QuerySuggestions} [query_suggestions]
|
|
73
|
-
*/
|
|
74
36
|
/**
|
|
75
37
|
* @typedef AppInventoryConfig
|
|
76
38
|
* @property {InventoryBrand} [brand]
|
|
@@ -89,6 +51,10 @@ export = ConfigurationPlatformModel;
|
|
|
89
51
|
* @property {Object[]} [company_store] - List of selling locations whose
|
|
90
52
|
* inventory is available to the sales channel for displaying on the website
|
|
91
53
|
* @property {number} [company_id]
|
|
54
|
+
* @property {boolean} [enable_zone_overlapping] - Power product listing with
|
|
55
|
+
* overlapping zones
|
|
56
|
+
* @property {boolean} [sort_popular_first] - Give preference to popularity over
|
|
57
|
+
* score in product listing sort
|
|
92
58
|
*/
|
|
93
59
|
/**
|
|
94
60
|
* @typedef InventoryBrand
|
|
@@ -257,7 +223,6 @@ export = ConfigurationPlatformModel;
|
|
|
257
223
|
*/
|
|
258
224
|
/**
|
|
259
225
|
* @typedef AppInventoryPartialUpdate
|
|
260
|
-
* @property {SearchConfig} [search]
|
|
261
226
|
* @property {RewardPointsConfig} [reward_points]
|
|
262
227
|
* @property {AppCartConfig} [cart]
|
|
263
228
|
* @property {AppPaymentConfig} [payment]
|
|
@@ -272,24 +237,24 @@ export = ConfigurationPlatformModel;
|
|
|
272
237
|
* @property {number} [company_id] - Numeric ID allotted to a business account
|
|
273
238
|
*/
|
|
274
239
|
/**
|
|
275
|
-
* @typedef
|
|
240
|
+
* @typedef CompanyByBrandsRequest
|
|
276
241
|
* @property {number} brands - Brand UID
|
|
277
242
|
* @property {string} [search_text] - A search field for finding a company by its name
|
|
278
243
|
*/
|
|
279
244
|
/**
|
|
280
|
-
* @typedef
|
|
245
|
+
* @typedef CompanyByBrandsResponse
|
|
281
246
|
* @property {BrandCompanyInfo[]} [items]
|
|
282
247
|
* @property {Page} [page]
|
|
283
248
|
*/
|
|
284
249
|
/**
|
|
285
|
-
* @typedef
|
|
250
|
+
* @typedef StoreByBrandsRequest
|
|
286
251
|
* @property {number} [company_id] - Current company ID for current company
|
|
287
252
|
* stores only. Don't send in case cross-selling (franchise) is enabled.
|
|
288
253
|
* @property {number} brands - Brand UID
|
|
289
254
|
* @property {string} [search_text] - Search store by its name or store code
|
|
290
255
|
*/
|
|
291
256
|
/**
|
|
292
|
-
* @typedef
|
|
257
|
+
* @typedef StoreByBrandsResponse
|
|
293
258
|
* @property {BrandStoreInfo[]} [items]
|
|
294
259
|
* @property {Page} [page]
|
|
295
260
|
*/
|
|
@@ -314,11 +279,11 @@ export = ConfigurationPlatformModel;
|
|
|
314
279
|
* portrait banner
|
|
315
280
|
*/
|
|
316
281
|
/**
|
|
317
|
-
* @typedef
|
|
282
|
+
* @typedef BrandsByCompanyResponse
|
|
318
283
|
* @property {CompanyBrandInfo[]} [brands]
|
|
319
284
|
*/
|
|
320
285
|
/**
|
|
321
|
-
* @typedef
|
|
286
|
+
* @typedef ValidationFailedResponse
|
|
322
287
|
* @property {string} [message] - Response message for failed validation
|
|
323
288
|
*/
|
|
324
289
|
/**
|
|
@@ -345,18 +310,18 @@ export = ConfigurationPlatformModel;
|
|
|
345
310
|
* amount pan card number is expected from customer for order
|
|
346
311
|
*/
|
|
347
312
|
/**
|
|
348
|
-
* @typedef
|
|
313
|
+
* @typedef CreateApplicationRequest
|
|
349
314
|
* @property {App} [app]
|
|
350
315
|
* @property {ApplicationInventory} [configuration]
|
|
351
316
|
* @property {AppDomain} [domain]
|
|
352
317
|
*/
|
|
353
318
|
/**
|
|
354
|
-
* @typedef
|
|
319
|
+
* @typedef CreateAppResponse
|
|
355
320
|
* @property {Application} [app]
|
|
356
321
|
* @property {ApplicationInventory} [configuration]
|
|
357
322
|
*/
|
|
358
323
|
/**
|
|
359
|
-
* @typedef
|
|
324
|
+
* @typedef ApplicationsResponse
|
|
360
325
|
* @property {Application[]} [items]
|
|
361
326
|
* @property {Page} [page]
|
|
362
327
|
*/
|
|
@@ -390,7 +355,7 @@ export = ConfigurationPlatformModel;
|
|
|
390
355
|
* @property {string} [secure_url] - URL where the splash image is hosted
|
|
391
356
|
*/
|
|
392
357
|
/**
|
|
393
|
-
* @typedef
|
|
358
|
+
* @typedef MobileAppConfigRequest
|
|
394
359
|
* @property {string} [app_name] - Name of the mobile app
|
|
395
360
|
* @property {LandingImage} [landing_image]
|
|
396
361
|
* @property {SplashImage} [splash_image]
|
|
@@ -456,7 +421,7 @@ export = ConfigurationPlatformModel;
|
|
|
456
421
|
* @property {string[]} [txt_records]
|
|
457
422
|
*/
|
|
458
423
|
/**
|
|
459
|
-
* @typedef
|
|
424
|
+
* @typedef DomainAddRequest
|
|
460
425
|
* @property {DomainAdd} [domain]
|
|
461
426
|
*/
|
|
462
427
|
/**
|
|
@@ -473,7 +438,7 @@ export = ConfigurationPlatformModel;
|
|
|
473
438
|
* @property {string} [message]
|
|
474
439
|
*/
|
|
475
440
|
/**
|
|
476
|
-
* @typedef
|
|
441
|
+
* @typedef DomainsResponse
|
|
477
442
|
* @property {Domain[]} [domains]
|
|
478
443
|
*/
|
|
479
444
|
/**
|
|
@@ -489,13 +454,13 @@ export = ConfigurationPlatformModel;
|
|
|
489
454
|
* domain (short URL e.g. bit.ly)
|
|
490
455
|
*/
|
|
491
456
|
/**
|
|
492
|
-
* @typedef
|
|
457
|
+
* @typedef UpdateDomainTypeRequest
|
|
493
458
|
* @property {UpdateDomain} [domain]
|
|
494
459
|
* @property {string} [action] - Shows domain is made primary domain for the
|
|
495
460
|
* sales channel or shorlink is created for the sales channel domain
|
|
496
461
|
*/
|
|
497
462
|
/**
|
|
498
|
-
* @typedef
|
|
463
|
+
* @typedef DomainStatusRequest
|
|
499
464
|
* @property {string} [domain_url] - URL of the domain, e.g. uniket.hostx0.de
|
|
500
465
|
*/
|
|
501
466
|
/**
|
|
@@ -505,16 +470,15 @@ export = ConfigurationPlatformModel;
|
|
|
505
470
|
* domain are correctly propagating via DNS servers
|
|
506
471
|
*/
|
|
507
472
|
/**
|
|
508
|
-
* @typedef
|
|
473
|
+
* @typedef DomainStatusResponse
|
|
509
474
|
* @property {boolean} [connected] - Check if domain is live and mapped to
|
|
510
475
|
* appropriate IP of Fynd Servers
|
|
511
476
|
* @property {DomainStatus[]} [status]
|
|
512
477
|
*/
|
|
513
478
|
/**
|
|
514
|
-
* @typedef
|
|
479
|
+
* @typedef DomainSuggestionsRequest
|
|
515
480
|
* @property {string} [domain_url] - Domain url
|
|
516
|
-
* @property {boolean} [
|
|
517
|
-
* Fynd domains
|
|
481
|
+
* @property {boolean} [custom] - Get suggestions for custom domains or Fynd domains
|
|
518
482
|
*/
|
|
519
483
|
/**
|
|
520
484
|
* @typedef DomainSuggestion
|
|
@@ -527,11 +491,11 @@ export = ConfigurationPlatformModel;
|
|
|
527
491
|
* @property {string} [currency] - Custom domain currency. Not present for Fynd domains.
|
|
528
492
|
*/
|
|
529
493
|
/**
|
|
530
|
-
* @typedef
|
|
494
|
+
* @typedef DomainSuggestionsResponse
|
|
531
495
|
* @property {DomainSuggestion[]} [domains] - Domain URL
|
|
532
496
|
*/
|
|
533
497
|
/**
|
|
534
|
-
* @typedef
|
|
498
|
+
* @typedef SuccessMessageResponse
|
|
535
499
|
* @property {boolean} [success] - Shows whether domain was deleted successfully
|
|
536
500
|
* @property {string} [message] - Success message shown to the user (in a string format)
|
|
537
501
|
*/
|
|
@@ -550,7 +514,7 @@ export = ConfigurationPlatformModel;
|
|
|
550
514
|
* @property {string} [name] - Domain URL of current sales channel, e.g. zenz.com
|
|
551
515
|
*/
|
|
552
516
|
/**
|
|
553
|
-
* @typedef
|
|
517
|
+
* @typedef CompaniesResponse
|
|
554
518
|
* @property {AppInventoryCompanies[]} [items]
|
|
555
519
|
* @property {Page} [page]
|
|
556
520
|
*/
|
|
@@ -562,7 +526,7 @@ export = ConfigurationPlatformModel;
|
|
|
562
526
|
* franchisee, distributor, etc.
|
|
563
527
|
*/
|
|
564
528
|
/**
|
|
565
|
-
* @typedef
|
|
529
|
+
* @typedef StoresResponse
|
|
566
530
|
* @property {AppInventoryStores[]} [items]
|
|
567
531
|
* @property {Page} [page]
|
|
568
532
|
*/
|
|
@@ -587,7 +551,7 @@ export = ConfigurationPlatformModel;
|
|
|
587
551
|
* @property {Object} [integration_type]
|
|
588
552
|
*/
|
|
589
553
|
/**
|
|
590
|
-
* @typedef
|
|
554
|
+
* @typedef FilterOrderingStoreRequest
|
|
591
555
|
* @property {boolean} [all_stores] - Allow all stores from the ordering stores
|
|
592
556
|
* @property {number[]} [deployed_stores]
|
|
593
557
|
* @property {string} [q] - Store code or name of the ordering store
|
|
@@ -611,7 +575,7 @@ export = ConfigurationPlatformModel;
|
|
|
611
575
|
* @property {DeploymentMeta} [deployment_meta]
|
|
612
576
|
*/
|
|
613
577
|
/**
|
|
614
|
-
* @typedef
|
|
578
|
+
* @typedef OrderingStoreSelectRequest
|
|
615
579
|
* @property {OrderingStoreSelect} ordering_store
|
|
616
580
|
*/
|
|
617
581
|
/**
|
|
@@ -640,7 +604,7 @@ export = ConfigurationPlatformModel;
|
|
|
640
604
|
* @property {Page} [page]
|
|
641
605
|
*/
|
|
642
606
|
/**
|
|
643
|
-
* @typedef
|
|
607
|
+
* @typedef OptedApplicationResponse
|
|
644
608
|
* @property {string} [name] - Name of the other seller's sales channel
|
|
645
609
|
* @property {string} [description] - Basic details about the other seller's sales channel
|
|
646
610
|
* @property {string} [_id] - The unique identifier (24-digit Mongo Object ID)
|
|
@@ -691,7 +655,7 @@ export = ConfigurationPlatformModel;
|
|
|
691
655
|
* of other seller's application
|
|
692
656
|
*/
|
|
693
657
|
/**
|
|
694
|
-
* @typedef
|
|
658
|
+
* @typedef TokenResponse
|
|
695
659
|
* @property {Tokens} [tokens]
|
|
696
660
|
* @property {string} [_id] - The unique identifier (24-digit Mongo Object ID)
|
|
697
661
|
* of the token
|
|
@@ -990,11 +954,11 @@ export = ConfigurationPlatformModel;
|
|
|
990
954
|
* value is false.
|
|
991
955
|
*/
|
|
992
956
|
/**
|
|
993
|
-
* @typedef
|
|
957
|
+
* @typedef AppFeatureRequest
|
|
994
958
|
* @property {AppFeature} [feature]
|
|
995
959
|
*/
|
|
996
960
|
/**
|
|
997
|
-
* @typedef
|
|
961
|
+
* @typedef AppFeatureResponse
|
|
998
962
|
* @property {AppFeature} [feature]
|
|
999
963
|
*/
|
|
1000
964
|
/**
|
|
@@ -1143,7 +1107,7 @@ export = ConfigurationPlatformModel;
|
|
|
1143
1107
|
* @property {string} [created_at] - ISO 8601 timestamp of when token created
|
|
1144
1108
|
*/
|
|
1145
1109
|
/**
|
|
1146
|
-
* @typedef
|
|
1110
|
+
* @typedef InvalidPayloadRequest
|
|
1147
1111
|
* @property {string} [message] - Error message when request body payload is improper
|
|
1148
1112
|
* @property {boolean} [success] - Flag for required not successfull.
|
|
1149
1113
|
*/
|
|
@@ -1309,11 +1273,11 @@ export = ConfigurationPlatformModel;
|
|
|
1309
1273
|
* @property {number} [company_id]
|
|
1310
1274
|
*/
|
|
1311
1275
|
/**
|
|
1312
|
-
* @typedef
|
|
1276
|
+
* @typedef CurrenciesResponse
|
|
1313
1277
|
* @property {Currency[]} [items]
|
|
1314
1278
|
*/
|
|
1315
1279
|
/**
|
|
1316
|
-
* @typedef
|
|
1280
|
+
* @typedef AppCurrencyResponse
|
|
1317
1281
|
* @property {string} [_id] - The unique identifier (24-digit Mongo Object ID)
|
|
1318
1282
|
* of the currency configuration supported by the application
|
|
1319
1283
|
* @property {string} [application] - Alphanumeric ID allotted to an application
|
|
@@ -1374,90 +1338,18 @@ export = ConfigurationPlatformModel;
|
|
|
1374
1338
|
* value is zero.
|
|
1375
1339
|
*/
|
|
1376
1340
|
/**
|
|
1377
|
-
* @typedef
|
|
1341
|
+
* @typedef OrderingStoresResponse
|
|
1378
1342
|
* @property {Page} [page]
|
|
1379
1343
|
* @property {OrderingStore[]} [items]
|
|
1380
1344
|
*/
|
|
1381
|
-
/**
|
|
1382
|
-
* @typedef ValidationErrors
|
|
1383
|
-
* @property {ValidationError[]} errors
|
|
1384
|
-
*/
|
|
1385
|
-
/**
|
|
1386
|
-
* @typedef ValidationError
|
|
1387
|
-
* @property {string} message - A brief description of the error encountered.
|
|
1388
|
-
* @property {string} field - The field in the request that caused the error.
|
|
1389
|
-
*/
|
|
1390
1345
|
declare class ConfigurationPlatformModel {
|
|
1391
1346
|
}
|
|
1392
1347
|
declare namespace ConfigurationPlatformModel {
|
|
1393
|
-
export {
|
|
1348
|
+
export { ApplicationInventory, PiiMasking, AppInventoryConfig, InventoryBrand, InventoryStore, AppStoreRules, InventoryCategory, InventoryPrice, InventoryDiscount, AuthenticationConfig, ArticleAssignmentConfig, ArticleAssignmentRules, StorePriority, AppCartConfig, InternationalDeliveryCharges, DeliveryCharges, Charges, AppPaymentConfig, CallbackUrl, Methods, PaymentModeConfig, PaymentSelectionLock, AppOrderConfig, AppLogisticsConfig, LoyaltyPointsConfig, AppInventoryPartialUpdate, BrandCompanyInfo, CompanyByBrandsRequest, CompanyByBrandsResponse, StoreByBrandsRequest, StoreByBrandsResponse, BrandStoreInfo, CompanyBrandInfo, BrandsByCompanyResponse, ValidationFailedResponse, NotFound, CommunicationConfig, CommsConfig, PanCardConfig, CreateApplicationRequest, CreateAppResponse, ApplicationsResponse, MobileAppConfiguration, LandingImage, SplashImage, MobileAppConfigRequest, BuildVersionHistory, BuildVersion, AppSupportedCurrency, DefaultCurrency, DomainAdd, DomainAddRequest, Domain, DomainsResponse, UpdateDomain, UpdateDomainTypeRequest, DomainStatusRequest, DomainStatus, DomainStatusResponse, DomainSuggestionsRequest, DomainSuggestion, DomainSuggestionsResponse, SuccessMessageResponse, App, AppDomain, CompaniesResponse, AppInventoryCompanies, StoresResponse, AppInventoryStores, FilterOrderingStoreRequest, DeploymentMeta, OrderingStoreConfig, OrderingStoreSelectRequest, OrderingStoreSelect, OtherSellerCompany, OtherSellerApplication, OtherSellerApplications, OptedApplicationResponse, OptedCompany, OptedInventory, OptType, OptedStore, OptOutInventory, TokenResponse, Tokens, Firebase, Credentials, Ios, Android, Moengage, MoengageCredentials, Segment, SegmentCredentials, Gtm, GtmCredentials, Freshchat, FreshchatCredentials, Safetynet, SafetynetCredentials, FyndRewards, FyndRewardsCredentials, GoogleMap, GoogleMapCredentials, RewardPointsConfig, Credit, Debit, ProductDetailFeature, LaunchPage, LandingPageFeature, ListingPageFeature, RegistrationPageFeature, AppFeature, HomePageFeature, CommonFeature, InternationalShipping, CommunicationOptinDialogFeature, DeploymentStoreSelectionFeature, ListingPriceFeature, CurrencyFeature, RevenueEngineFeature, FeedbackFeature, CompareProductsFeature, CartFeature, QrFeature, PcrFeature, OrderFeature, AppFeatureRequest, AppFeatureResponse, Currency, ApplicationWebsite, ApplicationCors, ApplicationAuth, ApplicationRedirections, ApplicationMeta, SecureUrl, Application, ApplicationById, TokenSchemaID, TokenSchema, InvalidPayloadRequest, Page, ApplicationInformation, InformationAddress, InformationPhone, InformationLoc, InformationSupport, InformationSupportPhone, InformationSupportEmail, SocialLinks, FacebookLink, InstagramLink, TwitterLink, PinterestLink, GooglePlusLink, YoutubeLink, LinkedInLink, VimeoLink, BlogLink, Links, BusinessHighlights, ApplicationDetail, CurrenciesResponse, AppCurrencyResponse, StoreLatLong, OptedStoreAddress, OrderingStore, OrderingStores, OrderingStoresResponse };
|
|
1394
1349
|
}
|
|
1395
|
-
/** @returns {CurrencyExchangeResponseV2} */
|
|
1396
|
-
declare function CurrencyExchangeResponseV2(): CurrencyExchangeResponseV2;
|
|
1397
|
-
type CurrencyExchangeResponseV2 = {
|
|
1398
|
-
/**
|
|
1399
|
-
* - The 3-letter ISO 4217 code representing the base currency.
|
|
1400
|
-
*/
|
|
1401
|
-
base: string;
|
|
1402
|
-
/**
|
|
1403
|
-
* - The name of the base currency.
|
|
1404
|
-
*/
|
|
1405
|
-
base_currency_name: string;
|
|
1406
|
-
/**
|
|
1407
|
-
* - Time in seconds for which the exchange rates
|
|
1408
|
-
* are valid.
|
|
1409
|
-
*/
|
|
1410
|
-
ttl_seconds: number;
|
|
1411
|
-
/**
|
|
1412
|
-
* - List of exchange rates and currency details.
|
|
1413
|
-
*/
|
|
1414
|
-
items: CurrencyExchangeItem[];
|
|
1415
|
-
/**
|
|
1416
|
-
* - Total number of currency exchange items.
|
|
1417
|
-
*/
|
|
1418
|
-
total: number;
|
|
1419
|
-
};
|
|
1420
|
-
/** @returns {CurrencyExchangeItem} */
|
|
1421
|
-
declare function CurrencyExchangeItem(): CurrencyExchangeItem;
|
|
1422
|
-
type CurrencyExchangeItem = {
|
|
1423
|
-
/**
|
|
1424
|
-
* - 3-letter ISO 4217 exchange currency code.
|
|
1425
|
-
*/
|
|
1426
|
-
currency_code: string;
|
|
1427
|
-
/**
|
|
1428
|
-
* - Name of the exchange currency
|
|
1429
|
-
*/
|
|
1430
|
-
name: string;
|
|
1431
|
-
/**
|
|
1432
|
-
* - Exchange rate of the currency with respect to the
|
|
1433
|
-
* base currency.
|
|
1434
|
-
*/
|
|
1435
|
-
rate: number;
|
|
1436
|
-
/**
|
|
1437
|
-
* - ISO 3166 country code.
|
|
1438
|
-
*/
|
|
1439
|
-
country_code: string;
|
|
1440
|
-
/**
|
|
1441
|
-
* - Name of the country using this currency.
|
|
1442
|
-
*/
|
|
1443
|
-
country_name: string;
|
|
1444
|
-
/**
|
|
1445
|
-
* - The name of the subunit for the currency.
|
|
1446
|
-
*/
|
|
1447
|
-
subunit: string;
|
|
1448
|
-
/**
|
|
1449
|
-
* - Number of decimal digits the currency supports.
|
|
1450
|
-
*/
|
|
1451
|
-
decimal_digits: number;
|
|
1452
|
-
/**
|
|
1453
|
-
* - The symbol of the currency.
|
|
1454
|
-
*/
|
|
1455
|
-
symbol: string;
|
|
1456
|
-
};
|
|
1457
1350
|
/** @returns {ApplicationInventory} */
|
|
1458
1351
|
declare function ApplicationInventory(): ApplicationInventory;
|
|
1459
1352
|
type ApplicationInventory = {
|
|
1460
|
-
search?: SearchConfig;
|
|
1461
1353
|
inventory?: AppInventoryConfig;
|
|
1462
1354
|
authentication?: AuthenticationConfig;
|
|
1463
1355
|
article_assignment?: ArticleAssignmentConfig;
|
|
@@ -1512,34 +1404,6 @@ declare function PiiMasking(): PiiMasking;
|
|
|
1512
1404
|
type PiiMasking = {
|
|
1513
1405
|
enabled?: boolean;
|
|
1514
1406
|
};
|
|
1515
|
-
/** @returns {FstIdentification} */
|
|
1516
|
-
declare function FstIdentification(): FstIdentification;
|
|
1517
|
-
type FstIdentification = {
|
|
1518
|
-
/**
|
|
1519
|
-
* - Indicates whether FST identification is
|
|
1520
|
-
* enabled for the application.
|
|
1521
|
-
*/
|
|
1522
|
-
enabled?: boolean;
|
|
1523
|
-
};
|
|
1524
|
-
/** @returns {QuerySuggestions} */
|
|
1525
|
-
declare function QuerySuggestions(): QuerySuggestions;
|
|
1526
|
-
type QuerySuggestions = {
|
|
1527
|
-
/**
|
|
1528
|
-
* - Indicates whether query suggestions are enabled.
|
|
1529
|
-
*/
|
|
1530
|
-
enabled?: boolean;
|
|
1531
|
-
/**
|
|
1532
|
-
* - Specifies the maximum number of query
|
|
1533
|
-
* suggestions that can be returned.
|
|
1534
|
-
*/
|
|
1535
|
-
max_limit?: number;
|
|
1536
|
-
};
|
|
1537
|
-
/** @returns {SearchConfig} */
|
|
1538
|
-
declare function SearchConfig(): SearchConfig;
|
|
1539
|
-
type SearchConfig = {
|
|
1540
|
-
fst_identification?: FstIdentification;
|
|
1541
|
-
query_suggestions?: QuerySuggestions;
|
|
1542
|
-
};
|
|
1543
1407
|
/** @returns {AppInventoryConfig} */
|
|
1544
1408
|
declare function AppInventoryConfig(): AppInventoryConfig;
|
|
1545
1409
|
type AppInventoryConfig = {
|
|
@@ -1574,6 +1438,16 @@ type AppInventoryConfig = {
|
|
|
1574
1438
|
*/
|
|
1575
1439
|
company_store?: any[];
|
|
1576
1440
|
company_id?: number;
|
|
1441
|
+
/**
|
|
1442
|
+
* - Power product listing with
|
|
1443
|
+
* overlapping zones
|
|
1444
|
+
*/
|
|
1445
|
+
enable_zone_overlapping?: boolean;
|
|
1446
|
+
/**
|
|
1447
|
+
* - Give preference to popularity over
|
|
1448
|
+
* score in product listing sort
|
|
1449
|
+
*/
|
|
1450
|
+
sort_popular_first?: boolean;
|
|
1577
1451
|
};
|
|
1578
1452
|
/** @returns {InventoryBrand} */
|
|
1579
1453
|
declare function InventoryBrand(): InventoryBrand;
|
|
@@ -1897,7 +1771,6 @@ type LoyaltyPointsConfig = {
|
|
|
1897
1771
|
/** @returns {AppInventoryPartialUpdate} */
|
|
1898
1772
|
declare function AppInventoryPartialUpdate(): AppInventoryPartialUpdate;
|
|
1899
1773
|
type AppInventoryPartialUpdate = {
|
|
1900
|
-
search?: SearchConfig;
|
|
1901
1774
|
reward_points?: RewardPointsConfig;
|
|
1902
1775
|
cart?: AppCartConfig;
|
|
1903
1776
|
payment?: AppPaymentConfig;
|
|
@@ -1921,9 +1794,9 @@ type BrandCompanyInfo = {
|
|
|
1921
1794
|
*/
|
|
1922
1795
|
company_id?: number;
|
|
1923
1796
|
};
|
|
1924
|
-
/** @returns {
|
|
1925
|
-
declare function
|
|
1926
|
-
type
|
|
1797
|
+
/** @returns {CompanyByBrandsRequest} */
|
|
1798
|
+
declare function CompanyByBrandsRequest(): CompanyByBrandsRequest;
|
|
1799
|
+
type CompanyByBrandsRequest = {
|
|
1927
1800
|
/**
|
|
1928
1801
|
* - Brand UID
|
|
1929
1802
|
*/
|
|
@@ -1933,15 +1806,15 @@ type CompanyByBrandsRequestSchema = {
|
|
|
1933
1806
|
*/
|
|
1934
1807
|
search_text?: string;
|
|
1935
1808
|
};
|
|
1936
|
-
/** @returns {
|
|
1937
|
-
declare function
|
|
1938
|
-
type
|
|
1809
|
+
/** @returns {CompanyByBrandsResponse} */
|
|
1810
|
+
declare function CompanyByBrandsResponse(): CompanyByBrandsResponse;
|
|
1811
|
+
type CompanyByBrandsResponse = {
|
|
1939
1812
|
items?: BrandCompanyInfo[];
|
|
1940
1813
|
page?: Page;
|
|
1941
1814
|
};
|
|
1942
|
-
/** @returns {
|
|
1943
|
-
declare function
|
|
1944
|
-
type
|
|
1815
|
+
/** @returns {StoreByBrandsRequest} */
|
|
1816
|
+
declare function StoreByBrandsRequest(): StoreByBrandsRequest;
|
|
1817
|
+
type StoreByBrandsRequest = {
|
|
1945
1818
|
/**
|
|
1946
1819
|
* - Current company ID for current company
|
|
1947
1820
|
* stores only. Don't send in case cross-selling (franchise) is enabled.
|
|
@@ -1956,9 +1829,9 @@ type StoreByBrandsRequestSchema = {
|
|
|
1956
1829
|
*/
|
|
1957
1830
|
search_text?: string;
|
|
1958
1831
|
};
|
|
1959
|
-
/** @returns {
|
|
1960
|
-
declare function
|
|
1961
|
-
type
|
|
1832
|
+
/** @returns {StoreByBrandsResponse} */
|
|
1833
|
+
declare function StoreByBrandsResponse(): StoreByBrandsResponse;
|
|
1834
|
+
type StoreByBrandsResponse = {
|
|
1962
1835
|
items?: BrandStoreInfo[];
|
|
1963
1836
|
page?: Page;
|
|
1964
1837
|
};
|
|
@@ -2011,14 +1884,14 @@ type CompanyBrandInfo = {
|
|
|
2011
1884
|
*/
|
|
2012
1885
|
brand_banner_portrait_url?: string;
|
|
2013
1886
|
};
|
|
2014
|
-
/** @returns {
|
|
2015
|
-
declare function
|
|
2016
|
-
type
|
|
1887
|
+
/** @returns {BrandsByCompanyResponse} */
|
|
1888
|
+
declare function BrandsByCompanyResponse(): BrandsByCompanyResponse;
|
|
1889
|
+
type BrandsByCompanyResponse = {
|
|
2017
1890
|
brands?: CompanyBrandInfo[];
|
|
2018
1891
|
};
|
|
2019
|
-
/** @returns {
|
|
2020
|
-
declare function
|
|
2021
|
-
type
|
|
1892
|
+
/** @returns {ValidationFailedResponse} */
|
|
1893
|
+
declare function ValidationFailedResponse(): ValidationFailedResponse;
|
|
1894
|
+
type ValidationFailedResponse = {
|
|
2022
1895
|
/**
|
|
2023
1896
|
* - Response message for failed validation
|
|
2024
1897
|
*/
|
|
@@ -2069,22 +1942,22 @@ type PanCardConfig = {
|
|
|
2069
1942
|
*/
|
|
2070
1943
|
online_threshold_amount?: number;
|
|
2071
1944
|
};
|
|
2072
|
-
/** @returns {
|
|
2073
|
-
declare function
|
|
2074
|
-
type
|
|
1945
|
+
/** @returns {CreateApplicationRequest} */
|
|
1946
|
+
declare function CreateApplicationRequest(): CreateApplicationRequest;
|
|
1947
|
+
type CreateApplicationRequest = {
|
|
2075
1948
|
app?: App;
|
|
2076
1949
|
configuration?: ApplicationInventory;
|
|
2077
1950
|
domain?: AppDomain;
|
|
2078
1951
|
};
|
|
2079
|
-
/** @returns {
|
|
2080
|
-
declare function
|
|
2081
|
-
type
|
|
1952
|
+
/** @returns {CreateAppResponse} */
|
|
1953
|
+
declare function CreateAppResponse(): CreateAppResponse;
|
|
1954
|
+
type CreateAppResponse = {
|
|
2082
1955
|
app?: Application;
|
|
2083
1956
|
configuration?: ApplicationInventory;
|
|
2084
1957
|
};
|
|
2085
|
-
/** @returns {
|
|
2086
|
-
declare function
|
|
2087
|
-
type
|
|
1958
|
+
/** @returns {ApplicationsResponse} */
|
|
1959
|
+
declare function ApplicationsResponse(): ApplicationsResponse;
|
|
1960
|
+
type ApplicationsResponse = {
|
|
2088
1961
|
items?: Application[];
|
|
2089
1962
|
page?: Page;
|
|
2090
1963
|
};
|
|
@@ -2159,9 +2032,9 @@ type SplashImage = {
|
|
|
2159
2032
|
*/
|
|
2160
2033
|
secure_url?: string;
|
|
2161
2034
|
};
|
|
2162
|
-
/** @returns {
|
|
2163
|
-
declare function
|
|
2164
|
-
type
|
|
2035
|
+
/** @returns {MobileAppConfigRequest} */
|
|
2036
|
+
declare function MobileAppConfigRequest(): MobileAppConfigRequest;
|
|
2037
|
+
type MobileAppConfigRequest = {
|
|
2165
2038
|
/**
|
|
2166
2039
|
* - Name of the mobile app
|
|
2167
2040
|
*/
|
|
@@ -2303,9 +2176,9 @@ type DomainAdd = {
|
|
|
2303
2176
|
message?: string;
|
|
2304
2177
|
txt_records?: string[];
|
|
2305
2178
|
};
|
|
2306
|
-
/** @returns {
|
|
2307
|
-
declare function
|
|
2308
|
-
type
|
|
2179
|
+
/** @returns {DomainAddRequest} */
|
|
2180
|
+
declare function DomainAddRequest(): DomainAddRequest;
|
|
2181
|
+
type DomainAddRequest = {
|
|
2309
2182
|
domain?: DomainAdd;
|
|
2310
2183
|
};
|
|
2311
2184
|
/** @returns {Domain} */
|
|
@@ -2340,9 +2213,9 @@ type Domain = {
|
|
|
2340
2213
|
is_predefined?: boolean;
|
|
2341
2214
|
message?: string;
|
|
2342
2215
|
};
|
|
2343
|
-
/** @returns {
|
|
2344
|
-
declare function
|
|
2345
|
-
type
|
|
2216
|
+
/** @returns {DomainsResponse} */
|
|
2217
|
+
declare function DomainsResponse(): DomainsResponse;
|
|
2218
|
+
type DomainsResponse = {
|
|
2346
2219
|
domains?: Domain[];
|
|
2347
2220
|
};
|
|
2348
2221
|
/** @returns {UpdateDomain} */
|
|
@@ -2373,9 +2246,9 @@ type UpdateDomain = {
|
|
|
2373
2246
|
*/
|
|
2374
2247
|
is_shortlink?: boolean;
|
|
2375
2248
|
};
|
|
2376
|
-
/** @returns {
|
|
2377
|
-
declare function
|
|
2378
|
-
type
|
|
2249
|
+
/** @returns {UpdateDomainTypeRequest} */
|
|
2250
|
+
declare function UpdateDomainTypeRequest(): UpdateDomainTypeRequest;
|
|
2251
|
+
type UpdateDomainTypeRequest = {
|
|
2379
2252
|
domain?: UpdateDomain;
|
|
2380
2253
|
/**
|
|
2381
2254
|
* - Shows domain is made primary domain for the
|
|
@@ -2383,9 +2256,9 @@ type UpdateDomainTypeRequestSchema = {
|
|
|
2383
2256
|
*/
|
|
2384
2257
|
action?: string;
|
|
2385
2258
|
};
|
|
2386
|
-
/** @returns {
|
|
2387
|
-
declare function
|
|
2388
|
-
type
|
|
2259
|
+
/** @returns {DomainStatusRequest} */
|
|
2260
|
+
declare function DomainStatusRequest(): DomainStatusRequest;
|
|
2261
|
+
type DomainStatusRequest = {
|
|
2389
2262
|
/**
|
|
2390
2263
|
* - URL of the domain, e.g. uniket.hostx0.de
|
|
2391
2264
|
*/
|
|
@@ -2404,9 +2277,9 @@ type DomainStatus = {
|
|
|
2404
2277
|
*/
|
|
2405
2278
|
status?: boolean;
|
|
2406
2279
|
};
|
|
2407
|
-
/** @returns {
|
|
2408
|
-
declare function
|
|
2409
|
-
type
|
|
2280
|
+
/** @returns {DomainStatusResponse} */
|
|
2281
|
+
declare function DomainStatusResponse(): DomainStatusResponse;
|
|
2282
|
+
type DomainStatusResponse = {
|
|
2410
2283
|
/**
|
|
2411
2284
|
* - Check if domain is live and mapped to
|
|
2412
2285
|
* appropriate IP of Fynd Servers
|
|
@@ -2414,18 +2287,17 @@ type DomainStatusResponseSchema = {
|
|
|
2414
2287
|
connected?: boolean;
|
|
2415
2288
|
status?: DomainStatus[];
|
|
2416
2289
|
};
|
|
2417
|
-
/** @returns {
|
|
2418
|
-
declare function
|
|
2419
|
-
type
|
|
2290
|
+
/** @returns {DomainSuggestionsRequest} */
|
|
2291
|
+
declare function DomainSuggestionsRequest(): DomainSuggestionsRequest;
|
|
2292
|
+
type DomainSuggestionsRequest = {
|
|
2420
2293
|
/**
|
|
2421
2294
|
* - Domain url
|
|
2422
2295
|
*/
|
|
2423
2296
|
domain_url?: string;
|
|
2424
2297
|
/**
|
|
2425
|
-
* - Get suggestions for custom domains or
|
|
2426
|
-
* Fynd domains
|
|
2298
|
+
* - Get suggestions for custom domains or Fynd domains
|
|
2427
2299
|
*/
|
|
2428
|
-
|
|
2300
|
+
custom?: boolean;
|
|
2429
2301
|
};
|
|
2430
2302
|
/** @returns {DomainSuggestion} */
|
|
2431
2303
|
declare function DomainSuggestion(): DomainSuggestion;
|
|
@@ -2453,17 +2325,17 @@ type DomainSuggestion = {
|
|
|
2453
2325
|
*/
|
|
2454
2326
|
currency?: string;
|
|
2455
2327
|
};
|
|
2456
|
-
/** @returns {
|
|
2457
|
-
declare function
|
|
2458
|
-
type
|
|
2328
|
+
/** @returns {DomainSuggestionsResponse} */
|
|
2329
|
+
declare function DomainSuggestionsResponse(): DomainSuggestionsResponse;
|
|
2330
|
+
type DomainSuggestionsResponse = {
|
|
2459
2331
|
/**
|
|
2460
2332
|
* - Domain URL
|
|
2461
2333
|
*/
|
|
2462
2334
|
domains?: DomainSuggestion[];
|
|
2463
2335
|
};
|
|
2464
|
-
/** @returns {
|
|
2465
|
-
declare function
|
|
2466
|
-
type
|
|
2336
|
+
/** @returns {SuccessMessageResponse} */
|
|
2337
|
+
declare function SuccessMessageResponse(): SuccessMessageResponse;
|
|
2338
|
+
type SuccessMessageResponse = {
|
|
2467
2339
|
/**
|
|
2468
2340
|
* - Shows whether domain was deleted successfully
|
|
2469
2341
|
*/
|
|
@@ -2504,9 +2376,9 @@ type AppDomain = {
|
|
|
2504
2376
|
*/
|
|
2505
2377
|
name?: string;
|
|
2506
2378
|
};
|
|
2507
|
-
/** @returns {
|
|
2508
|
-
declare function
|
|
2509
|
-
type
|
|
2379
|
+
/** @returns {CompaniesResponse} */
|
|
2380
|
+
declare function CompaniesResponse(): CompaniesResponse;
|
|
2381
|
+
type CompaniesResponse = {
|
|
2510
2382
|
items?: AppInventoryCompanies[];
|
|
2511
2383
|
page?: Page;
|
|
2512
2384
|
};
|
|
@@ -2527,9 +2399,9 @@ type AppInventoryCompanies = {
|
|
|
2527
2399
|
*/
|
|
2528
2400
|
company_type?: string;
|
|
2529
2401
|
};
|
|
2530
|
-
/** @returns {
|
|
2531
|
-
declare function
|
|
2532
|
-
type
|
|
2402
|
+
/** @returns {StoresResponse} */
|
|
2403
|
+
declare function StoresResponse(): StoresResponse;
|
|
2404
|
+
type StoresResponse = {
|
|
2533
2405
|
items?: AppInventoryStores[];
|
|
2534
2406
|
page?: Page;
|
|
2535
2407
|
};
|
|
@@ -2578,9 +2450,9 @@ type AppInventoryStores = {
|
|
|
2578
2450
|
address?: any;
|
|
2579
2451
|
integration_type?: any;
|
|
2580
2452
|
};
|
|
2581
|
-
/** @returns {
|
|
2582
|
-
declare function
|
|
2583
|
-
type
|
|
2453
|
+
/** @returns {FilterOrderingStoreRequest} */
|
|
2454
|
+
declare function FilterOrderingStoreRequest(): FilterOrderingStoreRequest;
|
|
2455
|
+
type FilterOrderingStoreRequest = {
|
|
2584
2456
|
/**
|
|
2585
2457
|
* - Allow all stores from the ordering stores
|
|
2586
2458
|
*/
|
|
@@ -2626,9 +2498,9 @@ declare function OrderingStoreConfig(): OrderingStoreConfig;
|
|
|
2626
2498
|
type OrderingStoreConfig = {
|
|
2627
2499
|
deployment_meta?: DeploymentMeta;
|
|
2628
2500
|
};
|
|
2629
|
-
/** @returns {
|
|
2630
|
-
declare function
|
|
2631
|
-
type
|
|
2501
|
+
/** @returns {OrderingStoreSelectRequest} */
|
|
2502
|
+
declare function OrderingStoreSelectRequest(): OrderingStoreSelectRequest;
|
|
2503
|
+
type OrderingStoreSelectRequest = {
|
|
2632
2504
|
ordering_store: OrderingStoreSelect;
|
|
2633
2505
|
};
|
|
2634
2506
|
/** @returns {OrderingStoreSelect} */
|
|
@@ -2684,9 +2556,9 @@ type OtherSellerApplications = {
|
|
|
2684
2556
|
items?: OtherSellerApplication[];
|
|
2685
2557
|
page?: Page;
|
|
2686
2558
|
};
|
|
2687
|
-
/** @returns {
|
|
2688
|
-
declare function
|
|
2689
|
-
type
|
|
2559
|
+
/** @returns {OptedApplicationResponse} */
|
|
2560
|
+
declare function OptedApplicationResponse(): OptedApplicationResponse;
|
|
2561
|
+
type OptedApplicationResponse = {
|
|
2690
2562
|
/**
|
|
2691
2563
|
* - Name of the other seller's sales channel
|
|
2692
2564
|
*/
|
|
@@ -2798,9 +2670,9 @@ type OptOutInventory = {
|
|
|
2798
2670
|
*/
|
|
2799
2671
|
company: number[];
|
|
2800
2672
|
};
|
|
2801
|
-
/** @returns {
|
|
2802
|
-
declare function
|
|
2803
|
-
type
|
|
2673
|
+
/** @returns {TokenResponse} */
|
|
2674
|
+
declare function TokenResponse(): TokenResponse;
|
|
2675
|
+
type TokenResponse = {
|
|
2804
2676
|
tokens?: Tokens;
|
|
2805
2677
|
/**
|
|
2806
2678
|
* - The unique identifier (24-digit Mongo Object ID)
|
|
@@ -3362,14 +3234,14 @@ type OrderFeature = {
|
|
|
3362
3234
|
*/
|
|
3363
3235
|
buy_again?: boolean;
|
|
3364
3236
|
};
|
|
3365
|
-
/** @returns {
|
|
3366
|
-
declare function
|
|
3367
|
-
type
|
|
3237
|
+
/** @returns {AppFeatureRequest} */
|
|
3238
|
+
declare function AppFeatureRequest(): AppFeatureRequest;
|
|
3239
|
+
type AppFeatureRequest = {
|
|
3368
3240
|
feature?: AppFeature;
|
|
3369
3241
|
};
|
|
3370
|
-
/** @returns {
|
|
3371
|
-
declare function
|
|
3372
|
-
type
|
|
3242
|
+
/** @returns {AppFeatureResponse} */
|
|
3243
|
+
declare function AppFeatureResponse(): AppFeatureResponse;
|
|
3244
|
+
type AppFeatureResponse = {
|
|
3373
3245
|
feature?: AppFeature;
|
|
3374
3246
|
};
|
|
3375
3247
|
/** @returns {Currency} */
|
|
@@ -3669,9 +3541,9 @@ type TokenSchema = {
|
|
|
3669
3541
|
*/
|
|
3670
3542
|
created_at?: string;
|
|
3671
3543
|
};
|
|
3672
|
-
/** @returns {
|
|
3673
|
-
declare function
|
|
3674
|
-
type
|
|
3544
|
+
/** @returns {InvalidPayloadRequest} */
|
|
3545
|
+
declare function InvalidPayloadRequest(): InvalidPayloadRequest;
|
|
3546
|
+
type InvalidPayloadRequest = {
|
|
3675
3547
|
/**
|
|
3676
3548
|
* - Error message when request body payload is improper
|
|
3677
3549
|
*/
|
|
@@ -4046,14 +3918,14 @@ type ApplicationDetail = {
|
|
|
4046
3918
|
slug?: string;
|
|
4047
3919
|
company_id?: number;
|
|
4048
3920
|
};
|
|
4049
|
-
/** @returns {
|
|
4050
|
-
declare function
|
|
4051
|
-
type
|
|
3921
|
+
/** @returns {CurrenciesResponse} */
|
|
3922
|
+
declare function CurrenciesResponse(): CurrenciesResponse;
|
|
3923
|
+
type CurrenciesResponse = {
|
|
4052
3924
|
items?: Currency[];
|
|
4053
3925
|
};
|
|
4054
|
-
/** @returns {
|
|
4055
|
-
declare function
|
|
4056
|
-
type
|
|
3926
|
+
/** @returns {AppCurrencyResponse} */
|
|
3927
|
+
declare function AppCurrencyResponse(): AppCurrencyResponse;
|
|
3928
|
+
type AppCurrencyResponse = {
|
|
4057
3929
|
/**
|
|
4058
3930
|
* - The unique identifier (24-digit Mongo Object ID)
|
|
4059
3931
|
* of the currency configuration supported by the application
|
|
@@ -4201,26 +4073,9 @@ type OrderingStores = {
|
|
|
4201
4073
|
*/
|
|
4202
4074
|
__v?: number;
|
|
4203
4075
|
};
|
|
4204
|
-
/** @returns {
|
|
4205
|
-
declare function
|
|
4206
|
-
type
|
|
4076
|
+
/** @returns {OrderingStoresResponse} */
|
|
4077
|
+
declare function OrderingStoresResponse(): OrderingStoresResponse;
|
|
4078
|
+
type OrderingStoresResponse = {
|
|
4207
4079
|
page?: Page;
|
|
4208
4080
|
items?: OrderingStore[];
|
|
4209
4081
|
};
|
|
4210
|
-
/** @returns {ValidationErrors} */
|
|
4211
|
-
declare function ValidationErrors(): ValidationErrors;
|
|
4212
|
-
type ValidationErrors = {
|
|
4213
|
-
errors: ValidationError[];
|
|
4214
|
-
};
|
|
4215
|
-
/** @returns {ValidationError} */
|
|
4216
|
-
declare function ValidationError(): ValidationError;
|
|
4217
|
-
type ValidationError = {
|
|
4218
|
-
/**
|
|
4219
|
-
* - A brief description of the error encountered.
|
|
4220
|
-
*/
|
|
4221
|
-
message: string;
|
|
4222
|
-
/**
|
|
4223
|
-
* - The field in the request that caused the error.
|
|
4224
|
-
*/
|
|
4225
|
-
field: string;
|
|
4226
|
-
};
|