@osdk/foundry.streams 2.51.0 → 2.53.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # @osdk/foundry.streams
2
2
 
3
+ ## 2.53.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 085010e: Regenerate Platform SDKs
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [085010e]
12
+ - @osdk/foundry.filesystem@2.53.0
13
+ - @osdk/foundry.datasets@2.53.0
14
+ - @osdk/foundry.core@2.53.0
15
+
16
+ ## 2.52.0
17
+
18
+ ### Minor Changes
19
+
20
+ - 61dbb74: regenerate platform sdk
21
+
22
+ ### Patch Changes
23
+
24
+ - Updated dependencies [61dbb74]
25
+ - @osdk/foundry.filesystem@2.52.0
26
+ - @osdk/foundry.datasets@2.52.0
27
+ - @osdk/foundry.core@2.52.0
28
+
3
29
  ## 2.51.0
4
30
 
5
31
  ### Minor Changes
@@ -4,6 +4,13 @@ import type * as _Filesystem from "@osdk/foundry.filesystem";
4
4
  export type LooselyBrandedString<T extends string> = string & {
5
5
  __LOOSE_BRAND?: T;
6
6
  };
7
+ /**
8
+ * Log Safety: SAFE
9
+ */
10
+ export interface CommitSubscriberOffsetsRequest {
11
+ viewRid?: ViewRid;
12
+ offsets: PartitionOffsets;
13
+ }
7
14
  /**
8
15
  * Compression helps reduce the size of the data being sent, resulting in lower network usage and
9
16
  storage, at the cost of some additional CPU usage for compression and decompression. This stream type
@@ -61,6 +68,48 @@ export interface CreateStreamRequestStreamSchema {
61
68
  fields: Array<_Core.Field>;
62
69
  changeDataCapture?: _Core.ChangeDataCaptureConfiguration;
63
70
  }
71
+ /**
72
+ * Log Safety: SAFE
73
+ */
74
+ export interface CreateSubscriberRequest {
75
+ subscriberId: SubscriberId;
76
+ readPosition?: ReadPosition;
77
+ }
78
+ /**
79
+ * Log Safety: SAFE
80
+ */
81
+ export interface CreateSubscriberRequestEarliestPosition {
82
+ }
83
+ /**
84
+ * Log Safety: SAFE
85
+ */
86
+ export interface CreateSubscriberRequestLatestPosition {
87
+ }
88
+ /**
89
+ * Position to start reading from when registering a subscriber or resetting offsets.
90
+
91
+ earliest: Start reading from the beginning of each partition (offset 0). Use this to
92
+ reprocess all historical data in the stream.
93
+ latest: Start reading from the current end of each partition. Use this to skip
94
+ historical data and only process new records arriving after registration.
95
+ specific: Start reading from explicit offsets for each partition. Use this for precise
96
+ replay scenarios or to resume from a known checkpoint.
97
+ *
98
+ * Log Safety: SAFE
99
+ */
100
+ export type CreateSubscriberRequestReadPosition = ({
101
+ type: "specific";
102
+ } & CreateSubscriberRequestSpecificPosition) | ({
103
+ type: "earliest";
104
+ } & CreateSubscriberRequestEarliestPosition) | ({
105
+ type: "latest";
106
+ } & CreateSubscriberRequestLatestPosition);
107
+ /**
108
+ * Log Safety: SAFE
109
+ */
110
+ export interface CreateSubscriberRequestSpecificPosition {
111
+ offsets: PartitionOffsets;
112
+ }
64
113
  /**
65
114
  * Log Safety: UNSAFE
66
115
  */
@@ -69,6 +118,14 @@ export interface Dataset {
69
118
  name: _Datasets.DatasetName;
70
119
  parentFolderRid: _Filesystem.FolderRid;
71
120
  }
121
+ /**
122
+ * Start reading from the beginning of the stream. Sets offset to 0 for all partitions,
123
+ allowing the subscriber to read all historical data from the start.
124
+ *
125
+ * Log Safety: SAFE
126
+ */
127
+ export interface EarliestPosition {
128
+ }
72
129
  /**
73
130
  * The end offsets for each partition of a stream.
74
131
  *
@@ -81,12 +138,33 @@ export type GetEndOffsetsResponse = Record<PartitionId, string>;
81
138
  * Log Safety: DO_NOT_LOG
82
139
  */
83
140
  export type GetRecordsResponse = Array<RecordWithOffset>;
141
+ /**
142
+ * Start reading from the current end of the stream. Sets offsets to the latest available
143
+ offset for each partition, meaning the subscriber will only receive records published
144
+ after this point.
145
+ *
146
+ * Log Safety: SAFE
147
+ */
148
+ export interface LatestPosition {
149
+ }
84
150
  /**
85
151
  * The identifier for a partition of a Foundry stream.
86
152
  *
87
153
  * Log Safety: SAFE
88
154
  */
89
155
  export type PartitionId = LooselyBrandedString<"PartitionId">;
