@bondsports/types 0.0.61 → 0.0.64
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/build/index.d.ts +184 -184
- package/build/index.es.js.map +1 -1
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -20,6 +20,13 @@ export declare class UserAnswersDto {
|
|
|
20
20
|
export declare class GetByQuestionnaireIdsDto {
|
|
21
21
|
questionnaireIds: string;
|
|
22
22
|
}
|
|
23
|
+
export declare class FindBookingTypeSettingDto {
|
|
24
|
+
organizationId: number;
|
|
25
|
+
facilityId: number;
|
|
26
|
+
spaceId: number;
|
|
27
|
+
bookingDate: string;
|
|
28
|
+
bookingTime: string;
|
|
29
|
+
}
|
|
23
30
|
export declare class FindByMembershipIdDto extends ByOrganizationIdDto {
|
|
24
31
|
membershipId: number;
|
|
25
32
|
}
|
|
@@ -78,12 +85,106 @@ export declare class AddEditCustomerDto {
|
|
|
78
85
|
emergencyContactName?: string;
|
|
79
86
|
emergencyContactPhone?: string;
|
|
80
87
|
}
|
|
81
|
-
export declare class
|
|
88
|
+
export declare class FindEventByIdDto {
|
|
89
|
+
eventId: number;
|
|
82
90
|
organizationId: number;
|
|
91
|
+
}
|
|
92
|
+
export declare class UpdateEventDto {
|
|
93
|
+
name: string;
|
|
94
|
+
startDate: string;
|
|
95
|
+
endDate: string;
|
|
96
|
+
startTime: string;
|
|
97
|
+
endTime: string;
|
|
98
|
+
spacesIds?: number[];
|
|
99
|
+
publicNotes?: string;
|
|
100
|
+
privateNotes?: string;
|
|
101
|
+
isInformAttendees?: boolean;
|
|
102
|
+
minutesBeforeSlot?: number;
|
|
103
|
+
minutesAfterSlot?: number;
|
|
104
|
+
}
|
|
105
|
+
export declare class AddEventToSessionDto {
|
|
106
|
+
eventsData: UpdateEventDto[];
|
|
107
|
+
}
|
|
108
|
+
export declare class EventsIdsQueryDto {
|
|
109
|
+
eventsIds: string;
|
|
110
|
+
}
|
|
111
|
+
export declare class UpdateMultipleEventsDto {
|
|
112
|
+
eventsIds: number[];
|
|
113
|
+
name?: string;
|
|
114
|
+
startTime?: string;
|
|
115
|
+
endTime?: string;
|
|
116
|
+
spacesIds?: number[];
|
|
117
|
+
publicNotes?: string;
|
|
118
|
+
privateNotes?: string;
|
|
119
|
+
isInformAttendees?: boolean;
|
|
120
|
+
minutesBeforeSlot?: number;
|
|
121
|
+
minutesAfterSlot?: number;
|
|
122
|
+
}
|
|
123
|
+
export declare class FindByFacilityIdDto {
|
|
83
124
|
facilityId: number;
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
125
|
+
}
|
|
126
|
+
export declare class FindByFacilityIdAndOrganizationIdDto extends FindByFacilityIdDto {
|
|
127
|
+
organizationId: number;
|
|
128
|
+
}
|
|
129
|
+
export declare class FacilityEventsScheduleQueryParams {
|
|
130
|
+
programsIds?: string;
|
|
131
|
+
startDate?: string;
|
|
132
|
+
endDate?: string;
|
|
133
|
+
}
|
|
134
|
+
export declare class ProgramLandingPageDto {
|
|
135
|
+
programId: number;
|
|
136
|
+
}
|
|
137
|
+
export declare class ProgramLandingPageQueryDto {
|
|
138
|
+
futureLimit?: number;
|
|
139
|
+
}
|
|
140
|
+
export declare class ProgramSessionLandingPageDto {
|
|
141
|
+
programId: number;
|
|
142
|
+
sessionId: number;
|
|
143
|
+
}
|
|
144
|
+
export interface IEventOfSessionDetails {
|
|
145
|
+
id: number;
|
|
146
|
+
name: string;
|
|
147
|
+
programId: number;
|
|
148
|
+
programType: ProgramTypesEnum;
|
|
149
|
+
sessionId: number;
|
|
150
|
+
sessionName: string;
|
|
151
|
+
isPublic: boolean;
|
|
152
|
+
startDate: Date;
|
|
153
|
+
endDate: Date;
|
|
154
|
+
startTime: string;
|
|
155
|
+
endTime: string;
|
|
156
|
+
resources: IBasicSpaceAndSlotCreator[];
|
|
157
|
+
attenedanceCount: number;
|
|
158
|
+
checkedInCount: number;
|
|
159
|
+
missingPaymentCount: number;
|
|
160
|
+
publicNotes: string;
|
|
161
|
+
privateNotes: string;
|
|
162
|
+
}
|
|
163
|
+
export interface IAttendeeOfEvent {
|
|
164
|
+
eventId: number;
|
|
165
|
+
userId: number;
|
|
166
|
+
lastName: string;
|
|
167
|
+
firstName: string;
|
|
168
|
+
birthDate: string;
|
|
169
|
+
mediaURL: string;
|
|
170
|
+
signedWaiver: string;
|
|
171
|
+
entryStatus: EntryStatusEnum;
|
|
172
|
+
paymentStatus: PaymentStatusEnum;
|
|
173
|
+
addOns: {
|
|
174
|
+
productId: number;
|
|
175
|
+
productName: string;
|
|
176
|
+
}[];
|
|
177
|
+
totalPasses?: number;
|
|
178
|
+
leftPasses?: number;
|
|
179
|
+
addonProductUserIds: number[];
|
|
180
|
+
}
|
|
181
|
+
export declare class FindEventAttendeeOptionsDto extends PaginationRangeQuery {
|
|
182
|
+
nameSearch?: string;
|
|
183
|
+
isCheckedIn?: string;
|
|
184
|
+
isNotCheckedIn?: string;
|
|
185
|
+
hasAddons?: string;
|
|
186
|
+
isWaiverSigned?: string;
|
|
187
|
+
statuses?: string;
|
|
87
188
|
}
|
|
88
189
|
export declare class AddressDto {
|
|
89
190
|
city: string;
|
|
@@ -353,107 +454,6 @@ export declare class CreateGroupPricingWithProduct {
|
|
|
353
454
|
discountValue?: number;
|
|
354
455
|
discountMethod?: DiscountMethodsEnum;
|
|
355
456
|
}
|
|
356
|
-
export declare class FindEventByIdDto {
|
|
357
|
-
eventId: number;
|
|
358
|
-
organizationId: number;
|
|
359
|
-
}
|
|
360
|
-
export declare class UpdateEventDto {
|
|
361
|
-
name: string;
|
|
362
|
-
startDate: string;
|
|
363
|
-
endDate: string;
|
|
364
|
-
startTime: string;
|
|
365
|
-
endTime: string;
|
|
366
|
-
spacesIds?: number[];
|
|
367
|
-
publicNotes?: string;
|
|
368
|
-
privateNotes?: string;
|
|
369
|
-
isInformAttendees?: boolean;
|
|
370
|
-
minutesBeforeSlot?: number;
|
|
371
|
-
minutesAfterSlot?: number;
|
|
372
|
-
}
|
|
373
|
-
export declare class AddEventToSessionDto {
|
|
374
|
-
eventsData: UpdateEventDto[];
|
|
375
|
-
}
|
|
376
|
-
export declare class EventsIdsQueryDto {
|
|
377
|
-
eventsIds: string;
|
|
378
|
-
}
|
|
379
|
-
export declare class UpdateMultipleEventsDto {
|
|
380
|
-
eventsIds: number[];
|
|
381
|
-
name?: string;
|
|
382
|
-
startTime?: string;
|
|
383
|
-
endTime?: string;
|
|
384
|
-
spacesIds?: number[];
|
|
385
|
-
publicNotes?: string;
|
|
386
|
-
privateNotes?: string;
|
|
387
|
-
isInformAttendees?: boolean;
|
|
388
|
-
minutesBeforeSlot?: number;
|
|
389
|
-
minutesAfterSlot?: number;
|
|
390
|
-
}
|
|
391
|
-
export declare class FindByFacilityIdDto {
|
|
392
|
-
facilityId: number;
|
|
393
|
-
}
|
|
394
|
-
export declare class FindByFacilityIdAndOrganizationIdDto extends FindByFacilityIdDto {
|
|
395
|
-
organizationId: number;
|
|
396
|
-
}
|
|
397
|
-
export declare class FacilityEventsScheduleQueryParams {
|
|
398
|
-
programsIds?: string;
|
|
399
|
-
startDate?: string;
|
|
400
|
-
endDate?: string;
|
|
401
|
-
}
|
|
402
|
-
export declare class ProgramLandingPageDto {
|
|
403
|
-
programId: number;
|
|
404
|
-
}
|
|
405
|
-
export declare class ProgramLandingPageQueryDto {
|
|
406
|
-
futureLimit?: number;
|
|
407
|
-
}
|
|
408
|
-
export declare class ProgramSessionLandingPageDto {
|
|
409
|
-
programId: number;
|
|
410
|
-
sessionId: number;
|
|
411
|
-
}
|
|
412
|
-
export interface IEventOfSessionDetails {
|
|
413
|
-
id: number;
|
|
414
|
-
name: string;
|
|
415
|
-
programId: number;
|
|
416
|
-
programType: ProgramTypesEnum;
|
|
417
|
-
sessionId: number;
|
|
418
|
-
sessionName: string;
|
|
419
|
-
isPublic: boolean;
|
|
420
|
-
startDate: Date;
|
|
421
|
-
endDate: Date;
|
|
422
|
-
startTime: string;
|
|
423
|
-
endTime: string;
|
|
424
|
-
resources: IBasicSpaceAndSlotCreator[];
|
|
425
|
-
attenedanceCount: number;
|
|
426
|
-
checkedInCount: number;
|
|
427
|
-
missingPaymentCount: number;
|
|
428
|
-
publicNotes: string;
|
|
429
|
-
privateNotes: string;
|
|
430
|
-
}
|
|
431
|
-
export interface IAttendeeOfEvent {
|
|
432
|
-
eventId: number;
|
|
433
|
-
userId: number;
|
|
434
|
-
lastName: string;
|
|
435
|
-
firstName: string;
|
|
436
|
-
birthDate: string;
|
|
437
|
-
mediaURL: string;
|
|
438
|
-
signedWaiver: string;
|
|
439
|
-
entryStatus: EntryStatusEnum;
|
|
440
|
-
paymentStatus: PaymentStatusEnum;
|
|
441
|
-
addOns: {
|
|
442
|
-
productId: number;
|
|
443
|
-
productName: string;
|
|
444
|
-
}[];
|
|
445
|
-
totalPasses?: number;
|
|
446
|
-
leftPasses?: number;
|
|
447
|
-
addonProductUserIds: number[];
|
|
448
|
-
}
|
|
449
|
-
export declare class FindEventAttendeeOptionsDto extends PaginationRangeQuery {
|
|
450
|
-
nameSearch?: string;
|
|
451
|
-
isCheckedIn?: string;
|
|
452
|
-
isNotCheckedIn?: string;
|
|
453
|
-
hasAddons?: string;
|
|
454
|
-
isWaiverSigned?: string;
|
|
455
|
-
statuses?: string;
|
|
456
|
-
}
|
|
457
457
|
export declare class FindByProductIdDto {
|
|
458
458
|
productId: number;
|
|
459
459
|
}
|
|
@@ -1111,6 +1111,19 @@ export declare class Address extends BondBaseEntity {
|
|
|
1111
1111
|
geo: any;
|
|
1112
1112
|
deletedAt?: Date;
|
|
1113
1113
|
}
|
|
1114
|
+
export declare class Answer extends OrganizationConnectionBaseEntity {
|
|
1115
|
+
questionId: number;
|
|
1116
|
+
question?: Questions;
|
|
1117
|
+
parentId: number;
|
|
1118
|
+
parentType: ResourceNameTypeEnum;
|
|
1119
|
+
answerValue: any;
|
|
1120
|
+
creatorId: number;
|
|
1121
|
+
creatorType: ResourceNameTypeEnum;
|
|
1122
|
+
answerTitleId: number;
|
|
1123
|
+
answerTitle: AnswerTitle;
|
|
1124
|
+
metaData: any | null;
|
|
1125
|
+
questionText: string | null;
|
|
1126
|
+
}
|
|
1114
1127
|
export declare class AnswerTitle extends OrganizationConnectionBaseEntity {
|
|
1115
1128
|
questionnaireId: number;
|
|
1116
1129
|
userId?: number;
|
|
@@ -1127,19 +1140,6 @@ export declare class AthleteSports extends BondBaseEntity {
|
|
|
1127
1140
|
sports: number | null;
|
|
1128
1141
|
levelOfPlay: LevelOfPlayEnum | null;
|
|
1129
1142
|
}
|
|
1130
|
-
export declare class Answer extends OrganizationConnectionBaseEntity {
|
|
1131
|
-
questionId: number;
|
|
1132
|
-
question?: Questions;
|
|
1133
|
-
parentId: number;
|
|
1134
|
-
parentType: ResourceNameTypeEnum;
|
|
1135
|
-
answerValue: any;
|
|
1136
|
-
creatorId: number;
|
|
1137
|
-
creatorType: ResourceNameTypeEnum;
|
|
1138
|
-
answerTitleId: number;
|
|
1139
|
-
answerTitle: AnswerTitle;
|
|
1140
|
-
metaData: any | null;
|
|
1141
|
-
questionText: string | null;
|
|
1142
|
-
}
|
|
1143
1143
|
export declare class BlockedDate extends BondBaseEntity {
|
|
1144
1144
|
entityType: ResourceNameTypeEnum;
|
|
1145
1145
|
entityId: number;
|
|
@@ -2012,24 +2012,6 @@ export declare class ProgramSeason extends BondBaseEntity {
|
|
|
2012
2012
|
facility: Facility;
|
|
2013
2013
|
purchasedResources: PurchasedResource[];
|
|
2014
2014
|
}
|
|
2015
|
-
export declare class Questionnaires extends OrganizationConnectionBaseEntity {
|
|
2016
|
-
title: string | null;
|
|
2017
|
-
answerTitle: AnswerTitle;
|
|
2018
|
-
}
|
|
2019
|
-
export declare class Questions extends BondBaseEntity {
|
|
2020
|
-
questionType: string | null;
|
|
2021
|
-
ordinal: number | null;
|
|
2022
|
-
pageOrdinal: number | null;
|
|
2023
|
-
isActive: boolean | null;
|
|
2024
|
-
isMandatory: boolean | null;
|
|
2025
|
-
metaData: any | null;
|
|
2026
|
-
question: string | null;
|
|
2027
|
-
creatorId: number | null;
|
|
2028
|
-
creatorType: string | null;
|
|
2029
|
-
userCreatorId: number | null;
|
|
2030
|
-
ownerId: number | null;
|
|
2031
|
-
questionnaireId: number | null;
|
|
2032
|
-
}
|
|
2033
2015
|
export declare class PurchasedResource extends OrganizationConnectionBaseEntity {
|
|
2034
2016
|
productUserId: number;
|
|
2035
2017
|
resourceId: number;
|
|
@@ -2052,6 +2034,24 @@ export declare class PurchasedResource extends OrganizationConnectionBaseEntity
|
|
|
2052
2034
|
product?: Product;
|
|
2053
2035
|
event?: Event;
|
|
2054
2036
|
}
|
|
2037
|
+
export declare class Questionnaires extends OrganizationConnectionBaseEntity {
|
|
2038
|
+
title: string | null;
|
|
2039
|
+
answerTitle: AnswerTitle;
|
|
2040
|
+
}
|
|
2041
|
+
export declare class Questions extends BondBaseEntity {
|
|
2042
|
+
questionType: string | null;
|
|
2043
|
+
ordinal: number | null;
|
|
2044
|
+
pageOrdinal: number | null;
|
|
2045
|
+
isActive: boolean | null;
|
|
2046
|
+
isMandatory: boolean | null;
|
|
2047
|
+
metaData: any | null;
|
|
2048
|
+
question: string | null;
|
|
2049
|
+
creatorId: number | null;
|
|
2050
|
+
creatorType: string | null;
|
|
2051
|
+
userCreatorId: number | null;
|
|
2052
|
+
ownerId: number | null;
|
|
2053
|
+
questionnaireId: number | null;
|
|
2054
|
+
}
|
|
2055
2055
|
export declare class RefundReason extends OrganizationConnectionBaseEntity {
|
|
2056
2056
|
reason: string;
|
|
2057
2057
|
ordinal: number;
|
|
@@ -2100,13 +2100,6 @@ export declare class Reservations extends OrganizationConnectionBaseEntity {
|
|
|
2100
2100
|
publicNotes?: string;
|
|
2101
2101
|
slots?: Slot[];
|
|
2102
2102
|
}
|
|
2103
|
-
export declare class ResourceGroup extends OrganizationConnectionBaseEntity {
|
|
2104
|
-
name: string;
|
|
2105
|
-
facilityId: number;
|
|
2106
|
-
parentSlotId: number;
|
|
2107
|
-
childrenSlotIds: number[];
|
|
2108
|
-
deletedAt?: Date;
|
|
2109
|
-
}
|
|
2110
2103
|
export declare class Resource extends OrganizationConnectionBaseEntity {
|
|
2111
2104
|
name: string;
|
|
2112
2105
|
resourceType: ResourceTypeEnum;
|
|
@@ -2135,6 +2128,13 @@ export declare class Resource extends OrganizationConnectionBaseEntity {
|
|
|
2135
2128
|
purchasedResources: PurchasedResource[];
|
|
2136
2129
|
linkSEO: string;
|
|
2137
2130
|
}
|
|
2131
|
+
export declare class ResourceGroup extends OrganizationConnectionBaseEntity {
|
|
2132
|
+
name: string;
|
|
2133
|
+
facilityId: number;
|
|
2134
|
+
parentSlotId: number;
|
|
2135
|
+
childrenSlotIds: number[];
|
|
2136
|
+
deletedAt?: Date;
|
|
2137
|
+
}
|
|
2138
2138
|
export declare class School extends BondBaseEntity {
|
|
2139
2139
|
name: string | null;
|
|
2140
2140
|
alias: string[] | null;
|
|
@@ -3234,6 +3234,11 @@ export interface IReservationCreatorData {
|
|
|
3234
3234
|
endDate: string;
|
|
3235
3235
|
sportId: number;
|
|
3236
3236
|
}
|
|
3237
|
+
export declare class ColumnNumericTransformer {
|
|
3238
|
+
to(data: number): number;
|
|
3239
|
+
from(data: string): number;
|
|
3240
|
+
}
|
|
3241
|
+
export declare function convertToNumber(data: string): number;
|
|
3237
3242
|
export declare class AddImportedCustomerDto extends AddEditCustomerDto {
|
|
3238
3243
|
name?: string;
|
|
3239
3244
|
genderStr?: string;
|
|
@@ -3350,11 +3355,6 @@ export declare class ImportedReservationDto {
|
|
|
3350
3355
|
slots?: ImportedSlotDto[];
|
|
3351
3356
|
addons?: ImportedSlotProductDto[];
|
|
3352
3357
|
}
|
|
3353
|
-
export declare class ColumnNumericTransformer {
|
|
3354
|
-
to(data: number): number;
|
|
3355
|
-
from(data: string): number;
|
|
3356
|
-
}
|
|
3357
|
-
export declare function convertToNumber(data: string): number;
|
|
3358
3358
|
export declare class GameSlots extends BondBaseEntity {
|
|
3359
3359
|
entityType: string;
|
|
3360
3360
|
entityId: number;
|
|
@@ -3474,38 +3474,6 @@ export declare class OrganizationUsers extends BondBaseEntity {
|
|
|
3474
3474
|
organisationId: number | null;
|
|
3475
3475
|
userId: number | null;
|
|
3476
3476
|
}
|
|
3477
|
-
export declare class RefundDto {
|
|
3478
|
-
orderId: number;
|
|
3479
|
-
lineItems: RefundLineItemAmountDto[];
|
|
3480
|
-
refundLineItemAmountDict?: {
|
|
3481
|
-
[id: number]: number;
|
|
3482
|
-
};
|
|
3483
|
-
refunds: PaymentMethodDto[];
|
|
3484
|
-
refundType: RefundTypeEnum;
|
|
3485
|
-
reasonId: number;
|
|
3486
|
-
note?: string;
|
|
3487
|
-
shiftId?: number;
|
|
3488
|
-
meta?: RevertMetaDto;
|
|
3489
|
-
}
|
|
3490
|
-
export declare class PaymentMethodDto {
|
|
3491
|
-
paymentMethodType: PaymentMethodTypeEnum;
|
|
3492
|
-
amount: number;
|
|
3493
|
-
paymentMethodId?: string;
|
|
3494
|
-
}
|
|
3495
|
-
export declare class RefundLineItemAmountDto {
|
|
3496
|
-
id: number;
|
|
3497
|
-
refundAmount: number;
|
|
3498
|
-
}
|
|
3499
|
-
export declare class VoidDto {
|
|
3500
|
-
lineItems: VoidLineItemDto[];
|
|
3501
|
-
meta?: RevertMetaDto;
|
|
3502
|
-
}
|
|
3503
|
-
export declare class VoidLineItemDto {
|
|
3504
|
-
id: number;
|
|
3505
|
-
quantity?: number;
|
|
3506
|
-
isEdit?: boolean;
|
|
3507
|
-
amount?: number;
|
|
3508
|
-
}
|
|
3509
3477
|
export declare class CustomerIdDto {
|
|
3510
3478
|
customerId: number;
|
|
3511
3479
|
}
|
|
@@ -3623,6 +3591,38 @@ export declare class SendRequestDto {
|
|
|
3623
3591
|
sendToEmail: string;
|
|
3624
3592
|
memo?: string;
|
|
3625
3593
|
}
|
|
3594
|
+
export declare class RefundDto {
|
|
3595
|
+
orderId: number;
|
|
3596
|
+
lineItems: RefundLineItemAmountDto[];
|
|
3597
|
+
refundLineItemAmountDict?: {
|
|
3598
|
+
[id: number]: number;
|
|
3599
|
+
};
|
|
3600
|
+
refunds: PaymentMethodDto[];
|
|
3601
|
+
refundType: RefundTypeEnum;
|
|
3602
|
+
reasonId: number;
|
|
3603
|
+
note?: string;
|
|
3604
|
+
shiftId?: number;
|
|
3605
|
+
meta?: RevertMetaDto;
|
|
3606
|
+
}
|
|
3607
|
+
export declare class PaymentMethodDto {
|
|
3608
|
+
paymentMethodType: PaymentMethodTypeEnum;
|
|
3609
|
+
amount: number;
|
|
3610
|
+
paymentMethodId?: string;
|
|
3611
|
+
}
|
|
3612
|
+
export declare class RefundLineItemAmountDto {
|
|
3613
|
+
id: number;
|
|
3614
|
+
refundAmount: number;
|
|
3615
|
+
}
|
|
3616
|
+
export declare class VoidDto {
|
|
3617
|
+
lineItems: VoidLineItemDto[];
|
|
3618
|
+
meta?: RevertMetaDto;
|
|
3619
|
+
}
|
|
3620
|
+
export declare class VoidLineItemDto {
|
|
3621
|
+
id: number;
|
|
3622
|
+
quantity?: number;
|
|
3623
|
+
isEdit?: boolean;
|
|
3624
|
+
amount?: number;
|
|
3625
|
+
}
|
|
3626
3626
|
export declare class LineItemDto {
|
|
3627
3627
|
id?: number;
|
|
3628
3628
|
orderId?: number;
|
|
@@ -4141,15 +4141,15 @@ export declare class ChangeRolePermissionsDto {
|
|
|
4141
4141
|
export declare class CreateRoleDto {
|
|
4142
4142
|
name: string;
|
|
4143
4143
|
}
|
|
4144
|
-
export declare class
|
|
4144
|
+
export declare class Permission extends BondBaseEntity {
|
|
4145
4145
|
name: string;
|
|
4146
4146
|
deletedAt?: Date;
|
|
4147
|
-
permissions: Permission[];
|
|
4148
|
-
usersRoles: UserRole[];
|
|
4149
4147
|
}
|
|
4150
|
-
export declare class
|
|
4148
|
+
export declare class Role extends OrganizationConnectionBaseEntity {
|
|
4151
4149
|
name: string;
|
|
4152
4150
|
deletedAt?: Date;
|
|
4151
|
+
permissions: Permission[];
|
|
4152
|
+
usersRoles: UserRole[];
|
|
4153
4153
|
}
|
|
4154
4154
|
export declare class UserRole extends OrganizationConnectionBaseEntity {
|
|
4155
4155
|
deletedAt?: Date;
|