@gofynd/fdk-client-javascript 1.4.2-beta.4 → 1.4.2-beta.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +1 -1
- package/sdk/application/Cart/CartApplicationClient.d.ts +62 -62
- package/sdk/application/Cart/CartApplicationClient.js +82 -71
- package/sdk/application/Cart/CartApplicationValidator.d.ts +189 -34
- package/sdk/application/Cart/CartApplicationValidator.js +59 -34
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +78 -78
- package/sdk/application/Catalog/CatalogApplicationClient.js +78 -78
- package/sdk/application/Common/CommonApplicationClient.d.ts +4 -4
- package/sdk/application/Common/CommonApplicationClient.js +4 -4
- package/sdk/application/Communication/CommunicationApplicationClient.d.ts +6 -6
- package/sdk/application/Communication/CommunicationApplicationClient.js +6 -6
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +32 -67
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +32 -106
- package/sdk/application/Content/ContentApplicationClient.d.ts +34 -64
- package/sdk/application/Content/ContentApplicationClient.js +34 -115
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +6 -42
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +6 -42
- package/sdk/application/Lead/LeadApplicationClient.d.ts +14 -14
- package/sdk/application/Lead/LeadApplicationClient.js +14 -14
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +12 -12
- package/sdk/application/Logistic/LogisticApplicationClient.js +12 -12
- package/sdk/application/Order/OrderApplicationClient.d.ts +24 -24
- package/sdk/application/Order/OrderApplicationClient.js +24 -24
- package/sdk/application/Order/OrderApplicationModel.d.ts +23 -1
- package/sdk/application/Order/OrderApplicationModel.js +28 -0
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +89 -89
- package/sdk/application/Payment/PaymentApplicationClient.js +94 -94
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +498 -3
- package/sdk/application/Payment/PaymentApplicationModel.js +316 -2
- package/sdk/application/Payment/PaymentApplicationValidator.d.ts +5 -5
- package/sdk/application/Payment/PaymentApplicationValidator.js +3 -3
- package/sdk/application/PosCart/PosCartApplicationClient.d.ts +54 -54
- package/sdk/application/PosCart/PosCartApplicationClient.js +54 -54
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +14 -25
- package/sdk/application/Rewards/RewardsApplicationClient.js +14 -41
- package/sdk/application/Share/ShareApplicationClient.d.ts +14 -14
- package/sdk/application/Share/ShareApplicationClient.js +14 -14
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +8 -8
- package/sdk/application/Theme/ThemeApplicationClient.js +8 -8
- package/sdk/application/User/UserApplicationClient.d.ts +64 -64
- package/sdk/application/User/UserApplicationClient.js +64 -64
- package/sdk/partner/Theme/ThemePartnerClient.d.ts +38 -38
- package/sdk/partner/Theme/ThemePartnerClient.js +38 -38
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +8 -8
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +8 -8
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +34 -36
- package/sdk/platform/Billing/BillingPlatformClient.js +34 -36
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +98 -175
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +98 -254
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +92 -18
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +28 -18
- package/sdk/platform/Cart/CartPlatformModel.d.ts +12 -0
- package/sdk/platform/Cart/CartPlatformModel.js +12 -0
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +195 -108
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +278 -113
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +2 -2
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +2 -2
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +335 -136
- package/sdk/platform/Catalog/CatalogPlatformClient.js +551 -136
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +5 -5
- package/sdk/platform/Catalog/CatalogPlatformModel.js +3 -3
- package/sdk/platform/Common/CommonPlatformClient.d.ts +3 -3
- package/sdk/platform/Common/CommonPlatformClient.js +3 -3
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +115 -290
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +115 -510
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +2 -13
- package/sdk/platform/Communication/CommunicationPlatformClient.js +2 -29
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +32 -32
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +32 -32
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +52 -127
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +52 -204
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +35 -111
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +35 -212
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +142 -1
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +96 -0
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +130 -218
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +136 -314
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +4 -4
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +4 -4
- package/sdk/platform/Content/ContentPlatformClient.d.ts +1 -1
- package/sdk/platform/Content/ContentPlatformClient.js +7 -7
- package/sdk/platform/Content/ContentPlatformValidator.d.ts +4 -4
- package/sdk/platform/Content/ContentPlatformValidator.js +4 -4
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +22 -48
- package/sdk/platform/Discount/DiscountPlatformClient.js +22 -73
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +19 -55
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +19 -55
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +14 -50
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +16 -55
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +13 -12
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +12 -14
- package/sdk/platform/Finance/FinancePlatformClient.d.ts +44 -44
- package/sdk/platform/Finance/FinancePlatformClient.js +44 -44
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +12 -12
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +12 -12
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +22 -48
- package/sdk/platform/Lead/LeadPlatformClient.js +22 -72
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +4 -4
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +4 -4
- package/sdk/platform/Order/OrderPlatformClient.d.ts +79 -208
- package/sdk/platform/Order/OrderPlatformClient.js +79 -294
- package/sdk/platform/Order/OrderPlatformModel.d.ts +32 -3
- package/sdk/platform/Order/OrderPlatformModel.js +34 -2
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +4 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +4 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +2 -2
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +81 -81
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +81 -81
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +20 -20
- package/sdk/platform/Payment/PaymentPlatformClient.js +20 -20
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +23 -40
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +23 -61
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +8 -8
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +8 -8
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +5 -5
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +8 -8
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +2 -2
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +2 -2
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +10 -10
- package/sdk/platform/Share/SharePlatformApplicationClient.js +10 -10
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +56 -56
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +56 -56
- package/sdk/platform/Theme/ThemePlatformClient.d.ts +6 -6
- package/sdk/platform/Theme/ThemePlatformClient.js +6 -6
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +33 -33
- package/sdk/platform/User/UserPlatformApplicationClient.js +33 -33
- package/sdk/platform/User/UserPlatformModel.d.ts +2 -2
- package/sdk/platform/User/UserPlatformModel.js +2 -2
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +32 -45
- package/sdk/platform/Webhook/WebhookPlatformClient.js +32 -45
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +58 -1
- package/sdk/platform/Webhook/WebhookPlatformModel.js +66 -0
- package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +2 -2
- package/sdk/public/Configuration/ConfigurationPublicClient.js +2 -2
- package/sdk/public/Partner/PartnerPublicClient.d.ts +2 -2
- package/sdk/public/Partner/PartnerPublicClient.js +2 -2
- package/sdk/public/Webhook/WebhookPublicClient.d.ts +4 -4
- package/sdk/public/Webhook/WebhookPublicClient.js +4 -4
|
@@ -20,8 +20,8 @@ class Theme {
|
|
|
20
20
|
* @param {import("../PartnerAPIClient").Options} - Options
|
|
21
21
|
* @returns {Promise<ThemePartnerModel.AllAvailablePageSchema>} - Success response
|
|
22
22
|
* @name getAllPages
|
|
23
|
-
* @summary: Get all pages
|
|
24
|
-
* @description:
|
|
23
|
+
* @summary: Get all pages.
|
|
24
|
+
* @description: Retrieve a list of all pages available in the partner server setup. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/getAllPages/).
|
|
25
25
|
*/
|
|
26
26
|
async getAllPages(
|
|
27
27
|
{ companyId, applicationId, themeId, requestHeaders } = {
|
|
@@ -97,8 +97,8 @@ class Theme {
|
|
|
97
97
|
* @param {import("../PartnerAPIClient").Options} - Options
|
|
98
98
|
* @returns {Promise<ThemePartnerModel.AvailablePageSchema>} - Success response
|
|
99
99
|
* @name createPage
|
|
100
|
-
* @summary: Create
|
|
101
|
-
* @description:
|
|
100
|
+
* @summary: Create page.
|
|
101
|
+
* @description: Add a new page to the partner server configurations. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/createPage/).
|
|
102
102
|
*/
|
|
103
103
|
async createPage(
|
|
104
104
|
{ companyId, applicationId, themeId, body, requestHeaders } = {
|
|
@@ -181,8 +181,8 @@ class Theme {
|
|
|
181
181
|
* @param {import("../PartnerAPIClient").Options} - Options
|
|
182
182
|
* @returns {Promise<ThemePartnerModel.AllAvailablePageSchema>} - Success response
|
|
183
183
|
* @name updateMultiplePages
|
|
184
|
-
* @summary: Update multiple pages
|
|
185
|
-
* @description:
|
|
184
|
+
* @summary: Update multiple pages.
|
|
185
|
+
* @description: Modify and update multiple pages in the partner server setup. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/updateMultiplePages/).
|
|
186
186
|
*/
|
|
187
187
|
async updateMultiplePages(
|
|
188
188
|
{ companyId, applicationId, themeId, body, requestHeaders } = {
|
|
@@ -267,8 +267,8 @@ class Theme {
|
|
|
267
267
|
* @param {import("../PartnerAPIClient").Options} - Options
|
|
268
268
|
* @returns {Promise<ThemePartnerModel.AvailablePageSchema>} - Success response
|
|
269
269
|
* @name getPage
|
|
270
|
-
* @summary: Get page
|
|
271
|
-
* @description:
|
|
270
|
+
* @summary: Get page.
|
|
271
|
+
* @description: Obtain detailed information about a specific page in the partner server. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/getPage/).
|
|
272
272
|
*/
|
|
273
273
|
async getPage(
|
|
274
274
|
{ companyId, applicationId, themeId, pageValue, requestHeaders } = {
|
|
@@ -345,8 +345,8 @@ class Theme {
|
|
|
345
345
|
* @param {import("../PartnerAPIClient").Options} - Options
|
|
346
346
|
* @returns {Promise<ThemePartnerModel.AvailablePageSchema>} - Success response
|
|
347
347
|
* @name updatePage
|
|
348
|
-
* @summary:
|
|
349
|
-
* @description:
|
|
348
|
+
* @summary: Update page.
|
|
349
|
+
* @description: Modify and update information related to a specific page in the partner server. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/updatePage/).
|
|
350
350
|
*/
|
|
351
351
|
async updatePage(
|
|
352
352
|
{ companyId, applicationId, themeId, pageValue, body, requestHeaders } = {
|
|
@@ -431,8 +431,8 @@ class Theme {
|
|
|
431
431
|
* @param {import("../PartnerAPIClient").Options} - Options
|
|
432
432
|
* @returns {Promise<ThemePartnerModel.AvailablePageSchema>} - Success response
|
|
433
433
|
* @name deletePage
|
|
434
|
-
* @summary:
|
|
435
|
-
* @description:
|
|
434
|
+
* @summary: Delete page.
|
|
435
|
+
* @description: Remove a page from the partner server configurations. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/deletePage/).
|
|
436
436
|
*/
|
|
437
437
|
async deletePage(
|
|
438
438
|
{ companyId, applicationId, themeId, pageValue, requestHeaders } = {
|
|
@@ -509,8 +509,8 @@ class Theme {
|
|
|
509
509
|
* @param {import("../PartnerAPIClient").Options} - Options
|
|
510
510
|
* @returns {Promise<ThemePartnerModel.ThemesSchema[]>} - Success response
|
|
511
511
|
* @name getApplicationThemes
|
|
512
|
-
* @summary: Get
|
|
513
|
-
* @description:
|
|
512
|
+
* @summary: Get application themes.
|
|
513
|
+
* @description: Retrieve a list of themes available for the partner server application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/getApplicationThemes/).
|
|
514
514
|
*/
|
|
515
515
|
async getApplicationThemes(
|
|
516
516
|
{ companyId, applicationId, requestHeaders } = { requestHeaders: {} },
|
|
@@ -582,8 +582,8 @@ class Theme {
|
|
|
582
582
|
* @param {import("../PartnerAPIClient").Options} - Options
|
|
583
583
|
* @returns {Promise<ThemePartnerModel.ThemesSchema>} - Success response
|
|
584
584
|
* @name getThemeById
|
|
585
|
-
* @summary: Get
|
|
586
|
-
* @description:
|
|
585
|
+
* @summary: Get theme by ID.
|
|
586
|
+
* @description: Obtain detailed information about a theme using its unique ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/getThemeById/).
|
|
587
587
|
*/
|
|
588
588
|
async getThemeById(
|
|
589
589
|
{ companyId, applicationId, themeId, requestHeaders } = {
|
|
@@ -659,8 +659,8 @@ class Theme {
|
|
|
659
659
|
* @param {import("../PartnerAPIClient").Options} - Options
|
|
660
660
|
* @returns {Promise<ThemePartnerModel.ThemesSchema>} - Success response
|
|
661
661
|
* @name updateTheme
|
|
662
|
-
* @summary: Update theme
|
|
663
|
-
* @description:
|
|
662
|
+
* @summary: Update theme.
|
|
663
|
+
* @description: Modify and update information related to a theme in the partner server. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/updateTheme/).
|
|
664
664
|
*/
|
|
665
665
|
async updateTheme(
|
|
666
666
|
{ companyId, applicationId, themeId, body, requestHeaders } = {
|
|
@@ -743,8 +743,8 @@ class Theme {
|
|
|
743
743
|
* @param {import("../PartnerAPIClient").Options} - Options
|
|
744
744
|
* @returns {Promise<ThemePartnerModel.ThemesSchema>} - Success response
|
|
745
745
|
* @name deleteTheme
|
|
746
|
-
* @summary: Delete
|
|
747
|
-
* @description:
|
|
746
|
+
* @summary: Delete theme.
|
|
747
|
+
* @description: Remove a theme from the partner server configurations. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/deleteTheme/).
|
|
748
748
|
*/
|
|
749
749
|
async deleteTheme(
|
|
750
750
|
{ companyId, applicationId, themeId, requestHeaders } = {
|
|
@@ -820,8 +820,8 @@ class Theme {
|
|
|
820
820
|
* @param {import("../PartnerAPIClient").Options} - Options
|
|
821
821
|
* @returns {Promise<ThemePartnerModel.MarketplaceThemeSchema>} - Success response
|
|
822
822
|
* @name getOrganizationThemes
|
|
823
|
-
* @summary: Get organization
|
|
824
|
-
* @description:
|
|
823
|
+
* @summary: Get organization themes.
|
|
824
|
+
* @description: Retrieve a list of themes associated with partner server organizations. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/getOrganizationThemes/).
|
|
825
825
|
*/
|
|
826
826
|
async getOrganizationThemes(
|
|
827
827
|
{ status, pageSize, pageNo, requestHeaders } = { requestHeaders: {} },
|
|
@@ -904,8 +904,8 @@ class Theme {
|
|
|
904
904
|
* @param {import("../PartnerAPIClient").Options} - Options
|
|
905
905
|
* @returns {Promise<ThemePartnerModel.MarketplaceTheme>} - Success response
|
|
906
906
|
* @name getOrganizationThemeDetails
|
|
907
|
-
* @summary: Get theme details
|
|
908
|
-
* @description:
|
|
907
|
+
* @summary: Get organization theme details.
|
|
908
|
+
* @description: Obtain detailed information about a theme within partner server organizations. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/getOrganizationThemeDetails/).
|
|
909
909
|
*/
|
|
910
910
|
async getOrganizationThemeDetails(
|
|
911
911
|
{ themeId, requestHeaders } = { requestHeaders: {} },
|
|
@@ -983,8 +983,8 @@ class Theme {
|
|
|
983
983
|
* @param {import("../PartnerAPIClient").Options} - Options
|
|
984
984
|
* @returns {Promise<ThemePartnerModel.MarketplaceTheme>} - Success response
|
|
985
985
|
* @name updateDraftTheme
|
|
986
|
-
* @summary: Update theme
|
|
987
|
-
* @description:
|
|
986
|
+
* @summary: Update draft theme.
|
|
987
|
+
* @description: Modify and update a draft theme in partner server organizations. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/updateDraftTheme/).
|
|
988
988
|
*/
|
|
989
989
|
async updateDraftTheme(
|
|
990
990
|
{ themeId, body, requestHeaders } = { requestHeaders: {} },
|
|
@@ -1062,8 +1062,8 @@ class Theme {
|
|
|
1062
1062
|
* @param {import("../PartnerAPIClient").Options} - Options
|
|
1063
1063
|
* @returns {Promise<ThemePartnerModel.MarketplaceTheme>} - Success response
|
|
1064
1064
|
* @name submitOrganizationTheme
|
|
1065
|
-
* @summary: Submit
|
|
1066
|
-
* @description:
|
|
1065
|
+
* @summary: Submit organization theme.
|
|
1066
|
+
* @description: Initiate the process of submitting a theme within partner server organizations. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/submitOrganizationTheme/).
|
|
1067
1067
|
*/
|
|
1068
1068
|
async submitOrganizationTheme(
|
|
1069
1069
|
{ themeId, body, requestHeaders } = { requestHeaders: {} },
|
|
@@ -1141,8 +1141,8 @@ class Theme {
|
|
|
1141
1141
|
* @param {import("../PartnerAPIClient").Options} - Options
|
|
1142
1142
|
* @returns {Promise<ThemePartnerModel.MarketplaceTheme>} - Success response
|
|
1143
1143
|
* @name deleteOrganizationTheme
|
|
1144
|
-
* @summary: Delete
|
|
1145
|
-
* @description:
|
|
1144
|
+
* @summary: Delete organization theme.
|
|
1145
|
+
* @description: Remove a theme from partner server organizations. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/deleteOrganizationTheme/).
|
|
1146
1146
|
*/
|
|
1147
1147
|
async deleteOrganizationTheme(
|
|
1148
1148
|
{ themeId, requestHeaders } = { requestHeaders: {} },
|
|
@@ -1218,8 +1218,8 @@ class Theme {
|
|
|
1218
1218
|
* @param {import("../PartnerAPIClient").Options} - Options
|
|
1219
1219
|
* @returns {Promise<ThemePartnerModel.MarketplaceTheme[]>} - Success response
|
|
1220
1220
|
* @name getLatestVersionOfThemeBySlug
|
|
1221
|
-
* @summary: Get latest version of
|
|
1222
|
-
* @description:
|
|
1221
|
+
* @summary: Get latest version of theme by slug.
|
|
1222
|
+
* @description: Retrieve the most recent version of a theme using its slug. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/getLatestVersionOfThemeBySlug/).
|
|
1223
1223
|
*/
|
|
1224
1224
|
async getLatestVersionOfThemeBySlug(
|
|
1225
1225
|
{ slugName, requestHeaders } = { requestHeaders: {} },
|
|
@@ -1294,8 +1294,8 @@ class Theme {
|
|
|
1294
1294
|
* @param {import("../PartnerAPIClient").Options} - Options
|
|
1295
1295
|
* @returns {Promise<ThemePartnerModel.MarketplaceTheme>} - Success response
|
|
1296
1296
|
* @name createNewThemeInOrganization
|
|
1297
|
-
* @summary: Create
|
|
1298
|
-
* @description:
|
|
1297
|
+
* @summary: Create new theme in organization.
|
|
1298
|
+
* @description: Add a new theme to partner server organizations. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/createNewThemeInOrganization/).
|
|
1299
1299
|
*/
|
|
1300
1300
|
async createNewThemeInOrganization(
|
|
1301
1301
|
{ body, slug, requestHeaders } = { requestHeaders: {} },
|
|
@@ -1376,8 +1376,8 @@ class Theme {
|
|
|
1376
1376
|
* @param {import("../PartnerAPIClient").Options} - Options
|
|
1377
1377
|
* @returns {Promise<ThemePartnerModel.ThemeRejectionReasons>} - Success response
|
|
1378
1378
|
* @name getThemeRejectionReasons
|
|
1379
|
-
* @summary: Get theme rejection reasons
|
|
1380
|
-
* @description:
|
|
1379
|
+
* @summary: Get theme rejection reasons.
|
|
1380
|
+
* @description: Retrieve reasons for the rejection of themes within partner server organizations. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/getThemeRejectionReasons/).
|
|
1381
1381
|
*/
|
|
1382
1382
|
async getThemeRejectionReasons(
|
|
1383
1383
|
{ themeId, requestHeaders } = { requestHeaders: {} },
|
|
@@ -1453,8 +1453,8 @@ class Theme {
|
|
|
1453
1453
|
* @param {import("../PartnerAPIClient").Options} - Options
|
|
1454
1454
|
* @returns {Promise<ThemePartnerModel.MarketplaceThemeSchema>} - Success response
|
|
1455
1455
|
* @name getThemeVersions
|
|
1456
|
-
* @summary: Get theme versions
|
|
1457
|
-
* @description: Retrieve a list of
|
|
1456
|
+
* @summary: Get theme versions.
|
|
1457
|
+
* @description: Retrieve a list of versions available for a theme within partner server organizations. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/getThemeVersions/).
|
|
1458
1458
|
*/
|
|
1459
1459
|
async getThemeVersions(
|
|
1460
1460
|
{ themeSlug, pageSize, pageNo, requestHeaders } = { requestHeaders: {} },
|
|
@@ -8,8 +8,8 @@ declare class AuditTrail {
|
|
|
8
8
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
9
9
|
* @returns {Promise<AuditTrailPlatformModel.CreateLogResponse>} - Success response
|
|
10
10
|
* @name createAuditLog
|
|
11
|
-
* @summary: Create
|
|
12
|
-
* @description:
|
|
11
|
+
* @summary: Create an audit log.
|
|
12
|
+
* @description: Generate and record an audit log entry for a specific event or action. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/audittrail/createAuditLog/).
|
|
13
13
|
*/
|
|
14
14
|
createAuditLog({ body, requestHeaders }?: AuditTrailPlatformValidator.CreateAuditLogParam, { responseHeaders }?: object): Promise<AuditTrailPlatformModel.CreateLogResponse>;
|
|
15
15
|
/**
|
|
@@ -18,8 +18,8 @@ declare class AuditTrail {
|
|
|
18
18
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
19
19
|
* @returns {Promise<AuditTrailPlatformModel.LogSchemaResponse>} - Success response
|
|
20
20
|
* @name getAuditLog
|
|
21
|
-
* @summary: Get audit log
|
|
22
|
-
* @description:
|
|
21
|
+
* @summary: Get an audit log entry.
|
|
22
|
+
* @description: Retrieve a specific audit log entry - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/audittrail/getAuditLog/).
|
|
23
23
|
*/
|
|
24
24
|
getAuditLog({ id, requestHeaders }?: AuditTrailPlatformValidator.GetAuditLogParam, { responseHeaders }?: object): Promise<AuditTrailPlatformModel.LogSchemaResponse>;
|
|
25
25
|
/**
|
|
@@ -28,8 +28,8 @@ declare class AuditTrail {
|
|
|
28
28
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
29
29
|
* @returns {Promise<AuditTrailPlatformModel.LogSchemaResponse>} - Success response
|
|
30
30
|
* @name getAuditLogs
|
|
31
|
-
* @summary:
|
|
32
|
-
* @description:
|
|
31
|
+
* @summary: Retrieve audit logs.
|
|
32
|
+
* @description: Retrieve audit logs for system events and actions. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/audittrail/getAuditLogs/).
|
|
33
33
|
*/
|
|
34
34
|
getAuditLogs({ qs, limit, sort, requestHeaders }?: AuditTrailPlatformValidator.GetAuditLogsParam, { responseHeaders }?: object): Promise<AuditTrailPlatformModel.LogSchemaResponse>;
|
|
35
35
|
/**
|
|
@@ -38,8 +38,8 @@ declare class AuditTrail {
|
|
|
38
38
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
39
39
|
* @returns {Promise<AuditTrailPlatformModel.EntityTypesResponse>} - Success response
|
|
40
40
|
* @name getEntityTypes
|
|
41
|
-
* @summary:
|
|
42
|
-
* @description:
|
|
41
|
+
* @summary: Obtain entity types for auditing.
|
|
42
|
+
* @description: List of entity types that can be audited within the platform's - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/audittrail/getEntityTypes/).
|
|
43
43
|
*/
|
|
44
44
|
getEntityTypes({ requestHeaders }?: any, { responseHeaders }?: object): Promise<AuditTrailPlatformModel.EntityTypesResponse>;
|
|
45
45
|
}
|
|
@@ -20,8 +20,8 @@ class AuditTrail {
|
|
|
20
20
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
21
21
|
* @returns {Promise<AuditTrailPlatformModel.CreateLogResponse>} - Success response
|
|
22
22
|
* @name createAuditLog
|
|
23
|
-
* @summary: Create
|
|
24
|
-
* @description:
|
|
23
|
+
* @summary: Create an audit log.
|
|
24
|
+
* @description: Generate and record an audit log entry for a specific event or action. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/audittrail/createAuditLog/).
|
|
25
25
|
*/
|
|
26
26
|
async createAuditLog(
|
|
27
27
|
{ body, requestHeaders } = { requestHeaders: {} },
|
|
@@ -99,8 +99,8 @@ class AuditTrail {
|
|
|
99
99
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
100
100
|
* @returns {Promise<AuditTrailPlatformModel.LogSchemaResponse>} - Success response
|
|
101
101
|
* @name getAuditLog
|
|
102
|
-
* @summary: Get audit log
|
|
103
|
-
* @description:
|
|
102
|
+
* @summary: Get an audit log entry.
|
|
103
|
+
* @description: Retrieve a specific audit log entry - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/audittrail/getAuditLog/).
|
|
104
104
|
*/
|
|
105
105
|
async getAuditLog(
|
|
106
106
|
{ id, requestHeaders } = { requestHeaders: {} },
|
|
@@ -178,8 +178,8 @@ class AuditTrail {
|
|
|
178
178
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
179
179
|
* @returns {Promise<AuditTrailPlatformModel.LogSchemaResponse>} - Success response
|
|
180
180
|
* @name getAuditLogs
|
|
181
|
-
* @summary:
|
|
182
|
-
* @description:
|
|
181
|
+
* @summary: Retrieve audit logs.
|
|
182
|
+
* @description: Retrieve audit logs for system events and actions. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/audittrail/getAuditLogs/).
|
|
183
183
|
*/
|
|
184
184
|
async getAuditLogs(
|
|
185
185
|
{ qs, limit, sort, requestHeaders } = { requestHeaders: {} },
|
|
@@ -264,8 +264,8 @@ class AuditTrail {
|
|
|
264
264
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
265
265
|
* @returns {Promise<AuditTrailPlatformModel.EntityTypesResponse>} - Success response
|
|
266
266
|
* @name getEntityTypes
|
|
267
|
-
* @summary:
|
|
268
|
-
* @description:
|
|
267
|
+
* @summary: Obtain entity types for auditing.
|
|
268
|
+
* @description: List of entity types that can be audited within the platform's - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/audittrail/getEntityTypes/).
|
|
269
269
|
*/
|
|
270
270
|
async getEntityTypes(
|
|
271
271
|
{ requestHeaders } = { requestHeaders: {} },
|
|
@@ -8,8 +8,8 @@ declare class Billing {
|
|
|
8
8
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
9
9
|
* @returns {Promise<BillingPlatformModel.SubscriptionActivateRes>} - Success response
|
|
10
10
|
* @name activateSubscriptionPlan
|
|
11
|
-
* @summary: Activate subscription
|
|
12
|
-
* @description:
|
|
11
|
+
* @summary: Activate a subscription plan.
|
|
12
|
+
* @description: Activate a specific subscription plan for a customer. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/activateSubscriptionPlan/).
|
|
13
13
|
*/
|
|
14
14
|
activateSubscriptionPlan({ body, requestHeaders }?: BillingPlatformValidator.ActivateSubscriptionPlanParam, { responseHeaders }?: object): Promise<BillingPlatformModel.SubscriptionActivateRes>;
|
|
15
15
|
/**
|
|
@@ -18,8 +18,8 @@ declare class Billing {
|
|
|
18
18
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
19
19
|
* @returns {Promise<BillingPlatformModel.EntitySubscription>} - Success response
|
|
20
20
|
* @name cancelSubscriptionCharge
|
|
21
|
-
* @summary: Cancel subscription charge
|
|
22
|
-
* @description: Cancel subscription
|
|
21
|
+
* @summary: Cancel a subscription charge.
|
|
22
|
+
* @description: Cancel an ongoing subscription charge for a customer. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/cancelSubscriptionCharge/).
|
|
23
23
|
*/
|
|
24
24
|
cancelSubscriptionCharge({ extensionId, subscriptionId, requestHeaders }?: BillingPlatformValidator.CancelSubscriptionChargeParam, { responseHeaders }?: object): Promise<BillingPlatformModel.EntitySubscription>;
|
|
25
25
|
/**
|
|
@@ -28,8 +28,8 @@ declare class Billing {
|
|
|
28
28
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
29
29
|
* @returns {Promise<BillingPlatformModel.CancelSubscriptionRes>} - Success response
|
|
30
30
|
* @name cancelSubscriptionPlan
|
|
31
|
-
* @summary: Cancel subscription
|
|
32
|
-
* @description:
|
|
31
|
+
* @summary: Cancel a subscription plan.
|
|
32
|
+
* @description: Cancel an active subscription plan for a customer - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/cancelSubscriptionPlan/).
|
|
33
33
|
*/
|
|
34
34
|
cancelSubscriptionPlan({ body, requestHeaders }?: BillingPlatformValidator.CancelSubscriptionPlanParam, { responseHeaders }?: object): Promise<BillingPlatformModel.CancelSubscriptionRes>;
|
|
35
35
|
/**
|
|
@@ -38,8 +38,8 @@ declare class Billing {
|
|
|
38
38
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
39
39
|
* @returns {Promise<BillingPlatformModel.CheckValidityResponse>} - Success response
|
|
40
40
|
* @name checkCouponValidity
|
|
41
|
-
* @summary:
|
|
42
|
-
* @description:
|
|
41
|
+
* @summary: Verify coupon validity.
|
|
42
|
+
* @description: Checks whether a coupon code is valid for discounts while billing. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/checkCouponValidity/).
|
|
43
43
|
*/
|
|
44
44
|
checkCouponValidity({ plan, couponCode, requestHeaders }?: BillingPlatformValidator.CheckCouponValidityParam, { responseHeaders }?: object): Promise<BillingPlatformModel.CheckValidityResponse>;
|
|
45
45
|
/**
|
|
@@ -49,8 +49,8 @@ declare class Billing {
|
|
|
49
49
|
* @returns {Promise<BillingPlatformModel.CreateOneTimeChargeResponse>} -
|
|
50
50
|
* Success response
|
|
51
51
|
* @name createOneTimeCharge
|
|
52
|
-
* @summary:
|
|
53
|
-
* @description:
|
|
52
|
+
* @summary: Generate a one-time charge.
|
|
53
|
+
* @description: Generate a one-time charge for specific services or products. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/createOneTimeCharge/).
|
|
54
54
|
*/
|
|
55
55
|
createOneTimeCharge({ extensionId, body, requestHeaders }?: BillingPlatformValidator.CreateOneTimeChargeParam, { responseHeaders }?: object): Promise<BillingPlatformModel.CreateOneTimeChargeResponse>;
|
|
56
56
|
/**
|
|
@@ -60,8 +60,8 @@ declare class Billing {
|
|
|
60
60
|
* @returns {Promise<BillingPlatformModel.CreateSubscriptionResponse>} -
|
|
61
61
|
* Success response
|
|
62
62
|
* @name createSubscriptionCharge
|
|
63
|
-
* @summary:
|
|
64
|
-
* @description: Register subscription charge for a seller
|
|
63
|
+
* @summary: Initiate subscription billing.
|
|
64
|
+
* @description: Register a subscription charge for a seller using your extension. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/createSubscriptionCharge/).
|
|
65
65
|
*/
|
|
66
66
|
createSubscriptionCharge({ extensionId, body, requestHeaders }?: BillingPlatformValidator.CreateSubscriptionChargeParam, { responseHeaders }?: object): Promise<BillingPlatformModel.CreateSubscriptionResponse>;
|
|
67
67
|
/**
|
|
@@ -70,8 +70,8 @@ declare class Billing {
|
|
|
70
70
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
71
71
|
* @returns {Promise<BillingPlatformModel.OneTimeChargeEntity>} - Success response
|
|
72
72
|
* @name getChargeDetails
|
|
73
|
-
* @summary:
|
|
74
|
-
* @description:
|
|
73
|
+
* @summary: Obtain charge details.
|
|
74
|
+
* @description: Retrieve comprehensive details about a specific billing charge. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getChargeDetails/).
|
|
75
75
|
*/
|
|
76
76
|
getChargeDetails({ extensionId, chargeId, requestHeaders }?: BillingPlatformValidator.GetChargeDetailsParam, { responseHeaders }?: object): Promise<BillingPlatformModel.OneTimeChargeEntity>;
|
|
77
77
|
/**
|
|
@@ -80,8 +80,8 @@ declare class Billing {
|
|
|
80
80
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
81
81
|
* @returns {Promise<BillingPlatformModel.SubscriptionCustomer>} - Success response
|
|
82
82
|
* @name getCustomerDetail
|
|
83
|
-
* @summary:
|
|
84
|
-
* @description:
|
|
83
|
+
* @summary: Fetch customer details.
|
|
84
|
+
* @description: Obtain customer-related billing information. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getCustomerDetail/).
|
|
85
85
|
*/
|
|
86
86
|
getCustomerDetail({ requestHeaders }?: any, { responseHeaders }?: object): Promise<BillingPlatformModel.SubscriptionCustomer>;
|
|
87
87
|
/**
|
|
@@ -90,9 +90,8 @@ declare class Billing {
|
|
|
90
90
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
91
91
|
* @returns {Promise<BillingPlatformModel.Plan[]>} - Success response
|
|
92
92
|
* @name getEnterprisePlans
|
|
93
|
-
* @summary:
|
|
94
|
-
* @description:
|
|
95
|
-
* - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getEnterprisePlans/).
|
|
93
|
+
* @summary: Retrieve enterprise-level plans.
|
|
94
|
+
* @description: Retrieve available enterprise-level subscription plans. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getEnterprisePlans/).
|
|
96
95
|
*/
|
|
97
96
|
getEnterprisePlans({ requestHeaders }?: any, { responseHeaders }?: object): Promise<BillingPlatformModel.Plan[]>;
|
|
98
97
|
/**
|
|
@@ -101,8 +100,8 @@ declare class Billing {
|
|
|
101
100
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
102
101
|
* @returns {Promise<BillingPlatformModel.SubscriptionLimit>} - Success response
|
|
103
102
|
* @name getFeatureLimitConfig
|
|
104
|
-
* @summary:
|
|
105
|
-
* @description:
|
|
103
|
+
* @summary: Obtain feature limit configurations.
|
|
104
|
+
* @description: Retrieve configuration settings for feature limits in subscription plans. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getFeatureLimitConfig/).
|
|
106
105
|
*/
|
|
107
106
|
getFeatureLimitConfig({ productSuite, type, requestHeaders }?: BillingPlatformValidator.GetFeatureLimitConfigParam, { responseHeaders }?: object): Promise<BillingPlatformModel.SubscriptionLimit>;
|
|
108
107
|
/**
|
|
@@ -111,8 +110,8 @@ declare class Billing {
|
|
|
111
110
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
112
111
|
* @returns {Promise<BillingPlatformModel.Invoice>} - Success response
|
|
113
112
|
* @name getInvoiceById
|
|
114
|
-
* @summary: Get
|
|
115
|
-
* @description:
|
|
113
|
+
* @summary: Get a specific invoice.
|
|
114
|
+
* @description: Retrieve a particular invoice's details by providing its unique ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getInvoiceById/).
|
|
116
115
|
*/
|
|
117
116
|
getInvoiceById({ invoiceId, requestHeaders }?: BillingPlatformValidator.GetInvoiceByIdParam, { responseHeaders }?: object): Promise<BillingPlatformModel.Invoice>;
|
|
118
117
|
/**
|
|
@@ -121,8 +120,8 @@ declare class Billing {
|
|
|
121
120
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
122
121
|
* @returns {Promise<BillingPlatformModel.Invoices>} - Success response
|
|
123
122
|
* @name getInvoices
|
|
124
|
-
* @summary:
|
|
125
|
-
* @description:
|
|
123
|
+
* @summary: Retrieve invoices.
|
|
124
|
+
* @description: Retrieve invoices for billing and payment tracking. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getInvoices/).
|
|
126
125
|
*/
|
|
127
126
|
getInvoices({ requestHeaders }?: any, { responseHeaders }?: object): Promise<BillingPlatformModel.Invoices>;
|
|
128
127
|
/**
|
|
@@ -131,9 +130,8 @@ declare class Billing {
|
|
|
131
130
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
132
131
|
* @returns {Promise<BillingPlatformModel.SubscriptionStatus>} - Success response
|
|
133
132
|
* @name getSubscription
|
|
134
|
-
* @summary:
|
|
135
|
-
* @description:
|
|
136
|
-
* - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getSubscription/).
|
|
133
|
+
* @summary: Retrieve subscription details.
|
|
134
|
+
* @description: Retrieve details of a customer's subscription information. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getSubscription/).
|
|
137
135
|
*/
|
|
138
136
|
getSubscription({ requestHeaders }?: any, { responseHeaders }?: object): Promise<BillingPlatformModel.SubscriptionStatus>;
|
|
139
137
|
/**
|
|
@@ -142,8 +140,8 @@ declare class Billing {
|
|
|
142
140
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
143
141
|
* @returns {Promise<BillingPlatformModel.EntitySubscription>} - Success response
|
|
144
142
|
* @name getSubscriptionCharge
|
|
145
|
-
* @summary:
|
|
146
|
-
* @description:
|
|
143
|
+
* @summary: Retrieve subscription charge details.
|
|
144
|
+
* @description: Retrieve detailed information about subscription charges using this API. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getSubscriptionCharge/).
|
|
147
145
|
*/
|
|
148
146
|
getSubscriptionCharge({ extensionId, subscriptionId, requestHeaders }?: BillingPlatformValidator.GetSubscriptionChargeParam, { responseHeaders }?: object): Promise<BillingPlatformModel.EntitySubscription>;
|
|
149
147
|
/**
|
|
@@ -162,8 +160,8 @@ declare class Billing {
|
|
|
162
160
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
163
161
|
* @returns {Promise<BillingPlatformModel.Plan>} - Success response
|
|
164
162
|
* @name planStatusUpdate
|
|
165
|
-
* @summary: Update
|
|
166
|
-
* @description:
|
|
163
|
+
* @summary: Update subscription plan status.
|
|
164
|
+
* @description: Modify the status of a subscription plan. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/planStatusUpdate/).
|
|
167
165
|
*/
|
|
168
166
|
planStatusUpdate({ body, requestHeaders }?: BillingPlatformValidator.PlanStatusUpdateParam, { responseHeaders }?: object): Promise<BillingPlatformModel.Plan>;
|
|
169
167
|
/**
|
|
@@ -172,8 +170,8 @@ declare class Billing {
|
|
|
172
170
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
173
171
|
* @returns {Promise<BillingPlatformModel.SubscribePlanRes>} - Success response
|
|
174
172
|
* @name subscripePlan
|
|
175
|
-
* @summary: Subscribe plan.
|
|
176
|
-
* @description:
|
|
173
|
+
* @summary: Subscribe to a plan.
|
|
174
|
+
* @description: Subscribe to a specific billing plan. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/subscripePlan/).
|
|
177
175
|
*/
|
|
178
176
|
subscripePlan({ body, requestHeaders }?: BillingPlatformValidator.SubscripePlanParam, { responseHeaders }?: object): Promise<BillingPlatformModel.SubscribePlanRes>;
|
|
179
177
|
/**
|
|
@@ -182,8 +180,8 @@ declare class Billing {
|
|
|
182
180
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
183
181
|
* @returns {Promise<BillingPlatformModel.SubscriptionCustomer>} - Success response
|
|
184
182
|
* @name upsertCustomerDetail
|
|
185
|
-
* @summary:
|
|
186
|
-
* @description:
|
|
183
|
+
* @summary: Update or insert customer details.
|
|
184
|
+
* @description: Allows you to modify or insert customer information in the billing system. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/upsertCustomerDetail/).
|
|
187
185
|
*/
|
|
188
186
|
upsertCustomerDetail({ body, requestHeaders }?: BillingPlatformValidator.UpsertCustomerDetailParam, { responseHeaders }?: object): Promise<BillingPlatformModel.SubscriptionCustomer>;
|
|
189
187
|
}
|