@skravets/eapi 0.0.40 → 0.0.41

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.
@@ -192,7 +192,7 @@ interface components {
192
192
  channel_id: number;
193
193
  /**
194
194
  * Format: date-time
195
- * @example 2025-12-24T13:43:29.381Z
195
+ * @example 2025-12-26T17:08:54.549Z
196
196
  */
197
197
  message_created_at: string;
198
198
  /** @example 123 */
@@ -349,6 +349,8 @@ interface components {
349
349
  * @default 0
350
350
  */
351
351
  offset: number;
352
+ /** @description Opaque cursor from previous page (base64 encoded). Use this for deep pagination. */
353
+ cursor?: string;
352
354
  /** @description Search filters */
353
355
  filters?: components["schemas"]["CatalogSearchFilters"];
354
356
  /**
@@ -405,6 +407,14 @@ interface components {
405
407
  /** @description Search metadata */
406
408
  meta: components["schemas"]["CatalogSearchMeta"];
407
409
  };
410
+ CatalogSearchResponse: {
411
+ /** @description Search results */
412
+ results: components["schemas"]["CatalogSearchResult"][];
413
+ /** @description Cursor for next page (null if no more results) */
414
+ nextCursor?: string;
415
+ /** @description Whether there are more results */
416
+ hasMore: boolean;
417
+ };
408
418
  RelatedLinkDto: {
409
419
  /** @enum {string} */
410
420
  type: "invite" | "username";
@@ -933,7 +943,7 @@ interface operations {
933
943
  [name: string]: unknown;
934
944
  };
935
945
  content: {
936
- "application/json": components["schemas"]["CatalogSearchResult"][];
946
+ "application/json": components["schemas"]["CatalogSearchResponse"];
937
947
  };
938
948
  };
939
949
  /** @description Unauthorized */
@@ -192,7 +192,7 @@ interface components {
192
192
  channel_id: number;
193
193
  /**
194
194
  * Format: date-time
195
- * @example 2025-12-24T13:43:29.381Z
195
+ * @example 2025-12-26T17:08:54.549Z
196
196
  */
197
197
  message_created_at: string;
198
198
  /** @example 123 */
@@ -349,6 +349,8 @@ interface components {
349
349
  * @default 0
350
350
  */
351
351
  offset: number;
352
+ /** @description Opaque cursor from previous page (base64 encoded). Use this for deep pagination. */
353
+ cursor?: string;
352
354
  /** @description Search filters */
353
355
  filters?: components["schemas"]["CatalogSearchFilters"];
354
356
  /**
@@ -405,6 +407,14 @@ interface components {
405
407
  /** @description Search metadata */
406
408
  meta: components["schemas"]["CatalogSearchMeta"];
407
409
  };
410
+ CatalogSearchResponse: {
411
+ /** @description Search results */
412
+ results: components["schemas"]["CatalogSearchResult"][];
413
+ /** @description Cursor for next page (null if no more results) */
414
+ nextCursor?: string;
415
+ /** @description Whether there are more results */
416
+ hasMore: boolean;
417
+ };
408
418
  RelatedLinkDto: {
409
419
  /** @enum {string} */
410
420
  type: "invite" | "username";
@@ -933,7 +943,7 @@ interface operations {
933
943
  [name: string]: unknown;
934
944
  };
935
945
  content: {
936
- "application/json": components["schemas"]["CatalogSearchResult"][];
946
+ "application/json": components["schemas"]["CatalogSearchResponse"];
937
947
  };
938
948
  };
939
949
  /** @description Unauthorized */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skravets/eapi",
3
- "version": "0.0.40",
3
+ "version": "0.0.41",
4
4
  "module": "./dist/index.js",
5
5
  "main": "./dist/index.cjs",
6
6
  "types": "./dist/index.d.ts",