feat: 机构增加详情查看页 (#3097)

This commit is contained in:
zhengkunwang
2023-11-29 16:12:09 +08:00
committed by GitHub
parent 6db80141ed
commit 120bec57b2
15 changed files with 238 additions and 86 deletions

View File

@@ -18935,7 +18935,6 @@ const docTemplate = `{
"required": [
"commonName",
"country",
"email",
"keyType",
"name",
"organization"
@@ -18950,9 +18949,6 @@ const docTemplate = `{
"country": {
"type": "string"
},
"email": {
"type": "string"
},
"keyType": {
"type": "string",
"enum": [
@@ -19532,12 +19528,18 @@ const docTemplate = `{
"autoRenew": {
"type": "boolean"
},
"description": {
"type": "string"
},
"dir": {
"type": "string"
},
"dnsAccountId": {
"type": "integer"
},
"id": {
"type": "integer"
},
"keyType": {
"type": "string"
},
@@ -19576,33 +19578,17 @@ const docTemplate = `{
"request.WebsiteSSLUpdate": {
"type": "object",
"required": [
"id",
"type"
"id"
],
"properties": {
"autoRenew": {
"type": "boolean"
},
"certificate": {
"type": "string"
},
"description": {
"type": "string"
},
"id": {
"type": "integer"
},
"privateKey": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"autoRenew",
"description",
"certificate",
"privateKey"
]
}
}
},
@@ -20189,6 +20175,15 @@ const docTemplate = `{
"response.WebsiteCADTO": {
"type": "object",
"properties": {
"city": {
"type": "string"
},
"commonName": {
"type": "string"
},
"country": {
"type": "string"
},
"createdAt": {
"type": "string"
},
@@ -20204,9 +20199,18 @@ const docTemplate = `{
"name": {
"type": "string"
},
"organization": {
"type": "string"
},
"organizationUint": {
"type": "string"
},
"privateKey": {
"type": "string"
},
"province": {
"type": "string"
},
"updatedAt": {
"type": "string"
}

View File

@@ -18928,7 +18928,6 @@
"required": [
"commonName",
"country",
"email",
"keyType",
"name",
"organization"
@@ -18943,9 +18942,6 @@
"country": {
"type": "string"
},
"email": {
"type": "string"
},
"keyType": {
"type": "string",
"enum": [
@@ -19525,12 +19521,18 @@
"autoRenew": {
"type": "boolean"
},
"description": {
"type": "string"
},
"dir": {
"type": "string"
},
"dnsAccountId": {
"type": "integer"
},
"id": {
"type": "integer"
},
"keyType": {
"type": "string"
},
@@ -19569,33 +19571,17 @@
"request.WebsiteSSLUpdate": {
"type": "object",
"required": [
"id",
"type"
"id"
],
"properties": {
"autoRenew": {
"type": "boolean"
},
"certificate": {
"type": "string"
},
"description": {
"type": "string"
},
"id": {
"type": "integer"
},
"privateKey": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"autoRenew",
"description",
"certificate",
"privateKey"
]
}
}
},
@@ -20182,6 +20168,15 @@
"response.WebsiteCADTO": {
"type": "object",
"properties": {
"city": {
"type": "string"
},
"commonName": {
"type": "string"
},
"country": {
"type": "string"
},
"createdAt": {
"type": "string"
},
@@ -20197,9 +20192,18 @@
"name": {
"type": "string"
},
"organization": {
"type": "string"
},
"organizationUint": {
"type": "string"
},
"privateKey": {
"type": "string"
},
"province": {
"type": "string"
},
"updatedAt": {
"type": "string"
}

View File

@@ -3747,8 +3747,6 @@ definitions:
type: string
country:
type: string
email:
type: string
keyType:
enum:
- P256
@@ -3769,7 +3767,6 @@ definitions:
required:
- commonName
- country
- email
- keyType
- name
- organization
@@ -4145,10 +4142,14 @@ definitions:
type: boolean
autoRenew:
type: boolean
description:
type: string
dir:
type: string
dnsAccountId:
type: integer
id:
type: integer
keyType:
type: string
otherDomains:
@@ -4180,24 +4181,12 @@ definitions:
properties:
autoRenew:
type: boolean
certificate:
type: string
description:
type: string
id:
type: integer
privateKey:
type: string
type:
enum:
- autoRenew
- description
- certificate
- privateKey
type: string
required:
- id
- type
type: object
request.WebsiteSSLUpload:
properties:
@@ -4586,6 +4575,12 @@ definitions:
type: object
response.WebsiteCADTO:
properties:
city:
type: string
commonName:
type: string
country:
type: string
createdAt:
type: string
csr:
@@ -4596,8 +4591,14 @@ definitions:
type: string
name:
type: string
organization:
type: string
organizationUint:
type: string
privateKey:
type: string
province:
type: string
updatedAt:
type: string
type: object