@gofynd/fdk-client-javascript 3.1.0-beta.1 → 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +2 -2
- package/sdk/application/ApplicationClient.d.ts +2 -0
- package/sdk/application/ApplicationClient.js +2 -0
- package/sdk/application/Cart/CartApplicationClient.d.ts +81 -101
- package/sdk/application/Cart/CartApplicationClient.js +173 -511
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +110 -110
- package/sdk/application/Catalog/CatalogApplicationClient.js +214 -447
- package/sdk/application/Common/CommonApplicationClient.d.ts +4 -4
- package/sdk/application/Common/CommonApplicationClient.js +4 -19
- package/sdk/application/Communication/CommunicationApplicationClient.d.ts +3 -43
- package/sdk/application/Communication/CommunicationApplicationClient.js +4 -214
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +41 -54
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +39 -192
- package/sdk/application/Content/ContentApplicationClient.d.ts +61 -61
- package/sdk/application/Content/ContentApplicationClient.js +183 -366
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +2 -2
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +11 -30
- package/sdk/application/Finance/FinanceApplicationClient.d.ts +29 -0
- package/sdk/application/Finance/FinanceApplicationClient.js +111 -0
- package/sdk/application/Lead/LeadApplicationClient.d.ts +6 -6
- package/sdk/application/Lead/LeadApplicationClient.js +24 -55
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +28 -117
- package/sdk/application/Logistic/LogisticApplicationClient.js +99 -492
- package/sdk/application/Order/OrderApplicationClient.d.ts +31 -51
- package/sdk/application/Order/OrderApplicationClient.js +89 -293
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +108 -218
- package/sdk/application/Payment/PaymentApplicationClient.js +100 -1081
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +14 -14
- package/sdk/application/Rewards/RewardsApplicationClient.js +13 -66
- package/sdk/application/Share/ShareApplicationClient.d.ts +11 -11
- package/sdk/application/Share/ShareApplicationClient.js +35 -89
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +5 -25
- package/sdk/application/Theme/ThemeApplicationClient.js +24 -150
- package/sdk/application/User/UserApplicationClient.d.ts +23 -13
- package/sdk/application/User/UserApplicationClient.js +49 -407
- package/sdk/application/Webhook/WebhookApplicationClient.d.ts +4 -4
- package/sdk/application/Webhook/WebhookApplicationClient.js +4 -11
- 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 +10 -54
- package/sdk/partner/FileStorage/FileStoragePartnerClient.js +32 -364
- package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +54 -1
- package/sdk/partner/FileStorage/FileStoragePartnerModel.js +43 -0
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +1 -5
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +4 -35
- package/sdk/partner/Lead/LeadPartnerClient.d.ts +5 -5
- package/sdk/partner/Lead/LeadPartnerClient.js +4 -4
- package/sdk/partner/Lead/LeadPartnerModel.d.ts +52 -98
- package/sdk/partner/Lead/LeadPartnerModel.js +76 -100
- package/sdk/partner/Lead/LeadPartnerValidator.js +1 -1
- package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +172 -41
- package/sdk/partner/Logistics/LogisticsPartnerClient.js +1222 -85
- package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +1921 -297
- package/sdk/partner/Logistics/LogisticsPartnerModel.js +973 -258
- package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +13 -1
- package/sdk/partner/Logistics/LogisticsPartnerValidator.js +148 -16
- package/sdk/partner/PartnerClient.d.ts +0 -6
- package/sdk/partner/PartnerClient.js +0 -9
- package/sdk/partner/Theme/ThemePartnerClient.d.ts +21 -63
- package/sdk/partner/Theme/ThemePartnerClient.js +67 -392
- package/sdk/partner/Theme/ThemePartnerModel.d.ts +72 -104
- package/sdk/partner/Theme/ThemePartnerModel.js +75 -101
- package/sdk/partner/Theme/ThemePartnerValidator.d.ts +1 -5
- package/sdk/partner/Theme/ThemePartnerValidator.js +12 -42
- package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +18 -18
- package/sdk/partner/Webhook/WebhookPartnerClient.js +18 -18
- package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +673 -189
- package/sdk/partner/Webhook/WebhookPartnerModel.js +270 -159
- package/sdk/partner/Webhook/WebhookPartnerValidator.js +3 -3
- package/sdk/partner/index.d.ts +0 -3
- package/sdk/partner/index.js +0 -6
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +4 -1
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +1 -1
- package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +3 -3
- package/sdk/platform/Analytics/AnalyticsPlatformModel.js +3 -3
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +2 -32
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +3 -243
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +49 -145
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +20 -171
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +1 -39
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +0 -35
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +12 -12
- package/sdk/platform/Billing/BillingPlatformClient.js +15 -15
- package/sdk/platform/Billing/BillingPlatformModel.d.ts +443 -388
- package/sdk/platform/Billing/BillingPlatformModel.js +280 -263
- package/sdk/platform/Billing/BillingPlatformValidator.d.ts +16 -18
- package/sdk/platform/Billing/BillingPlatformValidator.js +8 -9
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +172 -251
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +577 -648
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +270 -165
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +192 -108
- package/sdk/platform/Cart/CartPlatformModel.d.ts +4554 -3154
- package/sdk/platform/Cart/CartPlatformModel.js +1935 -2854
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +380 -976
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +2004 -6464
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +161 -1082
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +80 -884
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +568 -325
- package/sdk/platform/Catalog/CatalogPlatformClient.js +1560 -1162
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +9772 -7871
- package/sdk/platform/Catalog/CatalogPlatformModel.js +6978 -9516
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +231 -240
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +180 -188
- package/sdk/platform/Common/CommonPlatformClient.d.ts +6 -5
- package/sdk/platform/Common/CommonPlatformClient.js +6 -5
- package/sdk/platform/Common/CommonPlatformModel.d.ts +19 -25
- package/sdk/platform/Common/CommonPlatformModel.js +11 -14
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +240 -376
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +589 -874
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +139 -170
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +126 -145
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +3 -56
- package/sdk/platform/Communication/CommunicationPlatformClient.js +4 -307
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +330 -502
- package/sdk/platform/Communication/CommunicationPlatformModel.js +376 -610
- package/sdk/platform/Communication/CommunicationPlatformValidator.d.ts +3 -62
- package/sdk/platform/Communication/CommunicationPlatformValidator.js +2 -48
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +72 -100
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +88 -146
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +270 -241
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +248 -226
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +20 -31
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +20 -25
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +117 -332
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +409 -1470
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +55 -158
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +41 -163
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +65 -142
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +103 -568
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +562 -1289
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +368 -1037
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +34 -80
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +24 -79
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +302 -248
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +1292 -773
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +330 -218
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +325 -208
- package/sdk/platform/Content/ContentPlatformClient.d.ts +279 -118
- package/sdk/platform/Content/ContentPlatformClient.js +1617 -492
- package/sdk/platform/Content/ContentPlatformModel.d.ts +2391 -924
- package/sdk/platform/Content/ContentPlatformModel.js +1314 -970
- package/sdk/platform/Content/ContentPlatformValidator.d.ts +272 -134
- package/sdk/platform/Content/ContentPlatformValidator.js +295 -118
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +53 -43
- package/sdk/platform/Discount/DiscountPlatformClient.js +53 -43
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +383 -110
- package/sdk/platform/Discount/DiscountPlatformModel.js +117 -108
- package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +56 -36
- package/sdk/platform/Discount/DiscountPlatformValidator.js +29 -19
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +4 -163
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +4 -1078
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +5 -141
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +4 -177
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +8 -8
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +8 -8
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +30 -1123
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +24 -1135
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +17 -17
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +33 -33
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +19 -19
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +14 -14
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +24 -4
- package/sdk/platform/Lead/LeadPlatformClient.js +160 -4
- package/sdk/platform/Lead/LeadPlatformModel.d.ts +60 -140
- package/sdk/platform/Lead/LeadPlatformModel.js +81 -162
- package/sdk/platform/Lead/LeadPlatformValidator.d.ts +29 -3
- package/sdk/platform/Lead/LeadPlatformValidator.js +28 -2
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +19 -98
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +27 -662
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +91 -118
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +32 -127
- package/sdk/platform/Order/OrderPlatformClient.d.ts +406 -403
- package/sdk/platform/Order/OrderPlatformClient.js +1200 -1343
- package/sdk/platform/Order/OrderPlatformModel.d.ts +8665 -4505
- package/sdk/platform/Order/OrderPlatformModel.js +4088 -3601
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +666 -442
- package/sdk/platform/Order/OrderPlatformValidator.js +353 -312
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +6 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +9 -7
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +67 -19
- package/sdk/platform/Partner/PartnerPlatformModel.js +26 -17
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +135 -382
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +937 -2452
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +100 -306
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +74 -305
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +56 -66
- package/sdk/platform/Payment/PaymentPlatformClient.js +124 -269
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +1307 -3536
- package/sdk/platform/Payment/PaymentPlatformModel.js +1389 -3692
- package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +35 -64
- package/sdk/platform/Payment/PaymentPlatformValidator.js +34 -60
- package/sdk/platform/PlatformClient.d.ts +0 -2
- package/sdk/platform/PlatformClient.js +0 -4
- 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 +12 -12
- package/sdk/platform/Rewards/RewardsPlatformModel.js +10 -10
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +64 -136
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +111 -521
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +75 -117
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +50 -105
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +160 -149
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +766 -545
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +6196 -3978
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +3181 -3895
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +294 -220
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +205 -149
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +16 -4
- package/sdk/platform/Share/SharePlatformApplicationClient.js +86 -8
- package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +23 -6
- package/sdk/platform/Share/SharePlatformApplicationValidator.js +16 -3
- package/sdk/platform/Share/SharePlatformModel.d.ts +53 -9
- package/sdk/platform/Share/SharePlatformModel.js +45 -5
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +17 -37
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +66 -204
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +25 -26
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +20 -31
- package/sdk/platform/Theme/ThemePlatformClient.d.ts +8 -18
- package/sdk/platform/Theme/ThemePlatformClient.js +8 -85
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +17 -425
- package/sdk/platform/Theme/ThemePlatformModel.js +23 -329
- package/sdk/platform/Theme/ThemePlatformValidator.d.ts +3 -7
- package/sdk/platform/Theme/ThemePlatformValidator.js +2 -9
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +81 -18
- package/sdk/platform/User/UserPlatformApplicationClient.js +491 -27
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +126 -10
- package/sdk/platform/User/UserPlatformApplicationValidator.js +92 -7
- package/sdk/platform/User/UserPlatformModel.d.ts +317 -218
- package/sdk/platform/User/UserPlatformModel.js +253 -210
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +25 -78
- package/sdk/platform/Webhook/WebhookPlatformClient.js +75 -470
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +813 -426
- package/sdk/platform/Webhook/WebhookPlatformModel.js +446 -395
- package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +10 -55
- package/sdk/platform/Webhook/WebhookPlatformValidator.js +12 -72
- package/sdk/platform/index.d.ts +0 -1
- package/sdk/platform/index.js +0 -2
- package/sdk/public/Catalog/CatalogPublicClient.d.ts +22 -0
- package/sdk/public/Catalog/CatalogPublicClient.js +133 -0
- package/sdk/public/Catalog/CatalogPublicModel.d.ts +158 -0
- package/sdk/public/Catalog/CatalogPublicModel.js +116 -0
- package/sdk/public/Catalog/CatalogPublicValidator.d.ts +55 -0
- package/sdk/public/Catalog/CatalogPublicValidator.js +35 -0
- package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +4 -14
- package/sdk/public/Configuration/ConfigurationPublicClient.js +10 -113
- package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +46 -114
- package/sdk/public/Configuration/ConfigurationPublicModel.js +32 -117
- package/sdk/public/Configuration/ConfigurationPublicValidator.d.ts +1 -11
- package/sdk/public/Configuration/ConfigurationPublicValidator.js +0 -12
- package/sdk/public/Content/ContentPublicClient.d.ts +36 -25
- package/sdk/public/Content/ContentPublicClient.js +254 -280
- package/sdk/public/Content/ContentPublicModel.d.ts +151 -38
- package/sdk/public/Content/ContentPublicModel.js +98 -44
- package/sdk/public/Content/ContentPublicValidator.d.ts +18 -17
- package/sdk/public/Content/ContentPublicValidator.js +26 -19
- package/sdk/public/Partner/PartnerPublicClient.d.ts +1 -1
- package/sdk/public/Partner/PartnerPublicClient.js +6 -11
- package/sdk/public/Partner/PartnerPublicModel.d.ts +248 -72
- package/sdk/public/Partner/PartnerPublicModel.js +81 -71
- package/sdk/public/Partner/PartnerPublicValidator.d.ts +2 -2
- package/sdk/public/Partner/PartnerPublicValidator.js +1 -1
- package/sdk/public/PublicClient.d.ts +2 -0
- package/sdk/public/PublicClient.js +4 -0
- package/sdk/public/Webhook/WebhookPublicClient.d.ts +8 -8
- package/sdk/public/Webhook/WebhookPublicClient.js +9 -48
- package/sdk/public/Webhook/WebhookPublicModel.d.ts +215 -67
- package/sdk/public/Webhook/WebhookPublicModel.js +66 -61
- package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
- package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
- package/sdk/public/index.d.ts +1 -0
- package/sdk/public/index.js +2 -0
- package/sdk/partner/Authorization/AuthorizationPartnerClient.d.ts +0 -66
- package/sdk/partner/Authorization/AuthorizationPartnerClient.js +0 -431
- package/sdk/partner/Authorization/AuthorizationPartnerModel.d.ts +0 -231
- package/sdk/partner/Authorization/AuthorizationPartnerModel.js +0 -152
- package/sdk/partner/Authorization/AuthorizationPartnerValidator.d.ts +0 -8
- package/sdk/partner/Authorization/AuthorizationPartnerValidator.js +0 -39
- package/sdk/partner/Catalog/CatalogPartnerClient.d.ts +0 -26
- package/sdk/partner/Catalog/CatalogPartnerClient.js +0 -173
- package/sdk/partner/Catalog/CatalogPartnerModel.d.ts +0 -238
- package/sdk/partner/Catalog/CatalogPartnerModel.js +0 -248
- package/sdk/partner/Catalog/CatalogPartnerValidator.d.ts +0 -5
- package/sdk/partner/Catalog/CatalogPartnerValidator.js +0 -19
- package/sdk/partner/Payment/PaymentPartnerClient.d.ts +0 -116
- package/sdk/partner/Payment/PaymentPartnerClient.js +0 -857
- package/sdk/partner/Payment/PaymentPartnerModel.d.ts +0 -388
- package/sdk/partner/Payment/PaymentPartnerModel.js +0 -442
- package/sdk/partner/Payment/PaymentPartnerValidator.d.ts +0 -14
- package/sdk/partner/Payment/PaymentPartnerValidator.js +0 -74
- package/sdk/platform/Finance/FinancePlatformClient.d.ts +0 -320
- package/sdk/platform/Finance/FinancePlatformClient.js +0 -2333
- package/sdk/platform/Finance/FinancePlatformModel.d.ts +0 -2895
- package/sdk/platform/Finance/FinancePlatformModel.js +0 -2150
- package/sdk/platform/Finance/FinancePlatformValidator.d.ts +0 -284
- package/sdk/platform/Finance/FinancePlatformValidator.js +0 -354
|
@@ -9,8 +9,8 @@ declare class Configuration {
|
|
|
9
9
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
10
10
|
* @returns {Promise<ConfigurationPlatformModel.Domain>} - Success response
|
|
11
11
|
* @name addDomain
|
|
12
|
-
* @summary:
|
|
13
|
-
* @description:
|
|
12
|
+
* @summary: Create domain
|
|
13
|
+
* @description: Creates a domain for an sales channel. Note - Only 15 domains can be added to the sales channel - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/addDomain/).
|
|
14
14
|
*/
|
|
15
15
|
addDomain({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.AddDomainParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.Domain>;
|
|
16
16
|
/**
|
|
@@ -19,86 +19,26 @@ declare class Configuration {
|
|
|
19
19
|
*
|
|
20
20
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
21
21
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
22
|
-
* @returns {Promise<ConfigurationPlatformModel.
|
|
22
|
+
* @returns {Promise<ConfigurationPlatformModel.DomainsResponseSchema>} -
|
|
23
|
+
* Success response
|
|
23
24
|
* @name changeDomainType
|
|
24
|
-
* @summary:
|
|
25
|
+
* @summary: Update domain
|
|
25
26
|
* @description: Modify the type of a specific domain. Primary domain is used as the URL of your website. Short link domain is comparatively smaller and used while generating short links. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/changeDomainType/).
|
|
26
27
|
*/
|
|
27
|
-
changeDomainType({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.ChangeDomainTypeParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.
|
|
28
|
-
/**
|
|
29
|
-
* @param {ConfigurationPlatformApplicationValidator.CreateAppCurrencyConfigParam} arg
|
|
30
|
-
* - Arg object
|
|
31
|
-
*
|
|
32
|
-
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
33
|
-
* @param {import("../PlatformAPIClient").Options} - Options
|
|
34
|
-
* @returns {Promise<ConfigurationPlatformModel.AppSupportedCurrency>} -
|
|
35
|
-
* Success response
|
|
36
|
-
* @name createAppCurrencyConfig
|
|
37
|
-
* @summary: Update application currency configuration.
|
|
38
|
-
* @description: Modify currency configuration settings for the application. Add and edit the currencies supported in the application. Initially, INR will be enabled by default. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/createAppCurrencyConfig/).
|
|
39
|
-
*/
|
|
40
|
-
createAppCurrencyConfig({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.CreateAppCurrencyConfigParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.AppSupportedCurrency>;
|
|
41
|
-
/**
|
|
42
|
-
* @param {ConfigurationPlatformApplicationValidator.CreateTokensParam} arg
|
|
43
|
-
* - Arg object
|
|
44
|
-
*
|
|
45
|
-
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
46
|
-
* @param {import("../PlatformAPIClient").Options} - Options
|
|
47
|
-
* @returns {Promise<ConfigurationPlatformModel.Application>} - Success response
|
|
48
|
-
* @name createTokens
|
|
49
|
-
* @summary: Create tokens for application
|
|
50
|
-
* @description: Create new tokens for an application - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/createTokens/).
|
|
51
|
-
*/
|
|
52
|
-
createTokens({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.Application>;
|
|
53
|
-
/**
|
|
54
|
-
* @param {ConfigurationPlatformApplicationValidator.CreateUrlRedirectionParam} arg
|
|
55
|
-
* - Arg object
|
|
56
|
-
*
|
|
57
|
-
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
58
|
-
* @param {import("../PlatformAPIClient").Options} - Options
|
|
59
|
-
* @returns {Promise<ConfigurationPlatformModel.UrlRedirection>} - Success response
|
|
60
|
-
* @name createUrlRedirection
|
|
61
|
-
* @summary: Create a URL redirection
|
|
62
|
-
* @description: Creates a new URL redirection - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/createUrlRedirection/).
|
|
63
|
-
*/
|
|
64
|
-
createUrlRedirection({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.CreateUrlRedirectionParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.UrlRedirection>;
|
|
65
|
-
/**
|
|
66
|
-
* @param {ConfigurationPlatformApplicationValidator.DeleteTokenParam} arg
|
|
67
|
-
* - Arg object
|
|
68
|
-
*
|
|
69
|
-
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
70
|
-
* @param {import("../PlatformAPIClient").Options} - Options
|
|
71
|
-
* @returns {Promise<ConfigurationPlatformModel.Application>} - Success response
|
|
72
|
-
* @name deleteToken
|
|
73
|
-
* @summary: Delete tokens for application
|
|
74
|
-
* @description: Delete new tokens for an application - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/deleteToken/).
|
|
75
|
-
*/
|
|
76
|
-
deleteToken({ token, requestHeaders }?: ConfigurationPlatformApplicationValidator.DeleteTokenParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.Application>;
|
|
77
|
-
/**
|
|
78
|
-
* @param {ConfigurationPlatformApplicationValidator.DeleteUrlRedirectionParam} arg
|
|
79
|
-
* - Arg object
|
|
80
|
-
*
|
|
81
|
-
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
82
|
-
* @param {import("../PlatformAPIClient").Options} - Options
|
|
83
|
-
* @returns {Promise<ConfigurationPlatformModel.SuccessMessageResponse>} -
|
|
84
|
-
* Success response
|
|
85
|
-
* @name deleteUrlRedirection
|
|
86
|
-
* @summary: Delete a URL redirection
|
|
87
|
-
* @description: Delete a URL redirection - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/deleteUrlRedirection/).
|
|
88
|
-
*/
|
|
89
|
-
deleteUrlRedirection({ redirectionDomainId, requestHeaders }?: ConfigurationPlatformApplicationValidator.DeleteUrlRedirectionParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.SuccessMessageResponse>;
|
|
28
|
+
changeDomainType({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.ChangeDomainTypeParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.DomainsResponseSchema>;
|
|
90
29
|
/**
|
|
91
30
|
* @param {ConfigurationPlatformApplicationValidator.GetAppApiTokensParam} arg
|
|
92
31
|
* - Arg object
|
|
93
32
|
*
|
|
94
33
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
95
34
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
96
|
-
* @returns {Promise<ConfigurationPlatformModel.
|
|
35
|
+
* @returns {Promise<ConfigurationPlatformModel.TokenResponseSchema>} -
|
|
36
|
+
* Success response
|
|
97
37
|
* @name getAppApiTokens
|
|
98
|
-
* @summary: Get
|
|
38
|
+
* @summary: Get sales channel API tokens
|
|
99
39
|
* @description: Retrieve the tokens used for integrating Firebase, MoEngage, Segment, GTM, Freshchat, Safetynet, Google Map, Google, and Facebook auth. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getAppApiTokens/).
|
|
100
40
|
*/
|
|
101
|
-
getAppApiTokens({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.
|
|
41
|
+
getAppApiTokens({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.TokenResponseSchema>;
|
|
102
42
|
/**
|
|
103
43
|
* @param {ConfigurationPlatformApplicationValidator.GetAppBasicDetailsParam} arg
|
|
104
44
|
* - Arg object
|
|
@@ -107,7 +47,7 @@ declare class Configuration {
|
|
|
107
47
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
108
48
|
* @returns {Promise<ConfigurationPlatformModel.ApplicationDetail>} - Success response
|
|
109
49
|
* @name getAppBasicDetails
|
|
110
|
-
* @summary: Get
|
|
50
|
+
* @summary: Get sales channel
|
|
111
51
|
* @description: Shows basic sales channel details like name, description, logo, domain, company ID, and other related information. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getAppBasicDetails/).
|
|
112
52
|
*/
|
|
113
53
|
getAppBasicDetails({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.ApplicationDetail>;
|
|
@@ -117,31 +57,13 @@ declare class Configuration {
|
|
|
117
57
|
*
|
|
118
58
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
119
59
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
120
|
-
* @returns {Promise<ConfigurationPlatformModel.
|
|
60
|
+
* @returns {Promise<ConfigurationPlatformModel.CompaniesResponseSchema>} -
|
|
61
|
+
* Success response
|
|
121
62
|
* @name getAppCompanies
|
|
122
|
-
* @summary:
|
|
123
|
-
* @description: Retrieve info of all the companies (e.g. name, uid, and company type) whose inventory is fetched into the current sales channel
|
|
124
|
-
*/
|
|
125
|
-
getAppCompanies({ uid, pageNo, pageSize, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetAppCompaniesParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.
|
|
126
|
-
/**
|
|
127
|
-
* @param {Object} arg - Arg object.
|
|
128
|
-
* @param {number} arg.companyId - Numeric ID allotted to a business account
|
|
129
|
-
* on Fynd Platform
|
|
130
|
-
* @param {string} arg.applicationId - Alphanumeric ID allotted to an
|
|
131
|
-
* application (sales channel website) created within a business account
|
|
132
|
-
* @param {number} [arg.uid] - UID of companies to be fetched
|
|
133
|
-
* @param {number} [arg.pageSize] - The number of items to retrieve in each
|
|
134
|
-
* page. Default value is 10.
|
|
135
|
-
* @returns {Paginator<ConfigurationPlatformModel.CompaniesResponse>}
|
|
136
|
-
* @summary: Get application companies.
|
|
137
|
-
* @description: Retrieve info of all the companies (e.g. name, uid, and company type) whose inventory is fetched into the current sales channel application
|
|
138
|
-
*/
|
|
139
|
-
getAppCompaniesPaginator({ companyId, applicationId, uid, pageSize }?: {
|
|
140
|
-
companyId: number;
|
|
141
|
-
applicationId: string;
|
|
142
|
-
uid?: number;
|
|
143
|
-
pageSize?: number;
|
|
144
|
-
}): Paginator<ConfigurationPlatformModel.CompaniesResponse>;
|
|
63
|
+
* @summary: List sales channel companies
|
|
64
|
+
* @description: Retrieve info of all the companies (e.g. name, uid, and company type) whose inventory is fetched into the current sales channel sales channel - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getAppCompanies/).
|
|
65
|
+
*/
|
|
66
|
+
getAppCompanies({ uid, pageNo, pageSize, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetAppCompaniesParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.CompaniesResponseSchema>;
|
|
145
67
|
/**
|
|
146
68
|
* @param {ConfigurationPlatformApplicationValidator.GetAppContactInfoParam} arg
|
|
147
69
|
* - Arg object
|
|
@@ -151,8 +73,8 @@ declare class Configuration {
|
|
|
151
73
|
* @returns {Promise<ConfigurationPlatformModel.ApplicationInformation>} -
|
|
152
74
|
* Success response
|
|
153
75
|
* @name getAppContactInfo
|
|
154
|
-
* @summary: Get
|
|
155
|
-
* @description: Fetch data such as social links, copyright text, business highlights, address and contact information of the company/seller/brand operating the
|
|
76
|
+
* @summary: Get sales channel contact
|
|
77
|
+
* @description: Fetch data such as social links, copyright text, business highlights, address and contact information of the company/seller/brand operating the sales channel. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getAppContactInfo/).
|
|
156
78
|
*/
|
|
157
79
|
getAppContactInfo({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.ApplicationInformation>;
|
|
158
80
|
/**
|
|
@@ -164,8 +86,8 @@ declare class Configuration {
|
|
|
164
86
|
* @returns {Promise<ConfigurationPlatformModel.AppSupportedCurrency>} -
|
|
165
87
|
* Success response
|
|
166
88
|
* @name getAppCurrencyConfig
|
|
167
|
-
* @summary: Get
|
|
168
|
-
* @description: Retrieve a list of currencies supported in the current sales channel. Moreover, get the cuurency that is set as the default one in the
|
|
89
|
+
* @summary: Get sales channel currency configuration
|
|
90
|
+
* @description: Retrieve a list of currencies supported in the current sales channel. Moreover, get the cuurency that is set as the default one in the sales channel. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getAppCurrencyConfig/).
|
|
169
91
|
*/
|
|
170
92
|
getAppCurrencyConfig({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.AppSupportedCurrency>;
|
|
171
93
|
/**
|
|
@@ -174,116 +96,91 @@ declare class Configuration {
|
|
|
174
96
|
*
|
|
175
97
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
176
98
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
177
|
-
* @returns {Promise<ConfigurationPlatformModel.
|
|
178
|
-
* Success response
|
|
99
|
+
* @returns {Promise<ConfigurationPlatformModel.AppFeatureResponseSchema>}
|
|
100
|
+
* - Success response
|
|
101
|
+
*
|
|
179
102
|
* @name getAppFeatures
|
|
180
|
-
* @summary: Get
|
|
103
|
+
* @summary: Get sales channel
|
|
181
104
|
* @description: Shows feature configuration of sales channel websites, such as product detail, landing page, options in the login/registration screen, home page, listing page, reward points, communication opt-in, cart options and many more. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getAppFeatures/).
|
|
182
105
|
*/
|
|
183
|
-
getAppFeatures({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.
|
|
106
|
+
getAppFeatures({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.AppFeatureResponseSchema>;
|
|
184
107
|
/**
|
|
185
108
|
* @param {ConfigurationPlatformApplicationValidator.GetAppStoresParam} arg
|
|
186
109
|
* - Arg object
|
|
187
110
|
*
|
|
188
111
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
189
112
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
190
|
-
* @returns {Promise<ConfigurationPlatformModel.
|
|
113
|
+
* @returns {Promise<ConfigurationPlatformModel.StoresResponseSchema>} -
|
|
114
|
+
* Success response
|
|
191
115
|
* @name getAppStores
|
|
192
|
-
* @summary:
|
|
193
|
-
* @description: Retrieve information of all the companies (e.g. uid, name, display name, store type, store code and company id) whose inventory is fetched into the current sales channel
|
|
194
|
-
*/
|
|
195
|
-
getAppStores({ pageNo, pageSize, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetAppStoresParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.
|
|
196
|
-
/**
|
|
197
|
-
* @param {Object} arg - Arg object.
|
|
198
|
-
* @param {number} arg.companyId - Numeric ID allotted to a business account
|
|
199
|
-
* on Fynd Platform
|
|
200
|
-
* @param {string} arg.applicationId - Alphanumeric ID allotted to an
|
|
201
|
-
* application (sales channel website) created within a business account
|
|
202
|
-
* @param {number} [arg.pageSize] - The number of items to retrieve in each
|
|
203
|
-
* page. Default value is 10.
|
|
204
|
-
* @returns {Paginator<ConfigurationPlatformModel.StoresResponse>}
|
|
205
|
-
* @summary: Get application stores.
|
|
206
|
-
* @description: Retrieve information of all the companies (e.g. uid, name, display name, store type, store code and company id) whose inventory is fetched into the current sales channel application
|
|
207
|
-
*/
|
|
208
|
-
getAppStoresPaginator({ companyId, applicationId, pageSize }?: {
|
|
209
|
-
companyId: number;
|
|
210
|
-
applicationId: string;
|
|
211
|
-
pageSize?: number;
|
|
212
|
-
}): Paginator<ConfigurationPlatformModel.StoresResponse>;
|
|
116
|
+
* @summary: list sales channel stores
|
|
117
|
+
* @description: Retrieve information of all the companies (e.g. uid, name, display name, store type, store code and company id) whose inventory is fetched into the current sales channel sales channel - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getAppStores/).
|
|
118
|
+
*/
|
|
119
|
+
getAppStores({ pageNo, pageSize, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetAppStoresParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.StoresResponseSchema>;
|
|
213
120
|
/**
|
|
214
121
|
* @param {ConfigurationPlatformApplicationValidator.GetAppSupportedCurrencyParam} arg
|
|
215
122
|
* - Arg object
|
|
216
123
|
*
|
|
217
124
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
218
125
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
219
|
-
* @returns {Promise<ConfigurationPlatformModel.
|
|
220
|
-
* Success response
|
|
126
|
+
* @returns {Promise<ConfigurationPlatformModel.AppCurrencyResponseSchema>}
|
|
127
|
+
* - Success response
|
|
128
|
+
*
|
|
221
129
|
* @name getAppSupportedCurrency
|
|
222
|
-
* @summary:
|
|
223
|
-
* @description: Retrieve a list of supported currencies for the
|
|
130
|
+
* @summary: List supported currencies
|
|
131
|
+
* @description: Retrieve a list of supported currencies for the sales channel. A list of currencies allowed in the current sales channel. Moreover, get the name, code, symbol, and the decimal digits of the currencies. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getAppSupportedCurrency/).
|
|
224
132
|
*/
|
|
225
|
-
getAppSupportedCurrency({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.
|
|
133
|
+
getAppSupportedCurrency({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.AppCurrencyResponseSchema>;
|
|
226
134
|
/**
|
|
227
135
|
* @param {ConfigurationPlatformApplicationValidator.GetApplicationByIdParam} arg
|
|
228
136
|
* - Arg object
|
|
229
137
|
*
|
|
230
138
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
231
139
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
232
|
-
* @returns {Promise<ConfigurationPlatformModel.
|
|
140
|
+
* @returns {Promise<ConfigurationPlatformModel.ApplicationById>} - Success response
|
|
233
141
|
* @name getApplicationById
|
|
234
|
-
* @summary: Get
|
|
235
|
-
* @description: Retrieve detailed information about a specific
|
|
142
|
+
* @summary: Get sales channel by id
|
|
143
|
+
* @description: Retrieve detailed information about a specific sales channel. Use sales channel ID to get the current sales channel details which includes channel name, description, banner, logo, favicon, domain details, token, etc. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getApplicationById/).
|
|
236
144
|
*/
|
|
237
|
-
getApplicationById({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.
|
|
145
|
+
getApplicationById({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.ApplicationById>;
|
|
238
146
|
/**
|
|
239
|
-
* @param {ConfigurationPlatformApplicationValidator.
|
|
147
|
+
* @param {ConfigurationPlatformApplicationValidator.GetBuildConfigParam} arg
|
|
240
148
|
* - Arg object
|
|
241
149
|
*
|
|
242
150
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
243
151
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
244
|
-
* @returns {Promise<ConfigurationPlatformModel.
|
|
245
|
-
*
|
|
246
|
-
* @
|
|
247
|
-
* @
|
|
152
|
+
* @returns {Promise<ConfigurationPlatformModel.MobileAppConfiguration>} -
|
|
153
|
+
* Success response
|
|
154
|
+
* @name getBuildConfig
|
|
155
|
+
* @summary: Get Build Configuration
|
|
156
|
+
* @description: Retrieve latest build configuration, such as app name, landing page image, splash image used in a mobile build. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getBuildConfig/).
|
|
248
157
|
*/
|
|
249
|
-
|
|
158
|
+
getBuildConfig({ platformType, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetBuildConfigParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.MobileAppConfiguration>;
|
|
250
159
|
/**
|
|
251
|
-
* @param {ConfigurationPlatformApplicationValidator.
|
|
160
|
+
* @param {ConfigurationPlatformApplicationValidator.GetDomainStatusParam} arg
|
|
252
161
|
* - Arg object
|
|
253
162
|
*
|
|
254
163
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
255
164
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
256
|
-
* @returns {Promise<ConfigurationPlatformModel.
|
|
165
|
+
* @returns {Promise<ConfigurationPlatformModel.DomainStatusResponseSchema>}
|
|
257
166
|
* - Success response
|
|
258
167
|
*
|
|
259
|
-
* @name getApplicationDomainAvailibility
|
|
260
|
-
* @summary: Get domain availability.
|
|
261
|
-
* @description: Check the availability of a specific domain. Use this API to check the domain availability before linking it to application. Also sends domain suggestions that are similar to the queried domain. Note - Custom domain search is currently powered by GoDaddy provider. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getApplicationDomainAvailibility/).
|
|
262
|
-
*/
|
|
263
|
-
getApplicationDomainAvailibility({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetApplicationDomainAvailibilityParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.DomainSuggestionsResponse>;
|
|
264
|
-
/**
|
|
265
|
-
* @param {ConfigurationPlatformApplicationValidator.GetDomainStatusParam} arg
|
|
266
|
-
* - Arg object
|
|
267
|
-
*
|
|
268
|
-
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
269
|
-
* @param {import("../PlatformAPIClient").Options} - Options
|
|
270
|
-
* @returns {Promise<ConfigurationPlatformModel.DomainStatusResponse>} -
|
|
271
|
-
* Success response
|
|
272
168
|
* @name getDomainStatus
|
|
273
|
-
* @summary: Get domain status
|
|
169
|
+
* @summary: Get domain status
|
|
274
170
|
* @description: Retrieve the status of a specific domain. Shows if the A records and TXT records of the domain correctly points to appropriate IP on Fynd Servers. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getDomainStatus/).
|
|
275
171
|
*/
|
|
276
|
-
getDomainStatus({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetDomainStatusParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.
|
|
172
|
+
getDomainStatus({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetDomainStatusParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.DomainStatusResponseSchema>;
|
|
277
173
|
/**
|
|
278
174
|
* @param {ConfigurationPlatformApplicationValidator.GetDomainsParam} arg - Arg object
|
|
279
175
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
280
176
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
281
|
-
* @returns {Promise<ConfigurationPlatformModel.
|
|
177
|
+
* @returns {Promise<ConfigurationPlatformModel.DomainsResponseSchema>} -
|
|
178
|
+
* Success response
|
|
282
179
|
* @name getDomains
|
|
283
|
-
* @summary:
|
|
284
|
-
* @description:
|
|
180
|
+
* @summary: List domains
|
|
181
|
+
* @description: Retrieve a list of existing domains by its sales channel. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getDomains/).
|
|
285
182
|
*/
|
|
286
|
-
getDomains({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.
|
|
183
|
+
getDomains({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.DomainsResponseSchema>;
|
|
287
184
|
/**
|
|
288
185
|
* @param {ConfigurationPlatformApplicationValidator.GetInventoryConfigParam} arg
|
|
289
186
|
* - Arg object
|
|
@@ -293,7 +190,7 @@ declare class Configuration {
|
|
|
293
190
|
* @returns {Promise<ConfigurationPlatformModel.ApplicationInventory>} -
|
|
294
191
|
* Success response
|
|
295
192
|
* @name getInventoryConfig
|
|
296
|
-
* @summary: Get inventory configuration
|
|
193
|
+
* @summary: Get inventory configuration
|
|
297
194
|
* @description: Retrieve configuration details of authentication, inventory, article assignment rules, reward points, cart, payment, order, logistics, etc. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getInventoryConfig/).
|
|
298
195
|
*/
|
|
299
196
|
getInventoryConfig({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.ApplicationInventory>;
|
|
@@ -306,8 +203,8 @@ declare class Configuration {
|
|
|
306
203
|
* @returns {Promise<ConfigurationPlatformModel.OrderingStoreConfig>} -
|
|
307
204
|
* Success response
|
|
308
205
|
* @name getOrderingStoreConfig
|
|
309
|
-
* @summary: Get ordering store configuration
|
|
310
|
-
* @description: Retrieve configuration settings for ordering stores. Retrieve the details of the deployment stores (the selling locations where the
|
|
206
|
+
* @summary: Get ordering store configuration
|
|
207
|
+
* @description: Retrieve configuration settings for ordering stores. Retrieve the details of the deployment stores (the selling locations where the sales channel will be utilised for placing orders). - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getOrderingStoreConfig/).
|
|
311
208
|
*/
|
|
312
209
|
getOrderingStoreConfig({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.OrderingStoreConfig>;
|
|
313
210
|
/**
|
|
@@ -316,44 +213,14 @@ declare class Configuration {
|
|
|
316
213
|
*
|
|
317
214
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
318
215
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
319
|
-
* @returns {Promise<ConfigurationPlatformModel.
|
|
320
|
-
* Success response
|
|
216
|
+
* @returns {Promise<ConfigurationPlatformModel.SuccessMessageResponseSchema>}
|
|
217
|
+
* - Success response
|
|
218
|
+
*
|
|
321
219
|
* @name getOrderingStoreCookie
|
|
322
|
-
* @summary: Get
|
|
220
|
+
* @summary: Get ordering store signed cookie
|
|
323
221
|
* @description: Use this API to get an Ordering Store signed cookie upon selecting an ordering store. This will be used by the cart service to verify a coupon against the selected ordering store in cart. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getOrderingStoreCookie/).
|
|
324
222
|
*/
|
|
325
|
-
getOrderingStoreCookie({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetOrderingStoreCookieParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.
|
|
326
|
-
/**
|
|
327
|
-
* @param {ConfigurationPlatformApplicationValidator.GetOrderingStoresParam} arg
|
|
328
|
-
* - Arg object
|
|
329
|
-
*
|
|
330
|
-
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
331
|
-
* @param {import("../PlatformAPIClient").Options} - Options
|
|
332
|
-
* @returns {Promise<ConfigurationPlatformModel.OrderingStores>} - Success response
|
|
333
|
-
* @name getOrderingStores
|
|
334
|
-
* @summary: Get all deployment stores
|
|
335
|
-
* @description: Use this API to retrieve the details of all the deployment stores (the selling locations where the application will be utilized for placing orders). - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getOrderingStores/).
|
|
336
|
-
*/
|
|
337
|
-
getOrderingStores({ pageNo, pageSize, q, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetOrderingStoresParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.OrderingStores>;
|
|
338
|
-
/**
|
|
339
|
-
* @param {Object} arg - Arg object.
|
|
340
|
-
* @param {number} arg.companyId - Numeric ID allotted to a business account
|
|
341
|
-
* on Fynd Platform
|
|
342
|
-
* @param {string} arg.applicationId - Alphanumeric ID allotted to an
|
|
343
|
-
* application (sales channel website) created within a business account
|
|
344
|
-
* @param {number} [arg.pageSize] - The number of items to retrieve in each
|
|
345
|
-
* page. Default value is 10.
|
|
346
|
-
* @param {string} [arg.q] - Store code or name of the ordering store.
|
|
347
|
-
* @returns {Paginator<ConfigurationPlatformModel.OrderingStores>}
|
|
348
|
-
* @summary: Get all deployment stores
|
|
349
|
-
* @description: Use this API to retrieve the details of all the deployment stores (the selling locations where the application will be utilized for placing orders).
|
|
350
|
-
*/
|
|
351
|
-
getOrderingStoresPaginator({ companyId, applicationId, pageSize, q }?: {
|
|
352
|
-
companyId: number;
|
|
353
|
-
applicationId: string;
|
|
354
|
-
pageSize?: number;
|
|
355
|
-
q?: string;
|
|
356
|
-
}): Paginator<ConfigurationPlatformModel.OrderingStores>;
|
|
223
|
+
getOrderingStoreCookie({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetOrderingStoreCookieParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.SuccessMessageResponseSchema>;
|
|
357
224
|
/**
|
|
358
225
|
* @param {ConfigurationPlatformApplicationValidator.GetOrderingStoresByFilterParam} arg
|
|
359
226
|
* - Arg object
|
|
@@ -362,98 +229,37 @@ declare class Configuration {
|
|
|
362
229
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
363
230
|
* @returns {Promise<ConfigurationPlatformModel.OrderingStores>} - Success response
|
|
364
231
|
* @name getOrderingStoresByFilter
|
|
365
|
-
* @summary:
|
|
366
|
-
* @description:
|
|
232
|
+
* @summary: List ordering stores
|
|
233
|
+
* @description: Retrieve ordering stores based on specified filters. Use filters and retrieve the details of the deployment stores (the selling locations where the sales channel will be utilised for placing orders). - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getOrderingStoresByFilter/).
|
|
367
234
|
*/
|
|
368
235
|
getOrderingStoresByFilter({ body, pageNo, pageSize, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetOrderingStoresByFilterParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.OrderingStores>;
|
|
369
236
|
/**
|
|
370
|
-
* @param {
|
|
371
|
-
* @param {number} arg.companyId - Numeric ID allotted to a business account
|
|
372
|
-
* on Fynd Platform
|
|
373
|
-
* @param {string} arg.applicationId - Alphanumeric ID allotted to an
|
|
374
|
-
* application (sales channel website) created within a business account
|
|
375
|
-
* @param {number} [arg.pageSize] - The number of items to retrieve in each
|
|
376
|
-
* page. Default value is 10.
|
|
377
|
-
* @param {ConfigurationPlatformModel.FilterOrderingStoreRequest} arg.body
|
|
378
|
-
* @returns {Paginator<ConfigurationPlatformModel.OrderingStores>}
|
|
379
|
-
* @summary: Get ordering store by filter
|
|
380
|
-
* @description: Use this API to use filters and retrieve the details of the deployment stores (the selling locations where the application will be utilised for placing orders).
|
|
381
|
-
*/
|
|
382
|
-
getOrderingStoresByFilterPaginator({ companyId, applicationId, pageSize, body, }?: {
|
|
383
|
-
companyId: number;
|
|
384
|
-
applicationId: string;
|
|
385
|
-
pageSize?: number;
|
|
386
|
-
body: ConfigurationPlatformModel.FilterOrderingStoreRequest;
|
|
387
|
-
}): Paginator<ConfigurationPlatformModel.OrderingStores>;
|
|
388
|
-
/**
|
|
389
|
-
* @param {ConfigurationPlatformApplicationValidator.GetStaffOrderingStoresParam} arg
|
|
237
|
+
* @param {ConfigurationPlatformApplicationValidator.GetPreviousVersionsParam} arg
|
|
390
238
|
* - Arg object
|
|
391
239
|
*
|
|
392
240
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
393
241
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
394
|
-
* @returns {Promise<ConfigurationPlatformModel.
|
|
242
|
+
* @returns {Promise<ConfigurationPlatformModel.BuildVersionHistory>} -
|
|
395
243
|
* Success response
|
|
396
|
-
* @name
|
|
397
|
-
* @summary: Get
|
|
398
|
-
* @description:
|
|
399
|
-
*/
|
|
400
|
-
getStaffOrderingStores({ pageNo, pageSize, q, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetStaffOrderingStoresParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.OrderingStoresResponse>;
|
|
401
|
-
/**
|
|
402
|
-
* @param {Object} arg - Arg object.
|
|
403
|
-
* @param {number} arg.companyId - Numeric ID allotted to a business account
|
|
404
|
-
* on Fynd Platform
|
|
405
|
-
* @param {string} arg.applicationId - Alphanumeric ID allotted to an
|
|
406
|
-
* application (sales channel website) created within a business account
|
|
407
|
-
* @param {number} [arg.pageSize] - The number of items to retrieve in each
|
|
408
|
-
* page. Default value is 10.
|
|
409
|
-
* @param {string} [arg.q] - Store code or name of the ordering store.
|
|
410
|
-
* @returns {Paginator<ConfigurationPlatformModel.OrderingStoresResponse>}
|
|
411
|
-
* @summary: Get deployment stores
|
|
412
|
-
* @description: Use this API to retrieve the details of all stores access given to the staff member (the selling locations where the application will be utilized for placing orders).
|
|
413
|
-
*/
|
|
414
|
-
getStaffOrderingStoresPaginator({ companyId, applicationId, pageSize, q, }?: {
|
|
415
|
-
companyId: number;
|
|
416
|
-
applicationId: string;
|
|
417
|
-
pageSize?: number;
|
|
418
|
-
q?: string;
|
|
419
|
-
}): Paginator<ConfigurationPlatformModel.OrderingStoresResponse>;
|
|
420
|
-
/**
|
|
421
|
-
* @param {ConfigurationPlatformApplicationValidator.GetStoreDetailByIdParam} arg
|
|
422
|
-
* - Arg object
|
|
423
|
-
*
|
|
424
|
-
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
425
|
-
* @param {import("../PlatformAPIClient").Options} - Options
|
|
426
|
-
* @returns {Promise<ConfigurationPlatformModel.OrderingStore>} - Success response
|
|
427
|
-
* @name getStoreDetailById
|
|
428
|
-
* @summary: Get ordering store details
|
|
429
|
-
* @description: Use this API to retrieve the details of given stores uid (the selling locations where the application will be utilized for placing orders). - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getStoreDetailById/).
|
|
244
|
+
* @name getPreviousVersions
|
|
245
|
+
* @summary: Get previous versions
|
|
246
|
+
* @description: Retrieve version details of the app, this includes the build status, build date, version name, latest version, and a lot more. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getPreviousVersions/).
|
|
430
247
|
*/
|
|
431
|
-
|
|
248
|
+
getPreviousVersions({ platformType, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetPreviousVersionsParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.BuildVersionHistory>;
|
|
432
249
|
/**
|
|
433
|
-
* @param {ConfigurationPlatformApplicationValidator.
|
|
250
|
+
* @param {ConfigurationPlatformApplicationValidator.GetStaffOrderingStoresParam} arg
|
|
434
251
|
* - Arg object
|
|
435
252
|
*
|
|
436
253
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
437
254
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
438
|
-
* @returns {Promise<ConfigurationPlatformModel.
|
|
439
|
-
*
|
|
440
|
-
* @summary: Get URL redirections
|
|
441
|
-
* @description: Retrieves the URL redirections for a specific application - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getUrlRedirection/).
|
|
442
|
-
*/
|
|
443
|
-
getUrlRedirection({ redirectionDomainId, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetUrlRedirectionParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.UrlRedirection>;
|
|
444
|
-
/**
|
|
445
|
-
* @param {ConfigurationPlatformApplicationValidator.GetUrlRedirectionsParam} arg
|
|
446
|
-
* - Arg object
|
|
255
|
+
* @returns {Promise<ConfigurationPlatformModel.OrderingStoresResponseSchema>}
|
|
256
|
+
* - Success response
|
|
447
257
|
*
|
|
448
|
-
* @
|
|
449
|
-
* @
|
|
450
|
-
* @
|
|
451
|
-
* Success response
|
|
452
|
-
* @name getUrlRedirections
|
|
453
|
-
* @summary: Get URL redirections
|
|
454
|
-
* @description: Retrieves the URL redirections for a specific application - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getUrlRedirections/).
|
|
258
|
+
* @name getStaffOrderingStores
|
|
259
|
+
* @summary: Get staff ordering stores
|
|
260
|
+
* @description: Retrieve ordering stores accessible to staff members. Retrieve the details of all stores access given to the staff member (the selling locations where the sales channel will be utilized for placing orders). - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getStaffOrderingStores/).
|
|
455
261
|
*/
|
|
456
|
-
|
|
262
|
+
getStaffOrderingStores({ pageNo, pageSize, q, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetStaffOrderingStoresParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.OrderingStoresResponseSchema>;
|
|
457
263
|
/**
|
|
458
264
|
* @param {ConfigurationPlatformApplicationValidator.ModifyAppFeaturesParam} arg
|
|
459
265
|
* - Arg object
|
|
@@ -462,8 +268,8 @@ declare class Configuration {
|
|
|
462
268
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
463
269
|
* @returns {Promise<ConfigurationPlatformModel.AppFeature>} - Success response
|
|
464
270
|
* @name modifyAppFeatures
|
|
465
|
-
* @summary:
|
|
466
|
-
* @description:
|
|
271
|
+
* @summary: update sales channel features
|
|
272
|
+
* @description: Modify the feature configuration of sales channel websites, such as product detail, landing page, options in the login/registration screen, home page, listing page, reward points, communication opt-in, cart options and many more. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/modifyAppFeatures/).
|
|
467
273
|
*/
|
|
468
274
|
modifyAppFeatures({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.ModifyAppFeaturesParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.AppFeature>;
|
|
469
275
|
/**
|
|
@@ -475,8 +281,8 @@ declare class Configuration {
|
|
|
475
281
|
* @returns {Promise<ConfigurationPlatformModel.ApplicationInventory>} -
|
|
476
282
|
* Success response
|
|
477
283
|
* @name partiallyUpdateInventoryConfig
|
|
478
|
-
* @summary: Partially update inventory configuration
|
|
479
|
-
* @description:
|
|
284
|
+
* @summary: Partially update inventory configuration
|
|
285
|
+
* @description: Modify the configuration details of authentication, inventory, article assignment rules, reward points, cart, payment, order, logistics, etc. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/partiallyUpdateInventoryConfig/).
|
|
480
286
|
*/
|
|
481
287
|
partiallyUpdateInventoryConfig({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.PartiallyUpdateInventoryConfigParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.ApplicationInventory>;
|
|
482
288
|
/**
|
|
@@ -485,38 +291,41 @@ declare class Configuration {
|
|
|
485
291
|
*
|
|
486
292
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
487
293
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
488
|
-
* @returns {Promise<ConfigurationPlatformModel.
|
|
489
|
-
* Success response
|
|
294
|
+
* @returns {Promise<ConfigurationPlatformModel.SuccessMessageResponseSchema>}
|
|
295
|
+
* - Success response
|
|
296
|
+
*
|
|
490
297
|
* @name removeDomainById
|
|
491
|
-
* @summary: Remove domain
|
|
492
|
-
* @description: Delete a specific domain from the
|
|
298
|
+
* @summary: Remove domain
|
|
299
|
+
* @description: Delete a specific domain from the sales channel. Delete a domain (secondary or shortlink domain) added to a sales channel. It will disable user's access to website, shared links, and other features associated with this domain. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/removeDomainById/).
|
|
493
300
|
*/
|
|
494
|
-
removeDomainById({
|
|
301
|
+
removeDomainById({ id, requestHeaders }?: ConfigurationPlatformApplicationValidator.RemoveDomainByIdParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.SuccessMessageResponseSchema>;
|
|
495
302
|
/**
|
|
496
303
|
* @param {ConfigurationPlatformApplicationValidator.RemoveOrderingStoreCookieParam} arg
|
|
497
304
|
* - Arg object
|
|
498
305
|
*
|
|
499
306
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
500
307
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
501
|
-
* @returns {Promise<ConfigurationPlatformModel.
|
|
502
|
-
* Success response
|
|
308
|
+
* @returns {Promise<ConfigurationPlatformModel.SuccessMessageResponseSchema>}
|
|
309
|
+
* - Success response
|
|
310
|
+
*
|
|
503
311
|
* @name removeOrderingStoreCookie
|
|
504
|
-
* @summary:
|
|
312
|
+
* @summary: Delete Ordering Store signed cookie
|
|
505
313
|
* @description: Use this API to unset the Ordering Store cookie upon changing the sales channel, by its domain URL, in the Universal Fynd Store app. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/removeOrderingStoreCookie/).
|
|
506
314
|
*/
|
|
507
|
-
removeOrderingStoreCookie({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.
|
|
315
|
+
removeOrderingStoreCookie({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.SuccessMessageResponseSchema>;
|
|
508
316
|
/**
|
|
509
317
|
* @param {ConfigurationPlatformApplicationValidator.UpdateAppApiTokensParam} arg
|
|
510
318
|
* - Arg object
|
|
511
319
|
*
|
|
512
320
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
513
321
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
514
|
-
* @returns {Promise<ConfigurationPlatformModel.
|
|
322
|
+
* @returns {Promise<ConfigurationPlatformModel.TokenResponseSchema>} -
|
|
323
|
+
* Success response
|
|
515
324
|
* @name updateAppApiTokens
|
|
516
|
-
* @summary: Update
|
|
517
|
-
* @description: Add
|
|
325
|
+
* @summary: Update sales channel API tokens
|
|
326
|
+
* @description: Add and edit the tokens used for integrating Firebase, MoEngage, Segment, GTM, Freshchat, Safetynet, Google Map, Google and Facebook auth. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/updateAppApiTokens/).
|
|
518
327
|
*/
|
|
519
|
-
updateAppApiTokens({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateAppApiTokensParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.
|
|
328
|
+
updateAppApiTokens({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateAppApiTokensParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.TokenResponseSchema>;
|
|
520
329
|
/**
|
|
521
330
|
* @param {ConfigurationPlatformApplicationValidator.UpdateAppBasicDetailsParam} arg
|
|
522
331
|
* - Arg object
|
|
@@ -525,7 +334,7 @@ declare class Configuration {
|
|
|
525
334
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
526
335
|
* @returns {Promise<ConfigurationPlatformModel.ApplicationDetail>} - Success response
|
|
527
336
|
* @name updateAppBasicDetails
|
|
528
|
-
* @summary: Update
|
|
337
|
+
* @summary: Update sales channel basic details
|
|
529
338
|
* @description: Modify sales channel details like name, description, logo, domain, company ID, and other related information. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/updateAppBasicDetails/).
|
|
530
339
|
*/
|
|
531
340
|
updateAppBasicDetails({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateAppBasicDetailsParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.ApplicationDetail>;
|
|
@@ -538,8 +347,8 @@ declare class Configuration {
|
|
|
538
347
|
* @returns {Promise<ConfigurationPlatformModel.ApplicationInformation>} -
|
|
539
348
|
* Success response
|
|
540
349
|
* @name updateAppContactInfo
|
|
541
|
-
* @summary: Update
|
|
542
|
-
* @description: Modify the social links, copyright text, business highlights, address and contact information of the company/seller/brand operating the
|
|
350
|
+
* @summary: Update sales channel contact
|
|
351
|
+
* @description: Modify the social links, copyright text, business highlights, address and contact information of the company/seller/brand operating the sales channel. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/updateAppContactInfo/).
|
|
543
352
|
*/
|
|
544
353
|
updateAppContactInfo({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateAppContactInfoParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.ApplicationInformation>;
|
|
545
354
|
/**
|
|
@@ -551,8 +360,8 @@ declare class Configuration {
|
|
|
551
360
|
* @returns {Promise<ConfigurationPlatformModel.AppSupportedCurrency>} -
|
|
552
361
|
* Success response
|
|
553
362
|
* @name updateAppCurrencyConfig
|
|
554
|
-
* @summary: Update
|
|
555
|
-
* @description: Modify currency configuration settings for the
|
|
363
|
+
* @summary: Update sales channel currency configuration
|
|
364
|
+
* @description: Modify currency configuration settings for the sales channel. Add and edit the currencies supported in the sales channel. Initially, INR will be enabled by default. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/updateAppCurrencyConfig/).
|
|
556
365
|
*/
|
|
557
366
|
updateAppCurrencyConfig({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateAppCurrencyConfigParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.AppSupportedCurrency>;
|
|
558
367
|
/**
|
|
@@ -563,34 +372,23 @@ declare class Configuration {
|
|
|
563
372
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
564
373
|
* @returns {Promise<ConfigurationPlatformModel.AppFeature>} - Success response
|
|
565
374
|
* @name updateAppFeatures
|
|
566
|
-
* @summary: Update
|
|
375
|
+
* @summary: Update sales channel
|
|
567
376
|
* @description: Modify the feature configuration of sales channel websites, such as product detail, landing page, options in the login/registration screen, home page, listing page, reward points, communication opt-in, cart options and many more. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/updateAppFeatures/).
|
|
568
377
|
*/
|
|
569
378
|
updateAppFeatures({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateAppFeaturesParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.AppFeature>;
|
|
570
379
|
/**
|
|
571
|
-
* @param {ConfigurationPlatformApplicationValidator.
|
|
380
|
+
* @param {ConfigurationPlatformApplicationValidator.UpdateBuildConfigParam} arg
|
|
572
381
|
* - Arg object
|
|
573
382
|
*
|
|
574
383
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
575
384
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
576
|
-
* @returns {Promise<ConfigurationPlatformModel.
|
|
577
|
-
*
|
|
578
|
-
* @
|
|
579
|
-
* @
|
|
580
|
-
|
|
581
|
-
updateApplication({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateApplicationParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.Application>;
|
|
582
|
-
/**
|
|
583
|
-
* @param {ConfigurationPlatformApplicationValidator.UpdateApplicationVersionParam} arg
|
|
584
|
-
* - Arg object
|
|
585
|
-
*
|
|
586
|
-
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
587
|
-
* @param {import("../PlatformAPIClient").Options} - Options
|
|
588
|
-
* @returns {Promise<ConfigurationPlatformModel.PlatformVersion>} - Success response
|
|
589
|
-
* @name updateApplicationVersion
|
|
590
|
-
* @summary: Update Application Version
|
|
591
|
-
* @description: Updates the version details of an application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/updateApplicationVersion/).
|
|
385
|
+
* @returns {Promise<ConfigurationPlatformModel.MobileAppConfiguration>} -
|
|
386
|
+
* Success response
|
|
387
|
+
* @name updateBuildConfig
|
|
388
|
+
* @summary: Update build configuration
|
|
389
|
+
* @description: Modify the existing build configuration, such as app name, landing page image, splash image used in a mobile build. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/updateBuildConfig/).
|
|
592
390
|
*/
|
|
593
|
-
|
|
391
|
+
updateBuildConfig({ platformType, body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateBuildConfigParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.MobileAppConfiguration>;
|
|
594
392
|
/**
|
|
595
393
|
* @param {ConfigurationPlatformApplicationValidator.UpdateInventoryConfigParam} arg
|
|
596
394
|
* - Arg object
|
|
@@ -600,7 +398,7 @@ declare class Configuration {
|
|
|
600
398
|
* @returns {Promise<ConfigurationPlatformModel.ApplicationInventory>} -
|
|
601
399
|
* Success response
|
|
602
400
|
* @name updateInventoryConfig
|
|
603
|
-
* @summary: Update inventory configuration
|
|
401
|
+
* @summary: Update inventory configuration
|
|
604
402
|
* @description: Modify the configuration details of authentication, inventory, article assignment rules, reward points, cart, payment, order, logistics, etc. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/updateInventoryConfig/).
|
|
605
403
|
*/
|
|
606
404
|
updateInventoryConfig({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateInventoryConfigParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.ApplicationInventory>;
|
|
@@ -612,23 +410,10 @@ declare class Configuration {
|
|
|
612
410
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
613
411
|
* @returns {Promise<ConfigurationPlatformModel.DeploymentMeta>} - Success response
|
|
614
412
|
* @name updateOrderingStoreConfig
|
|
615
|
-
* @summary: Update ordering store configuration
|
|
616
|
-
* @description: Modify configuration settings for ordering stores. Edit the details of the deployment stores (the selling locations where the
|
|
413
|
+
* @summary: Update ordering store configuration
|
|
414
|
+
* @description: Modify configuration settings for ordering stores. Edit the details of the deployment stores (the selling locations where the sales channel will be utilised for placing orders) - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/updateOrderingStoreConfig/).
|
|
617
415
|
*/
|
|
618
416
|
updateOrderingStoreConfig({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateOrderingStoreConfigParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.DeploymentMeta>;
|
|
619
|
-
/**
|
|
620
|
-
* @param {ConfigurationPlatformApplicationValidator.UpdateUrlRedirectionParam} arg
|
|
621
|
-
* - Arg object
|
|
622
|
-
*
|
|
623
|
-
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
624
|
-
* @param {import("../PlatformAPIClient").Options} - Options
|
|
625
|
-
* @returns {Promise<ConfigurationPlatformModel.UrlRedirection>} - Success response
|
|
626
|
-
* @name updateUrlRedirection
|
|
627
|
-
* @summary: Update a URL redirection
|
|
628
|
-
* @description: Update a new URL redirection - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/updateUrlRedirection/).
|
|
629
|
-
*/
|
|
630
|
-
updateUrlRedirection({ redirectionDomainId, body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateUrlRedirectionParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.UrlRedirection>;
|
|
631
417
|
}
|
|
632
418
|
import ConfigurationPlatformApplicationValidator = require("./ConfigurationPlatformApplicationValidator");
|
|
633
419
|
import ConfigurationPlatformModel = require("./ConfigurationPlatformModel");
|
|
634
|
-
import Paginator = require("../../common/Paginator");
|