@matochmat/api-client 2.0.0-next.32 → 2.0.0-next.33

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/index.d.ts CHANGED
@@ -74,7 +74,6 @@ export * from './v2/updatedByType';
74
74
  export * from './v2/upload';
75
75
  export * from './v2/uploadConnection';
76
76
  export * from './v2/user';
77
- export * from './v2/userLocation';
78
77
  export * from './v2/version';
79
78
  export * from './v2/week';
80
79
  export * from './v2/year';
@@ -135,4 +134,3 @@ export * from './v3/teamMemberUploadConnection';
135
134
  export * from './v3/updatedByType';
136
135
  export * from './v3/upload';
137
136
  export * from './v3/user';
138
- export * from './v3/userLocation';
package/dist/v3/user.d.ts CHANGED
@@ -3,7 +3,6 @@ import type { ApiV1FavoriteType } from '../v1/favorite';
3
3
  import type { ApiV3BaseResponseType } from '../v3/baseResponse';
4
4
  import type { ApiV3CustomerManagementType } from '../v3/customerManagement';
5
5
  import type { ApiV3NotificationPreferenceType } from '../v3/notificationPreference';
6
- import type { ApiV3UserLocationType } from '../v3/userLocation';
7
6
  export { apiV2UserApiEndpointSlug as apiV3UserApiEndpointSlug } from '../v2/user';
8
7
  /**
9
8
  * Type for the individual array items in v3 of the API for the block content endpoint.
@@ -61,10 +60,6 @@ export type ApiV3UserType = {
61
60
  * User's phone number.
62
61
  */
63
62
  phone: string;
64
- /**
65
- * List of locations user is connected to.
66
- */
67
- userLocationList: ApiV3UserLocationType[];
68
63
  /**
69
64
  * User role.
70
65
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@matochmat/api-client",
3
3
  "description": "API types and helper functionality for the Mat och Mat API.",
4
- "version": "2.0.0-next.32",
4
+ "version": "2.0.0-next.33",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
7
7
  "types": "dist/index.d.ts",
@@ -1,17 +0,0 @@
1
- /**
2
- *
3
- */
4
- export type ApiV2UserLocationType = {
5
- /**
6
- * @see {@link EntityLocation.endpoint}.
7
- */
8
- cityId: number;
9
- /**
10
- * @see {@link EntityLocation.items}.
11
- */
12
- lastUpdated: string;
13
- /**
14
- * @see {@link EntityLocation.endpoint}.
15
- */
16
- userId: number;
17
- };
@@ -1,5 +0,0 @@
1
- import { ApiV2UserLocationType } from '../v2/userLocation';
2
- /**
3
- *
4
- */
5
- export type ApiV3UserLocationType = ApiV2UserLocationType;