-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(cli): handle multi service conjure files in importer (#4831)
- Loading branch information
Showing
58 changed files
with
6,918 additions
and
4,699 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
## 0.44.11 | ||
**`(fix):`** Several improvements to the conjure importer. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
## 1.8.1 | ||
**`(fix):`** Fixes a bug where the `OauthTokenProvider.cs` was incorrectly referencing | ||
the endpoint method, causing code to fail to compile. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
...api-importers/conjure/conjure-sdk/src/sdk/api/resources/types/types/ConjureEnumVariant.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/** | ||
* This file was auto-generated by Fern from our API Definition. | ||
*/ | ||
|
||
import * as FernConjure from "../../../index"; | ||
|
||
export type ConjureEnumVariant = string | FernConjure.ConjureEnumWithDocs; |
9 changes: 9 additions & 0 deletions
9
...pi-importers/conjure/conjure-sdk/src/sdk/api/resources/types/types/ConjureEnumWithDocs.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/** | ||
* This file was auto-generated by Fern from our API Definition. | ||
*/ | ||
|
||
import * as FernConjure from "../../../index"; | ||
|
||
export interface ConjureEnumWithDocs extends FernConjure.WithDocs { | ||
value: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
...ers/conjure/conjure-sdk/src/sdk/serialization/resources/types/types/ConjureEnumVariant.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/** | ||
* This file was auto-generated by Fern from our API Definition. | ||
*/ | ||
|
||
import * as serializers from "../../../index"; | ||
import * as FernConjure from "../../../../api/index"; | ||
import * as core from "../../../../core"; | ||
import { ConjureEnumWithDocs } from "./ConjureEnumWithDocs"; | ||
|
||
export const ConjureEnumVariant: core.serialization.Schema< | ||
serializers.ConjureEnumVariant.Raw, | ||
FernConjure.ConjureEnumVariant | ||
> = core.serialization.undiscriminatedUnion([core.serialization.string(), ConjureEnumWithDocs]); | ||
|
||
export declare namespace ConjureEnumVariant { | ||
type Raw = string | ConjureEnumWithDocs.Raw; | ||
} |
23 changes: 23 additions & 0 deletions
23
...rs/conjure/conjure-sdk/src/sdk/serialization/resources/types/types/ConjureEnumWithDocs.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/** | ||
* This file was auto-generated by Fern from our API Definition. | ||
*/ | ||
|
||
import * as serializers from "../../../index"; | ||
import * as FernConjure from "../../../../api/index"; | ||
import * as core from "../../../../core"; | ||
import { WithDocs } from "../../commons/types/WithDocs"; | ||
|
||
export const ConjureEnumWithDocs: core.serialization.ObjectSchema< | ||
serializers.ConjureEnumWithDocs.Raw, | ||
FernConjure.ConjureEnumWithDocs | ||
> = core.serialization | ||
.objectWithoutOptionalProperties({ | ||
value: core.serialization.string(), | ||
}) | ||
.extend(WithDocs); | ||
|
||
export declare namespace ConjureEnumWithDocs { | ||
interface Raw extends WithDocs.Raw { | ||
value: string; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.