@celluloid/vision-api 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +173 -0
- package/dist/client/client.gen.d.ts +3 -0
- package/dist/client/client.gen.d.ts.map +1 -0
- package/dist/client/client.gen.js +239 -0
- package/dist/client/client.gen.js.map +1 -0
- package/dist/client/index.d.ts +9 -0
- package/dist/client/index.d.ts.map +1 -0
- package/dist/client/index.js +18 -0
- package/dist/client/index.js.map +1 -0
- package/dist/client/types.gen.d.ts +118 -0
- package/dist/client/types.gen.d.ts.map +1 -0
- package/dist/client/types.gen.js +4 -0
- package/dist/client/types.gen.js.map +1 -0
- package/dist/client/utils.gen.d.ts +34 -0
- package/dist/client/utils.gen.d.ts.map +1 -0
- package/dist/client/utils.gen.js +240 -0
- package/dist/client/utils.gen.js.map +1 -0
- package/dist/client.gen.d.ts +13 -0
- package/dist/client.gen.d.ts.map +1 -0
- package/dist/client.gen.js +7 -0
- package/dist/client.gen.js.map +1 -0
- package/dist/core/auth.gen.d.ts +19 -0
- package/dist/core/auth.gen.d.ts.map +1 -0
- package/dist/core/auth.gen.js +19 -0
- package/dist/core/auth.gen.js.map +1 -0
- package/dist/core/bodySerializer.gen.d.ts +26 -0
- package/dist/core/bodySerializer.gen.d.ts.map +1 -0
- package/dist/core/bodySerializer.gen.js +61 -0
- package/dist/core/bodySerializer.gen.js.map +1 -0
- package/dist/core/params.gen.d.ts +44 -0
- package/dist/core/params.gen.d.ts.map +1 -0
- package/dist/core/params.gen.js +105 -0
- package/dist/core/params.gen.js.map +1 -0
- package/dist/core/pathSerializer.gen.d.ts +34 -0
- package/dist/core/pathSerializer.gen.d.ts.map +1 -0
- package/dist/core/pathSerializer.gen.js +116 -0
- package/dist/core/pathSerializer.gen.js.map +1 -0
- package/dist/core/queryKeySerializer.gen.d.ts +19 -0
- package/dist/core/queryKeySerializer.gen.d.ts.map +1 -0
- package/dist/core/queryKeySerializer.gen.js +99 -0
- package/dist/core/queryKeySerializer.gen.js.map +1 -0
- package/dist/core/serverSentEvents.gen.d.ts +72 -0
- package/dist/core/serverSentEvents.gen.d.ts.map +1 -0
- package/dist/core/serverSentEvents.gen.js +138 -0
- package/dist/core/serverSentEvents.gen.js.map +1 -0
- package/dist/core/types.gen.d.ts +79 -0
- package/dist/core/types.gen.d.ts.map +1 -0
- package/dist/core/types.gen.js +4 -0
- package/dist/core/types.gen.js.map +1 -0
- package/dist/core/utils.gen.d.ts +20 -0
- package/dist/core/utils.gen.d.ts.map +1 -0
- package/dist/core/utils.gen.js +94 -0
- package/dist/core/utils.gen.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +10 -0
- package/dist/index.js.map +1 -0
- package/dist/schemas.gen.d.ts +541 -0
- package/dist/schemas.gen.d.ts.map +1 -0
- package/dist/schemas.gen.js +692 -0
- package/dist/schemas.gen.js.map +1 -0
- package/dist/sdk.gen.d.ts +38 -0
- package/dist/sdk.gen.d.ts.map +1 -0
- package/dist/sdk.gen.js +40 -0
- package/dist/sdk.gen.js.map +1 -0
- package/dist/types.gen.d.ts +479 -0
- package/dist/types.gen.d.ts.map +1 -0
- package/dist/types.gen.js +4 -0
- package/dist/types.gen.js.map +1 -0
- package/package.json +36 -0
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// This file is auto-generated by @hey-api/openapi-ts
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.getUrl = exports.defaultPathSerializer = exports.PATH_PARAM_RE = void 0;
|
|
5
|
+
exports.getValidRequestBody = getValidRequestBody;
|
|
6
|
+
const pathSerializer_gen_1 = require("./pathSerializer.gen");
|
|
7
|
+
exports.PATH_PARAM_RE = /\{[^{}]+\}/g;
|
|
8
|
+
const defaultPathSerializer = ({ path, url: _url }) => {
|
|
9
|
+
let url = _url;
|
|
10
|
+
const matches = _url.match(exports.PATH_PARAM_RE);
|
|
11
|
+
if (matches) {
|
|
12
|
+
for (const match of matches) {
|
|
13
|
+
let explode = false;
|
|
14
|
+
let name = match.substring(1, match.length - 1);
|
|
15
|
+
let style = 'simple';
|
|
16
|
+
if (name.endsWith('*')) {
|
|
17
|
+
explode = true;
|
|
18
|
+
name = name.substring(0, name.length - 1);
|
|
19
|
+
}
|
|
20
|
+
if (name.startsWith('.')) {
|
|
21
|
+
name = name.substring(1);
|
|
22
|
+
style = 'label';
|
|
23
|
+
}
|
|
24
|
+
else if (name.startsWith(';')) {
|
|
25
|
+
name = name.substring(1);
|
|
26
|
+
style = 'matrix';
|
|
27
|
+
}
|
|
28
|
+
const value = path[name];
|
|
29
|
+
if (value === undefined || value === null) {
|
|
30
|
+
continue;
|
|
31
|
+
}
|
|
32
|
+
if (Array.isArray(value)) {
|
|
33
|
+
url = url.replace(match, (0, pathSerializer_gen_1.serializeArrayParam)({ explode, name, style, value }));
|
|
34
|
+
continue;
|
|
35
|
+
}
|
|
36
|
+
if (typeof value === 'object') {
|
|
37
|
+
url = url.replace(match, (0, pathSerializer_gen_1.serializeObjectParam)({
|
|
38
|
+
explode,
|
|
39
|
+
name,
|
|
40
|
+
style,
|
|
41
|
+
value: value,
|
|
42
|
+
valueOnly: true,
|
|
43
|
+
}));
|
|
44
|
+
continue;
|
|
45
|
+
}
|
|
46
|
+
if (style === 'matrix') {
|
|
47
|
+
url = url.replace(match, `;${(0, pathSerializer_gen_1.serializePrimitiveParam)({
|
|
48
|
+
name,
|
|
49
|
+
value: value,
|
|
50
|
+
})}`);
|
|
51
|
+
continue;
|
|
52
|
+
}
|
|
53
|
+
const replaceValue = encodeURIComponent(style === 'label' ? `.${value}` : value);
|
|
54
|
+
url = url.replace(match, replaceValue);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
return url;
|
|
58
|
+
};
|
|
59
|
+
exports.defaultPathSerializer = defaultPathSerializer;
|
|
60
|
+
const getUrl = ({ baseUrl, path, query, querySerializer, url: _url, }) => {
|
|
61
|
+
const pathUrl = _url.startsWith('/') ? _url : `/${_url}`;
|
|
62
|
+
let url = (baseUrl ?? '') + pathUrl;
|
|
63
|
+
if (path) {
|
|
64
|
+
url = (0, exports.defaultPathSerializer)({ path, url });
|
|
65
|
+
}
|
|
66
|
+
let search = query ? querySerializer(query) : '';
|
|
67
|
+
if (search.startsWith('?')) {
|
|
68
|
+
search = search.substring(1);
|
|
69
|
+
}
|
|
70
|
+
if (search) {
|
|
71
|
+
url += `?${search}`;
|
|
72
|
+
}
|
|
73
|
+
return url;
|
|
74
|
+
};
|
|
75
|
+
exports.getUrl = getUrl;
|
|
76
|
+
function getValidRequestBody(options) {
|
|
77
|
+
const hasBody = options.body !== undefined;
|
|
78
|
+
const isSerializedBody = hasBody && options.bodySerializer;
|
|
79
|
+
if (isSerializedBody) {
|
|
80
|
+
if ('serializedBody' in options) {
|
|
81
|
+
const hasSerializedBody = options.serializedBody !== undefined && options.serializedBody !== '';
|
|
82
|
+
return hasSerializedBody ? options.serializedBody : null;
|
|
83
|
+
}
|
|
84
|
+
// not all clients implement a serializedBody property (i.e. client-axios)
|
|
85
|
+
return options.body !== '' ? options.body : null;
|
|
86
|
+
}
|
|
87
|
+
// plain/text body
|
|
88
|
+
if (hasBody) {
|
|
89
|
+
return options.body;
|
|
90
|
+
}
|
|
91
|
+
// no body was provided
|
|
92
|
+
return undefined;
|
|
93
|
+
}
|
|
94
|
+
//# sourceMappingURL=utils.gen.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"utils.gen.js","sourceRoot":"","sources":["../../client/core/utils.gen.ts"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export { getJobResultsResultsJobIdGet, getJobStatusStatusJobIdGet, healthCheckHealthGet, type Options, startDetectionAnalysePost } from './sdk.gen';
|
|
2
|
+
export type { AnalysisRequest, AnalysisResponse, BoundingBoxModel, ClientOptions, DetectionFrameModel, DetectionObjectModel, DetectionResultsModel, DetectionStatisticsModel, GetJobResultsResultsJobIdGetData, GetJobResultsResultsJobIdGetError, GetJobResultsResultsJobIdGetErrors, GetJobResultsResultsJobIdGetResponse, GetJobResultsResultsJobIdGetResponses, GetJobStatusStatusJobIdGetData, GetJobStatusStatusJobIdGetError, GetJobStatusStatusJobIdGetErrors, GetJobStatusStatusJobIdGetResponse, GetJobStatusStatusJobIdGetResponses, HealthCheckHealthGetData, HealthCheckHealthGetResponse, HealthCheckHealthGetResponses, HealthResponse, HttpValidationError, JobCompletedjobCompletedPostWebhookPayload, JobCompletedjobCompletedPostWebhookRequest, JobCompletedWebhook, JobStatusResponse, ModelMetadataModel, ProcessingMetadataModel, ResultsMetadataModel, SpriteMetadataModel, StartDetectionAnalysePostData, StartDetectionAnalysePostError, StartDetectionAnalysePostErrors, StartDetectionAnalysePostResponse, StartDetectionAnalysePostResponses, ValidationError, VideoMetadataModel, Webhooks } from './types.gen';
|
|
3
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../client/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,4BAA4B,EAAE,0BAA0B,EAAE,oBAAoB,EAAE,KAAK,OAAO,EAAE,yBAAyB,EAAE,MAAM,WAAW,CAAC;AACpJ,YAAY,EAAE,eAAe,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,aAAa,EAAE,mBAAmB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,wBAAwB,EAAE,gCAAgC,EAAE,iCAAiC,EAAE,kCAAkC,EAAE,oCAAoC,EAAE,qCAAqC,EAAE,8BAA8B,EAAE,+BAA+B,EAAE,gCAAgC,EAAE,kCAAkC,EAAE,mCAAmC,EAAE,wBAAwB,EAAE,4BAA4B,EAAE,6BAA6B,EAAE,cAAc,EAAE,mBAAmB,EAAE,0CAA0C,EAAE,0CAA0C,EAAE,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,uBAAuB,EAAE,oBAAoB,EAAE,mBAAmB,EAAE,6BAA6B,EAAE,8BAA8B,EAAE,+BAA+B,EAAE,iCAAiC,EAAE,kCAAkC,EAAE,eAAe,EAAE,kBAAkB,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// This file is auto-generated by @hey-api/openapi-ts
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.startDetectionAnalysePost = exports.healthCheckHealthGet = exports.getJobStatusStatusJobIdGet = exports.getJobResultsResultsJobIdGet = void 0;
|
|
5
|
+
var sdk_gen_1 = require("./sdk.gen");
|
|
6
|
+
Object.defineProperty(exports, "getJobResultsResultsJobIdGet", { enumerable: true, get: function () { return sdk_gen_1.getJobResultsResultsJobIdGet; } });
|
|
7
|
+
Object.defineProperty(exports, "getJobStatusStatusJobIdGet", { enumerable: true, get: function () { return sdk_gen_1.getJobStatusStatusJobIdGet; } });
|
|
8
|
+
Object.defineProperty(exports, "healthCheckHealthGet", { enumerable: true, get: function () { return sdk_gen_1.healthCheckHealthGet; } });
|
|
9
|
+
Object.defineProperty(exports, "startDetectionAnalysePost", { enumerable: true, get: function () { return sdk_gen_1.startDetectionAnalysePost; } });
|
|
10
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../client/index.ts"],"names":[],"mappings":";AAAA,qDAAqD;;;AAErD,qCAAoJ;AAA3I,uHAAA,4BAA4B,OAAA;AAAE,qHAAA,0BAA0B,OAAA;AAAE,+GAAA,oBAAoB,OAAA;AAAgB,oHAAA,yBAAyB,OAAA"}
|
|
@@ -0,0 +1,541 @@
|
|
|
1
|
+
export declare const AnalysisRequestSchema: {
|
|
2
|
+
readonly properties: {
|
|
3
|
+
readonly project_id: {
|
|
4
|
+
readonly type: "string";
|
|
5
|
+
readonly title: "Project Id";
|
|
6
|
+
readonly description: "Project identifier";
|
|
7
|
+
};
|
|
8
|
+
readonly video_url: {
|
|
9
|
+
readonly type: "string";
|
|
10
|
+
readonly title: "Video Url";
|
|
11
|
+
readonly description: "URL or path to video file";
|
|
12
|
+
};
|
|
13
|
+
readonly similarity_threshold: {
|
|
14
|
+
readonly type: "number";
|
|
15
|
+
readonly maximum: 1;
|
|
16
|
+
readonly minimum: 0;
|
|
17
|
+
readonly title: "Similarity Threshold";
|
|
18
|
+
readonly description: "Similarity threshold for object tracking";
|
|
19
|
+
readonly default: 0.5;
|
|
20
|
+
};
|
|
21
|
+
readonly callback_url: {
|
|
22
|
+
readonly anyOf: readonly [{
|
|
23
|
+
readonly type: "string";
|
|
24
|
+
}, {
|
|
25
|
+
readonly type: "null";
|
|
26
|
+
}];
|
|
27
|
+
readonly title: "Callback Url";
|
|
28
|
+
readonly description: "Callback URL for job completion notifications";
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
readonly type: "object";
|
|
32
|
+
readonly required: readonly ["project_id", "video_url"];
|
|
33
|
+
readonly title: "AnalysisRequest";
|
|
34
|
+
};
|
|
35
|
+
export declare const AnalysisResponseSchema: {
|
|
36
|
+
readonly properties: {
|
|
37
|
+
readonly job_id: {
|
|
38
|
+
readonly type: "string";
|
|
39
|
+
readonly title: "Job Id";
|
|
40
|
+
};
|
|
41
|
+
readonly status: {
|
|
42
|
+
readonly type: "string";
|
|
43
|
+
readonly title: "Status";
|
|
44
|
+
};
|
|
45
|
+
readonly queue_position: {
|
|
46
|
+
readonly type: "integer";
|
|
47
|
+
readonly title: "Queue Position";
|
|
48
|
+
};
|
|
49
|
+
readonly message: {
|
|
50
|
+
readonly type: "string";
|
|
51
|
+
readonly title: "Message";
|
|
52
|
+
};
|
|
53
|
+
readonly callback_url: {
|
|
54
|
+
readonly anyOf: readonly [{
|
|
55
|
+
readonly type: "string";
|
|
56
|
+
}, {
|
|
57
|
+
readonly type: "null";
|
|
58
|
+
}];
|
|
59
|
+
readonly title: "Callback Url";
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
readonly type: "object";
|
|
63
|
+
readonly required: readonly ["job_id", "status", "queue_position", "message", "callback_url"];
|
|
64
|
+
readonly title: "AnalysisResponse";
|
|
65
|
+
};
|
|
66
|
+
export declare const BoundingBoxModelSchema: {
|
|
67
|
+
readonly properties: {
|
|
68
|
+
readonly x: {
|
|
69
|
+
readonly type: "integer";
|
|
70
|
+
readonly title: "X";
|
|
71
|
+
};
|
|
72
|
+
readonly y: {
|
|
73
|
+
readonly type: "integer";
|
|
74
|
+
readonly title: "Y";
|
|
75
|
+
};
|
|
76
|
+
readonly width: {
|
|
77
|
+
readonly type: "integer";
|
|
78
|
+
readonly title: "Width";
|
|
79
|
+
};
|
|
80
|
+
readonly height: {
|
|
81
|
+
readonly type: "integer";
|
|
82
|
+
readonly title: "Height";
|
|
83
|
+
};
|
|
84
|
+
};
|
|
85
|
+
readonly type: "object";
|
|
86
|
+
readonly required: readonly ["x", "y", "width", "height"];
|
|
87
|
+
readonly title: "BoundingBoxModel";
|
|
88
|
+
};
|
|
89
|
+
export declare const DetectionFrameModelSchema: {
|
|
90
|
+
readonly properties: {
|
|
91
|
+
readonly frame_idx: {
|
|
92
|
+
readonly type: "integer";
|
|
93
|
+
readonly title: "Frame Idx";
|
|
94
|
+
};
|
|
95
|
+
readonly timestamp: {
|
|
96
|
+
readonly type: "number";
|
|
97
|
+
readonly title: "Timestamp";
|
|
98
|
+
};
|
|
99
|
+
readonly objects: {
|
|
100
|
+
readonly items: {
|
|
101
|
+
readonly $ref: "#/components/schemas/DetectionObjectModel";
|
|
102
|
+
};
|
|
103
|
+
readonly type: "array";
|
|
104
|
+
readonly title: "Objects";
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
readonly type: "object";
|
|
108
|
+
readonly required: readonly ["frame_idx", "timestamp", "objects"];
|
|
109
|
+
readonly title: "DetectionFrameModel";
|
|
110
|
+
};
|
|
111
|
+
export declare const DetectionObjectModelSchema: {
|
|
112
|
+
readonly properties: {
|
|
113
|
+
readonly id: {
|
|
114
|
+
readonly type: "string";
|
|
115
|
+
readonly title: "Id";
|
|
116
|
+
};
|
|
117
|
+
readonly class_name: {
|
|
118
|
+
readonly type: "string";
|
|
119
|
+
readonly title: "Class Name";
|
|
120
|
+
};
|
|
121
|
+
readonly confidence: {
|
|
122
|
+
readonly type: "number";
|
|
123
|
+
readonly title: "Confidence";
|
|
124
|
+
};
|
|
125
|
+
readonly bbox: {
|
|
126
|
+
readonly $ref: "#/components/schemas/BoundingBoxModel";
|
|
127
|
+
};
|
|
128
|
+
readonly thumbnail: {
|
|
129
|
+
readonly type: "string";
|
|
130
|
+
readonly title: "Thumbnail";
|
|
131
|
+
};
|
|
132
|
+
};
|
|
133
|
+
readonly type: "object";
|
|
134
|
+
readonly required: readonly ["id", "class_name", "confidence", "bbox", "thumbnail"];
|
|
135
|
+
readonly title: "DetectionObjectModel";
|
|
136
|
+
};
|
|
137
|
+
export declare const DetectionResultsModelSchema: {
|
|
138
|
+
readonly properties: {
|
|
139
|
+
readonly version: {
|
|
140
|
+
readonly type: "string";
|
|
141
|
+
readonly title: "Version";
|
|
142
|
+
};
|
|
143
|
+
readonly metadata: {
|
|
144
|
+
readonly $ref: "#/components/schemas/ResultsMetadataModel";
|
|
145
|
+
};
|
|
146
|
+
readonly frames: {
|
|
147
|
+
readonly items: {
|
|
148
|
+
readonly $ref: "#/components/schemas/DetectionFrameModel";
|
|
149
|
+
};
|
|
150
|
+
readonly type: "array";
|
|
151
|
+
readonly title: "Frames";
|
|
152
|
+
};
|
|
153
|
+
};
|
|
154
|
+
readonly type: "object";
|
|
155
|
+
readonly required: readonly ["version", "metadata", "frames"];
|
|
156
|
+
readonly title: "DetectionResultsModel";
|
|
157
|
+
};
|
|
158
|
+
export declare const DetectionStatisticsModelSchema: {
|
|
159
|
+
readonly properties: {
|
|
160
|
+
readonly total_detections: {
|
|
161
|
+
readonly anyOf: readonly [{
|
|
162
|
+
readonly type: "integer";
|
|
163
|
+
}, {
|
|
164
|
+
readonly type: "null";
|
|
165
|
+
}];
|
|
166
|
+
readonly title: "Total Detections";
|
|
167
|
+
};
|
|
168
|
+
readonly person_detections: {
|
|
169
|
+
readonly anyOf: readonly [{
|
|
170
|
+
readonly type: "integer";
|
|
171
|
+
}, {
|
|
172
|
+
readonly type: "null";
|
|
173
|
+
}];
|
|
174
|
+
readonly title: "Person Detections";
|
|
175
|
+
};
|
|
176
|
+
readonly person_with_face: {
|
|
177
|
+
readonly anyOf: readonly [{
|
|
178
|
+
readonly type: "integer";
|
|
179
|
+
}, {
|
|
180
|
+
readonly type: "null";
|
|
181
|
+
}];
|
|
182
|
+
readonly title: "Person With Face";
|
|
183
|
+
};
|
|
184
|
+
readonly person_without_face: {
|
|
185
|
+
readonly anyOf: readonly [{
|
|
186
|
+
readonly type: "integer";
|
|
187
|
+
}, {
|
|
188
|
+
readonly type: "null";
|
|
189
|
+
}];
|
|
190
|
+
readonly title: "Person Without Face";
|
|
191
|
+
};
|
|
192
|
+
readonly other_detections: {
|
|
193
|
+
readonly anyOf: readonly [{
|
|
194
|
+
readonly type: "integer";
|
|
195
|
+
}, {
|
|
196
|
+
readonly type: "null";
|
|
197
|
+
}];
|
|
198
|
+
readonly title: "Other Detections";
|
|
199
|
+
};
|
|
200
|
+
readonly class_counts: {
|
|
201
|
+
readonly anyOf: readonly [{
|
|
202
|
+
readonly additionalProperties: {
|
|
203
|
+
readonly type: "integer";
|
|
204
|
+
};
|
|
205
|
+
readonly type: "object";
|
|
206
|
+
}, {
|
|
207
|
+
readonly type: "null";
|
|
208
|
+
}];
|
|
209
|
+
readonly title: "Class Counts";
|
|
210
|
+
};
|
|
211
|
+
};
|
|
212
|
+
readonly type: "object";
|
|
213
|
+
readonly title: "DetectionStatisticsModel";
|
|
214
|
+
};
|
|
215
|
+
export declare const HTTPValidationErrorSchema: {
|
|
216
|
+
readonly properties: {
|
|
217
|
+
readonly detail: {
|
|
218
|
+
readonly items: {
|
|
219
|
+
readonly $ref: "#/components/schemas/ValidationError";
|
|
220
|
+
};
|
|
221
|
+
readonly type: "array";
|
|
222
|
+
readonly title: "Detail";
|
|
223
|
+
};
|
|
224
|
+
};
|
|
225
|
+
readonly type: "object";
|
|
226
|
+
readonly title: "HTTPValidationError";
|
|
227
|
+
};
|
|
228
|
+
export declare const HealthResponseSchema: {
|
|
229
|
+
readonly properties: {
|
|
230
|
+
readonly status: {
|
|
231
|
+
readonly type: "string";
|
|
232
|
+
readonly title: "Status";
|
|
233
|
+
};
|
|
234
|
+
readonly timestamp: {
|
|
235
|
+
readonly type: "string";
|
|
236
|
+
readonly title: "Timestamp";
|
|
237
|
+
};
|
|
238
|
+
readonly queue_size: {
|
|
239
|
+
readonly type: "integer";
|
|
240
|
+
readonly title: "Queue Size";
|
|
241
|
+
};
|
|
242
|
+
readonly processing_jobs: {
|
|
243
|
+
readonly type: "integer";
|
|
244
|
+
readonly title: "Processing Jobs";
|
|
245
|
+
};
|
|
246
|
+
readonly current_job: {
|
|
247
|
+
readonly anyOf: readonly [{
|
|
248
|
+
readonly type: "string";
|
|
249
|
+
}, {
|
|
250
|
+
readonly type: "null";
|
|
251
|
+
}];
|
|
252
|
+
readonly title: "Current Job";
|
|
253
|
+
};
|
|
254
|
+
};
|
|
255
|
+
readonly type: "object";
|
|
256
|
+
readonly required: readonly ["status", "timestamp", "queue_size", "processing_jobs", "current_job"];
|
|
257
|
+
readonly title: "HealthResponse";
|
|
258
|
+
};
|
|
259
|
+
export declare const JobCompletedWebhookSchema: {
|
|
260
|
+
readonly properties: {
|
|
261
|
+
readonly job_id: {
|
|
262
|
+
readonly type: "string";
|
|
263
|
+
readonly title: "Job Id";
|
|
264
|
+
};
|
|
265
|
+
readonly project_id: {
|
|
266
|
+
readonly type: "string";
|
|
267
|
+
readonly title: "Project Id";
|
|
268
|
+
};
|
|
269
|
+
readonly status: {
|
|
270
|
+
readonly type: "string";
|
|
271
|
+
readonly title: "Status";
|
|
272
|
+
};
|
|
273
|
+
readonly timestamp: {
|
|
274
|
+
readonly type: "string";
|
|
275
|
+
readonly format: "date-time";
|
|
276
|
+
readonly title: "Timestamp";
|
|
277
|
+
};
|
|
278
|
+
};
|
|
279
|
+
readonly type: "object";
|
|
280
|
+
readonly required: readonly ["job_id", "project_id", "status", "timestamp"];
|
|
281
|
+
readonly title: "JobCompletedWebhook";
|
|
282
|
+
};
|
|
283
|
+
export declare const JobStatusResponseSchema: {
|
|
284
|
+
readonly properties: {
|
|
285
|
+
readonly job_id: {
|
|
286
|
+
readonly type: "string";
|
|
287
|
+
readonly title: "Job Id";
|
|
288
|
+
};
|
|
289
|
+
readonly project_id: {
|
|
290
|
+
readonly type: "string";
|
|
291
|
+
readonly title: "Project Id";
|
|
292
|
+
};
|
|
293
|
+
readonly video_url: {
|
|
294
|
+
readonly type: "string";
|
|
295
|
+
readonly title: "Video Url";
|
|
296
|
+
};
|
|
297
|
+
readonly similarity_threshold: {
|
|
298
|
+
readonly type: "number";
|
|
299
|
+
readonly title: "Similarity Threshold";
|
|
300
|
+
};
|
|
301
|
+
readonly status: {
|
|
302
|
+
readonly type: "string";
|
|
303
|
+
readonly title: "Status";
|
|
304
|
+
};
|
|
305
|
+
readonly progress: {
|
|
306
|
+
readonly type: "number";
|
|
307
|
+
readonly title: "Progress";
|
|
308
|
+
};
|
|
309
|
+
readonly queue_position: {
|
|
310
|
+
readonly anyOf: readonly [{
|
|
311
|
+
readonly type: "integer";
|
|
312
|
+
}, {
|
|
313
|
+
readonly type: "null";
|
|
314
|
+
}];
|
|
315
|
+
readonly title: "Queue Position";
|
|
316
|
+
};
|
|
317
|
+
readonly estimated_wait_time: {
|
|
318
|
+
readonly anyOf: readonly [{
|
|
319
|
+
readonly type: "string";
|
|
320
|
+
}, {
|
|
321
|
+
readonly type: "null";
|
|
322
|
+
}];
|
|
323
|
+
readonly title: "Estimated Wait Time";
|
|
324
|
+
};
|
|
325
|
+
readonly start_time: {
|
|
326
|
+
readonly anyOf: readonly [{
|
|
327
|
+
readonly type: "string";
|
|
328
|
+
}, {
|
|
329
|
+
readonly type: "null";
|
|
330
|
+
}];
|
|
331
|
+
readonly title: "Start Time";
|
|
332
|
+
};
|
|
333
|
+
readonly end_time: {
|
|
334
|
+
readonly anyOf: readonly [{
|
|
335
|
+
readonly type: "string";
|
|
336
|
+
}, {
|
|
337
|
+
readonly type: "null";
|
|
338
|
+
}];
|
|
339
|
+
readonly title: "End Time";
|
|
340
|
+
};
|
|
341
|
+
readonly result_path: {
|
|
342
|
+
readonly anyOf: readonly [{
|
|
343
|
+
readonly type: "string";
|
|
344
|
+
}, {
|
|
345
|
+
readonly type: "null";
|
|
346
|
+
}];
|
|
347
|
+
readonly title: "Result Path";
|
|
348
|
+
};
|
|
349
|
+
readonly metadata: {
|
|
350
|
+
readonly anyOf: readonly [{
|
|
351
|
+
readonly additionalProperties: true;
|
|
352
|
+
readonly type: "object";
|
|
353
|
+
}, {
|
|
354
|
+
readonly type: "null";
|
|
355
|
+
}];
|
|
356
|
+
readonly title: "Metadata";
|
|
357
|
+
};
|
|
358
|
+
readonly error_message: {
|
|
359
|
+
readonly anyOf: readonly [{
|
|
360
|
+
readonly type: "string";
|
|
361
|
+
}, {
|
|
362
|
+
readonly type: "null";
|
|
363
|
+
}];
|
|
364
|
+
readonly title: "Error Message";
|
|
365
|
+
};
|
|
366
|
+
};
|
|
367
|
+
readonly type: "object";
|
|
368
|
+
readonly required: readonly ["job_id", "project_id", "video_url", "similarity_threshold", "status", "progress", "queue_position", "estimated_wait_time", "start_time", "end_time", "result_path", "metadata", "error_message"];
|
|
369
|
+
readonly title: "JobStatusResponse";
|
|
370
|
+
};
|
|
371
|
+
export declare const ModelMetadataModelSchema: {
|
|
372
|
+
readonly properties: {
|
|
373
|
+
readonly name: {
|
|
374
|
+
readonly type: "string";
|
|
375
|
+
readonly title: "Name";
|
|
376
|
+
};
|
|
377
|
+
readonly type: {
|
|
378
|
+
readonly type: "string";
|
|
379
|
+
readonly title: "Type";
|
|
380
|
+
};
|
|
381
|
+
readonly version: {
|
|
382
|
+
readonly type: "string";
|
|
383
|
+
readonly title: "Version";
|
|
384
|
+
};
|
|
385
|
+
};
|
|
386
|
+
readonly type: "object";
|
|
387
|
+
readonly required: readonly ["name", "type", "version"];
|
|
388
|
+
readonly title: "ModelMetadataModel";
|
|
389
|
+
};
|
|
390
|
+
export declare const ProcessingMetadataModelSchema: {
|
|
391
|
+
readonly properties: {
|
|
392
|
+
readonly start_time: {
|
|
393
|
+
readonly anyOf: readonly [{
|
|
394
|
+
readonly type: "string";
|
|
395
|
+
}, {
|
|
396
|
+
readonly type: "null";
|
|
397
|
+
}];
|
|
398
|
+
readonly title: "Start Time";
|
|
399
|
+
};
|
|
400
|
+
readonly end_time: {
|
|
401
|
+
readonly anyOf: readonly [{
|
|
402
|
+
readonly type: "string";
|
|
403
|
+
}, {
|
|
404
|
+
readonly type: "null";
|
|
405
|
+
}];
|
|
406
|
+
readonly title: "End Time";
|
|
407
|
+
};
|
|
408
|
+
readonly duration_seconds: {
|
|
409
|
+
readonly anyOf: readonly [{
|
|
410
|
+
readonly type: "number";
|
|
411
|
+
}, {
|
|
412
|
+
readonly type: "null";
|
|
413
|
+
}];
|
|
414
|
+
readonly title: "Duration Seconds";
|
|
415
|
+
};
|
|
416
|
+
readonly frames_processed: {
|
|
417
|
+
readonly anyOf: readonly [{
|
|
418
|
+
readonly type: "integer";
|
|
419
|
+
}, {
|
|
420
|
+
readonly type: "null";
|
|
421
|
+
}];
|
|
422
|
+
readonly title: "Frames Processed";
|
|
423
|
+
};
|
|
424
|
+
readonly frames_with_detections: {
|
|
425
|
+
readonly anyOf: readonly [{
|
|
426
|
+
readonly type: "integer";
|
|
427
|
+
}, {
|
|
428
|
+
readonly type: "null";
|
|
429
|
+
}];
|
|
430
|
+
readonly title: "Frames With Detections";
|
|
431
|
+
};
|
|
432
|
+
readonly processing_speed: {
|
|
433
|
+
readonly anyOf: readonly [{
|
|
434
|
+
readonly type: "number";
|
|
435
|
+
}, {
|
|
436
|
+
readonly type: "null";
|
|
437
|
+
}];
|
|
438
|
+
readonly title: "Processing Speed";
|
|
439
|
+
};
|
|
440
|
+
readonly detection_statistics: {
|
|
441
|
+
readonly anyOf: readonly [{
|
|
442
|
+
readonly $ref: "#/components/schemas/DetectionStatisticsModel";
|
|
443
|
+
}, {
|
|
444
|
+
readonly type: "null";
|
|
445
|
+
}];
|
|
446
|
+
};
|
|
447
|
+
};
|
|
448
|
+
readonly type: "object";
|
|
449
|
+
readonly title: "ProcessingMetadataModel";
|
|
450
|
+
};
|
|
451
|
+
export declare const ResultsMetadataModelSchema: {
|
|
452
|
+
readonly properties: {
|
|
453
|
+
readonly video: {
|
|
454
|
+
readonly $ref: "#/components/schemas/VideoMetadataModel";
|
|
455
|
+
};
|
|
456
|
+
readonly model: {
|
|
457
|
+
readonly $ref: "#/components/schemas/ModelMetadataModel";
|
|
458
|
+
};
|
|
459
|
+
readonly sprite: {
|
|
460
|
+
readonly $ref: "#/components/schemas/SpriteMetadataModel";
|
|
461
|
+
};
|
|
462
|
+
readonly processing: {
|
|
463
|
+
readonly $ref: "#/components/schemas/ProcessingMetadataModel";
|
|
464
|
+
};
|
|
465
|
+
};
|
|
466
|
+
readonly type: "object";
|
|
467
|
+
readonly required: readonly ["video", "model", "sprite", "processing"];
|
|
468
|
+
readonly title: "ResultsMetadataModel";
|
|
469
|
+
};
|
|
470
|
+
export declare const SpriteMetadataModelSchema: {
|
|
471
|
+
readonly properties: {
|
|
472
|
+
readonly path: {
|
|
473
|
+
readonly type: "string";
|
|
474
|
+
readonly title: "Path";
|
|
475
|
+
};
|
|
476
|
+
readonly thumbnail_size: {
|
|
477
|
+
readonly items: {
|
|
478
|
+
readonly type: "integer";
|
|
479
|
+
};
|
|
480
|
+
readonly type: "array";
|
|
481
|
+
readonly title: "Thumbnail Size";
|
|
482
|
+
};
|
|
483
|
+
};
|
|
484
|
+
readonly type: "object";
|
|
485
|
+
readonly required: readonly ["path", "thumbnail_size"];
|
|
486
|
+
readonly title: "SpriteMetadataModel";
|
|
487
|
+
};
|
|
488
|
+
export declare const ValidationErrorSchema: {
|
|
489
|
+
readonly properties: {
|
|
490
|
+
readonly loc: {
|
|
491
|
+
readonly items: {
|
|
492
|
+
readonly anyOf: readonly [{
|
|
493
|
+
readonly type: "string";
|
|
494
|
+
}, {
|
|
495
|
+
readonly type: "integer";
|
|
496
|
+
}];
|
|
497
|
+
};
|
|
498
|
+
readonly type: "array";
|
|
499
|
+
readonly title: "Location";
|
|
500
|
+
};
|
|
501
|
+
readonly msg: {
|
|
502
|
+
readonly type: "string";
|
|
503
|
+
readonly title: "Message";
|
|
504
|
+
};
|
|
505
|
+
readonly type: {
|
|
506
|
+
readonly type: "string";
|
|
507
|
+
readonly title: "Error Type";
|
|
508
|
+
};
|
|
509
|
+
};
|
|
510
|
+
readonly type: "object";
|
|
511
|
+
readonly required: readonly ["loc", "msg", "type"];
|
|
512
|
+
readonly title: "ValidationError";
|
|
513
|
+
};
|
|
514
|
+
export declare const VideoMetadataModelSchema: {
|
|
515
|
+
readonly properties: {
|
|
516
|
+
readonly fps: {
|
|
517
|
+
readonly type: "number";
|
|
518
|
+
readonly title: "Fps";
|
|
519
|
+
};
|
|
520
|
+
readonly frame_count: {
|
|
521
|
+
readonly type: "integer";
|
|
522
|
+
readonly title: "Frame Count";
|
|
523
|
+
};
|
|
524
|
+
readonly width: {
|
|
525
|
+
readonly type: "integer";
|
|
526
|
+
readonly title: "Width";
|
|
527
|
+
};
|
|
528
|
+
readonly height: {
|
|
529
|
+
readonly type: "integer";
|
|
530
|
+
readonly title: "Height";
|
|
531
|
+
};
|
|
532
|
+
readonly source: {
|
|
533
|
+
readonly type: "string";
|
|
534
|
+
readonly title: "Source";
|
|
535
|
+
};
|
|
536
|
+
};
|
|
537
|
+
readonly type: "object";
|
|
538
|
+
readonly required: readonly ["fps", "frame_count", "width", "height", "source"];
|
|
539
|
+
readonly title: "VideoMetadataModel";
|
|
540
|
+
};
|
|
541
|
+
//# sourceMappingURL=schemas.gen.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"schemas.gen.d.ts","sourceRoot":"","sources":["../client/schemas.gen.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuCxB,CAAC;AAEX,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuCzB,CAAC;AAEX,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;CA2BzB,CAAC;AAEX,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;CAyB5B,CAAC;AAEX,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;CA+B7B,CAAC;AAEX,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;CAwB9B,CAAC;AAEX,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0EjC,CAAC;AAEX,eAAO,MAAM,yBAAyB;;;;;;;;;;;;CAY5B,CAAC;AAEX,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuCvB,CAAC;AAEX,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;CA4B5B,CAAC;AAEX,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0H1B,CAAC;AAEX,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;CAsB3B,CAAC;AAEX,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiFhC,CAAC;AAEX,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;CAuB7B,CAAC;AAEX,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;CAoB5B,CAAC;AAEX,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;CAgCxB,CAAC;AAEX,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;CAgC3B,CAAC"}
|