jplan-pack 0.5.78 → 0.5.80

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.
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,7 @@
1
+ export declare const authRoute: {
2
+ path: string;
3
+ component: () => Promise<typeof import("@/_auth/_dev/AuthRoute.vue")>;
4
+ meta: {
5
+ requiresAuth: boolean;
6
+ };
7
+ };
@@ -1,6 +1,5 @@
1
1
  import { useCustomizer } from './useCustomizer';
2
2
  import { useDialog } from './useDialog';
3
3
  import { ___spinner } from './__spinner';
4
- import { default as useGlobalScope } from './useGlobalScope';
5
4
  import { useToast } from 'vue-toastification';
6
- export { useCustomizer, useDialog, useGlobalScope, useToast, __spinner, };
5
+ export { useCustomizer, useDialog, useToast, __spinner, };
@@ -0,0 +1,3 @@
1
+ import { Instance } from '../../types/client/scopeClient';
2
+ declare const _default: <T>() => Instance<T>;
3
+ export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jplan-pack",
3
- "version": "0.5.78",
3
+ "version": "0.5.80",
4
4
  "main": "./dist/jplan-pack.cjs.js",
5
5
  "module": "./dist/jplan-pack.es.js",
6
6
  "types": "dist/types/index.d.ts",
@@ -1,30 +0,0 @@
1
- import { Ref } from 'vue';
2
- import { Session } from '../types/client/scope';
3
- export default function useGlobalScope(): {
4
- setGlobalScope: (newScope: Session | null) => void;
5
- globalScope: Readonly<Ref<Readonly<Ref<{
6
- readonly domain: Readonly<string>;
7
- readonly environment: Readonly<string>;
8
- readonly scope_type?: "org" | "team" | "shared" | "user" | "" | undefined;
9
- readonly organization?: string | undefined;
10
- readonly team?: string | undefined;
11
- } | null, {
12
- readonly domain: Readonly<string>;
13
- readonly environment: Readonly<string>;
14
- readonly scope_type?: "org" | "team" | "shared" | "user" | "" | undefined;
15
- readonly organization?: string | undefined;
16
- readonly team?: string | undefined;
17
- } | null>>, Readonly<Ref<{
18
- readonly domain: Readonly<string>;
19
- readonly environment: Readonly<string>;
20
- readonly scope_type?: "org" | "team" | "shared" | "user" | "" | undefined;
21
- readonly organization?: string | undefined;
22
- readonly team?: string | undefined;
23
- } | null, {
24
- readonly domain: Readonly<string>;
25
- readonly environment: Readonly<string>;
26
- readonly scope_type?: "org" | "team" | "shared" | "user" | "" | undefined;
27
- readonly organization?: string | undefined;
28
- readonly team?: string | undefined;
29
- } | null>>>>;
30
- };