@smartspace/api-client 0.1.0-pr.1052.898ea8b → 0.1.0-pr.1054.a60f314
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.
|
@@ -439,7 +439,8 @@ const getSmartSpaceAdminAPI = () => {
|
|
|
439
439
|
};
|
|
440
440
|
/**
|
|
441
441
|
* @summary Returns a JSON Schema object for the container's properties, used to drive the filter editor UI.
|
|
442
|
-
Schema shape: { type: "object", properties: { [name]: { type, title, enum? } } }
|
|
442
|
+
Schema shape: { type: "object", properties: { [name]: { type, title, enum?, format? } } }
|
|
443
|
+
format "date"/"date-time" marks date-valued properties (their filter values remain epoch-millisecond strings).
|
|
443
444
|
containerPath is a query param (not a route segment) to avoid ASP.NET routing splits on paths containing '/'.
|
|
444
445
|
*/
|
|
445
446
|
const dataSourcesContainerSchema = (dataSourceId, params) => {
|
|
@@ -1632,7 +1632,8 @@ export declare const dataSourcesPreviewContainerResponse: zod.ZodObject<{
|
|
|
1632
1632
|
}, zod.core.$strip>;
|
|
1633
1633
|
/**
|
|
1634
1634
|
* @summary Returns a JSON Schema object for the container's properties, used to drive the filter editor UI.
|
|
1635
|
-
Schema shape: { type: "object", properties: { [name]: { type, title, enum? } } }
|
|
1635
|
+
Schema shape: { type: "object", properties: { [name]: { type, title, enum?, format? } } }
|
|
1636
|
+
format "date"/"date-time" marks date-valued properties (their filter values remain epoch-millisecond strings).
|
|
1636
1637
|
containerPath is a query param (not a route segment) to avoid ASP.NET routing splits on paths containing '/'.
|
|
1637
1638
|
*/
|
|
1638
1639
|
export declare const dataSourcesContainerSchemaPathDataSourceIdRegExp: RegExp;
|
|
@@ -1264,7 +1264,8 @@ exports.dataSourcesPreviewContainerResponse = zod_1.default.object({
|
|
|
1264
1264
|
});
|
|
1265
1265
|
/**
|
|
1266
1266
|
* @summary Returns a JSON Schema object for the container's properties, used to drive the filter editor UI.
|
|
1267
|
-
Schema shape: { type: "object", properties: { [name]: { type, title, enum? } } }
|
|
1267
|
+
Schema shape: { type: "object", properties: { [name]: { type, title, enum?, format? } } }
|
|
1268
|
+
format "date"/"date-time" marks date-valued properties (their filter values remain epoch-millisecond strings).
|
|
1268
1269
|
containerPath is a query param (not a route segment) to avoid ASP.NET routing splits on paths containing '/'.
|
|
1269
1270
|
*/
|
|
1270
1271
|
exports.dataSourcesContainerSchemaPathDataSourceIdRegExp = new RegExp('^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$');
|