@gofynd/fdk-client-javascript 1.4.15-beta.13 → 1.4.15-beta.15
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 +23 -26
- package/package.json +5 -1
- package/sdk/application/ApplicationClient.d.ts +5 -6
- package/sdk/application/ApplicationClient.js +24 -20
- package/sdk/application/Cart/CartApplicationClient.d.ts +133 -83
- package/sdk/application/Cart/CartApplicationClient.js +444 -76
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +132 -114
- package/sdk/application/Catalog/CatalogApplicationClient.js +209 -126
- package/sdk/application/Common/CommonApplicationClient.d.ts +4 -4
- package/sdk/application/Common/CommonApplicationClient.js +4 -4
- package/sdk/application/Communication/CommunicationApplicationClient.d.ts +3 -3
- package/sdk/application/Communication/CommunicationApplicationClient.js +3 -3
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +58 -36
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +73 -29
- package/sdk/application/Content/ContentApplicationClient.d.ts +95 -66
- package/sdk/application/Content/ContentApplicationClient.js +274 -111
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +11 -11
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +10 -10
- package/sdk/application/Finance/FinanceApplicationClient.d.ts +29 -0
- package/sdk/application/Finance/FinanceApplicationClient.js +111 -0
- package/sdk/application/Lead/LeadApplicationClient.d.ts +7 -7
- package/sdk/application/Lead/LeadApplicationClient.js +6 -6
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +37 -57
- package/sdk/application/Logistic/LogisticApplicationClient.js +117 -180
- package/sdk/application/Order/OrderApplicationClient.d.ts +63 -21
- package/sdk/application/Order/OrderApplicationClient.js +217 -17
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +179 -149
- package/sdk/application/Payment/PaymentApplicationClient.js +301 -167
- package/sdk/application/Share/ShareApplicationClient.d.ts +7 -7
- package/sdk/application/Share/ShareApplicationClient.js +7 -7
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +7 -7
- package/sdk/application/Theme/ThemeApplicationClient.js +10 -6
- package/sdk/application/User/UserApplicationClient.d.ts +103 -53
- package/sdk/application/User/UserApplicationClient.js +308 -49
- package/sdk/common/AxiosHelper.js +11 -4
- package/sdk/common/Constant.d.ts +27 -4
- package/sdk/common/Constant.js +33 -6
- package/sdk/common/utils.d.ts +10 -0
- package/sdk/common/utils.js +24 -3
- package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +46 -16
- package/sdk/partner/FileStorage/FileStoragePartnerClient.js +266 -40
- package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +163 -19
- package/sdk/partner/FileStorage/FileStoragePartnerModel.js +158 -14
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +5 -2
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +23 -7
- package/sdk/partner/Lead/LeadPartnerClient.d.ts +9 -9
- package/sdk/partner/Lead/LeadPartnerClient.js +9 -9
- package/sdk/partner/Lead/LeadPartnerModel.d.ts +14 -9
- package/sdk/partner/Lead/LeadPartnerModel.js +19 -17
- package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +264 -49
- package/sdk/partner/Logistics/LogisticsPartnerClient.js +2116 -252
- package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +2256 -258
- package/sdk/partner/Logistics/LogisticsPartnerModel.js +1187 -230
- package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +21 -1
- package/sdk/partner/Logistics/LogisticsPartnerValidator.js +218 -13
- package/sdk/partner/PartnerClient.d.ts +5 -2
- package/sdk/partner/PartnerClient.js +21 -7
- package/sdk/partner/Theme/ThemePartnerClient.d.ts +32 -34
- package/sdk/partner/Theme/ThemePartnerClient.js +42 -44
- package/sdk/partner/Theme/ThemePartnerModel.d.ts +142 -43
- package/sdk/partner/Theme/ThemePartnerModel.js +129 -44
- package/sdk/partner/Theme/ThemePartnerValidator.js +4 -4
- package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +83 -27
- package/sdk/partner/Webhook/WebhookPartnerClient.js +446 -27
- package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +920 -185
- package/sdk/partner/Webhook/WebhookPartnerModel.js +462 -154
- package/sdk/partner/Webhook/WebhookPartnerValidator.d.ts +5 -0
- package/sdk/partner/Webhook/WebhookPartnerValidator.js +41 -3
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +8 -7
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +17 -11
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +4 -1
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +1 -1
- package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +68 -13
- package/sdk/platform/Analytics/AnalyticsPlatformModel.js +44 -6
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +3 -33
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +4 -244
- 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 +15 -15
- package/sdk/platform/Billing/BillingPlatformClient.js +18 -18
- 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 +266 -203
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +1446 -500
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +729 -100
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +446 -82
- package/sdk/platform/Cart/CartPlatformModel.d.ts +6927 -1396
- package/sdk/platform/Cart/CartPlatformModel.js +3065 -1316
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +433 -248
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +1662 -559
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +464 -159
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +304 -87
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +383 -234
- package/sdk/platform/Catalog/CatalogPlatformClient.js +2475 -1557
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +9571 -2674
- package/sdk/platform/Catalog/CatalogPlatformModel.js +5081 -2019
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +364 -117
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +281 -104
- package/sdk/platform/Common/CommonPlatformClient.d.ts +5 -4
- package/sdk/platform/Common/CommonPlatformClient.js +6 -5
- package/sdk/platform/Common/CommonPlatformModel.d.ts +36 -25
- package/sdk/platform/Common/CommonPlatformModel.js +25 -14
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +80 -153
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +102 -541
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +36 -49
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +20 -60
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +1 -1
- package/sdk/platform/Communication/CommunicationPlatformClient.js +1 -1
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +189 -43
- package/sdk/platform/Communication/CommunicationPlatformModel.js +165 -42
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +58 -81
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +68 -116
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +291 -249
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +243 -234
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +12 -12
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +12 -12
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +78 -65
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +101 -88
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +20 -20
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +19 -19
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +68 -34
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +174 -41
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +667 -244
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +474 -155
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +37 -9
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +27 -8
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +366 -280
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +1435 -753
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +323 -223
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +335 -205
- package/sdk/platform/Content/ContentPlatformClient.d.ts +304 -106
- package/sdk/platform/Content/ContentPlatformClient.js +1842 -450
- package/sdk/platform/Content/ContentPlatformModel.d.ts +2582 -566
- package/sdk/platform/Content/ContentPlatformModel.js +1426 -558
- package/sdk/platform/Content/ContentPlatformValidator.d.ts +293 -114
- package/sdk/platform/Content/ContentPlatformValidator.js +328 -101
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +59 -23
- package/sdk/platform/Discount/DiscountPlatformClient.js +84 -23
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +403 -110
- package/sdk/platform/Discount/DiscountPlatformModel.js +121 -107
- package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +56 -36
- package/sdk/platform/Discount/DiscountPlatformValidator.js +29 -19
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +12 -110
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +14 -684
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +5 -94
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +4 -115
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +20 -20
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +22 -22
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +90 -920
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +53 -949
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +10 -10
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +10 -10
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +11 -11
- package/sdk/platform/Lead/LeadPlatformClient.js +11 -11
- package/sdk/platform/Lead/LeadPlatformModel.d.ts +14 -9
- package/sdk/platform/Lead/LeadPlatformModel.js +20 -18
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +56 -9
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +340 -10
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +128 -24
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +81 -19
- package/sdk/platform/Order/OrderPlatformClient.d.ts +517 -160
- package/sdk/platform/Order/OrderPlatformClient.js +1623 -384
- package/sdk/platform/Order/OrderPlatformModel.d.ts +10372 -1587
- package/sdk/platform/Order/OrderPlatformModel.js +5726 -1512
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +539 -123
- package/sdk/platform/Order/OrderPlatformValidator.js +323 -92
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +8 -6
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +11 -9
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +6 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +3 -2
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +77 -25
- package/sdk/platform/Partner/PartnerPlatformModel.js +32 -21
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +144 -219
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +307 -796
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +86 -121
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +80 -138
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +30 -30
- package/sdk/platform/Payment/PaymentPlatformClient.js +30 -30
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +901 -761
- package/sdk/platform/Payment/PaymentPlatformModel.js +663 -583
- package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +8 -8
- package/sdk/platform/Payment/PaymentPlatformValidator.js +8 -8
- package/sdk/platform/PlatformApplicationClient.d.ts +0 -2
- package/sdk/platform/PlatformApplicationClient.js +0 -4
- package/sdk/platform/PlatformClient.d.ts +5 -4
- package/sdk/platform/PlatformClient.js +32 -22
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +526 -69
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +3337 -337
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +603 -38
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +529 -32
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +184 -133
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +780 -491
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +9408 -1666
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +5720 -1765
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +257 -180
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +185 -127
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +7 -7
- package/sdk/platform/Share/SharePlatformApplicationClient.js +7 -7
- package/sdk/platform/Share/SharePlatformModel.d.ts +45 -9
- package/sdk/platform/Share/SharePlatformModel.js +31 -6
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +26 -26
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +38 -29
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +18 -3
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +10 -2
- package/sdk/platform/Theme/ThemePlatformClient.d.ts +4 -4
- package/sdk/platform/Theme/ThemePlatformClient.js +4 -4
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +103 -17
- package/sdk/platform/Theme/ThemePlatformModel.js +92 -23
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +167 -45
- package/sdk/platform/User/UserPlatformApplicationClient.js +950 -67
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +189 -3
- package/sdk/platform/User/UserPlatformApplicationValidator.js +157 -3
- package/sdk/platform/User/UserPlatformModel.d.ts +880 -47
- package/sdk/platform/User/UserPlatformModel.js +607 -46
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +33 -86
- package/sdk/platform/Webhook/WebhookPlatformClient.js +79 -474
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +861 -422
- package/sdk/platform/Webhook/WebhookPlatformModel.js +469 -391
- package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +10 -55
- package/sdk/platform/Webhook/WebhookPlatformValidator.js +12 -72
- package/sdk/platform/index.d.ts +0 -2
- package/sdk/platform/index.js +0 -4
- 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 +5 -4
- package/sdk/public/Configuration/ConfigurationPublicClient.js +9 -8
- package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +41 -21
- package/sdk/public/Configuration/ConfigurationPublicModel.js +28 -12
- package/sdk/public/Content/ContentPublicClient.d.ts +145 -2
- package/sdk/public/Content/ContentPublicClient.js +1067 -17
- package/sdk/public/Content/ContentPublicModel.d.ts +704 -3
- package/sdk/public/Content/ContentPublicModel.js +751 -3
- package/sdk/public/Content/ContentPublicValidator.d.ts +94 -3
- package/sdk/public/Content/ContentPublicValidator.js +119 -2
- package/sdk/public/Partner/PartnerPublicClient.d.ts +1 -1
- package/sdk/public/Partner/PartnerPublicClient.js +1 -1
- 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 +5 -2
- package/sdk/public/PublicClient.js +16 -6
- package/sdk/public/Webhook/WebhookPublicClient.d.ts +13 -13
- package/sdk/public/Webhook/WebhookPublicClient.js +13 -13
- package/sdk/public/Webhook/WebhookPublicModel.d.ts +249 -67
- package/sdk/public/Webhook/WebhookPublicModel.js +81 -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/utility.d.ts +3 -0
- package/utility.js +7 -0
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +0 -79
- package/sdk/application/Rewards/RewardsApplicationClient.js +0 -315
- package/sdk/application/Webhook/WebhookApplicationClient.d.ts +0 -19
- package/sdk/application/Webhook/WebhookApplicationClient.js +0 -72
- package/sdk/platform/Finance/FinancePlatformClient.d.ts +0 -320
- package/sdk/platform/Finance/FinancePlatformClient.js +0 -2333
- package/sdk/platform/Finance/FinancePlatformModel.d.ts +0 -2890
- package/sdk/platform/Finance/FinancePlatformModel.js +0 -2148
- package/sdk/platform/Finance/FinancePlatformValidator.d.ts +0 -284
- package/sdk/platform/Finance/FinancePlatformValidator.js +0 -354
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +0 -136
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +0 -976
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +0 -152
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +0 -157
- package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +0 -382
- package/sdk/platform/Rewards/RewardsPlatformModel.js +0 -408
|
@@ -1,10 +1,26 @@
|
|
|
1
1
|
export = CommunicationPlatformModel;
|
|
2
2
|
/**
|
|
3
|
-
* @typedef
|
|
3
|
+
* @typedef GroupMapping
|
|
4
|
+
* @property {EventGroup[]} items - List of event groups configured for the application.
|
|
5
|
+
*/
|
|
6
|
+
/**
|
|
7
|
+
* @typedef EventGroup
|
|
8
|
+
* @property {string} name - Event group identifier
|
|
9
|
+
* @property {string} display - Human-readable group name
|
|
10
|
+
* @property {EventSubgroup[]} subgroups - List of sub-groups that belong to
|
|
11
|
+
* this event group.
|
|
12
|
+
*/
|
|
13
|
+
/**
|
|
14
|
+
* @typedef EventSubgroup
|
|
15
|
+
* @property {string} name - Sub-group identifier
|
|
16
|
+
* @property {string} display - Human-readable sub-group name
|
|
17
|
+
*/
|
|
18
|
+
/**
|
|
19
|
+
* @typedef EventSubscriptionsBulkUpdatePayload
|
|
4
20
|
* @property {SubscriptionsObject[]} [subscriptions]
|
|
5
21
|
*/
|
|
6
22
|
/**
|
|
7
|
-
* @typedef
|
|
23
|
+
* @typedef EventSubscriptionsBulkUpdateResult
|
|
8
24
|
* @property {EventSubscriptionTemplate} [template]
|
|
9
25
|
* @property {string} [_id]
|
|
10
26
|
* @property {string} [application]
|
|
@@ -114,6 +130,7 @@ export = CommunicationPlatformModel;
|
|
|
114
130
|
* @property {string} [name]
|
|
115
131
|
* @property {string} [file_url]
|
|
116
132
|
* @property {string} [type]
|
|
133
|
+
* @property {string} [datasource_type] - Type of the datasource (audience or user_group)
|
|
117
134
|
* @property {number} [records_count]
|
|
118
135
|
* @property {string} [application]
|
|
119
136
|
*/
|
|
@@ -147,6 +164,7 @@ export = CommunicationPlatformModel;
|
|
|
147
164
|
* @property {string} [_id]
|
|
148
165
|
* @property {string} [datasource]
|
|
149
166
|
* @property {string} [type]
|
|
167
|
+
* @property {string} [datasource_type] - Type of the datasource (audience or user_group)
|
|
150
168
|
* @property {string} [name]
|
|
151
169
|
* @property {string} [application]
|
|
152
170
|
* @property {string} [created_at]
|
|
@@ -414,23 +432,23 @@ export = CommunicationPlatformModel;
|
|
|
414
432
|
* @property {string} [timestamp]
|
|
415
433
|
*/
|
|
416
434
|
/**
|
|
417
|
-
* @typedef
|
|
435
|
+
* @typedef EnginePayload
|
|
418
436
|
* @property {PayloadStructure} [payload]
|
|
419
437
|
* @property {MetaStructure} [meta]
|
|
420
438
|
*/
|
|
421
439
|
/**
|
|
422
|
-
* @typedef
|
|
440
|
+
* @typedef EngineResult
|
|
423
441
|
* @property {boolean} [success]
|
|
424
442
|
*/
|
|
425
443
|
/**
|
|
426
444
|
* @typedef EventSubscriptionTemplateSms
|
|
427
445
|
* @property {boolean} [subscribed]
|
|
428
|
-
* @property {
|
|
446
|
+
* @property {SmsTemplate} [template]
|
|
429
447
|
*/
|
|
430
448
|
/**
|
|
431
449
|
* @typedef EventSubscriptionTemplateEmail
|
|
432
450
|
* @property {boolean} [subscribed]
|
|
433
|
-
* @property {
|
|
451
|
+
* @property {EmailTemplate} [template]
|
|
434
452
|
*/
|
|
435
453
|
/**
|
|
436
454
|
* @typedef EventSubscriptionTemplate
|
|
@@ -443,32 +461,51 @@ export = CommunicationPlatformModel;
|
|
|
443
461
|
* @property {boolean} [is_default]
|
|
444
462
|
* @property {string} [_id]
|
|
445
463
|
* @property {string} [application]
|
|
446
|
-
* @property {
|
|
464
|
+
* @property {EventSubscriptionEvents} [event]
|
|
447
465
|
* @property {string} [slug]
|
|
448
466
|
* @property {string} [created_at]
|
|
449
467
|
* @property {string} [updated_at]
|
|
450
468
|
* @property {number} [__v]
|
|
451
469
|
*/
|
|
470
|
+
/**
|
|
471
|
+
* @typedef EventSubscriptionEvents
|
|
472
|
+
* @property {string} [category]
|
|
473
|
+
* @property {string} [event_name]
|
|
474
|
+
* @property {string} [group]
|
|
475
|
+
* @property {string} [slug]
|
|
476
|
+
* @property {EventTemplate} [template]
|
|
477
|
+
*/
|
|
478
|
+
/**
|
|
479
|
+
* @typedef EventTemplate
|
|
480
|
+
* @property {EventProviderTemplates} [email]
|
|
481
|
+
* @property {EventProviderTemplates} [pushnotification]
|
|
482
|
+
* @property {EventProviderTemplates} [sms]
|
|
483
|
+
*/
|
|
484
|
+
/**
|
|
485
|
+
* @typedef EventProviderTemplates
|
|
486
|
+
* @property {string} [provider_type] - Provider type for the event template
|
|
487
|
+
* @property {string} [template] - This is the unique id of the template
|
|
488
|
+
*/
|
|
452
489
|
/**
|
|
453
490
|
* @typedef EventSubscriptions
|
|
454
491
|
* @property {EventSubscription[]} [items]
|
|
455
492
|
* @property {Page} [page]
|
|
456
493
|
*/
|
|
457
494
|
/**
|
|
458
|
-
* @typedef
|
|
495
|
+
* @typedef TriggerJobResult
|
|
459
496
|
* @property {number} [status]
|
|
460
497
|
*/
|
|
461
498
|
/**
|
|
462
|
-
* @typedef
|
|
499
|
+
* @typedef TriggerJobPayload
|
|
463
500
|
* @property {string} [job_id]
|
|
464
501
|
*/
|
|
465
502
|
/**
|
|
466
|
-
* @typedef
|
|
503
|
+
* @typedef GetGlobalVariablesResult
|
|
467
504
|
* @property {Object} [read_only]
|
|
468
505
|
* @property {Object} [editable]
|
|
469
506
|
*/
|
|
470
507
|
/**
|
|
471
|
-
* @typedef
|
|
508
|
+
* @typedef CreateGlobalVariablesResult
|
|
472
509
|
* @property {string} [_id]
|
|
473
510
|
* @property {string} [category]
|
|
474
511
|
* @property {string} [application]
|
|
@@ -588,6 +625,9 @@ export = CommunicationPlatformModel;
|
|
|
588
625
|
* @property {string} [mobile]
|
|
589
626
|
* @property {string} [country_code]
|
|
590
627
|
* @property {string} [to]
|
|
628
|
+
* @property {Object} [additional_template_variables] - Additional key-value
|
|
629
|
+
* pairs for personalizing message content. Values can be of any type and will
|
|
630
|
+
* be substituted into the communication templates when rendering the message.
|
|
591
631
|
*/
|
|
592
632
|
/**
|
|
593
633
|
* @typedef SendOtpCommsReqSms
|
|
@@ -671,6 +711,8 @@ export = CommunicationPlatformModel;
|
|
|
671
711
|
* @property {number} [version_id] - The version ID for the test.
|
|
672
712
|
* @property {string} [sender_id] - The sender ID for the test.
|
|
673
713
|
* @property {string} [api_key] - The api_key for the test.
|
|
714
|
+
* @property {string} [tenant_name_1] - First part of jiocx url.
|
|
715
|
+
* @property {string} [tenant_name_2] - Second part of jiocx url.
|
|
674
716
|
*/
|
|
675
717
|
/**
|
|
676
718
|
* @typedef SmsProvider
|
|
@@ -738,6 +780,10 @@ export = CommunicationPlatformModel;
|
|
|
738
780
|
*/
|
|
739
781
|
/**
|
|
740
782
|
* @typedef SystemSmsTemplates
|
|
783
|
+
* @property {SystemSmsTemplate[]} [items] - An array of system SMS templates
|
|
784
|
+
*/
|
|
785
|
+
/**
|
|
786
|
+
* @typedef SystemSmsTemplate
|
|
741
787
|
* @property {EnabledObj} [url_shorten]
|
|
742
788
|
* @property {string} [_id]
|
|
743
789
|
* @property {boolean} [is_system]
|
|
@@ -804,13 +850,14 @@ export = CommunicationPlatformModel;
|
|
|
804
850
|
*/
|
|
805
851
|
/**
|
|
806
852
|
* @typedef Page
|
|
807
|
-
* @property {number} [item_total] - The total number of items
|
|
853
|
+
* @property {number} [item_total] - The total number of all items across all pages.
|
|
808
854
|
* @property {string} [next_id] - The identifier for the next page.
|
|
809
855
|
* @property {boolean} [has_previous] - Indicates whether there is a previous page.
|
|
810
856
|
* @property {boolean} [has_next] - Indicates whether there is a next page.
|
|
811
857
|
* @property {number} [current] - The current page number.
|
|
812
|
-
* @property {string} type - The type of the page,
|
|
858
|
+
* @property {string} type - The type of the page, can be 'cursor' or 'number'.
|
|
813
859
|
* @property {number} [size] - The number of items per page.
|
|
860
|
+
* @property {number} [page_size] - The number of items per page.
|
|
814
861
|
*/
|
|
815
862
|
/**
|
|
816
863
|
* @typedef GenericError
|
|
@@ -856,16 +903,53 @@ export = CommunicationPlatformModel;
|
|
|
856
903
|
declare class CommunicationPlatformModel {
|
|
857
904
|
}
|
|
858
905
|
declare namespace CommunicationPlatformModel {
|
|
859
|
-
export {
|
|
906
|
+
export { GroupMapping, EventGroup, EventSubgroup, EventSubscriptionsBulkUpdatePayload, EventSubscriptionsBulkUpdateResult, SubscriptionsObject, TemplateObject, CommunicationTemplate, AppProvider, AppProviderRes, AppProviderResVoice, AppProviderResObj, GlobalProviders, GlobalProvidersResObj, AppProviderReq, StatsImported, StatsProcessedEmail, StatsProcessedSms, StatsProcessed, Stats, GetStats, CampaignReq, RecipientHeaders, CampaignEmailTemplate, CampignEmailProvider, CampaignEmail, Campaign, Campaigns, BadRequestSchema, NotFound, AudienceReq, Audience, Audiences, GetNRecordsCsvReq, GetNRecordsCsvResItems, GetNRecordsCsvRes, DummyDatasources, DummyDatasourcesMeta, DummyDatasourcesMetaObj, EmailProviderReqFrom, EmailProviderReq, EmailProvider, EmailProviders, EmailTemplateKeys, EmailTemplateHeaders, EmailTemplateReq, TemplateAndType, EmailTemplate, SystemEmailTemplate, EmailTemplates, SystemEmailTemplates, PayloadEmailTemplateStructure, PayloadEmailProviderStructure, PayloadEmailStructure, PayloadSmsTemplateStructure, PayloadSmsProviderStructure, PayloadSmsStructure, PayloadStructure, MetaStructure, EnginePayload, EngineResult, EventSubscriptionTemplateSms, EventSubscriptionTemplateEmail, EventSubscriptionTemplate, EventSubscription, EventSubscriptionEvents, EventTemplate, EventProviderTemplates, EventSubscriptions, TriggerJobResult, TriggerJobPayload, GetGlobalVariablesResult, CreateGlobalVariablesResult, GlobalVariablesReq, Job, Jobs, CreateJobsRes, CreateJobsReq, JobLog, JobLogs, LogEmail, LogPushnotification, LogMeta, Log, Logs, SendOtpSmsCommsTemplate, SendOtpSmsCommsProvider, SendOtpEmailCommsProvider, SendOtpEmailCommsTemplate, SendOtpCommsReqData, SendOtpCommsReqSms, SendOtpCommsReqEmail, SendOtpCommsResSms, SendOtpCommsResEmail, SendOtpCommsReq, SendOtpCommsRes, VerifyOtpCommsReq, VerifyOtpCommsSuccessRes, VerifyOtpCommsErrorRes, SmsProviderReq, SmsProvider, SmsProviders, DefaultSmsProviders, SmsTemplateMessage, SmsTemplates, SmsTemplate, SystemSmsTemplates, SystemSmsTemplate, metaObj, SmsTemplateReq, Notification, SystemNotificationUser, SystemNotification, SystemNotifications, Page, GenericError, GenericDelete, Message, EnabledObj, OtpConfigurationExpiryDuration, OtpConfigurationExpiry, OtpConfiguration };
|
|
860
907
|
}
|
|
861
|
-
/** @returns {
|
|
862
|
-
declare function
|
|
863
|
-
type
|
|
908
|
+
/** @returns {GroupMapping} */
|
|
909
|
+
declare function GroupMapping(): GroupMapping;
|
|
910
|
+
type GroupMapping = {
|
|
911
|
+
/**
|
|
912
|
+
* - List of event groups configured for the application.
|
|
913
|
+
*/
|
|
914
|
+
items: EventGroup[];
|
|
915
|
+
};
|
|
916
|
+
/** @returns {EventGroup} */
|
|
917
|
+
declare function EventGroup(): EventGroup;
|
|
918
|
+
type EventGroup = {
|
|
919
|
+
/**
|
|
920
|
+
* - Event group identifier
|
|
921
|
+
*/
|
|
922
|
+
name: string;
|
|
923
|
+
/**
|
|
924
|
+
* - Human-readable group name
|
|
925
|
+
*/
|
|
926
|
+
display: string;
|
|
927
|
+
/**
|
|
928
|
+
* - List of sub-groups that belong to
|
|
929
|
+
* this event group.
|
|
930
|
+
*/
|
|
931
|
+
subgroups: EventSubgroup[];
|
|
932
|
+
};
|
|
933
|
+
/** @returns {EventSubgroup} */
|
|
934
|
+
declare function EventSubgroup(): EventSubgroup;
|
|
935
|
+
type EventSubgroup = {
|
|
936
|
+
/**
|
|
937
|
+
* - Sub-group identifier
|
|
938
|
+
*/
|
|
939
|
+
name: string;
|
|
940
|
+
/**
|
|
941
|
+
* - Human-readable sub-group name
|
|
942
|
+
*/
|
|
943
|
+
display: string;
|
|
944
|
+
};
|
|
945
|
+
/** @returns {EventSubscriptionsBulkUpdatePayload} */
|
|
946
|
+
declare function EventSubscriptionsBulkUpdatePayload(): EventSubscriptionsBulkUpdatePayload;
|
|
947
|
+
type EventSubscriptionsBulkUpdatePayload = {
|
|
864
948
|
subscriptions?: SubscriptionsObject[];
|
|
865
949
|
};
|
|
866
|
-
/** @returns {
|
|
867
|
-
declare function
|
|
868
|
-
type
|
|
950
|
+
/** @returns {EventSubscriptionsBulkUpdateResult} */
|
|
951
|
+
declare function EventSubscriptionsBulkUpdateResult(): EventSubscriptionsBulkUpdateResult;
|
|
952
|
+
type EventSubscriptionsBulkUpdateResult = {
|
|
869
953
|
template?: EventSubscriptionTemplate;
|
|
870
954
|
_id?: string;
|
|
871
955
|
application?: string;
|
|
@@ -1001,6 +1085,10 @@ type CampaignReq = {
|
|
|
1001
1085
|
name?: string;
|
|
1002
1086
|
file_url?: string;
|
|
1003
1087
|
type?: string;
|
|
1088
|
+
/**
|
|
1089
|
+
* - Type of the datasource (audience or user_group)
|
|
1090
|
+
*/
|
|
1091
|
+
datasource_type?: string;
|
|
1004
1092
|
records_count?: number;
|
|
1005
1093
|
application?: string;
|
|
1006
1094
|
};
|
|
@@ -1039,6 +1127,10 @@ type Campaign = {
|
|
|
1039
1127
|
_id?: string;
|
|
1040
1128
|
datasource?: string;
|
|
1041
1129
|
type?: string;
|
|
1130
|
+
/**
|
|
1131
|
+
* - Type of the datasource (audience or user_group)
|
|
1132
|
+
*/
|
|
1133
|
+
datasource_type?: string;
|
|
1042
1134
|
name?: string;
|
|
1043
1135
|
application?: string;
|
|
1044
1136
|
created_at?: string;
|
|
@@ -1346,28 +1438,28 @@ type MetaStructure = {
|
|
|
1346
1438
|
trace?: string;
|
|
1347
1439
|
timestamp?: string;
|
|
1348
1440
|
};
|
|
1349
|
-
/** @returns {
|
|
1350
|
-
declare function
|
|
1351
|
-
type
|
|
1441
|
+
/** @returns {EnginePayload} */
|
|
1442
|
+
declare function EnginePayload(): EnginePayload;
|
|
1443
|
+
type EnginePayload = {
|
|
1352
1444
|
payload?: PayloadStructure;
|
|
1353
1445
|
meta?: MetaStructure;
|
|
1354
1446
|
};
|
|
1355
|
-
/** @returns {
|
|
1356
|
-
declare function
|
|
1357
|
-
type
|
|
1447
|
+
/** @returns {EngineResult} */
|
|
1448
|
+
declare function EngineResult(): EngineResult;
|
|
1449
|
+
type EngineResult = {
|
|
1358
1450
|
success?: boolean;
|
|
1359
1451
|
};
|
|
1360
1452
|
/** @returns {EventSubscriptionTemplateSms} */
|
|
1361
1453
|
declare function EventSubscriptionTemplateSms(): EventSubscriptionTemplateSms;
|
|
1362
1454
|
type EventSubscriptionTemplateSms = {
|
|
1363
1455
|
subscribed?: boolean;
|
|
1364
|
-
template?:
|
|
1456
|
+
template?: SmsTemplate;
|
|
1365
1457
|
};
|
|
1366
1458
|
/** @returns {EventSubscriptionTemplateEmail} */
|
|
1367
1459
|
declare function EventSubscriptionTemplateEmail(): EventSubscriptionTemplateEmail;
|
|
1368
1460
|
type EventSubscriptionTemplateEmail = {
|
|
1369
1461
|
subscribed?: boolean;
|
|
1370
|
-
template?:
|
|
1462
|
+
template?: EmailTemplate;
|
|
1371
1463
|
};
|
|
1372
1464
|
/** @returns {EventSubscriptionTemplate} */
|
|
1373
1465
|
declare function EventSubscriptionTemplate(): EventSubscriptionTemplate;
|
|
@@ -1382,37 +1474,65 @@ type EventSubscription = {
|
|
|
1382
1474
|
is_default?: boolean;
|
|
1383
1475
|
_id?: string;
|
|
1384
1476
|
application?: string;
|
|
1385
|
-
event?:
|
|
1477
|
+
event?: EventSubscriptionEvents;
|
|
1386
1478
|
slug?: string;
|
|
1387
1479
|
created_at?: string;
|
|
1388
1480
|
updated_at?: string;
|
|
1389
1481
|
__v?: number;
|
|
1390
1482
|
};
|
|
1483
|
+
/** @returns {EventSubscriptionEvents} */
|
|
1484
|
+
declare function EventSubscriptionEvents(): EventSubscriptionEvents;
|
|
1485
|
+
type EventSubscriptionEvents = {
|
|
1486
|
+
category?: string;
|
|
1487
|
+
event_name?: string;
|
|
1488
|
+
group?: string;
|
|
1489
|
+
slug?: string;
|
|
1490
|
+
template?: EventTemplate;
|
|
1491
|
+
};
|
|
1492
|
+
/** @returns {EventTemplate} */
|
|
1493
|
+
declare function EventTemplate(): EventTemplate;
|
|
1494
|
+
type EventTemplate = {
|
|
1495
|
+
email?: EventProviderTemplates;
|
|
1496
|
+
pushnotification?: EventProviderTemplates;
|
|
1497
|
+
sms?: EventProviderTemplates;
|
|
1498
|
+
};
|
|
1499
|
+
/** @returns {EventProviderTemplates} */
|
|
1500
|
+
declare function EventProviderTemplates(): EventProviderTemplates;
|
|
1501
|
+
type EventProviderTemplates = {
|
|
1502
|
+
/**
|
|
1503
|
+
* - Provider type for the event template
|
|
1504
|
+
*/
|
|
1505
|
+
provider_type?: string;
|
|
1506
|
+
/**
|
|
1507
|
+
* - This is the unique id of the template
|
|
1508
|
+
*/
|
|
1509
|
+
template?: string;
|
|
1510
|
+
};
|
|
1391
1511
|
/** @returns {EventSubscriptions} */
|
|
1392
1512
|
declare function EventSubscriptions(): EventSubscriptions;
|
|
1393
1513
|
type EventSubscriptions = {
|
|
1394
1514
|
items?: EventSubscription[];
|
|
1395
1515
|
page?: Page;
|
|
1396
1516
|
};
|
|
1397
|
-
/** @returns {
|
|
1398
|
-
declare function
|
|
1399
|
-
type
|
|
1517
|
+
/** @returns {TriggerJobResult} */
|
|
1518
|
+
declare function TriggerJobResult(): TriggerJobResult;
|
|
1519
|
+
type TriggerJobResult = {
|
|
1400
1520
|
status?: number;
|
|
1401
1521
|
};
|
|
1402
|
-
/** @returns {
|
|
1403
|
-
declare function
|
|
1404
|
-
type
|
|
1522
|
+
/** @returns {TriggerJobPayload} */
|
|
1523
|
+
declare function TriggerJobPayload(): TriggerJobPayload;
|
|
1524
|
+
type TriggerJobPayload = {
|
|
1405
1525
|
job_id?: string;
|
|
1406
1526
|
};
|
|
1407
|
-
/** @returns {
|
|
1408
|
-
declare function
|
|
1409
|
-
type
|
|
1527
|
+
/** @returns {GetGlobalVariablesResult} */
|
|
1528
|
+
declare function GetGlobalVariablesResult(): GetGlobalVariablesResult;
|
|
1529
|
+
type GetGlobalVariablesResult = {
|
|
1410
1530
|
read_only?: any;
|
|
1411
1531
|
editable?: any;
|
|
1412
1532
|
};
|
|
1413
|
-
/** @returns {
|
|
1414
|
-
declare function
|
|
1415
|
-
type
|
|
1533
|
+
/** @returns {CreateGlobalVariablesResult} */
|
|
1534
|
+
declare function CreateGlobalVariablesResult(): CreateGlobalVariablesResult;
|
|
1535
|
+
type CreateGlobalVariablesResult = {
|
|
1416
1536
|
_id?: string;
|
|
1417
1537
|
category?: string;
|
|
1418
1538
|
application?: string;
|
|
@@ -1549,6 +1669,12 @@ type SendOtpCommsReqData = {
|
|
|
1549
1669
|
mobile?: string;
|
|
1550
1670
|
country_code?: string;
|
|
1551
1671
|
to?: string;
|
|
1672
|
+
/**
|
|
1673
|
+
* - Additional key-value
|
|
1674
|
+
* pairs for personalizing message content. Values can be of any type and will
|
|
1675
|
+
* be substituted into the communication templates when rendering the message.
|
|
1676
|
+
*/
|
|
1677
|
+
additional_template_variables?: any;
|
|
1552
1678
|
};
|
|
1553
1679
|
/** @returns {SendOtpCommsReqSms} */
|
|
1554
1680
|
declare function SendOtpCommsReqSms(): SendOtpCommsReqSms;
|
|
@@ -1678,6 +1804,14 @@ type SmsProviderReq = {
|
|
|
1678
1804
|
* - The api_key for the test.
|
|
1679
1805
|
*/
|
|
1680
1806
|
api_key?: string;
|
|
1807
|
+
/**
|
|
1808
|
+
* - First part of jiocx url.
|
|
1809
|
+
*/
|
|
1810
|
+
tenant_name_1?: string;
|
|
1811
|
+
/**
|
|
1812
|
+
* - Second part of jiocx url.
|
|
1813
|
+
*/
|
|
1814
|
+
tenant_name_2?: string;
|
|
1681
1815
|
};
|
|
1682
1816
|
/** @returns {SmsProvider} */
|
|
1683
1817
|
declare function SmsProvider(): SmsProvider;
|
|
@@ -1752,6 +1886,14 @@ type SmsTemplate = {
|
|
|
1752
1886
|
/** @returns {SystemSmsTemplates} */
|
|
1753
1887
|
declare function SystemSmsTemplates(): SystemSmsTemplates;
|
|
1754
1888
|
type SystemSmsTemplates = {
|
|
1889
|
+
/**
|
|
1890
|
+
* - An array of system SMS templates
|
|
1891
|
+
*/
|
|
1892
|
+
items?: SystemSmsTemplate[];
|
|
1893
|
+
};
|
|
1894
|
+
/** @returns {SystemSmsTemplate} */
|
|
1895
|
+
declare function SystemSmsTemplate(): SystemSmsTemplate;
|
|
1896
|
+
type SystemSmsTemplate = {
|
|
1755
1897
|
url_shorten?: EnabledObj;
|
|
1756
1898
|
_id?: string;
|
|
1757
1899
|
is_system?: boolean;
|
|
@@ -1826,7 +1968,7 @@ type SystemNotifications = {
|
|
|
1826
1968
|
declare function Page(): Page;
|
|
1827
1969
|
type Page = {
|
|
1828
1970
|
/**
|
|
1829
|
-
* - The total number of items
|
|
1971
|
+
* - The total number of all items across all pages.
|
|
1830
1972
|
*/
|
|
1831
1973
|
item_total?: number;
|
|
1832
1974
|
/**
|
|
@@ -1846,13 +1988,17 @@ type Page = {
|
|
|
1846
1988
|
*/
|
|
1847
1989
|
current?: number;
|
|
1848
1990
|
/**
|
|
1849
|
-
* - The type of the page,
|
|
1991
|
+
* - The type of the page, can be 'cursor' or 'number'.
|
|
1850
1992
|
*/
|
|
1851
1993
|
type: string;
|
|
1852
1994
|
/**
|
|
1853
1995
|
* - The number of items per page.
|
|
1854
1996
|
*/
|
|
1855
1997
|
size?: number;
|
|
1998
|
+
/**
|
|
1999
|
+
* - The number of items per page.
|
|
2000
|
+
*/
|
|
2001
|
+
page_size?: number;
|
|
1856
2002
|
};
|
|
1857
2003
|
/** @returns {GenericError} */
|
|
1858
2004
|
declare function GenericError(): GenericError;
|