scorecard-ai 0.1.10 → 0.1.12
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/Client.d.ts +3 -0
- package/Client.js +5 -0
- package/README.md +1 -0
- package/api/resources/index.d.ts +2 -0
- package/api/resources/index.js +3 -1
- package/api/resources/run/client/Client.d.ts +12 -1
- package/api/resources/run/client/Client.js +15 -4
- package/api/resources/run/client/requests/RunCreateParams.d.ts +16 -1
- package/api/resources/score/client/Client.d.ts +44 -0
- package/api/resources/score/client/Client.js +239 -0
- package/api/resources/score/client/index.d.ts +1 -0
- package/api/resources/score/client/index.js +17 -0
- package/api/resources/score/client/requests/ScoreCreateParams.d.ts +15 -0
- package/api/resources/score/client/requests/ScoreUpdateParams.d.ts +12 -0
- package/api/resources/score/client/requests/index.d.ts +2 -0
- package/api/resources/score/client/requests/index.js +2 -0
- package/api/resources/score/index.d.ts +1 -0
- package/api/resources/score/index.js +17 -0
- package/api/resources/testcase/client/Client.d.ts +11 -0
- package/api/resources/testcase/client/Client.js +14 -3
- package/api/resources/testcase/client/requests/TestcaseCreateParams.d.ts +6 -0
- package/api/resources/testrecord/client/Client.d.ts +7 -1
- package/api/resources/testrecord/client/Client.js +9 -3
- package/api/resources/testrecord/client/requests/TestrecordCreateParams.d.ts +10 -3
- package/api/resources/testrecord/types/TestrecordCreateParamsModelDebugInfoValue.d.ts +4 -0
- package/api/resources/testrecord/types/TestrecordCreateParamsModelParamsValue.d.ts +4 -0
- package/api/resources/testrecord/types/index.d.ts +2 -0
- package/api/resources/testrecord/types/index.js +2 -0
- package/api/resources/testset/client/Client.d.ts +12 -4
- package/api/resources/testset/client/Client.js +23 -15
- package/api/resources/testset/client/requests/TestsetCreateParams.d.ts +8 -2
- package/api/resources/testset/client/requests/TestsetGetTestcasesRequest.d.ts +6 -2
- package/api/types/{LibDtoTypesCreateRunParams.d.ts → CreateGithubWorkflowParams.d.ts} +1 -1
- package/api/types/CreateRunParams.d.ts +1 -6
- package/{dist/api/types/CustomSchemaInput.d.ts → api/types/CustomSchema.d.ts} +1 -1
- package/api/types/Grade.d.ts +14 -0
- package/api/types/RunStatus.d.ts +2 -1
- package/api/types/RunStatus.js +1 -0
- package/api/types/TestRecordCreate.d.ts +1 -13
- package/api/types/TestSetCreate.d.ts +1 -5
- package/api/types/Testrecord.d.ts +7 -2
- package/api/types/TestrecordModelDebugInfoValue.d.ts +4 -0
- package/api/types/TestrecordModelParamsValue.d.ts +4 -0
- package/api/types/Testset.d.ts +1 -1
- package/api/types/index.d.ts +5 -6
- package/api/types/index.js +5 -6
- package/dist/Client.d.ts +3 -0
- package/dist/Client.js +5 -0
- package/dist/api/resources/index.d.ts +2 -0
- package/dist/api/resources/index.js +3 -1
- package/dist/api/resources/run/client/Client.d.ts +12 -1
- package/dist/api/resources/run/client/Client.js +15 -4
- package/dist/api/resources/run/client/requests/RunCreateParams.d.ts +16 -1
- package/dist/api/resources/score/client/Client.d.ts +44 -0
- package/dist/api/resources/score/client/Client.js +239 -0
- package/dist/api/resources/score/client/index.d.ts +1 -0
- package/dist/api/resources/score/client/index.js +17 -0
- package/dist/api/resources/score/client/requests/ScoreCreateParams.d.ts +15 -0
- package/dist/api/resources/score/client/requests/ScoreUpdateParams.d.ts +12 -0
- package/dist/api/resources/score/client/requests/index.d.ts +2 -0
- package/dist/api/resources/score/client/requests/index.js +2 -0
- package/dist/api/resources/score/index.d.ts +1 -0
- package/dist/api/resources/score/index.js +17 -0
- package/dist/api/resources/testcase/client/Client.d.ts +11 -0
- package/dist/api/resources/testcase/client/Client.js +14 -3
- package/dist/api/resources/testcase/client/requests/TestcaseCreateParams.d.ts +6 -0
- package/dist/api/resources/testrecord/client/Client.d.ts +7 -1
- package/dist/api/resources/testrecord/client/Client.js +9 -3
- package/dist/api/resources/testrecord/client/requests/TestrecordCreateParams.d.ts +10 -3
- package/dist/api/resources/testrecord/types/TestrecordCreateParamsModelDebugInfoValue.d.ts +4 -0
- package/dist/api/resources/testrecord/types/TestrecordCreateParamsModelParamsValue.d.ts +4 -0
- package/dist/api/resources/testrecord/types/TestrecordCreateParamsModelParamsValue.js +5 -0
- package/dist/api/resources/testrecord/types/index.d.ts +2 -0
- package/dist/api/resources/testrecord/types/index.js +2 -0
- package/dist/api/resources/testset/client/Client.d.ts +12 -4
- package/dist/api/resources/testset/client/Client.js +23 -15
- package/dist/api/resources/testset/client/requests/TestsetCreateParams.d.ts +8 -2
- package/dist/api/resources/testset/client/requests/TestsetGetTestcasesRequest.d.ts +6 -2
- package/dist/api/types/{LibDtoTypesTestSetCreate.d.ts → CreateGithubWorkflowParams.d.ts} +1 -1
- package/dist/api/types/CreateGithubWorkflowParams.js +5 -0
- package/dist/api/types/CreateRunParams.d.ts +1 -6
- package/{api/types/CustomSchemaInput.d.ts → dist/api/types/CustomSchema.d.ts} +1 -1
- package/dist/api/types/CustomSchema.js +5 -0
- package/dist/api/types/Grade.d.ts +14 -0
- package/dist/api/types/Grade.js +5 -0
- package/dist/api/types/RunStatus.d.ts +2 -1
- package/dist/api/types/RunStatus.js +1 -0
- package/dist/api/types/TestRecordCreate.d.ts +1 -13
- package/dist/api/types/TestSetCreate.d.ts +1 -5
- package/dist/api/types/Testrecord.d.ts +7 -2
- package/dist/api/types/TestrecordModelDebugInfoValue.d.ts +4 -0
- package/dist/api/types/TestrecordModelDebugInfoValue.js +5 -0
- package/dist/api/types/TestrecordModelParamsValue.d.ts +4 -0
- package/dist/api/types/TestrecordModelParamsValue.js +5 -0
- package/dist/api/types/Testset.d.ts +1 -1
- package/dist/api/types/index.d.ts +5 -6
- package/dist/api/types/index.js +5 -6
- package/dist/serialization/resources/index.d.ts +2 -0
- package/dist/serialization/resources/index.js +3 -1
- package/dist/serialization/resources/run/client/requests/RunCreateParams.d.ts +4 -1
- package/dist/serialization/resources/run/client/requests/RunCreateParams.js +4 -1
- package/dist/serialization/resources/score/client/index.d.ts +1 -0
- package/dist/serialization/resources/score/client/index.js +17 -0
- package/dist/serialization/resources/score/client/requests/ScoreCreateParams.d.ts +15 -0
- package/dist/serialization/resources/score/client/requests/ScoreCreateParams.js +36 -0
- package/dist/serialization/resources/score/client/requests/ScoreUpdateParams.d.ts +14 -0
- package/dist/serialization/resources/score/client/requests/ScoreUpdateParams.js +35 -0
- package/dist/serialization/resources/score/client/requests/index.d.ts +2 -0
- package/dist/serialization/resources/score/client/requests/index.js +7 -0
- package/dist/serialization/resources/score/index.d.ts +1 -0
- package/dist/serialization/resources/score/index.js +17 -0
- package/dist/serialization/resources/testrecord/client/requests/TestrecordCreateParams.d.ts +6 -3
- package/dist/serialization/resources/testrecord/client/requests/TestrecordCreateParams.js +14 -3
- package/dist/serialization/resources/testrecord/types/TestrecordCreateParamsModelDebugInfoValue.d.ts +10 -0
- package/dist/serialization/resources/testrecord/types/TestrecordCreateParamsModelDebugInfoValue.js +35 -0
- package/dist/serialization/resources/testrecord/types/TestrecordCreateParamsModelParamsValue.d.ts +10 -0
- package/dist/serialization/resources/testrecord/types/TestrecordCreateParamsModelParamsValue.js +35 -0
- package/dist/serialization/resources/testrecord/types/index.d.ts +2 -0
- package/dist/serialization/resources/testrecord/types/index.js +2 -0
- package/dist/serialization/resources/testset/client/requests/TestsetCreateParams.d.ts +2 -2
- package/dist/serialization/resources/testset/client/requests/TestsetCreateParams.js +2 -2
- package/dist/serialization/types/CreateGithubWorkflowParams.d.ts +10 -0
- package/{serialization/types/LibDtoTypesCreateRunParams.js → dist/serialization/types/CreateGithubWorkflowParams.js} +2 -2
- package/dist/serialization/types/CreateRunParams.d.ts +2 -7
- package/dist/serialization/types/CreateRunParams.js +1 -6
- package/{serialization/types/CustomSchemaInput.d.ts → dist/serialization/types/CustomSchema.d.ts} +2 -2
- package/{serialization/types/CustomSchemaInput.js → dist/serialization/types/CustomSchema.js} +2 -2
- package/dist/serialization/types/Grade.d.ts +20 -0
- package/dist/serialization/types/Grade.js +41 -0
- package/dist/serialization/types/RunStatus.d.ts +1 -1
- package/dist/serialization/types/RunStatus.js +1 -0
- package/dist/serialization/types/TestRecordCreate.d.ts +2 -14
- package/dist/serialization/types/TestRecordCreate.js +1 -13
- package/dist/serialization/types/TestSetCreate.d.ts +2 -6
- package/dist/serialization/types/TestSetCreate.js +1 -5
- package/dist/serialization/types/Testrecord.d.ts +7 -2
- package/dist/serialization/types/Testrecord.js +11 -2
- package/dist/serialization/types/TestrecordModelDebugInfoValue.d.ts +10 -0
- package/dist/serialization/types/{LibDtoTypesTestRecordCreate.js → TestrecordModelDebugInfoValue.js} +6 -2
- package/dist/serialization/types/TestrecordModelParamsValue.d.ts +10 -0
- package/dist/serialization/types/{BodyStartGithubWorkflowStartGithubWorkflowPost.js → TestrecordModelParamsValue.js} +6 -2
- package/dist/serialization/types/Testset.d.ts +1 -1
- package/dist/serialization/types/Testset.js +1 -1
- package/dist/serialization/types/index.d.ts +5 -6
- package/dist/serialization/types/index.js +5 -6
- package/package.json +1 -1
- package/serialization/resources/index.d.ts +2 -0
- package/serialization/resources/index.js +3 -1
- package/serialization/resources/run/client/requests/RunCreateParams.d.ts +4 -1
- package/serialization/resources/run/client/requests/RunCreateParams.js +4 -1
- package/serialization/resources/score/client/index.d.ts +1 -0
- package/serialization/resources/score/client/index.js +17 -0
- package/serialization/resources/score/client/requests/ScoreCreateParams.d.ts +15 -0
- package/serialization/resources/score/client/requests/ScoreCreateParams.js +36 -0
- package/serialization/resources/score/client/requests/ScoreUpdateParams.d.ts +14 -0
- package/serialization/resources/score/client/requests/ScoreUpdateParams.js +35 -0
- package/serialization/resources/score/client/requests/index.d.ts +2 -0
- package/serialization/resources/score/client/requests/index.js +7 -0
- package/serialization/resources/score/index.d.ts +1 -0
- package/serialization/resources/score/index.js +17 -0
- package/serialization/resources/testrecord/client/requests/TestrecordCreateParams.d.ts +6 -3
- package/serialization/resources/testrecord/client/requests/TestrecordCreateParams.js +14 -3
- package/serialization/resources/testrecord/types/TestrecordCreateParamsModelDebugInfoValue.d.ts +10 -0
- package/serialization/resources/testrecord/types/TestrecordCreateParamsModelDebugInfoValue.js +35 -0
- package/serialization/resources/testrecord/types/TestrecordCreateParamsModelParamsValue.d.ts +10 -0
- package/serialization/resources/testrecord/types/TestrecordCreateParamsModelParamsValue.js +35 -0
- package/serialization/resources/testrecord/types/index.d.ts +2 -0
- package/serialization/resources/testrecord/types/index.js +2 -0
- package/serialization/resources/testset/client/requests/TestsetCreateParams.d.ts +2 -2
- package/serialization/resources/testset/client/requests/TestsetCreateParams.js +2 -2
- package/serialization/types/CreateGithubWorkflowParams.d.ts +10 -0
- package/{dist/serialization/types/LibDtoTypesCreateRunParams.js → serialization/types/CreateGithubWorkflowParams.js} +2 -2
- package/serialization/types/CreateRunParams.d.ts +2 -7
- package/serialization/types/CreateRunParams.js +1 -6
- package/{dist/serialization/types/CustomSchemaInput.d.ts → serialization/types/CustomSchema.d.ts} +2 -2
- package/{dist/serialization/types/CustomSchemaInput.js → serialization/types/CustomSchema.js} +2 -2
- package/serialization/types/Grade.d.ts +20 -0
- package/serialization/types/Grade.js +41 -0
- package/serialization/types/RunStatus.d.ts +1 -1
- package/serialization/types/RunStatus.js +1 -0
- package/serialization/types/TestRecordCreate.d.ts +2 -14
- package/serialization/types/TestRecordCreate.js +1 -13
- package/serialization/types/TestSetCreate.d.ts +2 -6
- package/serialization/types/TestSetCreate.js +1 -5
- package/serialization/types/Testrecord.d.ts +7 -2
- package/serialization/types/Testrecord.js +11 -2
- package/serialization/types/TestrecordModelDebugInfoValue.d.ts +10 -0
- package/serialization/types/TestrecordModelDebugInfoValue.js +35 -0
- package/serialization/types/TestrecordModelParamsValue.d.ts +10 -0
- package/{dist/serialization/types/LibDtoTypesTestSetCreate.js → serialization/types/TestrecordModelParamsValue.js} +6 -2
- package/serialization/types/Testset.d.ts +1 -1
- package/serialization/types/Testset.js +1 -1
- package/serialization/types/index.d.ts +5 -6
- package/serialization/types/index.js +5 -6
- package/api/types/BodyStartGithubWorkflowStartGithubWorkflowPost.d.ts +0 -4
- package/api/types/CustomSchemaOutput.d.ts +0 -11
- package/api/types/LibDtoTypesTestRecordCreate.d.ts +0 -4
- package/api/types/LibDtoTypesTestSetCreate.d.ts +0 -4
- package/dist/api/types/BodyStartGithubWorkflowStartGithubWorkflowPost.d.ts +0 -4
- package/dist/api/types/CustomSchemaOutput.d.ts +0 -11
- package/dist/api/types/LibDtoTypesCreateRunParams.d.ts +0 -4
- package/dist/api/types/LibDtoTypesTestRecordCreate.d.ts +0 -4
- package/dist/serialization/types/BodyStartGithubWorkflowStartGithubWorkflowPost.d.ts +0 -10
- package/dist/serialization/types/CustomSchemaOutput.d.ts +0 -12
- package/dist/serialization/types/CustomSchemaOutput.js +0 -44
- package/dist/serialization/types/LibDtoTypesCreateRunParams.d.ts +0 -10
- package/dist/serialization/types/LibDtoTypesTestRecordCreate.d.ts +0 -10
- package/dist/serialization/types/LibDtoTypesTestSetCreate.d.ts +0 -10
- package/serialization/types/BodyStartGithubWorkflowStartGithubWorkflowPost.d.ts +0 -10
- package/serialization/types/BodyStartGithubWorkflowStartGithubWorkflowPost.js +0 -31
- package/serialization/types/CustomSchemaOutput.d.ts +0 -12
- package/serialization/types/CustomSchemaOutput.js +0 -44
- package/serialization/types/LibDtoTypesCreateRunParams.d.ts +0 -10
- package/serialization/types/LibDtoTypesTestRecordCreate.d.ts +0 -10
- package/serialization/types/LibDtoTypesTestRecordCreate.js +0 -31
- package/serialization/types/LibDtoTypesTestSetCreate.d.ts +0 -10
- package/serialization/types/LibDtoTypesTestSetCreate.js +0 -31
- /package/api/{types/BodyStartGithubWorkflowStartGithubWorkflowPost.js → resources/score/client/requests/ScoreCreateParams.js} +0 -0
- /package/api/{types/CustomSchemaInput.js → resources/score/client/requests/ScoreUpdateParams.js} +0 -0
- /package/api/{types/CustomSchemaOutput.js → resources/testrecord/types/TestrecordCreateParamsModelDebugInfoValue.js} +0 -0
- /package/api/{types/LibDtoTypesCreateRunParams.js → resources/testrecord/types/TestrecordCreateParamsModelParamsValue.js} +0 -0
- /package/api/types/{LibDtoTypesTestRecordCreate.js → CreateGithubWorkflowParams.js} +0 -0
- /package/api/types/{LibDtoTypesTestSetCreate.js → CustomSchema.js} +0 -0
- /package/{dist/api/types/BodyStartGithubWorkflowStartGithubWorkflowPost.js → api/types/Grade.js} +0 -0
- /package/{dist/api/types/CustomSchemaInput.js → api/types/TestrecordModelDebugInfoValue.js} +0 -0
- /package/{dist/api/types/CustomSchemaOutput.js → api/types/TestrecordModelParamsValue.js} +0 -0
- /package/dist/api/{types/LibDtoTypesCreateRunParams.js → resources/score/client/requests/ScoreCreateParams.js} +0 -0
- /package/dist/api/{types/LibDtoTypesTestRecordCreate.js → resources/score/client/requests/ScoreUpdateParams.js} +0 -0
- /package/dist/api/{types/LibDtoTypesTestSetCreate.js → resources/testrecord/types/TestrecordCreateParamsModelDebugInfoValue.js} +0 -0
|
@@ -28,8 +28,4 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
29
|
exports.TestSetCreate = void 0;
|
|
30
30
|
const core = __importStar(require("../../core"));
|
|
31
|
-
exports.TestSetCreate = core.serialization.
|
|
32
|
-
name: core.serialization.string(),
|
|
33
|
-
description: core.serialization.string().optional(),
|
|
34
|
-
usingRetrieval: core.serialization.property("using_retrieval", core.serialization.boolean()),
|
|
35
|
-
});
|
|
31
|
+
exports.TestSetCreate = core.serialization.unknown();
|
|
@@ -10,8 +10,9 @@ export declare namespace Testrecord {
|
|
|
10
10
|
id?: number | null;
|
|
11
11
|
created_at?: string | null;
|
|
12
12
|
run_id: number;
|
|
13
|
-
testset_id
|
|
14
|
-
|
|
13
|
+
testset_id?: number | null;
|
|
14
|
+
testcase_id?: number | null;
|
|
15
|
+
user_query?: string | null;
|
|
15
16
|
context?: string | null;
|
|
16
17
|
model_response?: string | null;
|
|
17
18
|
ideal?: string | null;
|
|
@@ -19,5 +20,9 @@ export declare namespace Testrecord {
|
|
|
19
20
|
custom_inputs?: Record<string, serializers.TestrecordCustomInputsValue.Raw | null | undefined> | null;
|
|
20
21
|
custom_labels?: Record<string, serializers.TestrecordCustomLabelsValue.Raw | null | undefined> | null;
|
|
21
22
|
custom_outputs?: Record<string, serializers.TestrecordCustomOutputsValue.Raw | null | undefined> | null;
|
|
23
|
+
status?: string | null;
|
|
24
|
+
prompt?: string | null;
|
|
25
|
+
model_params?: Record<string, serializers.TestrecordModelParamsValue.Raw | null | undefined> | null;
|
|
26
|
+
model_debug_info?: Record<string, serializers.TestrecordModelDebugInfoValue.Raw | null | undefined> | null;
|
|
22
27
|
}
|
|
23
28
|
}
|
|
@@ -41,8 +41,9 @@ exports.Testrecord = core.serialization.object({
|
|
|
41
41
|
id: core.serialization.number().optional(),
|
|
42
42
|
createdAt: core.serialization.property("created_at", core.serialization.date().optional()),
|
|
43
43
|
runId: core.serialization.property("run_id", core.serialization.number()),
|
|
44
|
-
testsetId: core.serialization.property("testset_id", core.serialization.number()),
|
|
45
|
-
|
|
44
|
+
testsetId: core.serialization.property("testset_id", core.serialization.number().optional()),
|
|
45
|
+
testcaseId: core.serialization.property("testcase_id", core.serialization.number().optional()),
|
|
46
|
+
userQuery: core.serialization.property("user_query", core.serialization.string().optional()),
|
|
46
47
|
context: core.serialization.string().optional(),
|
|
47
48
|
modelResponse: core.serialization.property("model_response", core.serialization.string().optional()),
|
|
48
49
|
ideal: core.serialization.string().optional(),
|
|
@@ -56,4 +57,12 @@ exports.Testrecord = core.serialization.object({
|
|
|
56
57
|
customOutputs: core.serialization.property("custom_outputs", core.serialization
|
|
57
58
|
.record(core.serialization.string(), core.serialization.lazy(() => __awaiter(void 0, void 0, void 0, function* () { return (yield Promise.resolve().then(() => __importStar(require("..")))).TestrecordCustomOutputsValue; })).optional())
|
|
58
59
|
.optional()),
|
|
60
|
+
status: core.serialization.string().optional(),
|
|
61
|
+
prompt: core.serialization.string().optional(),
|
|
62
|
+
modelParams: core.serialization.property("model_params", core.serialization
|
|
63
|
+
.record(core.serialization.string(), core.serialization.lazy(() => __awaiter(void 0, void 0, void 0, function* () { return (yield Promise.resolve().then(() => __importStar(require("..")))).TestrecordModelParamsValue; })).optional())
|
|
64
|
+
.optional()),
|
|
65
|
+
modelDebugInfo: core.serialization.property("model_debug_info", core.serialization
|
|
66
|
+
.record(core.serialization.string(), core.serialization.lazy(() => __awaiter(void 0, void 0, void 0, function* () { return (yield Promise.resolve().then(() => __importStar(require("..")))).TestrecordModelDebugInfoValue; })).optional())
|
|
67
|
+
.optional()),
|
|
59
68
|
});
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "..";
|
|
5
|
+
import * as Scorecard from "../../api";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
export declare const TestrecordModelDebugInfoValue: core.serialization.Schema<serializers.TestrecordModelDebugInfoValue.Raw, Scorecard.TestrecordModelDebugInfoValue>;
|
|
8
|
+
export declare namespace TestrecordModelDebugInfoValue {
|
|
9
|
+
type Raw = number | number | string;
|
|
10
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.TestrecordModelDebugInfoValue = void 0;
|
|
30
|
+
const core = __importStar(require("../../core"));
|
|
31
|
+
exports.TestrecordModelDebugInfoValue = core.serialization.undiscriminatedUnion([
|
|
32
|
+
core.serialization.number(),
|
|
33
|
+
core.serialization.number(),
|
|
34
|
+
core.serialization.string(),
|
|
35
|
+
]);
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "..";
|
|
5
|
+
import * as Scorecard from "../../api";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
export declare const TestrecordModelParamsValue: core.serialization.Schema<serializers.TestrecordModelParamsValue.Raw, Scorecard.TestrecordModelParamsValue>;
|
|
8
|
+
export declare namespace TestrecordModelParamsValue {
|
|
9
|
+
type Raw = number | number | string;
|
|
10
|
+
}
|
|
@@ -26,6 +26,10 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
26
26
|
return result;
|
|
27
27
|
};
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
-
exports.
|
|
29
|
+
exports.TestrecordModelParamsValue = void 0;
|
|
30
30
|
const core = __importStar(require("../../core"));
|
|
31
|
-
exports.
|
|
31
|
+
exports.TestrecordModelParamsValue = core.serialization.undiscriminatedUnion([
|
|
32
|
+
core.serialization.number(),
|
|
33
|
+
core.serialization.number(),
|
|
34
|
+
core.serialization.string(),
|
|
35
|
+
]);
|
|
@@ -49,5 +49,5 @@ exports.Testset = core.serialization.object({
|
|
|
49
49
|
updatedAt: core.serialization.property("updated_at", core.serialization.date().optional()),
|
|
50
50
|
isArchived: core.serialization.property("is_archived", core.serialization.boolean().optional()),
|
|
51
51
|
projectId: core.serialization.property("project_id", core.serialization.number().optional()),
|
|
52
|
-
customSchema: core.serialization.property("custom_schema", core.serialization.lazyObject(() => __awaiter(void 0, void 0, void 0, function* () { return (yield Promise.resolve().then(() => __importStar(require("..")))).
|
|
52
|
+
customSchema: core.serialization.property("custom_schema", core.serialization.lazyObject(() => __awaiter(void 0, void 0, void 0, function* () { return (yield Promise.resolve().then(() => __importStar(require("..")))).CustomSchema; })).optional()),
|
|
53
53
|
});
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export * from "./CreateRunParams";
|
|
2
|
-
export * from "./
|
|
3
|
-
export * from "./CustomSchemaOutput";
|
|
2
|
+
export * from "./CustomSchema";
|
|
4
3
|
export * from "./CustomVariable";
|
|
5
4
|
export * from "./DataTypeEnum";
|
|
6
5
|
export * from "./FileUrl";
|
|
6
|
+
export * from "./Grade";
|
|
7
7
|
export * from "./HttpValidationError";
|
|
8
8
|
export * from "./NotFoundErrorBody";
|
|
9
9
|
export * from "./PaginatedTestcaseResponse";
|
|
@@ -19,13 +19,15 @@ export * from "./TestSetCreate";
|
|
|
19
19
|
export * from "./TestrecordCustomInputsValue";
|
|
20
20
|
export * from "./TestrecordCustomLabelsValue";
|
|
21
21
|
export * from "./TestrecordCustomOutputsValue";
|
|
22
|
+
export * from "./TestrecordModelParamsValue";
|
|
23
|
+
export * from "./TestrecordModelDebugInfoValue";
|
|
22
24
|
export * from "./Testrecord";
|
|
23
25
|
export * from "./Testset";
|
|
24
26
|
export * from "./UnauthenticatedError";
|
|
25
27
|
export * from "./UnauthorizedErrorBody";
|
|
26
28
|
export * from "./ValidationErrorLocItem";
|
|
27
29
|
export * from "./ValidationError";
|
|
28
|
-
export * from "./
|
|
30
|
+
export * from "./CreateGithubWorkflowParams";
|
|
29
31
|
export * from "./ExecutionParams";
|
|
30
32
|
export * from "./ModelParams";
|
|
31
33
|
export * from "./ScoreExecutionParams";
|
|
@@ -34,6 +36,3 @@ export * from "./TestCaseCreateInput";
|
|
|
34
36
|
export * from "./AppCreateRunParams";
|
|
35
37
|
export * from "./AppTestRecordCreate";
|
|
36
38
|
export * from "./AppTestSetCreate";
|
|
37
|
-
export * from "./LibDtoTypesCreateRunParams";
|
|
38
|
-
export * from "./LibDtoTypesTestRecordCreate";
|
|
39
|
-
export * from "./LibDtoTypesTestSetCreate";
|
|
@@ -15,11 +15,11 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./CreateRunParams"), exports);
|
|
18
|
-
__exportStar(require("./
|
|
19
|
-
__exportStar(require("./CustomSchemaOutput"), exports);
|
|
18
|
+
__exportStar(require("./CustomSchema"), exports);
|
|
20
19
|
__exportStar(require("./CustomVariable"), exports);
|
|
21
20
|
__exportStar(require("./DataTypeEnum"), exports);
|
|
22
21
|
__exportStar(require("./FileUrl"), exports);
|
|
22
|
+
__exportStar(require("./Grade"), exports);
|
|
23
23
|
__exportStar(require("./HttpValidationError"), exports);
|
|
24
24
|
__exportStar(require("./NotFoundErrorBody"), exports);
|
|
25
25
|
__exportStar(require("./PaginatedTestcaseResponse"), exports);
|
|
@@ -35,13 +35,15 @@ __exportStar(require("./TestSetCreate"), exports);
|
|
|
35
35
|
__exportStar(require("./TestrecordCustomInputsValue"), exports);
|
|
36
36
|
__exportStar(require("./TestrecordCustomLabelsValue"), exports);
|
|
37
37
|
__exportStar(require("./TestrecordCustomOutputsValue"), exports);
|
|
38
|
+
__exportStar(require("./TestrecordModelParamsValue"), exports);
|
|
39
|
+
__exportStar(require("./TestrecordModelDebugInfoValue"), exports);
|
|
38
40
|
__exportStar(require("./Testrecord"), exports);
|
|
39
41
|
__exportStar(require("./Testset"), exports);
|
|
40
42
|
__exportStar(require("./UnauthenticatedError"), exports);
|
|
41
43
|
__exportStar(require("./UnauthorizedErrorBody"), exports);
|
|
42
44
|
__exportStar(require("./ValidationErrorLocItem"), exports);
|
|
43
45
|
__exportStar(require("./ValidationError"), exports);
|
|
44
|
-
__exportStar(require("./
|
|
46
|
+
__exportStar(require("./CreateGithubWorkflowParams"), exports);
|
|
45
47
|
__exportStar(require("./ExecutionParams"), exports);
|
|
46
48
|
__exportStar(require("./ModelParams"), exports);
|
|
47
49
|
__exportStar(require("./ScoreExecutionParams"), exports);
|
|
@@ -50,6 +52,3 @@ __exportStar(require("./TestCaseCreateInput"), exports);
|
|
|
50
52
|
__exportStar(require("./AppCreateRunParams"), exports);
|
|
51
53
|
__exportStar(require("./AppTestRecordCreate"), exports);
|
|
52
54
|
__exportStar(require("./AppTestSetCreate"), exports);
|
|
53
|
-
__exportStar(require("./LibDtoTypesCreateRunParams"), exports);
|
|
54
|
-
__exportStar(require("./LibDtoTypesTestRecordCreate"), exports);
|
|
55
|
-
__exportStar(require("./LibDtoTypesTestSetCreate"), exports);
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as Scorecard from "..";
|
|
5
|
-
/**
|
|
6
|
-
* Custom schema model with an ordered list of custom variables.
|
|
7
|
-
*/
|
|
8
|
-
export interface CustomSchemaOutput {
|
|
9
|
-
/** Ordered list of custom variables */
|
|
10
|
-
variables?: Scorecard.CustomVariable[];
|
|
11
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as Scorecard from "..";
|
|
5
|
-
/**
|
|
6
|
-
* Custom schema model with an ordered list of custom variables.
|
|
7
|
-
*/
|
|
8
|
-
export interface CustomSchemaOutput {
|
|
9
|
-
/** Ordered list of custom variables */
|
|
10
|
-
variables?: Scorecard.CustomVariable[];
|
|
11
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as serializers from "..";
|
|
5
|
-
import * as Scorecard from "../../api";
|
|
6
|
-
import * as core from "../../core";
|
|
7
|
-
export declare const BodyStartGithubWorkflowStartGithubWorkflowPost: core.serialization.Schema<serializers.BodyStartGithubWorkflowStartGithubWorkflowPost.Raw, Scorecard.BodyStartGithubWorkflowStartGithubWorkflowPost>;
|
|
8
|
-
export declare namespace BodyStartGithubWorkflowStartGithubWorkflowPost {
|
|
9
|
-
type Raw = unknown;
|
|
10
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as serializers from "..";
|
|
5
|
-
import * as Scorecard from "../../api";
|
|
6
|
-
import * as core from "../../core";
|
|
7
|
-
export declare const CustomSchemaOutput: core.serialization.ObjectSchema<serializers.CustomSchemaOutput.Raw, Scorecard.CustomSchemaOutput>;
|
|
8
|
-
export declare namespace CustomSchemaOutput {
|
|
9
|
-
interface Raw {
|
|
10
|
-
variables?: serializers.CustomVariable.Raw[] | null;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/**
|
|
3
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
-
*/
|
|
5
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
-
if (k2 === undefined) k2 = k;
|
|
7
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
-
}
|
|
11
|
-
Object.defineProperty(o, k2, desc);
|
|
12
|
-
}) : (function(o, m, k, k2) {
|
|
13
|
-
if (k2 === undefined) k2 = k;
|
|
14
|
-
o[k2] = m[k];
|
|
15
|
-
}));
|
|
16
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
-
}) : function(o, v) {
|
|
19
|
-
o["default"] = v;
|
|
20
|
-
});
|
|
21
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
-
if (mod && mod.__esModule) return mod;
|
|
23
|
-
var result = {};
|
|
24
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
-
__setModuleDefault(result, mod);
|
|
26
|
-
return result;
|
|
27
|
-
};
|
|
28
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
29
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
30
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
31
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
32
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
33
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
34
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
35
|
-
});
|
|
36
|
-
};
|
|
37
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
38
|
-
exports.CustomSchemaOutput = void 0;
|
|
39
|
-
const core = __importStar(require("../../core"));
|
|
40
|
-
exports.CustomSchemaOutput = core.serialization.object({
|
|
41
|
-
variables: core.serialization
|
|
42
|
-
.list(core.serialization.lazyObject(() => __awaiter(void 0, void 0, void 0, function* () { return (yield Promise.resolve().then(() => __importStar(require("..")))).CustomVariable; })))
|
|
43
|
-
.optional(),
|
|
44
|
-
});
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as serializers from "..";
|
|
5
|
-
import * as Scorecard from "../../api";
|
|
6
|
-
import * as core from "../../core";
|
|
7
|
-
export declare const LibDtoTypesCreateRunParams: core.serialization.Schema<serializers.LibDtoTypesCreateRunParams.Raw, Scorecard.LibDtoTypesCreateRunParams>;
|
|
8
|
-
export declare namespace LibDtoTypesCreateRunParams {
|
|
9
|
-
type Raw = unknown;
|
|
10
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as serializers from "..";
|
|
5
|
-
import * as Scorecard from "../../api";
|
|
6
|
-
import * as core from "../../core";
|
|
7
|
-
export declare const LibDtoTypesTestRecordCreate: core.serialization.Schema<serializers.LibDtoTypesTestRecordCreate.Raw, Scorecard.LibDtoTypesTestRecordCreate>;
|
|
8
|
-
export declare namespace LibDtoTypesTestRecordCreate {
|
|
9
|
-
type Raw = unknown;
|
|
10
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as serializers from "..";
|
|
5
|
-
import * as Scorecard from "../../api";
|
|
6
|
-
import * as core from "../../core";
|
|
7
|
-
export declare const LibDtoTypesTestSetCreate: core.serialization.Schema<serializers.LibDtoTypesTestSetCreate.Raw, Scorecard.LibDtoTypesTestSetCreate>;
|
|
8
|
-
export declare namespace LibDtoTypesTestSetCreate {
|
|
9
|
-
type Raw = unknown;
|
|
10
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as serializers from "..";
|
|
5
|
-
import * as Scorecard from "../../api";
|
|
6
|
-
import * as core from "../../core";
|
|
7
|
-
export declare const BodyStartGithubWorkflowStartGithubWorkflowPost: core.serialization.Schema<serializers.BodyStartGithubWorkflowStartGithubWorkflowPost.Raw, Scorecard.BodyStartGithubWorkflowStartGithubWorkflowPost>;
|
|
8
|
-
export declare namespace BodyStartGithubWorkflowStartGithubWorkflowPost {
|
|
9
|
-
type Raw = unknown;
|
|
10
|
-
}
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/**
|
|
3
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
-
*/
|
|
5
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
-
if (k2 === undefined) k2 = k;
|
|
7
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
-
}
|
|
11
|
-
Object.defineProperty(o, k2, desc);
|
|
12
|
-
}) : (function(o, m, k, k2) {
|
|
13
|
-
if (k2 === undefined) k2 = k;
|
|
14
|
-
o[k2] = m[k];
|
|
15
|
-
}));
|
|
16
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
-
}) : function(o, v) {
|
|
19
|
-
o["default"] = v;
|
|
20
|
-
});
|
|
21
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
-
if (mod && mod.__esModule) return mod;
|
|
23
|
-
var result = {};
|
|
24
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
-
__setModuleDefault(result, mod);
|
|
26
|
-
return result;
|
|
27
|
-
};
|
|
28
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
-
exports.BodyStartGithubWorkflowStartGithubWorkflowPost = void 0;
|
|
30
|
-
const core = __importStar(require("../../core"));
|
|
31
|
-
exports.BodyStartGithubWorkflowStartGithubWorkflowPost = core.serialization.unknown();
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as serializers from "..";
|
|
5
|
-
import * as Scorecard from "../../api";
|
|
6
|
-
import * as core from "../../core";
|
|
7
|
-
export declare const CustomSchemaOutput: core.serialization.ObjectSchema<serializers.CustomSchemaOutput.Raw, Scorecard.CustomSchemaOutput>;
|
|
8
|
-
export declare namespace CustomSchemaOutput {
|
|
9
|
-
interface Raw {
|
|
10
|
-
variables?: serializers.CustomVariable.Raw[] | null;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/**
|
|
3
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
-
*/
|
|
5
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
-
if (k2 === undefined) k2 = k;
|
|
7
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
-
}
|
|
11
|
-
Object.defineProperty(o, k2, desc);
|
|
12
|
-
}) : (function(o, m, k, k2) {
|
|
13
|
-
if (k2 === undefined) k2 = k;
|
|
14
|
-
o[k2] = m[k];
|
|
15
|
-
}));
|
|
16
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
-
}) : function(o, v) {
|
|
19
|
-
o["default"] = v;
|
|
20
|
-
});
|
|
21
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
-
if (mod && mod.__esModule) return mod;
|
|
23
|
-
var result = {};
|
|
24
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
-
__setModuleDefault(result, mod);
|
|
26
|
-
return result;
|
|
27
|
-
};
|
|
28
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
29
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
30
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
31
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
32
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
33
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
34
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
35
|
-
});
|
|
36
|
-
};
|
|
37
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
38
|
-
exports.CustomSchemaOutput = void 0;
|
|
39
|
-
const core = __importStar(require("../../core"));
|
|
40
|
-
exports.CustomSchemaOutput = core.serialization.object({
|
|
41
|
-
variables: core.serialization
|
|
42
|
-
.list(core.serialization.lazyObject(() => __awaiter(void 0, void 0, void 0, function* () { return (yield Promise.resolve().then(() => __importStar(require("..")))).CustomVariable; })))
|
|
43
|
-
.optional(),
|
|
44
|
-
});
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as serializers from "..";
|
|
5
|
-
import * as Scorecard from "../../api";
|
|
6
|
-
import * as core from "../../core";
|
|
7
|
-
export declare const LibDtoTypesCreateRunParams: core.serialization.Schema<serializers.LibDtoTypesCreateRunParams.Raw, Scorecard.LibDtoTypesCreateRunParams>;
|
|
8
|
-
export declare namespace LibDtoTypesCreateRunParams {
|
|
9
|
-
type Raw = unknown;
|
|
10
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as serializers from "..";
|
|
5
|
-
import * as Scorecard from "../../api";
|
|
6
|
-
import * as core from "../../core";
|
|
7
|
-
export declare const LibDtoTypesTestRecordCreate: core.serialization.Schema<serializers.LibDtoTypesTestRecordCreate.Raw, Scorecard.LibDtoTypesTestRecordCreate>;
|
|
8
|
-
export declare namespace LibDtoTypesTestRecordCreate {
|
|
9
|
-
type Raw = unknown;
|
|
10
|
-
}
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/**
|
|
3
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
-
*/
|
|
5
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
-
if (k2 === undefined) k2 = k;
|
|
7
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
-
}
|
|
11
|
-
Object.defineProperty(o, k2, desc);
|
|
12
|
-
}) : (function(o, m, k, k2) {
|
|
13
|
-
if (k2 === undefined) k2 = k;
|
|
14
|
-
o[k2] = m[k];
|
|
15
|
-
}));
|
|
16
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
-
}) : function(o, v) {
|
|
19
|
-
o["default"] = v;
|
|
20
|
-
});
|
|
21
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
-
if (mod && mod.__esModule) return mod;
|
|
23
|
-
var result = {};
|
|
24
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
-
__setModuleDefault(result, mod);
|
|
26
|
-
return result;
|
|
27
|
-
};
|
|
28
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
-
exports.LibDtoTypesTestRecordCreate = void 0;
|
|
30
|
-
const core = __importStar(require("../../core"));
|
|
31
|
-
exports.LibDtoTypesTestRecordCreate = core.serialization.unknown();
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as serializers from "..";
|
|
5
|
-
import * as Scorecard from "../../api";
|
|
6
|
-
import * as core from "../../core";
|
|
7
|
-
export declare const LibDtoTypesTestSetCreate: core.serialization.Schema<serializers.LibDtoTypesTestSetCreate.Raw, Scorecard.LibDtoTypesTestSetCreate>;
|
|
8
|
-
export declare namespace LibDtoTypesTestSetCreate {
|
|
9
|
-
type Raw = unknown;
|
|
10
|
-
}
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/**
|
|
3
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
-
*/
|
|
5
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
-
if (k2 === undefined) k2 = k;
|
|
7
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
-
}
|
|
11
|
-
Object.defineProperty(o, k2, desc);
|
|
12
|
-
}) : (function(o, m, k, k2) {
|
|
13
|
-
if (k2 === undefined) k2 = k;
|
|
14
|
-
o[k2] = m[k];
|
|
15
|
-
}));
|
|
16
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
-
}) : function(o, v) {
|
|
19
|
-
o["default"] = v;
|
|
20
|
-
});
|
|
21
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
-
if (mod && mod.__esModule) return mod;
|
|
23
|
-
var result = {};
|
|
24
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
-
__setModuleDefault(result, mod);
|
|
26
|
-
return result;
|
|
27
|
-
};
|
|
28
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
-
exports.LibDtoTypesTestSetCreate = void 0;
|
|
30
|
-
const core = __importStar(require("../../core"));
|
|
31
|
-
exports.LibDtoTypesTestSetCreate = core.serialization.unknown();
|
|
File without changes
|
/package/api/{types/CustomSchemaInput.js → resources/score/client/requests/ScoreUpdateParams.js}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{dist/api/types/BodyStartGithubWorkflowStartGithubWorkflowPost.js → api/types/Grade.js}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|