@authup/client-web-kit 1.0.0-beta.20 → 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.
- package/dist/components/client/AClient.d.ts +1 -1
- package/dist/components/client/AClientForm.d.ts +2 -2
- package/dist/components/client-scope/AClientScope.d.ts +1 -1
- package/dist/components/client-scope/AClientScopeAssignment.d.ts +1 -1
- package/dist/components/identity-provider/AIdentityProvider.d.ts +1 -1
- package/dist/components/identity-provider/AIdentityProviderForm.d.ts.map +1 -1
- package/dist/components/identity-provider/AIdentityProviderLdapForm.d.ts +1 -1
- package/dist/components/identity-provider/AIdentityProviderOAuth2Form.d.ts +1 -1
- package/dist/components/identity-provider/AIdentityProviderPicker.vue.d.ts +56 -0
- package/dist/components/identity-provider/AIdentityProviderPicker.vue.d.ts.map +1 -0
- package/dist/components/identity-provider-role/AIdentityProviderRoleAssignment.d.ts +1 -1
- package/dist/components/permission/APermission.d.ts +1 -1
- package/dist/components/permission/APermissionCheck.d.ts +30 -0
- package/dist/components/permission/APermissionCheck.d.ts.map +1 -0
- package/dist/components/permission/APermissionForm.d.ts +1 -1
- package/dist/components/permission/index.d.ts +1 -0
- package/dist/components/permission/index.d.ts.map +1 -1
- package/dist/components/realm/ARealm.d.ts +1 -1
- package/dist/components/realm/ARealmForm.d.ts +1 -1
- package/dist/components/robot/ARobot.d.ts +1 -1
- package/dist/components/robot/ARobotForm.d.ts +2 -2
- package/dist/components/robot-permission/ARobotPermissionAssignment.d.ts +1 -1
- package/dist/components/robot-role/ARobotRoleAssignment.d.ts +1 -1
- package/dist/components/role/ARole.d.ts +1 -1
- package/dist/components/role/ARoleForm.d.ts +1 -1
- package/dist/components/role-permission/ARolePermissionAssignment.d.ts +1 -1
- package/dist/components/scope/AScope.d.ts +1 -1
- package/dist/components/scope/AScopeForm.d.ts +1 -1
- package/dist/components/user/AUser.d.ts +1 -1
- package/dist/components/user/AUserForm.d.ts +1 -1
- package/dist/components/user-permission/AUserPermissionAssignment.d.ts +1 -1
- package/dist/components/user-role/AUserRoleAssignment.d.ts +1 -1
- package/dist/composables/index.d.ts +1 -1
- package/dist/composables/index.d.ts.map +1 -1
- package/dist/composables/use-permission-check.d.ts +4 -0
- package/dist/composables/use-permission-check.d.ts.map +1 -0
- package/dist/core/http-client/install.d.ts.map +1 -1
- package/dist/core/http-client/types.d.ts +1 -0
- package/dist/core/http-client/types.d.ts.map +1 -1
- package/dist/core/index.d.ts +1 -0
- package/dist/core/index.d.ts.map +1 -1
- package/dist/core/list/module.d.ts.map +1 -1
- package/dist/core/permission-check/index.d.ts +3 -0
- package/dist/core/permission-check/index.d.ts.map +1 -0
- package/dist/core/permission-check/module.d.ts +3 -0
- package/dist/core/permission-check/module.d.ts.map +1 -0
- package/dist/core/permission-check/types.d.ts +11 -0
- package/dist/core/permission-check/types.d.ts.map +1 -0
- package/dist/core/store/create.d.ts +20 -70
- package/dist/core/store/create.d.ts.map +1 -1
- package/dist/core/store/dispatcher/constants.d.ts +15 -0
- package/dist/core/store/dispatcher/constants.d.ts.map +1 -0
- package/dist/core/store/dispatcher/index.d.ts +5 -0
- package/dist/core/store/dispatcher/index.d.ts.map +1 -0
- package/dist/core/store/dispatcher/module.d.ts +3 -0
- package/dist/core/store/dispatcher/module.d.ts.map +1 -0
- package/dist/core/store/dispatcher/singleton.d.ts +5 -0
- package/dist/core/store/dispatcher/singleton.d.ts.map +1 -0
- package/dist/core/store/dispatcher/types.d.ts +23 -0
- package/dist/core/store/dispatcher/types.d.ts.map +1 -0
- package/dist/core/store/index.d.ts +1 -0
- package/dist/core/store/index.d.ts.map +1 -1
- package/dist/core/store/install.d.ts.map +1 -1
- package/dist/core/store/singleton.d.ts +3 -4
- package/dist/core/store/singleton.d.ts.map +1 -1
- package/dist/core/store/types.d.ts +2 -4
- package/dist/core/store/types.d.ts.map +1 -1
- package/dist/core/store/utils.d.ts +1 -2
- package/dist/core/store/utils.d.ts.map +1 -1
- package/dist/index.cjs +842 -594
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +15 -0
- package/dist/index.mjs +611 -373
- package/dist/index.mjs.map +1 -1
- package/dist/module.d.ts.map +1 -1
- package/dist/types.d.ts +13 -2
- package/dist/types.d.ts.map +1 -1
- package/package.json +22 -20
- package/dist/components/identity-provider/AIdentityProviderPicker.d.ts +0 -18
- package/dist/components/identity-provider/AIdentityProviderPicker.d.ts.map +0 -1
- package/dist/composables/use-ability-check.d.ts +0 -3
- package/dist/composables/use-ability-check.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;;;;;;;;;;;;;;;;
|
|
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
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import type { PermissionCheckerCheckOptions, PolicyData } from '@authup/kit';
|
|
2
|
+
import type { PropType } from 'vue';
|
|
3
|
+
export declare const APermissionCheck: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
+
name: {
|
|
5
|
+
type: PropType<string | string[]>;
|
|
6
|
+
required: true;
|
|
7
|
+
};
|
|
8
|
+
data: {
|
|
9
|
+
type: PropType<PolicyData>;
|
|
10
|
+
};
|
|
11
|
+
options: {
|
|
12
|
+
type: PropType<PermissionCheckerCheckOptions>;
|
|
13
|
+
};
|
|
14
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
15
|
+
[key: string]: any;
|
|
16
|
+
}> | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
17
|
+
[key: string]: any;
|
|
18
|
+
}>[], {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
|
+
name: {
|
|
20
|
+
type: PropType<string | string[]>;
|
|
21
|
+
required: true;
|
|
22
|
+
};
|
|
23
|
+
data: {
|
|
24
|
+
type: PropType<PolicyData>;
|
|
25
|
+
};
|
|
26
|
+
options: {
|
|
27
|
+
type: PropType<PermissionCheckerCheckOptions>;
|
|
28
|
+
};
|
|
29
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
30
|
+
//# sourceMappingURL=APermissionCheck.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"APermissionCheck.d.ts","sourceRoot":"","sources":["../../../src/components/permission/APermissionCheck.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,6BAA6B,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAE7E,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;AAIpC,eAAO,MAAM,gBAAgB;;cAGQ,QAAQ,CAAC,MAAM,GAAG,MAAM,EAAE,CAAC;;;;cAIpC,QAAQ,CAAC,UAAU,CAAC;;;cAGpB,QAAQ,CAAC,6BAA6B,CAAC;;;;;;;;cAP9B,QAAQ,CAAC,MAAM,GAAG,MAAM,EAAE,CAAC;;;;cAIpC,QAAQ,CAAC,UAAU,CAAC;;;cAGpB,QAAQ,CAAC,6BAA6B,CAAC;;iGAuBjE,CAAC"}
|
|
@@ -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
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/permission/index.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/permission/index.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC"}
|
|
@@ -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":"index.d.ts","sourceRoot":"","sources":["../../src/composables/index.ts"],"names":[],"mappings":"AAOA,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/composables/index.ts"],"names":[],"mappings":"AAOA,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,wBAAwB,CAAC;AACvC,cAAc,qCAAqC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"use-permission-check.d.ts","sourceRoot":"","sources":["../../src/composables/use-permission-check.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,aAAa,CAAC;AACjE,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AAG/B,wBAAgB,kBAAkB,CAAC,GAAG,EAAE,6BAA6B,GAAI,GAAG,CAAC,OAAO,CAAC,CAIpF"}
|
|
@@ -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,
|
|
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":"types.d.ts","sourceRoot":"","sources":["../../../src/core/http-client/types.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,OAAO,CAAC;AAEnC,MAAM,MAAM,wBAAwB,GAAG;IACnC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,KAAK,CAAA;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/core/http-client/types.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,OAAO,CAAC;AAEnC,MAAM,MAAM,wBAAwB,GAAG;IACnC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,KAAK,CAAC;IACd,QAAQ,CAAC,EAAE,OAAO,CAAA;CACrB,CAAC"}
|
package/dist/core/index.d.ts
CHANGED
package/dist/core/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/core/index.ts"],"names":[],"mappings":"AAOA,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,wBAAwB,CAAC;AACvC,cAAc,QAAQ,CAAC;AACvB,cAAc,kBAAkB,CAAC;AACjC,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC;AACzB,cAAc,kBAAkB,CAAC;AACjC,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/core/index.ts"],"names":[],"mappings":"AAOA,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,wBAAwB,CAAC;AACvC,cAAc,QAAQ,CAAC;AACvB,cAAc,kBAAkB,CAAC;AACjC,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC;AACzB,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC"}
|
|
@@ -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,
|
|
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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/core/permission-check/index.ts"],"names":[],"mappings":"AAOA,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { PermissionCheckerReactiveFn, PermissionCheckerReactiveFnCreateContext } from './types';
|
|
2
|
+
export declare function createPermissionCheckerReactiveFn(ctx?: PermissionCheckerReactiveFnCreateContext): PermissionCheckerReactiveFn;
|
|
3
|
+
//# sourceMappingURL=module.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../../../src/core/permission-check/module.ts"],"names":[],"mappings":"AAcA,OAAO,KAAK,EAAE,2BAA2B,EAAE,wCAAwC,EAAE,MAAM,SAAS,CAAC;AAErG,wBAAgB,iCAAiC,CAC7C,GAAG,GAAE,wCAA6C,GAClD,2BAA2B,CA4E9B"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { PermissionCheckerCheckContext } from '@authup/kit';
|
|
2
|
+
import type { Pinia } from 'pinia';
|
|
3
|
+
import type { App, Ref } from 'vue';
|
|
4
|
+
import type { Store } from '../store';
|
|
5
|
+
export type PermissionCheckerReactiveFnCreateContext = {
|
|
6
|
+
store?: Store;
|
|
7
|
+
pinia?: Pinia;
|
|
8
|
+
app?: App;
|
|
9
|
+
};
|
|
10
|
+
export type PermissionCheckerReactiveFn = (ctx: PermissionCheckerCheckContext) => Ref<boolean>;
|
|
11
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/core/permission-check/types.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,aAAa,CAAC;AACjE,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,OAAO,CAAC;AACnC,OAAO,KAAK,EAAE,GAAG,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AACpC,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;AAEtC,MAAM,MAAM,wCAAwC,GAAG;IACnD,KAAK,CAAC,EAAE,KAAK,CAAC;IACd,KAAK,CAAC,EAAE,KAAK,CAAC;IACd,GAAG,CAAC,EAAE,GAAG,CAAA;CACZ,CAAC;AAEF,MAAM,MAAM,2BAA2B,GAAG,CAAC,GAAG,EAAE,6BAA6B,KAAK,GAAG,CAAC,OAAO,CAAC,CAAC"}
|