156
+ /**
157
+ * A map of partition IDs to offsets.
158
+ *
159
+ * Log Safety: SAFE
160
+ */
161
+ export type PartitionOffsets = Record<PartitionId, string>;
162
+ /**
163
+ * Records from a single partition with their offsets.
164
+ *
165
+ * Log Safety: DO_NOT_LOG
166
+ */
167
+ export type PartitionRecords = Array<RecordWithOffset>;
90
168
  /**
91
169
  * The number of partitions for a Foundry stream.
92
170
  *
@@ -107,6 +185,42 @@ export interface PublishRecordToStreamRequest {
107
185
  record: _Record;
108
186
  viewRid?: ViewRid;
109
187
  }
188
+ /**
189
+ * Position to start reading from when registering a subscriber or resetting offsets.
190
+
191
+ earliest: Start reading from the beginning of each partition (offset 0). Use this to
192
+ reprocess all historical data in the stream.
193
+ latest: Start reading from the current end of each partition. Use this to skip
194
+ historical data and only process new records arriving after registration.
195
+ specific: Start reading from explicit offsets for each partition. Use this for precise
196
+ replay scenarios or to resume from a known checkpoint.
197
+ *
198
+ * Log Safety: SAFE
199
+ */
200
+ export type ReadPosition = ({
201
+ type: "specific";
202
+ } & SpecificPosition) | ({
203
+ type: "earliest";
204
+ } & EarliestPosition) | ({
205
+ type: "latest";
206
+ } & LatestPosition);
207
+ /**
208
+ * Log Safety: SAFE
209
+ */
210
+ export interface ReadRecordsFromSubscriberRequest {
211
+ viewRid?: ViewRid;
212
+ limit?: number;
213
+ partitionIds?: Array<PartitionId>;
214
+ autoCommit?: boolean;
215
+ }
216
+ /**
217
+ * Response containing records grouped by partition ID.
218
+ *
219
+ * Log Safety: DO_NOT_LOG
220
+ */
221
+ export interface ReadSubscriberRecordsResponse {
222
+ recordsByPartition: Record<PartitionId, PartitionRecords>;
223
+ }
110
224
  /**
111
225
  * A record to be published to a stream.
112
226
  *
@@ -131,6 +245,21 @@ export interface ResetStreamRequest {
131
245
  streamType?: StreamType;
132
246
  compressed?: Compressed;
133
247
  }
248
+ /**
249
+ * Log Safety: SAFE
250
+ */
251
+ export interface ResetSubscriberOffsetsRequest {
252
+ position: ReadPosition;
253
+ }
254
+ /**
255
+ * Start reading from specific offsets for each partition. Useful for resuming from a known
256
+ checkpoint or replaying from a specific point in time.
257
+ *
258
+ * Log Safety: SAFE
259
+ */
260
+ export interface SpecificPosition {
261
+ offsets: PartitionOffsets;
262
+ }
134
263
  /**
135
264
  * Log Safety: UNSAFE
136
265
  */
@@ -149,13 +278,31 @@ introduce some non-zero latency at the expense of a higher throughput. This stre
149
278
  recommended if you inspect your stream metrics in-platform and observe that the average batch size is equal
150
279
  to the max match size, or if jobs using the stream are failing due to Kafka producer batches expiring. For
151
280
  additional information on inspecting stream metrics, refer to the
