@epilot/entity-client 6.3.2 → 6.4.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 +0 -0
- package/dist/client.js +0 -0
- package/dist/definition.d.ts +0 -0
- package/dist/definition.js +0 -0
- package/dist/index.d.ts +0 -0
- package/dist/index.js +0 -0
- package/dist/openapi-runtime.json +0 -0
- package/dist/openapi.d.ts +16 -0
- package/dist/openapi.json +11 -0
- package/dist/schema-model.d.ts +0 -0
- package/dist/schema-model.js +0 -0
- package/package.json +1 -1
package/dist/client.d.ts
CHANGED
|
File without changes
|
package/dist/client.js
CHANGED
|
File without changes
|
package/dist/definition.d.ts
CHANGED
|
File without changes
|
package/dist/definition.js
CHANGED
|
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
|
@@ -2258,6 +2258,14 @@ declare namespace Components {
|
|
|
2258
2258
|
* Manifest ID used to create/update the schema capabilility
|
|
2259
2259
|
*/
|
|
2260
2260
|
_manifest?: string /* uuid */[] | null;
|
|
2261
|
+
ui_config?: {
|
|
2262
|
+
/**
|
|
2263
|
+
* Whether the capability is filterable
|
|
2264
|
+
* example:
|
|
2265
|
+
* true
|
|
2266
|
+
*/
|
|
2267
|
+
is_filterable?: boolean;
|
|
2268
|
+
};
|
|
2261
2269
|
ui_hooks?: {
|
|
2262
2270
|
[name: string]: any;
|
|
2263
2271
|
/**
|
|
@@ -2377,6 +2385,14 @@ declare namespace Components {
|
|
|
2377
2385
|
* Manifest ID used to create/update the schema capabilility
|
|
2378
2386
|
*/
|
|
2379
2387
|
_manifest?: string /* uuid */[] | null;
|
|
2388
|
+
ui_config?: {
|
|
2389
|
+
/**
|
|
2390
|
+
* Whether the capability is filterable
|
|
2391
|
+
* example:
|
|
2392
|
+
* true
|
|
2393
|
+
*/
|
|
2394
|
+
is_filterable?: boolean;
|
|
2395
|
+
};
|
|
2380
2396
|
ui_hooks?: {
|
|
2381
2397
|
[name: string]: any;
|
|
2382
2398
|
/**
|
package/dist/openapi.json
CHANGED
|
@@ -6489,6 +6489,17 @@
|
|
|
6489
6489
|
},
|
|
6490
6490
|
"nullable": true
|
|
6491
6491
|
},
|
|
6492
|
+
"ui_config": {
|
|
6493
|
+
"type": "object",
|
|
6494
|
+
"properties": {
|
|
6495
|
+
"is_filterable": {
|
|
6496
|
+
"type": "boolean",
|
|
6497
|
+
"description": "Whether the capability is filterable",
|
|
6498
|
+
"example": true,
|
|
6499
|
+
"default": false
|
|
6500
|
+
}
|
|
6501
|
+
}
|
|
6502
|
+
},
|
|
6492
6503
|
"ui_hooks": {
|
|
6493
6504
|
"type": "array",
|
|
6494
6505
|
"items": {
|
package/dist/schema-model.d.ts
CHANGED
|
File without changes
|
package/dist/schema-model.js
CHANGED
|
File without changes
|