@seamapi/types 1.421.1 → 1.422.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +1630 -583
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2627 -1024
- package/lib/seam/connect/internal/schemas.d.ts +1 -1
- package/lib/seam/connect/internal/schemas.js +1 -1
- package/lib/seam/connect/internal/schemas.js.map +1 -1
- package/lib/seam/connect/models/customer/access-grant-resources.d.ts +420 -0
- package/lib/seam/connect/models/customer/access-grant-resources.js +111 -0
- package/lib/seam/connect/models/customer/access-grant-resources.js.map +1 -0
- package/lib/seam/connect/models/customer/business-vertical.d.ts +3 -0
- package/lib/seam/connect/models/customer/business-vertical.js +11 -0
- package/lib/seam/connect/models/customer/business-vertical.js.map +1 -0
- package/lib/seam/connect/models/customer/customer-data.d.ts +597 -0
- package/lib/seam/connect/models/customer/customer-data.js +67 -0
- package/lib/seam/connect/models/customer/customer-data.js.map +1 -0
- package/lib/seam/connect/models/customer/customer-portal.d.ts +71 -0
- package/lib/seam/connect/models/customer/customer-portal.js +34 -0
- package/lib/seam/connect/models/customer/customer-portal.js.map +1 -0
- package/lib/seam/connect/models/customer/index.d.ts +3 -0
- package/lib/seam/connect/models/customer/index.js +4 -0
- package/lib/seam/connect/models/customer/index.js.map +1 -0
- package/lib/seam/connect/models/customer/location-resources.d.ts +229 -0
- package/lib/seam/connect/models/customer/location-resources.js +55 -0
- package/lib/seam/connect/models/customer/location-resources.js.map +1 -0
- package/lib/seam/connect/models/customer/user-identity-resources.d.ts +205 -0
- package/lib/seam/connect/models/customer/user-identity-resources.js +50 -0
- package/lib/seam/connect/models/customer/user-identity-resources.js.map +1 -0
- package/lib/seam/connect/models/index.d.ts +4 -0
- package/lib/seam/connect/models/index.js +4 -0
- package/lib/seam/connect/models/index.js.map +1 -1
- package/lib/seam/connect/models/partner/index.d.ts +0 -1
- package/lib/seam/connect/models/partner/index.js +0 -1
- package/lib/seam/connect/models/partner/index.js.map +1 -1
- package/lib/seam/connect/models/partner/magic-link.d.ts +2 -2
- package/lib/seam/connect/openapi.d.ts +1821 -658
- package/lib/seam/connect/openapi.js +1639 -592
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +552 -112
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +21 -3
- package/src/lib/seam/connect/models/customer/access-grant-resources.ts +129 -0
- package/src/lib/seam/connect/models/customer/business-vertical.ts +13 -0
- package/src/lib/seam/connect/models/customer/customer-data.ts +93 -0
- package/src/lib/seam/connect/models/customer/customer-portal.ts +39 -0
- package/src/lib/seam/connect/models/customer/index.ts +3 -0
- package/src/lib/seam/connect/models/customer/location-resources.ts +77 -0
- package/src/lib/seam/connect/models/customer/user-identity-resources.ts +68 -0
- package/src/lib/seam/connect/models/index.ts +4 -0
- package/src/lib/seam/connect/models/partner/index.ts +0 -1
- package/src/lib/seam/connect/openapi.ts +1794 -601
- package/src/lib/seam/connect/route-types.ts +642 -114
- package/lib/seam/connect/models/partner/resources.d.ts +0 -76
- package/lib/seam/connect/models/partner/resources.js +0 -87
- package/lib/seam/connect/models/partner/resources.js.map +0 -1
- package/src/lib/seam/connect/models/partner/resources.ts +0 -112
|
@@ -22486,6 +22486,512 @@ export interface Routes {
|
|
|
22486
22486
|
};
|
|
22487
22487
|
};
|
|
22488
22488
|
};
|
|
22489
|
+
'/customers/create_portal': {
|
|
22490
|
+
route: '/customers/create_portal';
|
|
22491
|
+
method: 'POST';
|
|
22492
|
+
queryParams: {};
|
|
22493
|
+
jsonBody: {};
|
|
22494
|
+
commonParams: {
|
|
22495
|
+
features?: {
|
|
22496
|
+
/** Configuration for the connect accounts feature. */
|
|
22497
|
+
connect?: {
|
|
22498
|
+
/** Whether to exclude this feature from the portal. */
|
|
22499
|
+
exclude?: boolean;
|
|
22500
|
+
};
|
|
22501
|
+
/** Configuration for the manage devices feature. */
|
|
22502
|
+
manage_devices?: {
|
|
22503
|
+
/** Whether to exclude this feature from the portal. */
|
|
22504
|
+
exclude?: boolean;
|
|
22505
|
+
};
|
|
22506
|
+
/** Configuration for the organize feature. */
|
|
22507
|
+
organize?: {
|
|
22508
|
+
/** Whether to exclude this feature from the portal. */
|
|
22509
|
+
exclude?: boolean;
|
|
22510
|
+
};
|
|
22511
|
+
};
|
|
22512
|
+
} & {
|
|
22513
|
+
customer_data?: {
|
|
22514
|
+
/** Your unique identifier for the customer. */
|
|
22515
|
+
customer_key: string;
|
|
22516
|
+
/** List of general spaces or areas. */
|
|
22517
|
+
spaces?: Array<{
|
|
22518
|
+
/** Your display name for this location resource. */
|
|
22519
|
+
name: string;
|
|
22520
|
+
/** Your unique identifier for the space. */
|
|
22521
|
+
space_key: string;
|
|
22522
|
+
}> | undefined;
|
|
22523
|
+
/** List of short-term rental properties. */
|
|
22524
|
+
properties?: Array<{
|
|
22525
|
+
/** Your display name for this location resource. */
|
|
22526
|
+
name: string;
|
|
22527
|
+
/** Your unique identifier for the property. */
|
|
22528
|
+
property_key: string;
|
|
22529
|
+
}> | undefined;
|
|
22530
|
+
/** List of hotel or hospitality rooms. */
|
|
22531
|
+
rooms?: Array<{
|
|
22532
|
+
/** Your display name for this location resource. */
|
|
22533
|
+
name: string;
|
|
22534
|
+
/** Your unique identifier for the room. */
|
|
22535
|
+
room_key: string;
|
|
22536
|
+
}> | undefined;
|
|
22537
|
+
/** List of shared common areas. */
|
|
22538
|
+
common_areas?: Array<{
|
|
22539
|
+
/** Your display name for this location resource. */
|
|
22540
|
+
name: string;
|
|
22541
|
+
/** Your unique identifier for the common area. */
|
|
22542
|
+
common_area_key: string;
|
|
22543
|
+
}> | undefined;
|
|
22544
|
+
/** List of multi-family residential units. */
|
|
22545
|
+
units?: Array<{
|
|
22546
|
+
/** Your display name for this location resource. */
|
|
22547
|
+
name: string;
|
|
22548
|
+
/** Your unique identifier for the unit. */
|
|
22549
|
+
unit_key: string;
|
|
22550
|
+
}> | undefined;
|
|
22551
|
+
/** List of gym or fitness facilities. */
|
|
22552
|
+
facilities?: Array<{
|
|
22553
|
+
/** Your display name for this location resource. */
|
|
22554
|
+
name: string;
|
|
22555
|
+
/** Your unique identifier for the facility. */
|
|
22556
|
+
facility_key: string;
|
|
22557
|
+
}> | undefined;
|
|
22558
|
+
/** List of buildings. */
|
|
22559
|
+
buildings?: Array<{
|
|
22560
|
+
/** Your display name for this location resource. */
|
|
22561
|
+
name: string;
|
|
22562
|
+
/** Your unique identifier for the building. */
|
|
22563
|
+
building_key: string;
|
|
22564
|
+
}> | undefined;
|
|
22565
|
+
/** List of property listings. */
|
|
22566
|
+
listings?: Array<{
|
|
22567
|
+
/** Your display name for this location resource. */
|
|
22568
|
+
name: string;
|
|
22569
|
+
/** Your unique identifier for the listing. */
|
|
22570
|
+
listing_key: string;
|
|
22571
|
+
}> | undefined;
|
|
22572
|
+
/** List of guests. */
|
|
22573
|
+
guests?: Array<{
|
|
22574
|
+
/** Your display name for this user identity resource. */
|
|
22575
|
+
name: string;
|
|
22576
|
+
/** Email address associated with the user identity. */
|
|
22577
|
+
email_address?: string | undefined;
|
|
22578
|
+
/** Phone number associated with the user identity. */
|
|
22579
|
+
phone_number?: string | undefined;
|
|
22580
|
+
/** Your unique identifier for the guest. */
|
|
22581
|
+
guest_key: string;
|
|
22582
|
+
}> | undefined;
|
|
22583
|
+
/** List of tenants. */
|
|
22584
|
+
tenants?: Array<{
|
|
22585
|
+
/** Your display name for this user identity resource. */
|
|
22586
|
+
name: string;
|
|
22587
|
+
/** Email address associated with the user identity. */
|
|
22588
|
+
email_address?: string | undefined;
|
|
22589
|
+
/** Phone number associated with the user identity. */
|
|
22590
|
+
phone_number?: string | undefined;
|
|
22591
|
+
/** Your unique identifier for the tenant. */
|
|
22592
|
+
tenant_key: string;
|
|
22593
|
+
}> | undefined;
|
|
22594
|
+
/** List of residents. */
|
|
22595
|
+
residents?: Array<{
|
|
22596
|
+
/** Your display name for this user identity resource. */
|
|
22597
|
+
name: string;
|
|
22598
|
+
/** Email address associated with the user identity. */
|
|
22599
|
+
email_address?: string | undefined;
|
|
22600
|
+
/** Phone number associated with the user identity. */
|
|
22601
|
+
phone_number?: string | undefined;
|
|
22602
|
+
/** Your unique identifier for the resident. */
|
|
22603
|
+
resident_key: string;
|
|
22604
|
+
}> | undefined;
|
|
22605
|
+
/** List of users. */
|
|
22606
|
+
users?: Array<{
|
|
22607
|
+
/** Your display name for this user identity resource. */
|
|
22608
|
+
name: string;
|
|
22609
|
+
/** Email address associated with the user identity. */
|
|
22610
|
+
email_address?: string | undefined;
|
|
22611
|
+
/** Phone number associated with the user identity. */
|
|
22612
|
+
phone_number?: string | undefined;
|
|
22613
|
+
/** Your unique identifier for the user. */
|
|
22614
|
+
user_key: string;
|
|
22615
|
+
}> | undefined;
|
|
22616
|
+
/** List of user identities. */
|
|
22617
|
+
user_identities?: Array<{
|
|
22618
|
+
/** Your display name for this user identity resource. */
|
|
22619
|
+
name: string;
|
|
22620
|
+
/** Email address associated with the user identity. */
|
|
22621
|
+
email_address?: string | undefined;
|
|
22622
|
+
/** Phone number associated with the user identity. */
|
|
22623
|
+
phone_number?: string | undefined;
|
|
22624
|
+
/** Your unique identifier for the user identity. */
|
|
22625
|
+
user_identity_key: string;
|
|
22626
|
+
}> | undefined;
|
|
22627
|
+
/** List of reservations. */
|
|
22628
|
+
reservations?: Array<{
|
|
22629
|
+
/** Your display name for this access grant resource. */
|
|
22630
|
+
name: string;
|
|
22631
|
+
/** Starting date and time for the access grant. */
|
|
22632
|
+
starts_at?: string | undefined;
|
|
22633
|
+
/** Ending date and time for the access grant. */
|
|
22634
|
+
ends_at?: string | undefined;
|
|
22635
|
+
/** Your unique identifier for the reservation. */
|
|
22636
|
+
reservation_key: string;
|
|
22637
|
+
/** Guest key associated with the access grant. */
|
|
22638
|
+
guest_key?: string | undefined;
|
|
22639
|
+
/** Tenant key associated with the access grant. */
|
|
22640
|
+
tenant_key?: string | undefined;
|
|
22641
|
+
/** Resident key associated with the access grant. */
|
|
22642
|
+
resident_key?: string | undefined;
|
|
22643
|
+
/** User key associated with the access grant. */
|
|
22644
|
+
user_key?: string | undefined;
|
|
22645
|
+
/** User identity key associated with the access grant. */
|
|
22646
|
+
user_identity_key?: string | undefined;
|
|
22647
|
+
/** Space keys associated with the access grant. */
|
|
22648
|
+
space_keys?: string[] | undefined;
|
|
22649
|
+
/** Property keys associated with the access grant. */
|
|
22650
|
+
property_keys?: string[] | undefined;
|
|
22651
|
+
/** Room keys associated with the access grant. */
|
|
22652
|
+
room_keys?: string[] | undefined;
|
|
22653
|
+
/** Common area keys associated with the access grant. */
|
|
22654
|
+
common_area_keys?: string[] | undefined;
|
|
22655
|
+
/** Unit keys associated with the access grant. */
|
|
22656
|
+
unit_keys?: string[] | undefined;
|
|
22657
|
+
/** Facility keys associated with the access grant. */
|
|
22658
|
+
facility_keys?: string[] | undefined;
|
|
22659
|
+
/** Building keys associated with the access grant. */
|
|
22660
|
+
building_keys?: string[] | undefined;
|
|
22661
|
+
/** Listing keys associated with the access grant. */
|
|
22662
|
+
listing_keys?: string[] | undefined;
|
|
22663
|
+
}> | undefined;
|
|
22664
|
+
/** List of bookings. */
|
|
22665
|
+
bookings?: Array<{
|
|
22666
|
+
/** Your display name for this access grant resource. */
|
|
22667
|
+
name: string;
|
|
22668
|
+
/** Starting date and time for the access grant. */
|
|
22669
|
+
starts_at?: string | undefined;
|
|
22670
|
+
/** Ending date and time for the access grant. */
|
|
22671
|
+
ends_at?: string | undefined;
|
|
22672
|
+
/** Your unique identifier for the booking. */
|
|
22673
|
+
booking_key: string;
|
|
22674
|
+
/** Guest key associated with the access grant. */
|
|
22675
|
+
guest_key?: string | undefined;
|
|
22676
|
+
/** Tenant key associated with the access grant. */
|
|
22677
|
+
tenant_key?: string | undefined;
|
|
22678
|
+
/** Resident key associated with the access grant. */
|
|
22679
|
+
resident_key?: string | undefined;
|
|
22680
|
+
/** User key associated with the access grant. */
|
|
22681
|
+
user_key?: string | undefined;
|
|
22682
|
+
/** User identity key associated with the access grant. */
|
|
22683
|
+
user_identity_key?: string | undefined;
|
|
22684
|
+
/** Space keys associated with the access grant. */
|
|
22685
|
+
space_keys?: string[] | undefined;
|
|
22686
|
+
/** Property keys associated with the access grant. */
|
|
22687
|
+
property_keys?: string[] | undefined;
|
|
22688
|
+
/** Room keys associated with the access grant. */
|
|
22689
|
+
room_keys?: string[] | undefined;
|
|
22690
|
+
/** Common area keys associated with the access grant. */
|
|
22691
|
+
common_area_keys?: string[] | undefined;
|
|
22692
|
+
/** Unit keys associated with the access grant. */
|
|
22693
|
+
unit_keys?: string[] | undefined;
|
|
22694
|
+
/** Facility keys associated with the access grant. */
|
|
22695
|
+
facility_keys?: string[] | undefined;
|
|
22696
|
+
/** Building keys associated with the access grant. */
|
|
22697
|
+
building_keys?: string[] | undefined;
|
|
22698
|
+
/** Listing keys associated with the access grant. */
|
|
22699
|
+
listing_keys?: string[] | undefined;
|
|
22700
|
+
}> | undefined;
|
|
22701
|
+
/** List of access grants. */
|
|
22702
|
+
access_grants?: Array<{
|
|
22703
|
+
/** Your display name for this access grant resource. */
|
|
22704
|
+
name: string;
|
|
22705
|
+
/** Starting date and time for the access grant. */
|
|
22706
|
+
starts_at?: string | undefined;
|
|
22707
|
+
/** Ending date and time for the access grant. */
|
|
22708
|
+
ends_at?: string | undefined;
|
|
22709
|
+
/** Your unique identifier for the access grant. */
|
|
22710
|
+
access_grant_key: string;
|
|
22711
|
+
/** Guest key associated with the access grant. */
|
|
22712
|
+
guest_key?: string | undefined;
|
|
22713
|
+
/** Tenant key associated with the access grant. */
|
|
22714
|
+
tenant_key?: string | undefined;
|
|
22715
|
+
/** Resident key associated with the access grant. */
|
|
22716
|
+
resident_key?: string | undefined;
|
|
22717
|
+
/** User key associated with the access grant. */
|
|
22718
|
+
user_key?: string | undefined;
|
|
22719
|
+
/** User identity key associated with the access grant. */
|
|
22720
|
+
user_identity_key?: string | undefined;
|
|
22721
|
+
/** Space keys associated with the access grant. */
|
|
22722
|
+
space_keys?: string[] | undefined;
|
|
22723
|
+
/** Property keys associated with the access grant. */
|
|
22724
|
+
property_keys?: string[] | undefined;
|
|
22725
|
+
/** Room keys associated with the access grant. */
|
|
22726
|
+
room_keys?: string[] | undefined;
|
|
22727
|
+
/** Common area keys associated with the access grant. */
|
|
22728
|
+
common_area_keys?: string[] | undefined;
|
|
22729
|
+
/** Unit keys associated with the access grant. */
|
|
22730
|
+
unit_keys?: string[] | undefined;
|
|
22731
|
+
/** Facility keys associated with the access grant. */
|
|
22732
|
+
facility_keys?: string[] | undefined;
|
|
22733
|
+
/** Building keys associated with the access grant. */
|
|
22734
|
+
building_keys?: string[] | undefined;
|
|
22735
|
+
/** Listing keys associated with the access grant. */
|
|
22736
|
+
listing_keys?: string[] | undefined;
|
|
22737
|
+
}> | undefined;
|
|
22738
|
+
} | undefined;
|
|
22739
|
+
};
|
|
22740
|
+
formData: {};
|
|
22741
|
+
jsonResponse: {
|
|
22742
|
+
/** Represents a Customer Portal. Customer Portal is a hosted, customizable interface for managing device access. It enables you to embed secure, pre-authenticated access flows into your product—either by sharing a link with users or embedding a view in an iframe.
|
|
22743
|
+
|
|
22744
|
+
With Customer Portal, you no longer need to build out frontend experiences for physical access, thermostats, and sensors. Instead, you can ship enterprise-grade access control experiences in a fraction of the time, while maintaining your product's branding and user experience.
|
|
22745
|
+
|
|
22746
|
+
Seam hosts these flows, handling everything from account connection and device mapping to full-featured device control. */
|
|
22747
|
+
magic_link: {
|
|
22748
|
+
/** URL for the magic link. */
|
|
22749
|
+
url: string;
|
|
22750
|
+
/** Customer key for the magic link. */
|
|
22751
|
+
customer_key: string;
|
|
22752
|
+
/** Date and time at which the magic link expires. */
|
|
22753
|
+
expires_at: string;
|
|
22754
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the magic link. */
|
|
22755
|
+
workspace_id: string;
|
|
22756
|
+
/** Date and time at which the magic link was created. */
|
|
22757
|
+
created_at: string;
|
|
22758
|
+
};
|
|
22759
|
+
};
|
|
22760
|
+
};
|
|
22761
|
+
'/customers/push_data': {
|
|
22762
|
+
route: '/customers/push_data';
|
|
22763
|
+
method: 'POST';
|
|
22764
|
+
queryParams: {};
|
|
22765
|
+
jsonBody: {};
|
|
22766
|
+
commonParams: {
|
|
22767
|
+
/** Your unique identifier for the customer. */
|
|
22768
|
+
customer_key: string;
|
|
22769
|
+
/** List of general spaces or areas. */
|
|
22770
|
+
spaces?: Array<{
|
|
22771
|
+
/** Your display name for this location resource. */
|
|
22772
|
+
name: string;
|
|
22773
|
+
/** Your unique identifier for the space. */
|
|
22774
|
+
space_key: string;
|
|
22775
|
+
}> | undefined;
|
|
22776
|
+
/** List of short-term rental properties. */
|
|
22777
|
+
properties?: Array<{
|
|
22778
|
+
/** Your display name for this location resource. */
|
|
22779
|
+
name: string;
|
|
22780
|
+
/** Your unique identifier for the property. */
|
|
22781
|
+
property_key: string;
|
|
22782
|
+
}> | undefined;
|
|
22783
|
+
/** List of hotel or hospitality rooms. */
|
|
22784
|
+
rooms?: Array<{
|
|
22785
|
+
/** Your display name for this location resource. */
|
|
22786
|
+
name: string;
|
|
22787
|
+
/** Your unique identifier for the room. */
|
|
22788
|
+
room_key: string;
|
|
22789
|
+
}> | undefined;
|
|
22790
|
+
/** List of shared common areas. */
|
|
22791
|
+
common_areas?: Array<{
|
|
22792
|
+
/** Your display name for this location resource. */
|
|
22793
|
+
name: string;
|
|
22794
|
+
/** Your unique identifier for the common area. */
|
|
22795
|
+
common_area_key: string;
|
|
22796
|
+
}> | undefined;
|
|
22797
|
+
/** List of multi-family residential units. */
|
|
22798
|
+
units?: Array<{
|
|
22799
|
+
/** Your display name for this location resource. */
|
|
22800
|
+
name: string;
|
|
22801
|
+
/** Your unique identifier for the unit. */
|
|
22802
|
+
unit_key: string;
|
|
22803
|
+
}> | undefined;
|
|
22804
|
+
/** List of gym or fitness facilities. */
|
|
22805
|
+
facilities?: Array<{
|
|
22806
|
+
/** Your display name for this location resource. */
|
|
22807
|
+
name: string;
|
|
22808
|
+
/** Your unique identifier for the facility. */
|
|
22809
|
+
facility_key: string;
|
|
22810
|
+
}> | undefined;
|
|
22811
|
+
/** List of buildings. */
|
|
22812
|
+
buildings?: Array<{
|
|
22813
|
+
/** Your display name for this location resource. */
|
|
22814
|
+
name: string;
|
|
22815
|
+
/** Your unique identifier for the building. */
|
|
22816
|
+
building_key: string;
|
|
22817
|
+
}> | undefined;
|
|
22818
|
+
/** List of property listings. */
|
|
22819
|
+
listings?: Array<{
|
|
22820
|
+
/** Your display name for this location resource. */
|
|
22821
|
+
name: string;
|
|
22822
|
+
/** Your unique identifier for the listing. */
|
|
22823
|
+
listing_key: string;
|
|
22824
|
+
}> | undefined;
|
|
22825
|
+
/** List of guests. */
|
|
22826
|
+
guests?: Array<{
|
|
22827
|
+
/** Your display name for this user identity resource. */
|
|
22828
|
+
name: string;
|
|
22829
|
+
/** Email address associated with the user identity. */
|
|
22830
|
+
email_address?: string | undefined;
|
|
22831
|
+
/** Phone number associated with the user identity. */
|
|
22832
|
+
phone_number?: string | undefined;
|
|
22833
|
+
/** Your unique identifier for the guest. */
|
|
22834
|
+
guest_key: string;
|
|
22835
|
+
}> | undefined;
|
|
22836
|
+
/** List of tenants. */
|
|
22837
|
+
tenants?: Array<{
|
|
22838
|
+
/** Your display name for this user identity resource. */
|
|
22839
|
+
name: string;
|
|
22840
|
+
/** Email address associated with the user identity. */
|
|
22841
|
+
email_address?: string | undefined;
|
|
22842
|
+
/** Phone number associated with the user identity. */
|
|
22843
|
+
phone_number?: string | undefined;
|
|
22844
|
+
/** Your unique identifier for the tenant. */
|
|
22845
|
+
tenant_key: string;
|
|
22846
|
+
}> | undefined;
|
|
22847
|
+
/** List of residents. */
|
|
22848
|
+
residents?: Array<{
|
|
22849
|
+
/** Your display name for this user identity resource. */
|
|
22850
|
+
name: string;
|
|
22851
|
+
/** Email address associated with the user identity. */
|
|
22852
|
+
email_address?: string | undefined;
|
|
22853
|
+
/** Phone number associated with the user identity. */
|
|
22854
|
+
phone_number?: string | undefined;
|
|
22855
|
+
/** Your unique identifier for the resident. */
|
|
22856
|
+
resident_key: string;
|
|
22857
|
+
}> | undefined;
|
|
22858
|
+
/** List of users. */
|
|
22859
|
+
users?: Array<{
|
|
22860
|
+
/** Your display name for this user identity resource. */
|
|
22861
|
+
name: string;
|
|
22862
|
+
/** Email address associated with the user identity. */
|
|
22863
|
+
email_address?: string | undefined;
|
|
22864
|
+
/** Phone number associated with the user identity. */
|
|
22865
|
+
phone_number?: string | undefined;
|
|
22866
|
+
/** Your unique identifier for the user. */
|
|
22867
|
+
user_key: string;
|
|
22868
|
+
}> | undefined;
|
|
22869
|
+
/** List of user identities. */
|
|
22870
|
+
user_identities?: Array<{
|
|
22871
|
+
/** Your display name for this user identity resource. */
|
|
22872
|
+
name: string;
|
|
22873
|
+
/** Email address associated with the user identity. */
|
|
22874
|
+
email_address?: string | undefined;
|
|
22875
|
+
/** Phone number associated with the user identity. */
|
|
22876
|
+
phone_number?: string | undefined;
|
|
22877
|
+
/** Your unique identifier for the user identity. */
|
|
22878
|
+
user_identity_key: string;
|
|
22879
|
+
}> | undefined;
|
|
22880
|
+
/** List of reservations. */
|
|
22881
|
+
reservations?: Array<{
|
|
22882
|
+
/** Your display name for this access grant resource. */
|
|
22883
|
+
name: string;
|
|
22884
|
+
/** Starting date and time for the access grant. */
|
|
22885
|
+
starts_at?: string | undefined;
|
|
22886
|
+
/** Ending date and time for the access grant. */
|
|
22887
|
+
ends_at?: string | undefined;
|
|
22888
|
+
/** Your unique identifier for the reservation. */
|
|
22889
|
+
reservation_key: string;
|
|
22890
|
+
/** Guest key associated with the access grant. */
|
|
22891
|
+
guest_key?: string | undefined;
|
|
22892
|
+
/** Tenant key associated with the access grant. */
|
|
22893
|
+
tenant_key?: string | undefined;
|
|
22894
|
+
/** Resident key associated with the access grant. */
|
|
22895
|
+
resident_key?: string | undefined;
|
|
22896
|
+
/** User key associated with the access grant. */
|
|
22897
|
+
user_key?: string | undefined;
|
|
22898
|
+
/** User identity key associated with the access grant. */
|
|
22899
|
+
user_identity_key?: string | undefined;
|
|
22900
|
+
/** Space keys associated with the access grant. */
|
|
22901
|
+
space_keys?: string[] | undefined;
|
|
22902
|
+
/** Property keys associated with the access grant. */
|
|
22903
|
+
property_keys?: string[] | undefined;
|
|
22904
|
+
/** Room keys associated with the access grant. */
|
|
22905
|
+
room_keys?: string[] | undefined;
|
|
22906
|
+
/** Common area keys associated with the access grant. */
|
|
22907
|
+
common_area_keys?: string[] | undefined;
|
|
22908
|
+
/** Unit keys associated with the access grant. */
|
|
22909
|
+
unit_keys?: string[] | undefined;
|
|
22910
|
+
/** Facility keys associated with the access grant. */
|
|
22911
|
+
facility_keys?: string[] | undefined;
|
|
22912
|
+
/** Building keys associated with the access grant. */
|
|
22913
|
+
building_keys?: string[] | undefined;
|
|
22914
|
+
/** Listing keys associated with the access grant. */
|
|
22915
|
+
listing_keys?: string[] | undefined;
|
|
22916
|
+
}> | undefined;
|
|
22917
|
+
/** List of bookings. */
|
|
22918
|
+
bookings?: Array<{
|
|
22919
|
+
/** Your display name for this access grant resource. */
|
|
22920
|
+
name: string;
|
|
22921
|
+
/** Starting date and time for the access grant. */
|
|
22922
|
+
starts_at?: string | undefined;
|
|
22923
|
+
/** Ending date and time for the access grant. */
|
|
22924
|
+
ends_at?: string | undefined;
|
|
22925
|
+
/** Your unique identifier for the booking. */
|
|
22926
|
+
booking_key: string;
|
|
22927
|
+
/** Guest key associated with the access grant. */
|
|
22928
|
+
guest_key?: string | undefined;
|
|
22929
|
+
/** Tenant key associated with the access grant. */
|
|
22930
|
+
tenant_key?: string | undefined;
|
|
22931
|
+
/** Resident key associated with the access grant. */
|
|
22932
|
+
resident_key?: string | undefined;
|
|
22933
|
+
/** User key associated with the access grant. */
|
|
22934
|
+
user_key?: string | undefined;
|
|
22935
|
+
/** User identity key associated with the access grant. */
|
|
22936
|
+
user_identity_key?: string | undefined;
|
|
22937
|
+
/** Space keys associated with the access grant. */
|
|
22938
|
+
space_keys?: string[] | undefined;
|
|
22939
|
+
/** Property keys associated with the access grant. */
|
|
22940
|
+
property_keys?: string[] | undefined;
|
|
22941
|
+
/** Room keys associated with the access grant. */
|
|
22942
|
+
room_keys?: string[] | undefined;
|
|
22943
|
+
/** Common area keys associated with the access grant. */
|
|
22944
|
+
common_area_keys?: string[] | undefined;
|
|
22945
|
+
/** Unit keys associated with the access grant. */
|
|
22946
|
+
unit_keys?: string[] | undefined;
|
|
22947
|
+
/** Facility keys associated with the access grant. */
|
|
22948
|
+
facility_keys?: string[] | undefined;
|
|
22949
|
+
/** Building keys associated with the access grant. */
|
|
22950
|
+
building_keys?: string[] | undefined;
|
|
22951
|
+
/** Listing keys associated with the access grant. */
|
|
22952
|
+
listing_keys?: string[] | undefined;
|
|
22953
|
+
}> | undefined;
|
|
22954
|
+
/** List of access grants. */
|
|
22955
|
+
access_grants?: Array<{
|
|
22956
|
+
/** Your display name for this access grant resource. */
|
|
22957
|
+
name: string;
|
|
22958
|
+
/** Starting date and time for the access grant. */
|
|
22959
|
+
starts_at?: string | undefined;
|
|
22960
|
+
/** Ending date and time for the access grant. */
|
|
22961
|
+
ends_at?: string | undefined;
|
|
22962
|
+
/** Your unique identifier for the access grant. */
|
|
22963
|
+
access_grant_key: string;
|
|
22964
|
+
/** Guest key associated with the access grant. */
|
|
22965
|
+
guest_key?: string | undefined;
|
|
22966
|
+
/** Tenant key associated with the access grant. */
|
|
22967
|
+
tenant_key?: string | undefined;
|
|
22968
|
+
/** Resident key associated with the access grant. */
|
|
22969
|
+
resident_key?: string | undefined;
|
|
22970
|
+
/** User key associated with the access grant. */
|
|
22971
|
+
user_key?: string | undefined;
|
|
22972
|
+
/** User identity key associated with the access grant. */
|
|
22973
|
+
user_identity_key?: string | undefined;
|
|
22974
|
+
/** Space keys associated with the access grant. */
|
|
22975
|
+
space_keys?: string[] | undefined;
|
|
22976
|
+
/** Property keys associated with the access grant. */
|
|
22977
|
+
property_keys?: string[] | undefined;
|
|
22978
|
+
/** Room keys associated with the access grant. */
|
|
22979
|
+
room_keys?: string[] | undefined;
|
|
22980
|
+
/** Common area keys associated with the access grant. */
|
|
22981
|
+
common_area_keys?: string[] | undefined;
|
|
22982
|
+
/** Unit keys associated with the access grant. */
|
|
22983
|
+
unit_keys?: string[] | undefined;
|
|
22984
|
+
/** Facility keys associated with the access grant. */
|
|
22985
|
+
facility_keys?: string[] | undefined;
|
|
22986
|
+
/** Building keys associated with the access grant. */
|
|
22987
|
+
building_keys?: string[] | undefined;
|
|
22988
|
+
/** Listing keys associated with the access grant. */
|
|
22989
|
+
listing_keys?: string[] | undefined;
|
|
22990
|
+
}> | undefined;
|
|
22991
|
+
};
|
|
22992
|
+
formData: {};
|
|
22993
|
+
jsonResponse: {};
|
|
22994
|
+
};
|
|
22489
22995
|
'/devices/delete': {
|
|
22490
22996
|
route: '/devices/delete';
|
|
22491
22997
|
method: 'DELETE' | 'POST';
|
|
@@ -45221,6 +45727,46 @@ export interface Routes {
|
|
|
45221
45727
|
}>;
|
|
45222
45728
|
};
|
|
45223
45729
|
};
|
|
45730
|
+
'/seam/customer/v1/portals/get': {
|
|
45731
|
+
route: '/seam/customer/v1/portals/get';
|
|
45732
|
+
method: 'GET';
|
|
45733
|
+
queryParams: {};
|
|
45734
|
+
jsonBody: {};
|
|
45735
|
+
commonParams: {
|
|
45736
|
+
/** Customer portal ID. */
|
|
45737
|
+
customer_portal_id: string;
|
|
45738
|
+
};
|
|
45739
|
+
formData: {};
|
|
45740
|
+
jsonResponse: {
|
|
45741
|
+
customer_portal: {
|
|
45742
|
+
features?: {
|
|
45743
|
+
connect?: {
|
|
45744
|
+
exclude?: boolean | undefined;
|
|
45745
|
+
} | undefined;
|
|
45746
|
+
manage_devices?: {
|
|
45747
|
+
exclude?: boolean | undefined;
|
|
45748
|
+
} | undefined;
|
|
45749
|
+
organize?: {
|
|
45750
|
+
exclude?: boolean | undefined;
|
|
45751
|
+
} | undefined;
|
|
45752
|
+
} | undefined;
|
|
45753
|
+
/** Business vertical of the customer portal. */
|
|
45754
|
+
business_vertical?: ('short_term_rental' | 'hospitality' | 'multi_family' | 'gym_management' | 'property_tours') | undefined;
|
|
45755
|
+
};
|
|
45756
|
+
};
|
|
45757
|
+
};
|
|
45758
|
+
'/seam/customer/v1/settings/update': {
|
|
45759
|
+
route: '/seam/customer/v1/settings/update';
|
|
45760
|
+
method: 'POST' | 'PATCH';
|
|
45761
|
+
queryParams: {};
|
|
45762
|
+
jsonBody: {
|
|
45763
|
+
/** Business vertical to set on the workspace. */
|
|
45764
|
+
business_vertical?: ('short_term_rental' | 'hospitality' | 'multi_family' | 'gym_management' | 'property_tours') | undefined;
|
|
45765
|
+
};
|
|
45766
|
+
commonParams: {};
|
|
45767
|
+
formData: {};
|
|
45768
|
+
jsonResponse: {};
|
|
45769
|
+
};
|
|
45224
45770
|
'/seam/instant_key/v1/client_sessions/exchange_short_code': {
|
|
45225
45771
|
route: '/seam/instant_key/v1/client_sessions/exchange_short_code';
|
|
45226
45772
|
method: 'POST';
|
|
@@ -45689,45 +46235,6 @@ export interface Routes {
|
|
|
45689
46235
|
}>;
|
|
45690
46236
|
};
|
|
45691
46237
|
};
|
|
45692
|
-
'/seam/partner/v1/resources/list': {
|
|
45693
|
-
route: '/seam/partner/v1/resources/list';
|
|
45694
|
-
method: 'GET' | 'POST';
|
|
45695
|
-
queryParams: {};
|
|
45696
|
-
jsonBody: {};
|
|
45697
|
-
commonParams: {
|
|
45698
|
-
/** Resource type alias by which you want to filter partner resources. */
|
|
45699
|
-
resource_type_alias?: string | undefined;
|
|
45700
|
-
};
|
|
45701
|
-
formData: {};
|
|
45702
|
-
jsonResponse: {
|
|
45703
|
-
partner_resources: Array<{
|
|
45704
|
-
/** Type of the partner resource. */
|
|
45705
|
-
partner_resource_type: string;
|
|
45706
|
-
/** Key of the partner resource. */
|
|
45707
|
-
partner_resource_key: string;
|
|
45708
|
-
/** Customer key associated with the partner resource. */
|
|
45709
|
-
customer_key: string;
|
|
45710
|
-
/** Email address associated with the user identity partner resource. */
|
|
45711
|
-
email_address?: string | undefined;
|
|
45712
|
-
/** Phone number associated with the user identity partner resource. */
|
|
45713
|
-
phone_number?: string | undefined;
|
|
45714
|
-
/** Starting date and time associated with the access grant partner resource. */
|
|
45715
|
-
starts_at?: string | undefined;
|
|
45716
|
-
/** Ending date and time associated with the access grant partner resource. */
|
|
45717
|
-
ends_at?: string | undefined;
|
|
45718
|
-
/** User identity key associated with the access grant partner resource. */
|
|
45719
|
-
user_identity_key?: string | undefined;
|
|
45720
|
-
/** Location keys associated with the access grant partner resource. */
|
|
45721
|
-
location_keys?: string[] | undefined;
|
|
45722
|
-
/** Name of the partner resource. */
|
|
45723
|
-
name?: string | undefined;
|
|
45724
|
-
/** Description of the partner resource. */
|
|
45725
|
-
description?: string | undefined;
|
|
45726
|
-
/** Custom metadata associated with the partner resource. */
|
|
45727
|
-
custom_metadata?: Record<string, string> | undefined;
|
|
45728
|
-
}>;
|
|
45729
|
-
};
|
|
45730
|
-
};
|
|
45731
46238
|
'/spaces/add_acs_entrances': {
|
|
45732
46239
|
route: '/spaces/add_acs_entrances';
|
|
45733
46240
|
method: 'POST' | 'PUT';
|
|
@@ -62126,14 +62633,10 @@ export interface Routes {
|
|
|
62126
62633
|
customer_key: string;
|
|
62127
62634
|
/** Optional list of spaces that you want to include in the new building block magic link. */
|
|
62128
62635
|
spaces?: Array<{
|
|
62129
|
-
/**
|
|
62130
|
-
space_key: string;
|
|
62131
|
-
/** Name of the space resource. */
|
|
62636
|
+
/** Your display name for this location resource. */
|
|
62132
62637
|
name: string;
|
|
62133
|
-
/**
|
|
62134
|
-
|
|
62135
|
-
/** Custom metadata associated with the space resource. */
|
|
62136
|
-
custom_metadata?: Record<string, string> | undefined;
|
|
62638
|
+
/** Your unique identifier for the space. */
|
|
62639
|
+
space_key: string;
|
|
62137
62640
|
}> | undefined;
|
|
62138
62641
|
};
|
|
62139
62642
|
formData: {};
|
|
@@ -62201,14 +62704,10 @@ export interface Routes {
|
|
|
62201
62704
|
customer_key: string;
|
|
62202
62705
|
/** Optional list of spaces that you want to include in the new building block magic link. */
|
|
62203
62706
|
spaces?: Array<{
|
|
62204
|
-
/**
|
|
62205
|
-
space_key: string;
|
|
62206
|
-
/** Name of the space resource. */
|
|
62707
|
+
/** Your display name for this location resource. */
|
|
62207
62708
|
name: string;
|
|
62208
|
-
/**
|
|
62209
|
-
|
|
62210
|
-
/** Custom metadata associated with the space resource. */
|
|
62211
|
-
custom_metadata?: Record<string, string> | undefined;
|
|
62709
|
+
/** Your unique identifier for the space. */
|
|
62710
|
+
space_key: string;
|
|
62212
62711
|
}> | undefined;
|
|
62213
62712
|
};
|
|
62214
62713
|
formData: {};
|
|
@@ -62234,65 +62733,6 @@ export interface Routes {
|
|
|
62234
62733
|
};
|
|
62235
62734
|
};
|
|
62236
62735
|
};
|
|
62237
|
-
'/unstable_partner/resources/push': {
|
|
62238
|
-
route: '/unstable_partner/resources/push';
|
|
62239
|
-
method: 'POST';
|
|
62240
|
-
queryParams: {};
|
|
62241
|
-
jsonBody: Array<{
|
|
62242
|
-
/** Type of the resource that you want to push to Seam. */
|
|
62243
|
-
partner_resource_type?: string | undefined;
|
|
62244
|
-
/** Key of the resource that you want to push to Seam. */
|
|
62245
|
-
partner_resource_key?: string | undefined;
|
|
62246
|
-
/** Customer key associated with the resource that you want to push to Seam. */
|
|
62247
|
-
customer_key?: string | undefined;
|
|
62248
|
-
/** Email address associated with the user identity partner resource. */
|
|
62249
|
-
email_address?: string | undefined;
|
|
62250
|
-
/** Phone number associated with the user identity partner resource. */
|
|
62251
|
-
phone_number?: string | undefined;
|
|
62252
|
-
/** Starting date and time associated with the access grant partner resource. */
|
|
62253
|
-
starts_at?: string | undefined;
|
|
62254
|
-
/** Ending date and time associated with the access grant partner resource. */
|
|
62255
|
-
ends_at?: string | undefined;
|
|
62256
|
-
/** User identity key associated with the access grant partner resource. */
|
|
62257
|
-
user_identity_key?: string | undefined;
|
|
62258
|
-
/** Location keys associated with the access grant partner resource. */
|
|
62259
|
-
location_keys?: string[] | undefined;
|
|
62260
|
-
/** Name of the partner resource. */
|
|
62261
|
-
name?: string | undefined;
|
|
62262
|
-
/** Description of the partner resource. */
|
|
62263
|
-
description?: string | undefined;
|
|
62264
|
-
/** Custom metadata associated with the partner resource. */
|
|
62265
|
-
custom_metadata?: Record<string, string> | undefined;
|
|
62266
|
-
}> | {
|
|
62267
|
-
/** Type of the resource that you want to push to Seam. */
|
|
62268
|
-
partner_resource_type?: string | undefined;
|
|
62269
|
-
/** Key of the resource that you want to push to Seam. */
|
|
62270
|
-
partner_resource_key?: string | undefined;
|
|
62271
|
-
/** Customer key associated with the resource that you want to push to Seam. */
|
|
62272
|
-
customer_key?: string | undefined;
|
|
62273
|
-
/** Email address associated with the user identity partner resource. */
|
|
62274
|
-
email_address?: string | undefined;
|
|
62275
|
-
/** Phone number associated with the user identity partner resource. */
|
|
62276
|
-
phone_number?: string | undefined;
|
|
62277
|
-
/** Starting date and time associated with the access grant partner resource. */
|
|
62278
|
-
starts_at?: string | undefined;
|
|
62279
|
-
/** Ending date and time associated with the access grant partner resource. */
|
|
62280
|
-
ends_at?: string | undefined;
|
|
62281
|
-
/** User identity key associated with the access grant partner resource. */
|
|
62282
|
-
user_identity_key?: string | undefined;
|
|
62283
|
-
/** Location keys associated with the access grant partner resource. */
|
|
62284
|
-
location_keys?: string[] | undefined;
|
|
62285
|
-
/** Name of the partner resource. */
|
|
62286
|
-
name?: string | undefined;
|
|
62287
|
-
/** Description of the partner resource. */
|
|
62288
|
-
description?: string | undefined;
|
|
62289
|
-
/** Custom metadata associated with the partner resource. */
|
|
62290
|
-
custom_metadata?: Record<string, string> | undefined;
|
|
62291
|
-
};
|
|
62292
|
-
commonParams: {};
|
|
62293
|
-
formData: {};
|
|
62294
|
-
jsonResponse: {};
|
|
62295
|
-
};
|
|
62296
62736
|
'/user_identities/add_acs_user': {
|
|
62297
62737
|
route: '/user_identities/add_acs_user';
|
|
62298
62738
|
method: 'POST' | 'PUT';
|