@fern-api/dynamic-ir-sdk 58.2.0 → 59.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.
@@ -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 type Auth = FernIr.dynamic.Auth.Basic | FernIr.dynamic.Auth.Bearer | FernIr.dynamic.Auth.Header | FernIr.dynamic.Auth.Oauth;
5
+ export type Auth = FernIr.dynamic.Auth.Basic | FernIr.dynamic.Auth.Bearer | FernIr.dynamic.Auth.Header | FernIr.dynamic.Auth.Oauth | FernIr.dynamic.Auth.Inferred;
6
6
  export declare namespace Auth {
7
7
  interface Basic extends FernIr.dynamic.BasicAuth {
8
8
  type: "basic";
@@ -16,4 +16,7 @@ export declare namespace Auth {
16
16
  interface Oauth extends FernIr.dynamic.OAuth {
17
17
  type: "oauth";
18
18
  }
19
+ interface Inferred extends FernIr.dynamic.InferredAuth {
20
+ type: "inferred";
21
+ }
19
22
  }
@@ -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 type AuthValues = FernIr.dynamic.AuthValues.Basic | FernIr.dynamic.AuthValues.Bearer | FernIr.dynamic.AuthValues.Header | FernIr.dynamic.AuthValues.Oauth;
5
+ export type AuthValues = FernIr.dynamic.AuthValues.Basic | FernIr.dynamic.AuthValues.Bearer | FernIr.dynamic.AuthValues.Header | FernIr.dynamic.AuthValues.Oauth | FernIr.dynamic.AuthValues.Inferred;
6
6
  export declare namespace AuthValues {
7
7
  interface Basic extends FernIr.dynamic.BasicAuthValues {
8
8
  type: "basic";
@@ -16,4 +16,7 @@ export declare namespace AuthValues {
16
16
  interface Oauth extends FernIr.dynamic.OAuthValues {
17
17
  type: "oauth";
18
18
  }
19
+ interface Inferred extends FernIr.dynamic.InferredAuthValues {
20
+ type: "inferred";
21
+ }
19
22
  }
@@ -0,0 +1,5 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export interface InferredAuth {
5
+ }
@@ -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 });
@@ -0,0 +1,5 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export interface InferredAuthValues {
5
+ }
@@ -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 });
@@ -2,6 +2,8 @@ export * from "./Auth";
2
2
  export * from "./AuthValues";
3
3
  export * from "./BasicAuth";
4
4
  export * from "./BasicAuthValues";
5
+ export * from "./InferredAuth";
6
+ export * from "./InferredAuthValues";
5
7
  export * from "./BearerAuth";
6
8
  export * from "./BearerAuthValues";
7
9
  export * from "./HeaderAuth";
@@ -18,6 +18,8 @@ __exportStar(require("./Auth"), exports);
18
18
  __exportStar(require("./AuthValues"), exports);
19
19
  __exportStar(require("./BasicAuth"), exports);
20
20
  __exportStar(require("./BasicAuthValues"), exports);
21
+ __exportStar(require("./InferredAuth"), exports);
22
+ __exportStar(require("./InferredAuthValues"), exports);
21
23
  __exportStar(require("./BearerAuth"), exports);
22
24
  __exportStar(require("./BearerAuthValues"), exports);
23
25
  __exportStar(require("./HeaderAuth"), exports);
@@ -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 type Auth = FernIr.dynamic.Auth.Basic | FernIr.dynamic.Auth.Bearer | FernIr.dynamic.Auth.Header | FernIr.dynamic.Auth.Oauth;
5
+ export type Auth = FernIr.dynamic.Auth.Basic | FernIr.dynamic.Auth.Bearer | FernIr.dynamic.Auth.Header | FernIr.dynamic.Auth.Oauth | FernIr.dynamic.Auth.Inferred;
6
6
  export declare namespace Auth {
7
7
  interface Basic extends FernIr.dynamic.BasicAuth {
8
8
  type: "basic";
@@ -16,4 +16,7 @@ export declare namespace Auth {
16
16
  interface Oauth extends FernIr.dynamic.OAuth {
17
17
  type: "oauth";
18
18
  }
19
+ interface Inferred extends FernIr.dynamic.InferredAuth {
20
+ type: "inferred";
21
+ }
19
22
  }
@@ -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 type AuthValues = FernIr.dynamic.AuthValues.Basic | FernIr.dynamic.AuthValues.Bearer | FernIr.dynamic.AuthValues.Header | FernIr.dynamic.AuthValues.Oauth;
5
+ export type AuthValues = FernIr.dynamic.AuthValues.Basic | FernIr.dynamic.AuthValues.Bearer | FernIr.dynamic.AuthValues.Header | FernIr.dynamic.AuthValues.Oauth | FernIr.dynamic.AuthValues.Inferred;
6
6
  export declare namespace AuthValues {
7
7
  interface Basic extends FernIr.dynamic.BasicAuthValues {
8
8
  type: "basic";
@@ -16,4 +16,7 @@ export declare namespace AuthValues {
16
16
  interface Oauth extends FernIr.dynamic.OAuthValues {
17
17
  type: "oauth";
18
18
  }
19
+ interface Inferred extends FernIr.dynamic.InferredAuthValues {
20
+ type: "inferred";
21
+ }
19
22
  }
@@ -0,0 +1,5 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export interface InferredAuth {
5
+ }
@@ -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 });
@@ -0,0 +1,5 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export interface InferredAuthValues {
5
+ }
@@ -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 });
@@ -2,6 +2,8 @@ export * from "./Auth";
2
2
  export * from "./AuthValues";
3
3
  export * from "./BasicAuth";
4
4
  export * from "./BasicAuthValues";
5
+ export * from "./InferredAuth";
6
+ export * from "./InferredAuthValues";
5
7
  export * from "./BearerAuth";
6
8
  export * from "./BearerAuthValues";
7
9
  export * from "./HeaderAuth";
@@ -18,6 +18,8 @@ __exportStar(require("./Auth"), exports);
18
18
  __exportStar(require("./AuthValues"), exports);
19
19
  __exportStar(require("./BasicAuth"), exports);
20
20
  __exportStar(require("./BasicAuthValues"), exports);
21
+ __exportStar(require("./InferredAuth"), exports);
22
+ __exportStar(require("./InferredAuthValues"), exports);
21
23
  __exportStar(require("./BearerAuth"), exports);
22
24
  __exportStar(require("./BearerAuthValues"), exports);
23
25
  __exportStar(require("./HeaderAuth"), exports);
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "58.2.0";
1
+ export declare const SDK_VERSION = "59.0.0";
package/dist/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SDK_VERSION = void 0;
4
- exports.SDK_VERSION = "58.2.0";
4
+ exports.SDK_VERSION = "59.0.0";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fern-api/dynamic-ir-sdk",
3
- "version": "58.2.0",
3
+ "version": "59.0.0",
4
4
  "private": false,
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",
package/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "58.2.0";
1
+ export declare const SDK_VERSION = "59.0.0";
package/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SDK_VERSION = void 0;
4
- exports.SDK_VERSION = "58.2.0";
4
+ exports.SDK_VERSION = "59.0.0";