Skip to content

Commit

Permalink
chore: update
Browse files Browse the repository at this point in the history
  • Loading branch information
Sentio Bot committed Nov 26, 2024
1 parent 00b1c04 commit da1958e
Show file tree
Hide file tree
Showing 10 changed files with 123 additions and 1 deletion.
19 changes: 19 additions & 0 deletions doc/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2439,6 +2439,9 @@
},
"structValue" : {
"$ref" : "#/components/schemas/common.RichStruct"
},
"tokenValue" : {
"$ref" : "#/components/schemas/common.TokenAmount"
}
}
};
Expand Down Expand Up @@ -2779,6 +2782,22 @@
"format" : "int64"
}
}
};
defs["common.TokenAmount"] = {
"type" : "object",
"properties" : {
"token" : {
"$ref" : "#/components/schemas/common.CoinID"
},
"amount" : {
"$ref" : "#/components/schemas/common.BigDecimal"
},
"specifiedAt" : {
"title" : "optional, if not specified, it will use block_time in eventlogs",
"type" : "string",
"format" : "date-time"
}
}
};
defs["common.User"] = {
"type" : "object",
Expand Down
19 changes: 19 additions & 0 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -4053,6 +4053,9 @@
},
"structValue": {
"$ref": "#/definitions/common.RichStruct"
},
"tokenValue": {
"$ref": "#/definitions/common.TokenAmount"
}
}
},
Expand Down Expand Up @@ -4462,6 +4465,22 @@
"step"
]
},
"common.TokenAmount": {
"type": "object",
"properties": {
"token": {
"$ref": "#/definitions/common.CoinID"
},
"amount": {
"$ref": "#/definitions/common.BigDecimal"
},
"specifiedAt": {
"type": "string",
"format": "date-time",
"title": "optional, if not specified, it will use block_time in eventlogs"
}
}
},
"common.User": {
"type": "object",
"properties": {
Expand Down
17 changes: 17 additions & 0 deletions src/DataApi.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions src/models/CommonRichValue.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

52 changes: 52 additions & 0 deletions src/models/CommonTokenAmount.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion src/models/ObjectSerializer.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/models/all.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/types/ObjectParamAPI.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/types/ObservableAPI.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/types/PromiseAPI.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit da1958e

Please sign in to comment.