@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.
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/folders/types/folder-restrictions.consts.d.ts +19 -0
- package/dist/types/folders/types/folder-restrictions.consts.js +20 -1
- package/dist/types/folders/types/folder-restrictions.consts.js.map +1 -1
- package/dist/types/folders/types/interfaces/folder-restrictions.interfaces.d.ts +1 -0
- package/dist/types/leagues-scheduler/types/interfaces.d.ts +5 -0
- package/dist/types/leagues-scheduler/types/interfaces.js.map +1 -1
- package/dist/types/online-booking/types/interfaces/schedule.interfaces.d.ts +7 -0
- package/dist/types/payment/dto/discount.dto.d.ts +4 -4
- package/dist/types/payment/dto/discount.dto.js +1 -1
- package/dist/types/payment/dto/discount.dto.js.map +1 -1
- package/dist/types/product-pricing/dto/public-product.dto.d.ts +4 -0
- package/dist/types/product-pricing/dto/public-product.dto.js +4 -1
- package/dist/types/product-pricing/dto/public-product.dto.js.map +1 -1
- package/dist/types/product-pricing/types/consts/product-category.consts.d.ts +5 -0
- package/dist/types/product-pricing/types/consts/product-category.consts.js +2 -0
- package/dist/types/product-pricing/types/consts/product-category.consts.js.map +1 -1
- package/dist/types/services/enums.service.d.ts +3 -1
- package/dist/types/services/enums.service.js +2 -0
- package/dist/types/services/enums.service.js.map +1 -1
- package/dist/types/user-identification/dto/index.d.ts +1 -0
- package/dist/types/user-identification/dto/index.js +1 -0
- package/dist/types/user-identification/dto/index.js.map +1 -1
- package/dist/types/user-identification/dto/user-identifier-public.dto.d.ts +16 -0
- package/dist/types/user-identification/dto/user-identifier-public.dto.js +11 -0
- package/dist/types/user-identification/dto/user-identifier-public.dto.js.map +1 -0
- package/dist/types/user-identification/dto/user-identifier.dto.d.ts +1 -1
- package/dist/types/user-identification/types/consts/index.d.ts +2 -0
- package/dist/types/user-identification/types/consts/index.js +19 -0
- package/dist/types/user-identification/types/consts/index.js.map +1 -0
- package/dist/types/user-identification/types/consts/public-user-identification.consts.d.ts +6 -0
- package/dist/types/user-identification/types/consts/public-user-identification.consts.js +20 -0
- package/dist/types/user-identification/types/consts/public-user-identification.consts.js.map +1 -0
- package/dist/types/user-identification/types/consts/user-identification.consts.d.ts +2 -0
- package/dist/types/user-identification/types/consts/user-identification.consts.js +12 -0
- package/dist/types/user-identification/types/consts/user-identification.consts.js.map +1 -0
- package/dist/types/user-identification/types/enums/user-identifier.types.d.ts +15 -0
- package/dist/types/user-identification/types/enums/user-identifier.types.js +19 -1
- package/dist/types/user-identification/types/enums/user-identifier.types.js.map +1 -1
- package/dist/types/user-identification/types/index.d.ts +2 -0
- package/dist/types/user-identification/types/index.js +2 -0
- package/dist/types/user-identification/types/index.js.map +1 -1
- package/dist/types/user-identification/types/interfaces.d.ts +19 -0
- package/dist/types/user-identification/types/interfaces.js +3 -0
- package/dist/types/user-identification/types/interfaces.js.map +1 -0
- 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 @@
|
|
|
1
|
+
{"version":3,"file":"interfaces.js","sourceRoot":"","sources":["../../../../src/types/user-identification/types/interfaces.ts"],"names":[],"mappings":""}
|