@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
package/dist/connect.d.cts
CHANGED
|
@@ -70584,6 +70584,8 @@ type Routes = {
|
|
|
70584
70584
|
};
|
|
70585
70585
|
/** Whether the portal is embedded in another application. */
|
|
70586
70586
|
is_embedded?: boolean;
|
|
70587
|
+
/** 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. */
|
|
70588
|
+
read_only?: boolean;
|
|
70587
70589
|
/** Configuration for the landing page when the portal loads. */
|
|
70588
70590
|
landing_page?: {
|
|
70589
70591
|
manage?: (({
|
|
@@ -112659,6 +112661,8 @@ type Routes = {
|
|
|
112659
112661
|
};
|
|
112660
112662
|
/** Whether the portal is embedded in another application. */
|
|
112661
112663
|
is_embedded?: boolean;
|
|
112664
|
+
/** 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. */
|
|
112665
|
+
read_only?: boolean;
|
|
112662
112666
|
/** Configuration for the landing page when the portal loads. */
|
|
112663
112667
|
landing_page?: {
|
|
112664
112668
|
manage?: (({
|
|
@@ -112799,6 +112803,8 @@ type Routes = {
|
|
|
112799
112803
|
} | undefined;
|
|
112800
112804
|
/** Whether the portal is embedded in another application. */
|
|
112801
112805
|
is_embedded?: boolean | undefined;
|
|
112806
|
+
/** 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. */
|
|
112807
|
+
read_only?: boolean | undefined;
|
|
112802
112808
|
/** Configuration for the landing page when the portal loads. */
|
|
112803
112809
|
landing_page?: ({
|
|
112804
112810
|
manage?: (({
|