@authup/client-web-kit 1.0.0-beta.21 → 1.0.0-beta.22

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.
Files changed (57) hide show
  1. package/dist/components/client/AClient.d.ts +1 -1
  2. package/dist/components/client/AClientForm.d.ts +2 -2
  3. package/dist/components/client-scope/AClientScope.d.ts +1 -1
  4. package/dist/components/client-scope/AClientScopeAssignment.d.ts +1 -1
  5. package/dist/components/identity-provider/AIdentityProvider.d.ts +1 -1
  6. package/dist/components/identity-provider/AIdentityProviderForm.d.ts.map +1 -1
  7. package/dist/components/identity-provider/AIdentityProviderLdapForm.d.ts +1 -1
  8. package/dist/components/identity-provider/AIdentityProviderOAuth2Form.d.ts +1 -1
  9. package/dist/components/identity-provider/AIdentityProviderPicker.vue.d.ts +56 -0
  10. package/dist/components/identity-provider/AIdentityProviderPicker.vue.d.ts.map +1 -0
  11. package/dist/components/identity-provider-role/AIdentityProviderRoleAssignment.d.ts +1 -1
  12. package/dist/components/permission/APermission.d.ts +1 -1
  13. package/dist/components/permission/APermissionForm.d.ts +1 -1
  14. package/dist/components/realm/ARealm.d.ts +1 -1
  15. package/dist/components/realm/ARealmForm.d.ts +1 -1
  16. package/dist/components/robot/ARobot.d.ts +1 -1
  17. package/dist/components/robot/ARobotForm.d.ts +2 -2
  18. package/dist/components/robot-permission/ARobotPermissionAssignment.d.ts +1 -1
  19. package/dist/components/robot-role/ARobotRoleAssignment.d.ts +1 -1
  20. package/dist/components/role/ARole.d.ts +1 -1
  21. package/dist/components/role/ARoleForm.d.ts +1 -1
  22. package/dist/components/role-permission/ARolePermissionAssignment.d.ts +1 -1
  23. package/dist/components/scope/AScope.d.ts +1 -1
  24. package/dist/components/scope/AScopeForm.d.ts +1 -1
  25. package/dist/components/user/AUser.d.ts +1 -1
  26. package/dist/components/user/AUserForm.d.ts +1 -1
  27. package/dist/components/user-permission/AUserPermissionAssignment.d.ts +1 -1
  28. package/dist/components/user-role/AUserRoleAssignment.d.ts +1 -1
  29. package/dist/core/http-client/install.d.ts.map +1 -1
  30. package/dist/core/list/module.d.ts.map +1 -1
  31. package/dist/core/store/create.d.ts +14 -13
  32. package/dist/core/store/create.d.ts.map +1 -1
  33. package/dist/core/store/dispatcher/constants.d.ts +15 -0
  34. package/dist/core/store/dispatcher/constants.d.ts.map +1 -0
  35. package/dist/core/store/dispatcher/index.d.ts +5 -0
  36. package/dist/core/store/dispatcher/index.d.ts.map +1 -0
  37. package/dist/core/store/dispatcher/module.d.ts +3 -0
  38. package/dist/core/store/dispatcher/module.d.ts.map +1 -0
  39. package/dist/core/store/dispatcher/singleton.d.ts +5 -0
  40. package/dist/core/store/dispatcher/singleton.d.ts.map +1 -0
  41. package/dist/core/store/dispatcher/types.d.ts +23 -0
  42. package/dist/core/store/dispatcher/types.d.ts.map +1 -0
  43. package/dist/core/store/index.d.ts +1 -0
  44. package/dist/core/store/index.d.ts.map +1 -1
  45. package/dist/core/store/install.d.ts.map +1 -1
  46. package/dist/core/store/singleton.d.ts +0 -1
  47. package/dist/core/store/singleton.d.ts.map +1 -1
  48. package/dist/core/store/types.d.ts +2 -4
  49. package/dist/core/store/types.d.ts.map +1 -1
  50. package/dist/index.cjs +385 -209
  51. package/dist/index.cjs.map +1 -1
  52. package/dist/index.css +15 -0
  53. package/dist/index.mjs +383 -210
  54. package/dist/index.mjs.map +1 -1
  55. package/package.json +21 -19
  56. package/dist/components/identity-provider/AIdentityProviderPicker.d.ts +0 -18
  57. package/dist/components/identity-provider/AIdentityProviderPicker.d.ts.map +0 -1
@@ -34,10 +34,10 @@ export declare const AClient: import("vue").DefineComponent<import("vue").Extrac
34
34
  type: import("vue").PropType<import("rapiq").BuildInput<Client>>;
35
35
  };
36
36
  }>> & Readonly<{
37
+ onResolved?: (_item?: Client) => any;
37
38
  onFailed?: (item: Error) => any;
38
39
  onCreated?: (item: Client) => any;
39
40
  onDeleted?: (item: Client) => any;
40
41
  onUpdated?: (item: Client) => any;
41
- onResolved?: (_item?: Client) => any;
42
42
  }>, {}, SlotsType<EntityManagerSlotsType<Client>>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
43
43
  //# sourceMappingURL=AClient.d.ts.map
@@ -29,14 +29,14 @@ export declare const AClientForm: import("vue").DefineComponent<import("vue").Ex
29
29
  default: any;
30
30
  };
