@epilot/erp-integration-client 0.30.0 → 0.32.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,758 +0,0 @@
1
- {
2
- "openapi": "3.0.3",
3
- "info": {
4
- "title": "",
5
- "version": ""
6
- },
7
- "servers": [
8
- {
9
- "url": "https://erp-integration-api.sls.epilot.io"
10
- }
11
- ],
12
- "paths": {
13
- "/v1/erp/tracking/acknowledgement": {
14
- "post": {
15
- "operationId": "acknowledgeTracking",
16
- "requestBody": {
17
- "content": {
18
- "application/json": {}
19
- }
20
- },
21
- "responses": {}
22
- }
23
- },
24
- "/v1/erp/trigger": {
25
- "post": {
26
- "operationId": "triggerErp",
27
- "requestBody": {
28
- "required": true,
29
- "content": {
30
- "application/json": {}
31
- }
32
- },
33
- "responses": {}
34
- }
35
- },
36
- "/v1/erp/updates/events": {
37
- "post": {
38
- "deprecated": true,
39
- "operationId": "processErpUpdatesEvents",
40
- "requestBody": {
41
- "content": {
42
- "application/json": {}
43
- }
44
- },
45
- "responses": {}
46
- }
47
- },
48
- "/v2/erp/updates/events": {
49
- "post": {
50
- "deprecated": true,
51
- "operationId": "processErpUpdatesEventsV2",
52
- "requestBody": {
53
- "content": {
54
- "application/json": {}
55
- }
56
- },
57
- "responses": {}
58
- }
59
- },
60
- "/v3/erp/updates/events": {
61
- "post": {
62
- "operationId": "processErpUpdatesEventsV3",
63
- "requestBody": {
64
- "content": {
65
- "application/json": {}
66
- }
67
- },
68
- "responses": {}
69
- }
70
- },
71
- "/v2/erp/updates/mapping_simulation": {
72
- "post": {
73
- "operationId": "simulateMappingV2",
74
- "requestBody": {
75
- "required": true,
76
- "content": {
77
- "application/json": {}
78
- }
79
- },
80
- "responses": {}
81
- }
82
- },
83
- "/v1/erp/updates/mapping_simulation": {
84
- "post": {
85
- "operationId": "simulateMapping",
86
- "requestBody": {
87
- "required": true,
88
- "content": {
89
- "application/json": {}
90
- }
91
- },
92
- "responses": {}
93
- }
94
- },
95
- "/v1/integrations": {
96
- "get": {
97
- "operationId": "listIntegrations",
98
- "responses": {}
99
- },
100
- "post": {
101
- "operationId": "createIntegration",
102
- "requestBody": {
103
- "required": true,
104
- "content": {
105
- "application/json": {}
106
- }
107
- },
108
- "responses": {}
109
- }
110
- },
111
- "/v1/integrations/{integrationId}": {
112
- "get": {
113
- "operationId": "getIntegration",
114
- "parameters": [
115
- {
116
- "name": "integrationId",
117
- "in": "path",
118
- "required": true
119
- }
120
- ],
121
- "responses": {}
122
- },
123
- "put": {
124
- "operationId": "updateIntegration",
125
- "parameters": [
126
- {
127
- "name": "integrationId",
128
- "in": "path",
129
- "required": true
130
- }
131
- ],
132
- "requestBody": {
133
- "required": true,
134
- "content": {
135
- "application/json": {}
136
- }
137
- },
138
- "responses": {}
139
- },
140
- "delete": {
141
- "operationId": "deleteIntegration",
142
- "parameters": [
143
- {
144
- "name": "integrationId",
145
- "in": "path",
146
- "required": true
147
- }
148
- ],
149
- "responses": {}
150
- }
151
- },
152
- "/v1/integrations/{integrationId}/events": {
153
- "post": {
154
- "operationId": "queryEvents",
155
- "parameters": [
156
- {
157
- "name": "integrationId",
158
- "in": "path",
159
- "required": true
160
- }
161
- ],
162
- "requestBody": {
163
- "required": true,
164
- "content": {
165
- "application/json": {}
166
- }
167
- },
168
- "responses": {}
169
- }
170
- },
171
- "/v1/integrations/{integrationId}/events/replay": {
172
- "post": {
173
- "operationId": "replayEvents",
174
- "parameters": [
175
- {
176
- "name": "integrationId",
177
- "in": "path",
178
- "required": true
179
- }
180
- ],
181
- "requestBody": {
182
- "required": true,
183
- "content": {
184
- "application/json": {}
185
- }
186
- },
187
- "responses": {}
188
- }
189
- },
190
- "/v1/integrations/{integrationId}/use-cases": {
191
- "get": {
192
- "operationId": "listUseCases",
193
- "parameters": [
194
- {
195
- "name": "integrationId",
196
- "in": "path",
197
- "required": true
198
- }
199
- ],
200
- "responses": {}
201
- },
202
- "post": {
203
- "operationId": "createUseCase",
204
- "parameters": [
205
- {
206
- "name": "integrationId",
207
- "in": "path",
208
- "required": true
209
- }
210
- ],
211
- "requestBody": {
212
- "required": true,
213
- "content": {
214
- "application/json": {}
215
- }
216
- },
217
- "responses": {}
218
- }
219
- },
220
- "/v1/integrations/{integrationId}/use-cases/{useCaseId}": {
221
- "get": {
222
- "operationId": "getUseCase",
223
- "parameters": [
224
- {
225
- "name": "integrationId",
226
- "in": "path",
227
- "required": true
228
- },
229
- {
230
- "name": "useCaseId",
231
- "in": "path",
232
- "required": true
233
- }
234
- ],
235
- "responses": {}
236
- },
237
- "put": {
238
- "operationId": "updateUseCase",
239
- "parameters": [
240
- {
241
- "name": "integrationId",
242
- "in": "path",
243
- "required": true
244
- },
245
- {
246
- "name": "useCaseId",
247
- "in": "path",
248
- "required": true
249
- }
250
- ],
251
- "requestBody": {
252
- "required": true,
253
- "content": {
254
- "application/json": {}
255
- }
256
- },
257
- "responses": {}
258
- },
259
- "delete": {
260
- "operationId": "deleteUseCase",
261
- "parameters": [
262
- {
263
- "name": "integrationId",
264
- "in": "path",
265
- "required": true
266
- },
267
- {
268
- "name": "useCaseId",
269
- "in": "path",
270
- "required": true
271
- }
272
- ],
273
- "responses": {}
274
- }
275
- },
276
- "/v1/integrations/{integrationId}/use-cases/{useCaseId}/history": {
277
- "get": {
278
- "operationId": "listUseCaseHistory",
279
- "parameters": [
280
- {
281
- "name": "integrationId",
282
- "in": "path",
283
- "required": true
284
- },
285
- {
286
- "name": "useCaseId",
287
- "in": "path",
288
- "required": true
289
- },
290
- {
291
- "name": "cursor",
292
- "in": "query",
293
- "required": false
294
- }
295
- ],
296
- "responses": {}
297
- }
298
- },
299
- "/v2/integrations": {
300
- "get": {
301
- "operationId": "listIntegrationsV2",
302
- "responses": {}
303
- },
304
- "post": {
305
- "operationId": "createIntegrationV2",
306
- "requestBody": {
307
- "required": true,
308
- "content": {
309
- "application/json": {}
310
- }
311
- },
312
- "responses": {}
313
- }
314
- },
315
- "/v2/integrations/{integrationId}": {
316
- "get": {
317
- "operationId": "getIntegrationV2",
318
- "parameters": [
319
- {
320
- "name": "integrationId",
321
- "in": "path",
322
- "required": true
323
- }
324
- ],
325
- "responses": {}
326
- },
327
- "put": {
328
- "operationId": "updateIntegrationV2",
329
- "parameters": [
330
- {
331
- "name": "integrationId",
332
- "in": "path",
333
- "required": true
334
- }
335
- ],
336
- "requestBody": {
337
- "required": true,
338
- "content": {
339
- "application/json": {}
340
- }
341
- },
342
- "responses": {}
343
- },
344
- "delete": {
345
- "operationId": "deleteIntegrationV2",
346
- "parameters": [
347
- {
348
- "name": "integrationId",
349
- "in": "path",
350
- "required": true
351
- }
352
- ],
353
- "responses": {}
354
- }
355
- },
356
- "/v1/integrations/{integrationId}/app-mapping": {
357
- "put": {
358
- "operationId": "setIntegrationAppMapping",
359
- "parameters": [
360
- {
361
- "name": "integrationId",
362
- "in": "path",
363
- "required": true
364
- }
365
- ],
366
- "requestBody": {
367
- "required": true,
368
- "content": {
369
- "application/json": {}
370
- }
371
- },
372
- "responses": {}
373
- },
374
- "delete": {
375
- "operationId": "deleteIntegrationAppMapping",
376
- "parameters": [
377
- {
378
- "name": "integrationId",
379
- "in": "path",
380
- "required": true
381
- }
382
- ],
383
- "requestBody": {
384
- "required": true,
385
- "content": {
386
- "application/json": {}
387
- }
388
- },
389
- "responses": {}
390
- }
391
- },
392
- "/v1/integrations/{integrationId}/monitoring/inbound-events": {
393
- "post": {
394
- "operationId": "queryInboundMonitoringEvents",
395
- "parameters": [
396
- {
397
- "name": "integrationId",
398
- "in": "path",
399
- "required": true
400
- }
401
- ],
402
- "requestBody": {
403
- "required": true,
404
- "content": {
405
- "application/json": {}
406
- }
407
- },
408
- "responses": {}
409
- }
410
- },
411
- "/v1/integrations/{integrationId}/monitoring/stats": {
412
- "post": {
413
- "operationId": "getMonitoringStats",
414
- "parameters": [
415
- {
416
- "name": "integrationId",
417
- "in": "path",
418
- "required": true
419
- }
420
- ],
421
- "requestBody": {
422
- "required": true,
423
- "content": {
424
- "application/json": {}
425
- }
426
- },
427
- "responses": {}
428
- }
429
- },
430
- "/v1/integrations/{integrationId}/monitoring/timeseries": {
431
- "post": {
432
- "operationId": "getMonitoringTimeSeries",
433
- "parameters": [
434
- {
435
- "name": "integrationId",
436
- "in": "path",
437
- "required": true
438
- }
439
- ],
440
- "requestBody": {
441
- "required": true,
442
- "content": {
443
- "application/json": {}
444
- }
445
- },
446
- "responses": {}
447
- }
448
- },
449
- "/v1/integrations/{integrationId}/outbound-status": {
450
- "get": {
451
- "operationId": "getOutboundStatus",
452
- "parameters": [
453
- {
454
- "name": "integrationId",
455
- "in": "path",
456
- "required": true
457
- }
458
- ],
459
- "responses": {}
460
- }
461
- },
462
- "/v1/integrations/{integrationId}/monitoring/access-logs": {
463
- "post": {
464
- "operationId": "queryAccessLogs",
465
- "parameters": [
466
- {
467
- "name": "integrationId",
468
- "in": "path",
469
- "required": true
470
- }
471
- ],
472
- "requestBody": {
473
- "required": true,
474
- "content": {
475
- "application/json": {}
476
- }
477
- },
478
- "responses": {}
479
- }
480
- },
481
- "/v1/integrations/{integrationId}/monitoring/outbound-events": {
482
- "post": {
483
- "operationId": "queryOutboundMonitoringEvents",
484
- "parameters": [
485
- {
486
- "name": "integrationId",
487
- "in": "path",
488
- "required": true
489
- }
490
- ],
491
- "requestBody": {
492
- "required": true,
493
- "content": {
494
- "application/json": {}
495
- }
496
- },
497
- "responses": {}
498
- }
499
- },
500
- "/v2/integrations/{integrationId}/monitoring/events": {
501
- "post": {
502
- "operationId": "queryMonitoringEventsV2",
503
- "parameters": [
504
- {
505
- "name": "integrationId",
506
- "in": "path",
507
- "required": true
508
- }
509
- ],
510
- "requestBody": {
511
- "required": true,
512
- "content": {
513
- "application/json": {}
514
- }
515
- },
516
- "responses": {}
517
- }
518
- },
519
- "/v2/integrations/{integrationId}/monitoring/stats": {
520
- "post": {
521
- "operationId": "getMonitoringStatsV2",
522
- "parameters": [
523
- {
524
- "name": "integrationId",
525
- "in": "path",
526
- "required": true
527
- }
528
- ],
529
- "requestBody": {
530
- "required": true,
531
- "content": {
532
- "application/json": {}
533
- }
534
- },
535
- "responses": {}
536
- }
537
- },
538
- "/v2/integrations/{integrationId}/monitoring/time-series": {
539
- "post": {
540
- "operationId": "getMonitoringTimeSeriesV2",
541
- "parameters": [
542
- {
543
- "name": "integrationId",
544
- "in": "path",
545
- "required": true
546
- }
547
- ],
548
- "requestBody": {
549
- "required": true,
550
- "content": {
551
- "application/json": {}
552
- }
553
- },
554
- "responses": {}
555
- }
556
- },
557
- "/v2/integrations/{integrationId}/monitoring/events/{eventId}/associated": {
558
- "get": {
559
- "operationId": "getAssociatedMonitoringEvents",
560
- "parameters": [
561
- {
562
- "name": "integrationId",
563
- "in": "path",
564
- "required": true
565
- },
566
- {
567
- "name": "eventId",
568
- "in": "path",
569
- "required": true
570
- }
571
- ],
572
- "responses": {}
573
- }
574
- },
575
- "/v1/integrations/secure-proxies": {
576
- "get": {
577
- "operationId": "listSecureProxies",
578
- "responses": {}
579
- }
580
- },
581
- "/v1/secure-proxy": {
582
- "post": {
583
- "operationId": "secureProxy",
584
- "requestBody": {
585
- "required": true,
586
- "content": {
587
- "application/json": {}
588
- }
589
- },
590
- "responses": {}
591
- }
592
- },
593
- "/v1/managed-call/{slug}/execute": {
594
- "post": {
595
- "operationId": "managedCallExecute",
596
- "parameters": [
597
- {
598
- "name": "slug",
599
- "in": "path",
600
- "required": true
601
- }
602
- ],
603
- "requestBody": {
604
- "required": true,
605
- "content": {
606
- "application/json": {}
607
- }
608
- },
609
- "responses": {}
610
- }
611
- },
612
- "/v1/integrations/{integrationId}/generate-types-preview": {
613
- "post": {
614
- "operationId": "generateTypesPreview",
615
- "parameters": [
616
- {
617
- "name": "integrationId",
618
- "in": "path",
619
- "required": true
620
- }
621
- ],
622
- "responses": {}
623
- }
624
- },
625
- "/v1/integrations/{integrationId}/generate-types": {
626
- "post": {
627
- "operationId": "generateTypes",
628
- "parameters": [
629
- {
630
- "name": "integrationId",
631
- "in": "path",
632
- "required": true
633
- }
634
- ],
635
- "requestBody": {
636
- "required": true,
637
- "content": {
638
- "application/json": {}
639
- }
640
- },
641
- "responses": {}
642
- }
643
- },
644
- "/v1/integrations/{integrationId}/commit-types": {
645
- "post": {
646
- "operationId": "commitTypes",
647
- "parameters": [
648
- {
649
- "name": "integrationId",
650
- "in": "path",
651
- "required": true
652
- }
653
- ],
654
- "requestBody": {
655
- "required": true,
656
- "content": {
657
- "application/json": {}
658
- }
659
- },
660
- "responses": {}
661
- }
662
- }
663
- },
664
- "components": {
665
- "responses": {
666
- "BadRequest": {
667
- "content": {
668
- "application/json": {}
669
- }
670
- },
671
- "NotFound": {
672
- "content": {
673
- "application/json": {}
674
- }
675
- },
676
- "Unauthorized": {
677
- "content": {
678
- "application/json": {}
679
- }
680
- },
681
- "Forbidden": {
682
- "content": {
683
- "application/json": {}
684
- }
685
- },
686
- "InternalServerError": {
687
- "content": {
688
- "application/json": {}
689
- }
690
- },
691
- "QueryInboundMonitoringEventsResponse": {
692
- "content": {
693
- "application/json": {}
694
- }
695
- },
696
- "GetMonitoringStatsResponse": {
697
- "content": {
698
- "application/json": {}
699
- }
700
- },
701
- "GetMonitoringTimeSeriesResponse": {
702
- "content": {
703
- "application/json": {}
704
- }
705
- },
706
- "QueryAccessLogsResponse": {
707
- "content": {
708
- "application/json": {}
709
- }
710
- },
711
- "QueryOutboundMonitoringEventsResponse": {
712
- "content": {
713
- "application/json": {}
714
- }
715
- },
716
- "ReplayEventsResponse": {
717
- "content": {
718
- "application/json": {}
719
- }
720
- },
721
- "ERPUpdatesResponse": {
722
- "content": {
723
- "application/json": {}
724
- }
725
- },
726
- "TriggerWebhookResponse": {
727
- "content": {
728
- "application/json": {}
729
- }
730
- },
731
- "QueryEventsResponse": {
732
- "content": {
733
- "application/json": {}
734
- }
735
- },
736
- "QueryMonitoringEventsV2Response": {
737
- "content": {
738
- "application/json": {}
739
- }
740
- },
741
- "GetMonitoringStatsV2Response": {
742
- "content": {
743
- "application/json": {}
744
- }
745
- },
746
- "GetMonitoringTimeSeriesV2Response": {
747
- "content": {
748
- "application/json": {}
749
- }
750
- },
751
- "GetAssociatedMonitoringEventsResponse": {
752
- "content": {
753
- "application/json": {}
754
- }
755
- }
756
- }
757
- }
758
- }