File tree 1 file changed +17
-17
lines changed
1 file changed +17
-17
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,23 @@ declare module "replicate" {
22
22
models ?: Model [ ] ;
23
23
}
24
24
25
+ export interface Deployment {
26
+ owner : string ;
27
+ name : string ;
28
+ current_release : {
29
+ number : number ;
30
+ model : string ;
31
+ version : string ;
32
+ created_at : string ;
33
+ created_by : Account ;
34
+ configuration : {
35
+ hardware : string ;
36
+ min_instances : number ;
37
+ max_instances : number ;
38
+ } ;
39
+ } ;
40
+ }
41
+
25
42
export interface Hardware {
26
43
sku : string ;
27
44
name : string ;
@@ -89,23 +106,6 @@ declare module "replicate" {
89
106
retry ?: number ;
90
107
}
91
108
92
- export interface Deployment {
93
- owner : string ;
94
- name : string ;
95
- current_release : {
96
- number : number ;
97
- model : string ;
98
- version : string ;
99
- created_at : string ;
100
- created_by : Account ;
101
- configuration : {
102
- hardware : string ;
103
- min_instances : number ;
104
- max_instances : number ;
105
- } ;
106
- } ;
107
- }
108
-
109
109
export interface WebhookSecret {
110
110
key : string ;
111
111
}
You can’t perform that action at this time.
0 commit comments