ob-bms-sdk 0.0.20 → 0.0.22
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/api/api.ts +794 -257
- package/dist/api/api.d.ts +736 -239
- package/dist/api/api.js +107 -40
- package/package.json +1 -1
package/api/api.ts
CHANGED
|
@@ -265,6 +265,104 @@ export interface FindMemberResult {
|
|
|
265
265
|
*/
|
|
266
266
|
export interface FindMemberResultCreatedAt {
|
|
267
267
|
}
|
|
268
|
+
/**
|
|
269
|
+
*
|
|
270
|
+
* @export
|
|
271
|
+
* @interface FloorData
|
|
272
|
+
*/
|
|
273
|
+
export interface FloorData {
|
|
274
|
+
/**
|
|
275
|
+
*
|
|
276
|
+
* @type {string}
|
|
277
|
+
* @memberof FloorData
|
|
278
|
+
*/
|
|
279
|
+
'id': string;
|
|
280
|
+
/**
|
|
281
|
+
*
|
|
282
|
+
* @type {string}
|
|
283
|
+
* @memberof FloorData
|
|
284
|
+
*/
|
|
285
|
+
'uid': string;
|
|
286
|
+
/**
|
|
287
|
+
*
|
|
288
|
+
* @type {string}
|
|
289
|
+
* @memberof FloorData
|
|
290
|
+
*/
|
|
291
|
+
'name': string;
|
|
292
|
+
/**
|
|
293
|
+
*
|
|
294
|
+
* @type {JsonValue}
|
|
295
|
+
* @memberof FloorData
|
|
296
|
+
*/
|
|
297
|
+
'display_name': JsonValue | null;
|
|
298
|
+
/**
|
|
299
|
+
*
|
|
300
|
+
* @type {string}
|
|
301
|
+
* @memberof FloorData
|
|
302
|
+
*/
|
|
303
|
+
'tower_id': string;
|
|
304
|
+
/**
|
|
305
|
+
*
|
|
306
|
+
* @type {string}
|
|
307
|
+
* @memberof FloorData
|
|
308
|
+
*/
|
|
309
|
+
'created_at': string;
|
|
310
|
+
/**
|
|
311
|
+
*
|
|
312
|
+
* @type {string}
|
|
313
|
+
* @memberof FloorData
|
|
314
|
+
*/
|
|
315
|
+
'updated_at': string;
|
|
316
|
+
}
|
|
317
|
+
/**
|
|
318
|
+
*
|
|
319
|
+
* @export
|
|
320
|
+
* @interface FloorDataPasses
|
|
321
|
+
*/
|
|
322
|
+
export interface FloorDataPasses {
|
|
323
|
+
/**
|
|
324
|
+
*
|
|
325
|
+
* @type {string}
|
|
326
|
+
* @memberof FloorDataPasses
|
|
327
|
+
*/
|
|
328
|
+
'id': string;
|
|
329
|
+
/**
|
|
330
|
+
*
|
|
331
|
+
* @type {string}
|
|
332
|
+
* @memberof FloorDataPasses
|
|
333
|
+
*/
|
|
334
|
+
'uid': string;
|
|
335
|
+
/**
|
|
336
|
+
*
|
|
337
|
+
* @type {string}
|
|
338
|
+
* @memberof FloorDataPasses
|
|
339
|
+
*/
|
|
340
|
+
'name': string;
|
|
341
|
+
/**
|
|
342
|
+
*
|
|
343
|
+
* @type {JsonValue}
|
|
344
|
+
* @memberof FloorDataPasses
|
|
345
|
+
*/
|
|
346
|
+
'display_name': JsonValue | null;
|
|
347
|
+
/**
|
|
348
|
+
*
|
|
349
|
+
* @type {string}
|
|
350
|
+
* @memberof FloorDataPasses
|
|
351
|
+
*/
|
|
352
|
+
'tower_id': string;
|
|
353
|
+
/**
|
|
354
|
+
*
|
|
355
|
+
* @type {string}
|
|
356
|
+
* @memberof FloorDataPasses
|
|
357
|
+
*/
|
|
358
|
+
'created_at': string;
|
|
359
|
+
/**
|
|
360
|
+
*
|
|
361
|
+
* @type {string}
|
|
362
|
+
* @memberof FloorDataPasses
|
|
363
|
+
*/
|
|
364
|
+
'updated_at': string;
|
|
365
|
+
}
|
|
268
366
|
/**
|
|
269
367
|
*
|
|
270
368
|
* @export
|
|
@@ -297,6 +395,252 @@ export interface LocationData {
|
|
|
297
395
|
*/
|
|
298
396
|
'isDefault': boolean;
|
|
299
397
|
}
|
|
398
|
+
/**
|
|
399
|
+
*
|
|
400
|
+
* @export
|
|
401
|
+
* @interface LocationPasses
|
|
402
|
+
*/
|
|
403
|
+
export interface LocationPasses {
|
|
404
|
+
/**
|
|
405
|
+
*
|
|
406
|
+
* @type {string}
|
|
407
|
+
* @memberof LocationPasses
|
|
408
|
+
*/
|
|
409
|
+
'id': string;
|
|
410
|
+
/**
|
|
411
|
+
*
|
|
412
|
+
* @type {string}
|
|
413
|
+
* @memberof LocationPasses
|
|
414
|
+
*/
|
|
415
|
+
'uid': string;
|
|
416
|
+
/**
|
|
417
|
+
*
|
|
418
|
+
* @type {string}
|
|
419
|
+
* @memberof LocationPasses
|
|
420
|
+
*/
|
|
421
|
+
'name': string;
|
|
422
|
+
/**
|
|
423
|
+
*
|
|
424
|
+
* @type {string}
|
|
425
|
+
* @memberof LocationPasses
|
|
426
|
+
*/
|
|
427
|
+
'coordinate': string;
|
|
428
|
+
/**
|
|
429
|
+
*
|
|
430
|
+
* @type {string}
|
|
431
|
+
* @memberof LocationPasses
|
|
432
|
+
*/
|
|
433
|
+
'tower_id': string;
|
|
434
|
+
/**
|
|
435
|
+
*
|
|
436
|
+
* @type {string}
|
|
437
|
+
* @memberof LocationPasses
|
|
438
|
+
*/
|
|
439
|
+
'floor_id': string;
|
|
440
|
+
/**
|
|
441
|
+
*
|
|
442
|
+
* @type {string}
|
|
443
|
+
* @memberof LocationPasses
|
|
444
|
+
*/
|
|
445
|
+
'zone_id': string;
|
|
446
|
+
/**
|
|
447
|
+
*
|
|
448
|
+
* @type {TowerDataPasses}
|
|
449
|
+
* @memberof LocationPasses
|
|
450
|
+
*/
|
|
451
|
+
'tower': TowerDataPasses;
|
|
452
|
+
/**
|
|
453
|
+
*
|
|
454
|
+
* @type {FloorDataPasses}
|
|
455
|
+
* @memberof LocationPasses
|
|
456
|
+
*/
|
|
457
|
+
'floor': FloorDataPasses;
|
|
458
|
+
/**
|
|
459
|
+
*
|
|
460
|
+
* @type {string}
|
|
461
|
+
* @memberof LocationPasses
|
|
462
|
+
*/
|
|
463
|
+
'created_at': string;
|
|
464
|
+
/**
|
|
465
|
+
*
|
|
466
|
+
* @type {string}
|
|
467
|
+
* @memberof LocationPasses
|
|
468
|
+
*/
|
|
469
|
+
'updated_at': string;
|
|
470
|
+
}
|
|
471
|
+
/**
|
|
472
|
+
*
|
|
473
|
+
* @export
|
|
474
|
+
* @interface MembersPasses
|
|
475
|
+
*/
|
|
476
|
+
export interface MembersPasses {
|
|
477
|
+
/**
|
|
478
|
+
*
|
|
479
|
+
* @type {string}
|
|
480
|
+
* @memberof MembersPasses
|
|
481
|
+
*/
|
|
482
|
+
'uid': string;
|
|
483
|
+
/**
|
|
484
|
+
*
|
|
485
|
+
* @type {JsonValue}
|
|
486
|
+
* @memberof MembersPasses
|
|
487
|
+
*/
|
|
488
|
+
'metadata': JsonValue | null;
|
|
489
|
+
/**
|
|
490
|
+
*
|
|
491
|
+
* @type {string}
|
|
492
|
+
* @memberof MembersPasses
|
|
493
|
+
*/
|
|
494
|
+
'account_id': string | null;
|
|
495
|
+
/**
|
|
496
|
+
*
|
|
497
|
+
* @type {string}
|
|
498
|
+
* @memberof MembersPasses
|
|
499
|
+
*/
|
|
500
|
+
'created_at': string;
|
|
501
|
+
/**
|
|
502
|
+
*
|
|
503
|
+
* @type {string}
|
|
504
|
+
* @memberof MembersPasses
|
|
505
|
+
*/
|
|
506
|
+
'updated_at': string;
|
|
507
|
+
}
|
|
508
|
+
/**
|
|
509
|
+
*
|
|
510
|
+
* @export
|
|
511
|
+
* @interface MembersShowResponse
|
|
512
|
+
*/
|
|
513
|
+
export interface MembersShowResponse {
|
|
514
|
+
/**
|
|
515
|
+
*
|
|
516
|
+
* @type {string}
|
|
517
|
+
* @memberof MembersShowResponse
|
|
518
|
+
*/
|
|
519
|
+
'id': string;
|
|
520
|
+
/**
|
|
521
|
+
*
|
|
522
|
+
* @type {string}
|
|
523
|
+
* @memberof MembersShowResponse
|
|
524
|
+
*/
|
|
525
|
+
'uid': string;
|
|
526
|
+
/**
|
|
527
|
+
*
|
|
528
|
+
* @type {JsonValue}
|
|
529
|
+
* @memberof MembersShowResponse
|
|
530
|
+
*/
|
|
531
|
+
'metadata': JsonValue | null;
|
|
532
|
+
/**
|
|
533
|
+
*
|
|
534
|
+
* @type {string}
|
|
535
|
+
* @memberof MembersShowResponse
|
|
536
|
+
*/
|
|
537
|
+
'account_id': string | null;
|
|
538
|
+
/**
|
|
539
|
+
*
|
|
540
|
+
* @type {string}
|
|
541
|
+
* @memberof MembersShowResponse
|
|
542
|
+
*/
|
|
543
|
+
'created_at': string;
|
|
544
|
+
/**
|
|
545
|
+
*
|
|
546
|
+
* @type {string}
|
|
547
|
+
* @memberof MembersShowResponse
|
|
548
|
+
*/
|
|
549
|
+
'updated_at': string;
|
|
550
|
+
/**
|
|
551
|
+
*
|
|
552
|
+
* @type {Array<PassData>}
|
|
553
|
+
* @memberof MembersShowResponse
|
|
554
|
+
*/
|
|
555
|
+
'passes': Array<PassData>;
|
|
556
|
+
/**
|
|
557
|
+
*
|
|
558
|
+
* @type {Array<TowerData>}
|
|
559
|
+
* @memberof MembersShowResponse
|
|
560
|
+
*/
|
|
561
|
+
'towers': Array<TowerData>;
|
|
562
|
+
}
|
|
563
|
+
/**
|
|
564
|
+
*
|
|
565
|
+
* @export
|
|
566
|
+
* @interface PassData
|
|
567
|
+
*/
|
|
568
|
+
export interface PassData {
|
|
569
|
+
/**
|
|
570
|
+
*
|
|
571
|
+
* @type {VisitorData}
|
|
572
|
+
* @memberof PassData
|
|
573
|
+
*/
|
|
574
|
+
'visitor': VisitorData;
|
|
575
|
+
/**
|
|
576
|
+
*
|
|
577
|
+
* @type {string}
|
|
578
|
+
* @memberof PassData
|
|
579
|
+
*/
|
|
580
|
+
'updated_at': string;
|
|
581
|
+
/**
|
|
582
|
+
*
|
|
583
|
+
* @type {string}
|
|
584
|
+
* @memberof PassData
|
|
585
|
+
*/
|
|
586
|
+
'created_at': string;
|
|
587
|
+
/**
|
|
588
|
+
*
|
|
589
|
+
* @type {string}
|
|
590
|
+
* @memberof PassData
|
|
591
|
+
*/
|
|
592
|
+
'status': PassDataStatusEnum;
|
|
593
|
+
/**
|
|
594
|
+
*
|
|
595
|
+
* @type {string}
|
|
596
|
+
* @memberof PassData
|
|
597
|
+
*/
|
|
598
|
+
'issuer_id': string;
|
|
599
|
+
/**
|
|
600
|
+
*
|
|
601
|
+
* @type {string}
|
|
602
|
+
* @memberof PassData
|
|
603
|
+
*/
|
|
604
|
+
'visit_schedule_id': string;
|
|
605
|
+
/**
|
|
606
|
+
*
|
|
607
|
+
* @type {string}
|
|
608
|
+
* @memberof PassData
|
|
609
|
+
*/
|
|
610
|
+
'visitor_id': string;
|
|
611
|
+
/**
|
|
612
|
+
*
|
|
613
|
+
* @type {string}
|
|
614
|
+
* @memberof PassData
|
|
615
|
+
*/
|
|
616
|
+
'to': string;
|
|
617
|
+
/**
|
|
618
|
+
*
|
|
619
|
+
* @type {string}
|
|
620
|
+
* @memberof PassData
|
|
621
|
+
*/
|
|
622
|
+
'from': string;
|
|
623
|
+
/**
|
|
624
|
+
*
|
|
625
|
+
* @type {string}
|
|
626
|
+
* @memberof PassData
|
|
627
|
+
*/
|
|
628
|
+
'uid': string | null;
|
|
629
|
+
/**
|
|
630
|
+
*
|
|
631
|
+
* @type {string}
|
|
632
|
+
* @memberof PassData
|
|
633
|
+
*/
|
|
634
|
+
'id': string;
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
export const PassDataStatusEnum = {
|
|
638
|
+
Pending: 'pending',
|
|
639
|
+
Confirmed: 'confirmed'
|
|
640
|
+
} as const;
|
|
641
|
+
|
|
642
|
+
export type PassDataStatusEnum = typeof PassDataStatusEnum[keyof typeof PassDataStatusEnum];
|
|
643
|
+
|
|
300
644
|
/**
|
|
301
645
|
*
|
|
302
646
|
* @export
|
|
@@ -352,462 +696,579 @@ export interface PersonData {
|
|
|
352
696
|
*/
|
|
353
697
|
'status': string;
|
|
354
698
|
}
|
|
355
|
-
/**
|
|
356
|
-
* From https://github.com/sindresorhus/type-fest/ Matches any valid JSON value.
|
|
357
|
-
* @export
|
|
358
|
-
* @interface PrismaJsonValue
|
|
359
|
-
*/
|
|
360
|
-
export interface PrismaJsonValue {
|
|
361
|
-
}
|
|
362
699
|
/**
|
|
363
700
|
*
|
|
364
701
|
* @export
|
|
365
|
-
* @interface
|
|
702
|
+
* @interface ShowPassResponse
|
|
366
703
|
*/
|
|
367
|
-
export interface
|
|
704
|
+
export interface ShowPassResponse {
|
|
705
|
+
/**
|
|
706
|
+
*
|
|
707
|
+
* @type {LocationPasses}
|
|
708
|
+
* @memberof ShowPassResponse
|
|
709
|
+
*/
|
|
710
|
+
'location': LocationPasses;
|
|
711
|
+
/**
|
|
712
|
+
*
|
|
713
|
+
* @type {MembersPasses}
|
|
714
|
+
* @memberof ShowPassResponse
|
|
715
|
+
*/
|
|
716
|
+
'issuer': MembersPasses;
|
|
717
|
+
/**
|
|
718
|
+
*
|
|
719
|
+
* @type {VisitorPasses}
|
|
720
|
+
* @memberof ShowPassResponse
|
|
721
|
+
*/
|
|
722
|
+
'visitor': VisitorPasses;
|
|
723
|
+
/**
|
|
724
|
+
*
|
|
725
|
+
* @type {VisitorSchedulePasses}
|
|
726
|
+
* @memberof ShowPassResponse
|
|
727
|
+
*/
|
|
728
|
+
'visitor_schedule': VisitorSchedulePasses;
|
|
368
729
|
/**
|
|
369
730
|
*
|
|
370
731
|
* @type {string}
|
|
371
|
-
* @memberof
|
|
732
|
+
* @memberof ShowPassResponse
|
|
372
733
|
*/
|
|
373
|
-
'
|
|
734
|
+
'visit_schedule_id': string;
|
|
374
735
|
/**
|
|
375
736
|
*
|
|
376
737
|
* @type {string}
|
|
377
|
-
* @memberof
|
|
738
|
+
* @memberof ShowPassResponse
|
|
378
739
|
*/
|
|
379
|
-
'
|
|
740
|
+
'updated_at': string;
|
|
380
741
|
/**
|
|
381
742
|
*
|
|
382
743
|
* @type {string}
|
|
383
|
-
* @memberof
|
|
744
|
+
* @memberof ShowPassResponse
|
|
384
745
|
*/
|
|
385
|
-
'
|
|
746
|
+
'created_at': string;
|
|
386
747
|
/**
|
|
387
748
|
*
|
|
388
749
|
* @type {string}
|
|
389
|
-
* @memberof
|
|
750
|
+
* @memberof ShowPassResponse
|
|
390
751
|
*/
|
|
391
|
-
'
|
|
752
|
+
'status': ShowPassResponseStatusEnum;
|
|
392
753
|
/**
|
|
393
754
|
*
|
|
394
755
|
* @type {string}
|
|
395
|
-
* @memberof
|
|
756
|
+
* @memberof ShowPassResponse
|
|
396
757
|
*/
|
|
397
|
-
'
|
|
758
|
+
'issuer_id': string;
|
|
398
759
|
/**
|
|
399
760
|
*
|
|
400
761
|
* @type {string}
|
|
401
|
-
* @memberof
|
|
762
|
+
* @memberof ShowPassResponse
|
|
402
763
|
*/
|
|
403
|
-
'
|
|
764
|
+
'visitor_id': string;
|
|
404
765
|
/**
|
|
405
766
|
*
|
|
406
767
|
* @type {string}
|
|
407
|
-
* @memberof
|
|
768
|
+
* @memberof ShowPassResponse
|
|
408
769
|
*/
|
|
409
|
-
'
|
|
770
|
+
'to': string;
|
|
410
771
|
/**
|
|
411
772
|
*
|
|
412
|
-
* @type {
|
|
413
|
-
* @memberof
|
|
773
|
+
* @type {string}
|
|
774
|
+
* @memberof ShowPassResponse
|
|
414
775
|
*/
|
|
415
|
-
'
|
|
416
|
-
}
|
|
417
|
-
/**
|
|
418
|
-
*
|
|
419
|
-
* @export
|
|
420
|
-
* @interface ShowMemberPassVisitor
|
|
421
|
-
*/
|
|
422
|
-
export interface ShowMemberPassVisitor {
|
|
776
|
+
'from': string;
|
|
423
777
|
/**
|
|
424
778
|
*
|
|
425
779
|
* @type {string}
|
|
426
|
-
* @memberof
|
|
780
|
+
* @memberof ShowPassResponse
|
|
427
781
|
*/
|
|
428
|
-
'
|
|
782
|
+
'uid': string | null;
|
|
429
783
|
/**
|
|
430
784
|
*
|
|
431
785
|
* @type {string}
|
|
432
|
-
* @memberof
|
|
786
|
+
* @memberof ShowPassResponse
|
|
433
787
|
*/
|
|
434
|
-
'
|
|
788
|
+
'id': string;
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
export const ShowPassResponseStatusEnum = {
|
|
792
|
+
Pending: 'pending',
|
|
793
|
+
Confirmed: 'confirmed'
|
|
794
|
+
} as const;
|
|
795
|
+
|
|
796
|
+
export type ShowPassResponseStatusEnum = typeof ShowPassResponseStatusEnum[keyof typeof ShowPassResponseStatusEnum];
|
|
797
|
+
|
|
798
|
+
/**
|
|
799
|
+
*
|
|
800
|
+
* @export
|
|
801
|
+
* @interface ShowVisitorResponse
|
|
802
|
+
*/
|
|
803
|
+
export interface ShowVisitorResponse {
|
|
435
804
|
/**
|
|
436
805
|
*
|
|
437
806
|
* @type {string}
|
|
438
|
-
* @memberof
|
|
807
|
+
* @memberof ShowVisitorResponse
|
|
439
808
|
*/
|
|
440
809
|
'id': string;
|
|
441
810
|
/**
|
|
442
811
|
*
|
|
443
812
|
* @type {string}
|
|
444
|
-
* @memberof
|
|
813
|
+
* @memberof ShowVisitorResponse
|
|
445
814
|
*/
|
|
446
815
|
'name': string;
|
|
447
816
|
/**
|
|
448
817
|
*
|
|
449
818
|
* @type {string}
|
|
450
|
-
* @memberof
|
|
819
|
+
* @memberof ShowVisitorResponse
|
|
451
820
|
*/
|
|
452
821
|
'profile_image_url': string | null;
|
|
453
822
|
/**
|
|
454
823
|
*
|
|
455
824
|
* @type {string}
|
|
456
|
-
* @memberof
|
|
825
|
+
* @memberof ShowVisitorResponse
|
|
457
826
|
*/
|
|
458
827
|
'email': string;
|
|
459
828
|
/**
|
|
460
829
|
*
|
|
461
830
|
* @type {string}
|
|
462
|
-
* @memberof
|
|
831
|
+
* @memberof ShowVisitorResponse
|
|
463
832
|
*/
|
|
464
833
|
'company_name': string;
|
|
465
834
|
/**
|
|
466
835
|
*
|
|
467
836
|
* @type {string}
|
|
468
|
-
* @memberof
|
|
837
|
+
* @memberof ShowVisitorResponse
|
|
469
838
|
*/
|
|
470
839
|
'reference': string;
|
|
471
840
|
/**
|
|
472
841
|
*
|
|
473
842
|
* @type {string}
|
|
474
|
-
* @memberof
|
|
843
|
+
* @memberof ShowVisitorResponse
|
|
475
844
|
*/
|
|
476
845
|
'inviter_id': string;
|
|
846
|
+
/**
|
|
847
|
+
*
|
|
848
|
+
* @type {string}
|
|
849
|
+
* @memberof ShowVisitorResponse
|
|
850
|
+
*/
|
|
851
|
+
'created_at': string;
|
|
852
|
+
/**
|
|
853
|
+
*
|
|
854
|
+
* @type {string}
|
|
855
|
+
* @memberof ShowVisitorResponse
|
|
856
|
+
*/
|
|
857
|
+
'updated_at': string;
|
|
477
858
|
}
|
|
478
859
|
/**
|
|
479
860
|
*
|
|
480
861
|
* @export
|
|
481
|
-
* @interface
|
|
862
|
+
* @interface SyncBody
|
|
482
863
|
*/
|
|
483
|
-
export interface
|
|
484
|
-
/**
|
|
485
|
-
*
|
|
486
|
-
* @type {string}
|
|
487
|
-
* @memberof ShowMemberResult
|
|
488
|
-
*/
|
|
489
|
-
'id': string;
|
|
864
|
+
export interface SyncBody {
|
|
490
865
|
/**
|
|
491
866
|
*
|
|
492
867
|
* @type {string}
|
|
493
|
-
* @memberof
|
|
868
|
+
* @memberof SyncBody
|
|
494
869
|
*/
|
|
495
|
-
'
|
|
870
|
+
'name': string;
|
|
871
|
+
}
|
|
872
|
+
/**
|
|
873
|
+
*
|
|
874
|
+
* @export
|
|
875
|
+
* @interface SyncResponse
|
|
876
|
+
*/
|
|
877
|
+
export interface SyncResponse {
|
|
496
878
|
/**
|
|
497
879
|
*
|
|
498
|
-
* @type {
|
|
499
|
-
* @memberof
|
|
880
|
+
* @type {SyncResult}
|
|
881
|
+
* @memberof SyncResponse
|
|
500
882
|
*/
|
|
501
|
-
'
|
|
883
|
+
'data': SyncResult;
|
|
884
|
+
}
|
|
885
|
+
/**
|
|
886
|
+
*
|
|
887
|
+
* @export
|
|
888
|
+
* @interface SyncResult
|
|
889
|
+
*/
|
|
890
|
+
export interface SyncResult {
|
|
502
891
|
/**
|
|
503
892
|
*
|
|
504
|
-
* @type {
|
|
505
|
-
* @memberof
|
|
893
|
+
* @type {SyncResultSync}
|
|
894
|
+
* @memberof SyncResult
|
|
506
895
|
*/
|
|
507
|
-
'
|
|
896
|
+
'sync': SyncResultSync;
|
|
897
|
+
}
|
|
898
|
+
/**
|
|
899
|
+
*
|
|
900
|
+
* @export
|
|
901
|
+
* @interface SyncResultSync
|
|
902
|
+
*/
|
|
903
|
+
export interface SyncResultSync {
|
|
508
904
|
/**
|
|
509
905
|
*
|
|
510
|
-
* @type {Array<
|
|
511
|
-
* @memberof
|
|
906
|
+
* @type {Array<SyncResultSyncJobErrorInner>}
|
|
907
|
+
* @memberof SyncResultSync
|
|
512
908
|
*/
|
|
513
|
-
'
|
|
909
|
+
'jobError': Array<SyncResultSyncJobErrorInner>;
|
|
514
910
|
/**
|
|
515
911
|
*
|
|
516
|
-
* @type {
|
|
517
|
-
* @memberof
|
|
912
|
+
* @type {boolean}
|
|
913
|
+
* @memberof SyncResultSync
|
|
518
914
|
*/
|
|
519
|
-
'
|
|
915
|
+
'result': boolean;
|
|
916
|
+
}
|
|
917
|
+
/**
|
|
918
|
+
*
|
|
919
|
+
* @export
|
|
920
|
+
* @interface SyncResultSyncJobErrorInner
|
|
921
|
+
*/
|
|
922
|
+
export interface SyncResultSyncJobErrorInner {
|
|
520
923
|
/**
|
|
521
924
|
*
|
|
522
925
|
* @type {string}
|
|
523
|
-
* @memberof
|
|
926
|
+
* @memberof SyncResultSyncJobErrorInner
|
|
524
927
|
*/
|
|
525
|
-
'
|
|
928
|
+
'uid_name': string;
|
|
526
929
|
/**
|
|
527
930
|
*
|
|
528
931
|
* @type {string}
|
|
529
|
-
* @memberof
|
|
932
|
+
* @memberof SyncResultSyncJobErrorInner
|
|
530
933
|
*/
|
|
531
|
-
'
|
|
934
|
+
'type': string;
|
|
532
935
|
}
|
|
533
936
|
/**
|
|
534
937
|
*
|
|
535
938
|
* @export
|
|
536
|
-
* @interface
|
|
939
|
+
* @interface TowerData
|
|
537
940
|
*/
|
|
538
|
-
export interface
|
|
941
|
+
export interface TowerData {
|
|
539
942
|
/**
|
|
540
943
|
*
|
|
541
944
|
* @type {string}
|
|
542
|
-
* @memberof
|
|
945
|
+
* @memberof TowerData
|
|
543
946
|
*/
|
|
544
947
|
'id': string;
|
|
545
948
|
/**
|
|
546
949
|
*
|
|
547
950
|
* @type {string}
|
|
548
|
-
* @memberof
|
|
951
|
+
* @memberof TowerData
|
|
549
952
|
*/
|
|
550
953
|
'uid': string;
|
|
551
954
|
/**
|
|
552
955
|
*
|
|
553
956
|
* @type {string}
|
|
554
|
-
* @memberof
|
|
957
|
+
* @memberof TowerData
|
|
555
958
|
*/
|
|
556
959
|
'name': string;
|
|
557
960
|
/**
|
|
558
961
|
*
|
|
559
|
-
* @type {
|
|
560
|
-
* @memberof
|
|
962
|
+
* @type {JsonValue}
|
|
963
|
+
* @memberof TowerData
|
|
561
964
|
*/
|
|
562
|
-
'display_name':
|
|
965
|
+
'display_name': JsonValue | null;
|
|
563
966
|
/**
|
|
564
967
|
*
|
|
565
968
|
* @type {string}
|
|
566
|
-
* @memberof
|
|
969
|
+
* @memberof TowerData
|
|
567
970
|
*/
|
|
568
971
|
'project_id': string;
|
|
569
|
-
/**
|
|
570
|
-
*
|
|
571
|
-
* @type {Array<ShowMemberTowerFloor>}
|
|
572
|
-
* @memberof ShowMemberTower
|
|
573
|
-
*/
|
|
574
|
-
'floors': Array<ShowMemberTowerFloor>;
|
|
575
972
|
/**
|
|
576
973
|
*
|
|
577
974
|
* @type {string}
|
|
578
|
-
* @memberof
|
|
975
|
+
* @memberof TowerData
|
|
579
976
|
*/
|
|
580
977
|
'created_at': string;
|
|
581
978
|
/**
|
|
582
979
|
*
|
|
583
980
|
* @type {string}
|
|
584
|
-
* @memberof
|
|
981
|
+
* @memberof TowerData
|
|
585
982
|
*/
|
|
586
983
|
'updated_at': string;
|
|
984
|
+
/**
|
|
985
|
+
*
|
|
986
|
+
* @type {Array<FloorData>}
|
|
987
|
+
* @memberof TowerData
|
|
988
|
+
*/
|
|
989
|
+
'floors': Array<FloorData>;
|
|
587
990
|
}
|
|
588
991
|
/**
|
|
589
992
|
*
|
|
590
993
|
* @export
|
|
591
|
-
* @interface
|
|
994
|
+
* @interface TowerDataPasses
|
|
592
995
|
*/
|
|
593
|
-
export interface
|
|
996
|
+
export interface TowerDataPasses {
|
|
594
997
|
/**
|
|
595
998
|
*
|
|
596
999
|
* @type {string}
|
|
597
|
-
* @memberof
|
|
1000
|
+
* @memberof TowerDataPasses
|
|
598
1001
|
*/
|
|
599
1002
|
'id': string;
|
|
600
1003
|
/**
|
|
601
1004
|
*
|
|
602
1005
|
* @type {string}
|
|
603
|
-
* @memberof
|
|
1006
|
+
* @memberof TowerDataPasses
|
|
604
1007
|
*/
|
|
605
1008
|
'uid': string;
|
|
606
1009
|
/**
|
|
607
1010
|
*
|
|
608
1011
|
* @type {string}
|
|
609
|
-
* @memberof
|
|
1012
|
+
* @memberof TowerDataPasses
|
|
610
1013
|
*/
|
|
611
1014
|
'name': string;
|
|
612
1015
|
/**
|
|
613
1016
|
*
|
|
614
|
-
* @type {
|
|
615
|
-
* @memberof
|
|
1017
|
+
* @type {JsonValue}
|
|
1018
|
+
* @memberof TowerDataPasses
|
|
616
1019
|
*/
|
|
617
|
-
'display_name':
|
|
1020
|
+
'display_name': JsonValue | null;
|
|
618
1021
|
/**
|
|
619
1022
|
*
|
|
620
1023
|
* @type {string}
|
|
621
|
-
* @memberof
|
|
1024
|
+
* @memberof TowerDataPasses
|
|
622
1025
|
*/
|
|
623
|
-
'
|
|
1026
|
+
'project_id': string;
|
|
624
1027
|
/**
|
|
625
1028
|
*
|
|
626
1029
|
* @type {string}
|
|
627
|
-
* @memberof
|
|
1030
|
+
* @memberof TowerDataPasses
|
|
628
1031
|
*/
|
|
629
1032
|
'created_at': string;
|
|
630
1033
|
/**
|
|
631
1034
|
*
|
|
632
1035
|
* @type {string}
|
|
633
|
-
* @memberof
|
|
1036
|
+
* @memberof TowerDataPasses
|
|
634
1037
|
*/
|
|
635
1038
|
'updated_at': string;
|
|
636
1039
|
}
|
|
637
1040
|
/**
|
|
638
1041
|
*
|
|
639
1042
|
* @export
|
|
640
|
-
* @interface
|
|
1043
|
+
* @interface VisitorData
|
|
641
1044
|
*/
|
|
642
|
-
export interface
|
|
1045
|
+
export interface VisitorData {
|
|
643
1046
|
/**
|
|
644
1047
|
*
|
|
645
1048
|
* @type {string}
|
|
646
|
-
* @memberof
|
|
1049
|
+
* @memberof VisitorData
|
|
1050
|
+
*/
|
|
1051
|
+
'updated_at': string;
|
|
1052
|
+
/**
|
|
1053
|
+
*
|
|
1054
|
+
* @type {string}
|
|
1055
|
+
* @memberof VisitorData
|
|
1056
|
+
*/
|
|
1057
|
+
'created_at': string;
|
|
1058
|
+
/**
|
|
1059
|
+
*
|
|
1060
|
+
* @type {string}
|
|
1061
|
+
* @memberof VisitorData
|
|
1062
|
+
*/
|
|
1063
|
+
'inviter_id': string;
|
|
1064
|
+
/**
|
|
1065
|
+
*
|
|
1066
|
+
* @type {string}
|
|
1067
|
+
* @memberof VisitorData
|
|
1068
|
+
*/
|
|
1069
|
+
'reference': string;
|
|
1070
|
+
/**
|
|
1071
|
+
*
|
|
1072
|
+
* @type {string}
|
|
1073
|
+
* @memberof VisitorData
|
|
1074
|
+
*/
|
|
1075
|
+
'company_name': string;
|
|
1076
|
+
/**
|
|
1077
|
+
*
|
|
1078
|
+
* @type {string}
|
|
1079
|
+
* @memberof VisitorData
|
|
1080
|
+
*/
|
|
1081
|
+
'email': string;
|
|
1082
|
+
/**
|
|
1083
|
+
*
|
|
1084
|
+
* @type {string}
|
|
1085
|
+
* @memberof VisitorData
|
|
1086
|
+
*/
|
|
1087
|
+
'profile_image_url': string | null;
|
|
1088
|
+
/**
|
|
1089
|
+
*
|
|
1090
|
+
* @type {string}
|
|
1091
|
+
* @memberof VisitorData
|
|
1092
|
+
*/
|
|
1093
|
+
'name': string;
|
|
1094
|
+
/**
|
|
1095
|
+
*
|
|
1096
|
+
* @type {string}
|
|
1097
|
+
* @memberof VisitorData
|
|
647
1098
|
*/
|
|
648
1099
|
'id': string;
|
|
1100
|
+
}
|
|
1101
|
+
/**
|
|
1102
|
+
*
|
|
1103
|
+
* @export
|
|
1104
|
+
* @interface VisitorPasses
|
|
1105
|
+
*/
|
|
1106
|
+
export interface VisitorPasses {
|
|
649
1107
|
/**
|
|
650
1108
|
*
|
|
651
1109
|
* @type {string}
|
|
652
|
-
* @memberof
|
|
1110
|
+
* @memberof VisitorPasses
|
|
653
1111
|
*/
|
|
654
1112
|
'name': string;
|
|
655
1113
|
/**
|
|
656
1114
|
*
|
|
657
1115
|
* @type {string}
|
|
658
|
-
* @memberof
|
|
1116
|
+
* @memberof VisitorPasses
|
|
659
1117
|
*/
|
|
660
1118
|
'profile_image_url': string | null;
|
|
661
1119
|
/**
|
|
662
1120
|
*
|
|
663
1121
|
* @type {string}
|
|
664
|
-
* @memberof
|
|
1122
|
+
* @memberof VisitorPasses
|
|
665
1123
|
*/
|
|
666
1124
|
'email': string;
|
|
667
1125
|
/**
|
|
668
1126
|
*
|
|
669
1127
|
* @type {string}
|
|
670
|
-
* @memberof
|
|
1128
|
+
* @memberof VisitorPasses
|
|
671
1129
|
*/
|
|
672
1130
|
'company_name': string;
|
|
673
1131
|
/**
|
|
674
1132
|
*
|
|
675
1133
|
* @type {string}
|
|
676
|
-
* @memberof
|
|
1134
|
+
* @memberof VisitorPasses
|
|
677
1135
|
*/
|
|
678
1136
|
'reference': string;
|
|
679
1137
|
/**
|
|
680
1138
|
*
|
|
681
1139
|
* @type {string}
|
|
682
|
-
* @memberof
|
|
1140
|
+
* @memberof VisitorPasses
|
|
683
1141
|
*/
|
|
684
1142
|
'inviter_id': string;
|
|
685
1143
|
/**
|
|
686
1144
|
*
|
|
687
1145
|
* @type {string}
|
|
688
|
-
* @memberof
|
|
1146
|
+
* @memberof VisitorPasses
|
|
689
1147
|
*/
|
|
690
1148
|
'created_at': string;
|
|
691
1149
|
/**
|
|
692
1150
|
*
|
|
693
1151
|
* @type {string}
|
|
694
|
-
* @memberof
|
|
1152
|
+
* @memberof VisitorPasses
|
|
695
1153
|
*/
|
|
696
1154
|
'updated_at': string;
|
|
697
1155
|
}
|
|
698
1156
|
/**
|
|
699
1157
|
*
|
|
700
1158
|
* @export
|
|
701
|
-
* @interface
|
|
1159
|
+
* @interface VisitorSchedule
|
|
702
1160
|
*/
|
|
703
|
-
export interface
|
|
1161
|
+
export interface VisitorSchedule {
|
|
704
1162
|
/**
|
|
705
1163
|
*
|
|
706
1164
|
* @type {string}
|
|
707
|
-
* @memberof
|
|
1165
|
+
* @memberof VisitorSchedule
|
|
708
1166
|
*/
|
|
709
|
-
'
|
|
710
|
-
}
|
|
711
|
-
/**
|
|
712
|
-
*
|
|
713
|
-
* @export
|
|
714
|
-
* @interface SyncResponse
|
|
715
|
-
*/
|
|
716
|
-
export interface SyncResponse {
|
|
1167
|
+
'tower_id': string;
|
|
717
1168
|
/**
|
|
718
1169
|
*
|
|
719
|
-
* @type {
|
|
720
|
-
* @memberof
|
|
1170
|
+
* @type {string}
|
|
1171
|
+
* @memberof VisitorSchedule
|
|
721
1172
|
*/
|
|
722
|
-
'
|
|
723
|
-
}
|
|
724
|
-
/**
|
|
725
|
-
*
|
|
726
|
-
* @export
|
|
727
|
-
* @interface SyncResult
|
|
728
|
-
*/
|
|
729
|
-
export interface SyncResult {
|
|
1173
|
+
'floor_id': string;
|
|
730
1174
|
/**
|
|
731
1175
|
*
|
|
732
|
-
* @type {
|
|
733
|
-
* @memberof
|
|
1176
|
+
* @type {FindMemberResultCreatedAt}
|
|
1177
|
+
* @memberof VisitorSchedule
|
|
734
1178
|
*/
|
|
735
|
-
'
|
|
736
|
-
}
|
|
737
|
-
/**
|
|
738
|
-
*
|
|
739
|
-
* @export
|
|
740
|
-
* @interface SyncResultSync
|
|
741
|
-
*/
|
|
742
|
-
export interface SyncResultSync {
|
|
1179
|
+
'from': FindMemberResultCreatedAt;
|
|
743
1180
|
/**
|
|
744
1181
|
*
|
|
745
|
-
* @type {
|
|
746
|
-
* @memberof
|
|
1182
|
+
* @type {FindMemberResultCreatedAt}
|
|
1183
|
+
* @memberof VisitorSchedule
|
|
747
1184
|
*/
|
|
748
|
-
'
|
|
1185
|
+
'to': FindMemberResultCreatedAt;
|
|
749
1186
|
/**
|
|
750
1187
|
*
|
|
751
|
-
* @type {
|
|
752
|
-
* @memberof
|
|
1188
|
+
* @type {object}
|
|
1189
|
+
* @memberof VisitorSchedule
|
|
753
1190
|
*/
|
|
754
|
-
'
|
|
1191
|
+
'repetition'?: object;
|
|
755
1192
|
}
|
|
756
1193
|
/**
|
|
757
1194
|
*
|
|
758
1195
|
* @export
|
|
759
|
-
* @interface
|
|
1196
|
+
* @interface VisitorSchedulePasses
|
|
760
1197
|
*/
|
|
761
|
-
export interface
|
|
1198
|
+
export interface VisitorSchedulePasses {
|
|
762
1199
|
/**
|
|
763
1200
|
*
|
|
764
1201
|
* @type {string}
|
|
765
|
-
* @memberof
|
|
1202
|
+
* @memberof VisitorSchedulePasses
|
|
766
1203
|
*/
|
|
767
|
-
'
|
|
1204
|
+
'tower_id': string;
|
|
768
1205
|
/**
|
|
769
1206
|
*
|
|
770
1207
|
* @type {string}
|
|
771
|
-
* @memberof
|
|
1208
|
+
* @memberof VisitorSchedulePasses
|
|
772
1209
|
*/
|
|
773
|
-
'
|
|
1210
|
+
'floor_id': string;
|
|
1211
|
+
/**
|
|
1212
|
+
*
|
|
1213
|
+
* @type {string}
|
|
1214
|
+
* @memberof VisitorSchedulePasses
|
|
1215
|
+
*/
|
|
1216
|
+
'from': string;
|
|
1217
|
+
/**
|
|
1218
|
+
*
|
|
1219
|
+
* @type {string}
|
|
1220
|
+
* @memberof VisitorSchedulePasses
|
|
1221
|
+
*/
|
|
1222
|
+
'to': string;
|
|
1223
|
+
/**
|
|
1224
|
+
*
|
|
1225
|
+
* @type {object}
|
|
1226
|
+
* @memberof VisitorSchedulePasses
|
|
1227
|
+
*/
|
|
1228
|
+
'repetition'?: object;
|
|
1229
|
+
/**
|
|
1230
|
+
*
|
|
1231
|
+
* @type {string}
|
|
1232
|
+
* @memberof VisitorSchedulePasses
|
|
1233
|
+
*/
|
|
1234
|
+
'created_at': string;
|
|
1235
|
+
/**
|
|
1236
|
+
*
|
|
1237
|
+
* @type {string}
|
|
1238
|
+
* @memberof VisitorSchedulePasses
|
|
1239
|
+
*/
|
|
1240
|
+
'updated_at': string;
|
|
774
1241
|
}
|
|
775
1242
|
/**
|
|
776
1243
|
*
|
|
777
1244
|
* @export
|
|
778
|
-
* @interface
|
|
1245
|
+
* @interface WebhookCreateBody
|
|
779
1246
|
*/
|
|
780
|
-
export interface
|
|
1247
|
+
export interface WebhookCreateBody {
|
|
781
1248
|
/**
|
|
782
1249
|
*
|
|
783
1250
|
* @type {string}
|
|
784
|
-
* @memberof
|
|
1251
|
+
* @memberof WebhookCreateBody
|
|
785
1252
|
*/
|
|
786
|
-
'
|
|
1253
|
+
'personID': string;
|
|
787
1254
|
/**
|
|
788
1255
|
*
|
|
789
1256
|
* @type {string}
|
|
790
|
-
* @memberof
|
|
791
|
-
*/
|
|
792
|
-
'floor_id': string;
|
|
793
|
-
/**
|
|
794
|
-
*
|
|
795
|
-
* @type {FindMemberResultCreatedAt}
|
|
796
|
-
* @memberof VisitorSchedule
|
|
1257
|
+
* @memberof WebhookCreateBody
|
|
797
1258
|
*/
|
|
798
|
-
'
|
|
1259
|
+
'liftName': string;
|
|
799
1260
|
/**
|
|
800
1261
|
*
|
|
801
|
-
* @type {
|
|
802
|
-
* @memberof
|
|
1262
|
+
* @type {string}
|
|
1263
|
+
* @memberof WebhookCreateBody
|
|
803
1264
|
*/
|
|
804
|
-
'
|
|
1265
|
+
'floorName': string;
|
|
805
1266
|
/**
|
|
806
1267
|
*
|
|
807
|
-
* @type {
|
|
808
|
-
* @memberof
|
|
1268
|
+
* @type {number}
|
|
1269
|
+
* @memberof WebhookCreateBody
|
|
809
1270
|
*/
|
|
810
|
-
'
|
|
1271
|
+
'floorID': number;
|
|
811
1272
|
}
|
|
812
1273
|
/**
|
|
813
1274
|
*
|
|
@@ -894,7 +1355,7 @@ export interface WrappedResponseFindMemberResultArrayOrNull {
|
|
|
894
1355
|
* @type {WrappedResponseFindMemberResultArrayOrNullData}
|
|
895
1356
|
* @memberof WrappedResponseFindMemberResultArrayOrNull
|
|
896
1357
|
*/
|
|
897
|
-
'data': WrappedResponseFindMemberResultArrayOrNullData;
|
|
1358
|
+
'data': WrappedResponseFindMemberResultArrayOrNullData | null;
|
|
898
1359
|
}
|
|
899
1360
|
/**
|
|
900
1361
|
*
|
|
@@ -906,90 +1367,103 @@ export interface WrappedResponseFindMemberResultArrayOrNullData {
|
|
|
906
1367
|
/**
|
|
907
1368
|
*
|
|
908
1369
|
* @export
|
|
909
|
-
* @interface
|
|
910
|
-
*/
|
|
911
|
-
export interface WrappedResponseNull {
|
|
912
|
-
/**
|
|
913
|
-
*
|
|
914
|
-
* @type {Array<number>}
|
|
915
|
-
* @memberof WrappedResponseNull
|
|
916
|
-
*/
|
|
917
|
-
'data': Array<WrappedResponseNullDataEnum>;
|
|
918
|
-
}
|
|
919
|
-
|
|
920
|
-
export const WrappedResponseNullDataEnum = {
|
|
921
|
-
NUMBER_null: null
|
|
922
|
-
} as const;
|
|
923
|
-
|
|
924
|
-
export type WrappedResponseNullDataEnum = typeof WrappedResponseNullDataEnum[keyof typeof WrappedResponseNullDataEnum];
|
|
925
|
-
|
|
926
|
-
/**
|
|
927
|
-
*
|
|
928
|
-
* @export
|
|
929
|
-
* @interface WrappedResponseShowMemberResult
|
|
1370
|
+
* @interface WrappedResponseMembersShowResponse
|
|
930
1371
|
*/
|
|
931
|
-
export interface
|
|
1372
|
+
export interface WrappedResponseMembersShowResponse {
|
|
932
1373
|
/**
|
|
933
1374
|
*
|
|
934
|
-
* @type {
|
|
935
|
-
* @memberof
|
|
1375
|
+
* @type {WrappedResponseMembersShowResponseData}
|
|
1376
|
+
* @memberof WrappedResponseMembersShowResponse
|
|
936
1377
|
*/
|
|
937
|
-
'data':
|
|
1378
|
+
'data': WrappedResponseMembersShowResponseData | null;
|
|
938
1379
|
}
|
|
939
1380
|
/**
|
|
940
1381
|
*
|
|
941
1382
|
* @export
|
|
942
|
-
* @interface
|
|
1383
|
+
* @interface WrappedResponseMembersShowResponseData
|
|
943
1384
|
*/
|
|
944
|
-
export interface
|
|
1385
|
+
export interface WrappedResponseMembersShowResponseData {
|
|
945
1386
|
/**
|
|
946
1387
|
*
|
|
947
1388
|
* @type {string}
|
|
948
|
-
* @memberof
|
|
1389
|
+
* @memberof WrappedResponseMembersShowResponseData
|
|
949
1390
|
*/
|
|
950
1391
|
'id': string;
|
|
951
1392
|
/**
|
|
952
1393
|
*
|
|
953
1394
|
* @type {string}
|
|
954
|
-
* @memberof
|
|
1395
|
+
* @memberof WrappedResponseMembersShowResponseData
|
|
955
1396
|
*/
|
|
956
1397
|
'uid': string;
|
|
957
1398
|
/**
|
|
958
1399
|
*
|
|
959
|
-
* @type {
|
|
960
|
-
* @memberof
|
|
1400
|
+
* @type {JsonValue}
|
|
1401
|
+
* @memberof WrappedResponseMembersShowResponseData
|
|
961
1402
|
*/
|
|
962
|
-
'metadata':
|
|
1403
|
+
'metadata': JsonValue | null;
|
|
963
1404
|
/**
|
|
964
1405
|
*
|
|
965
1406
|
* @type {string}
|
|
966
|
-
* @memberof
|
|
1407
|
+
* @memberof WrappedResponseMembersShowResponseData
|
|
967
1408
|
*/
|
|
968
1409
|
'account_id': string | null;
|
|
969
1410
|
/**
|
|
970
1411
|
*
|
|
971
|
-
* @type {
|
|
972
|
-
* @memberof
|
|
1412
|
+
* @type {string}
|
|
1413
|
+
* @memberof WrappedResponseMembersShowResponseData
|
|
973
1414
|
*/
|
|
974
|
-
'
|
|
1415
|
+
'created_at': string;
|
|
975
1416
|
/**
|
|
976
1417
|
*
|
|
977
|
-
* @type {
|
|
978
|
-
* @memberof
|
|
1418
|
+
* @type {string}
|
|
1419
|
+
* @memberof WrappedResponseMembersShowResponseData
|
|
979
1420
|
*/
|
|
980
|
-
'
|
|
1421
|
+
'updated_at': string;
|
|
981
1422
|
/**
|
|
982
1423
|
*
|
|
983
|
-
* @type {
|
|
984
|
-
* @memberof
|
|
1424
|
+
* @type {Array<PassData>}
|
|
1425
|
+
* @memberof WrappedResponseMembersShowResponseData
|
|
985
1426
|
*/
|
|
986
|
-
'
|
|
1427
|
+
'passes': Array<PassData>;
|
|
987
1428
|
/**
|
|
988
1429
|
*
|
|
989
|
-
* @type {
|
|
990
|
-
* @memberof
|
|
1430
|
+
* @type {Array<TowerData>}
|
|
1431
|
+
* @memberof WrappedResponseMembersShowResponseData
|
|
991
1432
|
*/
|
|
992
|
-
'
|
|
1433
|
+
'towers': Array<TowerData>;
|
|
1434
|
+
}
|
|
1435
|
+
/**
|
|
1436
|
+
*
|
|
1437
|
+
* @export
|
|
1438
|
+
* @interface WrappedResponseNull
|
|
1439
|
+
*/
|
|
1440
|
+
export interface WrappedResponseNull {
|
|
1441
|
+
/**
|
|
1442
|
+
*
|
|
1443
|
+
* @type {Array<number>}
|
|
1444
|
+
* @memberof WrappedResponseNull
|
|
1445
|
+
*/
|
|
1446
|
+
'data': Array<WrappedResponseNullDataEnum>;
|
|
1447
|
+
}
|
|
1448
|
+
|
|
1449
|
+
export const WrappedResponseNullDataEnum = {
|
|
1450
|
+
NUMBER_null: null
|
|
1451
|
+
} as const;
|
|
1452
|
+
|
|
1453
|
+
export type WrappedResponseNullDataEnum = typeof WrappedResponseNullDataEnum[keyof typeof WrappedResponseNullDataEnum];
|
|
1454
|
+
|
|
1455
|
+
/**
|
|
1456
|
+
*
|
|
1457
|
+
* @export
|
|
1458
|
+
* @interface WrappedResponseShowPassResponseOrNull
|
|
1459
|
+
*/
|
|
1460
|
+
export interface WrappedResponseShowPassResponseOrNull {
|
|
1461
|
+
/**
|
|
1462
|
+
*
|
|
1463
|
+
* @type {Array<ShowPassResponse>}
|
|
1464
|
+
* @memberof WrappedResponseShowPassResponseOrNull
|
|
1465
|
+
*/
|
|
1466
|
+
'data': Array<ShowPassResponse> | null;
|
|
993
1467
|
}
|
|
994
1468
|
/**
|
|
995
1469
|
*
|
|
@@ -1074,13 +1548,13 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
1074
1548
|
return {
|
|
1075
1549
|
/**
|
|
1076
1550
|
*
|
|
1077
|
-
* @param {
|
|
1551
|
+
* @param {WebhookCreateBody} webhookCreateBody
|
|
1078
1552
|
* @param {*} [options] Override http request option.
|
|
1079
1553
|
* @throws {RequiredError}
|
|
1080
1554
|
*/
|
|
1081
|
-
create: async (
|
|
1082
|
-
// verify required parameter '
|
|
1083
|
-
assertParamExists('create', '
|
|
1555
|
+
create: async (webhookCreateBody: WebhookCreateBody, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
1556
|
+
// verify required parameter 'webhookCreateBody' is not null or undefined
|
|
1557
|
+
assertParamExists('create', 'webhookCreateBody', webhookCreateBody)
|
|
1084
1558
|
const localVarPath = `/integrations/fs/webhook`;
|
|
1085
1559
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1086
1560
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -1100,7 +1574,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
1100
1574
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1101
1575
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1102
1576
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
1103
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
1577
|
+
localVarRequestOptions.data = serializeDataIfNeeded(webhookCreateBody, localVarRequestOptions, configuration)
|
|
1104
1578
|
|
|
1105
1579
|
return {
|
|
1106
1580
|
url: toPathString(localVarUrlObj),
|
|
@@ -1177,15 +1651,51 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
1177
1651
|
options: localVarRequestOptions,
|
|
1178
1652
|
};
|
|
1179
1653
|
},
|
|
1654
|
+
/**
|
|
1655
|
+
*
|
|
1656
|
+
* @param {string} identifier
|
|
1657
|
+
* @param {*} [options] Override http request option.
|
|
1658
|
+
* @throws {RequiredError}
|
|
1659
|
+
*/
|
|
1660
|
+
membersIndex: async (identifier: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
1661
|
+
// verify required parameter 'identifier' is not null or undefined
|
|
1662
|
+
assertParamExists('membersIndex', 'identifier', identifier)
|
|
1663
|
+
const localVarPath = `/members`;
|
|
1664
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1665
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1666
|
+
let baseOptions;
|
|
1667
|
+
if (configuration) {
|
|
1668
|
+
baseOptions = configuration.baseOptions;
|
|
1669
|
+
}
|
|
1670
|
+
|
|
1671
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
1672
|
+
const localVarHeaderParameter = {} as any;
|
|
1673
|
+
const localVarQueryParameter = {} as any;
|
|
1674
|
+
|
|
1675
|
+
if (identifier !== undefined) {
|
|
1676
|
+
localVarQueryParameter['identifier'] = identifier;
|
|
1677
|
+
}
|
|
1678
|
+
|
|
1679
|
+
|
|
1680
|
+
|
|
1681
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1682
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1683
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
1684
|
+
|
|
1685
|
+
return {
|
|
1686
|
+
url: toPathString(localVarUrlObj),
|
|
1687
|
+
options: localVarRequestOptions,
|
|
1688
|
+
};
|
|
1689
|
+
},
|
|
1180
1690
|
/**
|
|
1181
1691
|
*
|
|
1182
1692
|
* @param {string} id
|
|
1183
1693
|
* @param {*} [options] Override http request option.
|
|
1184
1694
|
* @throws {RequiredError}
|
|
1185
1695
|
*/
|
|
1186
|
-
|
|
1696
|
+
membersShow: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
1187
1697
|
// verify required parameter 'id' is not null or undefined
|
|
1188
|
-
assertParamExists('
|
|
1698
|
+
assertParamExists('membersShow', 'id', id)
|
|
1189
1699
|
const localVarPath = `/members/{id}`
|
|
1190
1700
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
1191
1701
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -1212,14 +1722,15 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
1212
1722
|
},
|
|
1213
1723
|
/**
|
|
1214
1724
|
*
|
|
1215
|
-
* @param {string}
|
|
1725
|
+
* @param {string} id
|
|
1216
1726
|
* @param {*} [options] Override http request option.
|
|
1217
1727
|
* @throws {RequiredError}
|
|
1218
1728
|
*/
|
|
1219
|
-
|
|
1220
|
-
// verify required parameter '
|
|
1221
|
-
assertParamExists('
|
|
1222
|
-
const localVarPath = `/
|
|
1729
|
+
passesShow: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
1730
|
+
// verify required parameter 'id' is not null or undefined
|
|
1731
|
+
assertParamExists('passesShow', 'id', id)
|
|
1732
|
+
const localVarPath = `/passes/{id}`
|
|
1733
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
1223
1734
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1224
1735
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1225
1736
|
let baseOptions;
|
|
@@ -1231,10 +1742,6 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
1231
1742
|
const localVarHeaderParameter = {} as any;
|
|
1232
1743
|
const localVarQueryParameter = {} as any;
|
|
1233
1744
|
|
|
1234
|
-
if (identifier !== undefined) {
|
|
1235
|
-
localVarQueryParameter['identifier'] = identifier;
|
|
1236
|
-
}
|
|
1237
|
-
|
|
1238
1745
|
|
|
1239
1746
|
|
|
1240
1747
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -1394,12 +1901,12 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
1394
1901
|
return {
|
|
1395
1902
|
/**
|
|
1396
1903
|
*
|
|
1397
|
-
* @param {
|
|
1904
|
+
* @param {WebhookCreateBody} webhookCreateBody
|
|
1398
1905
|
* @param {*} [options] Override http request option.
|
|
1399
1906
|
* @throws {RequiredError}
|
|
1400
1907
|
*/
|
|
1401
|
-
async create(
|
|
1402
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.create(
|
|
1908
|
+
async create(webhookCreateBody: WebhookCreateBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
1909
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.create(webhookCreateBody, options);
|
|
1403
1910
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1404
1911
|
},
|
|
1405
1912
|
/**
|
|
@@ -1422,24 +1929,34 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
1422
1929
|
const localVarAxiosArgs = await localVarAxiosParamCreator.integrationsFsMembersDelete(destroyFSMembers, options);
|
|
1423
1930
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1424
1931
|
},
|
|
1932
|
+
/**
|
|
1933
|
+
*
|
|
1934
|
+
* @param {string} identifier
|
|
1935
|
+
* @param {*} [options] Override http request option.
|
|
1936
|
+
* @throws {RequiredError}
|
|
1937
|
+
*/
|
|
1938
|
+
async membersIndex(identifier: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseFindMemberResultArrayOrNull>> {
|
|
1939
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.membersIndex(identifier, options);
|
|
1940
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1941
|
+
},
|
|
1425
1942
|
/**
|
|
1426
1943
|
*
|
|
1427
1944
|
* @param {string} id
|
|
1428
1945
|
* @param {*} [options] Override http request option.
|
|
1429
1946
|
* @throws {RequiredError}
|
|
1430
1947
|
*/
|
|
1431
|
-
async
|
|
1432
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
1948
|
+
async membersShow(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseMembersShowResponse>> {
|
|
1949
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.membersShow(id, options);
|
|
1433
1950
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1434
1951
|
},
|
|
1435
1952
|
/**
|
|
1436
1953
|
*
|
|
1437
|
-
* @param {string}
|
|
1954
|
+
* @param {string} id
|
|
1438
1955
|
* @param {*} [options] Override http request option.
|
|
1439
1956
|
* @throws {RequiredError}
|
|
1440
1957
|
*/
|
|
1441
|
-
async
|
|
1442
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
1958
|
+
async passesShow(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseShowPassResponseOrNull>> {
|
|
1959
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.passesShow(id, options);
|
|
1443
1960
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1444
1961
|
},
|
|
1445
1962
|
/**
|
|
@@ -1494,12 +2011,12 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
1494
2011
|
return {
|
|
1495
2012
|
/**
|
|
1496
2013
|
*
|
|
1497
|
-
* @param {
|
|
2014
|
+
* @param {WebhookCreateBody} webhookCreateBody
|
|
1498
2015
|
* @param {*} [options] Override http request option.
|
|
1499
2016
|
* @throws {RequiredError}
|
|
1500
2017
|
*/
|
|
1501
|
-
create(
|
|
1502
|
-
return localVarFp.create(
|
|
2018
|
+
create(webhookCreateBody: WebhookCreateBody, options?: any): AxiosPromise<void> {
|
|
2019
|
+
return localVarFp.create(webhookCreateBody, options).then((request) => request(axios, basePath));
|
|
1503
2020
|
},
|
|
1504
2021
|
/**
|
|
1505
2022
|
*
|
|
@@ -1519,23 +2036,32 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
1519
2036
|
integrationsFsMembersDelete(destroyFSMembers: DestroyFSMembers, options?: any): AxiosPromise<DestroyMembersResponse> {
|
|
1520
2037
|
return localVarFp.integrationsFsMembersDelete(destroyFSMembers, options).then((request) => request(axios, basePath));
|
|
1521
2038
|
},
|
|
2039
|
+
/**
|
|
2040
|
+
*
|
|
2041
|
+
* @param {string} identifier
|
|
2042
|
+
* @param {*} [options] Override http request option.
|
|
2043
|
+
* @throws {RequiredError}
|
|
2044
|
+
*/
|
|
2045
|
+
membersIndex(identifier: string, options?: any): AxiosPromise<WrappedResponseFindMemberResultArrayOrNull> {
|
|
2046
|
+
return localVarFp.membersIndex(identifier, options).then((request) => request(axios, basePath));
|
|
2047
|
+
},
|
|
1522
2048
|
/**
|
|
1523
2049
|
*
|
|
1524
2050
|
* @param {string} id
|
|
1525
2051
|
* @param {*} [options] Override http request option.
|
|
1526
2052
|
* @throws {RequiredError}
|
|
1527
2053
|
*/
|
|
1528
|
-
|
|
1529
|
-
return localVarFp.
|
|
2054
|
+
membersShow(id: string, options?: any): AxiosPromise<WrappedResponseMembersShowResponse> {
|
|
2055
|
+
return localVarFp.membersShow(id, options).then((request) => request(axios, basePath));
|
|
1530
2056
|
},
|
|
1531
2057
|
/**
|
|
1532
2058
|
*
|
|
1533
|
-
* @param {string}
|
|
2059
|
+
* @param {string} id
|
|
1534
2060
|
* @param {*} [options] Override http request option.
|
|
1535
2061
|
* @throws {RequiredError}
|
|
1536
2062
|
*/
|
|
1537
|
-
|
|
1538
|
-
return localVarFp.
|
|
2063
|
+
passesShow(id: string, options?: any): AxiosPromise<WrappedResponseShowPassResponseOrNull> {
|
|
2064
|
+
return localVarFp.passesShow(id, options).then((request) => request(axios, basePath));
|
|
1539
2065
|
},
|
|
1540
2066
|
/**
|
|
1541
2067
|
*
|
|
@@ -1585,13 +2111,13 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
1585
2111
|
export class DefaultApi extends BaseAPI {
|
|
1586
2112
|
/**
|
|
1587
2113
|
*
|
|
1588
|
-
* @param {
|
|
2114
|
+
* @param {WebhookCreateBody} webhookCreateBody
|
|
1589
2115
|
* @param {*} [options] Override http request option.
|
|
1590
2116
|
* @throws {RequiredError}
|
|
1591
2117
|
* @memberof DefaultApi
|
|
1592
2118
|
*/
|
|
1593
|
-
public create(
|
|
1594
|
-
return DefaultApiFp(this.configuration).create(
|
|
2119
|
+
public create(webhookCreateBody: WebhookCreateBody, options?: AxiosRequestConfig) {
|
|
2120
|
+
return DefaultApiFp(this.configuration).create(webhookCreateBody, options).then((request) => request(this.axios, this.basePath));
|
|
1595
2121
|
}
|
|
1596
2122
|
|
|
1597
2123
|
/**
|
|
@@ -1616,6 +2142,17 @@ export class DefaultApi extends BaseAPI {
|
|
|
1616
2142
|
return DefaultApiFp(this.configuration).integrationsFsMembersDelete(destroyFSMembers, options).then((request) => request(this.axios, this.basePath));
|
|
1617
2143
|
}
|
|
1618
2144
|
|
|
2145
|
+
/**
|
|
2146
|
+
*
|
|
2147
|
+
* @param {string} identifier
|
|
2148
|
+
* @param {*} [options] Override http request option.
|
|
2149
|
+
* @throws {RequiredError}
|
|
2150
|
+
* @memberof DefaultApi
|
|
2151
|
+
*/
|
|
2152
|
+
public membersIndex(identifier: string, options?: AxiosRequestConfig) {
|
|
2153
|
+
return DefaultApiFp(this.configuration).membersIndex(identifier, options).then((request) => request(this.axios, this.basePath));
|
|
2154
|
+
}
|
|
2155
|
+
|
|
1619
2156
|
/**
|
|
1620
2157
|
*
|
|
1621
2158
|
* @param {string} id
|
|
@@ -1623,19 +2160,19 @@ export class DefaultApi extends BaseAPI {
|
|
|
1623
2160
|
* @throws {RequiredError}
|
|
1624
2161
|
* @memberof DefaultApi
|
|
1625
2162
|
*/
|
|
1626
|
-
public
|
|
1627
|
-
return DefaultApiFp(this.configuration).
|
|
2163
|
+
public membersShow(id: string, options?: AxiosRequestConfig) {
|
|
2164
|
+
return DefaultApiFp(this.configuration).membersShow(id, options).then((request) => request(this.axios, this.basePath));
|
|
1628
2165
|
}
|
|
1629
2166
|
|
|
1630
2167
|
/**
|
|
1631
2168
|
*
|
|
1632
|
-
* @param {string}
|
|
2169
|
+
* @param {string} id
|
|
1633
2170
|
* @param {*} [options] Override http request option.
|
|
1634
2171
|
* @throws {RequiredError}
|
|
1635
2172
|
* @memberof DefaultApi
|
|
1636
2173
|
*/
|
|
1637
|
-
public
|
|
1638
|
-
return DefaultApiFp(this.configuration).
|
|
2174
|
+
public passesShow(id: string, options?: AxiosRequestConfig) {
|
|
2175
|
+
return DefaultApiFp(this.configuration).passesShow(id, options).then((request) => request(this.axios, this.basePath));
|
|
1639
2176
|
}
|
|
1640
2177
|
|
|
1641
2178
|
/**
|