@gofynd/fdk-client-javascript 1.0.1 → 1.0.3
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/documentation/application/CART.md +5934 -4502
- package/documentation/application/CATALOG.md +6338 -7245
- package/documentation/application/COMMON.md +95 -222
- package/documentation/application/COMMUNICATION.md +106 -186
- package/documentation/application/CONFIGURATION.md +903 -1597
- package/documentation/application/CONTENT.md +562 -1270
- package/documentation/application/FILESTORAGE.md +84 -220
- package/documentation/application/LEAD.md +314 -660
- package/documentation/application/LOGISTIC.md +229 -305
- package/documentation/application/ORDER.md +642 -1137
- package/documentation/application/PAYMENT.md +2285 -3031
- package/documentation/application/POSCART.md +6079 -4642
- package/documentation/application/REWARDS.md +94 -248
- package/documentation/application/SHARE.md +152 -250
- package/documentation/application/THEME.md +952 -1235
- package/documentation/application/USER.md +1228 -1765
- package/documentation/platform/ANALYTICS.md +207 -349
- package/documentation/platform/AUDITTRAIL.md +121 -204
- package/documentation/platform/BILLING.md +865 -1376
- package/documentation/platform/CART.md +2814 -3662
- package/documentation/platform/CATALOG.md +15266 -17619
- package/documentation/platform/COMMON.md +95 -222
- package/documentation/platform/COMMUNICATION.md +1632 -2380
- package/documentation/platform/COMPANYPROFILE.md +572 -957
- package/documentation/platform/CONFIGURATION.md +3050 -4073
- package/documentation/platform/CONTENT.md +3509 -4121
- package/documentation/platform/DISCOUNT.md +140 -236
- package/documentation/platform/FILESTORAGE.md +187 -323
- package/documentation/platform/INVENTORY.md +268 -911
- package/documentation/platform/LEAD.md +2195 -2541
- package/documentation/platform/ORDER.md +3750 -5636
- package/documentation/platform/PARTNER.md +9 -36
- package/documentation/platform/PAYMENT.md +903 -1213
- package/documentation/platform/REWARDS.md +183 -347
- package/documentation/platform/SHARE.md +120 -213
- package/documentation/platform/THEME.md +12956 -13239
- package/documentation/platform/USER.md +975 -1120
- package/documentation/platform/WEBHOOK.md +78 -184
- package/documentation/public/CONFIGURATION.md +95 -222
- package/documentation/public/INVENTORY.md +100 -282
- package/documentation/public/WEBHOOK.md +27 -133
- package/package.json +1 -1
- package/sdk/application/ApplicationConfig.js +1 -1
- package/sdk/application/Cart/CartApplicationClient.d.ts +243 -243
- package/sdk/application/Cart/CartApplicationClient.js +1058 -547
- package/sdk/application/Cart/CartApplicationModel.d.ts +64 -63
- package/sdk/application/Cart/CartApplicationModel.js +489 -886
- package/sdk/application/Cart/CartApplicationValidator.d.ts +17 -17
- package/sdk/application/Cart/CartApplicationValidator.js +98 -98
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +358 -358
- package/sdk/application/Catalog/CatalogApplicationClient.js +1545 -949
- package/sdk/application/Catalog/CatalogApplicationModel.d.ts +90 -90
- package/sdk/application/Catalog/CatalogApplicationModel.js +692 -1258
- package/sdk/application/Catalog/CatalogApplicationValidator.d.ts +19 -19
- package/sdk/application/Catalog/CatalogApplicationValidator.js +110 -110
- package/sdk/application/Common/CommonApplicationClient.d.ts +13 -13
- package/sdk/application/Common/CommonApplicationClient.js +76 -36
- package/sdk/application/Common/CommonApplicationModel.d.ts +12 -12
- package/sdk/application/Common/CommonApplicationModel.js +83 -160
- package/sdk/application/Common/CommonApplicationValidator.d.ts +1 -1
- package/sdk/application/Common/CommonApplicationValidator.js +6 -6
- package/sdk/application/Communication/CommunicationApplicationClient.d.ts +11 -11
- package/sdk/application/Communication/CommunicationApplicationClient.js +92 -31
- package/sdk/application/Communication/CommunicationApplicationModel.d.ts +6 -6
- package/sdk/application/Communication/CommunicationApplicationModel.js +38 -83
- package/sdk/application/Communication/CommunicationApplicationValidator.d.ts +1 -1
- package/sdk/application/Communication/CommunicationApplicationValidator.js +4 -4
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +116 -116
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +638 -312
- package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +85 -85
- package/sdk/application/Configuration/ConfigurationApplicationModel.js +480 -851
- package/sdk/application/Configuration/ConfigurationApplicationValidator.d.ts +8 -8
- package/sdk/application/Configuration/ConfigurationApplicationValidator.js +33 -33
- package/sdk/application/Content/ContentApplicationClient.d.ts +67 -67
- package/sdk/application/Content/ContentApplicationClient.js +581 -213
- package/sdk/application/Content/ContentApplicationModel.d.ts +76 -75
- package/sdk/application/Content/ContentApplicationModel.js +468 -875
- package/sdk/application/Content/ContentApplicationValidator.d.ts +5 -5
- package/sdk/application/Content/ContentApplicationValidator.js +24 -24
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +25 -25
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +121 -59
- package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +13 -13
- package/sdk/application/FileStorage/FileStorageApplicationModel.js +86 -169
- package/sdk/application/FileStorage/FileStorageApplicationValidator.d.ts +1 -1
- package/sdk/application/FileStorage/FileStorageApplicationValidator.js +7 -7
- package/sdk/application/Lead/LeadApplicationClient.d.ts +24 -24
- package/sdk/application/Lead/LeadApplicationClient.js +230 -96
- package/sdk/application/Lead/LeadApplicationModel.d.ts +35 -35
- package/sdk/application/Lead/LeadApplicationModel.js +267 -474
- package/sdk/application/Lead/LeadApplicationValidator.d.ts +2 -2
- package/sdk/application/Lead/LeadApplicationValidator.js +11 -11
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +30 -19
- package/sdk/application/Logistic/LogisticApplicationClient.js +196 -47
- package/sdk/application/Logistic/LogisticApplicationModel.d.ts +17 -14
- package/sdk/application/Logistic/LogisticApplicationModel.js +133 -201
- package/sdk/application/Logistic/LogisticApplicationValidator.d.ts +3 -2
- package/sdk/application/Logistic/LogisticApplicationValidator.js +14 -8
- package/sdk/application/Order/OrderApplicationClient.d.ts +86 -86
- package/sdk/application/Order/OrderApplicationClient.js +448 -215
- package/sdk/application/Order/OrderApplicationModel.d.ts +50 -50
- package/sdk/application/Order/OrderApplicationModel.js +357 -661
- package/sdk/application/Order/OrderApplicationValidator.d.ts +7 -7
- package/sdk/application/Order/OrderApplicationValidator.js +28 -28
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +318 -318
- package/sdk/application/Payment/PaymentApplicationClient.js +1525 -750
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +72 -72
- package/sdk/application/Payment/PaymentApplicationModel.js +565 -1033
- package/sdk/application/Payment/PaymentApplicationValidator.d.ts +28 -28
- package/sdk/application/Payment/PaymentApplicationValidator.js +107 -107
- package/sdk/application/PosCart/PosCartApplicationClient.d.ts +254 -254
- package/sdk/application/PosCart/PosCartApplicationClient.js +1137 -606
- package/sdk/application/PosCart/PosCartApplicationModel.d.ts +61 -60
- package/sdk/application/PosCart/PosCartApplicationModel.js +477 -873
- package/sdk/application/PosCart/PosCartApplicationValidator.d.ts +18 -18
- package/sdk/application/PosCart/PosCartApplicationValidator.js +103 -103
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +27 -27
- package/sdk/application/Rewards/RewardsApplicationClient.js +253 -113
- package/sdk/application/Rewards/RewardsApplicationModel.d.ts +14 -14
- package/sdk/application/Rewards/RewardsApplicationModel.js +96 -191
- package/sdk/application/Rewards/RewardsApplicationValidator.d.ts +3 -3
- package/sdk/application/Rewards/RewardsApplicationValidator.js +12 -12
- package/sdk/application/Share/ShareApplicationClient.d.ts +37 -37
- package/sdk/application/Share/ShareApplicationClient.js +221 -96
- package/sdk/application/Share/ShareApplicationModel.d.ts +8 -8
- package/sdk/application/Share/ShareApplicationModel.js +63 -123
- package/sdk/application/Share/ShareApplicationValidator.d.ts +4 -4
- package/sdk/application/Share/ShareApplicationValidator.js +12 -12
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +8 -8
- package/sdk/application/Theme/ThemeApplicationClient.js +115 -37
- package/sdk/application/Theme/ThemeApplicationModel.d.ts +34 -34
- package/sdk/application/Theme/ThemeApplicationModel.js +190 -336
- package/sdk/application/Theme/ThemeApplicationValidator.d.ts +1 -1
- package/sdk/application/Theme/ThemeApplicationValidator.js +4 -4
- package/sdk/application/User/UserApplicationClient.d.ts +280 -280
- package/sdk/application/User/UserApplicationClient.js +1201 -543
- package/sdk/application/User/UserApplicationModel.d.ts +79 -72
- package/sdk/application/User/UserApplicationModel.js +440 -689
- package/sdk/application/User/UserApplicationValidator.d.ts +24 -24
- package/sdk/application/User/UserApplicationValidator.js +89 -89
- package/sdk/common/AxiosHelper.js +1 -1
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +55 -47
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +308 -151
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +6 -6
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +20 -20
- package/sdk/platform/Analytics/AnalyticsPlatformClient.d.ts +8 -4
- package/sdk/platform/Analytics/AnalyticsPlatformClient.js +103 -16
- package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +11 -11
- package/sdk/platform/Analytics/AnalyticsPlatformModel.js +95 -178
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +16 -12
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +131 -44
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +10 -10
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +50 -89
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +1 -1
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +6 -6
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +68 -56
- package/sdk/platform/Billing/BillingPlatformClient.js +416 -171
- package/sdk/platform/Billing/BillingPlatformModel.d.ts +40 -40
- package/sdk/platform/Billing/BillingPlatformModel.js +342 -668
- package/sdk/platform/Billing/BillingPlatformValidator.d.ts +8 -8
- package/sdk/platform/Billing/BillingPlatformValidator.js +25 -25
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +176 -159
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +837 -500
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +11 -11
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +63 -63
- package/sdk/platform/Cart/CartPlatformModel.d.ts +86 -85
- package/sdk/platform/Cart/CartPlatformModel.js +677 -1211
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +582 -529
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +2642 -1533
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +40 -40
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +175 -175
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +708 -590
- package/sdk/platform/Catalog/CatalogPlatformClient.js +3103 -1362
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +293 -284
- package/sdk/platform/Catalog/CatalogPlatformModel.js +2149 -3660
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +66 -64
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +235 -216
- package/sdk/platform/Common/CommonPlatformClient.d.ts +14 -12
- package/sdk/platform/Common/CommonPlatformClient.js +80 -37
- package/sdk/platform/Common/CommonPlatformModel.d.ts +12 -12
- package/sdk/platform/Common/CommonPlatformModel.js +83 -160
- package/sdk/platform/Common/CommonPlatformValidator.d.ts +1 -1
- package/sdk/platform/Common/CommonPlatformValidator.js +6 -6
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +333 -293
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +1687 -855
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +30 -30
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +87 -87
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +2 -1
- package/sdk/platform/Communication/CommunicationPlatformClient.js +28 -4
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +67 -67
- package/sdk/platform/Communication/CommunicationPlatformModel.js +522 -974
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +70 -57
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +463 -182
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +28 -28
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +294 -557
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +7 -7
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +24 -24
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +175 -137
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +1168 -521
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +22 -21
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +69 -63
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +137 -119
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +691 -316
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +148 -146
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +854 -1508
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +9 -9
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +38 -38
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +542 -461
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +2600 -1160
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +50 -49
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +159 -152
- package/sdk/platform/Content/ContentPlatformModel.d.ts +79 -75
- package/sdk/platform/Content/ContentPlatformModel.js +486 -867
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +72 -61
- package/sdk/platform/Discount/DiscountPlatformClient.js +424 -198
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +7 -7
- package/sdk/platform/Discount/DiscountPlatformModel.js +60 -121
- package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +6 -6
- package/sdk/platform/Discount/DiscountPlatformValidator.js +29 -29
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +26 -22
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +145 -59
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +1 -1
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +8 -8
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +58 -52
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +240 -114
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +13 -13
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +86 -169
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +3 -3
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +11 -11
- package/sdk/platform/Inventory/InventoryPlatformClient.d.ts +76 -63
- package/sdk/platform/Inventory/InventoryPlatformClient.js +461 -197
- package/sdk/platform/Inventory/InventoryPlatformModel.d.ts +30 -30
- package/sdk/platform/Inventory/InventoryPlatformModel.js +497 -964
- package/sdk/platform/Inventory/InventoryPlatformValidator.d.ts +7 -7
- package/sdk/platform/Inventory/InventoryPlatformValidator.js +28 -28
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +84 -71
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +441 -182
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +7 -7
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +28 -28
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +86 -75
- package/sdk/platform/Lead/LeadPlatformClient.js +434 -212
- package/sdk/platform/Lead/LeadPlatformModel.d.ts +35 -35
- package/sdk/platform/Lead/LeadPlatformModel.js +267 -474
- package/sdk/platform/Lead/LeadPlatformValidator.d.ts +6 -6
- package/sdk/platform/Lead/LeadPlatformValidator.js +24 -24
- package/sdk/platform/OAuthClient.js +8 -8
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +14 -11
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +113 -49
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +1 -1
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +6 -6
- package/sdk/platform/Order/OrderPlatformClient.d.ts +367 -315
- package/sdk/platform/Order/OrderPlatformClient.js +1775 -893
- package/sdk/platform/Order/OrderPlatformModel.d.ts +198 -192
- package/sdk/platform/Order/OrderPlatformModel.js +1591 -2822
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +32 -32
- package/sdk/platform/Order/OrderPlatformValidator.js +160 -155
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -2
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +52 -8
- package/sdk/platform/Partner/PartnerPlatformModel.js +6 -22
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +65 -54
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +395 -164
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +6 -6
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +23 -23
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +55 -45
- package/sdk/platform/Payment/PaymentPlatformClient.js +362 -147
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +27 -27
- package/sdk/platform/Payment/PaymentPlatformModel.js +220 -408
- package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +4 -4
- package/sdk/platform/Payment/PaymentPlatformValidator.js +21 -21
- package/sdk/platform/PlatformApplicationClient.d.ts +1496 -10153
- package/sdk/platform/PlatformApplicationClient.js +1584 -13691
- package/sdk/platform/PlatformClient.d.ts +7918 -7666
- package/sdk/platform/PlatformClient.js +8701 -9926
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +91 -78
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +507 -253
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +8 -8
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +34 -34
- package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +15 -15
- package/sdk/platform/Rewards/RewardsPlatformModel.js +92 -194
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +16 -12
- package/sdk/platform/Share/SharePlatformApplicationClient.js +130 -52
- package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +1 -1
- package/sdk/platform/Share/SharePlatformApplicationValidator.js +6 -6
- package/sdk/platform/Share/SharePlatformModel.d.ts +8 -8
- package/sdk/platform/Share/SharePlatformModel.js +60 -118
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +148 -124
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +770 -295
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +15 -15
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +44 -44
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +34 -34
- package/sdk/platform/Theme/ThemePlatformModel.js +190 -336
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +146 -67
- package/sdk/platform/User/UserPlatformApplicationClient.js +742 -155
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +12 -7
- package/sdk/platform/User/UserPlatformApplicationValidator.js +61 -23
- package/sdk/platform/User/UserPlatformModel.d.ts +79 -72
- package/sdk/platform/User/UserPlatformModel.js +440 -689
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +35 -29
- package/sdk/platform/Webhook/WebhookPlatformClient.js +218 -91
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +7 -7
- package/sdk/platform/Webhook/WebhookPlatformModel.js +68 -136
- package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +3 -3
- package/sdk/platform/Webhook/WebhookPlatformValidator.js +14 -14
- package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +13 -13
- package/sdk/public/Configuration/ConfigurationPublicClient.js +81 -38
- package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +12 -12
- package/sdk/public/Configuration/ConfigurationPublicModel.js +85 -162
- package/sdk/public/Configuration/ConfigurationPublicValidator.d.ts +1 -1
- package/sdk/public/Configuration/ConfigurationPublicValidator.js +6 -6
- package/sdk/public/Inventory/InventoryPublicClient.d.ts +34 -34
- package/sdk/public/Inventory/InventoryPublicClient.js +228 -105
- package/sdk/public/Inventory/InventoryPublicModel.d.ts +10 -10
- package/sdk/public/Inventory/InventoryPublicModel.js +119 -245
- package/sdk/public/Inventory/InventoryPublicValidator.d.ts +3 -3
- package/sdk/public/Inventory/InventoryPublicValidator.js +15 -15
- package/sdk/public/Webhook/WebhookPublicClient.js +51 -10
- package/sdk/public/Webhook/WebhookPublicModel.d.ts +7 -7
- package/sdk/public/Webhook/WebhookPublicModel.js +68 -136
- package/tests/application/catalog.spec.js +7 -0
|
@@ -8,12 +8,12 @@
|
|
|
8
8
|
## Inventory Methods
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
* [getJobCodesMetrics](#getjobcodesmetrics)
|
|
12
|
-
* [saveJobCodesMetrics](#savejobcodesmetrics)
|
|
13
|
-
* [getConfigByApiKey](#getconfigbyapikey)
|
|
14
11
|
* [getApiKey](#getapikey)
|
|
12
|
+
* [getConfigByApiKey](#getconfigbyapikey)
|
|
15
13
|
* [getJobByCode](#getjobbycode)
|
|
14
|
+
* [getJobCodesMetrics](#getjobcodesmetrics)
|
|
16
15
|
* [getJobConfigByIntegrationType](#getjobconfigbyintegrationtype)
|
|
16
|
+
* [saveJobCodesMetrics](#savejobcodesmetrics)
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
|
|
@@ -22,19 +22,19 @@
|
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
25
|
-
###
|
|
26
|
-
|
|
25
|
+
### getApiKey
|
|
26
|
+
Get apikey for Company to call other Slingshot Configuration APIs
|
|
27
27
|
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
```javascript
|
|
31
31
|
// Promise
|
|
32
|
-
const promise = inventory.
|
|
33
|
-
|
|
32
|
+
const promise = inventory.getApiKey({ userName : value,
|
|
33
|
+
password : value });
|
|
34
34
|
|
|
35
35
|
// Async/Await
|
|
36
|
-
const data = await inventory.
|
|
37
|
-
|
|
36
|
+
const data = await inventory.getApiKey({ userName : value,
|
|
37
|
+
password : value });
|
|
38
38
|
```
|
|
39
39
|
|
|
40
40
|
|
|
@@ -42,20 +42,20 @@ const data = await inventory.getJobCodesMetrics({ dailyJob : value,
|
|
|
42
42
|
|
|
43
43
|
|
|
44
44
|
| Argument | Type | Required | Description |
|
|
45
|
-
| --------- | ----- | -------- | ----------- |
|
|
46
|
-
|
|
|
47
|
-
|
|
|
45
|
+
| --------- | ----- | -------- | ----------- |
|
|
46
|
+
| userName | string | yes | Integration id |
|
|
47
|
+
| password | string | yes | company/store token |
|
|
48
48
|
|
|
49
49
|
|
|
50
50
|
|
|
51
|
-
Endpoint
|
|
51
|
+
REST Endpoint that returns apikey by username by password
|
|
52
52
|
|
|
53
53
|
*Returned Response:*
|
|
54
54
|
|
|
55
55
|
|
|
56
56
|
|
|
57
57
|
|
|
58
|
-
[
|
|
58
|
+
[ResponseEnvelopeApikeyModel](#ResponseEnvelopeApikeyModel)
|
|
59
59
|
|
|
60
60
|
Successful operation
|
|
61
61
|
|
|
@@ -81,17 +81,17 @@ Successful operation
|
|
|
81
81
|
---
|
|
82
82
|
|
|
83
83
|
|
|
84
|
-
###
|
|
85
|
-
|
|
84
|
+
### getConfigByApiKey
|
|
85
|
+
Get Slingshot Configuration Of A Company using API key
|
|
86
86
|
|
|
87
87
|
|
|
88
88
|
|
|
89
89
|
```javascript
|
|
90
90
|
// Promise
|
|
91
|
-
const promise = inventory.
|
|
91
|
+
const promise = inventory.getConfigByApiKey({ apikey : value });
|
|
92
92
|
|
|
93
93
|
// Async/Await
|
|
94
|
-
const data = await inventory.
|
|
94
|
+
const data = await inventory.getConfigByApiKey({ apikey : value });
|
|
95
95
|
```
|
|
96
96
|
|
|
97
97
|
|
|
@@ -99,20 +99,21 @@ const data = await inventory.saveJobCodesMetrics({ body : value });
|
|
|
99
99
|
|
|
100
100
|
|
|
101
101
|
| Argument | Type | Required | Description |
|
|
102
|
-
| --------- | ----- | -------- | ----------- |
|
|
103
|
-
|
|
|
102
|
+
| --------- | ----- | -------- | ----------- |
|
|
103
|
+
| apikey | string | yes | Api key |
|
|
104
104
|
|
|
105
105
|
|
|
106
|
-
|
|
106
|
+
|
|
107
|
+
REST Endpoint that returns all configuration detail of a company
|
|
107
108
|
|
|
108
109
|
*Returned Response:*
|
|
109
110
|
|
|
110
111
|
|
|
111
112
|
|
|
112
113
|
|
|
113
|
-
[
|
|
114
|
+
[ResponseEnvelopeSlingshotConfigurationDetail](#ResponseEnvelopeSlingshotConfigurationDetail)
|
|
114
115
|
|
|
115
|
-
|
|
116
|
+
Successful operation
|
|
116
117
|
|
|
117
118
|
|
|
118
119
|
|
|
@@ -136,17 +137,17 @@ JobCode Metrics entry Created Successfully
|
|
|
136
137
|
---
|
|
137
138
|
|
|
138
139
|
|
|
139
|
-
###
|
|
140
|
-
Get
|
|
140
|
+
### getJobByCode
|
|
141
|
+
Get Job Config By Code
|
|
141
142
|
|
|
142
143
|
|
|
143
144
|
|
|
144
145
|
```javascript
|
|
145
146
|
// Promise
|
|
146
|
-
const promise = inventory.
|
|
147
|
+
const promise = inventory.getJobByCode({ code : value });
|
|
147
148
|
|
|
148
149
|
// Async/Await
|
|
149
|
-
const data = await inventory.
|
|
150
|
+
const data = await inventory.getJobByCode({ code : value });
|
|
150
151
|
```
|
|
151
152
|
|
|
152
153
|
|
|
@@ -155,18 +156,18 @@ const data = await inventory.getConfigByApiKey({ apikey : value });
|
|
|
155
156
|
|
|
156
157
|
| Argument | Type | Required | Description |
|
|
157
158
|
| --------- | ----- | -------- | ----------- |
|
|
158
|
-
|
|
|
159
|
+
| code | string | yes | Job Code |
|
|
159
160
|
|
|
160
161
|
|
|
161
162
|
|
|
162
|
-
REST Endpoint that returns
|
|
163
|
+
REST Endpoint that returns job config by code
|
|
163
164
|
|
|
164
165
|
*Returned Response:*
|
|
165
166
|
|
|
166
167
|
|
|
167
168
|
|
|
168
169
|
|
|
169
|
-
[
|
|
170
|
+
[ResponseEnvelopeJobConfigDTO](#ResponseEnvelopeJobConfigDTO)
|
|
170
171
|
|
|
171
172
|
Successful operation
|
|
172
173
|
|
|
@@ -192,19 +193,19 @@ Successful operation
|
|
|
192
193
|
---
|
|
193
194
|
|
|
194
195
|
|
|
195
|
-
###
|
|
196
|
-
|
|
196
|
+
### getJobCodesMetrics
|
|
197
|
+
Find all the JobCodes from Metrics Collection based on the field Values
|
|
197
198
|
|
|
198
199
|
|
|
199
200
|
|
|
200
201
|
```javascript
|
|
201
202
|
// Promise
|
|
202
|
-
const promise = inventory.
|
|
203
|
-
|
|
203
|
+
const promise = inventory.getJobCodesMetrics({ dailyJob : value,
|
|
204
|
+
jobCode : value });
|
|
204
205
|
|
|
205
206
|
// Async/Await
|
|
206
|
-
const data = await inventory.
|
|
207
|
-
|
|
207
|
+
const data = await inventory.getJobCodesMetrics({ dailyJob : value,
|
|
208
|
+
jobCode : value });
|
|
208
209
|
```
|
|
209
210
|
|
|
210
211
|
|
|
@@ -212,20 +213,20 @@ const data = await inventory.getApiKey({ userName : value,
|
|
|
212
213
|
|
|
213
214
|
|
|
214
215
|
| Argument | Type | Required | Description |
|
|
215
|
-
| --------- | ----- | -------- | ----------- |
|
|
216
|
-
|
|
|
217
|
-
|
|
|
216
|
+
| --------- | ----- | -------- | ----------- |
|
|
217
|
+
| dailyJob | boolean | no | Daily Job Flag |
|
|
218
|
+
| jobCode | string | no | Email Job Code |
|
|
218
219
|
|
|
219
220
|
|
|
220
221
|
|
|
221
|
-
|
|
222
|
+
Endpoint to return all JobCodes present in Metrics Collection
|
|
222
223
|
|
|
223
224
|
*Returned Response:*
|
|
224
225
|
|
|
225
226
|
|
|
226
227
|
|
|
227
228
|
|
|
228
|
-
[
|
|
229
|
+
[ResponseEnvelopeObject](#ResponseEnvelopeObject)
|
|
229
230
|
|
|
230
231
|
Successful operation
|
|
231
232
|
|
|
@@ -251,17 +252,19 @@ Successful operation
|
|
|
251
252
|
---
|
|
252
253
|
|
|
253
254
|
|
|
254
|
-
###
|
|
255
|
-
Get Job
|
|
255
|
+
### getJobConfigByIntegrationType
|
|
256
|
+
Get Job Configs By Integration Type
|
|
256
257
|
|
|
257
258
|
|
|
258
259
|
|
|
259
260
|
```javascript
|
|
260
261
|
// Promise
|
|
261
|
-
const promise = inventory.
|
|
262
|
+
const promise = inventory.getJobConfigByIntegrationType({ integrationType : value,
|
|
263
|
+
disable : value });
|
|
262
264
|
|
|
263
265
|
// Async/Await
|
|
264
|
-
const data = await inventory.
|
|
266
|
+
const data = await inventory.getJobConfigByIntegrationType({ integrationType : value,
|
|
267
|
+
disable : value });
|
|
265
268
|
```
|
|
266
269
|
|
|
267
270
|
|
|
@@ -270,18 +273,19 @@ const data = await inventory.getJobByCode({ code : value });
|
|
|
270
273
|
|
|
271
274
|
| Argument | Type | Required | Description |
|
|
272
275
|
| --------- | ----- | -------- | ----------- |
|
|
273
|
-
|
|
|
276
|
+
| integrationType | string | yes | Integration Type |
|
|
277
|
+
| disable | boolean | no | JobConfig current state |
|
|
274
278
|
|
|
275
279
|
|
|
276
280
|
|
|
277
|
-
REST Endpoint that returns job
|
|
281
|
+
REST Endpoint that returns all job Configs by Integration Type
|
|
278
282
|
|
|
279
283
|
*Returned Response:*
|
|
280
284
|
|
|
281
285
|
|
|
282
286
|
|
|
283
287
|
|
|
284
|
-
[
|
|
288
|
+
[ResponseEnvelopeListJobConfigDTO](#ResponseEnvelopeListJobConfigDTO)
|
|
285
289
|
|
|
286
290
|
Successful operation
|
|
287
291
|
|
|
@@ -307,19 +311,17 @@ Successful operation
|
|
|
307
311
|
---
|
|
308
312
|
|
|
309
313
|
|
|
310
|
-
###
|
|
311
|
-
|
|
314
|
+
### saveJobCodesMetrics
|
|
315
|
+
Save JobCode Metrics
|
|
312
316
|
|
|
313
317
|
|
|
314
318
|
|
|
315
319
|
```javascript
|
|
316
320
|
// Promise
|
|
317
|
-
const promise = inventory.
|
|
318
|
-
disable : value });
|
|
321
|
+
const promise = inventory.saveJobCodesMetrics({ body : value });
|
|
319
322
|
|
|
320
323
|
// Async/Await
|
|
321
|
-
const data = await inventory.
|
|
322
|
-
disable : value });
|
|
324
|
+
const data = await inventory.saveJobCodesMetrics({ body : value });
|
|
323
325
|
```
|
|
324
326
|
|
|
325
327
|
|
|
@@ -327,22 +329,20 @@ const data = await inventory.getJobConfigByIntegrationType({ integrationType :
|
|
|
327
329
|
|
|
328
330
|
|
|
329
331
|
| Argument | Type | Required | Description |
|
|
330
|
-
| --------- | ----- | -------- | ----------- |
|
|
331
|
-
|
|
|
332
|
-
| disable | boolean | no | JobConfig current state |
|
|
333
|
-
|
|
332
|
+
| --------- | ----- | -------- | ----------- |
|
|
333
|
+
| body | [EmailJobMetrics](#EmailJobMetrics) | yes | Request body |
|
|
334
334
|
|
|
335
335
|
|
|
336
|
-
|
|
336
|
+
Endpoint to save JobCode Metrics
|
|
337
337
|
|
|
338
338
|
*Returned Response:*
|
|
339
339
|
|
|
340
340
|
|
|
341
341
|
|
|
342
342
|
|
|
343
|
-
[
|
|
343
|
+
[ResponseEnvelopeEmailJobMetrics](#ResponseEnvelopeEmailJobMetrics)
|
|
344
344
|
|
|
345
|
-
|
|
345
|
+
JobCode Metrics entry Created Successfully
|
|
346
346
|
|
|
347
347
|
|
|
348
348
|
|
|
@@ -369,319 +369,137 @@ Successful operation
|
|
|
369
369
|
|
|
370
370
|
### Schemas
|
|
371
371
|
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
#### [EmailJobMetrics](#EmailJobMetrics)
|
|
372
|
+
|
|
373
|
+
#### [ApikeyModel](#ApikeyModel)
|
|
375
374
|
|
|
376
375
|
| Properties | Type | Nullable | Description |
|
|
377
|
-
| ---------- | ---- | -------- | ----------- |
|
|
378
|
-
| executed | boolean | no | |
|
|
379
|
-
| id | string | no | |
|
|
380
|
-
| job_code | string | no | |
|
|
381
|
-
| daily_job | boolean | no | |
|
|
382
|
-
| last_executed_on | string | no | |
|
|
376
|
+
| ---------- | ---- | -------- | ----------- || error_message | string | no | || session_id | string | no | |
|
|
383
377
|
|
|
384
378
|
---
|
|
385
379
|
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
#### [Page](#Page)
|
|
380
|
+
#### [DataTresholdDTO](#DataTresholdDTO)
|
|
390
381
|
|
|
391
382
|
| Properties | Type | Nullable | Description |
|
|
392
|
-
| ---------- | ---- | -------- | ----------- |
|
|
393
|
-
| type | string | yes | |
|
|
394
|
-
| size | number | no | |
|
|
395
|
-
| current | number | no | |
|
|
396
|
-
| has_next | boolean | no | |
|
|
397
|
-
| item_total | number | no | |
|
|
398
|
-
| next_id | string | no | |
|
|
399
|
-
| has_previous | boolean | no | |
|
|
383
|
+
| ---------- | ---- | -------- | ----------- || min_price | number | no | || period_threshold | number | no | || period_threshold_type | string | no | || period_type_list | [[GenericDTO](#GenericDTO)] | no | || safe_stock | number | no | |
|
|
400
384
|
|
|
401
385
|
---
|
|
402
386
|
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
#### [ResponseEnvelopeEmailJobMetrics](#ResponseEnvelopeEmailJobMetrics)
|
|
387
|
+
#### [EmailJobMetrics](#EmailJobMetrics)
|
|
407
388
|
|
|
408
389
|
| Properties | Type | Nullable | Description |
|
|
409
|
-
| ---------- | ---- | -------- | ----------- |
|
|
410
|
-
| timestamp | string | no | |
|
|
411
|
-
| status | number | no | |
|
|
412
|
-
| error | string | no | |
|
|
413
|
-
| exception | string | no | |
|
|
414
|
-
| message | string | no | |
|
|
415
|
-
| total_time_taken_in_millis | number | no | |
|
|
416
|
-
| http_status | string | no | |
|
|
417
|
-
| items | [EmailJobMetrics](#EmailJobMetrics) | no | |
|
|
418
|
-
| payload | [EmailJobMetrics](#EmailJobMetrics) | no | |
|
|
419
|
-
| trace_id | string | no | |
|
|
420
|
-
| page | [Page](#Page) | no | |
|
|
390
|
+
| ---------- | ---- | -------- | ----------- || daily_job | boolean | no | || executed | boolean | no | || id | string | no | || job_code | string | no | || last_executed_on | string | no | |
|
|
421
391
|
|
|
422
392
|
---
|
|
423
393
|
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
#### [GCompany](#GCompany)
|
|
394
|
+
#### [GCompany](#GCompany)
|
|
428
395
|
|
|
429
396
|
| Properties | Type | Nullable | Description |
|
|
430
|
-
| ---------- | ---- | -------- | ----------- |
|
|
431
|
-
| _id | string | no | |
|
|
432
|
-
| integration | string | no | |
|
|
433
|
-
| level | string | no | |
|
|
434
|
-
| uid | number | no | |
|
|
435
|
-
| opted | boolean | no | |
|
|
436
|
-
| permissions | [string] | no | |
|
|
437
|
-
| token | string | no | |
|
|
438
|
-
| name | string | no | |
|
|
439
|
-
| stores | [[GStore](#GStore)] | no | |
|
|
397
|
+
| ---------- | ---- | -------- | ----------- || _id | string | no | || integration | string | no | || level | string | no | || name | string | no | || opted | boolean | no | || permissions | [string] | no | || stores | [[GStore](#GStore)] | no | || token | string | no | || uid | number | no | |
|
|
440
398
|
|
|
441
399
|
---
|
|
442
400
|
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
#### [GStore](#GStore)
|
|
401
|
+
#### [GenericDTO](#GenericDTO)
|
|
447
402
|
|
|
448
403
|
| Properties | Type | Nullable | Description |
|
|
449
|
-
| ---------- | ---- | -------- | ----------- |
|
|
450
|
-
| _id | string | no | |
|
|
451
|
-
| integration | string | no | |
|
|
452
|
-
| level | string | no | |
|
|
453
|
-
| uid | number | no | |
|
|
454
|
-
| opted | boolean | no | |
|
|
455
|
-
| permissions | [string] | no | |
|
|
456
|
-
| token | string | no | |
|
|
457
|
-
| code | string | no | |
|
|
458
|
-
| name | string | no | |
|
|
459
|
-
| data | [StoreData](#StoreData) | no | |
|
|
404
|
+
| ---------- | ---- | -------- | ----------- || text | string | no | || value | string | no | |
|
|
460
405
|
|
|
461
406
|
---
|
|
462
407
|
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
#### [Metum](#Metum)
|
|
408
|
+
#### [GStore](#GStore)
|
|
467
409
|
|
|
468
410
|
| Properties | Type | Nullable | Description |
|
|
469
|
-
| ---------- | ---- | -------- | ----------- |
|
|
470
|
-
| _id | string | no | |
|
|
471
|
-
| name | string | no | |
|
|
472
|
-
| value | string | no | |
|
|
411
|
+
| ---------- | ---- | -------- | ----------- || _id | string | no | || code | string | no | || data | [StoreData](#StoreData) | no | || integration | string | no | || level | string | no | || name | string | no | || opted | boolean | no | || permissions | [string] | no | || token | string | no | || uid | number | no | |
|
|
473
412
|
|
|
474
413
|
---
|
|
475
414
|
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
#### [ResponseEnvelopeSlingshotConfigurationDetail](#ResponseEnvelopeSlingshotConfigurationDetail)
|
|
415
|
+
#### [JobConfigDTO](#JobConfigDTO)
|
|
480
416
|
|
|
481
417
|
| Properties | Type | Nullable | Description |
|
|
482
|
-
| ---------- | ---- | -------- | ----------- |
|
|
483
|
-
| timestamp | string | no | |
|
|
484
|
-
| status | number | no | |
|
|
485
|
-
| error | string | no | |
|
|
486
|
-
| exception | string | no | |
|
|
487
|
-
| message | string | no | |
|
|
488
|
-
| total_time_taken_in_millis | number | no | |
|
|
489
|
-
| http_status | string | no | |
|
|
490
|
-
| items | [SlingshotConfigurationDetail](#SlingshotConfigurationDetail) | no | |
|
|
491
|
-
| payload | [SlingshotConfigurationDetail](#SlingshotConfigurationDetail) | no | |
|
|
492
|
-
| trace_id | string | no | |
|
|
493
|
-
| page | [Page](#Page) | no | |
|
|
418
|
+
| ---------- | ---- | -------- | ----------- || alias | string | no | || company_id | number | yes | || company_name | string | no | || integration | string | yes | || integration_data | string | no | || job_code | string | no | || task_details | [TaskDTO](#TaskDTO) | no | || threshold_details | [DataTresholdDTO](#DataTresholdDTO) | no | |
|
|
494
419
|
|
|
495
420
|
---
|
|
496
421
|
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
#### [SlingshotConfigurationDetail](#SlingshotConfigurationDetail)
|
|
422
|
+
#### [Metum](#Metum)
|
|
501
423
|
|
|
502
424
|
| Properties | Type | Nullable | Description |
|
|
503
|
-
| ---------- | ---- | -------- | ----------- |
|
|
504
|
-
| integration | [SlingshotIntegration](#SlingshotIntegration) | no | |
|
|
505
|
-
| companies | [[GCompany](#GCompany)] | no | |
|
|
425
|
+
| ---------- | ---- | -------- | ----------- || _id | string | no | || name | string | no | || value | string | no | |
|
|
506
426
|
|
|
507
427
|
---
|
|
508
428
|
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
#### [SlingshotIntegration](#SlingshotIntegration)
|
|
429
|
+
#### [Page](#Page)
|
|
513
430
|
|
|
514
431
|
| Properties | Type | Nullable | Description |
|
|
515
|
-
| ---------- | ---- | -------- | ----------- |
|
|
516
|
-
| _id | string | no | |
|
|
517
|
-
| description | string | no | |
|
|
518
|
-
| name | string | no | |
|
|
519
|
-
| slug | string | no | |
|
|
520
|
-
| meta | [[Metum](#Metum)] | no | |
|
|
432
|
+
| ---------- | ---- | -------- | ----------- || current | number | no | || has_next | boolean | no | || has_previous | boolean | no | || item_total | number | no | || next_id | string | no | || size | number | no | || type | string | yes | |
|
|
521
433
|
|
|
522
434
|
---
|
|
523
435
|
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
#### [StoreData](#StoreData)
|
|
436
|
+
#### [ResponseEnvelopeApikeyModel](#ResponseEnvelopeApikeyModel)
|
|
528
437
|
|
|
529
438
|
| Properties | Type | Nullable | Description |
|
|
530
|
-
| ---------- | ---- | -------- | ----------- |
|
|
531
|
-
| location_id | string | no | |
|
|
439
|
+
| ---------- | ---- | -------- | ----------- || error | string | no | || exception | string | no | || http_status | string | no | || items | [ApikeyModel](#ApikeyModel) | no | || message | string | no | || page | [Page](#Page) | no | || payload | [ApikeyModel](#ApikeyModel) | no | || status | number | no | || timestamp | string | no | || total_time_taken_in_millis | number | no | || trace_id | string | no | |
|
|
532
440
|
|
|
533
441
|
---
|
|
534
442
|
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
#### [ApikeyModel](#ApikeyModel)
|
|
443
|
+
#### [ResponseEnvelopeEmailJobMetrics](#ResponseEnvelopeEmailJobMetrics)
|
|
539
444
|
|
|
540
445
|
| Properties | Type | Nullable | Description |
|
|
541
|
-
| ---------- | ---- | -------- | ----------- |
|
|
542
|
-
| session_id | string | no | |
|
|
543
|
-
| error_message | string | no | |
|
|
446
|
+
| ---------- | ---- | -------- | ----------- || error | string | no | || exception | string | no | || http_status | string | no | || items | [EmailJobMetrics](#EmailJobMetrics) | no | || message | string | no | || page | [Page](#Page) | no | || payload | [EmailJobMetrics](#EmailJobMetrics) | no | || status | number | no | || timestamp | string | no | || total_time_taken_in_millis | number | no | || trace_id | string | no | |
|
|
544
447
|
|
|
545
448
|
---
|
|
546
449
|
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
#### [ResponseEnvelopeApikeyModel](#ResponseEnvelopeApikeyModel)
|
|
450
|
+
#### [ResponseEnvelopeJobConfigDTO](#ResponseEnvelopeJobConfigDTO)
|
|
551
451
|
|
|
552
452
|
| Properties | Type | Nullable | Description |
|
|
553
|
-
| ---------- | ---- | -------- | ----------- |
|
|
554
|
-
| timestamp | string | no | |
|
|
555
|
-
| status | number | no | |
|
|
556
|
-
| error | string | no | |
|
|
557
|
-
| exception | string | no | |
|
|
558
|
-
| message | string | no | |
|
|
559
|
-
| total_time_taken_in_millis | number | no | |
|
|
560
|
-
| http_status | string | no | |
|
|
561
|
-
| items | [ApikeyModel](#ApikeyModel) | no | |
|
|
562
|
-
| payload | [ApikeyModel](#ApikeyModel) | no | |
|
|
563
|
-
| trace_id | string | no | |
|
|
564
|
-
| page | [Page](#Page) | no | |
|
|
453
|
+
| ---------- | ---- | -------- | ----------- || error | string | no | || exception | string | no | || http_status | string | no | || items | [JobConfigDTO](#JobConfigDTO) | no | || message | string | no | || page | [Page](#Page) | no | || payload | [JobConfigDTO](#JobConfigDTO) | no | || status | number | no | || timestamp | string | no | || total_time_taken_in_millis | number | no | || trace_id | string | no | |
|
|
565
454
|
|
|
566
455
|
---
|
|
567
456
|
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
#### [DataTresholdDTO](#DataTresholdDTO)
|
|
457
|
+
#### [ResponseEnvelopeListJobConfigDTO](#ResponseEnvelopeListJobConfigDTO)
|
|
572
458
|
|
|
573
459
|
| Properties | Type | Nullable | Description |
|
|
574
|
-
| ---------- | ---- | -------- | ----------- |
|
|
575
|
-
| min_price | number | no | |
|
|
576
|
-
| safe_stock | number | no | |
|
|
577
|
-
| period_threshold | number | no | |
|
|
578
|
-
| period_threshold_type | string | no | |
|
|
579
|
-
| period_type_list | [[GenericDTO](#GenericDTO)] | no | |
|
|
460
|
+
| ---------- | ---- | -------- | ----------- || error | string | no | || exception | string | no | || http_status | string | no | || items | [[JobConfigDTO](#JobConfigDTO)] | no | || message | string | no | || page | [Page](#Page) | no | || payload | [[JobConfigDTO](#JobConfigDTO)] | no | || status | number | no | || timestamp | string | no | || total_time_taken_in_millis | number | no | || trace_id | string | no | |
|
|
580
461
|
|
|
581
462
|
---
|
|
582
463
|
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
#### [GenericDTO](#GenericDTO)
|
|
464
|
+
#### [ResponseEnvelopeObject](#ResponseEnvelopeObject)
|
|
587
465
|
|
|
588
466
|
| Properties | Type | Nullable | Description |
|
|
589
|
-
| ---------- | ---- | -------- | ----------- |
|
|
590
|
-
| text | string | no | |
|
|
591
|
-
| value | string | no | |
|
|
467
|
+
| ---------- | ---- | -------- | ----------- || error | string | no | || exception | string | no | || http_status | string | no | || items | string | no | || message | string | no | || page | [Page](#Page) | no | || payload | string | no | || status | number | no | || timestamp | string | no | || total_time_taken_in_millis | number | no | || trace_id | string | no | |
|
|
592
468
|
|
|
593
469
|
---
|
|
594
470
|
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
#### [JobConfigDTO](#JobConfigDTO)
|
|
471
|
+
#### [ResponseEnvelopeSlingshotConfigurationDetail](#ResponseEnvelopeSlingshotConfigurationDetail)
|
|
599
472
|
|
|
600
473
|
| Properties | Type | Nullable | Description |
|
|
601
|
-
| ---------- | ---- | -------- | ----------- |
|
|
602
|
-
| integration_data | string | no | |
|
|
603
|
-
| company_name | string | no | |
|
|
604
|
-
| integration | string | yes | |
|
|
605
|
-
| company_id | number | yes | |
|
|
606
|
-
| task_details | [TaskDTO](#TaskDTO) | no | |
|
|
607
|
-
| threshold_details | [DataTresholdDTO](#DataTresholdDTO) | no | |
|
|
608
|
-
| job_code | string | no | |
|
|
609
|
-
| alias | string | no | |
|
|
474
|
+
| ---------- | ---- | -------- | ----------- || error | string | no | || exception | string | no | || http_status | string | no | || items | [SlingshotConfigurationDetail](#SlingshotConfigurationDetail) | no | || message | string | no | || page | [Page](#Page) | no | || payload | [SlingshotConfigurationDetail](#SlingshotConfigurationDetail) | no | || status | number | no | || timestamp | string | no | || total_time_taken_in_millis | number | no | || trace_id | string | no | |
|
|
610
475
|
|
|
611
476
|
---
|
|
612
477
|
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
#### [ResponseEnvelopeJobConfigDTO](#ResponseEnvelopeJobConfigDTO)
|
|
478
|
+
#### [SlingshotConfigurationDetail](#SlingshotConfigurationDetail)
|
|
617
479
|
|
|
618
480
|
| Properties | Type | Nullable | Description |
|
|
619
|
-
| ---------- | ---- | -------- | ----------- |
|
|
620
|
-
| timestamp | string | no | |
|
|
621
|
-
| status | number | no | |
|
|
622
|
-
| error | string | no | |
|
|
623
|
-
| exception | string | no | |
|
|
624
|
-
| message | string | no | |
|
|
625
|
-
| total_time_taken_in_millis | number | no | |
|
|
626
|
-
| http_status | string | no | |
|
|
627
|
-
| items | [JobConfigDTO](#JobConfigDTO) | no | |
|
|
628
|
-
| payload | [JobConfigDTO](#JobConfigDTO) | no | |
|
|
629
|
-
| trace_id | string | no | |
|
|
630
|
-
| page | [Page](#Page) | no | |
|
|
481
|
+
| ---------- | ---- | -------- | ----------- || companies | [[GCompany](#GCompany)] | no | || integration | [SlingshotIntegration](#SlingshotIntegration) | no | |
|
|
631
482
|
|
|
632
483
|
---
|
|
633
484
|
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
#### [TaskDTO](#TaskDTO)
|
|
485
|
+
#### [SlingshotIntegration](#SlingshotIntegration)
|
|
638
486
|
|
|
639
487
|
| Properties | Type | Nullable | Description |
|
|
640
|
-
| ---------- | ---- | -------- | ----------- |
|
|
641
|
-
| type | number | no | |
|
|
642
|
-
| group_list | [[GenericDTO](#GenericDTO)] | no | |
|
|
488
|
+
| ---------- | ---- | -------- | ----------- || _id | string | no | || description | string | no | || meta | [[Metum](#Metum)] | no | || name | string | no | || slug | string | no | |
|
|
643
489
|
|
|
644
490
|
---
|
|
645
491
|
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
#### [ResponseEnvelopeListJobConfigDTO](#ResponseEnvelopeListJobConfigDTO)
|
|
492
|
+
#### [StoreData](#StoreData)
|
|
650
493
|
|
|
651
494
|
| Properties | Type | Nullable | Description |
|
|
652
|
-
| ---------- | ---- | -------- | ----------- |
|
|
653
|
-
| timestamp | string | no | |
|
|
654
|
-
| status | number | no | |
|
|
655
|
-
| error | string | no | |
|
|
656
|
-
| exception | string | no | |
|
|
657
|
-
| message | string | no | |
|
|
658
|
-
| total_time_taken_in_millis | number | no | |
|
|
659
|
-
| http_status | string | no | |
|
|
660
|
-
| items | [[JobConfigDTO](#JobConfigDTO)] | no | |
|
|
661
|
-
| payload | [[JobConfigDTO](#JobConfigDTO)] | no | |
|
|
662
|
-
| trace_id | string | no | |
|
|
663
|
-
| page | [Page](#Page) | no | |
|
|
495
|
+
| ---------- | ---- | -------- | ----------- || location_id | string | no | |
|
|
664
496
|
|
|
665
497
|
---
|
|
666
498
|
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
#### [ResponseEnvelopeObject](#ResponseEnvelopeObject)
|
|
499
|
+
#### [TaskDTO](#TaskDTO)
|
|
671
500
|
|
|
672
501
|
| Properties | Type | Nullable | Description |
|
|
673
|
-
| ---------- | ---- | -------- | ----------- |
|
|
674
|
-
| timestamp | string | no | |
|
|
675
|
-
| status | number | no | |
|
|
676
|
-
| error | string | no | |
|
|
677
|
-
| exception | string | no | |
|
|
678
|
-
| message | string | no | |
|
|
679
|
-
| total_time_taken_in_millis | number | no | |
|
|
680
|
-
| http_status | string | no | |
|
|
681
|
-
| items | string | no | |
|
|
682
|
-
| payload | string | no | |
|
|
683
|
-
| trace_id | string | no | |
|
|
684
|
-
| page | [Page](#Page) | no | |
|
|
502
|
+
| ---------- | ---- | -------- | ----------- || group_list | [[GenericDTO](#GenericDTO)] | no | || type | number | no | |
|
|
685
503
|
|
|
686
504
|
---
|
|
687
505
|
|