@fern-api/dynamic-ir-sdk 60.3.0 → 60.4.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.
Files changed (23) hide show
  1. package/api/resources/dynamic/resources/index.d.ts +2 -0
  2. package/api/resources/dynamic/resources/index.js +3 -1
  3. package/api/resources/dynamic/resources/ir/types/DynamicIntermediateRepresentation.d.ts +5 -0
  4. package/api/resources/dynamic/resources/variables/index.d.ts +1 -0
  5. package/api/resources/dynamic/resources/variables/index.js +17 -0
  6. package/api/resources/dynamic/resources/variables/types/VariableDeclaration.d.ts +16 -0
  7. package/api/resources/dynamic/resources/variables/types/VariableDeclaration.js +5 -0
  8. package/api/resources/dynamic/resources/variables/types/index.d.ts +1 -0
  9. package/api/resources/dynamic/resources/variables/types/index.js +17 -0
  10. package/dist/api/resources/dynamic/resources/index.d.ts +2 -0
  11. package/dist/api/resources/dynamic/resources/index.js +3 -1
  12. package/dist/api/resources/dynamic/resources/ir/types/DynamicIntermediateRepresentation.d.ts +5 -0
  13. package/dist/api/resources/dynamic/resources/variables/index.d.ts +1 -0
  14. package/dist/api/resources/dynamic/resources/variables/index.js +17 -0
  15. package/dist/api/resources/dynamic/resources/variables/types/VariableDeclaration.d.ts +16 -0
  16. package/dist/api/resources/dynamic/resources/variables/types/VariableDeclaration.js +5 -0
  17. package/dist/api/resources/dynamic/resources/variables/types/index.d.ts +1 -0
  18. package/dist/api/resources/dynamic/resources/variables/types/index.js +17 -0
  19. package/dist/version.d.ts +1 -1
  20. package/dist/version.js +1 -1
  21. package/package.json +1 -1
  22. package/version.d.ts +1 -1
  23. package/version.js +1 -1
@@ -12,3 +12,5 @@ export * as snippets from "./snippets";
12
12
  export * from "./snippets/types";
13
13
  export * as types from "./types";
14
14
  export * from "./types/types";
15
+ export * as variables from "./variables";
16
+ export * from "./variables/types";
@@ -36,7 +36,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
36
36
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
37
37
  };
38
38
  Object.defineProperty(exports, "__esModule", { value: true });
39
- exports.types = exports.snippets = exports.ir = exports.environment = exports.endpoints = exports.declaration = exports.auth = void 0;
39
+ exports.variables = exports.types = exports.snippets = exports.ir = exports.environment = exports.endpoints = exports.declaration = exports.auth = void 0;
40
40
  exports.auth = __importStar(require("./auth"));
41
41
  __exportStar(require("./auth/types"), exports);
42
42
  exports.declaration = __importStar(require("./declaration"));
@@ -51,3 +51,5 @@ exports.snippets = __importStar(require("./snippets"));
51
51
  __exportStar(require("./snippets/types"), exports);
52
52
  exports.types = __importStar(require("./types"));
53
53
  __exportStar(require("./types/types"), exports);
54
+ exports.variables = __importStar(require("./variables"));
55
+ __exportStar(require("./variables/types"), exports);
@@ -28,5 +28,10 @@ export interface DynamicIntermediateRepresentation {
28
28
  * constructor.
29
29
  */
30
30
  pathParameters?: FernIr.dynamic.NamedParameter[];
31
+ /**
32
+ * Variables that are configured at the client level and can be
33
+ * referenced in path parameters and other contexts.
34
+ */
35
+ variables?: FernIr.dynamic.VariableDeclaration[];
31
36
  generatorConfig?: FernIr.dynamic.GeneratorConfig;
32
37
  }
@@ -0,0 +1 @@
1
+ export * from "./types";
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./types"), exports);
@@ -0,0 +1,16 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as FernIr from "../../../../../index";
5
+ /**
6
+ * A variable that is configured at the client level and can be
7
+ * referenced in path parameters and other contexts.
8
+ */
9
+ export interface VariableDeclaration {
10
+ /** The unique identifier for the variable */
11
+ id: string;
12
+ /** The name of the variable */
13
+ name: FernIr.Name;
14
+ /** The type of the variable */
15
+ typeReference: FernIr.dynamic.TypeReference;
16
+ }
@@ -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 @@
1
+ export * from "./VariableDeclaration";
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./VariableDeclaration"), exports);
@@ -12,3 +12,5 @@ export * as snippets from "./snippets";
12
12
  export * from "./snippets/types";
13
13
  export * as types from "./types";
14
14
  export * from "./types/types";
15
+ export * as variables from "./variables";
16
+ export * from "./variables/types";
@@ -36,7 +36,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
36
36
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
37
37
  };
38
38
  Object.defineProperty(exports, "__esModule", { value: true });
39
- exports.types = exports.snippets = exports.ir = exports.environment = exports.endpoints = exports.declaration = exports.auth = void 0;
39
+ exports.variables = exports.types = exports.snippets = exports.ir = exports.environment = exports.endpoints = exports.declaration = exports.auth = void 0;
40
40
  exports.auth = __importStar(require("./auth"));
41
41
  __exportStar(require("./auth/types"), exports);
42
42
  exports.declaration = __importStar(require("./declaration"));
@@ -51,3 +51,5 @@ exports.snippets = __importStar(require("./snippets"));
51
51
  __exportStar(require("./snippets/types"), exports);
52
52
  exports.types = __importStar(require("./types"));
53
53
  __exportStar(require("./types/types"), exports);
54
+ exports.variables = __importStar(require("./variables"));
55
+ __exportStar(require("./variables/types"), exports);
@@ -28,5 +28,10 @@ export interface DynamicIntermediateRepresentation {
28
28
  * constructor.
29
29
  */
30
30
  pathParameters?: FernIr.dynamic.NamedParameter[];
31
+ /**
32
+ * Variables that are configured at the client level and can be
33
+ * referenced in path parameters and other contexts.
34
+ */
35
+ variables?: FernIr.dynamic.VariableDeclaration[];
31
36
  generatorConfig?: FernIr.dynamic.GeneratorConfig;
32
37
  }
@@ -0,0 +1 @@
1
+ export * from "./types";
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./types"), exports);
@@ -0,0 +1,16 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as FernIr from "../../../../../index";
5
+ /**
6
+ * A variable that is configured at the client level and can be
7
+ * referenced in path parameters and other contexts.
8
+ */
9
+ export interface VariableDeclaration {
10
+ /** The unique identifier for the variable */
11
+ id: string;
12
+ /** The name of the variable */
13
+ name: FernIr.Name;
14
+ /** The type of the variable */
15
+ typeReference: FernIr.dynamic.TypeReference;
16
+ }
@@ -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 @@
1
+ export * from "./VariableDeclaration";
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./VariableDeclaration"), exports);
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "60.3.0";
1
+ export declare const SDK_VERSION = "60.4.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 = "60.3.0";
4
+ exports.SDK_VERSION = "60.4.0";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fern-api/dynamic-ir-sdk",
3
- "version": "60.3.0",
3
+ "version": "60.4.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 = "60.3.0";
1
+ export declare const SDK_VERSION = "60.4.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 = "60.3.0";
4
+ exports.SDK_VERSION = "60.4.0";