@kanda-libs/ks-schema 1.0.83 → 1.0.85
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/dist/operations/index.d.ts +67 -0
- package/dist/operations/index.d.ts.map +1 -1
- package/dist/operations/index.js +12 -1
- package/dist/operations/infoVerify.d.ts +36 -0
- package/dist/operations/infoVerify.d.ts.map +1 -0
- package/dist/operations/infoVerify.js +43 -0
- package/dist/operations/runner.d.ts +38 -0
- package/dist/operations/runner.d.ts.map +1 -0
- package/dist/operations/runner.js +50 -0
- package/dist/schema.json +1 -1
- package/dist/widget/index.d.ts +2207 -2207
- package/dist/widget/index.d.ts.map +1 -1
- package/dist/widget/index.js +4696 -4696
- package/package.json +1 -1
- package/schema.yaml +64 -0
|
@@ -27,6 +27,7 @@ import { InfoAuthRequestFunction } from "./infoAuth";
|
|
|
27
27
|
import { InfoCompanyRequestFunction } from "./infoCompany";
|
|
28
28
|
import { InfoCustomerRequestFunction } from "./infoCustomer";
|
|
29
29
|
import { InfoIPRequestFunction } from "./infoIP";
|
|
30
|
+
import { InfoVerifyRequestFunction } from "./infoVerify";
|
|
30
31
|
import { JobCompanyInfoRequestFunction } from "./jobCompanyInfo";
|
|
31
32
|
import { MarkPaymentRequestFunction } from "./markPayment";
|
|
32
33
|
import { MeRequestFunction } from "./me";
|
|
@@ -46,6 +47,7 @@ import { PutMeRequestFunction } from "./putMe";
|
|
|
46
47
|
import { PutNotificationRequestFunction } from "./putNotification";
|
|
47
48
|
import { PutPaymentRequestFunction } from "./putPayment";
|
|
48
49
|
import { QuoteCreditRequestFunction } from "./quoteCredit";
|
|
50
|
+
import { RunnerRequestFunction } from "./runner";
|
|
49
51
|
import { SendJobRequestFunction } from "./sendJob";
|
|
50
52
|
import { SignCreditRequestFunction } from "./signCredit";
|
|
51
53
|
import { SignJobSateNoteRequestFunction } from "./signJobSateNote";
|
|
@@ -304,6 +306,36 @@ export declare const operations: {
|
|
|
304
306
|
readonly _tag: "JsonBody";
|
|
305
307
|
};
|
|
306
308
|
};
|
|
309
|
+
readonly infoVerify: {
|
|
310
|
+
readonly path: "/api/info/verify";
|
|
311
|
+
readonly method: "put";
|
|
312
|
+
readonly responses: {
|
|
313
|
+
readonly "200": {
|
|
314
|
+
readonly _tag: "JsonResponse";
|
|
315
|
+
readonly decoder: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
316
|
+
email: import("io-ts").StringC;
|
|
317
|
+
}>, import("io-ts").PartialC<{
|
|
318
|
+
continue_url: import("io-ts").StringC;
|
|
319
|
+
}>]>;
|
|
320
|
+
};
|
|
321
|
+
readonly default: {
|
|
322
|
+
readonly _tag: "JsonResponse";
|
|
323
|
+
readonly decoder: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
324
|
+
message: import("io-ts").StringC;
|
|
325
|
+
}>, import("io-ts").PartialC<{
|
|
326
|
+
code: import("io-ts").NumberC;
|
|
327
|
+
}>]>;
|
|
328
|
+
};
|
|
329
|
+
};
|
|
330
|
+
readonly parameters: readonly [];
|
|
331
|
+
readonly requestDefaultHeaders: {
|
|
332
|
+
readonly "Content-Type": "application/json";
|
|
333
|
+
readonly Accept: "application/json";
|
|
334
|
+
};
|
|
335
|
+
readonly body: {
|
|
336
|
+
readonly _tag: "JsonBody";
|
|
337
|
+
};
|
|
338
|
+
};
|
|
307
339
|
readonly infoIP: {
|
|
308
340
|
readonly path: "/api/info/ip";
|
|
309
341
|
readonly method: "get";
|
|
@@ -6006,6 +6038,35 @@ export declare const operations: {
|
|
|
6006
6038
|
}];
|
|
6007
6039
|
readonly requestDefaultHeaders: {};
|
|
6008
6040
|
};
|
|
6041
|
+
readonly runner: {
|
|
6042
|
+
readonly path: "/api/runner";
|
|
6043
|
+
readonly method: "get";
|
|
6044
|
+
readonly responses: {
|
|
6045
|
+
readonly "200": {
|
|
6046
|
+
readonly _tag: "EmptyResponse";
|
|
6047
|
+
};
|
|
6048
|
+
readonly default: {
|
|
6049
|
+
readonly _tag: "JsonResponse";
|
|
6050
|
+
readonly decoder: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
6051
|
+
message: import("io-ts").StringC;
|
|
6052
|
+
}>, import("io-ts").PartialC<{
|
|
6053
|
+
code: import("io-ts").NumberC;
|
|
6054
|
+
}>]>;
|
|
6055
|
+
};
|
|
6056
|
+
};
|
|
6057
|
+
readonly parameters: readonly [{
|
|
6058
|
+
readonly _tag: "FormParameter";
|
|
6059
|
+
readonly explode: true;
|
|
6060
|
+
readonly in: "query";
|
|
6061
|
+
readonly name: "event";
|
|
6062
|
+
}, {
|
|
6063
|
+
readonly _tag: "FormParameter";
|
|
6064
|
+
readonly explode: true;
|
|
6065
|
+
readonly in: "query";
|
|
6066
|
+
readonly name: "task";
|
|
6067
|
+
}];
|
|
6068
|
+
readonly requestDefaultHeaders: {};
|
|
6069
|
+
};
|
|
6009
6070
|
};
|
|
6010
6071
|
export interface OperationRequestFunctionMap {
|
|
6011
6072
|
me: MeRequestFunction;
|
|
@@ -6013,6 +6074,7 @@ export interface OperationRequestFunctionMap {
|
|
|
6013
6074
|
infoCompany: InfoCompanyRequestFunction;
|
|
6014
6075
|
infoCustomer: InfoCustomerRequestFunction;
|
|
6015
6076
|
infoAuth: InfoAuthRequestFunction;
|
|
6077
|
+
infoVerify: InfoVerifyRequestFunction;
|
|
6016
6078
|
infoIP: InfoIPRequestFunction;
|
|
6017
6079
|
getCompanies: GetCompaniesRequestFunction;
|
|
6018
6080
|
postCompany: PostCompanyRequestFunction;
|
|
@@ -6060,6 +6122,7 @@ export interface OperationRequestFunctionMap {
|
|
|
6060
6122
|
deleteNotification: DeleteNotificationRequestFunction;
|
|
6061
6123
|
viewedNotification: ViewedNotificationRequestFunction;
|
|
6062
6124
|
providerWebhook: ProviderWebhookRequestFunction;
|
|
6125
|
+
runner: RunnerRequestFunction;
|
|
6063
6126
|
}
|
|
6064
6127
|
export declare const requestFunctionsBuilder: (requestAdapter: HttpRequestAdapter) => OperationRequestFunctionMap;
|
|
6065
6128
|
export declare const authUserServiceBuilder: (requestFunctions: OperationRequestFunctionMap) => {
|
|
@@ -6074,6 +6137,7 @@ export declare const infoCustomerServiceBuilder: (requestFunctions: OperationReq
|
|
|
6074
6137
|
};
|
|
6075
6138
|
export declare const infoAuthServiceBuilder: (requestFunctions: OperationRequestFunctionMap) => {
|
|
6076
6139
|
infoAuth: InfoAuthRequestFunction;
|
|
6140
|
+
infoVerify: InfoVerifyRequestFunction;
|
|
6077
6141
|
};
|
|
6078
6142
|
export declare const infoIPServiceBuilder: (requestFunctions: OperationRequestFunctionMap) => {
|
|
6079
6143
|
infoIP: InfoIPRequestFunction;
|
|
@@ -6138,4 +6202,7 @@ export declare const notificationServiceBuilder: (requestFunctions: OperationReq
|
|
|
6138
6202
|
export declare const webhookServiceBuilder: (requestFunctions: OperationRequestFunctionMap) => {
|
|
6139
6203
|
providerWebhook: ProviderWebhookRequestFunction;
|
|
6140
6204
|
};
|
|
6205
|
+
export declare const taskServiceBuilder: (requestFunctions: OperationRequestFunctionMap) => {
|
|
6206
|
+
runner: RunnerRequestFunction;
|
|
6207
|
+
};
|
|
6141
6208
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/index.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqDb,CAAC;AAEX,MAAM,WAAW,2BAA2B;IAC1C,EAAE,EAAE,iBAAiB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"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/index.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
|
package/dist/operations/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.webhookServiceBuilder = exports.notificationServiceBuilder = exports.documentServiceBuilder = exports.creditServiceBuilder = exports.paymentServiceBuilder = exports.jobServiceBuilder = exports.companyServiceBuilder = exports.infoIPServiceBuilder = exports.infoAuthServiceBuilder = exports.infoCustomerServiceBuilder = exports.infoCompanyServiceBuilder = exports.authUserServiceBuilder = exports.requestFunctionsBuilder = exports.operations = void 0;
|
|
3
|
+
exports.taskServiceBuilder = exports.webhookServiceBuilder = exports.notificationServiceBuilder = exports.documentServiceBuilder = exports.creditServiceBuilder = exports.paymentServiceBuilder = exports.jobServiceBuilder = exports.companyServiceBuilder = exports.infoIPServiceBuilder = exports.infoAuthServiceBuilder = exports.infoCustomerServiceBuilder = exports.infoCompanyServiceBuilder = exports.authUserServiceBuilder = exports.requestFunctionsBuilder = exports.operations = void 0;
|
|
4
4
|
const runtime_1 = require("@openapi-io-ts/runtime");
|
|
5
5
|
const applyCredit_1 = require("./applyCredit");
|
|
6
6
|
const applyJob_1 = require("./applyJob");
|
|
@@ -30,6 +30,7 @@ const infoAuth_1 = require("./infoAuth");
|
|
|
30
30
|
const infoCompany_1 = require("./infoCompany");
|
|
31
31
|
const infoCustomer_1 = require("./infoCustomer");
|
|
32
32
|
const infoIP_1 = require("./infoIP");
|
|
33
|
+
const infoVerify_1 = require("./infoVerify");
|
|
33
34
|
const jobCompanyInfo_1 = require("./jobCompanyInfo");
|
|
34
35
|
const markPayment_1 = require("./markPayment");
|
|
35
36
|
const me_1 = require("./me");
|
|
@@ -49,6 +50,7 @@ const putMe_1 = require("./putMe");
|
|
|
49
50
|
const putNotification_1 = require("./putNotification");
|
|
50
51
|
const putPayment_1 = require("./putPayment");
|
|
51
52
|
const quoteCredit_1 = require("./quoteCredit");
|
|
53
|
+
const runner_1 = require("./runner");
|
|
52
54
|
const sendJob_1 = require("./sendJob");
|
|
53
55
|
const signCredit_1 = require("./signCredit");
|
|
54
56
|
const signJobSateNote_1 = require("./signJobSateNote");
|
|
@@ -60,6 +62,7 @@ exports.operations = {
|
|
|
60
62
|
infoCompany: infoCompany_1.infoCompanyOperation,
|
|
61
63
|
infoCustomer: infoCustomer_1.infoCustomerOperation,
|
|
62
64
|
infoAuth: infoAuth_1.infoAuthOperation,
|
|
65
|
+
infoVerify: infoVerify_1.infoVerifyOperation,
|
|
63
66
|
infoIP: infoIP_1.infoIPOperation,
|
|
64
67
|
getCompanies: getCompanies_1.getCompaniesOperation,
|
|
65
68
|
postCompany: postCompany_1.postCompanyOperation,
|
|
@@ -107,6 +110,7 @@ exports.operations = {
|
|
|
107
110
|
deleteNotification: deleteNotification_1.deleteNotificationOperation,
|
|
108
111
|
viewedNotification: viewedNotification_1.viewedNotificationOperation,
|
|
109
112
|
providerWebhook: providerWebhook_1.providerWebhookOperation,
|
|
113
|
+
runner: runner_1.runnerOperation,
|
|
110
114
|
};
|
|
111
115
|
const requestFunctionsBuilder = (requestAdapter) => ({
|
|
112
116
|
me: (0, runtime_1.requestFunctionBuilder)(exports.operations.me, requestAdapter),
|
|
@@ -114,6 +118,7 @@ const requestFunctionsBuilder = (requestAdapter) => ({
|
|
|
114
118
|
infoCompany: (0, runtime_1.requestFunctionBuilder)(exports.operations.infoCompany, requestAdapter),
|
|
115
119
|
infoCustomer: (0, runtime_1.requestFunctionBuilder)(exports.operations.infoCustomer, requestAdapter),
|
|
116
120
|
infoAuth: (0, runtime_1.requestFunctionBuilder)(exports.operations.infoAuth, requestAdapter),
|
|
121
|
+
infoVerify: (0, runtime_1.requestFunctionBuilder)(exports.operations.infoVerify, requestAdapter),
|
|
117
122
|
infoIP: (0, runtime_1.requestFunctionBuilder)(exports.operations.infoIP, requestAdapter),
|
|
118
123
|
getCompanies: (0, runtime_1.requestFunctionBuilder)(exports.operations.getCompanies, requestAdapter),
|
|
119
124
|
postCompany: (0, runtime_1.requestFunctionBuilder)(exports.operations.postCompany, requestAdapter),
|
|
@@ -161,6 +166,7 @@ const requestFunctionsBuilder = (requestAdapter) => ({
|
|
|
161
166
|
deleteNotification: (0, runtime_1.requestFunctionBuilder)(exports.operations.deleteNotification, requestAdapter),
|
|
162
167
|
viewedNotification: (0, runtime_1.requestFunctionBuilder)(exports.operations.viewedNotification, requestAdapter),
|
|
163
168
|
providerWebhook: (0, runtime_1.requestFunctionBuilder)(exports.operations.providerWebhook, requestAdapter),
|
|
169
|
+
runner: (0, runtime_1.requestFunctionBuilder)(exports.operations.runner, requestAdapter),
|
|
164
170
|
});
|
|
165
171
|
exports.requestFunctionsBuilder = requestFunctionsBuilder;
|
|
166
172
|
const authUserServiceBuilder = (requestFunctions) => ({
|
|
@@ -178,6 +184,7 @@ const infoCustomerServiceBuilder = (requestFunctions) => ({
|
|
|
178
184
|
exports.infoCustomerServiceBuilder = infoCustomerServiceBuilder;
|
|
179
185
|
const infoAuthServiceBuilder = (requestFunctions) => ({
|
|
180
186
|
infoAuth: requestFunctions.infoAuth,
|
|
187
|
+
infoVerify: requestFunctions.infoVerify,
|
|
181
188
|
});
|
|
182
189
|
exports.infoAuthServiceBuilder = infoAuthServiceBuilder;
|
|
183
190
|
const infoIPServiceBuilder = (requestFunctions) => ({
|
|
@@ -251,3 +258,7 @@ const webhookServiceBuilder = (requestFunctions) => ({
|
|
|
251
258
|
providerWebhook: requestFunctions.providerWebhook,
|
|
252
259
|
});
|
|
253
260
|
exports.webhookServiceBuilder = webhookServiceBuilder;
|
|
261
|
+
const taskServiceBuilder = (requestFunctions) => ({
|
|
262
|
+
runner: requestFunctions.runner,
|
|
263
|
+
});
|
|
264
|
+
exports.taskServiceBuilder = taskServiceBuilder;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import type { RequestFunction } from "@openapi-io-ts/runtime";
|
|
2
|
+
import * as schemas from "../components/schemas";
|
|
3
|
+
export declare const infoVerifyOperation: {
|
|
4
|
+
readonly path: "/api/info/verify";
|
|
5
|
+
readonly method: "put";
|
|
6
|
+
readonly responses: {
|
|
7
|
+
readonly "200": {
|
|
8
|
+
readonly _tag: "JsonResponse";
|
|
9
|
+
readonly decoder: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
10
|
+
email: import("io-ts").StringC;
|
|
11
|
+
}>, import("io-ts").PartialC<{
|
|
12
|
+
continue_url: import("io-ts").StringC;
|
|
13
|
+
}>]>;
|
|
14
|
+
};
|
|
15
|
+
readonly default: {
|
|
16
|
+
readonly _tag: "JsonResponse";
|
|
17
|
+
readonly decoder: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
18
|
+
message: import("io-ts").StringC;
|
|
19
|
+
}>, import("io-ts").PartialC<{
|
|
20
|
+
code: import("io-ts").NumberC;
|
|
21
|
+
}>]>;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
readonly parameters: readonly [];
|
|
25
|
+
readonly requestDefaultHeaders: {
|
|
26
|
+
readonly "Content-Type": "application/json";
|
|
27
|
+
readonly Accept: "application/json";
|
|
28
|
+
};
|
|
29
|
+
readonly body: {
|
|
30
|
+
readonly _tag: "JsonBody";
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
export declare type InfoVerifyRequestFunction = RequestFunction<{
|
|
34
|
+
body: schemas.InfoAuth;
|
|
35
|
+
}, schemas.InfoAuth>;
|
|
36
|
+
//# sourceMappingURL=infoVerify.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"infoVerify.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/infoVerify.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AAEjD,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAetB,CAAC;AAEX,oBAAY,yBAAyB,GAAG,eAAe,CACrD;IAAE,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAA;CAAE,EAC1B,OAAO,CAAC,QAAQ,CACjB,CAAC"}
|
|
@@ -0,0 +1,43 @@
|
|
|
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 __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.infoVerifyOperation = void 0;
|
|
27
|
+
const schemas = __importStar(require("../components/schemas"));
|
|
28
|
+
exports.infoVerifyOperation = {
|
|
29
|
+
path: "/api/info/verify",
|
|
30
|
+
method: "put",
|
|
31
|
+
responses: {
|
|
32
|
+
"200": { _tag: "JsonResponse", decoder: schemas.InfoAuth },
|
|
33
|
+
default: { _tag: "JsonResponse", decoder: schemas.Error },
|
|
34
|
+
},
|
|
35
|
+
parameters: [],
|
|
36
|
+
requestDefaultHeaders: {
|
|
37
|
+
"Content-Type": "application/json",
|
|
38
|
+
Accept: "application/json",
|
|
39
|
+
},
|
|
40
|
+
body: {
|
|
41
|
+
_tag: "JsonBody",
|
|
42
|
+
},
|
|
43
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import type { RequestFunction } from "@openapi-io-ts/runtime";
|
|
2
|
+
export declare type RunnerRequestParameters = {
|
|
3
|
+
event: "reminder";
|
|
4
|
+
task: "dbv3_user_company_setup" | "dbv3_user_verify_director" | "dbv3_ho_initial_follow_up" | "dbv3_ho_application_sign_docs" | "dbv3_ho_application_sat_note_sent";
|
|
5
|
+
};
|
|
6
|
+
export declare const runnerOperation: {
|
|
7
|
+
readonly path: "/api/runner";
|
|
8
|
+
readonly method: "get";
|
|
9
|
+
readonly responses: {
|
|
10
|
+
readonly "200": {
|
|
11
|
+
readonly _tag: "EmptyResponse";
|
|
12
|
+
};
|
|
13
|
+
readonly default: {
|
|
14
|
+
readonly _tag: "JsonResponse";
|
|
15
|
+
readonly decoder: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
16
|
+
message: import("io-ts").StringC;
|
|
17
|
+
}>, import("io-ts").PartialC<{
|
|
18
|
+
code: import("io-ts").NumberC;
|
|
19
|
+
}>]>;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
readonly parameters: readonly [{
|
|
23
|
+
readonly _tag: "FormParameter";
|
|
24
|
+
readonly explode: true;
|
|
25
|
+
readonly in: "query";
|
|
26
|
+
readonly name: "event";
|
|
27
|
+
}, {
|
|
28
|
+
readonly _tag: "FormParameter";
|
|
29
|
+
readonly explode: true;
|
|
30
|
+
readonly in: "query";
|
|
31
|
+
readonly name: "task";
|
|
32
|
+
}];
|
|
33
|
+
readonly requestDefaultHeaders: {};
|
|
34
|
+
};
|
|
35
|
+
export declare type RunnerRequestFunction = RequestFunction<{
|
|
36
|
+
params: RunnerRequestParameters;
|
|
37
|
+
}, void>;
|
|
38
|
+
//# sourceMappingURL=runner.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"runner.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/runner.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAG9D,oBAAY,uBAAuB,GAAG;IACpC,KAAK,EAAE,UAAU,CAAC;IAClB,IAAI,EACA,yBAAyB,GACzB,2BAA2B,GAC3B,2BAA2B,GAC3B,+BAA+B,GAC/B,mCAAmC,CAAC;CACzC,CAAC;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsBlB,CAAC;AAEX,oBAAY,qBAAqB,GAAG,eAAe,CACjD;IAAE,MAAM,EAAE,uBAAuB,CAAA;CAAE,EACnC,IAAI,CACL,CAAC"}
|
|
@@ -0,0 +1,50 @@
|
|
|
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 __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.runnerOperation = void 0;
|
|
27
|
+
const schemas = __importStar(require("../components/schemas"));
|
|
28
|
+
exports.runnerOperation = {
|
|
29
|
+
path: "/api/runner",
|
|
30
|
+
method: "get",
|
|
31
|
+
responses: {
|
|
32
|
+
"200": { _tag: "EmptyResponse" },
|
|
33
|
+
default: { _tag: "JsonResponse", decoder: schemas.Error },
|
|
34
|
+
},
|
|
35
|
+
parameters: [
|
|
36
|
+
{
|
|
37
|
+
_tag: "FormParameter",
|
|
38
|
+
explode: true,
|
|
39
|
+
in: "query",
|
|
40
|
+
name: "event",
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
_tag: "FormParameter",
|
|
44
|
+
explode: true,
|
|
45
|
+
in: "query",
|
|
46
|
+
name: "task",
|
|
47
|
+
},
|
|
48
|
+
],
|
|
49
|
+
requestDefaultHeaders: {},
|
|
50
|
+
};
|