quirons-broker
Advanced tools
Comparing version 0.0.1-alpha.69 to 0.0.1-alpha.70
@@ -16,3 +16,3 @@ import * as t from 'io-ts'; | ||
Type: t.StringC; | ||
Transaction: t.LiteralC<"CostCenter">; | ||
Transaction: t.LiteralC<"COSTCENTER">; | ||
StandardVersion: t.StringC; | ||
@@ -40,5 +40,5 @@ SourceApplication: t.StringC; | ||
}>, t.PartialC<{ | ||
CompanyInternalId: t.StringC; | ||
BranchId: t.StringC; | ||
ShortCode: t.StringC; | ||
CompanyInternalId: t.UnionC<[t.StringC, t.NullC]>; | ||
BranchId: t.UnionC<[t.StringC, t.NullC]>; | ||
ShortCode: t.UnionC<[t.StringC, t.NullC]>; | ||
Active: t.StringC; | ||
@@ -45,0 +45,0 @@ }>]>; |
@@ -5,3 +5,3 @@ import * as t from 'io-ts'; | ||
Type: t.StringC; | ||
Transaction: t.LiteralC<"CostCenter">; | ||
Transaction: t.LiteralC<"COSTCENTER">; | ||
StandardVersion: t.StringC; | ||
@@ -26,3 +26,3 @@ SourceApplication: t.StringC; | ||
Type: t.StringC; | ||
Transaction: t.LiteralC<"CostCenter">; | ||
Transaction: t.LiteralC<"COSTCENTER">; | ||
StandardVersion: t.StringC; | ||
@@ -48,3 +48,3 @@ SourceApplication: t.StringC; | ||
Type: t.StringC; | ||
Transaction: t.LiteralC<"CostCenter">; | ||
Transaction: t.LiteralC<"COSTCENTER">; | ||
StandardVersion: t.StringC; | ||
@@ -89,3 +89,3 @@ SourceApplication: t.StringC; | ||
Type: t.StringC; | ||
Transaction: t.LiteralC<"CostCenter">; | ||
Transaction: t.LiteralC<"COSTCENTER">; | ||
StandardVersion: t.StringC; | ||
@@ -132,3 +132,3 @@ SourceApplication: t.StringC; | ||
Type: t.StringC; | ||
Transaction: t.LiteralC<"CostCenter">; | ||
Transaction: t.LiteralC<"COSTCENTER">; | ||
StandardVersion: t.StringC; | ||
@@ -156,5 +156,5 @@ SourceApplication: t.StringC; | ||
}>, t.PartialC<{ | ||
CompanyInternalId: t.StringC; | ||
BranchId: t.StringC; | ||
ShortCode: t.StringC; | ||
CompanyInternalId: t.UnionC<[t.StringC, t.NullC]>; | ||
BranchId: t.UnionC<[t.StringC, t.NullC]>; | ||
ShortCode: t.UnionC<[t.StringC, t.NullC]>; | ||
Active: t.StringC; | ||
@@ -167,3 +167,3 @@ }>]>; | ||
Type: t.StringC; | ||
Transaction: t.LiteralC<"CostCenter">; | ||
Transaction: t.LiteralC<"COSTCENTER">; | ||
StandardVersion: t.StringC; | ||
@@ -191,5 +191,5 @@ SourceApplication: t.StringC; | ||
}>, t.PartialC<{ | ||
CompanyInternalId: t.StringC; | ||
BranchId: t.StringC; | ||
ShortCode: t.StringC; | ||
CompanyInternalId: t.UnionC<[t.StringC, t.NullC]>; | ||
BranchId: t.UnionC<[t.StringC, t.NullC]>; | ||
ShortCode: t.UnionC<[t.StringC, t.NullC]>; | ||
Active: t.StringC; | ||
@@ -196,0 +196,0 @@ }>]>>; |
@@ -25,3 +25,3 @@ "use strict"; | ||
const custom_types_1 = require("../../custom-types"); | ||
const MESSAGE = 'CostCenter'; | ||
const MESSAGE = 'COSTCENTER'; | ||
exports.Header = t.intersection([ | ||
@@ -81,5 +81,5 @@ t.type({ | ||
t.partial({ | ||
CompanyInternalId: t.string, | ||
BranchId: t.string, | ||
ShortCode: t.string, | ||
CompanyInternalId: custom_types_1.nullable(t.string), | ||
BranchId: custom_types_1.nullable(t.string), | ||
ShortCode: custom_types_1.nullable(t.string), | ||
Active: t.string | ||
@@ -86,0 +86,0 @@ }) |
{ | ||
"name": "quirons-broker", | ||
"version": "0.0.1-alpha.69", | ||
"version": "0.0.1-alpha.70", | ||
"description": "A small library to expose the broker types", | ||
@@ -5,0 +5,0 @@ "main": "index.ts", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
821698