@kanda-libs/ks-schema 1.0.96 → 1.0.98
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 +2 -2
- package/dist/components/schemas/Company.d.ts.map +1 -1
- package/dist/components/schemas/Company.js +2 -0
- package/dist/operations/approveCompany.d.ts +1 -1
- package/dist/operations/deleteCompany.d.ts +1 -1
- package/dist/operations/getCompanies.d.ts +1 -1
- package/dist/operations/getCompany.d.ts +1 -1
- package/dist/operations/index.d.ts +37 -6
- 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 +1 -1
- package/dist/operations/putCompany.d.ts +1 -1
- package/dist/schema.json +1 -1
- package/dist/widget/index.d.ts +1896 -1896
- package/dist/widget/index.d.ts.map +1 -1
- package/dist/widget/index.js +4325 -4323
- package/package.json +1 -1
- package/schema.yaml +22 -0
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
|
|
@@ -1955,6 +1975,8 @@ components:
|
|
|
1955
1975
|
title: company lifecycle state
|
|
1956
1976
|
enum:
|
|
1957
1977
|
- registered
|
|
1978
|
+
- subscribed
|
|
1979
|
+
- director_info_provided
|
|
1958
1980
|
- onboarded
|
|
1959
1981
|
- completed_setup
|
|
1960
1982
|
- verified
|