Type alias LibraryStateObject

LibraryStateObject: {
    id: string;
    meta?: Record<string, string>;
}

Type which defines the object that is stringified, encoded and sent in the state value. Contains the following:

  • id - unique identifier for this request
  • ts - timestamp for the time the request was made. Used to ensure that token expiration is not calculated incorrectly.
  • platformState - string value sent from the platform.

Type declaration

  • id: string
  • Optional meta?: Record<string, string>

Generated using TypeDoc