@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/events.js
CHANGED
|
@@ -1,683 +1,375 @@
|
|
|
1
|
-
|
|
1
|
+
// @bun
|
|
2
|
+
// src/events.ts
|
|
3
|
+
import { SchemaModel, ScalarTypeEnum } from "@contractspec/lib.schema";
|
|
2
4
|
import { defineEvent } from "@contractspec/lib.contracts";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
},
|
|
13
|
-
email: {
|
|
14
|
-
type: ScalarTypeEnum.EmailAddress(),
|
|
15
|
-
isOptional: false
|
|
16
|
-
},
|
|
17
|
-
name: {
|
|
18
|
-
type: ScalarTypeEnum.String_unsecure(),
|
|
19
|
-
isOptional: true
|
|
20
|
-
},
|
|
21
|
-
createdAt: {
|
|
22
|
-
type: ScalarTypeEnum.DateTime(),
|
|
23
|
-
isOptional: false
|
|
24
|
-
}
|
|
25
|
-
}
|
|
5
|
+
var UserCreatedPayload = new SchemaModel({
|
|
6
|
+
name: "UserCreatedPayload",
|
|
7
|
+
description: "Payload for user created event",
|
|
8
|
+
fields: {
|
|
9
|
+
userId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
10
|
+
email: { type: ScalarTypeEnum.EmailAddress(), isOptional: false },
|
|
11
|
+
name: { type: ScalarTypeEnum.String_unsecure(), isOptional: true },
|
|
12
|
+
createdAt: { type: ScalarTypeEnum.DateTime(), isOptional: false }
|
|
13
|
+
}
|
|
26
14
|
});
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
},
|
|
40
|
-
updatedAt: {
|
|
41
|
-
type: ScalarTypeEnum.DateTime(),
|
|
42
|
-
isOptional: false
|
|
43
|
-
}
|
|
44
|
-
}
|
|
15
|
+
var UserUpdatedPayload = new SchemaModel({
|
|
16
|
+
name: "UserUpdatedPayload",
|
|
17
|
+
description: "Payload for user updated event",
|
|
18
|
+
fields: {
|
|
19
|
+
userId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
20
|
+
updatedFields: {
|
|
21
|
+
type: ScalarTypeEnum.String_unsecure(),
|
|
22
|
+
isOptional: false,
|
|
23
|
+
isArray: true
|
|
24
|
+
},
|
|
25
|
+
updatedAt: { type: ScalarTypeEnum.DateTime(), isOptional: false }
|
|
26
|
+
}
|
|
45
27
|
});
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
email: {
|
|
55
|
-
type: ScalarTypeEnum.EmailAddress(),
|
|
56
|
-
isOptional: false
|
|
57
|
-
},
|
|
58
|
-
deletedAt: {
|
|
59
|
-
type: ScalarTypeEnum.DateTime(),
|
|
60
|
-
isOptional: false
|
|
61
|
-
}
|
|
62
|
-
}
|
|
28
|
+
var UserDeletedPayload = new SchemaModel({
|
|
29
|
+
name: "UserDeletedPayload",
|
|
30
|
+
description: "Payload for user deleted event",
|
|
31
|
+
fields: {
|
|
32
|
+
userId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
33
|
+
email: { type: ScalarTypeEnum.EmailAddress(), isOptional: false },
|
|
34
|
+
deletedAt: { type: ScalarTypeEnum.DateTime(), isOptional: false }
|
|
35
|
+
}
|
|
63
36
|
});
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
email: {
|
|
73
|
-
type: ScalarTypeEnum.EmailAddress(),
|
|
74
|
-
isOptional: false
|
|
75
|
-
},
|
|
76
|
-
verifiedAt: {
|
|
77
|
-
type: ScalarTypeEnum.DateTime(),
|
|
78
|
-
isOptional: false
|
|
79
|
-
}
|
|
80
|
-
}
|
|
37
|
+
var UserEmailVerifiedPayload = new SchemaModel({
|
|
38
|
+
name: "UserEmailVerifiedPayload",
|
|
39
|
+
description: "Payload for user email verified event",
|
|
40
|
+
fields: {
|
|
41
|
+
userId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
42
|
+
email: { type: ScalarTypeEnum.EmailAddress(), isOptional: false },
|
|
43
|
+
verifiedAt: { type: ScalarTypeEnum.DateTime(), isOptional: false }
|
|
44
|
+
}
|
|
81
45
|
});
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
isOptional: false
|
|
93
|
-
},
|
|
94
|
-
slug: {
|
|
95
|
-
type: ScalarTypeEnum.String_unsecure(),
|
|
96
|
-
isOptional: true
|
|
97
|
-
},
|
|
98
|
-
createdBy: {
|
|
99
|
-
type: ScalarTypeEnum.String_unsecure(),
|
|
100
|
-
isOptional: false
|
|
101
|
-
},
|
|
102
|
-
createdAt: {
|
|
103
|
-
type: ScalarTypeEnum.DateTime(),
|
|
104
|
-
isOptional: false
|
|
105
|
-
}
|
|
106
|
-
}
|
|
46
|
+
var OrgCreatedPayload = new SchemaModel({
|
|
47
|
+
name: "OrgCreatedPayload",
|
|
48
|
+
description: "Payload for org created event",
|
|
49
|
+
fields: {
|
|
50
|
+
orgId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
51
|
+
name: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
52
|
+
slug: { type: ScalarTypeEnum.String_unsecure(), isOptional: true },
|
|
53
|
+
createdBy: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
54
|
+
createdAt: { type: ScalarTypeEnum.DateTime(), isOptional: false }
|
|
55
|
+
}
|
|
107
56
|
});
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
updatedBy: {
|
|
122
|
-
type: ScalarTypeEnum.String_unsecure(),
|
|
123
|
-
isOptional: false
|
|
124
|
-
},
|
|
125
|
-
updatedAt: {
|
|
126
|
-
type: ScalarTypeEnum.DateTime(),
|
|
127
|
-
isOptional: false
|
|
128
|
-
}
|
|
129
|
-
}
|
|
57
|
+
var OrgUpdatedPayload = new SchemaModel({
|
|
58
|
+
name: "OrgUpdatedPayload",
|
|
59
|
+
description: "Payload for org updated event",
|
|
60
|
+
fields: {
|
|
61
|
+
orgId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
62
|
+
updatedFields: {
|
|
63
|
+
type: ScalarTypeEnum.String_unsecure(),
|
|
64
|
+
isOptional: false,
|
|
65
|
+
isArray: true
|
|
66
|
+
},
|
|
67
|
+
updatedBy: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
68
|
+
updatedAt: { type: ScalarTypeEnum.DateTime(), isOptional: false }
|
|
69
|
+
}
|
|
130
70
|
});
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
type: ScalarTypeEnum.String_unsecure(),
|
|
141
|
-
isOptional: false
|
|
142
|
-
},
|
|
143
|
-
deletedBy: {
|
|
144
|
-
type: ScalarTypeEnum.String_unsecure(),
|
|
145
|
-
isOptional: false
|
|
146
|
-
},
|
|
147
|
-
deletedAt: {
|
|
148
|
-
type: ScalarTypeEnum.DateTime(),
|
|
149
|
-
isOptional: false
|
|
150
|
-
}
|
|
151
|
-
}
|
|
71
|
+
var OrgDeletedPayload = new SchemaModel({
|
|
72
|
+
name: "OrgDeletedPayload",
|
|
73
|
+
description: "Payload for org deleted event",
|
|
74
|
+
fields: {
|
|
75
|
+
orgId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
76
|
+
name: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
77
|
+
deletedBy: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
78
|
+
deletedAt: { type: ScalarTypeEnum.DateTime(), isOptional: false }
|
|
79
|
+
}
|
|
152
80
|
});
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
isOptional: false
|
|
164
|
-
},
|
|
165
|
-
role: {
|
|
166
|
-
type: ScalarTypeEnum.String_unsecure(),
|
|
167
|
-
isOptional: false
|
|
168
|
-
},
|
|
169
|
-
invitedBy: {
|
|
170
|
-
type: ScalarTypeEnum.String_unsecure(),
|
|
171
|
-
isOptional: true
|
|
172
|
-
},
|
|
173
|
-
joinedAt: {
|
|
174
|
-
type: ScalarTypeEnum.DateTime(),
|
|
175
|
-
isOptional: false
|
|
176
|
-
}
|
|
177
|
-
}
|
|
81
|
+
var OrgMemberAddedPayload = new SchemaModel({
|
|
82
|
+
name: "OrgMemberAddedPayload",
|
|
83
|
+
description: "Payload for member added event",
|
|
84
|
+
fields: {
|
|
85
|
+
orgId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
86
|
+
userId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
87
|
+
role: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
88
|
+
invitedBy: { type: ScalarTypeEnum.String_unsecure(), isOptional: true },
|
|
89
|
+
joinedAt: { type: ScalarTypeEnum.DateTime(), isOptional: false }
|
|
90
|
+
}
|
|
178
91
|
});
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
isOptional: false
|
|
190
|
-
},
|
|
191
|
-
removedBy: {
|
|
192
|
-
type: ScalarTypeEnum.String_unsecure(),
|
|
193
|
-
isOptional: true
|
|
194
|
-
},
|
|
195
|
-
reason: {
|
|
196
|
-
type: ScalarTypeEnum.String_unsecure(),
|
|
197
|
-
isOptional: true
|
|
198
|
-
},
|
|
199
|
-
removedAt: {
|
|
200
|
-
type: ScalarTypeEnum.DateTime(),
|
|
201
|
-
isOptional: false
|
|
202
|
-
}
|
|
203
|
-
}
|
|
92
|
+
var OrgMemberRemovedPayload = new SchemaModel({
|
|
93
|
+
name: "OrgMemberRemovedPayload",
|
|
94
|
+
description: "Payload for member removed event",
|
|
95
|
+
fields: {
|
|
96
|
+
orgId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
97
|
+
userId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
98
|
+
removedBy: { type: ScalarTypeEnum.String_unsecure(), isOptional: true },
|
|
99
|
+
reason: { type: ScalarTypeEnum.String_unsecure(), isOptional: true },
|
|
100
|
+
removedAt: { type: ScalarTypeEnum.DateTime(), isOptional: false }
|
|
101
|
+
}
|
|
204
102
|
});
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
},
|
|
217
|
-
previousRole: {
|
|
218
|
-
type: ScalarTypeEnum.String_unsecure(),
|
|
219
|
-
isOptional: false
|
|
220
|
-
},
|
|
221
|
-
newRole: {
|
|
222
|
-
type: ScalarTypeEnum.String_unsecure(),
|
|
223
|
-
isOptional: false
|
|
224
|
-
},
|
|
225
|
-
changedBy: {
|
|
226
|
-
type: ScalarTypeEnum.String_unsecure(),
|
|
227
|
-
isOptional: false
|
|
228
|
-
},
|
|
229
|
-
changedAt: {
|
|
230
|
-
type: ScalarTypeEnum.DateTime(),
|
|
231
|
-
isOptional: false
|
|
232
|
-
}
|
|
233
|
-
}
|
|
103
|
+
var OrgMemberRoleChangedPayload = new SchemaModel({
|
|
104
|
+
name: "OrgMemberRoleChangedPayload",
|
|
105
|
+
description: "Payload for member role changed event",
|
|
106
|
+
fields: {
|
|
107
|
+
orgId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
108
|
+
userId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
109
|
+
previousRole: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
110
|
+
newRole: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
111
|
+
changedBy: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
112
|
+
changedAt: { type: ScalarTypeEnum.DateTime(), isOptional: false }
|
|
113
|
+
}
|
|
234
114
|
});
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
email: {
|
|
248
|
-
type: ScalarTypeEnum.EmailAddress(),
|
|
249
|
-
isOptional: false
|
|
250
|
-
},
|
|
251
|
-
role: {
|
|
252
|
-
type: ScalarTypeEnum.String_unsecure(),
|
|
253
|
-
isOptional: false
|
|
254
|
-
},
|
|
255
|
-
invitedBy: {
|
|
256
|
-
type: ScalarTypeEnum.String_unsecure(),
|
|
257
|
-
isOptional: false
|
|
258
|
-
},
|
|
259
|
-
expiresAt: {
|
|
260
|
-
type: ScalarTypeEnum.DateTime(),
|
|
261
|
-
isOptional: true
|
|
262
|
-
},
|
|
263
|
-
sentAt: {
|
|
264
|
-
type: ScalarTypeEnum.DateTime(),
|
|
265
|
-
isOptional: false
|
|
266
|
-
}
|
|
267
|
-
}
|
|
115
|
+
var OrgInviteSentPayload = new SchemaModel({
|
|
116
|
+
name: "OrgInviteSentPayload",
|
|
117
|
+
description: "Payload for invite sent event",
|
|
118
|
+
fields: {
|
|
119
|
+
invitationId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
120
|
+
orgId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
121
|
+
email: { type: ScalarTypeEnum.EmailAddress(), isOptional: false },
|
|
122
|
+
role: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
123
|
+
invitedBy: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
124
|
+
expiresAt: { type: ScalarTypeEnum.DateTime(), isOptional: true },
|
|
125
|
+
sentAt: { type: ScalarTypeEnum.DateTime(), isOptional: false }
|
|
126
|
+
}
|
|
268
127
|
});
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
type: ScalarTypeEnum.String_unsecure(),
|
|
279
|
-
isOptional: false
|
|
280
|
-
},
|
|
281
|
-
userId: {
|
|
282
|
-
type: ScalarTypeEnum.String_unsecure(),
|
|
283
|
-
isOptional: false
|
|
284
|
-
},
|
|
285
|
-
acceptedAt: {
|
|
286
|
-
type: ScalarTypeEnum.DateTime(),
|
|
287
|
-
isOptional: false
|
|
288
|
-
}
|
|
289
|
-
}
|
|
128
|
+
var OrgInviteAcceptedPayload = new SchemaModel({
|
|
129
|
+
name: "OrgInviteAcceptedPayload",
|
|
130
|
+
description: "Payload for invite accepted event",
|
|
131
|
+
fields: {
|
|
132
|
+
invitationId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
133
|
+
orgId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
134
|
+
userId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
135
|
+
acceptedAt: { type: ScalarTypeEnum.DateTime(), isOptional: false }
|
|
136
|
+
}
|
|
290
137
|
});
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
orgId: {
|
|
300
|
-
type: ScalarTypeEnum.String_unsecure(),
|
|
301
|
-
isOptional: false
|
|
302
|
-
},
|
|
303
|
-
declinedAt: {
|
|
304
|
-
type: ScalarTypeEnum.DateTime(),
|
|
305
|
-
isOptional: false
|
|
306
|
-
}
|
|
307
|
-
}
|
|
138
|
+
var OrgInviteDeclinedPayload = new SchemaModel({
|
|
139
|
+
name: "OrgInviteDeclinedPayload",
|
|
140
|
+
description: "Payload for invite declined event",
|
|
141
|
+
fields: {
|
|
142
|
+
invitationId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
143
|
+
orgId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
144
|
+
declinedAt: { type: ScalarTypeEnum.DateTime(), isOptional: false }
|
|
145
|
+
}
|
|
308
146
|
});
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
type: ScalarTypeEnum.String_unsecure(),
|
|
323
|
-
isOptional: false
|
|
324
|
-
},
|
|
325
|
-
targetType: {
|
|
326
|
-
type: ScalarTypeEnum.String_unsecure(),
|
|
327
|
-
isOptional: false
|
|
328
|
-
},
|
|
329
|
-
targetId: {
|
|
330
|
-
type: ScalarTypeEnum.String_unsecure(),
|
|
331
|
-
isOptional: false
|
|
332
|
-
},
|
|
333
|
-
assignedBy: {
|
|
334
|
-
type: ScalarTypeEnum.String_unsecure(),
|
|
335
|
-
isOptional: false
|
|
336
|
-
},
|
|
337
|
-
expiresAt: {
|
|
338
|
-
type: ScalarTypeEnum.DateTime(),
|
|
339
|
-
isOptional: true
|
|
340
|
-
},
|
|
341
|
-
assignedAt: {
|
|
342
|
-
type: ScalarTypeEnum.DateTime(),
|
|
343
|
-
isOptional: false
|
|
344
|
-
}
|
|
345
|
-
}
|
|
147
|
+
var RoleAssignedPayload = new SchemaModel({
|
|
148
|
+
name: "RoleAssignedPayload",
|
|
149
|
+
description: "Payload for role assigned event",
|
|
150
|
+
fields: {
|
|
151
|
+
bindingId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
152
|
+
roleId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
153
|
+
roleName: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
154
|
+
targetType: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
155
|
+
targetId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
156
|
+
assignedBy: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
157
|
+
expiresAt: { type: ScalarTypeEnum.DateTime(), isOptional: true },
|
|
158
|
+
assignedAt: { type: ScalarTypeEnum.DateTime(), isOptional: false }
|
|
159
|
+
}
|
|
346
160
|
});
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
roleName: {
|
|
360
|
-
type: ScalarTypeEnum.String_unsecure(),
|
|
361
|
-
isOptional: false
|
|
362
|
-
},
|
|
363
|
-
targetType: {
|
|
364
|
-
type: ScalarTypeEnum.String_unsecure(),
|
|
365
|
-
isOptional: false
|
|
366
|
-
},
|
|
367
|
-
targetId: {
|
|
368
|
-
type: ScalarTypeEnum.String_unsecure(),
|
|
369
|
-
isOptional: false
|
|
370
|
-
},
|
|
371
|
-
revokedBy: {
|
|
372
|
-
type: ScalarTypeEnum.String_unsecure(),
|
|
373
|
-
isOptional: false
|
|
374
|
-
},
|
|
375
|
-
revokedAt: {
|
|
376
|
-
type: ScalarTypeEnum.DateTime(),
|
|
377
|
-
isOptional: false
|
|
378
|
-
}
|
|
379
|
-
}
|
|
161
|
+
var RoleRevokedPayload = new SchemaModel({
|
|
162
|
+
name: "RoleRevokedPayload",
|
|
163
|
+
description: "Payload for role revoked event",
|
|
164
|
+
fields: {
|
|
165
|
+
bindingId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
166
|
+
roleId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
167
|
+
roleName: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
168
|
+
targetType: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
169
|
+
targetId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
170
|
+
revokedBy: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
171
|
+
revokedAt: { type: ScalarTypeEnum.DateTime(), isOptional: false }
|
|
172
|
+
}
|
|
380
173
|
});
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
tags: [
|
|
392
|
-
"user",
|
|
393
|
-
"created",
|
|
394
|
-
"identity"
|
|
395
|
-
]
|
|
396
|
-
},
|
|
397
|
-
payload: UserCreatedPayload
|
|
174
|
+
var UserCreatedEvent = defineEvent({
|
|
175
|
+
meta: {
|
|
176
|
+
key: "user.created",
|
|
177
|
+
version: "1.0.0",
|
|
178
|
+
description: "A new user has been created.",
|
|
179
|
+
stability: "stable",
|
|
180
|
+
owners: ["@platform.identity-rbac"],
|
|
181
|
+
tags: ["user", "created", "identity"]
|
|
182
|
+
},
|
|
183
|
+
payload: UserCreatedPayload
|
|
398
184
|
});
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
tags: [
|
|
410
|
-
"user",
|
|
411
|
-
"updated",
|
|
412
|
-
"identity"
|
|
413
|
-
]
|
|
414
|
-
},
|
|
415
|
-
payload: UserUpdatedPayload
|
|
185
|
+
var UserUpdatedEvent = defineEvent({
|
|
186
|
+
meta: {
|
|
187
|
+
key: "user.updated",
|
|
188
|
+
version: "1.0.0",
|
|
189
|
+
description: "A user profile has been updated.",
|
|
190
|
+
stability: "stable",
|
|
191
|
+
owners: ["@platform.identity-rbac"],
|
|
192
|
+
tags: ["user", "updated", "identity"]
|
|
193
|
+
},
|
|
194
|
+
payload: UserUpdatedPayload
|
|
416
195
|
});
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
"user",
|
|
429
|
-
"deleted",
|
|
430
|
-
"identity"
|
|
431
|
-
]
|
|
432
|
-
},
|
|
433
|
-
pii: ["email"],
|
|
434
|
-
payload: UserDeletedPayload
|
|
196
|
+
var UserDeletedEvent = defineEvent({
|
|
197
|
+
meta: {
|
|
198
|
+
key: "user.deleted",
|
|
199
|
+
version: "1.0.0",
|
|
200
|
+
description: "A user account has been deleted.",
|
|
201
|
+
stability: "stable",
|
|
202
|
+
owners: ["@platform.identity-rbac"],
|
|
203
|
+
tags: ["user", "deleted", "identity"]
|
|
204
|
+
},
|
|
205
|
+
pii: ["email"],
|
|
206
|
+
payload: UserDeletedPayload
|
|
435
207
|
});
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
tags: [
|
|
447
|
-
"user",
|
|
448
|
-
"verified",
|
|
449
|
-
"identity"
|
|
450
|
-
]
|
|
451
|
-
},
|
|
452
|
-
payload: UserEmailVerifiedPayload
|
|
208
|
+
var UserEmailVerifiedEvent = defineEvent({
|
|
209
|
+
meta: {
|
|
210
|
+
key: "user.email_verified",
|
|
211
|
+
version: "1.0.0",
|
|
212
|
+
description: "A user has verified their email address.",
|
|
213
|
+
stability: "stable",
|
|
214
|
+
owners: ["@platform.identity-rbac"],
|
|
215
|
+
tags: ["user", "verified", "identity"]
|
|
216
|
+
},
|
|
217
|
+
payload: UserEmailVerifiedPayload
|
|
453
218
|
});
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
tags: [
|
|
465
|
-
"org",
|
|
466
|
-
"created",
|
|
467
|
-
"identity"
|
|
468
|
-
]
|
|
469
|
-
},
|
|
470
|
-
payload: OrgCreatedPayload
|
|
219
|
+
var OrgCreatedEvent = defineEvent({
|
|
220
|
+
meta: {
|
|
221
|
+
key: "org.created",
|
|
222
|
+
version: "1.0.0",
|
|
223
|
+
description: "A new organization has been created.",
|
|
224
|
+
stability: "stable",
|
|
225
|
+
owners: ["@platform.identity-rbac"],
|
|
226
|
+
tags: ["org", "created", "identity"]
|
|
227
|
+
},
|
|
228
|
+
payload: OrgCreatedPayload
|
|
471
229
|
});
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
tags: [
|
|
483
|
-
"org",
|
|
484
|
-
"updated",
|
|
485
|
-
"identity"
|
|
486
|
-
]
|
|
487
|
-
},
|
|
488
|
-
payload: OrgUpdatedPayload
|
|
230
|
+
var OrgUpdatedEvent = defineEvent({
|
|
231
|
+
meta: {
|
|
232
|
+
key: "org.updated",
|
|
233
|
+
version: "1.0.0",
|
|
234
|
+
description: "An organization has been updated.",
|
|
235
|
+
stability: "stable",
|
|
236
|
+
owners: ["@platform.identity-rbac"],
|
|
237
|
+
tags: ["org", "updated", "identity"]
|
|
238
|
+
},
|
|
239
|
+
payload: OrgUpdatedPayload
|
|
489
240
|
});
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
tags: [
|
|
501
|
-
"org",
|
|
502
|
-
"deleted",
|
|
503
|
-
"identity"
|
|
504
|
-
]
|
|
505
|
-
},
|
|
506
|
-
payload: OrgDeletedPayload
|
|
241
|
+
var OrgDeletedEvent = defineEvent({
|
|
242
|
+
meta: {
|
|
243
|
+
key: "org.deleted",
|
|
244
|
+
version: "1.0.0",
|
|
245
|
+
description: "An organization has been deleted.",
|
|
246
|
+
stability: "stable",
|
|
247
|
+
owners: ["@platform.identity-rbac"],
|
|
248
|
+
tags: ["org", "deleted", "identity"]
|
|
249
|
+
},
|
|
250
|
+
payload: OrgDeletedPayload
|
|
507
251
|
});
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
tags: [
|
|
519
|
-
"org",
|
|
520
|
-
"member",
|
|
521
|
-
"added",
|
|
522
|
-
"identity"
|
|
523
|
-
]
|
|
524
|
-
},
|
|
525
|
-
payload: OrgMemberAddedPayload
|
|
252
|
+
var OrgMemberAddedEvent = defineEvent({
|
|
253
|
+
meta: {
|
|
254
|
+
key: "org.member.added",
|
|
255
|
+
version: "1.0.0",
|
|
256
|
+
description: "A user has joined an organization.",
|
|
257
|
+
stability: "stable",
|
|
258
|
+
owners: ["@platform.identity-rbac"],
|
|
259
|
+
tags: ["org", "member", "added", "identity"]
|
|
260
|
+
},
|
|
261
|
+
payload: OrgMemberAddedPayload
|
|
526
262
|
});
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
tags: [
|
|
538
|
-
"org",
|
|
539
|
-
"member",
|
|
540
|
-
"removed",
|
|
541
|
-
"identity"
|
|
542
|
-
]
|
|
543
|
-
},
|
|
544
|
-
payload: OrgMemberRemovedPayload
|
|
263
|
+
var OrgMemberRemovedEvent = defineEvent({
|
|
264
|
+
meta: {
|
|
265
|
+
key: "org.member.removed",
|
|
266
|
+
version: "1.0.0",
|
|
267
|
+
description: "A user has left or been removed from an organization.",
|
|
268
|
+
stability: "stable",
|
|
269
|
+
owners: ["@platform.identity-rbac"],
|
|
270
|
+
tags: ["org", "member", "removed", "identity"]
|
|
271
|
+
},
|
|
272
|
+
payload: OrgMemberRemovedPayload
|
|
545
273
|
});
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
tags: [
|
|
557
|
-
"org",
|
|
558
|
-
"member",
|
|
559
|
-
"role",
|
|
560
|
-
"changed",
|
|
561
|
-
"identity"
|
|
562
|
-
]
|
|
563
|
-
},
|
|
564
|
-
payload: OrgMemberRoleChangedPayload
|
|
274
|
+
var OrgMemberRoleChangedEvent = defineEvent({
|
|
275
|
+
meta: {
|
|
276
|
+
key: "org.member.role_changed",
|
|
277
|
+
version: "1.0.0",
|
|
278
|
+
description: "A member's role in an organization has changed.",
|
|
279
|
+
stability: "stable",
|
|
280
|
+
owners: ["@platform.identity-rbac"],
|
|
281
|
+
tags: ["org", "member", "role", "changed", "identity"]
|
|
282
|
+
},
|
|
283
|
+
payload: OrgMemberRoleChangedPayload
|
|
565
284
|
});
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
"org",
|
|
578
|
-
"invite",
|
|
579
|
-
"sent",
|
|
580
|
-
"identity"
|
|
581
|
-
]
|
|
582
|
-
},
|
|
583
|
-
pii: ["email"],
|
|
584
|
-
payload: OrgInviteSentPayload
|
|
285
|
+
var OrgInviteSentEvent = defineEvent({
|
|
286
|
+
meta: {
|
|
287
|
+
key: "org.invite.sent",
|
|
288
|
+
version: "1.0.0",
|
|
289
|
+
description: "An invitation to join an organization has been sent.",
|
|
290
|
+
stability: "stable",
|
|
291
|
+
owners: ["@platform.identity-rbac"],
|
|
292
|
+
tags: ["org", "invite", "sent", "identity"]
|
|
293
|
+
},
|
|
294
|
+
pii: ["email"],
|
|
295
|
+
payload: OrgInviteSentPayload
|
|
585
296
|
});
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
tags: [
|
|
597
|
-
"org",
|
|
598
|
-
"invite",
|
|
599
|
-
"accepted",
|
|
600
|
-
"identity"
|
|
601
|
-
]
|
|
602
|
-
},
|
|
603
|
-
payload: OrgInviteAcceptedPayload
|
|
297
|
+
var OrgInviteAcceptedEvent = defineEvent({
|
|
298
|
+
meta: {
|
|
299
|
+
key: "org.invite.accepted",
|
|
300
|
+
version: "1.0.0",
|
|
301
|
+
description: "An invitation has been accepted.",
|
|
302
|
+
stability: "stable",
|
|
303
|
+
owners: ["@platform.identity-rbac"],
|
|
304
|
+
tags: ["org", "invite", "accepted", "identity"]
|
|
305
|
+
},
|
|
306
|
+
payload: OrgInviteAcceptedPayload
|
|
604
307
|
});
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
tags: [
|
|
616
|
-
"org",
|
|
617
|
-
"invite",
|
|
618
|
-
"declined",
|
|
619
|
-
"identity"
|
|
620
|
-
]
|
|
621
|
-
},
|
|
622
|
-
payload: OrgInviteDeclinedPayload
|
|
308
|
+
var OrgInviteDeclinedEvent = defineEvent({
|
|
309
|
+
meta: {
|
|
310
|
+
key: "org.invite.declined",
|
|
311
|
+
version: "1.0.0",
|
|
312
|
+
description: "An invitation has been declined.",
|
|
313
|
+
stability: "stable",
|
|
314
|
+
owners: ["@platform.identity-rbac"],
|
|
315
|
+
tags: ["org", "invite", "declined", "identity"]
|
|
316
|
+
},
|
|
317
|
+
payload: OrgInviteDeclinedPayload
|
|
623
318
|
});
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
tags: [
|
|
635
|
-
"role",
|
|
636
|
-
"assigned",
|
|
637
|
-
"identity"
|
|
638
|
-
]
|
|
639
|
-
},
|
|
640
|
-
payload: RoleAssignedPayload
|
|
319
|
+
var RoleAssignedEvent = defineEvent({
|
|
320
|
+
meta: {
|
|
321
|
+
key: "role.assigned",
|
|
322
|
+
version: "1.0.0",
|
|
323
|
+
description: "A role has been assigned.",
|
|
324
|
+
stability: "stable",
|
|
325
|
+
owners: ["@platform.identity-rbac"],
|
|
326
|
+
tags: ["role", "assigned", "identity"]
|
|
327
|
+
},
|
|
328
|
+
payload: RoleAssignedPayload
|
|
641
329
|
});
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
tags: [
|
|
653
|
-
"role",
|
|
654
|
-
"revoked",
|
|
655
|
-
"identity"
|
|
656
|
-
]
|
|
657
|
-
},
|
|
658
|
-
payload: RoleRevokedPayload
|
|
330
|
+
var RoleRevokedEvent = defineEvent({
|
|
331
|
+
meta: {
|
|
332
|
+
key: "role.revoked",
|
|
333
|
+
version: "1.0.0",
|
|
334
|
+
description: "A role has been revoked.",
|
|
335
|
+
stability: "stable",
|
|
336
|
+
owners: ["@platform.identity-rbac"],
|
|
337
|
+
tags: ["role", "revoked", "identity"]
|
|
338
|
+
},
|
|
339
|
+
payload: RoleRevokedPayload
|
|
659
340
|
});
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
341
|
+
var IdentityRbacEvents = {
|
|
342
|
+
UserCreatedEvent,
|
|
343
|
+
UserUpdatedEvent,
|
|
344
|
+
UserDeletedEvent,
|
|
345
|
+
UserEmailVerifiedEvent,
|
|
346
|
+
OrgCreatedEvent,
|
|
347
|
+
OrgUpdatedEvent,
|
|
348
|
+
OrgDeletedEvent,
|
|
349
|
+
OrgMemberAddedEvent,
|
|
350
|
+
OrgMemberRemovedEvent,
|
|
351
|
+
OrgMemberRoleChangedEvent,
|
|
352
|
+
OrgInviteSentEvent,
|
|
353
|
+
OrgInviteAcceptedEvent,
|
|
354
|
+
OrgInviteDeclinedEvent,
|
|
355
|
+
RoleAssignedEvent,
|
|
356
|
+
RoleRevokedEvent
|
|
357
|
+
};
|
|
358
|
+
export {
|
|
359
|
+
UserUpdatedEvent,
|
|
360
|
+
UserEmailVerifiedEvent,
|
|
361
|
+
UserDeletedEvent,
|
|
362
|
+
UserCreatedEvent,
|
|
363
|
+
RoleRevokedEvent,
|
|
364
|
+
RoleAssignedEvent,
|
|
365
|
+
OrgUpdatedEvent,
|
|
366
|
+
OrgMemberRoleChangedEvent,
|
|
367
|
+
OrgMemberRemovedEvent,
|
|
368
|
+
OrgMemberAddedEvent,
|
|
369
|
+
OrgInviteSentEvent,
|
|
370
|
+
OrgInviteDeclinedEvent,
|
|
371
|
+
OrgInviteAcceptedEvent,
|
|
372
|
+
OrgDeletedEvent,
|
|
373
|
+
OrgCreatedEvent,
|
|
374
|
+
IdentityRbacEvents
|
|
679
375
|
};
|
|
680
|
-
|
|
681
|
-
//#endregion
|
|
682
|
-
export { IdentityRbacEvents, OrgCreatedEvent, OrgDeletedEvent, OrgInviteAcceptedEvent, OrgInviteDeclinedEvent, OrgInviteSentEvent, OrgMemberAddedEvent, OrgMemberRemovedEvent, OrgMemberRoleChangedEvent, OrgUpdatedEvent, RoleAssignedEvent, RoleRevokedEvent, UserCreatedEvent, UserDeletedEvent, UserEmailVerifiedEvent, UserUpdatedEvent };
|
|
683
|
-
//# sourceMappingURL=events.js.map
|