@gofynd/fdk-client-javascript 1.0.3 → 1.0.4
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 +31 -2
- package/index.d.ts +4 -4
- package/index.js +9 -10
- package/package.json +14 -14
- package/sdk/APIClient.d.ts +11 -0
- package/sdk/APIClient.js +35 -0
- package/sdk/Client.d.ts +6 -0
- package/sdk/Client.js +17 -0
- package/sdk/Config.d.ts +9 -0
- package/sdk/Config.js +17 -0
- package/sdk/application/Cart/CartApplicationClient.js +29 -28
- package/sdk/application/Cart/CartApplicationModel.js +3 -1
- package/sdk/application/Catalog/CatalogApplicationClient.js +43 -42
- package/sdk/application/Catalog/CatalogApplicationModel.js +1 -1
- package/sdk/application/Common/CommonApplicationClient.js +5 -4
- package/sdk/application/Communication/CommunicationApplicationClient.js +6 -5
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +21 -20
- package/sdk/application/Content/ContentApplicationClient.js +26 -25
- package/sdk/application/Content/ContentApplicationModel.js +1 -0
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +6 -5
- package/sdk/application/Lead/LeadApplicationClient.js +10 -9
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +1 -3
- package/sdk/application/Logistic/LogisticApplicationClient.js +11 -12
- package/sdk/application/Logistic/LogisticApplicationValidator.js +0 -1
- package/sdk/application/Order/OrderApplicationClient.js +15 -14
- package/sdk/application/Order/OrderApplicationModel.js +9 -0
- package/sdk/application/Payment/PaymentApplicationClient.js +42 -41
- package/sdk/application/PosCart/PosCartApplicationClient.js +30 -29
- package/sdk/application/PosCart/PosCartApplicationModel.js +3 -1
- package/sdk/application/Rewards/RewardsApplicationClient.js +11 -10
- package/sdk/application/Share/ShareApplicationClient.js +10 -9
- package/sdk/application/Theme/ThemeApplicationClient.js +7 -6
- package/sdk/application/User/UserApplicationClient.js +38 -37
- package/sdk/common/AxiosHelper.js +17 -6
- package/sdk/constructUrl.d.ts +5 -0
- package/sdk/constructUrl.js +13 -0
- package/sdk/index.d.ts +3 -0
- package/sdk/index.js +5 -0
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +3 -1
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +1 -1
- package/sdk/platform/Analytics/AnalyticsPlatformClient.js +5 -4
- package/sdk/platform/Analytics/AnalyticsPlatformValidator.js +1 -0
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +3 -2
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +1 -0
- package/sdk/platform/Billing/BillingPlatformClient.js +3 -2
- package/sdk/platform/Billing/BillingPlatformValidator.js +1 -0
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +27 -0
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +177 -1
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +3 -0
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +17 -1
- package/sdk/platform/Cart/CartPlatformModel.js +7 -3
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +3 -1
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +1 -1
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +2 -2
- package/sdk/platform/Catalog/CatalogPlatformClient.js +6 -9
- package/sdk/platform/Catalog/CatalogPlatformModel.js +7 -7
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +2 -1
- package/sdk/platform/Common/CommonPlatformClient.js +7 -18
- package/sdk/platform/Common/CommonPlatformValidator.js +1 -0
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +3 -1
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +1 -1
- package/sdk/platform/Communication/CommunicationPlatformClient.js +4 -3
- package/sdk/platform/Communication/CommunicationPlatformValidator.js +1 -0
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +5 -4
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +1 -0
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +3 -1
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +1 -1
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +9 -8
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +1 -0
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +0 -10
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +3 -62
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +0 -1
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +1 -7
- package/sdk/platform/Content/ContentPlatformModel.js +1 -0
- package/sdk/platform/Discount/DiscountPlatformClient.js +3 -2
- package/sdk/platform/Discount/DiscountPlatformValidator.js +1 -0
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +3 -3
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +27 -5
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +1 -1
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +3 -3
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +28 -6
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +1 -0
- package/sdk/platform/Inventory/InventoryPlatformClient.js +3 -2
- package/sdk/platform/Inventory/InventoryPlatformValidator.js +1 -0
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +3 -1
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +1 -1
- package/sdk/platform/Lead/LeadPlatformClient.js +4 -3
- package/sdk/platform/Lead/LeadPlatformValidator.js +1 -0
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +3 -1
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +1 -1
- package/sdk/platform/Order/OrderPlatformClient.d.ts +1 -1
- package/sdk/platform/Order/OrderPlatformClient.js +16 -3
- package/sdk/platform/Order/OrderPlatformModel.js +1 -0
- package/sdk/platform/Order/OrderPlatformValidator.js +1 -0
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +3 -1
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +1 -1
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +1 -1
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +14 -14
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +1 -1
- package/sdk/platform/Payment/PaymentPlatformClient.js +3 -2
- package/sdk/platform/Payment/PaymentPlatformValidator.js +1 -0
- package/sdk/platform/PlatformClient.d.ts +13 -9
- package/sdk/platform/PlatformClient.js +13 -9
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +4 -4
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +36 -17
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +1 -1
- package/sdk/platform/Share/SharePlatformApplicationClient.js +3 -1
- package/sdk/platform/Share/SharePlatformApplicationValidator.js +1 -1
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +3 -1
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +1 -1
- package/sdk/platform/User/UserPlatformApplicationClient.js +3 -1
- package/sdk/platform/User/UserPlatformApplicationValidator.js +1 -1
- package/sdk/platform/Webhook/WebhookPlatformClient.js +3 -2
- package/sdk/platform/Webhook/WebhookPlatformValidator.js +1 -0
- package/sdk/public/Configuration/ConfigurationPublicClient.js +2 -0
- package/sdk/public/Inventory/InventoryPublicClient.js +2 -0
- package/sdk/public/Webhook/WebhookPublicClient.js +2 -0
- package/.github/workflows/on_create_release.yml +0 -23
- package/.github/workflows/on_merge_main.yml +0 -38
- package/.github/workflows/on_pull_request.yml +0 -35
- package/.prettierrc +0 -5
- package/documentation/application/CART.md +0 -8771
- package/documentation/application/CATALOG.md +0 -8690
- package/documentation/application/COMMON.md +0 -325
- package/documentation/application/COMMUNICATION.md +0 -387
- package/documentation/application/CONFIGURATION.md +0 -2212
- package/documentation/application/CONTENT.md +0 -2629
- package/documentation/application/FILESTORAGE.md +0 -442
- package/documentation/application/LEAD.md +0 -1549
- package/documentation/application/LOGISTIC.md +0 -689
- package/documentation/application/ORDER.md +0 -2937
- package/documentation/application/PAYMENT.md +0 -4475
- package/documentation/application/POSCART.md +0 -9375
- package/documentation/application/README.md +0 -21
- package/documentation/application/REWARDS.md +0 -554
- package/documentation/application/SHARE.md +0 -635
- package/documentation/application/THEME.md +0 -5517
- package/documentation/application/USER.md +0 -3798
- package/documentation/platform/ANALYTICS.md +0 -1012
- package/documentation/platform/AUDITTRAIL.md +0 -493
- package/documentation/platform/BILLING.md +0 -1889
- package/documentation/platform/CART.md +0 -4711
- package/documentation/platform/CATALOG.md +0 -20522
- package/documentation/platform/COMMON.md +0 -325
- package/documentation/platform/COMMUNICATION.md +0 -4970
- package/documentation/platform/COMPANYPROFILE.md +0 -1646
- package/documentation/platform/CONFIGURATION.md +0 -6316
- package/documentation/platform/CONTENT.md +0 -8364
- package/documentation/platform/DISCOUNT.md +0 -767
- package/documentation/platform/FILESTORAGE.md +0 -945
- package/documentation/platform/INVENTORY.md +0 -1136
- package/documentation/platform/LEAD.md +0 -4394
- package/documentation/platform/ORDER.md +0 -6525
- package/documentation/platform/PARTNER.md +0 -193
- package/documentation/platform/PAYMENT.md +0 -3138
- package/documentation/platform/README.md +0 -27
- package/documentation/platform/REWARDS.md +0 -919
- package/documentation/platform/SHARE.md +0 -513
- package/documentation/platform/THEME.md +0 -35446
- package/documentation/platform/USER.md +0 -2174
- package/documentation/platform/WEBHOOK.md +0 -485
- package/documentation/public/CONFIGURATION.md +0 -325
- package/documentation/public/INVENTORY.md +0 -508
- package/documentation/public/WEBHOOK.md +0 -246
- package/jest.config.d.ts +0 -4
- package/jest.config.js +0 -6
- package/tests/application/catalog.spec.js +0 -54
- package/tests/common/action-url.spec.js +0 -35
- package/tests/common/schema/action-url.json +0 -178
- package/tests/common/schema/url-action.json +0 -683
- package/tests/common/url-action.spec.js +0 -48
- package/tests/helpers/cookie.helper.js +0 -31
- package/tests/helpers/oauth.helper.js +0 -43
- package/tests/platform/catalog.spec.js +0 -49
- package/tests/public/location.spec.js +0 -39
|
@@ -1,1136 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
##### [Back to Platform docs](./README.md)
|
|
7
|
-
|
|
8
|
-
## Inventory Methods
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
* [createJob](#createjob)
|
|
12
|
-
* [disable](#disable)
|
|
13
|
-
* [getConfigByCompany](#getconfigbycompany)
|
|
14
|
-
* [getJobByCode](#getjobbycode)
|
|
15
|
-
* [getJobByCompanyAndIntegration](#getjobbycompanyandintegration)
|
|
16
|
-
* [getJobCodeMetrics](#getjobcodemetrics)
|
|
17
|
-
* [getJobCodesByCompanyAndIntegration](#getjobcodesbycompanyandintegration)
|
|
18
|
-
* [getJobConfigDefaults](#getjobconfigdefaults)
|
|
19
|
-
* [getJobSteps](#getjobsteps)
|
|
20
|
-
* [getJobsByCompany](#getjobsbycompany)
|
|
21
|
-
* [suppressStores](#suppressstores)
|
|
22
|
-
* [updateJob](#updatejob)
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
## Methods with example and description
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
### createJob
|
|
32
|
-
Creates A New Job Config
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
```javascript
|
|
37
|
-
// Promise
|
|
38
|
-
const promise = client.inventory.createJob({ body : value });
|
|
39
|
-
|
|
40
|
-
// Async/Await
|
|
41
|
-
const data = await client.inventory.createJob({ body : value });
|
|
42
|
-
```
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
| Argument | Type | Required | Description |
|
|
49
|
-
| --------- | ----- | -------- | ----------- |
|
|
50
|
-
| body | [JobConfigDTO](#JobConfigDTO) | yes | Request body |
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
REST Endpoint that creates a new job config
|
|
54
|
-
|
|
55
|
-
*Returned Response:*
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
[ResponseEnvelopeString](#ResponseEnvelopeString)
|
|
61
|
-
|
|
62
|
-
Job Config Created Successfully
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
<details>
|
|
68
|
-
<summary><i> Example:</i></summary>
|
|
69
|
-
|
|
70
|
-
```json
|
|
71
|
-
|
|
72
|
-
```
|
|
73
|
-
</details>
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
---
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
### disable
|
|
87
|
-
Disable Job Config
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
```javascript
|
|
92
|
-
// Promise
|
|
93
|
-
const promise = client.inventory.disable({ integrationId : value });
|
|
94
|
-
|
|
95
|
-
// Async/Await
|
|
96
|
-
const data = await client.inventory.disable({ integrationId : value });
|
|
97
|
-
```
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
| Argument | Type | Required | Description |
|
|
104
|
-
| --------- | ----- | -------- | ----------- |
|
|
105
|
-
| integrationId | string | yes | IntegrationId |
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
REST Endpoint that disables Inventory Job Config
|
|
110
|
-
|
|
111
|
-
*Returned Response:*
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
[ResponseEnvelopeString](#ResponseEnvelopeString)
|
|
117
|
-
|
|
118
|
-
Successful operation
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
<details>
|
|
124
|
-
<summary><i> Example:</i></summary>
|
|
125
|
-
|
|
126
|
-
```json
|
|
127
|
-
|
|
128
|
-
```
|
|
129
|
-
</details>
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
---
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
### getConfigByCompany
|
|
143
|
-
Get Slingshot Configuration Of A Company
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
```javascript
|
|
148
|
-
// Promise
|
|
149
|
-
const promise = client.inventory.getConfigByCompany();
|
|
150
|
-
|
|
151
|
-
// Async/Await
|
|
152
|
-
const data = await client.inventory.getConfigByCompany();
|
|
153
|
-
```
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
REST Endpoint that returns all configuration detail of a company
|
|
161
|
-
|
|
162
|
-
*Returned Response:*
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
[ResponseEnvelopeListSlingshotConfigurationDetail](#ResponseEnvelopeListSlingshotConfigurationDetail)
|
|
168
|
-
|
|
169
|
-
Successful operation
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
<details>
|
|
175
|
-
<summary><i> Example:</i></summary>
|
|
176
|
-
|
|
177
|
-
```json
|
|
178
|
-
|
|
179
|
-
```
|
|
180
|
-
</details>
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
---
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
### getJobByCode
|
|
194
|
-
Get Job Config By Code
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
```javascript
|
|
199
|
-
// Promise
|
|
200
|
-
const promise = client.inventory.getJobByCode({ code : value });
|
|
201
|
-
|
|
202
|
-
// Async/Await
|
|
203
|
-
const data = await client.inventory.getJobByCode({ code : value });
|
|
204
|
-
```
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
| Argument | Type | Required | Description |
|
|
211
|
-
| --------- | ----- | -------- | ----------- |
|
|
212
|
-
| code | string | yes | Job Code |
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
REST Endpoint that returns job config by code
|
|
217
|
-
|
|
218
|
-
*Returned Response:*
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
[ResponseEnvelopeJobConfigDTO](#ResponseEnvelopeJobConfigDTO)
|
|
224
|
-
|
|
225
|
-
Successful operation
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
<details>
|
|
231
|
-
<summary><i> Example:</i></summary>
|
|
232
|
-
|
|
233
|
-
```json
|
|
234
|
-
|
|
235
|
-
```
|
|
236
|
-
</details>
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
---
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
### getJobByCompanyAndIntegration
|
|
250
|
-
Get Job Configs By Company And Integration
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
```javascript
|
|
255
|
-
// Promise
|
|
256
|
-
const promise = client.inventory.getJobByCompanyAndIntegration({ integrationId : value,
|
|
257
|
-
pageNo : value,
|
|
258
|
-
pageSize : value });
|
|
259
|
-
|
|
260
|
-
// Async/Await
|
|
261
|
-
const data = await client.inventory.getJobByCompanyAndIntegration({ integrationId : value,
|
|
262
|
-
pageNo : value,
|
|
263
|
-
pageSize : value });
|
|
264
|
-
```
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
| Argument | Type | Required | Description |
|
|
271
|
-
| --------- | ----- | -------- | ----------- |
|
|
272
|
-
| integrationId | string | yes | Integration Id |
|
|
273
|
-
| pageNo | number | no | Page Number |
|
|
274
|
-
| pageSize | number | no | Page Size |
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
REST Endpoint that returns all job configs by company And integration
|
|
279
|
-
|
|
280
|
-
*Returned Response:*
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
[ResponseEnvelopeListJobConfigDTO](#ResponseEnvelopeListJobConfigDTO)
|
|
286
|
-
|
|
287
|
-
Successful operation
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
<details>
|
|
293
|
-
<summary><i> Example:</i></summary>
|
|
294
|
-
|
|
295
|
-
```json
|
|
296
|
-
|
|
297
|
-
```
|
|
298
|
-
</details>
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
---
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
### getJobCodeMetrics
|
|
312
|
-
Get Job Metrics
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
```javascript
|
|
317
|
-
// Promise
|
|
318
|
-
const promise = client.inventory.getJobCodeMetrics({ code : value,
|
|
319
|
-
pageNo : value,
|
|
320
|
-
pageSize : value,
|
|
321
|
-
status : value,
|
|
322
|
-
date : value });
|
|
323
|
-
|
|
324
|
-
// Async/Await
|
|
325
|
-
const data = await client.inventory.getJobCodeMetrics({ code : value,
|
|
326
|
-
pageNo : value,
|
|
327
|
-
pageSize : value,
|
|
328
|
-
status : value,
|
|
329
|
-
date : value });
|
|
330
|
-
```
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
| Argument | Type | Required | Description |
|
|
337
|
-
| --------- | ----- | -------- | ----------- |
|
|
338
|
-
| code | string | yes | Code |
|
|
339
|
-
| pageNo | number | no | Page Number |
|
|
340
|
-
| pageSize | number | no | Page Size |
|
|
341
|
-
| status | string | no | Status |
|
|
342
|
-
| date | string | no | From Date |
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
REST Endpoint that returns Inventory Run History For A Job Code
|
|
347
|
-
|
|
348
|
-
*Returned Response:*
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
[ResponseEnvelopeJobMetricsDto](#ResponseEnvelopeJobMetricsDto)
|
|
354
|
-
|
|
355
|
-
Successful operation
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
<details>
|
|
361
|
-
<summary><i> Example:</i></summary>
|
|
362
|
-
|
|
363
|
-
```json
|
|
364
|
-
|
|
365
|
-
```
|
|
366
|
-
</details>
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
---
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
### getJobCodesByCompanyAndIntegration
|
|
380
|
-
Get Job Codes By Company And Integration
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
```javascript
|
|
385
|
-
// Promise
|
|
386
|
-
const promise = client.inventory.getJobCodesByCompanyAndIntegration({ integrationId : value,
|
|
387
|
-
pageNo : value,
|
|
388
|
-
pageSize : value });
|
|
389
|
-
|
|
390
|
-
// Async/Await
|
|
391
|
-
const data = await client.inventory.getJobCodesByCompanyAndIntegration({ integrationId : value,
|
|
392
|
-
pageNo : value,
|
|
393
|
-
pageSize : value });
|
|
394
|
-
```
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
| Argument | Type | Required | Description |
|
|
401
|
-
| --------- | ----- | -------- | ----------- |
|
|
402
|
-
| integrationId | string | yes | Integration Id |
|
|
403
|
-
| pageNo | number | no | Page Number |
|
|
404
|
-
| pageSize | number | no | Page Size |
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
REST Endpoint that returns all job codes by company And integration
|
|
409
|
-
|
|
410
|
-
*Returned Response:*
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
[ResponseEnvelopeListJobConfigListDTO](#ResponseEnvelopeListJobConfigListDTO)
|
|
416
|
-
|
|
417
|
-
Successful operation
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
<details>
|
|
423
|
-
<summary><i> Example:</i></summary>
|
|
424
|
-
|
|
425
|
-
```json
|
|
426
|
-
|
|
427
|
-
```
|
|
428
|
-
</details>
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
---
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
### getJobConfigDefaults
|
|
442
|
-
Get Job Configs Defaults
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
```javascript
|
|
447
|
-
// Promise
|
|
448
|
-
const promise = client.inventory.getJobConfigDefaults();
|
|
449
|
-
|
|
450
|
-
// Async/Await
|
|
451
|
-
const data = await client.inventory.getJobConfigDefaults();
|
|
452
|
-
```
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
REST Endpoint that returns default fields job configs by company And integration
|
|
460
|
-
|
|
461
|
-
*Returned Response:*
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
[ResponseEnvelopeJobConfigDTO](#ResponseEnvelopeJobConfigDTO)
|
|
467
|
-
|
|
468
|
-
Successful operation
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
<details>
|
|
474
|
-
<summary><i> Example:</i></summary>
|
|
475
|
-
|
|
476
|
-
```json
|
|
477
|
-
|
|
478
|
-
```
|
|
479
|
-
</details>
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
---
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
### getJobSteps
|
|
493
|
-
Get Job Code Steps
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
```javascript
|
|
498
|
-
// Promise
|
|
499
|
-
const promise = client.inventory.getJobSteps({ jobId : value });
|
|
500
|
-
|
|
501
|
-
// Async/Await
|
|
502
|
-
const data = await client.inventory.getJobSteps({ jobId : value });
|
|
503
|
-
```
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
| Argument | Type | Required | Description |
|
|
510
|
-
| --------- | ----- | -------- | ----------- |
|
|
511
|
-
| jobId | number | yes | Job Id |
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
REST Endpoint that returns Inventory Job Steps
|
|
516
|
-
|
|
517
|
-
*Returned Response:*
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
[ResponseEnvelopeListJobStepsDTO](#ResponseEnvelopeListJobStepsDTO)
|
|
523
|
-
|
|
524
|
-
Successful operation
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
<details>
|
|
530
|
-
<summary><i> Example:</i></summary>
|
|
531
|
-
|
|
532
|
-
```json
|
|
533
|
-
|
|
534
|
-
```
|
|
535
|
-
</details>
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
---
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
### getJobsByCompany
|
|
549
|
-
Get Job Configs For A Company
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
```javascript
|
|
554
|
-
// Promise
|
|
555
|
-
const promise = client.inventory.getJobsByCompany({ pageNo : value,
|
|
556
|
-
pageSize : value });
|
|
557
|
-
|
|
558
|
-
// Async/Await
|
|
559
|
-
const data = await client.inventory.getJobsByCompany({ pageNo : value,
|
|
560
|
-
pageSize : value });
|
|
561
|
-
```
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
| Argument | Type | Required | Description |
|
|
568
|
-
| --------- | ----- | -------- | ----------- |
|
|
569
|
-
| pageNo | number | no | Page Number |
|
|
570
|
-
| pageSize | number | no | Page Size |
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
REST Endpoint that returns all job configs for a company
|
|
575
|
-
|
|
576
|
-
*Returned Response:*
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
[ResponseEnvelopeListJobConfigRawDTO](#ResponseEnvelopeListJobConfigRawDTO)
|
|
582
|
-
|
|
583
|
-
Successful operation
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
<details>
|
|
589
|
-
<summary><i> Example:</i></summary>
|
|
590
|
-
|
|
591
|
-
```json
|
|
592
|
-
|
|
593
|
-
```
|
|
594
|
-
</details>
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
---
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
### suppressStores
|
|
608
|
-
Get Slingshot Configuration Of A Company
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
```javascript
|
|
613
|
-
// Promise
|
|
614
|
-
const promise = client.inventory.suppressStores({ body : value });
|
|
615
|
-
|
|
616
|
-
// Async/Await
|
|
617
|
-
const data = await client.inventory.suppressStores({ body : value });
|
|
618
|
-
```
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
| Argument | Type | Required | Description |
|
|
625
|
-
| --------- | ----- | -------- | ----------- |
|
|
626
|
-
| body | [SuppressStorePayload](#SuppressStorePayload) | yes | Request body |
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
REST Endpoint that returns all configuration detail of a company
|
|
630
|
-
|
|
631
|
-
*Returned Response:*
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
[ResponseEnvelopeKafkaResponse](#ResponseEnvelopeKafkaResponse)
|
|
637
|
-
|
|
638
|
-
Successful operation
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
<details>
|
|
644
|
-
<summary><i> Example:</i></summary>
|
|
645
|
-
|
|
646
|
-
```json
|
|
647
|
-
|
|
648
|
-
```
|
|
649
|
-
</details>
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
---
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
### updateJob
|
|
663
|
-
Updates An Existing Job Config
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
```javascript
|
|
668
|
-
// Promise
|
|
669
|
-
const promise = client.inventory.updateJob({ body : value });
|
|
670
|
-
|
|
671
|
-
// Async/Await
|
|
672
|
-
const data = await client.inventory.updateJob({ body : value });
|
|
673
|
-
```
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
| Argument | Type | Required | Description |
|
|
680
|
-
| --------- | ----- | -------- | ----------- |
|
|
681
|
-
| body | [JobConfigDTO](#JobConfigDTO) | yes | Request body |
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
REST Endpoint that updates a job config
|
|
685
|
-
|
|
686
|
-
*Returned Response:*
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
[ResponseEnvelopeString](#ResponseEnvelopeString)
|
|
692
|
-
|
|
693
|
-
Job Config Updated Successfully
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
<details>
|
|
699
|
-
<summary><i> Example:</i></summary>
|
|
700
|
-
|
|
701
|
-
```json
|
|
702
|
-
|
|
703
|
-
```
|
|
704
|
-
</details>
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
---
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
### Schemas
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
#### [ArchiveConfig](#ArchiveConfig)
|
|
722
|
-
|
|
723
|
-
| Properties | Type | Nullable | Description |
|
|
724
|
-
| ---------- | ---- | -------- | ----------- || archive | boolean | no | || archive_dir | string | no | || delete | boolean | no | |
|
|
725
|
-
|
|
726
|
-
---
|
|
727
|
-
|
|
728
|
-
#### [Audit](#Audit)
|
|
729
|
-
|
|
730
|
-
| Properties | Type | Nullable | Description |
|
|
731
|
-
| ---------- | ---- | -------- | ----------- || created_by | string | no | || created_on | string | no | || modified_by | string | no | || modified_on | string | no | |
|
|
732
|
-
|
|
733
|
-
---
|
|
734
|
-
|
|
735
|
-
#### [AWSS3config](#AWSS3config)
|
|
736
|
-
|
|
737
|
-
| Properties | Type | Nullable | Description |
|
|
738
|
-
| ---------- | ---- | -------- | ----------- || access_key | string | no | || archive | boolean | no | || archive_config | [ArchiveConfig](#ArchiveConfig) | no | || archive_path | string | no | || bucket | string | no | || delete | boolean | no | || dir | string | no | || file_regex | string | no | || local_file_path | string | no | || region | string | no | || secret_key | string | no | || unzip | boolean | no | || zip_format | string | no | |
|
|
739
|
-
|
|
740
|
-
---
|
|
741
|
-
|
|
742
|
-
#### [CatalogMasterConfig](#CatalogMasterConfig)
|
|
743
|
-
|
|
744
|
-
| Properties | Type | Nullable | Description |
|
|
745
|
-
| ---------- | ---- | -------- | ----------- || source_slug | string | no | |
|
|
746
|
-
|
|
747
|
-
---
|
|
748
|
-
|
|
749
|
-
#### [CompanyConfig](#CompanyConfig)
|
|
750
|
-
|
|
751
|
-
| Properties | Type | Nullable | Description |
|
|
752
|
-
| ---------- | ---- | -------- | ----------- || company_id | number | no | || delete_quantity_threshold | number | no | || exclude_steps | [number] | no | || hidden_closet_keys | [string] | no | || open_tags | string | no | || tax_identifiers | [string] | no | |
|
|
753
|
-
|
|
754
|
-
---
|
|
755
|
-
|
|
756
|
-
#### [DataTresholdDTO](#DataTresholdDTO)
|
|
757
|
-
|
|
758
|
-
| Properties | Type | Nullable | Description |
|
|
759
|
-
| ---------- | ---- | -------- | ----------- || min_price | number | no | || period_threshold | number | no | || period_threshold_type | string | no | || period_type_list | [[GenericDTO](#GenericDTO)] | no | || safe_stock | number | no | |
|
|
760
|
-
|
|
761
|
-
---
|
|
762
|
-
|
|
763
|
-
#### [DBConfig](#DBConfig)
|
|
764
|
-
|
|
765
|
-
| Properties | Type | Nullable | Description |
|
|
766
|
-
| ---------- | ---- | -------- | ----------- || dbname | string | no | || driver_class | string | no | || host | string | no | || jdbc_url | string | no | || optional_properties | [String: string] | no | || password | string | no | || port | number | no | || procedure | boolean | no | || query | string | no | || username | string | no | || vendor | string | no | |
|
|
767
|
-
|
|
768
|
-
---
|
|
769
|
-
|
|
770
|
-
#### [DBConnectionProfile](#DBConnectionProfile)
|
|
771
|
-
|
|
772
|
-
| Properties | Type | Nullable | Description |
|
|
773
|
-
| ---------- | ---- | -------- | ----------- || inventory | string | no | |
|
|
774
|
-
|
|
775
|
-
---
|
|
776
|
-
|
|
777
|
-
#### [DBParamConfig](#DBParamConfig)
|
|
778
|
-
|
|
779
|
-
| Properties | Type | Nullable | Description |
|
|
780
|
-
| ---------- | ---- | -------- | ----------- || params | string | no | |
|
|
781
|
-
|
|
782
|
-
---
|
|
783
|
-
|
|
784
|
-
#### [DefaultHeadersDTO](#DefaultHeadersDTO)
|
|
785
|
-
|
|
786
|
-
| Properties | Type | Nullable | Description |
|
|
787
|
-
| ---------- | ---- | -------- | ----------- || intf_article_id | [PropBeanDTO](#PropBeanDTO) | no | || price_effective | [PropBeanDTO](#PropBeanDTO) | no | || quantity | [PropBeanDTO](#PropBeanDTO) | no | || store | [PropBeanDTO](#PropBeanDTO) | no | |
|
|
788
|
-
|
|
789
|
-
---
|
|
790
|
-
|
|
791
|
-
#### [DocMappingConfig](#DocMappingConfig)
|
|
792
|
-
|
|
793
|
-
| Properties | Type | Nullable | Description |
|
|
794
|
-
| ---------- | ---- | -------- | ----------- || default_headers | [DefaultHeadersDTO](#DefaultHeadersDTO) | no | || junk_data_threshold_count | number | no | || prop_bean_configs | [[PropBeanConfig](#PropBeanConfig)] | no | || properties | string | no | || unwind_field | string | no | |
|
|
795
|
-
|
|
796
|
-
---
|
|
797
|
-
|
|
798
|
-
#### [EmailConfig](#EmailConfig)
|
|
799
|
-
|
|
800
|
-
| Properties | Type | Nullable | Description |
|
|
801
|
-
| ---------- | ---- | -------- | ----------- || archive_config | [ArchiveConfig](#ArchiveConfig) | no | || attachment_mandate | boolean | no | || attachment_regex | string | no | || body_content_regex | string | no | || content_type | string | no | || downloadable_link | boolean | no | || filter_based_on_recepients | boolean | no | || filter_files_after_extraction | boolean | no | || folder_name_hierarchies | [string] | no | || host | string | no | || local_dir | string | no | || password | string | no | || password_protected | boolean | no | || pcol | string | no | || properties | [String: string] | no | || read_all_unread_mails | boolean | no | || read_from_content | boolean | no | || recepient | string | no | || sender_address | string | no | || subject_line_regex | string | no | || unzip | boolean | no | || username | string | no | || zip_format | string | no | |
|
|
802
|
-
|
|
803
|
-
---
|
|
804
|
-
|
|
805
|
-
#### [FileConfig](#FileConfig)
|
|
806
|
-
|
|
807
|
-
| Properties | Type | Nullable | Description |
|
|
808
|
-
| ---------- | ---- | -------- | ----------- || charset | string | no | || data_start_index | number | no | || default_headers | [DefaultHeadersDTO](#DefaultHeadersDTO) | no | || delimiter | string | no | || escape_char | string | no | || file_has_header | boolean | no | || file_type | string | no | || header_array | [string] | no | || header_index | number | no | || junk_data_threshold_count | number | no | || line_validity_check | boolean | no | || prop_bean_configs | [[PropBeanConfig](#PropBeanConfig)] | no | || properties | string | no | || quote_char | string | no | || read_all_sheets | boolean | no | || sheet_names | [string] | no | |
|
|
809
|
-
|
|
810
|
-
---
|
|
811
|
-
|
|
812
|
-
#### [FTPConfig](#FTPConfig)
|
|
813
|
-
|
|
814
|
-
| Properties | Type | Nullable | Description |
|
|
815
|
-
| ---------- | ---- | -------- | ----------- || archive_config | [ArchiveConfig](#ArchiveConfig) | no | || file_regex | string | no | || host | string | no | || interval | number | no | || local_dir | string | no | || password | string | no | || port | number | no | || read_all_files | boolean | no | || remote_dir | string | no | || retries | number | no | || unzip | boolean | no | || username | string | no | || zip_file_regex | string | no | || zip_format | string | no | |
|
|
816
|
-
|
|
817
|
-
---
|
|
818
|
-
|
|
819
|
-
#### [GCompany](#GCompany)
|
|
820
|
-
|
|
821
|
-
| Properties | Type | Nullable | Description |
|
|
822
|
-
| ---------- | ---- | -------- | ----------- || _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 | |
|
|
823
|
-
|
|
824
|
-
---
|
|
825
|
-
|
|
826
|
-
#### [GenericDTO](#GenericDTO)
|
|
827
|
-
|
|
828
|
-
| Properties | Type | Nullable | Description |
|
|
829
|
-
| ---------- | ---- | -------- | ----------- || text | string | no | || value | string | no | |
|
|
830
|
-
|
|
831
|
-
---
|
|
832
|
-
|
|
833
|
-
#### [GoogleSpreadSheetConfig](#GoogleSpreadSheetConfig)
|
|
834
|
-
|
|
835
|
-
| Properties | Type | Nullable | Description |
|
|
836
|
-
| ---------- | ---- | -------- | ----------- || archive_config | [ArchiveConfig](#ArchiveConfig) | no | || client_secret_location | string | no | || cred_storage_directory | string | no | || local_dir | string | no | || range | string | no | || sheet_id | string | no | |
|
|
837
|
-
|
|
838
|
-
---
|
|
839
|
-
|
|
840
|
-
#### [GStore](#GStore)
|
|
841
|
-
|
|
842
|
-
| Properties | Type | Nullable | Description |
|
|
843
|
-
| ---------- | ---- | -------- | ----------- || _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 | |
|
|
844
|
-
|
|
845
|
-
---
|
|
846
|
-
|
|
847
|
-
#### [HttpConfig](#HttpConfig)
|
|
848
|
-
|
|
849
|
-
| Properties | Type | Nullable | Description |
|
|
850
|
-
| ---------- | ---- | -------- | ----------- || archive_config | [ArchiveConfig](#ArchiveConfig) | no | || hosturl | string | no | || http_method | string | no | || local_path | string | no | || password | string | no | || request_params | [String: string] | no | || request_payload | string | no | || username | string | no | |
|
|
851
|
-
|
|
852
|
-
---
|
|
853
|
-
|
|
854
|
-
#### [JobConfig](#JobConfig)
|
|
855
|
-
|
|
856
|
-
| Properties | Type | Nullable | Description |
|
|
857
|
-
| ---------- | ---- | -------- | ----------- || _id | number | no | || aggregator_types | [string] | no | || alias | string | no | || audit | [Audit](#Audit) | no | || catalog_master_config | [CatalogMasterConfig](#CatalogMasterConfig) | no | || company_config | [[CompanyConfig](#CompanyConfig)] | no | || company_ids | [number] | no | || cron_expression | string | no | || db_connection_profile | [DBConnectionProfile](#DBConnectionProfile) | no | || delete_quantity_threshold | number | no | || dependent_job_codes | [string] | no | || disable | boolean | no | || immediate_first_run | boolean | no | || integration_type | string | no | || job_code | string | no | || min_price | number | no | || open_tags | string | no | || params | string | no | || period_threshold | number | no | || period_threshold_type | string | no | || priority | string | no | || process_config | [ProcessConfig](#ProcessConfig) | no | || properties | [String: string] | no | || store_config | [[StoreConfig](#StoreConfig)] | no | || store_filter | [StoreFilter](#StoreFilter) | no | || sync_delay | number | no | || task_type | string | no | || tax_identifiers | [string] | no | || version | number | no | |
|
|
858
|
-
|
|
859
|
-
---
|
|
860
|
-
|
|
861
|
-
#### [JobConfigDTO](#JobConfigDTO)
|
|
862
|
-
|
|
863
|
-
| Properties | Type | Nullable | Description |
|
|
864
|
-
| ---------- | ---- | -------- | ----------- || 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 | |
|
|
865
|
-
|
|
866
|
-
---
|
|
867
|
-
|
|
868
|
-
#### [JobConfigListDTO](#JobConfigListDTO)
|
|
869
|
-
|
|
870
|
-
| Properties | Type | Nullable | Description |
|
|
871
|
-
| ---------- | ---- | -------- | ----------- || active | boolean | no | || alias | string | no | || code | string | no | || created_by | string | no | || created_on | string | no | || modified_by | string | no | || modified_on | string | no | || type | string | no | |
|
|
872
|
-
|
|
873
|
-
---
|
|
874
|
-
|
|
875
|
-
#### [JobConfigRawDTO](#JobConfigRawDTO)
|
|
876
|
-
|
|
877
|
-
| Properties | Type | Nullable | Description |
|
|
878
|
-
| ---------- | ---- | -------- | ----------- || company_id | number | yes | || company_name | string | yes | || data | [JobConfig](#JobConfig) | no | || integration | string | yes | |
|
|
879
|
-
|
|
880
|
-
---
|
|
881
|
-
|
|
882
|
-
#### [JobHistoryDto](#JobHistoryDto)
|
|
883
|
-
|
|
884
|
-
| Properties | Type | Nullable | Description |
|
|
885
|
-
| ---------- | ---- | -------- | ----------- || error_type | string | no | || filename | [string] | no | || job_code | string | no | || job_id | number | no | || message | string | no | || processed_on | string | no | || status | string | no | || total_added_count | number | no | || total_initial_count | number | no | || total_suppressed_count | number | no | || total_updated_count | number | no | |
|
|
886
|
-
|
|
887
|
-
---
|
|
888
|
-
|
|
889
|
-
#### [JobMetricsDto](#JobMetricsDto)
|
|
890
|
-
|
|
891
|
-
| Properties | Type | Nullable | Description |
|
|
892
|
-
| ---------- | ---- | -------- | ----------- || is_run_more_than_usual | string | no | || job_code | string | no | || job_history | [[JobHistoryDto](#JobHistoryDto)] | no | || total_failure_count | number | no | || total_job_runs | number | no | || total_success_count | number | no | || total_suppressed_count | number | no | || total_warning_count | number | no | |
|
|
893
|
-
|
|
894
|
-
---
|
|
895
|
-
|
|
896
|
-
#### [JobStepsDTO](#JobStepsDTO)
|
|
897
|
-
|
|
898
|
-
| Properties | Type | Nullable | Description |
|
|
899
|
-
| ---------- | ---- | -------- | ----------- || deleted_count | number | no | || end_count | number | no | || processed_at | string | no | || processed_start_time | string | no | || start_count | number | no | || step_execution_time | number | no | || step_name | string | no | || type | string | no | |
|
|
900
|
-
|
|
901
|
-
---
|
|
902
|
-
|
|
903
|
-
#### [JsonDocConfig](#JsonDocConfig)
|
|
904
|
-
|
|
905
|
-
| Properties | Type | Nullable | Description |
|
|
906
|
-
| ---------- | ---- | -------- | ----------- || prop_bean_configs | [[PropBeanConfig](#PropBeanConfig)] | no | |
|
|
907
|
-
|
|
908
|
-
---
|
|
909
|
-
|
|
910
|
-
#### [KafkaMetaModel](#KafkaMetaModel)
|
|
911
|
-
|
|
912
|
-
| Properties | Type | Nullable | Description |
|
|
913
|
-
| ---------- | ---- | -------- | ----------- || action | string | no | || batch_id | number | no | || created_on | string | no | || created_timestamp | number | no | || job_type | string | no | || trace | [string] | no | |
|
|
914
|
-
|
|
915
|
-
---
|
|
916
|
-
|
|
917
|
-
#### [KafkaResponse](#KafkaResponse)
|
|
918
|
-
|
|
919
|
-
| Properties | Type | Nullable | Description |
|
|
920
|
-
| ---------- | ---- | -------- | ----------- || offset | number | no | || partition | number | no | |
|
|
921
|
-
|
|
922
|
-
---
|
|
923
|
-
|
|
924
|
-
#### [LocalFileConfig](#LocalFileConfig)
|
|
925
|
-
|
|
926
|
-
| Properties | Type | Nullable | Description |
|
|
927
|
-
| ---------- | ---- | -------- | ----------- || archive_config | [ArchiveConfig](#ArchiveConfig) | no | || file_regex | string | no | || interval | number | no | || local_dir | string | no | || read_all_files | boolean | no | || retries | number | no | || unzip | boolean | no | || working_dir | string | no | || zip_file_regex | string | no | || zip_format | string | no | |
|
|
928
|
-
|
|
929
|
-
---
|
|
930
|
-
|
|
931
|
-
#### [Metum](#Metum)
|
|
932
|
-
|
|
933
|
-
| Properties | Type | Nullable | Description |
|
|
934
|
-
| ---------- | ---- | -------- | ----------- || _id | string | no | || name | string | no | || value | string | no | |
|
|
935
|
-
|
|
936
|
-
---
|
|
937
|
-
|
|
938
|
-
#### [MongoDocConfig](#MongoDocConfig)
|
|
939
|
-
|
|
940
|
-
| Properties | Type | Nullable | Description |
|
|
941
|
-
| ---------- | ---- | -------- | ----------- || aggregate_pipeline | [string] | no | || collection_name | string | no | || find_query | string | no | || projection_query | string | no | || prop_bean_configs | [[PropBeanConfig](#PropBeanConfig)] | no | || skip_save | boolean | no | |
|
|
942
|
-
|
|
943
|
-
---
|
|
944
|
-
|
|
945
|
-
#### [OAuthConfig](#OAuthConfig)
|
|
946
|
-
|
|
947
|
-
| Properties | Type | Nullable | Description |
|
|
948
|
-
| ---------- | ---- | -------- | ----------- || consumer_key | string | no | || consumer_secret | string | no | || function_name | string | no | || interval | number | no | || limit | number | no | || pages | number | no | || rest_base_url | string | no | || rest_url | string | no | || token | string | no | || token_secret | string | no | |
|
|
949
|
-
|
|
950
|
-
---
|
|
951
|
-
|
|
952
|
-
#### [Page](#Page)
|
|
953
|
-
|
|
954
|
-
| Properties | Type | Nullable | Description |
|
|
955
|
-
| ---------- | ---- | -------- | ----------- || 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 | |
|
|
956
|
-
|
|
957
|
-
---
|
|
958
|
-
|
|
959
|
-
#### [ProcessConfig](#ProcessConfig)
|
|
960
|
-
|
|
961
|
-
| Properties | Type | Nullable | Description |
|
|
962
|
-
| ---------- | ---- | -------- | ----------- || aws_s3_config | [AWSS3config](#AWSS3config) | no | || db_config | [DBConfig](#DBConfig) | no | || db_param_config | [DBParamConfig](#DBParamConfig) | no | || doc_mapping_config | [DocMappingConfig](#DocMappingConfig) | no | || email_config | [EmailConfig](#EmailConfig) | no | || file_config | [FileConfig](#FileConfig) | no | || ftp_config | [FTPConfig](#FTPConfig) | no | || google_spreadsheet_config | [GoogleSpreadSheetConfig](#GoogleSpreadSheetConfig) | no | || http_config | [HttpConfig](#HttpConfig) | no | || json_doc_config | [JsonDocConfig](#JsonDocConfig) | no | || local_file_config | [LocalFileConfig](#LocalFileConfig) | no | || mongo_doc_config | [MongoDocConfig](#MongoDocConfig) | no | || oauth_config | [OAuthConfig](#OAuthConfig) | no | || sftp_config | [SFTPConfig](#SFTPConfig) | no | || task_step_config | [TaskStepConfig](#TaskStepConfig) | no | |
|
|
963
|
-
|
|
964
|
-
---
|
|
965
|
-
|
|
966
|
-
#### [PropBeanConfig](#PropBeanConfig)
|
|
967
|
-
|
|
968
|
-
| Properties | Type | Nullable | Description |
|
|
969
|
-
| ---------- | ---- | -------- | ----------- || all_param_function_name | string | no | || concat_str | string | no | || const_value | string | no | || data_type | string | no | || default_value | string | no | || destination_field | string | no | || enrich_from_master | boolean | no | || function_name | string | no | || identifier_type | string | no | || ignore_if_not_exists | boolean | no | || include | boolean | no | || index_field | string | no | || optional | boolean | no | || projection_query | string | no | || required | boolean | no | || send | [Send](#Send) | no | || source_field | string | no | || source_fields | [string] | no | || sub_separator | string | no | || transformer_name | string | no | || validations | [string] | no | || values | [string] | no | |
|
|
970
|
-
|
|
971
|
-
---
|
|
972
|
-
|
|
973
|
-
#### [PropBeanDTO](#PropBeanDTO)
|
|
974
|
-
|
|
975
|
-
| Properties | Type | Nullable | Description |
|
|
976
|
-
| ---------- | ---- | -------- | ----------- || all_param_function_name | string | no | || concat_str | string | no | || const_value | string | no | || data_type | string | no | || default_value | string | no | || destination_field | string | no | || enrich_from_master | boolean | no | || function_name | string | no | || identifier_type | string | no | || ignore_if_not_exists | boolean | no | || include | boolean | no | || index_field | string | no | || optional | boolean | no | || projection_query | string | no | || required | boolean | no | || source_field | string | no | || source_fields | [string] | no | || sub_separator | string | no | || transformer_name | string | no | |
|
|
977
|
-
|
|
978
|
-
---
|
|
979
|
-
|
|
980
|
-
#### [ResponseEnvelopeJobConfigDTO](#ResponseEnvelopeJobConfigDTO)
|
|
981
|
-
|
|
982
|
-
| Properties | Type | Nullable | Description |
|
|
983
|
-
| ---------- | ---- | -------- | ----------- || 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 | |
|
|
984
|
-
|
|
985
|
-
---
|
|
986
|
-
|
|
987
|
-
#### [ResponseEnvelopeJobMetricsDto](#ResponseEnvelopeJobMetricsDto)
|
|
988
|
-
|
|
989
|
-
| Properties | Type | Nullable | Description |
|
|
990
|
-
| ---------- | ---- | -------- | ----------- || error | string | no | || exception | string | no | || http_status | string | no | || items | [JobMetricsDto](#JobMetricsDto) | no | || message | string | no | || page | [Page](#Page) | no | || payload | [JobMetricsDto](#JobMetricsDto) | no | || status | number | no | || timestamp | string | no | || total_time_taken_in_millis | number | no | || trace_id | string | no | |
|
|
991
|
-
|
|
992
|
-
---
|
|
993
|
-
|
|
994
|
-
#### [ResponseEnvelopeKafkaResponse](#ResponseEnvelopeKafkaResponse)
|
|
995
|
-
|
|
996
|
-
| Properties | Type | Nullable | Description |
|
|
997
|
-
| ---------- | ---- | -------- | ----------- || error | string | no | || exception | string | no | || http_status | string | no | || items | [KafkaResponse](#KafkaResponse) | no | || message | string | no | || page | [Page](#Page) | no | || payload | [KafkaResponse](#KafkaResponse) | no | || status | number | no | || timestamp | string | no | || total_time_taken_in_millis | number | no | || trace_id | string | no | |
|
|
998
|
-
|
|
999
|
-
---
|
|
1000
|
-
|
|
1001
|
-
#### [ResponseEnvelopeListJobConfigDTO](#ResponseEnvelopeListJobConfigDTO)
|
|
1002
|
-
|
|
1003
|
-
| Properties | Type | Nullable | Description |
|
|
1004
|
-
| ---------- | ---- | -------- | ----------- || 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 | |
|
|
1005
|
-
|
|
1006
|
-
---
|
|
1007
|
-
|
|
1008
|
-
#### [ResponseEnvelopeListJobConfigListDTO](#ResponseEnvelopeListJobConfigListDTO)
|
|
1009
|
-
|
|
1010
|
-
| Properties | Type | Nullable | Description |
|
|
1011
|
-
| ---------- | ---- | -------- | ----------- || error | string | no | || exception | string | no | || http_status | string | no | || items | [[JobConfigListDTO](#JobConfigListDTO)] | no | || message | string | no | || page | [Page](#Page) | no | || payload | [[JobConfigListDTO](#JobConfigListDTO)] | no | || status | number | no | || timestamp | string | no | || total_time_taken_in_millis | number | no | || trace_id | string | no | |
|
|
1012
|
-
|
|
1013
|
-
---
|
|
1014
|
-
|
|
1015
|
-
#### [ResponseEnvelopeListJobConfigRawDTO](#ResponseEnvelopeListJobConfigRawDTO)
|
|
1016
|
-
|
|
1017
|
-
| Properties | Type | Nullable | Description |
|
|
1018
|
-
| ---------- | ---- | -------- | ----------- || error | string | no | || exception | string | no | || http_status | string | no | || items | [[JobConfigRawDTO](#JobConfigRawDTO)] | no | || message | string | no | || page | [Page](#Page) | no | || payload | [[JobConfigRawDTO](#JobConfigRawDTO)] | no | || status | number | no | || timestamp | string | no | || total_time_taken_in_millis | number | no | || trace_id | string | no | |
|
|
1019
|
-
|
|
1020
|
-
---
|
|
1021
|
-
|
|
1022
|
-
#### [ResponseEnvelopeListJobStepsDTO](#ResponseEnvelopeListJobStepsDTO)
|
|
1023
|
-
|
|
1024
|
-
| Properties | Type | Nullable | Description |
|
|
1025
|
-
| ---------- | ---- | -------- | ----------- || error | string | no | || exception | string | no | || http_status | string | no | || items | [[JobStepsDTO](#JobStepsDTO)] | no | || message | string | no | || page | [Page](#Page) | no | || payload | [[JobStepsDTO](#JobStepsDTO)] | no | || status | number | no | || timestamp | string | no | || total_time_taken_in_millis | number | no | || trace_id | string | no | |
|
|
1026
|
-
|
|
1027
|
-
---
|
|
1028
|
-
|
|
1029
|
-
#### [ResponseEnvelopeListSlingshotConfigurationDetail](#ResponseEnvelopeListSlingshotConfigurationDetail)
|
|
1030
|
-
|
|
1031
|
-
| Properties | Type | Nullable | Description |
|
|
1032
|
-
| ---------- | ---- | -------- | ----------- || 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 | |
|
|
1033
|
-
|
|
1034
|
-
---
|
|
1035
|
-
|
|
1036
|
-
#### [ResponseEnvelopeString](#ResponseEnvelopeString)
|
|
1037
|
-
|
|
1038
|
-
| Properties | Type | Nullable | Description |
|
|
1039
|
-
| ---------- | ---- | -------- | ----------- || 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 | |
|
|
1040
|
-
|
|
1041
|
-
---
|
|
1042
|
-
|
|
1043
|
-
#### [Send](#Send)
|
|
1044
|
-
|
|
1045
|
-
| Properties | Type | Nullable | Description |
|
|
1046
|
-
| ---------- | ---- | -------- | ----------- || processed | boolean | no | || raw | boolean | no | |
|
|
1047
|
-
|
|
1048
|
-
---
|
|
1049
|
-
|
|
1050
|
-
#### [SFTPConfig](#SFTPConfig)
|
|
1051
|
-
|
|
1052
|
-
| Properties | Type | Nullable | Description |
|
|
1053
|
-
| ---------- | ---- | -------- | ----------- || archive_config | [ArchiveConfig](#ArchiveConfig) | no | || file_regex | string | no | || host | string | no | || interval | number | no | || local_dir | string | no | || password | string | no | || password_protected | boolean | no | || port | number | no | || private_key_path | string | no | || read_all_files | boolean | no | || remote_dir | string | no | || retries | number | no | || strict_host_key_checking | boolean | no | || unzip | boolean | no | || username | string | no | || zip_file_regex | string | no | || zip_format | string | no | |
|
|
1054
|
-
|
|
1055
|
-
---
|
|
1056
|
-
|
|
1057
|
-
#### [SlingshotConfigurationDetail](#SlingshotConfigurationDetail)
|
|
1058
|
-
|
|
1059
|
-
| Properties | Type | Nullable | Description |
|
|
1060
|
-
| ---------- | ---- | -------- | ----------- || companies | [[GCompany](#GCompany)] | no | || integration | [SlingshotIntegration](#SlingshotIntegration) | no | |
|
|
1061
|
-
|
|
1062
|
-
---
|
|
1063
|
-
|
|
1064
|
-
#### [SlingshotIntegration](#SlingshotIntegration)
|
|
1065
|
-
|
|
1066
|
-
| Properties | Type | Nullable | Description |
|
|
1067
|
-
| ---------- | ---- | -------- | ----------- || _id | string | no | || description | string | no | || meta | [[Metum](#Metum)] | no | || name | string | no | || slug | string | no | |
|
|
1068
|
-
|
|
1069
|
-
---
|
|
1070
|
-
|
|
1071
|
-
#### [StoreConfig](#StoreConfig)
|
|
1072
|
-
|
|
1073
|
-
| Properties | Type | Nullable | Description |
|
|
1074
|
-
| ---------- | ---- | -------- | ----------- || job_code | string | no | || process_config | [ProcessConfig](#ProcessConfig) | no | || properties | [String: string] | no | || store_alias | string | no | || store_file_name | string | no | || store_file_regex | string | no | || storeid | string | no | |
|
|
1075
|
-
|
|
1076
|
-
---
|
|
1077
|
-
|
|
1078
|
-
#### [StoreData](#StoreData)
|
|
1079
|
-
|
|
1080
|
-
| Properties | Type | Nullable | Description |
|
|
1081
|
-
| ---------- | ---- | -------- | ----------- || location_id | string | no | |
|
|
1082
|
-
|
|
1083
|
-
---
|
|
1084
|
-
|
|
1085
|
-
#### [StoreFilter](#StoreFilter)
|
|
1086
|
-
|
|
1087
|
-
| Properties | Type | Nullable | Description |
|
|
1088
|
-
| ---------- | ---- | -------- | ----------- || exclude_tags | [string] | no | || include_tags | [string] | no | || query | string | no | |
|
|
1089
|
-
|
|
1090
|
-
---
|
|
1091
|
-
|
|
1092
|
-
#### [SuppressStoreModel](#SuppressStoreModel)
|
|
1093
|
-
|
|
1094
|
-
| Properties | Type | Nullable | Description |
|
|
1095
|
-
| ---------- | ---- | -------- | ----------- || stores | [number] | no | |
|
|
1096
|
-
|
|
1097
|
-
---
|
|
1098
|
-
|
|
1099
|
-
#### [SuppressStorePayload](#SuppressStorePayload)
|
|
1100
|
-
|
|
1101
|
-
| Properties | Type | Nullable | Description |
|
|
1102
|
-
| ---------- | ---- | -------- | ----------- || meta | [KafkaMetaModel](#KafkaMetaModel) | no | || payload | [[SuppressStoreModel](#SuppressStoreModel)] | no | |
|
|
1103
|
-
|
|
1104
|
-
---
|
|
1105
|
-
|
|
1106
|
-
#### [TaskConfig](#TaskConfig)
|
|
1107
|
-
|
|
1108
|
-
| Properties | Type | Nullable | Description |
|
|
1109
|
-
| ---------- | ---- | -------- | ----------- || name | string | no | || task_config_id | number | no | || task_params | [[TaskParam](#TaskParam)] | no | |
|
|
1110
|
-
|
|
1111
|
-
---
|
|
1112
|
-
|
|
1113
|
-
#### [TaskDTO](#TaskDTO)
|
|
1114
|
-
|
|
1115
|
-
| Properties | Type | Nullable | Description |
|
|
1116
|
-
| ---------- | ---- | -------- | ----------- || group_list | [[GenericDTO](#GenericDTO)] | no | || type | number | no | |
|
|
1117
|
-
|
|
1118
|
-
---
|
|
1119
|
-
|
|
1120
|
-
#### [TaskParam](#TaskParam)
|
|
1121
|
-
|
|
1122
|
-
| Properties | Type | Nullable | Description |
|
|
1123
|
-
| ---------- | ---- | -------- | ----------- || name | string | no | || value | string | no | |
|
|
1124
|
-
|
|
1125
|
-
---
|
|
1126
|
-
|
|
1127
|
-
#### [TaskStepConfig](#TaskStepConfig)
|
|
1128
|
-
|
|
1129
|
-
| Properties | Type | Nullable | Description |
|
|
1130
|
-
| ---------- | ---- | -------- | ----------- || task_config_group_ids | [number] | no | || task_config_ids | [number] | no | || task_configs | [[TaskConfig](#TaskConfig)] | no | |
|
|
1131
|
-
|
|
1132
|
-
---
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|