Skip to content

Commit

Permalink
feat(api): OpenAPI spec update via Stainless API (#317)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored and stainless-bot committed Apr 11, 2024
1 parent 70f4748 commit e6ac75b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ dist
/deno
/*.tgz
.idea/

2 changes: 1 addition & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
CHANGELOG.md
/ecosystem-tests
/ecosystem-tests/*/**
/node_modules
/deno

Expand Down
2 changes: 1 addition & 1 deletion src/resources/zero-trust/dex/http-tests/http-tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export interface HTTPDetails {
*/
name?: string;

target_policies?: Array<DEXAPI.DeviceExperienceMonitor>;
target_policies?: Array<DEXAPI.DeviceExperienceMonitor> | null;

targeted?: boolean;
}
Expand Down
2 changes: 1 addition & 1 deletion src/resources/zero-trust/dex/tests/tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export namespace Tests {
*/
method?: string;

target_policies?: Array<DEXAPI.DeviceExperienceMonitor>;
target_policies?: Array<DEXAPI.DeviceExperienceMonitor> | null;

targeted?: boolean;

Expand Down
2 changes: 1 addition & 1 deletion src/resources/zero-trust/dex/traceroute-tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export interface Traceroute {
*/
name: string;

target_policies?: Array<DEXAPI.DeviceExperienceMonitor>;
target_policies?: Array<DEXAPI.DeviceExperienceMonitor> | null;

targeted?: boolean;

Expand Down

0 comments on commit e6ac75b

Please sign in to comment.