@spytecgps/nova-orm 0.0.74 → 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.
@@ -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: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spytecgps/nova-orm",
3
- "version": "0.0.74",
3
+ "version": "0.0.75",
4
4
  "description": "ORM with PlanetScale",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",