mixpeek 0.81.255 → 0.81.256

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.
@@ -20,9 +20,9 @@ import type { WebhookEventType } from '../models';
20
20
  */
21
21
  export declare const EventsApiAxiosParamCreator: (configuration?: Configuration) => {
22
22
  /**
23
- * List this organization\'s change feed, ordered and resumable by cursor. A consumer can be killed mid-stream and resume from its last stored `next_cursor` without re-reading or missing anything within the retention window.
23
+ * List this organization\'s change feed, ordered and resumable by cursor. A consumer can be killed mid-stream and resume from its last stored `next_cursor` without re-reading or missing anything, **as long as it resumes within the 90-day retention window** — events older than that are permanently expired, not archived. A consumer that has been down longer than 90 days must resync current state instead of resuming.
24
24
  * @summary List change feed events
25
- * @param {string} [cursor] Opaque cursor from a prior response\'s next_cursor. Omit to start from the beginning of the retention window.
25
+ * @param {string} [cursor] Opaque cursor from a prior response\'s next_cursor. Omit to start from the beginning of the 90-day retention window.
26
26
  * @param {string} [namespaceId] Filter to events scoped to one namespace.
27
27
  * @param {WebhookEventType} [eventType] Filter to one event type.
28
28
  * @param {number} [limit]
@@ -37,9 +37,9 @@ export declare const EventsApiAxiosParamCreator: (configuration?: Configuration)
37
37
  */
38
38
  export declare const EventsApiFp: (configuration?: Configuration) => {
39
39
  /**
40
- * List this organization\'s change feed, ordered and resumable by cursor. A consumer can be killed mid-stream and resume from its last stored `next_cursor` without re-reading or missing anything within the retention window.
40
+ * List this organization\'s change feed, ordered and resumable by cursor. A consumer can be killed mid-stream and resume from its last stored `next_cursor` without re-reading or missing anything, **as long as it resumes within the 90-day retention window** — events older than that are permanently expired, not archived. A consumer that has been down longer than 90 days must resync current state instead of resuming.
41
41
  * @summary List change feed events
42
- * @param {string} [cursor] Opaque cursor from a prior response\'s next_cursor. Omit to start from the beginning of the retention window.
42
+ * @param {string} [cursor] Opaque cursor from a prior response\'s next_cursor. Omit to start from the beginning of the 90-day retention window.
43
43
  * @param {string} [namespaceId] Filter to events scoped to one namespace.
44
44
  * @param {WebhookEventType} [eventType] Filter to one event type.
45
45
  * @param {number} [limit]
@@ -54,7 +54,7 @@ export declare const EventsApiFp: (configuration?: Configuration) => {
54
54
  */
55
55
  export declare const EventsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
56
56
  /**
57
- * List this organization\'s change feed, ordered and resumable by cursor. A consumer can be killed mid-stream and resume from its last stored `next_cursor` without re-reading or missing anything within the retention window.
57
+ * List this organization\'s change feed, ordered and resumable by cursor. A consumer can be killed mid-stream and resume from its last stored `next_cursor` without re-reading or missing anything, **as long as it resumes within the 90-day retention window** — events older than that are permanently expired, not archived. A consumer that has been down longer than 90 days must resync current state instead of resuming.
58
58
  * @summary List change feed events
59
59
  * @param {EventsApiListEventsRequest} requestParameters Request parameters.
60
60
  * @param {*} [options] Override http request option.
@@ -69,7 +69,7 @@ export declare const EventsApiFactory: (configuration?: Configuration, basePath?
69
69
  */
70
70
  export interface EventsApiListEventsRequest {
71
71
  /**
72
- * Opaque cursor from a prior response\'s next_cursor. Omit to start from the beginning of the retention window.
72
+ * Opaque cursor from a prior response\'s next_cursor. Omit to start from the beginning of the 90-day retention window.
73
73
  * @type {string}
74
74
  * @memberof EventsApiListEvents
75
75
  */
@@ -101,7 +101,7 @@ export interface EventsApiListEventsRequest {
101
101
  */
102
102
  export declare class EventsApi extends BaseAPI {
103
103
  /**
104
- * List this organization\'s change feed, ordered and resumable by cursor. A consumer can be killed mid-stream and resume from its last stored `next_cursor` without re-reading or missing anything within the retention window.
104
+ * List this organization\'s change feed, ordered and resumable by cursor. A consumer can be killed mid-stream and resume from its last stored `next_cursor` without re-reading or missing anything, **as long as it resumes within the 90-day retention window** — events older than that are permanently expired, not archived. A consumer that has been down longer than 90 days must resync current state instead of resuming.
105
105
  * @summary List change feed events
106
106
  * @param {EventsApiListEventsRequest} requestParameters Request parameters.
107
107
  * @param {*} [options] Override http request option.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mixpeek",
3
- "version": "0.81.255",
3
+ "version": "0.81.256",
4
4
  "description": "Official Mixpeek TypeScript/JavaScript SDK for multimodal data processing and retrieval",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",