fx-spec-hub 0.0.15 → 0.0.17

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.
@@ -182,6 +182,9 @@
182
182
  },
183
183
  {
184
184
  "name": "Ticket"
185
+ },
186
+ {
187
+ "name": "Cms"
185
188
  }
186
189
  ],
187
190
  "paths": {
@@ -24777,25 +24780,263 @@
24777
24780
  "security": []
24778
24781
  }
24779
24782
  },
24780
- "/api/v1/ticket/detail": {
24783
+ "/api/v1/ticket/list": {
24784
+ "post": {
24785
+ "summary": "工单列表",
24786
+ "deprecated": false,
24787
+ "description": "分页查询工单列表,关联工作流状态",
24788
+ "tags": [
24789
+ "Ticket"
24790
+ ],
24791
+ "parameters": [],
24792
+ "requestBody": {
24793
+ "content": {
24794
+ "application/json": {
24795
+ "schema": {
24796
+ "$ref": "#/components/schemas/models.TicketListReq"
24797
+ }
24798
+ }
24799
+ },
24800
+ "required": true
24801
+ },
24802
+ "responses": {
24803
+ "200": {
24804
+ "description": "OK",
24805
+ "content": {
24806
+ "application/json": {
24807
+ "schema": {
24808
+ "allOf": [
24809
+ {
24810
+ "$ref": "#/components/schemas/response.Response"
24811
+ },
24812
+ {
24813
+ "type": "object",
24814
+ "properties": {
24815
+ "data": {
24816
+ "type": "array",
24817
+ "items": {
24818
+ "$ref": "#/components/schemas/models.TicketListItem"
24819
+ }
24820
+ }
24821
+ }
24822
+ }
24823
+ ]
24824
+ }
24825
+ }
24826
+ },
24827
+ "headers": {}
24828
+ }
24829
+ },
24830
+ "security": []
24831
+ }
24832
+ },
24833
+ "/api/v1/ticket/approve": {
24834
+ "post": {
24835
+ "summary": "工单审批通过",
24836
+ "deprecated": false,
24837
+ "description": "通过工单编号执行审批通过操作",
24838
+ "tags": [
24839
+ "Ticket"
24840
+ ],
24841
+ "parameters": [],
24842
+ "requestBody": {
24843
+ "content": {
24844
+ "application/json": {
24845
+ "schema": {
24846
+ "$ref": "#/components/schemas/models.TicketApproveReq"
24847
+ }
24848
+ }
24849
+ },
24850
+ "required": true
24851
+ },
24852
+ "responses": {
24853
+ "200": {
24854
+ "description": "OK",
24855
+ "content": {
24856
+ "application/json": {
24857
+ "schema": {
24858
+ "$ref": "#/components/schemas/response.Response"
24859
+ }
24860
+ }
24861
+ },
24862
+ "headers": {}
24863
+ }
24864
+ },
24865
+ "security": []
24866
+ }
24867
+ },
24868
+ "/api/v1/ticket/bizTypes": {
24781
24869
  "get": {
24782
- "summary": "工单详情",
24870
+ "summary": "获取工单业务类型字典",
24783
24871
  "deprecated": false,
24784
- "description": "根据工单编号查询详情,包含工作流状态和审批日志",
24872
+ "description": "返回全量业务类型列表,支持按分类过滤",
24785
24873
  "tags": [
24786
24874
  "Ticket"
24787
24875
  ],
24788
24876
  "parameters": [
24789
24877
  {
24790
- "name": "ticketNo",
24878
+ "name": "category",
24791
24879
  "in": "query",
24792
- "description": "工单编号",
24793
- "required": true,
24880
+ "description": "按分类过滤(如:身份认证、用户安全、运营设置、VA充提、钱包管理、法币充提、权限管理)",
24881
+ "required": false,
24794
24882
  "schema": {
24795
24883
  "type": "string"
24796
24884
  }
24797
24885
  }
24798
24886
  ],
24887
+ "responses": {
24888
+ "200": {
24889
+ "description": "OK",
24890
+ "content": {
24891
+ "application/json": {
24892
+ "schema": {
24893
+ "allOf": [
24894
+ {
24895
+ "$ref": "#/components/schemas/response.Response"
24896
+ },
24897
+ {
24898
+ "type": "object",
24899
+ "properties": {
24900
+ "data": {
24901
+ "type": "object",
24902
+ "properties": {}
24903
+ }
24904
+ }
24905
+ }
24906
+ ]
24907
+ }
24908
+ }
24909
+ },
24910
+ "headers": {}
24911
+ }
24912
+ },
24913
+ "security": []
24914
+ }
24915
+ },
24916
+ "/api/v1/ticket/cancel": {
24917
+ "post": {
24918
+ "summary": "撤销工单",
24919
+ "deprecated": false,
24920
+ "description": "发起人撤销处理中的工单",
24921
+ "tags": [
24922
+ "Ticket"
24923
+ ],
24924
+ "parameters": [],
24925
+ "requestBody": {
24926
+ "content": {
24927
+ "application/json": {
24928
+ "schema": {
24929
+ "$ref": "#/components/schemas/models.CancelTicketReq"
24930
+ }
24931
+ }
24932
+ },
24933
+ "required": true
24934
+ },
24935
+ "responses": {
24936
+ "200": {
24937
+ "description": "OK",
24938
+ "content": {
24939
+ "application/json": {
24940
+ "schema": {
24941
+ "$ref": "#/components/schemas/response.Response"
24942
+ }
24943
+ }
24944
+ },
24945
+ "headers": {}
24946
+ }
24947
+ },
24948
+ "security": []
24949
+ }
24950
+ },
24951
+ "/api/v1/ticket/reject": {
24952
+ "post": {
24953
+ "summary": "工单审批拒绝",
24954
+ "deprecated": false,
24955
+ "description": "通过工单编号执行拒绝操作",
24956
+ "tags": [
24957
+ "Ticket"
24958
+ ],
24959
+ "parameters": [],
24960
+ "requestBody": {
24961
+ "content": {
24962
+ "application/json": {
24963
+ "schema": {
24964
+ "$ref": "#/components/schemas/models.TicketRejectReq"
24965
+ }
24966
+ }
24967
+ },
24968
+ "required": true
24969
+ },
24970
+ "responses": {
24971
+ "200": {
24972
+ "description": "OK",
24973
+ "content": {
24974
+ "application/json": {
24975
+ "schema": {
24976
+ "$ref": "#/components/schemas/response.Response"
24977
+ }
24978
+ }
24979
+ },
24980
+ "headers": {}
24981
+ }
24982
+ },
24983
+ "security": []
24984
+ }
24985
+ },
24986
+ "/api/v1/ticket/supplement": {
24987
+ "post": {
24988
+ "summary": "补充依据",
24989
+ "deprecated": false,
24990
+ "description": "为处理中的工单补充材料,不修改工单状态,仅新增审核日志",
24991
+ "tags": [
24992
+ "Ticket"
24993
+ ],
24994
+ "parameters": [],
24995
+ "requestBody": {
24996
+ "content": {
24997
+ "application/json": {
24998
+ "schema": {
24999
+ "$ref": "#/components/schemas/models.SupplementReq"
25000
+ }
25001
+ }
25002
+ },
25003
+ "required": true
25004
+ },
25005
+ "responses": {
25006
+ "200": {
25007
+ "description": "OK",
25008
+ "content": {
25009
+ "application/json": {
25010
+ "schema": {
25011
+ "$ref": "#/components/schemas/response.Response"
25012
+ }
25013
+ }
25014
+ },
25015
+ "headers": {}
25016
+ }
25017
+ },
25018
+ "security": []
25019
+ }
25020
+ },
25021
+ "/api/v1/ticket/detail": {
25022
+ "post": {
25023
+ "summary": "工单详情(含审核进度)",
25024
+ "deprecated": false,
25025
+ "description": "根据工单编号查询详情,包含工单信息、变更对比、审批日志和审核进度",
25026
+ "tags": [
25027
+ "Ticket"
25028
+ ],
25029
+ "parameters": [],
25030
+ "requestBody": {
25031
+ "content": {
25032
+ "application/json": {
25033
+ "schema": {
25034
+ "$ref": "#/components/schemas/Data"
25035
+ }
25036
+ }
25037
+ },
25038
+ "required": true
25039
+ },
24799
25040
  "responses": {
24800
25041
  "200": {
24801
25042
  "description": "OK",
@@ -24824,11 +25065,11 @@
24824
25065
  "security": []
24825
25066
  }
24826
25067
  },
24827
- "/api/v1/ticket/list": {
25068
+ "/api/v1/ticket/progress": {
24828
25069
  "post": {
24829
- "summary": "工单列表",
25070
+ "summary": "审核进度",
24830
25071
  "deprecated": false,
24831
- "description": "分页查询工单列表,关联工作流状态",
25072
+ "description": "查询工单审批流程进度,含各层级状态、审核人、补充材料",
24832
25073
  "tags": [
24833
25074
  "Ticket"
24834
25075
  ],
@@ -24837,7 +25078,7 @@
24837
25078
  "content": {
24838
25079
  "application/json": {
24839
25080
  "schema": {
24840
- "$ref": "#/components/schemas/models.TicketListReq"
25081
+ "$ref": "#/components/schemas/Data"
24841
25082
  }
24842
25083
  }
24843
25084
  },
@@ -24859,7 +25100,7 @@
24859
25100
  "data": {
24860
25101
  "type": "array",
24861
25102
  "items": {
24862
- "$ref": "#/components/schemas/models.TicketListItem"
25103
+ "$ref": "#/components/schemas/models.ApprovalProgressItem"
24863
25104
  }
24864
25105
  }
24865
25106
  }
@@ -24874,6 +25115,72 @@
24874
25115
  "security": []
24875
25116
  }
24876
25117
  },
25118
+ "/api/v1/ticket/stats": {
25119
+ "post": {
25120
+ "summary": "工单统计",
25121
+ "deprecated": false,
25122
+ "description": "返回各状态工单数量,用于 Tab 角标(待办/处理中/已办结)",
25123
+ "tags": [
25124
+ "Ticket"
25125
+ ],
25126
+ "parameters": [],
25127
+ "responses": {
25128
+ "200": {
25129
+ "description": "OK",
25130
+ "content": {
25131
+ "application/json": {
25132
+ "schema": {
25133
+ "allOf": [
25134
+ {
25135
+ "$ref": "#/components/schemas/response.Response"
25136
+ },
25137
+ {
25138
+ "type": "object",
25139
+ "properties": {
25140
+ "data": {
25141
+ "$ref": "#/components/schemas/models.TicketStats"
25142
+ }
25143
+ }
25144
+ }
25145
+ ]
25146
+ }
25147
+ }
25148
+ },
25149
+ "headers": {}
25150
+ }
25151
+ },
25152
+ "security": []
25153
+ }
25154
+ },
25155
+ "/api/v1/cms": {
25156
+ "get": {
25157
+ "summary": "获取数据",
25158
+ "deprecated": false,
25159
+ "description": "获取数据信息",
25160
+ "tags": [
25161
+ "Cms"
25162
+ ],
25163
+ "parameters": [],
25164
+ "responses": {
25165
+ "200": {
25166
+ "description": "",
25167
+ "content": {
25168
+ "application/json": {
25169
+ "schema": {
25170
+ "type": "object",
25171
+ "properties": {}
25172
+ }
25173
+ }
25174
+ },
25175
+ "headers": {}
25176
+ }
25177
+ },
25178
+ "security": [],
25179
+ "X-Type": {
25180
+ "type": "BUS"
25181
+ }
25182
+ }
25183
+ },
24877
25184
  "/logout": {
24878
25185
  "post": {
24879
25186
  "summary": "退出登录",
@@ -31088,6 +31395,14 @@
31088
31395
  }
31089
31396
  }
31090
31397
  },
31398
+ "Data": {
31399
+ "type": "object",
31400
+ "properties": {
31401
+ "ticketNo": {
31402
+ "type": "string"
31403
+ }
31404
+ }
31405
+ },
31091
31406
  "apis.ExportRequest": {
31092
31407
  "type": "object",
31093
31408
  "required": [
@@ -43886,6 +44201,10 @@
43886
44201
  "description": "目标状态",
43887
44202
  "type": "string"
43888
44203
  },
44204
+ "ticketNo": {
44205
+ "description": "工单编号",
44206
+ "type": "string"
44207
+ },
43889
44208
  "totalLevels": {
43890
44209
  "description": "总审批层级",
43891
44210
  "type": "integer"
@@ -46289,6 +46608,7 @@
46289
46608
  "types.InstanceStatus": {
46290
46609
  "type": "string",
46291
46610
  "enum": [
46611
+ "SUBMITTED",
46292
46612
  "PENDING",
46293
46613
  "APPROVED",
46294
46614
  "REJECTED",
@@ -46297,16 +46617,19 @@
46297
46617
  "x-enum-comments": {
46298
46618
  "StatusApproved": "已通过",
46299
46619
  "StatusCanceled": "已取消",
46300
- "StatusPending": "待审批",
46301
- "StatusRejected": "已拒绝"
46620
+ "StatusPending": "处理中(审批流程进行中)",
46621
+ "StatusRejected": "已拒绝",
46622
+ "StatusSubmitted": "待审核(刚提交,未开始审批)"
46302
46623
  },
46303
46624
  "x-enum-descriptions": [
46304
- "待审批",
46625
+ "待审核(刚提交,未开始审批)",
46626
+ "处理中(审批流程进行中)",
46305
46627
  "已通过",
46306
46628
  "已拒绝",
46307
46629
  "已取消"
46308
46630
  ],
46309
46631
  "x-enum-varnames": [
46632
+ "StatusSubmitted",
46310
46633
  "StatusPending",
46311
46634
  "StatusApproved",
46312
46635
  "StatusRejected",
@@ -47060,6 +47383,13 @@
47060
47383
  "description": "业务来源主键ID",
47061
47384
  "type": "string"
47062
47385
  },
47386
+ "changes": {
47387
+ "description": "变更对比(标准化,前端通用渲染)",
47388
+ "type": "array",
47389
+ "items": {
47390
+ "$ref": "#/components/schemas/models.TicketChangeItem"
47391
+ }
47392
+ },
47063
47393
  "priority": {
47064
47394
  "description": "MNT优先级",
47065
47395
  "allOf": [
@@ -47105,47 +47435,47 @@
47105
47435
  "models.TicketDetailResponse": {
47106
47436
  "type": "object",
47107
47437
  "properties": {
47438
+ "changes": {
47439
+ "description": "变更对比 [{before, after}]",
47440
+ "type": "array",
47441
+ "items": {
47442
+ "type": "string"
47443
+ }
47444
+ },
47108
47445
  "logs": {
47109
47446
  "type": "array",
47110
47447
  "items": {
47111
47448
  "$ref": "#/components/schemas/models.ApprovalLogDTO"
47112
47449
  }
47113
47450
  },
47451
+ "progress": {
47452
+ "type": "array",
47453
+ "items": {
47454
+ "$ref": "#/components/schemas/models.ApprovalProgressItem"
47455
+ }
47456
+ },
47114
47457
  "ticket": {
47115
47458
  "$ref": "#/components/schemas/models.TicketResponse"
47116
- },
47117
- "workflow": {
47118
- "$ref": "#/components/schemas/models.WorkflowInfo"
47119
47459
  }
47120
47460
  }
47121
47461
  },
47122
47462
  "models.TicketListItem": {
47123
47463
  "type": "object",
47124
47464
  "properties": {
47125
- "attachments": {
47126
- "type": "array",
47127
- "items": {
47128
- "type": "integer"
47129
- }
47130
- },
47131
47465
  "bizCode": {
47132
47466
  "type": "string"
47133
47467
  },
47134
47468
  "bizId": {
47135
47469
  "type": "string"
47136
47470
  },
47137
- "createdAt": {
47138
- "type": "string"
47139
- },
47140
- "currentLevel": {
47471
+ "createBy": {
47141
47472
  "type": "integer"
47142
47473
  },
47143
- "id": {
47144
- "description": "sys_ticket 字段",
47474
+ "createdAt": {
47145
47475
  "type": "integer"
47146
47476
  },
47147
- "priority": {
47148
- "type": "string"
47477
+ "currentLevel": {
47478
+ "type": "integer"
47149
47479
  },
47150
47480
  "reason": {
47151
47481
  "type": "string"
@@ -47154,6 +47484,7 @@
47154
47484
  "type": "string"
47155
47485
  },
47156
47486
  "ticketNo": {
47487
+ "description": "sys_ticket 字段",
47157
47488
  "type": "string"
47158
47489
  },
47159
47490
  "ticketType": {
@@ -47162,9 +47493,6 @@
47162
47493
  "totalLevels": {
47163
47494
  "type": "integer"
47164
47495
  },
47165
- "workflowInstanceId": {
47166
- "type": "string"
47167
- },
47168
47496
  "workflowStatus": {
47169
47497
  "description": "workflow_instances 关联字段",
47170
47498
  "type": "string"
@@ -47180,14 +47508,29 @@
47180
47508
  "models.TicketListReq": {
47181
47509
  "type": "object",
47182
47510
  "properties": {
47183
- "bizCode": {
47184
- "description": "业务类型(可选)",
47511
+ "bizCategory": {
47512
+ "description": "业务分类筛选(如WALLET/IDENTITY,匹配该分类下所有bizCode)",
47185
47513
  "type": "string"
47186
47514
  },
47515
+ "bizCode": {
47516
+ "description": "业务类型(可选,支持多选)",
47517
+ "type": "array",
47518
+ "items": {
47519
+ "type": "string"
47520
+ }
47521
+ },
47187
47522
  "bizId": {
47188
47523
  "description": "业务来源ID(可选)",
47189
47524
  "type": "string"
47190
47525
  },
47526
+ "endTime": {
47527
+ "description": "创建时间范围-止(毫秒时间戳)",
47528
+ "type": "integer"
47529
+ },
47530
+ "keyword": {
47531
+ "description": "搜索关键字(工单号/发起人名/BizID)",
47532
+ "type": "string"
47533
+ },
47191
47534
  "pageIndex": {
47192
47535
  "type": "integer"
47193
47536
  },
@@ -47198,6 +47541,10 @@
47198
47541
  "description": "工单来源(可选)",
47199
47542
  "type": "string"
47200
47543
  },
47544
+ "startTime": {
47545
+ "description": "创建时间范围-起(毫秒时间戳)",
47546
+ "type": "integer"
47547
+ },
47201
47548
  "ticketNo": {
47202
47549
  "description": "工单编号(可选,精确匹配)",
47203
47550
  "type": "string"
@@ -47205,6 +47552,10 @@
47205
47552
  "ticketType": {
47206
47553
  "description": "ADT/MNT(可选)",
47207
47554
  "type": "string"
47555
+ },
47556
+ "workflowStatus": {
47557
+ "description": "Tab筛选: PENDING/APPROVED/REJECTED/CANCELED",
47558
+ "type": "string"
47208
47559
  }
47209
47560
  }
47210
47561
  },
@@ -47244,6 +47595,9 @@
47244
47595
  "type": "integer"
47245
47596
  }
47246
47597
  },
47598
+ "bizCategory": {
47599
+ "type": "string"
47600
+ },
47247
47601
  "bizCode": {
47248
47602
  "type": "string"
47249
47603
  },
@@ -47253,6 +47607,10 @@
47253
47607
  "createdAt": {
47254
47608
  "type": "integer"
47255
47609
  },
47610
+ "currentLevel": {
47611
+ "description": "当前审批层级",
47612
+ "type": "integer"
47613
+ },
47256
47614
  "id": {
47257
47615
  "type": "integer"
47258
47616
  },
@@ -47265,17 +47623,22 @@
47265
47623
  "source": {
47266
47624
  "type": "string"
47267
47625
  },
47626
+ "status": {
47627
+ "description": "PENDING/APPROVED/REJECTED/CANCELED",
47628
+ "type": "string"
47629
+ },
47268
47630
  "ticketNo": {
47269
47631
  "type": "string"
47270
47632
  },
47271
47633
  "ticketType": {
47272
47634
  "type": "string"
47273
47635
  },
47274
- "updatedAt": {
47636
+ "totalLevels": {
47637
+ "description": "总审批层级",
47275
47638
  "type": "integer"
47276
47639
  },
47277
- "workflowInstanceId": {
47278
- "type": "string"
47640
+ "updatedAt": {
47641
+ "type": "integer"
47279
47642
  }
47280
47643
  }
47281
47644
  },
@@ -47330,6 +47693,166 @@
47330
47693
  "properties": {}
47331
47694
  }
47332
47695
  }
47696
+ },
47697
+ "models.ApprovalProgressItem": {
47698
+ "type": "object",
47699
+ "properties": {
47700
+ "action": {
47701
+ "description": "APPROVE / REJECT / \"\"",
47702
+ "type": "string"
47703
+ },
47704
+ "approverId": {
47705
+ "description": "审批人ID",
47706
+ "type": "string"
47707
+ },
47708
+ "approverName": {
47709
+ "description": "审批人姓名",
47710
+ "type": "string"
47711
+ },
47712
+ "attachments": {
47713
+ "description": "补充材料列表",
47714
+ "type": "array",
47715
+ "items": {
47716
+ "type": "array",
47717
+ "items": {
47718
+ "type": "integer"
47719
+ }
47720
+ }
47721
+ },
47722
+ "comment": {
47723
+ "description": "审批意见",
47724
+ "type": "string"
47725
+ },
47726
+ "completedAt": {
47727
+ "description": "完成时间(毫秒)",
47728
+ "type": "integer"
47729
+ },
47730
+ "level": {
47731
+ "description": "审批层级",
47732
+ "type": "integer"
47733
+ },
47734
+ "status": {
47735
+ "description": "COMPLETED / PENDING / WAITING",
47736
+ "type": "string"
47737
+ }
47738
+ }
47739
+ },
47740
+ "models.CancelTicketReq": {
47741
+ "type": "object",
47742
+ "required": [
47743
+ "ticketNo"
47744
+ ],
47745
+ "properties": {
47746
+ "comment": {
47747
+ "description": "撤销原因",
47748
+ "type": "string"
47749
+ },
47750
+ "ticketNo": {
47751
+ "description": "工单编号",
47752
+ "type": "string"
47753
+ }
47754
+ }
47755
+ },
47756
+ "models.SupplementReq": {
47757
+ "type": "object",
47758
+ "required": [
47759
+ "ticketNo"
47760
+ ],
47761
+ "properties": {
47762
+ "attachments": {
47763
+ "description": "附件 [{url,name,type}]",
47764
+ "type": "array",
47765
+ "items": {
47766
+ "type": "integer"
47767
+ }
47768
+ },
47769
+ "comment": {
47770
+ "description": "说明",
47771
+ "type": "string"
47772
+ },
47773
+ "ticketNo": {
47774
+ "description": "工单编号",
47775
+ "type": "string"
47776
+ }
47777
+ }
47778
+ },
47779
+ "models.TicketApproveReq": {
47780
+ "type": "object",
47781
+ "required": [
47782
+ "comment",
47783
+ "ticketNo"
47784
+ ],
47785
+ "properties": {
47786
+ "comment": {
47787
+ "description": "审批意见",
47788
+ "type": "string"
47789
+ },
47790
+ "ticketNo": {
47791
+ "description": "工单编号",
47792
+ "type": "string"
47793
+ },
47794
+ "variables": {
47795
+ "description": "额外变量",
47796
+ "type": "object",
47797
+ "additionalProperties": {
47798
+ "type": "string"
47799
+ },
47800
+ "properties": {}
47801
+ }
47802
+ }
47803
+ },
47804
+ "models.TicketChangeItem": {
47805
+ "type": "object",
47806
+ "properties": {
47807
+ "after": {
47808
+ "type": "string"
47809
+ },
47810
+ "before": {
47811
+ "type": "string"
47812
+ }
47813
+ }
47814
+ },
47815
+ "models.TicketRejectReq": {
47816
+ "type": "object",
47817
+ "required": [
47818
+ "comment",
47819
+ "ticketNo"
47820
+ ],
47821
+ "properties": {
47822
+ "comment": {
47823
+ "description": "拒绝原因",
47824
+ "type": "string"
47825
+ },
47826
+ "ticketNo": {
47827
+ "description": "工单编号",
47828
+ "type": "string"
47829
+ },
47830
+ "variables": {
47831
+ "description": "额外变量",
47832
+ "type": "object",
47833
+ "additionalProperties": {
47834
+ "type": "string"
47835
+ },
47836
+ "properties": {}
47837
+ }
47838
+ }
47839
+ },
47840
+ "models.TicketStats": {
47841
+ "type": "object",
47842
+ "properties": {
47843
+ "completed": {
47844
+ "description": "已办结(APPROVED/REJECTED/CANCELED)",
47845
+ "type": "integer"
47846
+ },
47847
+ "inProgress": {
47848
+ "description": "处理中(PENDING,含非当前用户待办)",
47849
+ "type": "integer"
47850
+ },
47851
+ "pending": {
47852
+ "description": "待办(PENDING)",
47853
+ "type": "integer"
47854
+ }
47855
+ }
47333
47856
  }
47334
47857
  },
47335
47858
  "securitySchemes": {}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fx-spec-hub",
3
- "version": "0.0.15",
3
+ "version": "0.0.17",
4
4
  "description": "API 规范中心/控制台",
5
5
  "type": "commonjs",
6
6
  "main": "./dist/index.js",
@@ -56,5 +56,6 @@
56
56
  "terser": "^5.43.1",
57
57
  "tsx": "^4.19.3",
58
58
  "typescript": "^5.8.2"
59
- }
59
+ },
60
+ "packageManager": "pnpm@10.29.2+sha512.bef43fa759d91fd2da4b319a5a0d13ef7a45bb985a3d7342058470f9d2051a3ba8674e629672654686ef9443ad13a82da2beb9eeb3e0221c87b8154fff9d74b8"
60
61
  }