31
31
  }>> & Readonly<{
32
+ onResolved?: (_item?: Client) => any;
32
33
  onFailed?: (item: Error) => any;
33
34
  onCreated?: (item: Client) => any;
34
35
  onDeleted?: (item: Client) => any;
35
36
  onUpdated?: (item: Client) => any;
36
- onResolved?: (_item?: Client) => any;
37
37
  }>, {
38
- entity: Client;
39
38
  name: string;
39
+ entity: Client;
40
40
  realmId: string;
41
41
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
42
42
  export default AClientForm;
@@ -34,10 +34,10 @@ export declare const AClientScope: import("vue").DefineComponent<import("vue").E
34
34
  type: import("vue").PropType<import("rapiq").BuildInput<ClientScope>>;
35
35
  };
36
36
  }>> & Readonly<{
37
+ onResolved?: (_item?: ClientScope) => any;
37
38
  onFailed?: (item: Error) => any;
38
39
  onCreated?: (item: ClientScope) => any;
39
40
  onDeleted?: (item: ClientScope) => any;
40
41
  onUpdated?: (item: ClientScope) => any;
41
- onResolved?: (_item?: ClientScope) => any;
42
42
  }>, {}, SlotsType<EntityManagerSlotsType<ClientScope>>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
43
43
  //# sourceMappingURL=AClientScope.d.ts.map
@@ -8,10 +8,10 @@ export declare const AClientScopeAssignment: import("vue").DefineComponent<impor
8
8
  clientId: StringConstructor;
9
9
  scopeId: StringConstructor;
10
10
  }>> & Readonly<{
11
+ onResolved?: (_item?: ClientScope) => any;
11
12
  onFailed?: (item: Error) => any;
12
13
  onCreated?: (item: ClientScope) => any;
13
14
  onDeleted?: (item: ClientScope) => any;
14
15
  onUpdated?: (item: ClientScope) => any;
15
- onResolved?: (_item?: ClientScope) => any;
16
16
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
17
17
  //# sourceMappingURL=AClientScopeAssignment.d.ts.map
@@ -34,10 +34,10 @@ export declare const AIdentityProvider: import("vue").DefineComponent<import("vu
34
34
  type: import("vue").PropType<import("rapiq").BuildInput<IdentityProvider>>;
35
35
  };
36
36
  }>> & Readonly<{
37
+ onResolved?: (_item?: IdentityProvider) => any;
37
38
  onFailed?: (item: Error) => any;
38
39
  onCreated?: (item: IdentityProvider) => any;
39
40
  onDeleted?: (item: IdentityProvider) => any;
40
41
  onUpdated?: (item: IdentityProvider) => any;
41
- onResolved?: (_item?: IdentityProvider) => any;
42
42
  }>, {}, SlotsType<EntityManagerSlotsType<IdentityProvider>>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
43
43
  //# sourceMappingURL=AIdentityProvider.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"AIdentityProviderForm.d.ts","sourceRoot":"","sources":["../../../src/components/identity-provider/AIdentityProviderForm.ts"],"names":[],"mappings":"AAWA,OAAO,KAAK,EAAE,gBAAgB,EAA0B,MAAM,kBAAkB,CAAC;AACjF,OAAO,KAAK,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,KAAK,CAAC;AAMhD,eAAO,MAAM,qBAAqB;;cAGN,QAAQ,CAAC,gBAAgB,CAAC;;;;;;;;;;;cAA1B,QAAQ,CAAC,gBAAgB,CAAC;;;;;;;;;;;;;;;;4EAyHpD,CAAC"}
1
+ {"version":3,"file":"AIdentityProviderForm.d.ts","sourceRoot":"","sources":["../../../src/components/identity-provider/AIdentityProviderForm.ts"],"names":[],"mappings":"AAWA,OAAO,KAAK,EAAE,gBAAgB,EAA0B,MAAM,kBAAkB,CAAC;AACjF,OAAO,KAAK,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,KAAK,CAAC;AAMhD,eAAO,MAAM,qBAAqB;;cAGN,QAAQ,CAAC,gBAAgB,CAAC;;;;;;;;;;;cAA1B,QAAQ,CAAC,gBAAgB,CAAC;;;;;;;;;;;;;;;;4EA2HpD,CAAC"}
@@ -23,11 +23,11 @@ export declare const AIdentityProviderLdapForm: import("vue").DefineComponent<im
23
23
  default: any;
24
24
  };
25
25
  }>> & Readonly<{
26
+ onResolved?: (_item?: IdentityProvider) => any;
26
27
  onFailed?: (item: Error) => any;
27
28
  onCreated?: (item: IdentityProvider) => any;
28
29
  onDeleted?: (item: IdentityProvider) => any;
29
30
  onUpdated?: (item: IdentityProvider) => any;
30
- onResolved?: (_item?: IdentityProvider) => any;
31
31
  }>, {
32
32
  entity: IdentityProvider;
33
33
  realmId: string;
@@ -46,11 +46,11 @@ export declare const AIdentityProviderOAuth2Form: import("vue").DefineComponent<
46
46
  type: PropType<string | null>;
47
47
  };
