ob-bms-sdk 0.0.19 → 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 +363 -294
- package/dist/api/api.d.ts +334 -268
- package/dist/api/api.js +51 -47
- package/package.json +1 -1
package/dist/api/api.d.ts
CHANGED
|
@@ -236,7 +236,7 @@ export interface FindMemberResult {
|
|
|
236
236
|
* @type {string}
|
|
237
237
|
* @memberof FindMemberResult
|
|
238
238
|
*/
|
|
239
|
-
'account_id'?: string;
|
|
239
|
+
'account_id'?: string | null;
|
|
240
240
|
/**
|
|
241
241
|
*
|
|
242
242
|
* @type {JsonValue}
|
|
@@ -266,365 +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
|
|
281
|
+
* @memberof FloorData
|
|
308
282
|
*/
|
|
309
|
-
'
|
|
310
|
-
/**
|
|
311
|
-
*
|
|
312
|
-
* @type {Array<number>}
|
|
313
|
-
* @memberof PersonData
|
|
314
|
-
*/
|
|
315
|
-
'tenantIDs': Array<number>;
|
|
316
|
-
/**
|
|
317
|
-
*
|
|
318
|
-
* @type {Array<string>}
|
|
319
|
-
* @memberof PersonData
|
|
320
|
-
*/
|
|
321
|
-
'phones': Array<string>;
|
|
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
|
|
352
|
+
export interface MembersShowResponse {
|
|
421
353
|
/**
|
|
422
354
|
*
|
|
423
355
|
* @type {string}
|
|
424
|
-
* @memberof
|
|
356
|
+
* @memberof MembersShowResponse
|
|
425
357
|
*/
|
|
426
|
-
'
|
|
427
|
-
/**
|
|
428
|
-
*
|
|
429
|
-
* @type {string}
|
|
430
|
-
* @memberof ShowMemberPassVisitor
|
|
431
|
-
*/
|
|
432
|
-
'updated_at': string;
|
|
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
|
|
407
|
+
export interface PassData {
|
|
482
408
|
/**
|
|
483
409
|
*
|
|
484
|
-
* @type {
|
|
485
|
-
* @memberof
|
|
410
|
+
* @type {VisitorData}
|
|
411
|
+
* @memberof PassData
|
|
486
412
|
*/
|
|
487
|
-
'
|
|
413
|
+
'visitor': VisitorData;
|
|
488
414
|
/**
|
|
489
415
|
*
|
|
490
416
|
* @type {string}
|
|
491
|
-
* @memberof
|
|
492
|
-
*/
|
|
493
|
-
'uid': string;
|
|
494
|
-
/**
|
|
495
|
-
*
|
|
496
|
-
* @type {PrismaJsonValue}
|
|
497
|
-
* @memberof ShowMemberResult
|
|
498
|
-
*/
|
|
499
|
-
'metadata': PrismaJsonValue | null;
|
|
500
|
-
/**
|
|
501
|
-
*
|
|
502
|
-
* @type {Array<ShowMemberTower>}
|
|
503
|
-
* @memberof ShowMemberResult
|
|
504
|
-
*/
|
|
505
|
-
'towers': Array<ShowMemberTower>;
|
|
506
|
-
/**
|
|
507
|
-
*
|
|
508
|
-
* @type {Array<ShowMemberPass>}
|
|
509
|
-
* @memberof ShowMemberResult
|
|
417
|
+
* @memberof PassData
|
|
510
418
|
*/
|
|
511
|
-
'
|
|
419
|
+
'updated_at': string;
|
|
512
420
|
/**
|
|
513
421
|
*
|
|
514
422
|
* @type {string}
|
|
515
|
-
* @memberof
|
|
423
|
+
* @memberof PassData
|
|
516
424
|
*/
|
|
517
425
|
'created_at': string;
|
|
518
426
|
/**
|
|
519
427
|
*
|
|
520
428
|
* @type {string}
|
|
521
|
-
* @memberof
|
|
429
|
+
* @memberof PassData
|
|
522
430
|
*/
|
|
523
|
-
'
|
|
524
|
-
}
|
|
525
|
-
/**
|
|
526
|
-
*
|
|
527
|
-
* @export
|
|
528
|
-
* @interface ShowMemberTower
|
|
529
|
-
*/
|
|
530
|
-
export interface ShowMemberTower {
|
|
431
|
+
'status': PassDataStatusEnum;
|
|
531
432
|
/**
|
|
532
433
|
*
|
|
533
434
|
* @type {string}
|
|
534
|
-
* @memberof
|
|
435
|
+
* @memberof PassData
|
|
535
436
|
*/
|
|
536
|
-
'
|
|
437
|
+
'issuer_id': string;
|
|
537
438
|
/**
|
|
538
439
|
*
|
|
539
440
|
* @type {string}
|
|
540
|
-
* @memberof
|
|
441
|
+
* @memberof PassData
|
|
541
442
|
*/
|
|
542
|
-
'
|
|
443
|
+
'visit_schedule_id': string;
|
|
543
444
|
/**
|
|
544
445
|
*
|
|
545
446
|
* @type {string}
|
|
546
|
-
* @memberof
|
|
447
|
+
* @memberof PassData
|
|
547
448
|
*/
|
|
548
|
-
'
|
|
549
|
-
/**
|
|
550
|
-
*
|
|
551
|
-
* @type {PrismaJsonValue}
|
|
552
|
-
* @memberof ShowMemberTower
|
|
553
|
-
*/
|
|
554
|
-
'display_name': PrismaJsonValue | null;
|
|
449
|
+
'visitor_id': string;
|
|
555
450
|
/**
|
|
556
451
|
*
|
|
557
452
|
* @type {string}
|
|
558
|
-
* @memberof
|
|
453
|
+
* @memberof PassData
|
|
559
454
|
*/
|
|
560
|
-
'
|
|
455
|
+
'to': string;
|
|
561
456
|
/**
|
|
562
457
|
*
|
|
563
|
-
* @type {
|
|
564
|
-
* @memberof
|
|
458
|
+
* @type {string}
|
|
459
|
+
* @memberof PassData
|
|
565
460
|
*/
|
|
566
|
-
'
|
|
461
|
+
'from': string;
|
|
567
462
|
/**
|
|
568
463
|
*
|
|
569
464
|
* @type {string}
|
|
570
|
-
* @memberof
|
|
465
|
+
* @memberof PassData
|
|
571
466
|
*/
|
|
572
|
-
'
|
|
467
|
+
'uid': string | null;
|
|
573
468
|
/**
|
|
574
469
|
*
|
|
575
470
|
* @type {string}
|
|
576
|
-
* @memberof
|
|
471
|
+
* @memberof PassData
|
|
577
472
|
*/
|
|
578
|
-
'
|
|
473
|
+
'id': string;
|
|
579
474
|
}
|
|
475
|
+
export declare const PassDataStatusEnum: {
|
|
476
|
+
readonly Pending: "pending";
|
|
477
|
+
readonly Confirmed: "confirmed";
|
|
478
|
+
};
|
|
479
|
+
export type PassDataStatusEnum = typeof PassDataStatusEnum[keyof typeof PassDataStatusEnum];
|
|
580
480
|
/**
|
|
581
481
|
*
|
|
582
482
|
* @export
|
|
583
|
-
* @interface
|
|
483
|
+
* @interface PersonData
|
|
584
484
|
*/
|
|
585
|
-
export interface
|
|
485
|
+
export interface PersonData {
|
|
586
486
|
/**
|
|
587
487
|
*
|
|
588
488
|
* @type {string}
|
|
589
|
-
* @memberof
|
|
489
|
+
* @memberof PersonData
|
|
590
490
|
*/
|
|
591
|
-
'
|
|
491
|
+
'personID': string;
|
|
592
492
|
/**
|
|
593
493
|
*
|
|
594
|
-
* @type {
|
|
595
|
-
* @memberof
|
|
494
|
+
* @type {Array<number>}
|
|
495
|
+
* @memberof PersonData
|
|
596
496
|
*/
|
|
597
|
-
'
|
|
497
|
+
'tenantIDs': Array<number>;
|
|
598
498
|
/**
|
|
599
499
|
*
|
|
600
|
-
* @type {string}
|
|
601
|
-
* @memberof
|
|
500
|
+
* @type {Array<string>}
|
|
501
|
+
* @memberof PersonData
|
|
602
502
|
*/
|
|
603
|
-
'
|
|
503
|
+
'phones': Array<string>;
|
|
604
504
|
/**
|
|
605
505
|
*
|
|
606
|
-
* @type {
|
|
607
|
-
* @memberof
|
|
506
|
+
* @type {Array<string>}
|
|
507
|
+
* @memberof PersonData
|
|
608
508
|
*/
|
|
609
|
-
'
|
|
509
|
+
'emails': Array<string>;
|
|
610
510
|
/**
|
|
611
511
|
*
|
|
612
|
-
* @type {
|
|
613
|
-
* @memberof
|
|
512
|
+
* @type {Array<LocationData>}
|
|
513
|
+
* @memberof PersonData
|
|
614
514
|
*/
|
|
615
|
-
'
|
|
515
|
+
'locations': Array<LocationData>;
|
|
616
516
|
/**
|
|
617
517
|
*
|
|
618
518
|
* @type {string}
|
|
619
|
-
* @memberof
|
|
519
|
+
* @memberof PersonData
|
|
620
520
|
*/
|
|
621
|
-
'
|
|
521
|
+
'updateTime': string;
|
|
522
|
+
/**
|
|
523
|
+
*
|
|
524
|
+
* @type {boolean}
|
|
525
|
+
* @memberof PersonData
|
|
526
|
+
*/
|
|
527
|
+
'active': boolean;
|
|
622
528
|
/**
|
|
623
529
|
*
|
|
624
530
|
* @type {string}
|
|
625
|
-
* @memberof
|
|
531
|
+
* @memberof PersonData
|
|
626
532
|
*/
|
|
627
|
-
'
|
|
533
|
+
'status': string;
|
|
628
534
|
}
|
|
629
535
|
/**
|
|
630
536
|
*
|
|
@@ -764,6 +670,122 @@ export interface SyncResultSyncJobErrorInner {
|
|
|
764
670
|
*/
|
|
765
671
|
'type': string;
|
|
766
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
|
+
}
|
|
767
789
|
/**
|
|
768
790
|
*
|
|
769
791
|
* @export
|
|
@@ -801,6 +823,37 @@ export interface VisitorSchedule {
|
|
|
801
823
|
*/
|
|
802
824
|
'repetition'?: object;
|
|
803
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
|
+
}
|
|
804
857
|
/**
|
|
805
858
|
*
|
|
806
859
|
* @export
|
|
@@ -878,95 +931,108 @@ export interface WrappedResponseCreateVisitorResponseData {
|
|
|
878
931
|
/**
|
|
879
932
|
*
|
|
880
933
|
* @export
|
|
881
|
-
* @interface
|
|
934
|
+
* @interface WrappedResponseFindMemberResultArrayOrNull
|
|
882
935
|
*/
|
|
883
|
-
export interface
|
|
936
|
+
export interface WrappedResponseFindMemberResultArrayOrNull {
|
|
884
937
|
/**
|
|
885
938
|
*
|
|
886
|
-
* @type {
|
|
887
|
-
* @memberof
|
|
939
|
+
* @type {WrappedResponseFindMemberResultArrayOrNullData}
|
|
940
|
+
* @memberof WrappedResponseFindMemberResultArrayOrNull
|
|
888
941
|
*/
|
|
889
|
-
'data':
|
|
942
|
+
'data': WrappedResponseFindMemberResultArrayOrNullData | null;
|
|
890
943
|
}
|
|
891
944
|
/**
|
|
892
945
|
*
|
|
893
946
|
* @export
|
|
894
|
-
* @interface
|
|
947
|
+
* @interface WrappedResponseFindMemberResultArrayOrNullData
|
|
895
948
|
*/
|
|
896
|
-
export interface
|
|
897
|
-
/**
|
|
898
|
-
*
|
|
899
|
-
* @type {Array<number>}
|
|
900
|
-
* @memberof WrappedResponseNull
|
|
901
|
-
*/
|
|
902
|
-
'data': Array<WrappedResponseNullDataEnum>;
|
|
949
|
+
export interface WrappedResponseFindMemberResultArrayOrNullData {
|
|
903
950
|
}
|
|
904
|
-
export declare const WrappedResponseNullDataEnum: {
|
|
905
|
-
readonly NUMBER_null: null;
|
|
906
|
-
};
|
|
907
|
-
export type WrappedResponseNullDataEnum = typeof WrappedResponseNullDataEnum[keyof typeof WrappedResponseNullDataEnum];
|
|
908
951
|
/**
|
|
909
952
|
*
|
|
910
953
|
* @export
|
|
911
|
-
* @interface
|
|
954
|
+
* @interface WrappedResponseMembersShowResponse
|
|
912
955
|
*/
|
|
913
|
-
export interface
|
|
956
|
+
export interface WrappedResponseMembersShowResponse {
|
|
914
957
|
/**
|
|
915
958
|
*
|
|
916
|
-
* @type {
|
|
917
|
-
* @memberof
|
|
959
|
+
* @type {WrappedResponseMembersShowResponseData}
|
|
960
|
+
* @memberof WrappedResponseMembersShowResponse
|
|
918
961
|
*/
|
|
919
|
-
'data':
|
|
962
|
+
'data': WrappedResponseMembersShowResponseData | null;
|
|
920
963
|
}
|
|
921
964
|
/**
|
|
922
965
|
*
|
|
923
966
|
* @export
|
|
924
|
-
* @interface
|
|
967
|
+
* @interface WrappedResponseMembersShowResponseData
|
|
925
968
|
*/
|
|
926
|
-
export interface
|
|
969
|
+
export interface WrappedResponseMembersShowResponseData {
|
|
927
970
|
/**
|
|
928
971
|
*
|
|
929
972
|
* @type {string}
|
|
930
|
-
* @memberof
|
|
973
|
+
* @memberof WrappedResponseMembersShowResponseData
|
|
931
974
|
*/
|
|
932
975
|
'id': string;
|
|
933
976
|
/**
|
|
934
977
|
*
|
|
935
978
|
* @type {string}
|
|
936
|
-
* @memberof
|
|
979
|
+
* @memberof WrappedResponseMembersShowResponseData
|
|
937
980
|
*/
|
|
938
981
|
'uid': string;
|
|
939
982
|
/**
|
|
940
983
|
*
|
|
941
|
-
* @type {
|
|
942
|
-
* @memberof
|
|
943
|
-
*/
|
|
944
|
-
'metadata': PrismaJsonValue | null;
|
|
945
|
-
/**
|
|
946
|
-
*
|
|
947
|
-
* @type {Array<ShowMemberTower>}
|
|
948
|
-
* @memberof WrappedResponseShowMemberResultData
|
|
984
|
+
* @type {JsonValue}
|
|
985
|
+
* @memberof WrappedResponseMembersShowResponseData
|
|
949
986
|
*/
|
|
950
|
-
'
|
|
987
|
+
'metadata': JsonValue | null;
|
|
951
988
|
/**
|
|
952
989
|
*
|
|
953
|
-
* @type {
|
|
954
|
-
* @memberof
|
|
990
|
+
* @type {string}
|
|
991
|
+
* @memberof WrappedResponseMembersShowResponseData
|
|
955
992
|
*/
|
|
956
|
-
'
|
|
993
|
+
'account_id': string | null;
|
|
957
994
|
/**
|
|
958
995
|
*
|
|
959
996
|
* @type {string}
|
|
960
|
-
* @memberof
|
|
997
|
+
* @memberof WrappedResponseMembersShowResponseData
|
|
961
998
|
*/
|
|
962
999
|
'created_at': string;
|
|
963
1000
|
/**
|
|
964
1001
|
*
|
|
965
1002
|
* @type {string}
|
|
966
|
-
* @memberof
|
|
1003
|
+
* @memberof WrappedResponseMembersShowResponseData
|
|
967
1004
|
*/
|
|
968
1005
|
'updated_at': string;
|
|
1006
|
+
/**
|
|
1007
|
+
*
|
|
1008
|
+
* @type {Array<PassData>}
|
|
1009
|
+
* @memberof WrappedResponseMembersShowResponseData
|
|
1010
|
+
*/
|
|
1011
|
+
'passes': Array<PassData>;
|
|
1012
|
+
/**
|
|
1013
|
+
*
|
|
1014
|
+
* @type {Array<TowerData>}
|
|
1015
|
+
* @memberof WrappedResponseMembersShowResponseData
|
|
1016
|
+
*/
|
|
1017
|
+
'towers': Array<TowerData>;
|
|
1018
|
+
}
|
|
1019
|
+
/**
|
|
1020
|
+
*
|
|
1021
|
+
* @export
|
|
1022
|
+
* @interface WrappedResponseNull
|
|
1023
|
+
*/
|
|
1024
|
+
export interface WrappedResponseNull {
|
|
1025
|
+
/**
|
|
1026
|
+
*
|
|
1027
|
+
* @type {Array<number>}
|
|
1028
|
+
* @memberof WrappedResponseNull
|
|
1029
|
+
*/
|
|
1030
|
+
'data': Array<WrappedResponseNullDataEnum>;
|
|
969
1031
|
}
|
|
1032
|
+
export declare const WrappedResponseNullDataEnum: {
|
|
1033
|
+
readonly NUMBER_null: null;
|
|
1034
|
+
};
|
|
1035
|
+
export type WrappedResponseNullDataEnum = typeof WrappedResponseNullDataEnum[keyof typeof WrappedResponseNullDataEnum];
|
|
970
1036
|
/**
|
|
971
1037
|
*
|
|
972
1038
|
* @export
|
|
@@ -1048,11 +1114,11 @@ export interface WrappedResponseShowVisitorResponseData {
|
|
|
1048
1114
|
export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1049
1115
|
/**
|
|
1050
1116
|
*
|
|
1051
|
-
* @param {
|
|
1117
|
+
* @param {WebhookCreateBody} webhookCreateBody
|
|
1052
1118
|
* @param {*} [options] Override http request option.
|
|
1053
1119
|
* @throws {RequiredError}
|
|
1054
1120
|
*/
|
|
1055
|
-
create: (
|
|
1121
|
+
create: (webhookCreateBody: WebhookCreateBody, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1056
1122
|
/**
|
|
1057
1123
|
*
|
|
1058
1124
|
* @param {CreateFSMembersBody} createFSMembersBody
|
|
@@ -1069,18 +1135,18 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
1069
1135
|
integrationsFsMembersDelete: (destroyFSMembers: DestroyFSMembers, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1070
1136
|
/**
|
|
1071
1137
|
*
|
|
1072
|
-
* @param {string}
|
|
1138
|
+
* @param {string} identifier
|
|
1073
1139
|
* @param {*} [options] Override http request option.
|
|
1074
1140
|
* @throws {RequiredError}
|
|
1075
1141
|
*/
|
|
1076
|
-
|
|
1142
|
+
membersIndex: (identifier: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1077
1143
|
/**
|
|
1078
1144
|
*
|
|
1079
|
-
* @param {string}
|
|
1145
|
+
* @param {string} id
|
|
1080
1146
|
* @param {*} [options] Override http request option.
|
|
1081
1147
|
* @throws {RequiredError}
|
|
1082
1148
|
*/
|
|
1083
|
-
|
|
1149
|
+
membersShow: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1084
1150
|
/**
|
|
1085
1151
|
*
|
|
1086
1152
|
* @param {SyncBody} syncBody
|
|
@@ -1117,11 +1183,11 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
1117
1183
|
export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
1118
1184
|
/**
|
|
1119
1185
|
*
|
|
1120
|
-
* @param {
|
|
1186
|
+
* @param {WebhookCreateBody} webhookCreateBody
|
|
1121
1187
|
* @param {*} [options] Override http request option.
|
|
1122
1188
|
* @throws {RequiredError}
|
|
1123
1189
|
*/
|
|
1124
|
-
create(
|
|
1190
|
+
create(webhookCreateBody: WebhookCreateBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1125
1191
|
/**
|
|
1126
1192
|
*
|
|
1127
1193
|
* @param {CreateFSMembersBody} createFSMembersBody
|
|
@@ -1138,18 +1204,18 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
1138
1204
|
integrationsFsMembersDelete(destroyFSMembers: DestroyFSMembers, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DestroyMembersResponse>>;
|
|
1139
1205
|
/**
|
|
1140
1206
|
*
|
|
1141
|
-
* @param {string}
|
|
1207
|
+
* @param {string} identifier
|
|
1142
1208
|
* @param {*} [options] Override http request option.
|
|
1143
1209
|
* @throws {RequiredError}
|
|
1144
1210
|
*/
|
|
1145
|
-
|
|
1211
|
+
membersIndex(identifier: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseFindMemberResultArrayOrNull>>;
|
|
1146
1212
|
/**
|
|
1147
1213
|
*
|
|
1148
|
-
* @param {string}
|
|
1214
|
+
* @param {string} id
|
|
1149
1215
|
* @param {*} [options] Override http request option.
|
|
1150
1216
|
* @throws {RequiredError}
|
|
1151
1217
|
*/
|
|
1152
|
-
|
|
1218
|
+
membersShow(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseMembersShowResponse>>;
|
|
1153
1219
|
/**
|
|
1154
1220
|
*
|
|
1155
1221
|
* @param {SyncBody} syncBody
|
|
@@ -1186,11 +1252,11 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
1186
1252
|
export declare const DefaultApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1187
1253
|
/**
|
|
1188
1254
|
*
|
|
1189
|
-
* @param {
|
|
1255
|
+
* @param {WebhookCreateBody} webhookCreateBody
|
|
1190
1256
|
* @param {*} [options] Override http request option.
|
|
1191
1257
|
* @throws {RequiredError}
|
|
1192
1258
|
*/
|
|
1193
|
-
create(
|
|
1259
|
+
create(webhookCreateBody: WebhookCreateBody, options?: any): AxiosPromise<void>;
|
|
1194
1260
|
/**
|
|
1195
1261
|
*
|
|
1196
1262
|
* @param {CreateFSMembersBody} createFSMembersBody
|
|
@@ -1207,18 +1273,18 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
1207
1273
|
integrationsFsMembersDelete(destroyFSMembers: DestroyFSMembers, options?: any): AxiosPromise<DestroyMembersResponse>;
|
|
1208
1274
|
/**
|
|
1209
1275
|
*
|
|
1210
|
-
* @param {string}
|
|
1276
|
+
* @param {string} identifier
|
|
1211
1277
|
* @param {*} [options] Override http request option.
|
|
1212
1278
|
* @throws {RequiredError}
|
|
1213
1279
|
*/
|
|
1214
|
-
|
|
1280
|
+
membersIndex(identifier: string, options?: any): AxiosPromise<WrappedResponseFindMemberResultArrayOrNull>;
|
|
1215
1281
|
/**
|
|
1216
1282
|
*
|
|
1217
|
-
* @param {string}
|
|
1283
|
+
* @param {string} id
|
|
1218
1284
|
* @param {*} [options] Override http request option.
|
|
1219
1285
|
* @throws {RequiredError}
|
|
1220
1286
|
*/
|
|
1221
|
-
|
|
1287
|
+
membersShow(id: string, options?: any): AxiosPromise<WrappedResponseMembersShowResponse>;
|
|
1222
1288
|
/**
|
|
1223
1289
|
*
|
|
1224
1290
|
* @param {SyncBody} syncBody
|
|
@@ -1257,12 +1323,12 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
1257
1323
|
export declare class DefaultApi extends BaseAPI {
|
|
1258
1324
|
/**
|
|
1259
1325
|
*
|
|
1260
|
-
* @param {
|
|
1326
|
+
* @param {WebhookCreateBody} webhookCreateBody
|
|
1261
1327
|
* @param {*} [options] Override http request option.
|
|
1262
1328
|
* @throws {RequiredError}
|
|
1263
1329
|
* @memberof DefaultApi
|
|
1264
1330
|
*/
|
|
1265
|
-
create(
|
|
1331
|
+
create(webhookCreateBody: WebhookCreateBody, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1266
1332
|
/**
|
|
1267
1333
|
*
|
|
1268
1334
|
* @param {CreateFSMembersBody} createFSMembersBody
|
|
@@ -1281,20 +1347,20 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
1281
1347
|
integrationsFsMembersDelete(destroyFSMembers: DestroyFSMembers, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DestroyMembersResponse, any>>;
|
|
1282
1348
|
/**
|
|
1283
1349
|
*
|
|
1284
|
-
* @param {string}
|
|
1350
|
+
* @param {string} identifier
|
|
1285
1351
|
* @param {*} [options] Override http request option.
|
|
1286
1352
|
* @throws {RequiredError}
|
|
1287
1353
|
* @memberof DefaultApi
|
|
1288
1354
|
*/
|
|
1289
|
-
|
|
1355
|
+
membersIndex(identifier: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseFindMemberResultArrayOrNull, any>>;
|
|
1290
1356
|
/**
|
|
1291
1357
|
*
|
|
1292
|
-
* @param {string}
|
|
1358
|
+
* @param {string} id
|
|
1293
1359
|
* @param {*} [options] Override http request option.
|
|
1294
1360
|
* @throws {RequiredError}
|
|
1295
1361
|
* @memberof DefaultApi
|
|
1296
1362
|
*/
|
|
1297
|
-
|
|
1363
|
+
membersShow(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseMembersShowResponse, any>>;
|
|
1298
1364
|
/**
|
|
1299
1365
|
*
|
|
1300
1366
|
* @param {SyncBody} syncBody
|