dark
7 months ago
10 changed files with 162 additions and 63 deletions
-
12src/components/drawer-picker/DrawerPicker.tsx
-
78src/pages/websites/ssl/components/CAList.tsx
-
1src/pages/websites/ssl/components/DNSList.tsx
-
34src/pages/websites/ssl/index.tsx
-
7src/request.ts
-
11src/store/websites/ca.ts
-
16src/types/website/acme.d.ts
-
18src/types/website/ca.d.ts
-
8src/types/website/dns.d.ts
-
30src/types/website/ssl.d.ts
@ -1,14 +1,14 @@ |
|||
export interface IAcmeAccount { |
|||
id: number; |
|||
createdAt?: string; |
|||
createdBy: number; |
|||
updatedAt?: string; |
|||
updatedBy: number; |
|||
created_at: string | null; |
|||
created_by: number; |
|||
updated_at: string | null; |
|||
updated_by: number; |
|||
email: string; |
|||
url: string; |
|||
privateKey: string; |
|||
private_key: string; |
|||
type: string; |
|||
eabKid: string; |
|||
eabHmacKey: string; |
|||
keyType: string; |
|||
eab_kid: string; |
|||
eab_hmac_key: string; |
|||
key_type: string; |
|||
} |
@ -1,11 +1,17 @@ |
|||
export interface ICA { |
|||
id: number; |
|||
createdAt: string | null; |
|||
createdBy: number; |
|||
updatedAt: string | null; |
|||
updatedBy: number; |
|||
created_at: string | null; |
|||
created_by: number; |
|||
updated_at: string | null; |
|||
updated_by: number; |
|||
csr: string; |
|||
name: string; |
|||
privateKey: string; |
|||
keyType: string; |
|||
common_name: string; |
|||
organization: string; |
|||
organization_unit: string; |
|||
country: string; |
|||
province: string; |
|||
city: string; |
|||
private_key: string; |
|||
key_type: string; |
|||
} |
@ -1,9 +1,9 @@ |
|||
export interface IDnsAccount { |
|||
id: number; |
|||
createdAt: string | null; |
|||
createdBy: number; |
|||
updatedAt: string | null; |
|||
updatedBy: number; |
|||
created_at: string | null; |
|||
created_by: number; |
|||
updated_at: string | null; |
|||
updated_by: number; |
|||
name: string; |
|||
type: string; |
|||
authorization: string; |
Write
Preview
Loading…
Cancel
Save
Reference in new issue