@superbright/indexeddb-orm 1.0.58 → 1.0.60
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/api.generated.d.ts +1009 -30
- package/dist/api/cms-schemas.generated.cjs +1 -1
- package/dist/api/cms-schemas.generated.cjs.map +1 -1
- package/dist/api/cms-schemas.generated.d.ts +236 -236
- package/dist/api/cms-schemas.generated.mjs +77 -77
- package/dist/api/cms-schemas.generated.mjs.map +1 -1
- package/dist/api/schemas.generated.cjs +1 -1
- package/dist/api/schemas.generated.cjs.map +1 -1
- package/dist/api/schemas.generated.d.ts +3559 -196
- package/dist/api/schemas.generated.mjs +324 -207
- package/dist/api/schemas.generated.mjs.map +1 -1
- package/dist/base/floorplan.d.ts +2 -2
- package/dist/features/analytics/analytics.d.ts +76 -76
- package/dist/schema.d.ts +16 -16
- package/dist/schemas.cjs +1 -1
- package/dist/schemas.mjs +79 -57
- package/package.json +1 -1
|
@@ -149,75 +149,75 @@ export declare const EnumsSchema: z.ZodObject<{
|
|
|
149
149
|
}>;
|
|
150
150
|
export type Enums = z.infer<typeof EnumsSchema>;
|
|
151
151
|
export declare const PaginationSchema: z.ZodObject<{
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
152
|
+
total_records: z.ZodNumber;
|
|
153
|
+
total_pages: z.ZodNumber;
|
|
154
|
+
current_page: z.ZodNumber;
|
|
155
|
+
per_page: z.ZodNumber;
|
|
156
156
|
}, "strip", z.ZodTypeAny, {
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
157
|
+
total_records: number;
|
|
158
|
+
total_pages: number;
|
|
159
|
+
current_page: number;
|
|
160
|
+
per_page: number;
|
|
161
161
|
}, {
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
162
|
+
total_records: number;
|
|
163
|
+
total_pages: number;
|
|
164
|
+
current_page: number;
|
|
165
|
+
per_page: number;
|
|
166
166
|
}>;
|
|
167
167
|
export type Pagination = z.infer<typeof PaginationSchema>;
|
|
168
168
|
export declare const StyleStyleSchema: z.ZodObject<{
|
|
169
169
|
id: z.ZodNumber;
|
|
170
170
|
name: z.ZodString;
|
|
171
171
|
description: z.ZodString;
|
|
172
|
-
|
|
172
|
+
media_id: z.ZodNumber;
|
|
173
173
|
}, "strip", z.ZodTypeAny, {
|
|
174
174
|
name: string;
|
|
175
175
|
id: number;
|
|
176
|
+
media_id: number;
|
|
176
177
|
description: string;
|
|
177
|
-
mediaId: number;
|
|
178
178
|
}, {
|
|
179
179
|
name: string;
|
|
180
180
|
id: number;
|
|
181
|
+
media_id: number;
|
|
181
182
|
description: string;
|
|
182
|
-
mediaId: number;
|
|
183
183
|
}>;
|
|
184
184
|
export type StyleStyle = z.infer<typeof StyleStyleSchema>;
|
|
185
185
|
export declare const StyleElementSchema: z.ZodObject<{
|
|
186
|
-
|
|
187
|
-
|
|
186
|
+
furniture_id: z.ZodNumber;
|
|
187
|
+
style_id: z.ZodNumber;
|
|
188
188
|
style: z.ZodObject<{
|
|
189
189
|
id: z.ZodNumber;
|
|
190
190
|
name: z.ZodString;
|
|
191
191
|
description: z.ZodString;
|
|
192
|
-
|
|
192
|
+
media_id: z.ZodNumber;
|
|
193
193
|
}, "strip", z.ZodTypeAny, {
|
|
194
194
|
name: string;
|
|
195
195
|
id: number;
|
|
196
|
+
media_id: number;
|
|
196
197
|
description: string;
|
|
197
|
-
mediaId: number;
|
|
198
198
|
}, {
|
|
199
199
|
name: string;
|
|
200
200
|
id: number;
|
|
201
|
+
media_id: number;
|
|
201
202
|
description: string;
|
|
202
|
-
mediaId: number;
|
|
203
203
|
}>;
|
|
204
204
|
}, "strip", z.ZodTypeAny, {
|
|
205
|
-
|
|
206
|
-
|
|
205
|
+
furniture_id: number;
|
|
206
|
+
style_id: number;
|
|
207
207
|
style: {
|
|
208
208
|
name: string;
|
|
209
209
|
id: number;
|
|
210
|
+
media_id: number;
|
|
210
211
|
description: string;
|
|
211
|
-
mediaId: number;
|
|
212
212
|
};
|
|
213
213
|
}, {
|
|
214
|
-
|
|
215
|
-
|
|
214
|
+
furniture_id: number;
|
|
215
|
+
style_id: number;
|
|
216
216
|
style: {
|
|
217
217
|
name: string;
|
|
218
218
|
id: number;
|
|
219
|
+
media_id: number;
|
|
219
220
|
description: string;
|
|
220
|
-
mediaId: number;
|
|
221
221
|
};
|
|
222
222
|
}>;
|
|
223
223
|
export type StyleElement = z.infer<typeof StyleElementSchema>;
|
|
@@ -333,44 +333,44 @@ export declare const ProductSchema: z.ZodObject<{
|
|
|
333
333
|
};
|
|
334
334
|
}>;
|
|
335
335
|
styles: z.ZodArray<z.ZodObject<{
|
|
336
|
-
|
|
337
|
-
|
|
336
|
+
furniture_id: z.ZodNumber;
|
|
337
|
+
style_id: z.ZodNumber;
|
|
338
338
|
style: z.ZodObject<{
|
|
339
339
|
id: z.ZodNumber;
|
|
340
340
|
name: z.ZodString;
|
|
341
341
|
description: z.ZodString;
|
|
342
|
-
|
|
342
|
+
media_id: z.ZodNumber;
|
|
343
343
|
}, "strip", z.ZodTypeAny, {
|
|
344
344
|
name: string;
|
|
345
345
|
id: number;
|
|
346
|
+
media_id: number;
|
|
346
347
|
description: string;
|
|
347
|
-
mediaId: number;
|
|
348
348
|
}, {
|
|
349
349
|
name: string;
|
|
350
350
|
id: number;
|
|
351
|
+
media_id: number;
|
|
351
352
|
description: string;
|
|
352
|
-
mediaId: number;
|
|
353
353
|
}>;
|
|
354
354
|
}, "strip", z.ZodTypeAny, {
|
|
355
|
-
|
|
356
|
-
|
|
355
|
+
furniture_id: number;
|
|
356
|
+
style_id: number;
|
|
357
357
|
style: {
|
|
358
358
|
name: string;
|
|
359
359
|
id: number;
|
|
360
|
+
media_id: number;
|
|
360
361
|
description: string;
|
|
361
|
-
mediaId: number;
|
|
362
362
|
};
|
|
363
363
|
}, {
|
|
364
|
-
|
|
365
|
-
|
|
364
|
+
furniture_id: number;
|
|
365
|
+
style_id: number;
|
|
366
366
|
style: {
|
|
367
367
|
name: string;
|
|
368
368
|
id: number;
|
|
369
|
+
media_id: number;
|
|
369
370
|
description: string;
|
|
370
|
-
mediaId: number;
|
|
371
371
|
};
|
|
372
372
|
}>, "many">;
|
|
373
|
-
|
|
373
|
+
signed_url: z.ZodString;
|
|
374
374
|
}, "strip", z.ZodTypeAny, {
|
|
375
375
|
name: string;
|
|
376
376
|
id: number;
|
|
@@ -396,16 +396,16 @@ export declare const ProductSchema: z.ZodObject<{
|
|
|
396
396
|
external_url: string;
|
|
397
397
|
inventory_id: number;
|
|
398
398
|
styles: {
|
|
399
|
-
|
|
400
|
-
|
|
399
|
+
furniture_id: number;
|
|
400
|
+
style_id: number;
|
|
401
401
|
style: {
|
|
402
402
|
name: string;
|
|
403
403
|
id: number;
|
|
404
|
+
media_id: number;
|
|
404
405
|
description: string;
|
|
405
|
-
mediaId: number;
|
|
406
406
|
};
|
|
407
407
|
}[];
|
|
408
|
-
|
|
408
|
+
signed_url: string;
|
|
409
409
|
}, {
|
|
410
410
|
name: string;
|
|
411
411
|
id: number;
|
|
@@ -431,16 +431,16 @@ export declare const ProductSchema: z.ZodObject<{
|
|
|
431
431
|
external_url: string;
|
|
432
432
|
inventory_id: number;
|
|
433
433
|
styles: {
|
|
434
|
-
|
|
435
|
-
|
|
434
|
+
furniture_id: number;
|
|
435
|
+
style_id: number;
|
|
436
436
|
style: {
|
|
437
437
|
name: string;
|
|
438
438
|
id: number;
|
|
439
|
+
media_id: number;
|
|
439
440
|
description: string;
|
|
440
|
-
mediaId: number;
|
|
441
441
|
};
|
|
442
442
|
}[];
|
|
443
|
-
|
|
443
|
+
signed_url: string;
|
|
444
444
|
}>;
|
|
445
445
|
export type Product = z.infer<typeof ProductSchema>;
|
|
446
446
|
export declare const ProductDataSchema: z.ZodObject<{
|
|
@@ -495,44 +495,44 @@ export declare const ProductDataSchema: z.ZodObject<{
|
|
|
495
495
|
};
|
|
496
496
|
}>;
|
|
497
497
|
styles: z.ZodArray<z.ZodObject<{
|
|
498
|
-
|
|
499
|
-
|
|
498
|
+
furniture_id: z.ZodNumber;
|
|
499
|
+
style_id: z.ZodNumber;
|
|
500
500
|
style: z.ZodObject<{
|
|
501
501
|
id: z.ZodNumber;
|
|
502
502
|
name: z.ZodString;
|
|
503
503
|
description: z.ZodString;
|
|
504
|
-
|
|
504
|
+
media_id: z.ZodNumber;
|
|
505
505
|
}, "strip", z.ZodTypeAny, {
|
|
506
506
|
name: string;
|
|
507
507
|
id: number;
|
|
508
|
+
media_id: number;
|
|
508
509
|
description: string;
|
|
509
|
-
mediaId: number;
|
|
510
510
|
}, {
|
|
511
511
|
name: string;
|
|
512
512
|
id: number;
|
|
513
|
+
media_id: number;
|
|
513
514
|
description: string;
|
|
514
|
-
mediaId: number;
|
|
515
515
|
}>;
|
|
516
516
|
}, "strip", z.ZodTypeAny, {
|
|
517
|
-
|
|
518
|
-
|
|
517
|
+
furniture_id: number;
|
|
518
|
+
style_id: number;
|
|
519
519
|
style: {
|
|
520
520
|
name: string;
|
|
521
521
|
id: number;
|
|
522
|
+
media_id: number;
|
|
522
523
|
description: string;
|
|
523
|
-
mediaId: number;
|
|
524
524
|
};
|
|
525
525
|
}, {
|
|
526
|
-
|
|
527
|
-
|
|
526
|
+
furniture_id: number;
|
|
527
|
+
style_id: number;
|
|
528
528
|
style: {
|
|
529
529
|
name: string;
|
|
530
530
|
id: number;
|
|
531
|
+
media_id: number;
|
|
531
532
|
description: string;
|
|
532
|
-
mediaId: number;
|
|
533
533
|
};
|
|
534
534
|
}>, "many">;
|
|
535
|
-
|
|
535
|
+
signed_url: z.ZodString;
|
|
536
536
|
}, "strip", z.ZodTypeAny, {
|
|
537
537
|
name: string;
|
|
538
538
|
id: number;
|
|
@@ -558,16 +558,16 @@ export declare const ProductDataSchema: z.ZodObject<{
|
|
|
558
558
|
external_url: string;
|
|
559
559
|
inventory_id: number;
|
|
560
560
|
styles: {
|
|
561
|
-
|
|
562
|
-
|
|
561
|
+
furniture_id: number;
|
|
562
|
+
style_id: number;
|
|
563
563
|
style: {
|
|
564
564
|
name: string;
|
|
565
565
|
id: number;
|
|
566
|
+
media_id: number;
|
|
566
567
|
description: string;
|
|
567
|
-
mediaId: number;
|
|
568
568
|
};
|
|
569
569
|
}[];
|
|
570
|
-
|
|
570
|
+
signed_url: string;
|
|
571
571
|
}, {
|
|
572
572
|
name: string;
|
|
573
573
|
id: number;
|
|
@@ -593,32 +593,32 @@ export declare const ProductDataSchema: z.ZodObject<{
|
|
|
593
593
|
external_url: string;
|
|
594
594
|
inventory_id: number;
|
|
595
595
|
styles: {
|
|
596
|
-
|
|
597
|
-
|
|
596
|
+
furniture_id: number;
|
|
597
|
+
style_id: number;
|
|
598
598
|
style: {
|
|
599
599
|
name: string;
|
|
600
600
|
id: number;
|
|
601
|
+
media_id: number;
|
|
601
602
|
description: string;
|
|
602
|
-
mediaId: number;
|
|
603
603
|
};
|
|
604
604
|
}[];
|
|
605
|
-
|
|
605
|
+
signed_url: string;
|
|
606
606
|
}>, "many">;
|
|
607
607
|
page: z.ZodObject<{
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
608
|
+
total_records: z.ZodNumber;
|
|
609
|
+
total_pages: z.ZodNumber;
|
|
610
|
+
current_page: z.ZodNumber;
|
|
611
|
+
per_page: z.ZodNumber;
|
|
612
612
|
}, "strip", z.ZodTypeAny, {
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
613
|
+
total_records: number;
|
|
614
|
+
total_pages: number;
|
|
615
|
+
current_page: number;
|
|
616
|
+
per_page: number;
|
|
617
617
|
}, {
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
618
|
+
total_records: number;
|
|
619
|
+
total_pages: number;
|
|
620
|
+
current_page: number;
|
|
621
|
+
per_page: number;
|
|
622
622
|
}>;
|
|
623
623
|
}, "strip", z.ZodTypeAny, {
|
|
624
624
|
data: {
|
|
@@ -646,22 +646,22 @@ export declare const ProductDataSchema: z.ZodObject<{
|
|
|
646
646
|
external_url: string;
|
|
647
647
|
inventory_id: number;
|
|
648
648
|
styles: {
|
|
649
|
-
|
|
650
|
-
|
|
649
|
+
furniture_id: number;
|
|
650
|
+
style_id: number;
|
|
651
651
|
style: {
|
|
652
652
|
name: string;
|
|
653
653
|
id: number;
|
|
654
|
+
media_id: number;
|
|
654
655
|
description: string;
|
|
655
|
-
mediaId: number;
|
|
656
656
|
};
|
|
657
657
|
}[];
|
|
658
|
-
|
|
658
|
+
signed_url: string;
|
|
659
659
|
}[];
|
|
660
660
|
page: {
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
661
|
+
total_records: number;
|
|
662
|
+
total_pages: number;
|
|
663
|
+
current_page: number;
|
|
664
|
+
per_page: number;
|
|
665
665
|
};
|
|
666
666
|
}, {
|
|
667
667
|
data: {
|
|
@@ -689,22 +689,22 @@ export declare const ProductDataSchema: z.ZodObject<{
|
|
|
689
689
|
external_url: string;
|
|
690
690
|
inventory_id: number;
|
|
691
691
|
styles: {
|
|
692
|
-
|
|
693
|
-
|
|
692
|
+
furniture_id: number;
|
|
693
|
+
style_id: number;
|
|
694
694
|
style: {
|
|
695
695
|
name: string;
|
|
696
696
|
id: number;
|
|
697
|
+
media_id: number;
|
|
697
698
|
description: string;
|
|
698
|
-
mediaId: number;
|
|
699
699
|
};
|
|
700
700
|
}[];
|
|
701
|
-
|
|
701
|
+
signed_url: string;
|
|
702
702
|
}[];
|
|
703
703
|
page: {
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
704
|
+
total_records: number;
|
|
705
|
+
total_pages: number;
|
|
706
|
+
current_page: number;
|
|
707
|
+
per_page: number;
|
|
708
708
|
};
|
|
709
709
|
}>;
|
|
710
710
|
export type ProductData = z.infer<typeof ProductDataSchema>;
|
|
@@ -712,7 +712,7 @@ export declare const StyleDetailSchema: z.ZodObject<{
|
|
|
712
712
|
id: z.ZodNumber;
|
|
713
713
|
name: z.ZodString;
|
|
714
714
|
description: z.ZodString;
|
|
715
|
-
|
|
715
|
+
media_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
716
716
|
thumbnail: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
717
717
|
id: z.ZodNumber;
|
|
718
718
|
url: z.ZodString;
|
|
@@ -753,7 +753,7 @@ export declare const StyleDetailSchema: z.ZodObject<{
|
|
|
753
753
|
name: string;
|
|
754
754
|
id: number;
|
|
755
755
|
description: string;
|
|
756
|
-
|
|
756
|
+
media_id?: number | null | undefined;
|
|
757
757
|
thumbnail?: {
|
|
758
758
|
id: number;
|
|
759
759
|
url: string;
|
|
@@ -768,7 +768,7 @@ export declare const StyleDetailSchema: z.ZodObject<{
|
|
|
768
768
|
name: string;
|
|
769
769
|
id: number;
|
|
770
770
|
description: string;
|
|
771
|
-
|
|
771
|
+
media_id?: number | null | undefined;
|
|
772
772
|
thumbnail?: {
|
|
773
773
|
id: number;
|
|
774
774
|
url: string;
|
|
@@ -786,7 +786,7 @@ export declare const StyleSchema: z.ZodObject<{
|
|
|
786
786
|
id: z.ZodNumber;
|
|
787
787
|
name: z.ZodString;
|
|
788
788
|
description: z.ZodString;
|
|
789
|
-
|
|
789
|
+
media_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
790
790
|
thumbnail: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
791
791
|
id: z.ZodNumber;
|
|
792
792
|
url: z.ZodString;
|
|
@@ -827,7 +827,7 @@ export declare const StyleSchema: z.ZodObject<{
|
|
|
827
827
|
name: string;
|
|
828
828
|
id: number;
|
|
829
829
|
description: string;
|
|
830
|
-
|
|
830
|
+
media_id?: number | null | undefined;
|
|
831
831
|
thumbnail?: {
|
|
832
832
|
id: number;
|
|
833
833
|
url: string;
|
|
@@ -842,7 +842,7 @@ export declare const StyleSchema: z.ZodObject<{
|
|
|
842
842
|
name: string;
|
|
843
843
|
id: number;
|
|
844
844
|
description: string;
|
|
845
|
-
|
|
845
|
+
media_id?: number | null | undefined;
|
|
846
846
|
thumbnail?: {
|
|
847
847
|
id: number;
|
|
848
848
|
url: string;
|
|
@@ -859,7 +859,7 @@ export declare const StyleSchema: z.ZodObject<{
|
|
|
859
859
|
name: string;
|
|
860
860
|
id: number;
|
|
861
861
|
description: string;
|
|
862
|
-
|
|
862
|
+
media_id?: number | null | undefined;
|
|
863
863
|
thumbnail?: {
|
|
864
864
|
id: number;
|
|
865
865
|
url: string;
|
|
@@ -876,7 +876,7 @@ export declare const StyleSchema: z.ZodObject<{
|
|
|
876
876
|
name: string;
|
|
877
877
|
id: number;
|
|
878
878
|
description: string;
|
|
879
|
-
|
|
879
|
+
media_id?: number | null | undefined;
|
|
880
880
|
thumbnail?: {
|
|
881
881
|
id: number;
|
|
882
882
|
url: string;
|
|
@@ -919,9 +919,9 @@ export declare const IFloorPlanSchema: z.ZodObject<{
|
|
|
919
919
|
id: z.ZodNumber;
|
|
920
920
|
name: z.ZodString;
|
|
921
921
|
description: z.ZodString;
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
922
|
+
customer_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
923
|
+
blender_version: z.ZodString;
|
|
924
|
+
inresi_version: z.ZodString;
|
|
925
925
|
properties: z.ZodArray<z.ZodObject<{
|
|
926
926
|
id: z.ZodNumber;
|
|
927
927
|
name: z.ZodString;
|
|
@@ -949,13 +949,13 @@ export declare const IFloorPlanSchema: z.ZodObject<{
|
|
|
949
949
|
name: string;
|
|
950
950
|
id: number;
|
|
951
951
|
description: string;
|
|
952
|
-
|
|
953
|
-
|
|
952
|
+
blender_version: string;
|
|
953
|
+
inresi_version: string;
|
|
954
954
|
properties: {
|
|
955
955
|
name: string;
|
|
956
956
|
id: number;
|
|
957
957
|
}[];
|
|
958
|
-
|
|
958
|
+
customer_id?: number | null | undefined;
|
|
959
959
|
customer?: {
|
|
960
960
|
id: number;
|
|
961
961
|
first_name: string;
|
|
@@ -965,13 +965,13 @@ export declare const IFloorPlanSchema: z.ZodObject<{
|
|
|
965
965
|
name: string;
|
|
966
966
|
id: number;
|
|
967
967
|
description: string;
|
|
968
|
-
|
|
969
|
-
|
|
968
|
+
blender_version: string;
|
|
969
|
+
inresi_version: string;
|
|
970
970
|
properties: {
|
|
971
971
|
name: string;
|
|
972
972
|
id: number;
|
|
973
973
|
}[];
|
|
974
|
-
|
|
974
|
+
customer_id?: number | null | undefined;
|
|
975
975
|
customer?: {
|
|
976
976
|
id: number;
|
|
977
977
|
first_name: string;
|
|
@@ -984,9 +984,9 @@ export declare const IFloorPlansSchema: z.ZodObject<{
|
|
|
984
984
|
id: z.ZodNumber;
|
|
985
985
|
name: z.ZodString;
|
|
986
986
|
description: z.ZodString;
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
987
|
+
customer_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
988
|
+
blender_version: z.ZodString;
|
|
989
|
+
inresi_version: z.ZodString;
|
|
990
990
|
properties: z.ZodArray<z.ZodObject<{
|
|
991
991
|
id: z.ZodNumber;
|
|
992
992
|
name: z.ZodString;
|
|
@@ -1014,13 +1014,13 @@ export declare const IFloorPlansSchema: z.ZodObject<{
|
|
|
1014
1014
|
name: string;
|
|
1015
1015
|
id: number;
|
|
1016
1016
|
description: string;
|
|
1017
|
-
|
|
1018
|
-
|
|
1017
|
+
blender_version: string;
|
|
1018
|
+
inresi_version: string;
|
|
1019
1019
|
properties: {
|
|
1020
1020
|
name: string;
|
|
1021
1021
|
id: number;
|
|
1022
1022
|
}[];
|
|
1023
|
-
|
|
1023
|
+
customer_id?: number | null | undefined;
|
|
1024
1024
|
customer?: {
|
|
1025
1025
|
id: number;
|
|
1026
1026
|
first_name: string;
|
|
@@ -1030,13 +1030,13 @@ export declare const IFloorPlansSchema: z.ZodObject<{
|
|
|
1030
1030
|
name: string;
|
|
1031
1031
|
id: number;
|
|
1032
1032
|
description: string;
|
|
1033
|
-
|
|
1034
|
-
|
|
1033
|
+
blender_version: string;
|
|
1034
|
+
inresi_version: string;
|
|
1035
1035
|
properties: {
|
|
1036
1036
|
name: string;
|
|
1037
1037
|
id: number;
|
|
1038
1038
|
}[];
|
|
1039
|
-
|
|
1039
|
+
customer_id?: number | null | undefined;
|
|
1040
1040
|
customer?: {
|
|
1041
1041
|
id: number;
|
|
1042
1042
|
first_name: string;
|
|
@@ -1048,13 +1048,13 @@ export declare const IFloorPlansSchema: z.ZodObject<{
|
|
|
1048
1048
|
name: string;
|
|
1049
1049
|
id: number;
|
|
1050
1050
|
description: string;
|
|
1051
|
-
|
|
1052
|
-
|
|
1051
|
+
blender_version: string;
|
|
1052
|
+
inresi_version: string;
|
|
1053
1053
|
properties: {
|
|
1054
1054
|
name: string;
|
|
1055
1055
|
id: number;
|
|
1056
1056
|
}[];
|
|
1057
|
-
|
|
1057
|
+
customer_id?: number | null | undefined;
|
|
1058
1058
|
customer?: {
|
|
1059
1059
|
id: number;
|
|
1060
1060
|
first_name: string;
|
|
@@ -1066,13 +1066,13 @@ export declare const IFloorPlansSchema: z.ZodObject<{
|
|
|
1066
1066
|
name: string;
|
|
1067
1067
|
id: number;
|
|
1068
1068
|
description: string;
|
|
1069
|
-
|
|
1070
|
-
|
|
1069
|
+
blender_version: string;
|
|
1070
|
+
inresi_version: string;
|
|
1071
1071
|
properties: {
|
|
1072
1072
|
name: string;
|
|
1073
1073
|
id: number;
|
|
1074
1074
|
}[];
|
|
1075
|
-
|
|
1075
|
+
customer_id?: number | null | undefined;
|
|
1076
1076
|
customer?: {
|
|
1077
1077
|
id: number;
|
|
1078
1078
|
first_name: string;
|
|
@@ -1084,7 +1084,7 @@ export type IFloorPlans = z.infer<typeof IFloorPlansSchema>;
|
|
|
1084
1084
|
export declare const RenderedStyleSchema: z.ZodObject<{
|
|
1085
1085
|
id: z.ZodNumber;
|
|
1086
1086
|
name: z.ZodString;
|
|
1087
|
-
|
|
1087
|
+
render_generated_image: z.ZodArray<z.ZodObject<{
|
|
1088
1088
|
id: z.ZodNumber;
|
|
1089
1089
|
url: z.ZodString;
|
|
1090
1090
|
media_type: z.ZodString;
|
|
@@ -1120,11 +1120,11 @@ export declare const RenderedStyleSchema: z.ZodObject<{
|
|
|
1120
1120
|
signature: string;
|
|
1121
1121
|
};
|
|
1122
1122
|
}>, "many">;
|
|
1123
|
-
|
|
1123
|
+
colorful_floor_plan_image: z.ZodOptional<z.ZodNull>;
|
|
1124
1124
|
}, "strip", z.ZodTypeAny, {
|
|
1125
1125
|
name: string;
|
|
1126
1126
|
id: number;
|
|
1127
|
-
|
|
1127
|
+
render_generated_image: {
|
|
1128
1128
|
id: number;
|
|
1129
1129
|
url: string;
|
|
1130
1130
|
media_type: string;
|
|
@@ -1134,11 +1134,11 @@ export declare const RenderedStyleSchema: z.ZodObject<{
|
|
|
1134
1134
|
signature: string;
|
|
1135
1135
|
};
|
|
1136
1136
|
}[];
|
|
1137
|
-
|
|
1137
|
+
colorful_floor_plan_image?: null | undefined;
|
|
1138
1138
|
}, {
|
|
1139
1139
|
name: string;
|
|
1140
1140
|
id: number;
|
|
1141
|
-
|
|
1141
|
+
render_generated_image: {
|
|
1142
1142
|
id: number;
|
|
1143
1143
|
url: string;
|
|
1144
1144
|
media_type: string;
|
|
@@ -1148,17 +1148,17 @@ export declare const RenderedStyleSchema: z.ZodObject<{
|
|
|
1148
1148
|
signature: string;
|
|
1149
1149
|
};
|
|
1150
1150
|
}[];
|
|
1151
|
-
|
|
1151
|
+
colorful_floor_plan_image?: null | undefined;
|
|
1152
1152
|
}>;
|
|
1153
1153
|
export type RenderedStyle = z.infer<typeof RenderedStyleSchema>;
|
|
1154
1154
|
export declare const IFloorPlanDetailDataSchema: z.ZodObject<{
|
|
1155
1155
|
id: z.ZodNumber;
|
|
1156
1156
|
name: z.ZodString;
|
|
1157
1157
|
description: z.ZodString;
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1158
|
+
customer_id: z.ZodNumber;
|
|
1159
|
+
blender_version: z.ZodString;
|
|
1160
|
+
render_version: z.ZodNumber;
|
|
1161
|
+
inresi_version: z.ZodString;
|
|
1162
1162
|
properties: z.ZodArray<z.ZodObject<{
|
|
1163
1163
|
id: z.ZodNumber;
|
|
1164
1164
|
name: z.ZodString;
|
|
@@ -1182,7 +1182,7 @@ export declare const IFloorPlanDetailDataSchema: z.ZodObject<{
|
|
|
1182
1182
|
first_name: string;
|
|
1183
1183
|
last_name: string;
|
|
1184
1184
|
}>;
|
|
1185
|
-
|
|
1185
|
+
blender_file: z.ZodObject<{
|
|
1186
1186
|
id: z.ZodNumber;
|
|
1187
1187
|
url: z.ZodString;
|
|
1188
1188
|
media_type: z.ZodString;
|
|
@@ -1220,10 +1220,10 @@ export declare const IFloorPlanDetailDataSchema: z.ZodObject<{
|
|
|
1220
1220
|
}>;
|
|
1221
1221
|
rooms: z.ZodArray<z.ZodUnknown, "many">;
|
|
1222
1222
|
styles: z.ZodArray<z.ZodUnknown, "many">;
|
|
1223
|
-
|
|
1223
|
+
rendered_styles: z.ZodArray<z.ZodObject<{
|
|
1224
1224
|
id: z.ZodNumber;
|
|
1225
1225
|
name: z.ZodString;
|
|
1226
|
-
|
|
1226
|
+
render_generated_image: z.ZodArray<z.ZodObject<{
|
|
1227
1227
|
id: z.ZodNumber;
|
|
1228
1228
|
url: z.ZodString;
|
|
1229
1229
|
media_type: z.ZodString;
|
|
@@ -1259,11 +1259,11 @@ export declare const IFloorPlanDetailDataSchema: z.ZodObject<{
|
|
|
1259
1259
|
signature: string;
|
|
1260
1260
|
};
|
|
1261
1261
|
}>, "many">;
|
|
1262
|
-
|
|
1262
|
+
colorful_floor_plan_image: z.ZodOptional<z.ZodNull>;
|
|
1263
1263
|
}, "strip", z.ZodTypeAny, {
|
|
1264
1264
|
name: string;
|
|
1265
1265
|
id: number;
|
|
1266
|
-
|
|
1266
|
+
render_generated_image: {
|
|
1267
1267
|
id: number;
|
|
1268
1268
|
url: string;
|
|
1269
1269
|
media_type: string;
|
|
@@ -1273,11 +1273,11 @@ export declare const IFloorPlanDetailDataSchema: z.ZodObject<{
|
|
|
1273
1273
|
signature: string;
|
|
1274
1274
|
};
|
|
1275
1275
|
}[];
|
|
1276
|
-
|
|
1276
|
+
colorful_floor_plan_image?: null | undefined;
|
|
1277
1277
|
}, {
|
|
1278
1278
|
name: string;
|
|
1279
1279
|
id: number;
|
|
1280
|
-
|
|
1280
|
+
render_generated_image: {
|
|
1281
1281
|
id: number;
|
|
1282
1282
|
url: string;
|
|
1283
1283
|
media_type: string;
|
|
@@ -1287,16 +1287,16 @@ export declare const IFloorPlanDetailDataSchema: z.ZodObject<{
|
|
|
1287
1287
|
signature: string;
|
|
1288
1288
|
};
|
|
1289
1289
|
}[];
|
|
1290
|
-
|
|
1290
|
+
colorful_floor_plan_image?: null | undefined;
|
|
1291
1291
|
}>, "many">;
|
|
1292
1292
|
}, "strip", z.ZodTypeAny, {
|
|
1293
1293
|
name: string;
|
|
1294
1294
|
id: number;
|
|
1295
1295
|
description: string;
|
|
1296
1296
|
styles: unknown[];
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1297
|
+
customer_id: number;
|
|
1298
|
+
blender_version: string;
|
|
1299
|
+
inresi_version: string;
|
|
1300
1300
|
properties: {
|
|
1301
1301
|
name: string;
|
|
1302
1302
|
id: number;
|
|
@@ -1306,8 +1306,8 @@ export declare const IFloorPlanDetailDataSchema: z.ZodObject<{
|
|
|
1306
1306
|
first_name: string;
|
|
1307
1307
|
last_name: string;
|
|
1308
1308
|
};
|
|
1309
|
-
|
|
1310
|
-
|
|
1309
|
+
render_version: number;
|
|
1310
|
+
blender_file: {
|
|
1311
1311
|
id: number;
|
|
1312
1312
|
url: string;
|
|
1313
1313
|
media_type: string;
|
|
@@ -1318,10 +1318,10 @@ export declare const IFloorPlanDetailDataSchema: z.ZodObject<{
|
|
|
1318
1318
|
};
|
|
1319
1319
|
};
|
|
1320
1320
|
rooms: unknown[];
|
|
1321
|
-
|
|
1321
|
+
rendered_styles: {
|
|
1322
1322
|
name: string;
|
|
1323
1323
|
id: number;
|
|
1324
|
-
|
|
1324
|
+
render_generated_image: {
|
|
1325
1325
|
id: number;
|
|
1326
1326
|
url: string;
|
|
1327
1327
|
media_type: string;
|
|
@@ -1331,16 +1331,16 @@ export declare const IFloorPlanDetailDataSchema: z.ZodObject<{
|
|
|
1331
1331
|
signature: string;
|
|
1332
1332
|
};
|
|
1333
1333
|
}[];
|
|
1334
|
-
|
|
1334
|
+
colorful_floor_plan_image?: null | undefined;
|
|
1335
1335
|
}[];
|
|
1336
1336
|
}, {
|
|
1337
1337
|
name: string;
|
|
1338
1338
|
id: number;
|
|
1339
1339
|
description: string;
|
|
1340
1340
|
styles: unknown[];
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1341
|
+
customer_id: number;
|
|
1342
|
+
blender_version: string;
|
|
1343
|
+
inresi_version: string;
|
|
1344
1344
|
properties: {
|
|
1345
1345
|
name: string;
|
|
1346
1346
|
id: number;
|
|
@@ -1350,8 +1350,8 @@ export declare const IFloorPlanDetailDataSchema: z.ZodObject<{
|
|
|
1350
1350
|
first_name: string;
|
|
1351
1351
|
last_name: string;
|
|
1352
1352
|
};
|
|
1353
|
-
|
|
1354
|
-
|
|
1353
|
+
render_version: number;
|
|
1354
|
+
blender_file: {
|
|
1355
1355
|
id: number;
|
|
1356
1356
|
url: string;
|
|
1357
1357
|
media_type: string;
|
|
@@ -1362,10 +1362,10 @@ export declare const IFloorPlanDetailDataSchema: z.ZodObject<{
|
|
|
1362
1362
|
};
|
|
1363
1363
|
};
|
|
1364
1364
|
rooms: unknown[];
|
|
1365
|
-
|
|
1365
|
+
rendered_styles: {
|
|
1366
1366
|
name: string;
|
|
1367
1367
|
id: number;
|
|
1368
|
-
|
|
1368
|
+
render_generated_image: {
|
|
1369
1369
|
id: number;
|
|
1370
1370
|
url: string;
|
|
1371
1371
|
media_type: string;
|
|
@@ -1375,7 +1375,7 @@ export declare const IFloorPlanDetailDataSchema: z.ZodObject<{
|
|
|
1375
1375
|
signature: string;
|
|
1376
1376
|
};
|
|
1377
1377
|
}[];
|
|
1378
|
-
|
|
1378
|
+
colorful_floor_plan_image?: null | undefined;
|
|
1379
1379
|
}[];
|
|
1380
1380
|
}>;
|
|
1381
1381
|
export type IFloorPlanDetailData = z.infer<typeof IFloorPlanDetailDataSchema>;
|
|
@@ -1384,10 +1384,10 @@ export declare const IFloorPlanDetailSchema: z.ZodObject<{
|
|
|
1384
1384
|
id: z.ZodNumber;
|
|
1385
1385
|
name: z.ZodString;
|
|
1386
1386
|
description: z.ZodString;
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1387
|
+
customer_id: z.ZodNumber;
|
|
1388
|
+
blender_version: z.ZodString;
|
|
1389
|
+
render_version: z.ZodNumber;
|
|
1390
|
+
inresi_version: z.ZodString;
|
|
1391
1391
|
properties: z.ZodArray<z.ZodObject<{
|
|
1392
1392
|
id: z.ZodNumber;
|
|
1393
1393
|
name: z.ZodString;
|
|
@@ -1411,7 +1411,7 @@ export declare const IFloorPlanDetailSchema: z.ZodObject<{
|
|
|
1411
1411
|
first_name: string;
|
|
1412
1412
|
last_name: string;
|
|
1413
1413
|
}>;
|
|
1414
|
-
|
|
1414
|
+
blender_file: z.ZodObject<{
|
|
1415
1415
|
id: z.ZodNumber;
|
|
1416
1416
|
url: z.ZodString;
|
|
1417
1417
|
media_type: z.ZodString;
|
|
@@ -1449,10 +1449,10 @@ export declare const IFloorPlanDetailSchema: z.ZodObject<{
|
|
|
1449
1449
|
}>;
|
|
1450
1450
|
rooms: z.ZodArray<z.ZodUnknown, "many">;
|
|
1451
1451
|
styles: z.ZodArray<z.ZodUnknown, "many">;
|
|
1452
|
-
|
|
1452
|
+
rendered_styles: z.ZodArray<z.ZodObject<{
|
|
1453
1453
|
id: z.ZodNumber;
|
|
1454
1454
|
name: z.ZodString;
|
|
1455
|
-
|
|
1455
|
+
render_generated_image: z.ZodArray<z.ZodObject<{
|
|
1456
1456
|
id: z.ZodNumber;
|
|
1457
1457
|
url: z.ZodString;
|
|
1458
1458
|
media_type: z.ZodString;
|
|
@@ -1488,11 +1488,11 @@ export declare const IFloorPlanDetailSchema: z.ZodObject<{
|
|
|
1488
1488
|
signature: string;
|
|
1489
1489
|
};
|
|
1490
1490
|
}>, "many">;
|
|
1491
|
-
|
|
1491
|
+
colorful_floor_plan_image: z.ZodOptional<z.ZodNull>;
|
|
1492
1492
|
}, "strip", z.ZodTypeAny, {
|
|
1493
1493
|
name: string;
|
|
1494
1494
|
id: number;
|
|
1495
|
-
|
|
1495
|
+
render_generated_image: {
|
|
1496
1496
|
id: number;
|
|
1497
1497
|
url: string;
|
|
1498
1498
|
media_type: string;
|
|
@@ -1502,11 +1502,11 @@ export declare const IFloorPlanDetailSchema: z.ZodObject<{
|
|
|
1502
1502
|
signature: string;
|
|
1503
1503
|
};
|
|
1504
1504
|
}[];
|
|
1505
|
-
|
|
1505
|
+
colorful_floor_plan_image?: null | undefined;
|
|
1506
1506
|
}, {
|
|
1507
1507
|
name: string;
|
|
1508
1508
|
id: number;
|
|
1509
|
-
|
|
1509
|
+
render_generated_image: {
|
|
1510
1510
|
id: number;
|
|
1511
1511
|
url: string;
|
|
1512
1512
|
media_type: string;
|
|
@@ -1516,16 +1516,16 @@ export declare const IFloorPlanDetailSchema: z.ZodObject<{
|
|
|
1516
1516
|
signature: string;
|
|
1517
1517
|
};
|
|
1518
1518
|
}[];
|
|
1519
|
-
|
|
1519
|
+
colorful_floor_plan_image?: null | undefined;
|
|
1520
1520
|
}>, "many">;
|
|
1521
1521
|
}, "strip", z.ZodTypeAny, {
|
|
1522
1522
|
name: string;
|
|
1523
1523
|
id: number;
|
|
1524
1524
|
description: string;
|
|
1525
1525
|
styles: unknown[];
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1526
|
+
customer_id: number;
|
|
1527
|
+
blender_version: string;
|
|
1528
|
+
inresi_version: string;
|
|
1529
1529
|
properties: {
|
|
1530
1530
|
name: string;
|
|
1531
1531
|
id: number;
|
|
@@ -1535,8 +1535,8 @@ export declare const IFloorPlanDetailSchema: z.ZodObject<{
|
|
|
1535
1535
|
first_name: string;
|
|
1536
1536
|
last_name: string;
|
|
1537
1537
|
};
|
|
1538
|
-
|
|
1539
|
-
|
|
1538
|
+
render_version: number;
|
|
1539
|
+
blender_file: {
|
|
1540
1540
|
id: number;
|
|
1541
1541
|
url: string;
|
|
1542
1542
|
media_type: string;
|
|
@@ -1547,10 +1547,10 @@ export declare const IFloorPlanDetailSchema: z.ZodObject<{
|
|
|
1547
1547
|
};
|
|
1548
1548
|
};
|
|
1549
1549
|
rooms: unknown[];
|
|
1550
|
-
|
|
1550
|
+
rendered_styles: {
|
|
1551
1551
|
name: string;
|
|
1552
1552
|
id: number;
|
|
1553
|
-
|
|
1553
|
+
render_generated_image: {
|
|
1554
1554
|
id: number;
|
|
1555
1555
|
url: string;
|
|
1556
1556
|
media_type: string;
|
|
@@ -1560,16 +1560,16 @@ export declare const IFloorPlanDetailSchema: z.ZodObject<{
|
|
|
1560
1560
|
signature: string;
|
|
1561
1561
|
};
|
|
1562
1562
|
}[];
|
|
1563
|
-
|
|
1563
|
+
colorful_floor_plan_image?: null | undefined;
|
|
1564
1564
|
}[];
|
|
1565
1565
|
}, {
|
|
1566
1566
|
name: string;
|
|
1567
1567
|
id: number;
|
|
1568
1568
|
description: string;
|
|
1569
1569
|
styles: unknown[];
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1570
|
+
customer_id: number;
|
|
1571
|
+
blender_version: string;
|
|
1572
|
+
inresi_version: string;
|
|
1573
1573
|
properties: {
|
|
1574
1574
|
name: string;
|
|
1575
1575
|
id: number;
|
|
@@ -1579,8 +1579,8 @@ export declare const IFloorPlanDetailSchema: z.ZodObject<{
|
|
|
1579
1579
|
first_name: string;
|
|
1580
1580
|
last_name: string;
|
|
1581
1581
|
};
|
|
1582
|
-
|
|
1583
|
-
|
|
1582
|
+
render_version: number;
|
|
1583
|
+
blender_file: {
|
|
1584
1584
|
id: number;
|
|
1585
1585
|
url: string;
|
|
1586
1586
|
media_type: string;
|
|
@@ -1591,10 +1591,10 @@ export declare const IFloorPlanDetailSchema: z.ZodObject<{
|
|
|
1591
1591
|
};
|
|
1592
1592
|
};
|
|
1593
1593
|
rooms: unknown[];
|
|
1594
|
-
|
|
1594
|
+
rendered_styles: {
|
|
1595
1595
|
name: string;
|
|
1596
1596
|
id: number;
|
|
1597
|
-
|
|
1597
|
+
render_generated_image: {
|
|
1598
1598
|
id: number;
|
|
1599
1599
|
url: string;
|
|
1600
1600
|
media_type: string;
|
|
@@ -1604,7 +1604,7 @@ export declare const IFloorPlanDetailSchema: z.ZodObject<{
|
|
|
1604
1604
|
signature: string;
|
|
1605
1605
|
};
|
|
1606
1606
|
}[];
|
|
1607
|
-
|
|
1607
|
+
colorful_floor_plan_image?: null | undefined;
|
|
1608
1608
|
}[];
|
|
1609
1609
|
}>;
|
|
1610
1610
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1613,9 +1613,9 @@ export declare const IFloorPlanDetailSchema: z.ZodObject<{
|
|
|
1613
1613
|
id: number;
|
|
1614
1614
|
description: string;
|
|
1615
1615
|
styles: unknown[];
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1616
|
+
customer_id: number;
|
|
1617
|
+
blender_version: string;
|
|
1618
|
+
inresi_version: string;
|
|
1619
1619
|
properties: {
|
|
1620
1620
|
name: string;
|
|
1621
1621
|
id: number;
|
|
@@ -1625,8 +1625,8 @@ export declare const IFloorPlanDetailSchema: z.ZodObject<{
|
|
|
1625
1625
|
first_name: string;
|
|
1626
1626
|
last_name: string;
|
|
1627
1627
|
};
|
|
1628
|
-
|
|
1629
|
-
|
|
1628
|
+
render_version: number;
|
|
1629
|
+
blender_file: {
|
|
1630
1630
|
id: number;
|
|
1631
1631
|
url: string;
|
|
1632
1632
|
media_type: string;
|
|
@@ -1637,10 +1637,10 @@ export declare const IFloorPlanDetailSchema: z.ZodObject<{
|
|
|
1637
1637
|
};
|
|
1638
1638
|
};
|
|
1639
1639
|
rooms: unknown[];
|
|
1640
|
-
|
|
1640
|
+
rendered_styles: {
|
|
1641
1641
|
name: string;
|
|
1642
1642
|
id: number;
|
|
1643
|
-
|
|
1643
|
+
render_generated_image: {
|
|
1644
1644
|
id: number;
|
|
1645
1645
|
url: string;
|
|
1646
1646
|
media_type: string;
|
|
@@ -1650,7 +1650,7 @@ export declare const IFloorPlanDetailSchema: z.ZodObject<{
|
|
|
1650
1650
|
signature: string;
|
|
1651
1651
|
};
|
|
1652
1652
|
}[];
|
|
1653
|
-
|
|
1653
|
+
colorful_floor_plan_image?: null | undefined;
|
|
1654
1654
|
}[];
|
|
1655
1655
|
};
|
|
1656
1656
|
}, {
|
|
@@ -1659,9 +1659,9 @@ export declare const IFloorPlanDetailSchema: z.ZodObject<{
|
|
|
1659
1659
|
id: number;
|
|
1660
1660
|
description: string;
|
|
1661
1661
|
styles: unknown[];
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1662
|
+
customer_id: number;
|
|
1663
|
+
blender_version: string;
|
|
1664
|
+
inresi_version: string;
|
|
1665
1665
|
properties: {
|
|
1666
1666
|
name: string;
|
|
1667
1667
|
id: number;
|
|
@@ -1671,8 +1671,8 @@ export declare const IFloorPlanDetailSchema: z.ZodObject<{
|
|
|
1671
1671
|
first_name: string;
|
|
1672
1672
|
last_name: string;
|
|
1673
1673
|
};
|
|
1674
|
-
|
|
1675
|
-
|
|
1674
|
+
render_version: number;
|
|
1675
|
+
blender_file: {
|
|
1676
1676
|
id: number;
|
|
1677
1677
|
url: string;
|
|
1678
1678
|
media_type: string;
|
|
@@ -1683,10 +1683,10 @@ export declare const IFloorPlanDetailSchema: z.ZodObject<{
|
|
|
1683
1683
|
};
|
|
1684
1684
|
};
|
|
1685
1685
|
rooms: unknown[];
|
|
1686
|
-
|
|
1686
|
+
rendered_styles: {
|
|
1687
1687
|
name: string;
|
|
1688
1688
|
id: number;
|
|
1689
|
-
|
|
1689
|
+
render_generated_image: {
|
|
1690
1690
|
id: number;
|
|
1691
1691
|
url: string;
|
|
1692
1692
|
media_type: string;
|
|
@@ -1696,90 +1696,90 @@ export declare const IFloorPlanDetailSchema: z.ZodObject<{
|
|
|
1696
1696
|
signature: string;
|
|
1697
1697
|
};
|
|
1698
1698
|
}[];
|
|
1699
|
-
|
|
1699
|
+
colorful_floor_plan_image?: null | undefined;
|
|
1700
1700
|
}[];
|
|
1701
1701
|
};
|
|
1702
1702
|
}>;
|
|
1703
1703
|
export type IFloorPlanDetail = z.infer<typeof IFloorPlanDetailSchema>;
|
|
1704
1704
|
export declare const WebhooksDatumSchema: z.ZodObject<{
|
|
1705
1705
|
id: z.ZodNumber;
|
|
1706
|
-
|
|
1706
|
+
account_id: z.ZodNumber;
|
|
1707
1707
|
name: z.ZodString;
|
|
1708
1708
|
url: z.ZodString;
|
|
1709
1709
|
secret: z.ZodString;
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1710
|
+
is_active: z.ZodBoolean;
|
|
1711
|
+
created_at: z.ZodDate;
|
|
1712
|
+
updated_at: z.ZodDate;
|
|
1713
1713
|
}, "strip", z.ZodTypeAny, {
|
|
1714
1714
|
name: string;
|
|
1715
1715
|
id: number;
|
|
1716
1716
|
url: string;
|
|
1717
|
-
|
|
1718
|
-
|
|
1717
|
+
created_at: Date;
|
|
1718
|
+
updated_at: Date;
|
|
1719
|
+
account_id: number;
|
|
1719
1720
|
secret: string;
|
|
1720
|
-
|
|
1721
|
-
updatedAt: Date;
|
|
1721
|
+
is_active: boolean;
|
|
1722
1722
|
}, {
|
|
1723
1723
|
name: string;
|
|
1724
1724
|
id: number;
|
|
1725
1725
|
url: string;
|
|
1726
|
-
|
|
1727
|
-
|
|
1726
|
+
created_at: Date;
|
|
1727
|
+
updated_at: Date;
|
|
1728
|
+
account_id: number;
|
|
1728
1729
|
secret: string;
|
|
1729
|
-
|
|
1730
|
-
updatedAt: Date;
|
|
1730
|
+
is_active: boolean;
|
|
1731
1731
|
}>;
|
|
1732
1732
|
export type WebhooksDatum = z.infer<typeof WebhooksDatumSchema>;
|
|
1733
1733
|
export declare const WebhooksSchema: z.ZodObject<{
|
|
1734
1734
|
data: z.ZodArray<z.ZodObject<{
|
|
1735
1735
|
id: z.ZodNumber;
|
|
1736
|
-
|
|
1736
|
+
account_id: z.ZodNumber;
|
|
1737
1737
|
name: z.ZodString;
|
|
1738
1738
|
url: z.ZodString;
|
|
1739
1739
|
secret: z.ZodString;
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1740
|
+
is_active: z.ZodBoolean;
|
|
1741
|
+
created_at: z.ZodDate;
|
|
1742
|
+
updated_at: z.ZodDate;
|
|
1743
1743
|
}, "strip", z.ZodTypeAny, {
|
|
1744
1744
|
name: string;
|
|
1745
1745
|
id: number;
|
|
1746
1746
|
url: string;
|
|
1747
|
-
|
|
1748
|
-
|
|
1747
|
+
created_at: Date;
|
|
1748
|
+
updated_at: Date;
|
|
1749
|
+
account_id: number;
|
|
1749
1750
|
secret: string;
|
|
1750
|
-
|
|
1751
|
-
updatedAt: Date;
|
|
1751
|
+
is_active: boolean;
|
|
1752
1752
|
}, {
|
|
1753
1753
|
name: string;
|
|
1754
1754
|
id: number;
|
|
1755
1755
|
url: string;
|
|
1756
|
-
|
|
1757
|
-
|
|
1756
|
+
created_at: Date;
|
|
1757
|
+
updated_at: Date;
|
|
1758
|
+
account_id: number;
|
|
1758
1759
|
secret: string;
|
|
1759
|
-
|
|
1760
|
-
updatedAt: Date;
|
|
1760
|
+
is_active: boolean;
|
|
1761
1761
|
}>, "many">;
|
|
1762
1762
|
}, "strip", z.ZodTypeAny, {
|
|
1763
1763
|
data: {
|
|
1764
1764
|
name: string;
|
|
1765
1765
|
id: number;
|
|
1766
1766
|
url: string;
|
|
1767
|
-
|
|
1768
|
-
|
|
1767
|
+
created_at: Date;
|
|
1768
|
+
updated_at: Date;
|
|
1769
|
+
account_id: number;
|
|
1769
1770
|
secret: string;
|
|
1770
|
-
|
|
1771
|
-
updatedAt: Date;
|
|
1771
|
+
is_active: boolean;
|
|
1772
1772
|
}[];
|
|
1773
1773
|
}, {
|
|
1774
1774
|
data: {
|
|
1775
1775
|
name: string;
|
|
1776
1776
|
id: number;
|
|
1777
1777
|
url: string;
|
|
1778
|
-
|
|
1779
|
-
|
|
1778
|
+
created_at: Date;
|
|
1779
|
+
updated_at: Date;
|
|
1780
|
+
account_id: number;
|
|
1780
1781
|
secret: string;
|
|
1781
|
-
|
|
1782
|
-
updatedAt: Date;
|
|
1782
|
+
is_active: boolean;
|
|
1783
1783
|
}[];
|
|
1784
1784
|
}>;
|
|
1785
1785
|
export type Webhooks = z.infer<typeof WebhooksSchema>;
|