@quiltt/core 3.7.0 → 3.7.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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @quiltt/core
|
|
2
2
|
|
|
3
|
+
## 3.7.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`524a0d7`](https://github.com/quiltt/quiltt-js/commit/524a0d7f83c92648522c7712b82619fcd72e56c8) Thanks [@sirwolfgang](https://github.com/sirwolfgang)! - Add missing opened Enum type
|
|
8
|
+
|
|
3
9
|
## 3.7.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -56,6 +56,7 @@ type ConnectorSDKOnExitSuccessCallback = (metadata: ConnectorSDKCallbackMetadata
|
|
|
56
56
|
type ConnectorSDKOnExitAbortCallback = (metadata: ConnectorSDKCallbackMetadata) => void;
|
|
57
57
|
type ConnectorSDKOnExitErrorCallback = (metadata: ConnectorSDKCallbackMetadata) => void;
|
|
58
58
|
declare enum ConnectorSDKEventType {
|
|
59
|
+
Open = "opened",
|
|
59
60
|
Load = "loaded",
|
|
60
61
|
ExitSuccess = "exited.successful",
|
|
61
62
|
ExitAbort = "exited.aborted",
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ApolloLink, ApolloClient } from '@apollo/client/index.js';
|
|
2
2
|
export { InMemoryCache, gql, useMutation, useQuery, useSubscription } from '@apollo/client/index.js';
|
|
3
|
-
import { G as GlobalStorage, e as endpointGraphQL, v as version, d as debugging, S as SubscriptionLink, a as endpointAuth } from './SubscriptionLink-client-
|
|
4
|
-
export { L as LocalStorage, M as MemoryStorage, O as Observable, b as Storage, c as cdnBase, f 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 } from './SubscriptionLink-client-BmcJJuK4.js';
|
|
4
|
+
export { L as LocalStorage, M as MemoryStorage, O as Observable, b as Storage, c as cdnBase, f as endpointWebsockets } from './SubscriptionLink-client-BmcJJuK4.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';
|
|
@@ -10,6 +10,7 @@ import { RetryLink as RetryLink$1 } from '@apollo/client/link/retry/index.js';
|
|
|
10
10
|
|
|
11
11
|
var ConnectorSDKEventType;
|
|
12
12
|
(function(ConnectorSDKEventType) {
|
|
13
|
+
ConnectorSDKEventType["Open"] = "opened";
|
|
13
14
|
ConnectorSDKEventType["Load"] = "loaded";
|
|
14
15
|
ConnectorSDKEventType["ExitSuccess"] = "exited.successful";
|
|
15
16
|
ConnectorSDKEventType["ExitAbort"] = "exited.aborted";
|
package/package.json
CHANGED
package/src/api/browser.ts
CHANGED
|
@@ -63,6 +63,7 @@ export type ConnectorSDKOnExitAbortCallback = (metadata: ConnectorSDKCallbackMet
|
|
|
63
63
|
export type ConnectorSDKOnExitErrorCallback = (metadata: ConnectorSDKCallbackMetadata) => void
|
|
64
64
|
|
|
65
65
|
export enum ConnectorSDKEventType {
|
|
66
|
+
Open = 'opened',
|
|
66
67
|
Load = 'loaded',
|
|
67
68
|
ExitSuccess = 'exited.successful',
|
|
68
69
|
ExitAbort = 'exited.aborted',
|