@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.
- package/api/resources/dynamic/resources/index.d.ts +2 -0
- package/api/resources/dynamic/resources/index.js +3 -1
- package/api/resources/dynamic/resources/ir/types/DynamicIntermediateRepresentation.d.ts +5 -0
- package/api/resources/dynamic/resources/variables/index.d.ts +1 -0
- package/api/resources/dynamic/resources/variables/index.js +17 -0
- package/api/resources/dynamic/resources/variables/types/VariableDeclaration.d.ts +16 -0
- package/api/resources/dynamic/resources/variables/types/VariableDeclaration.js +5 -0
- package/api/resources/dynamic/resources/variables/types/index.d.ts +1 -0
- package/api/resources/dynamic/resources/variables/types/index.js +17 -0
- package/dist/api/resources/dynamic/resources/index.d.ts +2 -0
- package/dist/api/resources/dynamic/resources/index.js +3 -1
- package/dist/api/resources/dynamic/resources/ir/types/DynamicIntermediateRepresentation.d.ts +5 -0
- package/dist/api/resources/dynamic/resources/variables/index.d.ts +1 -0
- package/dist/api/resources/dynamic/resources/variables/index.js +17 -0
- package/dist/api/resources/dynamic/resources/variables/types/VariableDeclaration.d.ts +16 -0
- package/dist/api/resources/dynamic/resources/variables/types/VariableDeclaration.js +5 -0
- package/dist/api/resources/dynamic/resources/variables/types/index.d.ts +1 -0
- package/dist/api/resources/dynamic/resources/variables/types/index.js +17 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -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 @@
|
|
|
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);
|
|
@@ -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);
|
package/dist/api/resources/dynamic/resources/ir/types/DynamicIntermediateRepresentation.d.ts
CHANGED
|
@@ -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 @@
|
|
|
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.
|
|
1
|
+
export declare const SDK_VERSION = "60.4.0";
|
package/dist/version.js
CHANGED
package/package.json
CHANGED
package/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "60.
|
|
1
|
+
export declare const SDK_VERSION = "60.4.0";
|
package/version.js
CHANGED