@seamapi/types 1.326.0 → 1.327.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 +62 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +174 -2
- package/lib/seam/connect/models/events/acs/access_groups.d.ts +64 -0
- package/lib/seam/connect/models/events/acs/access_groups.js +12 -0
- package/lib/seam/connect/models/events/acs/access_groups.js.map +1 -0
- package/lib/seam/connect/models/events/acs/index.d.ts +30 -0
- package/lib/seam/connect/models/events/acs/index.js +2 -0
- package/lib/seam/connect/models/events/acs/index.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +30 -0
- package/lib/seam/connect/openapi.d.ts +112 -0
- package/lib/seam/connect/openapi.js +52 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +32 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/events/acs/access_groups.ts +19 -0
- package/src/lib/seam/connect/models/events/acs/index.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +55 -0
- package/src/lib/seam/connect/route-types.ts +34 -0
package/dist/connect.cjs
CHANGED
|
@@ -2394,7 +2394,14 @@ var common_acs_event = common_event.extend({
|
|
|
2394
2394
|
)
|
|
2395
2395
|
});
|
|
2396
2396
|
|
|
2397
|
-
// src/lib/seam/connect/models/events/acs/
|
|
2397
|
+
// src/lib/seam/connect/models/events/acs/access_groups.ts
|
|
2398
|
+
var acs_access_group_event = common_acs_event.extend({
|
|
2399
|
+
acs_access_group_id: zod.z.string().uuid()
|
|
2400
|
+
});
|
|
2401
|
+
var acs_access_group_deleted_event = acs_access_group_event.extend({
|
|
2402
|
+
event_type: zod.z.literal("acs_access_group.deleted")
|
|
2403
|
+
}).describe("An ACS access group was deleted.");
|
|
2404
|
+
var acs_access_group_events = [acs_access_group_deleted_event];
|
|
2398
2405
|
var acs_credential_event = common_acs_event.extend({
|
|
2399
2406
|
acs_credential_id: zod.z.string().uuid()
|
|
2400
2407
|
});
|
|
@@ -2469,7 +2476,8 @@ var acs_events = [
|
|
|
2469
2476
|
...acs_system_events,
|
|
2470
2477
|
...acs_credential_events,
|
|
2471
2478
|
...acs_user_events,
|
|
2472
|
-
...acs_encoder_events
|
|
2479
|
+
...acs_encoder_events,
|
|
2480
|
+
...acs_access_group_events
|
|
2473
2481
|
];
|
|
2474
2482
|
var action_attempt_event = common_event.extend({
|
|
2475
2483
|
action_attempt_id: zod.z.string().uuid().describe(
|
|
@@ -10181,6 +10189,56 @@ var openapi_default = {
|
|
|
10181
10189
|
],
|
|
10182
10190
|
type: "object"
|
|
10183
10191
|
},
|
|
10192
|
+
{
|
|
10193
|
+
description: "An ACS access group was deleted.",
|
|
10194
|
+
properties: {
|
|
10195
|
+
acs_access_group_id: { format: "uuid", type: "string" },
|
|
10196
|
+
acs_system_id: {
|
|
10197
|
+
description: "ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems).",
|
|
10198
|
+
format: "uuid",
|
|
10199
|
+
type: "string"
|
|
10200
|
+
},
|
|
10201
|
+
connected_account_id: {
|
|
10202
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
10203
|
+
format: "uuid",
|
|
10204
|
+
type: "string"
|
|
10205
|
+
},
|
|
10206
|
+
created_at: {
|
|
10207
|
+
description: "Date and time at which the event was created.",
|
|
10208
|
+
format: "date-time",
|
|
10209
|
+
type: "string"
|
|
10210
|
+
},
|
|
10211
|
+
event_id: {
|
|
10212
|
+
description: "ID of the event.",
|
|
10213
|
+
format: "uuid",
|
|
10214
|
+
type: "string"
|
|
10215
|
+
},
|
|
10216
|
+
event_type: {
|
|
10217
|
+
enum: ["acs_access_group.deleted"],
|
|
10218
|
+
type: "string"
|
|
10219
|
+
},
|
|
10220
|
+
occurred_at: {
|
|
10221
|
+
description: "Date and time at which the event occurred.",
|
|
10222
|
+
format: "date-time",
|
|
10223
|
+
type: "string"
|
|
10224
|
+
},
|
|
10225
|
+
workspace_id: {
|
|
10226
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
10227
|
+
format: "uuid",
|
|
10228
|
+
type: "string"
|
|
10229
|
+
}
|
|
10230
|
+
},
|
|
10231
|
+
required: [
|
|
10232
|
+
"event_id",
|
|
10233
|
+
"workspace_id",
|
|
10234
|
+
"created_at",
|
|
10235
|
+
"occurred_at",
|
|
10236
|
+
"acs_system_id",
|
|
10237
|
+
"acs_access_group_id",
|
|
10238
|
+
"event_type"
|
|
10239
|
+
],
|
|
10240
|
+
type: "object"
|
|
10241
|
+
},
|
|
10184
10242
|
{
|
|
10185
10243
|
description: "A [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens) was deleted.",
|
|
10186
10244
|
properties: {
|
|
@@ -22557,6 +22615,7 @@ var openapi_default = {
|
|
|
22557
22615
|
"acs_system.added",
|
|
22558
22616
|
"acs_system.connected",
|
|
22559
22617
|
"acs_system.disconnected",
|
|
22618
|
+
"acs_access_group.deleted",
|
|
22560
22619
|
"acs_user.deleted",
|
|
22561
22620
|
"acs_credential.deleted",
|
|
22562
22621
|
"acs_credential.issued",
|
|
@@ -22635,6 +22694,7 @@ var openapi_default = {
|
|
|
22635
22694
|
"acs_system.added",
|
|
22636
22695
|
"acs_system.connected",
|
|
22637
22696
|
"acs_system.disconnected",
|
|
22697
|
+
"acs_access_group.deleted",
|
|
22638
22698
|
"acs_user.deleted",
|
|
22639
22699
|
"acs_credential.deleted",
|
|
22640
22700
|
"acs_credential.issued",
|