@seamapi/types 1.963.0 → 1.965.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.
@@ -82911,7 +82911,7 @@ export type Routes = {
82911
82911
  formData: {};
82912
82912
  jsonResponse: {
82913
82913
  /** Represents an Access Grant. Access Grants enable you to grant a user identity access to spaces, entrances, and devices through one or more access methods, such as mobile keys, plastic cards, and PIN codes. You can create an Access Grant for an existing user identity, or you can create a new user identity *while* creating the new Access Grant. */
82914
- access_grant: {
82914
+ access_grant?: {
82915
82915
  /** ID of the Seam workspace associated with the Access Grant. */
82916
82916
  workspace_id: string;
82917
82917
  /** ID of the Access Grant. */
@@ -83089,7 +83089,7 @@ export type Routes = {
83089
83089
  ends_at: string | null;
83090
83090
  };
83091
83091
  })[];
83092
- };
83092
+ } | undefined;
83093
83093
  spaces: {
83094
83094
  space_key: string;
83095
83095
  child_space_keys?: string[] | undefined;
@@ -83142,6 +83142,11 @@ export type Routes = {
83142
83142
  /** List of unique identifiers for the spaces the staff member is associated with. */
83143
83143
  space_keys?: string[] | undefined;
83144
83144
  user_identity_id?: string | undefined;
83145
+ access_grant?: {
83146
+ starts_at: string;
83147
+ ends_at: string | null;
83148
+ created_at: string;
83149
+ } | undefined;
83145
83150
  }[];
83146
83151
  /** Information about the current page of results. */
83147
83152
  pagination: {
@@ -83867,6 +83872,16 @@ export type Routes = {
83867
83872
  };
83868
83873
  maxDuration: undefined;
83869
83874
  };
83875
+ '/seam/webhooks/[provider]/[subscription_id]': {
83876
+ route: '/seam/webhooks/[provider]/[subscription_id]';
83877
+ method: 'POST';
83878
+ queryParams: {};
83879
+ jsonBody: any;
83880
+ commonParams: {};
83881
+ formData: {};
83882
+ jsonResponse: {};
83883
+ maxDuration: undefined;
83884
+ };
83870
83885
  '/spaces/add_acs_entrances': {
83871
83886
  route: '/spaces/add_acs_entrances';
83872
83887
  method: 'POST' | 'PUT';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.963.0",
3
+ "version": "1.965.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -79851,7 +79851,7 @@ const openapi: OpenAPISpec = {
79851
79851
  'Internal resource for customer portals.',
79852
79852
  },
79853
79853
  },
79854
- required: ['access_grant', 'spaces', 'staff_member', 'ok'],
79854
+ required: ['spaces', 'staff_member', 'ok'],
79855
79855
  type: 'object',
79856
79856
  },
79857
79857
  },
@@ -79950,7 +79950,7 @@ const openapi: OpenAPISpec = {
79950
79950
  'Internal resource for customer portals.',
79951
79951
  },
79952
79952
  },
79953
- required: ['access_grant', 'spaces', 'staff_member', 'ok'],
79953
+ required: ['spaces', 'staff_member', 'ok'],
79954
79954
  type: 'object',
79955
79955
  },
79956
79956
  },
