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