File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,6 @@ func (c *ClientOptions) cloneHeader() http.Header {
36
36
headers := c .HTTPHeader .Clone ()
37
37
headers .Set ("X-Fern-Language" , "Go" )
38
38
headers .Set ("X-Fern-SDK-Name" , "github.com/fern-api/generator-exec-go" )
39
- headers .Set ("X-Fern-SDK-Version" , "v0.0.1043 " )
39
+ headers .Set ("X-Fern-SDK-Version" , "v0.0.1047 " )
40
40
return headers
41
41
}
Original file line number Diff line number Diff line change @@ -1457,6 +1457,7 @@ const (
1457
1457
EndpointMethodGet
1458
1458
EndpointMethodPatch
1459
1459
EndpointMethodDelete
1460
+ EndpointMethodHead
1460
1461
)
1461
1462
1462
1463
func (e EndpointMethod ) String () string {
@@ -1473,6 +1474,8 @@ func (e EndpointMethod) String() string {
1473
1474
return "PATCH"
1474
1475
case EndpointMethodDelete :
1475
1476
return "DELETE"
1477
+ case EndpointMethodHead :
1478
+ return "HEAD"
1476
1479
}
1477
1480
}
1478
1481
@@ -1501,6 +1504,9 @@ func (e *EndpointMethod) UnmarshalJSON(data []byte) error {
1501
1504
case "DELETE" :
1502
1505
value := EndpointMethodDelete
1503
1506
* e = value
1507
+ case "HEAD" :
1508
+ value := EndpointMethodHead
1509
+ * e = value
1504
1510
}
1505
1511
return nil
1506
1512
}
You can’t perform that action at this time.
0 commit comments