@uug-ai/models 1.2.12 → 1.2.13
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/types.d.ts +49 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -861,6 +861,45 @@ export interface paths {
|
|
|
861
861
|
patch?: never;
|
|
862
862
|
trace?: never;
|
|
863
863
|
};
|
|
864
|
+
"/internal/callerinfo": {
|
|
865
|
+
parameters: {
|
|
866
|
+
query?: never;
|
|
867
|
+
header?: never;
|
|
868
|
+
path?: never;
|
|
869
|
+
cookie?: never;
|
|
870
|
+
};
|
|
871
|
+
/**
|
|
872
|
+
* Get CallerInfo (schema generation only)
|
|
873
|
+
* @description Internal endpoint used only to ensure CallerInfo schema is generated in OpenAPI spec
|
|
874
|
+
*/
|
|
875
|
+
get: {
|
|
876
|
+
parameters: {
|
|
877
|
+
query?: never;
|
|
878
|
+
header?: never;
|
|
879
|
+
path?: never;
|
|
880
|
+
cookie?: never;
|
|
881
|
+
};
|
|
882
|
+
requestBody?: never;
|
|
883
|
+
responses: {
|
|
884
|
+
/** @description OK */
|
|
885
|
+
200: {
|
|
886
|
+
headers: {
|
|
887
|
+
[name: string]: unknown;
|
|
888
|
+
};
|
|
889
|
+
content: {
|
|
890
|
+
"application/json": components["schemas"]["api.CallerInfo"];
|
|
891
|
+
};
|
|
892
|
+
};
|
|
893
|
+
};
|
|
894
|
+
};
|
|
895
|
+
put?: never;
|
|
896
|
+
post?: never;
|
|
897
|
+
delete?: never;
|
|
898
|
+
options?: never;
|
|
899
|
+
head?: never;
|
|
900
|
+
patch?: never;
|
|
901
|
+
trace?: never;
|
|
902
|
+
};
|
|
864
903
|
"/internal/classify": {
|
|
865
904
|
parameters: {
|
|
866
905
|
query?: never;
|
|
@@ -8669,6 +8708,11 @@ export interface components {
|
|
|
8669
8708
|
};
|
|
8670
8709
|
/** @enum {string} */
|
|
8671
8710
|
"api.AnalysisStatus": "analysis_face_redaction_binding_failed" | "analysis_save_redaction_success" | "analysis_save_redaction_failed" | "analysis_submit_redaction_success" | "analysis_submit_redaction_failed" | "analysis_file_name_missing" | "analysis_signed_url_missing" | "analysis_all_frame_coordinates_missing" | "analysis_not_found" | "analysis_found" | "analysisId_missing";
|
|
8711
|
+
"api.CallerInfo": {
|
|
8712
|
+
file?: string;
|
|
8713
|
+
function?: string;
|
|
8714
|
+
line?: number;
|
|
8715
|
+
};
|
|
8672
8716
|
"api.CursorPagination": {
|
|
8673
8717
|
/** @description Request fields (sent by client) */
|
|
8674
8718
|
cursor?: string;
|
|
@@ -9393,6 +9437,10 @@ export interface components {
|
|
|
9393
9437
|
function?: string;
|
|
9394
9438
|
/** @description Language of the response, if applicable */
|
|
9395
9439
|
language?: string;
|
|
9440
|
+
/** @description Line number in the code where the response was generated */
|
|
9441
|
+
line?: number;
|
|
9442
|
+
/** @description Name of the media file involved in the request */
|
|
9443
|
+
mediaFileName?: string;
|
|
9396
9444
|
/** @description List of missing fields in the request */
|
|
9397
9445
|
missingFields?: string[];
|
|
9398
9446
|
/** @description Organisation ID for the request */
|
|
@@ -10944,6 +10992,7 @@ export declare namespace api {
|
|
|
10944
10992
|
type AddStrategyRequest = components['schemas']['api.AddStrategyRequest'];
|
|
10945
10993
|
type AddStrategyResponse = components['schemas']['api.AddStrategyResponse'];
|
|
10946
10994
|
type AddStrategySuccessResponse = components['schemas']['api.AddStrategySuccessResponse'];
|
|
10995
|
+
type CallerInfo = components['schemas']['api.CallerInfo'];
|
|
10947
10996
|
type CursorPagination = components['schemas']['api.CursorPagination'];
|
|
10948
10997
|
type DebugResponse = components['schemas']['api.DebugResponse'];
|
|
10949
10998
|
type DeleteAccessTokenErrorResponse = components['schemas']['api.DeleteAccessTokenErrorResponse'];
|