@jctrans-materials/nuxt 1.0.40-beta.4 → 1.0.40-beta.6
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/module.d.cts +2 -2
- package/dist/module.d.mts +2 -2
- package/dist/module.d.ts +2 -2
- package/dist/module.json +1 -1
- package/dist/runtime/gio.client.d.ts +1 -1
- package/dist/runtime/gio.server.d.ts +1 -27
- package/dist/runtime/middleware/auth.d.ts +1 -1
- package/dist/runtime/plugin.client.d.ts +1 -17
- package/dist/runtime/plugin.d.ts +1 -5
- package/package.json +6 -7
package/dist/module.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as nuxt_schema from 'nuxt/schema';
|
|
2
2
|
import { SharedConfig } from '@jctrans-materials/comps-vue3';
|
|
3
3
|
|
|
4
4
|
interface TrackingInitOptions {
|
|
@@ -25,7 +25,7 @@ interface ModuleOptions {
|
|
|
25
25
|
sharedConfig?: Partial<SharedConfig>;
|
|
26
26
|
tracking?: TrackingOptions;
|
|
27
27
|
}
|
|
28
|
-
declare const _default:
|
|
28
|
+
declare const _default: nuxt_schema.NuxtModule<ModuleOptions, ModuleOptions, false>;
|
|
29
29
|
|
|
30
30
|
declare module "@nuxt/schema" {
|
|
31
31
|
interface PublicRuntimeConfig {
|
package/dist/module.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as nuxt_schema from 'nuxt/schema';
|
|
2
2
|
import { SharedConfig } from '@jctrans-materials/comps-vue3';
|
|
3
3
|
|
|
4
4
|
interface TrackingInitOptions {
|
|
@@ -25,7 +25,7 @@ interface ModuleOptions {
|
|
|
25
25
|
sharedConfig?: Partial<SharedConfig>;
|
|
26
26
|
tracking?: TrackingOptions;
|
|
27
27
|
}
|
|
28
|
-
declare const _default:
|
|
28
|
+
declare const _default: nuxt_schema.NuxtModule<ModuleOptions, ModuleOptions, false>;
|
|
29
29
|
|
|
30
30
|
declare module "@nuxt/schema" {
|
|
31
31
|
interface PublicRuntimeConfig {
|
package/dist/module.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as nuxt_schema from 'nuxt/schema';
|
|
2
2
|
import { SharedConfig } from '@jctrans-materials/comps-vue3';
|
|
3
3
|
|
|
4
4
|
interface TrackingInitOptions {
|
|
@@ -25,7 +25,7 @@ interface ModuleOptions {
|
|
|
25
25
|
sharedConfig?: Partial<SharedConfig>;
|
|
26
26
|
tracking?: TrackingOptions;
|
|
27
27
|
}
|
|
28
|
-
declare const _default:
|
|
28
|
+
declare const _default: nuxt_schema.NuxtModule<ModuleOptions, ModuleOptions, false>;
|
|
29
29
|
|
|
30
30
|
declare module "@nuxt/schema" {
|
|
31
31
|
interface PublicRuntimeConfig {
|
package/dist/module.json
CHANGED
|
@@ -1,28 +1,2 @@
|
|
|
1
|
-
declare const _default:
|
|
2
|
-
gio: {
|
|
3
|
-
init: () => void;
|
|
4
|
-
track: () => void;
|
|
5
|
-
isInitialized: () => boolean;
|
|
6
|
-
isBrowser: () => boolean;
|
|
7
|
-
setUserId: () => void;
|
|
8
|
-
clearUserId: () => void;
|
|
9
|
-
setGeneralProps: () => void;
|
|
10
|
-
setPageAttributes: () => void;
|
|
11
|
-
sendPage: () => void;
|
|
12
|
-
};
|
|
13
|
-
trackEvent: () => void;
|
|
14
|
-
}> & import("#app").ObjectPlugin<{
|
|
15
|
-
gio: {
|
|
16
|
-
init: () => void;
|
|
17
|
-
track: () => void;
|
|
18
|
-
isInitialized: () => boolean;
|
|
19
|
-
isBrowser: () => boolean;
|
|
20
|
-
setUserId: () => void;
|
|
21
|
-
clearUserId: () => void;
|
|
22
|
-
setGeneralProps: () => void;
|
|
23
|
-
setPageAttributes: () => void;
|
|
24
|
-
sendPage: () => void;
|
|
25
|
-
};
|
|
26
|
-
trackEvent: () => void;
|
|
27
|
-
}>;
|
|
1
|
+
declare const _default: any;
|
|
28
2
|
export default _default;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: any;
|
|
2
2
|
export default _default;
|
|
@@ -1,18 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
type GioPublicApi = {
|
|
3
|
-
isInitialized: () => boolean;
|
|
4
|
-
isBrowser: () => boolean;
|
|
5
|
-
init: (...args: any[]) => void;
|
|
6
|
-
track: (eventName: string, attrs?: TrackAttrs, callback?: () => void) => void;
|
|
7
|
-
setGeneralProps: (props: Record<string, any>) => void;
|
|
8
|
-
setPageAttributes: (props: Record<string, any>) => void;
|
|
9
|
-
sendPage: () => void;
|
|
10
|
-
};
|
|
11
|
-
declare const _default: import("#app").Plugin<{
|
|
12
|
-
gio: GioPublicApi;
|
|
13
|
-
trackEvent: (eventName: string, attrs?: TrackAttrs) => void;
|
|
14
|
-
}> & import("#app").ObjectPlugin<{
|
|
15
|
-
gio: GioPublicApi;
|
|
16
|
-
trackEvent: (eventName: string, attrs?: TrackAttrs) => void;
|
|
17
|
-
}>;
|
|
1
|
+
declare const _default: any;
|
|
18
2
|
export default _default;
|
package/dist/runtime/plugin.d.ts
CHANGED
|
@@ -1,6 +1,2 @@
|
|
|
1
|
-
declare const _default:
|
|
2
|
-
initAuthSharedConfig: (newConfig: Partial<import("@jctrans-materials/shared").SharedConfig>) => void;
|
|
3
|
-
}> & import("#app").ObjectPlugin<{
|
|
4
|
-
initAuthSharedConfig: (newConfig: Partial<import("@jctrans-materials/shared").SharedConfig>) => void;
|
|
5
|
-
}>;
|
|
1
|
+
declare const _default: any;
|
|
6
2
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jctrans-materials/nuxt",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.40-beta.
|
|
4
|
+
"version": "1.0.40-beta.6",
|
|
5
5
|
"description": "Nuxt module for JCtrans UI components",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": {
|
|
@@ -22,14 +22,14 @@
|
|
|
22
22
|
"nuxt": "^3.0.0",
|
|
23
23
|
"vue": "^3.5.26",
|
|
24
24
|
"vue-router": "^4.6.4",
|
|
25
|
-
"@jctrans-materials/comps-vue3": "1.0.40-beta.
|
|
26
|
-
"@jctrans-materials/shared": "1.0.40-beta.
|
|
25
|
+
"@jctrans-materials/comps-vue3": "1.0.40-beta.6",
|
|
26
|
+
"@jctrans-materials/shared": "1.0.40-beta.6"
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|
|
29
29
|
"gio-webjs-sdk": "^4.0.0",
|
|
30
30
|
"nuxt": "^3.0.0",
|
|
31
|
-
"@jctrans-materials/
|
|
32
|
-
"@jctrans-materials/
|
|
31
|
+
"@jctrans-materials/comps-vue3": "1.0.40-beta.6",
|
|
32
|
+
"@jctrans-materials/shared": "1.0.40-beta.6"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@nuxt/module-builder": "latest",
|
|
@@ -39,7 +39,6 @@
|
|
|
39
39
|
"build": "nuxt-module-build",
|
|
40
40
|
"dev": "nuxt dev",
|
|
41
41
|
"generate": "nuxt generate",
|
|
42
|
-
"preview": "nuxt preview"
|
|
43
|
-
"postinstall": "nuxt prepare"
|
|
42
|
+
"preview": "nuxt preview"
|
|
44
43
|
}
|
|
45
44
|
}
|