@uug-ai/models 1.2.12 → 1.2.14

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.
Files changed (2) hide show
  1. package/dist/types.d.ts +51 -0
  2. 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;
@@ -9387,12 +9431,18 @@ export interface components {
9387
9431
  data?: {
9388
9432
  [key: string]: unknown;
9389
9433
  };
9434
+ /** @description Device key involved in the request */
9435
+ deviceKey?: string;
9390
9436
  /** @description Error message if any */
9391
9437
  error?: string;
9392
9438
  /** @description Function name where the response was generated */
9393
9439
  function?: string;
9394
9440
  /** @description Language of the response, if applicable */
9395
9441
  language?: string;
9442
+ /** @description Line number in the code where the response was generated */
9443
+ line?: number;
9444
+ /** @description Name of the media file involved in the request */
9445
+ mediaFileName?: string;
9396
9446
  /** @description List of missing fields in the request */
9397
9447
  missingFields?: string[];
9398
9448
  /** @description Organisation ID for the request */
@@ -10944,6 +10994,7 @@ export declare namespace api {
10944
10994
  type AddStrategyRequest = components['schemas']['api.AddStrategyRequest'];
10945
10995
  type AddStrategyResponse = components['schemas']['api.AddStrategyResponse'];
10946
10996
  type AddStrategySuccessResponse = components['schemas']['api.AddStrategySuccessResponse'];
10997
+ type CallerInfo = components['schemas']['api.CallerInfo'];
10947
10998
  type CursorPagination = components['schemas']['api.CursorPagination'];
10948
10999
  type DebugResponse = components['schemas']['api.DebugResponse'];
10949
11000
  type DeleteAccessTokenErrorResponse = components['schemas']['api.DeleteAccessTokenErrorResponse'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uug-ai/models",
3
- "version": "1.2.12",
3
+ "version": "1.2.14",
4
4
  "description": "TypeScript type definitions for Go models",
5
5
  "main": "dist/types.js",
6
6
  "types": "dist/types.d.ts",