fx-spec-hub 0.0.19 → 0.0.20

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.
@@ -44186,7 +44186,10 @@
44186
44186
  "properties": {
44187
44187
  "attachments": {
44188
44188
  "description": "附件 [{fileId,name,type}]",
44189
- "type": "string"
44189
+ "type": "array",
44190
+ "items": {
44191
+ "$ref": "#/components/schemas/models.AttachmentItem"
44192
+ }
44190
44193
  },
44191
44194
  "coinType": {
44192
44195
  "description": "币种:所有/具体币种(如ETH)",
@@ -44853,6 +44856,13 @@
44853
44856
  "requestId"
44854
44857
  ],
44855
44858
  "properties": {
44859
+ "attachments": {
44860
+ "description": "附件 [{fileId,name,type}]",
44861
+ "type": "array",
44862
+ "items": {
44863
+ "$ref": "#/components/schemas/models.AttachmentItem"
44864
+ }
44865
+ },
44856
44866
  "hotAddressList": {
44857
44867
  "description": "热地址列表",
44858
44868
  "type": "array",
@@ -44888,7 +44898,10 @@
44888
44898
  "properties": {
44889
44899
  "attachments": {
44890
44900
  "description": "附件 [{fileId,name,type}]",
44891
- "type": "string"
44901
+ "type": "array",
44902
+ "items": {
44903
+ "$ref": "#/components/schemas/models.AttachmentItem"
44904
+ }
44892
44905
  },
44893
44906
  "publicKey": {
44894
44907
  "description": "公钥",
@@ -46039,7 +46052,10 @@
46039
46052
  "properties": {
46040
46053
  "attachments": {
46041
46054
  "description": "附件 [{fileId,name,type}]",
46042
- "type": "string"
46055
+ "type": "array",
46056
+ "items": {
46057
+ "$ref": "#/components/schemas/models.AttachmentItem"
46058
+ }
46043
46059
  },
46044
46060
  "id": {
46045
46061
  "description": "API密钥ID",
@@ -47376,7 +47392,10 @@
47376
47392
  },
47377
47393
  "attachments": {
47378
47394
  "description": "审核附件 [{fileId,name,type}]",
47379
- "type": "string"
47395
+ "type": "array",
47396
+ "items": {
47397
+ "$ref": "#/components/schemas/models.AttachmentItem"
47398
+ }
47380
47399
  },
47381
47400
  "createdAt": {
47382
47401
  "type": "integer"
@@ -47633,7 +47652,10 @@
47633
47652
  "properties": {
47634
47653
  "attachments": {
47635
47654
  "description": "补充材料 [{fileId,name,type}]",
47636
- "type": "string"
47655
+ "type": "array",
47656
+ "items": {
47657
+ "$ref": "#/components/schemas/models.AttachmentItem"
47658
+ }
47637
47659
  },
47638
47660
  "bizCategory": {
47639
47661
  "type": "string"
@@ -47809,7 +47831,10 @@
47809
47831
  "properties": {
47810
47832
  "attachments": {
47811
47833
  "description": "附件 [{fileId,name,type}]",
47812
- "type": "string"
47834
+ "type": "array",
47835
+ "items": {
47836
+ "$ref": "#/components/schemas/models.AttachmentItem"
47837
+ }
47813
47838
  },
47814
47839
  "remark": {
47815
47840
  "description": "说明",
@@ -47830,7 +47855,10 @@
47830
47855
  "properties": {
47831
47856
  "attachments": {
47832
47857
  "description": "审核附件 [{fileId,name,type}]",
47833
- "type": "string"
47858
+ "type": "array",
47859
+ "items": {
47860
+ "$ref": "#/components/schemas/models.AttachmentItem"
47861
+ }
47834
47862
  },
47835
47863
  "remark": {
47836
47864
  "description": "审批意见",
@@ -47879,7 +47907,10 @@
47879
47907
  },
47880
47908
  "attachments": {
47881
47909
  "description": "审核附件 [{fileId,name,type}]",
47882
- "type": "string"
47910
+ "type": "array",
47911
+ "items": {
47912
+ "$ref": "#/components/schemas/models.AttachmentItem"
47913
+ }
47883
47914
  },
47884
47915
  "remark": {
47885
47916
  "description": "原因",
@@ -47919,6 +47950,10 @@
47919
47950
  "models.WithdrawStatusItem": {
47920
47951
  "type": "object",
47921
47952
  "properties": {
47953
+ "auditStatus": {
47954
+ "description": "审核状态:PENDING(审核中) / 空(无审核)",
47955
+ "type": "string"
47956
+ },
47922
47957
  "coinType": {
47923
47958
  "description": "币种",
47924
47959
  "type": "string"
@@ -47926,6 +47961,27 @@
47926
47961
  "status": {
47927
47962
  "description": "true(启用)/false(暂停)",
47928
47963
  "type": "string"
47964
+ },
47965
+ "ticketNo": {
47966
+ "description": "关联工单号(审核中时有值)",
47967
+ "type": "string"
47968
+ }
47969
+ }
47970
+ },
47971
+ "models.AttachmentItem": {
47972
+ "type": "object",
47973
+ "properties": {
47974
+ "fileId": {
47975
+ "description": "文件ID",
47976
+ "type": "string"
47977
+ },
47978
+ "name": {
47979
+ "description": "文件名",
47980
+ "type": "string"
47981
+ },
47982
+ "type": {
47983
+ "description": "文件类型 如 image/png",
47984
+ "type": "string"
47929
47985
  }
47930
47986
  }
47931
47987
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fx-spec-hub",
3
- "version": "0.0.19",
3
+ "version": "0.0.20",
4
4
  "description": "API 规范中心/控制台",
5
5
  "type": "commonjs",
6
6
  "main": "./dist/index.js",