@bondsports/types 2.2.158 → 2.2.160

Sign up to get free protection for your applications and to get access to all the features.
@@ -26,6 +26,7 @@ export declare class EmployeeDto {
26
26
  phoneNumber?: string;
27
27
  customerId?: number;
28
28
  address?: Address;
29
+ deletedAt?: Date;
29
30
  }
30
31
  export declare class EmployeeWithRoles extends EmployeeDto {
31
32
  roles?: Role[];
@@ -103,4 +104,5 @@ export declare class GetEmployeesByFilterOptions extends PaginationQuery {
103
104
  search?: string;
104
105
  orderBy?: UserOrderBy | OrganizationUserOrderBy;
105
106
  order?: OrderByEnum;
107
+ includeDeleted?: boolean;
106
108
  }
@@ -1 +1 @@
1
- {"version":3,"file":"employee.dto.js","sourceRoot":"","sources":["../../../../src/types/employees/dto/employee.dto.ts"],"names":[],"mappings":";;;AAIA,uDAAwD;AAKxD,MAAa,eAAe;CAE3B;AAFD,0CAEC;AAED,MAAa,WAAW;CAgCvB;AAhCD,kCAgCC;AAED,MAAa,iBAAkB,SAAQ,WAAW;CAEjD;AAFD,8CAEC;AAED,MAAa,mBAAoB,SAAQ,iBAAiB;CAEzD;AAFD,kDAEC;AAED,MAAa,aAAa;CAQzB;AARD,sCAQC;AAED,MAAa,iBAAiB;CAoD7B;AApDD,8CAoDC;AAED,uCAAuC;AACvC,MAAa,iBAAiB;CAwD7B;AAxDD,8CAwDC;AAED,MAAa,2BAA4B,SAAQ,6BAAe;CAU/D;AAVD,kEAUC"}
1
+ {"version":3,"file":"employee.dto.js","sourceRoot":"","sources":["../../../../src/types/employees/dto/employee.dto.ts"],"names":[],"mappings":";;;AAIA,uDAAwD;AAKxD,MAAa,eAAe;CAE3B;AAFD,0CAEC;AAED,MAAa,WAAW;CAkCvB;AAlCD,kCAkCC;AAED,MAAa,iBAAkB,SAAQ,WAAW;CAEjD;AAFD,8CAEC;AAED,MAAa,mBAAoB,SAAQ,iBAAiB;CAEzD;AAFD,kDAEC;AAED,MAAa,aAAa;CAQzB;AARD,sCAQC;AAED,MAAa,iBAAiB;CAoD7B;AApDD,8CAoDC;AAED,uCAAuC;AACvC,MAAa,iBAAiB;CAwD7B;AAxDD,8CAwDC;AAED,MAAa,2BAA4B,SAAQ,6BAAe;CAY/D;AAZD,kEAYC"}
@@ -5,7 +5,7 @@ import { OverrideProductsPricingDto } from '../../invoice/types/interfaces/invoi
5
5
  import { ByOrganizationIdDto } from '../../organization/dto/organization.dto';
6
6
  import { PaymentMethodDto, RefundAmountDto } from '../../payment/dto/refund.dto';
7
7
  import { PaymentStatusEnum } from '../../payment/types/enums/payment.enums';
8
- import { SimpleProductDto } from '../../product-pricing/dto/product.dto';
8
+ import { ProductDto } from '../../product-pricing/dto/product.dto';
9
9
  import { Product } from '../../product-pricing/entities/Product';
10
10
  import { PurchasePaymentDto, PurchaseResultDto } from '../../purchase/dto/purchase.dto';
11
11
  import { InstructorResourceDto } from '../../resources/dto/instructor.dto';
@@ -19,7 +19,7 @@ import { AddonDto, DraftAddonDto } from './addon.dto';
19
19
  import { CreateDraftSegmentDto, DraftSegmentDto, SegmentDto } from './segment.dto';
20
20
  import { SeriesDto } from './series.dto';
21
21
  import { SlotDto, UpdateDraftSlotDto, UpdateSlotsColorsDto } from './slot.dto';
22
- import { SimpleFacilityDto } from '../../dto/facilities.dto';
22
+ import { FacilityDto } from '../../dto/facilities.dto';
23
23
  export declare class ProductPricesDto {
24
24
  productId: number;
25
25
  product?: Product;
@@ -68,10 +68,10 @@ export declare class DraftReservationDto extends SimpleDraftReservationDto {
68
68
  addons?: DraftAddonDto[];
69
69
  owner?: SimpleCustomerDto;
70
70
  participants?: SimpleCustomerDto[];
71
- products?: SimpleProductDto[];
71
+ products?: ProductDto[];
72
72
  spaces?: SpaceResourceDto[];
73
73
  instructors?: InstructorResourceDto[];
74
- facilities: SimpleFacilityDto[];
74
+ facilities: FacilityDto[];
75
75
  }
76
76
  export declare class ReservationInvoiceDto {
77
77
  reservation: ReservationDto;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bondsports/types",
3
- "version": "2.2.158",
3
+ "version": "2.2.160",
4
4
  "description": "backend types module for Bond-Sports",
5
5
  "main": "./dist/index.js",
6
6
  "scripts": {