@spytecgps/nova-orm 0.0.73 → 0.0.75
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/entities/alertMigration.d.ts +22 -0
- package/dist/entities/alertMigrationBatch.d.ts +3 -0
- package/dist/entities/index.d.ts +3 -1
- package/dist/index.js +1 -1
- package/dist/repositories/userConfigurations/index.d.ts +2 -0
- package/dist/types/userConfigurations.d.ts +2 -0
- package/package.json +1 -1
|
@@ -24,6 +24,7 @@ export declare class UserConfigurationsRepository extends BaseRepository {
|
|
|
24
24
|
* - dataSourceTypeId: The user data source type id, optional
|
|
25
25
|
* - homepage: The user homepage, optional
|
|
26
26
|
* - temperatureUnits: The user temperature units, optional
|
|
27
|
+
* - addressFormat: The user address format, optional
|
|
27
28
|
* @returns The created user configuration
|
|
28
29
|
*/
|
|
29
30
|
createUserConfiguration(params: CreateUserConfigurationParams): Promise<UserConfiguration>;
|
|
@@ -42,6 +43,7 @@ export declare class UserConfigurationsRepository extends BaseRepository {
|
|
|
42
43
|
* - values.dataSourceTypeId: The user data source type id, optional
|
|
43
44
|
* - values.homepage: The user homepage, optional
|
|
44
45
|
* - values.temperatureUnits: The user temperature units, optional
|
|
46
|
+
* - values.addressFormat: The user address format, optional
|
|
45
47
|
* @returns Whether the user configuration was updated
|
|
46
48
|
*/
|
|
47
49
|
updateUserConfiguration(params: UpdateUserConfigurationParams): Promise<boolean>;
|
|
@@ -16,6 +16,7 @@ export interface CreateUserConfigurationParams {
|
|
|
16
16
|
dataSourceTypeId?: number;
|
|
17
17
|
homepage?: string;
|
|
18
18
|
temperatureUnits?: string;
|
|
19
|
+
addressFormat?: string;
|
|
19
20
|
}
|
|
20
21
|
export interface UpdateUserConfigurationParams {
|
|
21
22
|
filters: {
|
|
@@ -30,6 +31,7 @@ export interface UpdateUserConfigurationParams {
|
|
|
30
31
|
dataSourceTypeId?: number;
|
|
31
32
|
homepage?: string;
|
|
32
33
|
temperatureUnits?: string;
|
|
34
|
+
addressFormat?: string;
|
|
33
35
|
};
|
|
34
36
|
}
|
|
35
37
|
export interface DeleteUserConfigurationParams {
|