Skip to content

Commit

Permalink
bump version to-> < 0.29.3 >
Browse files Browse the repository at this point in the history
  • Loading branch information
yellowbean committed Sep 13, 2024
1 parent 3ad498a commit 61863cd
Show file tree
Hide file tree
Showing 2 changed files with 262 additions and 8 deletions.
2 changes: 1 addition & 1 deletion app/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ $(deriveJSON defaultOptions ''Version)
instance ToSchema Version

version1 :: Version
version1 = Version "0.29.2"
version1 = Version "0.29.3"



Expand Down
268 changes: 261 additions & 7 deletions swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -8938,6 +8938,131 @@
}
]
},
"FieldMatchRule": {
"oneOf": [
{
"properties": {
"contents": {
"items": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
],
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"tag": {
"enum": [
"FieldIn"
],
"type": "string"
}
},
"required": [
"tag",
"contents"
],
"title": "FieldIn",
"type": "object"
},
{
"properties": {
"contents": {
"items": [
{
"type": "string"
},
{
"$ref": "#/components/schemas/Cmp"
},
{
"format": "double",
"type": "number"
}
],
"maxItems": 3,
"minItems": 3,
"type": "array"
},
"tag": {
"enum": [
"FieldCmp"
],
"type": "string"
}
},
"required": [
"tag",
"contents"
],
"title": "FieldCmp",
"type": "object"
},
{
"properties": {
"contents": {
"items": [
{
"type": "string"
},
{
"$ref": "#/components/schemas/RangeType"
},
{
"format": "double",
"type": "number"
},
{
"format": "double",
"type": "number"
}
],
"maxItems": 4,
"minItems": 4,
"type": "array"
},
"tag": {
"enum": [
"FieldInRange"
],
"type": "string"
}
},
"required": [
"tag",
"contents"
],
"title": "FieldInRange",
"type": "object"
},
{
"properties": {
"contents": {
"$ref": "#/components/schemas/FieldMatchRule"
},
"tag": {
"enum": [
"FieldNot"
],
"type": "string"
}
},
"required": [
"tag",
"contents"
],
"title": "FieldNot",
"type": "object"
}
]
},
"FixedAsset": {
"oneOf": [
{
Expand Down Expand Up @@ -10560,6 +10685,51 @@
"title": "ObligorByTag",
"type": "object"
},
{
"properties": {
"contents": {
"items": [
{
"items": {
"$ref": "#/components/schemas/FieldMatchRule"
},
"type": "array"
},
{
"items": [
{
"$ref": "#/components/schemas/AssetPerfAssumption"
},
{
"$ref": "#/components/schemas/AssetDelinqPerfAssumption"
},
{
"$ref": "#/components/schemas/AssetDefaultedPerfAssumption"
}
],
"maxItems": 3,
"minItems": 3,
"type": "array"
}
],
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"tag": {
"enum": [
"ObligorByField"
],
"type": "string"
}
},
"required": [
"tag",
"contents"
],
"title": "ObligorByField",
"type": "object"
},
{
"properties": {
"contents": {
Expand Down Expand Up @@ -12798,6 +12968,16 @@
}
]
},
"RangeType": {
"enum": [
"II",
"IE",
"EI",
"EE",
"NO_IE"
],
"type": "string"
},
"RateAssumption": {
"oneOf": [
{
Expand Down Expand Up @@ -14803,13 +14983,87 @@
"type": "array"
},
"TagMatchRule": {
"enum": [
"TagEq",
"TagSubset",
"TagSuperset",
"TagAny"
],
"type": "string"
"oneOf": [
{
"properties": {
"tag": {
"enum": [
"TagEq"
],
"type": "string"
}
},
"required": [
"tag"
],
"title": "TagEq",
"type": "object"
},
{
"properties": {
"tag": {
"enum": [
"TagSubset"
],
"type": "string"
}
},
"required": [
"tag"
],
"title": "TagSubset",
"type": "object"
},
{
"properties": {
"tag": {
"enum": [
"TagSuperset"
],
"type": "string"
}
},
"required": [
"tag"
],
"title": "TagSuperset",
"type": "object"
},
{
"properties": {
"tag": {
"enum": [
"TagAny"
],
"type": "string"
}
},
"required": [
"tag"
],
"title": "TagAny",
"type": "object"
},
{
"properties": {
"contents": {
"$ref": "#/components/schemas/TagMatchRule"
},
"tag": {
"enum": [
"TagNot"
],
"type": "string"
}
},
"required": [
"tag",
"contents"
],
"title": "TagNot",
"type": "object"
}
]
},
"TestDeal_AssetUnion": {
"properties": {
Expand Down

0 comments on commit 61863cd

Please sign in to comment.