@epilot/app-client 0.9.7 → 0.9.9
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/openapi.d.ts +10 -2
- package/dist/openapi.json +12 -8
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -1379,6 +1379,10 @@ declare namespace Components {
|
|
|
1379
1379
|
type: "contractIdentification";
|
|
1380
1380
|
auth?: PortalExtensionAuthBlock;
|
|
1381
1381
|
call: {
|
|
1382
|
+
/**
|
|
1383
|
+
* HTTP method to use for the call
|
|
1384
|
+
*/
|
|
1385
|
+
method?: string;
|
|
1382
1386
|
/**
|
|
1383
1387
|
* URL to call. Supports variable interpolation.
|
|
1384
1388
|
*/
|
|
@@ -1399,7 +1403,7 @@ declare namespace Components {
|
|
|
1399
1403
|
* Optional JSON body to use for the call. Defaults to object with all configured identifiers grouped by entity, e.g. `{"contract": {"contract_name": "Name"}}`. Supports variable interpolation.
|
|
1400
1404
|
*/
|
|
1401
1405
|
body?: {
|
|
1402
|
-
[
|
|
1406
|
+
[key: string]: any;
|
|
1403
1407
|
};
|
|
1404
1408
|
};
|
|
1405
1409
|
/**
|
|
@@ -1595,6 +1599,10 @@ declare namespace Components {
|
|
|
1595
1599
|
type: "registrationIdentifiersCheck";
|
|
1596
1600
|
auth?: PortalExtensionAuthBlock;
|
|
1597
1601
|
call: {
|
|
1602
|
+
/**
|
|
1603
|
+
* HTTP method to use for the call
|
|
1604
|
+
*/
|
|
1605
|
+
method?: string;
|
|
1598
1606
|
/**
|
|
1599
1607
|
* URL to call. Supports variable interpolation.
|
|
1600
1608
|
*/
|
|
@@ -1615,7 +1623,7 @@ declare namespace Components {
|
|
|
1615
1623
|
* Optional JSON body to use for the call. Defaults to object with all configured identifiers grouped by entity, e.g. `{"contract": {"contract_name": "Name"}}`. Supports variable interpolation.
|
|
1616
1624
|
*/
|
|
1617
1625
|
body?: {
|
|
1618
|
-
[
|
|
1626
|
+
[key: string]: any;
|
|
1619
1627
|
};
|
|
1620
1628
|
/**
|
|
1621
1629
|
* Contact ID usually retrieved from the response body, e.g. `{{CallResponse.data.contact_id}}`. Supports variable interpolation.
|
package/dist/openapi.json
CHANGED
|
@@ -2184,6 +2184,11 @@
|
|
|
2184
2184
|
"call": {
|
|
2185
2185
|
"type": "object",
|
|
2186
2186
|
"properties": {
|
|
2187
|
+
"method": {
|
|
2188
|
+
"type": "string",
|
|
2189
|
+
"description": "HTTP method to use for the call",
|
|
2190
|
+
"default": "POST"
|
|
2191
|
+
},
|
|
2187
2192
|
"url": {
|
|
2188
2193
|
"type": "string",
|
|
2189
2194
|
"description": "URL to call. Supports variable interpolation."
|
|
@@ -2206,10 +2211,7 @@
|
|
|
2206
2211
|
},
|
|
2207
2212
|
"body": {
|
|
2208
2213
|
"type": "object",
|
|
2209
|
-
"description": "Optional JSON body to use for the call. Defaults to object with all configured identifiers grouped by entity, e.g. `{\"contract\": {\"contract_name\": \"Name\"}}`. Supports variable interpolation."
|
|
2210
|
-
"additionalProperties": {
|
|
2211
|
-
"type": "string"
|
|
2212
|
-
}
|
|
2214
|
+
"description": "Optional JSON body to use for the call. Defaults to object with all configured identifiers grouped by entity, e.g. `{\"contract\": {\"contract_name\": \"Name\"}}`. Supports variable interpolation."
|
|
2213
2215
|
},
|
|
2214
2216
|
"result": {
|
|
2215
2217
|
"type": "string",
|
|
@@ -2251,6 +2253,11 @@
|
|
|
2251
2253
|
"call": {
|
|
2252
2254
|
"type": "object",
|
|
2253
2255
|
"properties": {
|
|
2256
|
+
"method": {
|
|
2257
|
+
"type": "string",
|
|
2258
|
+
"description": "HTTP method to use for the call",
|
|
2259
|
+
"default": "POST"
|
|
2260
|
+
},
|
|
2254
2261
|
"url": {
|
|
2255
2262
|
"type": "string",
|
|
2256
2263
|
"description": "URL to call. Supports variable interpolation."
|
|
@@ -2273,10 +2280,7 @@
|
|
|
2273
2280
|
},
|
|
2274
2281
|
"body": {
|
|
2275
2282
|
"type": "object",
|
|
2276
|
-
"description": "Optional JSON body to use for the call. Defaults to object with all configured identifiers grouped by entity, e.g. `{\"contract\": {\"contract_name\": \"Name\"}}`. Supports variable interpolation."
|
|
2277
|
-
"additionalProperties": {
|
|
2278
|
-
"type": "string"
|
|
2279
|
-
}
|
|
2283
|
+
"description": "Optional JSON body to use for the call. Defaults to object with all configured identifiers grouped by entity, e.g. `{\"contract\": {\"contract_name\": \"Name\"}}`. Supports variable interpolation."
|
|
2280
2284
|
}
|
|
2281
2285
|
},
|
|
2282
2286
|
"required": [
|