@quiltt/core 4.1.0 → 4.2.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.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @quiltt/core
|
|
2
2
|
|
|
3
|
+
## 4.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#348](https://github.com/quiltt/quiltt-js/pull/348) [`7e27845`](https://github.com/quiltt/quiltt-js/commit/7e2784523124c87fc6654d8336f924286daade1b) Thanks [@zubairaziz](https://github.com/zubairaziz)! - resolve connectionId persistence issue in QuilttContainer
|
|
8
|
+
|
|
3
9
|
## 4.1.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -35,6 +35,7 @@ interface ConnectorSDK extends CallbackManager {
|
|
|
35
35
|
connect(connectorId: string, options?: ConnectorSDKConnectOptions): ConnectorSDKConnector;
|
|
36
36
|
reconnect(connectorId: string, options: ConnectorSDKReconnectOptions): ConnectorSDKConnector;
|
|
37
37
|
reset(): void;
|
|
38
|
+
resetConnector: (connectorId: string) => void;
|
|
38
39
|
}
|
|
39
40
|
interface ConnectorSDKConnector extends CallbackManager {
|
|
40
41
|
open(): void;
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ApolloLink, ApolloClient } from '@apollo/client/core/index.js';
|
|
2
2
|
export { gql } from '@apollo/client/core/index.js';
|
|
3
|
-
import { G as GlobalStorage, e as endpointGraphQL, v as version, d as debugging, S as SubscriptionLink, a as endpointAuth, b as endpointRest } from './SubscriptionLink-client-
|
|
4
|
-
export { L as LocalStorage, M as MemoryStorage, O as Observable, c as Storage, f as cdnBase, g as endpointWebsockets } from './SubscriptionLink-client-
|
|
3
|
+
import { G as GlobalStorage, e as endpointGraphQL, v as version, d as debugging, S as SubscriptionLink, a as endpointAuth, b as endpointRest } from './SubscriptionLink-client-BD6UeWjS.js';
|
|
4
|
+
export { L as LocalStorage, M as MemoryStorage, O as Observable, c as Storage, f as cdnBase, g as endpointWebsockets } from './SubscriptionLink-client-BD6UeWjS.js';
|
|
5
5
|
import { BatchHttpLink as BatchHttpLink$1 } from '@apollo/client/link/batch-http/index.js';
|
|
6
6
|
import crossfetch from 'cross-fetch';
|
|
7
7
|
import { onError } from '@apollo/client/link/error/index.js';
|
package/package.json
CHANGED
package/src/api/browser.ts
CHANGED
|
@@ -23,6 +23,7 @@ export interface ConnectorSDK extends CallbackManager {
|
|
|
23
23
|
reconnect(connectorId: string, options: ConnectorSDKReconnectOptions): ConnectorSDKConnector
|
|
24
24
|
|
|
25
25
|
reset(): void // For Test and Development Use
|
|
26
|
+
resetConnector: (connectorId: string) => void // For forcing a reset of a specific connector
|
|
26
27
|
}
|
|
27
28
|
|
|
28
29
|
export interface ConnectorSDKConnector extends CallbackManager {
|