@bondsports/types 2.4.69 → 2.4.71-squad-c-1

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.
Files changed (46) hide show
  1. package/dist/tsconfig.build.tsbuildinfo +1 -1
  2. package/dist/types/folders/types/folder-restrictions.consts.d.ts +19 -0
  3. package/dist/types/folders/types/folder-restrictions.consts.js +20 -1
  4. package/dist/types/folders/types/folder-restrictions.consts.js.map +1 -1
  5. package/dist/types/folders/types/interfaces/folder-restrictions.interfaces.d.ts +1 -0
  6. package/dist/types/leagues-scheduler/types/interfaces.d.ts +5 -0
  7. package/dist/types/leagues-scheduler/types/interfaces.js.map +1 -1
  8. package/dist/types/online-booking/types/interfaces/schedule.interfaces.d.ts +7 -0
  9. package/dist/types/payment/dto/discount.dto.d.ts +4 -4
  10. package/dist/types/payment/dto/discount.dto.js +1 -1
  11. package/dist/types/payment/dto/discount.dto.js.map +1 -1
  12. package/dist/types/product-pricing/dto/public-product.dto.d.ts +4 -0
  13. package/dist/types/product-pricing/dto/public-product.dto.js +4 -1
  14. package/dist/types/product-pricing/dto/public-product.dto.js.map +1 -1
  15. package/dist/types/product-pricing/types/consts/product-category.consts.d.ts +5 -0
  16. package/dist/types/product-pricing/types/consts/product-category.consts.js +2 -0
  17. package/dist/types/product-pricing/types/consts/product-category.consts.js.map +1 -1
  18. package/dist/types/services/enums.service.d.ts +3 -1
  19. package/dist/types/services/enums.service.js +2 -0
  20. package/dist/types/services/enums.service.js.map +1 -1
  21. package/dist/types/user-identification/dto/index.d.ts +1 -0
  22. package/dist/types/user-identification/dto/index.js +1 -0
  23. package/dist/types/user-identification/dto/index.js.map +1 -1
  24. package/dist/types/user-identification/dto/user-identifier-public.dto.d.ts +16 -0
  25. package/dist/types/user-identification/dto/user-identifier-public.dto.js +11 -0
  26. package/dist/types/user-identification/dto/user-identifier-public.dto.js.map +1 -0
  27. package/dist/types/user-identification/dto/user-identifier.dto.d.ts +1 -1
  28. package/dist/types/user-identification/types/consts/index.d.ts +2 -0
  29. package/dist/types/user-identification/types/consts/index.js +19 -0
  30. package/dist/types/user-identification/types/consts/index.js.map +1 -0
  31. package/dist/types/user-identification/types/consts/public-user-identification.consts.d.ts +6 -0
  32. package/dist/types/user-identification/types/consts/public-user-identification.consts.js +20 -0
  33. package/dist/types/user-identification/types/consts/public-user-identification.consts.js.map +1 -0
  34. package/dist/types/user-identification/types/consts/user-identification.consts.d.ts +2 -0
  35. package/dist/types/user-identification/types/consts/user-identification.consts.js +12 -0
  36. package/dist/types/user-identification/types/consts/user-identification.consts.js.map +1 -0
  37. package/dist/types/user-identification/types/enums/user-identifier.types.d.ts +15 -0
  38. package/dist/types/user-identification/types/enums/user-identifier.types.js +19 -1
  39. package/dist/types/user-identification/types/enums/user-identifier.types.js.map +1 -1
  40. package/dist/types/user-identification/types/index.d.ts +2 -0
  41. package/dist/types/user-identification/types/index.js +2 -0
  42. package/dist/types/user-identification/types/index.js.map +1 -1
  43. package/dist/types/user-identification/types/interfaces.d.ts +19 -0
  44. package/dist/types/user-identification/types/interfaces.js +3 -0
  45. package/dist/types/user-identification/types/interfaces.js.map +1 -0
  46. package/package.json +1 -1
@@ -0,0 +1,19 @@
1
+ import { OrderByEnum } from '../../services/enums.service';
2
+ import { IPagination } from '../../util/models/interfaces/general.interfaces';
3
+ import { IdentifierExpandEnum, UserIdentifierType, OrderByUserIdentifierEnum } from './enums/user-identifier.types';
4
+ export interface IGetFamilyIdentifiersQuery extends IPagination {
5
+ organizationId: number;
6
+ facilityId?: number;
7
+ userId: number;
8
+ identifierType?: UserIdentifierType;
9
+ order?: OrderByEnum;
10
+ orderBy?: OrderByUserIdentifierEnum;
11
+ expand?: IdentifierExpandEnum[];
12
+ }
13
+ export interface IGetIdentifiersByUserIdsOptions {
14
+ organizationId?: number;
15
+ facilityId?: number;
16
+ identifierType?: UserIdentifierType;
17
+ relations?: string[];
18
+ validationTime?: Date;
19
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=interfaces.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"interfaces.js","sourceRoot":"","sources":["../../../../src/types/user-identification/types/interfaces.ts"],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bondsports/types",
3
- "version": "2.4.69",
3
+ "version": "2.4.71-squad-c-1",
4
4
  "description": "backend types module for Bond-Sports",
5
5
  "main": "./dist/index.js",
6
6
  "scripts": {