@bondsports/types 0.0.83 → 0.0.84
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 +187 -193
- 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
|
@@ -27,6 +27,49 @@ export declare class FindBookingTypeSettingDto {
|
|
|
27
27
|
bookingDate: string;
|
|
28
28
|
bookingTime: string;
|
|
29
29
|
}
|
|
30
|
+
export declare class AddressDto {
|
|
31
|
+
city: string;
|
|
32
|
+
state: string;
|
|
33
|
+
country: string;
|
|
34
|
+
geo: number[];
|
|
35
|
+
}
|
|
36
|
+
export declare class OpeningTimeDto {
|
|
37
|
+
open: string;
|
|
38
|
+
close: string;
|
|
39
|
+
dayOfWeek: number;
|
|
40
|
+
}
|
|
41
|
+
export declare class CreateFacilityDto {
|
|
42
|
+
name: string;
|
|
43
|
+
sports: number[];
|
|
44
|
+
description?: string;
|
|
45
|
+
longDescription?: string;
|
|
46
|
+
info?: string;
|
|
47
|
+
address: AddressDto;
|
|
48
|
+
timezone: string;
|
|
49
|
+
amenities: number[];
|
|
50
|
+
openingTimes: OpeningTimeDto[];
|
|
51
|
+
resourcesIds?: number[];
|
|
52
|
+
}
|
|
53
|
+
export declare class UpdateFacilityDetailsDto {
|
|
54
|
+
name?: string;
|
|
55
|
+
description?: string;
|
|
56
|
+
longDescription?: string;
|
|
57
|
+
info?: string;
|
|
58
|
+
address?: AddressDto;
|
|
59
|
+
timezone?: string;
|
|
60
|
+
}
|
|
61
|
+
export declare class UpdateFacilityOpeningTimesDto {
|
|
62
|
+
openingTimes: OpeningTimeDto[];
|
|
63
|
+
}
|
|
64
|
+
export declare class UpdateFacilitySportsDto {
|
|
65
|
+
sports: number[];
|
|
66
|
+
}
|
|
67
|
+
export declare class UpdateFacilityAmenitiesDto {
|
|
68
|
+
amenities: number[];
|
|
69
|
+
}
|
|
70
|
+
export declare class FindFacilitiesOptionsDto extends PaginationQuery {
|
|
71
|
+
nameSearch?: string;
|
|
72
|
+
}
|
|
30
73
|
export declare class FindByMembershipIdDto extends ByOrganizationIdDto {
|
|
31
74
|
membershipId: number;
|
|
32
75
|
}
|
|
@@ -186,93 +229,6 @@ export declare class FindEventAttendeeOptionsDto extends PaginationRangeQuery {
|
|
|
186
229
|
isWaiverSigned?: string;
|
|
187
230
|
statuses?: string;
|
|
188
231
|
}
|
|
189
|
-
export declare class AddressDto {
|
|
190
|
-
city: string;
|
|
191
|
-
state: string;
|
|
192
|
-
country: string;
|
|
193
|
-
geo: number[];
|
|
194
|
-
}
|
|
195
|
-
export declare class OpeningTimeDto {
|
|
196
|
-
open: string;
|
|
197
|
-
close: string;
|
|
198
|
-
dayOfWeek: number;
|
|
199
|
-
}
|
|
200
|
-
export declare class CreateFacilityDto {
|
|
201
|
-
name: string;
|
|
202
|
-
sports: number[];
|
|
203
|
-
description?: string;
|
|
204
|
-
longDescription?: string;
|
|
205
|
-
info?: string;
|
|
206
|
-
address: AddressDto;
|
|
207
|
-
timezone: string;
|
|
208
|
-
amenities: number[];
|
|
209
|
-
openingTimes: OpeningTimeDto[];
|
|
210
|
-
resourcesIds?: number[];
|
|
211
|
-
}
|
|
212
|
-
export declare class UpdateFacilityDetailsDto {
|
|
213
|
-
name?: string;
|
|
214
|
-
description?: string;
|
|
215
|
-
longDescription?: string;
|
|
216
|
-
info?: string;
|
|
217
|
-
address?: AddressDto;
|
|
218
|
-
timezone?: string;
|
|
219
|
-
}
|
|
220
|
-
export declare class UpdateFacilityOpeningTimesDto {
|
|
221
|
-
openingTimes: OpeningTimeDto[];
|
|
222
|
-
}
|
|
223
|
-
export declare class UpdateFacilitySportsDto {
|
|
224
|
-
sports: number[];
|
|
225
|
-
}
|
|
226
|
-
export declare class UpdateFacilityAmenitiesDto {
|
|
227
|
-
amenities: number[];
|
|
228
|
-
}
|
|
229
|
-
export declare class FindFacilitiesOptionsDto extends PaginationQuery {
|
|
230
|
-
nameSearch?: string;
|
|
231
|
-
}
|
|
232
|
-
export declare class FindFamilyAccountsDto {
|
|
233
|
-
userId: number;
|
|
234
|
-
}
|
|
235
|
-
export declare class FindFamilyAccountsCustomerDto {
|
|
236
|
-
customerId: number;
|
|
237
|
-
organizationId: number;
|
|
238
|
-
}
|
|
239
|
-
export declare class FindUsersInFamilyAccountDto {
|
|
240
|
-
familyAccountId: number;
|
|
241
|
-
}
|
|
242
|
-
export declare class CreateFamilyAccountDto {
|
|
243
|
-
familyName: string;
|
|
244
|
-
userId: number;
|
|
245
|
-
}
|
|
246
|
-
export declare class UpdateFamilyAccountNameDto {
|
|
247
|
-
familyName: string;
|
|
248
|
-
familyAccountId: number;
|
|
249
|
-
}
|
|
250
|
-
export declare class AddUserToFamilyAccountDto {
|
|
251
|
-
familyAccountId: number;
|
|
252
|
-
isUserAdmin: boolean;
|
|
253
|
-
firstName: string;
|
|
254
|
-
lastName: string;
|
|
255
|
-
gender: GenderEnum;
|
|
256
|
-
birthDate: string;
|
|
257
|
-
sports?: number[];
|
|
258
|
-
email?: string;
|
|
259
|
-
}
|
|
260
|
-
export declare class RemoveUserFromFamilyAccountDto {
|
|
261
|
-
userId: number;
|
|
262
|
-
familyAccountId: number;
|
|
263
|
-
}
|
|
264
|
-
export declare class FindOneParams {
|
|
265
|
-
id: number;
|
|
266
|
-
}
|
|
267
|
-
export declare class PaginationQuery {
|
|
268
|
-
page: number;
|
|
269
|
-
itemsPerPage: number;
|
|
270
|
-
}
|
|
271
|
-
export declare class PaginationRangeQuery {
|
|
272
|
-
startPage: number;
|
|
273
|
-
endPage: number;
|
|
274
|
-
itemsPerPage: number;
|
|
275
|
-
}
|
|
276
232
|
export declare class FindGlCodeByOrganizationIdDto {
|
|
277
233
|
organizationId: number;
|
|
278
234
|
}
|
|
@@ -356,61 +312,37 @@ export declare class MoveTeamOrMemberDto implements IMoveSeason {
|
|
|
356
312
|
export declare class MoveTeamOrMembersByCsvDTO {
|
|
357
313
|
fileName: string;
|
|
358
314
|
}
|
|
359
|
-
export declare class
|
|
360
|
-
|
|
361
|
-
name: string;
|
|
362
|
-
description?: string;
|
|
363
|
-
customerTypes: CustomerInMembershipTypeEnum[];
|
|
364
|
-
activity: SportsEnum;
|
|
365
|
-
facilityId: number;
|
|
366
|
-
questionnaires: number[];
|
|
367
|
-
minAgeYears: number;
|
|
368
|
-
maxAgeYears: number;
|
|
369
|
-
gender: GenderEnum;
|
|
370
|
-
maxMembers?: number;
|
|
371
|
-
maxMaleMembers?: number;
|
|
372
|
-
maxFemaleMembers?: number;
|
|
373
|
-
startDate: string;
|
|
374
|
-
endDate: string;
|
|
375
|
-
registrationStartDate?: Date;
|
|
376
|
-
registrationEndDate?: Date;
|
|
377
|
-
membershipType: MembershipTypeEnum;
|
|
378
|
-
durationMonths: number;
|
|
379
|
-
longDescription?: string;
|
|
380
|
-
isAutoRenew?: boolean;
|
|
381
|
-
}
|
|
382
|
-
export declare class UpdateMembrshipDto extends CreateMembershipDto {
|
|
383
|
-
id: number;
|
|
384
|
-
}
|
|
385
|
-
export declare class UpdateMembershipMediaDto {
|
|
386
|
-
membershipId: number;
|
|
387
|
-
mediaId: number;
|
|
388
|
-
}
|
|
389
|
-
export declare class FindMembershipByIdDto {
|
|
390
|
-
membershipId: number;
|
|
315
|
+
export declare class FindFamilyAccountsDto {
|
|
316
|
+
userId: number;
|
|
391
317
|
}
|
|
392
|
-
export declare class
|
|
318
|
+
export declare class FindFamilyAccountsCustomerDto {
|
|
319
|
+
customerId: number;
|
|
393
320
|
organizationId: number;
|
|
394
321
|
}
|
|
395
|
-
export declare class
|
|
396
|
-
|
|
397
|
-
}
|
|
398
|
-
export declare class SetMembersStartDateByOrganization extends FindMembershipsByOrganizationIdDto {
|
|
399
|
-
startDate: string;
|
|
322
|
+
export declare class FindUsersInFamilyAccountDto {
|
|
323
|
+
familyAccountId: number;
|
|
400
324
|
}
|
|
401
|
-
export declare class
|
|
402
|
-
|
|
325
|
+
export declare class CreateFamilyAccountDto {
|
|
326
|
+
familyName: string;
|
|
327
|
+
userId: number;
|
|
403
328
|
}
|
|
404
|
-
export declare class
|
|
405
|
-
|
|
329
|
+
export declare class UpdateFamilyAccountNameDto {
|
|
330
|
+
familyName: string;
|
|
331
|
+
familyAccountId: number;
|
|
406
332
|
}
|
|
407
|
-
export declare class
|
|
408
|
-
|
|
409
|
-
|
|
333
|
+
export declare class AddUserToFamilyAccountDto {
|
|
334
|
+
familyAccountId: number;
|
|
335
|
+
isUserAdmin: boolean;
|
|
336
|
+
firstName: string;
|
|
337
|
+
lastName: string;
|
|
338
|
+
gender: GenderEnum;
|
|
339
|
+
birthDate: string;
|
|
340
|
+
sports?: number[];
|
|
341
|
+
email?: string;
|
|
410
342
|
}
|
|
411
|
-
export declare class
|
|
412
|
-
|
|
413
|
-
|
|
343
|
+
export declare class RemoveUserFromFamilyAccountDto {
|
|
344
|
+
userId: number;
|
|
345
|
+
familyAccountId: number;
|
|
414
346
|
}
|
|
415
347
|
export declare class CreateEntitlementTermsDto {
|
|
416
348
|
organizationId: number;
|
|
@@ -454,6 +386,18 @@ export declare class CreateGroupPricingWithProduct {
|
|
|
454
386
|
discountValue?: number;
|
|
455
387
|
discountMethod?: DiscountMethodsEnum;
|
|
456
388
|
}
|
|
389
|
+
export declare class FindOneParams {
|
|
390
|
+
id: number;
|
|
391
|
+
}
|
|
392
|
+
export declare class PaginationQuery {
|
|
393
|
+
page: number;
|
|
394
|
+
itemsPerPage: number;
|
|
395
|
+
}
|
|
396
|
+
export declare class PaginationRangeQuery {
|
|
397
|
+
startPage: number;
|
|
398
|
+
endPage: number;
|
|
399
|
+
itemsPerPage: number;
|
|
400
|
+
}
|
|
457
401
|
export declare class FindByProductIdDto {
|
|
458
402
|
productId: number;
|
|
459
403
|
}
|
|
@@ -674,6 +618,62 @@ export declare class createResourceDto {
|
|
|
674
618
|
export declare class archiveDto {
|
|
675
619
|
isArchive: boolean;
|
|
676
620
|
}
|
|
621
|
+
export declare class CreateMembershipDto {
|
|
622
|
+
organizationId: number;
|
|
623
|
+
name: string;
|
|
624
|
+
description?: string;
|
|
625
|
+
customerTypes: CustomerInMembershipTypeEnum[];
|
|
626
|
+
activity: SportsEnum;
|
|
627
|
+
facilityId: number;
|
|
628
|
+
questionnaires: number[];
|
|
629
|
+
minAgeYears: number;
|
|
630
|
+
maxAgeYears: number;
|
|
631
|
+
gender: GenderEnum;
|
|
632
|
+
maxMembers?: number;
|
|
633
|
+
maxMaleMembers?: number;
|
|
634
|
+
maxFemaleMembers?: number;
|
|
635
|
+
startDate: string;
|
|
636
|
+
endDate: string;
|
|
637
|
+
registrationStartDate?: Date;
|
|
638
|
+
registrationEndDate?: Date;
|
|
639
|
+
membershipType: MembershipTypeEnum;
|
|
640
|
+
durationMonths: number;
|
|
641
|
+
longDescription?: string;
|
|
642
|
+
isAutoRenew?: boolean;
|
|
643
|
+
}
|
|
644
|
+
export declare class UpdateMembrshipDto extends CreateMembershipDto {
|
|
645
|
+
id: number;
|
|
646
|
+
}
|
|
647
|
+
export declare class UpdateMembershipMediaDto {
|
|
648
|
+
membershipId: number;
|
|
649
|
+
mediaId: number;
|
|
650
|
+
}
|
|
651
|
+
export declare class FindMembershipByIdDto {
|
|
652
|
+
membershipId: number;
|
|
653
|
+
}
|
|
654
|
+
export declare class FindMembershipsByOrganizationIdDto {
|
|
655
|
+
organizationId: number;
|
|
656
|
+
}
|
|
657
|
+
export declare class FindMembershipsByUserIdDto {
|
|
658
|
+
userId: number;
|
|
659
|
+
}
|
|
660
|
+
export declare class SetMembersStartDateByOrganization extends FindMembershipsByOrganizationIdDto {
|
|
661
|
+
startDate: string;
|
|
662
|
+
}
|
|
663
|
+
export declare class MembershipIdsDto {
|
|
664
|
+
membershipIds?: number[];
|
|
665
|
+
}
|
|
666
|
+
export declare class MemberIdDto {
|
|
667
|
+
memberId?: number;
|
|
668
|
+
}
|
|
669
|
+
export declare class FindMembersOptionsDto extends PaginationQuery {
|
|
670
|
+
nameEmailSearch?: string;
|
|
671
|
+
pastMemberships?: string;
|
|
672
|
+
}
|
|
673
|
+
export declare class CancelMembershipDto {
|
|
674
|
+
isImmediatelyCancel: boolean;
|
|
675
|
+
cancellationReason?: string;
|
|
676
|
+
}
|
|
677
677
|
export declare class CreateUpdateVariantsDto {
|
|
678
678
|
organizationId: number;
|
|
679
679
|
parentProductId: number;
|
|
@@ -1276,21 +1276,6 @@ export declare class EntitlementTerms extends OrganizationConnectionBaseEntity {
|
|
|
1276
1276
|
groupId: number;
|
|
1277
1277
|
terms: IEntitlementTerms[];
|
|
1278
1278
|
}
|
|
1279
|
-
export declare class EventAttendee extends BondBaseEntity {
|
|
1280
|
-
status: RequestStatusEnum | null;
|
|
1281
|
-
hasPaid: boolean | null;
|
|
1282
|
-
paymentId: number | null;
|
|
1283
|
-
attendeeId: number;
|
|
1284
|
-
eventId?: number | null;
|
|
1285
|
-
productUserId?: number;
|
|
1286
|
-
answerTitleIds?: number[];
|
|
1287
|
-
entryStatus?: EntryStatusEnum;
|
|
1288
|
-
addonProductUserIds?: number[];
|
|
1289
|
-
deletedAt?: Date;
|
|
1290
|
-
attendee: User;
|
|
1291
|
-
event: Event;
|
|
1292
|
-
purchasedResource: PurchasedResource;
|
|
1293
|
-
}
|
|
1294
1279
|
export declare class Event extends OrganizationConnectionBaseEntity {
|
|
1295
1280
|
constructor();
|
|
1296
1281
|
defineCalculatedDateTimeProps(): void;
|
|
@@ -1346,6 +1331,21 @@ export declare class Event extends OrganizationConnectionBaseEntity {
|
|
|
1346
1331
|
slots: Slot[];
|
|
1347
1332
|
purchasedResources: PurchasedResource[];
|
|
1348
1333
|
}
|
|
1334
|
+
export declare class EventAttendee extends BondBaseEntity {
|
|
1335
|
+
status: RequestStatusEnum | null;
|
|
1336
|
+
hasPaid: boolean | null;
|
|
1337
|
+
paymentId: number | null;
|
|
1338
|
+
attendeeId: number;
|
|
1339
|
+
eventId?: number | null;
|
|
1340
|
+
productUserId?: number;
|
|
1341
|
+
answerTitleIds?: number[];
|
|
1342
|
+
entryStatus?: EntryStatusEnum;
|
|
1343
|
+
addonProductUserIds?: number[];
|
|
1344
|
+
deletedAt?: Date;
|
|
1345
|
+
attendee: User;
|
|
1346
|
+
event: Event;
|
|
1347
|
+
purchasedResource: PurchasedResource;
|
|
1348
|
+
}
|
|
1349
1349
|
export declare class Facility extends OrganizationConnectionBaseEntity {
|
|
1350
1350
|
name: string;
|
|
1351
1351
|
description?: string;
|
|
@@ -1407,19 +1407,6 @@ export declare class Group extends BondBaseEntity {
|
|
|
1407
1407
|
members: ISeasonAttendeeInfo[];
|
|
1408
1408
|
users: User[];
|
|
1409
1409
|
}
|
|
1410
|
-
export declare class GroupItemsPricing extends OrganizationConnectionBaseEntity {
|
|
1411
|
-
groupId: number;
|
|
1412
|
-
itemId: number;
|
|
1413
|
-
itemType: ResourceNameTypeEnum;
|
|
1414
|
-
startDate: Date;
|
|
1415
|
-
endDate: Date;
|
|
1416
|
-
price: number;
|
|
1417
|
-
overridesPrice: boolean;
|
|
1418
|
-
deletedAt?: Date;
|
|
1419
|
-
group?: EntitlementGroup;
|
|
1420
|
-
discountMethod?: DiscountMethodsEnum;
|
|
1421
|
-
discountValue?: number;
|
|
1422
|
-
}
|
|
1423
1410
|
export declare class GroupsInDivisions extends BondBaseEntity {
|
|
1424
1411
|
groupId: number;
|
|
1425
1412
|
divisionId: number;
|
|
@@ -1463,6 +1450,19 @@ export declare class InvoiceMails extends OrganizationConnectionBaseEntity {
|
|
|
1463
1450
|
mailParams?: any;
|
|
1464
1451
|
memo?: string;
|
|
1465
1452
|
}
|
|
1453
|
+
export declare class GroupItemsPricing extends OrganizationConnectionBaseEntity {
|
|
1454
|
+
groupId: number;
|
|
1455
|
+
itemId: number;
|
|
1456
|
+
itemType: ResourceNameTypeEnum;
|
|
1457
|
+
startDate: Date;
|
|
1458
|
+
endDate: Date;
|
|
1459
|
+
price: number;
|
|
1460
|
+
overridesPrice: boolean;
|
|
1461
|
+
deletedAt?: Date;
|
|
1462
|
+
group?: EntitlementGroup;
|
|
1463
|
+
discountMethod?: DiscountMethodsEnum;
|
|
1464
|
+
discountValue?: number;
|
|
1465
|
+
}
|
|
1466
1466
|
export declare class InvoiceNote extends OrganizationConnectionBaseEntity {
|
|
1467
1467
|
content: string;
|
|
1468
1468
|
creatingUserId: number;
|
|
@@ -2333,6 +2333,10 @@ export declare class UsersInGroup extends BondBaseEntity {
|
|
|
2333
2333
|
userId: number;
|
|
2334
2334
|
deletedAt?: Date;
|
|
2335
2335
|
}
|
|
2336
|
+
export declare class VariantTitle extends OrganizationConnectionBaseEntity {
|
|
2337
|
+
name: string;
|
|
2338
|
+
variants: Variant[];
|
|
2339
|
+
}
|
|
2336
2340
|
export declare class Variant extends OrganizationConnectionBaseEntity {
|
|
2337
2341
|
name: string;
|
|
2338
2342
|
variantTitleId: number;
|
|
@@ -2347,10 +2351,6 @@ export declare class WebflowOrganizationConfiguration extends OrganizationConnec
|
|
|
2347
2351
|
membershipCollectionId?: string;
|
|
2348
2352
|
programsCollectionId?: string;
|
|
2349
2353
|
}
|
|
2350
|
-
export declare class VariantTitle extends OrganizationConnectionBaseEntity {
|
|
2351
|
-
name: string;
|
|
2352
|
-
variants: Variant[];
|
|
2353
|
-
}
|
|
2354
2354
|
export declare enum EntitlementTermsTypesEnum {
|
|
2355
2355
|
QUESTION = "question",
|
|
2356
2356
|
CITY = "city",
|
|
@@ -3243,6 +3243,20 @@ export declare class ColumnNumericTransformer {
|
|
|
3243
3243
|
from(data: string): number;
|
|
3244
3244
|
}
|
|
3245
3245
|
export declare function convertToNumber(data: string): number;
|
|
3246
|
+
export declare class AddImportedCustomerDto extends AddEditCustomerDto {
|
|
3247
|
+
name?: string;
|
|
3248
|
+
genderStr?: string;
|
|
3249
|
+
parentID?: string;
|
|
3250
|
+
partnerID?: string;
|
|
3251
|
+
membershipName?: string;
|
|
3252
|
+
membershipExpDate?: string;
|
|
3253
|
+
membershipCreationDate?: string;
|
|
3254
|
+
bondMembershipID?: number;
|
|
3255
|
+
}
|
|
3256
|
+
export declare class AddFamilyDto {
|
|
3257
|
+
parents: AddImportedCustomerDto[];
|
|
3258
|
+
children: AddImportedCustomerDto[];
|
|
3259
|
+
}
|
|
3246
3260
|
export declare enum ImportPaymentTypeEnum {
|
|
3247
3261
|
CREDIT_CARD = "card",
|
|
3248
3262
|
ACH = "ach",
|
|
@@ -3294,20 +3308,6 @@ export declare class PunchPassDto {
|
|
|
3294
3308
|
BondSessionID: number;
|
|
3295
3309
|
ProductID: number;
|
|
3296
3310
|
}
|
|
3297
|
-
export declare class AddImportedCustomerDto extends AddEditCustomerDto {
|
|
3298
|
-
name?: string;
|
|
3299
|
-
genderStr?: string;
|
|
3300
|
-
parentID?: string;
|
|
3301
|
-
partnerID?: string;
|
|
3302
|
-
membershipName?: string;
|
|
3303
|
-
membershipExpDate?: string;
|
|
3304
|
-
membershipCreationDate?: string;
|
|
3305
|
-
bondMembershipID?: number;
|
|
3306
|
-
}
|
|
3307
|
-
export declare class AddFamilyDto {
|
|
3308
|
-
parents: AddImportedCustomerDto[];
|
|
3309
|
-
children: AddImportedCustomerDto[];
|
|
3310
|
-
}
|
|
3311
3311
|
export declare class ImportedSlotProductDto {
|
|
3312
3312
|
slotID?: string;
|
|
3313
3313
|
name?: string;
|
|
@@ -4084,13 +4084,7 @@ export declare class Reservation extends OrganizationConnectionBaseEntity {
|
|
|
4084
4084
|
forms?: number[] | null;
|
|
4085
4085
|
answerTitleIds?: number[] | null;
|
|
4086
4086
|
segments?: Segment[];
|
|
4087
|
-
addonsProductUserIds?: number[] | null;
|
|
4088
4087
|
migrationStatus?: string;
|
|
4089
|
-
addonsMetadata: {
|
|
4090
|
-
productId: number;
|
|
4091
|
-
price?: number;
|
|
4092
|
-
quantity: number;
|
|
4093
|
-
}[];
|
|
4094
4088
|
addons: Addon[];
|
|
4095
4089
|
overrideProductsPrice: {
|
|
4096
4090
|
productId: number;
|
|
@@ -4407,6 +4401,12 @@ export interface EditSlotsData {
|
|
|
4407
4401
|
export interface EditSlotsResult extends UpdateReservationResult {
|
|
4408
4402
|
refundResult?: RefundResult;
|
|
4409
4403
|
}
|
|
4404
|
+
export declare class ChangeRolePermissionsDto {
|
|
4405
|
+
permissionIds: number[];
|
|
4406
|
+
}
|
|
4407
|
+
export declare class CreateRoleDto {
|
|
4408
|
+
name: string;
|
|
4409
|
+
}
|
|
4410
4410
|
export declare class Permission extends BondBaseEntity {
|
|
4411
4411
|
name: string;
|
|
4412
4412
|
deletedAt?: Date;
|
|
@@ -4424,12 +4424,6 @@ export declare class UserRole extends OrganizationConnectionBaseEntity {
|
|
|
4424
4424
|
role: Role;
|
|
4425
4425
|
user: User;
|
|
4426
4426
|
}
|
|
4427
|
-
export declare class ChangeRolePermissionsDto {
|
|
4428
|
-
permissionIds: number[];
|
|
4429
|
-
}
|
|
4430
|
-
export declare class CreateRoleDto {
|
|
4431
|
-
name: string;
|
|
4432
|
-
}
|
|
4433
4427
|
export declare class CloseShiftDto {
|
|
4434
4428
|
closingCashAmount: number;
|
|
4435
4429
|
}
|