48
48
  }>> & Readonly<{
49
+ onResolved?: (_item?: IdentityProvider) => any;
49
50
  onFailed?: (item: Error) => any;
50
51
  onCreated?: (item: IdentityProvider) => any;
51
52
  onDeleted?: (item: IdentityProvider) => any;
52
53
  onUpdated?: (item: IdentityProvider) => any;
53
- onResolved?: (_item?: IdentityProvider) => any;
54
54
  }>, {
55
55
  entity: IdentityProvider;
56
56
  realmId: string;
@@ -0,0 +1,56 @@
1
+ import { IdentityProviderPreset, IdentityProviderProtocol } from '@authup/core-kit';
2
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
+ protocol: {
4
+ type: StringConstructor;
5
+ };
6
+ preset: {
7
+ type: StringConstructor;
8
+ };
9
+ }>, {
10
+ protocols: IdentityProviderProtocol[];
11
+ presets: IdentityProviderPreset[];
12
+ pickProtocol: (protocol: string) => void;
13
+ pickPreset: (preset: string) => void;
14
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "pick"[], "pick", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
15
+ protocol: {
16
+ type: StringConstructor;
17
+ };
18
+ preset: {
19
+ type: StringConstructor;
20
+ };
21
+ }>> & Readonly<{
22
+ onPick?: (...args: any[]) => any;
23
+ }>, {}, {}, {
24
+ AIdentityProviderPreset: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
25
+ id: {
26
+ type: StringConstructor;
27
+ required: true;
28
+ };
29
+ }>, (() => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
30
+ [key: string]: any;
31
+ }> | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
32
+ [key: string]: any;
33
+ }>[]) | (() => any[]), {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
34
+ id: {
35
+ type: StringConstructor;
36
+ required: true;
37
+ };
38
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
39
+ AIdentityProviderProtocol: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
40
+ id: {
41
+ type: StringConstructor;
42
+ required: true;
43
+ };
44
+ }>, (() => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
45
+ [key: string]: any;
46
+ }> | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
47
+ [key: string]: any;
48
+ }>[]) | (() => any[]), {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
49
+ id: {
50
+ type: StringConstructor;
51
+ required: true;
52
+ };
53
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
54
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
55
+ export default _default;
56
+ //# sourceMappingURL=AIdentityProviderPicker.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AIdentityProviderPicker.vue.d.ts","sourceRoot":"","sources":["../../../src/components/identity-provider/AIdentityProviderPicker.vue"],"names":[],"mappings":"AA4HA,OAAO,EAAE,sBAAsB,EAAE,wBAAwB,EAAE,MAAM,kBAAkB,CAAC;;;;;;;;;;;6BAuB5C,MAAM;yBAIV,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAtB1C,wBAiCG"}
@@ -21,11 +21,11 @@ export declare const AIdentityProviderRoleAssignment: import("vue").DefineCompon
21
21
  required: true;
22
22
  };
23
23
  }>> & Readonly<{
24
+ onResolved?: (_item?: IdentityProviderRoleMapping) => any;
24
25
  onFailed?: (item: Error) => any;
25
26
  onCreated?: (item: IdentityProviderRoleMapping) => any;
26
27
  onDeleted?: (item: IdentityProviderRoleMapping) => any;
27
28
  onUpdated?: (item: IdentityProviderRoleMapping) => any;
28
- onResolved?: (_item?: IdentityProviderRoleMapping) => any;
29
29
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
30
30
  export default AIdentityProviderRoleAssignment;
31
31
  //# sourceMappingURL=AIdentityProviderRoleAssignment.d.ts.map
@@ -34,10 +34,10 @@ export declare const APermission: import("vue").DefineComponent<import("vue").Ex
34
34
  type: import("vue").PropType<import("rapiq").BuildInput<Permission>>;
35
35
  };
36
36
  }>> & Readonly<{
37
+ onResolved?: (_item?: Permission) => any;
37
38
  onFailed?: (item: Error) => any;
38
39
  onCreated?: (item: Permission) => any;
39
40
  onDeleted?: (item: Permission) => any;
40
41
  onUpdated?: (item: Permission) => any;
41
- onResolved?: (_item?: Permission) => any;
42
42
  }>, {}, SlotsType<EntityManagerSlotsType<Permission>>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
43
43
  //# sourceMappingURL=APermission.d.ts.map
@@ -11,10 +11,10 @@ export declare const APermissionForm: import("vue").DefineComponent<import("vue"
11
11
  type: PropType<Permission>;
12
12
  };
13
13
  }>> & Readonly<{
14
+ onResolved?: (_item?: Permission) => any;
14
15
  onFailed?: (item: Error) => any;
15
16
  onCreated?: (item: Permission) => any;
16
17
  onDeleted?: (item: Permission) => any;
17
18
  onUpdated?: (item: Permission) => any;
18
- onResolved?: (_item?: Permission) => any;
19
19
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
20
20
  //# sourceMappingURL=APermissionForm.d.ts.map
@@ -34,10 +34,10 @@ export declare const ARealm: import("vue").DefineComponent<import("vue").Extract
34
34
  type: import("vue").PropType<import("rapiq").BuildInput<Realm>>;
35
35
  };
36
36
  }>> & Readonly<{
37
+ onResolved?: (_item?: Realm) => any;
37
38
  onFailed?: (item: Error) => any;
38
39
  onCreated?: (item: Realm) => any;
39
40
  onDeleted?: (item: Realm) => any;
40
41
  onUpdated?: (item: Realm) => any;
41
- onResolved?: (_item?: Realm) => any;
42
42
  }>, {}, SlotsType<EntityManagerSlotsType<Realm>>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
43
43
  //# sourceMappingURL=ARealm.d.ts.map
@@ -15,11 +15,11 @@ export declare const ARealmForm: import("vue").DefineComponent<import("vue").Ext
15
15
  default: any;
16
16
  };
17
17
  }>> & Readonly<{
18
+ onResolved?: (_item?: Realm) => any;
18
19
  onFailed?: (item: Error) => any;
19
20
  onCreated?: (item: Realm) => any;
20
21
  onDeleted?: (item: Realm) => any;
21
22
  onUpdated?: (item: Realm) => any;
22
- onResolved?: (_item?: Realm) => any;
23
23
  }>, {
24
24
  entity: Realm;
25
25
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -34,10 +34,10 @@ export declare const ARobot: import("vue").DefineComponent<import("vue").Extract
34
34
  type: import("vue").PropType<import("rapiq").BuildInput<Robot>>;
35
35
  };
