@or-sdk/flows 2.7.3-beta.4040.0 → 2.7.3

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
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.7.3](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/compare/@or-sdk/flows@2.7.2...@or-sdk/flows@2.7.3) (2026-03-04)
7
+
8
+ **Note:** Version bump only for package @or-sdk/flows
9
+
10
+
11
+
12
+
13
+
6
14
  ## [2.7.2](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/compare/@or-sdk/flows@2.7.1...@or-sdk/flows@2.7.2) (2026-03-02)
7
15
 
8
16
 
@@ -4,26 +4,330 @@ export declare class Flows implements Taggable<Flow> {
4
4
  private readonly dataHubSvc;
5
5
  private readonly tags;
6
6
  private readonly files;
7
+ /** Service-Discovery API allows to fetch URLs for required services automatically on bootstrap */
7
8
  constructor(params: FlowsConfigWithDiscovery);
9
+ /** Providing URLs for APIs explicitly allows to reduce initial delay by avoiding extra calls to discovery service */
8
10
  constructor(params: FlowsConfigWithExplicitUrls);
11
+ /**
12
+ * List flows
13
+ *
14
+ * @example
15
+ * ```typescript
16
+ * const flowsList = await flows.listFlows();
17
+ * ```
18
+ */
9
19
  listFlows(params?: ListFlowsParams, paginationOptions?: PaginationOptions): Promise<List<Flow>>;
20
+ /**
21
+ * Fetch flow by id
22
+ *
23
+ * Supports cross-account logic (with super-admin token).
24
+ *
25
+ * @example
26
+ * ```typescript
27
+ * const flow = await flows.getFlow('<flow-id>');
28
+ * ```
29
+ */
10
30
  getFlow(id: string, params?: GetFlowParams): Promise<Flow>;
31
+ /**
32
+ * Save flow
33
+ *
34
+ * If source contains existing id - existing flow will be updated.
35
+ *
36
+ * Supports cross-account logic (with super-admin token).
37
+ *
38
+ * @example
39
+ * ```typescript
40
+ * const savedFlow = await flows.saveFlow(flowSource);
41
+ * ```
42
+ */
11
43
  saveFlow(source: Flow, options?: SaveFlowOptions): Promise<Flow>;
12
- deleteFlow(flowId: string | Flow, temporarily?: boolean): Promise<void>;
44
+ /**
45
+ * Delete flow
46
+ *
47
+ * Supports cross-account logic (with super-admin token).
48
+ *
49
+ * @example Delete flow by id
50
+ * ```typescript
51
+ * await flows.deleteFlow('<flow-id>');
52
+ * ```
53
+
54
+ * @example Delete flow by flow source
55
+ * ```typescript
56
+ * await flows.deleteFlow(flowSource);
57
+ * ```
58
+ */
59
+ deleteFlow(
60
+ /** Either id of the flow to delete, or flow object of the flow to delete */
61
+ flowId: string | Flow,
62
+ /** If `true` flow would be deleted in trash.Default `true` */
63
+ temporarily?: boolean): Promise<void>;
64
+ /**
65
+ * Recover flow
66
+ *
67
+ * Supports cross-account logic (with super-admin token)
68
+ *
69
+ * @example
70
+ * ```typescript
71
+ * await flows.recoverFlow('<flow-id>');
72
+ * ```
73
+ */
13
74
  recoverFlow(flowId: string): Promise<void>;
14
- activateFlow(flowSource: Flow, interactiveDebug?: boolean, progressCallback?: (progress: PollingResultPending) => void, pollingOptions?: PollingOptions): Promise<PollingResultActivateSuccess>;
15
- deactivateFlow(flowSource: Flow, progressCallback?: (progress: PollingResultPending) => void, pollingOptions?: PollingOptions): Promise<PollingResultDeactivateSuccess>;
75
+ /**
76
+ * Activates flow.
77
+ *
78
+ * Starts activation and polls progress. `progressCallback` is called on every polling
79
+ * while the activation is in 'pending' status.
80
+ *
81
+ * Supports cross-account logic (with super-admin token)
82
+ *
83
+ * The method is a convenience proxy of the same method from
84
+ * [@or-sdk/deployer](https://www.npmjs.com/package/@or-sdk/deployer).
85
+ *
86
+ * @example
87
+ * ```typescript
88
+ * const triggerList = await flows.activateFlow(flowSource, false, fnShowProgress);
89
+ * ```
90
+ */
91
+ activateFlow(
92
+ /** Flow data object. SDK uses `id` and `data.deploy.role` properties from it. */
93
+ flowSource: Flow,
94
+ /** Flag to turn the debug mode on/off. `false` by default. */
95
+ interactiveDebug?: boolean,
96
+ /** Callback function to call with interim activation progress results. */
97
+ progressCallback?: (progress: PollingResultPending) => void,
98
+ /** Activation polling options */
99
+ pollingOptions?: PollingOptions): Promise<PollingResultActivateSuccess>;
100
+ /**
101
+ * Deactivates flow.
102
+ *
103
+ * Starts deactivation and polls progress. `progressCallback` is called on every polling
104
+ * while the deactivation is in 'pending' status.
105
+ *
106
+ * Supports cross-account logic (with super-admin token)
107
+ *
108
+ * The method is a convenience proxy of the same method from
109
+ * [@or-sdk/deployer](https://www.npmjs.com/package/@or-sdk/deployer).
110
+ *
111
+ * @example
112
+ * ```typescript
113
+ * const deactivatedFlowList = await flows.deactivateFlow(flowSource, fnShowProgress);
114
+ * ```
115
+ */
116
+ deactivateFlow(
117
+ /** Flow data object. SDK uses `id` and `data.deploy.role` properties from it. */
118
+ flowSource: Flow,
119
+ /** Function to call with interim deactivation progress results. */
120
+ progressCallback?: (progress: PollingResultPending) => void,
121
+ /** Deactivation polling options */
122
+ pollingOptions?: PollingOptions): Promise<PollingResultDeactivateSuccess>;
123
+ /**
124
+ * Fetch single chunk of flow logs
125
+ *
126
+ * To fetch all log events for given time interval see {@link fetchAllFlowLogs}.
127
+ *
128
+ * Does not support cross-account fetching (with `accountId` in Deployer constructor).
129
+ *
130
+ * The method is a convenience proxy of the same method from
131
+ * [@or-sdk/deployer](https://www.npmjs.com/package/@or-sdk/deployer).
132
+ *
133
+ * @example Fetch latest chunk of logs for the flow:
134
+ * ```typescript
135
+ * const flows = new Flows({token: '<token>', discoveryUrl: '<discovery-api-url>'});
136
+ * const logs = await flows.fetchFlowLogsChunk({flowId: '<flow-id>'});
137
+ * ```
138
+ *
139
+ * @example Fetch two chunks of flow logs
140
+ * ```typescript
141
+ * const flows = new Flows({token: '<token>', discoveryUrl: '<discovery-api-url>'});
142
+ * const chunk1 = await flows.fetchFlowLogsChunk({flowId: '<flow-id>'});
143
+ * const chunk2 = await flows.fetchFlowLogsChunk({
144
+ * flowId: '<flow-id>',
145
+ * next: chunk1.nextToken,
146
+ * });
147
+ * ```
148
+ *
149
+ * @example Fetch chunk of logs starting from 1 hour ago till now:
150
+ * ```typescript
151
+ * const flows = new Flows({token: '<token>', discoveryUrl: '<discovery-api-url>'});
152
+ * const logs = await flows.fetchFlowLogsChunk({
153
+ * flowId: '<flow-id>',
154
+ * start: Date.now() - 60 * 60 * 1000, // 60 minutes ago
155
+ * });
156
+ * ```
157
+ */
16
158
  fetchFlowLogsChunk(params: FetchFlowLogsChunkParams): Promise<FlowLogsChunkResponse>;
159
+ /**
160
+ * Fetch all flow log events for a time interval
161
+ *
162
+ * To fetch only single chunk of log events see {@link fetchFlowLogsChunk}.
163
+ *
164
+ * Does not support cross-account fetching (with `accountId` in Deployer constructor).
165
+ *
166
+ * The method is a convenience proxy of the same method from
167
+ * [@or-sdk/deployer](https://www.npmjs.com/package/@or-sdk/deployer).
168
+ *
169
+ * @example Fetch latest logs for the flow:
170
+ * ```typescript
171
+ * const flows = new Flows({token: '<token>', discoveryUrl: '<discovery-api-url>'});
172
+ * const logs = await flows.fetchAllFlowLogs({flowId: '<flow-id>'});
173
+ * ```
174
+ *
175
+ * @example Fetch all logs starting from 1 hour ago till now:
176
+ * ```typescript
177
+ * const flows = new Flows({token: '<token>', discoveryUrl: '<discovery-api-url>'});
178
+ * const logs = await flows.fetchAllFlowLogs({
179
+ * flowId: '<flow-id>',
180
+ * start: Date.now() - 60 * 60 * 1000, // 60 minutes ago
181
+ * });
182
+ * ```
183
+ */
17
184
  fetchAllFlowLogs(params: FetchFlowLogsParams): Promise<FlowLogsResponse>;
185
+ /**
186
+ * List data outs
187
+ *
188
+ * Supports cross-account logic (with super-admin token)
189
+ */
18
190
  listDataOuts(paginationOptions?: PaginationOptions, params?: ListDataOutsParams): Promise<List<DataOut>>;
191
+ /**
192
+ * Add tags to flow
193
+ *
194
+ * Supports cross-account logic (with super-admin token)
195
+ *
196
+ * @example
197
+ * ```typescript
198
+ * const flow = await flows.addTags(flowSource, ['tag-name']);
199
+ * ```
200
+ */
19
201
  addTags(source: Flow, tagNames: string[]): Promise<Flow>;
202
+ /**
203
+ * Remove tags from flow
204
+ *
205
+ * Supports cross-account logic (with super-admin token)
206
+ *
207
+ * @example
208
+ * ```typescript
209
+ * const flow = await flows.removeTags(flowSource, ['tag-name']);
210
+ * ```
211
+ */
20
212
  removeTags(source: Flow, tagNames: string[]): Promise<Flow>;
21
- downloadTemplate(flowTemplateId: string, botId: string, shouldUpdateSteps?: boolean): Promise<DownloadTemplateResult>;
213
+ /**
214
+ * Download flow template into Space (Bot)
215
+ *
216
+ * Supports cross-account logic (with super-admin token)
217
+ *
218
+ * @example
219
+ * ```typescript
220
+ * const result = await flows.downloadTemplate('<flow-template-id>', '<bot-id>');
221
+ * ```
222
+ */
223
+ downloadTemplate(
224
+ /** Id of the flow template to download */
225
+ flowTemplateId: string,
226
+ /** Space id (bot id) */
227
+ botId: string,
228
+ /** If `true` update step templates to latest versions after download. Default `false`. */
229
+ shouldUpdateSteps?: boolean): Promise<DownloadTemplateResult>;
230
+ /**
231
+ * List unused step templates from flow source
232
+ *
233
+ * @example
234
+ * ```typescript
235
+ * const result = Flows.getUnusedStepTemplates(source);
236
+ * ```
237
+ */
22
238
  static listUnusedStepTemplates(source: Flow): StepTemplateRaw[];
23
- static deleteUnusedStepTemplates(source: Flow, stepTemplates?: StepTemplateToDelete[]): Flow;
239
+ /**
240
+ * Delete unused step templates from flow source
241
+ *
242
+ * Can delete specific templates passed as 2nd argument otherwise deletes all unused templates.
243
+ *
244
+ * @example
245
+ * ```typescript
246
+ * const result = Flows.deleteUnusedStepTemplates(source, unusedTemplatesArr);
247
+ * ```
248
+ */
249
+ static deleteUnusedStepTemplates(
250
+ /** Flow source to delete unused step templates from */
251
+ source: Flow,
252
+ /** List of specific unused step templates to delete. If not set will delete all unused step templates. */
253
+ stepTemplates?: StepTemplateToDelete[]): Flow;
254
+ /**
255
+ * List account or library flows that have or don't have specific step templates.
256
+ *
257
+ * Response would not include deleted flows.
258
+ *
259
+ * @example search for flows in current account which do not have the step template
260
+ * ```typescript
261
+ * const result = await flows.listFlowsByStepTemplate({
262
+ * query: { id: '<step-template-id>' },
263
+ * includesStep: false,
264
+ * });
265
+ * ```
266
+ *
267
+ * @example List flow labels in the library that have step templates
268
+ * with labels that start with 'Wait' and were not published by OneReach
269
+ * ```typescript
270
+ * const result = await client.listFlowsByStepTemplate({
271
+ * query: {
272
+ * label: { startsWith: 'Wait' },
273
+ * publishedBy: { notILike: '%onereach%' },
274
+ * },
275
+ * projection: ['id', 'data.label'],
276
+ * sandbox: true,
277
+ * });
278
+ * ```
279
+ */
24
280
  listFlowsByStepTemplate(params: ListFlowsByStepTemplateParams): Promise<List<Flow>>;
281
+ /**
282
+ * Only for SUPER_ADMIN token.
283
+ *
284
+ * List flows that use specific step template. Runs globally across all accounts.
285
+ *
286
+ * Response might include deleted flows, check `isDeleted` field.
287
+ *
288
+ * @example Search what flows use specific step templates:
289
+ * ```typescript
290
+ * const result = await flows.listFlowsByStepTemplateGlobal({
291
+ * query: {
292
+ * id: ['<step-template-id-1>', '<step-template-id-2>']
293
+ * }
294
+ * });
295
+ * ```
296
+ *
297
+ * @example Search for flows that have step with versions '0.6.*' and return only flow ids and labels
298
+ * ```typescript
299
+ * const result = await client.listFlowsByStepTemplateGlobal({
300
+ * query: {
301
+ * id: '<step-template-id>',
302
+ * version: { like: '0.6.%' },
303
+ * },
304
+ * projection: ['id', 'accountId', 'botId', 'data.label'],
305
+ * });
306
+ * ```
307
+ */
25
308
  listFlowsByStepTemplateGlobal(params: ListFlowsByStepTemplateGlobalParams): Promise<List<Flow>>;
309
+ /**
310
+ * Only for SUPER_ADMIN token.
311
+ *
312
+ * List step templates in the flow (in any account)
313
+ *
314
+ * @example List step templates in the flow by flow id and return only specific fields
315
+ * ```typescript
316
+ * const result = await flows.listStepTemplateByFlowGlobal({
317
+ * id: '<flow-id>',
318
+ * projection: ['label','version','id','isSandbox','isExternal']
319
+ * });
320
+ * ```
321
+ */
26
322
  listStepTemplateByFlowGlobal(params: ListStepTemplateParams): Promise<List<StepTemplateRaw>>;
323
+ /**
324
+ * List categories for library flows
325
+ *
326
+ * @example
327
+ * ```typescript
328
+ * const categories = await flows.listFlowCategories();
329
+ * ```
330
+ */
27
331
  listFlowCategories(): Promise<FlowCategoriesResponse>;
28
332
  private get crossAccountDataHubParams();
29
333
  }
