Skip to content

Commit 90a3e63

Browse files
committed
fix(serverless-api): explicitly enable credentials
1 parent 0f3b317 commit 90a3e63

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/serverless-api/src/api/services.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/** @module @twilio-labs/serverless-api/dist/api */
22

33
import debug from 'debug';
4-
import { ServiceList, ServiceResource, Sid } from '../types';
54
import { TwilioServerlessApiClient } from '../client';
6-
import { getPaginatedResource } from './utils/pagination';
5+
import { ServiceList, ServiceResource, Sid } from '../types';
76
import { ClientApiError } from '../utils/error';
7+
import { getPaginatedResource } from './utils/pagination';
88

99
const log = debug('twilio-serverless-api:services');
1010

@@ -25,7 +25,7 @@ export async function createService(
2525
form: {
2626
UniqueName: serviceName,
2727
FriendlyName: serviceName,
28-
IncludeCrendentials: true,
28+
IncludeCredentials: true,
2929
},
3030
});
3131
const service = (resp.body as unknown) as ServiceResource;

0 commit comments

Comments
 (0)