| 1 |
export const CoreMessages = { |
| 2 |
HandshakeReceive: 'INTEGRATED_APP_EMBEDDER_HANDSHAKE_RECEIVED', |
| 3 |
SendRefreshToken: 'INTEGRATED_APP_EMBEDDER_SEND_REFRESH_TOKEN', |
| 4 |
ReloadParentFrame: 'INTEGRATED_APP_EMBEDDER_RELOAD_PARENT_FRAME', |
| 5 |
RedirectParentFrame: 'INTEGRATED_APP_EMBEDDER_REDIRECT_PARENT_FRAME', |
| 6 |
SendLocale: 'INTEGRATED_APP_EMBEDDER_SEND_LOCALE', |
| 7 |
SendDeviceId: 'INTEGRATED_APP_EMBEDDER_SEND_DEVICE_ID', |
| 8 |
SendIntegratedAppConfig: 'INTEGRATED_APP_EMBEDDER_CONFIG', |
| 9 |
} as const; |
| 10 |
|
| 11 |
export type CoreMessageType = typeof CoreMessages[keyof typeof CoreMessages]; |
| 12 |
|