Skip to content

Commit 234cbe4

Browse files
committed
chore: update fixture to match openapi schema
1 parent b2eaef4 commit 234cbe4

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

__tests__/fixtures/test1.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -985,7 +985,7 @@
985985
}
986986
},
987987
"responses": {
988-
"200": {
988+
"204": {
989989
"description": "Link Billing Account 200 response",
990990
"content": {
991991
"application/json": {

__tests__/fixtures/test1/methods.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import type {
99
BillingAccountPortalRequest,
1010
BillingAccountPortal,
1111
LinkBillingAccountRequest,
12-
LinkBillingAccount,
1312
PaymentMethods,
1413
PaymentMethodIntendedLro,
1514
PaymentMethod,
@@ -124,14 +123,13 @@ export function getBillingAccountPortalCommand(
124123
* linkBillingAccountCommand
125124
* @param billingAccountId {String}
126125
* @param parameters.body {LinkBillingAccountRequest}
127-
* @returns {RequestMethodCaller<LinkBillingAccount>} HTTP 200
128126
*/
129127
export function linkBillingAccountCommand(
130128
billingAccountId: string,
131129
parameters: {
132130
body: Simplify<LinkBillingAccountRequest>;
133131
},
134-
): RequestMethodCaller<LinkBillingAccount> {
132+
): RequestMethodCaller<void> {
135133
const req = {
136134
method: 'post' as const,
137135
pathname: `/billing-accounts/${billingAccountId}/link`,

0 commit comments

Comments
 (0)