@gofynd/fdk-client-javascript 1.4.15-beta.2 → 1.4.15-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/application.d.ts +1 -2
- package/application.js +2 -3
- package/index.d.ts +1 -2
- package/index.js +7 -1
- package/package.json +2 -3
- package/sdk/application/ApplicationClient.d.ts +2 -0
- package/sdk/application/ApplicationClient.js +2 -18
- package/sdk/application/Cart/CartApplicationClient.d.ts +75 -90
- package/sdk/application/Cart/CartApplicationClient.js +111 -1200
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +81 -142
- package/sdk/application/Catalog/CatalogApplicationClient.js +41 -1344
- package/sdk/application/Common/CommonApplicationClient.d.ts +4 -8
- package/sdk/application/Common/CommonApplicationClient.js +2 -92
- package/sdk/application/Communication/CommunicationApplicationClient.d.ts +6 -19
- package/sdk/application/Communication/CommunicationApplicationClient.js +3 -148
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +32 -73
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +16 -727
- package/sdk/application/Content/ContentApplicationClient.d.ts +52 -95
- package/sdk/application/Content/ContentApplicationClient.js +46 -990
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +8 -13
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +8 -138
- package/sdk/application/Finance/FinanceApplicationClient.d.ts +29 -0
- package/sdk/application/Finance/FinanceApplicationClient.js +105 -0
- package/sdk/application/Lead/LeadApplicationClient.d.ts +10 -18
- package/sdk/application/Lead/LeadApplicationClient.js +5 -217
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +42 -39
- package/sdk/application/Logistic/LogisticApplicationClient.js +89 -493
- package/sdk/application/Order/OrderApplicationClient.d.ts +36 -46
- package/sdk/application/Order/OrderApplicationClient.js +52 -507
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +93 -213
- package/sdk/application/Payment/PaymentApplicationClient.js +49 -2109
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +15 -29
- package/sdk/application/Rewards/RewardsApplicationClient.js +8 -312
- package/sdk/application/Share/ShareApplicationClient.d.ts +14 -24
- package/sdk/application/Share/ShareApplicationClient.js +7 -309
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +8 -14
- package/sdk/application/Theme/ThemeApplicationClient.js +8 -176
- package/sdk/application/User/UserApplicationClient.d.ts +87 -138
- package/sdk/application/User/UserApplicationClient.js +44 -1820
- package/sdk/application/Webhook/WebhookApplicationClient.d.ts +4 -7
- package/sdk/application/Webhook/WebhookApplicationClient.js +3 -52
- package/sdk/application/index.d.ts +0 -18
- package/sdk/application/index.js +0 -33
- package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +86 -12
- package/sdk/partner/FileStorage/FileStoragePartnerClient.js +582 -24
- package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +116 -19
- package/sdk/partner/FileStorage/FileStoragePartnerModel.js +121 -14
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +8 -1
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +51 -4
- package/sdk/partner/Lead/LeadPartnerClient.d.ts +2 -2
- package/sdk/partner/Lead/LeadPartnerClient.js +2 -2
- package/sdk/partner/Lead/LeadPartnerModel.d.ts +5 -5
- package/sdk/partner/Lead/LeadPartnerModel.js +15 -15
- package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +126 -20
- package/sdk/partner/Logistics/LogisticsPartnerClient.js +970 -20
- package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +1200 -167
- package/sdk/partner/Logistics/LogisticsPartnerModel.js +571 -160
- package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +10 -0
- package/sdk/partner/Logistics/LogisticsPartnerValidator.js +121 -7
- package/sdk/partner/Theme/ThemePartnerClient.d.ts +8 -10
- package/sdk/partner/Theme/ThemePartnerClient.js +14 -16
- package/sdk/partner/Theme/ThemePartnerModel.d.ts +96 -37
- package/sdk/partner/Theme/ThemePartnerModel.js +90 -36
- package/sdk/partner/Theme/ThemePartnerValidator.js +4 -4
- package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +28 -18
- package/sdk/partner/Webhook/WebhookPartnerClient.js +103 -18
- package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +612 -179
- package/sdk/partner/Webhook/WebhookPartnerModel.js +253 -150
- package/sdk/partner/Webhook/WebhookPartnerValidator.d.ts +1 -0
- package/sdk/partner/Webhook/WebhookPartnerValidator.js +11 -3
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +5 -4
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +14 -8
- package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +59 -9
- package/sdk/platform/Analytics/AnalyticsPlatformModel.js +40 -4
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +2 -32
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +3 -243
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +11 -130
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +12 -152
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +1 -39
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +0 -35
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +12 -12
- package/sdk/platform/Billing/BillingPlatformClient.js +15 -15
- package/sdk/platform/Billing/BillingPlatformModel.d.ts +443 -388
- package/sdk/platform/Billing/BillingPlatformModel.js +280 -263
- package/sdk/platform/Billing/BillingPlatformValidator.d.ts +16 -18
- package/sdk/platform/Billing/BillingPlatformValidator.js +8 -9
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +134 -103
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +419 -115
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +118 -65
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +109 -44
- package/sdk/platform/Cart/CartPlatformModel.d.ts +5046 -1300
- package/sdk/platform/Cart/CartPlatformModel.js +1979 -1217
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +209 -183
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +452 -395
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +185 -142
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +96 -78
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +154 -117
- package/sdk/platform/Catalog/CatalogPlatformClient.js +292 -172
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +6506 -1775
- package/sdk/platform/Catalog/CatalogPlatformModel.js +3224 -1690
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +72 -31
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +50 -24
- package/sdk/platform/Common/CommonPlatformClient.d.ts +3 -2
- package/sdk/platform/Common/CommonPlatformClient.js +3 -2
- package/sdk/platform/Common/CommonPlatformModel.d.ts +9 -9
- package/sdk/platform/Common/CommonPlatformModel.js +6 -6
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +16 -17
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +16 -17
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +8 -8
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +8 -8
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +43 -33
- package/sdk/platform/Communication/CommunicationPlatformModel.js +38 -34
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +46 -42
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +47 -43
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +223 -223
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +210 -212
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +12 -12
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +12 -12
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +46 -33
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +67 -54
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +18 -18
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +18 -18
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +45 -24
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +134 -30
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +283 -124
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +219 -94
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +37 -9
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +27 -8
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +124 -141
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +449 -422
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +179 -141
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +168 -130
- package/sdk/platform/Content/ContentPlatformClient.d.ts +142 -106
- package/sdk/platform/Content/ContentPlatformClient.js +523 -336
- package/sdk/platform/Content/ContentPlatformModel.d.ts +1241 -395
- package/sdk/platform/Content/ContentPlatformModel.js +521 -390
- package/sdk/platform/Content/ContentPlatformValidator.d.ts +168 -117
- package/sdk/platform/Content/ContentPlatformValidator.js +162 -108
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +14 -12
- package/sdk/platform/Discount/DiscountPlatformClient.js +14 -12
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +13 -13
- package/sdk/platform/Discount/DiscountPlatformModel.js +12 -12
- package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +2 -2
- package/sdk/platform/Discount/DiscountPlatformValidator.js +2 -2
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +94 -36
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +462 -60
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +62 -15
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +75 -13
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +19 -19
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +21 -21
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +370 -101
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +313 -84
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +2 -2
- package/sdk/platform/Lead/LeadPlatformClient.js +2 -2
- package/sdk/platform/Lead/LeadPlatformModel.d.ts +5 -5
- package/sdk/platform/Lead/LeadPlatformModel.js +16 -16
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +17 -6
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +85 -7
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +95 -24
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +39 -19
- package/sdk/platform/Order/OrderPlatformClient.d.ts +153 -96
- package/sdk/platform/Order/OrderPlatformClient.js +416 -198
- package/sdk/platform/Order/OrderPlatformModel.d.ts +7602 -1269
- package/sdk/platform/Order/OrderPlatformModel.js +3926 -1269
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +270 -109
- package/sdk/platform/Order/OrderPlatformValidator.js +135 -77
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +6 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +9 -7
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +9 -9
- package/sdk/platform/Partner/PartnerPlatformModel.js +8 -8
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +93 -105
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +129 -141
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +48 -48
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +48 -48
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +20 -20
- package/sdk/platform/Payment/PaymentPlatformClient.js +20 -20
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +333 -319
- package/sdk/platform/Payment/PaymentPlatformModel.js +288 -278
- package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +8 -8
- package/sdk/platform/Payment/PaymentPlatformValidator.js +8 -8
- package/sdk/platform/PlatformClient.d.ts +0 -2
- package/sdk/platform/PlatformClient.js +0 -4
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +2 -2
- package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +9 -9
- package/sdk/platform/Rewards/RewardsPlatformModel.js +8 -8
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +46 -36
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +132 -41
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +46 -17
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +34 -14
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +40 -46
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +58 -64
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +1842 -609
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +886 -554
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +42 -46
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +26 -28
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +2 -2
- package/sdk/platform/Share/SharePlatformApplicationClient.js +2 -2
- package/sdk/platform/Share/SharePlatformModel.d.ts +36 -5
- package/sdk/platform/Share/SharePlatformModel.js +27 -4
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +3 -3
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +8 -4
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +5 -0
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +2 -0
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +37 -11
- package/sdk/platform/Theme/ThemePlatformModel.js +33 -15
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +12 -12
- package/sdk/platform/User/UserPlatformApplicationClient.js +12 -12
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +2 -2
- package/sdk/platform/User/UserPlatformApplicationValidator.js +2 -2
- package/sdk/platform/User/UserPlatformModel.d.ts +21 -21
- package/sdk/platform/User/UserPlatformModel.js +23 -23
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +25 -78
- package/sdk/platform/Webhook/WebhookPlatformClient.js +75 -470
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +720 -427
- package/sdk/platform/Webhook/WebhookPlatformModel.js +410 -386
- package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +10 -55
- package/sdk/platform/Webhook/WebhookPlatformValidator.js +12 -72
- package/sdk/platform/index.d.ts +0 -1
- package/sdk/platform/index.js +0 -2
- package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +3 -2
- package/sdk/public/Configuration/ConfigurationPublicClient.js +10 -7
- package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +9 -9
- package/sdk/public/Configuration/ConfigurationPublicModel.js +6 -6
- package/sdk/public/Content/ContentPublicClient.d.ts +112 -2
- package/sdk/public/Content/ContentPublicClient.js +795 -7
- package/sdk/public/Content/ContentPublicModel.d.ts +549 -3
- package/sdk/public/Content/ContentPublicModel.js +649 -3
- package/sdk/public/Content/ContentPublicValidator.d.ts +69 -3
- package/sdk/public/Content/ContentPublicValidator.js +88 -2
- package/sdk/public/Partner/PartnerPublicClient.js +4 -2
- package/sdk/public/Webhook/WebhookPublicClient.d.ts +8 -8
- package/sdk/public/Webhook/WebhookPublicClient.js +12 -10
- package/sdk/public/Webhook/WebhookPublicModel.d.ts +21 -21
- package/sdk/public/Webhook/WebhookPublicModel.js +15 -15
- package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
- package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
- package/sdk/application/Cart/CartApplicationModel.d.ts +0 -3994
- package/sdk/application/Cart/CartApplicationModel.js +0 -2497
- package/sdk/application/Cart/CartApplicationValidator.d.ts +0 -769
- package/sdk/application/Cart/CartApplicationValidator.js +0 -530
- package/sdk/application/Catalog/CatalogApplicationModel.d.ts +0 -3857
- package/sdk/application/Catalog/CatalogApplicationModel.js +0 -2629
- package/sdk/application/Catalog/CatalogApplicationValidator.d.ts +0 -791
- package/sdk/application/Catalog/CatalogApplicationValidator.js +0 -551
- package/sdk/application/Common/CommonApplicationModel.d.ts +0 -449
- package/sdk/application/Common/CommonApplicationModel.js +0 -308
- package/sdk/application/Common/CommonApplicationValidator.d.ts +0 -46
- package/sdk/application/Common/CommonApplicationValidator.js +0 -38
- package/sdk/application/Communication/CommunicationApplicationModel.d.ts +0 -293
- package/sdk/application/Communication/CommunicationApplicationModel.js +0 -201
- package/sdk/application/Communication/CommunicationApplicationValidator.d.ts +0 -29
- package/sdk/application/Communication/CommunicationApplicationValidator.js +0 -38
- package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +0 -2556
- package/sdk/application/Configuration/ConfigurationApplicationModel.js +0 -1887
- package/sdk/application/Configuration/ConfigurationApplicationValidator.d.ts +0 -179
- package/sdk/application/Configuration/ConfigurationApplicationValidator.js +0 -176
- package/sdk/application/Content/ContentApplicationModel.d.ts +0 -2133
- package/sdk/application/Content/ContentApplicationModel.js +0 -1589
- package/sdk/application/Content/ContentApplicationValidator.d.ts +0 -284
- package/sdk/application/Content/ContentApplicationValidator.js +0 -264
- package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +0 -272
- package/sdk/application/FileStorage/FileStorageApplicationModel.js +0 -190
- package/sdk/application/FileStorage/FileStorageApplicationValidator.d.ts +0 -56
- package/sdk/application/FileStorage/FileStorageApplicationValidator.js +0 -53
- package/sdk/application/Lead/LeadApplicationModel.d.ts +0 -590
- package/sdk/application/Lead/LeadApplicationModel.js +0 -480
- package/sdk/application/Lead/LeadApplicationValidator.d.ts +0 -68
- package/sdk/application/Lead/LeadApplicationValidator.js +0 -71
- package/sdk/application/Logistic/LogisticApplicationModel.d.ts +0 -1675
- package/sdk/application/Logistic/LogisticApplicationModel.js +0 -1121
- package/sdk/application/Logistic/LogisticApplicationValidator.d.ts +0 -254
- package/sdk/application/Logistic/LogisticApplicationValidator.js +0 -190
- package/sdk/application/Order/OrderApplicationModel.d.ts +0 -2296
- package/sdk/application/Order/OrderApplicationModel.js +0 -1471
- package/sdk/application/Order/OrderApplicationValidator.d.ts +0 -265
- package/sdk/application/Order/OrderApplicationValidator.js +0 -197
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +0 -4058
- package/sdk/application/Payment/PaymentApplicationModel.js +0 -2630
- package/sdk/application/Payment/PaymentApplicationValidator.d.ts +0 -576
- package/sdk/application/Payment/PaymentApplicationValidator.js +0 -594
- package/sdk/application/Rewards/RewardsApplicationModel.d.ts +0 -365
- package/sdk/application/Rewards/RewardsApplicationModel.js +0 -396
- package/sdk/application/Rewards/RewardsApplicationValidator.d.ts +0 -73
- package/sdk/application/Rewards/RewardsApplicationValidator.js +0 -84
- package/sdk/application/Share/ShareApplicationModel.d.ts +0 -339
- package/sdk/application/Share/ShareApplicationModel.js +0 -234
- package/sdk/application/Share/ShareApplicationValidator.d.ts +0 -90
- package/sdk/application/Share/ShareApplicationValidator.js +0 -91
- package/sdk/application/Theme/ThemeApplicationModel.d.ts +0 -1713
- package/sdk/application/Theme/ThemeApplicationModel.js +0 -1426
- package/sdk/application/Theme/ThemeApplicationValidator.d.ts +0 -66
- package/sdk/application/Theme/ThemeApplicationValidator.js +0 -58
- package/sdk/application/User/UserApplicationModel.d.ts +0 -1943
- package/sdk/application/User/UserApplicationModel.js +0 -1382
- package/sdk/application/User/UserApplicationValidator.d.ts +0 -560
- package/sdk/application/User/UserApplicationValidator.js +0 -573
- package/sdk/application/Webhook/WebhookApplicationModel.d.ts +0 -52
- package/sdk/application/Webhook/WebhookApplicationModel.js +0 -46
- package/sdk/application/Webhook/WebhookApplicationValidator.d.ts +0 -16
- package/sdk/application/Webhook/WebhookApplicationValidator.js +0 -19
- package/sdk/common/Clickstream.d.ts +0 -1
- package/sdk/common/Clickstream.js +0 -464
- 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
|
@@ -59,20 +59,6 @@ declare class Content {
|
|
|
59
59
|
* @description: Generate and add a new announcement. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createAnnouncement/).
|
|
60
60
|
*/
|
|
61
61
|
createAnnouncement({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAnnouncementParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CreateAnnouncementSchema>;
|
|
62
|
-
/**
|
|
63
|
-
* @param {ContentPlatformApplicationValidator.CreateAppCustomFieldByResourceIdParam} arg
|
|
64
|
-
* - Arg object
|
|
65
|
-
*
|
|
66
|
-
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
67
|
-
* @param {import("../PlatformAPIClient").Options} - Options
|
|
68
|
-
* @returns {Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>}
|
|
69
|
-
* - Success response
|
|
70
|
-
*
|
|
71
|
-
* @name createAppCustomFieldByResourceId
|
|
72
|
-
* @summary: Create custom field entries for gives resource and resource_id
|
|
73
|
-
* @description: You can add a custom field using this endpoint to any resource by providing the resource ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createAppCustomFieldByResourceId/).
|
|
74
|
-
*/
|
|
75
|
-
createAppCustomFieldByResourceId({ resource, resourceId, body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomFieldByResourceIdParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>;
|
|
76
62
|
/**
|
|
77
63
|
* @param {ContentPlatformApplicationValidator.CreateAppCustomFieldDefinitionParam} arg
|
|
78
64
|
* - Arg object
|
|
@@ -83,35 +69,36 @@ declare class Content {
|
|
|
83
69
|
* - Success response
|
|
84
70
|
*
|
|
85
71
|
* @name createAppCustomFieldDefinition
|
|
86
|
-
* @summary: Create custom field definition
|
|
72
|
+
* @summary: Create custom field definition for a given resource type
|
|
87
73
|
* @description: You can create custom fields definition to any resource so you can extend property of resource. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createAppCustomFieldDefinition/).
|
|
88
74
|
*/
|
|
89
|
-
createAppCustomFieldDefinition({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomFieldDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>;
|
|
75
|
+
createAppCustomFieldDefinition({ resource, body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomFieldDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>;
|
|
90
76
|
/**
|
|
91
|
-
* @param {ContentPlatformApplicationValidator.
|
|
77
|
+
* @param {ContentPlatformApplicationValidator.CreateAppCustomObjectBySlugParam} arg
|
|
92
78
|
* - Arg object
|
|
93
79
|
*
|
|
94
80
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
95
81
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
96
82
|
* @returns {Promise<ContentPlatformModel.CustomObjectSchema>} - Success response
|
|
97
|
-
* @name
|
|
83
|
+
* @name createAppCustomObjectBySlug
|
|
98
84
|
* @summary: Create custom object entries
|
|
99
|
-
* @description: Custom object entries against the custom object definition can be added using this API. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/
|
|
85
|
+
* @description: Custom object entries against the custom object definition can be added using this API. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createAppCustomObjectBySlug/).
|
|
100
86
|
*/
|
|
101
|
-
|
|
87
|
+
createAppCustomObjectBySlug({ definitionSlug, body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomObjectBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectSchema>;
|
|
102
88
|
/**
|
|
103
89
|
* @param {ContentPlatformApplicationValidator.CreateAppCustomObjectDefinitionParam} arg
|
|
104
90
|
* - Arg object
|
|
105
91
|
*
|
|
106
92
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
107
93
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
108
|
-
* @returns {Promise<ContentPlatformModel.
|
|
109
|
-
* Success response
|
|
94
|
+
* @returns {Promise<ContentPlatformModel.CustomObjectDefinitionSlugSchema>}
|
|
95
|
+
* - Success response
|
|
96
|
+
*
|
|
110
97
|
* @name createAppCustomObjectDefinition
|
|
111
98
|
* @summary: Create custom object definition
|
|
112
99
|
* @description: Create a custom object that will have a collection of custom fields and can be used anywhere in the custom field for any resource. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createAppCustomObjectDefinition/).
|
|
113
100
|
*/
|
|
114
|
-
createAppCustomObjectDefinition({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomObjectDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.
|
|
101
|
+
createAppCustomObjectDefinition({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomObjectDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionSlugSchema>;
|
|
115
102
|
/**
|
|
116
103
|
* @param {ContentPlatformApplicationValidator.CreateBlogParam} arg - Arg object
|
|
117
104
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -214,31 +201,31 @@ declare class Content {
|
|
|
214
201
|
*/
|
|
215
202
|
deleteAnnouncement({ announcementId, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAnnouncementParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CreateAnnouncementSchema>;
|
|
216
203
|
/**
|
|
217
|
-
* @param {ContentPlatformApplicationValidator.
|
|
204
|
+
* @param {ContentPlatformApplicationValidator.DeleteAppCustomFieldDefinitionBySlugParam} arg
|
|
218
205
|
* - Arg object
|
|
219
206
|
*
|
|
220
207
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
221
208
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
222
209
|
* @returns {Promise<ContentPlatformModel.CustomDataDeleteSchema>} - Success response
|
|
223
|
-
* @name
|
|
210
|
+
* @name deleteAppCustomFieldDefinitionBySlug
|
|
224
211
|
* @summary: Delete custom fields definition
|
|
225
|
-
* @description: Custom field definition and its assosiated custom fields value can be deleted using this api on the basis of definition id. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/
|
|
212
|
+
* @description: Custom field definition and its assosiated custom fields value can be deleted using this api on the basis of definition id. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteAppCustomFieldDefinitionBySlug/).
|
|
226
213
|
*/
|
|
227
|
-
|
|
214
|
+
deleteAppCustomFieldDefinitionBySlug({ slug, resource, namespace, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAppCustomFieldDefinitionBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomDataDeleteSchema>;
|
|
228
215
|
/**
|
|
229
|
-
* @param {ContentPlatformApplicationValidator.
|
|
216
|
+
* @param {ContentPlatformApplicationValidator.DeleteAppCustomObjectBySlugParam} arg
|
|
230
217
|
* - Arg object
|
|
231
218
|
*
|
|
232
219
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
233
220
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
234
221
|
* @returns {Promise<ContentPlatformModel.CustomDataDeleteSchema>} - Success response
|
|
235
|
-
* @name
|
|
222
|
+
* @name deleteAppCustomObjectBySlug
|
|
236
223
|
* @summary: Delete custom object
|
|
237
|
-
* @description: Custom object
|
|
224
|
+
* @description: A Custom object entry can be deleted by providing the custom object definition slug and custom object entry slug using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteAppCustomObjectBySlug/).
|
|
238
225
|
*/
|
|
239
|
-
|
|
226
|
+
deleteAppCustomObjectBySlug({ definitionSlug, slug, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAppCustomObjectBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomDataDeleteSchema>;
|
|
240
227
|
/**
|
|
241
|
-
* @param {ContentPlatformApplicationValidator.
|
|
228
|
+
* @param {ContentPlatformApplicationValidator.DeleteAppCustomObjectDefinitionBySlugParam} arg
|
|
242
229
|
* - Arg object
|
|
243
230
|
*
|
|
244
231
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -246,11 +233,11 @@ declare class Content {
|
|
|
246
233
|
* @returns {Promise<ContentPlatformModel.CustomObjectDefinitionDeleteResponseSchema>}
|
|
247
234
|
* - Success response
|
|
248
235
|
*
|
|
249
|
-
* @name
|
|
236
|
+
* @name deleteAppCustomObjectDefinitionBySlug
|
|
250
237
|
* @summary: Delete custom object definition
|
|
251
|
-
* @description: Custom object definitions can be deleted using this endpoint by providing the definition ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/
|
|
238
|
+
* @description: Custom object definitions can be deleted using this endpoint by providing the definition ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteAppCustomObjectDefinitionBySlug/).
|
|
252
239
|
*/
|
|
253
|
-
|
|
240
|
+
deleteAppCustomObjectDefinitionBySlug({ slug, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAppCustomObjectDefinitionBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionDeleteResponseSchema>;
|
|
254
241
|
/**
|
|
255
242
|
* @param {ContentPlatformApplicationValidator.DeleteBlogParam} arg - Arg object
|
|
256
243
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -396,7 +383,7 @@ declare class Content {
|
|
|
396
383
|
*/
|
|
397
384
|
editSEOMarkupSchema({ id, body, requestHeaders }?: ContentPlatformApplicationValidator.EditSEOMarkupSchemaParam, { responseHeaders }?: object): Promise<ContentPlatformModel.SEOSchemaMarkupTemplate>;
|
|
398
385
|
/**
|
|
399
|
-
* @param {ContentPlatformApplicationValidator.
|
|
386
|
+
* @param {ContentPlatformApplicationValidator.ExportAppCustomObjectEntriesBySlugParam} arg
|
|
400
387
|
* - Arg object
|
|
401
388
|
*
|
|
402
389
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -404,11 +391,11 @@ declare class Content {
|
|
|
404
391
|
* @returns {Promise<ContentPlatformModel.CustomObjectBulkEntryInitiateDownload>}
|
|
405
392
|
* - Success response
|
|
406
393
|
*
|
|
407
|
-
* @name
|
|
394
|
+
* @name exportAppCustomObjectEntriesBySlug
|
|
408
395
|
* @summary: Initiate download for bulk custom object entries
|
|
409
|
-
* @description: Custom object bulk export of bulk entries can be perform using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/
|
|
396
|
+
* @description: Custom object bulk export of bulk entries can be perform using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/exportAppCustomObjectEntriesBySlug/).
|
|
410
397
|
*/
|
|
411
|
-
|
|
398
|
+
exportAppCustomObjectEntriesBySlug({ slug, requestHeaders }?: ContentPlatformApplicationValidator.ExportAppCustomObjectEntriesBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectBulkEntryInitiateDownload>;
|
|
412
399
|
/**
|
|
413
400
|
* @param {ContentPlatformApplicationValidator.GenerateSEOTitleParam} arg - Arg object
|
|
414
401
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -445,19 +432,32 @@ declare class Content {
|
|
|
445
432
|
*/
|
|
446
433
|
getAnnouncementsList({ pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetAnnouncementsListParam, { responseHeaders }?: object): Promise<ContentPlatformModel.GetAnnouncementListSchema>;
|
|
447
434
|
/**
|
|
448
|
-
* @param {ContentPlatformApplicationValidator.
|
|
435
|
+
* @param {ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionByResourceParam} arg
|
|
449
436
|
* - Arg object
|
|
450
437
|
*
|
|
451
438
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
452
439
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
453
|
-
* @returns {Promise<ContentPlatformModel.
|
|
440
|
+
* @returns {Promise<ContentPlatformModel.CustomFieldDefinitionsSchema>} -
|
|
441
|
+
* Success response
|
|
442
|
+
* @name getAppCustomFieldDefinitionByResource
|
|
443
|
+
* @summary: Get custom fields definitions for a given resource type
|
|
444
|
+
* @description: Custom field definitions enable you to include data validation for custom fields, and enable sellers to add custom fields values for resources. With the help of this seller can retrive list of custom field definitions list. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFieldDefinitionByResource/).
|
|
445
|
+
*/
|
|
446
|
+
getAppCustomFieldDefinitionByResource({ pageNo, pageSize, resource, types, search, slugs, namespaces, requestHeaders, }?: ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionByResourceParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionsSchema>;
|
|
447
|
+
/**
|
|
448
|
+
* @param {ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionBySlugParam} arg
|
|
449
|
+
* - Arg object
|
|
450
|
+
*
|
|
451
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
452
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
453
|
+
* @returns {Promise<ContentPlatformModel.MetaFieldDefinitionDetailResSchema>}
|
|
454
454
|
* - Success response
|
|
455
455
|
*
|
|
456
|
-
* @name
|
|
457
|
-
* @summary: Get custom fields definition
|
|
458
|
-
* @description: Custom field definitions can be
|
|
456
|
+
* @name getAppCustomFieldDefinitionBySlug
|
|
457
|
+
* @summary: Get custom fields definition by resource, slug and namespace
|
|
458
|
+
* @description: Custom field definitions can be retrived from this using its slug, namespace and resource - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFieldDefinitionBySlug/).
|
|
459
459
|
*/
|
|
460
|
-
|
|
460
|
+
getAppCustomFieldDefinitionBySlug({ slug, resource, namespace, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.MetaFieldDefinitionDetailResSchema>;
|
|
461
461
|
/**
|
|
462
462
|
* @param {ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionsParam} arg
|
|
463
463
|
* - Arg object
|
|
@@ -470,34 +470,21 @@ declare class Content {
|
|
|
470
470
|
* @summary: Get custom fields definitions
|
|
471
471
|
* @description: Custom field definitions enable you to include data validation for custom fields, and enable sellers to add custom fields values for resources. With the help of this seller can retrive list of custom field definitions list. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFieldDefinitions/).
|
|
472
472
|
*/
|
|
473
|
-
getAppCustomFieldDefinitions({ pageNo, pageSize,
|
|
473
|
+
getAppCustomFieldDefinitions({ pageNo, pageSize, resources, types, search, slugs, namespaces, requestHeaders, }?: ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionsSchema>;
|
|
474
474
|
/**
|
|
475
475
|
* @param {ContentPlatformApplicationValidator.GetAppCustomFieldTypesParam} arg
|
|
476
476
|
* - Arg object
|
|
477
477
|
*
|
|
478
478
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
479
479
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
480
|
-
* @returns {Promise<ContentPlatformModel.
|
|
480
|
+
* @returns {Promise<ContentPlatformModel.MetafieldTypesSchema>} - Success response
|
|
481
481
|
* @name getAppCustomFieldTypes
|
|
482
482
|
* @summary: Get custom field types
|
|
483
483
|
* @description: Each custom field and custom field definition has a type, which defines the type of information that it can store. The custom field types have built-in validation. This api will give list of supported custom fields types - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFieldTypes/).
|
|
484
484
|
*/
|
|
485
|
-
getAppCustomFieldTypes({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.
|
|
486
|
-
/**
|
|
487
|
-
* @param {ContentPlatformApplicationValidator.GetAppCustomFieldsParam} arg
|
|
488
|
-
* - Arg object
|
|
489
|
-
*
|
|
490
|
-
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
491
|
-
* @param {import("../PlatformAPIClient").Options} - Options
|
|
492
|
-
* @returns {Promise<ContentPlatformModel.CustomFieldsResponseSchema>} -
|
|
493
|
-
* Success response
|
|
494
|
-
* @name getAppCustomFields
|
|
495
|
-
* @summary: Get list of custom fields of gives resource
|
|
496
|
-
* @description: Retrieves a list of custom fields attached to a particular resource by using the resource. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFields/).
|
|
497
|
-
*/
|
|
498
|
-
getAppCustomFields({ resource, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomFieldsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldsResponseSchema>;
|
|
485
|
+
getAppCustomFieldTypes({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.MetafieldTypesSchema>;
|
|
499
486
|
/**
|
|
500
|
-
* @param {ContentPlatformApplicationValidator.
|
|
487
|
+
* @param {ContentPlatformApplicationValidator.GetAppCustomFieldsByResourceSlugParam} arg
|
|
501
488
|
* - Arg object
|
|
502
489
|
*
|
|
503
490
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -505,36 +492,38 @@ declare class Content {
|
|
|
505
492
|
* @returns {Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>}
|
|
506
493
|
* - Success response
|
|
507
494
|
*
|
|
508
|
-
* @name
|
|
509
|
-
* @summary: Get list of custom fields of given resource and resource
|
|
510
|
-
* @description: Retrieves a list of custom fields attached to a particular resource by using the resource and resource
|
|
495
|
+
* @name getAppCustomFieldsByResourceSlug
|
|
496
|
+
* @summary: Get list of custom fields of given resource and resource slug
|
|
497
|
+
* @description: Retrieves a list of custom fields attached to a particular resource by using the resource and resource slug. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFieldsByResourceSlug/).
|
|
511
498
|
*/
|
|
512
|
-
|
|
499
|
+
getAppCustomFieldsByResourceSlug({ resource, resourceSlug, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomFieldsByResourceSlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>;
|
|
513
500
|
/**
|
|
514
|
-
* @param {ContentPlatformApplicationValidator.
|
|
501
|
+
* @param {ContentPlatformApplicationValidator.GetAppCustomObjectBySlugParam} arg
|
|
515
502
|
* - Arg object
|
|
516
503
|
*
|
|
517
504
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
518
505
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
519
|
-
* @returns {Promise<ContentPlatformModel.
|
|
520
|
-
*
|
|
506
|
+
* @returns {Promise<ContentPlatformModel.CustomObjectBySlugSchema>} -
|
|
507
|
+
* Success response
|
|
508
|
+
* @name getAppCustomObjectBySlug
|
|
521
509
|
* @summary: Get custom object details
|
|
522
|
-
* @description: Details of custom
|
|
510
|
+
* @description: Details of a custom object entry can be obtained using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomObjectBySlug/).
|
|
523
511
|
*/
|
|
524
|
-
|
|
512
|
+
getAppCustomObjectBySlug({ definitionSlug, slug, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectBySlugSchema>;
|
|
525
513
|
/**
|
|
526
|
-
* @param {ContentPlatformApplicationValidator.
|
|
514
|
+
* @param {ContentPlatformApplicationValidator.GetAppCustomObjectDefinitionBySlugParam} arg
|
|
527
515
|
* - Arg object
|
|
528
516
|
*
|
|
529
517
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
530
518
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
531
|
-
* @returns {Promise<ContentPlatformModel.
|
|
532
|
-
* Success response
|
|
533
|
-
*
|
|
519
|
+
* @returns {Promise<ContentPlatformModel.CustomObjectDefinitionSlugSchema>}
|
|
520
|
+
* - Success response
|
|
521
|
+
*
|
|
522
|
+
* @name getAppCustomObjectDefinitionBySlug
|
|
534
523
|
* @summary: Get custom object definition
|
|
535
|
-
* @description: Custom object definitions can be fetched using their definition
|
|
524
|
+
* @description: Custom object definitions can be fetched using their custom object definition slug. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomObjectDefinitionBySlug/).
|
|
536
525
|
*/
|
|
537
|
-
|
|
526
|
+
getAppCustomObjectDefinitionBySlug({ slug, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectDefinitionBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionSlugSchema>;
|
|
538
527
|
/**
|
|
539
528
|
* @param {ContentPlatformApplicationValidator.GetAppCustomObjectDefinitionsParam} arg
|
|
540
529
|
* - Arg object
|
|
@@ -549,17 +538,17 @@ declare class Content {
|
|
|
549
538
|
*/
|
|
550
539
|
getAppCustomObjectDefinitions({ pageNo, pageSize, search, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectDefinitionsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionsSchema>;
|
|
551
540
|
/**
|
|
552
|
-
* @param {ContentPlatformApplicationValidator.
|
|
541
|
+
* @param {ContentPlatformApplicationValidator.GetAppCustomObjectsBySlugParam} arg
|
|
553
542
|
* - Arg object
|
|
554
543
|
*
|
|
555
544
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
556
545
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
557
546
|
* @returns {Promise<ContentPlatformModel.CustomObjectsSchema>} - Success response
|
|
558
|
-
* @name
|
|
547
|
+
* @name getAppCustomObjectsBySlug
|
|
559
548
|
* @summary: Get list of custom objects
|
|
560
|
-
* @description: Custom object entries can fetch using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/
|
|
549
|
+
* @description: Custom object entries can fetch using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomObjectsBySlug/).
|
|
561
550
|
*/
|
|
562
|
-
|
|
551
|
+
getAppCustomObjectsBySlug({ pageNo, pageSize, definitionSlug, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectsBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectsSchema>;
|
|
563
552
|
/**
|
|
564
553
|
* @param {ContentPlatformApplicationValidator.GetAppJobsParam} arg - Arg object
|
|
565
554
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -594,12 +583,12 @@ declare class Content {
|
|
|
594
583
|
* @param {ContentPlatformApplicationValidator.GetBlogsParam} arg - Arg object
|
|
595
584
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
596
585
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
597
|
-
* @returns {Promise<ContentPlatformModel.
|
|
586
|
+
* @returns {Promise<ContentPlatformModel.BlogGetDetails>} - Success response
|
|
598
587
|
* @name getBlogs
|
|
599
588
|
* @summary: List blogs
|
|
600
589
|
* @description: List all blogs - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getBlogs/).
|
|
601
590
|
*/
|
|
602
|
-
getBlogs({ pageNo, pageSize, tags, q, slug, title, status, requestHeaders }?: ContentPlatformApplicationValidator.GetBlogsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.
|
|
591
|
+
getBlogs({ pageNo, pageSize, tags, q, slug, title, status, requestHeaders }?: ContentPlatformApplicationValidator.GetBlogsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.BlogGetDetails>;
|
|
603
592
|
/**
|
|
604
593
|
* @param {ContentPlatformApplicationValidator.GetDataLoadersParam} arg - Arg object
|
|
605
594
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -629,13 +618,13 @@ declare class Content {
|
|
|
629
618
|
*
|
|
630
619
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
631
620
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
632
|
-
* @returns {Promise<ContentPlatformModel.
|
|
621
|
+
* @returns {Promise<ContentPlatformModel.DefaultNavigationDetails>} -
|
|
633
622
|
* Success response
|
|
634
623
|
* @name getDefaultNavigations
|
|
635
624
|
* @summary: Get default navigations
|
|
636
625
|
* @description: Retrieve default navigation elements. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getDefaultNavigations/).
|
|
637
626
|
*/
|
|
638
|
-
getDefaultNavigations({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.
|
|
627
|
+
getDefaultNavigations({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.DefaultNavigationDetails>;
|
|
639
628
|
/**
|
|
640
629
|
* @param {ContentPlatformApplicationValidator.GetDefaultSEOMarkupSchemaParam} arg
|
|
641
630
|
* - Arg object
|
|
@@ -709,12 +698,12 @@ declare class Content {
|
|
|
709
698
|
* @param {ContentPlatformApplicationValidator.GetLandingPagesParam} arg - Arg object
|
|
710
699
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
711
700
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
712
|
-
* @returns {Promise<ContentPlatformModel.
|
|
701
|
+
* @returns {Promise<ContentPlatformModel.LandingPageGetDetails>} - Success response
|
|
713
702
|
* @name getLandingPages
|
|
714
703
|
* @summary: Get landing pages
|
|
715
704
|
* @description: Lists a list landing pages as per device types - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getLandingPages/).
|
|
716
705
|
*/
|
|
717
|
-
getLandingPages({ pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetLandingPagesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.
|
|
706
|
+
getLandingPages({ pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetLandingPagesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.LandingPageGetDetails>;
|
|
718
707
|
/**
|
|
719
708
|
* @param {ContentPlatformApplicationValidator.GetLegalInformationParam} arg
|
|
720
709
|
* - Arg object
|
|
@@ -743,12 +732,12 @@ declare class Content {
|
|
|
743
732
|
* @param {ContentPlatformApplicationValidator.GetNavigationsParam} arg - Arg object
|
|
744
733
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
745
734
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
746
|
-
* @returns {Promise<ContentPlatformModel.
|
|
735
|
+
* @returns {Promise<ContentPlatformModel.NavigationGetDetails>} - Success response
|
|
747
736
|
* @name getNavigations
|
|
748
737
|
* @summary: Get navigation items
|
|
749
738
|
* @description: Retrieve a list of navigational elements. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getNavigations/).
|
|
750
739
|
*/
|
|
751
|
-
getNavigations({ devicePlatform, pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetNavigationsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.
|
|
740
|
+
getNavigations({ devicePlatform, pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetNavigationsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.NavigationGetDetails>;
|
|
752
741
|
/**
|
|
753
742
|
* @param {ContentPlatformApplicationValidator.GetPageBySlugParam} arg - Arg object
|
|
754
743
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -783,12 +772,12 @@ declare class Content {
|
|
|
783
772
|
* @param {ContentPlatformApplicationValidator.GetPagesParam} arg - Arg object
|
|
784
773
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
785
774
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
786
|
-
* @returns {Promise<ContentPlatformModel.
|
|
775
|
+
* @returns {Promise<ContentPlatformModel.PageGetDetails>} - Success response
|
|
787
776
|
* @name getPages
|
|
788
777
|
* @summary: Get pages
|
|
789
778
|
* @description: Retrieve a list of available pages. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getPages/).
|
|
790
779
|
*/
|
|
791
|
-
getPages({ pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetPagesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.
|
|
780
|
+
getPages({ pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetPagesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.PageGetDetails>;
|
|
792
781
|
/**
|
|
793
782
|
* @param {ContentPlatformApplicationValidator.GetPathRedirectionRuleParam} arg
|
|
794
783
|
* - Arg object
|
|
@@ -865,32 +854,12 @@ declare class Content {
|
|
|
865
854
|
* @param {ContentPlatformApplicationValidator.GetSlideshowsParam} arg - Arg object
|
|
866
855
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
867
856
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
868
|
-
* @returns {Promise<ContentPlatformModel.
|
|
857
|
+
* @returns {Promise<ContentPlatformModel.SlideshowGetDetails>} - Success response
|
|
869
858
|
* @name getSlideshows
|
|
870
859
|
* @summary: List Slideshows
|
|
871
860
|
* @description: Use this API to list all Slideshows - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getSlideshows/).
|
|
872
861
|
*/
|
|
873
|
-
getSlideshows({ devicePlatform, pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetSlideshowsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.
|
|
874
|
-
/**
|
|
875
|
-
* @param {Object} arg - Arg object.
|
|
876
|
-
* @param {string} arg.companyId - Numeric ID allotted to a business account
|
|
877
|
-
* on Fynd Platform
|
|
878
|
-
* @param {string} arg.applicationId - Numeric ID allotted to an application
|
|
879
|
-
* created within a business account.
|
|
880
|
-
* @param {string} arg.devicePlatform - Filter slideshows by platform.
|
|
881
|
-
* Acceptable values are: web, android, ios and all
|
|
882
|
-
* @param {number} [arg.pageSize] - The number of items to retrieve in each
|
|
883
|
-
* page. Default value is 10.
|
|
884
|
-
* @returns {Paginator<ContentPlatformModel.SlideshowGetResponse>}
|
|
885
|
-
* @summary: List Slideshows
|
|
886
|
-
* @description: Use this API to list all Slideshows
|
|
887
|
-
*/
|
|
888
|
-
getSlideshowsPaginator({ companyId, applicationId, devicePlatform, pageSize, }?: {
|
|
889
|
-
companyId: string;
|
|
890
|
-
applicationId: string;
|
|
891
|
-
devicePlatform: string;
|
|
892
|
-
pageSize?: number;
|
|
893
|
-
}): Paginator<ContentPlatformModel.SlideshowGetResponse>;
|
|
862
|
+
getSlideshows({ devicePlatform, pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetSlideshowsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.SlideshowGetDetails>;
|
|
894
863
|
/**
|
|
895
864
|
* @param {ContentPlatformApplicationValidator.GetSupportInformationParam} arg
|
|
896
865
|
* - Arg object
|
|
@@ -904,32 +873,31 @@ declare class Content {
|
|
|
904
873
|
*/
|
|
905
874
|
getSupportInformation({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.Support>;
|
|
906
875
|
/**
|
|
907
|
-
* @param {ContentPlatformApplicationValidator.
|
|
876
|
+
* @param {ContentPlatformApplicationValidator.ImportAppCustomObjectEntriesBySlugParam} arg
|
|
908
877
|
* - Arg object
|
|
909
878
|
*
|
|
910
879
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
911
880
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
912
|
-
* @returns {Promise<ContentPlatformModel.
|
|
881
|
+
* @returns {Promise<ContentPlatformModel.CustomObjectEntryBulkUploadDetails>}
|
|
913
882
|
* - Success response
|
|
914
883
|
*
|
|
915
|
-
* @name
|
|
884
|
+
* @name importAppCustomObjectEntriesBySlug
|
|
916
885
|
* @summary: Bulk custom object entries upload
|
|
917
|
-
* @description: Custom object bulk import of bulk entries can be performed using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/
|
|
886
|
+
* @description: Custom object bulk import of bulk entries can be performed using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/importAppCustomObjectEntriesBySlug/).
|
|
918
887
|
*/
|
|
919
|
-
|
|
888
|
+
importAppCustomObjectEntriesBySlug({ slug, body, requestHeaders }?: ContentPlatformApplicationValidator.ImportAppCustomObjectEntriesBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectEntryBulkUploadDetails>;
|
|
920
889
|
/**
|
|
921
890
|
* @param {ContentPlatformApplicationValidator.RemoveInjectableTagParam} arg
|
|
922
891
|
* - Arg object
|
|
923
892
|
*
|
|
924
893
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
925
894
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
926
|
-
* @returns {Promise<ContentPlatformModel.
|
|
927
|
-
* Success response
|
|
895
|
+
* @returns {Promise<ContentPlatformModel.TagDeleteSuccessDetails>} - Success response
|
|
928
896
|
* @name removeInjectableTag
|
|
929
897
|
* @summary: Remove HTML tag
|
|
930
898
|
* @description: Delete a specific injectable tag. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/removeInjectableTag/).
|
|
931
899
|
*/
|
|
932
|
-
removeInjectableTag({ body, requestHeaders }?: ContentPlatformApplicationValidator.RemoveInjectableTagParam, { responseHeaders }?: object): Promise<ContentPlatformModel.
|
|
900
|
+
removeInjectableTag({ body, requestHeaders }?: ContentPlatformApplicationValidator.RemoveInjectableTagParam, { responseHeaders }?: object): Promise<ContentPlatformModel.TagDeleteSuccessDetails>;
|
|
933
901
|
/**
|
|
934
902
|
* @param {ContentPlatformApplicationValidator.ResetDataLoaderParam} arg - Arg object
|
|
935
903
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -942,17 +910,17 @@ declare class Content {
|
|
|
942
910
|
*/
|
|
943
911
|
resetDataLoader({ service, operationId, requestHeaders }?: ContentPlatformApplicationValidator.ResetDataLoaderParam, { responseHeaders }?: object): Promise<ContentPlatformModel.DataLoaderResetResponseSchema>;
|
|
944
912
|
/**
|
|
945
|
-
* @param {ContentPlatformApplicationValidator.
|
|
913
|
+
* @param {ContentPlatformApplicationValidator.SampleAppCustomObjectBulkEntryBySlugParam} arg
|
|
946
914
|
* - Arg object
|
|
947
915
|
*
|
|
948
916
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
949
917
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
950
918
|
* @returns {Promise<string>} - Success response
|
|
951
|
-
* @name
|
|
919
|
+
* @name sampleAppCustomObjectBulkEntryBySlug
|
|
952
920
|
* @summary: Download sample for custom object bulk entry
|
|
953
|
-
* @description: Sample files for custom object bulk import can be obtained from this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/
|
|
921
|
+
* @description: Sample files for custom object bulk import can be obtained from this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/sampleAppCustomObjectBulkEntryBySlug/).
|
|
954
922
|
*/
|
|
955
|
-
|
|
923
|
+
sampleAppCustomObjectBulkEntryBySlug({ slug, requestHeaders }?: ContentPlatformApplicationValidator.SampleAppCustomObjectBulkEntryBySlugParam, { responseHeaders }?: object): Promise<string>;
|
|
956
924
|
/**
|
|
957
925
|
* @param {ContentPlatformApplicationValidator.SelectDataLoaderParam} arg - Arg object
|
|
958
926
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -991,7 +959,21 @@ declare class Content {
|
|
|
991
959
|
*/
|
|
992
960
|
updateAnnouncementSchedule({ announcementId, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAnnouncementScheduleParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CreateAnnouncementSchema>;
|
|
993
961
|
/**
|
|
994
|
-
* @param {ContentPlatformApplicationValidator.
|
|
962
|
+
* @param {ContentPlatformApplicationValidator.UpdateAppCustomFieldByResourceSlugParam} arg
|
|
963
|
+
* - Arg object
|
|
964
|
+
*
|
|
965
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
966
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
967
|
+
* @returns {Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>}
|
|
968
|
+
* - Success response
|
|
969
|
+
*
|
|
970
|
+
* @name updateAppCustomFieldByResourceSlug
|
|
971
|
+
* @summary: Create custom field entries for gives resource and resource slug
|
|
972
|
+
* @description: You can add a custom field using this endpoint to any resource by providing the resource slug. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateAppCustomFieldByResourceSlug/).
|
|
973
|
+
*/
|
|
974
|
+
updateAppCustomFieldByResourceSlug({ resource, resourceSlug, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomFieldByResourceSlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>;
|
|
975
|
+
/**
|
|
976
|
+
* @param {ContentPlatformApplicationValidator.UpdateAppCustomFieldDefinitionBySlugParam} arg
|
|
995
977
|
* - Arg object
|
|
996
978
|
*
|
|
997
979
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -999,36 +981,38 @@ declare class Content {
|
|
|
999
981
|
* @returns {Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>}
|
|
1000
982
|
* - Success response
|
|
1001
983
|
*
|
|
1002
|
-
* @name
|
|
984
|
+
* @name updateAppCustomFieldDefinitionBySlug
|
|
1003
985
|
* @summary: Update custom field definition
|
|
1004
|
-
* @description: Custom fields definition can be update using this api, You can update custom field definition name and description. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/
|
|
986
|
+
* @description: Custom fields definition can be update using this api, You can update custom field definition name and description. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateAppCustomFieldDefinitionBySlug/).
|
|
1005
987
|
*/
|
|
1006
|
-
|
|
988
|
+
updateAppCustomFieldDefinitionBySlug({ slug, resource, namespace, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomFieldDefinitionBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>;
|
|
1007
989
|
/**
|
|
1008
|
-
* @param {ContentPlatformApplicationValidator.
|
|
990
|
+
* @param {ContentPlatformApplicationValidator.UpdateAppCustomObjectBySlugParam} arg
|
|
1009
991
|
* - Arg object
|
|
1010
992
|
*
|
|
1011
993
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
1012
994
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
1013
|
-
* @returns {Promise<ContentPlatformModel.
|
|
1014
|
-
*
|
|
995
|
+
* @returns {Promise<ContentPlatformModel.CustomObjectBySlugSchema>} -
|
|
996
|
+
* Success response
|
|
997
|
+
* @name updateAppCustomObjectBySlug
|
|
1015
998
|
* @summary: Update custom object details
|
|
1016
|
-
* @description: Custom object entries can be updated using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/
|
|
999
|
+
* @description: Custom object entries can be updated using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateAppCustomObjectBySlug/).
|
|
1017
1000
|
*/
|
|
1018
|
-
|
|
1001
|
+
updateAppCustomObjectBySlug({ definitionSlug, slug, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomObjectBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectBySlugSchema>;
|
|
1019
1002
|
/**
|
|
1020
|
-
* @param {ContentPlatformApplicationValidator.
|
|
1003
|
+
* @param {ContentPlatformApplicationValidator.UpdateAppCustomObjectDefinitionBySlugParam} arg
|
|
1021
1004
|
* - Arg object
|
|
1022
1005
|
*
|
|
1023
1006
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
1024
1007
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
1025
|
-
* @returns {Promise<ContentPlatformModel.
|
|
1026
|
-
* Success response
|
|
1027
|
-
*
|
|
1008
|
+
* @returns {Promise<ContentPlatformModel.CustomObjectDefinitionSlugSchema>}
|
|
1009
|
+
* - Success response
|
|
1010
|
+
*
|
|
1011
|
+
* @name updateAppCustomObjectDefinitionBySlug
|
|
1028
1012
|
* @summary: Update custom object definition
|
|
1029
|
-
* @description: Custom object definitions can be updated using this endpoint. You can update the name and description of the custom object and add more custom field definitions to the existing custom object. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/
|
|
1013
|
+
* @description: Custom object definitions can be updated using this endpoint. You can update the name and description of the custom object and add more custom field definitions to the existing custom object. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateAppCustomObjectDefinitionBySlug/).
|
|
1030
1014
|
*/
|
|
1031
|
-
|
|
1015
|
+
updateAppCustomObjectDefinitionBySlug({ slug, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomObjectDefinitionBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionSlugSchema>;
|
|
1032
1016
|
/**
|
|
1033
1017
|
* @param {ContentPlatformApplicationValidator.UpdateBlogParam} arg - Arg object
|
|
1034
1018
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -1178,4 +1162,3 @@ declare class Content {
|
|
|
1178
1162
|
}
|
|
1179
1163
|
import ContentPlatformApplicationValidator = require("./ContentPlatformApplicationValidator");
|
|
1180
1164
|
import ContentPlatformModel = require("./ContentPlatformModel");
|
|
1181
|
-
import Paginator = require("../../common/Paginator");
|