@objectstack/spec 0.3.1 → 0.3.2
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/api/contract.zod.d.ts +4 -4
- package/dist/ui/view.zod.d.ts +2315 -54
- package/dist/ui/view.zod.d.ts.map +1 -1
- package/dist/ui/view.zod.js +102 -3
- package/json-schema/ui/FormField.json +61 -0
- package/json-schema/ui/FormSection.json +60 -1
- package/json-schema/ui/FormView.json +257 -2
- package/json-schema/ui/HttpMethod.json +16 -0
- package/json-schema/ui/HttpRequest.json +46 -0
- package/json-schema/ui/ListColumn.json +57 -0
- package/json-schema/ui/ListView.json +249 -4
- package/json-schema/ui/PaginationConfig.json +26 -0
- package/json-schema/ui/SelectionConfig.json +22 -0
- package/json-schema/ui/View.json +1012 -12
- package/json-schema/ui/ViewData.json +142 -0
- package/package.json +1 -1
|
@@ -426,13 +426,13 @@ export declare const ListRecordResponseSchema: z.ZodObject<{
|
|
|
426
426
|
}>;
|
|
427
427
|
}, "strip", z.ZodTypeAny, {
|
|
428
428
|
data: Record<string, any>[];
|
|
429
|
-
success: boolean;
|
|
430
429
|
pagination: {
|
|
431
430
|
total: number;
|
|
432
431
|
limit: number;
|
|
433
432
|
offset: number;
|
|
434
433
|
hasMore: boolean;
|
|
435
434
|
};
|
|
435
|
+
success: boolean;
|
|
436
436
|
error?: {
|
|
437
437
|
code: string;
|
|
438
438
|
message: string;
|
|
@@ -446,13 +446,13 @@ export declare const ListRecordResponseSchema: z.ZodObject<{
|
|
|
446
446
|
} | undefined;
|
|
447
447
|
}, {
|
|
448
448
|
data: Record<string, any>[];
|
|
449
|
-
success: boolean;
|
|
450
449
|
pagination: {
|
|
451
450
|
total: number;
|
|
452
451
|
limit: number;
|
|
453
452
|
offset: number;
|
|
454
453
|
hasMore: boolean;
|
|
455
454
|
};
|
|
455
|
+
success: boolean;
|
|
456
456
|
error?: {
|
|
457
457
|
code: string;
|
|
458
458
|
message: string;
|
|
@@ -1204,13 +1204,13 @@ export declare const ApiContracts: {
|
|
|
1204
1204
|
}>;
|
|
1205
1205
|
}, "strip", z.ZodTypeAny, {
|
|
1206
1206
|
data: Record<string, any>[];
|
|
1207
|
-
success: boolean;
|
|
1208
1207
|
pagination: {
|
|
1209
1208
|
total: number;
|
|
1210
1209
|
limit: number;
|
|
1211
1210
|
offset: number;
|
|
1212
1211
|
hasMore: boolean;
|
|
1213
1212
|
};
|
|
1213
|
+
success: boolean;
|
|
1214
1214
|
error?: {
|
|
1215
1215
|
code: string;
|
|
1216
1216
|
message: string;
|
|
@@ -1224,13 +1224,13 @@ export declare const ApiContracts: {
|
|
|
1224
1224
|
} | undefined;
|
|
1225
1225
|
}, {
|
|
1226
1226
|
data: Record<string, any>[];
|
|
1227
|
-
success: boolean;
|
|
1228
1227
|
pagination: {
|
|
1229
1228
|
total: number;
|
|
1230
1229
|
limit: number;
|
|
1231
1230
|
offset: number;
|
|
1232
1231
|
hasMore: boolean;
|
|
1233
1232
|
};
|
|
1233
|
+
success: boolean;
|
|
1234
1234
|
error?: {
|
|
1235
1235
|
code: string;
|
|
1236
1236
|
message: string;
|