dark
7 months ago
10 changed files with 162 additions and 63 deletions
-
20src/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
-
9src/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 { |
export interface IAcmeAccount { |
||||
id: number; |
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; |
email: string; |
||||
url: string; |
url: string; |
||||
privateKey: string; |
|
||||
|
private_key: string; |
||||
type: 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 { |
export interface ICA { |
||||
id: number; |
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; |
csr: string; |
||||
name: 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 { |
export interface IDnsAccount { |
||||
id: number; |
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; |
name: string; |
||||
type: string; |
type: string; |
||||
authorization: string; |
authorization: string; |
Write
Preview
Loading…
Cancel
Save
Reference in new issue