@fern-api/dynamic-ir-sdk 54.0.0 → 55.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api/resources/dynamic/resources/environment/types/EnvironmentValues.d.ts +5 -5
- package/api/resources/dynamic/resources/types/types/TypeReference.d.ts +5 -1
- package/dist/api/resources/dynamic/resources/environment/types/EnvironmentValues.d.ts +5 -5
- package/dist/api/resources/dynamic/resources/types/types/TypeReference.d.ts +5 -1
- package/package.json +1 -1
|
@@ -6,12 +6,12 @@ import * as FernIr from "../../../../../index";
|
|
|
6
6
|
* Represents the value to use for a specific environment. There are three cases:
|
|
7
7
|
*
|
|
8
8
|
* 1. When sent as an EnvironmentId string, the generator assumes the value matches the name of the
|
|
9
|
-
*
|
|
9
|
+
* environment (e.g. "Staging"), and returns an error otherwise.
|
|
10
10
|
*
|
|
11
11
|
* 2. If the API supports multiple environment URLs, send a map of URLs, e.g.
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
*
|
|
15
|
-
*
|
|
12
|
+
* {
|
|
13
|
+
* "ec2": "https://staging.ec2.aws.com",
|
|
14
|
+
* "s3": "https://staging.s3.aws.com"
|
|
15
|
+
* }
|
|
16
16
|
*/
|
|
17
17
|
export declare type EnvironmentValues = FernIr.EnvironmentId | FernIr.dynamic.MultipleEnvironmentUrlValues;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* This file was auto-generated by Fern from our API Definition.
|
|
3
3
|
*/
|
|
4
4
|
import * as FernIr from "../../../../../index";
|
|
5
|
-
export declare type TypeReference = FernIr.dynamic.TypeReference.List | FernIr.dynamic.TypeReference.Literal | FernIr.dynamic.TypeReference.Map | FernIr.dynamic.TypeReference.Named | FernIr.dynamic.TypeReference.Optional | FernIr.dynamic.TypeReference.Primitive | FernIr.dynamic.TypeReference.Set | FernIr.dynamic.TypeReference.Unknown;
|
|
5
|
+
export declare type TypeReference = FernIr.dynamic.TypeReference.List | FernIr.dynamic.TypeReference.Literal | FernIr.dynamic.TypeReference.Map | FernIr.dynamic.TypeReference.Named | FernIr.dynamic.TypeReference.Nullable | FernIr.dynamic.TypeReference.Optional | FernIr.dynamic.TypeReference.Primitive | FernIr.dynamic.TypeReference.Set | FernIr.dynamic.TypeReference.Unknown;
|
|
6
6
|
export declare namespace TypeReference {
|
|
7
7
|
interface List {
|
|
8
8
|
type: "list";
|
|
@@ -19,6 +19,10 @@ export declare namespace TypeReference {
|
|
|
19
19
|
type: "named";
|
|
20
20
|
value: FernIr.TypeId;
|
|
21
21
|
}
|
|
22
|
+
interface Nullable {
|
|
23
|
+
type: "nullable";
|
|
24
|
+
value: FernIr.dynamic.TypeReference;
|
|
25
|
+
}
|
|
22
26
|
interface Optional {
|
|
23
27
|
type: "optional";
|
|
24
28
|
value: FernIr.dynamic.TypeReference;
|
|
@@ -6,12 +6,12 @@ import * as FernIr from "../../../../../index";
|
|
|
6
6
|
* Represents the value to use for a specific environment. There are three cases:
|
|
7
7
|
*
|
|
8
8
|
* 1. When sent as an EnvironmentId string, the generator assumes the value matches the name of the
|
|
9
|
-
*
|
|
9
|
+
* environment (e.g. "Staging"), and returns an error otherwise.
|
|
10
10
|
*
|
|
11
11
|
* 2. If the API supports multiple environment URLs, send a map of URLs, e.g.
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
*
|
|
15
|
-
*
|
|
12
|
+
* {
|
|
13
|
+
* "ec2": "https://staging.ec2.aws.com",
|
|
14
|
+
* "s3": "https://staging.s3.aws.com"
|
|
15
|
+
* }
|
|
16
16
|
*/
|
|
17
17
|
export declare type EnvironmentValues = FernIr.EnvironmentId | FernIr.dynamic.MultipleEnvironmentUrlValues;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* This file was auto-generated by Fern from our API Definition.
|
|
3
3
|
*/
|
|
4
4
|
import * as FernIr from "../../../../../index";
|
|
5
|
-
export declare type TypeReference = FernIr.dynamic.TypeReference.List | FernIr.dynamic.TypeReference.Literal | FernIr.dynamic.TypeReference.Map | FernIr.dynamic.TypeReference.Named | FernIr.dynamic.TypeReference.Optional | FernIr.dynamic.TypeReference.Primitive | FernIr.dynamic.TypeReference.Set | FernIr.dynamic.TypeReference.Unknown;
|
|
5
|
+
export declare type TypeReference = FernIr.dynamic.TypeReference.List | FernIr.dynamic.TypeReference.Literal | FernIr.dynamic.TypeReference.Map | FernIr.dynamic.TypeReference.Named | FernIr.dynamic.TypeReference.Nullable | FernIr.dynamic.TypeReference.Optional | FernIr.dynamic.TypeReference.Primitive | FernIr.dynamic.TypeReference.Set | FernIr.dynamic.TypeReference.Unknown;
|
|
6
6
|
export declare namespace TypeReference {
|
|
7
7
|
interface List {
|
|
8
8
|
type: "list";
|
|
@@ -19,6 +19,10 @@ export declare namespace TypeReference {
|
|
|
19
19
|
type: "named";
|
|
20
20
|
value: FernIr.TypeId;
|
|
21
21
|
}
|
|
22
|
+
interface Nullable {
|
|
23
|
+
type: "nullable";
|
|
24
|
+
value: FernIr.dynamic.TypeReference;
|
|
25
|
+
}
|
|
22
26
|
interface Optional {
|
|
23
27
|
type: "optional";
|
|
24
28
|
value: FernIr.dynamic.TypeReference;
|