@epilot/app-client 0.9.7 → 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
@@ -1399,7 +1399,7 @@ declare namespace Components {
1399
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
1400
  */
1401
1401
  body?: {
1402
- [name: string]: string;
1402
+ [key: string]: any;
1403
1403
  };
1404
1404
  };
1405
1405
  /**
@@ -1615,7 +1615,7 @@ declare namespace Components {
1615
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
1616
  */
1617
1617
  body?: {
1618
- [name: string]: string;
1618
+ [key: string]: any;
1619
1619
  };
1620
1620
  /**
1621
1621
  * Contact ID usually retrieved from the response body, e.g. `{{CallResponse.data.contact_id}}`. Supports variable interpolation.
package/dist/openapi.json CHANGED
@@ -2206,10 +2206,7 @@
2206
2206
  },
2207
2207
  "body": {
2208
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
- "additionalProperties": {
2211
- "type": "string"
2212
- }
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."
2213
2210
  },
2214
2211
  "result": {
2215
2212
  "type": "string",
@@ -2273,10 +2270,7 @@
2273
2270
  },
2274
2271
  "body": {
2275
2272
  "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
- }
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."
2280
2274
  }
2281
2275
  },
2282
2276
  "required": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/app-client",
3
- "version": "0.9.7",
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",