@seamapi/types 1.596.0 → 1.598.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 +222 -11
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +267 -13
- package/dist/index.cjs +222 -11
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customer/customer-portal.d.ts +436 -0
- package/lib/seam/connect/models/customer/customer-portal.js +22 -6
- package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +211 -0
- package/lib/seam/connect/openapi.js +222 -11
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +56 -13
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/customer-portal.ts +38 -19
- package/src/lib/seam/connect/openapi.ts +268 -11
- package/src/lib/seam/connect/route-types.ts +62 -31
|
@@ -35479,7 +35479,7 @@ export type Routes = {
|
|
|
35479
35479
|
user_identity_ids?: string[] | undefined
|
|
35480
35480
|
/** ID of the [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session (or that are already associated with the existing client session). */
|
|
35481
35481
|
user_identity_id?: string | undefined
|
|
35482
|
-
/** Date and time at which the client session should expire
|
|
35482
|
+
/** Date and time at which the client session should expire in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. If the client session already exists, this will update the expiration before returning it. */
|
|
35483
35483
|
expires_at?: Date | undefined
|
|
35484
35484
|
}
|
|
35485
35485
|
commonParams: {}
|
|
@@ -36535,10 +36535,24 @@ export type Routes = {
|
|
|
36535
36535
|
/** List of provider keys to exclude from the connect feature. These providers will not be shown when the customer tries to connect an account. */
|
|
36536
36536
|
excluded_providers?: string[] | undefined
|
|
36537
36537
|
}
|
|
36538
|
+
/** Configuration for the manage reservations feature. */
|
|
36539
|
+
manage_reservations?: {
|
|
36540
|
+
/** Whether to exclude this feature from the portal. */
|
|
36541
|
+
exclude?: boolean
|
|
36542
|
+
/** Configuration for the reservations feature. */
|
|
36543
|
+
reservations?: {
|
|
36544
|
+
/** Indicates whether the customer can view reservations for their properties. */
|
|
36545
|
+
exclude?: boolean
|
|
36546
|
+
}
|
|
36547
|
+
}
|
|
36538
36548
|
/** Configuration for the manage devices feature. */
|
|
36539
36549
|
manage_devices?: {
|
|
36540
36550
|
/** Whether to exclude this feature from the portal. */
|
|
36541
36551
|
exclude?: boolean
|
|
36552
|
+
/** List of provider keys to allow for the connect feature. These providers will be shown when the customer tries to connect an account. */
|
|
36553
|
+
accepted_providers?: string[] | undefined
|
|
36554
|
+
/** List of provider keys to exclude from the connect feature. These providers will not be shown when the customer tries to connect an account. */
|
|
36555
|
+
excluded_providers?: string[] | undefined
|
|
36542
36556
|
}
|
|
36543
36557
|
/** Configuration for the organize feature. */
|
|
36544
36558
|
organize?: {
|
|
@@ -69797,36 +69811,53 @@ export type Routes = {
|
|
|
69797
69811
|
formData: {}
|
|
69798
69812
|
jsonResponse: {
|
|
69799
69813
|
customer_portal: {
|
|
69800
|
-
features?:
|
|
69801
|
-
|
|
69802
|
-
|
|
69803
|
-
|
|
69804
|
-
|
|
69805
|
-
|
|
69806
|
-
|
|
69807
|
-
|
|
69808
|
-
|
|
69809
|
-
|
|
69810
|
-
|
|
69811
|
-
|
|
69812
|
-
|
|
69813
|
-
|
|
69814
|
-
|
|
69815
|
-
|
|
69816
|
-
|
|
69817
|
-
|
|
69818
|
-
|
|
69819
|
-
|
|
69820
|
-
|
|
69821
|
-
|
|
69822
|
-
|
|
69823
|
-
|
|
69824
|
-
|
|
69825
|
-
|
|
69826
|
-
|
|
69827
|
-
|
|
69828
|
-
|
|
69829
|
-
|
|
69814
|
+
features?: {
|
|
69815
|
+
/** Configuration for the connect accounts feature. */
|
|
69816
|
+
connect?: {
|
|
69817
|
+
/** Whether to exclude this feature from the portal. */
|
|
69818
|
+
exclude?: boolean
|
|
69819
|
+
/** List of provider keys to allow for the connect feature. These providers will be shown when the customer tries to connect an account. */
|
|
69820
|
+
accepted_providers?: string[] | undefined
|
|
69821
|
+
/** List of provider keys to exclude from the connect feature. These providers will not be shown when the customer tries to connect an account. */
|
|
69822
|
+
excluded_providers?: string[] | undefined
|
|
69823
|
+
}
|
|
69824
|
+
/** Configuration for the manage reservations feature. */
|
|
69825
|
+
manage_reservations?: {
|
|
69826
|
+
/** Whether to exclude this feature from the portal. */
|
|
69827
|
+
exclude?: boolean
|
|
69828
|
+
/** Configuration for the reservations feature. */
|
|
69829
|
+
reservations?: {
|
|
69830
|
+
/** Indicates whether the customer can view reservations for their properties. */
|
|
69831
|
+
exclude?: boolean
|
|
69832
|
+
}
|
|
69833
|
+
}
|
|
69834
|
+
/** Configuration for the manage devices feature. */
|
|
69835
|
+
manage_devices?: {
|
|
69836
|
+
/** Whether to exclude this feature from the portal. */
|
|
69837
|
+
exclude?: boolean
|
|
69838
|
+
/** List of provider keys to allow for the connect feature. These providers will be shown when the customer tries to connect an account. */
|
|
69839
|
+
accepted_providers?: string[] | undefined
|
|
69840
|
+
/** List of provider keys to exclude from the connect feature. These providers will not be shown when the customer tries to connect an account. */
|
|
69841
|
+
excluded_providers?: string[] | undefined
|
|
69842
|
+
}
|
|
69843
|
+
/** Configuration for the organize feature. */
|
|
69844
|
+
organize?: {
|
|
69845
|
+
/** Whether to exclude this feature from the portal. */
|
|
69846
|
+
exclude?: boolean
|
|
69847
|
+
}
|
|
69848
|
+
/** Configuration for the configure feature. */
|
|
69849
|
+
configure?: {
|
|
69850
|
+
/** Whether to exclude this feature from the portal. */
|
|
69851
|
+
exclude?: boolean
|
|
69852
|
+
/** Indicates whether the customer can customize the access automation rules for their properties. */
|
|
69853
|
+
allow_access_automation_rule_customization?: boolean
|
|
69854
|
+
/** Indicates whether the customer can customize the Instant Key profile for their properties. */
|
|
69855
|
+
allow_instant_key_customization?: boolean
|
|
69856
|
+
}
|
|
69857
|
+
}
|
|
69858
|
+
/** Whether the portal is embedded in another application. */
|
|
69859
|
+
is_embedded?: boolean
|
|
69860
|
+
/** Configuration for the landing page when the portal loads. */
|
|
69830
69861
|
landing_page?:
|
|
69831
69862
|
| {
|
|
69832
69863
|
manage?:
|