-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from SchematicHQ/fern-bot/08-06-2024-0652PM
🌿 Fern Regeneration -- August 6, 2024
- Loading branch information
Showing
19 changed files
with
163 additions
and
5 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
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
13 changes: 13 additions & 0 deletions
13
src/api/resources/plans/types/CountPlansRequestPlanType.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,13 @@ | ||
/** | ||
* This file was auto-generated by Fern from our API Definition. | ||
*/ | ||
|
||
/** | ||
* Filter by plan type | ||
*/ | ||
export type CountPlansRequestPlanType = "plan" | "add_on"; | ||
|
||
export const CountPlansRequestPlanType = { | ||
Plan: "plan", | ||
AddOn: "add_on", | ||
} as const; |
13 changes: 13 additions & 0 deletions
13
src/api/resources/plans/types/CountPlansResponseParamsPlanType.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,13 @@ | ||
/** | ||
* This file was auto-generated by Fern from our API Definition. | ||
*/ | ||
|
||
/** | ||
* Filter by plan type | ||
*/ | ||
export type CountPlansResponseParamsPlanType = "plan" | "add_on"; | ||
|
||
export const CountPlansResponseParamsPlanType = { | ||
Plan: "plan", | ||
AddOn: "add_on", | ||
} as const; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/** | ||
* This file was auto-generated by Fern from our API Definition. | ||
*/ | ||
|
||
/** | ||
* Filter by plan type | ||
*/ | ||
export type ListPlansRequestPlanType = "plan" | "add_on"; | ||
|
||
export const ListPlansRequestPlanType = { | ||
Plan: "plan", | ||
AddOn: "add_on", | ||
} as const; |
13 changes: 13 additions & 0 deletions
13
src/api/resources/plans/types/ListPlansResponseParamsPlanType.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,13 @@ | ||
/** | ||
* This file was auto-generated by Fern from our API Definition. | ||
*/ | ||
|
||
/** | ||
* Filter by plan type | ||
*/ | ||
export type ListPlansResponseParamsPlanType = "plan" | "add_on"; | ||
|
||
export const ListPlansResponseParamsPlanType = { | ||
Plan: "plan", | ||
AddOn: "add_on", | ||
} as const; |
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
16 changes: 16 additions & 0 deletions
16
src/serialization/resources/plans/types/CountPlansRequestPlanType.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,16 @@ | ||
/** | ||
* This file was auto-generated by Fern from our API Definition. | ||
*/ | ||
|
||
import * as serializers from "../../../index"; | ||
import * as Schematic from "../../../../api/index"; | ||
import * as core from "../../../../core"; | ||
|
||
export const CountPlansRequestPlanType: core.serialization.Schema< | ||
serializers.CountPlansRequestPlanType.Raw, | ||
Schematic.CountPlansRequestPlanType | ||
> = core.serialization.enum_(["plan", "add_on"]); | ||
|
||
export declare namespace CountPlansRequestPlanType { | ||
type Raw = "plan" | "add_on"; | ||
} |
16 changes: 16 additions & 0 deletions
16
src/serialization/resources/plans/types/CountPlansResponseParamsPlanType.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,16 @@ | ||
/** | ||
* This file was auto-generated by Fern from our API Definition. | ||
*/ | ||
|
||
import * as serializers from "../../../index"; | ||
import * as Schematic from "../../../../api/index"; | ||
import * as core from "../../../../core"; | ||
|
||
export const CountPlansResponseParamsPlanType: core.serialization.Schema< | ||
serializers.CountPlansResponseParamsPlanType.Raw, | ||
Schematic.CountPlansResponseParamsPlanType | ||
> = core.serialization.enum_(["plan", "add_on"]); | ||
|
||
export declare namespace CountPlansResponseParamsPlanType { | ||
type Raw = "plan" | "add_on"; | ||
} |
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
16 changes: 16 additions & 0 deletions
16
src/serialization/resources/plans/types/ListPlansRequestPlanType.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,16 @@ | ||
/** | ||
* This file was auto-generated by Fern from our API Definition. | ||
*/ | ||
|
||
import * as serializers from "../../../index"; | ||
import * as Schematic from "../../../../api/index"; | ||
import * as core from "../../../../core"; | ||
|
||
export const ListPlansRequestPlanType: core.serialization.Schema< | ||
serializers.ListPlansRequestPlanType.Raw, | ||
Schematic.ListPlansRequestPlanType | ||
> = core.serialization.enum_(["plan", "add_on"]); | ||
|
||
export declare namespace ListPlansRequestPlanType { | ||
type Raw = "plan" | "add_on"; | ||
} |
16 changes: 16 additions & 0 deletions
16
src/serialization/resources/plans/types/ListPlansResponseParamsPlanType.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,16 @@ | ||
/** | ||
* This file was auto-generated by Fern from our API Definition. | ||
*/ | ||
|
||
import * as serializers from "../../../index"; | ||
import * as Schematic from "../../../../api/index"; | ||
import * as core from "../../../../core"; | ||
|
||
export const ListPlansResponseParamsPlanType: core.serialization.Schema< | ||
serializers.ListPlansResponseParamsPlanType.Raw, | ||
Schematic.ListPlansResponseParamsPlanType | ||
> = core.serialization.enum_(["plan", "add_on"]); | ||
|
||
export declare namespace ListPlansResponseParamsPlanType { | ||
type Raw = "plan" | "add_on"; | ||
} |
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