@openfin/workspace 13.1.0 → 13.1.1
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.
- package/client-api/src/integrations/microsoft.d.ts +1 -1
- package/client-api/src/integrations.d.ts +1 -1
- package/home.js +1 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/notifications.js +1 -1
- package/package.json +1 -1
- package/store.js +1 -1
|
@@ -58,11 +58,11 @@ export declare class Microsoft365WorkflowIntegration extends WorkflowIntegration
|
|
|
58
58
|
connect: (config?: Microsoft365ConnectionConfig) => Promise<void>;
|
|
59
59
|
/**
|
|
60
60
|
* Gets the Microsoft365Connection instance.
|
|
61
|
-
* If we are not connected, this method will connect before returning the connection.
|
|
62
61
|
*
|
|
63
62
|
* @returns The Microsoft365Connection instance.
|
|
64
63
|
*/
|
|
65
64
|
private getConnection;
|
|
65
|
+
private handleTokenExpiry;
|
|
66
66
|
/**
|
|
67
67
|
* Wrapper around the Microsoft365Connection.executeApiRequest method.
|
|
68
68
|
* If the request fails due to an expired auth token, this method will reconnect and retry the request.
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export { Microsoft365WorkflowIntegration } from './integrations/microsoft';
|
|
2
2
|
export type { Microsoft365IntegrationConfig, Microsoft365ConnectionConfig, Microsoft365Workflows, MicrosoftEntityTypeConfig, MicrosoftSearchWorkflowConfig } from './integrations/microsoft';
|
|
3
|
-
export type { WorkflowIntegrationConfig } from './shapes/integrations';
|
|
3
|
+
export type { WorkflowIntegrationConfig, WorkflowIntegration, IntegrationWorkflows } from './shapes/integrations';
|