@gofynd/fdk-client-javascript 3.1.0-beta.1 → 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +2 -2
- package/sdk/application/ApplicationClient.d.ts +2 -0
- package/sdk/application/ApplicationClient.js +2 -0
- package/sdk/application/Cart/CartApplicationClient.d.ts +81 -101
- package/sdk/application/Cart/CartApplicationClient.js +173 -511
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +110 -110
- package/sdk/application/Catalog/CatalogApplicationClient.js +214 -447
- package/sdk/application/Common/CommonApplicationClient.d.ts +4 -4
- package/sdk/application/Common/CommonApplicationClient.js +4 -19
- package/sdk/application/Communication/CommunicationApplicationClient.d.ts +3 -43
- package/sdk/application/Communication/CommunicationApplicationClient.js +4 -214
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +41 -54
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +39 -192
- package/sdk/application/Content/ContentApplicationClient.d.ts +61 -61
- package/sdk/application/Content/ContentApplicationClient.js +183 -366
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +2 -2
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +11 -30
- package/sdk/application/Finance/FinanceApplicationClient.d.ts +29 -0
- package/sdk/application/Finance/FinanceApplicationClient.js +111 -0
- package/sdk/application/Lead/LeadApplicationClient.d.ts +6 -6
- package/sdk/application/Lead/LeadApplicationClient.js +24 -55
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +28 -117
- package/sdk/application/Logistic/LogisticApplicationClient.js +99 -492
- package/sdk/application/Order/OrderApplicationClient.d.ts +31 -51
- package/sdk/application/Order/OrderApplicationClient.js +89 -293
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +108 -218
- package/sdk/application/Payment/PaymentApplicationClient.js +100 -1081
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +14 -14
- package/sdk/application/Rewards/RewardsApplicationClient.js +13 -66
- package/sdk/application/Share/ShareApplicationClient.d.ts +11 -11
- package/sdk/application/Share/ShareApplicationClient.js +35 -89
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +5 -25
- package/sdk/application/Theme/ThemeApplicationClient.js +24 -150
- package/sdk/application/User/UserApplicationClient.d.ts +23 -13
- package/sdk/application/User/UserApplicationClient.js +49 -407
- package/sdk/application/Webhook/WebhookApplicationClient.d.ts +4 -4
- package/sdk/application/Webhook/WebhookApplicationClient.js +4 -11
- package/sdk/common/Utility.d.ts +1 -1
- package/sdk/common/Utility.js +10 -7
- package/sdk/common/Validator.d.ts +1 -0
- package/sdk/common/Validator.js +20 -0
- package/sdk/common/utils.d.ts +0 -1
- package/sdk/common/utils.js +0 -14
- package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +10 -54
- package/sdk/partner/FileStorage/FileStoragePartnerClient.js +32 -364
- package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +54 -1
- package/sdk/partner/FileStorage/FileStoragePartnerModel.js +43 -0
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +1 -5
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +4 -35
- package/sdk/partner/Lead/LeadPartnerClient.d.ts +5 -5
- package/sdk/partner/Lead/LeadPartnerClient.js +4 -4
- package/sdk/partner/Lead/LeadPartnerModel.d.ts +52 -98
- package/sdk/partner/Lead/LeadPartnerModel.js +76 -100
- package/sdk/partner/Lead/LeadPartnerValidator.js +1 -1
- package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +172 -41
- package/sdk/partner/Logistics/LogisticsPartnerClient.js +1222 -85
- package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +1921 -297
- package/sdk/partner/Logistics/LogisticsPartnerModel.js +973 -258
- package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +13 -1
- package/sdk/partner/Logistics/LogisticsPartnerValidator.js +148 -16
- package/sdk/partner/PartnerClient.d.ts +0 -6
- package/sdk/partner/PartnerClient.js +0 -9
- package/sdk/partner/Theme/ThemePartnerClient.d.ts +21 -63
- package/sdk/partner/Theme/ThemePartnerClient.js +67 -392
- package/sdk/partner/Theme/ThemePartnerModel.d.ts +72 -104
- package/sdk/partner/Theme/ThemePartnerModel.js +75 -101
- package/sdk/partner/Theme/ThemePartnerValidator.d.ts +1 -5
- package/sdk/partner/Theme/ThemePartnerValidator.js +12 -42
- package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +18 -18
- package/sdk/partner/Webhook/WebhookPartnerClient.js +18 -18
- package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +673 -189
- package/sdk/partner/Webhook/WebhookPartnerModel.js +270 -159
- package/sdk/partner/Webhook/WebhookPartnerValidator.js +3 -3
- package/sdk/partner/index.d.ts +0 -3
- package/sdk/partner/index.js +0 -6
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +4 -1
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +1 -1
- package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +3 -3
- package/sdk/platform/Analytics/AnalyticsPlatformModel.js +3 -3
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +2 -32
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +3 -243
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +49 -145
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +20 -171
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +1 -39
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +0 -35
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +12 -12
- package/sdk/platform/Billing/BillingPlatformClient.js +15 -15
- package/sdk/platform/Billing/BillingPlatformModel.d.ts +443 -388
- package/sdk/platform/Billing/BillingPlatformModel.js +280 -263
- package/sdk/platform/Billing/BillingPlatformValidator.d.ts +16 -18
- package/sdk/platform/Billing/BillingPlatformValidator.js +8 -9
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +172 -251
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +577 -648
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +270 -165
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +192 -108
- package/sdk/platform/Cart/CartPlatformModel.d.ts +4554 -3154
- package/sdk/platform/Cart/CartPlatformModel.js +1935 -2854
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +380 -976
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +2004 -6464
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +161 -1082
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +80 -884
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +568 -325
- package/sdk/platform/Catalog/CatalogPlatformClient.js +1560 -1162
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +9772 -7871
- package/sdk/platform/Catalog/CatalogPlatformModel.js +6978 -9516
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +231 -240
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +180 -188
- package/sdk/platform/Common/CommonPlatformClient.d.ts +6 -5
- package/sdk/platform/Common/CommonPlatformClient.js +6 -5
- package/sdk/platform/Common/CommonPlatformModel.d.ts +19 -25
- package/sdk/platform/Common/CommonPlatformModel.js +11 -14
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +240 -376
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +589 -874
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +139 -170
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +126 -145
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +3 -56
- package/sdk/platform/Communication/CommunicationPlatformClient.js +4 -307
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +330 -502
- package/sdk/platform/Communication/CommunicationPlatformModel.js +376 -610
- package/sdk/platform/Communication/CommunicationPlatformValidator.d.ts +3 -62
- package/sdk/platform/Communication/CommunicationPlatformValidator.js +2 -48
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +72 -100
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +88 -146
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +270 -241
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +248 -226
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +20 -31
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +20 -25
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +117 -332
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +409 -1470
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +55 -158
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +41 -163
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +65 -142
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +103 -568
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +562 -1289
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +368 -1037
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +34 -80
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +24 -79
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +302 -248
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +1292 -773
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +330 -218
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +325 -208
- package/sdk/platform/Content/ContentPlatformClient.d.ts +279 -118
- package/sdk/platform/Content/ContentPlatformClient.js +1617 -492
- package/sdk/platform/Content/ContentPlatformModel.d.ts +2391 -924
- package/sdk/platform/Content/ContentPlatformModel.js +1314 -970
- package/sdk/platform/Content/ContentPlatformValidator.d.ts +272 -134
- package/sdk/platform/Content/ContentPlatformValidator.js +295 -118
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +53 -43
- package/sdk/platform/Discount/DiscountPlatformClient.js +53 -43
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +383 -110
- package/sdk/platform/Discount/DiscountPlatformModel.js +117 -108
- package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +56 -36
- package/sdk/platform/Discount/DiscountPlatformValidator.js +29 -19
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +4 -163
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +4 -1078
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +5 -141
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +4 -177
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +8 -8
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +8 -8
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +30 -1123
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +24 -1135
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +17 -17
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +33 -33
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +19 -19
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +14 -14
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +24 -4
- package/sdk/platform/Lead/LeadPlatformClient.js +160 -4
- package/sdk/platform/Lead/LeadPlatformModel.d.ts +60 -140
- package/sdk/platform/Lead/LeadPlatformModel.js +81 -162
- package/sdk/platform/Lead/LeadPlatformValidator.d.ts +29 -3
- package/sdk/platform/Lead/LeadPlatformValidator.js +28 -2
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +19 -98
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +27 -662
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +91 -118
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +32 -127
- package/sdk/platform/Order/OrderPlatformClient.d.ts +406 -403
- package/sdk/platform/Order/OrderPlatformClient.js +1200 -1343
- package/sdk/platform/Order/OrderPlatformModel.d.ts +8665 -4505
- package/sdk/platform/Order/OrderPlatformModel.js +4088 -3601
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +666 -442
- package/sdk/platform/Order/OrderPlatformValidator.js +353 -312
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +6 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +9 -7
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +67 -19
- package/sdk/platform/Partner/PartnerPlatformModel.js +26 -17
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +135 -382
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +937 -2452
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +100 -306
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +74 -305
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +56 -66
- package/sdk/platform/Payment/PaymentPlatformClient.js +124 -269
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +1307 -3536
- package/sdk/platform/Payment/PaymentPlatformModel.js +1389 -3692
- package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +35 -64
- package/sdk/platform/Payment/PaymentPlatformValidator.js +34 -60
- package/sdk/platform/PlatformClient.d.ts +0 -2
- package/sdk/platform/PlatformClient.js +0 -4
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +2 -2
- package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +12 -12
- package/sdk/platform/Rewards/RewardsPlatformModel.js +10 -10
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +64 -136
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +111 -521
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +75 -117
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +50 -105
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +160 -149
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +766 -545
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +6196 -3978
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +3181 -3895
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +294 -220
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +205 -149
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +16 -4
- package/sdk/platform/Share/SharePlatformApplicationClient.js +86 -8
- package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +23 -6
- package/sdk/platform/Share/SharePlatformApplicationValidator.js +16 -3
- package/sdk/platform/Share/SharePlatformModel.d.ts +53 -9
- package/sdk/platform/Share/SharePlatformModel.js +45 -5
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +17 -37
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +66 -204
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +25 -26
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +20 -31
- package/sdk/platform/Theme/ThemePlatformClient.d.ts +8 -18
- package/sdk/platform/Theme/ThemePlatformClient.js +8 -85
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +17 -425
- package/sdk/platform/Theme/ThemePlatformModel.js +23 -329
- package/sdk/platform/Theme/ThemePlatformValidator.d.ts +3 -7
- package/sdk/platform/Theme/ThemePlatformValidator.js +2 -9
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +81 -18
- package/sdk/platform/User/UserPlatformApplicationClient.js +491 -27
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +126 -10
- package/sdk/platform/User/UserPlatformApplicationValidator.js +92 -7
- package/sdk/platform/User/UserPlatformModel.d.ts +317 -218
- package/sdk/platform/User/UserPlatformModel.js +253 -210
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +25 -78
- package/sdk/platform/Webhook/WebhookPlatformClient.js +75 -470
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +813 -426
- package/sdk/platform/Webhook/WebhookPlatformModel.js +446 -395
- package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +10 -55
- package/sdk/platform/Webhook/WebhookPlatformValidator.js +12 -72
- package/sdk/platform/index.d.ts +0 -1
- package/sdk/platform/index.js +0 -2
- package/sdk/public/Catalog/CatalogPublicClient.d.ts +22 -0
- package/sdk/public/Catalog/CatalogPublicClient.js +133 -0
- package/sdk/public/Catalog/CatalogPublicModel.d.ts +158 -0
- package/sdk/public/Catalog/CatalogPublicModel.js +116 -0
- package/sdk/public/Catalog/CatalogPublicValidator.d.ts +55 -0
- package/sdk/public/Catalog/CatalogPublicValidator.js +35 -0
- package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +4 -14
- package/sdk/public/Configuration/ConfigurationPublicClient.js +10 -113
- package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +46 -114
- package/sdk/public/Configuration/ConfigurationPublicModel.js +32 -117
- package/sdk/public/Configuration/ConfigurationPublicValidator.d.ts +1 -11
- package/sdk/public/Configuration/ConfigurationPublicValidator.js +0 -12
- package/sdk/public/Content/ContentPublicClient.d.ts +36 -25
- package/sdk/public/Content/ContentPublicClient.js +254 -280
- package/sdk/public/Content/ContentPublicModel.d.ts +151 -38
- package/sdk/public/Content/ContentPublicModel.js +98 -44
- package/sdk/public/Content/ContentPublicValidator.d.ts +18 -17
- package/sdk/public/Content/ContentPublicValidator.js +26 -19
- package/sdk/public/Partner/PartnerPublicClient.d.ts +1 -1
- package/sdk/public/Partner/PartnerPublicClient.js +6 -11
- package/sdk/public/Partner/PartnerPublicModel.d.ts +248 -72
- package/sdk/public/Partner/PartnerPublicModel.js +81 -71
- package/sdk/public/Partner/PartnerPublicValidator.d.ts +2 -2
- package/sdk/public/Partner/PartnerPublicValidator.js +1 -1
- package/sdk/public/PublicClient.d.ts +2 -0
- package/sdk/public/PublicClient.js +4 -0
- package/sdk/public/Webhook/WebhookPublicClient.d.ts +8 -8
- package/sdk/public/Webhook/WebhookPublicClient.js +9 -48
- package/sdk/public/Webhook/WebhookPublicModel.d.ts +215 -67
- package/sdk/public/Webhook/WebhookPublicModel.js +66 -61
- package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
- package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
- package/sdk/public/index.d.ts +1 -0
- package/sdk/public/index.js +2 -0
- package/sdk/partner/Authorization/AuthorizationPartnerClient.d.ts +0 -66
- package/sdk/partner/Authorization/AuthorizationPartnerClient.js +0 -431
- package/sdk/partner/Authorization/AuthorizationPartnerModel.d.ts +0 -231
- package/sdk/partner/Authorization/AuthorizationPartnerModel.js +0 -152
- package/sdk/partner/Authorization/AuthorizationPartnerValidator.d.ts +0 -8
- package/sdk/partner/Authorization/AuthorizationPartnerValidator.js +0 -39
- package/sdk/partner/Catalog/CatalogPartnerClient.d.ts +0 -26
- package/sdk/partner/Catalog/CatalogPartnerClient.js +0 -173
- package/sdk/partner/Catalog/CatalogPartnerModel.d.ts +0 -238
- package/sdk/partner/Catalog/CatalogPartnerModel.js +0 -248
- package/sdk/partner/Catalog/CatalogPartnerValidator.d.ts +0 -5
- package/sdk/partner/Catalog/CatalogPartnerValidator.js +0 -19
- package/sdk/partner/Payment/PaymentPartnerClient.d.ts +0 -116
- package/sdk/partner/Payment/PaymentPartnerClient.js +0 -857
- package/sdk/partner/Payment/PaymentPartnerModel.d.ts +0 -388
- package/sdk/partner/Payment/PaymentPartnerModel.js +0 -442
- package/sdk/partner/Payment/PaymentPartnerValidator.d.ts +0 -14
- package/sdk/partner/Payment/PaymentPartnerValidator.js +0 -74
- package/sdk/platform/Finance/FinancePlatformClient.d.ts +0 -320
- package/sdk/platform/Finance/FinancePlatformClient.js +0 -2333
- package/sdk/platform/Finance/FinancePlatformModel.d.ts +0 -2895
- package/sdk/platform/Finance/FinancePlatformModel.js +0 -2150
- package/sdk/platform/Finance/FinancePlatformValidator.d.ts +0 -284
- package/sdk/platform/Finance/FinancePlatformValidator.js +0 -354
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
export = CommunicationPlatformApplicationValidator;
|
|
2
|
-
/**
|
|
3
|
-
* @typedef CreateAppPushtokenParam
|
|
4
|
-
* @property {CommunicationPlatformModel.PushtokenReq} body
|
|
5
|
-
*/
|
|
6
2
|
/**
|
|
7
3
|
* @typedef CreateAudienceParam
|
|
8
4
|
* @property {CommunicationPlatformModel.AudienceReq} body
|
|
9
5
|
*/
|
|
6
|
+
/** @typedef CreateBigQueryHeadersParam */
|
|
7
|
+
/** @typedef CreateBigQueryNCountParam */
|
|
8
|
+
/** @typedef CreateBigQueryRowCountParam */
|
|
10
9
|
/**
|
|
11
10
|
* @typedef CreateCampaignParam
|
|
12
11
|
* @property {CommunicationPlatformModel.CampaignReq} body
|
|
@@ -25,7 +24,7 @@ export = CommunicationPlatformApplicationValidator;
|
|
|
25
24
|
*/
|
|
26
25
|
/**
|
|
27
26
|
* @typedef CreateEventSubscriptionsByBulkParam
|
|
28
|
-
* @property {CommunicationPlatformModel.
|
|
27
|
+
* @property {CommunicationPlatformModel.EventSubscriptionsBulkUpdatePayload} body
|
|
29
28
|
*/
|
|
30
29
|
/**
|
|
31
30
|
* @typedef CreateJobsParam
|
|
@@ -41,20 +40,16 @@ export = CommunicationPlatformApplicationValidator;
|
|
|
41
40
|
*/
|
|
42
41
|
/**
|
|
43
42
|
* @typedef DeleteAudienceByIdParam
|
|
44
|
-
* @property {string} id -
|
|
43
|
+
* @property {string} id - Audience id
|
|
45
44
|
* @property {CommunicationPlatformModel.AudienceReq} body
|
|
46
45
|
*/
|
|
47
|
-
/**
|
|
48
|
-
* @typedef DeleteCampaignByIdParam
|
|
49
|
-
* @property {string} id - Event subscription id
|
|
50
|
-
*/
|
|
51
46
|
/**
|
|
52
47
|
* @typedef DeleteEmailProviderByIdParam
|
|
53
|
-
* @property {string} id -
|
|
48
|
+
* @property {string} id - Email provider id
|
|
54
49
|
*/
|
|
55
50
|
/**
|
|
56
51
|
* @typedef DeleteEmailTemplateByIdParam
|
|
57
|
-
* @property {string} id -
|
|
52
|
+
* @property {string} id - Email template id
|
|
58
53
|
*/
|
|
59
54
|
/**
|
|
60
55
|
* @typedef DeleteEventSubscriptionsByIdParam
|
|
@@ -62,48 +57,55 @@ export = CommunicationPlatformApplicationValidator;
|
|
|
62
57
|
*/
|
|
63
58
|
/**
|
|
64
59
|
* @typedef DeleteSmsProviderByIdParam
|
|
65
|
-
* @property {string} id -
|
|
60
|
+
* @property {string} id - Sms provider id
|
|
66
61
|
*/
|
|
67
62
|
/**
|
|
68
63
|
* @typedef DeleteSmsTemplateByIdParam
|
|
69
|
-
* @property {string} id -
|
|
64
|
+
* @property {string} id - Sms template id
|
|
70
65
|
*/
|
|
71
66
|
/**
|
|
72
67
|
* @typedef EditEventSubscriptionsParam
|
|
73
68
|
* @property {string} id - Event subscription id
|
|
74
|
-
* @property {CommunicationPlatformModel.
|
|
69
|
+
* @property {CommunicationPlatformModel.SubscriptionsObject} body
|
|
75
70
|
*/
|
|
76
71
|
/** @typedef GetAppProvidersParam */
|
|
77
72
|
/**
|
|
78
73
|
* @typedef GetAudienceByIdParam
|
|
79
|
-
* @property {string} id -
|
|
74
|
+
* @property {string} id - Audience id
|
|
80
75
|
*/
|
|
81
76
|
/**
|
|
82
77
|
* @typedef GetAudiencesParam
|
|
83
78
|
* @property {number} [pageNo] - Current page no
|
|
84
79
|
* @property {number} [pageSize] - Current request items count
|
|
85
|
-
* @property {
|
|
86
|
-
* @property {
|
|
80
|
+
* @property {Object} [sort] - To sort based on created_at
|
|
81
|
+
* @property {Object} [query] - To search based on plain text
|
|
82
|
+
*/
|
|
83
|
+
/**
|
|
84
|
+
* @typedef GetBigQueryHeadersByIdParam
|
|
85
|
+
* @property {string} id - Audience id
|
|
86
|
+
*/
|
|
87
|
+
/**
|
|
88
|
+
* @typedef GetBigQueryRowCountByIdParam
|
|
89
|
+
* @property {string} id - Audience id
|
|
87
90
|
*/
|
|
88
91
|
/**
|
|
89
92
|
* @typedef GetCampaignByIdParam
|
|
90
|
-
* @property {string} id -
|
|
93
|
+
* @property {string} id - Campaign id
|
|
91
94
|
*/
|
|
92
95
|
/**
|
|
93
96
|
* @typedef GetCampaignsParam
|
|
94
|
-
* @property {
|
|
97
|
+
* @property {Object} [query] - To search based on plain text
|
|
95
98
|
* @property {number} [pageNo] - Current page no
|
|
96
99
|
* @property {number} [pageSize] - Current request items count
|
|
97
|
-
* @property {
|
|
100
|
+
* @property {Object} [sort] - To sort based on created_at
|
|
98
101
|
*/
|
|
99
102
|
/**
|
|
100
103
|
* @typedef GetCommunicationLogsParam
|
|
101
|
-
* @property {
|
|
104
|
+
* @property {string} [pageId] - Current page no
|
|
102
105
|
* @property {number} [pageSize] - Current request items count
|
|
103
|
-
* @property {
|
|
106
|
+
* @property {Object} [sort] - To sort based on _id
|
|
104
107
|
* @property {Object} [query]
|
|
105
108
|
*/
|
|
106
|
-
/** @typedef GetDefaultEmailProvidersParam */
|
|
107
109
|
/** @typedef GetDefaultSmsProvidersParam */
|
|
108
110
|
/** @typedef GetDummyDatasourcesParam */
|
|
109
111
|
/**
|
|
@@ -112,25 +114,25 @@ export = CommunicationPlatformApplicationValidator;
|
|
|
112
114
|
*/
|
|
113
115
|
/**
|
|
114
116
|
* @typedef GetEmailProviderByIdParam
|
|
115
|
-
* @property {string} id -
|
|
117
|
+
* @property {string} id - Email provider id
|
|
116
118
|
*/
|
|
117
119
|
/**
|
|
118
120
|
* @typedef GetEmailProvidersParam
|
|
119
121
|
* @property {number} [pageNo] - Current page no
|
|
120
122
|
* @property {number} [pageSize] - Current request items count
|
|
121
|
-
* @property {
|
|
122
|
-
* @property {
|
|
123
|
+
* @property {Object} [sort] - To sort based on created_at
|
|
124
|
+
* @property {Object} [query] - To search based on plain text
|
|
123
125
|
*/
|
|
124
126
|
/**
|
|
125
127
|
* @typedef GetEmailTemplateByIdParam
|
|
126
|
-
* @property {string} id -
|
|
128
|
+
* @property {string} id - Email template id
|
|
127
129
|
*/
|
|
128
130
|
/**
|
|
129
131
|
* @typedef GetEmailTemplatesParam
|
|
130
132
|
* @property {number} [pageNo] - Current page no
|
|
131
133
|
* @property {number} [pageSize] - Current request items count
|
|
132
|
-
* @property {
|
|
133
|
-
* @property {
|
|
134
|
+
* @property {Object} [sort] - To sort based on created_at
|
|
135
|
+
* @property {Object} [query] - To search based on plain text
|
|
134
136
|
*/
|
|
135
137
|
/**
|
|
136
138
|
* @typedef GetEventSubscriptionsParam
|
|
@@ -140,8 +142,8 @@ export = CommunicationPlatformApplicationValidator;
|
|
|
140
142
|
*/
|
|
141
143
|
/**
|
|
142
144
|
* @typedef GetEventSubscriptionsByIdParam
|
|
143
|
-
* @property {string} [populate] - Populate Fields
|
|
144
145
|
* @property {string} id - Event subscription id
|
|
146
|
+
* @property {string} [populate] - Populate Fields
|
|
145
147
|
*/
|
|
146
148
|
/** @typedef GetGlobalProvidersParam */
|
|
147
149
|
/** @typedef GetGlobalVariablesParam */
|
|
@@ -149,65 +151,61 @@ export = CommunicationPlatformApplicationValidator;
|
|
|
149
151
|
* @typedef GetJobLogsParam
|
|
150
152
|
* @property {number} [pageNo] - Current page no
|
|
151
153
|
* @property {number} [pageSize] - Current request items count
|
|
152
|
-
* @property {
|
|
153
|
-
* @property {
|
|
154
|
+
* @property {Object} [sort] - To sort based on created_at
|
|
155
|
+
* @property {Object} [query] - To search based on plain text
|
|
154
156
|
*/
|
|
155
157
|
/**
|
|
156
158
|
* @typedef GetJobsParam
|
|
157
159
|
* @property {number} [pageNo] - Current page no
|
|
158
160
|
* @property {number} [pageSize] - Current request items count
|
|
159
|
-
* @property {
|
|
160
|
-
* @property {
|
|
161
|
+
* @property {Object} [sort] - To sort based on created_at
|
|
162
|
+
* @property {Object} [query] - To search based on plain text
|
|
161
163
|
*/
|
|
162
164
|
/**
|
|
163
165
|
* @typedef GetNSampleRecordsFromCsvParam
|
|
164
166
|
* @property {CommunicationPlatformModel.GetNRecordsCsvReq} body
|
|
165
167
|
*/
|
|
166
|
-
/**
|
|
167
|
-
* @typedef GetNSampleRecordsFromCsvByGetParam
|
|
168
|
-
* @property {number} [count] - Number or records
|
|
169
|
-
* @property {boolean} [header] - Header needed
|
|
170
|
-
* @property {string} [url] - Url of file
|
|
171
|
-
*/
|
|
168
|
+
/** @typedef GetNSampleRecordsFromCsvByGetParam */
|
|
172
169
|
/** @typedef GetOtpConfigurationParam */
|
|
173
170
|
/**
|
|
174
171
|
* @typedef GetSmsProviderByIdParam
|
|
175
|
-
* @property {string} id -
|
|
172
|
+
* @property {string} id - Sms provider id
|
|
176
173
|
*/
|
|
177
174
|
/**
|
|
178
175
|
* @typedef GetSmsProvidersParam
|
|
179
176
|
* @property {number} [pageNo] - Current page no
|
|
180
177
|
* @property {number} [pageSize] - Current request items count
|
|
181
|
-
* @property {
|
|
182
|
-
* @property {
|
|
178
|
+
* @property {Object} [sort] - To sort based on created_at
|
|
179
|
+
* @property {Object} [query] - To search based on plain text
|
|
183
180
|
*/
|
|
184
181
|
/**
|
|
185
182
|
* @typedef GetSmsTemplateByIdParam
|
|
186
|
-
* @property {string} id -
|
|
183
|
+
* @property {string} id - Sms template id
|
|
187
184
|
*/
|
|
188
185
|
/**
|
|
189
186
|
* @typedef GetSmsTemplatesParam
|
|
190
187
|
* @property {number} [pageNo] - Current page no
|
|
191
188
|
* @property {number} [pageSize] - Current request items count
|
|
192
|
-
* @property {
|
|
193
|
-
* @property {
|
|
189
|
+
* @property {Object} [sort] - To sort based on created_at
|
|
190
|
+
* @property {Object} [query] - To search based on plain text
|
|
194
191
|
*/
|
|
195
192
|
/**
|
|
196
193
|
* @typedef GetStatsOfCampaignByIdParam
|
|
197
|
-
* @property {string} id -
|
|
194
|
+
* @property {string} id - Campaign id
|
|
198
195
|
*/
|
|
199
196
|
/**
|
|
200
197
|
* @typedef GetSubscribedEmailTemplatesParam
|
|
201
198
|
* @property {number} [pageNo] - Current page no
|
|
202
199
|
* @property {number} [pageSize] - Current request items count
|
|
203
|
-
* @property {
|
|
200
|
+
* @property {Object} [query] - To search based on plain text
|
|
204
201
|
*/
|
|
205
202
|
/**
|
|
206
203
|
* @typedef GetSubscribedSmsTemplatesParam
|
|
207
204
|
* @property {number} [pageNo] - Current page no
|
|
208
205
|
* @property {number} [pageSize] - Current request items count
|
|
209
|
-
* @property {
|
|
206
|
+
* @property {Object} [query] - To search based on plain text
|
|
210
207
|
*/
|
|
208
|
+
/** @typedef GetSystemAudiencesParam */
|
|
211
209
|
/** @typedef GetSystemEmailTemplatesParam */
|
|
212
210
|
/** @typedef GetSystemSmsTemplatesParam */
|
|
213
211
|
/**
|
|
@@ -216,65 +214,53 @@ export = CommunicationPlatformApplicationValidator;
|
|
|
216
214
|
*/
|
|
217
215
|
/**
|
|
218
216
|
* @typedef SendCommunicationAsynchronouslyParam
|
|
219
|
-
* @property {CommunicationPlatformModel.
|
|
217
|
+
* @property {CommunicationPlatformModel.EnginePayload} body
|
|
220
218
|
*/
|
|
221
219
|
/**
|
|
222
220
|
* @typedef SendCommunicationSynchronouslyParam
|
|
223
|
-
* @property {CommunicationPlatformModel.
|
|
224
|
-
*/
|
|
225
|
-
/**
|
|
226
|
-
* @typedef SendEngineCommunicationSynchronouslyParam
|
|
227
|
-
* @property {CommunicationPlatformModel.EngineRequest} body
|
|
221
|
+
* @property {CommunicationPlatformModel.EnginePayload} body
|
|
228
222
|
*/
|
|
229
223
|
/**
|
|
230
224
|
* @typedef SendOtpParam
|
|
231
|
-
* @property {boolean} [ci] - Common Information
|
|
232
225
|
* @property {CommunicationPlatformModel.SendOtpCommsReq} body
|
|
233
226
|
*/
|
|
234
227
|
/**
|
|
235
228
|
* @typedef TriggerCampaignJobParam
|
|
236
|
-
* @property {CommunicationPlatformModel.
|
|
229
|
+
* @property {CommunicationPlatformModel.TriggerJobPayload} body
|
|
237
230
|
*/
|
|
238
231
|
/**
|
|
239
232
|
* @typedef UpdateAppProvidersParam
|
|
240
233
|
* @property {CommunicationPlatformModel.AppProviderReq} body
|
|
241
234
|
*/
|
|
242
|
-
/**
|
|
243
|
-
* @typedef UpdateAppProvidersGlobalProviderParam
|
|
244
|
-
* @property {CommunicationPlatformModel.AppProvidersGlobalProviderRequest} body
|
|
245
|
-
*/
|
|
246
235
|
/**
|
|
247
236
|
* @typedef UpdateAudienceByIdParam
|
|
248
|
-
* @property {string} id -
|
|
237
|
+
* @property {string} id - Audience id
|
|
249
238
|
* @property {CommunicationPlatformModel.AudienceReq} body
|
|
250
239
|
*/
|
|
251
240
|
/**
|
|
252
241
|
* @typedef UpdateCampaignByIdParam
|
|
253
|
-
* @property {string} id -
|
|
242
|
+
* @property {string} id - Campaign id
|
|
254
243
|
* @property {CommunicationPlatformModel.CampaignReq} body
|
|
255
244
|
*/
|
|
256
245
|
/**
|
|
257
246
|
* @typedef UpdateEmailProviderByIdParam
|
|
258
|
-
* @property {string} id -
|
|
247
|
+
* @property {string} id - Email provider id
|
|
259
248
|
* @property {CommunicationPlatformModel.EmailProviderReq} body
|
|
260
249
|
*/
|
|
261
250
|
/**
|
|
262
251
|
* @typedef UpdateEmailTemplateByIdParam
|
|
263
|
-
* @property {string} id -
|
|
252
|
+
* @property {string} id - Email template id
|
|
264
253
|
* @property {CommunicationPlatformModel.EmailTemplateReq} body
|
|
265
254
|
*/
|
|
266
|
-
/**
|
|
267
|
-
* @typedef UpdateOtpConfigurationParam
|
|
268
|
-
* @property {CommunicationPlatformModel.OtpConfiguration} body
|
|
269
|
-
*/
|
|
255
|
+
/** @typedef UpdateOtpConfigurationParam */
|
|
270
256
|
/**
|
|
271
257
|
* @typedef UpdateSmsProviderByIdParam
|
|
272
|
-
* @property {string} id -
|
|
258
|
+
* @property {string} id - Sms provider id
|
|
273
259
|
* @property {CommunicationPlatformModel.SmsProviderReq} body
|
|
274
260
|
*/
|
|
275
261
|
/**
|
|
276
262
|
* @typedef UpdateSmsTemplateByIdParam
|
|
277
|
-
* @property {string} id -
|
|
263
|
+
* @property {string} id - Sms template id
|
|
278
264
|
* @property {CommunicationPlatformModel.SmsTemplateReq} body
|
|
279
265
|
*/
|
|
280
266
|
/**
|
|
@@ -282,10 +268,14 @@ export = CommunicationPlatformApplicationValidator;
|
|
|
282
268
|
* @property {CommunicationPlatformModel.VerifyOtpCommsReq} body
|
|
283
269
|
*/
|
|
284
270
|
declare class CommunicationPlatformApplicationValidator {
|
|
285
|
-
/** @returns {CreateAppPushtokenParam} */
|
|
286
|
-
static createAppPushtoken(): CreateAppPushtokenParam;
|
|
287
271
|
/** @returns {CreateAudienceParam} */
|
|
288
272
|
static createAudience(): CreateAudienceParam;
|
|
273
|
+
/** @returns {CreateBigQueryHeadersParam} */
|
|
274
|
+
static createBigQueryHeaders(): any;
|
|
275
|
+
/** @returns {CreateBigQueryNCountParam} */
|
|
276
|
+
static createBigQueryNCount(): any;
|
|
277
|
+
/** @returns {CreateBigQueryRowCountParam} */
|
|
278
|
+
static createBigQueryRowCount(): any;
|
|
289
279
|
/** @returns {CreateCampaignParam} */
|
|
290
280
|
static createCampaign(): CreateCampaignParam;
|
|
291
281
|
/** @returns {CreateEmailProviderParam} */
|
|
@@ -304,8 +294,6 @@ declare class CommunicationPlatformApplicationValidator {
|
|
|
304
294
|
static createSmsTemplate(): CreateSmsTemplateParam;
|
|
305
295
|
/** @returns {DeleteAudienceByIdParam} */
|
|
306
296
|
static deleteAudienceById(): DeleteAudienceByIdParam;
|
|
307
|
-
/** @returns {DeleteCampaignByIdParam} */
|
|
308
|
-
static deleteCampaignById(): DeleteCampaignByIdParam;
|
|
309
297
|
/** @returns {DeleteEmailProviderByIdParam} */
|
|
310
298
|
static deleteEmailProviderById(): DeleteEmailProviderByIdParam;
|
|
311
299
|
/** @returns {DeleteEmailTemplateByIdParam} */
|
|
@@ -324,14 +312,16 @@ declare class CommunicationPlatformApplicationValidator {
|
|
|
324
312
|
static getAudienceById(): GetAudienceByIdParam;
|
|
325
313
|
/** @returns {GetAudiencesParam} */
|
|
326
314
|
static getAudiences(): GetAudiencesParam;
|
|
315
|
+
/** @returns {GetBigQueryHeadersByIdParam} */
|
|
316
|
+
static getBigQueryHeadersById(): GetBigQueryHeadersByIdParam;
|
|
317
|
+
/** @returns {GetBigQueryRowCountByIdParam} */
|
|
318
|
+
static getBigQueryRowCountById(): GetBigQueryRowCountByIdParam;
|
|
327
319
|
/** @returns {GetCampaignByIdParam} */
|
|
328
320
|
static getCampaignById(): GetCampaignByIdParam;
|
|
329
321
|
/** @returns {GetCampaignsParam} */
|
|
330
322
|
static getCampaigns(): GetCampaignsParam;
|
|
331
323
|
/** @returns {GetCommunicationLogsParam} */
|
|
332
324
|
static getCommunicationLogs(): GetCommunicationLogsParam;
|
|
333
|
-
/** @returns {GetDefaultEmailProvidersParam} */
|
|
334
|
-
static getDefaultEmailProviders(): any;
|
|
335
325
|
/** @returns {GetDefaultSmsProvidersParam} */
|
|
336
326
|
static getDefaultSmsProviders(): any;
|
|
337
327
|
/** @returns {GetDummyDatasourcesParam} */
|
|
@@ -361,7 +351,7 @@ declare class CommunicationPlatformApplicationValidator {
|
|
|
361
351
|
/** @returns {GetNSampleRecordsFromCsvParam} */
|
|
362
352
|
static getNSampleRecordsFromCsv(): GetNSampleRecordsFromCsvParam;
|
|
363
353
|
/** @returns {GetNSampleRecordsFromCsvByGetParam} */
|
|
364
|
-
static getNSampleRecordsFromCsvByGet():
|
|
354
|
+
static getNSampleRecordsFromCsvByGet(): any;
|
|
365
355
|
/** @returns {GetOtpConfigurationParam} */
|
|
366
356
|
static getOtpConfiguration(): any;
|
|
367
357
|
/** @returns {GetSmsProviderByIdParam} */
|
|
@@ -378,6 +368,8 @@ declare class CommunicationPlatformApplicationValidator {
|
|
|
378
368
|
static getSubscribedEmailTemplates(): GetSubscribedEmailTemplatesParam;
|
|
379
369
|
/** @returns {GetSubscribedSmsTemplatesParam} */
|
|
380
370
|
static getSubscribedSmsTemplates(): GetSubscribedSmsTemplatesParam;
|
|
371
|
+
/** @returns {GetSystemAudiencesParam} */
|
|
372
|
+
static getSystemAudiences(): any;
|
|
381
373
|
/** @returns {GetSystemEmailTemplatesParam} */
|
|
382
374
|
static getSystemEmailTemplates(): any;
|
|
383
375
|
/** @returns {GetSystemSmsTemplatesParam} */
|
|
@@ -388,16 +380,12 @@ declare class CommunicationPlatformApplicationValidator {
|
|
|
388
380
|
static sendCommunicationAsynchronously(): SendCommunicationAsynchronouslyParam;
|
|
389
381
|
/** @returns {SendCommunicationSynchronouslyParam} */
|
|
390
382
|
static sendCommunicationSynchronously(): SendCommunicationSynchronouslyParam;
|
|
391
|
-
/** @returns {SendEngineCommunicationSynchronouslyParam} */
|
|
392
|
-
static sendEngineCommunicationSynchronously(): SendEngineCommunicationSynchronouslyParam;
|
|
393
383
|
/** @returns {SendOtpParam} */
|
|
394
384
|
static sendOtp(): SendOtpParam;
|
|
395
385
|
/** @returns {TriggerCampaignJobParam} */
|
|
396
386
|
static triggerCampaignJob(): TriggerCampaignJobParam;
|
|
397
387
|
/** @returns {UpdateAppProvidersParam} */
|
|
398
388
|
static updateAppProviders(): UpdateAppProvidersParam;
|
|
399
|
-
/** @returns {UpdateAppProvidersGlobalProviderParam} */
|
|
400
|
-
static updateAppProvidersGlobalProvider(): UpdateAppProvidersGlobalProviderParam;
|
|
401
389
|
/** @returns {UpdateAudienceByIdParam} */
|
|
402
390
|
static updateAudienceById(): UpdateAudienceByIdParam;
|
|
403
391
|
/** @returns {UpdateCampaignByIdParam} */
|
|
@@ -407,7 +395,7 @@ declare class CommunicationPlatformApplicationValidator {
|
|
|
407
395
|
/** @returns {UpdateEmailTemplateByIdParam} */
|
|
408
396
|
static updateEmailTemplateById(): UpdateEmailTemplateByIdParam;
|
|
409
397
|
/** @returns {UpdateOtpConfigurationParam} */
|
|
410
|
-
static updateOtpConfiguration():
|
|
398
|
+
static updateOtpConfiguration(): any;
|
|
411
399
|
/** @returns {UpdateSmsProviderByIdParam} */
|
|
412
400
|
static updateSmsProviderById(): UpdateSmsProviderByIdParam;
|
|
413
401
|
/** @returns {UpdateSmsTemplateByIdParam} */
|
|
@@ -416,11 +404,8 @@ declare class CommunicationPlatformApplicationValidator {
|
|
|
416
404
|
static verfiyOtp(): VerfiyOtpParam;
|
|
417
405
|
}
|
|
418
406
|
declare namespace CommunicationPlatformApplicationValidator {
|
|
419
|
-
export {
|
|
407
|
+
export { CreateAudienceParam, CreateBigQueryHeadersParam, CreateBigQueryNCountParam, CreateBigQueryRowCountParam, CreateCampaignParam, CreateEmailProviderParam, CreateEmailTemplateParam, CreateEventSubscriptionsParam, CreateEventSubscriptionsByBulkParam, CreateJobsParam, CreateSmsProviderParam, CreateSmsTemplateParam, DeleteAudienceByIdParam, DeleteEmailProviderByIdParam, DeleteEmailTemplateByIdParam, DeleteEventSubscriptionsByIdParam, DeleteSmsProviderByIdParam, DeleteSmsTemplateByIdParam, EditEventSubscriptionsParam, GetAppProvidersParam, GetAudienceByIdParam, GetAudiencesParam, GetBigQueryHeadersByIdParam, GetBigQueryRowCountByIdParam, GetCampaignByIdParam, GetCampaignsParam, GetCommunicationLogsParam, GetDefaultSmsProvidersParam, GetDummyDatasourcesParam, GetDummyDatasourcesMetaParam, GetEmailProviderByIdParam, GetEmailProvidersParam, GetEmailTemplateByIdParam, GetEmailTemplatesParam, GetEventSubscriptionsParam, GetEventSubscriptionsByIdParam, GetGlobalProvidersParam, GetGlobalVariablesParam, GetJobLogsParam, GetJobsParam, GetNSampleRecordsFromCsvParam, GetNSampleRecordsFromCsvByGetParam, GetOtpConfigurationParam, GetSmsProviderByIdParam, GetSmsProvidersParam, GetSmsTemplateByIdParam, GetSmsTemplatesParam, GetStatsOfCampaignByIdParam, GetSubscribedEmailTemplatesParam, GetSubscribedSmsTemplatesParam, GetSystemAudiencesParam, GetSystemEmailTemplatesParam, GetSystemSmsTemplatesParam, PostGlobalVariablesParam, SendCommunicationAsynchronouslyParam, SendCommunicationSynchronouslyParam, SendOtpParam, TriggerCampaignJobParam, UpdateAppProvidersParam, UpdateAudienceByIdParam, UpdateCampaignByIdParam, UpdateEmailProviderByIdParam, UpdateEmailTemplateByIdParam, UpdateOtpConfigurationParam, UpdateSmsProviderByIdParam, UpdateSmsTemplateByIdParam, VerfiyOtpParam };
|
|
420
408
|
}
|
|
421
|
-
type CreateAppPushtokenParam = {
|
|
422
|
-
body: CommunicationPlatformModel.PushtokenReq;
|
|
423
|
-
};
|
|
424
409
|
type CreateAudienceParam = {
|
|
425
410
|
body: CommunicationPlatformModel.AudienceReq;
|
|
426
411
|
};
|
|
@@ -437,7 +422,7 @@ type CreateEventSubscriptionsParam = {
|
|
|
437
422
|
body: CommunicationPlatformModel.SubscriptionsObject;
|
|
438
423
|
};
|
|
439
424
|
type CreateEventSubscriptionsByBulkParam = {
|
|
440
|
-
body: CommunicationPlatformModel.
|
|
425
|
+
body: CommunicationPlatformModel.EventSubscriptionsBulkUpdatePayload;
|
|
441
426
|
};
|
|
442
427
|
type CreateJobsParam = {
|
|
443
428
|
body: CommunicationPlatformModel.CreateJobsReq;
|
|
@@ -450,26 +435,20 @@ type CreateSmsTemplateParam = {
|
|
|
450
435
|
};
|
|
451
436
|
type DeleteAudienceByIdParam = {
|
|
452
437
|
/**
|
|
453
|
-
* -
|
|
438
|
+
* - Audience id
|
|
454
439
|
*/
|
|
455
440
|
id: string;
|
|
456
441
|
body: CommunicationPlatformModel.AudienceReq;
|
|
457
442
|
};
|
|
458
|
-
type DeleteCampaignByIdParam = {
|
|
459
|
-
/**
|
|
460
|
-
* - Event subscription id
|
|
461
|
-
*/
|
|
462
|
-
id: string;
|
|
463
|
-
};
|
|
464
443
|
type DeleteEmailProviderByIdParam = {
|
|
465
444
|
/**
|
|
466
|
-
* -
|
|
445
|
+
* - Email provider id
|
|
467
446
|
*/
|
|
468
447
|
id: string;
|
|
469
448
|
};
|
|
470
449
|
type DeleteEmailTemplateByIdParam = {
|
|
471
450
|
/**
|
|
472
|
-
* -
|
|
451
|
+
* - Email template id
|
|
473
452
|
*/
|
|
474
453
|
id: string;
|
|
475
454
|
};
|
|
@@ -481,13 +460,13 @@ type DeleteEventSubscriptionsByIdParam = {
|
|
|
481
460
|
};
|
|
482
461
|
type DeleteSmsProviderByIdParam = {
|
|
483
462
|
/**
|
|
484
|
-
* -
|
|
463
|
+
* - Sms provider id
|
|
485
464
|
*/
|
|
486
465
|
id: string;
|
|
487
466
|
};
|
|
488
467
|
type DeleteSmsTemplateByIdParam = {
|
|
489
468
|
/**
|
|
490
|
-
* -
|
|
469
|
+
* - Sms template id
|
|
491
470
|
*/
|
|
492
471
|
id: string;
|
|
493
472
|
};
|
|
@@ -496,11 +475,11 @@ type EditEventSubscriptionsParam = {
|
|
|
496
475
|
* - Event subscription id
|
|
497
476
|
*/
|
|
498
477
|
id: string;
|
|
499
|
-
body: CommunicationPlatformModel.
|
|
478
|
+
body: CommunicationPlatformModel.SubscriptionsObject;
|
|
500
479
|
};
|
|
501
480
|
type GetAudienceByIdParam = {
|
|
502
481
|
/**
|
|
503
|
-
* -
|
|
482
|
+
* - Audience id
|
|
504
483
|
*/
|
|
505
484
|
id: string;
|
|
506
485
|
};
|
|
@@ -516,15 +495,27 @@ type GetAudiencesParam = {
|
|
|
516
495
|
/**
|
|
517
496
|
* - To sort based on created_at
|
|
518
497
|
*/
|
|
519
|
-
sort?:
|
|
498
|
+
sort?: any;
|
|
520
499
|
/**
|
|
521
500
|
* - To search based on plain text
|
|
522
501
|
*/
|
|
523
|
-
query?:
|
|
502
|
+
query?: any;
|
|
503
|
+
};
|
|
504
|
+
type GetBigQueryHeadersByIdParam = {
|
|
505
|
+
/**
|
|
506
|
+
* - Audience id
|
|
507
|
+
*/
|
|
508
|
+
id: string;
|
|
509
|
+
};
|
|
510
|
+
type GetBigQueryRowCountByIdParam = {
|
|
511
|
+
/**
|
|
512
|
+
* - Audience id
|
|
513
|
+
*/
|
|
514
|
+
id: string;
|
|
524
515
|
};
|
|
525
516
|
type GetCampaignByIdParam = {
|
|
526
517
|
/**
|
|
527
|
-
* -
|
|
518
|
+
* - Campaign id
|
|
528
519
|
*/
|
|
529
520
|
id: string;
|
|
530
521
|
};
|
|
@@ -532,7 +523,7 @@ type GetCampaignsParam = {
|
|
|
532
523
|
/**
|
|
533
524
|
* - To search based on plain text
|
|
534
525
|
*/
|
|
535
|
-
query?:
|
|
526
|
+
query?: any;
|
|
536
527
|
/**
|
|
537
528
|
* - Current page no
|
|
538
529
|
*/
|
|
@@ -544,21 +535,21 @@ type GetCampaignsParam = {
|
|
|
544
535
|
/**
|
|
545
536
|
* - To sort based on created_at
|
|
546
537
|
*/
|
|
547
|
-
sort?:
|
|
538
|
+
sort?: any;
|
|
548
539
|
};
|
|
549
540
|
type GetCommunicationLogsParam = {
|
|
550
541
|
/**
|
|
551
542
|
* - Current page no
|
|
552
543
|
*/
|
|
553
|
-
|
|
544
|
+
pageId?: string;
|
|
554
545
|
/**
|
|
555
546
|
* - Current request items count
|
|
556
547
|
*/
|
|
557
548
|
pageSize?: number;
|
|
558
549
|
/**
|
|
559
|
-
* - To sort based on
|
|
550
|
+
* - To sort based on _id
|
|
560
551
|
*/
|
|
561
|
-
sort?:
|
|
552
|
+
sort?: any;
|
|
562
553
|
query?: any;
|
|
563
554
|
};
|
|
564
555
|
type GetDummyDatasourcesMetaParam = {
|
|
@@ -569,7 +560,7 @@ type GetDummyDatasourcesMetaParam = {
|
|
|
569
560
|
};
|
|
570
561
|
type GetEmailProviderByIdParam = {
|
|
571
562
|
/**
|
|
572
|
-
* -
|
|
563
|
+
* - Email provider id
|
|
573
564
|
*/
|
|
574
565
|
id: string;
|
|
575
566
|
};
|
|
@@ -585,15 +576,15 @@ type GetEmailProvidersParam = {
|
|
|
585
576
|
/**
|
|
586
577
|
* - To sort based on created_at
|
|
587
578
|
*/
|
|
588
|
-
sort?:
|
|
579
|
+
sort?: any;
|
|
589
580
|
/**
|
|
590
581
|
* - To search based on plain text
|
|
591
582
|
*/
|
|
592
|
-
query?:
|
|
583
|
+
query?: any;
|
|
593
584
|
};
|
|
594
585
|
type GetEmailTemplateByIdParam = {
|
|
595
586
|
/**
|
|
596
|
-
* -
|
|
587
|
+
* - Email template id
|
|
597
588
|
*/
|
|
598
589
|
id: string;
|
|
599
590
|
};
|
|
@@ -609,11 +600,11 @@ type GetEmailTemplatesParam = {
|
|
|
609
600
|
/**
|
|
610
601
|
* - To sort based on created_at
|
|
611
602
|
*/
|
|
612
|
-
sort?:
|
|
603
|
+
sort?: any;
|
|
613
604
|
/**
|
|
614
605
|
* - To search based on plain text
|
|
615
606
|
*/
|
|
616
|
-
query?:
|
|
607
|
+
query?: any;
|
|
617
608
|
};
|
|
618
609
|
type GetEventSubscriptionsParam = {
|
|
619
610
|
/**
|
|
@@ -630,14 +621,14 @@ type GetEventSubscriptionsParam = {
|
|
|
630
621
|
populate?: string;
|
|
631
622
|
};
|
|
632
623
|
type GetEventSubscriptionsByIdParam = {
|
|
633
|
-
/**
|
|
634
|
-
* - Populate Fields
|
|
635
|
-
*/
|
|
636
|
-
populate?: string;
|
|
637
624
|
/**
|
|
638
625
|
* - Event subscription id
|
|
639
626
|
*/
|
|
640
627
|
id: string;
|
|
628
|
+
/**
|
|
629
|
+
* - Populate Fields
|
|
630
|
+
*/
|
|
631
|
+
populate?: string;
|
|
641
632
|
};
|
|
642
633
|
type GetJobLogsParam = {
|
|
643
634
|
/**
|
|
@@ -651,11 +642,11 @@ type GetJobLogsParam = {
|
|
|
651
642
|
/**
|
|
652
643
|
* - To sort based on created_at
|
|
653
644
|
*/
|
|
654
|
-
sort?:
|
|
645
|
+
sort?: any;
|
|
655
646
|
/**
|
|
656
647
|
* - To search based on plain text
|
|
657
648
|
*/
|
|
658
|
-
query?:
|
|
649
|
+
query?: any;
|
|
659
650
|
};
|
|
660
651
|
type GetJobsParam = {
|
|
661
652
|
/**
|
|
@@ -669,32 +660,18 @@ type GetJobsParam = {
|
|
|
669
660
|
/**
|
|
670
661
|
* - To sort based on created_at
|
|
671
662
|
*/
|
|
672
|
-
sort?:
|
|
663
|
+
sort?: any;
|
|
673
664
|
/**
|
|
674
665
|
* - To search based on plain text
|
|
675
666
|
*/
|
|
676
|
-
query?:
|
|
667
|
+
query?: any;
|
|
677
668
|
};
|
|
678
669
|
type GetNSampleRecordsFromCsvParam = {
|
|
679
670
|
body: CommunicationPlatformModel.GetNRecordsCsvReq;
|
|
680
671
|
};
|
|
681
|
-
type GetNSampleRecordsFromCsvByGetParam = {
|
|
682
|
-
/**
|
|
683
|
-
* - Number or records
|
|
684
|
-
*/
|
|
685
|
-
count?: number;
|
|
686
|
-
/**
|
|
687
|
-
* - Header needed
|
|
688
|
-
*/
|
|
689
|
-
header?: boolean;
|
|
690
|
-
/**
|
|
691
|
-
* - Url of file
|
|
692
|
-
*/
|
|
693
|
-
url?: string;
|
|
694
|
-
};
|
|
695
672
|
type GetSmsProviderByIdParam = {
|
|
696
673
|
/**
|
|
697
|
-
* -
|
|
674
|
+
* - Sms provider id
|
|
698
675
|
*/
|
|
699
676
|
id: string;
|
|
700
677
|
};
|
|
@@ -710,15 +687,15 @@ type GetSmsProvidersParam = {
|
|
|
710
687
|
/**
|
|
711
688
|
* - To sort based on created_at
|
|
712
689
|
*/
|
|
713
|
-
sort?:
|
|
690
|
+
sort?: any;
|
|
714
691
|
/**
|
|
715
692
|
* - To search based on plain text
|
|
716
693
|
*/
|
|
717
|
-
query?:
|
|
694
|
+
query?: any;
|
|
718
695
|
};
|
|
719
696
|
type GetSmsTemplateByIdParam = {
|
|
720
697
|
/**
|
|
721
|
-
* -
|
|
698
|
+
* - Sms template id
|
|
722
699
|
*/
|
|
723
700
|
id: string;
|
|
724
701
|
};
|
|
@@ -734,15 +711,15 @@ type GetSmsTemplatesParam = {
|
|
|
734
711
|
/**
|
|
735
712
|
* - To sort based on created_at
|
|
736
713
|
*/
|
|
737
|
-
sort?:
|
|
714
|
+
sort?: any;
|
|
738
715
|
/**
|
|
739
716
|
* - To search based on plain text
|
|
740
717
|
*/
|
|
741
|
-
query?:
|
|
718
|
+
query?: any;
|
|
742
719
|
};
|
|
743
720
|
type GetStatsOfCampaignByIdParam = {
|
|
744
721
|
/**
|
|
745
|
-
* -
|
|
722
|
+
* - Campaign id
|
|
746
723
|
*/
|
|
747
724
|
id: string;
|
|
748
725
|
};
|
|
@@ -758,7 +735,7 @@ type GetSubscribedEmailTemplatesParam = {
|
|
|
758
735
|
/**
|
|
759
736
|
* - To search based on plain text
|
|
760
737
|
*/
|
|
761
|
-
query?:
|
|
738
|
+
query?: any;
|
|
762
739
|
};
|
|
763
740
|
type GetSubscribedSmsTemplatesParam = {
|
|
764
741
|
/**
|
|
@@ -772,77 +749,64 @@ type GetSubscribedSmsTemplatesParam = {
|
|
|
772
749
|
/**
|
|
773
750
|
* - To search based on plain text
|
|
774
751
|
*/
|
|
775
|
-
query?:
|
|
752
|
+
query?: any;
|
|
776
753
|
};
|
|
777
754
|
type PostGlobalVariablesParam = {
|
|
778
755
|
body: CommunicationPlatformModel.GlobalVariablesReq;
|
|
779
756
|
};
|
|
780
757
|
type SendCommunicationAsynchronouslyParam = {
|
|
781
|
-
body: CommunicationPlatformModel.
|
|
758
|
+
body: CommunicationPlatformModel.EnginePayload;
|
|
782
759
|
};
|
|
783
760
|
type SendCommunicationSynchronouslyParam = {
|
|
784
|
-
body: CommunicationPlatformModel.
|
|
785
|
-
};
|
|
786
|
-
type SendEngineCommunicationSynchronouslyParam = {
|
|
787
|
-
body: CommunicationPlatformModel.EngineRequest;
|
|
761
|
+
body: CommunicationPlatformModel.EnginePayload;
|
|
788
762
|
};
|
|
789
763
|
type SendOtpParam = {
|
|
790
|
-
/**
|
|
791
|
-
* - Common Information
|
|
792
|
-
*/
|
|
793
|
-
ci?: boolean;
|
|
794
764
|
body: CommunicationPlatformModel.SendOtpCommsReq;
|
|
795
765
|
};
|
|
796
766
|
type TriggerCampaignJobParam = {
|
|
797
|
-
body: CommunicationPlatformModel.
|
|
767
|
+
body: CommunicationPlatformModel.TriggerJobPayload;
|
|
798
768
|
};
|
|
799
769
|
type UpdateAppProvidersParam = {
|
|
800
770
|
body: CommunicationPlatformModel.AppProviderReq;
|
|
801
771
|
};
|
|
802
|
-
type UpdateAppProvidersGlobalProviderParam = {
|
|
803
|
-
body: CommunicationPlatformModel.AppProvidersGlobalProviderRequest;
|
|
804
|
-
};
|
|
805
772
|
type UpdateAudienceByIdParam = {
|
|
806
773
|
/**
|
|
807
|
-
* -
|
|
774
|
+
* - Audience id
|
|
808
775
|
*/
|
|
809
776
|
id: string;
|
|
810
777
|
body: CommunicationPlatformModel.AudienceReq;
|
|
811
778
|
};
|
|
812
779
|
type UpdateCampaignByIdParam = {
|
|
813
780
|
/**
|
|
814
|
-
* -
|
|
781
|
+
* - Campaign id
|
|
815
782
|
*/
|
|
816
783
|
id: string;
|
|
817
784
|
body: CommunicationPlatformModel.CampaignReq;
|
|
818
785
|
};
|
|
819
786
|
type UpdateEmailProviderByIdParam = {
|
|
820
787
|
/**
|
|
821
|
-
* -
|
|
788
|
+
* - Email provider id
|
|
822
789
|
*/
|
|
823
790
|
id: string;
|
|
824
791
|
body: CommunicationPlatformModel.EmailProviderReq;
|
|
825
792
|
};
|
|
826
793
|
type UpdateEmailTemplateByIdParam = {
|
|
827
794
|
/**
|
|
828
|
-
* -
|
|
795
|
+
* - Email template id
|
|
829
796
|
*/
|
|
830
797
|
id: string;
|
|
831
798
|
body: CommunicationPlatformModel.EmailTemplateReq;
|
|
832
799
|
};
|
|
833
|
-
type UpdateOtpConfigurationParam = {
|
|
834
|
-
body: CommunicationPlatformModel.OtpConfiguration;
|
|
835
|
-
};
|
|
836
800
|
type UpdateSmsProviderByIdParam = {
|
|
837
801
|
/**
|
|
838
|
-
* -
|
|
802
|
+
* - Sms provider id
|
|
839
803
|
*/
|
|
840
804
|
id: string;
|
|
841
805
|
body: CommunicationPlatformModel.SmsProviderReq;
|
|
842
806
|
};
|
|
843
807
|
type UpdateSmsTemplateByIdParam = {
|
|
844
808
|
/**
|
|
845
|
-
* -
|
|
809
|
+
* - Sms template id
|
|
846
810
|
*/
|
|
847
811
|
id: string;
|
|
848
812
|
body: CommunicationPlatformModel.SmsTemplateReq;
|
|
@@ -850,13 +814,18 @@ type UpdateSmsTemplateByIdParam = {
|
|
|
850
814
|
type VerfiyOtpParam = {
|
|
851
815
|
body: CommunicationPlatformModel.VerifyOtpCommsReq;
|
|
852
816
|
};
|
|
817
|
+
type CreateBigQueryHeadersParam = any;
|
|
818
|
+
type CreateBigQueryNCountParam = any;
|
|
819
|
+
type CreateBigQueryRowCountParam = any;
|
|
853
820
|
type GetAppProvidersParam = any;
|
|
854
|
-
type GetDefaultEmailProvidersParam = any;
|
|
855
821
|
type GetDefaultSmsProvidersParam = any;
|
|
856
822
|
type GetDummyDatasourcesParam = any;
|
|
857
823
|
type GetGlobalProvidersParam = any;
|
|
858
824
|
type GetGlobalVariablesParam = any;
|
|
825
|
+
type GetNSampleRecordsFromCsvByGetParam = any;
|
|
859
826
|
type GetOtpConfigurationParam = any;
|
|
827
|
+
type GetSystemAudiencesParam = any;
|
|
860
828
|
type GetSystemEmailTemplatesParam = any;
|
|
861
829
|
type GetSystemSmsTemplatesParam = any;
|
|
830
|
+
type UpdateOtpConfigurationParam = any;
|
|
862
831
|
import CommunicationPlatformModel = require("./CommunicationPlatformModel");
|