@kanda-libs/ks-schema 1.0.95 → 1.0.97
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/components/schemas/Company.d.ts +3 -3
- package/dist/components/schemas/CompanyInfo.d.ts +4 -4
- package/dist/components/schemas/CompanyInfo.d.ts.map +1 -1
- package/dist/components/schemas/CompanyInfo.js +1 -1
- package/dist/operations/approveCompany.d.ts +3 -3
- package/dist/operations/deleteCompany.d.ts +3 -3
- package/dist/operations/getCompanies.d.ts +3 -3
- package/dist/operations/getCompany.d.ts +3 -3
- package/dist/operations/index.d.ts +49 -18
- package/dist/operations/index.d.ts.map +1 -1
- package/dist/operations/index.js +8 -1
- package/dist/operations/infoHealth.d.ts +30 -0
- package/dist/operations/infoHealth.d.ts.map +1 -0
- package/dist/operations/infoHealth.js +37 -0
- package/dist/operations/postCompany.d.ts +3 -3
- package/dist/operations/putCompany.d.ts +3 -3
- package/dist/schema.json +1 -1
- package/dist/widget/index.d.ts +2428 -2428
- package/dist/widget/index.d.ts.map +1 -1
- package/dist/widget/index.js +5197 -5197
- package/package.json +1 -1
- package/schema.yaml +20 -1
package/package.json
CHANGED
package/schema.yaml
CHANGED
|
@@ -82,6 +82,26 @@ paths:
|
|
|
82
82
|
schema:
|
|
83
83
|
$ref: "#/components/schemas/Error"
|
|
84
84
|
|
|
85
|
+
/api/info/health:
|
|
86
|
+
get:
|
|
87
|
+
operationId: infoHealth
|
|
88
|
+
summary: query system health
|
|
89
|
+
tags:
|
|
90
|
+
- InfoHealth
|
|
91
|
+
responses:
|
|
92
|
+
200:
|
|
93
|
+
description: got system health info
|
|
94
|
+
content:
|
|
95
|
+
application/json:
|
|
96
|
+
schema:
|
|
97
|
+
$ref: "#/components/schemas/Error"
|
|
98
|
+
default:
|
|
99
|
+
description: unexpected error
|
|
100
|
+
content:
|
|
101
|
+
application/json:
|
|
102
|
+
schema:
|
|
103
|
+
$ref: "#/components/schemas/Error"
|
|
104
|
+
|
|
85
105
|
/api/info/company:
|
|
86
106
|
get:
|
|
87
107
|
operationId: infoCompany
|
|
@@ -2001,7 +2021,6 @@ components:
|
|
|
2001
2021
|
- average_monthly_jobs
|
|
2002
2022
|
- average_job_value
|
|
2003
2023
|
- use_subcontractor
|
|
2004
|
-
- insurance_document
|
|
2005
2024
|
properties:
|
|
2006
2025
|
trade_type:
|
|
2007
2026
|
type: string
|