@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.
Files changed (175) hide show
  1. package/README.md +31 -2
  2. package/index.d.ts +4 -4
  3. package/index.js +9 -10
  4. package/package.json +14 -14
  5. package/sdk/APIClient.d.ts +11 -0
  6. package/sdk/APIClient.js +35 -0
  7. package/sdk/Client.d.ts +6 -0
  8. package/sdk/Client.js +17 -0
  9. package/sdk/Config.d.ts +9 -0
  10. package/sdk/Config.js +17 -0
  11. package/sdk/application/Cart/CartApplicationClient.js +29 -28
  12. package/sdk/application/Cart/CartApplicationModel.js +3 -1
  13. package/sdk/application/Catalog/CatalogApplicationClient.js +43 -42
  14. package/sdk/application/Catalog/CatalogApplicationModel.js +1 -1
  15. package/sdk/application/Common/CommonApplicationClient.js +5 -4
  16. package/sdk/application/Communication/CommunicationApplicationClient.js +6 -5
  17. package/sdk/application/Configuration/ConfigurationApplicationClient.js +21 -20
  18. package/sdk/application/Content/ContentApplicationClient.js +26 -25
  19. package/sdk/application/Content/ContentApplicationModel.js +1 -0
  20. package/sdk/application/FileStorage/FileStorageApplicationClient.js +6 -5
  21. package/sdk/application/Lead/LeadApplicationClient.js +10 -9
  22. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +1 -3
  23. package/sdk/application/Logistic/LogisticApplicationClient.js +11 -12
  24. package/sdk/application/Logistic/LogisticApplicationValidator.js +0 -1
  25. package/sdk/application/Order/OrderApplicationClient.js +15 -14
  26. package/sdk/application/Order/OrderApplicationModel.js +9 -0
  27. package/sdk/application/Payment/PaymentApplicationClient.js +42 -41
  28. package/sdk/application/PosCart/PosCartApplicationClient.js +30 -29
  29. package/sdk/application/PosCart/PosCartApplicationModel.js +3 -1
  30. package/sdk/application/Rewards/RewardsApplicationClient.js +11 -10
  31. package/sdk/application/Share/ShareApplicationClient.js +10 -9
  32. package/sdk/application/Theme/ThemeApplicationClient.js +7 -6
  33. package/sdk/application/User/UserApplicationClient.js +38 -37
  34. package/sdk/common/AxiosHelper.js +17 -6
  35. package/sdk/constructUrl.d.ts +5 -0
  36. package/sdk/constructUrl.js +13 -0
  37. package/sdk/index.d.ts +3 -0
  38. package/sdk/index.js +5 -0
  39. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +3 -1
  40. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +1 -1
  41. package/sdk/platform/Analytics/AnalyticsPlatformClient.js +5 -4
  42. package/sdk/platform/Analytics/AnalyticsPlatformValidator.js +1 -0
  43. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +3 -2
  44. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +1 -0
  45. package/sdk/platform/Billing/BillingPlatformClient.js +3 -2
  46. package/sdk/platform/Billing/BillingPlatformValidator.js +1 -0
  47. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +27 -0
  48. package/sdk/platform/Cart/CartPlatformApplicationClient.js +177 -1
  49. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +3 -0
  50. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +17 -1
  51. package/sdk/platform/Cart/CartPlatformModel.js +7 -3
  52. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +3 -1
  53. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +1 -1
  54. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +2 -2
  55. package/sdk/platform/Catalog/CatalogPlatformClient.js +6 -9
  56. package/sdk/platform/Catalog/CatalogPlatformModel.js +7 -7
  57. package/sdk/platform/Catalog/CatalogPlatformValidator.js +2 -1
  58. package/sdk/platform/Common/CommonPlatformClient.js +7 -18
  59. package/sdk/platform/Common/CommonPlatformValidator.js +1 -0
  60. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +3 -1
  61. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +1 -1
  62. package/sdk/platform/Communication/CommunicationPlatformClient.js +4 -3
  63. package/sdk/platform/Communication/CommunicationPlatformValidator.js +1 -0
  64. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +5 -4
  65. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +1 -0
  66. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +3 -1
  67. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +1 -1
  68. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +9 -8
  69. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +1 -0
  70. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +0 -10
  71. package/sdk/platform/Content/ContentPlatformApplicationClient.js +3 -62
  72. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +0 -1
  73. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +1 -7
  74. package/sdk/platform/Content/ContentPlatformModel.js +1 -0
  75. package/sdk/platform/Discount/DiscountPlatformClient.js +3 -2
  76. package/sdk/platform/Discount/DiscountPlatformValidator.js +1 -0
  77. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +3 -3
  78. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +27 -5
  79. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +1 -1
  80. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +3 -3
  81. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +28 -6
  82. package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +1 -0
  83. package/sdk/platform/Inventory/InventoryPlatformClient.js +3 -2
  84. package/sdk/platform/Inventory/InventoryPlatformValidator.js +1 -0
  85. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +3 -1
  86. package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +1 -1
  87. package/sdk/platform/Lead/LeadPlatformClient.js +4 -3
  88. package/sdk/platform/Lead/LeadPlatformValidator.js +1 -0
  89. package/sdk/platform/Order/OrderPlatformApplicationClient.js +3 -1
  90. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +1 -1
  91. package/sdk/platform/Order/OrderPlatformClient.d.ts +1 -1
  92. package/sdk/platform/Order/OrderPlatformClient.js +16 -3
  93. package/sdk/platform/Order/OrderPlatformModel.js +1 -0
  94. package/sdk/platform/Order/OrderPlatformValidator.js +1 -0
  95. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +3 -1
  96. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +1 -1
  97. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +1 -1
  98. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +14 -14
  99. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +1 -1
  100. package/sdk/platform/Payment/PaymentPlatformClient.js +3 -2
  101. package/sdk/platform/Payment/PaymentPlatformValidator.js +1 -0
  102. package/sdk/platform/PlatformClient.d.ts +13 -9
  103. package/sdk/platform/PlatformClient.js +13 -9
  104. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +4 -4
  105. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +36 -17
  106. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +1 -1
  107. package/sdk/platform/Share/SharePlatformApplicationClient.js +3 -1
  108. package/sdk/platform/Share/SharePlatformApplicationValidator.js +1 -1
  109. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +3 -1
  110. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +1 -1
  111. package/sdk/platform/User/UserPlatformApplicationClient.js +3 -1
  112. package/sdk/platform/User/UserPlatformApplicationValidator.js +1 -1
  113. package/sdk/platform/Webhook/WebhookPlatformClient.js +3 -2
  114. package/sdk/platform/Webhook/WebhookPlatformValidator.js +1 -0
  115. package/sdk/public/Configuration/ConfigurationPublicClient.js +2 -0
  116. package/sdk/public/Inventory/InventoryPublicClient.js +2 -0
  117. package/sdk/public/Webhook/WebhookPublicClient.js +2 -0
  118. package/.github/workflows/on_create_release.yml +0 -23
  119. package/.github/workflows/on_merge_main.yml +0 -38
  120. package/.github/workflows/on_pull_request.yml +0 -35
  121. package/.prettierrc +0 -5
  122. package/documentation/application/CART.md +0 -8771
  123. package/documentation/application/CATALOG.md +0 -8690
  124. package/documentation/application/COMMON.md +0 -325
  125. package/documentation/application/COMMUNICATION.md +0 -387
  126. package/documentation/application/CONFIGURATION.md +0 -2212
  127. package/documentation/application/CONTENT.md +0 -2629
  128. package/documentation/application/FILESTORAGE.md +0 -442
  129. package/documentation/application/LEAD.md +0 -1549
  130. package/documentation/application/LOGISTIC.md +0 -689
  131. package/documentation/application/ORDER.md +0 -2937
  132. package/documentation/application/PAYMENT.md +0 -4475
  133. package/documentation/application/POSCART.md +0 -9375
  134. package/documentation/application/README.md +0 -21
  135. package/documentation/application/REWARDS.md +0 -554
  136. package/documentation/application/SHARE.md +0 -635
  137. package/documentation/application/THEME.md +0 -5517
  138. package/documentation/application/USER.md +0 -3798
  139. package/documentation/platform/ANALYTICS.md +0 -1012
  140. package/documentation/platform/AUDITTRAIL.md +0 -493
  141. package/documentation/platform/BILLING.md +0 -1889
  142. package/documentation/platform/CART.md +0 -4711
  143. package/documentation/platform/CATALOG.md +0 -20522
  144. package/documentation/platform/COMMON.md +0 -325
  145. package/documentation/platform/COMMUNICATION.md +0 -4970
  146. package/documentation/platform/COMPANYPROFILE.md +0 -1646
  147. package/documentation/platform/CONFIGURATION.md +0 -6316
  148. package/documentation/platform/CONTENT.md +0 -8364
  149. package/documentation/platform/DISCOUNT.md +0 -767
  150. package/documentation/platform/FILESTORAGE.md +0 -945
  151. package/documentation/platform/INVENTORY.md +0 -1136
  152. package/documentation/platform/LEAD.md +0 -4394
  153. package/documentation/platform/ORDER.md +0 -6525
  154. package/documentation/platform/PARTNER.md +0 -193
  155. package/documentation/platform/PAYMENT.md +0 -3138
  156. package/documentation/platform/README.md +0 -27
  157. package/documentation/platform/REWARDS.md +0 -919
  158. package/documentation/platform/SHARE.md +0 -513
  159. package/documentation/platform/THEME.md +0 -35446
  160. package/documentation/platform/USER.md +0 -2174
  161. package/documentation/platform/WEBHOOK.md +0 -485
  162. package/documentation/public/CONFIGURATION.md +0 -325
  163. package/documentation/public/INVENTORY.md +0 -508
  164. package/documentation/public/WEBHOOK.md +0 -246
  165. package/jest.config.d.ts +0 -4
  166. package/jest.config.js +0 -6
  167. package/tests/application/catalog.spec.js +0 -54
  168. package/tests/common/action-url.spec.js +0 -35
  169. package/tests/common/schema/action-url.json +0 -178
  170. package/tests/common/schema/url-action.json +0 -683
  171. package/tests/common/url-action.spec.js +0 -48
  172. package/tests/helpers/cookie.helper.js +0 -31
  173. package/tests/helpers/oauth.helper.js +0 -43
  174. package/tests/platform/catalog.spec.js +0 -49
  175. package/tests/public/location.spec.js +0 -39
