@bundleup/nextjs 0.0.6 → 0.0.7
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 +5 -3
- package/dist/index.d.ts +5 -3
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import * as _bundleup_core_server from '@bundleup/core/server';
|
|
2
|
-
|
|
3
1
|
interface CreateConnectionParams {
|
|
4
2
|
integrationId: string;
|
|
5
3
|
apiKey?: string;
|
|
@@ -7,6 +5,10 @@ interface CreateConnectionParams {
|
|
|
7
5
|
externalId?: string;
|
|
8
6
|
metadata?: Record<string, unknown>;
|
|
9
7
|
}
|
|
10
|
-
declare function createConnection(options: CreateConnectionParams): Promise<
|
|
8
|
+
declare function createConnection(options: CreateConnectionParams): Promise<{
|
|
9
|
+
token: string;
|
|
10
|
+
expires_in: number;
|
|
11
|
+
externalId: string | undefined;
|
|
12
|
+
}>;
|
|
11
13
|
|
|
12
14
|
export { CreateConnectionParams, createConnection };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import * as _bundleup_core_server from '@bundleup/core/server';
|
|
2
|
-
|
|
3
1
|
interface CreateConnectionParams {
|
|
4
2
|
integrationId: string;
|
|
5
3
|
apiKey?: string;
|
|
@@ -7,6 +5,10 @@ interface CreateConnectionParams {
|
|
|
7
5
|
externalId?: string;
|
|
8
6
|
metadata?: Record<string, unknown>;
|
|
9
7
|
}
|
|
10
|
-
declare function createConnection(options: CreateConnectionParams): Promise<
|
|
8
|
+
declare function createConnection(options: CreateConnectionParams): Promise<{
|
|
9
|
+
token: string;
|
|
10
|
+
expires_in: number;
|
|
11
|
+
externalId: string | undefined;
|
|
12
|
+
}>;
|
|
11
13
|
|
|
12
14
|
export { CreateConnectionParams, createConnection };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bundleup/nextjs",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"description": "BundleUp plugin for Next.js applications",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"clean": "rm -rf dist"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@bundleup/core": "0.0.
|
|
29
|
-
"@bundleup/react": "0.0.
|
|
28
|
+
"@bundleup/core": "0.0.5",
|
|
29
|
+
"@bundleup/react": "0.0.7"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
32
|
"next": ">=13.0.0"
|