36
36
  }>> & Readonly<{
37
+ onResolved?: (_item?: Robot) => any;
37
38
  onFailed?: (item: Error) => any;
38
39
  onCreated?: (item: Robot) => any;
39
40
  onDeleted?: (item: Robot) => any;
40
41
  onUpdated?: (item: Robot) => any;
41
- onResolved?: (_item?: Robot) => any;
42
42
  }>, {}, SlotsType<EntityManagerSlotsType<Robot>>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
43
43
  //# sourceMappingURL=ARobot.d.ts.map
@@ -29,14 +29,14 @@ export declare const ARobotForm: import("vue").DefineComponent<import("vue").Ext
29
29
  default: any;
30
30
  };
31
31
  }>> & Readonly<{
32
+ onResolved?: (_item?: Robot) => any;
32
33
  onFailed?: (item: Error) => any;
33
34
  onCreated?: (item: Robot) => any;
34
35
  onDeleted?: (item: Robot) => any;
35
36
  onUpdated?: (item: Robot) => any;
36
- onResolved?: (_item?: Robot) => any;
37
37
  }>, {
38
- entity: Robot;
39
38
  name: string;
39
+ entity: Robot;
40
40
  realmId: string;
41
41
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
42
42
  export default ARobotForm;
@@ -8,11 +8,11 @@ export declare const ARobotPermissionAssignment: import("vue").DefineComponent<i
8
8
  robotId: StringConstructor;
9
9
  permissionId: StringConstructor;
10
10
  }>> & Readonly<{
11
+ onResolved?: (_item?: RobotPermission) => any;
11
12
  onFailed?: (item: Error) => any;
12
13
  onCreated?: (item: RobotPermission) => any;
13
14
  onDeleted?: (item: RobotPermission) => any;
14
15
  onUpdated?: (item: RobotPermission) => any;
15
- onResolved?: (_item?: RobotPermission) => any;
16
16
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
17
17
  export default ARobotPermissionAssignment;
18
18
  //# sourceMappingURL=ARobotPermissionAssignment.d.ts.map
@@ -8,11 +8,11 @@ export declare const ARobotRoleAssignment: import("vue").DefineComponent<import(
8
8
  roleId: StringConstructor;
9
9
  robotId: StringConstructor;
10
10
  }>> & Readonly<{
11
+ onResolved?: (_item?: RobotRole) => any;
11
12
  onFailed?: (item: Error) => any;
12
13
  onCreated?: (item: RobotRole) => any;
13
14
  onDeleted?: (item: RobotRole) => any;
14
15
  onUpdated?: (item: RobotRole) => any;
15
- onResolved?: (_item?: RobotRole) => any;
16
16
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
17
17
  export default ARobotRoleAssignment;
18
18
  //# sourceMappingURL=ARobotRoleAssignment.d.ts.map
@@ -34,10 +34,10 @@ export declare const ARole: import("vue").DefineComponent<import("vue").ExtractP
34
34
  type: import("vue").PropType<import("rapiq").BuildInput<Role>>;
35
35
  };
36
36
  }>> & Readonly<{
37
+ onResolved?: (_item?: Role) => any;
37
38
  onFailed?: (item: Error) => any;
38
39
  onCreated?: (item: Role) => any;
39
40
  onDeleted?: (item: Role) => any;
40
41
  onUpdated?: (item: Role) => any;
41
- onResolved?: (_item?: Role) => any;
42
42
  }>, {}, SlotsType<EntityManagerSlotsType<Role>>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
43
43
  //# sourceMappingURL=ARole.d.ts.map
@@ -13,11 +13,11 @@ export declare const ARoleForm: import("vue").DefineComponent<import("vue").Extr
13
13
  default: any;
14
14
  };
15
15
  }>> & Readonly<{
16
+ onResolved?: (_item?: Role) => any;
16
17
  onFailed?: (item: Error) => any;
17
18
  onCreated?: (item: Role) => any;
18
19
  onDeleted?: (item: Role) => any;
19
20
  onUpdated?: (item: Role) => any;
20
- onResolved?: (_item?: Role) => any;
21
21
  }>, {
22
22
  entity: Role;
23
23
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -8,10 +8,10 @@ export declare const ARolePermissionAssignment: import("vue").DefineComponent<im
8
8
  roleId: StringConstructor;
9
9
  permissionId: StringConstructor;
10
10
  }>> & Readonly<{
11
+ onResolved?: (_item?: RolePermission) => any;
11
12
  onFailed?: (item: Error) => any;
12
13
  onCreated?: (item: RolePermission) => any;
13
14
  onDeleted?: (item: RolePermission) => any;
14
15
  onUpdated?: (item: RolePermission) => any;
15
- onResolved?: (_item?: RolePermission) => any;
16
16
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
17
17
  //# sourceMappingURL=ARolePermissionAssignment.d.ts.map
@@ -34,10 +34,10 @@ export declare const AScope: import("vue").DefineComponent<import("vue").Extract
34
34
  type: import("vue").PropType<import("rapiq").BuildInput<Scope>>;
35
35
  };
36
36
  }>> & Readonly<{
37
+ onResolved?: (_item?: Scope) => any;
37
38
  onFailed?: (item: Error) => any;
38
39
  onCreated?: (item: Scope) => any;
39
40
  onDeleted?: (item: Scope) => any;
40
41
  onUpdated?: (item: Scope) => any;
41
- onResolved?: (_item?: Scope) => any;
42
42
  }>, {}, SlotsType<EntityManagerSlotsType<Scope>>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
43
43
  //# sourceMappingURL=AScope.d.ts.map
@@ -19,11 +19,11 @@ export declare const AScopeForm: import("vue").DefineComponent<import("vue").Ext
19
19
  type: PropType<Scope>;
