@epilot/erp-integration-client 0.8.0 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/definition.js +1 -1
- package/dist/openapi-runtime.json +6 -1
- package/dist/openapi.d.ts +26 -26
- package/dist/openapi.json +22 -14
- package/package.json +1 -1
package/dist/definition.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
(()=>{"use strict";var e={
|
|
1
|
+
(()=>{"use strict";var e={390:function(e,t,r){var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var s=n(r(466));t.default=s.default},466:e=>{e.exports=JSON.parse('{"openapi":"3.0.3","info":{"title":"","version":""},"paths":{"/v1/erp/tracking/acknowledgement":{"post":{"operationId":"acknowledgeTracking","requestBody":{"content":{"application/json":{}}},"responses":{}}},"/v1/erp/trigger":{"post":{"operationId":"triggerErp","requestBody":{"required":true,"content":{"application/json":{}}},"responses":{}}},"/v1/erp/updates/events":{"post":{"operationId":"processErpUpdatesEvents","requestBody":{"content":{"application/json":{}}},"responses":{}}},"/v2/erp/updates/events":{"post":{"operationId":"processErpUpdatesEventsV2","requestBody":{"content":{"application/json":{}}},"responses":{}}},"/v1/erp/updates/mapping_simulation":{"post":{"operationId":"simulateMapping","requestBody":{"required":true,"content":{"application/json":{}}},"responses":{}}},"/v1/integrations":{"get":{"operationId":"listIntegrations","responses":{}},"post":{"operationId":"createIntegration","requestBody":{"required":true,"content":{"application/json":{}}},"responses":{}}},"/v1/integrations/{integrationId}":{"get":{"operationId":"getIntegration","parameters":[{"name":"integrationId","in":"path","required":true}],"responses":{}},"put":{"operationId":"updateIntegration","parameters":[{"name":"integrationId","in":"path","required":true}],"requestBody":{"required":true,"content":{"application/json":{}}},"responses":{}},"delete":{"operationId":"deleteIntegration","parameters":[{"name":"integrationId","in":"path","required":true}],"responses":{}}},"/v1/integrations/{integrationId}/use-cases":{"get":{"operationId":"listUseCases","parameters":[{"name":"integrationId","in":"path","required":true}],"responses":{}},"post":{"operationId":"createUseCase","parameters":[{"name":"integrationId","in":"path","required":true}],"requestBody":{"required":true,"content":{"application/json":{}}},"responses":{}}},"/v1/integrations/{integrationId}/use-cases/{useCaseId}":{"get":{"operationId":"getUseCase","parameters":[{"name":"integrationId","in":"path","required":true},{"name":"useCaseId","in":"path","required":true}],"responses":{}},"put":{"operationId":"updateUseCase","parameters":[{"name":"integrationId","in":"path","required":true},{"name":"useCaseId","in":"path","required":true}],"requestBody":{"required":true,"content":{"application/json":{}}},"responses":{}},"delete":{"operationId":"deleteUseCase","parameters":[{"name":"integrationId","in":"path","required":true},{"name":"useCaseId","in":"path","required":true}],"responses":{}}},"/v1/integrations/{integrationId}/use-cases/{useCaseId}/history":{"get":{"operationId":"listUseCaseHistory","parameters":[{"name":"integrationId","in":"path","required":true},{"name":"useCaseId","in":"path","required":true},{"name":"cursor","in":"query","required":false}],"responses":{}}},"/v1/integrations/{integrationId}/app-mapping":{"put":{"operationId":"setIntegrationAppMapping","parameters":[{"name":"integrationId","in":"path","required":true}],"requestBody":{"required":true,"content":{"application/json":{}}},"responses":{}},"delete":{"operationId":"deleteIntegrationAppMapping","parameters":[{"name":"integrationId","in":"path","required":true}],"requestBody":{"required":true,"content":{"application/json":{}}},"responses":{}}}},"components":{"responses":{"BadRequest":{"content":{"application/json":{}}},"Unauthorized":{"content":{"application/json":{}}},"InternalServerError":{"content":{"application/json":{}}},"ERPUpdatesResponse":{"content":{"application/json":{}}},"TriggerWebhookResponse":{"content":{"application/json":{}}}}},"servers":[{"url":"https://erp-integration-api.sls.epilot.io"}]}')}},t={},r=function r(n){var s=t[n];if(void 0!==s)return s.exports;var a=t[n]={exports:{}};return e[n].call(a.exports,a,a.exports,r),a.exports}(390),n=exports;for(var s in r)n[s]=r[s];r.__esModule&&Object.defineProperty(n,"__esModule",{value:!0})})();
|
package/dist/openapi.d.ts
CHANGED
|
@@ -1136,7 +1136,7 @@ export interface OperationMethods {
|
|
|
1136
1136
|
config?: AxiosRequestConfig
|
|
1137
1137
|
): OperationResponse<Paths.SimulateMapping.Responses.$200>
|
|
1138
1138
|
/**
|
|
1139
|
-
* listIntegrations -
|
|
1139
|
+
* listIntegrations - listIntegrations
|
|
1140
1140
|
*
|
|
1141
1141
|
* Retrieve all integrations for the authenticated organization
|
|
1142
1142
|
*/
|
|
@@ -1146,7 +1146,7 @@ export interface OperationMethods {
|
|
|
1146
1146
|
config?: AxiosRequestConfig
|
|
1147
1147
|
): OperationResponse<Paths.ListIntegrations.Responses.$200>
|
|
1148
1148
|
/**
|
|
1149
|
-
* createIntegration -
|
|
1149
|
+
* createIntegration - createIntegration
|
|
1150
1150
|
*
|
|
1151
1151
|
* Create a new integration configuration
|
|
1152
1152
|
*/
|
|
@@ -1156,7 +1156,7 @@ export interface OperationMethods {
|
|
|
1156
1156
|
config?: AxiosRequestConfig
|
|
1157
1157
|
): OperationResponse<Paths.CreateIntegration.Responses.$201>
|
|
1158
1158
|
/**
|
|
1159
|
-
* getIntegration -
|
|
1159
|
+
* getIntegration - getIntegration
|
|
1160
1160
|
*
|
|
1161
1161
|
* Retrieve a specific integration by its ID
|
|
1162
1162
|
*/
|
|
@@ -1166,7 +1166,7 @@ export interface OperationMethods {
|
|
|
1166
1166
|
config?: AxiosRequestConfig
|
|
1167
1167
|
): OperationResponse<Paths.GetIntegration.Responses.$200>
|
|
1168
1168
|
/**
|
|
1169
|
-
* updateIntegration -
|
|
1169
|
+
* updateIntegration - updateIntegration
|
|
1170
1170
|
*
|
|
1171
1171
|
* Update an existing integration configuration
|
|
1172
1172
|
*/
|
|
@@ -1176,7 +1176,7 @@ export interface OperationMethods {
|
|
|
1176
1176
|
config?: AxiosRequestConfig
|
|
1177
1177
|
): OperationResponse<Paths.UpdateIntegration.Responses.$200>
|
|
1178
1178
|
/**
|
|
1179
|
-
* deleteIntegration -
|
|
1179
|
+
* deleteIntegration - deleteIntegration
|
|
1180
1180
|
*
|
|
1181
1181
|
* Delete an integration and all its use cases
|
|
1182
1182
|
*/
|
|
@@ -1186,7 +1186,7 @@ export interface OperationMethods {
|
|
|
1186
1186
|
config?: AxiosRequestConfig
|
|
1187
1187
|
): OperationResponse<Paths.DeleteIntegration.Responses.$200>
|
|
1188
1188
|
/**
|
|
1189
|
-
* listUseCases -
|
|
1189
|
+
* listUseCases - listUseCases
|
|
1190
1190
|
*
|
|
1191
1191
|
* Retrieve all use cases for a specific integration
|
|
1192
1192
|
*/
|
|
@@ -1196,7 +1196,7 @@ export interface OperationMethods {
|
|
|
1196
1196
|
config?: AxiosRequestConfig
|
|
1197
1197
|
): OperationResponse<Paths.ListUseCases.Responses.$200>
|
|
1198
1198
|
/**
|
|
1199
|
-
* createUseCase -
|
|
1199
|
+
* createUseCase - createUseCase
|
|
1200
1200
|
*
|
|
1201
1201
|
* Create a new use case for an integration
|
|
1202
1202
|
*/
|
|
@@ -1206,7 +1206,7 @@ export interface OperationMethods {
|
|
|
1206
1206
|
config?: AxiosRequestConfig
|
|
1207
1207
|
): OperationResponse<Paths.CreateUseCase.Responses.$201>
|
|
1208
1208
|
/**
|
|
1209
|
-
* getUseCase -
|
|
1209
|
+
* getUseCase - getUseCase
|
|
1210
1210
|
*
|
|
1211
1211
|
* Retrieve a specific use case by its ID
|
|
1212
1212
|
*/
|
|
@@ -1216,7 +1216,7 @@ export interface OperationMethods {
|
|
|
1216
1216
|
config?: AxiosRequestConfig
|
|
1217
1217
|
): OperationResponse<Paths.GetUseCase.Responses.$200>
|
|
1218
1218
|
/**
|
|
1219
|
-
* updateUseCase -
|
|
1219
|
+
* updateUseCase - updateUseCase
|
|
1220
1220
|
*
|
|
1221
1221
|
* Update an existing use case configuration
|
|
1222
1222
|
*/
|
|
@@ -1226,7 +1226,7 @@ export interface OperationMethods {
|
|
|
1226
1226
|
config?: AxiosRequestConfig
|
|
1227
1227
|
): OperationResponse<Paths.UpdateUseCase.Responses.$200>
|
|
1228
1228
|
/**
|
|
1229
|
-
* deleteUseCase -
|
|
1229
|
+
* deleteUseCase - deleteUseCase
|
|
1230
1230
|
*
|
|
1231
1231
|
* Delete a use case from an integration
|
|
1232
1232
|
*/
|
|
@@ -1236,7 +1236,7 @@ export interface OperationMethods {
|
|
|
1236
1236
|
config?: AxiosRequestConfig
|
|
1237
1237
|
): OperationResponse<Paths.DeleteUseCase.Responses.$200>
|
|
1238
1238
|
/**
|
|
1239
|
-
* listUseCaseHistory -
|
|
1239
|
+
* listUseCaseHistory - listUseCaseHistory
|
|
1240
1240
|
*
|
|
1241
1241
|
* Retrieve historical versions of a use case's configuration.
|
|
1242
1242
|
* History entries are returned in reverse chronological order (newest first).
|
|
@@ -1249,7 +1249,7 @@ export interface OperationMethods {
|
|
|
1249
1249
|
config?: AxiosRequestConfig
|
|
1250
1250
|
): OperationResponse<Paths.ListUseCaseHistory.Responses.$200>
|
|
1251
1251
|
/**
|
|
1252
|
-
* setIntegrationAppMapping -
|
|
1252
|
+
* setIntegrationAppMapping - setIntegrationAppMapping
|
|
1253
1253
|
*
|
|
1254
1254
|
* Creates or updates a mapping from an app/component to an integration.
|
|
1255
1255
|
* This allows ERP updates sent via app_id and component_id to be associated
|
|
@@ -1262,7 +1262,7 @@ export interface OperationMethods {
|
|
|
1262
1262
|
config?: AxiosRequestConfig
|
|
1263
1263
|
): OperationResponse<Paths.SetIntegrationAppMapping.Responses.$200>
|
|
1264
1264
|
/**
|
|
1265
|
-
* deleteIntegrationAppMapping -
|
|
1265
|
+
* deleteIntegrationAppMapping - deleteIntegrationAppMapping
|
|
1266
1266
|
*
|
|
1267
1267
|
* Removes a mapping from an app/component to an integration.
|
|
1268
1268
|
*
|
|
@@ -1344,7 +1344,7 @@ export interface PathsDictionary {
|
|
|
1344
1344
|
}
|
|
1345
1345
|
['/v1/integrations']: {
|
|
1346
1346
|
/**
|
|
1347
|
-
* listIntegrations -
|
|
1347
|
+
* listIntegrations - listIntegrations
|
|
1348
1348
|
*
|
|
1349
1349
|
* Retrieve all integrations for the authenticated organization
|
|
1350
1350
|
*/
|
|
@@ -1354,7 +1354,7 @@ export interface PathsDictionary {
|
|
|
1354
1354
|
config?: AxiosRequestConfig
|
|
1355
1355
|
): OperationResponse<Paths.ListIntegrations.Responses.$200>
|
|
1356
1356
|
/**
|
|
1357
|
-
* createIntegration -
|
|
1357
|
+
* createIntegration - createIntegration
|
|
1358
1358
|
*
|
|
1359
1359
|
* Create a new integration configuration
|
|
1360
1360
|
*/
|
|
@@ -1366,7 +1366,7 @@ export interface PathsDictionary {
|
|
|
1366
1366
|
}
|
|
1367
1367
|
['/v1/integrations/{integrationId}']: {
|
|
1368
1368
|
/**
|
|
1369
|
-
* getIntegration -
|
|
1369
|
+
* getIntegration - getIntegration
|
|
1370
1370
|
*
|
|
1371
1371
|
* Retrieve a specific integration by its ID
|
|
1372
1372
|
*/
|
|
@@ -1376,7 +1376,7 @@ export interface PathsDictionary {
|
|
|
1376
1376
|
config?: AxiosRequestConfig
|
|
1377
1377
|
): OperationResponse<Paths.GetIntegration.Responses.$200>
|
|
1378
1378
|
/**
|
|
1379
|
-
* updateIntegration -
|
|
1379
|
+
* updateIntegration - updateIntegration
|
|
1380
1380
|
*
|
|
1381
1381
|
* Update an existing integration configuration
|
|
1382
1382
|
*/
|
|
@@ -1386,7 +1386,7 @@ export interface PathsDictionary {
|
|
|
1386
1386
|
config?: AxiosRequestConfig
|
|
1387
1387
|
): OperationResponse<Paths.UpdateIntegration.Responses.$200>
|
|
1388
1388
|
/**
|
|
1389
|
-
* deleteIntegration -
|
|
1389
|
+
* deleteIntegration - deleteIntegration
|
|
1390
1390
|
*
|
|
1391
1391
|
* Delete an integration and all its use cases
|
|
1392
1392
|
*/
|
|
@@ -1398,7 +1398,7 @@ export interface PathsDictionary {
|
|
|
1398
1398
|
}
|
|
1399
1399
|
['/v1/integrations/{integrationId}/use-cases']: {
|
|
1400
1400
|
/**
|
|
1401
|
-
* listUseCases -
|
|
1401
|
+
* listUseCases - listUseCases
|
|
1402
1402
|
*
|
|
1403
1403
|
* Retrieve all use cases for a specific integration
|
|
1404
1404
|
*/
|
|
@@ -1408,7 +1408,7 @@ export interface PathsDictionary {
|
|
|
1408
1408
|
config?: AxiosRequestConfig
|
|
1409
1409
|
): OperationResponse<Paths.ListUseCases.Responses.$200>
|
|
1410
1410
|
/**
|
|
1411
|
-
* createUseCase -
|
|
1411
|
+
* createUseCase - createUseCase
|
|
1412
1412
|
*
|
|
1413
1413
|
* Create a new use case for an integration
|
|
1414
1414
|
*/
|
|
@@ -1420,7 +1420,7 @@ export interface PathsDictionary {
|
|
|
1420
1420
|
}
|
|
1421
1421
|
['/v1/integrations/{integrationId}/use-cases/{useCaseId}']: {
|
|
1422
1422
|
/**
|
|
1423
|
-
* getUseCase -
|
|
1423
|
+
* getUseCase - getUseCase
|
|
1424
1424
|
*
|
|
1425
1425
|
* Retrieve a specific use case by its ID
|
|
1426
1426
|
*/
|
|
@@ -1430,7 +1430,7 @@ export interface PathsDictionary {
|
|
|
1430
1430
|
config?: AxiosRequestConfig
|
|
1431
1431
|
): OperationResponse<Paths.GetUseCase.Responses.$200>
|
|
1432
1432
|
/**
|
|
1433
|
-
* updateUseCase -
|
|
1433
|
+
* updateUseCase - updateUseCase
|
|
1434
1434
|
*
|
|
1435
1435
|
* Update an existing use case configuration
|
|
1436
1436
|
*/
|
|
@@ -1440,7 +1440,7 @@ export interface PathsDictionary {
|
|
|
1440
1440
|
config?: AxiosRequestConfig
|
|
1441
1441
|
): OperationResponse<Paths.UpdateUseCase.Responses.$200>
|
|
1442
1442
|
/**
|
|
1443
|
-
* deleteUseCase -
|
|
1443
|
+
* deleteUseCase - deleteUseCase
|
|
1444
1444
|
*
|
|
1445
1445
|
* Delete a use case from an integration
|
|
1446
1446
|
*/
|
|
@@ -1452,7 +1452,7 @@ export interface PathsDictionary {
|
|
|
1452
1452
|
}
|
|
1453
1453
|
['/v1/integrations/{integrationId}/use-cases/{useCaseId}/history']: {
|
|
1454
1454
|
/**
|
|
1455
|
-
* listUseCaseHistory -
|
|
1455
|
+
* listUseCaseHistory - listUseCaseHistory
|
|
1456
1456
|
*
|
|
1457
1457
|
* Retrieve historical versions of a use case's configuration.
|
|
1458
1458
|
* History entries are returned in reverse chronological order (newest first).
|
|
@@ -1467,7 +1467,7 @@ export interface PathsDictionary {
|
|
|
1467
1467
|
}
|
|
1468
1468
|
['/v1/integrations/{integrationId}/app-mapping']: {
|
|
1469
1469
|
/**
|
|
1470
|
-
* setIntegrationAppMapping -
|
|
1470
|
+
* setIntegrationAppMapping - setIntegrationAppMapping
|
|
1471
1471
|
*
|
|
1472
1472
|
* Creates or updates a mapping from an app/component to an integration.
|
|
1473
1473
|
* This allows ERP updates sent via app_id and component_id to be associated
|
|
@@ -1480,7 +1480,7 @@ export interface PathsDictionary {
|
|
|
1480
1480
|
config?: AxiosRequestConfig
|
|
1481
1481
|
): OperationResponse<Paths.SetIntegrationAppMapping.Responses.$200>
|
|
1482
1482
|
/**
|
|
1483
|
-
* deleteIntegrationAppMapping -
|
|
1483
|
+
* deleteIntegrationAppMapping - deleteIntegrationAppMapping
|
|
1484
1484
|
*
|
|
1485
1485
|
* Removes a mapping from an app/component to an integration.
|
|
1486
1486
|
*
|
package/dist/openapi.json
CHANGED
|
@@ -608,7 +608,7 @@
|
|
|
608
608
|
"/v1/integrations": {
|
|
609
609
|
"get": {
|
|
610
610
|
"operationId": "listIntegrations",
|
|
611
|
-
"summary": "
|
|
611
|
+
"summary": "listIntegrations",
|
|
612
612
|
"description": "Retrieve all integrations for the authenticated organization",
|
|
613
613
|
"tags": [
|
|
614
614
|
"integrations"
|
|
@@ -645,7 +645,7 @@
|
|
|
645
645
|
},
|
|
646
646
|
"post": {
|
|
647
647
|
"operationId": "createIntegration",
|
|
648
|
-
"summary": "
|
|
648
|
+
"summary": "createIntegration",
|
|
649
649
|
"description": "Create a new integration configuration",
|
|
650
650
|
"tags": [
|
|
651
651
|
"integrations"
|
|
@@ -686,7 +686,7 @@
|
|
|
686
686
|
"/v1/integrations/{integrationId}": {
|
|
687
687
|
"get": {
|
|
688
688
|
"operationId": "getIntegration",
|
|
689
|
-
"summary": "
|
|
689
|
+
"summary": "getIntegration",
|
|
690
690
|
"description": "Retrieve a specific integration by its ID",
|
|
691
691
|
"tags": [
|
|
692
692
|
"integrations"
|
|
@@ -727,7 +727,7 @@
|
|
|
727
727
|
},
|
|
728
728
|
"put": {
|
|
729
729
|
"operationId": "updateIntegration",
|
|
730
|
-
"summary": "
|
|
730
|
+
"summary": "updateIntegration",
|
|
731
731
|
"description": "Update an existing integration configuration",
|
|
732
732
|
"tags": [
|
|
733
733
|
"integrations"
|
|
@@ -781,7 +781,7 @@
|
|
|
781
781
|
},
|
|
782
782
|
"delete": {
|
|
783
783
|
"operationId": "deleteIntegration",
|
|
784
|
-
"summary": "
|
|
784
|
+
"summary": "deleteIntegration",
|
|
785
785
|
"description": "Delete an integration and all its use cases",
|
|
786
786
|
"tags": [
|
|
787
787
|
"integrations"
|
|
@@ -829,7 +829,7 @@
|
|
|
829
829
|
"/v1/integrations/{integrationId}/use-cases": {
|
|
830
830
|
"get": {
|
|
831
831
|
"operationId": "listUseCases",
|
|
832
|
-
"summary": "
|
|
832
|
+
"summary": "listUseCases",
|
|
833
833
|
"description": "Retrieve all use cases for a specific integration",
|
|
834
834
|
"tags": [
|
|
835
835
|
"integrations"
|
|
@@ -878,7 +878,7 @@
|
|
|
878
878
|
},
|
|
879
879
|
"post": {
|
|
880
880
|
"operationId": "createUseCase",
|
|
881
|
-
"summary": "
|
|
881
|
+
"summary": "createUseCase",
|
|
882
882
|
"description": "Create a new use case for an integration",
|
|
883
883
|
"tags": [
|
|
884
884
|
"integrations"
|
|
@@ -934,7 +934,7 @@
|
|
|
934
934
|
"/v1/integrations/{integrationId}/use-cases/{useCaseId}": {
|
|
935
935
|
"get": {
|
|
936
936
|
"operationId": "getUseCase",
|
|
937
|
-
"summary": "
|
|
937
|
+
"summary": "getUseCase",
|
|
938
938
|
"description": "Retrieve a specific use case by its ID",
|
|
939
939
|
"tags": [
|
|
940
940
|
"integrations"
|
|
@@ -985,7 +985,7 @@
|
|
|
985
985
|
},
|
|
986
986
|
"put": {
|
|
987
987
|
"operationId": "updateUseCase",
|
|
988
|
-
"summary": "
|
|
988
|
+
"summary": "updateUseCase",
|
|
989
989
|
"description": "Update an existing use case configuration",
|
|
990
990
|
"tags": [
|
|
991
991
|
"integrations"
|
|
@@ -1049,7 +1049,7 @@
|
|
|
1049
1049
|
},
|
|
1050
1050
|
"delete": {
|
|
1051
1051
|
"operationId": "deleteUseCase",
|
|
1052
|
-
"summary": "
|
|
1052
|
+
"summary": "deleteUseCase",
|
|
1053
1053
|
"description": "Delete a use case from an integration",
|
|
1054
1054
|
"tags": [
|
|
1055
1055
|
"integrations"
|
|
@@ -1107,7 +1107,7 @@
|
|
|
1107
1107
|
"/v1/integrations/{integrationId}/use-cases/{useCaseId}/history": {
|
|
1108
1108
|
"get": {
|
|
1109
1109
|
"operationId": "listUseCaseHistory",
|
|
1110
|
-
"summary": "
|
|
1110
|
+
"summary": "listUseCaseHistory",
|
|
1111
1111
|
"description": "Retrieve historical versions of a use case's configuration.\nHistory entries are returned in reverse chronological order (newest first).\nUse the 'cursor' parameter for pagination to fetch additional entries.\n",
|
|
1112
1112
|
"tags": [
|
|
1113
1113
|
"integrations"
|
|
@@ -1186,7 +1186,7 @@
|
|
|
1186
1186
|
"/v1/integrations/{integrationId}/app-mapping": {
|
|
1187
1187
|
"put": {
|
|
1188
1188
|
"operationId": "setIntegrationAppMapping",
|
|
1189
|
-
"summary": "
|
|
1189
|
+
"summary": "setIntegrationAppMapping",
|
|
1190
1190
|
"description": "Creates or updates a mapping from an app/component to an integration.\nThis allows ERP updates sent via app_id and component_id to be associated\nwith a specific integration configuration.\n",
|
|
1191
1191
|
"tags": [
|
|
1192
1192
|
"integrations"
|
|
@@ -1250,7 +1250,7 @@
|
|
|
1250
1250
|
},
|
|
1251
1251
|
"delete": {
|
|
1252
1252
|
"operationId": "deleteIntegrationAppMapping",
|
|
1253
|
-
"summary": "
|
|
1253
|
+
"summary": "deleteIntegrationAppMapping",
|
|
1254
1254
|
"description": "Removes a mapping from an app/component to an integration.\n",
|
|
1255
1255
|
"tags": [
|
|
1256
1256
|
"integrations"
|
|
@@ -2625,5 +2625,13 @@
|
|
|
2625
2625
|
}
|
|
2626
2626
|
}
|
|
2627
2627
|
}
|
|
2628
|
-
}
|
|
2628
|
+
},
|
|
2629
|
+
"servers": [
|
|
2630
|
+
{
|
|
2631
|
+
"url": "https://erp-integration-api.sls.epilot.io"
|
|
2632
|
+
},
|
|
2633
|
+
{
|
|
2634
|
+
"url": "https://erp-integration-api.sls.epilot.io"
|
|
2635
|
+
}
|
|
2636
|
+
]
|
|
2629
2637
|
}
|