Skip to content

Commit 97cdae4

Browse files
stainless-app[bot]meorphis
authored andcommitted
fix(client): reexport resource as value (#2318)
1 parent d64c9bc commit 97cdae4

File tree

9 files changed

+19
-24
lines changed

9 files changed

+19
-24
lines changed

src/resources/addressing/prefixes/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export {
1818
} from './bgp-prefixes';
1919
export {
2020
DelegationsSinglePage,
21-
type Delegations,
21+
Delegations,
2222
type DelegationDeleteResponse,
2323
type DelegationCreateParams,
2424
type DelegationListParams,

src/resources/alerting/destinations/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export {
1616
} from './pagerduty';
1717
export {
1818
WebhooksSinglePage,
19-
type Webhooks,
19+
Webhooks,
2020
type WebhookCreateResponse,
2121
type WebhookUpdateResponse,
2222
type WebhookDeleteResponse,

src/resources/api-gateway/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ export {
4747
type UserSchemaGetParams,
4848
} from './user-schemas/index';
4949
export { Schemas, type SchemaListResponse, type SchemaListParams } from './schemas';
50-
export { type Settings } from './settings/index';
50+
export { Settings } from './settings/index';

src/resources/api-gateway/settings/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ export {
66
type SchemaValidationEditParams,
77
type SchemaValidationGetParams,
88
} from './schema-validation';
9-
export { type Settings } from './settings';
9+
export { Settings } from './settings';

src/resources/intel/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
export { ASN, type ASNGetParams } from './asn/index';
44
export { AttackSurfaceReport } from './attack-surface-report/index';
5-
export { DNSV4PagePagination, type DNS, type DNSListParams } from './dns';
5+
export { DNSV4PagePagination, DNS, type DNSListParams } from './dns';
66
export {
77
DomainHistoryResource,
88
type DomainHistory,
@@ -33,4 +33,4 @@ export {
3333
type MiscategorizationCreateParams,
3434
} from './miscategorizations';
3535
export { SinkholesSinglePage, Sinkholes, type Sinkhole, type SinkholeListParams } from './sinkholes';
36-
export { type Whois, type WhoisGetResponse, type WhoisGetParams } from './whois';
36+
export { Whois, type WhoisGetResponse, type WhoisGetParams } from './whois';

src/resources/stream/index.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,14 @@ export {
2828
type DownloadGetParams,
2929
} from './downloads';
3030
export { Embed, type EmbedGetResponse, type EmbedGetParams } from './embed';
31+
export {
32+
Keys,
33+
type KeyDeleteResponse,
34+
type KeyGetResponse,
35+
type KeyCreateParams,
36+
type KeyDeleteParams,
37+
type KeyGetParams,
38+
} from './keys';
3139
export {
3240
LiveInputs,
3341
type LiveInput,
@@ -60,11 +68,3 @@ export {
6068
type WebhookDeleteParams,
6169
type WebhookGetParams,
6270
} from './webhooks';
63-
export {
64-
type Keys,
65-
type KeyDeleteResponse,
66-
type KeyGetResponse,
67-
type KeyCreateParams,
68-
type KeyDeleteParams,
69-
type KeyGetParams,
70-
} from './keys';
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

3-
export { Logs } from './logs';
43
export {
5-
type AccessRequests,
4+
AccessRequests,
65
type AccessRequestListResponse,
76
type AccessRequestListParams,
87
} from './access-requests';
8+
export { Logs } from './logs';

src/resources/zero-trust/dex/index.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,7 @@ export {
2424
type FleetStatusOverTimeParams,
2525
} from './fleet-status/index';
2626
export { HTTPTests, type HTTPDetails, type HTTPTestGetParams } from './http-tests/index';
27-
export {
28-
TestsV4PagePagination,
29-
type Tests,
30-
type AggregateTimePeriod,
31-
type TestListParams,
32-
} from './tests/index';
27+
export { TestsV4PagePagination, Tests, type AggregateTimePeriod, type TestListParams } from './tests/index';
3328
export { TracerouteTestResults } from './traceroute-test-results/index';
3429
export {
3530
TracerouteTests,
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

3-
export { TestsV4PagePagination, type Tests, type AggregateTimePeriod, type TestListParams } from './tests';
4-
export { type UniqueDevices, type UniqueDeviceListParams } from './unique-devices';
3+
export { TestsV4PagePagination, Tests, type AggregateTimePeriod, type TestListParams } from './tests';
4+
export { UniqueDevices, type UniqueDeviceListParams } from './unique-devices';

0 commit comments

Comments
 (0)