20
20
  };
21
21
  }>> & Readonly<{
22
+ onResolved?: (_item?: Scope) => any;
22
23
  onFailed?: (item: Error) => any;
23
24
  onCreated?: (item: Scope) => any;
24
25
  onDeleted?: (item: Scope) => any;
25
26
  onUpdated?: (item: Scope) => any;
26
- onResolved?: (_item?: Scope) => any;
27
27
  }>, {
28
28
  name: string;
29
29
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -34,10 +34,10 @@ export declare const AUser: import("vue").DefineComponent<import("vue").ExtractP
34
34
  type: import("vue").PropType<import("rapiq").BuildInput<User>>;
35
35
  };
36
36
  }>> & Readonly<{
37
+ onResolved?: (_item?: User) => any;
37
38
  onFailed?: (item: Error) => any;
38
39
  onCreated?: (item: User) => any;
39
40
  onDeleted?: (item: User) => any;
40
41
  onUpdated?: (item: User) => any;
41
- onResolved?: (_item?: User) => any;
42
42
  }>, {}, SlotsType<EntityManagerSlotsType<User>>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
43
43
  //# sourceMappingURL=AUser.d.ts.map
@@ -29,11 +29,11 @@ export declare const AUserForm: import("vue").DefineComponent<import("vue").Extr
29
29
  default: boolean;
30
30
  };
