@bondsports/types 2.0.124 → 2.0.126

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.
@@ -0,0 +1,12 @@
1
+ export declare class BaseNotificationDto {
2
+ organizationId: number;
3
+ facilityId: number;
4
+ replyTo?: string;
5
+ fromDisplayName?: string;
6
+ toEmails?: string[];
7
+ ccEmails?: string[];
8
+ bccEmails?: string[];
9
+ subject: string;
10
+ bodyHtml: string;
11
+ enrichWithLogo: boolean;
12
+ }
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ /*
3
+ *
4
+ * Backoffice UI sends notifications requests to apiv2 with DTOs based on BaseNotificationDto.
5
+ *
6
+ * The NotificationCreateDto is used when communicating (from apiv2) to the NotificationsService.
7
+ *
8
+ * - ProgramsSeasons controller has endpoints to send notifications to attendees using it's own subclass DTOs.
9
+ * - NotificationBlasts controller has endpoints to send notifications to recipients using segment-building query DTOs that subclass this.
10
+ */
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.BaseNotificationDto = void 0;
13
+ /* Common properties for all Notifications coming from UI */
14
+ class BaseNotificationDto {
15
+ }
16
+ exports.BaseNotificationDto = BaseNotificationDto;
17
+ //# sourceMappingURL=backoffice.notify.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"backoffice.notify.dto.js","sourceRoot":"","sources":["../../../../src/types/notifications/dto/backoffice.notify.dto.ts"],"names":[],"mappings":";AACA;;;;;;;;GAQG;;;AAEH,4DAA4D;AAC5D,MAAa,mBAAmB;CAwB/B;AAxBD,kDAwBC"}
@@ -1,2 +1,4 @@
1
+ export * from './backoffice.notify.dto';
2
+ export * from './notification.blast.query.dto';
1
3
  export * from './notification.create.dto';
2
4
  export * from './notification.response.dto';
@@ -14,6 +14,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./backoffice.notify.dto"), exports);
18
+ __exportStar(require("./notification.blast.query.dto"), exports);
17
19
  __exportStar(require("./notification.create.dto"), exports);
18
20
  __exportStar(require("./notification.response.dto"), exports);
19
21
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/types/notifications/dto/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4DAA0C;AAC1C,8DAA4C"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/types/notifications/dto/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0DAAwC;AACxC,iEAA+C;AAC/C,4DAA0C;AAC1C,8DAA4C"}
@@ -0,0 +1,23 @@
1
+ import { CustomerFamilyStatusEnum } from '../../customers/types/enums';
2
+ import { GenderEnum } from '../../services/enums.service';
3
+ import { BaseNotificationDto } from './backoffice.notify.dto';
4
+ export declare class CustomersQueryDto {
5
+ gender?: GenderEnum[];
6
+ startAge?: number;
7
+ endAge?: number;
8
+ dobStartMonth?: number;
9
+ dobStartDay?: number;
10
+ dobEndMonth?: number;
11
+ dobEndDay?: number;
12
+ familyStatus?: CustomerFamilyStatusEnum[];
13
+ }
14
+ export declare class NotificationBlastQueryDto {
15
+ customersQueryDto?: CustomersQueryDto;
16
+ }
17
+ export declare class NotificationBlastQueryMetadataDto {
18
+ recipientCount: number;
19
+ }
20
+ export declare class NotificationBlastSendDto {
21
+ notification: BaseNotificationDto;
22
+ query: NotificationBlastQueryDto;
23
+ }
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.NotificationBlastSendDto = exports.NotificationBlastQueryMetadataDto = exports.NotificationBlastQueryDto = exports.CustomersQueryDto = void 0;
4
+ /*
5
+ * Customer-specific query parameters.
6
+ */
7
+ class CustomersQueryDto {
8
+ }
9
+ exports.CustomersQueryDto = CustomersQueryDto;
10
+ /*
11
+ * Builds the query used to segment users for a blast notification.
12
+ */
13
+ class NotificationBlastQueryDto {
14
+ }
15
+ exports.NotificationBlastQueryDto = NotificationBlastQueryDto;
16
+ /*
17
+ * Metadata about the results of a NotificationBlastQueryDto.
18
+ */
19
+ class NotificationBlastQueryMetadataDto {
20
+ }
21
+ exports.NotificationBlastQueryMetadataDto = NotificationBlastQueryMetadataDto;
22
+ /*
23
+ * Combines a Notification and a Query, used to send the blast.
24
+ */
25
+ class NotificationBlastSendDto {
26
+ }
27
+ exports.NotificationBlastSendDto = NotificationBlastSendDto;
28
+ //# sourceMappingURL=notification.blast.query.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"notification.blast.query.dto.js","sourceRoot":"","sources":["../../../../src/types/notifications/dto/notification.blast.query.dto.ts"],"names":[],"mappings":";;;AAIA;;GAEG;AACH,MAAa,iBAAiB;CAoB7B;AApBD,8CAoBC;AAED;;GAEG;AACH,MAAa,yBAAyB;CAGrC;AAHD,8DAGC;AAED;;GAEG;AACH,MAAa,iCAAiC;CAE7C;AAFD,8EAEC;AAED;;GAEG;AACH,MAAa,wBAAwB;CAIpC;AAJD,4DAIC"}
@@ -23,6 +23,7 @@ export declare class RecipientsDto {
23
23
  to: string[];
24
24
  cc?: string[];
25
25
  bcc?: string[];
26
+ interpolationData?: Record<string, unknown>;
26
27
  static to(to?: string): RecipientsDto;
27
28
  constructor(to?: string[], cc?: string[], bcc?: string[]);
28
29
  }
