@fragus/sam-types 1.0.40 → 1.0.42

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.40",
2
+ "version": "1.0.42",
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",
@@ -95,7 +95,6 @@ export interface IContractProviderListItemResponse {
95
95
  disableContractTemplates: boolean
96
96
  fragusContactPersonName: string | null
97
97
  isAllowContractsWithoutVehiclePriceModel: boolean
98
- isForceEnableCustomContract: boolean
99
98
  isShowLogoOnWeb: boolean
100
99
  isUseWhiteBGOnWeb: boolean
101
100
  isUsingV4PricingTool: boolean
@@ -185,3 +184,14 @@ export interface IContractProviderOverviewDetails {
185
184
  isAllowContractsWithoutVehiclePriceModel: boolean
186
185
  stripeForeignId?: string
187
186
  }
187
+
188
+ export interface IPaginatedContractProviderListResponse {
189
+ data: IContractProviderListItemResponse[]
190
+ nextCursor: number | null
191
+ }
192
+
193
+ export interface IShallowContractProviderResponse {
194
+ contractProviderId: number
195
+ administrativeName: string
196
+ parentProviderId: number | null
197
+ }