31
31
  }>> & Readonly<{
32
+ onResolved?: (_item?: User) => any;
32
33
  onFailed?: (item: Error) => any;
33
34
  onCreated?: (item: User) => any;
34
35
  onDeleted?: (item: User) => any;
35
36
  onUpdated?: (item: User) => any;
36
- onResolved?: (_item?: User) => any;
37
37
  }>, {
38
38
  entity: User;
39
39
  realmId: string;
@@ -8,10 +8,10 @@ export declare const AUserPermissionAssignment: import("vue").DefineComponent<im
8
8
  userId: StringConstructor;
9
9
  permissionId: StringConstructor;
10
10
  }>> & Readonly<{
11
+ onResolved?: (_item?: UserPermission) => any;
11
12
  onFailed?: (item: Error) => any;
12
13
  onCreated?: (item: UserPermission) => any;
13
14
  onDeleted?: (item: UserPermission) => any;
14
15
  onUpdated?: (item: UserPermission) => any;
15
- onResolved?: (_item?: UserPermission) => any;
16
16
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
17
17
  //# sourceMappingURL=AUserPermissionAssignment.d.ts.map
@@ -8,11 +8,11 @@ export declare const AUserRoleAssignment: import("vue").DefineComponent<import("
8
8
  roleId: StringConstructor;
9
9
  userId: StringConstructor;
10
10
  }>> & Readonly<{
11
+ onResolved?: (_item?: UserRole) => any;
11
12
  onFailed?: (item: Error) => any;
12
13
  onCreated?: (item: UserRole) => any;
13
14
  onDeleted?: (item: UserRole) => any;
14
15
  onUpdated?: (item: UserRole) => any;
15
- onResolved?: (_item?: UserRole) => any;
16
16
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
17
17
  export default AUserRoleAssignment;
18
18
  //# sourceMappingURL=AUserRoleAssignment.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"install.d.ts","sourceRoot":"","sources":["../../../src/core/http-client/install.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AAG/B,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,SAAS,CAAC;AAExD,wBAAgB,iBAAiB,CAAC,GAAG,EAAE,GAAG,EAAE,OAAO,GAAE,wBAA6B,QA8DjF"}
1
+ {"version":3,"file":"install.d.ts","sourceRoot":"","sources":["../../../src/core/http-client/install.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AAG/B,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,SAAS,CAAC;AAExD,wBAAgB,iBAAiB,CAAC,GAAG,EAAE,GAAG,EAAE,OAAO,GAAE,wBAA6B,QAyEjF"}
@@ -1 +1 @@
1
- {"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../../../src/core/list/module.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAmBjE,OAAO,KAAK,EACR,IAAI,EACJ,iBAAiB,EAGpB,MAAM,QAAQ,CAAC;AAShB,KAAK,eAAe,CAAC,CAAC,IAAI,CAAC,SAAS,YAAY,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,GAAG,UAAU,EAAE,GAAG,CAAC,GAAG,KAAK,GAAG,KAAK,CAAC;AAQ1G,wBAAgB,UAAU,CACtB,CAAC,SAAS,eAAe,CAAC,YAAY,CAAC,GAAG,CAAC,CAAC,EAC5C,CAAC,GAAG,YAAY,CAAC,CAAC,CAAC,EAEnB,OAAO,EAAE,iBAAiB,CAAC,CAAC,EAAE,CAAC,CAAC,GAChC,IAAI,CAAC,CAAC,CAAC,CAoPV"}
1
+ {"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../../../src/core/list/module.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAmBjE,OAAO,KAAK,EACR,IAAI,EACJ,iBAAiB,EAGpB,MAAM,QAAQ,CAAC;AAShB,KAAK,eAAe,CAAC,CAAC,IAAI,CAAC,SAAS,YAAY,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,GAAG,UAAU,EAAE,GAAG,CAAC,GAAG,KAAK,GAAG,KAAK,CAAC;AAQ1G,wBAAgB,UAAU,CACtB,CAAC,SAAS,eAAe,CAAC,YAAY,CAAC,GAAG,CAAC,CAAC,EAC5C,CAAC,GAAG,YAAY,CAAC,CAAC,CAAC,EAEnB,OAAO,EAAE,iBAAiB,CAAC,CAAC,EAAE,CAAC,CAAC,GAChC,IAAI,CAAC,CAAC,CAAC,CA2PV"}
@@ -4,42 +4,43 @@ import type { Realm, User } from '@authup/core-kit';
4
4
  import type { StoreCreateContext, StoreLoginContext } from './types';
5
5
  type InputFn = (...args: any[]) => Promise<any>;
6
6
  type OutputFn<F extends InputFn> = (...args: Parameters<F>) => Promise<Awaited<ReturnType<F>>>;
7
- export declare function createStore(context?: StoreCreateContext): {
8
- initialized: import("vue").Ref<boolean, boolean>;
9
- setInitialized: (value: boolean) => void;
7
+ type RealmMinimal = Pick<Realm, 'id' | 'name'>;
8
+ export declare function createStore(context: StoreCreateContext): {
9
+ cookiesRead: import("vue").Ref<boolean, boolean>;
10
+ setCookiesRead: (value: boolean) => void;
10
11
  permissionChecker: PermissionChecker;
11
12
  login: (ctx: StoreLoginContext) => Promise<void>;
12
- logout: () => void;
13
+ logout: () => Promise<void>;
13
14
  loggedIn: import("vue").ComputedRef<boolean>;
14
15
  resolve: OutputFn<() => Promise<void>>;
15
- handleTokenGrantResponse: (response: OAuth2TokenGrantResponse) => void;
16
+ applyTokenGrantResponse: (response: OAuth2TokenGrantResponse) => void;
16
17
  accessToken: import("vue").Ref<string, string>;
17
- setAccessToken: (input?: string) => void;
18
+ setAccessToken: (input: string | null) => void;
18
19
  accessTokenExpireDate: import("vue").Ref<Date, Date>;
19
- setAccessTokenExpireDate: (input?: Date | number | string) => void;
20
+ setAccessTokenExpireDate: (input: Date | number | string | null) => void;
20
21
  refreshToken: import("vue").Ref<string, string>;
21
- setRefreshToken: (input?: string) => void;
22
+ setRefreshToken: (input: string | null) => void;
22
23
  realm: import("vue").Ref<{
23
24
  id: string;
24
25
  name: string;
25
- }, Pick<Realm, "id" | "name"> | {
26
+ }, RealmMinimal | {
26
27
  id: string;
27
28
  name: string;
28
29
  }>;
29
30
  realmId: import("vue").ComputedRef<string>;
30
31
  realmIsRoot: import("vue").ComputedRef<boolean>;
31
32
  realmName: import("vue").ComputedRef<string>;
32
- setRealm: (entity?: Pick<Realm, "id" | "name">) => void;
33
+ setRealm: (input: RealmMinimal | null) => void;
33
34
  realmManagement: import("vue").Ref<{
34
35
  id: string;
35
36
  name: string;
36
- }, Pick<Realm, "id" | "name"> | {
37
+ }, RealmMinimal | {
37
38
  id: string;
38
39
  name: string;
39
40
  }>;
40
41
  realmManagementId: import("vue").ComputedRef<string>;
41
42
  realmManagementName: import("vue").ComputedRef<string>;
42
- setRealmManagement: (entity?: Pick<Realm, "id" | "name">) => void;
43
+ setRealmManagement: (input: RealmMinimal | null) => void;
43
44
  user: import("vue").Ref<{
44
45
  [x: string]: any;
45
46
  id: string;
@@ -162,7 +163,7 @@ export declare function createStore(context?: StoreCreateContext): {
162
163
  };
163
164
  }>;
164
165
  userId: import("vue").ComputedRef<string>;
165
- setUser: (entity?: User) => void;
166
+ setUser: (input: User | null) => void;
166
167
  };
167
168
  export {};
168
169
  //# sourceMappingURL=create.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"create.d.ts","sourceRoot":"","sources":["../../../src/core/store/create.ts"],"names":[],"mappings":"AAOA,OAAO,EACH,iBAAiB,EAEpB,MAAM,aAAa,CAAC;AAErB,OAAO,KAAK,EACR,wBAAwB,EAE3B,MAAM,aAAa,CAAC;AACrB,OAAO,KAAK,EACR,KAAK,EACL,IAAI,EACP,MAAM,kBAAkB,CAAC;AAM1B,OAAO,KAAK,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAC;AAErE,KAAK,OAAO,GAAG,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,OAAO,CAAC,GAAG,CAAC,CAAC;AAChD,KAAK,QAAQ,CAAC,CAAC,SAAS,OAAO,IAAI,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC,CAAC,CAAC,KAAK,OAAO,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AA8B/F,wBAAgB,WAAW,CAAC,OAAO,GAAE,kBAAuB;;4BAMzB,OAAO;;iBA0MZ,iBAAiB;;;4BAlCR,OAAO,CAAC,IAAI,CAAC;yCAlCJ,wBAAwB;;6BA/HpC,MAAM;;uCAOI,IAAI,GAAG,MAAM,GAAG,MAAM;;8BAY/B,MAAM;;;;;;;;;;;wBA0BZ,IAAI,CAAC,KAAK,EAAE,IAAI,GAAG,MAAM,CAAC;;;;;;;;;;kCAQhB,IAAI,CAAC,KAAK,EAAE,IAAI,GAAG,MAAM,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBAzBrC,IAAI;EAuOjC"}
1
+ {"version":3,"file":"create.d.ts","sourceRoot":"","sources":["../../../src/core/store/create.ts"],"names":[],"mappings":"AAOA,OAAO,EACH,iBAAiB,EAEpB,MAAM,aAAa,CAAC;AAErB,OAAO,KAAK,EACR,wBAAwB,EAE3B,MAAM,aAAa,CAAC;AACrB,OAAO,KAAK,EACR,KAAK,EACL,IAAI,EACP,MAAM,kBAAkB,CAAC;AAO1B,OAAO,KAAK,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAC;AAErE,KAAK,OAAO,GAAG,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,OAAO,CAAC,GAAG,CAAC,CAAC;AAChD,KAAK,QAAQ,CAAC,CAAC,SAAS,OAAO,IAAI,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC,CAAC,CAAC,KAAK,OAAO,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AA8B/F,KAAK,YAAY,GAAG,IAAI,CAAC,KAAK,EAAE,IAAI,GAAG,MAAM,CAAC,CAAC;AAE/C,wBAAgB,WAAW,CAAC,OAAO,EAAE,kBAAkB;;4BAMpB,OAAO;;iBAyOZ,iBAAiB;;;4BAtCR,OAAO,CAAC,IAAI,CAAC;wCAxClC,wBAAwB;;4BApJP,MAAM,GAAG,IAAI;;sCAYH,IAAI,GAAG,MAAM,GAAG,MAAM,GAAG,IAAI;;6BAgBtC,MAAM,GAAG,IAAI;;;;;;;;;;;sBAiCpB,YAAY,GAAG,IAAI;;;;;;;;;;gCAUT,YAAY,GAAG,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBA7B9B,IAAI,GAAG,IAAI;EA0RtC"}
@@ -0,0 +1,15 @@
1
+ export declare enum StoreDispatcherEventName {
2
+ LOGGING_IN = "loggingIn",
3
+ LOGGED_IN = "loggedIn",
4
+ LOGGING_OUT = "loggingOut",
5
+ LOGGED_OUT = "loggedOut",
6
+ RESOLVING = "resolving",
7
+ RESOLVED = "resolved",
8
+ ACCESS_TOKEN_UPDATED = "accessTokenUpdated",
9
+ ACCESS_TOKEN_EXPIRE_DATE_UPDATED = "accessTokenExpireDateUpdated",
10
+ REFRESH_TOKEN_UPDATED = "refreshTokenUpdated",
11
+ USER_UPDATED = "userUpdated",
12
+ REALM_UPDATED = "realmUpdated",
13
+ REALM_MANAGEMENT_UPDATED = "realmManagementUpdated"
14
+ }
15
+ //# sourceMappingURL=constants.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../../src/core/store/dispatcher/constants.ts"],"names":[],"mappings":"AAOA,oBAAY,wBAAwB;IAChC,UAAU,cAAc;IACxB,SAAS,aAAa;IAEtB,WAAW,eAAe;IAC1B,UAAU,cAAc;IAExB,SAAS,cAAc;IACvB,QAAQ,aAAa;IAErB,oBAAoB,uBAAuB;IAC3C,gCAAgC,iCAAiC;IAEjE,qBAAqB,wBAAwB;IAE7C,YAAY,gBAAgB;IAE5B,aAAa,iBAAiB;IAC9B,wBAAwB,2BAA2B;CACtD"}
@@ -0,0 +1,5 @@
1
+ export * from './constants';
2
+ export * from './module';
3
+ export * from './singleton';
4
+ export * from './types';
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/core/store/dispatcher/index.ts"],"names":[],"mappings":"AAOA,cAAc,aAAa,CAAC;AAC5B,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { StoreDispatcher } from './types';
2
+ export declare function createStoreDispatcher(): StoreDispatcher;
3
+ //# sourceMappingURL=module.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../../../../src/core/store/dispatcher/module.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,EAAE,eAAe,EAAyB,MAAM,SAAS,CAAC;AAEtE,wBAAgB,qBAAqB,IAAK,eAAe,CAExD"}
@@ -0,0 +1,5 @@
1
+ import type { App } from 'vue';
2
+ import type { StoreDispatcher } from './types';
3
+ export declare function injectStoreDispatcher(app?: App): StoreDispatcher;
4
+ export declare function provideStoreDispatcher(eventBus: StoreDispatcher, app?: App): void;
5
+ //# sourceMappingURL=singleton.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"singleton.d.ts","sourceRoot":"","sources":["../../../../src/core/store/dispatcher/singleton.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AAG/B,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;AAI/C,wBAAgB,qBAAqB,CAAC,GAAG,CAAC,EAAE,GAAG,GAAI,eAAe,CAOjE;AAED,wBAAgB,sBAAsB,CAAC,QAAQ,EAAE,eAAe,EAAE,GAAG,CAAC,EAAE,GAAG,QAE1E"}
@@ -0,0 +1,23 @@
1
+ import type { Realm, User } from '@authup/core-kit';
2
+ import type { EventEmitter } from '@posva/event-emitter';
3
+ import type { StoreDispatcherEventName } from './constants';
4
+ type RealmMinimal = Pick<Realm, 'id' | 'name'>;
5
+ export type StoreDispatcherEvents = {
6
+ [StoreDispatcherEventName.LOGGING_IN]: [];
7
+ [StoreDispatcherEventName.LOGGED_IN]: [];
8
+ [StoreDispatcherEventName.LOGGING_OUT]: [];
9
+ [StoreDispatcherEventName.LOGGED_OUT]: [];
10
+ [StoreDispatcherEventName.RESOLVING]: [];
11
+ [StoreDispatcherEventName.RESOLVED]: [];
12
+ [StoreDispatcherEventName.ACCESS_TOKEN_UPDATED]: string | null;
13
+ [StoreDispatcherEventName.ACCESS_TOKEN_EXPIRE_DATE_UPDATED]: Date | null;
14
+ [StoreDispatcherEventName.REFRESH_TOKEN_UPDATED]: string | null;
15
+ [StoreDispatcherEventName.USER_UPDATED]: User | null;
16
+ [StoreDispatcherEventName.REALM_UPDATED]: RealmMinimal | null;
17
+ [StoreDispatcherEventName.REALM_MANAGEMENT_UPDATED]: RealmMinimal | null;
18
+ };
19
+ export type StoreDispatcher = EventEmitter<{
20
+ [K in keyof StoreDispatcherEvents as `${K}`]: StoreDispatcherEvents[K];
21
+ }>;
22
+ export {};
23
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/core/store/dispatcher/types.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAC;AACpD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACzD,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,aAAa,CAAC;AAE5D,KAAK,YAAY,GAAG,IAAI,CAAC,KAAK,EAAE,IAAI,GAAG,MAAM,CAAC,CAAC;AAE/C,MAAM,MAAM,qBAAqB,GAAG;IAChC,CAAC,wBAAwB,CAAC,UAAU,CAAC,EAAE,EAAE,CAAC;IAC1C,CAAC,wBAAwB,CAAC,SAAS,CAAC,EAAE,EAAE,CAAC;IACzC,CAAC,wBAAwB,CAAC,WAAW,CAAC,EAAE,EAAE,CAAC;IAC3C,CAAC,wBAAwB,CAAC,UAAU,CAAC,EAAE,EAAE,CAAC;IAC1C,CAAC,wBAAwB,CAAC,SAAS,CAAC,EAAE,EAAE,CAAC;IACzC,CAAC,wBAAwB,CAAC,QAAQ,CAAC,EAAE,EAAE,CAAC;IAExC,CAAC,wBAAwB,CAAC,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/D,CAAC,wBAAwB,CAAC,gCAAgC,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IAEzE,CAAC,wBAAwB,CAAC,qBAAqB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChE,CAAC,wBAAwB,CAAC,YAAY,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IACrD,CAAC,wBAAwB,CAAC,aAAa,CAAC,EAAE,YAAY,GAAG,IAAI,CAAC;IAC9D,CAAC,wBAAwB,CAAC,wBAAwB,CAAC,EAAE,YAAY,GAAG,IAAI,CAAC;CAC5E,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG,YAAY,CAAC;KACtC,CAAC,IAAI,MAAM,qBAAqB,IAAI,GAAG,CAAC,EAAE,GAAG,qBAAqB,CAAC,CAAC,CAAC;CACzE,CAAC,CAAC"}
@@ -1,5 +1,6 @@
1
1
  export * from './constants';
2
2
  export * from './create';
3
+ export * from './dispatcher';
3
4
  export * from './install';
4
5
  export * from './types';
5
6
  export * from './singleton';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/core/store/index.ts"],"names":[],"mappings":"AAOA,cAAc,aAAa,CAAC;AAC5B,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AACxB,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/core/store/index.ts"],"names":[],"mappings":"AAOA,cAAc,aAAa,CAAC;AAC5B,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AACxB,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"install.d.ts","sourceRoot":"","sources":["../../../src/core/store/install.ts"],"names":[],"mappings":"AAUA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AAO/B,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAC;AAEnD,wBAAgB,YAAY,CAAC,GAAG,EAAE,GAAG,EAAE,OAAO,GAAE,mBAAwB,QA0JvE"}
1
+ {"version":3,"file":"install.d.ts","sourceRoot":"","sources":["../../../src/core/store/install.ts"],"names":[],"mappings":"AAUA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AAQ/B,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAC;AAEnD,wBAAgB,YAAY,CAAC,GAAG,EAAE,GAAG,EAAE,OAAO,GAAE,mBAAwB,QAqLvE"}
@@ -1,7 +1,6 @@
1
1
  import type { Pinia } from 'pinia';
2
2
  import type { App } from 'vue';
3
3
  import type { Store, StoreDefinition } from './types';
4
- export declare const StoreSymbol: unique symbol;
5
4
  export declare function useStore(pinia?: Pinia, app?: App): Store;
6
5
  export declare function injectStoreFactory(app?: App): StoreDefinition;
7
6
  export declare function hasStoreFactory(app?: App): boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"singleton.d.ts","sourceRoot":"","sources":["../../../src/core/store/singleton.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,OAAO,CAAC;AACnC,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AAG/B,OAAO,KAAK,EAAE,KAAK,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;AAEtD,eAAO,MAAM,WAAW,eAA4B,CAAC;AAErD,wBAAgB,QAAQ,CAAC,KAAK,CAAC,EAAE,KAAK,EAAE,GAAG,CAAC,EAAE,GAAG,GAAI,KAAK,CAOzD;AAED,wBAAgB,kBAAkB,CAAC,GAAG,CAAC,EAAE,GAAG,GAAI,eAAe,CAO9D;AAED,wBAAgB,eAAe,CAAC,GAAG,CAAC,EAAE,GAAG,GAAI,OAAO,CAEnD;AAED,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,eAAe,EAAE,GAAG,CAAC,EAAE,GAAG,QAEpE"}
1
+ {"version":3,"file":"singleton.d.ts","sourceRoot":"","sources":["../../../src/core/store/singleton.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,OAAO,CAAC;AACnC,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AAG/B,OAAO,KAAK,EAAE,KAAK,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;AAItD,wBAAgB,QAAQ,CAAC,KAAK,CAAC,EAAE,KAAK,EAAE,GAAG,CAAC,EAAE,GAAG,GAAI,KAAK,CAOzD;AAED,wBAAgB,kBAAkB,CAAC,GAAG,CAAC,EAAE,GAAG,GAAI,eAAe,CAO9D;AAED,wBAAgB,eAAe,CAAC,GAAG,CAAC,EAAE,GAAG,GAAI,OAAO,CAEnD;AAED,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,eAAe,EAAE,GAAG,CAAC,EAAE,GAAG,QAEpE"}