@seamapi/types 1.596.0 → 1.597.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.
@@ -30539,7 +30539,7 @@ export type Routes = {
30539
30539
  user_identity_ids?: string[] | undefined;
30540
30540
  /** ID of the [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session (or that are already associated with the existing client session). */
30541
30541
  user_identity_id?: string | undefined;
30542
- /** Date and time at which the client session should expire (or at which the existing client session expires), in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
30542
+ /** Date and time at which the client session should expire in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. If the client session already exists, this will update the expiration before returning it. */
30543
30543
  expires_at?: Date | undefined;
30544
30544
  };
30545
30545
  commonParams: {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.596.0",
3
+ "version": "1.597.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -38931,7 +38931,7 @@ export default {
38931
38931
  },
38932
38932
  expires_at: {
38933
38933
  description:
38934
- 'Date and time at which the client session should expire (or at which the existing client session expires), in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
38934
+ 'Date and time at which the client session should expire in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. If the client session already exists, this will update the expiration before returning it.',
38935
38935
  format: 'date-time',
38936
38936
  type: 'string',
38937
38937
  },
@@ -35479,7 +35479,7 @@ export type Routes = {
35479
35479
  user_identity_ids?: string[] | undefined
35480
35480
  /** ID of the [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session (or that are already associated with the existing client session). */
35481
35481
  user_identity_id?: string | undefined
35482
- /** Date and time at which the client session should expire (or at which the existing client session expires), in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
35482
+ /** Date and time at which the client session should expire in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. If the client session already exists, this will update the expiration before returning it. */
35483
35483
  expires_at?: Date | undefined
35484
35484
  }
35485
35485
  commonParams: {}