152
- (stream monitoring)[/docs/foundry/data-integration/stream-monitoring/#viewing-metrics] documentation.
281
+ stream monitoring documentation.
153
282
  For more information, refer to the stream types
154
283
  documentation.
155
284
  *
156
285
  * Log Safety: SAFE
157
286
  */
158
287
  export type StreamType = "LOW_LATENCY" | "HIGH_THROUGHPUT";
288
+ /**
289
+ * Log Safety: UNSAFE
290
+ */
291
+ export interface Subscriber {
292
+ subscriberId: SubscriberId;
293
+ readPosition?: ReadPosition;
294
+ datasetRid: _Core.DatasetRid;
295
+ branchName: _Core.BranchName;
296
+ viewRid: ViewRid;
297
+ startOffsets: PartitionOffsets;
298
+ createdTime: _Core.CreatedTime;
299
+ }
300
+ /**
301
+ * A unique identifier for a stream subscriber. Must be unique within the scope of a stream.
302
+ *
303
+ * Log Safety: SAFE
304
+ */
305
+ export type SubscriberId = LooselyBrandedString<"SubscriberId">;
159
306
  /**
160
307
  * The resource identifier (RID) of the view that represents a stream.
161
308
  *
@@ -1 +1 @@
1
- {"version":3,"file":"_components.d.ts","sourceRoot":"","sources":["../../src/_components.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"_components.d.ts","sourceRoot":"","sources":["../../src/_components.ts"],"names":[],"mappings":"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"}
@@ -29,6 +29,22 @@ export interface CannotWriteToTrashedStream {
29
29
  datasetRid: unknown;
30
30
  };
31
31
  }
32
+ /**
33
+ * Could not commitOffsets the Subscriber.
34
+ *
35
+ * Log Safety: UNSAFE
36
+ */
37
+ export interface CommitSubscriberOffsetsPermissionDenied {
38
+ errorCode: "PERMISSION_DENIED";
39
+ errorName: "CommitSubscriberOffsetsPermissionDenied";
40
+ errorDescription: "Could not commitOffsets the Subscriber.";
41
+ errorInstanceId: string;
42
+ parameters: {
43
+ datasetRid: unknown;
44
+ subscriberSubscriberId: unknown;
45
+ streamBranchName: unknown;
46
+ };
47
+ }
32
48
  /**
33
49
  * Could not create the Dataset.
34
50
  *
@@ -56,6 +72,38 @@ export interface CreateStreamPermissionDenied {
56
72
  streamBranchName: unknown;
57
73
  };
58
74
  }
75
+ /**
76
+ * Could not create the Subscriber.
77
+ *
78
+ * Log Safety: UNSAFE
79
+ */
80
+ export interface CreateSubscriberPermissionDenied {
81
+ errorCode: "PERMISSION_DENIED";
82
+ errorName: "CreateSubscriberPermissionDenied";
83
+ errorDescription: "Could not create the Subscriber.";
84
+ errorInstanceId: string;
85
+ parameters: {
86
+ datasetRid: unknown;
87
+ subscriberSubscriberId: unknown;
88
+ streamBranchName: unknown;
89
+ };
90
+ }
91
+ /**
92
+ * Could not delete the Subscriber.
93
+ *
94
+ * Log Safety: UNSAFE
95
+ */
96
+ export interface DeleteSubscriberPermissionDenied {
97
+ errorCode: "PERMISSION_DENIED";
98
+ errorName: "DeleteSubscriberPermissionDenied";
99
+ errorDescription: "Could not delete the Subscriber.";
100
+ errorInstanceId: string;
101
+ parameters: {
102
+ datasetRid: unknown;
103
+ subscriberSubscriberId: unknown;
104
+ streamBranchName: unknown;
105
+ };
106
+ }
59
107
  /**
60
108
  * The byte stream could not be processed.
61
109
  *
@@ -98,6 +146,22 @@ export interface GetRecordsFromStreamPermissionDenied {
98
146
  streamBranchName: unknown;
99
147
  };
100
148
  }
149
+ /**
150
+ * Could not getReadPosition the Subscriber.
151
+ *
152
+ * Log Safety: UNSAFE
153
+ */
154
+ export interface GetSubscriberReadPositionPermissionDenied {
155
+ errorCode: "PERMISSION_DENIED";
156
+ errorName: "GetSubscriberReadPositionPermissionDenied";
157
+ errorDescription: "Could not getReadPosition the Subscriber.";
158
+ errorInstanceId: string;
159
+ parameters: {
160
+ datasetRid: unknown;
161
+ subscriberSubscriberId: unknown;
162
+ streamBranchName: unknown;
163
+ };
164
+ }
101
165
  /**
102
166
  * The requested stream exists but is invalid, as it does not have a schema.
103
167
  *
@@ -173,6 +237,22 @@ export interface PublishRecordToStreamPermissionDenied {
173
237
  streamBranchName: unknown;
174
238
  };
175
239
  }
240
+ /**
241
+ * Could not readRecords the Subscriber.
242
+ *
243
+ * Log Safety: UNSAFE
244
+ */
245
+ export interface ReadRecordsFromSubscriberPermissionDenied {
246
+ errorCode: "PERMISSION_DENIED";
247
+ errorName: "ReadRecordsFromSubscriberPermissionDenied";
248
+ errorDescription: "Could not readRecords the Subscriber.";
249
+ errorInstanceId: string;
250
+ parameters: {
251
+ datasetRid: unknown;
252
+ subscriberSubscriberId: unknown;
253
+ streamBranchName: unknown;
254
+ };
255
+ }
176
256
  /**
177
257
  * A provided record does not match the stream schema
178
258
  *
@@ -216,6 +296,22 @@ export interface ResetStreamPermissionDenied {
216
296
  streamBranchName: unknown;
217
297
  };
218
298
  }
299
+ /**
300
+ * Could not resetOffsets the Subscriber.
301
+ *
302
+ * Log Safety: UNSAFE
303
+ */
304
+ export interface ResetSubscriberOffsetsPermissionDenied {
305
+ errorCode: "PERMISSION_DENIED";
306
+ errorName: "ResetSubscriberOffsetsPermissionDenied";
307
+ errorDescription: "Could not resetOffsets the Subscriber.";
308
+ errorInstanceId: string;
309
+ parameters: {
310
+ datasetRid: unknown;
311
+ subscriberSubscriberId: unknown;
312
+ streamBranchName: unknown;
313
+ };
314
+ }
219
315
  /**
220
316
  * The given Stream could not be found.
221
317
  *
@@ -231,6 +327,36 @@ export interface StreamNotFound {
231
327
  streamBranchName: unknown;
232
328
  };
233
329
  }
330
+ /**
331
+ * A subscriber with this ID already exists for a different stream.
332
+ *
333
+ * Log Safety: UNSAFE
334
+ */
335
+ export interface SubscriberAlreadyExists {
336
+ errorCode: "CONFLICT";
337
+ errorName: "SubscriberAlreadyExists";
338
+ errorDescription: "A subscriber with this ID already exists for a different stream.";
339
+ errorInstanceId: string;
340
+ parameters: {
341
+ subscriberId: unknown;
342
+ existingDatasetRid: unknown;
343
+ existingBranchName: unknown;
344
+ };
345
+ }
346
+ /**
347
+ * No subscriber with the given ID was found.
348
+ *
349
+ * Log Safety: SAFE
350
+ */
351
+ export interface SubscriberNotFound {
352
+ errorCode: "NOT_FOUND";
353
+ errorName: "SubscriberNotFound";
354
+ errorDescription: "No subscriber with the given ID was found.";
355
+ errorInstanceId: string;
356
+ parameters: {
357
+ subscriberId: unknown;
358
+ };
359
+ }
234
360
  /**
235
361
  * No view for the provided view RID provided could be found.
236
362
  *
@@ -1 +1 @@
1
- {"version":3,"file":"_errors.d.ts","sourceRoot":"","sources":["../../src/_errors.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"_errors.d.ts","sourceRoot":"","sources":["../../src/_errors.ts"],"names":[],"mappings":"AAgBA,MAAM,MAAM,oBAAoB,CAAC,CAAC,SAAS,MAAM,IAAI,MAAM,GAAG;IAC5D,aAAa,CAAC,EAAE,CAAC,CAAC;CACnB,CAAC;AAEF;;;;GAIG;AACH,MAAM,WAAW,wCAAwC;IACvD,SAAS,EAAE,kBAAkB,CAAC;IAC9B,SAAS,EAAE,0CAA0C,CAAC;IACtD,gBAAgB,EAAE,qDAAqD,CAAC;IACxE,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,eAAe,EAAE,OAAO,CAAC;KAC1B,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,WAAW,0BAA0B;IACzC,SAAS,EAAE,kBAAkB,CAAC;IAC9B,SAAS,EAAE,4BAA4B,CAAC;IACxC,gBAAgB,EAAE,gDAAgD,CAAC;IACnE,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,UAAU,EAAE,OAAO,CAAC;KACrB,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,WAAW,uCAAuC;IACtD,SAAS,EAAE,mBAAmB,CAAC;IAC/B,SAAS,EAAE,yCAAyC,CAAC;IACrD,gBAAgB,EAAE,yCAAyC,CAAC;IAC5D,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,UAAU,EAAE,OAAO,CAAC;QACpB,sBAAsB,EAAE,OAAO,CAAC;QAChC,gBAAgB,EAAE,OAAO,CAAC;KAC3B,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,WAAW,sCAAsC;IACrD,SAAS,EAAE,mBAAmB,CAAC;IAC/B,SAAS,EAAE,wCAAwC,CAAC;IACpD,gBAAgB,EAAE,+BAA+B,CAAC;IAClD,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE,EAAE,CAAC;CAChB;AAED;;;;GAIG;AACH,MAAM,WAAW,4BAA4B;IAC3C,SAAS,EAAE,mBAAmB,CAAC;IAC/B,SAAS,EAAE,8BAA8B,CAAC;IAC1C,gBAAgB,EAAE,8BAA8B,CAAC;IACjD,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,UAAU,EAAE,OAAO,CAAC;QACpB,gBAAgB,EAAE,OAAO,CAAC;KAC3B,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,WAAW,gCAAgC;IAC/C,SAAS,EAAE,mBAAmB,CAAC;IAC/B,SAAS,EAAE,kCAAkC,CAAC;IAC9C,gBAAgB,EAAE,kCAAkC,CAAC;IACrD,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,UAAU,EAAE,OAAO,CAAC;QACpB,sBAAsB,EAAE,OAAO,CAAC;QAChC,gBAAgB,EAAE,OAAO,CAAC;KAC3B,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,WAAW,gCAAgC;IAC/C,SAAS,EAAE,mBAAmB,CAAC;IAC/B,SAAS,EAAE,kCAAkC,CAAC;IAC9C,gBAAgB,EAAE,kCAAkC,CAAC;IACrD,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,UAAU,EAAE,OAAO,CAAC;QACpB,sBAAsB,EAAE,OAAO,CAAC;QAChC,gBAAgB,EAAE,OAAO,CAAC;KAC3B,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,WAAW,2BAA2B;IAC1C,SAAS,EAAE,UAAU,CAAC;IACtB,SAAS,EAAE,6BAA6B,CAAC;IACzC,gBAAgB,EAAE,yCAAyC,CAAC;IAC5D,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE,EAAE,CAAC;CAChB;AAED;;;;GAIG;AACH,MAAM,WAAW,sCAAsC;IACrD,SAAS,EAAE,mBAAmB,CAAC;IAC/B,SAAS,EAAE,wCAAwC,CAAC;IACpD,gBAAgB,EAAE,qCAAqC,CAAC;IACxD,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,UAAU,EAAE,OAAO,CAAC;QACpB,gBAAgB,EAAE,OAAO,CAAC;KAC3B,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,WAAW,oCAAoC;IACnD,SAAS,EAAE,mBAAmB,CAAC;IAC/B,SAAS,EAAE,sCAAsC,CAAC;IAClD,gBAAgB,EAAE,kCAAkC,CAAC;IACrD,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,UAAU,EAAE,OAAO,CAAC;QACpB,gBAAgB,EAAE,OAAO,CAAC;KAC3B,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,WAAW,yCAAyC;IACxD,SAAS,EAAE,mBAAmB,CAAC;IAC/B,SAAS,EAAE,2CAA2C,CAAC;IACvD,gBAAgB,EAAE,2CAA2C,CAAC;IAC9D,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,UAAU,EAAE,OAAO,CAAC;QACpB,sBAAsB,EAAE,OAAO,CAAC;QAChC,gBAAgB,EAAE,OAAO,CAAC;KAC3B,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,WAAW,qBAAqB;IACpC,SAAS,EAAE,kBAAkB,CAAC;IAC9B,SAAS,EAAE,uBAAuB,CAAC;IACnC,gBAAgB,EACd,2EAA2E,CAAC;IAC9E,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,UAAU,EAAE,OAAO,CAAC;QACpB,UAAU,EAAE,OAAO,CAAC;QACpB,OAAO,EAAE,OAAO,CAAC;KAClB,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,WAAW,iBAAiB;IAChC,SAAS,EAAE,kBAAkB,CAAC;IAC9B,SAAS,EAAE,mBAAmB,CAAC;IAC/B,gBAAgB,EAAE,6BAA6B,CAAC;IAChD,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,UAAU,EAAE,OAAO,CAAC;KACrB,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,WAAW,2CAA2C;IAC1D,SAAS,EAAE,mBAAmB,CAAC;IAC/B,SAAS,EAAE,6CAA6C,CAAC;IACzD,gBAAgB,EAAE,2CAA2C,CAAC;IAC9D,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,UAAU,EAAE,OAAO,CAAC;QACpB,gBAAgB,EAAE,OAAO,CAAC;KAC3B,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,WAAW,sCAAsC;IACrD,SAAS,EAAE,mBAAmB,CAAC;IAC/B,SAAS,EAAE,wCAAwC,CAAC;IACpD,gBAAgB,EAAE,sCAAsC,CAAC;IACzD,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,UAAU,EAAE,OAAO,CAAC;QACpB,gBAAgB,EAAE,OAAO,CAAC;KAC3B,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,WAAW,qCAAqC;IACpD,SAAS,EAAE,mBAAmB,CAAC;IAC/B,SAAS,EAAE,uCAAuC,CAAC;IACnD,gBAAgB,EAAE,qCAAqC,CAAC;IACxD,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,UAAU,EAAE,OAAO,CAAC;QACpB,gBAAgB,EAAE,OAAO,CAAC;KAC3B,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,WAAW,yCAAyC;IACxD,SAAS,EAAE,mBAAmB,CAAC;IAC/B,SAAS,EAAE,2CAA2C,CAAC;IACvD,gBAAgB,EAAE,uCAAuC,CAAC;IAC1D,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,UAAU,EAAE,OAAO,CAAC;QACpB,sBAAsB,EAAE,OAAO,CAAC;QAChC,gBAAgB,EAAE,OAAO,CAAC;KAC3B,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,WAAW,8BAA8B;IAC7C,SAAS,EAAE,kBAAkB,CAAC;IAC9B,SAAS,EAAE,gCAAgC,CAAC;IAC5C,gBAAgB,EAAE,oDAAoD,CAAC;IACvE,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,UAAU,EAAE,OAAO,CAAC;QACpB,UAAU,EAAE,OAAO,CAAC;QACpB,OAAO,EAAE,OAAO,CAAC;KAClB,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,WAAW,cAAc;IAC7B,SAAS,EAAE,0BAA0B,CAAC;IACtC,SAAS,EAAE,gBAAgB,CAAC;IAC5B,gBAAgB,EACd,2GAA2G,CAAC;IAC9G,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE,EAAE,CAAC;CAChB;AAED;;;;GAIG;AACH,MAAM,WAAW,2BAA2B;IAC1C,SAAS,EAAE,mBAAmB,CAAC;IAC/B,SAAS,EAAE,6BAA6B,CAAC;IACzC,gBAAgB,EAAE,6BAA6B,CAAC;IAChD,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,UAAU,EAAE,OAAO,CAAC;QACpB,gBAAgB,EAAE,OAAO,CAAC;KAC3B,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,WAAW,sCAAsC;IACrD,SAAS,EAAE,mBAAmB,CAAC;IAC/B,SAAS,EAAE,wCAAwC,CAAC;IACpD,gBAAgB,EAAE,wCAAwC,CAAC;IAC3D,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,UAAU,EAAE,OAAO,CAAC;QACpB,sBAAsB,EAAE,OAAO,CAAC;QAChC,gBAAgB,EAAE,OAAO,CAAC;KAC3B,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,WAAW,cAAc;IAC7B,SAAS,EAAE,WAAW,CAAC;IACvB,SAAS,EAAE,gBAAgB,CAAC;IAC5B,gBAAgB,EAAE,sCAAsC,CAAC;IACzD,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,UAAU,EAAE,OAAO,CAAC;QACpB,gBAAgB,EAAE,OAAO,CAAC;KAC3B,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,WAAW,uBAAuB;IACtC,SAAS,EAAE,UAAU,CAAC;IACtB,SAAS,EAAE,yBAAyB,CAAC;IACrC,gBAAgB,EACd,kEAAkE,CAAC;IACrE,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,YAAY,EAAE,OAAO,CAAC;QACtB,kBAAkB,EAAE,OAAO,CAAC;QAC5B,kBAAkB,EAAE,OAAO,CAAC;KAC7B,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,WAAW,kBAAkB;IACjC,SAAS,EAAE,WAAW,CAAC;IACvB,SAAS,EAAE,oBAAoB,CAAC;IAChC,gBAAgB,EAAE,4CAA4C,CAAC;IAC/D,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,YAAY,EAAE,OAAO,CAAC;KACvB,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,WAAW,YAAY;IAC3B,SAAS,EAAE,WAAW,CAAC;IACvB,SAAS,EAAE,cAAc,CAAC;IAC1B,gBAAgB,EACd,4DAA4D,CAAC;IAC/D,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,OAAO,EAAE,OAAO,CAAC;KAClB,CAAC;CACH"}
@@ -1,5 +1,6 @@
1
- export type { _Record, Compressed, CreateStreamingDatasetRequest, CreateStreamRequest, CreateStreamRequestChangeDataCaptureConfiguration, CreateStreamRequestFullRowChangeDataCaptureConfiguration, CreateStreamRequestStreamSchema, Dataset, GetEndOffsetsResponse, GetRecordsResponse, PartitionId, PartitionsCount, PublishRecordsToStreamRequest, PublishRecordToStreamRequest, RecordWithOffset, ResetStreamRequest, Stream, StreamType, ViewRid, } from "./_components.js";
2
- export type { CannotCreateStreamingDatasetInUserFolder, CannotWriteToTrashedStream, CreateStreamingDatasetPermissionDenied, CreateStreamPermissionDenied, FailedToProcessBinaryRecord, GetEndOffsetsForStreamPermissionDenied, GetRecordsFromStreamPermissionDenied, InvalidStreamNoSchema, InvalidStreamType, PublishBinaryRecordToStreamPermissionDenied, PublishRecordsToStreamPermissionDenied, PublishRecordToStreamPermissionDenied, RecordDoesNotMatchStreamSchema, RecordTooLarge, ResetStreamPermissionDenied, StreamNotFound, ViewNotFound, } from "./_errors.js";
1
+ export type { _Record, CommitSubscriberOffsetsRequest, Compressed, CreateStreamingDatasetRequest, CreateStreamRequest, CreateStreamRequestChangeDataCaptureConfiguration, CreateStreamRequestFullRowChangeDataCaptureConfiguration, CreateStreamRequestStreamSchema, CreateSubscriberRequest, CreateSubscriberRequestEarliestPosition, CreateSubscriberRequestLatestPosition, CreateSubscriberRequestReadPosition, CreateSubscriberRequestSpecificPosition, Dataset, EarliestPosition, GetEndOffsetsResponse, GetRecordsResponse, LatestPosition, PartitionId, PartitionOffsets, PartitionRecords, PartitionsCount, PublishRecordsToStreamRequest, PublishRecordToStreamRequest, ReadPosition, ReadRecordsFromSubscriberRequest, ReadSubscriberRecordsResponse, RecordWithOffset, ResetStreamRequest, ResetSubscriberOffsetsRequest, SpecificPosition, Stream, StreamType, Subscriber, SubscriberId, ViewRid, } from "./_components.js";
2
+ export type { CannotCreateStreamingDatasetInUserFolder, CannotWriteToTrashedStream, CommitSubscriberOffsetsPermissionDenied, CreateStreamingDatasetPermissionDenied, CreateStreamPermissionDenied, CreateSubscriberPermissionDenied, DeleteSubscriberPermissionDenied, FailedToProcessBinaryRecord, GetEndOffsetsForStreamPermissionDenied, GetRecordsFromStreamPermissionDenied, GetSubscriberReadPositionPermissionDenied, InvalidStreamNoSchema, InvalidStreamType, PublishBinaryRecordToStreamPermissionDenied, PublishRecordsToStreamPermissionDenied, PublishRecordToStreamPermissionDenied, ReadRecordsFromSubscriberPermissionDenied, RecordDoesNotMatchStreamSchema, RecordTooLarge, ResetStreamPermissionDenied, ResetSubscriberOffsetsPermissionDenied, StreamNotFound, SubscriberAlreadyExists, SubscriberNotFound, ViewNotFound, } from "./_errors.js";
3
3
  export * as Datasets from "./public/Dataset.js";
4
4
  export * as Streams from "./public/Stream.js";
5
+ export * as Subscribers from "./public/Subscriber.js";
5
6
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAgBA,YAAY,EACV,OAAO,EACP,UAAU,EACV,6BAA6B,EAC7B,mBAAmB,EACnB,iDAAiD,EACjD,wDAAwD,EACxD,+BAA+B,EAC/B,OAAO,EACP,qBAAqB,EACrB,kBAAkB,EAClB,WAAW,EACX,eAAe,EACf,6BAA6B,EAC7B,4BAA4B,EAC5B,gBAAgB,EAChB,kBAAkB,EAClB,MAAM,EACN,UAAU,EACV,OAAO,GACR,MAAM,kBAAkB,CAAC;AAC1B,YAAY,EACV,wCAAwC,EACxC,0BAA0B,EAC1B,sCAAsC,EACtC,4BAA4B,EAC5B,2BAA2B,EAC3B,sCAAsC,EACtC,oCAAoC,EACpC,qBAAqB,EACrB,iBAAiB,EACjB,2CAA2C,EAC3C,sCAAsC,EACtC,qCAAqC,EACrC,8BAA8B,EAC9B,cAAc,EACd,2BAA2B,EAC3B,cAAc,EACd,YAAY,GACb,MAAM,cAAc,CAAC;AACtB,OAAO,KAAK,QAAQ,MAAM,qBAAqB,CAAC;AAChD,OAAO,KAAK,OAAO,MAAM,oBAAoB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAgBA,YAAY,EACV,OAAO,EACP,8BAA8B,EAC9B,UAAU,EACV,6BAA6B,EAC7B,mBAAmB,EACnB,iDAAiD,EACjD,wDAAwD,EACxD,+BAA+B,EAC/B,uBAAuB,EACvB,uCAAuC,EACvC,qCAAqC,EACrC,mCAAmC,EACnC,uCAAuC,EACvC,OAAO,EACP,gBAAgB,EAChB,qBAAqB,EACrB,kBAAkB,EAClB,cAAc,EACd,WAAW,EACX,gBAAgB,EAChB,gBAAgB,EAChB,eAAe,EACf,6BAA6B,EAC7B,4BAA4B,EAC5B,YAAY,EACZ,gCAAgC,EAChC,6BAA6B,EAC7B,gBAAgB,EAChB,kBAAkB,EAClB,6BAA6B,EAC7B,gBAAgB,EAChB,MAAM,EACN,UAAU,EACV,UAAU,EACV,YAAY,EACZ,OAAO,GACR,MAAM,kBAAkB,CAAC;AAC1B,YAAY,EACV,wCAAwC,EACxC,0BAA0B,EAC1B,uCAAuC,EACvC,sCAAsC,EACtC,4BAA4B,EAC5B,gCAAgC,EAChC,gCAAgC,EAChC,2BAA2B,EAC3B,sCAAsC,EACtC,oCAAoC,EACpC,yCAAyC,EACzC,qBAAqB,EACrB,iBAAiB,EACjB,2CAA2C,EAC3C,sCAAsC,EACtC,qCAAqC,EACrC,yCAAyC,EACzC,8BAA8B,EAC9B,cAAc,EACd,2BAA2B,EAC3B,sCAAsC,EACtC,cAAc,EACd,uBAAuB,EACvB,kBAAkB,EAClB,YAAY,GACb,MAAM,cAAc,CAAC;AACtB,OAAO,KAAK,QAAQ,MAAM,qBAAqB,CAAC;AAChD,OAAO,KAAK,OAAO,MAAM,oBAAoB,CAAC;AAC9C,OAAO,KAAK,WAAW,MAAM,wBAAwB,CAAC"}
@@ -15,4 +15,5 @@
15
15
  */
16
16
  export * as Datasets from "./public/Dataset.js";
17
17
  export * as Streams from "./public/Stream.js";
18
+ export * as Subscribers from "./public/Subscriber.js";
18
19
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","names":["Datasets","Streams"],"sources":["index.js"],"sourcesContent":["/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nexport * as Datasets from \"./public/Dataset.js\";\nexport * as Streams from \"./public/Stream.js\";\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,KAAKA,QAAQ,MAAM,qBAAqB;AAC/C,OAAO,KAAKC,OAAO,MAAM,oBAAoB","ignoreList":[]}
1
+ {"version":3,"file":"index.js","names":["Datasets","Streams","Subscribers"],"sources":["index.js"],"sourcesContent":["/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nexport * as Datasets from \"./public/Dataset.js\";\nexport * as Streams from \"./public/Stream.js\";\nexport * as Subscribers from \"./public/Subscriber.js\";\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,KAAKA,QAAQ,MAAM,qBAAqB;AAC/C,OAAO,KAAKC,OAAO,MAAM,oBAAoB;AAC7C,OAAO,KAAKC,WAAW,MAAM,wBAAwB","ignoreList":[]}
@@ -0,0 +1,131 @@
1
+ import type * as _Core from "@osdk/foundry.core";
2
+ import type { SharedClient as $OldClient, SharedClientContext as $OldClientContext } from "@osdk/shared.client";
3
+ import type { SharedClient as $Client, SharedClientContext as $ClientContext } from "@osdk/shared.client2";
4
+ import type * as _Streams from "../_components.js";
5
+ /**
6
+ * Register a new subscriber for a stream. Subscribers maintain server-side offset tracking,
7
+ * allowing reliable consumption without client-side state management.
8
+ *
9
+ * If a subscriber with the same ID already exists for this stream, the existing registration
10
+ * is returned. If a subscriber with the same ID exists for a different stream, an error is returned.
11
+ *
12
+ * @alpha
13
+ *
14
+ * Required Scopes: [api:streams-write]
15
+ * URL: /v2/streams/datasets/{datasetRid}/streams/{streamBranchName}/subscribers
16
+ */
17
+ export declare function create($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
18
+ datasetRid: _Core.DatasetRid,
19
+ streamBranchName: _Core.BranchName,
20
+ $body: _Streams.CreateSubscriberRequest,
21
+ $queryParams?: {
22
+ preview?: _Core.PreviewMode | undefined;
23
+ }
24
+ ]): Promise<_Streams.Subscriber>;
25
+ /**
26
+ * Delete a subscriber and all its committed offset state. After deletion, the subscriber ID
27
+ * can be reused to create a new subscriber.
28
+ *
29
+ * @alpha
30
+ *
31
+ * Required Scopes: [api:streams-write]
32
+ * URL: /v2/streams/datasets/{datasetRid}/streams/{streamBranchName}/subscribers/{subscriberSubscriberId}
33
+ */
34
+ export declare function deleteSubscriber($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
35
+ datasetRid: _Core.DatasetRid,
36
+ streamBranchName: _Core.BranchName,
37
+ subscriberSubscriberId: _Streams.SubscriberId,
38
+ $queryParams?: {
39
+ preview?: _Core.PreviewMode | undefined;
40
+ }
41
+ ]): Promise<void>;
42
+ /**
43
+ * Fetch records for a subscriber starting from their committed offset. Returns records
44
+ * grouped by partition.
45
+ *
46
+ * If `autoCommit` is true, offsets are automatically committed after the records are
47
+ * fetched, so the next read will start from where this one left off.
48
+ *
49
+ * If `autoCommit` is false, you must call `commitOffsets` to update the read position.
50
+ * Use manual commits for at-least-once processing where you need to ensure records are
51
+ * processed before acknowledging them.
52
+ *
53
+ * @alpha
54
+ *
55
+ * Required Scopes: [api:streams-read]
56
+ * URL: /v2/highScale/streams/datasets/{datasetRid}/streams/{streamBranchName}/subscribers/{subscriberSubscriberId}/readRecords
57
+ */
58
+ export declare function readRecords($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
59
+ datasetRid: _Core.DatasetRid,
60
+ streamBranchName: _Core.BranchName,
61
+ subscriberSubscriberId: _Streams.SubscriberId,
62
+ $body: _Streams.ReadRecordsFromSubscriberRequest,
63
+ $queryParams?: {
64
+ preview?: _Core.PreviewMode | undefined;
65
+ }
66
+ ]): Promise<_Streams.ReadSubscriberRecordsResponse>;
67
+ /**
68
+ * Explicitly commit offsets for a subscriber. Required when `autoCommit` is false.
69
+ *
70
+ * Pass the last offset you processed for each partition.
71
+ *
72
+ * For example, if you processed a record at offset 50, commit `{"0": 50}` and the next
73
+ * read from partition "0" will start at offset 51.
74
+ *
75
+ * @alpha
76
+ *
77
+ * Required Scopes: [api:streams-write]
78
+ * URL: /v2/highScale/streams/datasets/{datasetRid}/streams/{streamBranchName}/subscribers/{subscriberSubscriberId}/commitOffsets
79
+ */
80
+ export declare function commitOffsets($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
81
+ datasetRid: _Core.DatasetRid,
82
+ streamBranchName: _Core.BranchName,
83
+ subscriberSubscriberId: _Streams.SubscriberId,
84
+ $body: _Streams.CommitSubscriberOffsetsRequest,
85
+ $queryParams?: {
86
+ preview?: _Core.PreviewMode | undefined;
87
+ }
88
+ ]): Promise<_Streams.PartitionOffsets>;
89
+ /**
90
+ * Get the current read position for a subscriber. Returns the offset per partition where the next read
91
+ * will begin.
92
+ *
93
+ * @alpha
94
+ *
95
+ * Required Scopes: [api:streams-read]
96
+ * URL: /v2/highScale/streams/datasets/{datasetRid}/streams/{streamBranchName}/subscribers/{subscriberSubscriberId}/getReadPosition
97
+ */
98
+ export declare function getReadPosition($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
99
+ datasetRid: _Core.DatasetRid,
100
+ streamBranchName: _Core.BranchName,
101
+ subscriberSubscriberId: _Streams.SubscriberId,
102
+ $queryParams?: {
103
+ viewRid?: _Streams.ViewRid | undefined;
104
+ preview?: _Core.PreviewMode | undefined;
105
+ }
106
+ ]): Promise<_Streams.PartitionOffsets>;
107
+ /**
108
+ * Reset subscriber offsets to a specific position. Use this to replay data from the
109
+ * beginning, skip to the latest records, or jump to specific offsets.
110
+ *
111
+ * The `position` parameter determines where reading will resume:
112
+ *
113
+ * * `earliest`: Reset to the beginning of each partition (offset 0)
114
+ * * `latest`: Reset to the current end of each partition
115
+ * * `specific`: Reset to explicit offsets for each partition
116
+ *
117
+ * @alpha
118
+ *
119
+ * Required Scopes: [api:streams-write]
120
+ * URL: /v2/highScale/streams/datasets/{datasetRid}/streams/{streamBranchName}/subscribers/{subscriberSubscriberId}/resetOffsets
121
+ */
122
+ export declare function resetOffsets($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
123
+ datasetRid: _Core.DatasetRid,
124
+ streamBranchName: _Core.BranchName,
125
+ subscriberSubscriberId: _Streams.SubscriberId,
126
+ $body: _Streams.ResetSubscriberOffsetsRequest,
127
+ $queryParams?: {
128
+ preview?: _Core.PreviewMode | undefined;
129
+ }
130
+ ]): Promise<_Streams.PartitionOffsets>;
131
+ //# sourceMappingURL=Subscriber.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Subscriber.d.ts","sourceRoot":"","sources":["../../../src/public/Subscriber.ts"],"names":[],"mappings":"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"}