@coveo/platform-client 69.1.0 → 69.2.0

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.
@@ -52,6 +52,16 @@ export interface SourceStatus {
52
52
  */
53
53
  type?: SourceStatusType;
54
54
  }
55
+ export interface SourceUpdateEventModel {
56
+ /**
57
+ * The reason of why the source needs to be rebuilt
58
+ */
59
+ reason: string;
60
+ /**
61
+ * The date on which the triggering change occurred.
62
+ */
63
+ datetime: number;
64
+ }
55
65
  export interface SourceInformation {
56
66
  id?: string;
57
67
  collectionId?: number;
@@ -65,4 +75,8 @@ export interface SourceInformation {
65
75
  sourceId?: number;
66
76
  sourceName?: string;
67
77
  sourceStatus?: SourceStatus;
78
+ /**
79
+ * The update events that have occurred since the last rebuild of the source.
80
+ */
81
+ updateEventsSinceLastRebuild?: SourceUpdateEventModel[];
68
82
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coveo/platform-client",
3
- "version": "69.1.0",
3
+ "version": "69.2.0",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "exports": {