@gofynd/fdk-client-javascript 1.4.15-beta.14 → 1.4.15-beta.15
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 +23 -26
- package/package.json +5 -1
- package/sdk/application/ApplicationClient.d.ts +5 -6
- package/sdk/application/ApplicationClient.js +24 -20
- package/sdk/application/Cart/CartApplicationClient.d.ts +133 -83
- package/sdk/application/Cart/CartApplicationClient.js +444 -76
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +132 -114
- package/sdk/application/Catalog/CatalogApplicationClient.js +209 -126
- package/sdk/application/Common/CommonApplicationClient.d.ts +4 -4
- package/sdk/application/Common/CommonApplicationClient.js +4 -4
- package/sdk/application/Communication/CommunicationApplicationClient.d.ts +3 -3
- package/sdk/application/Communication/CommunicationApplicationClient.js +3 -3
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +58 -36
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +73 -29
- package/sdk/application/Content/ContentApplicationClient.d.ts +95 -66
- package/sdk/application/Content/ContentApplicationClient.js +274 -111
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +11 -11
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +10 -10
- package/sdk/application/Finance/FinanceApplicationClient.d.ts +29 -0
- package/sdk/application/Finance/FinanceApplicationClient.js +111 -0
- package/sdk/application/Lead/LeadApplicationClient.d.ts +7 -7
- package/sdk/application/Lead/LeadApplicationClient.js +6 -6
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +37 -57
- package/sdk/application/Logistic/LogisticApplicationClient.js +117 -180
- package/sdk/application/Order/OrderApplicationClient.d.ts +63 -21
- package/sdk/application/Order/OrderApplicationClient.js +217 -17
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +179 -149
- package/sdk/application/Payment/PaymentApplicationClient.js +301 -167
- package/sdk/application/Share/ShareApplicationClient.d.ts +7 -7
- package/sdk/application/Share/ShareApplicationClient.js +7 -7
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +7 -7
- package/sdk/application/Theme/ThemeApplicationClient.js +10 -6
- package/sdk/application/User/UserApplicationClient.d.ts +103 -53
- package/sdk/application/User/UserApplicationClient.js +308 -49
- package/sdk/common/AxiosHelper.js +11 -4
- package/sdk/common/Constant.d.ts +27 -4
- package/sdk/common/Constant.js +33 -6
- package/sdk/common/utils.d.ts +10 -0
- package/sdk/common/utils.js +24 -3
- package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +46 -16
- package/sdk/partner/FileStorage/FileStoragePartnerClient.js +266 -40
- package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +163 -19
- package/sdk/partner/FileStorage/FileStoragePartnerModel.js +158 -14
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +5 -2
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +23 -7
- package/sdk/partner/Lead/LeadPartnerClient.d.ts +9 -9
- package/sdk/partner/Lead/LeadPartnerClient.js +9 -9
- package/sdk/partner/Lead/LeadPartnerModel.d.ts +14 -9
- package/sdk/partner/Lead/LeadPartnerModel.js +19 -17
- package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +264 -49
- package/sdk/partner/Logistics/LogisticsPartnerClient.js +2116 -252
- package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +2256 -258
- package/sdk/partner/Logistics/LogisticsPartnerModel.js +1187 -230
- package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +21 -1
- package/sdk/partner/Logistics/LogisticsPartnerValidator.js +218 -13
- package/sdk/partner/PartnerClient.d.ts +5 -2
- package/sdk/partner/PartnerClient.js +21 -7
- package/sdk/partner/Theme/ThemePartnerClient.d.ts +32 -34
- package/sdk/partner/Theme/ThemePartnerClient.js +42 -44
- package/sdk/partner/Theme/ThemePartnerModel.d.ts +142 -43
- package/sdk/partner/Theme/ThemePartnerModel.js +129 -44
- package/sdk/partner/Theme/ThemePartnerValidator.js +4 -4
- package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +83 -27
- package/sdk/partner/Webhook/WebhookPartnerClient.js +446 -27
- package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +920 -185
- package/sdk/partner/Webhook/WebhookPartnerModel.js +462 -154
- package/sdk/partner/Webhook/WebhookPartnerValidator.d.ts +5 -0
- package/sdk/partner/Webhook/WebhookPartnerValidator.js +41 -3
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +8 -7
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +17 -11
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +4 -1
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +1 -1
- package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +68 -13
- package/sdk/platform/Analytics/AnalyticsPlatformModel.js +44 -6
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +3 -33
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +4 -244
- 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 +15 -15
- package/sdk/platform/Billing/BillingPlatformClient.js +18 -18
- 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 +266 -203
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +1446 -500
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +729 -100
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +446 -82
- package/sdk/platform/Cart/CartPlatformModel.d.ts +6927 -1396
- package/sdk/platform/Cart/CartPlatformModel.js +3065 -1316
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +433 -248
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +1662 -559
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +464 -159
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +304 -87
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +383 -234
- package/sdk/platform/Catalog/CatalogPlatformClient.js +2475 -1557
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +9573 -2678
- package/sdk/platform/Catalog/CatalogPlatformModel.js +5033 -1973
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +364 -117
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +281 -104
- package/sdk/platform/Common/CommonPlatformClient.d.ts +5 -4
- package/sdk/platform/Common/CommonPlatformClient.js +6 -5
- package/sdk/platform/Common/CommonPlatformModel.d.ts +36 -25
- package/sdk/platform/Common/CommonPlatformModel.js +25 -14
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +80 -153
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +102 -541
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +36 -49
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +20 -60
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +1 -1
- package/sdk/platform/Communication/CommunicationPlatformClient.js +1 -1
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +189 -43
- package/sdk/platform/Communication/CommunicationPlatformModel.js +165 -42
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +58 -81
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +68 -116
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +291 -249
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +243 -234
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +12 -12
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +12 -12
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +78 -65
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +101 -88
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +20 -20
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +19 -19
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +68 -34
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +174 -41
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +667 -244
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +474 -155
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +37 -9
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +27 -8
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +366 -280
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +1435 -753
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +323 -223
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +335 -205
- package/sdk/platform/Content/ContentPlatformClient.d.ts +304 -106
- package/sdk/platform/Content/ContentPlatformClient.js +1842 -450
- package/sdk/platform/Content/ContentPlatformModel.d.ts +2582 -566
- package/sdk/platform/Content/ContentPlatformModel.js +1426 -558
- package/sdk/platform/Content/ContentPlatformValidator.d.ts +293 -114
- package/sdk/platform/Content/ContentPlatformValidator.js +328 -101
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +59 -23
- package/sdk/platform/Discount/DiscountPlatformClient.js +84 -23
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +403 -110
- package/sdk/platform/Discount/DiscountPlatformModel.js +121 -107
- package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +56 -36
- package/sdk/platform/Discount/DiscountPlatformValidator.js +29 -19
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +12 -110
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +14 -684
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +5 -94
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +4 -115
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +20 -20
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +22 -22
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +90 -920
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +53 -949
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +10 -10
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +10 -10
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +11 -11
- package/sdk/platform/Lead/LeadPlatformClient.js +11 -11
- package/sdk/platform/Lead/LeadPlatformModel.d.ts +14 -9
- package/sdk/platform/Lead/LeadPlatformModel.js +20 -18
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +56 -9
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +340 -10
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +128 -24
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +81 -19
- package/sdk/platform/Order/OrderPlatformClient.d.ts +517 -160
- package/sdk/platform/Order/OrderPlatformClient.js +1623 -384
- package/sdk/platform/Order/OrderPlatformModel.d.ts +10372 -1587
- package/sdk/platform/Order/OrderPlatformModel.js +5726 -1512
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +539 -123
- package/sdk/platform/Order/OrderPlatformValidator.js +323 -92
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +8 -6
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +11 -9
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +6 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +3 -2
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +77 -25
- package/sdk/platform/Partner/PartnerPlatformModel.js +32 -21
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +144 -219
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +307 -796
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +86 -121
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +80 -138
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +30 -30
- package/sdk/platform/Payment/PaymentPlatformClient.js +30 -30
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +901 -761
- package/sdk/platform/Payment/PaymentPlatformModel.js +663 -583
- package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +8 -8
- package/sdk/platform/Payment/PaymentPlatformValidator.js +8 -8
- package/sdk/platform/PlatformApplicationClient.d.ts +0 -2
- package/sdk/platform/PlatformApplicationClient.js +0 -4
- package/sdk/platform/PlatformClient.d.ts +5 -4
- package/sdk/platform/PlatformClient.js +32 -22
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +526 -69
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +3337 -337
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +603 -38
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +529 -32
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +184 -133
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +780 -491
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +9408 -1666
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +5720 -1765
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +257 -180
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +185 -127
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +7 -7
- package/sdk/platform/Share/SharePlatformApplicationClient.js +7 -7
- package/sdk/platform/Share/SharePlatformModel.d.ts +45 -9
- package/sdk/platform/Share/SharePlatformModel.js +31 -6
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +26 -26
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +38 -29
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +18 -3
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +10 -2
- package/sdk/platform/Theme/ThemePlatformClient.d.ts +4 -4
- package/sdk/platform/Theme/ThemePlatformClient.js +4 -4
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +103 -17
- package/sdk/platform/Theme/ThemePlatformModel.js +92 -23
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +167 -45
- package/sdk/platform/User/UserPlatformApplicationClient.js +950 -67
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +189 -3
- package/sdk/platform/User/UserPlatformApplicationValidator.js +157 -3
- package/sdk/platform/User/UserPlatformModel.d.ts +880 -47
- package/sdk/platform/User/UserPlatformModel.js +607 -46
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +33 -86
- package/sdk/platform/Webhook/WebhookPlatformClient.js +79 -474
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +861 -422
- package/sdk/platform/Webhook/WebhookPlatformModel.js +469 -391
- package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +10 -55
- package/sdk/platform/Webhook/WebhookPlatformValidator.js +12 -72
- package/sdk/platform/index.d.ts +0 -2
- package/sdk/platform/index.js +0 -4
- 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 +5 -4
- package/sdk/public/Configuration/ConfigurationPublicClient.js +9 -8
- package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +41 -21
- package/sdk/public/Configuration/ConfigurationPublicModel.js +28 -12
- package/sdk/public/Content/ContentPublicClient.d.ts +145 -2
- package/sdk/public/Content/ContentPublicClient.js +1067 -17
- package/sdk/public/Content/ContentPublicModel.d.ts +704 -3
- package/sdk/public/Content/ContentPublicModel.js +751 -3
- package/sdk/public/Content/ContentPublicValidator.d.ts +94 -3
- package/sdk/public/Content/ContentPublicValidator.js +119 -2
- package/sdk/public/Partner/PartnerPublicClient.d.ts +1 -1
- package/sdk/public/Partner/PartnerPublicClient.js +1 -1
- 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 +5 -2
- package/sdk/public/PublicClient.js +16 -6
- package/sdk/public/Webhook/WebhookPublicClient.d.ts +13 -13
- package/sdk/public/Webhook/WebhookPublicClient.js +13 -13
- package/sdk/public/Webhook/WebhookPublicModel.d.ts +249 -67
- package/sdk/public/Webhook/WebhookPublicModel.js +81 -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/utility.d.ts +3 -0
- package/utility.js +7 -0
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +0 -79
- package/sdk/application/Rewards/RewardsApplicationClient.js +0 -315
- package/sdk/application/Webhook/WebhookApplicationClient.d.ts +0 -19
- package/sdk/application/Webhook/WebhookApplicationClient.js +0 -72
- 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 -2890
- package/sdk/platform/Finance/FinancePlatformModel.js +0 -2148
- package/sdk/platform/Finance/FinancePlatformValidator.d.ts +0 -284
- package/sdk/platform/Finance/FinancePlatformValidator.js +0 -354
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +0 -136
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +0 -976
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +0 -152
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +0 -157
- package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +0 -382
- package/sdk/platform/Rewards/RewardsPlatformModel.js +0 -408
|
@@ -2,24 +2,24 @@ export = CompanyProfilePlatformValidator;
|
|
|
2
2
|
/** @typedef CbsOnboardGetParam */
|
|
3
3
|
/**
|
|
4
4
|
* @typedef CreateBrandParam
|
|
5
|
-
* @property {CompanyProfilePlatformModel.
|
|
5
|
+
* @property {CompanyProfilePlatformModel.CreateBrandRequestSchema} body
|
|
6
6
|
*/
|
|
7
7
|
/**
|
|
8
8
|
* @typedef CreateCompanyBrandMappingParam
|
|
9
|
-
* @property {CompanyProfilePlatformModel.
|
|
9
|
+
* @property {CompanyProfilePlatformModel.CompanyBrandPostRequestSchema} body
|
|
10
10
|
*/
|
|
11
11
|
/**
|
|
12
12
|
* @typedef CreateLocationParam
|
|
13
|
-
* @property {CompanyProfilePlatformModel.
|
|
13
|
+
* @property {CompanyProfilePlatformModel.LocationSchema} body
|
|
14
14
|
*/
|
|
15
15
|
/**
|
|
16
16
|
* @typedef CreateLocationBulkParam
|
|
17
|
-
* @property {CompanyProfilePlatformModel.
|
|
17
|
+
* @property {CompanyProfilePlatformModel.BulkLocationSchema} body
|
|
18
18
|
*/
|
|
19
19
|
/**
|
|
20
20
|
* @typedef EditBrandParam
|
|
21
21
|
* @property {string} brandId - Id of the brand to be viewed.
|
|
22
|
-
* @property {CompanyProfilePlatformModel.
|
|
22
|
+
* @property {CompanyProfilePlatformModel.UpdateBrandRequestSchema} body
|
|
23
23
|
*/
|
|
24
24
|
/**
|
|
25
25
|
* @typedef GetBrandParam
|
|
@@ -63,7 +63,7 @@ export = CompanyProfilePlatformValidator;
|
|
|
63
63
|
/**
|
|
64
64
|
* @typedef UpdateLocationParam
|
|
65
65
|
* @property {string} locationId - Id of the location which you want to edit.
|
|
66
|
-
* @property {CompanyProfilePlatformModel.
|
|
66
|
+
* @property {CompanyProfilePlatformModel.LocationSchema} body
|
|
67
67
|
*/
|
|
68
68
|
declare class CompanyProfilePlatformValidator {
|
|
69
69
|
/** @returns {CbsOnboardGetParam} */
|
|
@@ -99,23 +99,23 @@ declare namespace CompanyProfilePlatformValidator {
|
|
|
99
99
|
export { CbsOnboardGetParam, CreateBrandParam, CreateCompanyBrandMappingParam, CreateLocationParam, CreateLocationBulkParam, EditBrandParam, GetBrandParam, GetBrandsParam, GetCompanyMetricsParam, GetLocationDetailParam, GetLocationTagsParam, GetLocationsParam, UpdateCompanyParam, UpdateLocationParam };
|
|
100
100
|
}
|
|
101
101
|
type CreateBrandParam = {
|
|
102
|
-
body: CompanyProfilePlatformModel.
|
|
102
|
+
body: CompanyProfilePlatformModel.CreateBrandRequestSchema;
|
|
103
103
|
};
|
|
104
104
|
type CreateCompanyBrandMappingParam = {
|
|
105
|
-
body: CompanyProfilePlatformModel.
|
|
105
|
+
body: CompanyProfilePlatformModel.CompanyBrandPostRequestSchema;
|
|
106
106
|
};
|
|
107
107
|
type CreateLocationParam = {
|
|
108
|
-
body: CompanyProfilePlatformModel.
|
|
108
|
+
body: CompanyProfilePlatformModel.LocationSchema;
|
|
109
109
|
};
|
|
110
110
|
type CreateLocationBulkParam = {
|
|
111
|
-
body: CompanyProfilePlatformModel.
|
|
111
|
+
body: CompanyProfilePlatformModel.BulkLocationSchema;
|
|
112
112
|
};
|
|
113
113
|
type EditBrandParam = {
|
|
114
114
|
/**
|
|
115
115
|
* - Id of the brand to be viewed.
|
|
116
116
|
*/
|
|
117
117
|
brandId: string;
|
|
118
|
-
body: CompanyProfilePlatformModel.
|
|
118
|
+
body: CompanyProfilePlatformModel.UpdateBrandRequestSchema;
|
|
119
119
|
};
|
|
120
120
|
type GetBrandParam = {
|
|
121
121
|
/**
|
|
@@ -193,7 +193,7 @@ type UpdateLocationParam = {
|
|
|
193
193
|
* - Id of the location which you want to edit.
|
|
194
194
|
*/
|
|
195
195
|
locationId: string;
|
|
196
|
-
body: CompanyProfilePlatformModel.
|
|
196
|
+
body: CompanyProfilePlatformModel.LocationSchema;
|
|
197
197
|
};
|
|
198
198
|
type CbsOnboardGetParam = any;
|
|
199
199
|
type GetCompanyMetricsParam = any;
|
|
@@ -6,28 +6,28 @@ const CompanyProfilePlatformModel = require("./CompanyProfilePlatformModel");
|
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
8
|
* @typedef CreateBrandParam
|
|
9
|
-
* @property {CompanyProfilePlatformModel.
|
|
9
|
+
* @property {CompanyProfilePlatformModel.CreateBrandRequestSchema} body
|
|
10
10
|
*/
|
|
11
11
|
|
|
12
12
|
/**
|
|
13
13
|
* @typedef CreateCompanyBrandMappingParam
|
|
14
|
-
* @property {CompanyProfilePlatformModel.
|
|
14
|
+
* @property {CompanyProfilePlatformModel.CompanyBrandPostRequestSchema} body
|
|
15
15
|
*/
|
|
16
16
|
|
|
17
17
|
/**
|
|
18
18
|
* @typedef CreateLocationParam
|
|
19
|
-
* @property {CompanyProfilePlatformModel.
|
|
19
|
+
* @property {CompanyProfilePlatformModel.LocationSchema} body
|
|
20
20
|
*/
|
|
21
21
|
|
|
22
22
|
/**
|
|
23
23
|
* @typedef CreateLocationBulkParam
|
|
24
|
-
* @property {CompanyProfilePlatformModel.
|
|
24
|
+
* @property {CompanyProfilePlatformModel.BulkLocationSchema} body
|
|
25
25
|
*/
|
|
26
26
|
|
|
27
27
|
/**
|
|
28
28
|
* @typedef EditBrandParam
|
|
29
29
|
* @property {string} brandId - Id of the brand to be viewed.
|
|
30
|
-
* @property {CompanyProfilePlatformModel.
|
|
30
|
+
* @property {CompanyProfilePlatformModel.UpdateBrandRequestSchema} body
|
|
31
31
|
*/
|
|
32
32
|
|
|
33
33
|
/**
|
|
@@ -79,7 +79,7 @@ const CompanyProfilePlatformModel = require("./CompanyProfilePlatformModel");
|
|
|
79
79
|
/**
|
|
80
80
|
* @typedef UpdateLocationParam
|
|
81
81
|
* @property {string} locationId - Id of the location which you want to edit.
|
|
82
|
-
* @property {CompanyProfilePlatformModel.
|
|
82
|
+
* @property {CompanyProfilePlatformModel.LocationSchema} body
|
|
83
83
|
*/
|
|
84
84
|
|
|
85
85
|
class CompanyProfilePlatformValidator {
|
|
@@ -91,28 +91,28 @@ class CompanyProfilePlatformValidator {
|
|
|
91
91
|
/** @returns {CreateBrandParam} */
|
|
92
92
|
static createBrand() {
|
|
93
93
|
return Joi.object({
|
|
94
|
-
body: CompanyProfilePlatformModel.
|
|
94
|
+
body: CompanyProfilePlatformModel.CreateBrandRequestSchema().required(),
|
|
95
95
|
}).required();
|
|
96
96
|
}
|
|
97
97
|
|
|
98
98
|
/** @returns {CreateCompanyBrandMappingParam} */
|
|
99
99
|
static createCompanyBrandMapping() {
|
|
100
100
|
return Joi.object({
|
|
101
|
-
body: CompanyProfilePlatformModel.
|
|
101
|
+
body: CompanyProfilePlatformModel.CompanyBrandPostRequestSchema().required(),
|
|
102
102
|
}).required();
|
|
103
103
|
}
|
|
104
104
|
|
|
105
105
|
/** @returns {CreateLocationParam} */
|
|
106
106
|
static createLocation() {
|
|
107
107
|
return Joi.object({
|
|
108
|
-
body: CompanyProfilePlatformModel.
|
|
108
|
+
body: CompanyProfilePlatformModel.LocationSchema().required(),
|
|
109
109
|
}).required();
|
|
110
110
|
}
|
|
111
111
|
|
|
112
112
|
/** @returns {CreateLocationBulkParam} */
|
|
113
113
|
static createLocationBulk() {
|
|
114
114
|
return Joi.object({
|
|
115
|
-
body: CompanyProfilePlatformModel.
|
|
115
|
+
body: CompanyProfilePlatformModel.BulkLocationSchema().required(),
|
|
116
116
|
}).required();
|
|
117
117
|
}
|
|
118
118
|
|
|
@@ -120,7 +120,7 @@ class CompanyProfilePlatformValidator {
|
|
|
120
120
|
static editBrand() {
|
|
121
121
|
return Joi.object({
|
|
122
122
|
brandId: Joi.string().allow("").required(),
|
|
123
|
-
body: CompanyProfilePlatformModel.
|
|
123
|
+
body: CompanyProfilePlatformModel.UpdateBrandRequestSchema().required(),
|
|
124
124
|
}).required();
|
|
125
125
|
}
|
|
126
126
|
|
|
@@ -182,7 +182,7 @@ class CompanyProfilePlatformValidator {
|
|
|
182
182
|
static updateLocation() {
|
|
183
183
|
return Joi.object({
|
|
184
184
|
locationId: Joi.string().allow("").required(),
|
|
185
|
-
body: CompanyProfilePlatformModel.
|
|
185
|
+
body: CompanyProfilePlatformModel.LocationSchema().required(),
|
|
186
186
|
}).required();
|
|
187
187
|
}
|
|
188
188
|
}
|
|
@@ -10,7 +10,7 @@ declare class Configuration {
|
|
|
10
10
|
* @returns {Promise<ConfigurationPlatformModel.Domain>} - Success response
|
|
11
11
|
* @name addDomain
|
|
12
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://
|
|
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://docs.fynd.com/partners/commerce/sdk/platform/configuration/addDomain/).
|
|
14
14
|
*/
|
|
15
15
|
addDomain({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.AddDomainParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.Domain>;
|
|
16
16
|
/**
|
|
@@ -19,24 +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
25
|
* @summary: Update domain
|
|
25
|
-
* @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://
|
|
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://docs.fynd.com/partners/commerce/sdk/platform/configuration/changeDomainType/).
|
|
26
27
|
*/
|
|
27
|
-
changeDomainType({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.ChangeDomainTypeParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.
|
|
28
|
+
changeDomainType({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.ChangeDomainTypeParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.DomainsResponseSchema>;
|
|
28
29
|
/**
|
|
29
30
|
* @param {ConfigurationPlatformApplicationValidator.GetAppApiTokensParam} arg
|
|
30
31
|
* - Arg object
|
|
31
32
|
*
|
|
32
33
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
33
34
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
34
|
-
* @returns {Promise<ConfigurationPlatformModel.
|
|
35
|
+
* @returns {Promise<ConfigurationPlatformModel.TokenResponseSchema>} -
|
|
36
|
+
* Success response
|
|
35
37
|
* @name getAppApiTokens
|
|
36
38
|
* @summary: Get sales channel API tokens
|
|
37
|
-
* @description: Retrieve the tokens used for integrating Firebase, MoEngage, Segment, GTM, Freshchat, Safetynet, Google Map, Google, and Facebook auth.
|
|
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://docs.fynd.com/partners/commerce/sdk/platform/configuration/getAppApiTokens/).
|
|
38
40
|
*/
|
|
39
|
-
getAppApiTokens({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.
|
|
41
|
+
getAppApiTokens({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.TokenResponseSchema>;
|
|
40
42
|
/**
|
|
41
43
|
* @param {ConfigurationPlatformApplicationValidator.GetAppBasicDetailsParam} arg
|
|
42
44
|
* - Arg object
|
|
@@ -46,7 +48,7 @@ declare class Configuration {
|
|
|
46
48
|
* @returns {Promise<ConfigurationPlatformModel.ApplicationDetail>} - Success response
|
|
47
49
|
* @name getAppBasicDetails
|
|
48
50
|
* @summary: Get sales channel
|
|
49
|
-
* @description: Shows basic sales channel details like name, description, logo, domain, company ID, and other related information. - Check out [method documentation](https://
|
|
51
|
+
* @description: Shows basic sales channel details like name, description, logo, domain, company ID, and other related information. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/getAppBasicDetails/).
|
|
50
52
|
*/
|
|
51
53
|
getAppBasicDetails({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.ApplicationDetail>;
|
|
52
54
|
/**
|
|
@@ -55,12 +57,13 @@ declare class Configuration {
|
|
|
55
57
|
*
|
|
56
58
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
57
59
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
58
|
-
* @returns {Promise<ConfigurationPlatformModel.
|
|
60
|
+
* @returns {Promise<ConfigurationPlatformModel.CompaniesResponseSchema>} -
|
|
61
|
+
* Success response
|
|
59
62
|
* @name getAppCompanies
|
|
60
63
|
* @summary: List sales channel companies
|
|
61
|
-
* @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://
|
|
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://docs.fynd.com/partners/commerce/sdk/platform/configuration/getAppCompanies/).
|
|
62
65
|
*/
|
|
63
|
-
getAppCompanies({ uid, pageNo, pageSize, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetAppCompaniesParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.
|
|
66
|
+
getAppCompanies({ uid, pageNo, pageSize, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetAppCompaniesParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.CompaniesResponseSchema>;
|
|
64
67
|
/**
|
|
65
68
|
* @param {ConfigurationPlatformApplicationValidator.GetAppContactInfoParam} arg
|
|
66
69
|
* - Arg object
|
|
@@ -71,7 +74,7 @@ declare class Configuration {
|
|
|
71
74
|
* Success response
|
|
72
75
|
* @name getAppContactInfo
|
|
73
76
|
* @summary: Get sales channel contact
|
|
74
|
-
* @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://
|
|
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://docs.fynd.com/partners/commerce/sdk/platform/configuration/getAppContactInfo/).
|
|
75
78
|
*/
|
|
76
79
|
getAppContactInfo({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.ApplicationInformation>;
|
|
77
80
|
/**
|
|
@@ -84,7 +87,7 @@ declare class Configuration {
|
|
|
84
87
|
* Success response
|
|
85
88
|
* @name getAppCurrencyConfig
|
|
86
89
|
* @summary: Get sales channel currency configuration
|
|
87
|
-
* @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://
|
|
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://docs.fynd.com/partners/commerce/sdk/platform/configuration/getAppCurrencyConfig/).
|
|
88
91
|
*/
|
|
89
92
|
getAppCurrencyConfig({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.AppSupportedCurrency>;
|
|
90
93
|
/**
|
|
@@ -93,38 +96,41 @@ declare class Configuration {
|
|
|
93
96
|
*
|
|
94
97
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
95
98
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
96
|
-
* @returns {Promise<ConfigurationPlatformModel.
|
|
97
|
-
* Success response
|
|
99
|
+
* @returns {Promise<ConfigurationPlatformModel.AppFeatureResponseSchema>}
|
|
100
|
+
* - Success response
|
|
101
|
+
*
|
|
98
102
|
* @name getAppFeatures
|
|
99
103
|
* @summary: Get sales channel
|
|
100
|
-
* @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://
|
|
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://docs.fynd.com/partners/commerce/sdk/platform/configuration/getAppFeatures/).
|
|
101
105
|
*/
|
|
102
|
-
getAppFeatures({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.
|
|
106
|
+
getAppFeatures({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.AppFeatureResponseSchema>;
|
|
103
107
|
/**
|
|
104
108
|
* @param {ConfigurationPlatformApplicationValidator.GetAppStoresParam} arg
|
|
105
109
|
* - Arg object
|
|
106
110
|
*
|
|
107
111
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
108
112
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
109
|
-
* @returns {Promise<ConfigurationPlatformModel.
|
|
113
|
+
* @returns {Promise<ConfigurationPlatformModel.StoresResponseSchema>} -
|
|
114
|
+
* Success response
|
|
110
115
|
* @name getAppStores
|
|
111
116
|
* @summary: list sales channel stores
|
|
112
|
-
* @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://
|
|
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://docs.fynd.com/partners/commerce/sdk/platform/configuration/getAppStores/).
|
|
113
118
|
*/
|
|
114
|
-
getAppStores({ pageNo, pageSize, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetAppStoresParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.
|
|
119
|
+
getAppStores({ pageNo, pageSize, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetAppStoresParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.StoresResponseSchema>;
|
|
115
120
|
/**
|
|
116
121
|
* @param {ConfigurationPlatformApplicationValidator.GetAppSupportedCurrencyParam} arg
|
|
117
122
|
* - Arg object
|
|
118
123
|
*
|
|
119
124
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
120
125
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
121
|
-
* @returns {Promise<ConfigurationPlatformModel.
|
|
122
|
-
* Success response
|
|
126
|
+
* @returns {Promise<ConfigurationPlatformModel.AppCurrencyResponseSchema>}
|
|
127
|
+
* - Success response
|
|
128
|
+
*
|
|
123
129
|
* @name getAppSupportedCurrency
|
|
124
130
|
* @summary: List supported currencies
|
|
125
|
-
* @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://
|
|
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://docs.fynd.com/partners/commerce/sdk/platform/configuration/getAppSupportedCurrency/).
|
|
126
132
|
*/
|
|
127
|
-
getAppSupportedCurrency({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.
|
|
133
|
+
getAppSupportedCurrency({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.AppCurrencyResponseSchema>;
|
|
128
134
|
/**
|
|
129
135
|
* @param {ConfigurationPlatformApplicationValidator.GetApplicationByIdParam} arg
|
|
130
136
|
* - Arg object
|
|
@@ -134,7 +140,7 @@ declare class Configuration {
|
|
|
134
140
|
* @returns {Promise<ConfigurationPlatformModel.ApplicationById>} - Success response
|
|
135
141
|
* @name getApplicationById
|
|
136
142
|
* @summary: Get sales channel by id
|
|
137
|
-
* @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://
|
|
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://docs.fynd.com/partners/commerce/sdk/platform/configuration/getApplicationById/).
|
|
138
144
|
*/
|
|
139
145
|
getApplicationById({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.ApplicationById>;
|
|
140
146
|
/**
|
|
@@ -147,7 +153,7 @@ declare class Configuration {
|
|
|
147
153
|
* Success response
|
|
148
154
|
* @name getBuildConfig
|
|
149
155
|
* @summary: Get Build Configuration
|
|
150
|
-
* @description: Retrieve latest build configuration, such as app name, landing page image, splash image used in a mobile build. - Check out [method documentation](https://
|
|
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://docs.fynd.com/partners/commerce/sdk/platform/configuration/getBuildConfig/).
|
|
151
157
|
*/
|
|
152
158
|
getBuildConfig({ platformType, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetBuildConfigParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.MobileAppConfiguration>;
|
|
153
159
|
/**
|
|
@@ -156,23 +162,25 @@ declare class Configuration {
|
|
|
156
162
|
*
|
|
157
163
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
158
164
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
159
|
-
* @returns {Promise<ConfigurationPlatformModel.
|
|
160
|
-
* Success response
|
|
165
|
+
* @returns {Promise<ConfigurationPlatformModel.DomainStatusResponseSchema>}
|
|
166
|
+
* - Success response
|
|
167
|
+
*
|
|
161
168
|
* @name getDomainStatus
|
|
162
169
|
* @summary: Get domain status
|
|
163
|
-
* @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://
|
|
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://docs.fynd.com/partners/commerce/sdk/platform/configuration/getDomainStatus/).
|
|
164
171
|
*/
|
|
165
|
-
getDomainStatus({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetDomainStatusParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.
|
|
172
|
+
getDomainStatus({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetDomainStatusParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.DomainStatusResponseSchema>;
|
|
166
173
|
/**
|
|
167
174
|
* @param {ConfigurationPlatformApplicationValidator.GetDomainsParam} arg - Arg object
|
|
168
175
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
169
176
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
170
|
-
* @returns {Promise<ConfigurationPlatformModel.
|
|
177
|
+
* @returns {Promise<ConfigurationPlatformModel.DomainsResponseSchema>} -
|
|
178
|
+
* Success response
|
|
171
179
|
* @name getDomains
|
|
172
180
|
* @summary: List domains
|
|
173
|
-
* @description: Retrieve a list of existing domains by its sales channel
|
|
181
|
+
* @description: Retrieve a list of existing domains by its sales channel. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/getDomains/).
|
|
174
182
|
*/
|
|
175
|
-
getDomains({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.
|
|
183
|
+
getDomains({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.DomainsResponseSchema>;
|
|
176
184
|
/**
|
|
177
185
|
* @param {ConfigurationPlatformApplicationValidator.GetInventoryConfigParam} arg
|
|
178
186
|
* - Arg object
|
|
@@ -183,7 +191,7 @@ declare class Configuration {
|
|
|
183
191
|
* Success response
|
|
184
192
|
* @name getInventoryConfig
|
|
185
193
|
* @summary: Get inventory configuration
|
|
186
|
-
* @description: Retrieve configuration details of authentication, inventory, article assignment rules, reward points, cart, payment, order, logistics, etc. - Check out [method documentation](https://
|
|
194
|
+
* @description: Retrieve configuration details of authentication, inventory, article assignment rules, reward points, cart, payment, order, logistics, etc. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/getInventoryConfig/).
|
|
187
195
|
*/
|
|
188
196
|
getInventoryConfig({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.ApplicationInventory>;
|
|
189
197
|
/**
|
|
@@ -196,7 +204,7 @@ declare class Configuration {
|
|
|
196
204
|
* Success response
|
|
197
205
|
* @name getOrderingStoreConfig
|
|
198
206
|
* @summary: Get ordering store configuration
|
|
199
|
-
* @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://
|
|
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://docs.fynd.com/partners/commerce/sdk/platform/configuration/getOrderingStoreConfig/).
|
|
200
208
|
*/
|
|
201
209
|
getOrderingStoreConfig({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.OrderingStoreConfig>;
|
|
202
210
|
/**
|
|
@@ -205,13 +213,14 @@ declare class Configuration {
|
|
|
205
213
|
*
|
|
206
214
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
207
215
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
208
|
-
* @returns {Promise<ConfigurationPlatformModel.
|
|
209
|
-
* Success response
|
|
216
|
+
* @returns {Promise<ConfigurationPlatformModel.SuccessMessageResponseSchema>}
|
|
217
|
+
* - Success response
|
|
218
|
+
*
|
|
210
219
|
* @name getOrderingStoreCookie
|
|
211
220
|
* @summary: Get ordering store signed cookie
|
|
212
|
-
* @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://
|
|
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://docs.fynd.com/partners/commerce/sdk/platform/configuration/getOrderingStoreCookie/).
|
|
213
222
|
*/
|
|
214
|
-
getOrderingStoreCookie({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetOrderingStoreCookieParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.
|
|
223
|
+
getOrderingStoreCookie({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetOrderingStoreCookieParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.SuccessMessageResponseSchema>;
|
|
215
224
|
/**
|
|
216
225
|
* @param {ConfigurationPlatformApplicationValidator.GetOrderingStoresByFilterParam} arg
|
|
217
226
|
* - Arg object
|
|
@@ -221,7 +230,7 @@ declare class Configuration {
|
|
|
221
230
|
* @returns {Promise<ConfigurationPlatformModel.OrderingStores>} - Success response
|
|
222
231
|
* @name getOrderingStoresByFilter
|
|
223
232
|
* @summary: List ordering stores
|
|
224
|
-
* @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://
|
|
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://docs.fynd.com/partners/commerce/sdk/platform/configuration/getOrderingStoresByFilter/).
|
|
225
234
|
*/
|
|
226
235
|
getOrderingStoresByFilter({ body, pageNo, pageSize, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetOrderingStoresByFilterParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.OrderingStores>;
|
|
227
236
|
/**
|
|
@@ -234,7 +243,7 @@ declare class Configuration {
|
|
|
234
243
|
* Success response
|
|
235
244
|
* @name getPreviousVersions
|
|
236
245
|
* @summary: Get previous versions
|
|
237
|
-
* @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://
|
|
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://docs.fynd.com/partners/commerce/sdk/platform/configuration/getPreviousVersions/).
|
|
238
247
|
*/
|
|
239
248
|
getPreviousVersions({ platformType, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetPreviousVersionsParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.BuildVersionHistory>;
|
|
240
249
|
/**
|
|
@@ -243,13 +252,14 @@ declare class Configuration {
|
|
|
243
252
|
*
|
|
244
253
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
245
254
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
246
|
-
* @returns {Promise<ConfigurationPlatformModel.
|
|
247
|
-
* Success response
|
|
255
|
+
* @returns {Promise<ConfigurationPlatformModel.OrderingStoresResponseSchema>}
|
|
256
|
+
* - Success response
|
|
257
|
+
*
|
|
248
258
|
* @name getStaffOrderingStores
|
|
249
259
|
* @summary: Get staff ordering stores
|
|
250
|
-
* @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://
|
|
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://docs.fynd.com/partners/commerce/sdk/platform/configuration/getStaffOrderingStores/).
|
|
251
261
|
*/
|
|
252
|
-
getStaffOrderingStores({ pageNo, pageSize, q, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetStaffOrderingStoresParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.
|
|
262
|
+
getStaffOrderingStores({ pageNo, pageSize, q, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetStaffOrderingStoresParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.OrderingStoresResponseSchema>;
|
|
253
263
|
/**
|
|
254
264
|
* @param {ConfigurationPlatformApplicationValidator.ModifyAppFeaturesParam} arg
|
|
255
265
|
* - Arg object
|
|
@@ -259,7 +269,7 @@ declare class Configuration {
|
|
|
259
269
|
* @returns {Promise<ConfigurationPlatformModel.AppFeature>} - Success response
|
|
260
270
|
* @name modifyAppFeatures
|
|
261
271
|
* @summary: update sales channel features
|
|
262
|
-
* @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://
|
|
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://docs.fynd.com/partners/commerce/sdk/platform/configuration/modifyAppFeatures/).
|
|
263
273
|
*/
|
|
264
274
|
modifyAppFeatures({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.ModifyAppFeaturesParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.AppFeature>;
|
|
265
275
|
/**
|
|
@@ -272,7 +282,7 @@ declare class Configuration {
|
|
|
272
282
|
* Success response
|
|
273
283
|
* @name partiallyUpdateInventoryConfig
|
|
274
284
|
* @summary: Partially update inventory configuration
|
|
275
|
-
* @description: Modify the configuration details of authentication, inventory, article assignment rules, reward points, cart, payment, order, logistics, etc. - Check out [method documentation](https://
|
|
285
|
+
* @description: Modify the configuration details of authentication, inventory, article assignment rules, reward points, cart, payment, order, logistics, etc. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/partiallyUpdateInventoryConfig/).
|
|
276
286
|
*/
|
|
277
287
|
partiallyUpdateInventoryConfig({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.PartiallyUpdateInventoryConfigParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.ApplicationInventory>;
|
|
278
288
|
/**
|
|
@@ -281,38 +291,41 @@ declare class Configuration {
|
|
|
281
291
|
*
|
|
282
292
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
283
293
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
284
|
-
* @returns {Promise<ConfigurationPlatformModel.
|
|
285
|
-
* Success response
|
|
294
|
+
* @returns {Promise<ConfigurationPlatformModel.SuccessMessageResponseSchema>}
|
|
295
|
+
* - Success response
|
|
296
|
+
*
|
|
286
297
|
* @name removeDomainById
|
|
287
298
|
* @summary: Remove domain
|
|
288
|
-
* @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://
|
|
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://docs.fynd.com/partners/commerce/sdk/platform/configuration/removeDomainById/).
|
|
289
300
|
*/
|
|
290
|
-
removeDomainById({ id, requestHeaders }?: ConfigurationPlatformApplicationValidator.RemoveDomainByIdParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.
|
|
301
|
+
removeDomainById({ id, requestHeaders }?: ConfigurationPlatformApplicationValidator.RemoveDomainByIdParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.SuccessMessageResponseSchema>;
|
|
291
302
|
/**
|
|
292
303
|
* @param {ConfigurationPlatformApplicationValidator.RemoveOrderingStoreCookieParam} arg
|
|
293
304
|
* - Arg object
|
|
294
305
|
*
|
|
295
306
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
296
307
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
297
|
-
* @returns {Promise<ConfigurationPlatformModel.
|
|
298
|
-
* Success response
|
|
308
|
+
* @returns {Promise<ConfigurationPlatformModel.SuccessMessageResponseSchema>}
|
|
309
|
+
* - Success response
|
|
310
|
+
*
|
|
299
311
|
* @name removeOrderingStoreCookie
|
|
300
312
|
* @summary: Delete Ordering Store signed cookie
|
|
301
|
-
* @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://
|
|
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://docs.fynd.com/partners/commerce/sdk/platform/configuration/removeOrderingStoreCookie/).
|
|
302
314
|
*/
|
|
303
|
-
removeOrderingStoreCookie({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.
|
|
315
|
+
removeOrderingStoreCookie({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.SuccessMessageResponseSchema>;
|
|
304
316
|
/**
|
|
305
317
|
* @param {ConfigurationPlatformApplicationValidator.UpdateAppApiTokensParam} arg
|
|
306
318
|
* - Arg object
|
|
307
319
|
*
|
|
308
320
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
309
321
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
310
|
-
* @returns {Promise<ConfigurationPlatformModel.
|
|
322
|
+
* @returns {Promise<ConfigurationPlatformModel.TokenResponseSchema>} -
|
|
323
|
+
* Success response
|
|
311
324
|
* @name updateAppApiTokens
|
|
312
325
|
* @summary: Update sales channel API tokens
|
|
313
|
-
* @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://
|
|
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://docs.fynd.com/partners/commerce/sdk/platform/configuration/updateAppApiTokens/).
|
|
314
327
|
*/
|
|
315
|
-
updateAppApiTokens({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateAppApiTokensParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.
|
|
328
|
+
updateAppApiTokens({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateAppApiTokensParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.TokenResponseSchema>;
|
|
316
329
|
/**
|
|
317
330
|
* @param {ConfigurationPlatformApplicationValidator.UpdateAppBasicDetailsParam} arg
|
|
318
331
|
* - Arg object
|
|
@@ -322,7 +335,7 @@ declare class Configuration {
|
|
|
322
335
|
* @returns {Promise<ConfigurationPlatformModel.ApplicationDetail>} - Success response
|
|
323
336
|
* @name updateAppBasicDetails
|
|
324
337
|
* @summary: Update sales channel basic details
|
|
325
|
-
* @description: Modify sales channel details like name, description, logo, domain, company ID, and other related information. - Check out [method documentation](https://
|
|
338
|
+
* @description: Modify sales channel details like name, description, logo, domain, company ID, and other related information. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/updateAppBasicDetails/).
|
|
326
339
|
*/
|
|
327
340
|
updateAppBasicDetails({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateAppBasicDetailsParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.ApplicationDetail>;
|
|
328
341
|
/**
|
|
@@ -335,7 +348,7 @@ declare class Configuration {
|
|
|
335
348
|
* Success response
|
|
336
349
|
* @name updateAppContactInfo
|
|
337
350
|
* @summary: Update sales channel contact
|
|
338
|
-
* @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://
|
|
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://docs.fynd.com/partners/commerce/sdk/platform/configuration/updateAppContactInfo/).
|
|
339
352
|
*/
|
|
340
353
|
updateAppContactInfo({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateAppContactInfoParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.ApplicationInformation>;
|
|
341
354
|
/**
|
|
@@ -348,7 +361,7 @@ declare class Configuration {
|
|
|
348
361
|
* Success response
|
|
349
362
|
* @name updateAppCurrencyConfig
|
|
350
363
|
* @summary: Update sales channel currency configuration
|
|
351
|
-
* @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://
|
|
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://docs.fynd.com/partners/commerce/sdk/platform/configuration/updateAppCurrencyConfig/).
|
|
352
365
|
*/
|
|
353
366
|
updateAppCurrencyConfig({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateAppCurrencyConfigParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.AppSupportedCurrency>;
|
|
354
367
|
/**
|
|
@@ -360,7 +373,7 @@ declare class Configuration {
|
|
|
360
373
|
* @returns {Promise<ConfigurationPlatformModel.AppFeature>} - Success response
|
|
361
374
|
* @name updateAppFeatures
|
|
362
375
|
* @summary: Update sales channel
|
|
363
|
-
* @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://
|
|
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://docs.fynd.com/partners/commerce/sdk/platform/configuration/updateAppFeatures/).
|
|
364
377
|
*/
|
|
365
378
|
updateAppFeatures({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateAppFeaturesParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.AppFeature>;
|
|
366
379
|
/**
|
|
@@ -373,7 +386,7 @@ declare class Configuration {
|
|
|
373
386
|
* Success response
|
|
374
387
|
* @name updateBuildConfig
|
|
375
388
|
* @summary: Update build configuration
|
|
376
|
-
* @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://
|
|
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://docs.fynd.com/partners/commerce/sdk/platform/configuration/updateBuildConfig/).
|
|
377
390
|
*/
|
|
378
391
|
updateBuildConfig({ platformType, body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateBuildConfigParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.MobileAppConfiguration>;
|
|
379
392
|
/**
|
|
@@ -386,7 +399,7 @@ declare class Configuration {
|
|
|
386
399
|
* Success response
|
|
387
400
|
* @name updateInventoryConfig
|
|
388
401
|
* @summary: Update inventory configuration
|
|
389
|
-
* @description: Modify the configuration details of authentication, inventory, article assignment rules, reward points, cart, payment, order, logistics, etc. - Check out [method documentation](https://
|
|
402
|
+
* @description: Modify the configuration details of authentication, inventory, article assignment rules, reward points, cart, payment, order, logistics, etc. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/updateInventoryConfig/).
|
|
390
403
|
*/
|
|
391
404
|
updateInventoryConfig({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateInventoryConfigParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.ApplicationInventory>;
|
|
392
405
|
/**
|
|
@@ -398,7 +411,7 @@ declare class Configuration {
|
|
|
398
411
|
* @returns {Promise<ConfigurationPlatformModel.DeploymentMeta>} - Success response
|
|
399
412
|
* @name updateOrderingStoreConfig
|
|
400
413
|
* @summary: Update ordering store configuration
|
|
401
|
-
* @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://
|
|
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://docs.fynd.com/partners/commerce/sdk/platform/configuration/updateOrderingStoreConfig/).
|
|
402
415
|
*/
|
|
403
416
|
updateOrderingStoreConfig({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateOrderingStoreConfigParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.DeploymentMeta>;
|
|
404
417
|
}
|