@fern-api/dynamic-ir-sdk 53.20.0 → 53.22.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.
@@ -8,4 +8,5 @@ export interface InlinedRequest {
8
8
  queryParameters: FernIr.dynamic.NamedParameter[] | undefined;
9
9
  headers: FernIr.dynamic.NamedParameter[] | undefined;
10
10
  body: FernIr.dynamic.InlinedRequestBody | undefined;
11
+ metadata: FernIr.dynamic.InlinedRequestMetadata | undefined;
11
12
  }
@@ -0,0 +1,21 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export interface InlinedRequestMetadata {
5
+ /**
6
+ * If true, the path parameters should be included as properties in the
7
+ * inlined request type, but only if the generator is explicitly configured
8
+ * to do so.
9
+ *
10
+ * By default, the path parameters are generated as positional parameters.
11
+ */
12
+ includePathParameters: boolean;
13
+ /**
14
+ * If true, the path parameters are the only parameters specified in the
15
+ * inlined request.
16
+ *
17
+ * In combination with inludePathParameters, this influences whether or not the
18
+ * inlined request type should be generated at all.
19
+ */
20
+ onlyPathParameters: boolean;
21
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -4,6 +4,7 @@ export * from "./Request";
4
4
  export * from "./Response";
5
5
  export * from "./BodyRequest";
6
6
  export * from "./InlinedRequest";
7
+ export * from "./InlinedRequestMetadata";
7
8
  export * from "./InlinedRequestBody";
8
9
  export * from "./ReferencedRequestBody";
9
10
  export * from "./ReferencedRequestBodyType";
@@ -20,6 +20,7 @@ __exportStar(require("./Request"), exports);
20
20
  __exportStar(require("./Response"), exports);
21
21
  __exportStar(require("./BodyRequest"), exports);
22
22
  __exportStar(require("./InlinedRequest"), exports);
23
+ __exportStar(require("./InlinedRequestMetadata"), exports);
23
24
  __exportStar(require("./InlinedRequestBody"), exports);
24
25
  __exportStar(require("./ReferencedRequestBody"), exports);
25
26
  __exportStar(require("./ReferencedRequestBodyType"), exports);
@@ -8,4 +8,5 @@ export interface InlinedRequest {
8
8
  queryParameters: FernIr.dynamic.NamedParameter[] | undefined;
9
9
  headers: FernIr.dynamic.NamedParameter[] | undefined;
10
10
  body: FernIr.dynamic.InlinedRequestBody | undefined;
11
+ metadata: FernIr.dynamic.InlinedRequestMetadata | undefined;
11
12
  }
@@ -0,0 +1,21 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export interface InlinedRequestMetadata {
5
+ /**
6
+ * If true, the path parameters should be included as properties in the
7
+ * inlined request type, but only if the generator is explicitly configured
8
+ * to do so.
9
+ *
10
+ * By default, the path parameters are generated as positional parameters.
11
+ */
12
+ includePathParameters: boolean;
13
+ /**
14
+ * If true, the path parameters are the only parameters specified in the
15
+ * inlined request.
16
+ *
17
+ * In combination with inludePathParameters, this influences whether or not the
18
+ * inlined request type should be generated at all.
19
+ */
20
+ onlyPathParameters: boolean;
21
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -4,6 +4,7 @@ export * from "./Request";
4
4
  export * from "./Response";
5
5
  export * from "./BodyRequest";
6
6
  export * from "./InlinedRequest";
7
+ export * from "./InlinedRequestMetadata";
7
8
  export * from "./InlinedRequestBody";
8
9
  export * from "./ReferencedRequestBody";
9
10
  export * from "./ReferencedRequestBodyType";
@@ -20,6 +20,7 @@ __exportStar(require("./Request"), exports);
20
20
  __exportStar(require("./Response"), exports);
21
21
  __exportStar(require("./BodyRequest"), exports);
22
22
  __exportStar(require("./InlinedRequest"), exports);
23
+ __exportStar(require("./InlinedRequestMetadata"), exports);
23
24
  __exportStar(require("./InlinedRequestBody"), exports);
24
25
  __exportStar(require("./ReferencedRequestBody"), exports);
25
26
  __exportStar(require("./ReferencedRequestBodyType"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fern-api/dynamic-ir-sdk",
3
- "version": "53.20.0",
3
+ "version": "53.22.0",
4
4
  "private": false,
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",