@epilot/app-client 0.9.6 → 0.9.8

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
@@ -1395,6 +1395,12 @@ declare namespace Components {
1395
1395
  headers: {
1396
1396
  [name: string]: string;
1397
1397
  };
1398
+ /**
1399
+ * 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
+ */
1401
+ body?: {
1402
+ [key: string]: any;
1403
+ };
1398
1404
  };
1399
1405
  /**
1400
1406
  * Name of the Contact attribute to update with the matched Contact ID. Must be a Contact relation attribute supporting multiple entities.
@@ -1605,6 +1611,12 @@ declare namespace Components {
1605
1611
  headers: {
1606
1612
  [name: string]: string;
1607
1613
  };
1614
+ /**
1615
+ * 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
+ */
1617
+ body?: {
1618
+ [key: string]: any;
1619
+ };
1608
1620
  /**
1609
1621
  * Contact ID usually retrieved from the response body, e.g. `{{CallResponse.data.contact_id}}`. Supports variable interpolation.
1610
1622
  */
package/dist/openapi.json CHANGED
@@ -2204,6 +2204,10 @@
2204
2204
  },
2205
2205
  "default": {}
2206
2206
  },
2207
+ "body": {
2208
+ "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
+ },
2207
2211
  "result": {
2208
2212
  "type": "string",
2209
2213
  "description": "Contact ID usually retrieved from the response body, e.g. `{{CallResponse.data.contact_id}}`. Supports variable interpolation."
@@ -2263,6 +2267,10 @@
2263
2267
  "type": "string"
2264
2268
  },
2265
2269
  "default": {}
2270
+ },
2271
+ "body": {
2272
+ "type": "object",
2273
+ "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."
2266
2274
  }
2267
2275
  },
2268
2276
  "required": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/app-client",
3
- "version": "0.9.6",
3
+ "version": "0.9.8",
4
4
  "description": "JavaScript client library for the epilot App API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",