@gofynd/fdk-client-javascript 1.1.6 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -0
- package/index.js +0 -3
- package/package.json +1 -1
- package/sdk/application/ApplicationAPIClient.d.ts +15 -1
- package/sdk/application/ApplicationAPIClient.js +8 -1
- package/sdk/application/ApplicationClient.d.ts +37 -6
- package/sdk/application/ApplicationClient.js +31 -0
- package/sdk/application/ApplicationConfig.d.ts +52 -12
- package/sdk/application/ApplicationConfig.js +37 -2
- package/sdk/application/ApplicationModels.d.ts +46 -1
- package/sdk/application/ApplicationModels.js +18 -0
- package/sdk/application/Cart/CartApplicationClient.d.ts +172 -357
- package/sdk/application/Cart/CartApplicationClient.js +620 -483
- package/sdk/application/Cart/CartApplicationModel.d.ts +2054 -96
- package/sdk/application/Cart/CartApplicationModel.js +1224 -93
- package/sdk/application/Cart/CartApplicationValidator.d.ts +508 -30
- package/sdk/application/Cart/CartApplicationValidator.js +270 -15
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +234 -413
- package/sdk/application/Catalog/CatalogApplicationClient.js +777 -630
- package/sdk/application/Catalog/CatalogApplicationModel.d.ts +2218 -117
- package/sdk/application/Catalog/CatalogApplicationModel.js +1499 -170
- package/sdk/application/Catalog/CatalogApplicationValidator.d.ts +798 -31
- package/sdk/application/Catalog/CatalogApplicationValidator.js +318 -3
- package/sdk/application/Common/CommonApplicationClient.d.ts +14 -21
- package/sdk/application/Common/CommonApplicationClient.js +50 -33
- package/sdk/application/Common/CommonApplicationModel.d.ts +448 -19
- package/sdk/application/Common/CommonApplicationModel.js +224 -16
- package/sdk/application/Common/CommonApplicationValidator.d.ts +42 -4
- package/sdk/application/Common/CommonApplicationValidator.js +21 -3
- package/sdk/application/Communication/CommunicationApplicationClient.d.ts +25 -18
- package/sdk/application/Communication/CommunicationApplicationClient.js +74 -47
- package/sdk/application/Communication/CommunicationApplicationModel.d.ts +190 -14
- package/sdk/application/Communication/CommunicationApplicationModel.js +124 -7
- package/sdk/application/Communication/CommunicationApplicationValidator.d.ts +27 -4
- package/sdk/application/Communication/CommunicationApplicationValidator.js +21 -5
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +113 -112
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +381 -260
- package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +2453 -110
- package/sdk/application/Configuration/ConfigurationApplicationModel.js +1254 -108
- package/sdk/application/Configuration/ConfigurationApplicationValidator.d.ts +160 -8
- package/sdk/application/Configuration/ConfigurationApplicationValidator.js +88 -4
- package/sdk/application/Content/ContentApplicationClient.d.ts +120 -138
- package/sdk/application/Content/ContentApplicationClient.js +409 -277
- package/sdk/application/Content/ContentApplicationModel.d.ts +1627 -105
- package/sdk/application/Content/ContentApplicationModel.js +1202 -109
- package/sdk/application/Content/ContentApplicationValidator.d.ts +214 -12
- package/sdk/application/Content/ContentApplicationValidator.js +113 -3
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +20 -29
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +68 -47
- package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +299 -20
- package/sdk/application/FileStorage/FileStorageApplicationModel.js +209 -16
- package/sdk/application/FileStorage/FileStorageApplicationValidator.d.ts +55 -5
- package/sdk/application/FileStorage/FileStorageApplicationValidator.js +33 -6
- package/sdk/application/Lead/LeadApplicationClient.d.ts +50 -53
- package/sdk/application/Lead/LeadApplicationClient.js +169 -103
- package/sdk/application/Lead/LeadApplicationModel.d.ts +1405 -54
- package/sdk/application/Lead/LeadApplicationModel.js +619 -73
- package/sdk/application/Lead/LeadApplicationValidator.d.ts +91 -9
- package/sdk/application/Lead/LeadApplicationValidator.js +51 -6
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +34 -33
- package/sdk/application/Logistic/LogisticApplicationClient.js +110 -73
- package/sdk/application/Logistic/LogisticApplicationModel.d.ts +399 -28
- package/sdk/application/Logistic/LogisticApplicationModel.js +293 -24
- package/sdk/application/Logistic/LogisticApplicationValidator.d.ts +48 -6
- package/sdk/application/Logistic/LogisticApplicationValidator.js +34 -6
- package/sdk/application/Order/OrderApplicationClient.d.ts +81 -133
- package/sdk/application/Order/OrderApplicationClient.js +297 -217
- package/sdk/application/Order/OrderApplicationModel.d.ts +1101 -66
- package/sdk/application/Order/OrderApplicationModel.js +776 -57
- package/sdk/application/Order/OrderApplicationValidator.d.ts +249 -14
- package/sdk/application/Order/OrderApplicationValidator.js +114 -5
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +341 -356
- package/sdk/application/Payment/PaymentApplicationClient.js +1077 -703
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +3125 -99
- package/sdk/application/Payment/PaymentApplicationModel.js +1158 -62
- package/sdk/application/Payment/PaymentApplicationValidator.d.ts +494 -41
- package/sdk/application/Payment/PaymentApplicationValidator.js +297 -25
- package/sdk/application/PosCart/PosCartApplicationClient.d.ts +178 -350
- package/sdk/application/PosCart/PosCartApplicationClient.js +636 -491
- package/sdk/application/PosCart/PosCartApplicationModel.d.ts +1823 -89
- package/sdk/application/PosCart/PosCartApplicationModel.js +1117 -85
- package/sdk/application/PosCart/PosCartApplicationValidator.d.ts +480 -29
- package/sdk/application/PosCart/PosCartApplicationValidator.js +262 -15
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +49 -47
- package/sdk/application/Rewards/RewardsApplicationClient.js +160 -102
- package/sdk/application/Rewards/RewardsApplicationModel.d.ts +343 -22
- package/sdk/application/Rewards/RewardsApplicationModel.js +230 -15
- package/sdk/application/Rewards/RewardsApplicationValidator.d.ts +70 -7
- package/sdk/application/Rewards/RewardsApplicationValidator.js +45 -6
- package/sdk/application/Share/ShareApplicationClient.d.ts +44 -50
- package/sdk/application/Share/ShareApplicationClient.js +165 -97
- package/sdk/application/Share/ShareApplicationModel.d.ts +230 -15
- package/sdk/application/Share/ShareApplicationModel.js +154 -16
- package/sdk/application/Share/ShareApplicationValidator.d.ts +86 -8
- package/sdk/application/Share/ShareApplicationValidator.js +48 -4
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +25 -27
- package/sdk/application/Theme/ThemeApplicationClient.js +83 -54
- package/sdk/application/Theme/ThemeApplicationModel.d.ts +621 -48
- package/sdk/application/Theme/ThemeApplicationModel.js +464 -40
- package/sdk/application/Theme/ThemeApplicationValidator.d.ts +49 -5
- package/sdk/application/Theme/ThemeApplicationValidator.js +26 -3
- package/sdk/application/User/UserApplicationClient.d.ts +219 -303
- package/sdk/application/User/UserApplicationClient.js +819 -522
- package/sdk/application/User/UserApplicationModel.d.ts +1390 -101
- package/sdk/application/User/UserApplicationModel.js +983 -44
- package/sdk/application/User/UserApplicationValidator.d.ts +457 -33
- package/sdk/application/User/UserApplicationValidator.js +265 -31
- package/sdk/common/AxiosHelper.js +8 -2
- package/sdk/common/Paginator.d.ts +27 -12
- package/sdk/common/Paginator.js +15 -0
- package/sdk/common/RequestSigner.js +0 -1
- package/sdk/partner/PartnerAPIClient.d.ts +15 -1
- package/sdk/partner/PartnerAPIClient.js +8 -1
- package/sdk/partner/PartnerClient.d.ts +20 -3
- package/sdk/partner/PartnerClient.js +17 -0
- package/sdk/partner/PartnerConfig.d.ts +40 -14
- package/sdk/partner/PartnerConfig.js +31 -6
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +26 -25
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +82 -53
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +202 -17
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +139 -10
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +42 -5
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +26 -4
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +88 -97
- package/sdk/platform/Billing/BillingPlatformClient.js +310 -191
- package/sdk/platform/Billing/BillingPlatformModel.d.ts +1211 -68
- package/sdk/platform/Billing/BillingPlatformModel.js +824 -59
- package/sdk/platform/Billing/BillingPlatformValidator.d.ts +153 -12
- package/sdk/platform/Billing/BillingPlatformValidator.js +87 -8
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +392 -634
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +1480 -957
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +827 -57
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +492 -34
- package/sdk/platform/Cart/CartPlatformModel.d.ts +3639 -175
- package/sdk/platform/Cart/CartPlatformModel.js +2368 -212
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +438 -615
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +1449 -984
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +1081 -49
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +482 -23
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +573 -824
- package/sdk/platform/Catalog/CatalogPlatformClient.js +1773 -1264
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +6871 -326
- package/sdk/platform/Catalog/CatalogPlatformModel.js +4215 -349
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +1331 -71
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +611 -30
- package/sdk/platform/Common/CommonPlatformClient.d.ts +14 -21
- package/sdk/platform/Common/CommonPlatformClient.js +48 -33
- package/sdk/platform/Common/CommonPlatformModel.d.ts +448 -19
- package/sdk/platform/Common/CommonPlatformModel.js +224 -16
- package/sdk/platform/Common/CommonPlatformValidator.d.ts +42 -4
- package/sdk/platform/Common/CommonPlatformValidator.js +21 -3
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +457 -279
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +1423 -553
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +581 -42
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +294 -22
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +18 -5
- package/sdk/platform/Communication/CommunicationPlatformClient.js +58 -19
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +1630 -102
- package/sdk/platform/Communication/CommunicationPlatformModel.js +1150 -85
- package/sdk/platform/Communication/CommunicationPlatformValidator.d.ts +16 -3
- package/sdk/platform/Communication/CommunicationPlatformValidator.js +11 -3
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +102 -111
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +321 -225
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +830 -43
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +612 -78
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +180 -13
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +98 -10
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +232 -212
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +737 -438
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +293 -22
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +184 -17
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +166 -178
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +519 -310
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +4504 -188
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +2242 -204
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +332 -19
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +153 -10
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +495 -560
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +1777 -987
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +872 -62
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +487 -35
- package/sdk/platform/Content/ContentPlatformModel.d.ts +1661 -108
- package/sdk/platform/Content/ContentPlatformModel.js +1217 -113
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +67 -101
- package/sdk/platform/Discount/DiscountPlatformClient.js +240 -176
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +242 -15
- package/sdk/platform/Discount/DiscountPlatformModel.js +162 -10
- package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +185 -13
- package/sdk/platform/Discount/DiscountPlatformValidator.js +88 -8
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +32 -41
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +106 -74
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +77 -6
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +41 -6
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +39 -54
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +124 -99
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +299 -20
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +207 -16
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +98 -8
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +54 -7
- package/sdk/platform/Finance/FinancePlatformClient.d.ts +85 -91
- package/sdk/platform/Finance/FinancePlatformClient.js +272 -180
- package/sdk/platform/Finance/FinancePlatformModel.d.ts +619 -50
- package/sdk/platform/Finance/FinancePlatformModel.js +458 -30
- package/sdk/platform/Finance/FinancePlatformValidator.d.ts +123 -15
- package/sdk/platform/Finance/FinancePlatformValidator.js +95 -16
- package/sdk/platform/Inventory/InventoryPlatformClient.d.ts +99 -97
- package/sdk/platform/Inventory/InventoryPlatformClient.js +288 -199
- package/sdk/platform/Inventory/InventoryPlatformModel.d.ts +1354 -61
- package/sdk/platform/Inventory/InventoryPlatformModel.js +916 -83
- package/sdk/platform/Inventory/InventoryPlatformValidator.d.ts +168 -12
- package/sdk/platform/Inventory/InventoryPlatformValidator.js +82 -6
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +86 -106
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +326 -186
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +180 -14
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +94 -9
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +75 -101
- package/sdk/platform/Lead/LeadPlatformClient.js +240 -174
- package/sdk/platform/Lead/LeadPlatformModel.d.ts +1403 -54
- package/sdk/platform/Lead/LeadPlatformModel.js +618 -73
- package/sdk/platform/Lead/LeadPlatformValidator.d.ts +173 -12
- package/sdk/platform/Lead/LeadPlatformValidator.js +85 -8
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +18 -14
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +56 -29
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +26 -4
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +16 -3
- package/sdk/platform/Order/OrderPlatformClient.d.ts +343 -556
- package/sdk/platform/Order/OrderPlatformClient.js +969 -762
- package/sdk/platform/Order/OrderPlatformModel.d.ts +4967 -247
- package/sdk/platform/Order/OrderPlatformModel.js +3249 -259
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +758 -37
- package/sdk/platform/Order/OrderPlatformValidator.js +351 -22
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +28 -36
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +103 -59
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +66 -6
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +32 -4
- package/sdk/platform/Partner/PartnerPlatformClient.d.ts +68 -107
- package/sdk/platform/Partner/PartnerPlatformClient.js +253 -174
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +767 -45
- package/sdk/platform/Partner/PartnerPlatformModel.js +524 -41
- package/sdk/platform/Partner/PartnerPlatformValidator.d.ts +207 -13
- package/sdk/platform/Partner/PartnerPlatformValidator.js +87 -5
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +255 -260
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +860 -504
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +348 -30
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +221 -19
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +73 -73
- package/sdk/platform/Payment/PaymentPlatformClient.js +238 -154
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +2658 -93
- package/sdk/platform/Payment/PaymentPlatformModel.js +1035 -36
- package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +111 -11
- package/sdk/platform/Payment/PaymentPlatformValidator.js +68 -7
- package/sdk/platform/PlatformAPIClient.d.ts +16 -1
- package/sdk/platform/PlatformAPIClient.js +9 -1
- package/sdk/platform/PlatformApplicationClient.d.ts +22 -1798
- package/sdk/platform/PlatformApplicationClient.js +17 -1899
- package/sdk/platform/PlatformClient.d.ts +29 -12579
- package/sdk/platform/PlatformClient.js +26 -15085
- package/sdk/platform/PlatformConfig.d.ts +37 -11
- package/sdk/platform/PlatformConfig.js +32 -6
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +80 -92
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +307 -177
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +149 -12
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +82 -8
- package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +371 -23
- package/sdk/platform/Rewards/RewardsPlatformModel.js +246 -16
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +120 -89
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +349 -201
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +128 -12
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +85 -11
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +148 -178
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +454 -329
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +1399 -96
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +1022 -71
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +280 -18
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +134 -11
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +38 -47
- package/sdk/platform/Share/SharePlatformApplicationClient.js +137 -73
- package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +87 -7
- package/sdk/platform/Share/SharePlatformApplicationValidator.js +42 -5
- package/sdk/platform/Share/SharePlatformModel.d.ts +250 -16
- package/sdk/platform/Share/SharePlatformModel.js +165 -17
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +149 -183
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +579 -330
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +308 -24
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +162 -10
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +621 -48
- package/sdk/platform/Theme/ThemePlatformModel.js +464 -40
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +119 -151
- package/sdk/platform/User/UserPlatformApplicationClient.js +411 -244
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +235 -18
- package/sdk/platform/User/UserPlatformApplicationValidator.js +126 -12
- package/sdk/platform/User/UserPlatformModel.d.ts +1390 -101
- package/sdk/platform/User/UserPlatformModel.js +983 -44
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +38 -47
- package/sdk/platform/Webhook/WebhookPlatformClient.js +137 -87
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +242 -16
- package/sdk/platform/Webhook/WebhookPlatformModel.js +167 -18
- package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +83 -7
- package/sdk/platform/Webhook/WebhookPlatformValidator.js +43 -5
- package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +14 -21
- package/sdk/public/Configuration/ConfigurationPublicClient.js +46 -33
- package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +473 -19
- package/sdk/public/Configuration/ConfigurationPublicModel.js +224 -16
- package/sdk/public/Configuration/ConfigurationPublicValidator.d.ts +42 -4
- package/sdk/public/Configuration/ConfigurationPublicValidator.js +21 -3
- package/sdk/public/Inventory/InventoryPublicClient.d.ts +48 -48
- package/sdk/public/Inventory/InventoryPublicClient.js +146 -98
- package/sdk/public/Inventory/InventoryPublicModel.d.ts +392 -21
- package/sdk/public/Inventory/InventoryPublicModel.js +267 -27
- package/sdk/public/Inventory/InventoryPublicValidator.d.ts +90 -8
- package/sdk/public/Inventory/InventoryPublicValidator.js +44 -4
- package/sdk/public/PublicClient.d.ts +19 -3
- package/sdk/public/PublicClient.js +16 -0
- package/sdk/public/PublicConfig.d.ts +27 -6
- package/sdk/public/PublicConfig.js +17 -1
- package/sdk/public/Webhook/WebhookPublicClient.d.ts +13 -11
- package/sdk/public/Webhook/WebhookPublicClient.js +42 -27
- package/sdk/public/Webhook/WebhookPublicModel.d.ts +242 -16
- package/sdk/public/Webhook/WebhookPublicModel.js +167 -18
- package/sdk/public/Webhook/WebhookPublicValidator.d.ts +18 -3
- package/sdk/public/Webhook/WebhookPublicValidator.js +14 -4
|
@@ -1,62 +1,1355 @@
|
|
|
1
|
-
export =
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
1
|
+
export = InventoryPlatformModel;
|
|
2
|
+
/**
|
|
3
|
+
* @typedef ArchiveConfig
|
|
4
|
+
* @property {boolean} [archive]
|
|
5
|
+
* @property {string} [archive_dir]
|
|
6
|
+
* @property {boolean} [delete]
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* @typedef Audit
|
|
10
|
+
* @property {string} [created_by]
|
|
11
|
+
* @property {string} [created_on]
|
|
12
|
+
* @property {string} [modified_by]
|
|
13
|
+
* @property {string} [modified_on]
|
|
14
|
+
*/
|
|
15
|
+
/**
|
|
16
|
+
* @typedef AWSS3config
|
|
17
|
+
* @property {string} [access_key]
|
|
18
|
+
* @property {boolean} [archive]
|
|
19
|
+
* @property {ArchiveConfig} [archive_config]
|
|
20
|
+
* @property {string} [archive_path]
|
|
21
|
+
* @property {string} [bucket]
|
|
22
|
+
* @property {boolean} [delete]
|
|
23
|
+
* @property {string} [dir]
|
|
24
|
+
* @property {string} [file_regex]
|
|
25
|
+
* @property {string} [local_file_path]
|
|
26
|
+
* @property {string} [region]
|
|
27
|
+
* @property {string} [secret_key]
|
|
28
|
+
* @property {boolean} [unzip]
|
|
29
|
+
* @property {string} [zip_format]
|
|
30
|
+
*/
|
|
31
|
+
/**
|
|
32
|
+
* @typedef CatalogMasterConfig
|
|
33
|
+
* @property {string} [source_slug]
|
|
34
|
+
*/
|
|
35
|
+
/**
|
|
36
|
+
* @typedef CompanyConfig
|
|
37
|
+
* @property {number} [company_id]
|
|
38
|
+
* @property {number} [delete_quantity_threshold]
|
|
39
|
+
* @property {number[]} [exclude_steps]
|
|
40
|
+
* @property {string[]} [hidden_closet_keys]
|
|
41
|
+
* @property {Object} [open_tags]
|
|
42
|
+
* @property {string[]} [tax_identifiers]
|
|
43
|
+
*/
|
|
44
|
+
/**
|
|
45
|
+
* @typedef DataTresholdDTO
|
|
46
|
+
* @property {number} [min_price]
|
|
47
|
+
* @property {number} [period_threshold]
|
|
48
|
+
* @property {string} [period_threshold_type]
|
|
49
|
+
* @property {GenericDTO[]} [period_type_list]
|
|
50
|
+
* @property {number} [safe_stock]
|
|
51
|
+
*/
|
|
52
|
+
/**
|
|
53
|
+
* @typedef DBConfig
|
|
54
|
+
* @property {string} [dbname]
|
|
55
|
+
* @property {string} [driver_class]
|
|
56
|
+
* @property {string} [host]
|
|
57
|
+
* @property {string} [jdbc_url]
|
|
58
|
+
* @property {Object} [optional_properties]
|
|
59
|
+
* @property {string} [password]
|
|
60
|
+
* @property {number} [port]
|
|
61
|
+
* @property {boolean} [procedure]
|
|
62
|
+
* @property {string} [query]
|
|
63
|
+
* @property {string} [username]
|
|
64
|
+
* @property {string} [vendor]
|
|
65
|
+
*/
|
|
66
|
+
/**
|
|
67
|
+
* @typedef DBConnectionProfile
|
|
68
|
+
* @property {string} [inventory]
|
|
69
|
+
*/
|
|
70
|
+
/**
|
|
71
|
+
* @typedef DBParamConfig
|
|
72
|
+
* @property {Object} [params]
|
|
73
|
+
*/
|
|
74
|
+
/**
|
|
75
|
+
* @typedef DefaultHeadersDTO
|
|
76
|
+
* @property {PropBeanDTO} [intf_article_id]
|
|
77
|
+
* @property {PropBeanDTO} [price_effective]
|
|
78
|
+
* @property {PropBeanDTO} [quantity]
|
|
79
|
+
* @property {PropBeanDTO} [store]
|
|
80
|
+
*/
|
|
81
|
+
/**
|
|
82
|
+
* @typedef DocMappingConfig
|
|
83
|
+
* @property {DefaultHeadersDTO} [default_headers]
|
|
84
|
+
* @property {number} [junk_data_threshold_count]
|
|
85
|
+
* @property {PropBeanConfig[]} [prop_bean_configs]
|
|
86
|
+
* @property {Object} [properties]
|
|
87
|
+
* @property {string} [unwind_field]
|
|
88
|
+
*/
|
|
89
|
+
/**
|
|
90
|
+
* @typedef EmailConfig
|
|
91
|
+
* @property {ArchiveConfig} [archive_config]
|
|
92
|
+
* @property {boolean} [attachment_mandate]
|
|
93
|
+
* @property {string} [attachment_regex]
|
|
94
|
+
* @property {string} [body_content_regex]
|
|
95
|
+
* @property {string} [content_type]
|
|
96
|
+
* @property {boolean} [downloadable_link]
|
|
97
|
+
* @property {boolean} [filter_based_on_recepients]
|
|
98
|
+
* @property {boolean} [filter_files_after_extraction]
|
|
99
|
+
* @property {string[]} [folder_name_hierarchies]
|
|
100
|
+
* @property {string} [host]
|
|
101
|
+
* @property {string} [local_dir]
|
|
102
|
+
* @property {string} [password]
|
|
103
|
+
* @property {boolean} [password_protected]
|
|
104
|
+
* @property {string} [pcol]
|
|
105
|
+
* @property {Object} [properties]
|
|
106
|
+
* @property {boolean} [read_all_unread_mails]
|
|
107
|
+
* @property {boolean} [read_from_content]
|
|
108
|
+
* @property {string} [recepient]
|
|
109
|
+
* @property {string} [sender_address]
|
|
110
|
+
* @property {string} [subject_line_regex]
|
|
111
|
+
* @property {boolean} [unzip]
|
|
112
|
+
* @property {string} [username]
|
|
113
|
+
* @property {string} [zip_format]
|
|
114
|
+
*/
|
|
115
|
+
/**
|
|
116
|
+
* @typedef FileConfig
|
|
117
|
+
* @property {string} [charset]
|
|
118
|
+
* @property {number} [data_start_index]
|
|
119
|
+
* @property {DefaultHeadersDTO} [default_headers]
|
|
120
|
+
* @property {string} [delimiter]
|
|
121
|
+
* @property {string} [escape_char]
|
|
122
|
+
* @property {boolean} [file_has_header]
|
|
123
|
+
* @property {string} [file_type]
|
|
124
|
+
* @property {string[]} [header_array]
|
|
125
|
+
* @property {number} [header_index]
|
|
126
|
+
* @property {number} [junk_data_threshold_count]
|
|
127
|
+
* @property {boolean} [line_validity_check]
|
|
128
|
+
* @property {PropBeanConfig[]} [prop_bean_configs]
|
|
129
|
+
* @property {Object} [properties]
|
|
130
|
+
* @property {string} [quote_char]
|
|
131
|
+
* @property {boolean} [read_all_sheets]
|
|
132
|
+
* @property {string[]} [sheet_names]
|
|
133
|
+
*/
|
|
134
|
+
/**
|
|
135
|
+
* @typedef FTPConfig
|
|
136
|
+
* @property {ArchiveConfig} [archive_config]
|
|
137
|
+
* @property {string} [file_regex]
|
|
138
|
+
* @property {string} [host]
|
|
139
|
+
* @property {number} [interval]
|
|
140
|
+
* @property {string} [local_dir]
|
|
141
|
+
* @property {string} [password]
|
|
142
|
+
* @property {number} [port]
|
|
143
|
+
* @property {boolean} [read_all_files]
|
|
144
|
+
* @property {string} [remote_dir]
|
|
145
|
+
* @property {number} [retries]
|
|
146
|
+
* @property {boolean} [unzip]
|
|
147
|
+
* @property {string} [username]
|
|
148
|
+
* @property {string} [zip_file_regex]
|
|
149
|
+
* @property {string} [zip_format]
|
|
150
|
+
*/
|
|
151
|
+
/**
|
|
152
|
+
* @typedef GCompany
|
|
153
|
+
* @property {string} [_id]
|
|
154
|
+
* @property {string} [integration]
|
|
155
|
+
* @property {string} [level]
|
|
156
|
+
* @property {string} [name]
|
|
157
|
+
* @property {boolean} [opted]
|
|
158
|
+
* @property {string[]} [permissions]
|
|
159
|
+
* @property {GStore[]} [stores]
|
|
160
|
+
* @property {string} [token]
|
|
161
|
+
* @property {number} [uid]
|
|
162
|
+
*/
|
|
163
|
+
/**
|
|
164
|
+
* @typedef GenericDTO
|
|
165
|
+
* @property {string} [text]
|
|
166
|
+
* @property {Object} [value]
|
|
167
|
+
*/
|
|
168
|
+
/**
|
|
169
|
+
* @typedef GoogleSpreadSheetConfig
|
|
170
|
+
* @property {ArchiveConfig} [archive_config]
|
|
171
|
+
* @property {string} [client_secret_location]
|
|
172
|
+
* @property {string} [cred_storage_directory]
|
|
173
|
+
* @property {string} [local_dir]
|
|
174
|
+
* @property {string} [range]
|
|
175
|
+
* @property {string} [sheet_id]
|
|
176
|
+
*/
|
|
177
|
+
/**
|
|
178
|
+
* @typedef GStore
|
|
179
|
+
* @property {string} [_id]
|
|
180
|
+
* @property {string} [code]
|
|
181
|
+
* @property {StoreData} [data]
|
|
182
|
+
* @property {string} [integration]
|
|
183
|
+
* @property {string} [level]
|
|
184
|
+
* @property {string} [name]
|
|
185
|
+
* @property {boolean} [opted]
|
|
186
|
+
* @property {string[]} [permissions]
|
|
187
|
+
* @property {string} [token]
|
|
188
|
+
* @property {number} [uid]
|
|
189
|
+
*/
|
|
190
|
+
/**
|
|
191
|
+
* @typedef HttpConfig
|
|
192
|
+
* @property {ArchiveConfig} [archive_config]
|
|
193
|
+
* @property {string} [hosturl]
|
|
194
|
+
* @property {string} [http_method]
|
|
195
|
+
* @property {string} [local_path]
|
|
196
|
+
* @property {string} [password]
|
|
197
|
+
* @property {Object} [request_params]
|
|
198
|
+
* @property {string} [request_payload]
|
|
199
|
+
* @property {string} [username]
|
|
200
|
+
*/
|
|
201
|
+
/**
|
|
202
|
+
* @typedef JobConfig
|
|
203
|
+
* @property {number} [_id]
|
|
204
|
+
* @property {string[]} [aggregator_types]
|
|
205
|
+
* @property {string} [alias]
|
|
206
|
+
* @property {Audit} [audit]
|
|
207
|
+
* @property {CatalogMasterConfig} [catalog_master_config]
|
|
208
|
+
* @property {CompanyConfig[]} [company_config]
|
|
209
|
+
* @property {number[]} [company_ids]
|
|
210
|
+
* @property {string} [cron_expression]
|
|
211
|
+
* @property {DBConnectionProfile} [db_connection_profile]
|
|
212
|
+
* @property {number} [delete_quantity_threshold]
|
|
213
|
+
* @property {string[]} [dependent_job_codes]
|
|
214
|
+
* @property {boolean} [disable]
|
|
215
|
+
* @property {boolean} [immediate_first_run]
|
|
216
|
+
* @property {string} [integration_type]
|
|
217
|
+
* @property {string} [job_code]
|
|
218
|
+
* @property {number} [min_price]
|
|
219
|
+
* @property {Object} [open_tags]
|
|
220
|
+
* @property {Object} [params]
|
|
221
|
+
* @property {number} [period_threshold]
|
|
222
|
+
* @property {string} [period_threshold_type]
|
|
223
|
+
* @property {string} [priority]
|
|
224
|
+
* @property {ProcessConfig} [process_config]
|
|
225
|
+
* @property {Object} [properties]
|
|
226
|
+
* @property {StoreConfig[]} [store_config]
|
|
227
|
+
* @property {StoreFilter} [store_filter]
|
|
228
|
+
* @property {number} [sync_delay]
|
|
229
|
+
* @property {string} [task_type]
|
|
230
|
+
* @property {string[]} [tax_identifiers]
|
|
231
|
+
* @property {number} [version]
|
|
232
|
+
*/
|
|
233
|
+
/**
|
|
234
|
+
* @typedef JobConfigDTO
|
|
235
|
+
* @property {string} [alias]
|
|
236
|
+
* @property {number} company_id
|
|
237
|
+
* @property {string} [company_name]
|
|
238
|
+
* @property {string} integration
|
|
239
|
+
* @property {Object} [integration_data]
|
|
240
|
+
* @property {string} [job_code]
|
|
241
|
+
* @property {TaskDTO} [task_details]
|
|
242
|
+
* @property {DataTresholdDTO} [threshold_details]
|
|
243
|
+
*/
|
|
244
|
+
/**
|
|
245
|
+
* @typedef JobConfigListDTO
|
|
246
|
+
* @property {boolean} [active]
|
|
247
|
+
* @property {string} [alias]
|
|
248
|
+
* @property {string} [code]
|
|
249
|
+
* @property {string} [created_by]
|
|
250
|
+
* @property {string} [created_on]
|
|
251
|
+
* @property {string} [modified_by]
|
|
252
|
+
* @property {string} [modified_on]
|
|
253
|
+
* @property {string} [type]
|
|
254
|
+
*/
|
|
255
|
+
/**
|
|
256
|
+
* @typedef JobConfigRawDTO
|
|
257
|
+
* @property {number} company_id
|
|
258
|
+
* @property {string} company_name
|
|
259
|
+
* @property {JobConfig} [data]
|
|
260
|
+
* @property {string} integration
|
|
261
|
+
*/
|
|
262
|
+
/**
|
|
263
|
+
* @typedef JobHistoryDto
|
|
264
|
+
* @property {string} [error_type]
|
|
265
|
+
* @property {string[]} [filename]
|
|
266
|
+
* @property {string} [job_code]
|
|
267
|
+
* @property {number} [job_id]
|
|
268
|
+
* @property {string} [message]
|
|
269
|
+
* @property {string} [processed_on]
|
|
270
|
+
* @property {string} [status]
|
|
271
|
+
* @property {number} [total_added_count]
|
|
272
|
+
* @property {number} [total_initial_count]
|
|
273
|
+
* @property {number} [total_suppressed_count]
|
|
274
|
+
* @property {number} [total_updated_count]
|
|
275
|
+
*/
|
|
276
|
+
/**
|
|
277
|
+
* @typedef JobMetricsDto
|
|
278
|
+
* @property {string} [is_run_more_than_usual]
|
|
279
|
+
* @property {string} [job_code]
|
|
280
|
+
* @property {JobHistoryDto[]} [job_history]
|
|
281
|
+
* @property {number} [total_failure_count]
|
|
282
|
+
* @property {number} [total_job_runs]
|
|
283
|
+
* @property {number} [total_success_count]
|
|
284
|
+
* @property {number} [total_suppressed_count]
|
|
285
|
+
* @property {number} [total_warning_count]
|
|
286
|
+
*/
|
|
287
|
+
/**
|
|
288
|
+
* @typedef JobStepsDTO
|
|
289
|
+
* @property {number} [deleted_count]
|
|
290
|
+
* @property {number} [end_count]
|
|
291
|
+
* @property {string} [processed_at]
|
|
292
|
+
* @property {string} [processed_start_time]
|
|
293
|
+
* @property {number} [start_count]
|
|
294
|
+
* @property {number} [step_execution_time]
|
|
295
|
+
* @property {string} [step_name]
|
|
296
|
+
* @property {string} [type]
|
|
297
|
+
*/
|
|
298
|
+
/**
|
|
299
|
+
* @typedef JsonDocConfig
|
|
300
|
+
* @property {PropBeanConfig[]} [prop_bean_configs]
|
|
301
|
+
*/
|
|
302
|
+
/**
|
|
303
|
+
* @typedef KafkaMetaModel
|
|
304
|
+
* @property {string} [action]
|
|
305
|
+
* @property {number} [batch_id]
|
|
306
|
+
* @property {string} [created_on]
|
|
307
|
+
* @property {number} [created_timestamp]
|
|
308
|
+
* @property {string} [job_type]
|
|
309
|
+
* @property {string[]} [trace]
|
|
310
|
+
*/
|
|
311
|
+
/**
|
|
312
|
+
* @typedef KafkaResponse
|
|
313
|
+
* @property {number} [offset]
|
|
314
|
+
* @property {number} [partition]
|
|
315
|
+
*/
|
|
316
|
+
/**
|
|
317
|
+
* @typedef LocalFileConfig
|
|
318
|
+
* @property {ArchiveConfig} [archive_config]
|
|
319
|
+
* @property {string} [file_regex]
|
|
320
|
+
* @property {number} [interval]
|
|
321
|
+
* @property {string} [local_dir]
|
|
322
|
+
* @property {boolean} [read_all_files]
|
|
323
|
+
* @property {number} [retries]
|
|
324
|
+
* @property {boolean} [unzip]
|
|
325
|
+
* @property {string} [working_dir]
|
|
326
|
+
* @property {string} [zip_file_regex]
|
|
327
|
+
* @property {string} [zip_format]
|
|
328
|
+
*/
|
|
329
|
+
/**
|
|
330
|
+
* @typedef Metum
|
|
331
|
+
* @property {string} [_id]
|
|
332
|
+
* @property {string} [name]
|
|
333
|
+
* @property {string} [value]
|
|
334
|
+
*/
|
|
335
|
+
/**
|
|
336
|
+
* @typedef MongoDocConfig
|
|
337
|
+
* @property {Object[]} [aggregate_pipeline]
|
|
338
|
+
* @property {string} [collection_name]
|
|
339
|
+
* @property {Object} [find_query]
|
|
340
|
+
* @property {Object} [projection_query]
|
|
341
|
+
* @property {PropBeanConfig[]} [prop_bean_configs]
|
|
342
|
+
* @property {boolean} [skip_save]
|
|
343
|
+
*/
|
|
344
|
+
/**
|
|
345
|
+
* @typedef OAuthConfig
|
|
346
|
+
* @property {string} [consumer_key]
|
|
347
|
+
* @property {string} [consumer_secret]
|
|
348
|
+
* @property {string} [function_name]
|
|
349
|
+
* @property {number} [interval]
|
|
350
|
+
* @property {number} [limit]
|
|
351
|
+
* @property {number} [pages]
|
|
352
|
+
* @property {string} [rest_base_url]
|
|
353
|
+
* @property {string} [rest_url]
|
|
354
|
+
* @property {string} [token]
|
|
355
|
+
* @property {string} [token_secret]
|
|
356
|
+
*/
|
|
357
|
+
/**
|
|
358
|
+
* @typedef Page
|
|
359
|
+
* @property {number} [current]
|
|
360
|
+
* @property {boolean} [has_next]
|
|
361
|
+
* @property {boolean} [has_previous]
|
|
362
|
+
* @property {number} [item_total]
|
|
363
|
+
* @property {string} [next_id]
|
|
364
|
+
* @property {number} [size]
|
|
365
|
+
* @property {string} type
|
|
366
|
+
*/
|
|
367
|
+
/**
|
|
368
|
+
* @typedef ProcessConfig
|
|
369
|
+
* @property {AWSS3config} [aws_s3_config]
|
|
370
|
+
* @property {DBConfig} [db_config]
|
|
371
|
+
* @property {DBParamConfig} [db_param_config]
|
|
372
|
+
* @property {DocMappingConfig} [doc_mapping_config]
|
|
373
|
+
* @property {EmailConfig} [email_config]
|
|
374
|
+
* @property {FileConfig} [file_config]
|
|
375
|
+
* @property {FTPConfig} [ftp_config]
|
|
376
|
+
* @property {GoogleSpreadSheetConfig} [google_spreadsheet_config]
|
|
377
|
+
* @property {HttpConfig} [http_config]
|
|
378
|
+
* @property {JsonDocConfig} [json_doc_config]
|
|
379
|
+
* @property {LocalFileConfig} [local_file_config]
|
|
380
|
+
* @property {MongoDocConfig} [mongo_doc_config]
|
|
381
|
+
* @property {OAuthConfig} [oauth_config]
|
|
382
|
+
* @property {SFTPConfig} [sftp_config]
|
|
383
|
+
* @property {TaskStepConfig} [task_step_config]
|
|
384
|
+
*/
|
|
385
|
+
/**
|
|
386
|
+
* @typedef PropBeanConfig
|
|
387
|
+
* @property {string} [all_param_function_name]
|
|
388
|
+
* @property {string} [concat_str]
|
|
389
|
+
* @property {Object} [const_value]
|
|
390
|
+
* @property {string} [data_type]
|
|
391
|
+
* @property {Object} [default_value]
|
|
392
|
+
* @property {string} [destination_field]
|
|
393
|
+
* @property {boolean} [enrich_from_master]
|
|
394
|
+
* @property {string} [function_name]
|
|
395
|
+
* @property {string} [identifier_type]
|
|
396
|
+
* @property {boolean} [ignore_if_not_exists]
|
|
397
|
+
* @property {boolean} [include]
|
|
398
|
+
* @property {string} [index_field]
|
|
399
|
+
* @property {boolean} [optional]
|
|
400
|
+
* @property {Object} [projection_query]
|
|
401
|
+
* @property {boolean} [required]
|
|
402
|
+
* @property {Send} [send]
|
|
403
|
+
* @property {string} [source_field]
|
|
404
|
+
* @property {string[]} [source_fields]
|
|
405
|
+
* @property {string} [sub_separator]
|
|
406
|
+
* @property {string} [transformer_name]
|
|
407
|
+
* @property {Object[]} [validations]
|
|
408
|
+
* @property {string[]} [values]
|
|
409
|
+
*/
|
|
410
|
+
/**
|
|
411
|
+
* @typedef PropBeanDTO
|
|
412
|
+
* @property {string} [all_param_function_name]
|
|
413
|
+
* @property {string} [concat_str]
|
|
414
|
+
* @property {Object} [const_value]
|
|
415
|
+
* @property {string} [data_type]
|
|
416
|
+
* @property {Object} [default_value]
|
|
417
|
+
* @property {string} [destination_field]
|
|
418
|
+
* @property {boolean} [enrich_from_master]
|
|
419
|
+
* @property {string} [function_name]
|
|
420
|
+
* @property {string} [identifier_type]
|
|
421
|
+
* @property {boolean} [ignore_if_not_exists]
|
|
422
|
+
* @property {boolean} [include]
|
|
423
|
+
* @property {string} [index_field]
|
|
424
|
+
* @property {boolean} [optional]
|
|
425
|
+
* @property {Object} [projection_query]
|
|
426
|
+
* @property {boolean} [required]
|
|
427
|
+
* @property {string} [source_field]
|
|
428
|
+
* @property {string[]} [source_fields]
|
|
429
|
+
* @property {string} [sub_separator]
|
|
430
|
+
* @property {string} [transformer_name]
|
|
431
|
+
*/
|
|
432
|
+
/**
|
|
433
|
+
* @typedef ResponseEnvelopeJobConfigDTO
|
|
434
|
+
* @property {string} [error]
|
|
435
|
+
* @property {string} [exception]
|
|
436
|
+
* @property {string} [http_status]
|
|
437
|
+
* @property {JobConfigDTO} [items]
|
|
438
|
+
* @property {string} [message]
|
|
439
|
+
* @property {Page} [page]
|
|
440
|
+
* @property {JobConfigDTO} [payload]
|
|
441
|
+
* @property {number} [status]
|
|
442
|
+
* @property {string} [timestamp]
|
|
443
|
+
* @property {number} [total_time_taken_in_millis]
|
|
444
|
+
* @property {string} [trace_id]
|
|
445
|
+
*/
|
|
446
|
+
/**
|
|
447
|
+
* @typedef ResponseEnvelopeJobMetricsDto
|
|
448
|
+
* @property {string} [error]
|
|
449
|
+
* @property {string} [exception]
|
|
450
|
+
* @property {string} [http_status]
|
|
451
|
+
* @property {JobMetricsDto} [items]
|
|
452
|
+
* @property {string} [message]
|
|
453
|
+
* @property {Page} [page]
|
|
454
|
+
* @property {JobMetricsDto} [payload]
|
|
455
|
+
* @property {number} [status]
|
|
456
|
+
* @property {string} [timestamp]
|
|
457
|
+
* @property {number} [total_time_taken_in_millis]
|
|
458
|
+
* @property {string} [trace_id]
|
|
459
|
+
*/
|
|
460
|
+
/**
|
|
461
|
+
* @typedef ResponseEnvelopeKafkaResponse
|
|
462
|
+
* @property {string} [error]
|
|
463
|
+
* @property {string} [exception]
|
|
464
|
+
* @property {string} [http_status]
|
|
465
|
+
* @property {KafkaResponse} [items]
|
|
466
|
+
* @property {string} [message]
|
|
467
|
+
* @property {Page} [page]
|
|
468
|
+
* @property {KafkaResponse} [payload]
|
|
469
|
+
* @property {number} [status]
|
|
470
|
+
* @property {string} [timestamp]
|
|
471
|
+
* @property {number} [total_time_taken_in_millis]
|
|
472
|
+
* @property {string} [trace_id]
|
|
473
|
+
*/
|
|
474
|
+
/**
|
|
475
|
+
* @typedef ResponseEnvelopeListJobConfigDTO
|
|
476
|
+
* @property {string} [error]
|
|
477
|
+
* @property {string} [exception]
|
|
478
|
+
* @property {string} [http_status]
|
|
479
|
+
* @property {JobConfigDTO[]} [items]
|
|
480
|
+
* @property {string} [message]
|
|
481
|
+
* @property {Page} [page]
|
|
482
|
+
* @property {JobConfigDTO[]} [payload]
|
|
483
|
+
* @property {number} [status]
|
|
484
|
+
* @property {string} [timestamp]
|
|
485
|
+
* @property {number} [total_time_taken_in_millis]
|
|
486
|
+
* @property {string} [trace_id]
|
|
487
|
+
*/
|
|
488
|
+
/**
|
|
489
|
+
* @typedef ResponseEnvelopeListJobConfigListDTO
|
|
490
|
+
* @property {string} [error]
|
|
491
|
+
* @property {string} [exception]
|
|
492
|
+
* @property {string} [http_status]
|
|
493
|
+
* @property {JobConfigListDTO[]} [items]
|
|
494
|
+
* @property {string} [message]
|
|
495
|
+
* @property {Page} [page]
|
|
496
|
+
* @property {JobConfigListDTO[]} [payload]
|
|
497
|
+
* @property {number} [status]
|
|
498
|
+
* @property {string} [timestamp]
|
|
499
|
+
* @property {number} [total_time_taken_in_millis]
|
|
500
|
+
* @property {string} [trace_id]
|
|
501
|
+
*/
|
|
502
|
+
/**
|
|
503
|
+
* @typedef ResponseEnvelopeListJobConfigRawDTO
|
|
504
|
+
* @property {string} [error]
|
|
505
|
+
* @property {string} [exception]
|
|
506
|
+
* @property {string} [http_status]
|
|
507
|
+
* @property {JobConfigRawDTO[]} [items]
|
|
508
|
+
* @property {string} [message]
|
|
509
|
+
* @property {Page} [page]
|
|
510
|
+
* @property {JobConfigRawDTO[]} [payload]
|
|
511
|
+
* @property {number} [status]
|
|
512
|
+
* @property {string} [timestamp]
|
|
513
|
+
* @property {number} [total_time_taken_in_millis]
|
|
514
|
+
* @property {string} [trace_id]
|
|
515
|
+
*/
|
|
516
|
+
/**
|
|
517
|
+
* @typedef ResponseEnvelopeListJobStepsDTO
|
|
518
|
+
* @property {string} [error]
|
|
519
|
+
* @property {string} [exception]
|
|
520
|
+
* @property {string} [http_status]
|
|
521
|
+
* @property {JobStepsDTO[]} [items]
|
|
522
|
+
* @property {string} [message]
|
|
523
|
+
* @property {Page} [page]
|
|
524
|
+
* @property {JobStepsDTO[]} [payload]
|
|
525
|
+
* @property {number} [status]
|
|
526
|
+
* @property {string} [timestamp]
|
|
527
|
+
* @property {number} [total_time_taken_in_millis]
|
|
528
|
+
* @property {string} [trace_id]
|
|
529
|
+
*/
|
|
530
|
+
/**
|
|
531
|
+
* @typedef ResponseEnvelopeListSlingshotConfigurationDetail
|
|
532
|
+
* @property {string} [error]
|
|
533
|
+
* @property {string} [exception]
|
|
534
|
+
* @property {string} [http_status]
|
|
535
|
+
* @property {SlingshotConfigurationDetail[]} [items]
|
|
536
|
+
* @property {string} [message]
|
|
537
|
+
* @property {Page} [page]
|
|
538
|
+
* @property {SlingshotConfigurationDetail[]} [payload]
|
|
539
|
+
* @property {number} [status]
|
|
540
|
+
* @property {string} [timestamp]
|
|
541
|
+
* @property {number} [total_time_taken_in_millis]
|
|
542
|
+
* @property {string} [trace_id]
|
|
543
|
+
*/
|
|
544
|
+
/**
|
|
545
|
+
* @typedef ResponseEnvelopeString
|
|
546
|
+
* @property {string} [error]
|
|
547
|
+
* @property {string} [exception]
|
|
548
|
+
* @property {string} [http_status]
|
|
549
|
+
* @property {string} [items]
|
|
550
|
+
* @property {string} [message]
|
|
551
|
+
* @property {Page} [page]
|
|
552
|
+
* @property {string} [payload]
|
|
553
|
+
* @property {number} [status]
|
|
554
|
+
* @property {string} [timestamp]
|
|
555
|
+
* @property {number} [total_time_taken_in_millis]
|
|
556
|
+
* @property {string} [trace_id]
|
|
557
|
+
*/
|
|
558
|
+
/**
|
|
559
|
+
* @typedef Send
|
|
560
|
+
* @property {boolean} [processed]
|
|
561
|
+
* @property {boolean} [raw]
|
|
562
|
+
*/
|
|
563
|
+
/**
|
|
564
|
+
* @typedef SFTPConfig
|
|
565
|
+
* @property {ArchiveConfig} [archive_config]
|
|
566
|
+
* @property {string} [file_regex]
|
|
567
|
+
* @property {string} [host]
|
|
568
|
+
* @property {number} [interval]
|
|
569
|
+
* @property {string} [local_dir]
|
|
570
|
+
* @property {string} [password]
|
|
571
|
+
* @property {boolean} [password_protected]
|
|
572
|
+
* @property {number} [port]
|
|
573
|
+
* @property {string} [private_key_path]
|
|
574
|
+
* @property {boolean} [read_all_files]
|
|
575
|
+
* @property {string} [remote_dir]
|
|
576
|
+
* @property {number} [retries]
|
|
577
|
+
* @property {boolean} [strict_host_key_checking]
|
|
578
|
+
* @property {boolean} [unzip]
|
|
579
|
+
* @property {string} [username]
|
|
580
|
+
* @property {string} [zip_file_regex]
|
|
581
|
+
* @property {string} [zip_format]
|
|
582
|
+
*/
|
|
583
|
+
/**
|
|
584
|
+
* @typedef SlingshotConfigurationDetail
|
|
585
|
+
* @property {GCompany[]} [companies]
|
|
586
|
+
* @property {SlingshotIntegration} [integration]
|
|
587
|
+
*/
|
|
588
|
+
/**
|
|
589
|
+
* @typedef SlingshotIntegration
|
|
590
|
+
* @property {string} [_id]
|
|
591
|
+
* @property {string} [description]
|
|
592
|
+
* @property {Metum[]} [meta]
|
|
593
|
+
* @property {string} [name]
|
|
594
|
+
* @property {string} [slug]
|
|
595
|
+
*/
|
|
596
|
+
/**
|
|
597
|
+
* @typedef StoreConfig
|
|
598
|
+
* @property {string} [job_code]
|
|
599
|
+
* @property {ProcessConfig} [process_config]
|
|
600
|
+
* @property {Object} [properties]
|
|
601
|
+
* @property {string} [store_alias]
|
|
602
|
+
* @property {string} [store_file_name]
|
|
603
|
+
* @property {string} [store_file_regex]
|
|
604
|
+
* @property {string} [storeid]
|
|
605
|
+
*/
|
|
606
|
+
/**
|
|
607
|
+
* @typedef StoreData
|
|
608
|
+
* @property {string} [location_id]
|
|
609
|
+
*/
|
|
610
|
+
/**
|
|
611
|
+
* @typedef StoreFilter
|
|
612
|
+
* @property {string[]} [exclude_tags]
|
|
613
|
+
* @property {string[]} [include_tags]
|
|
614
|
+
* @property {Object} [query]
|
|
615
|
+
*/
|
|
616
|
+
/**
|
|
617
|
+
* @typedef SuppressStoreModel
|
|
618
|
+
* @property {number[]} [stores]
|
|
619
|
+
*/
|
|
620
|
+
/**
|
|
621
|
+
* @typedef SuppressStorePayload
|
|
622
|
+
* @property {KafkaMetaModel} [meta]
|
|
623
|
+
* @property {SuppressStoreModel[]} [payload]
|
|
624
|
+
*/
|
|
625
|
+
/**
|
|
626
|
+
* @typedef TaskConfig
|
|
627
|
+
* @property {string} [name]
|
|
628
|
+
* @property {number} [task_config_id]
|
|
629
|
+
* @property {TaskParam[]} [task_params]
|
|
630
|
+
*/
|
|
631
|
+
/**
|
|
632
|
+
* @typedef TaskDTO
|
|
633
|
+
* @property {GenericDTO[]} [group_list]
|
|
634
|
+
* @property {number} [type]
|
|
635
|
+
*/
|
|
636
|
+
/**
|
|
637
|
+
* @typedef TaskParam
|
|
638
|
+
* @property {string} [name]
|
|
639
|
+
* @property {Object} [value]
|
|
640
|
+
*/
|
|
641
|
+
/**
|
|
642
|
+
* @typedef TaskStepConfig
|
|
643
|
+
* @property {number[]} [task_config_group_ids]
|
|
644
|
+
* @property {number[]} [task_config_ids]
|
|
645
|
+
* @property {TaskConfig[]} [task_configs]
|
|
646
|
+
*/
|
|
647
|
+
declare class InventoryPlatformModel {
|
|
62
648
|
}
|
|
649
|
+
declare namespace InventoryPlatformModel {
|
|
650
|
+
export { ArchiveConfig, Audit, AWSS3config, CatalogMasterConfig, CompanyConfig, DataTresholdDTO, DBConfig, DBConnectionProfile, DBParamConfig, DefaultHeadersDTO, DocMappingConfig, EmailConfig, FileConfig, FTPConfig, GCompany, GenericDTO, GoogleSpreadSheetConfig, GStore, HttpConfig, JobConfig, JobConfigDTO, JobConfigListDTO, JobConfigRawDTO, JobHistoryDto, JobMetricsDto, JobStepsDTO, JsonDocConfig, KafkaMetaModel, KafkaResponse, LocalFileConfig, Metum, MongoDocConfig, OAuthConfig, Page, ProcessConfig, PropBeanConfig, PropBeanDTO, ResponseEnvelopeJobConfigDTO, ResponseEnvelopeJobMetricsDto, ResponseEnvelopeKafkaResponse, ResponseEnvelopeListJobConfigDTO, ResponseEnvelopeListJobConfigListDTO, ResponseEnvelopeListJobConfigRawDTO, ResponseEnvelopeListJobStepsDTO, ResponseEnvelopeListSlingshotConfigurationDetail, ResponseEnvelopeString, Send, SFTPConfig, SlingshotConfigurationDetail, SlingshotIntegration, StoreConfig, StoreData, StoreFilter, SuppressStoreModel, SuppressStorePayload, TaskConfig, TaskDTO, TaskParam, TaskStepConfig };
|
|
651
|
+
}
|
|
652
|
+
/** @returns {ArchiveConfig} */
|
|
653
|
+
declare function ArchiveConfig(): ArchiveConfig;
|
|
654
|
+
type ArchiveConfig = {
|
|
655
|
+
archive?: boolean;
|
|
656
|
+
archive_dir?: string;
|
|
657
|
+
delete?: boolean;
|
|
658
|
+
};
|
|
659
|
+
/** @returns {Audit} */
|
|
660
|
+
declare function Audit(): Audit;
|
|
661
|
+
type Audit = {
|
|
662
|
+
created_by?: string;
|
|
663
|
+
created_on?: string;
|
|
664
|
+
modified_by?: string;
|
|
665
|
+
modified_on?: string;
|
|
666
|
+
};
|
|
667
|
+
/** @returns {AWSS3config} */
|
|
668
|
+
declare function AWSS3config(): AWSS3config;
|
|
669
|
+
type AWSS3config = {
|
|
670
|
+
access_key?: string;
|
|
671
|
+
archive?: boolean;
|
|
672
|
+
archive_config?: ArchiveConfig;
|
|
673
|
+
archive_path?: string;
|
|
674
|
+
bucket?: string;
|
|
675
|
+
delete?: boolean;
|
|
676
|
+
dir?: string;
|
|
677
|
+
file_regex?: string;
|
|
678
|
+
local_file_path?: string;
|
|
679
|
+
region?: string;
|
|
680
|
+
secret_key?: string;
|
|
681
|
+
unzip?: boolean;
|
|
682
|
+
zip_format?: string;
|
|
683
|
+
};
|
|
684
|
+
/** @returns {CatalogMasterConfig} */
|
|
685
|
+
declare function CatalogMasterConfig(): CatalogMasterConfig;
|
|
686
|
+
type CatalogMasterConfig = {
|
|
687
|
+
source_slug?: string;
|
|
688
|
+
};
|
|
689
|
+
/** @returns {CompanyConfig} */
|
|
690
|
+
declare function CompanyConfig(): CompanyConfig;
|
|
691
|
+
type CompanyConfig = {
|
|
692
|
+
company_id?: number;
|
|
693
|
+
delete_quantity_threshold?: number;
|
|
694
|
+
exclude_steps?: number[];
|
|
695
|
+
hidden_closet_keys?: string[];
|
|
696
|
+
open_tags?: any;
|
|
697
|
+
tax_identifiers?: string[];
|
|
698
|
+
};
|
|
699
|
+
/** @returns {DataTresholdDTO} */
|
|
700
|
+
declare function DataTresholdDTO(): DataTresholdDTO;
|
|
701
|
+
type DataTresholdDTO = {
|
|
702
|
+
min_price?: number;
|
|
703
|
+
period_threshold?: number;
|
|
704
|
+
period_threshold_type?: string;
|
|
705
|
+
period_type_list?: GenericDTO[];
|
|
706
|
+
safe_stock?: number;
|
|
707
|
+
};
|
|
708
|
+
/** @returns {DBConfig} */
|
|
709
|
+
declare function DBConfig(): DBConfig;
|
|
710
|
+
type DBConfig = {
|
|
711
|
+
dbname?: string;
|
|
712
|
+
driver_class?: string;
|
|
713
|
+
host?: string;
|
|
714
|
+
jdbc_url?: string;
|
|
715
|
+
optional_properties?: any;
|
|
716
|
+
password?: string;
|
|
717
|
+
port?: number;
|
|
718
|
+
procedure?: boolean;
|
|
719
|
+
query?: string;
|
|
720
|
+
username?: string;
|
|
721
|
+
vendor?: string;
|
|
722
|
+
};
|
|
723
|
+
/** @returns {DBConnectionProfile} */
|
|
724
|
+
declare function DBConnectionProfile(): DBConnectionProfile;
|
|
725
|
+
type DBConnectionProfile = {
|
|
726
|
+
inventory?: string;
|
|
727
|
+
};
|
|
728
|
+
/** @returns {DBParamConfig} */
|
|
729
|
+
declare function DBParamConfig(): DBParamConfig;
|
|
730
|
+
type DBParamConfig = {
|
|
731
|
+
params?: any;
|
|
732
|
+
};
|
|
733
|
+
/** @returns {DefaultHeadersDTO} */
|
|
734
|
+
declare function DefaultHeadersDTO(): DefaultHeadersDTO;
|
|
735
|
+
type DefaultHeadersDTO = {
|
|
736
|
+
intf_article_id?: PropBeanDTO;
|
|
737
|
+
price_effective?: PropBeanDTO;
|
|
738
|
+
quantity?: PropBeanDTO;
|
|
739
|
+
store?: PropBeanDTO;
|
|
740
|
+
};
|
|
741
|
+
/** @returns {DocMappingConfig} */
|
|
742
|
+
declare function DocMappingConfig(): DocMappingConfig;
|
|
743
|
+
type DocMappingConfig = {
|
|
744
|
+
default_headers?: DefaultHeadersDTO;
|
|
745
|
+
junk_data_threshold_count?: number;
|
|
746
|
+
prop_bean_configs?: PropBeanConfig[];
|
|
747
|
+
properties?: any;
|
|
748
|
+
unwind_field?: string;
|
|
749
|
+
};
|
|
750
|
+
/** @returns {EmailConfig} */
|
|
751
|
+
declare function EmailConfig(): EmailConfig;
|
|
752
|
+
type EmailConfig = {
|
|
753
|
+
archive_config?: ArchiveConfig;
|
|
754
|
+
attachment_mandate?: boolean;
|
|
755
|
+
attachment_regex?: string;
|
|
756
|
+
body_content_regex?: string;
|
|
757
|
+
content_type?: string;
|
|
758
|
+
downloadable_link?: boolean;
|
|
759
|
+
filter_based_on_recepients?: boolean;
|
|
760
|
+
filter_files_after_extraction?: boolean;
|
|
761
|
+
folder_name_hierarchies?: string[];
|
|
762
|
+
host?: string;
|
|
763
|
+
local_dir?: string;
|
|
764
|
+
password?: string;
|
|
765
|
+
password_protected?: boolean;
|
|
766
|
+
pcol?: string;
|
|
767
|
+
properties?: any;
|
|
768
|
+
read_all_unread_mails?: boolean;
|
|
769
|
+
read_from_content?: boolean;
|
|
770
|
+
recepient?: string;
|
|
771
|
+
sender_address?: string;
|
|
772
|
+
subject_line_regex?: string;
|
|
773
|
+
unzip?: boolean;
|
|
774
|
+
username?: string;
|
|
775
|
+
zip_format?: string;
|
|
776
|
+
};
|
|
777
|
+
/** @returns {FileConfig} */
|
|
778
|
+
declare function FileConfig(): FileConfig;
|
|
779
|
+
type FileConfig = {
|
|
780
|
+
charset?: string;
|
|
781
|
+
data_start_index?: number;
|
|
782
|
+
default_headers?: DefaultHeadersDTO;
|
|
783
|
+
delimiter?: string;
|
|
784
|
+
escape_char?: string;
|
|
785
|
+
file_has_header?: boolean;
|
|
786
|
+
file_type?: string;
|
|
787
|
+
header_array?: string[];
|
|
788
|
+
header_index?: number;
|
|
789
|
+
junk_data_threshold_count?: number;
|
|
790
|
+
line_validity_check?: boolean;
|
|
791
|
+
prop_bean_configs?: PropBeanConfig[];
|
|
792
|
+
properties?: any;
|
|
793
|
+
quote_char?: string;
|
|
794
|
+
read_all_sheets?: boolean;
|
|
795
|
+
sheet_names?: string[];
|
|
796
|
+
};
|
|
797
|
+
/** @returns {FTPConfig} */
|
|
798
|
+
declare function FTPConfig(): FTPConfig;
|
|
799
|
+
type FTPConfig = {
|
|
800
|
+
archive_config?: ArchiveConfig;
|
|
801
|
+
file_regex?: string;
|
|
802
|
+
host?: string;
|
|
803
|
+
interval?: number;
|
|
804
|
+
local_dir?: string;
|
|
805
|
+
password?: string;
|
|
806
|
+
port?: number;
|
|
807
|
+
read_all_files?: boolean;
|
|
808
|
+
remote_dir?: string;
|
|
809
|
+
retries?: number;
|
|
810
|
+
unzip?: boolean;
|
|
811
|
+
username?: string;
|
|
812
|
+
zip_file_regex?: string;
|
|
813
|
+
zip_format?: string;
|
|
814
|
+
};
|
|
815
|
+
/** @returns {GCompany} */
|
|
816
|
+
declare function GCompany(): GCompany;
|
|
817
|
+
type GCompany = {
|
|
818
|
+
_id?: string;
|
|
819
|
+
integration?: string;
|
|
820
|
+
level?: string;
|
|
821
|
+
name?: string;
|
|
822
|
+
opted?: boolean;
|
|
823
|
+
permissions?: string[];
|
|
824
|
+
stores?: GStore[];
|
|
825
|
+
token?: string;
|
|
826
|
+
uid?: number;
|
|
827
|
+
};
|
|
828
|
+
/** @returns {GenericDTO} */
|
|
829
|
+
declare function GenericDTO(): GenericDTO;
|
|
830
|
+
type GenericDTO = {
|
|
831
|
+
text?: string;
|
|
832
|
+
value?: any;
|
|
833
|
+
};
|
|
834
|
+
/** @returns {GoogleSpreadSheetConfig} */
|
|
835
|
+
declare function GoogleSpreadSheetConfig(): GoogleSpreadSheetConfig;
|
|
836
|
+
type GoogleSpreadSheetConfig = {
|
|
837
|
+
archive_config?: ArchiveConfig;
|
|
838
|
+
client_secret_location?: string;
|
|
839
|
+
cred_storage_directory?: string;
|
|
840
|
+
local_dir?: string;
|
|
841
|
+
range?: string;
|
|
842
|
+
sheet_id?: string;
|
|
843
|
+
};
|
|
844
|
+
/** @returns {GStore} */
|
|
845
|
+
declare function GStore(): GStore;
|
|
846
|
+
type GStore = {
|
|
847
|
+
_id?: string;
|
|
848
|
+
code?: string;
|
|
849
|
+
data?: StoreData;
|
|
850
|
+
integration?: string;
|
|
851
|
+
level?: string;
|
|
852
|
+
name?: string;
|
|
853
|
+
opted?: boolean;
|
|
854
|
+
permissions?: string[];
|
|
855
|
+
token?: string;
|
|
856
|
+
uid?: number;
|
|
857
|
+
};
|
|
858
|
+
/** @returns {HttpConfig} */
|
|
859
|
+
declare function HttpConfig(): HttpConfig;
|
|
860
|
+
type HttpConfig = {
|
|
861
|
+
archive_config?: ArchiveConfig;
|
|
862
|
+
hosturl?: string;
|
|
863
|
+
http_method?: string;
|
|
864
|
+
local_path?: string;
|
|
865
|
+
password?: string;
|
|
866
|
+
request_params?: any;
|
|
867
|
+
request_payload?: string;
|
|
868
|
+
username?: string;
|
|
869
|
+
};
|
|
870
|
+
/** @returns {JobConfig} */
|
|
871
|
+
declare function JobConfig(): JobConfig;
|
|
872
|
+
type JobConfig = {
|
|
873
|
+
_id?: number;
|
|
874
|
+
aggregator_types?: string[];
|
|
875
|
+
alias?: string;
|
|
876
|
+
audit?: Audit;
|
|
877
|
+
catalog_master_config?: CatalogMasterConfig;
|
|
878
|
+
company_config?: CompanyConfig[];
|
|
879
|
+
company_ids?: number[];
|
|
880
|
+
cron_expression?: string;
|
|
881
|
+
db_connection_profile?: DBConnectionProfile;
|
|
882
|
+
delete_quantity_threshold?: number;
|
|
883
|
+
dependent_job_codes?: string[];
|
|
884
|
+
disable?: boolean;
|
|
885
|
+
immediate_first_run?: boolean;
|
|
886
|
+
integration_type?: string;
|
|
887
|
+
job_code?: string;
|
|
888
|
+
min_price?: number;
|
|
889
|
+
open_tags?: any;
|
|
890
|
+
params?: any;
|
|
891
|
+
period_threshold?: number;
|
|
892
|
+
period_threshold_type?: string;
|
|
893
|
+
priority?: string;
|
|
894
|
+
process_config?: ProcessConfig;
|
|
895
|
+
properties?: any;
|
|
896
|
+
store_config?: StoreConfig[];
|
|
897
|
+
store_filter?: StoreFilter;
|
|
898
|
+
sync_delay?: number;
|
|
899
|
+
task_type?: string;
|
|
900
|
+
tax_identifiers?: string[];
|
|
901
|
+
version?: number;
|
|
902
|
+
};
|
|
903
|
+
/** @returns {JobConfigDTO} */
|
|
904
|
+
declare function JobConfigDTO(): JobConfigDTO;
|
|
905
|
+
type JobConfigDTO = {
|
|
906
|
+
alias?: string;
|
|
907
|
+
company_id: number;
|
|
908
|
+
company_name?: string;
|
|
909
|
+
integration: string;
|
|
910
|
+
integration_data?: any;
|
|
911
|
+
job_code?: string;
|
|
912
|
+
task_details?: TaskDTO;
|
|
913
|
+
threshold_details?: DataTresholdDTO;
|
|
914
|
+
};
|
|
915
|
+
/** @returns {JobConfigListDTO} */
|
|
916
|
+
declare function JobConfigListDTO(): JobConfigListDTO;
|
|
917
|
+
type JobConfigListDTO = {
|
|
918
|
+
active?: boolean;
|
|
919
|
+
alias?: string;
|
|
920
|
+
code?: string;
|
|
921
|
+
created_by?: string;
|
|
922
|
+
created_on?: string;
|
|
923
|
+
modified_by?: string;
|
|
924
|
+
modified_on?: string;
|
|
925
|
+
type?: string;
|
|
926
|
+
};
|
|
927
|
+
/** @returns {JobConfigRawDTO} */
|
|
928
|
+
declare function JobConfigRawDTO(): JobConfigRawDTO;
|
|
929
|
+
type JobConfigRawDTO = {
|
|
930
|
+
company_id: number;
|
|
931
|
+
company_name: string;
|
|
932
|
+
data?: JobConfig;
|
|
933
|
+
integration: string;
|
|
934
|
+
};
|
|
935
|
+
/** @returns {JobHistoryDto} */
|
|
936
|
+
declare function JobHistoryDto(): JobHistoryDto;
|
|
937
|
+
type JobHistoryDto = {
|
|
938
|
+
error_type?: string;
|
|
939
|
+
filename?: string[];
|
|
940
|
+
job_code?: string;
|
|
941
|
+
job_id?: number;
|
|
942
|
+
message?: string;
|
|
943
|
+
processed_on?: string;
|
|
944
|
+
status?: string;
|
|
945
|
+
total_added_count?: number;
|
|
946
|
+
total_initial_count?: number;
|
|
947
|
+
total_suppressed_count?: number;
|
|
948
|
+
total_updated_count?: number;
|
|
949
|
+
};
|
|
950
|
+
/** @returns {JobMetricsDto} */
|
|
951
|
+
declare function JobMetricsDto(): JobMetricsDto;
|
|
952
|
+
type JobMetricsDto = {
|
|
953
|
+
is_run_more_than_usual?: string;
|
|
954
|
+
job_code?: string;
|
|
955
|
+
job_history?: JobHistoryDto[];
|
|
956
|
+
total_failure_count?: number;
|
|
957
|
+
total_job_runs?: number;
|
|
958
|
+
total_success_count?: number;
|
|
959
|
+
total_suppressed_count?: number;
|
|
960
|
+
total_warning_count?: number;
|
|
961
|
+
};
|
|
962
|
+
/** @returns {JobStepsDTO} */
|
|
963
|
+
declare function JobStepsDTO(): JobStepsDTO;
|
|
964
|
+
type JobStepsDTO = {
|
|
965
|
+
deleted_count?: number;
|
|
966
|
+
end_count?: number;
|
|
967
|
+
processed_at?: string;
|
|
968
|
+
processed_start_time?: string;
|
|
969
|
+
start_count?: number;
|
|
970
|
+
step_execution_time?: number;
|
|
971
|
+
step_name?: string;
|
|
972
|
+
type?: string;
|
|
973
|
+
};
|
|
974
|
+
/** @returns {JsonDocConfig} */
|
|
975
|
+
declare function JsonDocConfig(): JsonDocConfig;
|
|
976
|
+
type JsonDocConfig = {
|
|
977
|
+
prop_bean_configs?: PropBeanConfig[];
|
|
978
|
+
};
|
|
979
|
+
/** @returns {KafkaMetaModel} */
|
|
980
|
+
declare function KafkaMetaModel(): KafkaMetaModel;
|
|
981
|
+
type KafkaMetaModel = {
|
|
982
|
+
action?: string;
|
|
983
|
+
batch_id?: number;
|
|
984
|
+
created_on?: string;
|
|
985
|
+
created_timestamp?: number;
|
|
986
|
+
job_type?: string;
|
|
987
|
+
trace?: string[];
|
|
988
|
+
};
|
|
989
|
+
/** @returns {KafkaResponse} */
|
|
990
|
+
declare function KafkaResponse(): KafkaResponse;
|
|
991
|
+
type KafkaResponse = {
|
|
992
|
+
offset?: number;
|
|
993
|
+
partition?: number;
|
|
994
|
+
};
|
|
995
|
+
/** @returns {LocalFileConfig} */
|
|
996
|
+
declare function LocalFileConfig(): LocalFileConfig;
|
|
997
|
+
type LocalFileConfig = {
|
|
998
|
+
archive_config?: ArchiveConfig;
|
|
999
|
+
file_regex?: string;
|
|
1000
|
+
interval?: number;
|
|
1001
|
+
local_dir?: string;
|
|
1002
|
+
read_all_files?: boolean;
|
|
1003
|
+
retries?: number;
|
|
1004
|
+
unzip?: boolean;
|
|
1005
|
+
working_dir?: string;
|
|
1006
|
+
zip_file_regex?: string;
|
|
1007
|
+
zip_format?: string;
|
|
1008
|
+
};
|
|
1009
|
+
/** @returns {Metum} */
|
|
1010
|
+
declare function Metum(): Metum;
|
|
1011
|
+
type Metum = {
|
|
1012
|
+
_id?: string;
|
|
1013
|
+
name?: string;
|
|
1014
|
+
value?: string;
|
|
1015
|
+
};
|
|
1016
|
+
/** @returns {MongoDocConfig} */
|
|
1017
|
+
declare function MongoDocConfig(): MongoDocConfig;
|
|
1018
|
+
type MongoDocConfig = {
|
|
1019
|
+
aggregate_pipeline?: any[];
|
|
1020
|
+
collection_name?: string;
|
|
1021
|
+
find_query?: any;
|
|
1022
|
+
projection_query?: any;
|
|
1023
|
+
prop_bean_configs?: PropBeanConfig[];
|
|
1024
|
+
skip_save?: boolean;
|
|
1025
|
+
};
|
|
1026
|
+
/** @returns {OAuthConfig} */
|
|
1027
|
+
declare function OAuthConfig(): OAuthConfig;
|
|
1028
|
+
type OAuthConfig = {
|
|
1029
|
+
consumer_key?: string;
|
|
1030
|
+
consumer_secret?: string;
|
|
1031
|
+
function_name?: string;
|
|
1032
|
+
interval?: number;
|
|
1033
|
+
limit?: number;
|
|
1034
|
+
pages?: number;
|
|
1035
|
+
rest_base_url?: string;
|
|
1036
|
+
rest_url?: string;
|
|
1037
|
+
token?: string;
|
|
1038
|
+
token_secret?: string;
|
|
1039
|
+
};
|
|
1040
|
+
/** @returns {Page} */
|
|
1041
|
+
declare function Page(): Page;
|
|
1042
|
+
type Page = {
|
|
1043
|
+
current?: number;
|
|
1044
|
+
has_next?: boolean;
|
|
1045
|
+
has_previous?: boolean;
|
|
1046
|
+
item_total?: number;
|
|
1047
|
+
next_id?: string;
|
|
1048
|
+
size?: number;
|
|
1049
|
+
type: string;
|
|
1050
|
+
};
|
|
1051
|
+
/** @returns {ProcessConfig} */
|
|
1052
|
+
declare function ProcessConfig(): ProcessConfig;
|
|
1053
|
+
type ProcessConfig = {
|
|
1054
|
+
aws_s3_config?: AWSS3config;
|
|
1055
|
+
db_config?: DBConfig;
|
|
1056
|
+
db_param_config?: DBParamConfig;
|
|
1057
|
+
doc_mapping_config?: DocMappingConfig;
|
|
1058
|
+
email_config?: EmailConfig;
|
|
1059
|
+
file_config?: FileConfig;
|
|
1060
|
+
ftp_config?: FTPConfig;
|
|
1061
|
+
google_spreadsheet_config?: GoogleSpreadSheetConfig;
|
|
1062
|
+
http_config?: HttpConfig;
|
|
1063
|
+
json_doc_config?: JsonDocConfig;
|
|
1064
|
+
local_file_config?: LocalFileConfig;
|
|
1065
|
+
mongo_doc_config?: MongoDocConfig;
|
|
1066
|
+
oauth_config?: OAuthConfig;
|
|
1067
|
+
sftp_config?: SFTPConfig;
|
|
1068
|
+
task_step_config?: TaskStepConfig;
|
|
1069
|
+
};
|
|
1070
|
+
/** @returns {PropBeanConfig} */
|
|
1071
|
+
declare function PropBeanConfig(): PropBeanConfig;
|
|
1072
|
+
type PropBeanConfig = {
|
|
1073
|
+
all_param_function_name?: string;
|
|
1074
|
+
concat_str?: string;
|
|
1075
|
+
const_value?: any;
|
|
1076
|
+
data_type?: string;
|
|
1077
|
+
default_value?: any;
|
|
1078
|
+
destination_field?: string;
|
|
1079
|
+
enrich_from_master?: boolean;
|
|
1080
|
+
function_name?: string;
|
|
1081
|
+
identifier_type?: string;
|
|
1082
|
+
ignore_if_not_exists?: boolean;
|
|
1083
|
+
include?: boolean;
|
|
1084
|
+
index_field?: string;
|
|
1085
|
+
optional?: boolean;
|
|
1086
|
+
projection_query?: any;
|
|
1087
|
+
required?: boolean;
|
|
1088
|
+
send?: Send;
|
|
1089
|
+
source_field?: string;
|
|
1090
|
+
source_fields?: string[];
|
|
1091
|
+
sub_separator?: string;
|
|
1092
|
+
transformer_name?: string;
|
|
1093
|
+
validations?: any[];
|
|
1094
|
+
values?: string[];
|
|
1095
|
+
};
|
|
1096
|
+
/** @returns {PropBeanDTO} */
|
|
1097
|
+
declare function PropBeanDTO(): PropBeanDTO;
|
|
1098
|
+
type PropBeanDTO = {
|
|
1099
|
+
all_param_function_name?: string;
|
|
1100
|
+
concat_str?: string;
|
|
1101
|
+
const_value?: any;
|
|
1102
|
+
data_type?: string;
|
|
1103
|
+
default_value?: any;
|
|
1104
|
+
destination_field?: string;
|
|
1105
|
+
enrich_from_master?: boolean;
|
|
1106
|
+
function_name?: string;
|
|
1107
|
+
identifier_type?: string;
|
|
1108
|
+
ignore_if_not_exists?: boolean;
|
|
1109
|
+
include?: boolean;
|
|
1110
|
+
index_field?: string;
|
|
1111
|
+
optional?: boolean;
|
|
1112
|
+
projection_query?: any;
|
|
1113
|
+
required?: boolean;
|
|
1114
|
+
source_field?: string;
|
|
1115
|
+
source_fields?: string[];
|
|
1116
|
+
sub_separator?: string;
|
|
1117
|
+
transformer_name?: string;
|
|
1118
|
+
};
|
|
1119
|
+
/** @returns {ResponseEnvelopeJobConfigDTO} */
|
|
1120
|
+
declare function ResponseEnvelopeJobConfigDTO(): ResponseEnvelopeJobConfigDTO;
|
|
1121
|
+
type ResponseEnvelopeJobConfigDTO = {
|
|
1122
|
+
error?: string;
|
|
1123
|
+
exception?: string;
|
|
1124
|
+
http_status?: string;
|
|
1125
|
+
items?: JobConfigDTO;
|
|
1126
|
+
message?: string;
|
|
1127
|
+
page?: Page;
|
|
1128
|
+
payload?: JobConfigDTO;
|
|
1129
|
+
status?: number;
|
|
1130
|
+
timestamp?: string;
|
|
1131
|
+
total_time_taken_in_millis?: number;
|
|
1132
|
+
trace_id?: string;
|
|
1133
|
+
};
|
|
1134
|
+
/** @returns {ResponseEnvelopeJobMetricsDto} */
|
|
1135
|
+
declare function ResponseEnvelopeJobMetricsDto(): ResponseEnvelopeJobMetricsDto;
|
|
1136
|
+
type ResponseEnvelopeJobMetricsDto = {
|
|
1137
|
+
error?: string;
|
|
1138
|
+
exception?: string;
|
|
1139
|
+
http_status?: string;
|
|
1140
|
+
items?: JobMetricsDto;
|
|
1141
|
+
message?: string;
|
|
1142
|
+
page?: Page;
|
|
1143
|
+
payload?: JobMetricsDto;
|
|
1144
|
+
status?: number;
|
|
1145
|
+
timestamp?: string;
|
|
1146
|
+
total_time_taken_in_millis?: number;
|
|
1147
|
+
trace_id?: string;
|
|
1148
|
+
};
|
|
1149
|
+
/** @returns {ResponseEnvelopeKafkaResponse} */
|
|
1150
|
+
declare function ResponseEnvelopeKafkaResponse(): ResponseEnvelopeKafkaResponse;
|
|
1151
|
+
type ResponseEnvelopeKafkaResponse = {
|
|
1152
|
+
error?: string;
|
|
1153
|
+
exception?: string;
|
|
1154
|
+
http_status?: string;
|
|
1155
|
+
items?: KafkaResponse;
|
|
1156
|
+
message?: string;
|
|
1157
|
+
page?: Page;
|
|
1158
|
+
payload?: KafkaResponse;
|
|
1159
|
+
status?: number;
|
|
1160
|
+
timestamp?: string;
|
|
1161
|
+
total_time_taken_in_millis?: number;
|
|
1162
|
+
trace_id?: string;
|
|
1163
|
+
};
|
|
1164
|
+
/** @returns {ResponseEnvelopeListJobConfigDTO} */
|
|
1165
|
+
declare function ResponseEnvelopeListJobConfigDTO(): ResponseEnvelopeListJobConfigDTO;
|
|
1166
|
+
type ResponseEnvelopeListJobConfigDTO = {
|
|
1167
|
+
error?: string;
|
|
1168
|
+
exception?: string;
|
|
1169
|
+
http_status?: string;
|
|
1170
|
+
items?: JobConfigDTO[];
|
|
1171
|
+
message?: string;
|
|
1172
|
+
page?: Page;
|
|
1173
|
+
payload?: JobConfigDTO[];
|
|
1174
|
+
status?: number;
|
|
1175
|
+
timestamp?: string;
|
|
1176
|
+
total_time_taken_in_millis?: number;
|
|
1177
|
+
trace_id?: string;
|
|
1178
|
+
};
|
|
1179
|
+
/** @returns {ResponseEnvelopeListJobConfigListDTO} */
|
|
1180
|
+
declare function ResponseEnvelopeListJobConfigListDTO(): ResponseEnvelopeListJobConfigListDTO;
|
|
1181
|
+
type ResponseEnvelopeListJobConfigListDTO = {
|
|
1182
|
+
error?: string;
|
|
1183
|
+
exception?: string;
|
|
1184
|
+
http_status?: string;
|
|
1185
|
+
items?: JobConfigListDTO[];
|
|
1186
|
+
message?: string;
|
|
1187
|
+
page?: Page;
|
|
1188
|
+
payload?: JobConfigListDTO[];
|
|
1189
|
+
status?: number;
|
|
1190
|
+
timestamp?: string;
|
|
1191
|
+
total_time_taken_in_millis?: number;
|
|
1192
|
+
trace_id?: string;
|
|
1193
|
+
};
|
|
1194
|
+
/** @returns {ResponseEnvelopeListJobConfigRawDTO} */
|
|
1195
|
+
declare function ResponseEnvelopeListJobConfigRawDTO(): ResponseEnvelopeListJobConfigRawDTO;
|
|
1196
|
+
type ResponseEnvelopeListJobConfigRawDTO = {
|
|
1197
|
+
error?: string;
|
|
1198
|
+
exception?: string;
|
|
1199
|
+
http_status?: string;
|
|
1200
|
+
items?: JobConfigRawDTO[];
|
|
1201
|
+
message?: string;
|
|
1202
|
+
page?: Page;
|
|
1203
|
+
payload?: JobConfigRawDTO[];
|
|
1204
|
+
status?: number;
|
|
1205
|
+
timestamp?: string;
|
|
1206
|
+
total_time_taken_in_millis?: number;
|
|
1207
|
+
trace_id?: string;
|
|
1208
|
+
};
|
|
1209
|
+
/** @returns {ResponseEnvelopeListJobStepsDTO} */
|
|
1210
|
+
declare function ResponseEnvelopeListJobStepsDTO(): ResponseEnvelopeListJobStepsDTO;
|
|
1211
|
+
type ResponseEnvelopeListJobStepsDTO = {
|
|
1212
|
+
error?: string;
|
|
1213
|
+
exception?: string;
|
|
1214
|
+
http_status?: string;
|
|
1215
|
+
items?: JobStepsDTO[];
|
|
1216
|
+
message?: string;
|
|
1217
|
+
page?: Page;
|
|
1218
|
+
payload?: JobStepsDTO[];
|
|
1219
|
+
status?: number;
|
|
1220
|
+
timestamp?: string;
|
|
1221
|
+
total_time_taken_in_millis?: number;
|
|
1222
|
+
trace_id?: string;
|
|
1223
|
+
};
|
|
1224
|
+
/** @returns {ResponseEnvelopeListSlingshotConfigurationDetail} */
|
|
1225
|
+
declare function ResponseEnvelopeListSlingshotConfigurationDetail(): ResponseEnvelopeListSlingshotConfigurationDetail;
|
|
1226
|
+
type ResponseEnvelopeListSlingshotConfigurationDetail = {
|
|
1227
|
+
error?: string;
|
|
1228
|
+
exception?: string;
|
|
1229
|
+
http_status?: string;
|
|
1230
|
+
items?: SlingshotConfigurationDetail[];
|
|
1231
|
+
message?: string;
|
|
1232
|
+
page?: Page;
|
|
1233
|
+
payload?: SlingshotConfigurationDetail[];
|
|
1234
|
+
status?: number;
|
|
1235
|
+
timestamp?: string;
|
|
1236
|
+
total_time_taken_in_millis?: number;
|
|
1237
|
+
trace_id?: string;
|
|
1238
|
+
};
|
|
1239
|
+
/** @returns {ResponseEnvelopeString} */
|
|
1240
|
+
declare function ResponseEnvelopeString(): ResponseEnvelopeString;
|
|
1241
|
+
type ResponseEnvelopeString = {
|
|
1242
|
+
error?: string;
|
|
1243
|
+
exception?: string;
|
|
1244
|
+
http_status?: string;
|
|
1245
|
+
items?: string;
|
|
1246
|
+
message?: string;
|
|
1247
|
+
page?: Page;
|
|
1248
|
+
payload?: string;
|
|
1249
|
+
status?: number;
|
|
1250
|
+
timestamp?: string;
|
|
1251
|
+
total_time_taken_in_millis?: number;
|
|
1252
|
+
trace_id?: string;
|
|
1253
|
+
};
|
|
1254
|
+
/** @returns {Send} */
|
|
1255
|
+
declare function Send(): Send;
|
|
1256
|
+
type Send = {
|
|
1257
|
+
processed?: boolean;
|
|
1258
|
+
raw?: boolean;
|
|
1259
|
+
};
|
|
1260
|
+
/** @returns {SFTPConfig} */
|
|
1261
|
+
declare function SFTPConfig(): SFTPConfig;
|
|
1262
|
+
type SFTPConfig = {
|
|
1263
|
+
archive_config?: ArchiveConfig;
|
|
1264
|
+
file_regex?: string;
|
|
1265
|
+
host?: string;
|
|
1266
|
+
interval?: number;
|
|
1267
|
+
local_dir?: string;
|
|
1268
|
+
password?: string;
|
|
1269
|
+
password_protected?: boolean;
|
|
1270
|
+
port?: number;
|
|
1271
|
+
private_key_path?: string;
|
|
1272
|
+
read_all_files?: boolean;
|
|
1273
|
+
remote_dir?: string;
|
|
1274
|
+
retries?: number;
|
|
1275
|
+
strict_host_key_checking?: boolean;
|
|
1276
|
+
unzip?: boolean;
|
|
1277
|
+
username?: string;
|
|
1278
|
+
zip_file_regex?: string;
|
|
1279
|
+
zip_format?: string;
|
|
1280
|
+
};
|
|
1281
|
+
/** @returns {SlingshotConfigurationDetail} */
|
|
1282
|
+
declare function SlingshotConfigurationDetail(): SlingshotConfigurationDetail;
|
|
1283
|
+
type SlingshotConfigurationDetail = {
|
|
1284
|
+
companies?: GCompany[];
|
|
1285
|
+
integration?: SlingshotIntegration;
|
|
1286
|
+
};
|
|
1287
|
+
/** @returns {SlingshotIntegration} */
|
|
1288
|
+
declare function SlingshotIntegration(): SlingshotIntegration;
|
|
1289
|
+
type SlingshotIntegration = {
|
|
1290
|
+
_id?: string;
|
|
1291
|
+
description?: string;
|
|
1292
|
+
meta?: Metum[];
|
|
1293
|
+
name?: string;
|
|
1294
|
+
slug?: string;
|
|
1295
|
+
};
|
|
1296
|
+
/** @returns {StoreConfig} */
|
|
1297
|
+
declare function StoreConfig(): StoreConfig;
|
|
1298
|
+
type StoreConfig = {
|
|
1299
|
+
job_code?: string;
|
|
1300
|
+
process_config?: ProcessConfig;
|
|
1301
|
+
properties?: any;
|
|
1302
|
+
store_alias?: string;
|
|
1303
|
+
store_file_name?: string;
|
|
1304
|
+
store_file_regex?: string;
|
|
1305
|
+
storeid?: string;
|
|
1306
|
+
};
|
|
1307
|
+
/** @returns {StoreData} */
|
|
1308
|
+
declare function StoreData(): StoreData;
|
|
1309
|
+
type StoreData = {
|
|
1310
|
+
location_id?: string;
|
|
1311
|
+
};
|
|
1312
|
+
/** @returns {StoreFilter} */
|
|
1313
|
+
declare function StoreFilter(): StoreFilter;
|
|
1314
|
+
type StoreFilter = {
|
|
1315
|
+
exclude_tags?: string[];
|
|
1316
|
+
include_tags?: string[];
|
|
1317
|
+
query?: any;
|
|
1318
|
+
};
|
|
1319
|
+
/** @returns {SuppressStoreModel} */
|
|
1320
|
+
declare function SuppressStoreModel(): SuppressStoreModel;
|
|
1321
|
+
type SuppressStoreModel = {
|
|
1322
|
+
stores?: number[];
|
|
1323
|
+
};
|
|
1324
|
+
/** @returns {SuppressStorePayload} */
|
|
1325
|
+
declare function SuppressStorePayload(): SuppressStorePayload;
|
|
1326
|
+
type SuppressStorePayload = {
|
|
1327
|
+
meta?: KafkaMetaModel;
|
|
1328
|
+
payload?: SuppressStoreModel[];
|
|
1329
|
+
};
|
|
1330
|
+
/** @returns {TaskConfig} */
|
|
1331
|
+
declare function TaskConfig(): TaskConfig;
|
|
1332
|
+
type TaskConfig = {
|
|
1333
|
+
name?: string;
|
|
1334
|
+
task_config_id?: number;
|
|
1335
|
+
task_params?: TaskParam[];
|
|
1336
|
+
};
|
|
1337
|
+
/** @returns {TaskDTO} */
|
|
1338
|
+
declare function TaskDTO(): TaskDTO;
|
|
1339
|
+
type TaskDTO = {
|
|
1340
|
+
group_list?: GenericDTO[];
|
|
1341
|
+
type?: number;
|
|
1342
|
+
};
|
|
1343
|
+
/** @returns {TaskParam} */
|
|
1344
|
+
declare function TaskParam(): TaskParam;
|
|
1345
|
+
type TaskParam = {
|
|
1346
|
+
name?: string;
|
|
1347
|
+
value?: any;
|
|
1348
|
+
};
|
|
1349
|
+
/** @returns {TaskStepConfig} */
|
|
1350
|
+
declare function TaskStepConfig(): TaskStepConfig;
|
|
1351
|
+
type TaskStepConfig = {
|
|
1352
|
+
task_config_group_ids?: number[];
|
|
1353
|
+
task_config_ids?: number[];
|
|
1354
|
+
task_configs?: TaskConfig[];
|
|
1355
|
+
};
|