@epilot/entity-client 4.14.0-rc1 → 4.14.0

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/client.d.ts CHANGED
File without changes
package/dist/client.js CHANGED
File without changes
File without changes
File without changes
package/dist/index.d.ts CHANGED
File without changes
package/dist/index.js CHANGED
File without changes
File without changes
package/dist/openapi.d.ts CHANGED
@@ -5147,8 +5147,18 @@ declare namespace Components {
5147
5147
  };
5148
5148
  type?: "status";
5149
5149
  options?: ((string | null) | {
5150
+ /**
5151
+ * The stored value of the option
5152
+ */
5150
5153
  value: string;
5154
+ /**
5155
+ * The displayed title of the option
5156
+ */
5151
5157
  title?: string;
5158
+ /**
5159
+ * If true, the option will not be displayed in the UI
5160
+ */
5161
+ hidden?: boolean;
5152
5162
  })[];
5153
5163
  }
5154
5164
  /**
package/dist/openapi.json CHANGED
@@ -2941,10 +2941,17 @@
2941
2941
  "type": "object",
2942
2942
  "properties": {
2943
2943
  "value": {
2944
+ "description": "The stored value of the option",
2944
2945
  "type": "string"
2945
2946
  },
2946
2947
  "title": {
2948
+ "description": "The displayed title of the option",
2947
2949
  "type": "string"
2950
+ },
2951
+ "hidden": {
2952
+ "description": "If true, the option will not be displayed in the UI",
2953
+ "type": "boolean",
2954
+ "default": false
2948
2955
  }
2949
2956
  },
2950
2957
  "required": [
File without changes
File without changes