@gofynd/fdk-client-javascript 1.4.14 → 1.4.15-beta.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/application.d.ts +1 -2
- package/application.js +2 -3
- package/index.d.ts +1 -2
- package/index.js +7 -1
- package/package.json +2 -3
- package/sdk/application/ApplicationClient.d.ts +0 -2
- package/sdk/application/ApplicationClient.js +0 -20
- package/sdk/application/Cart/CartApplicationClient.d.ts +55 -97
- package/sdk/application/Cart/CartApplicationClient.js +60 -1262
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +80 -162
- package/sdk/application/Catalog/CatalogApplicationClient.js +148 -1313
- package/sdk/application/Common/CommonApplicationClient.d.ts +4 -9
- package/sdk/application/Common/CommonApplicationClient.js +5 -90
- package/sdk/application/Communication/CommunicationApplicationClient.d.ts +6 -19
- package/sdk/application/Communication/CommunicationApplicationClient.js +6 -145
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +32 -80
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +31 -725
- package/sdk/application/Content/ContentApplicationClient.d.ts +63 -85
- package/sdk/application/Content/ContentApplicationClient.js +126 -942
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +11 -15
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +26 -130
- package/sdk/application/Lead/LeadApplicationClient.d.ts +10 -17
- package/sdk/application/Lead/LeadApplicationClient.js +32 -201
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +22 -62
- package/sdk/application/Logistic/LogisticApplicationClient.js +51 -647
- package/sdk/application/Order/OrderApplicationClient.d.ts +22 -56
- package/sdk/application/Order/OrderApplicationClient.js +86 -555
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +92 -209
- package/sdk/application/Payment/PaymentApplicationClient.js +57 -2099
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +15 -26
- package/sdk/application/Rewards/RewardsApplicationClient.js +17 -303
- package/sdk/application/Share/ShareApplicationClient.d.ts +14 -24
- package/sdk/application/Share/ShareApplicationClient.js +34 -294
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +8 -14
- package/sdk/application/Theme/ThemeApplicationClient.js +30 -166
- package/sdk/application/User/UserApplicationClient.d.ts +87 -138
- package/sdk/application/User/UserApplicationClient.js +47 -1817
- package/sdk/application/Webhook/WebhookApplicationClient.d.ts +4 -7
- package/sdk/application/Webhook/WebhookApplicationClient.js +6 -49
- package/sdk/application/index.d.ts +0 -19
- package/sdk/application/index.js +0 -35
- package/sdk/common/Utility.d.ts +1 -1
- package/sdk/common/Utility.js +10 -7
- package/sdk/common/Validator.d.ts +1 -0
- package/sdk/common/Validator.js +20 -0
- package/sdk/common/utils.d.ts +0 -1
- package/sdk/common/utils.js +0 -14
- package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +12 -86
- package/sdk/partner/FileStorage/FileStoragePartnerClient.js +24 -582
- package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +21 -116
- package/sdk/partner/FileStorage/FileStoragePartnerModel.js +16 -121
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +1 -8
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +4 -51
- package/sdk/partner/Lead/LeadPartnerClient.d.ts +2 -2
- package/sdk/partner/Lead/LeadPartnerClient.js +2 -2
- package/sdk/partner/Lead/LeadPartnerModel.d.ts +5 -5
- package/sdk/partner/Lead/LeadPartnerModel.js +15 -15
- package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +20 -126
- package/sdk/partner/Logistics/LogisticsPartnerClient.js +20 -970
- package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +85 -767
- package/sdk/partner/Logistics/LogisticsPartnerModel.js +76 -429
- package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +0 -10
- package/sdk/partner/Logistics/LogisticsPartnerValidator.js +6 -120
- package/sdk/partner/OAuthClient.js +1 -0
- package/sdk/partner/Theme/ThemePartnerClient.d.ts +10 -8
- package/sdk/partner/Theme/ThemePartnerClient.js +16 -14
- package/sdk/partner/Theme/ThemePartnerModel.d.ts +39 -135
- package/sdk/partner/Theme/ThemePartnerModel.js +38 -114
- package/sdk/partner/Theme/ThemePartnerValidator.js +4 -4
- package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +18 -28
- package/sdk/partner/Webhook/WebhookPartnerClient.js +18 -103
- package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +179 -612
- package/sdk/partner/Webhook/WebhookPartnerModel.js +150 -253
- package/sdk/partner/Webhook/WebhookPartnerValidator.d.ts +0 -1
- package/sdk/partner/Webhook/WebhookPartnerValidator.js +3 -11
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +4 -5
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +8 -14
- package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +9 -59
- package/sdk/platform/Analytics/AnalyticsPlatformModel.js +4 -40
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +32 -2
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +243 -3
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +130 -11
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +152 -12
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +39 -1
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +35 -0
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +12 -12
- package/sdk/platform/Billing/BillingPlatformClient.js +15 -15
- package/sdk/platform/Billing/BillingPlatformModel.d.ts +388 -443
- package/sdk/platform/Billing/BillingPlatformModel.js +263 -280
- package/sdk/platform/Billing/BillingPlatformValidator.d.ts +18 -16
- package/sdk/platform/Billing/BillingPlatformValidator.js +9 -8
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +103 -134
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +112 -407
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +65 -111
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +44 -106
- package/sdk/platform/Cart/CartPlatformModel.d.ts +1328 -4975
- package/sdk/platform/Cart/CartPlatformModel.js +1229 -1922
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +183 -208
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +358 -383
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +126 -122
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +68 -66
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +118 -141
- package/sdk/platform/Catalog/CatalogPlatformClient.js +170 -193
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +1744 -1501
- package/sdk/platform/Catalog/CatalogPlatformModel.js +1211 -1383
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +18 -18
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +18 -18
- package/sdk/platform/Common/CommonPlatformClient.d.ts +2 -3
- package/sdk/platform/Common/CommonPlatformClient.js +2 -3
- package/sdk/platform/Common/CommonPlatformModel.d.ts +9 -9
- package/sdk/platform/Common/CommonPlatformModel.js +6 -6
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +17 -16
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +17 -16
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +8 -8
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +8 -8
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +33 -43
- package/sdk/platform/Communication/CommunicationPlatformModel.js +34 -38
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +42 -46
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +43 -47
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +223 -223
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +212 -210
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +12 -12
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +12 -12
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +33 -46
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +54 -67
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +18 -18
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +18 -18
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +24 -45
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +30 -134
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +138 -283
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +100 -219
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +9 -37
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +8 -27
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +141 -124
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +422 -449
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +141 -179
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +130 -168
- package/sdk/platform/Content/ContentPlatformClient.d.ts +106 -142
- package/sdk/platform/Content/ContentPlatformClient.js +336 -523
- package/sdk/platform/Content/ContentPlatformModel.d.ts +395 -1241
- package/sdk/platform/Content/ContentPlatformModel.js +390 -521
- package/sdk/platform/Content/ContentPlatformValidator.d.ts +117 -168
- package/sdk/platform/Content/ContentPlatformValidator.js +108 -162
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +12 -14
- package/sdk/platform/Discount/DiscountPlatformClient.js +12 -14
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +13 -13
- package/sdk/platform/Discount/DiscountPlatformModel.js +12 -12
- package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +2 -2
- package/sdk/platform/Discount/DiscountPlatformValidator.js +2 -2
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +39 -95
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +63 -462
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +15 -62
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +13 -75
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +22 -20
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +24 -21
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +116 -370
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +104 -313
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
- package/sdk/platform/Finance/FinancePlatformClient.d.ts +320 -0
- package/sdk/platform/Finance/FinancePlatformClient.js +2333 -0
- package/sdk/platform/Finance/FinancePlatformModel.d.ts +2890 -0
- package/sdk/platform/Finance/FinancePlatformModel.js +2148 -0
- package/sdk/platform/Finance/FinancePlatformValidator.d.ts +284 -0
- package/sdk/platform/Finance/FinancePlatformValidator.js +354 -0
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +2 -2
- package/sdk/platform/Lead/LeadPlatformClient.js +2 -2
- package/sdk/platform/Lead/LeadPlatformModel.d.ts +5 -5
- package/sdk/platform/Lead/LeadPlatformModel.js +16 -16
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +4 -25
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +5 -175
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +4 -52
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +3 -34
- package/sdk/platform/Order/OrderPlatformClient.d.ts +103 -174
- package/sdk/platform/Order/OrderPlatformClient.js +275 -528
- package/sdk/platform/Order/OrderPlatformModel.d.ts +3078 -5449
- package/sdk/platform/Order/OrderPlatformModel.js +1659 -3501
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +219 -234
- package/sdk/platform/Order/OrderPlatformValidator.js +118 -146
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -6
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +7 -9
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +9 -9
- package/sdk/platform/Partner/PartnerPlatformModel.js +8 -8
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +106 -94
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +146 -131
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +93 -64
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +70 -62
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +20 -20
- package/sdk/platform/Payment/PaymentPlatformClient.js +20 -20
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +507 -386
- package/sdk/platform/Payment/PaymentPlatformModel.js +376 -323
- package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +10 -10
- package/sdk/platform/Payment/PaymentPlatformValidator.js +10 -10
- package/sdk/platform/PlatformClient.d.ts +2 -0
- package/sdk/platform/PlatformClient.js +4 -0
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +2 -2
- package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +9 -9
- package/sdk/platform/Rewards/RewardsPlatformModel.js +8 -8
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +35 -45
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +38 -117
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +13 -22
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +12 -24
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +46 -40
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +68 -62
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +396 -620
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +326 -501
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +11 -11
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +10 -10
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +2 -2
- package/sdk/platform/Share/SharePlatformApplicationClient.js +2 -2
- package/sdk/platform/Share/SharePlatformModel.d.ts +5 -36
- package/sdk/platform/Share/SharePlatformModel.js +4 -27
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +3 -3
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +4 -8
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +0 -5
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +0 -2
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +13 -76
- package/sdk/platform/Theme/ThemePlatformModel.js +17 -57
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +12 -12
- package/sdk/platform/User/UserPlatformApplicationClient.js +12 -12
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +2 -2
- package/sdk/platform/User/UserPlatformApplicationValidator.js +2 -2
- package/sdk/platform/User/UserPlatformModel.d.ts +21 -21
- package/sdk/platform/User/UserPlatformModel.js +23 -23
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +78 -25
- package/sdk/platform/Webhook/WebhookPlatformClient.js +470 -75
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +427 -720
- package/sdk/platform/Webhook/WebhookPlatformModel.js +386 -410
- package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +55 -10
- package/sdk/platform/Webhook/WebhookPlatformValidator.js +72 -12
- package/sdk/platform/index.d.ts +1 -0
- package/sdk/platform/index.js +2 -0
- package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +2 -3
- package/sdk/public/Configuration/ConfigurationPublicClient.js +10 -8
- package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +9 -9
- package/sdk/public/Configuration/ConfigurationPublicModel.js +6 -6
- package/sdk/public/Content/ContentPublicClient.d.ts +2 -112
- package/sdk/public/Content/ContentPublicClient.js +19 -793
- package/sdk/public/Content/ContentPublicModel.d.ts +3 -549
- package/sdk/public/Content/ContentPublicModel.js +3 -649
- package/sdk/public/Content/ContentPublicValidator.d.ts +3 -69
- package/sdk/public/Content/ContentPublicValidator.js +2 -88
- package/sdk/public/Partner/PartnerPublicClient.d.ts +1 -1
- package/sdk/public/Partner/PartnerPublicClient.js +14 -2
- package/sdk/public/Webhook/WebhookPublicClient.d.ts +8 -8
- package/sdk/public/Webhook/WebhookPublicClient.js +13 -10
- package/sdk/public/Webhook/WebhookPublicModel.d.ts +21 -21
- package/sdk/public/Webhook/WebhookPublicModel.js +15 -15
- package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
- package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
- package/sdk/application/Cart/CartApplicationModel.d.ts +0 -4340
- package/sdk/application/Cart/CartApplicationModel.js +0 -2718
- package/sdk/application/Cart/CartApplicationValidator.d.ts +0 -788
- package/sdk/application/Cart/CartApplicationValidator.js +0 -546
- package/sdk/application/Catalog/CatalogApplicationModel.d.ts +0 -3909
- package/sdk/application/Catalog/CatalogApplicationModel.js +0 -2667
- package/sdk/application/Catalog/CatalogApplicationValidator.d.ts +0 -791
- package/sdk/application/Catalog/CatalogApplicationValidator.js +0 -551
- package/sdk/application/Common/CommonApplicationModel.d.ts +0 -449
- package/sdk/application/Common/CommonApplicationModel.js +0 -308
- package/sdk/application/Common/CommonApplicationValidator.d.ts +0 -46
- package/sdk/application/Common/CommonApplicationValidator.js +0 -38
- package/sdk/application/Communication/CommunicationApplicationModel.d.ts +0 -293
- package/sdk/application/Communication/CommunicationApplicationModel.js +0 -201
- package/sdk/application/Communication/CommunicationApplicationValidator.d.ts +0 -29
- package/sdk/application/Communication/CommunicationApplicationValidator.js +0 -38
- package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +0 -2544
- package/sdk/application/Configuration/ConfigurationApplicationModel.js +0 -1875
- package/sdk/application/Configuration/ConfigurationApplicationValidator.d.ts +0 -179
- package/sdk/application/Configuration/ConfigurationApplicationValidator.js +0 -176
- package/sdk/application/Content/ContentApplicationModel.d.ts +0 -2189
- package/sdk/application/Content/ContentApplicationModel.js +0 -1640
- package/sdk/application/Content/ContentApplicationValidator.d.ts +0 -290
- package/sdk/application/Content/ContentApplicationValidator.js +0 -269
- package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +0 -270
- package/sdk/application/FileStorage/FileStorageApplicationModel.js +0 -188
- package/sdk/application/FileStorage/FileStorageApplicationValidator.d.ts +0 -56
- package/sdk/application/FileStorage/FileStorageApplicationValidator.js +0 -53
- package/sdk/application/Finance/FinanceApplicationClient.d.ts +0 -36
- package/sdk/application/Finance/FinanceApplicationClient.js +0 -202
- package/sdk/application/Finance/FinanceApplicationModel.d.ts +0 -289
- package/sdk/application/Finance/FinanceApplicationModel.js +0 -208
- package/sdk/application/Finance/FinanceApplicationValidator.d.ts +0 -25
- package/sdk/application/Finance/FinanceApplicationValidator.js +0 -31
- package/sdk/application/Lead/LeadApplicationModel.d.ts +0 -590
- package/sdk/application/Lead/LeadApplicationModel.js +0 -480
- package/sdk/application/Lead/LeadApplicationValidator.d.ts +0 -68
- package/sdk/application/Lead/LeadApplicationValidator.js +0 -71
- package/sdk/application/Logistic/LogisticApplicationModel.d.ts +0 -2034
- package/sdk/application/Logistic/LogisticApplicationModel.js +0 -1391
- package/sdk/application/Logistic/LogisticApplicationValidator.d.ts +0 -299
- package/sdk/application/Logistic/LogisticApplicationValidator.js +0 -224
- package/sdk/application/Order/OrderApplicationModel.d.ts +0 -2612
- package/sdk/application/Order/OrderApplicationModel.js +0 -1669
- package/sdk/application/Order/OrderApplicationValidator.d.ts +0 -279
- package/sdk/application/Order/OrderApplicationValidator.js +0 -210
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +0 -4062
- package/sdk/application/Payment/PaymentApplicationModel.js +0 -2632
- package/sdk/application/Payment/PaymentApplicationValidator.d.ts +0 -576
- package/sdk/application/Payment/PaymentApplicationValidator.js +0 -594
- package/sdk/application/Rewards/RewardsApplicationModel.d.ts +0 -365
- package/sdk/application/Rewards/RewardsApplicationModel.js +0 -396
- package/sdk/application/Rewards/RewardsApplicationValidator.d.ts +0 -73
- package/sdk/application/Rewards/RewardsApplicationValidator.js +0 -84
- package/sdk/application/Share/ShareApplicationModel.d.ts +0 -339
- package/sdk/application/Share/ShareApplicationModel.js +0 -234
- package/sdk/application/Share/ShareApplicationValidator.d.ts +0 -90
- package/sdk/application/Share/ShareApplicationValidator.js +0 -91
- package/sdk/application/Theme/ThemeApplicationModel.d.ts +0 -1744
- package/sdk/application/Theme/ThemeApplicationModel.js +0 -1446
- package/sdk/application/Theme/ThemeApplicationValidator.d.ts +0 -79
- package/sdk/application/Theme/ThemeApplicationValidator.js +0 -65
- package/sdk/application/User/UserApplicationModel.d.ts +0 -1943
- package/sdk/application/User/UserApplicationModel.js +0 -1382
- package/sdk/application/User/UserApplicationValidator.d.ts +0 -560
- package/sdk/application/User/UserApplicationValidator.js +0 -573
- package/sdk/application/Webhook/WebhookApplicationModel.d.ts +0 -54
- package/sdk/application/Webhook/WebhookApplicationModel.js +0 -48
- package/sdk/application/Webhook/WebhookApplicationValidator.d.ts +0 -16
- package/sdk/application/Webhook/WebhookApplicationValidator.js +0 -19
- package/sdk/common/Clickstream.d.ts +0 -1
- package/sdk/common/Clickstream.js +0 -464
|
@@ -59,6 +59,20 @@ 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>;
|
|
62
76
|
/**
|
|
63
77
|
* @param {ContentPlatformApplicationValidator.CreateAppCustomFieldDefinitionParam} arg
|
|
64
78
|
* - Arg object
|
|
@@ -69,36 +83,35 @@ declare class Content {
|
|
|
69
83
|
* - Success response
|
|
70
84
|
*
|
|
71
85
|
* @name createAppCustomFieldDefinition
|
|
72
|
-
* @summary: Create custom field definition
|
|
86
|
+
* @summary: Create custom field definition
|
|
73
87
|
* @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/).
|
|
74
88
|
*/
|
|
75
|
-
createAppCustomFieldDefinition({
|
|
89
|
+
createAppCustomFieldDefinition({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomFieldDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>;
|
|
76
90
|
/**
|
|
77
|
-
* @param {ContentPlatformApplicationValidator.
|
|
91
|
+
* @param {ContentPlatformApplicationValidator.CreateAppCustomObjectParam} arg
|
|
78
92
|
* - Arg object
|
|
79
93
|
*
|
|
80
94
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
81
95
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
82
96
|
* @returns {Promise<ContentPlatformModel.CustomObjectSchema>} - Success response
|
|
83
|
-
* @name
|
|
97
|
+
* @name createAppCustomObject
|
|
84
98
|
* @summary: Create custom object entries
|
|
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/
|
|
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/createAppCustomObject/).
|
|
86
100
|
*/
|
|
87
|
-
|
|
101
|
+
createAppCustomObject({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomObjectParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectSchema>;
|
|
88
102
|
/**
|
|
89
103
|
* @param {ContentPlatformApplicationValidator.CreateAppCustomObjectDefinitionParam} arg
|
|
90
104
|
* - Arg object
|
|
91
105
|
*
|
|
92
106
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
93
107
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
94
|
-
* @returns {Promise<ContentPlatformModel.
|
|
95
|
-
*
|
|
96
|
-
*
|
|
108
|
+
* @returns {Promise<ContentPlatformModel.CustomObjectDefinitionSchema>} -
|
|
109
|
+
* Success response
|
|
97
110
|
* @name createAppCustomObjectDefinition
|
|
98
111
|
* @summary: Create custom object definition
|
|
99
112
|
* @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/).
|
|
100
113
|
*/
|
|
101
|
-
createAppCustomObjectDefinition({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomObjectDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.
|
|
114
|
+
createAppCustomObjectDefinition({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomObjectDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionSchema>;
|
|
102
115
|
/**
|
|
103
116
|
* @param {ContentPlatformApplicationValidator.CreateBlogParam} arg - Arg object
|
|
104
117
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -201,31 +214,31 @@ declare class Content {
|
|
|
201
214
|
*/
|
|
202
215
|
deleteAnnouncement({ announcementId, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAnnouncementParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CreateAnnouncementSchema>;
|
|
203
216
|
/**
|
|
204
|
-
* @param {ContentPlatformApplicationValidator.
|
|
217
|
+
* @param {ContentPlatformApplicationValidator.DeleteAppCustomFieldDefinitionParam} arg
|
|
205
218
|
* - Arg object
|
|
206
219
|
*
|
|
207
220
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
208
221
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
209
222
|
* @returns {Promise<ContentPlatformModel.CustomDataDeleteSchema>} - Success response
|
|
210
|
-
* @name
|
|
223
|
+
* @name deleteAppCustomFieldDefinition
|
|
211
224
|
* @summary: Delete custom fields definition
|
|
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/
|
|
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/deleteAppCustomFieldDefinition/).
|
|
213
226
|
*/
|
|
214
|
-
|
|
227
|
+
deleteAppCustomFieldDefinition({ definitionId, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAppCustomFieldDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomDataDeleteSchema>;
|
|
215
228
|
/**
|
|
216
|
-
* @param {ContentPlatformApplicationValidator.
|
|
229
|
+
* @param {ContentPlatformApplicationValidator.DeleteAppCustomObjectParam} arg
|
|
217
230
|
* - Arg object
|
|
218
231
|
*
|
|
219
232
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
220
233
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
221
234
|
* @returns {Promise<ContentPlatformModel.CustomDataDeleteSchema>} - Success response
|
|
222
|
-
* @name
|
|
235
|
+
* @name deleteAppCustomObject
|
|
223
236
|
* @summary: Delete custom object
|
|
224
|
-
* @description:
|
|
237
|
+
* @description: Custom object entries can be deleted by providing the delete ID using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteAppCustomObject/).
|
|
225
238
|
*/
|
|
226
|
-
|
|
239
|
+
deleteAppCustomObject({ metaobjectId, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAppCustomObjectParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomDataDeleteSchema>;
|
|
227
240
|
/**
|
|
228
|
-
* @param {ContentPlatformApplicationValidator.
|
|
241
|
+
* @param {ContentPlatformApplicationValidator.DeleteAppCustomObjectDefinitionParam} arg
|
|
229
242
|
* - Arg object
|
|
230
243
|
*
|
|
231
244
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -233,11 +246,11 @@ declare class Content {
|
|
|
233
246
|
* @returns {Promise<ContentPlatformModel.CustomObjectDefinitionDeleteResponseSchema>}
|
|
234
247
|
* - Success response
|
|
235
248
|
*
|
|
236
|
-
* @name
|
|
249
|
+
* @name deleteAppCustomObjectDefinition
|
|
237
250
|
* @summary: Delete custom object definition
|
|
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/
|
|
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/deleteAppCustomObjectDefinition/).
|
|
239
252
|
*/
|
|
240
|
-
|
|
253
|
+
deleteAppCustomObjectDefinition({ definitionId, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAppCustomObjectDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionDeleteResponseSchema>;
|
|
241
254
|
/**
|
|
242
255
|
* @param {ContentPlatformApplicationValidator.DeleteBlogParam} arg - Arg object
|
|
243
256
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -383,7 +396,7 @@ declare class Content {
|
|
|
383
396
|
*/
|
|
384
397
|
editSEOMarkupSchema({ id, body, requestHeaders }?: ContentPlatformApplicationValidator.EditSEOMarkupSchemaParam, { responseHeaders }?: object): Promise<ContentPlatformModel.SEOSchemaMarkupTemplate>;
|
|
385
398
|
/**
|
|
386
|
-
* @param {ContentPlatformApplicationValidator.
|
|
399
|
+
* @param {ContentPlatformApplicationValidator.ExportAppCustomObjectEntriesParam} arg
|
|
387
400
|
* - Arg object
|
|
388
401
|
*
|
|
389
402
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -391,11 +404,11 @@ declare class Content {
|
|
|
391
404
|
* @returns {Promise<ContentPlatformModel.CustomObjectBulkEntryInitiateDownload>}
|
|
392
405
|
* - Success response
|
|
393
406
|
*
|
|
394
|
-
* @name
|
|
407
|
+
* @name exportAppCustomObjectEntries
|
|
395
408
|
* @summary: Initiate download for bulk custom object entries
|
|
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/
|
|
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/exportAppCustomObjectEntries/).
|
|
397
410
|
*/
|
|
398
|
-
|
|
411
|
+
exportAppCustomObjectEntries({ definitionId, requestHeaders }?: ContentPlatformApplicationValidator.ExportAppCustomObjectEntriesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectBulkEntryInitiateDownload>;
|
|
399
412
|
/**
|
|
400
413
|
* @param {ContentPlatformApplicationValidator.GenerateSEOTitleParam} arg - Arg object
|
|
401
414
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -432,32 +445,19 @@ declare class Content {
|
|
|
432
445
|
*/
|
|
433
446
|
getAnnouncementsList({ pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetAnnouncementsListParam, { responseHeaders }?: object): Promise<ContentPlatformModel.GetAnnouncementListSchema>;
|
|
434
447
|
/**
|
|
435
|
-
* @param {ContentPlatformApplicationValidator.
|
|
448
|
+
* @param {ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionParam} arg
|
|
436
449
|
* - Arg object
|
|
437
450
|
*
|
|
438
451
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
439
452
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
440
|
-
* @returns {Promise<ContentPlatformModel.
|
|
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>}
|
|
453
|
+
* @returns {Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>}
|
|
454
454
|
* - Success response
|
|
455
455
|
*
|
|
456
|
-
* @name
|
|
457
|
-
* @summary: Get custom fields definition
|
|
458
|
-
* @description: Custom field definitions can be
|
|
456
|
+
* @name getAppCustomFieldDefinition
|
|
457
|
+
* @summary: Get custom fields definition
|
|
458
|
+
* @description: Custom field definitions can be fetch using definition id. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFieldDefinition/).
|
|
459
459
|
*/
|
|
460
|
-
|
|
460
|
+
getAppCustomFieldDefinition({ definitionId, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>;
|
|
461
461
|
/**
|
|
462
462
|
* @param {ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionsParam} arg
|
|
463
463
|
* - Arg object
|
|
@@ -470,21 +470,34 @@ 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, resource, type, search, 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.CustomObjectByIdSchema>} - 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.
|
|
485
|
+
getAppCustomFieldTypes({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectByIdSchema>;
|
|
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>;
|
|
486
499
|
/**
|
|
487
|
-
* @param {ContentPlatformApplicationValidator.
|
|
500
|
+
* @param {ContentPlatformApplicationValidator.GetAppCustomFieldsByResourceIdParam} arg
|
|
488
501
|
* - Arg object
|
|
489
502
|
*
|
|
490
503
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -492,38 +505,36 @@ declare class Content {
|
|
|
492
505
|
* @returns {Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>}
|
|
493
506
|
* - Success response
|
|
494
507
|
*
|
|
495
|
-
* @name
|
|
496
|
-
* @summary: Get list of custom fields of given resource and resource
|
|
497
|
-
* @description: Retrieves a list of custom fields attached to a particular resource by using the resource and resource
|
|
508
|
+
* @name getAppCustomFieldsByResourceId
|
|
509
|
+
* @summary: Get list of custom fields of given resource and resource id
|
|
510
|
+
* @description: Retrieves a list of custom fields attached to a particular resource by using the resource and resource id. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFieldsByResourceId/).
|
|
498
511
|
*/
|
|
499
|
-
|
|
512
|
+
getAppCustomFieldsByResourceId({ resource, resourceId, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomFieldsByResourceIdParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>;
|
|
500
513
|
/**
|
|
501
|
-
* @param {ContentPlatformApplicationValidator.
|
|
514
|
+
* @param {ContentPlatformApplicationValidator.GetAppCustomObjectParam} arg
|
|
502
515
|
* - Arg object
|
|
503
516
|
*
|
|
504
517
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
505
518
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
506
|
-
* @returns {Promise<ContentPlatformModel.
|
|
507
|
-
*
|
|
508
|
-
* @name getAppCustomObjectBySlug
|
|
519
|
+
* @returns {Promise<ContentPlatformModel.CustomObjectByIdSchema>} - Success response
|
|
520
|
+
* @name getAppCustomObject
|
|
509
521
|
* @summary: Get custom object details
|
|
510
|
-
* @description: Details of
|
|
522
|
+
* @description: Details of custom objects, their field details, definitions, and references can be obtained using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomObject/).
|
|
511
523
|
*/
|
|
512
|
-
|
|
524
|
+
getAppCustomObject({ metaobjectId, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectByIdSchema>;
|
|
513
525
|
/**
|
|
514
|
-
* @param {ContentPlatformApplicationValidator.
|
|
526
|
+
* @param {ContentPlatformApplicationValidator.GetAppCustomObjectDefinitionParam} arg
|
|
515
527
|
* - Arg object
|
|
516
528
|
*
|
|
517
529
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
518
530
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
519
|
-
* @returns {Promise<ContentPlatformModel.
|
|
520
|
-
*
|
|
521
|
-
*
|
|
522
|
-
* @name getAppCustomObjectDefinitionBySlug
|
|
531
|
+
* @returns {Promise<ContentPlatformModel.CustomObjectDefinitionSchema>} -
|
|
532
|
+
* Success response
|
|
533
|
+
* @name getAppCustomObjectDefinition
|
|
523
534
|
* @summary: Get custom object definition
|
|
524
|
-
* @description: Custom object definitions can be fetched using their
|
|
535
|
+
* @description: Custom object definitions can be fetched using their definition ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomObjectDefinition/).
|
|
525
536
|
*/
|
|
526
|
-
|
|
537
|
+
getAppCustomObjectDefinition({ definitionId, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionSchema>;
|
|
527
538
|
/**
|
|
528
539
|
* @param {ContentPlatformApplicationValidator.GetAppCustomObjectDefinitionsParam} arg
|
|
529
540
|
* - Arg object
|
|
@@ -538,17 +549,17 @@ declare class Content {
|
|
|
538
549
|
*/
|
|
539
550
|
getAppCustomObjectDefinitions({ pageNo, pageSize, search, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectDefinitionsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionsSchema>;
|
|
540
551
|
/**
|
|
541
|
-
* @param {ContentPlatformApplicationValidator.
|
|
552
|
+
* @param {ContentPlatformApplicationValidator.GetAppCustomObjectsParam} arg
|
|
542
553
|
* - Arg object
|
|
543
554
|
*
|
|
544
555
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
545
556
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
546
557
|
* @returns {Promise<ContentPlatformModel.CustomObjectsSchema>} - Success response
|
|
547
|
-
* @name
|
|
558
|
+
* @name getAppCustomObjects
|
|
548
559
|
* @summary: Get list of custom objects
|
|
549
|
-
* @description: Custom object entries can fetch using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/
|
|
560
|
+
* @description: Custom object entries can fetch using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomObjects/).
|
|
550
561
|
*/
|
|
551
|
-
|
|
562
|
+
getAppCustomObjects({ pageNo, pageSize, definitionId, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectsSchema>;
|
|
552
563
|
/**
|
|
553
564
|
* @param {ContentPlatformApplicationValidator.GetAppJobsParam} arg - Arg object
|
|
554
565
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -583,12 +594,12 @@ declare class Content {
|
|
|
583
594
|
* @param {ContentPlatformApplicationValidator.GetBlogsParam} arg - Arg object
|
|
584
595
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
585
596
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
586
|
-
* @returns {Promise<ContentPlatformModel.
|
|
597
|
+
* @returns {Promise<ContentPlatformModel.BlogGetResponse>} - Success response
|
|
587
598
|
* @name getBlogs
|
|
588
599
|
* @summary: List blogs
|
|
589
600
|
* @description: List all blogs - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getBlogs/).
|
|
590
601
|
*/
|
|
591
|
-
getBlogs({ pageNo, pageSize, tags, q, slug, title, status, requestHeaders }?: ContentPlatformApplicationValidator.GetBlogsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.
|
|
602
|
+
getBlogs({ pageNo, pageSize, tags, q, slug, title, status, requestHeaders }?: ContentPlatformApplicationValidator.GetBlogsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.BlogGetResponse>;
|
|
592
603
|
/**
|
|
593
604
|
* @param {ContentPlatformApplicationValidator.GetDataLoadersParam} arg - Arg object
|
|
594
605
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -618,13 +629,13 @@ declare class Content {
|
|
|
618
629
|
*
|
|
619
630
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
620
631
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
621
|
-
* @returns {Promise<ContentPlatformModel.
|
|
632
|
+
* @returns {Promise<ContentPlatformModel.DefaultNavigationResponse>} -
|
|
622
633
|
* Success response
|
|
623
634
|
* @name getDefaultNavigations
|
|
624
635
|
* @summary: Get default navigations
|
|
625
636
|
* @description: Retrieve default navigation elements. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getDefaultNavigations/).
|
|
626
637
|
*/
|
|
627
|
-
getDefaultNavigations({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.
|
|
638
|
+
getDefaultNavigations({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.DefaultNavigationResponse>;
|
|
628
639
|
/**
|
|
629
640
|
* @param {ContentPlatformApplicationValidator.GetDefaultSEOMarkupSchemaParam} arg
|
|
630
641
|
* - Arg object
|
|
@@ -698,12 +709,12 @@ declare class Content {
|
|
|
698
709
|
* @param {ContentPlatformApplicationValidator.GetLandingPagesParam} arg - Arg object
|
|
699
710
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
700
711
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
701
|
-
* @returns {Promise<ContentPlatformModel.
|
|
712
|
+
* @returns {Promise<ContentPlatformModel.LandingPageGetResponse>} - Success response
|
|
702
713
|
* @name getLandingPages
|
|
703
714
|
* @summary: Get landing pages
|
|
704
715
|
* @description: Lists a list landing pages as per device types - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getLandingPages/).
|
|
705
716
|
*/
|
|
706
|
-
getLandingPages({ pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetLandingPagesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.
|
|
717
|
+
getLandingPages({ pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetLandingPagesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.LandingPageGetResponse>;
|
|
707
718
|
/**
|
|
708
719
|
* @param {ContentPlatformApplicationValidator.GetLegalInformationParam} arg
|
|
709
720
|
* - Arg object
|
|
@@ -732,12 +743,12 @@ declare class Content {
|
|
|
732
743
|
* @param {ContentPlatformApplicationValidator.GetNavigationsParam} arg - Arg object
|
|
733
744
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
734
745
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
735
|
-
* @returns {Promise<ContentPlatformModel.
|
|
746
|
+
* @returns {Promise<ContentPlatformModel.NavigationGetResponse>} - Success response
|
|
736
747
|
* @name getNavigations
|
|
737
748
|
* @summary: Get navigation items
|
|
738
749
|
* @description: Retrieve a list of navigational elements. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getNavigations/).
|
|
739
750
|
*/
|
|
740
|
-
getNavigations({ devicePlatform, pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetNavigationsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.
|
|
751
|
+
getNavigations({ devicePlatform, pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetNavigationsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.NavigationGetResponse>;
|
|
741
752
|
/**
|
|
742
753
|
* @param {ContentPlatformApplicationValidator.GetPageBySlugParam} arg - Arg object
|
|
743
754
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -772,12 +783,12 @@ declare class Content {
|
|
|
772
783
|
* @param {ContentPlatformApplicationValidator.GetPagesParam} arg - Arg object
|
|
773
784
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
774
785
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
775
|
-
* @returns {Promise<ContentPlatformModel.
|
|
786
|
+
* @returns {Promise<ContentPlatformModel.PageGetResponse>} - Success response
|
|
776
787
|
* @name getPages
|
|
777
788
|
* @summary: Get pages
|
|
778
789
|
* @description: Retrieve a list of available pages. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getPages/).
|
|
779
790
|
*/
|
|
780
|
-
getPages({ pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetPagesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.
|
|
791
|
+
getPages({ pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetPagesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.PageGetResponse>;
|
|
781
792
|
/**
|
|
782
793
|
* @param {ContentPlatformApplicationValidator.GetPathRedirectionRuleParam} arg
|
|
783
794
|
* - Arg object
|
|
@@ -854,12 +865,32 @@ declare class Content {
|
|
|
854
865
|
* @param {ContentPlatformApplicationValidator.GetSlideshowsParam} arg - Arg object
|
|
855
866
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
856
867
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
857
|
-
* @returns {Promise<ContentPlatformModel.
|
|
868
|
+
* @returns {Promise<ContentPlatformModel.SlideshowGetResponse>} - Success response
|
|
858
869
|
* @name getSlideshows
|
|
859
870
|
* @summary: List Slideshows
|
|
860
871
|
* @description: Use this API to list all Slideshows - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getSlideshows/).
|
|
861
872
|
*/
|
|
862
|
-
getSlideshows({ devicePlatform, pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetSlideshowsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.
|
|
873
|
+
getSlideshows({ devicePlatform, pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetSlideshowsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.SlideshowGetResponse>;
|
|
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>;
|
|
863
894
|
/**
|
|
864
895
|
* @param {ContentPlatformApplicationValidator.GetSupportInformationParam} arg
|
|
865
896
|
* - Arg object
|
|
@@ -873,31 +904,32 @@ declare class Content {
|
|
|
873
904
|
*/
|
|
874
905
|
getSupportInformation({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.Support>;
|
|
875
906
|
/**
|
|
876
|
-
* @param {ContentPlatformApplicationValidator.
|
|
907
|
+
* @param {ContentPlatformApplicationValidator.ImportAppCustomObjectEntriesParam} arg
|
|
877
908
|
* - Arg object
|
|
878
909
|
*
|
|
879
910
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
880
911
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
881
|
-
* @returns {Promise<ContentPlatformModel.
|
|
912
|
+
* @returns {Promise<ContentPlatformModel.CustomObjectEntryBulkUploadResponse>}
|
|
882
913
|
* - Success response
|
|
883
914
|
*
|
|
884
|
-
* @name
|
|
915
|
+
* @name importAppCustomObjectEntries
|
|
885
916
|
* @summary: Bulk custom object entries upload
|
|
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/
|
|
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/importAppCustomObjectEntries/).
|
|
887
918
|
*/
|
|
888
|
-
|
|
919
|
+
importAppCustomObjectEntries({ definitionId, body, requestHeaders }?: ContentPlatformApplicationValidator.ImportAppCustomObjectEntriesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectEntryBulkUploadResponse>;
|
|
889
920
|
/**
|
|
890
921
|
* @param {ContentPlatformApplicationValidator.RemoveInjectableTagParam} arg
|
|
891
922
|
* - Arg object
|
|
892
923
|
*
|
|
893
924
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
894
925
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
895
|
-
* @returns {Promise<ContentPlatformModel.
|
|
926
|
+
* @returns {Promise<ContentPlatformModel.TagDeleteSuccessResponse>} -
|
|
927
|
+
* Success response
|
|
896
928
|
* @name removeInjectableTag
|
|
897
929
|
* @summary: Remove HTML tag
|
|
898
930
|
* @description: Delete a specific injectable tag. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/removeInjectableTag/).
|
|
899
931
|
*/
|
|
900
|
-
removeInjectableTag({ body, requestHeaders }?: ContentPlatformApplicationValidator.RemoveInjectableTagParam, { responseHeaders }?: object): Promise<ContentPlatformModel.
|
|
932
|
+
removeInjectableTag({ body, requestHeaders }?: ContentPlatformApplicationValidator.RemoveInjectableTagParam, { responseHeaders }?: object): Promise<ContentPlatformModel.TagDeleteSuccessResponse>;
|
|
901
933
|
/**
|
|
902
934
|
* @param {ContentPlatformApplicationValidator.ResetDataLoaderParam} arg - Arg object
|
|
903
935
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -910,17 +942,17 @@ declare class Content {
|
|
|
910
942
|
*/
|
|
911
943
|
resetDataLoader({ service, operationId, requestHeaders }?: ContentPlatformApplicationValidator.ResetDataLoaderParam, { responseHeaders }?: object): Promise<ContentPlatformModel.DataLoaderResetResponseSchema>;
|
|
912
944
|
/**
|
|
913
|
-
* @param {ContentPlatformApplicationValidator.
|
|
945
|
+
* @param {ContentPlatformApplicationValidator.SampleAppCustomObjectBulkEntryParam} arg
|
|
914
946
|
* - Arg object
|
|
915
947
|
*
|
|
916
948
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
917
949
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
918
950
|
* @returns {Promise<string>} - Success response
|
|
919
|
-
* @name
|
|
951
|
+
* @name sampleAppCustomObjectBulkEntry
|
|
920
952
|
* @summary: Download sample for custom object bulk entry
|
|
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/
|
|
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/sampleAppCustomObjectBulkEntry/).
|
|
922
954
|
*/
|
|
923
|
-
|
|
955
|
+
sampleAppCustomObjectBulkEntry({ definitionId, requestHeaders }?: ContentPlatformApplicationValidator.SampleAppCustomObjectBulkEntryParam, { responseHeaders }?: object): Promise<string>;
|
|
924
956
|
/**
|
|
925
957
|
* @param {ContentPlatformApplicationValidator.SelectDataLoaderParam} arg - Arg object
|
|
926
958
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -959,21 +991,7 @@ declare class Content {
|
|
|
959
991
|
*/
|
|
960
992
|
updateAnnouncementSchedule({ announcementId, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAnnouncementScheduleParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CreateAnnouncementSchema>;
|
|
961
993
|
/**
|
|
962
|
-
* @param {ContentPlatformApplicationValidator.
|
|
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
|
|
994
|
+
* @param {ContentPlatformApplicationValidator.UpdateAppCustomFieldDefinitionParam} arg
|
|
977
995
|
* - Arg object
|
|
978
996
|
*
|
|
979
997
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -981,38 +999,36 @@ declare class Content {
|
|
|
981
999
|
* @returns {Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>}
|
|
982
1000
|
* - Success response
|
|
983
1001
|
*
|
|
984
|
-
* @name
|
|
1002
|
+
* @name updateAppCustomFieldDefinition
|
|
985
1003
|
* @summary: Update custom field definition
|
|
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/
|
|
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/updateAppCustomFieldDefinition/).
|
|
987
1005
|
*/
|
|
988
|
-
|
|
1006
|
+
updateAppCustomFieldDefinition({ definitionId, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomFieldDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>;
|
|
989
1007
|
/**
|
|
990
|
-
* @param {ContentPlatformApplicationValidator.
|
|
1008
|
+
* @param {ContentPlatformApplicationValidator.UpdateAppCustomObjectParam} arg
|
|
991
1009
|
* - Arg object
|
|
992
1010
|
*
|
|
993
1011
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
994
1012
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
995
|
-
* @returns {Promise<ContentPlatformModel.
|
|
996
|
-
*
|
|
997
|
-
* @name updateAppCustomObjectBySlug
|
|
1013
|
+
* @returns {Promise<ContentPlatformModel.CustomObjectByIdSchema>} - Success response
|
|
1014
|
+
* @name updateAppCustomObject
|
|
998
1015
|
* @summary: Update custom object details
|
|
999
|
-
* @description: Custom object entries can be updated using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/
|
|
1016
|
+
* @description: Custom object entries can be updated using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateAppCustomObject/).
|
|
1000
1017
|
*/
|
|
1001
|
-
|
|
1018
|
+
updateAppCustomObject({ metaobjectId, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomObjectParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectByIdSchema>;
|
|
1002
1019
|
/**
|
|
1003
|
-
* @param {ContentPlatformApplicationValidator.
|
|
1020
|
+
* @param {ContentPlatformApplicationValidator.UpdateAppCustomObjectDefinitionParam} arg
|
|
1004
1021
|
* - Arg object
|
|
1005
1022
|
*
|
|
1006
1023
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
1007
1024
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
1008
|
-
* @returns {Promise<ContentPlatformModel.
|
|
1009
|
-
*
|
|
1010
|
-
*
|
|
1011
|
-
* @name updateAppCustomObjectDefinitionBySlug
|
|
1025
|
+
* @returns {Promise<ContentPlatformModel.CustomObjectDefinitionSchema>} -
|
|
1026
|
+
* Success response
|
|
1027
|
+
* @name updateAppCustomObjectDefinition
|
|
1012
1028
|
* @summary: Update custom object definition
|
|
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/
|
|
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/updateAppCustomObjectDefinition/).
|
|
1014
1030
|
*/
|
|
1015
|
-
|
|
1031
|
+
updateAppCustomObjectDefinition({ definitionId, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomObjectDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionSchema>;
|
|
1016
1032
|
/**
|
|
1017
1033
|
* @param {ContentPlatformApplicationValidator.UpdateBlogParam} arg - Arg object
|
|
1018
1034
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -1162,3 +1178,4 @@ declare class Content {
|
|
|
1162
1178
|
}
|
|
1163
1179
|
import ContentPlatformApplicationValidator = require("./ContentPlatformApplicationValidator");
|
|
1164
1180
|
import ContentPlatformModel = require("./ContentPlatformModel");
|
|
1181
|
+
import Paginator = require("../../common/Paginator");
|