@uug-ai/models 1.4.32 → 1.4.34

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 +6 -1
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -16081,7 +16081,10 @@ export interface components {
16081
16081
  /** @description Additional metadata about the error, such as timestamps and request IDs */
16082
16082
  metadata?: components["schemas"]["api.Metadata"];
16083
16083
  };
16084
- "api.GetMarkersRequest": Record<string, never>;
16084
+ "api.GetMarkersRequest": {
16085
+ filter?: components["schemas"]["api.MarkerFilter"];
16086
+ pagination?: components["schemas"]["api.CursorPagination"];
16087
+ };
16085
16088
  "api.GetMarkersResponse": {
16086
16089
  markers?: components["schemas"]["models.Marker"][];
16087
16090
  };
@@ -19384,6 +19387,7 @@ export interface components {
19384
19387
  short_link?: string;
19385
19388
  sites?: string[];
19386
19389
  user_id?: string;
19390
+ username?: string;
19387
19391
  };
19388
19392
  "models.Webhook": {
19389
19393
  enabled?: boolean;
@@ -19679,6 +19683,7 @@ export declare namespace api {
19679
19683
  type GetMarkerTagOptionsResponse = components['schemas']['api.GetMarkerTagOptionsResponse'];
19680
19684
  type GetMarkerTagOptionsSuccessResponse = components['schemas']['api.GetMarkerTagOptionsSuccessResponse'];
19681
19685
  type GetMarkersErrorResponse = components['schemas']['api.GetMarkersErrorResponse'];
19686
+ type GetMarkersRequest = components['schemas']['api.GetMarkersRequest'];
19682
19687
  type GetMarkersResponse = components['schemas']['api.GetMarkersResponse'];
19683
19688
  type GetMarkersSuccessResponse = components['schemas']['api.GetMarkersSuccessResponse'];
19684
19689
  type GetMediaByIdErrorResponse = components['schemas']['api.GetMediaByIdErrorResponse'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uug-ai/models",
3
- "version": "1.4.32",
3
+ "version": "1.4.34",
4
4
  "description": "TypeScript type definitions for Go models",
5
5
  "main": "dist/types.js",
6
6
  "types": "dist/types.d.ts",