@uug-ai/models 1.3.14 → 1.3.16

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 +149 -0
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -10650,6 +10650,123 @@ export interface paths {
10650
10650
  patch?: never;
10651
10651
  trace?: never;
10652
10652
  };
10653
+ "/internal/updateuserprofileerrorresponse": {
10654
+ parameters: {
10655
+ query?: never;
10656
+ header?: never;
10657
+ path?: never;
10658
+ cookie?: never;
10659
+ };
10660
+ /**
10661
+ * Get UpdateUserProfileErrorResponse (schema generation only)
10662
+ * @description Internal endpoint used only to ensure UpdateUserProfileErrorResponse schema is generated in OpenAPI spec
10663
+ */
10664
+ get: {
10665
+ parameters: {
10666
+ query?: never;
10667
+ header?: never;
10668
+ path?: never;
10669
+ cookie?: never;
10670
+ };
10671
+ requestBody?: never;
10672
+ responses: {
10673
+ /** @description OK */
10674
+ 200: {
10675
+ headers: {
10676
+ [name: string]: unknown;
10677
+ };
10678
+ content: {
10679
+ "application/json": components["schemas"]["api.UpdateUserProfileErrorResponse"];
10680
+ };
10681
+ };
10682
+ };
10683
+ };
10684
+ put?: never;
10685
+ post?: never;
10686
+ delete?: never;
10687
+ options?: never;
10688
+ head?: never;
10689
+ patch?: never;
10690
+ trace?: never;
10691
+ };
10692
+ "/internal/updateuserprofileresponse": {
10693
+ parameters: {
10694
+ query?: never;
10695
+ header?: never;
10696
+ path?: never;
10697
+ cookie?: never;
10698
+ };
10699
+ /**
10700
+ * Get UpdateUserProfileResponse (schema generation only)
10701
+ * @description Internal endpoint used only to ensure UpdateUserProfileResponse schema is generated in OpenAPI spec
10702
+ */
10703
+ get: {
10704
+ parameters: {
10705
+ query?: never;
10706
+ header?: never;
10707
+ path?: never;
10708
+ cookie?: never;
10709
+ };
10710
+ requestBody?: never;
10711
+ responses: {
10712
+ /** @description OK */
10713
+ 200: {
10714
+ headers: {
10715
+ [name: string]: unknown;
10716
+ };
10717
+ content: {
10718
+ "application/json": components["schemas"]["api.UpdateUserProfileResponse"];
10719
+ };
10720
+ };
10721
+ };
10722
+ };
10723
+ put?: never;
10724
+ post?: never;
10725
+ delete?: never;
10726
+ options?: never;
10727
+ head?: never;
10728
+ patch?: never;
10729
+ trace?: never;
10730
+ };
10731
+ "/internal/updateuserprofilesuccessresponse": {
10732
+ parameters: {
10733
+ query?: never;
10734
+ header?: never;
10735
+ path?: never;
10736
+ cookie?: never;
10737
+ };
10738
+ /**
10739
+ * Get UpdateUserProfileSuccessResponse (schema generation only)
10740
+ * @description Internal endpoint used only to ensure UpdateUserProfileSuccessResponse schema is generated in OpenAPI spec
10741
+ */
10742
+ get: {
10743
+ parameters: {
10744
+ query?: never;
10745
+ header?: never;
10746
+ path?: never;
10747
+ cookie?: never;
10748
+ };
10749
+ requestBody?: never;
10750
+ responses: {
10751
+ /** @description OK */
10752
+ 200: {
10753
+ headers: {
10754
+ [name: string]: unknown;
10755
+ };
10756
+ content: {
10757
+ "application/json": components["schemas"]["api.UpdateUserProfileSuccessResponse"];
10758
+ };
10759
+ };
10760
+ };
10761
+ };
10762
+ put?: never;
10763
+ post?: never;
10764
+ delete?: never;
10765
+ options?: never;
10766
+ head?: never;
10767
+ patch?: never;
10768
+ trace?: never;
10769
+ };
10653
10770
  "/internal/upsertstateerrorresponse": {
10654
10771
  parameters: {
10655
10772
  query?: never;
@@ -12272,6 +12389,7 @@ export interface components {
12272
12389
  "api.Media2Filter": {
12273
12390
  devices?: string[];
12274
12391
  events?: string[];
12392
+ excludedDevices?: string[];
12275
12393
  groups?: string[];
12276
12394
  markers?: string[];
12277
12395
  regions?: components["schemas"]["models.Region"][];
@@ -12532,6 +12650,34 @@ export interface components {
12532
12650
  /** @description Additional metadata about the response, such as timestamps and request IDs */
12533
12651
  metadata?: components["schemas"]["api.Metadata"];
12534
12652
  };
12653
+ "api.UpdateUserProfileErrorResponse": {
12654
+ /** @description Application-specific error code */
12655
+ applicationStatusCode?: string;
12656
+ /** @description Entity-specific error code */
12657
+ entityStatusCode?: string;
12658
+ /** @description HTTP status code for the error */
12659
+ httpStatusCode?: number;
12660
+ /** @description Error message describing the issue */
12661
+ message?: string;
12662
+ /** @description Additional metadata about the error, such as timestamps and request IDs */
12663
+ metadata?: components["schemas"]["api.Metadata"];
12664
+ };
12665
+ "api.UpdateUserProfileResponse": {
12666
+ user?: components["schemas"]["models.User"];
12667
+ };
12668
+ "api.UpdateUserProfileSuccessResponse": {
12669
+ /** @description Application-specific status code */
12670
+ applicationStatusCode?: string;
12671
+ data?: components["schemas"]["api.UpdateUserProfileResponse"];
12672
+ /** @description Entity-specific status code */
12673
+ entityStatusCode?: string;
12674
+ /** @description HTTP status code for the response */
12675
+ httpStatusCode?: number;
12676
+ /** @description Success message describing the operation */
12677
+ message?: string;
12678
+ /** @description Additional metadata about the response, such as timestamps and request IDs */
12679
+ metadata?: components["schemas"]["api.Metadata"];
12680
+ };
12535
12681
  "api.UpsertStateErrorResponse": {
12536
12682
  /** @description Application-specific error code */
12537
12683
  applicationStatusCode?: string;
@@ -14748,6 +14894,9 @@ export declare namespace api {
14748
14894
  type UpdateMediaRequest = components['schemas']['api.UpdateMediaRequest'];
14749
14895
  type UpdateMediaResponse = components['schemas']['api.UpdateMediaResponse'];
14750
14896
  type UpdateMediaSuccessResponse = components['schemas']['api.UpdateMediaSuccessResponse'];
14897
+ type UpdateUserProfileErrorResponse = components['schemas']['api.UpdateUserProfileErrorResponse'];
14898
+ type UpdateUserProfileResponse = components['schemas']['api.UpdateUserProfileResponse'];
14899
+ type UpdateUserProfileSuccessResponse = components['schemas']['api.UpdateUserProfileSuccessResponse'];
14751
14900
  type UpsertStateErrorResponse = components['schemas']['api.UpsertStateErrorResponse'];
14752
14901
  type UpsertStateRequest = components['schemas']['api.UpsertStateRequest'];
14753
14902
  type UpsertStateResponse = components['schemas']['api.UpsertStateResponse'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uug-ai/models",
3
- "version": "1.3.14",
3
+ "version": "1.3.16",
4
4
  "description": "TypeScript type definitions for Go models",
5
5
  "main": "dist/types.js",
6
6
  "types": "dist/types.d.ts",