Skip to content

Commit e70692f

Browse files
feat(api): api update
1 parent 6527f23 commit e70692f

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 139
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-2b77f13a159cf689a3bba6ac5ff03b6c0df62b772e2da04aff52be86710ca4d4.yml
3-
openapi_spec_hash: 28a3f685403d98ddd68b427d92ed28fb
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-91a51960dab258d5435cc2a7f47760fd81e4b711b891a1fde3d98757e85e8add.yml
3+
openapi_spec_hash: 192e4e94264db429260169f0b2e731ce
44
config_hash: c01c1191b1cd696c7ca855ff6d28a8df

tests/api-resources/license-types.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const client = new Orb({
1010

1111
describe('resource licenseTypes', () => {
1212
test('create: only required params', async () => {
13-
const responsePromise = client.licenseTypes.create({ grouping_key: 'grouping_key', name: 'name' });
13+
const responsePromise = client.licenseTypes.create({ grouping_key: 'x', name: 'x' });
1414
const rawResponse = await responsePromise.asResponse();
1515
expect(rawResponse).toBeInstanceOf(Response);
1616
const response = await responsePromise;
@@ -21,7 +21,7 @@ describe('resource licenseTypes', () => {
2121
});
2222

2323
test('create: required and optional params', async () => {
24-
const response = await client.licenseTypes.create({ grouping_key: 'grouping_key', name: 'name' });
24+
const response = await client.licenseTypes.create({ grouping_key: 'x', name: 'x' });
2525
});
2626

2727
test('retrieve', async () => {

0 commit comments

Comments
 (0)