fx-spec-hub 0.0.24 → 0.0.26
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.
- package/dist/data/admin-backend-api.json +170 -18
- package/dist/env/admin/.env.pre +10 -0
- package/dist/env/user/.env.pre +11 -0
- package/package.json +1 -1
|
@@ -25207,7 +25207,7 @@
|
|
|
25207
25207
|
"list": {
|
|
25208
25208
|
"type": "array",
|
|
25209
25209
|
"items": {
|
|
25210
|
-
"$ref": "#/components/schemas/models.
|
|
25210
|
+
"$ref": "#/components/schemas/models.AuditLogFlatItem"
|
|
25211
25211
|
}
|
|
25212
25212
|
}
|
|
25213
25213
|
}
|
|
@@ -25226,6 +25226,53 @@
|
|
|
25226
25226
|
"security": []
|
|
25227
25227
|
}
|
|
25228
25228
|
},
|
|
25229
|
+
"/api/v1/ticket/statusByBizId": {
|
|
25230
|
+
"post": {
|
|
25231
|
+
"summary": "根据业务ID查询最新工单状态",
|
|
25232
|
+
"deprecated": false,
|
|
25233
|
+
"description": "根据 bizId 查询该业务下每种 bizCode 最新的工单状态",
|
|
25234
|
+
"tags": [
|
|
25235
|
+
"Ticket"
|
|
25236
|
+
],
|
|
25237
|
+
"parameters": [],
|
|
25238
|
+
"requestBody": {
|
|
25239
|
+
"content": {
|
|
25240
|
+
"application/json": {
|
|
25241
|
+
"schema": {
|
|
25242
|
+
"$ref": "#/components/schemas/models.ApprovalLogsByBizIdReq"
|
|
25243
|
+
}
|
|
25244
|
+
}
|
|
25245
|
+
},
|
|
25246
|
+
"required": true
|
|
25247
|
+
},
|
|
25248
|
+
"responses": {
|
|
25249
|
+
"200": {
|
|
25250
|
+
"description": "OK",
|
|
25251
|
+
"content": {
|
|
25252
|
+
"application/json": {
|
|
25253
|
+
"schema": {
|
|
25254
|
+
"allOf": [
|
|
25255
|
+
{
|
|
25256
|
+
"$ref": "#/components/schemas/response.Response"
|
|
25257
|
+
},
|
|
25258
|
+
{
|
|
25259
|
+
"type": "object",
|
|
25260
|
+
"properties": {
|
|
25261
|
+
"data": {
|
|
25262
|
+
"$ref": "#/components/schemas/models.TicketStatusByBizIdResp"
|
|
25263
|
+
}
|
|
25264
|
+
}
|
|
25265
|
+
}
|
|
25266
|
+
]
|
|
25267
|
+
}
|
|
25268
|
+
}
|
|
25269
|
+
},
|
|
25270
|
+
"headers": {}
|
|
25271
|
+
}
|
|
25272
|
+
},
|
|
25273
|
+
"security": []
|
|
25274
|
+
}
|
|
25275
|
+
},
|
|
25229
25276
|
"/api/v1/cms": {
|
|
25230
25277
|
"get": {
|
|
25231
25278
|
"summary": "获取数据",
|
|
@@ -25281,6 +25328,123 @@
|
|
|
25281
25328
|
},
|
|
25282
25329
|
"components": {
|
|
25283
25330
|
"schemas": {
|
|
25331
|
+
"models.TicketStatusByBizIdResp": {
|
|
25332
|
+
"type": "object",
|
|
25333
|
+
"properties": {
|
|
25334
|
+
"tickets": {
|
|
25335
|
+
"description": "按业务类型分组的最新工单状态",
|
|
25336
|
+
"type": "array",
|
|
25337
|
+
"items": {
|
|
25338
|
+
"$ref": "#/components/schemas/models.BizTicketStatus"
|
|
25339
|
+
}
|
|
25340
|
+
}
|
|
25341
|
+
}
|
|
25342
|
+
},
|
|
25343
|
+
"models.BizTicketStatus": {
|
|
25344
|
+
"type": "object",
|
|
25345
|
+
"properties": {
|
|
25346
|
+
"bizType": {
|
|
25347
|
+
"description": "业务类型编码",
|
|
25348
|
+
"type": "string"
|
|
25349
|
+
},
|
|
25350
|
+
"bizTypeName": {
|
|
25351
|
+
"description": "业务类型名称",
|
|
25352
|
+
"type": "string"
|
|
25353
|
+
},
|
|
25354
|
+
"createdAt": {
|
|
25355
|
+
"description": "创建时间(毫秒时间戳)",
|
|
25356
|
+
"type": "integer"
|
|
25357
|
+
},
|
|
25358
|
+
"creator": {
|
|
25359
|
+
"description": "发起人",
|
|
25360
|
+
"type": "string"
|
|
25361
|
+
},
|
|
25362
|
+
"remark": {
|
|
25363
|
+
"description": "发起原因",
|
|
25364
|
+
"type": "string"
|
|
25365
|
+
},
|
|
25366
|
+
"source": {
|
|
25367
|
+
"description": "工单来源",
|
|
25368
|
+
"type": "string"
|
|
25369
|
+
},
|
|
25370
|
+
"status": {
|
|
25371
|
+
"description": "工单状态 SUBMITTED/PENDING/APPROVED/REJECTED/RETURNED/CANCELED",
|
|
25372
|
+
"type": "string"
|
|
25373
|
+
},
|
|
25374
|
+
"ticketNo": {
|
|
25375
|
+
"description": "工单编号",
|
|
25376
|
+
"type": "string"
|
|
25377
|
+
},
|
|
25378
|
+
"ticketType": {
|
|
25379
|
+
"description": "工单体系 ADT/MNT/USR",
|
|
25380
|
+
"type": "string"
|
|
25381
|
+
},
|
|
25382
|
+
"updatedAt": {
|
|
25383
|
+
"description": "最后更新时间(毫秒时间戳)",
|
|
25384
|
+
"type": "integer"
|
|
25385
|
+
}
|
|
25386
|
+
}
|
|
25387
|
+
},
|
|
25388
|
+
"models.AuditLogFlatItem": {
|
|
25389
|
+
"type": "object",
|
|
25390
|
+
"properties": {
|
|
25391
|
+
"action": {
|
|
25392
|
+
"type": "string"
|
|
25393
|
+
},
|
|
25394
|
+
"approverId": {
|
|
25395
|
+
"type": "string"
|
|
25396
|
+
},
|
|
25397
|
+
"approverName": {
|
|
25398
|
+
"type": "string"
|
|
25399
|
+
},
|
|
25400
|
+
"attachments": {
|
|
25401
|
+
"description": "审核附件",
|
|
25402
|
+
"type": "array",
|
|
25403
|
+
"items": {
|
|
25404
|
+
"type": "integer"
|
|
25405
|
+
}
|
|
25406
|
+
},
|
|
25407
|
+
"bizCode": {
|
|
25408
|
+
"type": "string"
|
|
25409
|
+
},
|
|
25410
|
+
"bizCodeName": {
|
|
25411
|
+
"type": "string"
|
|
25412
|
+
},
|
|
25413
|
+
"bizId": {
|
|
25414
|
+
"type": "string"
|
|
25415
|
+
},
|
|
25416
|
+
"createdAt": {
|
|
25417
|
+
"type": "integer"
|
|
25418
|
+
},
|
|
25419
|
+
"id": {
|
|
25420
|
+
"type": "integer"
|
|
25421
|
+
},
|
|
25422
|
+
"instanceId": {
|
|
25423
|
+
"type": "string"
|
|
25424
|
+
},
|
|
25425
|
+
"level": {
|
|
25426
|
+
"type": "integer"
|
|
25427
|
+
},
|
|
25428
|
+
"remark": {
|
|
25429
|
+
"type": "string"
|
|
25430
|
+
},
|
|
25431
|
+
"role": {
|
|
25432
|
+
"type": "string"
|
|
25433
|
+
}
|
|
25434
|
+
}
|
|
25435
|
+
},
|
|
25436
|
+
"models.ApprovalLogsByBizIdReq": {
|
|
25437
|
+
"type": "object",
|
|
25438
|
+
"required": [
|
|
25439
|
+
"bizId"
|
|
25440
|
+
],
|
|
25441
|
+
"properties": {
|
|
25442
|
+
"bizId": {
|
|
25443
|
+
"description": "业务ID",
|
|
25444
|
+
"type": "string"
|
|
25445
|
+
}
|
|
25446
|
+
}
|
|
25447
|
+
},
|
|
25284
25448
|
"models.ApprovalLogsByBizCodeReq": {
|
|
25285
25449
|
"type": "object",
|
|
25286
25450
|
"properties": {
|
|
@@ -26517,10 +26681,6 @@
|
|
|
26517
26681
|
"description": "创建时间",
|
|
26518
26682
|
"type": "integer"
|
|
26519
26683
|
},
|
|
26520
|
-
"currentLevel": {
|
|
26521
|
-
"description": "当前审批层级",
|
|
26522
|
-
"type": "integer"
|
|
26523
|
-
},
|
|
26524
26684
|
"ruleDescription": {
|
|
26525
26685
|
"description": "规则描述",
|
|
26526
26686
|
"type": "string"
|
|
@@ -26549,32 +26709,24 @@
|
|
|
26549
26709
|
"description": "STR Alert ID",
|
|
26550
26710
|
"type": "integer"
|
|
26551
26711
|
},
|
|
26552
|
-
"
|
|
26553
|
-
"description": "
|
|
26712
|
+
"ticketNo": {
|
|
26713
|
+
"description": "工单编号",
|
|
26554
26714
|
"type": "string"
|
|
26555
26715
|
},
|
|
26556
|
-
"
|
|
26557
|
-
"description": "
|
|
26558
|
-
"type": "
|
|
26716
|
+
"ticketStatus": {
|
|
26717
|
+
"description": "工单状态",
|
|
26718
|
+
"type": "string"
|
|
26559
26719
|
},
|
|
26560
26720
|
"userId": {
|
|
26561
26721
|
"description": "用户ID",
|
|
26562
26722
|
"type": "string"
|
|
26563
26723
|
},
|
|
26564
|
-
"workflowInstanceId": {
|
|
26565
|
-
"description": "工作流实例ID",
|
|
26566
|
-
"type": "string"
|
|
26567
|
-
},
|
|
26568
26724
|
"workflowLogs": {
|
|
26569
26725
|
"description": "审批日志",
|
|
26570
26726
|
"type": "array",
|
|
26571
26727
|
"items": {
|
|
26572
26728
|
"$ref": "#/components/schemas/models.WorkflowLogItem"
|
|
26573
26729
|
}
|
|
26574
|
-
},
|
|
26575
|
-
"workflowStatus": {
|
|
26576
|
-
"description": "工作流状态 // PENDING:审核中 APPROVE:通过 REJECT:拒绝",
|
|
26577
|
-
"type": "string"
|
|
26578
26730
|
}
|
|
26579
26731
|
}
|
|
26580
26732
|
},
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
VITE_OTEL_EXPORTER_OTLP_ENDPOINT =
|
|
2
|
+
VITE_SENTRY_DSN =
|
|
3
|
+
|
|
4
|
+
VITE_ACCESS_CONTROL_ALLOW_ORIGIN=https://www.894568.xyz
|
|
5
|
+
VITE_APP_BASE_URL=https://api-admin.finex-pre.xyz
|
|
6
|
+
VITE_APP_CMS_URL=https://cms.finex-pre.xyz/api
|
|
7
|
+
VITE_APP_MOCK_URL=https://api-admin.finex-pre.xyz
|
|
8
|
+
VITE_APP_TPS_URL =
|
|
9
|
+
VITE_APP_CPU_URL =
|
|
10
|
+
VITE_APP_GRAFANA_URL = https://grafana.finex-pre.xyz/d/eeet5hhf3xszkc/cpu-memory
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
ACCESS_CONTROL_ALLOW_ORIGIN=https://www.finex-pre.com
|
|
2
|
+
|
|
3
|
+
BASE_URL=https://web-api.finex-pre.com
|
|
4
|
+
SERVER_BASE_URL=http:exchange-web-api-service:9000
|
|
5
|
+
APP_BASE_URL=https://app-api.finex-pre.com
|
|
6
|
+
WS_URL=wss://ws.finex-pre.com
|
|
7
|
+
STRAPI_BASE_DOMAIN=https://cms.finex-pre.com
|
|
8
|
+
STATIC_DOMAIN=https://static.finex-pre.com
|
|
9
|
+
GA_ID=
|
|
10
|
+
CAPTCHA_ID=8d57f6d065f143e645d86ed6ff7206f5
|
|
11
|
+
REOWN_PROJECT_ID=1f5038de5b4e29414710cb53ccfd92f0
|