@@ -69,3 +69,60 @@ export enum BillingReplacementBehavior {
69
69
ApplyOnNextBillingCycle = 'APPLY_ON_NEXT_BILLING_CYCLE' ,
70
70
Standard = 'STANDARD' ,
71
71
}
72
+
73
+ export enum StatusCode {
74
+ Continue = 100 ,
75
+ SwitchingProtocols = 101 ,
76
+ Ok = 200 ,
77
+ Created = 201 ,
78
+ Accepted = 202 ,
79
+ NonAuthoritativeInformation = 203 ,
80
+ NoContent = 204 ,
81
+ ResetContent = 205 ,
82
+ PartialContent = 206 ,
83
+ MultipleChoices = 300 ,
84
+ MovedPermanently = 301 ,
85
+ Found = 302 ,
86
+ SeeOther = 303 ,
87
+ NotModified = 304 ,
88
+ UseProxy = 305 ,
89
+ TemporaryRedirect = 307 ,
90
+ BadRequest = 400 ,
91
+ Unauthorized = 401 ,
92
+ PaymentRequired = 402 ,
93
+ Forbidden = 403 ,
94
+ NotFound = 404 ,
95
+ MethodNotAllowed = 405 ,
96
+ NotAcceptable = 406 ,
97
+ ProxyAuthenticationRequired = 407 ,
98
+ RequestTimeout = 408 ,
99
+ Conflict = 409 ,
100
+ Gone = 410 ,
101
+ LengthRequired = 411 ,
102
+ PreconditionFailed = 412 ,
103
+ RequestEntityTooLarge = 413 ,
104
+ RequestUriTooLong = 414 ,
105
+ UnsupportedMediaType = 415 ,
106
+ RequestedRangeNotSatisfiable = 416 ,
107
+ ExpectationFailed = 417 ,
108
+ ImATeapot = 418 ,
109
+ UnprocessableEntity = 422 ,
110
+ TooManyRequests = 429 ,
111
+ InternalServerError = 500 ,
112
+ NotImplemented = 501 ,
113
+ BadGateway = 502 ,
114
+ ServiceUnavailable = 503 ,
115
+ GatewayTimeout = 504 ,
116
+ HttpVersionNotSupported = 505 ,
117
+ }
118
+
119
+ export enum Method {
120
+ Get = 'GET' ,
121
+ Post = 'POST' ,
122
+ Put = 'PUT' ,
123
+ Patch = 'PATCH' ,
124
+ Delete = 'DELETE' ,
125
+ Head = 'HEAD' ,
126
+ Options = 'OPTIONS' ,
127
+ Connect = 'CONNECT' ,
128
+ }
0 commit comments