@fragus/sam-types 1.0.30 → 1.0.32

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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.30",
2
+ "version": "1.0.32",
3
3
  "name": "@fragus/sam-types",
4
4
  "description": "Typescript interfaces for all types used to communicate between SAM client(s) and the SAM API",
5
5
  "author": "Fragus",
@@ -2,7 +2,10 @@ export interface IBlacklistedVehicleRequest {
2
2
  brand: string
3
3
  model: string
4
4
  fuelType: string
5
- providerIds: number[]
5
+ providerIds: {
6
+ add: number[]
7
+ remove: number[]
8
+ }[]
6
9
  }
7
10
 
8
11
  export interface IBlacklistedVehicleResponse {
@@ -18,4 +21,4 @@ export interface IBlacklistedVehicleListRecord extends IBlacklistedVehicleRespon
18
21
  providerName: string
19
22
  }
20
23
 
21
- export type BlacklistedVehicleOrderByType = keyof IBlacklistedVehicleRequest
24
+ export type BlacklistedVehicleOrderByType = 'id' | 'brand' | 'model' | 'fuelType'