ob-bms-sdk 0.0.20 → 0.0.21
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 +352 -302
- package/dist/api/api.d.ts +323 -276
- package/dist/api/api.js +51 -47
- package/package.json +1 -1
package/dist/api/api.d.ts
CHANGED
|
@@ -266,371 +266,271 @@ export interface FindMemberResultCreatedAt {
|
|
|
266
266
|
/**
|
|
267
267
|
*
|
|
268
268
|
* @export
|
|
269
|
-
* @interface
|
|
270
|
-
*/
|
|
271
|
-
export interface JsonValue {
|
|
272
|
-
}
|
|
273
|
-
/**
|
|
274
|
-
*
|
|
275
|
-
* @export
|
|
276
|
-
* @interface LocationData
|
|
269
|
+
* @interface FloorData
|
|
277
270
|
*/
|
|
278
|
-
export interface
|
|
279
|
-
/**
|
|
280
|
-
*
|
|
281
|
-
* @type {number}
|
|
282
|
-
* @memberof LocationData
|
|
283
|
-
*/
|
|
284
|
-
'locationID': number;
|
|
271
|
+
export interface FloorData {
|
|
285
272
|
/**
|
|
286
273
|
*
|
|
287
274
|
* @type {string}
|
|
288
|
-
* @memberof
|
|
289
|
-
*/
|
|
290
|
-
'locationName': string;
|
|
291
|
-
/**
|
|
292
|
-
*
|
|
293
|
-
* @type {boolean}
|
|
294
|
-
* @memberof LocationData
|
|
275
|
+
* @memberof FloorData
|
|
295
276
|
*/
|
|
296
|
-
'
|
|
297
|
-
}
|
|
298
|
-
/**
|
|
299
|
-
*
|
|
300
|
-
* @export
|
|
301
|
-
* @interface PersonData
|
|
302
|
-
*/
|
|
303
|
-
export interface PersonData {
|
|
277
|
+
'id': string;
|
|
304
278
|
/**
|
|
305
279
|
*
|
|
306
280
|
* @type {string}
|
|
307
|
-
* @memberof
|
|
308
|
-
*/
|
|
309
|
-
'personID': string;
|
|
310
|
-
/**
|
|
311
|
-
*
|
|
312
|
-
* @type {Array<number>}
|
|
313
|
-
* @memberof PersonData
|
|
314
|
-
*/
|
|
315
|
-
'tenantIDs': Array<number>;
|
|
316
|
-
/**
|
|
317
|
-
*
|
|
318
|
-
* @type {Array<string>}
|
|
319
|
-
* @memberof PersonData
|
|
281
|
+
* @memberof FloorData
|
|
320
282
|
*/
|
|
321
|
-
'
|
|
283
|
+
'uid': string;
|
|
322
284
|
/**
|
|
323
285
|
*
|
|
324
|
-
* @type {
|
|
325
|
-
* @memberof
|
|
286
|
+
* @type {string}
|
|
287
|
+
* @memberof FloorData
|
|
326
288
|
*/
|
|
327
|
-
'
|
|
289
|
+
'name': string;
|
|
328
290
|
/**
|
|
329
291
|
*
|
|
330
|
-
* @type {
|
|
331
|
-
* @memberof
|
|
292
|
+
* @type {JsonValue}
|
|
293
|
+
* @memberof FloorData
|
|
332
294
|
*/
|
|
333
|
-
'
|
|
295
|
+
'display_name': JsonValue | null;
|
|
334
296
|
/**
|
|
335
297
|
*
|
|
336
298
|
* @type {string}
|
|
337
|
-
* @memberof
|
|
299
|
+
* @memberof FloorData
|
|
338
300
|
*/
|
|
339
|
-
'
|
|
301
|
+
'tower_id': string;
|
|
340
302
|
/**
|
|
341
303
|
*
|
|
342
|
-
* @type {
|
|
343
|
-
* @memberof
|
|
304
|
+
* @type {string}
|
|
305
|
+
* @memberof FloorData
|
|
344
306
|
*/
|
|
345
|
-
'
|
|
307
|
+
'created_at': string;
|
|
346
308
|
/**
|
|
347
309
|
*
|
|
348
310
|
* @type {string}
|
|
349
|
-
* @memberof
|
|
311
|
+
* @memberof FloorData
|
|
350
312
|
*/
|
|
351
|
-
'
|
|
313
|
+
'updated_at': string;
|
|
352
314
|
}
|
|
353
315
|
/**
|
|
354
|
-
*
|
|
316
|
+
*
|
|
355
317
|
* @export
|
|
356
|
-
* @interface
|
|
318
|
+
* @interface JsonValue
|
|
357
319
|
*/
|
|
358
|
-
export interface
|
|
320
|
+
export interface JsonValue {
|
|
359
321
|
}
|
|
360
322
|
/**
|
|
361
323
|
*
|
|
362
324
|
* @export
|
|
363
|
-
* @interface
|
|
325
|
+
* @interface LocationData
|
|
364
326
|
*/
|
|
365
|
-
export interface
|
|
366
|
-
/**
|
|
367
|
-
*
|
|
368
|
-
* @type {string}
|
|
369
|
-
* @memberof ShowMemberPass
|
|
370
|
-
*/
|
|
371
|
-
'id': string;
|
|
372
|
-
/**
|
|
373
|
-
*
|
|
374
|
-
* @type {string}
|
|
375
|
-
* @memberof ShowMemberPass
|
|
376
|
-
*/
|
|
377
|
-
'uid': string | null;
|
|
378
|
-
/**
|
|
379
|
-
*
|
|
380
|
-
* @type {string}
|
|
381
|
-
* @memberof ShowMemberPass
|
|
382
|
-
*/
|
|
383
|
-
'status': string;
|
|
384
|
-
/**
|
|
385
|
-
*
|
|
386
|
-
* @type {string}
|
|
387
|
-
* @memberof ShowMemberPass
|
|
388
|
-
*/
|
|
389
|
-
'from': string;
|
|
390
|
-
/**
|
|
391
|
-
*
|
|
392
|
-
* @type {string}
|
|
393
|
-
* @memberof ShowMemberPass
|
|
394
|
-
*/
|
|
395
|
-
'to': string;
|
|
327
|
+
export interface LocationData {
|
|
396
328
|
/**
|
|
397
329
|
*
|
|
398
|
-
* @type {
|
|
399
|
-
* @memberof
|
|
330
|
+
* @type {number}
|
|
331
|
+
* @memberof LocationData
|
|
400
332
|
*/
|
|
401
|
-
'
|
|
333
|
+
'locationID': number;
|
|
402
334
|
/**
|
|
403
335
|
*
|
|
404
336
|
* @type {string}
|
|
405
|
-
* @memberof
|
|
337
|
+
* @memberof LocationData
|
|
406
338
|
*/
|
|
407
|
-
'
|
|
339
|
+
'locationName': string;
|
|
408
340
|
/**
|
|
409
341
|
*
|
|
410
|
-
* @type {
|
|
411
|
-
* @memberof
|
|
342
|
+
* @type {boolean}
|
|
343
|
+
* @memberof LocationData
|
|
412
344
|
*/
|
|
413
|
-
'
|
|
345
|
+
'isDefault': boolean;
|
|
414
346
|
}
|
|
415
347
|
/**
|
|
416
348
|
*
|
|
417
349
|
* @export
|
|
418
|
-
* @interface
|
|
350
|
+
* @interface MembersShowResponse
|
|
419
351
|
*/
|
|
420
|
-
export interface
|
|
421
|
-
/**
|
|
422
|
-
*
|
|
423
|
-
* @type {string}
|
|
424
|
-
* @memberof ShowMemberPassVisitor
|
|
425
|
-
*/
|
|
426
|
-
'created_at': string;
|
|
352
|
+
export interface MembersShowResponse {
|
|
427
353
|
/**
|
|
428
354
|
*
|
|
429
355
|
* @type {string}
|
|
430
|
-
* @memberof
|
|
356
|
+
* @memberof MembersShowResponse
|
|
431
357
|
*/
|
|
432
|
-
'
|
|
358
|
+
'id': string;
|
|
433
359
|
/**
|
|
434
360
|
*
|
|
435
361
|
* @type {string}
|
|
436
|
-
* @memberof
|
|
362
|
+
* @memberof MembersShowResponse
|
|
437
363
|
*/
|
|
438
|
-
'
|
|
364
|
+
'uid': string;
|
|
439
365
|
/**
|
|
440
366
|
*
|
|
441
|
-
* @type {
|
|
442
|
-
* @memberof
|
|
367
|
+
* @type {JsonValue}
|
|
368
|
+
* @memberof MembersShowResponse
|
|
443
369
|
*/
|
|
444
|
-
'
|
|
370
|
+
'metadata': JsonValue | null;
|
|
445
371
|
/**
|
|
446
372
|
*
|
|
447
373
|
* @type {string}
|
|
448
|
-
* @memberof
|
|
374
|
+
* @memberof MembersShowResponse
|
|
449
375
|
*/
|
|
450
|
-
'
|
|
376
|
+
'account_id': string | null;
|
|
451
377
|
/**
|
|
452
378
|
*
|
|
453
379
|
* @type {string}
|
|
454
|
-
* @memberof
|
|
380
|
+
* @memberof MembersShowResponse
|
|
455
381
|
*/
|
|
456
|
-
'
|
|
382
|
+
'created_at': string;
|
|
457
383
|
/**
|
|
458
384
|
*
|
|
459
385
|
* @type {string}
|
|
460
|
-
* @memberof
|
|
386
|
+
* @memberof MembersShowResponse
|
|
461
387
|
*/
|
|
462
|
-
'
|
|
388
|
+
'updated_at': string;
|
|
463
389
|
/**
|
|
464
390
|
*
|
|
465
|
-
* @type {
|
|
466
|
-
* @memberof
|
|
391
|
+
* @type {Array<PassData>}
|
|
392
|
+
* @memberof MembersShowResponse
|
|
467
393
|
*/
|
|
468
|
-
'
|
|
394
|
+
'passes': Array<PassData>;
|
|
469
395
|
/**
|
|
470
396
|
*
|
|
471
|
-
* @type {
|
|
472
|
-
* @memberof
|
|
397
|
+
* @type {Array<TowerData>}
|
|
398
|
+
* @memberof MembersShowResponse
|
|
473
399
|
*/
|
|
474
|
-
'
|
|
400
|
+
'towers': Array<TowerData>;
|
|
475
401
|
}
|
|
476
402
|
/**
|
|
477
403
|
*
|
|
478
404
|
* @export
|
|
479
|
-
* @interface
|
|
405
|
+
* @interface PassData
|
|
480
406
|
*/
|
|
481
|
-
export interface
|
|
482
|
-
/**
|
|
483
|
-
*
|
|
484
|
-
* @type {string}
|
|
485
|
-
* @memberof ShowMemberResult
|
|
486
|
-
*/
|
|
487
|
-
'id': string;
|
|
488
|
-
/**
|
|
489
|
-
*
|
|
490
|
-
* @type {string}
|
|
491
|
-
* @memberof ShowMemberResult
|
|
492
|
-
*/
|
|
493
|
-
'uid': string;
|
|
407
|
+
export interface PassData {
|
|
494
408
|
/**
|
|
495
409
|
*
|
|
496
|
-
* @type {
|
|
497
|
-
* @memberof
|
|
410
|
+
* @type {VisitorData}
|
|
411
|
+
* @memberof PassData
|
|
498
412
|
*/
|
|
499
|
-
'
|
|
413
|
+
'visitor': VisitorData;
|
|
500
414
|
/**
|
|
501
415
|
*
|
|
502
416
|
* @type {string}
|
|
503
|
-
* @memberof
|
|
504
|
-
*/
|
|
505
|
-
'account_id': string | null;
|
|
506
|
-
/**
|
|
507
|
-
*
|
|
508
|
-
* @type {Array<ShowMemberTower>}
|
|
509
|
-
* @memberof ShowMemberResult
|
|
510
|
-
*/
|
|
511
|
-
'towers': Array<ShowMemberTower>;
|
|
512
|
-
/**
|
|
513
|
-
*
|
|
514
|
-
* @type {Array<ShowMemberPass>}
|
|
515
|
-
* @memberof ShowMemberResult
|
|
417
|
+
* @memberof PassData
|
|
516
418
|
*/
|
|
517
|
-
'
|
|
419
|
+
'updated_at': string;
|
|
518
420
|
/**
|
|
519
421
|
*
|
|
520
422
|
* @type {string}
|
|
521
|
-
* @memberof
|
|
423
|
+
* @memberof PassData
|
|
522
424
|
*/
|
|
523
425
|
'created_at': string;
|
|
524
426
|
/**
|
|
525
427
|
*
|
|
526
428
|
* @type {string}
|
|
527
|
-
* @memberof
|
|
429
|
+
* @memberof PassData
|
|
528
430
|
*/
|
|
529
|
-
'
|
|
530
|
-
}
|
|
531
|
-
/**
|
|
532
|
-
*
|
|
533
|
-
* @export
|
|
534
|
-
* @interface ShowMemberTower
|
|
535
|
-
*/
|
|
536
|
-
export interface ShowMemberTower {
|
|
431
|
+
'status': PassDataStatusEnum;
|
|
537
432
|
/**
|
|
538
433
|
*
|
|
539
434
|
* @type {string}
|
|
540
|
-
* @memberof
|
|
435
|
+
* @memberof PassData
|
|
541
436
|
*/
|
|
542
|
-
'
|
|
437
|
+
'issuer_id': string;
|
|
543
438
|
/**
|
|
544
439
|
*
|
|
545
440
|
* @type {string}
|
|
546
|
-
* @memberof
|
|
441
|
+
* @memberof PassData
|
|
547
442
|
*/
|
|
548
|
-
'
|
|
443
|
+
'visit_schedule_id': string;
|
|
549
444
|
/**
|
|
550
445
|
*
|
|
551
446
|
* @type {string}
|
|
552
|
-
* @memberof
|
|
553
|
-
*/
|
|
554
|
-
'name': string;
|
|
555
|
-
/**
|
|
556
|
-
*
|
|
557
|
-
* @type {PrismaJsonValue}
|
|
558
|
-
* @memberof ShowMemberTower
|
|
447
|
+
* @memberof PassData
|
|
559
448
|
*/
|
|
560
|
-
'
|
|
449
|
+
'visitor_id': string;
|
|
561
450
|
/**
|
|
562
451
|
*
|
|
563
452
|
* @type {string}
|
|
564
|
-
* @memberof
|
|
453
|
+
* @memberof PassData
|
|
565
454
|
*/
|
|
566
|
-
'
|
|
455
|
+
'to': string;
|
|
567
456
|
/**
|
|
568
457
|
*
|
|
569
|
-
* @type {
|
|
570
|
-
* @memberof
|
|
458
|
+
* @type {string}
|
|
459
|
+
* @memberof PassData
|
|
571
460
|
*/
|
|
572
|
-
'
|
|
461
|
+
'from': string;
|
|
573
462
|
/**
|
|
574
463
|
*
|
|
575
464
|
* @type {string}
|
|
576
|
-
* @memberof
|
|
465
|
+
* @memberof PassData
|
|
577
466
|
*/
|
|
578
|
-
'
|
|
467
|
+
'uid': string | null;
|
|
579
468
|
/**
|
|
580
469
|
*
|
|
581
470
|
* @type {string}
|
|
582
|
-
* @memberof
|
|
471
|
+
* @memberof PassData
|
|
583
472
|
*/
|
|
584
|
-
'
|
|
473
|
+
'id': string;
|
|
585
474
|
}
|
|
475
|
+
export declare const PassDataStatusEnum: {
|
|
476
|
+
readonly Pending: "pending";
|
|
477
|
+
readonly Confirmed: "confirmed";
|
|
478
|
+
};
|
|
479
|
+
export type PassDataStatusEnum = typeof PassDataStatusEnum[keyof typeof PassDataStatusEnum];
|
|
586
480
|
/**
|
|
587
481
|
*
|
|
588
482
|
* @export
|
|
589
|
-
* @interface
|
|
483
|
+
* @interface PersonData
|
|
590
484
|
*/
|
|
591
|
-
export interface
|
|
485
|
+
export interface PersonData {
|
|
592
486
|
/**
|
|
593
487
|
*
|
|
594
488
|
* @type {string}
|
|
595
|
-
* @memberof
|
|
489
|
+
* @memberof PersonData
|
|
596
490
|
*/
|
|
597
|
-
'
|
|
491
|
+
'personID': string;
|
|
598
492
|
/**
|
|
599
493
|
*
|
|
600
|
-
* @type {
|
|
601
|
-
* @memberof
|
|
494
|
+
* @type {Array<number>}
|
|
495
|
+
* @memberof PersonData
|
|
602
496
|
*/
|
|
603
|
-
'
|
|
497
|
+
'tenantIDs': Array<number>;
|
|
604
498
|
/**
|
|
605
499
|
*
|
|
606
|
-
* @type {string}
|
|
607
|
-
* @memberof
|
|
500
|
+
* @type {Array<string>}
|
|
501
|
+
* @memberof PersonData
|
|
608
502
|
*/
|
|
609
|
-
'
|
|
503
|
+
'phones': Array<string>;
|
|
610
504
|
/**
|
|
611
505
|
*
|
|
612
|
-
* @type {
|
|
613
|
-
* @memberof
|
|
506
|
+
* @type {Array<string>}
|
|
507
|
+
* @memberof PersonData
|
|
614
508
|
*/
|
|
615
|
-
'
|
|
509
|
+
'emails': Array<string>;
|
|
616
510
|
/**
|
|
617
511
|
*
|
|
618
|
-
* @type {
|
|
619
|
-
* @memberof
|
|
512
|
+
* @type {Array<LocationData>}
|
|
513
|
+
* @memberof PersonData
|
|
620
514
|
*/
|
|
621
|
-
'
|
|
515
|
+
'locations': Array<LocationData>;
|
|
622
516
|
/**
|
|
623
517
|
*
|
|
624
518
|
* @type {string}
|
|
625
|
-
* @memberof
|
|
519
|
+
* @memberof PersonData
|
|
626
520
|
*/
|
|
627
|
-
'
|
|
521
|
+
'updateTime': string;
|
|
522
|
+
/**
|
|
523
|
+
*
|
|
524
|
+
* @type {boolean}
|
|
525
|
+
* @memberof PersonData
|
|
526
|
+
*/
|
|
527
|
+
'active': boolean;
|
|
628
528
|
/**
|
|
629
529
|
*
|
|
630
530
|
* @type {string}
|
|
631
|
-
* @memberof
|
|
531
|
+
* @memberof PersonData
|
|
632
532
|
*/
|
|
633
|
-
'
|
|
533
|
+
'status': string;
|
|
634
534
|
}
|
|
635
535
|
/**
|
|
636
536
|
*
|
|
@@ -770,6 +670,122 @@ export interface SyncResultSyncJobErrorInner {
|
|
|
770
670
|
*/
|
|
771
671
|
'type': string;
|
|
772
672
|
}
|
|
673
|
+
/**
|
|
674
|
+
*
|
|
675
|
+
* @export
|
|
676
|
+
* @interface TowerData
|
|
677
|
+
*/
|
|
678
|
+
export interface TowerData {
|
|
679
|
+
/**
|
|
680
|
+
*
|
|
681
|
+
* @type {string}
|
|
682
|
+
* @memberof TowerData
|
|
683
|
+
*/
|
|
684
|
+
'id': string;
|
|
685
|
+
/**
|
|
686
|
+
*
|
|
687
|
+
* @type {string}
|
|
688
|
+
* @memberof TowerData
|
|
689
|
+
*/
|
|
690
|
+
'uid': string;
|
|
691
|
+
/**
|
|
692
|
+
*
|
|
693
|
+
* @type {string}
|
|
694
|
+
* @memberof TowerData
|
|
695
|
+
*/
|
|
696
|
+
'name': string;
|
|
697
|
+
/**
|
|
698
|
+
*
|
|
699
|
+
* @type {JsonValue}
|
|
700
|
+
* @memberof TowerData
|
|
701
|
+
*/
|
|
702
|
+
'display_name': JsonValue | null;
|
|
703
|
+
/**
|
|
704
|
+
*
|
|
705
|
+
* @type {string}
|
|
706
|
+
* @memberof TowerData
|
|
707
|
+
*/
|
|
708
|
+
'project_id': string;
|
|
709
|
+
/**
|
|
710
|
+
*
|
|
711
|
+
* @type {string}
|
|
712
|
+
* @memberof TowerData
|
|
713
|
+
*/
|
|
714
|
+
'created_at': string;
|
|
715
|
+
/**
|
|
716
|
+
*
|
|
717
|
+
* @type {string}
|
|
718
|
+
* @memberof TowerData
|
|
719
|
+
*/
|
|
720
|
+
'updated_at': string;
|
|
721
|
+
/**
|
|
722
|
+
*
|
|
723
|
+
* @type {Array<FloorData>}
|
|
724
|
+
* @memberof TowerData
|
|
725
|
+
*/
|
|
726
|
+
'floors': Array<FloorData>;
|
|
727
|
+
}
|
|
728
|
+
/**
|
|
729
|
+
*
|
|
730
|
+
* @export
|
|
731
|
+
* @interface VisitorData
|
|
732
|
+
*/
|
|
733
|
+
export interface VisitorData {
|
|
734
|
+
/**
|
|
735
|
+
*
|
|
736
|
+
* @type {string}
|
|
737
|
+
* @memberof VisitorData
|
|
738
|
+
*/
|
|
739
|
+
'updated_at': string;
|
|
740
|
+
/**
|
|
741
|
+
*
|
|
742
|
+
* @type {string}
|
|
743
|
+
* @memberof VisitorData
|
|
744
|
+
*/
|
|
745
|
+
'created_at': string;
|
|
746
|
+
/**
|
|
747
|
+
*
|
|
748
|
+
* @type {string}
|
|
749
|
+
* @memberof VisitorData
|
|
750
|
+
*/
|
|
751
|
+
'inviter_id': string;
|
|
752
|
+
/**
|
|
753
|
+
*
|
|
754
|
+
* @type {string}
|
|
755
|
+
* @memberof VisitorData
|
|
756
|
+
*/
|
|
757
|
+
'reference': string;
|
|
758
|
+
/**
|
|
759
|
+
*
|
|
760
|
+
* @type {string}
|
|
761
|
+
* @memberof VisitorData
|
|
762
|
+
*/
|
|
763
|
+
'company_name': string;
|
|
764
|
+
/**
|
|
765
|
+
*
|
|
766
|
+
* @type {string}
|
|
767
|
+
* @memberof VisitorData
|
|
768
|
+
*/
|
|
769
|
+
'email': string;
|
|
770
|
+
/**
|
|
771
|
+
*
|
|
772
|
+
* @type {string}
|
|
773
|
+
* @memberof VisitorData
|
|
774
|
+
*/
|
|
775
|
+
'profile_image_url': string | null;
|
|
776
|
+
/**
|
|
777
|
+
*
|
|
778
|
+
* @type {string}
|
|
779
|
+
* @memberof VisitorData
|
|
780
|
+
*/
|
|
781
|
+
'name': string;
|
|
782
|
+
/**
|
|
783
|
+
*
|
|
784
|
+
* @type {string}
|
|
785
|
+
* @memberof VisitorData
|
|
786
|
+
*/
|
|
787
|
+
'id': string;
|
|
788
|
+
}
|
|
773
789
|
/**
|
|
774
790
|
*
|
|
775
791
|
* @export
|
|
@@ -807,6 +823,37 @@ export interface VisitorSchedule {
|
|
|
807
823
|
*/
|
|
808
824
|
'repetition'?: object;
|
|
809
825
|
}
|
|
826
|
+
/**
|
|
827
|
+
*
|
|
828
|
+
* @export
|
|
829
|
+
* @interface WebhookCreateBody
|
|
830
|
+
*/
|
|
831
|
+
export interface WebhookCreateBody {
|
|
832
|
+
/**
|
|
833
|
+
*
|
|
834
|
+
* @type {string}
|
|
835
|
+
* @memberof WebhookCreateBody
|
|
836
|
+
*/
|
|
837
|
+
'personID': string;
|
|
838
|
+
/**
|
|
839
|
+
*
|
|
840
|
+
* @type {string}
|
|
841
|
+
* @memberof WebhookCreateBody
|
|
842
|
+
*/
|
|
843
|
+
'liftName': string;
|
|
844
|
+
/**
|
|
845
|
+
*
|
|
846
|
+
* @type {string}
|
|
847
|
+
* @memberof WebhookCreateBody
|
|
848
|
+
*/
|
|
849
|
+
'floorName': string;
|
|
850
|
+
/**
|
|
851
|
+
*
|
|
852
|
+
* @type {number}
|
|
853
|
+
* @memberof WebhookCreateBody
|
|
854
|
+
*/
|
|
855
|
+
'floorID': number;
|
|
856
|
+
}
|
|
810
857
|
/**
|
|
811
858
|
*
|
|
812
859
|
* @export
|
|
@@ -892,7 +939,7 @@ export interface WrappedResponseFindMemberResultArrayOrNull {
|
|
|
892
939
|
* @type {WrappedResponseFindMemberResultArrayOrNullData}
|
|
893
940
|
* @memberof WrappedResponseFindMemberResultArrayOrNull
|
|
894
941
|
*/
|
|
895
|
-
'data': WrappedResponseFindMemberResultArrayOrNullData;
|
|
942
|
+
'data': WrappedResponseFindMemberResultArrayOrNullData | null;
|
|
896
943
|
}
|
|
897
944
|
/**
|
|
898
945
|
*
|
|
@@ -904,88 +951,88 @@ export interface WrappedResponseFindMemberResultArrayOrNullData {
|
|
|
904
951
|
/**
|
|
905
952
|
*
|
|
906
953
|
* @export
|
|
907
|
-
* @interface
|
|
908
|
-
*/
|
|
909
|
-
export interface WrappedResponseNull {
|
|
910
|
-
/**
|
|
911
|
-
*
|
|
912
|
-
* @type {Array<number>}
|
|
913
|
-
* @memberof WrappedResponseNull
|
|
914
|
-
*/
|
|
915
|
-
'data': Array<WrappedResponseNullDataEnum>;
|
|
916
|
-
}
|
|
917
|
-
export declare const WrappedResponseNullDataEnum: {
|
|
918
|
-
readonly NUMBER_null: null;
|
|
919
|
-
};
|
|
920
|
-
export type WrappedResponseNullDataEnum = typeof WrappedResponseNullDataEnum[keyof typeof WrappedResponseNullDataEnum];
|
|
921
|
-
/**
|
|
922
|
-
*
|
|
923
|
-
* @export
|
|
924
|
-
* @interface WrappedResponseShowMemberResult
|
|
954
|
+
* @interface WrappedResponseMembersShowResponse
|
|
925
955
|
*/
|
|
926
|
-
export interface
|
|
956
|
+
export interface WrappedResponseMembersShowResponse {
|
|
927
957
|
/**
|
|
928
958
|
*
|
|
929
|
-
* @type {
|
|
930
|
-
* @memberof
|
|
959
|
+
* @type {WrappedResponseMembersShowResponseData}
|
|
960
|
+
* @memberof WrappedResponseMembersShowResponse
|
|
931
961
|
*/
|
|
932
|
-
'data':
|
|
962
|
+
'data': WrappedResponseMembersShowResponseData | null;
|
|
933
963
|
}
|
|
934
964
|
/**
|
|
935
965
|
*
|
|
936
966
|
* @export
|
|
937
|
-
* @interface
|
|
967
|
+
* @interface WrappedResponseMembersShowResponseData
|
|
938
968
|
*/
|
|
939
|
-
export interface
|
|
969
|
+
export interface WrappedResponseMembersShowResponseData {
|
|
940
970
|
/**
|
|
941
971
|
*
|
|
942
972
|
* @type {string}
|
|
943
|
-
* @memberof
|
|
973
|
+
* @memberof WrappedResponseMembersShowResponseData
|
|
944
974
|
*/
|
|
945
975
|
'id': string;
|
|
946
976
|
/**
|
|
947
977
|
*
|
|
948
978
|
* @type {string}
|
|
949
|
-
* @memberof
|
|
979
|
+
* @memberof WrappedResponseMembersShowResponseData
|
|
950
980
|
*/
|
|
951
981
|
'uid': string;
|
|
952
982
|
/**
|
|
953
983
|
*
|
|
954
|
-
* @type {
|
|
955
|
-
* @memberof
|
|
984
|
+
* @type {JsonValue}
|
|
985
|
+
* @memberof WrappedResponseMembersShowResponseData
|
|
956
986
|
*/
|
|
957
|
-
'metadata':
|
|
987
|
+
'metadata': JsonValue | null;
|
|
958
988
|
/**
|
|
959
989
|
*
|
|
960
990
|
* @type {string}
|
|
961
|
-
* @memberof
|
|
991
|
+
* @memberof WrappedResponseMembersShowResponseData
|
|
962
992
|
*/
|
|
963
993
|
'account_id': string | null;
|
|
964
994
|
/**
|
|
965
995
|
*
|
|
966
|
-
* @type {
|
|
967
|
-
* @memberof
|
|
996
|
+
* @type {string}
|
|
997
|
+
* @memberof WrappedResponseMembersShowResponseData
|
|
998
|
+
*/
|
|
999
|
+
'created_at': string;
|
|
1000
|
+
/**
|
|
1001
|
+
*
|
|
1002
|
+
* @type {string}
|
|
1003
|
+
* @memberof WrappedResponseMembersShowResponseData
|
|
968
1004
|
*/
|
|
969
|
-
'
|
|
1005
|
+
'updated_at': string;
|
|
970
1006
|
/**
|
|
971
1007
|
*
|
|
972
|
-
* @type {Array<
|
|
973
|
-
* @memberof
|
|
1008
|
+
* @type {Array<PassData>}
|
|
1009
|
+
* @memberof WrappedResponseMembersShowResponseData
|
|
974
1010
|
*/
|
|
975
|
-
'passes': Array<
|
|
1011
|
+
'passes': Array<PassData>;
|
|
976
1012
|
/**
|
|
977
1013
|
*
|
|
978
|
-
* @type {
|
|
979
|
-
* @memberof
|
|
1014
|
+
* @type {Array<TowerData>}
|
|
1015
|
+
* @memberof WrappedResponseMembersShowResponseData
|
|
980
1016
|
*/
|
|
981
|
-
'
|
|
1017
|
+
'towers': Array<TowerData>;
|
|
1018
|
+
}
|
|
1019
|
+
/**
|
|
1020
|
+
*
|
|
1021
|
+
* @export
|
|
1022
|
+
* @interface WrappedResponseNull
|
|
1023
|
+
*/
|
|
1024
|
+
export interface WrappedResponseNull {
|
|
982
1025
|
/**
|
|
983
1026
|
*
|
|
984
|
-
* @type {
|
|
985
|
-
* @memberof
|
|
1027
|
+
* @type {Array<number>}
|
|
1028
|
+
* @memberof WrappedResponseNull
|
|
986
1029
|
*/
|
|
987
|
-
'
|
|
1030
|
+
'data': Array<WrappedResponseNullDataEnum>;
|
|
988
1031
|
}
|
|
1032
|
+
export declare const WrappedResponseNullDataEnum: {
|
|
1033
|
+
readonly NUMBER_null: null;
|
|
1034
|
+
};
|
|
1035
|
+
export type WrappedResponseNullDataEnum = typeof WrappedResponseNullDataEnum[keyof typeof WrappedResponseNullDataEnum];
|
|
989
1036
|
/**
|
|
990
1037
|
*
|
|
991
1038
|
* @export
|
|
@@ -1067,11 +1114,11 @@ export interface WrappedResponseShowVisitorResponseData {
|
|
|
1067
1114
|
export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1068
1115
|
/**
|
|
1069
1116
|
*
|
|
1070
|
-
* @param {
|
|
1117
|
+
* @param {WebhookCreateBody} webhookCreateBody
|
|
1071
1118
|
* @param {*} [options] Override http request option.
|
|
1072
1119
|
* @throws {RequiredError}
|
|
1073
1120
|
*/
|
|
1074
|
-
create: (
|
|
1121
|
+
create: (webhookCreateBody: WebhookCreateBody, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1075
1122
|
/**
|
|
1076
1123
|
*
|
|
1077
1124
|
* @param {CreateFSMembersBody} createFSMembersBody
|
|
@@ -1088,18 +1135,18 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
1088
1135
|
integrationsFsMembersDelete: (destroyFSMembers: DestroyFSMembers, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1089
1136
|
/**
|
|
1090
1137
|
*
|
|
1091
|
-
* @param {string}
|
|
1138
|
+
* @param {string} identifier
|
|
1092
1139
|
* @param {*} [options] Override http request option.
|
|
1093
1140
|
* @throws {RequiredError}
|
|
1094
1141
|
*/
|
|
1095
|
-
|
|
1142
|
+
membersIndex: (identifier: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1096
1143
|
/**
|
|
1097
1144
|
*
|
|
1098
|
-
* @param {string}
|
|
1145
|
+
* @param {string} id
|
|
1099
1146
|
* @param {*} [options] Override http request option.
|
|
1100
1147
|
* @throws {RequiredError}
|
|
1101
1148
|
*/
|
|
1102
|
-
|
|
1149
|
+
membersShow: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1103
1150
|
/**
|
|
1104
1151
|
*
|
|
1105
1152
|
* @param {SyncBody} syncBody
|
|
@@ -1136,11 +1183,11 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
1136
1183
|
export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
1137
1184
|
/**
|
|
1138
1185
|
*
|
|
1139
|
-
* @param {
|
|
1186
|
+
* @param {WebhookCreateBody} webhookCreateBody
|
|
1140
1187
|
* @param {*} [options] Override http request option.
|
|
1141
1188
|
* @throws {RequiredError}
|
|
1142
1189
|
*/
|
|
1143
|
-
create(
|
|
1190
|
+
create(webhookCreateBody: WebhookCreateBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1144
1191
|
/**
|
|
1145
1192
|
*
|
|
1146
1193
|
* @param {CreateFSMembersBody} createFSMembersBody
|
|
@@ -1157,18 +1204,18 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
1157
1204
|
integrationsFsMembersDelete(destroyFSMembers: DestroyFSMembers, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DestroyMembersResponse>>;
|
|
1158
1205
|
/**
|
|
1159
1206
|
*
|
|
1160
|
-
* @param {string}
|
|
1207
|
+
* @param {string} identifier
|
|
1161
1208
|
* @param {*} [options] Override http request option.
|
|
1162
1209
|
* @throws {RequiredError}
|
|
1163
1210
|
*/
|
|
1164
|
-
|
|
1211
|
+
membersIndex(identifier: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseFindMemberResultArrayOrNull>>;
|
|
1165
1212
|
/**
|
|
1166
1213
|
*
|
|
1167
|
-
* @param {string}
|
|
1214
|
+
* @param {string} id
|
|
1168
1215
|
* @param {*} [options] Override http request option.
|
|
1169
1216
|
* @throws {RequiredError}
|
|
1170
1217
|
*/
|
|
1171
|
-
|
|
1218
|
+
membersShow(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseMembersShowResponse>>;
|
|
1172
1219
|
/**
|
|
1173
1220
|
*
|
|
1174
1221
|
* @param {SyncBody} syncBody
|
|
@@ -1205,11 +1252,11 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
1205
1252
|
export declare const DefaultApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1206
1253
|
/**
|
|
1207
1254
|
*
|
|
1208
|
-
* @param {
|
|
1255
|
+
* @param {WebhookCreateBody} webhookCreateBody
|
|
1209
1256
|
* @param {*} [options] Override http request option.
|
|
1210
1257
|
* @throws {RequiredError}
|
|
1211
1258
|
*/
|
|
1212
|
-
create(
|
|
1259
|
+
create(webhookCreateBody: WebhookCreateBody, options?: any): AxiosPromise<void>;
|
|
1213
1260
|
/**
|
|
1214
1261
|
*
|
|
1215
1262
|
* @param {CreateFSMembersBody} createFSMembersBody
|
|
@@ -1226,18 +1273,18 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
1226
1273
|
integrationsFsMembersDelete(destroyFSMembers: DestroyFSMembers, options?: any): AxiosPromise<DestroyMembersResponse>;
|
|
1227
1274
|
/**
|
|
1228
1275
|
*
|
|
1229
|
-
* @param {string}
|
|
1276
|
+
* @param {string} identifier
|
|
1230
1277
|
* @param {*} [options] Override http request option.
|
|
1231
1278
|
* @throws {RequiredError}
|
|
1232
1279
|
*/
|
|
1233
|
-
|
|
1280
|
+
membersIndex(identifier: string, options?: any): AxiosPromise<WrappedResponseFindMemberResultArrayOrNull>;
|
|
1234
1281
|
/**
|
|
1235
1282
|
*
|
|
1236
|
-
* @param {string}
|
|
1283
|
+
* @param {string} id
|
|
1237
1284
|
* @param {*} [options] Override http request option.
|
|
1238
1285
|
* @throws {RequiredError}
|
|
1239
1286
|
*/
|
|
1240
|
-
|
|
1287
|
+
membersShow(id: string, options?: any): AxiosPromise<WrappedResponseMembersShowResponse>;
|
|
1241
1288
|
/**
|
|
1242
1289
|
*
|
|
1243
1290
|
* @param {SyncBody} syncBody
|
|
@@ -1276,12 +1323,12 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
1276
1323
|
export declare class DefaultApi extends BaseAPI {
|
|
1277
1324
|
/**
|
|
1278
1325
|
*
|
|
1279
|
-
* @param {
|
|
1326
|
+
* @param {WebhookCreateBody} webhookCreateBody
|
|
1280
1327
|
* @param {*} [options] Override http request option.
|
|
1281
1328
|
* @throws {RequiredError}
|
|
1282
1329
|
* @memberof DefaultApi
|
|
1283
1330
|
*/
|
|
1284
|
-
create(
|
|
1331
|
+
create(webhookCreateBody: WebhookCreateBody, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1285
1332
|
/**
|
|
1286
1333
|
*
|
|
1287
1334
|
* @param {CreateFSMembersBody} createFSMembersBody
|
|
@@ -1300,20 +1347,20 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
1300
1347
|
integrationsFsMembersDelete(destroyFSMembers: DestroyFSMembers, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DestroyMembersResponse, any>>;
|
|
1301
1348
|
/**
|
|
1302
1349
|
*
|
|
1303
|
-
* @param {string}
|
|
1350
|
+
* @param {string} identifier
|
|
1304
1351
|
* @param {*} [options] Override http request option.
|
|
1305
1352
|
* @throws {RequiredError}
|
|
1306
1353
|
* @memberof DefaultApi
|
|
1307
1354
|
*/
|
|
1308
|
-
|
|
1355
|
+
membersIndex(identifier: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseFindMemberResultArrayOrNull, any>>;
|
|
1309
1356
|
/**
|
|
1310
1357
|
*
|
|
1311
|
-
* @param {string}
|
|
1358
|
+
* @param {string} id
|
|
1312
1359
|
* @param {*} [options] Override http request option.
|
|
1313
1360
|
* @throws {RequiredError}
|
|
1314
1361
|
* @memberof DefaultApi
|
|
1315
1362
|
*/
|
|
1316
|
-
|
|
1363
|
+
membersShow(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseMembersShowResponse, any>>;
|
|
1317
1364
|
/**
|
|
1318
1365
|
*
|
|
1319
1366
|
* @param {SyncBody} syncBody
|