@@ -1,508 +0,0 @@
1
-
2
-
3
-
4
-
5
-
6
- ##### [Back to Public docs](./README.md)
7
-
8
- ## Inventory Methods
9
-
10
-
11
- * [getApiKey](#getapikey)
12
- * [getConfigByApiKey](#getconfigbyapikey)
13
- * [getJobByCode](#getjobbycode)
14
- * [getJobCodesMetrics](#getjobcodesmetrics)
15
- * [getJobConfigByIntegrationType](#getjobconfigbyintegrationtype)
16
- * [saveJobCodesMetrics](#savejobcodesmetrics)
17
-
18
-
19
-
20
- ## Methods with example and description
21
-
22
-
23
-
24
-
25
- ### getApiKey
26
- Get apikey for Company to call other Slingshot Configuration APIs
27
-
28
-
29
-
30
- ```javascript
31
- // Promise
32
- const promise = inventory.getApiKey({ userName : value,
33
- password : value });
34
-
35
- // Async/Await
36
- const data = await inventory.getApiKey({ userName : value,
37
- password : value });
38
- ```
39
-
40
-
41
-
42
-
43
-
44
- | Argument | Type | Required | Description |
45
- | --------- | ----- | -------- | ----------- |
46
- | userName | string | yes | Integration id |
47
- | password | string | yes | company/store token |
48
-
49
-
50
-
51
- REST Endpoint that returns apikey by username by password
52
-
53
- *Returned Response:*
54
-
55
-
56
-
57
-
58
- [ResponseEnvelopeApikeyModel](#ResponseEnvelopeApikeyModel)
59
-
60
- Successful operation
61
-
62
-
63
-
64
-
65
- <details>
66
- <summary><i>&nbsp; Example:</i></summary>
67
-
68
- ```json
69
-
70
- ```
71
- </details>
72
-
73
-
74
-
75
-
76
-
77
-
78
-
79
-
80
-
81
- ---
82
-
83
-
84
- ### getConfigByApiKey
85
- Get Slingshot Configuration Of A Company using API key
86
-
87
-
88
-
89
- ```javascript
90
- // Promise
91
- const promise = inventory.getConfigByApiKey({ apikey : value });
92
-
93
- // Async/Await
94
- const data = await inventory.getConfigByApiKey({ apikey : value });
95
- ```
96
-
97
-
98
-
99
-
100
-
101
- | Argument | Type | Required | Description |
102
- | --------- | ----- | -------- | ----------- |
103
- | apikey | string | yes | Api key |
104
-
105
-
106
-
107
- REST Endpoint that returns all configuration detail of a company
108
-
109
- *Returned Response:*
110
-
111
-
112
-
113
-
114
- [ResponseEnvelopeSlingshotConfigurationDetail](#ResponseEnvelopeSlingshotConfigurationDetail)
115
-
116
- Successful operation
117
-
118
-
119
-
120
-
121
- <details>
122
- <summary><i>&nbsp; Example:</i></summary>
123
-
124
- ```json
125
-
126
- ```
127
- </details>
128
-
129
-
130
-
131
-
132
-
133
-
134
-
135
-
136
-
137
- ---
138
-
139
-
140
- ### getJobByCode
141
- Get Job Config By Code
142
-
143
-
144
-
145
- ```javascript
146
- // Promise
147
- const promise = inventory.getJobByCode({ code : value });
148
-
149
- // Async/Await
150
- const data = await inventory.getJobByCode({ code : value });
151
- ```
152
-
153
-
154
-
155
-
156
-
157
- | Argument | Type | Required | Description |
158
- | --------- | ----- | -------- | ----------- |
159
- | code | string | yes | Job Code |
160
-
161
-
162
-
163
- REST Endpoint that returns job config by code
164
-
165
- *Returned Response:*
166
-
167
-
168
-
169
-
170
- [ResponseEnvelopeJobConfigDTO](#ResponseEnvelopeJobConfigDTO)
171
-
172
- Successful operation
173
-
174
-
175
-
176
-
177
- <details>
178
- <summary><i>&nbsp; Example:</i></summary>
179
-
180
- ```json
181
-
182
- ```
183
- </details>
184
-
185
-
186
-
187
-
188
-
189
-
190
-
191
-
192
-
193
- ---
194
-
195
-
196
- ### getJobCodesMetrics
197
- Find all the JobCodes from Metrics Collection based on the field Values
198
-
199
-
200
-
201
- ```javascript
202
- // Promise
203
- const promise = inventory.getJobCodesMetrics({ dailyJob : value,
204
- jobCode : value });
205
-
206
- // Async/Await
207
- const data = await inventory.getJobCodesMetrics({ dailyJob : value,
208
- jobCode : value });
209
- ```
210
-
211
-
212
-
213
-
214
-
215
- | Argument | Type | Required | Description |
216
- | --------- | ----- | -------- | ----------- |
217
- | dailyJob | boolean | no | Daily Job Flag |
218
- | jobCode | string | no | Email Job Code |
219
-
220
-
221
-
222
- Endpoint to return all JobCodes present in Metrics Collection
223
-
224
- *Returned Response:*
225
-
226
-
227
-
228
-
229
- [ResponseEnvelopeObject](#ResponseEnvelopeObject)
230
-
231
- Successful operation
232
-
233
-
234
-
235
-
236
- <details>
237
- <summary><i>&nbsp; Example:</i></summary>
238
-
239
- ```json
240
-
241
- ```
242
- </details>
243
-
244
-
245
-
246
-
247
-
248
-
249
-
250
-
251
-
252
- ---
253
-
254
-
255
- ### getJobConfigByIntegrationType
256
- Get Job Configs By Integration Type
257
-
258
-
259
-
260
- ```javascript
261
- // Promise
262
- const promise = inventory.getJobConfigByIntegrationType({ integrationType : value,
263
- disable : value });
264
-
265
- // Async/Await
266
- const data = await inventory.getJobConfigByIntegrationType({ integrationType : value,
267
- disable : value });
268
- ```
269
-
270
-
271
-
272
-
273
-
274
- | Argument | Type | Required | Description |
275
- | --------- | ----- | -------- | ----------- |
276
- | integrationType | string | yes | Integration Type |
277
- | disable | boolean | no | JobConfig current state |
278
-
279
-
280
-
281
- REST Endpoint that returns all job Configs by Integration Type
282
-
283
- *Returned Response:*
284
-
285
-
286
-
287
-
288
- [ResponseEnvelopeListJobConfigDTO](#ResponseEnvelopeListJobConfigDTO)
289
-
290
- Successful operation
291
-
292
-
293
-
294
-
295
- <details>
296
- <summary><i>&nbsp; Example:</i></summary>
297
-
298
- ```json
299
-
300
- ```
301
- </details>
302
-
303
-
304
-
305
-
306
-
307
-
308
-
309
-
310
-
311
- ---
312
-
313
-
314
- ### saveJobCodesMetrics
315
- Save JobCode Metrics
316
-
317
-
318
-
319
- ```javascript
320
- // Promise
321
- const promise = inventory.saveJobCodesMetrics({ body : value });
322
-
323
- // Async/Await
324
- const data = await inventory.saveJobCodesMetrics({ body : value });
325
- ```
326
-
327
-
328
-
329
-
330
-
331
- | Argument | Type | Required | Description |
332
- | --------- | ----- | -------- | ----------- |
333
- | body | [EmailJobMetrics](#EmailJobMetrics) | yes | Request body |
334
-
335
-
336
- Endpoint to save JobCode Metrics
337
-
338
- *Returned Response:*
339
-
340
-
341
-
342
-
343
- [ResponseEnvelopeEmailJobMetrics](#ResponseEnvelopeEmailJobMetrics)
344
-
345
- JobCode Metrics entry Created Successfully
346
-
347
-
348
-
349
-
350
- <details>
351
- <summary><i>&nbsp; Example:</i></summary>
352
-
353
- ```json
354
-
355
- ```
356
- </details>
357
-
358
-
359
-
360
-
361
-
362
-
363
-
364
-
365
-
366
- ---
367
-
368
-
369
-
370
- ### Schemas
371
-
372
-
373
- #### [ApikeyModel](#ApikeyModel)
374
-
375
- | Properties | Type | Nullable | Description |
376
- | ---------- | ---- | -------- | ----------- || error_message | string | no | || session_id | string | no | |
377
-
378
- ---
379
-
380
- #### [DataTresholdDTO](#DataTresholdDTO)
381
-
382
- | Properties | Type | Nullable | Description |
383
- | ---------- | ---- | -------- | ----------- || min_price | number | no | || period_threshold | number | no | || period_threshold_type | string | no | || period_type_list | [[GenericDTO](#GenericDTO)] | no | || safe_stock | number | no | |
384
-
385
- ---
386
-
387
- #### [EmailJobMetrics](#EmailJobMetrics)
388
-
389
- | Properties | Type | Nullable | Description |
390
- | ---------- | ---- | -------- | ----------- || daily_job | boolean | no | || executed | boolean | no | || id | string | no | || job_code | string | no | || last_executed_on | string | no | |
391
-
392
- ---
393
-
394
- #### [GCompany](#GCompany)
395
-
396
- | Properties | Type | Nullable | Description |
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 | |
398
-
399
- ---
400
-
401
- #### [GenericDTO](#GenericDTO)
402
-
403
- | Properties | Type | Nullable | Description |
404
- | ---------- | ---- | -------- | ----------- || text | string | no | || value | string | no | |
405
-
406
- ---
407
-
408
- #### [GStore](#GStore)
409
-
410
- | Properties | Type | Nullable | Description |
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 | |
412
-
413
- ---
414
-
415
- #### [JobConfigDTO](#JobConfigDTO)
416
-
417
- | Properties | Type | Nullable | Description |
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 | |
419
-
420
- ---
421
-
422
- #### [Metum](#Metum)
423
-
424
- | Properties | Type | Nullable | Description |
425
- | ---------- | ---- | -------- | ----------- || _id | string | no | || name | string | no | || value | string | no | |
426
-
427
- ---
428
-
429
- #### [Page](#Page)
430
-
431
- | Properties | Type | Nullable | Description |
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 | |
433
-
434
- ---
435
-
436
- #### [ResponseEnvelopeApikeyModel](#ResponseEnvelopeApikeyModel)
437
-
438
- | Properties | Type | Nullable | Description |
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 | |
440
-
441
- ---
442
-
443
- #### [ResponseEnvelopeEmailJobMetrics](#ResponseEnvelopeEmailJobMetrics)
444
-
445
- | Properties | Type | Nullable | Description |
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 | |
447
-
448
- ---
449
-
450
- #### [ResponseEnvelopeJobConfigDTO](#ResponseEnvelopeJobConfigDTO)
451
-
452
- | Properties | Type | Nullable | Description |
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 | |
454
-
455
- ---
456
-
457
- #### [ResponseEnvelopeListJobConfigDTO](#ResponseEnvelopeListJobConfigDTO)
458
-
459
- | Properties | Type | Nullable | Description |
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 | |
461
-
462
- ---
463
-
464
- #### [ResponseEnvelopeObject](#ResponseEnvelopeObject)
465
-
466
- | Properties | Type | Nullable | Description |
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 | |
468
-
469
- ---
470
-
471
- #### [ResponseEnvelopeSlingshotConfigurationDetail](#ResponseEnvelopeSlingshotConfigurationDetail)
472
-
473
- | Properties | Type | Nullable | Description |
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 | |
475
-
476
- ---
477
-
478
- #### [SlingshotConfigurationDetail](#SlingshotConfigurationDetail)
479
-
480
- | Properties | Type | Nullable | Description |
481
- | ---------- | ---- | -------- | ----------- || companies | [[GCompany](#GCompany)] | no | || integration | [SlingshotIntegration](#SlingshotIntegration) | no | |
482
-
483
- ---
484
-
485
- #### [SlingshotIntegration](#SlingshotIntegration)
486
-
487
- | Properties | Type | Nullable | Description |
488
- | ---------- | ---- | -------- | ----------- || _id | string | no | || description | string | no | || meta | [[Metum](#Metum)] | no | || name | string | no | || slug | string | no | |
489
-
490
- ---
491
-
492
- #### [StoreData](#StoreData)
493
-
494
- | Properties | Type | Nullable | Description |
495
- | ---------- | ---- | -------- | ----------- || location_id | string | no | |
496
-
497
- ---
498
-
499
- #### [TaskDTO](#TaskDTO)
500
-
501
- | Properties | Type | Nullable | Description |
502
- | ---------- | ---- | -------- | ----------- || group_list | [[GenericDTO](#GenericDTO)] | no | || type | number | no | |
503
-
504
- ---
505
-
506
-
507
-
508
-