@spytecgps/nova-orm 1.3.19 → 1.3.21

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.
@@ -1,5 +1,5 @@
1
1
  import { User } from '../../entities/user';
2
- import { CreateUserParams, DeleteAccountParams, DeleteUserParams, GetUserByIdParams, GetUserClientRelatedEntitiesCountParams, GetUserInfoWithActivationInfoParams, GetUserInfoWithAmazonDevicesInfoParams, GetUsersConfigurationByImeiParams, GetUsersDataParams, GetUsersIdsByPhoneAndCountryCodeParams, GetUsersInfoWithDevicesInfoParams, GetUsersParams, GetUsersWithRolesParams, UpdateUserParams, UserClientRelatedEntitiesCountResult, UserData, UserInfoWithActivationInfo, UserInfoWithAmazonDevicesInfo, UserInfoWithDevicesInfo, UserWithRole } from '../../types/user';
2
+ import { CreateUserParams, DeleteAccountParams, DeleteUserParams, GetUserByIdParams, GetUserClientRelatedEntitiesCountParams, GetUserInfoWithAmazonDevicesInfoParams, GetUsersConfigurationByImeiParams, GetUsersDataParams, GetUsersIdsByPhoneAndCountryCodeParams, GetUsersInfoWithDevicesInfoParams, GetUsersParams, GetUsersWithRolesParams, UpdateUserParams, UserClientRelatedEntitiesCountResult, UserData, UserInfoWithAmazonDevicesInfo, UserInfoWithDevicesInfo, UserWithRole } from '../../types/user';
3
3
  import { BaseRepository } from '../baseRepository';
4
4
  export declare class UsersRepository extends BaseRepository {
5
5
  /**
@@ -144,11 +144,4 @@ export declare class UsersRepository extends BaseRepository {
144
144
  * @returns The user information with the amazon devices
145
145
  */
146
146
  getUserInfoWithAmazonDevicesInfo(params: GetUserInfoWithAmazonDevicesInfoParams): Promise<UserInfoWithAmazonDevicesInfo>;
147
- /**
148
- * Get users info with activation info
149
- * @param {GetUserInfoWithActivationInfoParams} params containing information to get users info with activation info
150
- * - filters.userId: The user id to obtain the user info with activation info
151
- * @returns The user information with the activation info
152
- */
153
- getUsersInfoWithActivationInfo(params: GetUserInfoWithActivationInfoParams): Promise<UserInfoWithActivationInfo>;
154
147
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spytecgps/nova-orm",
3
- "version": "1.3.19",
3
+ "version": "1.3.21",
4
4
  "description": "ORM with PlanetScale",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -1,4 +0,0 @@
1
- import { NovaDataSource } from '../../novaDataSource';
2
- import { Logger } from '../../types/logger';
3
- import { GetUserInfoWithActivationInfoParams, UserInfoWithActivationInfo } from '../../types/user';
4
- export declare const getUsersInfoWithActivationInfo: (novaDataSource: NovaDataSource, params: GetUserInfoWithActivationInfoParams, logger: Logger) => Promise<UserInfoWithActivationInfo>;