Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
seambot committed Dec 26, 2024
1 parent 52c3ffc commit fc86e92
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/lib/seam/connect/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13070,6 +13070,15 @@ export default {
'Indicates whether the new credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials).',
type: 'boolean',
},
salto_space_metadata: {
description:
'Salto Space-specific metadata for the new credential.',
properties: {
assign_new_key: { type: 'boolean' },
update_current_key: { type: 'boolean' },
},
type: 'object',
},
starts_at: {
description:
'Date and time at which the validity of the new credential starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
Expand Down
7 changes: 7 additions & 0 deletions src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5205,6 +5205,13 @@ export interface Routes {
override_guest_acs_entrance_ids?: string[] | undefined
}
| undefined
/** Salto Space-specific metadata for the new credential. */
salto_space_metadata?:
| {
assign_new_key?: boolean | undefined
update_current_key?: boolean | undefined
}
| undefined
/** Date and time at which the validity of the new credential starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
starts_at?: string | undefined
/** Date and time at which the validity of the new credential ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
Expand Down

0 comments on commit fc86e92

Please sign in to comment.