@bundleup/sdk 0.0.11 → 0.0.12

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/dist/index.d.mts CHANGED
@@ -99,11 +99,13 @@ interface SessionCreateRequest {
99
99
  integrationId: string;
100
100
  externalId?: string;
101
101
  metadata?: Record<string, any>;
102
+ redirectUri?: string;
102
103
  }
103
104
  interface SessionCreateResponse {
104
- expires_in: number;
105
+ url: string;
105
106
  token: string;
106
- externalId?: string;
107
+ expires_in: number;
108
+ external_id?: string;
107
109
  }
108
110
  declare class Sessions {
109
111
  private apiKey;
package/dist/index.d.ts CHANGED
@@ -99,11 +99,13 @@ interface SessionCreateRequest {
99
99
  integrationId: string;
100
100
  externalId?: string;
101
101
  metadata?: Record<string, any>;
102
+ redirectUri?: string;
102
103
  }
103
104
  interface SessionCreateResponse {
104
- expires_in: number;
105
+ url: string;
105
106
  token: string;
106
- externalId?: string;
107
+ expires_in: number;
108
+ external_id?: string;
107
109
  }
108
110
  declare class Sessions {
109
111
  private apiKey;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bundleup/sdk",
3
- "version": "0.0.11",
3
+ "version": "0.0.12",
4
4
  "description": "SDK package for BundleUp",
5
5
  "exports": {
6
6
  ".": {