@@ -30,6 +31,7 @@ export declare class ContentDto {
30
31
  bodyText?: string;
31
32
  bodyHtml?: string;
32
33
  subject?: string;
34
+ interpolationData?: Record<string, unknown>;
33
35
  constructor(subject?: string, bodyHtml?: string, bodyText?: string);
34
36
  }
35
37
  export declare class NotificationCreateDto {
@@ -1 +1 @@
1
- {"version":3,"file":"notification.create.dto.js","sourceRoot":"","sources":["../../../../src/types/notifications/dto/notification.create.dto.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAEH,0EAAgF;AAEhF,0EAA0E;AAE1E,2CAA2C;AAC3C,6CAA6C;AAE7C,MAAa,SAAS;IAcrB,yBAAyB;IACzB,uDAAuD;IACvD,YACC,MAAc,EACd,cAAuB,EACvB,UAAmB,EACnB,OAAgB,EAChB,eAAwB;QAExB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,IAAI,CAAC,cAAc,GAAG,cAAc,CAAC;QACrC,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;QAC7B,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,eAAe,GAAG,eAAe,CAAC;IACxC,CAAC;;AA5BF,8BA6BC;AA5BA,0GAA0G;AACnG,yBAAe,GAAG,CAAC,EAAE,CAAC;AA6B9B,MAAa,aAAa;IAUzB,yBAAyB;IACzB,uDAAuD;IACvD,MAAM,CAAC,EAAE,CAAC,EAAW;QACpB,MAAM,CAAC,GAAG,IAAI,aAAa,EAAE,CAAC;QAC9B,CAAC,CAAC,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;QACtB,OAAO,CAAC,CAAC;IACV,CAAC;IAED,YAAY,EAAa,EAAE,EAAa,EAAE,GAAc;QACvD,IAAI,CAAC,EAAE,GAAG,EAAE,IAAI,EAAE,CAAC;QACnB,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;QACb,IAAI,CAAC,GAAG,GAAG,GAAG,CAAC;IAChB,CAAC;CACD;AAvBD,sCAuBC;AAED,MAAa,UAAU;IAOtB,yBAAyB;IACzB,uDAAuD;IACvD,YAAY,OAAgB,EAAE,QAAiB,EAAE,QAAiB;QACjE,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QACzB,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QACzB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IACxB,CAAC;CACD;AAdD,gCAcC;AAED,MAAa,qBAAqB;IAiBjC,yBAAyB;IACzB,uDAAuD;IACvD,MAAM,CAAC,gBAAgB,CACtB,cAAsB,EACtB,mBAAwB,EACxB,aAAqB,EACrB,qBAA8B,EAC9B,iBAA0B;QAE1B,MAAM,IAAI,GAAG,IAAI,qBAAqB,EAAE,CAAC;QACzC,IAAI,CAAC,OAAO,GAAG,gDAA2B,CAAC,KAAK,CAAC;QACjD,IAAI,CAAC,MAAM,GAAG,IAAI,SAAS,CAAC,aAAa,EAAE,qBAAqB,EAAE,iBAAiB,CAAC,CAAC;QACrF,IAAI,CAAC,UAAU,GAAG,CAAC,aAAa,CAAC,EAAE,CAAC,cAAc,CAAC,CAAC,CAAC;QACrD,iGAAiG;QACjG,IAAI,CAAC,eAAe,GAAG;YACtB,wGAAwG;YACxG,mBAAmB,EAAE,mBAAmB;SACxC,CAAC;QACF,OAAO,IAAI,CAAC;IACb,CAAC;CACD;AArCD,sDAqCC"}
1
+ {"version":3,"file":"notification.create.dto.js","sourceRoot":"","sources":["../../../../src/types/notifications/dto/notification.create.dto.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAEH,0EAAgF;AAEhF,0EAA0E;AAE1E,2CAA2C;AAC3C,6CAA6C;AAE7C,MAAa,SAAS;IAcrB,yBAAyB;IACzB,uDAAuD;IACvD,YACC,MAAc,EACd,cAAuB,EACvB,UAAmB,EACnB,OAAgB,EAChB,eAAwB;QAExB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,IAAI,CAAC,cAAc,GAAG,cAAc,CAAC;QACrC,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;QAC7B,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,eAAe,GAAG,eAAe,CAAC;IACxC,CAAC;;AA5BF,8BA6BC;AA5BA,0GAA0G;AACnG,yBAAe,GAAG,CAAC,EAAE,CAAC;AA6B9B,MAAa,aAAa;IAYzB,yBAAyB;IACzB,uDAAuD;IACvD,MAAM,CAAC,EAAE,CAAC,EAAW;QACpB,MAAM,CAAC,GAAG,IAAI,aAAa,EAAE,CAAC;QAC9B,CAAC,CAAC,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;QACtB,OAAO,CAAC,CAAC;IACV,CAAC;IAED,YAAY,EAAa,EAAE,EAAa,EAAE,GAAc;QACvD,IAAI,CAAC,EAAE,GAAG,EAAE,IAAI,EAAE,CAAC;QACnB,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;QACb,IAAI,CAAC,GAAG,GAAG,GAAG,CAAC;IAChB,CAAC;CACD;AAzBD,sCAyBC;AAED,MAAa,UAAU;IAStB,yBAAyB;IACzB,uDAAuD;IACvD,YAAY,OAAgB,EAAE,QAAiB,EAAE,QAAiB;QACjE,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QACzB,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QACzB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IACxB,CAAC;CACD;AAhBD,gCAgBC;AAED,MAAa,qBAAqB;IAgBjC,yBAAyB;IACzB,uDAAuD;IACvD,MAAM,CAAC,gBAAgB,CACtB,cAAsB,EACtB,mBAAwB,EACxB,aAAqB,EACrB,qBAA8B,EAC9B,iBAA0B;QAE1B,MAAM,IAAI,GAAG,IAAI,qBAAqB,EAAE,CAAC;QACzC,IAAI,CAAC,OAAO,GAAG,gDAA2B,CAAC,KAAK,CAAC;QACjD,IAAI,CAAC,MAAM,GAAG,IAAI,SAAS,CAAC,aAAa,EAAE,qBAAqB,EAAE,iBAAiB,CAAC,CAAC;QACrF,IAAI,CAAC,UAAU,GAAG,CAAC,aAAa,CAAC,EAAE,CAAC,cAAc,CAAC,CAAC,CAAC;QACrD,iGAAiG;QACjG,IAAI,CAAC,eAAe,GAAG;YACtB,wGAAwG;YACxG,mBAAmB,EAAE,mBAAmB;SACxC,CAAC;QACF,OAAO,IAAI,CAAC;IACb,CAAC;CACD;AApCD,sDAoCC"}
@@ -4,6 +4,6 @@ export declare class NotifyTracker extends BondBaseEntity {
4
4
  userId: number;
5
5
  organizationId: number;
6
6
  notifyMetadata?: any;
7
- notfiyMethodtype: NotifyMethodEnum;
7
+ notfiyMethodType: NotifyMethodEnum;
8
8
  destination: string;
9
9
  }
@@ -6,6 +6,7 @@ import { MaintenanceDto } from '../../reservations/dto/maintenance.dto';
6
6
  import { TimeSlotConflicts } from '../../reservations/interfaces/reservation';
7
7
  import { CreateOrUpdateResourceSettingDto } from '../../resource-settings/dto/create-or-update-resource-setting.dto';
8
8
  import { GenderEnum, LevelOfPlayEnum, OrderByEnum, ProgramSeasonTypesEnum, ProgramTypesEnum, PublishingStatusEnum, RegistrationConstraintPeriodTypeEnum, ResourceNameTypeEnum, SlotTypeEnum, SportsEnum } from '../../services/enums.service';
9
+ import { BaseNotificationDto } from '../../notifications/dto/backoffice.notify.dto';
9
10
  export declare class FindSessionsFiltersDto {
10
11
  status?: PublishingStatusEnum;
11
12
  isFullFetch?: boolean;
@@ -228,26 +229,14 @@ export declare class EventsAndConflictsDto {
228
229
  conflicts: TimeSlotConflicts[];
229
230
  meta: PaginationMetaDto;
230
231
  }
231
- export declare class BaseNotifyAttendeesDto {
232
- organizationId: number;
233
- facilityId: number;
234
- replyTo?: string;
235
- fromDisplayName?: string;
236
- toEmails?: string[];
237
- ccEmails?: string[];
238
- bccEmails?: string[];
239
- subject: string;
240
- bodyHtml: string;
241
- enrichWithLogo: boolean;
242
- }
243
- export declare class NotifyEventAttendeesDto extends BaseNotifyAttendeesDto {
232
+ export declare class NotifyEventAttendeesDto extends BaseNotificationDto {
244
233
  useRangeAndExclusionList: boolean;
245
234
  toEventIds?: number[];
246
235
  excludeEventIds?: number[];
247
236
  eventsFromDate?: Date;
248
237
  eventsToDate?: Date;
249
238
  }
250
- export declare class NotifySessionAttendeesDto extends BaseNotifyAttendeesDto {
239
+ export declare class NotifySessionAttendeesDto extends BaseNotificationDto {
251
240
  toSessionIds: number[];
252
241
  eventsFromDate?: Date;
253
242
  eventsToDate?: Date;
@@ -1,9 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetRelatedProgramSessionsDto = exports.RelatedSessionsDto = exports.GetOrganizationProgramSessionsDto = exports.NotifySessionAttendeesDto = exports.NotifyEventAttendeesDto = exports.BaseNotifyAttendeesDto = exports.EventsAndConflictsDto = exports.UpdateProgramSeasonOptionsDto = exports.UpdateProgramSeasonColorsDto = exports.MoveParticipantDto = exports.RegistrationSettingsDto = exports.RegistrationDatesDto = exports.UpdateSeasonRegistrationDatesDto = exports.MoveAttendeeDto = exports.UpdateSeasonDatesDto = exports.SpaceAllocationsByTimesDto = exports.SingleSpaceAllocationByTimesDto = exports.BulkSpaceResourceAllocationDto = exports.SpaceResourcePairDto = exports.SimpleSessionDto = exports.ShallowUpdateSubSeasonDto = exports.ShallowUpdateProgramSeasonDto = exports.UpdateProgramSeasonStatusDto = exports.UpdateProgramSeasonDto = exports.CreateProgramSeasonDto = exports.SubSeasonBasicInfo = exports.CreateSessionScheduleDto = exports.BaseProgramSeasonDto = exports.ActivityTimesDto = exports.BlockedDatesDto = exports.FindRegisteredUsersOptionsDto = exports.FindRegisteredUserDto = exports.DeleteProductDto = exports.FindSessionEventByIdDto = exports.ByOrganizationIdAndProgramSeasonIdDto = exports.FindSeasonEventsQueryDto = exports.SegmentsBySessionQueryDto = exports.FindProgramSeasonByIdDto = exports.FindProgramSeasonByIdQueryDto = exports.DeleteEventAttendeesDto = exports.BySeasonDto = exports.FindSessionsFiltersDto = void 0;
3
+ exports.GetRelatedProgramSessionsDto = exports.RelatedSessionsDto = exports.GetOrganizationProgramSessionsDto = exports.NotifySessionAttendeesDto = exports.NotifyEventAttendeesDto = exports.EventsAndConflictsDto = exports.UpdateProgramSeasonOptionsDto = exports.UpdateProgramSeasonColorsDto = exports.MoveParticipantDto = exports.RegistrationSettingsDto = exports.RegistrationDatesDto = exports.UpdateSeasonRegistrationDatesDto = exports.MoveAttendeeDto = exports.UpdateSeasonDatesDto = exports.SpaceAllocationsByTimesDto = exports.SingleSpaceAllocationByTimesDto = exports.BulkSpaceResourceAllocationDto = exports.SpaceResourcePairDto = exports.SimpleSessionDto = exports.ShallowUpdateSubSeasonDto = exports.ShallowUpdateProgramSeasonDto = exports.UpdateProgramSeasonStatusDto = exports.UpdateProgramSeasonDto = exports.CreateProgramSeasonDto = exports.SubSeasonBasicInfo = exports.CreateSessionScheduleDto = exports.BaseProgramSeasonDto = exports.ActivityTimesDto = exports.BlockedDatesDto = exports.FindRegisteredUsersOptionsDto = exports.FindRegisteredUserDto = exports.DeleteProductDto = exports.FindSessionEventByIdDto = exports.ByOrganizationIdAndProgramSeasonIdDto = exports.FindSeasonEventsQueryDto = exports.SegmentsBySessionQueryDto = exports.FindProgramSeasonByIdDto = exports.FindProgramSeasonByIdQueryDto = exports.DeleteEventAttendeesDto = exports.BySeasonDto = exports.FindSessionsFiltersDto = void 0;
4
4
  const general_dto_1 = require("../../dto/general.dto");
5
5
  const organization_dto_1 = require("../../organization/dto/organization.dto");
6
6
  const program_dto_1 = require("../../programs/dto/program.dto");
7
+ const backoffice_notify_dto_1 = require("../../notifications/dto/backoffice.notify.dto");
7
8
  class FindSessionsFiltersDto {
8
9
  }
9
10
  exports.FindSessionsFiltersDto = FindSessionsFiltersDto;
@@ -112,20 +113,16 @@ exports.UpdateProgramSeasonOptionsDto = UpdateProgramSeasonOptionsDto;
112
113
  class EventsAndConflictsDto {
113
114
  }
114
115
  exports.EventsAndConflictsDto = EventsAndConflictsDto;
115
- /* Common properties for all Notifications */
116
- class BaseNotifyAttendeesDto {
117
- }
118
- exports.BaseNotifyAttendeesDto = BaseNotifyAttendeesDto;
119
116
  /*
120
117
  * Notify Attendees within multiple Events of a single Session.
121
118
  */
122
- class NotifyEventAttendeesDto extends BaseNotifyAttendeesDto {
119
+ class NotifyEventAttendeesDto extends backoffice_notify_dto_1.BaseNotificationDto {
123
120
  }
124
121
  exports.NotifyEventAttendeesDto = NotifyEventAttendeesDto;
125
122
  /*
126
123
  * Notify Attendees within multiple Sessions of a single Program.
127
124
  */
128
- class NotifySessionAttendeesDto extends BaseNotifyAttendeesDto {
125
+ class NotifySessionAttendeesDto extends backoffice_notify_dto_1.BaseNotificationDto {
129
126
  }
130
127
  exports.NotifySessionAttendeesDto = NotifySessionAttendeesDto;
131
128
  class GetOrganizationProgramSessionsDto extends general_dto_1.PaginationQuery {
@@ -1 +1 @@
1
- {"version":3,"file":"program-seasons.dto.js","sourceRoot":"","sources":["../../../../src/types/programs-seasons/dto/program-seasons.dto.ts"],"names":[],"mappings":";;;AACA,uDAAyF;AAEzF,8EAAyG;AACzG,gEAAuF;AAiBvF,MAAa,sBAAsB;CAIlC;AAJD,wDAIC;AAED,MAAa,WAAY,SAAQ,0BAAY;CAE5C;AAFD,kCAEC;AAED,MAAa,uBAAuB;CAEnC;AAFD,0DAEC;AAED,MAAa,6BAA6B;CAEzC;AAFD,sEAEC;AAED,MAAa,wBAAyB,SAAQ,4CAAyB;CAEtE;AAFD,4DAEC;AAED,MAAa,yBAAyB;CAUrC;AAVD,8DAUC;AACD,MAAa,wBAAyB,SAAQ,6BAAe;CAU5D;AAVD,4DAUC;AAED,MAAa,qCAAsC,SAAQ,sCAAmB;CAE7E;AAFD,sFAEC;AAED,MAAa,uBAAuB;CAGnC;AAHD,0DAGC;AAED,MAAa,gBAAgB;CAE5B;AAFD,4CAEC;AAED,MAAa,qBAAsB,SAAQ,wBAAwB;CAElE;AAFD,sDAEC;AAED,MAAa,6BAA8B,SAAQ,6BAAe;CAMjE;AAND,sEAMC;AAED,MAAa,eAAe;CAM3B;AAND,0CAMC;AAED,MAAa,gBAAgB;CAM5B;AAND,4CAMC;AAED,MAAa,oBAAoB;CA8EhC;AA9ED,oDA8EC;AAED,MAAa,wBAAwB;CAMpC;AAND,4DAMC;AAED,MAAa,kBAAkB;CAQ9B;AARD,gDAQC;AAED,MAAa,sBAAuB,SAAQ,oBAAoB;CAE/D;AAFD,wDAEC;AAED,MAAa,sBAAuB,SAAQ,oBAAoB;CAE/D;AAFD,wDAEC;AAED,MAAa,4BAA4B;CAGxC;AAHD,oEAGC;AAED,MAAa,6BAA6B;CAwDzC;AAxDD,sEAwDC;AAED,MAAa,yBAA0B,SAAQ,0BAAY;CAAG;AAA9D,8DAA8D;AAE9D,MAAa,gBAAiB,SAAQ,0BAAY;CAUjD;AAVD,4CAUC;AAED,MAAa,oBAAoB;CAWhC;AAXD,oDAWC;AAED,MAAa,8BAA8B;CAI1C;AAJD,wEAIC;AAED,MAAa,+BAA+B;CAO3C;AAPD,0EAOC;AAED,MAAa,0BAA0B;CAEtC;AAFD,gEAEC;AAED,MAAa,oBAAoB;CAIhC;AAJD,oDAIC;AAED,MAAa,eAAe;CAK3B;AALD,0CAKC;AAED,MAAa,gCAAgC;CAE5C;AAFD,4EAEC;AAED,MAAa,oBAAoB;CAShC;AATD,oDASC;AAED,MAAa,uBAAwB,SAAQ,oBAAoB;CAUhE;AAVD,0DAUC;AAED,MAAa,kBAAkB;CAY9B;AAZD,gDAYC;AAED,MAAa,4BAA4B;CAExC;AAFD,oEAEC;AAED,MAAa,6BAA8B,SAAQ,qCAAuB;CAAG;AAA7E,sEAA6E;AAE7E,MAAa,qBAAqB;CAMjC;AAND,sDAMC;AAED,6CAA6C;AAC7C,MAAa,sBAAsB;CAwBlC;AAxBD,wDAwBC;AAED;;GAEG;AACH,MAAa,uBAAwB,SAAQ,sBAAsB;CAYlE;AAZD,0DAYC;AAED;;GAEG;AACH,MAAa,yBAA0B,SAAQ,sBAAsB;CAapE;AAbD,8DAaC;AAED,MAAa,iCAAkC,SAAQ,6BAAe;CAMrE;AAND,8EAMC;AAED,MAAa,kBAAkB;CAI9B;AAJD,gDAIC;AAED,MAAa,4BAA4B;CAExC;AAFD,oEAEC"}
1
+ {"version":3,"file":"program-seasons.dto.js","sourceRoot":"","sources":["../../../../src/types/programs-seasons/dto/program-seasons.dto.ts"],"names":[],"mappings":";;;AACA,uDAAyF;AAEzF,8EAAyG;AACzG,gEAAuF;AAgBvF,yFAAoF;AAEpF,MAAa,sBAAsB;CAIlC;AAJD,wDAIC;AAED,MAAa,WAAY,SAAQ,0BAAY;CAE5C;AAFD,kCAEC;AAED,MAAa,uBAAuB;CAEnC;AAFD,0DAEC;AAED,MAAa,6BAA6B;CAEzC;AAFD,sEAEC;AAED,MAAa,wBAAyB,SAAQ,4CAAyB;CAEtE;AAFD,4DAEC;AAED,MAAa,yBAAyB;CAUrC;AAVD,8DAUC;AACD,MAAa,wBAAyB,SAAQ,6BAAe;CAU5D;AAVD,4DAUC;AAED,MAAa,qCAAsC,SAAQ,sCAAmB;CAE7E;AAFD,sFAEC;AAED,MAAa,uBAAuB;CAGnC;AAHD,0DAGC;AAED,MAAa,gBAAgB;CAE5B;AAFD,4CAEC;AAED,MAAa,qBAAsB,SAAQ,wBAAwB;CAElE;AAFD,sDAEC;AAED,MAAa,6BAA8B,SAAQ,6BAAe;CAMjE;AAND,sEAMC;AAED,MAAa,eAAe;CAM3B;AAND,0CAMC;AAED,MAAa,gBAAgB;CAM5B;AAND,4CAMC;AAED,MAAa,oBAAoB;CA8EhC;AA9ED,oDA8EC;AAED,MAAa,wBAAwB;CAMpC;AAND,4DAMC;AAED,MAAa,kBAAkB;CAQ9B;AARD,gDAQC;AAED,MAAa,sBAAuB,SAAQ,oBAAoB;CAE/D;AAFD,wDAEC;AAED,MAAa,sBAAuB,SAAQ,oBAAoB;CAE/D;AAFD,wDAEC;AAED,MAAa,4BAA4B;CAGxC;AAHD,oEAGC;AAED,MAAa,6BAA6B;CAwDzC;AAxDD,sEAwDC;AAED,MAAa,yBAA0B,SAAQ,0BAAY;CAAG;AAA9D,8DAA8D;AAE9D,MAAa,gBAAiB,SAAQ,0BAAY;CAUjD;AAVD,4CAUC;AAED,MAAa,oBAAoB;CAWhC;AAXD,oDAWC;AAED,MAAa,8BAA8B;CAI1C;AAJD,wEAIC;AAED,MAAa,+BAA+B;CAO3C;AAPD,0EAOC;AAED,MAAa,0BAA0B;CAEtC;AAFD,gEAEC;AAED,MAAa,oBAAoB;CAIhC;AAJD,oDAIC;AAED,MAAa,eAAe;CAK3B;AALD,0CAKC;AAED,MAAa,gCAAgC;CAE5C;AAFD,4EAEC;AAED,MAAa,oBAAoB;CAShC;AATD,oDASC;AAED,MAAa,uBAAwB,SAAQ,oBAAoB;CAUhE;AAVD,0DAUC;AAED,MAAa,kBAAkB;CAY9B;AAZD,gDAYC;AAED,MAAa,4BAA4B;CAExC;AAFD,oEAEC;AAED,MAAa,6BAA8B,SAAQ,qCAAuB;CAAG;AAA7E,sEAA6E;AAE7E,MAAa,qBAAqB;CAMjC;AAND,sDAMC;AAED;;GAEG;AACH,MAAa,uBAAwB,SAAQ,2CAAmB;CAY/D;AAZD,0DAYC;AAED;;GAEG;AACH,MAAa,yBAA0B,SAAQ,2CAAmB;CAajE;AAbD,8DAaC;AAED,MAAa,iCAAkC,SAAQ,6BAAe;CAMrE;AAND,8EAMC;AAED,MAAa,kBAAkB;CAI9B;AAJD,gDAIC;AAED,MAAa,4BAA4B;CAExC;AAFD,oEAEC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bondsports/types",
3
- "version": "2.0.124",
3
+ "version": "2.0.126",
4
4
  "description": "backend types module for Bond-Sports",
5
5
  "main": "./dist/index.js",
6
6
  "scripts": {