@dative-gpi/foundation-shared-domain 0.0.104 → 0.0.105

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.
@@ -20,5 +20,5 @@ export class LanguageInfos {
20
20
  }
21
21
 
22
22
  export interface LanguageFilters {
23
- search: string | null;
23
+ search?: string | null;
24
24
  }
@@ -25,5 +25,5 @@ export interface OrganisationTypeInfosDTO {
25
25
  }
26
26
 
27
27
  export interface OrganisationTypeFilters {
28
- search: string | null;
28
+ search?: string | null;
29
29
  }
@@ -26,5 +26,5 @@ export interface OrganisationInfosDTO {
26
26
  }
27
27
 
28
28
  export interface OrganisationFilters {
29
- search: string | null;
29
+ search?: string | null;
30
30
  }
@@ -1,18 +1,18 @@
1
1
  export class TimeZoneInfos {
2
- id: string;
3
- offset: string;
2
+ id: string;
3
+ offset: string;
4
4
 
5
- constructor(params: TimeZoneInfosDTO) {
6
- this.id = params.id;
7
- this.offset = params.offset;
8
- }
5
+ constructor(params: TimeZoneInfosDTO) {
6
+ this.id = params.id;
7
+ this.offset = params.offset;
8
+ }
9
9
  }
10
10
 
11
11
  export interface TimeZoneInfosDTO {
12
- id: string;
13
- offset: string;
12
+ id: string;
13
+ offset: string;
14
14
  }
15
15
 
16
16
  export interface TimeZoneFilters {
17
- search: string | null;
17
+ search?: string | null;
18
18
  }
@@ -26,5 +26,5 @@ export class UserInfos {
26
26
  }
27
27
 
28
28
  export interface UserFilters {
29
- search: string | null;
29
+ search?: string | null;
30
30
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dative-gpi/foundation-shared-domain",
3
3
  "sideEffects": false,
4
- "version": "0.0.104",
4
+ "version": "0.0.105",
5
5
  "description": "",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -12,5 +12,5 @@
12
12
  "dependencies": {
13
13
  "date-fns": "^3.6.0"
14
14
  },
15
- "gitHead": "2c21d0a59340ac959e6b885b75638469148cde26"
15
+ "gitHead": "87c3913599bcfc96f33e3f2528e2be91a252726e"
16
16
  }
@@ -64,7 +64,7 @@ const fromExpression = (expression: string, variant: 'default' | 'before-after')
64
64
  return false;
65
65
  }
66
66
  return true;
67
- }
67
+ };
68
68
 
69
69
  export const isoTimeFormat = (timeZone: boolean = false): string => {
70
70
  return `yyyy-MM-dd'T'HH:mm:ss${timeZone ? "X" : ""}`;