@bondsports/types 2.4.69-a-9 → 2.4.69-a-10

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 (52) hide show
  1. package/dist/tsconfig.build.tsbuildinfo +1 -1
  2. package/dist/types/folders/types/interfaces/folder-restrictions.interfaces.d.ts +1 -1
  3. package/dist/types/membership/types/membership.interfaces.d.ts +1 -0
  4. package/dist/types/online-booking/types/interfaces/schedule.interfaces.d.ts +7 -0
  5. package/dist/types/payment/dto/discount.dto.d.ts +4 -4
  6. package/dist/types/payment/dto/discount.dto.js +1 -1
  7. package/dist/types/payment/dto/discount.dto.js.map +1 -1
  8. package/dist/types/product-pricing/dto/product.dto.d.ts +0 -4
  9. package/dist/types/product-pricing/dto/product.dto.js +1 -4
  10. package/dist/types/product-pricing/dto/product.dto.js.map +1 -1
  11. package/dist/types/product-pricing/dto/public-product.dto.d.ts +4 -0
  12. package/dist/types/product-pricing/dto/public-product.dto.js +4 -1
  13. package/dist/types/product-pricing/dto/public-product.dto.js.map +1 -1
  14. package/dist/types/product-pricing/types/consts/product-category.consts.d.ts +5 -0
  15. package/dist/types/product-pricing/types/consts/product-category.consts.js +2 -0
  16. package/dist/types/product-pricing/types/consts/product-category.consts.js.map +1 -1
  17. package/dist/types/product-pricing/types/interfaces/index.d.ts +1 -0
  18. package/dist/types/product-pricing/types/interfaces/index.js +1 -0
  19. package/dist/types/product-pricing/types/interfaces/index.js.map +1 -1
  20. package/dist/types/product-pricing/types/interfaces/product-creation.interfaces.d.ts +8 -0
  21. package/dist/types/product-pricing/types/interfaces/product-creation.interfaces.js +3 -0
  22. package/dist/types/product-pricing/types/interfaces/product-creation.interfaces.js.map +1 -0
  23. package/dist/types/reservations/types/interfaces/slot.interfaces.d.ts +1 -1
  24. package/dist/types/services/enums.service.d.ts +3 -1
  25. package/dist/types/services/enums.service.js +2 -0
  26. package/dist/types/services/enums.service.js.map +1 -1
  27. package/dist/types/user-identification/dto/index.d.ts +1 -0
  28. package/dist/types/user-identification/dto/index.js +1 -0
  29. package/dist/types/user-identification/dto/index.js.map +1 -1
  30. package/dist/types/user-identification/dto/user-identifier-public.dto.d.ts +16 -0
  31. package/dist/types/user-identification/dto/user-identifier-public.dto.js +11 -0
  32. package/dist/types/user-identification/dto/user-identifier-public.dto.js.map +1 -0
  33. package/dist/types/user-identification/dto/user-identifier.dto.d.ts +1 -1
  34. package/dist/types/user-identification/types/consts/index.d.ts +2 -0
  35. package/dist/types/user-identification/types/consts/index.js +19 -0
  36. package/dist/types/user-identification/types/consts/index.js.map +1 -0
  37. package/dist/types/user-identification/types/consts/public-user-identification.consts.d.ts +6 -0
  38. package/dist/types/user-identification/types/consts/public-user-identification.consts.js +20 -0
  39. package/dist/types/user-identification/types/consts/public-user-identification.consts.js.map +1 -0
  40. package/dist/types/user-identification/types/consts/user-identification.consts.d.ts +2 -0
  41. package/dist/types/user-identification/types/consts/user-identification.consts.js +12 -0
  42. package/dist/types/user-identification/types/consts/user-identification.consts.js.map +1 -0
  43. package/dist/types/user-identification/types/enums/user-identifier.types.d.ts +15 -0
  44. package/dist/types/user-identification/types/enums/user-identifier.types.js +19 -1
  45. package/dist/types/user-identification/types/enums/user-identifier.types.js.map +1 -1
  46. package/dist/types/user-identification/types/index.d.ts +2 -0
  47. package/dist/types/user-identification/types/index.js +2 -0
  48. package/dist/types/user-identification/types/index.js.map +1 -1
  49. package/dist/types/user-identification/types/interfaces.d.ts +19 -0
  50. package/dist/types/user-identification/types/interfaces.js +3 -0
  51. package/dist/types/user-identification/types/interfaces.js.map +1 -0
  52. 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
+ expand?: IdentifierExpandEnum[];
9
+ identifierType?: UserIdentifierType;
10
+ order?: OrderByEnum;
11
+ orderBy?: OrderByUserIdentifierEnum;
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-a-9",
3
+ "version": "2.4.69-a-10",
4
4
  "description": "backend types module for Bond-Sports",
5
5
  "main": "./dist/index.js",
6
6
  "scripts": {