mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-14 14:24:24 +00:00
Add user_group for returning type
This commit is contained in:
parent
4996ac3b7c
commit
580a60c939
@ -1,175 +1,175 @@
|
|||||||
export interface DateTime {
|
export interface DateTime {
|
||||||
datetime: string;
|
datetime: string;
|
||||||
datetime8601: string
|
datetime8601: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface Civility {
|
export interface Civility {
|
||||||
id: number;
|
id: number;
|
||||||
// TODO
|
// TODO
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface Job {
|
export interface Job {
|
||||||
id: number;
|
id: number;
|
||||||
type: "user_job";
|
type: "user_job";
|
||||||
label: {
|
label: {
|
||||||
"fr": string; // could have other key. How to do that in ts ?
|
fr: string; // could have other key. How to do that in ts ?
|
||||||
}
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface Center {
|
export interface Center {
|
||||||
id: number;
|
id: number;
|
||||||
type: "center";
|
type: "center";
|
||||||
name: string;
|
name: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface Scope {
|
export interface Scope {
|
||||||
id: number;
|
id: number;
|
||||||
type: "scope";
|
type: "scope";
|
||||||
name: {
|
name: {
|
||||||
"fr": string
|
fr: string;
|
||||||
}
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface User {
|
export interface User {
|
||||||
type: "user";
|
type: "user";
|
||||||
id: number;
|
id: number;
|
||||||
username: string;
|
username: string;
|
||||||
text: string;
|
text: string;
|
||||||
text_without_absence: string;
|
text_without_absence: string;
|
||||||
email: string;
|
email: string;
|
||||||
user_job: Job;
|
user_job: Job;
|
||||||
label: string;
|
label: string;
|
||||||
// todo: mainCenter; mainJob; etc..
|
// todo: mainCenter; mainJob; etc..
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface UserGroup {
|
export interface UserGroup {
|
||||||
type: "chill_main_user_group",
|
type: "chill_main_user_group" | "user_group";
|
||||||
id: number,
|
id: number;
|
||||||
label: TranslatableString,
|
label: TranslatableString;
|
||||||
backgroundColor: string,
|
backgroundColor: string;
|
||||||
foregroundColor: string,
|
foregroundColor: string;
|
||||||
excludeKey: string,
|
excludeKey: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export type UserGroupOrUser = User | UserGroup;
|
export type UserGroupOrUser = User | UserGroup;
|
||||||
|
|
||||||
export interface UserAssociatedInterface {
|
export interface UserAssociatedInterface {
|
||||||
type: "user";
|
type: "user";
|
||||||
id: number;
|
id: number;
|
||||||
};
|
|
||||||
|
|
||||||
export type TranslatableString = {
|
|
||||||
fr?: string;
|
|
||||||
nl?: string;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export type TranslatableString = {
|
||||||
|
fr?: string;
|
||||||
|
nl?: string;
|
||||||
|
};
|
||||||
|
|
||||||
export interface Postcode {
|
export interface Postcode {
|
||||||
id: number;
|
id: number;
|
||||||
name: string;
|
name: string;
|
||||||
code: string;
|
code: string;
|
||||||
center: Point;
|
center: Point;
|
||||||
}
|
}
|
||||||
|
|
||||||
export type Point = {
|
export type Point = {
|
||||||
type: "Point";
|
type: "Point";
|
||||||
coordinates: [lat: number, lon: number];
|
coordinates: [lat: number, lon: number];
|
||||||
}
|
};
|
||||||
|
|
||||||
export interface Country {
|
export interface Country {
|
||||||
id: number;
|
id: number;
|
||||||
name: TranslatableString;
|
name: TranslatableString;
|
||||||
code: string;
|
code: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export type AddressRefStatus = 'match'|'to_review'|'reviewed';
|
export type AddressRefStatus = "match" | "to_review" | "reviewed";
|
||||||
|
|
||||||
export interface Address {
|
export interface Address {
|
||||||
type: "address";
|
type: "address";
|
||||||
address_id: number;
|
address_id: number;
|
||||||
text: string;
|
text: string;
|
||||||
street: string;
|
street: string;
|
||||||
streetNumber: string;
|
streetNumber: string;
|
||||||
postcode: Postcode;
|
postcode: Postcode;
|
||||||
country: Country;
|
country: Country;
|
||||||
floor: string | null;
|
floor: string | null;
|
||||||
corridor: string | null;
|
corridor: string | null;
|
||||||
steps: string | null;
|
steps: string | null;
|
||||||
flat: string | null;
|
flat: string | null;
|
||||||
buildingName: string | null;
|
buildingName: string | null;
|
||||||
distribution: string | null;
|
distribution: string | null;
|
||||||
extra: string | null;
|
extra: string | null;
|
||||||
confidential: boolean;
|
confidential: boolean;
|
||||||
lines: string[];
|
lines: string[];
|
||||||
addressReference: AddressReference | null;
|
addressReference: AddressReference | null;
|
||||||
validFrom: DateTime;
|
validFrom: DateTime;
|
||||||
validTo: DateTime | null;
|
validTo: DateTime | null;
|
||||||
point: Point | null;
|
point: Point | null;
|
||||||
refStatus: AddressRefStatus;
|
refStatus: AddressRefStatus;
|
||||||
isNoAddress: boolean;
|
isNoAddress: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface AddressWithPoint extends Address {
|
export interface AddressWithPoint extends Address {
|
||||||
point: Point
|
point: Point;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface AddressReference {
|
export interface AddressReference {
|
||||||
id: number;
|
id: number;
|
||||||
createdAt: DateTime | null;
|
createdAt: DateTime | null;
|
||||||
deletedAt: DateTime | null;
|
deletedAt: DateTime | null;
|
||||||
municipalityCode: string;
|
municipalityCode: string;
|
||||||
point: Point;
|
point: Point;
|
||||||
postcode: Postcode;
|
postcode: Postcode;
|
||||||
refId: string;
|
refId: string;
|
||||||
source: string;
|
source: string;
|
||||||
street: string;
|
street: string;
|
||||||
streetNumber: string;
|
streetNumber: string;
|
||||||
updatedAt: DateTime | null;
|
updatedAt: DateTime | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface SimpleGeographicalUnit {
|
export interface SimpleGeographicalUnit {
|
||||||
id: number;
|
id: number;
|
||||||
layerId: number;
|
layerId: number;
|
||||||
unitName: string;
|
unitName: string;
|
||||||
unitRefId: string;
|
unitRefId: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface GeographicalUnitLayer {
|
export interface GeographicalUnitLayer {
|
||||||
id: number;
|
id: number;
|
||||||
name: TranslatableString;
|
name: TranslatableString;
|
||||||
refId: string;
|
refId: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface Location {
|
export interface Location {
|
||||||
type: "location";
|
type: "location";
|
||||||
id: number;
|
id: number;
|
||||||
active: boolean;
|
active: boolean;
|
||||||
address: Address | null;
|
address: Address | null;
|
||||||
availableForUsers: boolean;
|
availableForUsers: boolean;
|
||||||
createdAt: DateTime | null;
|
createdAt: DateTime | null;
|
||||||
createdBy: User | null;
|
createdBy: User | null;
|
||||||
updatedAt: DateTime | null;
|
updatedAt: DateTime | null;
|
||||||
updatedBy: User | null;
|
updatedBy: User | null;
|
||||||
email: string | null
|
email: string | null;
|
||||||
name: string;
|
name: string;
|
||||||
phonenumber1: string | null;
|
phonenumber1: string | null;
|
||||||
phonenumber2: string | null;
|
phonenumber2: string | null;
|
||||||
locationType: LocationType;
|
locationType: LocationType;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface LocationAssociated {
|
export interface LocationAssociated {
|
||||||
type: "location";
|
type: "location";
|
||||||
id: number;
|
id: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface LocationType {
|
export interface LocationType {
|
||||||
type: "location-type";
|
type: "location-type";
|
||||||
id: number;
|
id: number;
|
||||||
active: boolean;
|
active: boolean;
|
||||||
addressRequired: "optional" | "required";
|
addressRequired: "optional" | "required";
|
||||||
availableForUsers: boolean;
|
availableForUsers: boolean;
|
||||||
editableByUsers: boolean;
|
editableByUsers: boolean;
|
||||||
contactData: "optional" | "required";
|
contactData: "optional" | "required";
|
||||||
title: TranslatableString;
|
title: TranslatableString;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface NewsItemType {
|
export interface NewsItemType {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user