@@ -80039,6 +80039,9 @@ const openapi: OpenAPISpec = {
80039
80039
  description:
80040
80040
  'Represents a staff member for a specific customer.',
80041
80041
  properties: {
80042
+ access_grant: {
80043
+ $ref: '#/components/schemas/access_grant',
80044
+ },
80042
80045
  email_address: {
80043
80046
  description:
80044
80047
  'Email address associated with the user identity.',
@@ -80153,6 +80156,9 @@ const openapi: OpenAPISpec = {
80153
80156
  description:
80154
80157
  'Represents a staff member for a specific customer.',
80155
80158
  properties: {
80159
+ access_grant: {
80160
+ $ref: '#/components/schemas/access_grant',
80161
+ },
80156
80162
  email_address: {
80157
80163
  description:
80158
80164
  'Email address associated with the user identity.',
@@ -81034,6 +81040,51 @@ const openapi: OpenAPISpec = {
81034
81040
  'x-undocumented': 'Partner building blocks/UI only.',
81035
81041
  },
81036
81042
  },
81043
+ '/seam/webhooks/[provider]/[subscription_id]': {
81044
+ post: {
81045
+ description:
81046
+ 'Receives an inbound webhook delivery for a provider subscription.',
81047
+ operationId: 'seamWebhooksByProviderBySubscriptionIdPost',
81048
+ parameters: [
81049
+ {
81050
+ in: 'query',
81051
+ name: 'provider',
81052
+ required: true,
81053
+ schema: { type: 'string' },
81054
+ },
81055
+ {
81056
+ in: 'query',
81057
+ name: 'subscription_id',
81058
+ required: true,
81059
+ schema: { type: 'string' },
81060
+ },
81061
+ ],
81062
+ requestBody: { content: { 'application/json': { schema: {} } } },
81063
+ responses: {
81064
+ 200: {
81065
+ content: {
81066
+ 'application/json': {
81067
+ schema: {
81068
+ properties: { ok: { type: 'boolean' } },
81069
+ required: ['ok'],
81070
+ type: 'object',
81071
+ },
81072
+ },
81073
+ },
81074
+ description: 'OK',
81075
+ },
81076
+ 400: { description: 'Bad Request' },
81077
+ 401: { description: 'Unauthorized' },
81078
+ },
81079
+ summary: '/seam/webhooks/[provider]/[subscription_id]',
81080
+ tags: ['/webhooks'],
81081
+ 'x-fern-sdk-group-name': ['seam', 'webhooks', '[provider]'],
81082
+ 'x-fern-sdk-method-name': 'by_subscription_id',
81083
+ 'x-response-key': null,
81084
+ 'x-title': 'Receive a Provider Webhook',
81085
+ 'x-undocumented': 'Internal endpoint for inbound provider webhooks',
81086
+ },
81087
+ },
81037
81088
  '/spaces/add_acs_entrances': {
81038
81089
  post: {
81039
81090
  description:
@@ -101051,201 +101051,203 @@ export type Routes = {
101051
101051
  formData: {}
101052
101052
  jsonResponse: {
101053
101053
  /** Represents an Access Grant. Access Grants enable you to grant a user identity access to spaces, entrances, and devices through one or more access methods, such as mobile keys, plastic cards, and PIN codes. You can create an Access Grant for an existing user identity, or you can create a new user identity *while* creating the new Access Grant. */
101054
- access_grant: {
101055
- /** ID of the Seam workspace associated with the Access Grant. */
101056
- workspace_id: string
101057
- /** ID of the Access Grant. */
101058
- access_grant_id: string
101059
- /** Unique key for the access grant within the workspace. */
101060
- access_grant_key?: string | undefined
101061
- /** Reservation key for the access grant. */
101062
- reservation_key?: string | undefined
101063
- /** ID of user identity to which the Access Grant gives access. */
101064
- user_identity_id: string
101065
- /**
101066
- * @deprecated Use `space_ids`.*/
101067
- location_ids: string[]
101068
- /** IDs of the spaces to which the Access Grant gives access. */
101069
- space_ids: string[]
101070
- /** Access methods that the user requested for the Access Grant. */
101071
- requested_access_methods: {
101072
- /** Display name of the access method. */
101073
- display_name: string
101074
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
101075
- mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
101076
- /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
101077
- code?: string | undefined
101078
- /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
101079
- instant_key_max_use_count?: number | undefined
101080
- /** Date and time at which the requested access method was added to the Access Grant. */
101081
- created_at: string
101082
- /** IDs of the access methods created for the requested access method. */
101083
- created_access_method_ids: string[]
101084
- }[]
101085
- /** IDs of the access methods created for the Access Grant. */
101086
- access_method_ids: string[]
101087
- /** Client Session Token. Only returned if the Access Grant has a mobile_key access method. */
101088
- client_session_token?: string | undefined
101089
- /** Name of the Access Grant. If not provided, the display name will be computed. */
101090
- name: string | null
101091
- /** Display name of the Access Grant. */
101092
- display_name: string
101093
- /** Instant Key URL. Only returned if the Access Grant has a single mobile_key access_method. */
101094
- instant_key_url?: string | undefined
101095
- /** Date and time at which the Access Grant was created. */
101096
- created_at: string
101097
- /** Date and time at which the Access Grant starts. */
101098
- starts_at: string
101099
- /** Date and time at which the Access Grant ends. */
101100
- ends_at: string | null
101101
- /** Warnings associated with the [access grant](https://docs.seam.co/use-cases/granting-access). */
101102
- warnings: (
101103
- | {
101104
- /** Date and time at which Seam created the warning. */
101105
- created_at: string
101106
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
101107
- message: string
101108
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
101109
- warning_code: 'being_deleted'
101110
- }
101111
- | {
101112
- /** Date and time at which Seam created the warning. */
101113
- created_at: string
101114
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
101115
- message: string
101116
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
101117
- warning_code: 'underprovisioned_access'
101118
- }
101119
- | {
101120
- /** Date and time at which Seam created the warning. */
101121
- created_at: string
101122
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
101123
- message: string
101124
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
101125
- warning_code: 'overprovisioned_access'
101126
- /** Devices whose access codes could not be revoked during reconciliation. Present when the provider does not support revoking an offline access code (e.g. Dormakaba oracode with exhausted override budget). */
101127
- failed_devices?:
101128
- | {
101129
- /** Device whose access code could not be revoked. */
101130
- device_id: string
101131
- /** Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`). */
101132
- error_code: string
101133
- /** Human-readable description of why revocation failed. */
101134
- message: string
101135
- }[]
101136
- | undefined
101137
- }
101138
- | {
101139
- /** Date and time at which Seam created the warning. */
101140
- created_at: string
101141
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
101142
- message: string
101143
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
101144
- warning_code: 'updating_access_times'
101145
- /** IDs of the access methods being updated. */
101146
- access_method_ids: string[]
101147
- }
101148
- | {
101149
- /** Date and time at which Seam created the warning. */
101150
- created_at: string
101151
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
101152
- message: string
101153
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
101154
- warning_code: 'requested_code_unavailable'
101155
- /** ID of the device where the requested code was unavailable. */
101156
- device_id: string
101157
- /** The originally requested PIN code that was unavailable. */
101158
- original_code: string
101159
- /** The new PIN code that was assigned instead. */
101160
- new_code: string
101161
- }
101162
- | {
101163
- /** Date and time at which Seam created the warning. */
101164
- created_at: string
101165
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
101166
- message: string
101167
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
101168
- warning_code: 'device_does_not_support_access_codes'
101169
- /** ID of the device that does not support access codes. */
101170
- device_id: string
101171
- }
101172
- | {
101173
- /** Date and time at which Seam created the warning. */
101174
- created_at: string
101175
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
101176
- message: string
101177
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
101178
- warning_code: 'device_time_constraints_violated'
101179
- /** ID of the device whose time constraints the access grant violates. */
101180
- device_id: string
101181
- /** Specific reason why the grant's times are not programmable on the device. */
101182
- reason:
101183
- | 'duration_exceeds_max'
101184
- | 'times_do_not_match_slots'
101185
- | 'ongoing_not_supported'
101186
- }
101187
- )[]
101188
- /** Errors associated with the [access grant](https://docs.seam.co/use-cases/granting-access). */
101189
- errors: {
101190
- /** Date and time at which Seam created the error. */
101191
- created_at: string
101192
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
101193
- message: string
101194
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
101195
- error_code: 'cannot_create_requested_access_methods'
101196
- /** IDs of the devices that did not receive an access code at grant creation. Use these to identify which specific devices failed when the message reports a partial failure. */
101197
- missing_device_ids?: string[] | undefined
101198
- }[]
101199
- /** ID of the customization profile associated with the Access Grant. */
101200
- customization_profile_id?: string | undefined
101201
- /** List of pending mutations for the access grant. This shows updates that are in progress. */
101202
- pending_mutations: (
101203
- | {
101204
- /** Date and time at which the mutation was created. */
101205
- created_at: string
101206
- /** Detailed description of the mutation. */
101207
- message: string
101208
- /** Mutation code to indicate that Seam is in the process of updating the spaces (devices) associated with this access grant. */
101209
- mutation_code: 'updating_spaces'
101210
- /** Previous location configuration. */
101211
- from: {
101212
- /** Previous device IDs where access codes existed. */
101213
- device_ids: string[]
101214
- }
101215
- /** New location configuration. */
101216
- to: {
101217
- /** New device IDs where access codes should be created. */
101218
- device_ids: string[]
101219
- /** Common code key to ensure PIN code reuse across devices. */
101220
- common_code_key?: (string | null) | undefined
101221
- }
101222
- }
101223
- | {
101224
- /** Date and time at which the mutation was created. */
101054
+ access_grant?:
101055
+ | {
101056
+ /** ID of the Seam workspace associated with the Access Grant. */
101057
+ workspace_id: string
101058
+ /** ID of the Access Grant. */
101059
+ access_grant_id: string
101060
+ /** Unique key for the access grant within the workspace. */
101061
+ access_grant_key?: string | undefined
101062
+ /** Reservation key for the access grant. */
101063
+ reservation_key?: string | undefined
101064
+ /** ID of user identity to which the Access Grant gives access. */
101065
+ user_identity_id: string
101066
+ /**
101067
+ * @deprecated Use `space_ids`.*/
101068
+ location_ids: string[]
101069
+ /** IDs of the spaces to which the Access Grant gives access. */
101070
+ space_ids: string[]
101071
+ /** Access methods that the user requested for the Access Grant. */
101072
+ requested_access_methods: {
101073
+ /** Display name of the access method. */
101074
+ display_name: string
101075
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
101076
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
101077
+ /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
101078
+ code?: string | undefined
101079
+ /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
101080
+ instant_key_max_use_count?: number | undefined
101081
+ /** Date and time at which the requested access method was added to the Access Grant. */
101082
+ created_at: string
101083
+ /** IDs of the access methods created for the requested access method. */
101084
+ created_access_method_ids: string[]
101085
+ }[]
101086
+ /** IDs of the access methods created for the Access Grant. */
101087
+ access_method_ids: string[]
101088
+ /** Client Session Token. Only returned if the Access Grant has a mobile_key access method. */
101089
+ client_session_token?: string | undefined
101090
+ /** Name of the Access Grant. If not provided, the display name will be computed. */
101091
+ name: string | null
101092
+ /** Display name of the Access Grant. */
101093
+ display_name: string
101094
+ /** Instant Key URL. Only returned if the Access Grant has a single mobile_key access_method. */
101095
+ instant_key_url?: string | undefined
101096
+ /** Date and time at which the Access Grant was created. */
101097
+ created_at: string
101098
+ /** Date and time at which the Access Grant starts. */
101099
+ starts_at: string
101100
+ /** Date and time at which the Access Grant ends. */
101101
+ ends_at: string | null
101102
+ /** Warnings associated with the [access grant](https://docs.seam.co/use-cases/granting-access). */
101103
+ warnings: (
101104
+ | {
101105
+ /** Date and time at which Seam created the warning. */
101106
+ created_at: string
101107
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
101108
+ message: string
101109
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
101110
+ warning_code: 'being_deleted'
101111
+ }
101112
+ | {
101113
+ /** Date and time at which Seam created the warning. */
101114
+ created_at: string
101115
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
101116
+ message: string
101117
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
101118
+ warning_code: 'underprovisioned_access'
101119
+ }
101120
+ | {
101121
+ /** Date and time at which Seam created the warning. */
101122
+ created_at: string
101123
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
101124
+ message: string
101125
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
101126
+ warning_code: 'overprovisioned_access'
101127
+ /** Devices whose access codes could not be revoked during reconciliation. Present when the provider does not support revoking an offline access code (e.g. Dormakaba oracode with exhausted override budget). */
101128
+ failed_devices?:
101129
+ | {
101130
+ /** Device whose access code could not be revoked. */
101131
+ device_id: string
101132
+ /** Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`). */
101133
+ error_code: string
101134
+ /** Human-readable description of why revocation failed. */
101135
+ message: string
101136
+ }[]
101137
+ | undefined
101138
+ }
101139
+ | {
101140
+ /** Date and time at which Seam created the warning. */
101141
+ created_at: string
101142
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
101143
+ message: string
101144
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
101145
+ warning_code: 'updating_access_times'
101146
+ /** IDs of the access methods being updated. */
101147
+ access_method_ids: string[]
101148
+ }
101149
+ | {
101150
+ /** Date and time at which Seam created the warning. */
101151
+ created_at: string
101152
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
101153
+ message: string
101154
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
101155
+ warning_code: 'requested_code_unavailable'
101156
+ /** ID of the device where the requested code was unavailable. */
101157
+ device_id: string
101158
+ /** The originally requested PIN code that was unavailable. */
101159
+ original_code: string
101160
+ /** The new PIN code that was assigned instead. */
101161
+ new_code: string
101162
+ }
101163
+ | {
101164
+ /** Date and time at which Seam created the warning. */
101165
+ created_at: string
101166
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
101167
+ message: string
101168
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
101169
+ warning_code: 'device_does_not_support_access_codes'
101170
+ /** ID of the device that does not support access codes. */
101171
+ device_id: string
101172
+ }
101173
+ | {
101174
+ /** Date and time at which Seam created the warning. */
101175
+ created_at: string
101176
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
101177
+ message: string
101178
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
101179
+ warning_code: 'device_time_constraints_violated'
101180
+ /** ID of the device whose time constraints the access grant violates. */
101181
+ device_id: string
101182
+ /** Specific reason why the grant's times are not programmable on the device. */
101183
+ reason:
101184
+ | 'duration_exceeds_max'
101185
+ | 'times_do_not_match_slots'
101186
+ | 'ongoing_not_supported'
101187
+ }
101188
+ )[]
101189
+ /** Errors associated with the [access grant](https://docs.seam.co/use-cases/granting-access). */
101190
+ errors: {
101191
+ /** Date and time at which Seam created the error. */
101225
101192
  created_at: string
101226
- /** Detailed description of the mutation. */
101193
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
101227
101194
  message: string
101228
- /** Mutation code to indicate that Seam is in the process of updating the access times for this access grant. */
101229
- mutation_code: 'updating_access_times'
101230
- /** IDs of the access methods being updated. */
101231
- access_method_ids: string[]
101232
- /** Previous access time configuration. */
101233
- from: {
101234
- /** Previous start time for access. */
101235
- starts_at: string | null
101236
- /** Previous end time for access. */
101237
- ends_at: string | null
101238
- }
101239
- /** New access time configuration. */
101240
- to: {
101241
- /** New start time for access. */
101242
- starts_at: string | null
101243
- /** New end time for access. */
101244
- ends_at: string | null
101245
- }
101246
- }
101247
- )[]
101248
- }
101195
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
101196
+ error_code: 'cannot_create_requested_access_methods'
101197
+ /** IDs of the devices that did not receive an access code at grant creation. Use these to identify which specific devices failed when the message reports a partial failure. */
101198
+ missing_device_ids?: string[] | undefined
101199
+ }[]
101200
+ /** ID of the customization profile associated with the Access Grant. */
101201
+ customization_profile_id?: string | undefined
101202
+ /** List of pending mutations for the access grant. This shows updates that are in progress. */
101203
+ pending_mutations: (
101204
+ | {
101205
+ /** Date and time at which the mutation was created. */
101206
+ created_at: string
101207
+ /** Detailed description of the mutation. */
101208
+ message: string
101209
+ /** Mutation code to indicate that Seam is in the process of updating the spaces (devices) associated with this access grant. */
101210
+ mutation_code: 'updating_spaces'
101211
+ /** Previous location configuration. */
101212
+ from: {
101213
+ /** Previous device IDs where access codes existed. */
101214
+ device_ids: string[]
101215
+ }
101216
+ /** New location configuration. */
101217
+ to: {
101218
+ /** New device IDs where access codes should be created. */
101219
+ device_ids: string[]
101220
+ /** Common code key to ensure PIN code reuse across devices. */
101221
+ common_code_key?: (string | null) | undefined
101222
+ }
101223
+ }
101224
+ | {
101225
+ /** Date and time at which the mutation was created. */
101226
+ created_at: string
101227
+ /** Detailed description of the mutation. */
101228
+ message: string
101229
+ /** Mutation code to indicate that Seam is in the process of updating the access times for this access grant. */
101230
+ mutation_code: 'updating_access_times'
101231
+ /** IDs of the access methods being updated. */
101232
+ access_method_ids: string[]
101233
+ /** Previous access time configuration. */
101234
+ from: {
101235
+ /** Previous start time for access. */
101236
+ starts_at: string | null
101237
+ /** Previous end time for access. */
101238
+ ends_at: string | null
101239
+ }
101240
+ /** New access time configuration. */
101241
+ to: {
101242
+ /** New start time for access. */
101243
+ starts_at: string | null
101244
+ /** New end time for access. */
101245
+ ends_at: string | null
101246
+ }
101247
+ }
101248
+ )[]
101249
+ }
101250
+ | undefined
101249
101251
  spaces: {
101250
101252
  space_key: string
101251
101253
  child_space_keys?: string[] | undefined
@@ -101298,6 +101300,13 @@ export type Routes = {
101298
101300
  /** List of unique identifiers for the spaces the staff member is associated with. */
101299
101301
  space_keys?: string[] | undefined
101300
101302
  user_identity_id?: string | undefined
101303
+ access_grant?:
101304
+ | {
101305
+ starts_at: string
101306
+ ends_at: string | null
101307
+ created_at: string
101308
+ }
101309
+ | undefined
101301
101310
  }[]
101302
101311
  /** Information about the current page of results. */
101303
101312
  pagination: {
@@ -102152,6 +102161,16 @@ export type Routes = {
102152
102161
  }
102153
102162
  maxDuration: undefined
102154
102163
  }
102164
+ '/seam/webhooks/[provider]/[subscription_id]': {
102165
+ route: '/seam/webhooks/[provider]/[subscription_id]'
102166
+ method: 'POST'
102167
+ queryParams: {}
102168
+ jsonBody: any
102169
+ commonParams: {}
102170
+ formData: {}
102171
+ jsonResponse: {}
102172
+ maxDuration: undefined
102173
+ }
102155
102174
  '/spaces/add_acs_entrances': {
102156
102175
  route: '/spaces/add_acs_entrances'
102157
102176
  method: 'POST' | 'PUT'