@fragus/sam-types 1.0.11 → 1.0.13

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.11",
2
+ "version": "1.0.13",
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",
@@ -13,7 +13,7 @@ export interface UserRoleRecord {
13
13
  contractProvider: UserRoleProviderInfo
14
14
  }
15
15
 
16
- export type TUserPermittedProvidersByCountry = Record<TIsoCountry, UserRoleProviderInfo[]>
16
+ export type TUserPermittedProvidersByCountry = Partial<Record<TIsoCountry, UserRoleProviderInfo[]>>
17
17
 
18
18
  export interface UserPermittedProvidersResponse {
19
19
  allProviders: TUserPermittedProvidersByCountry
@@ -38,6 +38,8 @@ export interface IContractProviderRequest extends IProviderCustomizationResponse
38
38
  isUsingV4PricingTool: boolean
39
39
  isUseV4PTOnlyForSigning: boolean
40
40
  isLoadOptionalProviderCustomization: boolean
41
+ generalConditions: string
42
+ optionsConditions?: string
41
43
  }
42
44
 
43
45
  export interface IContractProviderResponse extends IProviderCustomizationResponse {