Skip to content

Commit 7b6ed6e

Browse files
author
Sentio Bot
committed
chore: update
1 parent 7cbc3c8 commit 7b6ed6e

11 files changed

+119
-0
lines changed

doc/index.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4999,6 +4999,9 @@
49994999
},
50005000
"result" : {
50015001
"$ref" : "#/components/schemas/solidity_service.Simulation.Result"
5002+
},
5003+
"sharing" : {
5004+
"$ref" : "#/components/schemas/solidity_service.SimulationSharing"
50025005
}
50035006
}
50045007
};
@@ -5012,6 +5015,20 @@
50125015
"$ref" : "#/components/schemas/evm.TransactionReceipt"
50135016
}
50145017
}
5018+
};
5019+
defs["solidity_service.SimulationSharing"] = {
5020+
"type" : "object",
5021+
"properties" : {
5022+
"isPublic" : {
5023+
"type" : "boolean"
5024+
},
5025+
"id" : {
5026+
"type" : "string"
5027+
},
5028+
"simulationId" : {
5029+
"type" : "string"
5030+
}
5031+
}
50155032
};
50165033
defs["solidity_service.SolidityAPIService.SimulateTransactionBody"] = {
50175034
"required" : [ "simulation" ],

openapi.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7028,6 +7028,9 @@
70287028
},
70297029
"result": {
70307030
"$ref": "#/definitions/solidity_service.Simulation.Result"
7031+
},
7032+
"sharing": {
7033+
"$ref": "#/definitions/solidity_service.SimulationSharing"
70317034
}
70327035
},
70337036
"required": [
@@ -7054,6 +7057,20 @@
70547057
}
70557058
}
70567059
},
7060+
"solidity_service.SimulationSharing": {
7061+
"type": "object",
7062+
"properties": {
7063+
"isPublic": {
7064+
"type": "boolean"
7065+
},
7066+
"id": {
7067+
"type": "string"
7068+
},
7069+
"simulationId": {
7070+
"type": "string"
7071+
}
7072+
}
7073+
},
70577074
"solidity_service.SolidityAPIService.SimulateTransactionBody": {
70587075
"type": "object",
70597076
"example": {

src/DebugAndSimulationApi.md

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/ForksApi.md

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/models/ObjectSerializer.ts

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/models/SolidityServiceSimulation.ts

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/models/SolidityServiceSimulationSharing.ts

Lines changed: 50 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/models/all.ts

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/types/ObjectParamAPI.ts

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/types/ObservableAPI.ts

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/types/PromiseAPI.ts

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)