@epilot/app-client 0.9.8 → 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 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
  */
@@ -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
  */
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."
@@ -2248,6 +2253,11 @@
2248
2253
  "call": {
2249
2254
  "type": "object",
2250
2255
  "properties": {
2256
+ "method": {
2257
+ "type": "string",
2258
+ "description": "HTTP method to use for the call",
2259
+ "default": "POST"
2260
+ },
2251
2261
  "url": {
2252
2262
  "type": "string",
2253
2263
  "description": "URL to call. Supports variable interpolation."
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/app-client",
3
- "version": "0.9.8",
3
+ "version": "0.9.9",
4
4
  "description": "JavaScript client library for the epilot App API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",