@seamapi/types 1.975.0 → 1.976.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 +196 -25
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +6 -0
- package/dist/index.cjs +196 -25
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customer/customer-portal.d.ts +6 -0
- package/lib/seam/connect/models/customer/customer-portal.js +5 -0
- package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
- package/lib/seam/connect/openapi.js +189 -18
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +6 -0
- package/package.json +3 -2
- package/src/lib/seam/connect/models/customer/customer-portal.ts +7 -0
- package/src/lib/seam/connect/openapi.ts +194 -18
- package/src/lib/seam/connect/route-types.ts +6 -0
|
@@ -48019,6 +48019,8 @@ export type Routes = {
|
|
|
48019
48019
|
}
|
|
48020
48020
|
/** Whether the portal is embedded in another application. */
|
|
48021
48021
|
is_embedded?: boolean
|
|
48022
|
+
/** Whether the portal is read-only. When true, the customer can browse the portal but cannot perform any mutating action; write requests made with the portal's client session are rejected. */
|
|
48023
|
+
read_only?: boolean
|
|
48022
48024
|
/** Configuration for the landing page when the portal loads. */
|
|
48023
48025
|
landing_page?:
|
|
48024
48026
|
| {
|
|
@@ -100479,6 +100481,8 @@ export type Routes = {
|
|
|
100479
100481
|
}
|
|
100480
100482
|
/** Whether the portal is embedded in another application. */
|
|
100481
100483
|
is_embedded?: boolean
|
|
100484
|
+
/** Whether the portal is read-only. When true, the customer can browse the portal but cannot perform any mutating action; write requests made with the portal's client session are rejected. */
|
|
100485
|
+
read_only?: boolean
|
|
100482
100486
|
/** Configuration for the landing page when the portal loads. */
|
|
100483
100487
|
landing_page?:
|
|
100484
100488
|
| {
|
|
@@ -100675,6 +100679,8 @@ export type Routes = {
|
|
|
100675
100679
|
| undefined
|
|
100676
100680
|
/** Whether the portal is embedded in another application. */
|
|
100677
100681
|
is_embedded?: boolean | undefined
|
|
100682
|
+
/** Whether the portal is read-only. When true, the customer can browse the portal but cannot perform any mutating action; write requests made with the portal's client session are rejected. */
|
|
100683
|
+
read_only?: boolean | undefined
|
|
100678
100684
|
/** Configuration for the landing page when the portal loads. */
|
|
100679
100685
|
landing_page?:
|
|
100680
100686
|
| (
|