@wix/motion 1.0.27 → 1.0.28
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/build/cjs/src/alarm-v1-alarm.types.d.ts +4 -4
- package/build/cjs/src/alarm-v1-alarm.universal.d.ts +4 -4
- package/build/cjs/src/metroinspector-v1-echo.public.d.ts +1 -1
- package/build/cjs/src/metroinspector-v1-echo.types.d.ts +5 -5
- package/build/cjs/src/metroinspector-v1-echo.universal.d.ts +7 -7
- package/build/cjs/src/metroinspector-v1-product.public.d.ts +43 -43
- package/build/cjs/src/metroinspector-v1-product.types.d.ts +241 -241
- package/build/cjs/src/metroinspector-v1-product.universal.d.ts +80 -80
- package/build/es/src/alarm-v1-alarm.types.d.ts +4 -4
- package/build/es/src/alarm-v1-alarm.universal.d.ts +4 -4
- package/build/es/src/metroinspector-v1-echo.public.d.ts +1 -1
- package/build/es/src/metroinspector-v1-echo.types.d.ts +5 -5
- package/build/es/src/metroinspector-v1-echo.universal.d.ts +7 -7
- package/build/es/src/metroinspector-v1-product.public.d.ts +43 -43
- package/build/es/src/metroinspector-v1-product.types.d.ts +241 -241
- package/build/es/src/metroinspector-v1-product.universal.d.ts +80 -80
- package/package.json +2 -2
|
@@ -286,446 +286,446 @@ export interface Cursors {
|
|
|
286
286
|
}
|
|
287
287
|
export interface CreateProductRequestRequiredFields {
|
|
288
288
|
product?: {
|
|
289
|
-
title:
|
|
289
|
+
title: string;
|
|
290
290
|
};
|
|
291
291
|
}
|
|
292
292
|
export interface CreateProductResponseNonNullableFields {
|
|
293
293
|
product?: {
|
|
294
|
-
id:
|
|
295
|
-
collectionId:
|
|
294
|
+
id: string;
|
|
295
|
+
collectionId: string;
|
|
296
296
|
image?: {
|
|
297
|
-
id:
|
|
298
|
-
url:
|
|
299
|
-
height:
|
|
300
|
-
width:
|
|
297
|
+
id: string;
|
|
298
|
+
url: string;
|
|
299
|
+
height: number;
|
|
300
|
+
width: number;
|
|
301
301
|
};
|
|
302
302
|
address?: {
|
|
303
303
|
streetAddress?: {
|
|
304
|
-
number:
|
|
305
|
-
name:
|
|
306
|
-
apt:
|
|
304
|
+
number: string;
|
|
305
|
+
name: string;
|
|
306
|
+
apt: string;
|
|
307
307
|
};
|
|
308
308
|
subdivisions: {
|
|
309
|
-
code:
|
|
310
|
-
name:
|
|
311
|
-
type:
|
|
309
|
+
code: string;
|
|
310
|
+
name: string;
|
|
311
|
+
type: SubdivisionType;
|
|
312
312
|
}[];
|
|
313
313
|
};
|
|
314
314
|
document?: {
|
|
315
|
-
id:
|
|
316
|
-
url:
|
|
315
|
+
id: string;
|
|
316
|
+
url: string;
|
|
317
317
|
};
|
|
318
318
|
video?: {
|
|
319
|
-
id:
|
|
320
|
-
url:
|
|
319
|
+
id: string;
|
|
320
|
+
url: string;
|
|
321
321
|
resolutions: {
|
|
322
|
-
url:
|
|
323
|
-
height:
|
|
324
|
-
width:
|
|
322
|
+
url: string;
|
|
323
|
+
height: number;
|
|
324
|
+
width: number;
|
|
325
325
|
poster?: {
|
|
326
|
-
id:
|
|
327
|
-
url:
|
|
328
|
-
height:
|
|
329
|
-
width:
|
|
326
|
+
id: string;
|
|
327
|
+
url: string;
|
|
328
|
+
height: number;
|
|
329
|
+
width: number;
|
|
330
330
|
};
|
|
331
|
-
format:
|
|
331
|
+
format: string;
|
|
332
332
|
}[];
|
|
333
333
|
posters: {
|
|
334
|
-
id:
|
|
335
|
-
url:
|
|
336
|
-
height:
|
|
337
|
-
width:
|
|
334
|
+
id: string;
|
|
335
|
+
url: string;
|
|
336
|
+
height: number;
|
|
337
|
+
width: number;
|
|
338
338
|
}[];
|
|
339
339
|
};
|
|
340
340
|
pageLink?: {
|
|
341
|
-
pageId:
|
|
341
|
+
pageId: string;
|
|
342
342
|
};
|
|
343
343
|
audio?: {
|
|
344
|
-
id:
|
|
345
|
-
url:
|
|
344
|
+
id: string;
|
|
345
|
+
url: string;
|
|
346
346
|
};
|
|
347
347
|
variants: {
|
|
348
|
-
name:
|
|
349
|
-
value:
|
|
348
|
+
name: string;
|
|
349
|
+
value: string;
|
|
350
350
|
image?: {
|
|
351
|
-
id:
|
|
352
|
-
url:
|
|
353
|
-
height:
|
|
354
|
-
width:
|
|
351
|
+
id: string;
|
|
352
|
+
url: string;
|
|
353
|
+
height: number;
|
|
354
|
+
width: number;
|
|
355
355
|
};
|
|
356
356
|
}[];
|
|
357
357
|
mainVariant?: {
|
|
358
|
-
name:
|
|
359
|
-
value:
|
|
358
|
+
name: string;
|
|
359
|
+
value: string;
|
|
360
360
|
image?: {
|
|
361
|
-
id:
|
|
362
|
-
url:
|
|
363
|
-
height:
|
|
364
|
-
width:
|
|
361
|
+
id: string;
|
|
362
|
+
url: string;
|
|
363
|
+
height: number;
|
|
364
|
+
width: number;
|
|
365
365
|
};
|
|
366
366
|
};
|
|
367
367
|
customAddress?: {
|
|
368
368
|
streetAddress?: {
|
|
369
|
-
number:
|
|
370
|
-
name:
|
|
371
|
-
apt:
|
|
369
|
+
number: string;
|
|
370
|
+
name: string;
|
|
371
|
+
apt: string;
|
|
372
372
|
};
|
|
373
373
|
};
|
|
374
|
-
guid:
|
|
374
|
+
guid: string;
|
|
375
375
|
};
|
|
376
376
|
}
|
|
377
377
|
export interface DeleteProductRequestRequiredFields {
|
|
378
|
-
productId:
|
|
378
|
+
productId: string;
|
|
379
379
|
}
|
|
380
380
|
export interface UpdateProductRequestRequiredFields {
|
|
381
381
|
product?: {
|
|
382
|
-
id:
|
|
382
|
+
id: string;
|
|
383
383
|
};
|
|
384
|
-
productId:
|
|
384
|
+
productId: string;
|
|
385
385
|
}
|
|
386
386
|
export interface UpdateProductResponseNonNullableFields {
|
|
387
387
|
product?: {
|
|
388
|
-
id:
|
|
389
|
-
collectionId:
|
|
388
|
+
id: string;
|
|
389
|
+
collectionId: string;
|
|
390
390
|
image?: {
|
|
391
|
-
id:
|
|
392
|
-
url:
|
|
393
|
-
height:
|
|
394
|
-
width:
|
|
391
|
+
id: string;
|
|
392
|
+
url: string;
|
|
393
|
+
height: number;
|
|
394
|
+
width: number;
|
|
395
395
|
};
|
|
396
396
|
address?: {
|
|
397
397
|
streetAddress?: {
|
|
398
|
-
number:
|
|
399
|
-
name:
|
|
400
|
-
apt:
|
|
398
|
+
number: string;
|
|
399
|
+
name: string;
|
|
400
|
+
apt: string;
|
|
401
401
|
};
|
|
402
402
|
subdivisions: {
|
|
403
|
-
code:
|
|
404
|
-
name:
|
|
405
|
-
type:
|
|
403
|
+
code: string;
|
|
404
|
+
name: string;
|
|
405
|
+
type: SubdivisionType;
|
|
406
406
|
}[];
|
|
407
407
|
};
|
|
408
408
|
document?: {
|
|
409
|
-
id:
|
|
410
|
-
url:
|
|
409
|
+
id: string;
|
|
410
|
+
url: string;
|
|
411
411
|
};
|
|
412
412
|
video?: {
|
|
413
|
-
id:
|
|
414
|
-
url:
|
|
413
|
+
id: string;
|
|
414
|
+
url: string;
|
|
415
415
|
resolutions: {
|
|
416
|
-
url:
|
|
417
|
-
height:
|
|
418
|
-
width:
|
|
416
|
+
url: string;
|
|
417
|
+
height: number;
|
|
418
|
+
width: number;
|
|
419
419
|
poster?: {
|
|
420
|
-
id:
|
|
421
|
-
url:
|
|
422
|
-
height:
|
|
423
|
-
width:
|
|
420
|
+
id: string;
|
|
421
|
+
url: string;
|
|
422
|
+
height: number;
|
|
423
|
+
width: number;
|
|
424
424
|
};
|
|
425
|
-
format:
|
|
425
|
+
format: string;
|
|
426
426
|
}[];
|
|
427
427
|
posters: {
|
|
428
|
-
id:
|
|
429
|
-
url:
|
|
430
|
-
height:
|
|
431
|
-
width:
|
|
428
|
+
id: string;
|
|
429
|
+
url: string;
|
|
430
|
+
height: number;
|
|
431
|
+
width: number;
|
|
432
432
|
}[];
|
|
433
433
|
};
|
|
434
434
|
pageLink?: {
|
|
435
|
-
pageId:
|
|
435
|
+
pageId: string;
|
|
436
436
|
};
|
|
437
437
|
audio?: {
|
|
438
|
-
id:
|
|
439
|
-
url:
|
|
438
|
+
id: string;
|
|
439
|
+
url: string;
|
|
440
440
|
};
|
|
441
441
|
variants: {
|
|
442
|
-
name:
|
|
443
|
-
value:
|
|
442
|
+
name: string;
|
|
443
|
+
value: string;
|
|
444
444
|
image?: {
|
|
445
|
-
id:
|
|
446
|
-
url:
|
|
447
|
-
height:
|
|
448
|
-
width:
|
|
445
|
+
id: string;
|
|
446
|
+
url: string;
|
|
447
|
+
height: number;
|
|
448
|
+
width: number;
|
|
449
449
|
};
|
|
450
450
|
}[];
|
|
451
451
|
mainVariant?: {
|
|
452
|
-
name:
|
|
453
|
-
value:
|
|
452
|
+
name: string;
|
|
453
|
+
value: string;
|
|
454
454
|
image?: {
|
|
455
|
-
id:
|
|
456
|
-
url:
|
|
457
|
-
height:
|
|
458
|
-
width:
|
|
455
|
+
id: string;
|
|
456
|
+
url: string;
|
|
457
|
+
height: number;
|
|
458
|
+
width: number;
|
|
459
459
|
};
|
|
460
460
|
};
|
|
461
461
|
customAddress?: {
|
|
462
462
|
streetAddress?: {
|
|
463
|
-
number:
|
|
464
|
-
name:
|
|
465
|
-
apt:
|
|
463
|
+
number: string;
|
|
464
|
+
name: string;
|
|
465
|
+
apt: string;
|
|
466
466
|
};
|
|
467
467
|
};
|
|
468
|
-
guid:
|
|
468
|
+
guid: string;
|
|
469
469
|
};
|
|
470
470
|
}
|
|
471
471
|
export interface GetProductRequestRequiredFields {
|
|
472
|
-
productId:
|
|
472
|
+
productId: string;
|
|
473
473
|
}
|
|
474
474
|
export interface GetProductResponseNonNullableFields {
|
|
475
475
|
product?: {
|
|
476
|
-
id:
|
|
477
|
-
collectionId:
|
|
476
|
+
id: string;
|
|
477
|
+
collectionId: string;
|
|
478
478
|
image?: {
|
|
479
|
-
id:
|
|
480
|
-
url:
|
|
481
|
-
height:
|
|
482
|
-
width:
|
|
479
|
+
id: string;
|
|
480
|
+
url: string;
|
|
481
|
+
height: number;
|
|
482
|
+
width: number;
|
|
483
483
|
};
|
|
484
484
|
address?: {
|
|
485
485
|
streetAddress?: {
|
|
486
|
-
number:
|
|
487
|
-
name:
|
|
488
|
-
apt:
|
|
486
|
+
number: string;
|
|
487
|
+
name: string;
|
|
488
|
+
apt: string;
|
|
489
489
|
};
|
|
490
490
|
subdivisions: {
|
|
491
|
-
code:
|
|
492
|
-
name:
|
|
493
|
-
type:
|
|
491
|
+
code: string;
|
|
492
|
+
name: string;
|
|
493
|
+
type: SubdivisionType;
|
|
494
494
|
}[];
|
|
495
495
|
};
|
|
496
496
|
document?: {
|
|
497
|
-
id:
|
|
498
|
-
url:
|
|
497
|
+
id: string;
|
|
498
|
+
url: string;
|
|
499
499
|
};
|
|
500
500
|
video?: {
|
|
501
|
-
id:
|
|
502
|
-
url:
|
|
501
|
+
id: string;
|
|
502
|
+
url: string;
|
|
503
503
|
resolutions: {
|
|
504
|
-
url:
|
|
505
|
-
height:
|
|
506
|
-
width:
|
|
504
|
+
url: string;
|
|
505
|
+
height: number;
|
|
506
|
+
width: number;
|
|
507
507
|
poster?: {
|
|
508
|
-
id:
|
|
509
|
-
url:
|
|
510
|
-
height:
|
|
511
|
-
width:
|
|
508
|
+
id: string;
|
|
509
|
+
url: string;
|
|
510
|
+
height: number;
|
|
511
|
+
width: number;
|
|
512
512
|
};
|
|
513
|
-
format:
|
|
513
|
+
format: string;
|
|
514
514
|
}[];
|
|
515
515
|
posters: {
|
|
516
|
-
id:
|
|
517
|
-
url:
|
|
518
|
-
height:
|
|
519
|
-
width:
|
|
516
|
+
id: string;
|
|
517
|
+
url: string;
|
|
518
|
+
height: number;
|
|
519
|
+
width: number;
|
|
520
520
|
}[];
|
|
521
521
|
};
|
|
522
522
|
pageLink?: {
|
|
523
|
-
pageId:
|
|
523
|
+
pageId: string;
|
|
524
524
|
};
|
|
525
525
|
audio?: {
|
|
526
|
-
id:
|
|
527
|
-
url:
|
|
526
|
+
id: string;
|
|
527
|
+
url: string;
|
|
528
528
|
};
|
|
529
529
|
variants: {
|
|
530
|
-
name:
|
|
531
|
-
value:
|
|
530
|
+
name: string;
|
|
531
|
+
value: string;
|
|
532
532
|
image?: {
|
|
533
|
-
id:
|
|
534
|
-
url:
|
|
535
|
-
height:
|
|
536
|
-
width:
|
|
533
|
+
id: string;
|
|
534
|
+
url: string;
|
|
535
|
+
height: number;
|
|
536
|
+
width: number;
|
|
537
537
|
};
|
|
538
538
|
}[];
|
|
539
539
|
mainVariant?: {
|
|
540
|
-
name:
|
|
541
|
-
value:
|
|
540
|
+
name: string;
|
|
541
|
+
value: string;
|
|
542
542
|
image?: {
|
|
543
|
-
id:
|
|
544
|
-
url:
|
|
545
|
-
height:
|
|
546
|
-
width:
|
|
543
|
+
id: string;
|
|
544
|
+
url: string;
|
|
545
|
+
height: number;
|
|
546
|
+
width: number;
|
|
547
547
|
};
|
|
548
548
|
};
|
|
549
549
|
customAddress?: {
|
|
550
550
|
streetAddress?: {
|
|
551
|
-
number:
|
|
552
|
-
name:
|
|
553
|
-
apt:
|
|
551
|
+
number: string;
|
|
552
|
+
name: string;
|
|
553
|
+
apt: string;
|
|
554
554
|
};
|
|
555
555
|
};
|
|
556
|
-
guid:
|
|
556
|
+
guid: string;
|
|
557
557
|
};
|
|
558
558
|
}
|
|
559
559
|
export interface GetProductsStartWithRequestRequiredFields {
|
|
560
|
-
title:
|
|
560
|
+
title: string;
|
|
561
561
|
}
|
|
562
562
|
export interface GetProductsStartWithResponseNonNullableFields {
|
|
563
563
|
products: {
|
|
564
|
-
id:
|
|
565
|
-
collectionId:
|
|
564
|
+
id: string;
|
|
565
|
+
collectionId: string;
|
|
566
566
|
image?: {
|
|
567
|
-
id:
|
|
568
|
-
url:
|
|
569
|
-
height:
|
|
570
|
-
width:
|
|
567
|
+
id: string;
|
|
568
|
+
url: string;
|
|
569
|
+
height: number;
|
|
570
|
+
width: number;
|
|
571
571
|
};
|
|
572
572
|
address?: {
|
|
573
573
|
streetAddress?: {
|
|
574
|
-
number:
|
|
575
|
-
name:
|
|
576
|
-
apt:
|
|
574
|
+
number: string;
|
|
575
|
+
name: string;
|
|
576
|
+
apt: string;
|
|
577
577
|
};
|
|
578
578
|
subdivisions: {
|
|
579
|
-
code:
|
|
580
|
-
name:
|
|
581
|
-
type:
|
|
579
|
+
code: string;
|
|
580
|
+
name: string;
|
|
581
|
+
type: SubdivisionType;
|
|
582
582
|
}[];
|
|
583
583
|
};
|
|
584
584
|
document?: {
|
|
585
|
-
id:
|
|
586
|
-
url:
|
|
585
|
+
id: string;
|
|
586
|
+
url: string;
|
|
587
587
|
};
|
|
588
588
|
video?: {
|
|
589
|
-
id:
|
|
590
|
-
url:
|
|
589
|
+
id: string;
|
|
590
|
+
url: string;
|
|
591
591
|
resolutions: {
|
|
592
|
-
url:
|
|
593
|
-
height:
|
|
594
|
-
width:
|
|
592
|
+
url: string;
|
|
593
|
+
height: number;
|
|
594
|
+
width: number;
|
|
595
595
|
poster?: {
|
|
596
|
-
id:
|
|
597
|
-
url:
|
|
598
|
-
height:
|
|
599
|
-
width:
|
|
596
|
+
id: string;
|
|
597
|
+
url: string;
|
|
598
|
+
height: number;
|
|
599
|
+
width: number;
|
|
600
600
|
};
|
|
601
|
-
format:
|
|
601
|
+
format: string;
|
|
602
602
|
}[];
|
|
603
603
|
posters: {
|
|
604
|
-
id:
|
|
605
|
-
url:
|
|
606
|
-
height:
|
|
607
|
-
width:
|
|
604
|
+
id: string;
|
|
605
|
+
url: string;
|
|
606
|
+
height: number;
|
|
607
|
+
width: number;
|
|
608
608
|
}[];
|
|
609
609
|
};
|
|
610
610
|
pageLink?: {
|
|
611
|
-
pageId:
|
|
611
|
+
pageId: string;
|
|
612
612
|
};
|
|
613
613
|
audio?: {
|
|
614
|
-
id:
|
|
615
|
-
url:
|
|
614
|
+
id: string;
|
|
615
|
+
url: string;
|
|
616
616
|
};
|
|
617
617
|
variants: {
|
|
618
|
-
name:
|
|
619
|
-
value:
|
|
618
|
+
name: string;
|
|
619
|
+
value: string;
|
|
620
620
|
image?: {
|
|
621
|
-
id:
|
|
622
|
-
url:
|
|
623
|
-
height:
|
|
624
|
-
width:
|
|
621
|
+
id: string;
|
|
622
|
+
url: string;
|
|
623
|
+
height: number;
|
|
624
|
+
width: number;
|
|
625
625
|
};
|
|
626
626
|
}[];
|
|
627
627
|
mainVariant?: {
|
|
628
|
-
name:
|
|
629
|
-
value:
|
|
628
|
+
name: string;
|
|
629
|
+
value: string;
|
|
630
630
|
image?: {
|
|
631
|
-
id:
|
|
632
|
-
url:
|
|
633
|
-
height:
|
|
634
|
-
width:
|
|
631
|
+
id: string;
|
|
632
|
+
url: string;
|
|
633
|
+
height: number;
|
|
634
|
+
width: number;
|
|
635
635
|
};
|
|
636
636
|
};
|
|
637
637
|
customAddress?: {
|
|
638
638
|
streetAddress?: {
|
|
639
|
-
number:
|
|
640
|
-
name:
|
|
641
|
-
apt:
|
|
639
|
+
number: string;
|
|
640
|
+
name: string;
|
|
641
|
+
apt: string;
|
|
642
642
|
};
|
|
643
643
|
};
|
|
644
|
-
guid:
|
|
644
|
+
guid: string;
|
|
645
645
|
}[];
|
|
646
646
|
}
|
|
647
647
|
export interface QueryProductsResponseNonNullableFields {
|
|
648
648
|
products: {
|
|
649
|
-
id:
|
|
650
|
-
collectionId:
|
|
649
|
+
id: string;
|
|
650
|
+
collectionId: string;
|
|
651
651
|
image?: {
|
|
652
|
-
id:
|
|
653
|
-
url:
|
|
654
|
-
height:
|
|
655
|
-
width:
|
|
652
|
+
id: string;
|
|
653
|
+
url: string;
|
|
654
|
+
height: number;
|
|
655
|
+
width: number;
|
|
656
656
|
};
|
|
657
657
|
address?: {
|
|
658
658
|
streetAddress?: {
|
|
659
|
-
number:
|
|
660
|
-
name:
|
|
661
|
-
apt:
|
|
659
|
+
number: string;
|
|
660
|
+
name: string;
|
|
661
|
+
apt: string;
|
|
662
662
|
};
|
|
663
663
|
subdivisions: {
|
|
664
|
-
code:
|
|
665
|
-
name:
|
|
666
|
-
type:
|
|
664
|
+
code: string;
|
|
665
|
+
name: string;
|
|
666
|
+
type: SubdivisionType;
|
|
667
667
|
}[];
|
|
668
668
|
};
|
|
669
669
|
document?: {
|
|
670
|
-
id:
|
|
671
|
-
url:
|
|
670
|
+
id: string;
|
|
671
|
+
url: string;
|
|
672
672
|
};
|
|
673
673
|
video?: {
|
|
674
|
-
id:
|
|
675
|
-
url:
|
|
674
|
+
id: string;
|
|
675
|
+
url: string;
|
|
676
676
|
resolutions: {
|
|
677
|
-
url:
|
|
678
|
-
height:
|
|
679
|
-
width:
|
|
677
|
+
url: string;
|
|
678
|
+
height: number;
|
|
679
|
+
width: number;
|
|
680
680
|
poster?: {
|
|
681
|
-
id:
|
|
682
|
-
url:
|
|
683
|
-
height:
|
|
684
|
-
width:
|
|
681
|
+
id: string;
|
|
682
|
+
url: string;
|
|
683
|
+
height: number;
|
|
684
|
+
width: number;
|
|
685
685
|
};
|
|
686
|
-
format:
|
|
686
|
+
format: string;
|
|
687
687
|
}[];
|
|
688
688
|
posters: {
|
|
689
|
-
id:
|
|
690
|
-
url:
|
|
691
|
-
height:
|
|
692
|
-
width:
|
|
689
|
+
id: string;
|
|
690
|
+
url: string;
|
|
691
|
+
height: number;
|
|
692
|
+
width: number;
|
|
693
693
|
}[];
|
|
694
694
|
};
|
|
695
695
|
pageLink?: {
|
|
696
|
-
pageId:
|
|
696
|
+
pageId: string;
|
|
697
697
|
};
|
|
698
698
|
audio?: {
|
|
699
|
-
id:
|
|
700
|
-
url:
|
|
699
|
+
id: string;
|
|
700
|
+
url: string;
|
|
701
701
|
};
|
|
702
702
|
variants: {
|
|
703
|
-
name:
|
|
704
|
-
value:
|
|
703
|
+
name: string;
|
|
704
|
+
value: string;
|
|
705
705
|
image?: {
|
|
706
|
-
id:
|
|
707
|
-
url:
|
|
708
|
-
height:
|
|
709
|
-
width:
|
|
706
|
+
id: string;
|
|
707
|
+
url: string;
|
|
708
|
+
height: number;
|
|
709
|
+
width: number;
|
|
710
710
|
};
|
|
711
711
|
}[];
|
|
712
712
|
mainVariant?: {
|
|
713
|
-
name:
|
|
714
|
-
value:
|
|
713
|
+
name: string;
|
|
714
|
+
value: string;
|
|
715
715
|
image?: {
|
|
716
|
-
id:
|
|
717
|
-
url:
|
|
718
|
-
height:
|
|
719
|
-
width:
|
|
716
|
+
id: string;
|
|
717
|
+
url: string;
|
|
718
|
+
height: number;
|
|
719
|
+
width: number;
|
|
720
720
|
};
|
|
721
721
|
};
|
|
722
722
|
customAddress?: {
|
|
723
723
|
streetAddress?: {
|
|
724
|
-
number:
|
|
725
|
-
name:
|
|
726
|
-
apt:
|
|
724
|
+
number: string;
|
|
725
|
+
name: string;
|
|
726
|
+
apt: string;
|
|
727
727
|
};
|
|
728
728
|
};
|
|
729
|
-
guid:
|
|
729
|
+
guid: string;
|
|
730
730
|
}[];
|
|
731
731
|
}
|