fx-spec-hub 0.0.29 → 0.0.30

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.
@@ -185,6 +185,9 @@
185
185
  },
186
186
  {
187
187
  "name": "Cms"
188
+ },
189
+ {
190
+ "name": "财务对账"
188
191
  }
189
192
  ],
190
193
  "paths": {
@@ -8929,56 +8932,6 @@
8929
8932
  }
8930
8933
  }
8931
8934
  },
8932
- "/api/v1/spotOrderV1/updateTradeStatus": {
8933
- "post": {
8934
- "summary": "更改交易状态",
8935
- "deprecated": false,
8936
- "description": "更改交易对的交易状态和手续费率",
8937
- "tags": [
8938
- "现货订单"
8939
- ],
8940
- "parameters": [],
8941
- "requestBody": {
8942
- "content": {
8943
- "application/json": {
8944
- "schema": {
8945
- "$ref": "#/components/schemas/models.UpdateTradeStatusReq"
8946
- }
8947
- }
8948
- },
8949
- "required": true
8950
- },
8951
- "responses": {
8952
- "200": {
8953
- "description": "OK",
8954
- "content": {
8955
- "*/*": {
8956
- "schema": {
8957
- "allOf": [
8958
- {
8959
- "$ref": "#/components/schemas/response.Response"
8960
- },
8961
- {
8962
- "type": "object",
8963
- "properties": {
8964
- "data": {
8965
- "$ref": "#/components/schemas/models.UpdateTradeStatusResp"
8966
- }
8967
- }
8968
- }
8969
- ]
8970
- }
8971
- }
8972
- },
8973
- "headers": {}
8974
- }
8975
- },
8976
- "security": [],
8977
- "X-Type": {
8978
- "type": "BUS"
8979
- }
8980
- }
8981
- },
8982
8935
  "/api/v1/sys-api": {
8983
8936
  "get": {
8984
8937
  "summary": "获取接口管理列表",
@@ -25267,6 +25220,44 @@
25267
25220
  }
25268
25221
  }
25269
25222
  },
25223
+ "/api/v1/reconciliation/report/file": {
25224
+ "post": {
25225
+ "summary": "获取对账报表文件列表",
25226
+ "deprecated": false,
25227
+ "description": "获取对账报表文件列表",
25228
+ "tags": [
25229
+ "财务对账"
25230
+ ],
25231
+ "parameters": [],
25232
+ "requestBody": {
25233
+ "content": {
25234
+ "application/json": {
25235
+ "schema": {
25236
+ "type": "string"
25237
+ }
25238
+ }
25239
+ }
25240
+ },
25241
+ "responses": {
25242
+ "200": {
25243
+ "description": "{\"code\": 200, \"data\": [...]}",
25244
+ "content": {
25245
+ "*/*": {
25246
+ "schema": {
25247
+ "$ref": "#/components/schemas/utils.Response"
25248
+ }
25249
+ }
25250
+ },
25251
+ "headers": {}
25252
+ }
25253
+ },
25254
+ "security": [],
25255
+ "X-Type": {
25256
+ "type": "BUS"
25257
+ },
25258
+ "x-s2o-warning": "Operation post:/api/v1/reconciliation/report/file has multiple requestBodies"
25259
+ }
25260
+ },
25270
25261
  "/logout": {
25271
25262
  "post": {
25272
25263
  "summary": "退出登录",
@@ -25293,6 +25284,23 @@
25293
25284
  },
25294
25285
  "components": {
25295
25286
  "schemas": {
25287
+ "utils.Response": {
25288
+ "type": "object",
25289
+ "properties": {
25290
+ "code": {
25291
+ "type": "string"
25292
+ },
25293
+ "codeNum": {
25294
+ "type": "integer"
25295
+ },
25296
+ "data": {
25297
+ "type": "string"
25298
+ },
25299
+ "msg": {
25300
+ "type": "string"
25301
+ }
25302
+ }
25303
+ },
25296
25304
  "dto.RemoveAdminReq": {
25297
25305
  "type": "object",
25298
25306
  "required": [
@@ -33530,6 +33538,22 @@
33530
33538
  "models.UpdateTradeStatusReq": {
33531
33539
  "type": "object",
33532
33540
  "properties": {
33541
+ "attachments": {
33542
+ "description": "附件",
33543
+ "type": "array",
33544
+ "items": {
33545
+ "$ref": "#/components/schemas/models.AttachmentItem"
33546
+ }
33547
+ },
33548
+ "beforeStatus": {
33549
+ "description": "修改前交易状态",
33550
+ "type": "string"
33551
+ },
33552
+ "remark": {
33553
+ "description": "备注",
33554
+ "type": "string",
33555
+ "maxLength": 100
33556
+ },
33533
33557
  "status": {
33534
33558
  "description": "交易状态 OPEN/CLOSE",
33535
33559
  "type": "string"
@@ -37067,6 +37091,10 @@
37067
37091
  "models.GetTradeStatusResp": {
37068
37092
  "type": "object",
37069
37093
  "properties": {
37094
+ "auditPending": {
37095
+ "description": "是否存在审批中的工单",
37096
+ "type": "boolean"
37097
+ },
37070
37098
  "status": {
37071
37099
  "description": "交易状态",
37072
37100
  "type": "string"
@@ -40466,9 +40494,7 @@
40466
40494
  "before": {
40467
40495
  "description": "修改前的值",
40468
40496
  "type": "object",
40469
- "additionalProperties": {
40470
- "type": "string"
40471
- },
40497
+ "additionalProperties": true,
40472
40498
  "properties": {}
40473
40499
  },
40474
40500
  "createBy": {
@@ -40635,9 +40661,7 @@
40635
40661
  "before": {
40636
40662
  "description": "修改前的值",
40637
40663
  "type": "object",
40638
- "additionalProperties": {
40639
- "type": "string"
40640
- },
40664
+ "additionalProperties": true,
40641
40665
  "properties": {}
40642
40666
  },
40643
40667
  "ids": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fx-spec-hub",
3
- "version": "0.0.29",
3
+ "version": "0.0.30",
4
4
  "description": "API 规范中心/控制台",
5
5
  "type": "commonjs",
6
6
  "main": "./dist/index.js",