@seamapi/types 1.555.0 → 1.557.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 +30 -93
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +62 -294
- package/dist/index.cjs +30 -93
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +24 -110
- package/lib/seam/connect/models/events/access-methods.d.ts +4 -71
- package/lib/seam/connect/models/events/access-methods.js +2 -22
- package/lib/seam/connect/models/events/access-methods.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +3 -36
- package/lib/seam/connect/models/workspaces/workspace.d.ts +6 -0
- package/lib/seam/connect/models/workspaces/workspace.js +7 -0
- package/lib/seam/connect/models/workspaces/workspace.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +16 -110
- package/lib/seam/connect/openapi.js +18 -69
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +26 -94
- package/package.json +1 -1
- package/src/lib/seam/connect/models/events/access-methods.ts +2 -29
- package/src/lib/seam/connect/models/workspaces/workspace.ts +11 -0
- package/src/lib/seam/connect/openapi.ts +22 -74
- package/src/lib/seam/connect/route-types.ts +22 -99
|
@@ -15295,6 +15295,10 @@ export type Routes = {
|
|
|
15295
15295
|
/**
|
|
15296
15296
|
* @deprecated Use `company_name` instead.*/
|
|
15297
15297
|
connect_partner_name: (string | null) | null
|
|
15298
|
+
/** Publishable key for the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). This key is used to identify the workspace in client-side applications. */
|
|
15299
|
+
publishable_key?: string | undefined
|
|
15300
|
+
/** Indicates whether publishable key authentication is enabled for this workspace. */
|
|
15301
|
+
is_publishable_key_auth_enabled: boolean
|
|
15298
15302
|
}[]
|
|
15299
15303
|
| undefined
|
|
15300
15304
|
spaces?:
|
|
@@ -20907,25 +20911,6 @@ export type Routes = {
|
|
|
20907
20911
|
/** Indicates whether the code is a backup code (only present when mode is 'code' and a backup code was used). */
|
|
20908
20912
|
is_backup_code?: boolean | undefined
|
|
20909
20913
|
}
|
|
20910
|
-
| {
|
|
20911
|
-
/** ID of the event. */
|
|
20912
|
-
event_id: string
|
|
20913
|
-
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the event. */
|
|
20914
|
-
workspace_id: string
|
|
20915
|
-
/** Date and time at which the event was created. */
|
|
20916
|
-
created_at: string
|
|
20917
|
-
/** Date and time at which the event occurred. */
|
|
20918
|
-
occurred_at: string
|
|
20919
|
-
/** ID of the affected access method. */
|
|
20920
|
-
access_method_id: string
|
|
20921
|
-
/** IDs of the access grants associated with this access method. */
|
|
20922
|
-
access_grant_ids: string[]
|
|
20923
|
-
/** Keys of the access grants associated with this access method (if present). */
|
|
20924
|
-
access_grant_keys?: string[] | undefined
|
|
20925
|
-
event_type: 'access_method.code_changed'
|
|
20926
|
-
/** The new PIN code for code access methods (only present when mode is 'code'). */
|
|
20927
|
-
code: string
|
|
20928
|
-
}
|
|
20929
20914
|
| {
|
|
20930
20915
|
/** ID of the event. */
|
|
20931
20916
|
event_id: string
|
|
@@ -42408,25 +42393,6 @@ export type Routes = {
|
|
|
42408
42393
|
/** Indicates whether the code is a backup code (only present when mode is 'code' and a backup code was used). */
|
|
42409
42394
|
is_backup_code?: boolean | undefined
|
|
42410
42395
|
}
|
|
42411
|
-
| {
|
|
42412
|
-
/** ID of the event. */
|
|
42413
|
-
event_id: string
|
|
42414
|
-
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the event. */
|
|
42415
|
-
workspace_id: string
|
|
42416
|
-
/** Date and time at which the event was created. */
|
|
42417
|
-
created_at: string
|
|
42418
|
-
/** Date and time at which the event occurred. */
|
|
42419
|
-
occurred_at: string
|
|
42420
|
-
/** ID of the affected access method. */
|
|
42421
|
-
access_method_id: string
|
|
42422
|
-
/** IDs of the access grants associated with this access method. */
|
|
42423
|
-
access_grant_ids: string[]
|
|
42424
|
-
/** Keys of the access grants associated with this access method (if present). */
|
|
42425
|
-
access_grant_keys?: string[] | undefined
|
|
42426
|
-
event_type: 'access_method.code_changed'
|
|
42427
|
-
/** The new PIN code for code access methods (only present when mode is 'code'). */
|
|
42428
|
-
code: string
|
|
42429
|
-
}
|
|
42430
42396
|
| {
|
|
42431
42397
|
/** ID of the event. */
|
|
42432
42398
|
event_id: string
|
|
@@ -44023,7 +43989,6 @@ export type Routes = {
|
|
|
44023
43989
|
| 'access_method.card_encoding_required'
|
|
44024
43990
|
| 'access_method.deleted'
|
|
44025
43991
|
| 'access_method.reissued'
|
|
44026
|
-
| 'access_method.code_changed'
|
|
44027
43992
|
| 'acs_system.connected'
|
|
44028
43993
|
| 'acs_system.added'
|
|
44029
43994
|
| 'acs_system.disconnected'
|
|
@@ -44120,7 +44085,6 @@ export type Routes = {
|
|
|
44120
44085
|
| 'access_method.card_encoding_required'
|
|
44121
44086
|
| 'access_method.deleted'
|
|
44122
44087
|
| 'access_method.reissued'
|
|
44123
|
-
| 'access_method.code_changed'
|
|
44124
44088
|
| 'acs_system.connected'
|
|
44125
44089
|
| 'acs_system.added'
|
|
44126
44090
|
| 'acs_system.disconnected'
|
|
@@ -44879,25 +44843,6 @@ export type Routes = {
|
|
|
44879
44843
|
/** Indicates whether the code is a backup code (only present when mode is 'code' and a backup code was used). */
|
|
44880
44844
|
is_backup_code?: boolean | undefined
|
|
44881
44845
|
}
|
|
44882
|
-
| {
|
|
44883
|
-
/** ID of the event. */
|
|
44884
|
-
event_id: string
|
|
44885
|
-
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the event. */
|
|
44886
|
-
workspace_id: string
|
|
44887
|
-
/** Date and time at which the event was created. */
|
|
44888
|
-
created_at: string
|
|
44889
|
-
/** Date and time at which the event occurred. */
|
|
44890
|
-
occurred_at: string
|
|
44891
|
-
/** ID of the affected access method. */
|
|
44892
|
-
access_method_id: string
|
|
44893
|
-
/** IDs of the access grants associated with this access method. */
|
|
44894
|
-
access_grant_ids: string[]
|
|
44895
|
-
/** Keys of the access grants associated with this access method (if present). */
|
|
44896
|
-
access_grant_keys?: string[] | undefined
|
|
44897
|
-
event_type: 'access_method.code_changed'
|
|
44898
|
-
/** The new PIN code for code access methods (only present when mode is 'code'). */
|
|
44899
|
-
code: string
|
|
44900
|
-
}
|
|
44901
44846
|
| {
|
|
44902
44847
|
/** ID of the event. */
|
|
44903
44848
|
event_id: string
|
|
@@ -67039,7 +66984,6 @@ export type Routes = {
|
|
|
67039
66984
|
| 'access_method.card_encoding_required'
|
|
67040
66985
|
| 'access_method.deleted'
|
|
67041
66986
|
| 'access_method.reissued'
|
|
67042
|
-
| 'access_method.code_changed'
|
|
67043
66987
|
| 'acs_system.connected'
|
|
67044
66988
|
| 'acs_system.added'
|
|
67045
66989
|
| 'acs_system.disconnected'
|
|
@@ -67136,7 +67080,6 @@ export type Routes = {
|
|
|
67136
67080
|
| 'access_method.card_encoding_required'
|
|
67137
67081
|
| 'access_method.deleted'
|
|
67138
67082
|
| 'access_method.reissued'
|
|
67139
|
-
| 'access_method.code_changed'
|
|
67140
67083
|
| 'acs_system.connected'
|
|
67141
67084
|
| 'acs_system.added'
|
|
67142
67085
|
| 'acs_system.disconnected'
|
|
@@ -67889,25 +67832,6 @@ export type Routes = {
|
|
|
67889
67832
|
/** Indicates whether the code is a backup code (only present when mode is 'code' and a backup code was used). */
|
|
67890
67833
|
is_backup_code?: boolean | undefined
|
|
67891
67834
|
}
|
|
67892
|
-
| {
|
|
67893
|
-
/** ID of the event. */
|
|
67894
|
-
event_id: string
|
|
67895
|
-
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the event. */
|
|
67896
|
-
workspace_id: string
|
|
67897
|
-
/** Date and time at which the event was created. */
|
|
67898
|
-
created_at: string
|
|
67899
|
-
/** Date and time at which the event occurred. */
|
|
67900
|
-
occurred_at: string
|
|
67901
|
-
/** ID of the affected access method. */
|
|
67902
|
-
access_method_id: string
|
|
67903
|
-
/** IDs of the access grants associated with this access method. */
|
|
67904
|
-
access_grant_ids: string[]
|
|
67905
|
-
/** Keys of the access grants associated with this access method (if present). */
|
|
67906
|
-
access_grant_keys?: string[] | undefined
|
|
67907
|
-
event_type: 'access_method.code_changed'
|
|
67908
|
-
/** The new PIN code for code access methods (only present when mode is 'code'). */
|
|
67909
|
-
code: string
|
|
67910
|
-
}
|
|
67911
67835
|
| {
|
|
67912
67836
|
/** ID of the event. */
|
|
67913
67837
|
event_id: string
|
|
@@ -95027,6 +94951,10 @@ export type Routes = {
|
|
|
95027
94951
|
/**
|
|
95028
94952
|
* @deprecated Use `company_name` instead.*/
|
|
95029
94953
|
connect_partner_name: (string | null) | null
|
|
94954
|
+
/** Publishable key for the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). This key is used to identify the workspace in client-side applications. */
|
|
94955
|
+
publishable_key?: string | undefined
|
|
94956
|
+
/** Indicates whether publishable key authentication is enabled for this workspace. */
|
|
94957
|
+
is_publishable_key_auth_enabled: boolean
|
|
95030
94958
|
}
|
|
95031
94959
|
}
|
|
95032
94960
|
}
|
|
@@ -95213,6 +95141,10 @@ export type Routes = {
|
|
|
95213
95141
|
/**
|
|
95214
95142
|
* @deprecated Use `company_name` instead.*/
|
|
95215
95143
|
connect_partner_name: (string | null) | null
|
|
95144
|
+
/** Publishable key for the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). This key is used to identify the workspace in client-side applications. */
|
|
95145
|
+
publishable_key?: string | undefined
|
|
95146
|
+
/** Indicates whether publishable key authentication is enabled for this workspace. */
|
|
95147
|
+
is_publishable_key_auth_enabled: boolean
|
|
95216
95148
|
}[]
|
|
95217
95149
|
| undefined
|
|
95218
95150
|
spaces?:
|
|
@@ -100825,25 +100757,6 @@ export type Routes = {
|
|
|
100825
100757
|
/** Indicates whether the code is a backup code (only present when mode is 'code' and a backup code was used). */
|
|
100826
100758
|
is_backup_code?: boolean | undefined
|
|
100827
100759
|
}
|
|
100828
|
-
| {
|
|
100829
|
-
/** ID of the event. */
|
|
100830
|
-
event_id: string
|
|
100831
|
-
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the event. */
|
|
100832
|
-
workspace_id: string
|
|
100833
|
-
/** Date and time at which the event was created. */
|
|
100834
|
-
created_at: string
|
|
100835
|
-
/** Date and time at which the event occurred. */
|
|
100836
|
-
occurred_at: string
|
|
100837
|
-
/** ID of the affected access method. */
|
|
100838
|
-
access_method_id: string
|
|
100839
|
-
/** IDs of the access grants associated with this access method. */
|
|
100840
|
-
access_grant_ids: string[]
|
|
100841
|
-
/** Keys of the access grants associated with this access method (if present). */
|
|
100842
|
-
access_grant_keys?: string[] | undefined
|
|
100843
|
-
event_type: 'access_method.code_changed'
|
|
100844
|
-
/** The new PIN code for code access methods (only present when mode is 'code'). */
|
|
100845
|
-
code: string
|
|
100846
|
-
}
|
|
100847
100760
|
| {
|
|
100848
100761
|
/** ID of the event. */
|
|
100849
100762
|
event_id: string
|
|
@@ -103644,6 +103557,10 @@ export type Routes = {
|
|
|
103644
103557
|
/**
|
|
103645
103558
|
* @deprecated Use `company_name` instead.*/
|
|
103646
103559
|
connect_partner_name: (string | null) | null
|
|
103560
|
+
/** Publishable key for the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). This key is used to identify the workspace in client-side applications. */
|
|
103561
|
+
publishable_key?: string | undefined
|
|
103562
|
+
/** Indicates whether publishable key authentication is enabled for this workspace. */
|
|
103563
|
+
is_publishable_key_auth_enabled: boolean
|
|
103647
103564
|
}
|
|
103648
103565
|
}
|
|
103649
103566
|
}
|
|
@@ -103681,6 +103598,10 @@ export type Routes = {
|
|
|
103681
103598
|
/**
|
|
103682
103599
|
* @deprecated Use `company_name` instead.*/
|
|
103683
103600
|
connect_partner_name: (string | null) | null
|
|
103601
|
+
/** Publishable key for the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). This key is used to identify the workspace in client-side applications. */
|
|
103602
|
+
publishable_key?: string | undefined
|
|
103603
|
+
/** Indicates whether publishable key authentication is enabled for this workspace. */
|
|
103604
|
+
is_publishable_key_auth_enabled: boolean
|
|
103684
103605
|
}[]
|
|
103685
103606
|
}
|
|
103686
103607
|
}
|
|
@@ -105150,6 +105071,8 @@ export type Routes = {
|
|
|
105150
105071
|
logo_shape?: (('circle' | 'square') | null) | undefined
|
|
105151
105072
|
}
|
|
105152
105073
|
| undefined
|
|
105074
|
+
/** Indicates whether publishable key authentication is enabled for this workspace. */
|
|
105075
|
+
is_publishable_key_auth_enabled?: boolean | undefined
|
|
105153
105076
|
/** Indicates whether the workspace is suspended. */
|
|
105154
105077
|
is_suspended?: boolean | undefined
|
|
105155
105078
|
}
|