@contractspec/lib.identity-rbac 1.56.1 → 1.58.0
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/browser/contracts/index.js +1045 -0
- package/dist/browser/contracts/organization.js +655 -0
- package/dist/browser/contracts/rbac.js +599 -0
- package/dist/browser/contracts/user.js +235 -0
- package/dist/browser/entities/index.js +464 -0
- package/dist/browser/entities/organization.js +150 -0
- package/dist/browser/entities/rbac.js +124 -0
- package/dist/browser/entities/user.js +168 -0
- package/dist/browser/events.js +374 -0
- package/dist/browser/identity-rbac.capability.js +28 -0
- package/dist/browser/identity-rbac.feature.js +67 -0
- package/dist/browser/index.js +2099 -0
- package/dist/browser/policies/engine.js +154 -0
- package/dist/browser/policies/index.js +154 -0
- package/dist/contracts/index.d.ts +4 -4
- package/dist/contracts/index.d.ts.map +1 -0
- package/dist/contracts/index.js +1045 -4
- package/dist/contracts/organization.d.ts +758 -764
- package/dist/contracts/organization.d.ts.map +1 -1
- package/dist/contracts/organization.js +653 -602
- package/dist/contracts/rbac.d.ts +517 -523
- package/dist/contracts/rbac.d.ts.map +1 -1
- package/dist/contracts/rbac.js +597 -481
- package/dist/contracts/user.d.ts +513 -519
- package/dist/contracts/user.d.ts.map +1 -1
- package/dist/contracts/user.js +222 -319
- package/dist/entities/index.d.ts +164 -169
- package/dist/entities/index.d.ts.map +1 -1
- package/dist/entities/index.js +462 -33
- package/dist/entities/organization.d.ts +58 -63
- package/dist/entities/organization.d.ts.map +1 -1
- package/dist/entities/organization.js +145 -145
- package/dist/entities/rbac.d.ts +62 -67
- package/dist/entities/rbac.d.ts.map +1 -1
- package/dist/entities/rbac.js +119 -132
- package/dist/entities/user.d.ts +66 -71
- package/dist/entities/user.d.ts.map +1 -1
- package/dist/entities/user.js +164 -189
- package/dist/events.d.ts +537 -543
- package/dist/events.d.ts.map +1 -1
- package/dist/events.js +343 -651
- package/dist/identity-rbac.capability.d.ts +2 -7
- package/dist/identity-rbac.capability.d.ts.map +1 -1
- package/dist/identity-rbac.capability.js +29 -29
- package/dist/identity-rbac.feature.d.ts +1 -7
- package/dist/identity-rbac.feature.d.ts.map +1 -1
- package/dist/identity-rbac.feature.js +66 -193
- package/dist/index.d.ts +6 -12
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +2100 -14
- package/dist/node/contracts/index.js +1045 -0
- package/dist/node/contracts/organization.js +655 -0
- package/dist/node/contracts/rbac.js +599 -0
- package/dist/node/contracts/user.js +235 -0
- package/dist/node/entities/index.js +464 -0
- package/dist/node/entities/organization.js +150 -0
- package/dist/node/entities/rbac.js +124 -0
- package/dist/node/entities/user.js +168 -0
- package/dist/node/events.js +374 -0
- package/dist/node/identity-rbac.capability.js +28 -0
- package/dist/node/identity-rbac.feature.js +67 -0
- package/dist/node/index.js +2099 -0
- package/dist/node/policies/engine.js +154 -0
- package/dist/node/policies/index.js +154 -0
- package/dist/policies/engine.d.ts +98 -101
- package/dist/policies/engine.d.ts.map +1 -1
- package/dist/policies/engine.js +151 -164
- package/dist/policies/index.d.ts +2 -2
- package/dist/policies/index.d.ts.map +1 -0
- package/dist/policies/index.js +154 -2
- package/package.json +149 -40
- package/dist/contracts/organization.js.map +0 -1
- package/dist/contracts/rbac.js.map +0 -1
- package/dist/contracts/user.js.map +0 -1
- package/dist/entities/index.js.map +0 -1
- package/dist/entities/organization.js.map +0 -1
- package/dist/entities/rbac.js.map +0 -1
- package/dist/entities/user.js.map +0 -1
- package/dist/events.js.map +0 -1
- package/dist/identity-rbac.capability.js.map +0 -1
- package/dist/identity-rbac.feature.js.map +0 -1
- package/dist/policies/engine.js.map +0 -1
package/dist/entities/rbac.js
CHANGED
|
@@ -1,138 +1,125 @@
|
|
|
1
|
+
// @bun
|
|
2
|
+
// src/entities/rbac.ts
|
|
1
3
|
import { defineEntity, field, index } from "@contractspec/lib.schema";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
permissions: field.string({
|
|
23
|
-
isArray: true,
|
|
24
|
-
description: "Array of permission names"
|
|
25
|
-
}),
|
|
26
|
-
createdAt: field.createdAt(),
|
|
27
|
-
updatedAt: field.updatedAt(),
|
|
28
|
-
policyBindings: field.hasMany("PolicyBinding")
|
|
29
|
-
}
|
|
4
|
+
var RoleEntity = defineEntity({
|
|
5
|
+
name: "Role",
|
|
6
|
+
description: "A role defines a named set of permissions.",
|
|
7
|
+
schema: "lssm_sigil",
|
|
8
|
+
map: "role",
|
|
9
|
+
fields: {
|
|
10
|
+
id: field.id(),
|
|
11
|
+
name: field.string({ isUnique: true, description: "Unique role name" }),
|
|
12
|
+
description: field.string({
|
|
13
|
+
isOptional: true,
|
|
14
|
+
description: "Role description"
|
|
15
|
+
}),
|
|
16
|
+
permissions: field.string({
|
|
17
|
+
isArray: true,
|
|
18
|
+
description: "Array of permission names"
|
|
19
|
+
}),
|
|
20
|
+
createdAt: field.createdAt(),
|
|
21
|
+
updatedAt: field.updatedAt(),
|
|
22
|
+
policyBindings: field.hasMany("PolicyBinding")
|
|
23
|
+
}
|
|
30
24
|
});
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
createdAt: field.createdAt(),
|
|
50
|
-
updatedAt: field.updatedAt()
|
|
51
|
-
}
|
|
25
|
+
var PermissionEntity = defineEntity({
|
|
26
|
+
name: "Permission",
|
|
27
|
+
description: "A permission represents an atomic access right.",
|
|
28
|
+
schema: "lssm_sigil",
|
|
29
|
+
map: "permission",
|
|
30
|
+
fields: {
|
|
31
|
+
id: field.id(),
|
|
32
|
+
name: field.string({
|
|
33
|
+
isUnique: true,
|
|
34
|
+
description: "Unique permission name"
|
|
35
|
+
}),
|
|
36
|
+
description: field.string({
|
|
37
|
+
isOptional: true,
|
|
38
|
+
description: "Permission description"
|
|
39
|
+
}),
|
|
40
|
+
createdAt: field.createdAt(),
|
|
41
|
+
updatedAt: field.updatedAt()
|
|
42
|
+
}
|
|
52
43
|
});
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
organization: field.belongsTo("Organization", ["organizationId"], ["id"])
|
|
76
|
-
},
|
|
77
|
-
indexes: [index.on(["targetType", "targetId"])]
|
|
44
|
+
var PolicyBindingEntity = defineEntity({
|
|
45
|
+
name: "PolicyBinding",
|
|
46
|
+
description: "Binds roles to principals (users or organizations).",
|
|
47
|
+
schema: "lssm_sigil",
|
|
48
|
+
map: "policy_binding",
|
|
49
|
+
fields: {
|
|
50
|
+
id: field.id(),
|
|
51
|
+
roleId: field.foreignKey(),
|
|
52
|
+
targetType: field.string({ description: '"user" or "organization"' }),
|
|
53
|
+
targetId: field.string({ description: "ID of User or Organization" }),
|
|
54
|
+
expiresAt: field.dateTime({
|
|
55
|
+
isOptional: true,
|
|
56
|
+
description: "When binding expires"
|
|
57
|
+
}),
|
|
58
|
+
createdAt: field.createdAt(),
|
|
59
|
+
userId: field.string({ isOptional: true }),
|
|
60
|
+
organizationId: field.string({ isOptional: true }),
|
|
61
|
+
role: field.belongsTo("Role", ["roleId"], ["id"], { onDelete: "Cascade" }),
|
|
62
|
+
user: field.belongsTo("User", ["userId"], ["id"]),
|
|
63
|
+
organization: field.belongsTo("Organization", ["organizationId"], ["id"])
|
|
64
|
+
},
|
|
65
|
+
indexes: [index.on(["targetType", "targetId"])]
|
|
78
66
|
});
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
}
|
|
67
|
+
var ApiKeyEntity = defineEntity({
|
|
68
|
+
name: "ApiKey",
|
|
69
|
+
description: "API keys for programmatic access.",
|
|
70
|
+
schema: "lssm_sigil",
|
|
71
|
+
map: "api_key",
|
|
72
|
+
fields: {
|
|
73
|
+
id: field.id(),
|
|
74
|
+
name: field.string({ description: "API key name" }),
|
|
75
|
+
start: field.string({
|
|
76
|
+
description: "Starting characters for identification"
|
|
77
|
+
}),
|
|
78
|
+
prefix: field.string({ description: "API key prefix" }),
|
|
79
|
+
key: field.string({ description: "Hashed API key" }),
|
|
80
|
+
userId: field.foreignKey(),
|
|
81
|
+
refillInterval: field.int({ description: "Refill interval in ms" }),
|
|
82
|
+
refillAmount: field.int({ description: "Amount to refill" }),
|
|
83
|
+
lastRefillAt: field.dateTime(),
|
|
84
|
+
remaining: field.int({ description: "Remaining requests" }),
|
|
85
|
+
requestCount: field.int({ description: "Total requests made" }),
|
|
86
|
+
lastRequest: field.dateTime(),
|
|
87
|
+
enabled: field.boolean({ default: true }),
|
|
88
|
+
rateLimitEnabled: field.boolean({ default: true }),
|
|
89
|
+
rateLimitTimeWindow: field.int({ description: "Rate limit window in ms" }),
|
|
90
|
+
rateLimitMax: field.int({ description: "Max requests in window" }),
|
|
91
|
+
expiresAt: field.dateTime(),
|
|
92
|
+
permissions: field.string({ isArray: true }),
|
|
93
|
+
metadata: field.json({ isOptional: true }),
|
|
94
|
+
createdAt: field.createdAt(),
|
|
95
|
+
updatedAt: field.updatedAt(),
|
|
96
|
+
user: field.belongsTo("User", ["userId"], ["id"], { onDelete: "Cascade" })
|
|
97
|
+
}
|
|
111
98
|
});
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
createdAt: field.createdAt(),
|
|
132
|
-
user: field.belongsTo("User", ["userId"], ["id"], { onDelete: "Cascade" })
|
|
133
|
-
}
|
|
99
|
+
var PasskeyEntity = defineEntity({
|
|
100
|
+
name: "Passkey",
|
|
101
|
+
description: "WebAuthn passkeys for passwordless authentication.",
|
|
102
|
+
schema: "lssm_sigil",
|
|
103
|
+
map: "passkey",
|
|
104
|
+
fields: {
|
|
105
|
+
id: field.id(),
|
|
106
|
+
name: field.string({ description: "Passkey name" }),
|
|
107
|
+
publicKey: field.string({ description: "Public key" }),
|
|
108
|
+
userId: field.foreignKey(),
|
|
109
|
+
credentialID: field.string({ description: "Credential ID" }),
|
|
110
|
+
counter: field.int({ description: "Counter" }),
|
|
111
|
+
deviceType: field.string({ description: "Device type" }),
|
|
112
|
+
backedUp: field.boolean({ description: "Whether passkey is backed up" }),
|
|
113
|
+
transports: field.string({ description: "Transports" }),
|
|
114
|
+
aaguid: field.string({ description: "Authenticator GUID" }),
|
|
115
|
+
createdAt: field.createdAt(),
|
|
116
|
+
user: field.belongsTo("User", ["userId"], ["id"], { onDelete: "Cascade" })
|
|
117
|
+
}
|
|
134
118
|
});
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
119
|
+
export {
|
|
120
|
+
RoleEntity,
|
|
121
|
+
PolicyBindingEntity,
|
|
122
|
+
PermissionEntity,
|
|
123
|
+
PasskeyEntity,
|
|
124
|
+
ApiKeyEntity
|
|
125
|
+
};
|
package/dist/entities/user.d.ts
CHANGED
|
@@ -1,88 +1,83 @@
|
|
|
1
|
-
import * as _contractspec_lib_schema854 from "@contractspec/lib.schema";
|
|
2
|
-
|
|
3
|
-
//#region src/entities/user.d.ts
|
|
4
1
|
/**
|
|
5
2
|
* User entity - core user profile and authentication.
|
|
6
3
|
*/
|
|
7
|
-
declare const UserEntity:
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
4
|
+
export declare const UserEntity: import("@contractspec/lib.schema").EntitySpec<{
|
|
5
|
+
id: import("@contractspec/lib.schema").EntityScalarField;
|
|
6
|
+
email: import("@contractspec/lib.schema").EntityScalarField;
|
|
7
|
+
emailVerified: import("@contractspec/lib.schema").EntityScalarField;
|
|
8
|
+
name: import("@contractspec/lib.schema").EntityScalarField;
|
|
9
|
+
firstName: import("@contractspec/lib.schema").EntityScalarField;
|
|
10
|
+
lastName: import("@contractspec/lib.schema").EntityScalarField;
|
|
11
|
+
locale: import("@contractspec/lib.schema").EntityScalarField;
|
|
12
|
+
timezone: import("@contractspec/lib.schema").EntityScalarField;
|
|
13
|
+
imageUrl: import("@contractspec/lib.schema").EntityScalarField;
|
|
14
|
+
image: import("@contractspec/lib.schema").EntityScalarField;
|
|
15
|
+
metadata: import("@contractspec/lib.schema").EntityScalarField;
|
|
16
|
+
onboardingCompleted: import("@contractspec/lib.schema").EntityScalarField;
|
|
17
|
+
onboardingStep: import("@contractspec/lib.schema").EntityScalarField;
|
|
18
|
+
whitelistedAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
19
|
+
role: import("@contractspec/lib.schema").EntityScalarField;
|
|
20
|
+
banned: import("@contractspec/lib.schema").EntityScalarField;
|
|
21
|
+
banReason: import("@contractspec/lib.schema").EntityScalarField;
|
|
22
|
+
banExpires: import("@contractspec/lib.schema").EntityScalarField;
|
|
23
|
+
phoneNumber: import("@contractspec/lib.schema").EntityScalarField;
|
|
24
|
+
phoneNumberVerified: import("@contractspec/lib.schema").EntityScalarField;
|
|
25
|
+
createdAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
26
|
+
updatedAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
27
|
+
sessions: import("@contractspec/lib.schema").EntityRelationField;
|
|
28
|
+
accounts: import("@contractspec/lib.schema").EntityRelationField;
|
|
29
|
+
memberships: import("@contractspec/lib.schema").EntityRelationField;
|
|
30
|
+
invitations: import("@contractspec/lib.schema").EntityRelationField;
|
|
31
|
+
teamMemberships: import("@contractspec/lib.schema").EntityRelationField;
|
|
32
|
+
policyBindings: import("@contractspec/lib.schema").EntityRelationField;
|
|
33
|
+
apiKeys: import("@contractspec/lib.schema").EntityRelationField;
|
|
34
|
+
passkeys: import("@contractspec/lib.schema").EntityRelationField;
|
|
38
35
|
}>;
|
|
39
36
|
/**
|
|
40
37
|
* Session entity - login sessions.
|
|
41
38
|
*/
|
|
42
|
-
declare const SessionEntity:
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
39
|
+
export declare const SessionEntity: import("@contractspec/lib.schema").EntitySpec<{
|
|
40
|
+
id: import("@contractspec/lib.schema").EntityScalarField;
|
|
41
|
+
userId: import("@contractspec/lib.schema").EntityScalarField;
|
|
42
|
+
expiresAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
43
|
+
token: import("@contractspec/lib.schema").EntityScalarField;
|
|
44
|
+
ipAddress: import("@contractspec/lib.schema").EntityScalarField;
|
|
45
|
+
userAgent: import("@contractspec/lib.schema").EntityScalarField;
|
|
46
|
+
impersonatedBy: import("@contractspec/lib.schema").EntityScalarField;
|
|
47
|
+
activeOrganizationId: import("@contractspec/lib.schema").EntityScalarField;
|
|
48
|
+
activeTeamId: import("@contractspec/lib.schema").EntityScalarField;
|
|
49
|
+
createdAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
50
|
+
updatedAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
51
|
+
user: import("@contractspec/lib.schema").EntityRelationField;
|
|
55
52
|
}>;
|
|
56
53
|
/**
|
|
57
54
|
* Account entity - external authentication accounts.
|
|
58
55
|
*/
|
|
59
|
-
declare const AccountEntity:
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
56
|
+
export declare const AccountEntity: import("@contractspec/lib.schema").EntitySpec<{
|
|
57
|
+
id: import("@contractspec/lib.schema").EntityScalarField;
|
|
58
|
+
accountId: import("@contractspec/lib.schema").EntityScalarField;
|
|
59
|
+
providerId: import("@contractspec/lib.schema").EntityScalarField;
|
|
60
|
+
userId: import("@contractspec/lib.schema").EntityScalarField;
|
|
61
|
+
accessToken: import("@contractspec/lib.schema").EntityScalarField;
|
|
62
|
+
refreshToken: import("@contractspec/lib.schema").EntityScalarField;
|
|
63
|
+
idToken: import("@contractspec/lib.schema").EntityScalarField;
|
|
64
|
+
accessTokenExpiresAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
65
|
+
refreshTokenExpiresAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
66
|
+
scope: import("@contractspec/lib.schema").EntityScalarField;
|
|
67
|
+
password: import("@contractspec/lib.schema").EntityScalarField;
|
|
68
|
+
createdAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
69
|
+
updatedAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
70
|
+
user: import("@contractspec/lib.schema").EntityRelationField;
|
|
74
71
|
}>;
|
|
75
72
|
/**
|
|
76
73
|
* Verification entity - email/phone verification tokens.
|
|
77
74
|
*/
|
|
78
|
-
declare const VerificationEntity:
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
75
|
+
export declare const VerificationEntity: import("@contractspec/lib.schema").EntitySpec<{
|
|
76
|
+
id: import("@contractspec/lib.schema").EntityScalarField;
|
|
77
|
+
identifier: import("@contractspec/lib.schema").EntityScalarField;
|
|
78
|
+
value: import("@contractspec/lib.schema").EntityScalarField;
|
|
79
|
+
expiresAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
80
|
+
createdAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
81
|
+
updatedAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
85
82
|
}>;
|
|
86
|
-
//#endregion
|
|
87
|
-
export { AccountEntity, SessionEntity, UserEntity, VerificationEntity };
|
|
88
83
|
//# sourceMappingURL=user.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user.d.ts","
|
|
1
|
+
{"version":3,"file":"user.d.ts","sourceRoot":"","sources":["../../src/entities/user.ts"],"names":[],"mappings":"AAEA;;GAEG;AACH,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA+FrB,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,aAAa;;;;;;;;;;;;;EAoCxB,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;EA2BxB,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,kBAAkB;;;;;;;EAa7B,CAAC"}
|