@epilot/entity-client 6.11.2 → 6.11.4

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
@@ -6162,6 +6162,10 @@ declare namespace Components {
6162
6162
  repeatable?: boolean;
6163
6163
  has_primary?: boolean;
6164
6164
  type: "number";
6165
+ /**
6166
+ * Optional data type override. When set to 'number', the value is stored as a number instead of a string. Defaults to 'string'.
6167
+ */
6168
+ data_type?: "number" | "string";
6165
6169
  format?: string;
6166
6170
  /**
6167
6171
  * Whether or not to show a thousands separator
package/dist/openapi.json CHANGED
@@ -6188,6 +6188,15 @@
6188
6188
  "number"
6189
6189
  ]
6190
6190
  },
6191
+ "data_type": {
6192
+ "type": "string",
6193
+ "enum": [
6194
+ "number",
6195
+ "string"
6196
+ ],
6197
+ "default": "string",
6198
+ "description": "Optional data type override. When set to 'number', the value is stored as a number instead of a string. Defaults to 'string'."
6199
+ },
6191
6200
  "format": {
6192
6201
  "type": "string"
6193
6202
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/entity-client",
3
- "version": "6.11.2",
3
+ "version": "6.11.4",
4
4
  "description": "JavaScript client library for the epilot Core Entity API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",