@@ -1 +1 @@
1
- {"version":3,"file":"Flows.d.ts","sourceRoot":"","sources":["../../src/Flows.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"Flows.d.ts","sourceRoot":"","sources":["../../src/Flows.ts"],"names":[],"mappings":"AAMA,OAAO,EACL,wBAAwB,EACxB,mBAAmB,EACnB,IAAI,EACJ,qBAAqB,EACrB,gBAAgB,EAChB,cAAc,EACd,4BAA4B,EAC5B,8BAA8B,EAC9B,oBAAoB,EACpB,eAAe,EACf,OAAO,EACP,sBAAsB,EACtB,sBAAsB,EACtB,aAAa,EACb,IAAI,EACJ,kBAAkB,EAClB,mCAAmC,EACnC,6BAA6B,EAC7B,eAAe,EACf,sBAAsB,EACtB,iBAAiB,EACjB,eAAe,EACf,oBAAoB,EACpB,QAAQ,EACR,wBAAwB,EACxB,2BAA2B,EAC5B,MAAM,eAAe,CAAC;AAGvB,qBAAa,KAAM,YAAW,QAAQ,CAAC,IAAI,CAAC;IAC1C,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAW;IACpC,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAa;IACxC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAO;IAC5B,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAQ;IAE9B,kGAAkG;gBACtF,MAAM,EAAE,wBAAwB;IAC5C,qHAAqH;gBACzG,MAAM,EAAE,2BAA2B;IAiD/C;;;;;;;OAOG;IACU,SAAS,CAAC,MAAM,GAAE,eAAoB,EAAE,iBAAiB,GAAE,iBAAsB,GAAG,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IAgCpH;;;;;;;;;OASG;IACU,OAAO,CAAC,EAAE,EAAE,MAAM,EAAE,MAAM,GAAE,aAAkB,GAAG,OAAO,CAAC,IAAI,CAAC;IAW3E;;;;;;;;;;;OAWG;IACU,QAAQ,CAAC,MAAM,EAAE,IAAI,EAAE,OAAO,GAAE,eAAoB,GAAG,OAAO,CAAC,IAAI,CAAC;IAgCjF;;;;;;;;;;;;;;MAcE;IACW,UAAU;IACrB,4EAA4E;IAC5E,MAAM,EAAE,MAAM,GAAG,IAAI;IAErB,8DAA8D;IAC9D,WAAW,UAAO,GACjB,OAAO,CAAC,IAAI,CAAC;IAehB;;;;;;;;;OASG;IACU,WAAW,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAUvD;;;;;;;;;;;;;;;OAeG;IACU,YAAY;IACvB,iFAAiF;IACjF,UAAU,EAAE,IAAI;IAEhB,8DAA8D;IAC9D,gBAAgB,UAAQ;IAExB,0EAA0E;IAC1E,gBAAgB,CAAC,EAAE,CAAC,QAAQ,EAAE,oBAAoB,KAAK,IAAI;IAE3D,iCAAiC;IACjC,cAAc,CAAC,EAAE,cAAc,GAC9B,OAAO,CAAC,4BAA4B,CAAC;IAIxC;;;;;;;;;;;;;;;OAeG;IACU,cAAc;IACzB,iFAAiF;IACjF,UAAU,EAAE,IAAI;IAEhB,mEAAmE;IACnE,gBAAgB,CAAC,EAAE,CAAC,QAAQ,EAAE,oBAAoB,KAAK,IAAI;IAE3D,mCAAmC;IACnC,cAAc,CAAC,EAAE,cAAc,GAC9B,OAAO,CAAC,8BAA8B,CAAC;IAI1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAkCG;IACU,kBAAkB,CAAC,MAAM,EAAE,wBAAwB,GAAG,OAAO,CAAC,qBAAqB,CAAC;IAIjG;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;IACU,gBAAgB,CAAC,MAAM,EAAE,mBAAmB,GAAG,OAAO,CAAC,gBAAgB,CAAC;IAIrF;;;;OAIG;IACU,YAAY,CACvB,iBAAiB,GAAE,iBAAsB,EACzC,MAAM,GAAE,kBAAuB,GAC9B,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IAczB;;;;;;;;;OASG;IACU,OAAO,CAAC,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC;IAcrE;;;;;;;;;OASG;IACU,UAAU,CAAC,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC;IAgBxE;;;;;;;;;OASG;IACU,gBAAgB;IAC3B,0CAA0C;IAC1C,cAAc,EAAE,MAAM;IAEtB,wBAAwB;IACxB,KAAK,EAAE,MAAM;IAEb,0FAA0F;IAC1F,iBAAiB,UAAQ,GACxB,OAAO,CAAC,sBAAsB,CAAC;IAclC;;;;;;;OAOG;WACW,uBAAuB,CAAC,MAAM,EAAE,IAAI,GAAG,eAAe,EAAE;IAItE;;;;;;;;;OASG;WACW,yBAAyB;IACrC,uDAAuD;IACvD,MAAM,EAAE,IAAI;IAEZ,0GAA0G;IAC1G,aAAa,CAAC,EAAE,oBAAoB,EAAE,GACrC,IAAI;IAIP;;;;;;;;;;;;;;;;;;;;;;;;;OAyBG;IACU,uBAAuB,CAAC,MAAM,EAAE,6BAA6B,GAAG,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IAoBhG;;;;;;;;;;;;;;;;;;;;;;;;;;OA0BG;IACU,6BAA6B,CACxC,MAAM,EAAE,mCAAmC,GAC1C,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IAoBtB;;;;;;;;;;;;OAYG;IACU,4BAA4B,CACvC,MAAM,EAAE,sBAAsB,GAC7B,OAAO,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC;IAcjC;;;;;;;OAOG;IACU,kBAAkB,IAAI,OAAO,CAAC,sBAAsB,CAAC;IAOlE,OAAO,KAAK,yBAAyB,GAIpC;CACF"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@or-sdk/flows",
3
- "version": "2.7.3-beta.4040.0",
3
+ "version": "2.7.3",
4
4
  "license": "Apache-2.0",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -21,7 +21,7 @@
21
21
  "@or-sdk/base": "^0.44.0",
22
22
  "@or-sdk/data-hub-svc": "^2.3.1",
23
23
  "@or-sdk/deployer": "^1.7.1",
24
- "@or-sdk/files": "^3.11.1-beta.4040.0",
24
+ "@or-sdk/files": "^3.11.1",
25
25
  "@or-sdk/tags": "^1.1.1"
26
26
  },
27
27
  "devDependencies": {
@@ -30,5 +30,6 @@
30
30
  },
31
31
  "publishConfig": {
32
32
  "access": "public"
33
- }
33
+ },
34
+ "gitHead": "7e7dadde10f3f74ddf9d8dd2ed4522cd6347780c"
34
35
  }