@seamapi/types 1.974.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 +199 -26
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +6 -0
- package/dist/index.cjs +199 -26
- 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/models/events/enrollment-automations.js +1 -0
- package/lib/seam/connect/models/events/enrollment-automations.js.map +1 -1
- package/lib/seam/connect/openapi.js +190 -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/models/events/enrollment-automations.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +196 -18
- package/src/lib/seam/connect/route-types.ts +6 -0
|
@@ -40385,6 +40385,8 @@ export type Routes = {
|
|
|
40385
40385
|
};
|
|
40386
40386
|
/** Whether the portal is embedded in another application. */
|
|
40387
40387
|
is_embedded?: boolean;
|
|
40388
|
+
/** 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. */
|
|
40389
|
+
read_only?: boolean;
|
|
40388
40390
|
/** Configuration for the landing page when the portal loads. */
|
|
40389
40391
|
landing_page?: {
|
|
40390
40392
|
manage?: (({
|
|
@@ -82460,6 +82462,8 @@ export type Routes = {
|
|
|
82460
82462
|
};
|
|
82461
82463
|
/** Whether the portal is embedded in another application. */
|
|
82462
82464
|
is_embedded?: boolean;
|
|
82465
|
+
/** 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. */
|
|
82466
|
+
read_only?: boolean;
|
|
82463
82467
|
/** Configuration for the landing page when the portal loads. */
|
|
82464
82468
|
landing_page?: {
|
|
82465
82469
|
manage?: (({
|
|
@@ -82600,6 +82604,8 @@ export type Routes = {
|
|
|
82600
82604
|
} | undefined;
|
|
82601
82605
|
/** Whether the portal is embedded in another application. */
|
|
82602
82606
|
is_embedded?: boolean | undefined;
|
|
82607
|
+
/** 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. */
|
|
82608
|
+
read_only?: boolean | undefined;
|
|
82603
82609
|
/** Configuration for the landing page when the portal loads. */
|
|
82604
82610
|
landing_page?: ({
|
|
82605
82611
|
manage?: (({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seamapi/types",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.976.0",
|
|
4
4
|
"description": "TypeScript types for the Seam API.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -76,6 +76,7 @@
|
|
|
76
76
|
"typecheck": "tsc",
|
|
77
77
|
"docs:build": "typedoc",
|
|
78
78
|
"blueprint": "tsx ./blueprint.ts",
|
|
79
|
+
"postblueprint": "tsx ./blueprint.ts --omit-undocumented",
|
|
79
80
|
"preblueprint": "mkdirp tmp",
|
|
80
81
|
"lint": "eslint .",
|
|
81
82
|
"postlint": "prettier --check --ignore-path .gitignore .",
|
|
@@ -91,7 +92,7 @@
|
|
|
91
92
|
"zod": "^3.24.0"
|
|
92
93
|
},
|
|
93
94
|
"devDependencies": {
|
|
94
|
-
"@seamapi/blueprint": "^0.
|
|
95
|
+
"@seamapi/blueprint": "^0.61.0",
|
|
95
96
|
"@swc/core": "^1.11.29",
|
|
96
97
|
"@types/node": "^24.10.9",
|
|
97
98
|
"concurrently": "^9.2.0",
|
|
@@ -138,6 +138,12 @@ export const portal_configuration_base = z.object({
|
|
|
138
138
|
.boolean()
|
|
139
139
|
.default(false)
|
|
140
140
|
.describe('Whether the portal is embedded in another application.'),
|
|
141
|
+
read_only: z
|
|
142
|
+
.boolean()
|
|
143
|
+
.default(false)
|
|
144
|
+
.describe(
|
|
145
|
+
"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.",
|
|
146
|
+
),
|
|
141
147
|
landing_page: z
|
|
142
148
|
.object({
|
|
143
149
|
manage: z
|
|
@@ -245,6 +251,7 @@ export const portal_configuration = portal_configuration_base
|
|
|
245
251
|
},
|
|
246
252
|
},
|
|
247
253
|
is_embedded: false,
|
|
254
|
+
read_only: false,
|
|
248
255
|
exclude_locale_picker: false,
|
|
249
256
|
locale: undefined,
|
|
250
257
|
customer_resources_filters: undefined,
|
|
@@ -15,6 +15,7 @@ export const enrollment_automation_deleted_event =
|
|
|
15
15
|
}).describe(`
|
|
16
16
|
---
|
|
17
17
|
route_path: /user_identities/enrollment_automations
|
|
18
|
+
undocumented: Enrollment automations are deprecated and will be removed.
|
|
18
19
|
---
|
|
19
20
|
An [enrollment automation](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system) was deleted.
|
|
20
21
|
`)
|