@nivaro/sdk 0.1.3 → 0.1.5
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/dist/index.d.ts +1982 -215
- package/dist/index.js +563 -2
- package/package.json +3 -2
package/dist/index.js
CHANGED
|
@@ -168,8 +168,12 @@ function readPipelineReplay(templateId, days) {
|
|
|
168
168
|
function sessionRecordingEnabled() {
|
|
169
169
|
return cmd("GET", "/session-recordings/enabled");
|
|
170
170
|
}
|
|
171
|
-
function startSessionRecording(app) {
|
|
172
|
-
|
|
171
|
+
function startSessionRecording(app, origin) {
|
|
172
|
+
const body = {};
|
|
173
|
+
if (app) body.app = app;
|
|
174
|
+
const resolved = origin ?? (typeof window !== "undefined" ? window.location.origin : void 0);
|
|
175
|
+
if (resolved) body.origin = resolved;
|
|
176
|
+
return cmd("POST", "/session-recordings/start", void 0, body);
|
|
173
177
|
}
|
|
174
178
|
function appendSessionRecordingEvents(id, seq, events) {
|
|
175
179
|
return cmd("POST", `/session-recordings/${id}/events`, void 0, { seq, events });
|
|
@@ -273,6 +277,219 @@ function toggleReportAlert(id, alertId, isActive) {
|
|
|
273
277
|
function deleteReportAlert(id, alertId) {
|
|
274
278
|
return cmd("DELETE", `/report-studio/${id}/alerts/${alertId}`);
|
|
275
279
|
}
|
|
280
|
+
function readReportAlertsLog(id) {
|
|
281
|
+
return cmd("GET", `/report-studio/${id}/alerts-log`);
|
|
282
|
+
}
|
|
283
|
+
function readReportFiring(id) {
|
|
284
|
+
return cmd("GET", `/report-studio/${id}/firing`);
|
|
285
|
+
}
|
|
286
|
+
function listReportVersions(id) {
|
|
287
|
+
return cmd("GET", `/report-studio/${id}/versions`);
|
|
288
|
+
}
|
|
289
|
+
function restoreReportVersion(id, versionId) {
|
|
290
|
+
return cmd("POST", `/report-studio/${id}/versions/${versionId}/restore`);
|
|
291
|
+
}
|
|
292
|
+
function listReportSnapshots(id) {
|
|
293
|
+
return cmd("GET", `/report-studio/${id}/snapshots`);
|
|
294
|
+
}
|
|
295
|
+
function createReportSnapshot(id, name) {
|
|
296
|
+
return cmd("POST", `/report-studio/${id}/snapshots`, void 0, name ? { name } : {});
|
|
297
|
+
}
|
|
298
|
+
function readReportSnapshot(id, snapId) {
|
|
299
|
+
return cmd("GET", `/report-studio/${id}/snapshots/${snapId}`);
|
|
300
|
+
}
|
|
301
|
+
function deleteReportSnapshot(id, snapId) {
|
|
302
|
+
return cmd("DELETE", `/report-studio/${id}/snapshots/${snapId}`);
|
|
303
|
+
}
|
|
304
|
+
function listReportAnnotations(id) {
|
|
305
|
+
return cmd("GET", `/report-studio/${id}/annotations`);
|
|
306
|
+
}
|
|
307
|
+
function createReportAnnotation(id, body) {
|
|
308
|
+
return cmd("POST", `/report-studio/${id}/annotations`, void 0, body);
|
|
309
|
+
}
|
|
310
|
+
function deleteReportAnnotation(id, annId) {
|
|
311
|
+
return cmd("DELETE", `/report-studio/${id}/annotations/${annId}`);
|
|
312
|
+
}
|
|
313
|
+
function listReportTemplates() {
|
|
314
|
+
return cmd("GET", "/report-studio/templates");
|
|
315
|
+
}
|
|
316
|
+
function saveReportTemplate(id, body = {}) {
|
|
317
|
+
return cmd("POST", `/report-studio/${id}/save-template`, void 0, body);
|
|
318
|
+
}
|
|
319
|
+
function createReportFromTemplate(body) {
|
|
320
|
+
return cmd("POST", "/report-studio/from-template", void 0, body);
|
|
321
|
+
}
|
|
322
|
+
function deleteReportTemplate(templateId) {
|
|
323
|
+
return cmd("DELETE", `/report-studio/templates/${templateId}`);
|
|
324
|
+
}
|
|
325
|
+
function copyReportWidget(id, widgetId, targetReportId) {
|
|
326
|
+
return cmd("POST", `/report-studio/${id}/widgets/${widgetId}/copy`, void 0, {
|
|
327
|
+
target_report_id: targetReportId
|
|
328
|
+
});
|
|
329
|
+
}
|
|
330
|
+
function drillReportRow(values) {
|
|
331
|
+
return cmd("POST", "/report-studio/drill-row", void 0, { values });
|
|
332
|
+
}
|
|
333
|
+
function readReportUsage() {
|
|
334
|
+
return cmd("GET", "/report-studio/usage");
|
|
335
|
+
}
|
|
336
|
+
function listReportWidgetPresets() {
|
|
337
|
+
return cmd("GET", "/report-studio/widget-presets");
|
|
338
|
+
}
|
|
339
|
+
function createReportWidgetPreset(body) {
|
|
340
|
+
return cmd("POST", "/report-studio/widget-presets", void 0, body);
|
|
341
|
+
}
|
|
342
|
+
function updateReportWidgetPreset(presetId, body) {
|
|
343
|
+
return cmd("PATCH", `/report-studio/widget-presets/${presetId}`, void 0, body);
|
|
344
|
+
}
|
|
345
|
+
function deleteReportWidgetPreset(presetId) {
|
|
346
|
+
return cmd("DELETE", `/report-studio/widget-presets/${presetId}`);
|
|
347
|
+
}
|
|
348
|
+
function listPipelineVersions(templateId) {
|
|
349
|
+
return cmd("GET", `/pipelines/${templateId}/versions`);
|
|
350
|
+
}
|
|
351
|
+
function readPipelineVersion(templateId, versionId) {
|
|
352
|
+
return cmd("GET", `/pipelines/${templateId}/versions/${versionId}`);
|
|
353
|
+
}
|
|
354
|
+
function restorePipelineVersion(templateId, versionId) {
|
|
355
|
+
return cmd("POST", `/pipelines/${templateId}/versions/${versionId}/restore`);
|
|
356
|
+
}
|
|
357
|
+
function simulatePipelineImpact(templateId, body) {
|
|
358
|
+
return cmd("POST", `/pipelines/${templateId}/simulate-impact`, void 0, body);
|
|
359
|
+
}
|
|
360
|
+
function readApprovalBrief(collection, item) {
|
|
361
|
+
return cmd("GET", `/pipelines/instance/${collection}/${item}/approval-brief`);
|
|
362
|
+
}
|
|
363
|
+
function readStateOwnersBatch(collection, ids) {
|
|
364
|
+
return cmd("POST", `/pipelines/instance/${collection}/owners/batch`, void 0, { ids });
|
|
365
|
+
}
|
|
366
|
+
function listMetricDefinitions(options = {}) {
|
|
367
|
+
return cmd("GET", "/metric-alerts/definitions", options.all ? { all: "1" } : void 0);
|
|
368
|
+
}
|
|
369
|
+
function listMetricAlertRules() {
|
|
370
|
+
return cmd("GET", "/metric-alerts/rules");
|
|
371
|
+
}
|
|
372
|
+
function createMetricAlertRule(body) {
|
|
373
|
+
return cmd("POST", "/metric-alerts/rules", void 0, body);
|
|
374
|
+
}
|
|
375
|
+
function updateMetricAlertRule(id, body) {
|
|
376
|
+
return cmd("PATCH", `/metric-alerts/rules/${id}`, void 0, body);
|
|
377
|
+
}
|
|
378
|
+
function deleteMetricAlertRule(id) {
|
|
379
|
+
return cmd("DELETE", `/metric-alerts/rules/${id}`);
|
|
380
|
+
}
|
|
381
|
+
function listMetricAlertSubscriptions() {
|
|
382
|
+
return cmd("GET", "/metric-alerts/subscriptions");
|
|
383
|
+
}
|
|
384
|
+
function subscribeMetricAlert(body) {
|
|
385
|
+
return cmd("POST", "/metric-alerts/subscriptions", void 0, body);
|
|
386
|
+
}
|
|
387
|
+
function updateMetricAlertSubscription(id, body) {
|
|
388
|
+
return cmd("PATCH", `/metric-alerts/subscriptions/${id}`, void 0, body);
|
|
389
|
+
}
|
|
390
|
+
function unsubscribeMetricAlert(id) {
|
|
391
|
+
return cmd("DELETE", `/metric-alerts/subscriptions/${id}`);
|
|
392
|
+
}
|
|
393
|
+
function readMetricAlertLog(options = {}) {
|
|
394
|
+
return cmd("GET", "/metric-alerts/log", options.limit ? { limit: options.limit } : void 0);
|
|
395
|
+
}
|
|
396
|
+
function listAnomalyDefinitions(options = {}) {
|
|
397
|
+
return cmd("GET", "/metric-alerts/anomaly-definitions", options.all ? { all: "1" } : void 0);
|
|
398
|
+
}
|
|
399
|
+
function listAnomalyRules() {
|
|
400
|
+
return cmd("GET", "/metric-alerts/anomaly-rules");
|
|
401
|
+
}
|
|
402
|
+
function createAnomalyRule(body) {
|
|
403
|
+
return cmd("POST", "/metric-alerts/anomaly-rules", void 0, body);
|
|
404
|
+
}
|
|
405
|
+
function updateAnomalyRule(id, body) {
|
|
406
|
+
return cmd("PATCH", `/metric-alerts/anomaly-rules/${id}`, void 0, body);
|
|
407
|
+
}
|
|
408
|
+
function deleteAnomalyRule(id) {
|
|
409
|
+
return cmd("DELETE", `/metric-alerts/anomaly-rules/${id}`);
|
|
410
|
+
}
|
|
411
|
+
function readAnomalyLog(options = {}) {
|
|
412
|
+
return cmd(
|
|
413
|
+
"GET",
|
|
414
|
+
"/metric-alerts/anomaly-log",
|
|
415
|
+
options.limit ? { limit: options.limit } : void 0
|
|
416
|
+
);
|
|
417
|
+
}
|
|
418
|
+
function updateAnomalyLogEntry(id, status) {
|
|
419
|
+
return cmd("PATCH", `/metric-alerts/anomaly-log/${id}`, void 0, { status });
|
|
420
|
+
}
|
|
421
|
+
function listScopeDimensions() {
|
|
422
|
+
return cmd("GET", "/scope-dimensions");
|
|
423
|
+
}
|
|
424
|
+
function readScopeDimensionCoverage(id) {
|
|
425
|
+
return cmd("GET", `/scope-dimensions/${id}/coverage`);
|
|
426
|
+
}
|
|
427
|
+
function listStagedImports(options = {}) {
|
|
428
|
+
return cmd("GET", "/staged-imports/", options);
|
|
429
|
+
}
|
|
430
|
+
function readStagedImportStats(days) {
|
|
431
|
+
return cmd("GET", "/staged-imports/stats", days != null ? { days } : void 0);
|
|
432
|
+
}
|
|
433
|
+
function readStagedImport(id) {
|
|
434
|
+
return cmd("GET", `/staged-imports/${id}`);
|
|
435
|
+
}
|
|
436
|
+
function requeueStagedImport(id) {
|
|
437
|
+
return cmd("POST", `/staged-imports/${id}/requeue`);
|
|
438
|
+
}
|
|
439
|
+
function cancelStagedImport(id) {
|
|
440
|
+
return cmd("POST", `/staged-imports/${id}/cancel`);
|
|
441
|
+
}
|
|
442
|
+
function listImportDefinitions(options = {}) {
|
|
443
|
+
return cmd("GET", "/staged-imports/definitions", options.all ? { all: "true" } : void 0);
|
|
444
|
+
}
|
|
445
|
+
function createImportDefinition(data) {
|
|
446
|
+
return cmd("POST", "/staged-imports/definitions", void 0, data);
|
|
447
|
+
}
|
|
448
|
+
function updateImportDefinition(id, data) {
|
|
449
|
+
return cmd("PATCH", `/staged-imports/definitions/${id}`, void 0, data);
|
|
450
|
+
}
|
|
451
|
+
function readImportProcedure(id) {
|
|
452
|
+
return cmd("GET", `/staged-imports/definitions/${id}/procedure`);
|
|
453
|
+
}
|
|
454
|
+
function deployImportProcedure(id) {
|
|
455
|
+
return cmd("POST", `/staged-imports/definitions/${id}/deploy`);
|
|
456
|
+
}
|
|
457
|
+
function listImportDefinitionVersions(id) {
|
|
458
|
+
return cmd("GET", `/staged-imports/definitions/${id}/versions`);
|
|
459
|
+
}
|
|
460
|
+
function restoreImportDefinitionVersion(id, versionId) {
|
|
461
|
+
return cmd("POST", `/staged-imports/definitions/${id}/versions/${versionId}/restore`);
|
|
462
|
+
}
|
|
463
|
+
function suggestImportValidation(id) {
|
|
464
|
+
return cmd("POST", `/staged-imports/definitions/${id}/suggest-validation`);
|
|
465
|
+
}
|
|
466
|
+
function listAccessAudits() {
|
|
467
|
+
return cmd("GET", "/access-audits/");
|
|
468
|
+
}
|
|
469
|
+
function createAccessAudit(data) {
|
|
470
|
+
return cmd("POST", "/access-audits/", void 0, data);
|
|
471
|
+
}
|
|
472
|
+
function updateAccessAudit(id, data) {
|
|
473
|
+
return cmd("PATCH", `/access-audits/${id}`, void 0, data);
|
|
474
|
+
}
|
|
475
|
+
function deleteAccessAudit(id) {
|
|
476
|
+
return cmd("DELETE", `/access-audits/${id}`);
|
|
477
|
+
}
|
|
478
|
+
function runAccessAudit(id) {
|
|
479
|
+
return cmd("POST", `/access-audits/${id}/run`);
|
|
480
|
+
}
|
|
481
|
+
function listAccessAuditRuns(id) {
|
|
482
|
+
return cmd("GET", `/access-audits/${id}/runs`);
|
|
483
|
+
}
|
|
484
|
+
function readAccessAuditFindings(runId, options = {}) {
|
|
485
|
+
return cmd("GET", `/access-audits/runs/${runId}/findings`, options);
|
|
486
|
+
}
|
|
487
|
+
function readCoverageGaps() {
|
|
488
|
+
return cmd("GET", "/coverage-gaps");
|
|
489
|
+
}
|
|
490
|
+
function readIntegrationHealth() {
|
|
491
|
+
return cmd("GET", "/integration-health");
|
|
492
|
+
}
|
|
276
493
|
|
|
277
494
|
// src/commands/ai.ts
|
|
278
495
|
function aiGenerate(body) {
|
|
@@ -314,6 +531,12 @@ function approveAiProposal(id) {
|
|
|
314
531
|
function rejectAiProposal(id) {
|
|
315
532
|
return cmd("POST", `/ai/proposals/${id}/reject`);
|
|
316
533
|
}
|
|
534
|
+
function aiReview(body) {
|
|
535
|
+
return cmd("POST", "/ai/review", void 0, body);
|
|
536
|
+
}
|
|
537
|
+
function aiBrief(body) {
|
|
538
|
+
return cmd("POST", "/ai/brief", void 0, body);
|
|
539
|
+
}
|
|
317
540
|
|
|
318
541
|
// src/commands/collab.ts
|
|
319
542
|
function listTasks(query) {
|
|
@@ -473,6 +696,135 @@ function subscribeFieldWatch(id) {
|
|
|
473
696
|
function unsubscribeFieldWatch(id) {
|
|
474
697
|
return cmd("DELETE", `/field-watches/${id}/subscribe`);
|
|
475
698
|
}
|
|
699
|
+
function listChatRooms() {
|
|
700
|
+
return cmd("GET", "/chat/rooms");
|
|
701
|
+
}
|
|
702
|
+
function readChatDirectory(search) {
|
|
703
|
+
return cmd("GET", "/chat/directory", search ? { search } : void 0);
|
|
704
|
+
}
|
|
705
|
+
function listChatMessages(room, options) {
|
|
706
|
+
const params = { room };
|
|
707
|
+
if (options?.before != null) params.before = options.before;
|
|
708
|
+
if (options?.limit != null) params.limit = options.limit;
|
|
709
|
+
return cmd("GET", "/chat/messages", params);
|
|
710
|
+
}
|
|
711
|
+
function sendChatMessage(body) {
|
|
712
|
+
return cmd("POST", "/chat/messages", void 0, body);
|
|
713
|
+
}
|
|
714
|
+
function editChatMessage(id, message) {
|
|
715
|
+
return cmd("PATCH", `/chat/messages/${id}`, void 0, { message });
|
|
716
|
+
}
|
|
717
|
+
function deleteChatMessage(id) {
|
|
718
|
+
return cmd("DELETE", `/chat/messages/${id}`);
|
|
719
|
+
}
|
|
720
|
+
function toggleChatReaction(id, emoji) {
|
|
721
|
+
return cmd("POST", `/chat/messages/${id}/reactions`, void 0, { emoji });
|
|
722
|
+
}
|
|
723
|
+
function toggleChatPin(id) {
|
|
724
|
+
return cmd("POST", `/chat/messages/${id}/pin`);
|
|
725
|
+
}
|
|
726
|
+
function listChatPins(room) {
|
|
727
|
+
return cmd("GET", `/chat/rooms/${encodeURIComponent(room)}/pins`);
|
|
728
|
+
}
|
|
729
|
+
function searchChatMessages(q) {
|
|
730
|
+
return cmd("GET", "/chat/search", { q });
|
|
731
|
+
}
|
|
732
|
+
function createGroupDm(body) {
|
|
733
|
+
return cmd("POST", "/chat/group-dm", void 0, body);
|
|
734
|
+
}
|
|
735
|
+
function readChatConfig() {
|
|
736
|
+
return cmd("GET", "/chat/config");
|
|
737
|
+
}
|
|
738
|
+
function markChatRoomRead(room) {
|
|
739
|
+
return cmd("POST", `/chat/rooms/${encodeURIComponent(room)}/read`);
|
|
740
|
+
}
|
|
741
|
+
function joinChatRoom(room) {
|
|
742
|
+
return cmd("POST", `/chat/rooms/${encodeURIComponent(room)}/join`);
|
|
743
|
+
}
|
|
744
|
+
function leaveChatRoom(room) {
|
|
745
|
+
return cmd("DELETE", `/chat/rooms/${encodeURIComponent(room)}/join`);
|
|
746
|
+
}
|
|
747
|
+
function updateChatRoom(room, body) {
|
|
748
|
+
return cmd("PATCH", `/chat/rooms/${encodeURIComponent(room)}`, void 0, body);
|
|
749
|
+
}
|
|
750
|
+
function readChatPeerRead(room) {
|
|
751
|
+
return cmd("GET", `/chat/rooms/${encodeURIComponent(room)}/peer-read`);
|
|
752
|
+
}
|
|
753
|
+
function createChatChannel(body) {
|
|
754
|
+
return cmd("POST", "/chat/channels", void 0, body);
|
|
755
|
+
}
|
|
756
|
+
function updateChatChannel(id, body) {
|
|
757
|
+
return cmd("PATCH", `/chat/channels/${id}`, void 0, body);
|
|
758
|
+
}
|
|
759
|
+
function listChatChannelMembers(id) {
|
|
760
|
+
return cmd("GET", `/chat/channels/${id}/members`);
|
|
761
|
+
}
|
|
762
|
+
function addChatChannelMember(id, userId) {
|
|
763
|
+
return cmd("POST", `/chat/channels/${id}/members`, void 0, { user_id: userId });
|
|
764
|
+
}
|
|
765
|
+
function removeChatChannelMember(id, userId) {
|
|
766
|
+
return cmd("DELETE", `/chat/channels/${id}/members/${encodeURIComponent(userId)}`);
|
|
767
|
+
}
|
|
768
|
+
function listChatRoles() {
|
|
769
|
+
return cmd("GET", "/chat/roles");
|
|
770
|
+
}
|
|
771
|
+
function listChatRoomTypes() {
|
|
772
|
+
return cmd("GET", "/chat/room-types");
|
|
773
|
+
}
|
|
774
|
+
function createChatRoomType(body) {
|
|
775
|
+
return cmd("POST", "/chat/room-types", void 0, body);
|
|
776
|
+
}
|
|
777
|
+
function updateChatRoomType(id, body) {
|
|
778
|
+
return cmd("PATCH", `/chat/room-types/${id}`, void 0, body);
|
|
779
|
+
}
|
|
780
|
+
function readMyWork() {
|
|
781
|
+
return cmd("GET", "/my-work");
|
|
782
|
+
}
|
|
783
|
+
function markNotificationsRead(ids) {
|
|
784
|
+
return cmd("POST", "/notifications/mark-read", void 0, { ids });
|
|
785
|
+
}
|
|
786
|
+
function createNotification(body) {
|
|
787
|
+
return cmd("POST", "/notifications", void 0, body);
|
|
788
|
+
}
|
|
789
|
+
function sendBulkNotification(body) {
|
|
790
|
+
return cmd("POST", "/notifications/bulk", void 0, body);
|
|
791
|
+
}
|
|
792
|
+
function listRecordLinks(collection, id) {
|
|
793
|
+
return cmd("GET", `/record-links/${collection}/${id}`);
|
|
794
|
+
}
|
|
795
|
+
function createRecordLink(body) {
|
|
796
|
+
return cmd("POST", "/record-links", void 0, body);
|
|
797
|
+
}
|
|
798
|
+
function deleteRecordLink(id) {
|
|
799
|
+
return cmd("DELETE", `/record-links/${id}`);
|
|
800
|
+
}
|
|
801
|
+
function listPinnedItems(collection) {
|
|
802
|
+
return cmd("GET", `/pinned/${collection}`);
|
|
803
|
+
}
|
|
804
|
+
function togglePinnedItem(collection, itemId) {
|
|
805
|
+
return cmd("POST", `/pinned/${collection}/${itemId}/toggle`);
|
|
806
|
+
}
|
|
807
|
+
function readLastTouch(collection, id) {
|
|
808
|
+
return cmd("GET", `/last-touch/${collection}/${id}`);
|
|
809
|
+
}
|
|
810
|
+
function listViewSubscriptions() {
|
|
811
|
+
return cmd("GET", "/view-subscriptions");
|
|
812
|
+
}
|
|
813
|
+
function createViewSubscription(body) {
|
|
814
|
+
return cmd("POST", "/view-subscriptions", void 0, body);
|
|
815
|
+
}
|
|
816
|
+
function deleteViewSubscription(id) {
|
|
817
|
+
return cmd("DELETE", `/view-subscriptions/${id}`);
|
|
818
|
+
}
|
|
819
|
+
function explainRecordAccess(collection, id) {
|
|
820
|
+
return cmd("GET", `/access-explain/${collection}/${id}`);
|
|
821
|
+
}
|
|
822
|
+
function requestRecordAccess(body) {
|
|
823
|
+
return cmd("POST", "/access-requests", void 0, body);
|
|
824
|
+
}
|
|
825
|
+
function readOnlinePresence() {
|
|
826
|
+
return cmd("GET", "/presence/online");
|
|
827
|
+
}
|
|
476
828
|
|
|
477
829
|
// src/commands/content.ts
|
|
478
830
|
function exportContent(collection, options) {
|
|
@@ -692,6 +1044,23 @@ function updateLayoutUngroupedSort(id, ungroupedSort) {
|
|
|
692
1044
|
ungrouped_sort: ungroupedSort
|
|
693
1045
|
});
|
|
694
1046
|
}
|
|
1047
|
+
function touchRecordView(collection, id) {
|
|
1048
|
+
return cmd("POST", `/record-views/${collection}/${id}/touch`, void 0, {});
|
|
1049
|
+
}
|
|
1050
|
+
function readFieldChangeHistory(collection, id, field) {
|
|
1051
|
+
return cmd("GET", `/field-history/${collection}/${id}/${field}`);
|
|
1052
|
+
}
|
|
1053
|
+
function previewImportJob(body) {
|
|
1054
|
+
return cmd("POST", "/imports/preview", void 0, body);
|
|
1055
|
+
}
|
|
1056
|
+
function listRelatedComments(collection, item) {
|
|
1057
|
+
return cmd("GET", "/comments/related", { collection, item: String(item) });
|
|
1058
|
+
}
|
|
1059
|
+
function readDistinctValues(collection, field, options) {
|
|
1060
|
+
const params = { field };
|
|
1061
|
+
if (options?.limit != null) params.limit = options.limit;
|
|
1062
|
+
return cmd("GET", `/items/${collection}/distinct`, params);
|
|
1063
|
+
}
|
|
695
1064
|
|
|
696
1065
|
// src/commands/devex.ts
|
|
697
1066
|
function getPostmanCollection() {
|
|
@@ -868,6 +1237,64 @@ function listBulkActions(collection) {
|
|
|
868
1237
|
function executeBulkAction(actionId, data) {
|
|
869
1238
|
return cmd("POST", `/bulk-actions/${actionId}/execute`, void 0, data);
|
|
870
1239
|
}
|
|
1240
|
+
function readPreflight() {
|
|
1241
|
+
return cmd("GET", "/preflight");
|
|
1242
|
+
}
|
|
1243
|
+
function listCronJobs() {
|
|
1244
|
+
return cmd("GET", "/cron");
|
|
1245
|
+
}
|
|
1246
|
+
function runCronJob(id) {
|
|
1247
|
+
return cmd("POST", `/cron/${id}/run`);
|
|
1248
|
+
}
|
|
1249
|
+
function listTraces(query) {
|
|
1250
|
+
const params = {};
|
|
1251
|
+
if (query?.limit != null) params.limit = query.limit;
|
|
1252
|
+
if (query?.route) params.route = query.route;
|
|
1253
|
+
return cmd("GET", "/traces", params);
|
|
1254
|
+
}
|
|
1255
|
+
function readTrace(id) {
|
|
1256
|
+
return cmd("GET", `/traces/${id}`);
|
|
1257
|
+
}
|
|
1258
|
+
function clearTraces() {
|
|
1259
|
+
return cmd("DELETE", "/traces");
|
|
1260
|
+
}
|
|
1261
|
+
function readConfigInventory() {
|
|
1262
|
+
return cmd("GET", "/config-diff/inventory");
|
|
1263
|
+
}
|
|
1264
|
+
function exportConfigSnapshot(options) {
|
|
1265
|
+
const params = {};
|
|
1266
|
+
if (options?.label) params.label = options.label;
|
|
1267
|
+
if (options?.tables?.length) params.tables = options.tables.join(",");
|
|
1268
|
+
return cmd("GET", "/config-diff/snapshot", params);
|
|
1269
|
+
}
|
|
1270
|
+
function compareConfigSnapshot(snapshot) {
|
|
1271
|
+
return cmd("POST", "/config-diff/compare", void 0, { snapshot });
|
|
1272
|
+
}
|
|
1273
|
+
function listLayoutVersions(layoutId) {
|
|
1274
|
+
return cmd("GET", `/collection-layouts/${layoutId}/versions`);
|
|
1275
|
+
}
|
|
1276
|
+
function restoreLayoutVersion(layoutId, versionId) {
|
|
1277
|
+
return cmd("POST", `/collection-layouts/${layoutId}/versions/${versionId}/restore`);
|
|
1278
|
+
}
|
|
1279
|
+
function omniSearch(q, options) {
|
|
1280
|
+
const params = { q };
|
|
1281
|
+
if (options?.collections?.length) params.collections = options.collections.join(",");
|
|
1282
|
+
if (options?.limit != null) params.limit = options.limit;
|
|
1283
|
+
if (options?.per_collection != null) params.per_collection = options.per_collection;
|
|
1284
|
+
return cmd("GET", "/search", params);
|
|
1285
|
+
}
|
|
1286
|
+
function testFlow(flowId, body) {
|
|
1287
|
+
return cmd("POST", `/flows/${flowId}/test`, void 0, body ?? {});
|
|
1288
|
+
}
|
|
1289
|
+
function replayFlow(flowId, body) {
|
|
1290
|
+
return cmd("POST", `/flows/${flowId}/replay`, void 0, body);
|
|
1291
|
+
}
|
|
1292
|
+
function startMasquerade(userId) {
|
|
1293
|
+
return cmd("POST", "/auth/masquerade", void 0, { user_id: userId });
|
|
1294
|
+
}
|
|
1295
|
+
function stopMasquerade() {
|
|
1296
|
+
return cmd("DELETE", "/auth/masquerade");
|
|
1297
|
+
}
|
|
871
1298
|
|
|
872
1299
|
// src/commands/files.ts
|
|
873
1300
|
function listFiles(options = {}) {
|
|
@@ -2064,8 +2491,10 @@ export {
|
|
|
2064
2491
|
_starts_with,
|
|
2065
2492
|
acquireItemLock,
|
|
2066
2493
|
activateLayout,
|
|
2494
|
+
addChatChannelMember,
|
|
2067
2495
|
addInstanceOwner,
|
|
2068
2496
|
addSubRow,
|
|
2497
|
+
aiBrief,
|
|
2069
2498
|
aiBuildReport,
|
|
2070
2499
|
aiChat,
|
|
2071
2500
|
aiCheckDuplicates,
|
|
@@ -2073,6 +2502,7 @@ export {
|
|
|
2073
2502
|
aiMapColumns,
|
|
2074
2503
|
aiQuery,
|
|
2075
2504
|
aiReportFilters,
|
|
2505
|
+
aiReview,
|
|
2076
2506
|
aiSummarize,
|
|
2077
2507
|
aiValidate,
|
|
2078
2508
|
appendSessionRecordingEvents,
|
|
@@ -2088,21 +2518,29 @@ export {
|
|
|
2088
2518
|
callExternalApi,
|
|
2089
2519
|
callExternalApiEndpoint,
|
|
2090
2520
|
cancelScheduledChange,
|
|
2521
|
+
cancelStagedImport,
|
|
2091
2522
|
cascadeFieldDependencies,
|
|
2092
2523
|
checkBlackoutDate,
|
|
2093
2524
|
claimQueueItem,
|
|
2525
|
+
clearTraces,
|
|
2094
2526
|
cloneItem,
|
|
2095
2527
|
cloneLayout,
|
|
2096
2528
|
cloneReport,
|
|
2529
|
+
compareConfigSnapshot,
|
|
2097
2530
|
completeTask,
|
|
2531
|
+
copyReportWidget,
|
|
2532
|
+
createAccessAudit,
|
|
2098
2533
|
createAddendum,
|
|
2099
2534
|
createAlertDefinition,
|
|
2100
2535
|
createAlertSubscription,
|
|
2536
|
+
createAnomalyRule,
|
|
2101
2537
|
createApiKey,
|
|
2102
2538
|
createApprovalChain,
|
|
2103
2539
|
createAtRiskRule,
|
|
2104
2540
|
createAttributeDefinition,
|
|
2105
2541
|
createBlackoutDate,
|
|
2542
|
+
createChatChannel,
|
|
2543
|
+
createChatRoomType,
|
|
2106
2544
|
createCollectionLayout,
|
|
2107
2545
|
createComment,
|
|
2108
2546
|
createDataQualityRule,
|
|
@@ -2110,13 +2548,17 @@ export {
|
|
|
2110
2548
|
createExternalApiEndpoint,
|
|
2111
2549
|
createFieldGroup,
|
|
2112
2550
|
createFieldWatch,
|
|
2551
|
+
createGroupDm,
|
|
2113
2552
|
createHierarchyConfig,
|
|
2553
|
+
createImportDefinition,
|
|
2114
2554
|
createImportJob,
|
|
2115
2555
|
createImportJobFromUrl,
|
|
2116
2556
|
createInternalWidget,
|
|
2117
2557
|
createIssue,
|
|
2118
2558
|
createItem,
|
|
2559
|
+
createMetricAlertRule,
|
|
2119
2560
|
createNivaro,
|
|
2561
|
+
createNotification,
|
|
2120
2562
|
createNotificationSubscription,
|
|
2121
2563
|
createPage,
|
|
2122
2564
|
createPdfTemplate,
|
|
@@ -2125,9 +2567,14 @@ export {
|
|
|
2125
2567
|
createQueue,
|
|
2126
2568
|
createQueueView,
|
|
2127
2569
|
createRealtime,
|
|
2570
|
+
createRecordLink,
|
|
2128
2571
|
createRecordTemplate,
|
|
2129
2572
|
createReport,
|
|
2130
2573
|
createReportAlert,
|
|
2574
|
+
createReportAnnotation,
|
|
2575
|
+
createReportFromTemplate,
|
|
2576
|
+
createReportSnapshot,
|
|
2577
|
+
createReportWidgetPreset,
|
|
2131
2578
|
createRetentionPolicy,
|
|
2132
2579
|
createRole,
|
|
2133
2580
|
createRolePolicy,
|
|
@@ -2142,20 +2589,24 @@ export {
|
|
|
2142
2589
|
createTask,
|
|
2143
2590
|
createTreePermission,
|
|
2144
2591
|
createUser,
|
|
2592
|
+
createViewSubscription,
|
|
2145
2593
|
createVirtualCollection,
|
|
2146
2594
|
createWebhook,
|
|
2147
2595
|
createWidgetFeed,
|
|
2148
2596
|
createWorkspace,
|
|
2149
2597
|
createWorkspaceTemplate,
|
|
2150
2598
|
decideApproval,
|
|
2599
|
+
deleteAccessAudit,
|
|
2151
2600
|
deleteAddendum,
|
|
2152
2601
|
deleteAlertDefinition,
|
|
2153
2602
|
deleteAlertSubscription,
|
|
2603
|
+
deleteAnomalyRule,
|
|
2154
2604
|
deleteApiKey,
|
|
2155
2605
|
deleteApprovalChain,
|
|
2156
2606
|
deleteAtRiskRule,
|
|
2157
2607
|
deleteAttributeDefinition,
|
|
2158
2608
|
deleteBlackoutDate,
|
|
2609
|
+
deleteChatMessage,
|
|
2159
2610
|
deleteCollectionLayout,
|
|
2160
2611
|
deleteComment,
|
|
2161
2612
|
deleteDataQualityRule,
|
|
@@ -2171,6 +2622,7 @@ export {
|
|
|
2171
2622
|
deleteInternalWidget,
|
|
2172
2623
|
deleteIssue,
|
|
2173
2624
|
deleteItem,
|
|
2625
|
+
deleteMetricAlertRule,
|
|
2174
2626
|
deleteNotification,
|
|
2175
2627
|
deleteNotificationSubscription,
|
|
2176
2628
|
deletePage,
|
|
@@ -2178,10 +2630,15 @@ export {
|
|
|
2178
2630
|
deletePersistedQuery,
|
|
2179
2631
|
deleteQueue,
|
|
2180
2632
|
deleteQueueView,
|
|
2633
|
+
deleteRecordLink,
|
|
2181
2634
|
deleteRecordTemplate,
|
|
2182
2635
|
deleteReport,
|
|
2183
2636
|
deleteReportAlert,
|
|
2637
|
+
deleteReportAnnotation,
|
|
2184
2638
|
deleteReportFilterPreset,
|
|
2639
|
+
deleteReportSnapshot,
|
|
2640
|
+
deleteReportTemplate,
|
|
2641
|
+
deleteReportWidgetPreset,
|
|
2185
2642
|
deleteRetentionPolicy,
|
|
2186
2643
|
deleteRole,
|
|
2187
2644
|
deleteRolePolicy,
|
|
@@ -2196,13 +2653,17 @@ export {
|
|
|
2196
2653
|
deleteTask,
|
|
2197
2654
|
deleteTreePermission,
|
|
2198
2655
|
deleteUser,
|
|
2656
|
+
deleteViewSubscription,
|
|
2199
2657
|
deleteVirtualCollection,
|
|
2200
2658
|
deleteWebhook,
|
|
2201
2659
|
deleteWidgetFeed,
|
|
2202
2660
|
deleteWorkspace,
|
|
2203
2661
|
deleteWorkspaceTemplate,
|
|
2662
|
+
deployImportProcedure,
|
|
2204
2663
|
desc,
|
|
2205
2664
|
disableTwoFactor,
|
|
2665
|
+
drillReportRow,
|
|
2666
|
+
editChatMessage,
|
|
2206
2667
|
endSessionRecording,
|
|
2207
2668
|
evaluateAlerts,
|
|
2208
2669
|
evaluateAtRisk,
|
|
@@ -2216,7 +2677,9 @@ export {
|
|
|
2216
2677
|
executeImportTemplate,
|
|
2217
2678
|
executeItemAction,
|
|
2218
2679
|
executeScheduledChange,
|
|
2680
|
+
explainRecordAccess,
|
|
2219
2681
|
exportBlueprint,
|
|
2682
|
+
exportConfigSnapshot,
|
|
2220
2683
|
exportContent,
|
|
2221
2684
|
exportContentBundle,
|
|
2222
2685
|
exportSchemaSnapshot,
|
|
@@ -2252,12 +2715,18 @@ export {
|
|
|
2252
2715
|
installCollectionPreset,
|
|
2253
2716
|
invokeInternalWidgetAction,
|
|
2254
2717
|
isPageSlot,
|
|
2718
|
+
joinChatRoom,
|
|
2719
|
+
leaveChatRoom,
|
|
2720
|
+
listAccessAuditRuns,
|
|
2721
|
+
listAccessAudits,
|
|
2255
2722
|
listActiveAtRiskRules,
|
|
2256
2723
|
listActivePresence,
|
|
2257
2724
|
listAddendums,
|
|
2258
2725
|
listAlertDefinitions,
|
|
2259
2726
|
listAlertSubscriptions,
|
|
2260
2727
|
listAllNotificationSubscriptions,
|
|
2728
|
+
listAnomalyDefinitions,
|
|
2729
|
+
listAnomalyRules,
|
|
2261
2730
|
listApiKeys,
|
|
2262
2731
|
listApprovalChains,
|
|
2263
2732
|
listApprovalInstances,
|
|
@@ -2266,9 +2735,16 @@ export {
|
|
|
2266
2735
|
listBlackoutDates,
|
|
2267
2736
|
listBulkActions,
|
|
2268
2737
|
listChangeOrders,
|
|
2738
|
+
listChatChannelMembers,
|
|
2739
|
+
listChatMessages,
|
|
2740
|
+
listChatPins,
|
|
2741
|
+
listChatRoles,
|
|
2742
|
+
listChatRoomTypes,
|
|
2743
|
+
listChatRooms,
|
|
2269
2744
|
listCollectionPresets,
|
|
2270
2745
|
listCollectionRecordTemplates,
|
|
2271
2746
|
listComments,
|
|
2747
|
+
listCronJobs,
|
|
2272
2748
|
listCustomQueries,
|
|
2273
2749
|
listDataQualityRules,
|
|
2274
2750
|
listDataQualityRuns,
|
|
@@ -2281,12 +2757,18 @@ export {
|
|
|
2281
2757
|
listFiles,
|
|
2282
2758
|
listFlowRuns,
|
|
2283
2759
|
listHierarchyConfigs,
|
|
2760
|
+
listImportDefinitionVersions,
|
|
2761
|
+
listImportDefinitions,
|
|
2284
2762
|
listImportJobs,
|
|
2285
2763
|
listImportTemplates,
|
|
2286
2764
|
listInternalWidgets,
|
|
2287
2765
|
listIssues,
|
|
2288
2766
|
listItemActions,
|
|
2289
2767
|
listItemScheduledChanges,
|
|
2768
|
+
listLayoutVersions,
|
|
2769
|
+
listMetricAlertRules,
|
|
2770
|
+
listMetricAlertSubscriptions,
|
|
2771
|
+
listMetricDefinitions,
|
|
2290
2772
|
listMyTasks,
|
|
2291
2773
|
listNotificationSubscriptions,
|
|
2292
2774
|
listNotifications,
|
|
@@ -2294,14 +2776,23 @@ export {
|
|
|
2294
2776
|
listPages,
|
|
2295
2777
|
listPdfTemplates,
|
|
2296
2778
|
listPersistedQueries,
|
|
2779
|
+
listPinnedItems,
|
|
2780
|
+
listPipelineVersions,
|
|
2297
2781
|
listQueueViews,
|
|
2298
2782
|
listQueues,
|
|
2783
|
+
listRecordLinks,
|
|
2299
2784
|
listRecordTemplates,
|
|
2300
2785
|
listRegisteredExtensions,
|
|
2301
2786
|
listRegisteredFlowOperations,
|
|
2302
2787
|
listRegisteredFlowTriggers,
|
|
2788
|
+
listRelatedComments,
|
|
2303
2789
|
listReportAlerts,
|
|
2790
|
+
listReportAnnotations,
|
|
2304
2791
|
listReportFilterPresets,
|
|
2792
|
+
listReportSnapshots,
|
|
2793
|
+
listReportTemplates,
|
|
2794
|
+
listReportVersions,
|
|
2795
|
+
listReportWidgetPresets,
|
|
2305
2796
|
listReports,
|
|
2306
2797
|
listRetentionPolicies,
|
|
2307
2798
|
listRetentionRuns,
|
|
@@ -2312,15 +2803,19 @@ export {
|
|
|
2312
2803
|
listSavedViews,
|
|
2313
2804
|
listScheduledChanges,
|
|
2314
2805
|
listScheduledReports,
|
|
2806
|
+
listScopeDimensions,
|
|
2315
2807
|
listSessionRecordings,
|
|
2316
2808
|
listShareLinks,
|
|
2317
2809
|
listSlaRules,
|
|
2810
|
+
listStagedImports,
|
|
2318
2811
|
listSubRowTemplates,
|
|
2319
2812
|
listSubRows,
|
|
2320
2813
|
listSyncJobs,
|
|
2321
2814
|
listTasks,
|
|
2322
2815
|
listThroughputCollections,
|
|
2816
|
+
listTraces,
|
|
2323
2817
|
listTreePermissions,
|
|
2818
|
+
listViewSubscriptions,
|
|
2324
2819
|
listVirtualCollections,
|
|
2325
2820
|
listWebhookDeliveries,
|
|
2326
2821
|
listWebhooks,
|
|
@@ -2328,13 +2823,18 @@ export {
|
|
|
2328
2823
|
listWorkspaceTemplates,
|
|
2329
2824
|
listWorkspaces,
|
|
2330
2825
|
markAllNotificationsRead,
|
|
2826
|
+
markChatRoomRead,
|
|
2331
2827
|
markNotificationRead,
|
|
2828
|
+
markNotificationsRead,
|
|
2332
2829
|
moveTreeNode,
|
|
2830
|
+
omniSearch,
|
|
2333
2831
|
presignFileUpload,
|
|
2334
2832
|
previewContentBundle,
|
|
2833
|
+
previewImportJob,
|
|
2335
2834
|
previewReportWidget,
|
|
2336
2835
|
publishItem,
|
|
2337
2836
|
queryVirtualCollection,
|
|
2837
|
+
readAccessAuditFindings,
|
|
2338
2838
|
readActiveLayout,
|
|
2339
2839
|
readActivity,
|
|
2340
2840
|
readActivityReportSummary,
|
|
@@ -2342,23 +2842,32 @@ export {
|
|
|
2342
2842
|
readAiSettings,
|
|
2343
2843
|
readAlertLog,
|
|
2344
2844
|
readAllStateOwners,
|
|
2845
|
+
readAnomalyLog,
|
|
2345
2846
|
readApiAnalyticsErrors,
|
|
2346
2847
|
readApiAnalyticsSummary,
|
|
2347
2848
|
readApiAnalyticsTimeseries,
|
|
2348
2849
|
readApiAnalyticsTopCollections,
|
|
2349
2850
|
readApiAnalyticsTopPaths,
|
|
2350
2851
|
readApiKey,
|
|
2852
|
+
readApprovalBrief,
|
|
2351
2853
|
readApprovalChain,
|
|
2352
2854
|
readAtRiskSummary,
|
|
2353
2855
|
readBackupManifest,
|
|
2856
|
+
readChatConfig,
|
|
2857
|
+
readChatDirectory,
|
|
2858
|
+
readChatPeerRead,
|
|
2354
2859
|
readCollection,
|
|
2355
2860
|
readCollectionLayout,
|
|
2356
2861
|
readCollectionLayouts,
|
|
2357
2862
|
readCollections,
|
|
2863
|
+
readConfigInventory,
|
|
2864
|
+
readCoverageGaps,
|
|
2358
2865
|
readDataQualityRun,
|
|
2359
2866
|
readDetailLayout,
|
|
2867
|
+
readDistinctValues,
|
|
2360
2868
|
readDraftPublishConfig,
|
|
2361
2869
|
readErpSubmissionHistory,
|
|
2870
|
+
readFieldChangeHistory,
|
|
2362
2871
|
readFieldConfig,
|
|
2363
2872
|
readFieldHistory,
|
|
2364
2873
|
readFieldImpact,
|
|
@@ -2371,7 +2880,9 @@ export {
|
|
|
2371
2880
|
readHierarchyNodes,
|
|
2372
2881
|
readHierarchyTree,
|
|
2373
2882
|
readImportJob,
|
|
2883
|
+
readImportProcedure,
|
|
2374
2884
|
readInstanceOwners,
|
|
2885
|
+
readIntegrationHealth,
|
|
2375
2886
|
readInternalWidget,
|
|
2376
2887
|
readIssue,
|
|
2377
2888
|
readIssueSummary,
|
|
@@ -2379,12 +2890,16 @@ export {
|
|
|
2379
2890
|
readItemLock,
|
|
2380
2891
|
readItemLockConfig,
|
|
2381
2892
|
readItems,
|
|
2893
|
+
readLastTouch,
|
|
2382
2894
|
readLayoutAssignments,
|
|
2383
2895
|
readLayoutGroups,
|
|
2384
2896
|
readMe,
|
|
2897
|
+
readMetricAlertLog,
|
|
2385
2898
|
readMyScopes,
|
|
2899
|
+
readMyWork,
|
|
2386
2900
|
readNotificationCount,
|
|
2387
2901
|
readNotificationSubscriptionStats,
|
|
2902
|
+
readOnlinePresence,
|
|
2388
2903
|
readOwnerGroups,
|
|
2389
2904
|
readPage,
|
|
2390
2905
|
readPageWidgetData,
|
|
@@ -2394,6 +2909,8 @@ export {
|
|
|
2394
2909
|
readPipelineReplay,
|
|
2395
2910
|
readPipelineTemplate,
|
|
2396
2911
|
readPipelineTemplates,
|
|
2912
|
+
readPipelineVersion,
|
|
2913
|
+
readPreflight,
|
|
2397
2914
|
readQueue,
|
|
2398
2915
|
readQueueCollectionStates,
|
|
2399
2916
|
readQueueColumnPrefs,
|
|
@@ -2404,22 +2921,31 @@ export {
|
|
|
2404
2921
|
readRelationOptions,
|
|
2405
2922
|
readReport,
|
|
2406
2923
|
readReportAlertLog,
|
|
2924
|
+
readReportAlertsLog,
|
|
2407
2925
|
readReportFilterOptions,
|
|
2926
|
+
readReportFiring,
|
|
2927
|
+
readReportSnapshot,
|
|
2408
2928
|
readReportSubscription,
|
|
2929
|
+
readReportUsage,
|
|
2409
2930
|
readReportWidgetData,
|
|
2410
2931
|
readRevision,
|
|
2411
2932
|
readRevisions,
|
|
2412
2933
|
readRole,
|
|
2934
|
+
readScopeDimensionCoverage,
|
|
2413
2935
|
readSessionRecordingEvents,
|
|
2414
2936
|
readSettings,
|
|
2415
2937
|
readSingleton,
|
|
2416
2938
|
readSlaStatusBatch,
|
|
2939
|
+
readStagedImport,
|
|
2940
|
+
readStagedImportStats,
|
|
2417
2941
|
readStateOwnerGroups,
|
|
2418
2942
|
readStateOwners,
|
|
2943
|
+
readStateOwnersBatch,
|
|
2419
2944
|
readSyncJob,
|
|
2420
2945
|
readTask,
|
|
2421
2946
|
readThroughputReport,
|
|
2422
2947
|
readTimeline,
|
|
2948
|
+
readTrace,
|
|
2423
2949
|
readTreeAncestors,
|
|
2424
2950
|
readTreeChildren,
|
|
2425
2951
|
readTreeConfig,
|
|
@@ -2446,6 +2972,7 @@ export {
|
|
|
2446
2972
|
releaseItemLock,
|
|
2447
2973
|
releaseQueueItem,
|
|
2448
2974
|
rematerializeQueue,
|
|
2975
|
+
removeChatChannelMember,
|
|
2449
2976
|
removeInstanceOwner,
|
|
2450
2977
|
renderInternalWidget,
|
|
2451
2978
|
renderPdfTemplate,
|
|
@@ -2454,9 +2981,16 @@ export {
|
|
|
2454
2981
|
reorderTreeSiblings,
|
|
2455
2982
|
replaceSubRows,
|
|
2456
2983
|
replayActivityEvent,
|
|
2984
|
+
replayFlow,
|
|
2457
2985
|
reportClientError,
|
|
2986
|
+
requestRecordAccess,
|
|
2987
|
+
requeueStagedImport,
|
|
2458
2988
|
resetReportCache,
|
|
2459
2989
|
resolveReportAlert,
|
|
2990
|
+
restoreImportDefinitionVersion,
|
|
2991
|
+
restoreLayoutVersion,
|
|
2992
|
+
restorePipelineVersion,
|
|
2993
|
+
restoreReportVersion,
|
|
2460
2994
|
retryDeadLetter,
|
|
2461
2995
|
retryErpSubmission,
|
|
2462
2996
|
retryWebhookDelivery,
|
|
@@ -2466,17 +3000,23 @@ export {
|
|
|
2466
3000
|
revokeUserToken,
|
|
2467
3001
|
rollbackRevision,
|
|
2468
3002
|
rotateWidgetFeedToken,
|
|
3003
|
+
runAccessAudit,
|
|
2469
3004
|
runActivityReport,
|
|
2470
3005
|
runActivityReportCsv,
|
|
3006
|
+
runCronJob,
|
|
2471
3007
|
runDataQuality,
|
|
2472
3008
|
runRetentionPolicy,
|
|
2473
3009
|
runScheduledReport,
|
|
2474
3010
|
runSyncJob,
|
|
2475
3011
|
saveMyScopeDefaults,
|
|
2476
3012
|
saveReportFilterPreset,
|
|
3013
|
+
saveReportTemplate,
|
|
2477
3014
|
saveReportWidgets,
|
|
2478
3015
|
saveUserScope,
|
|
3016
|
+
searchChatMessages,
|
|
2479
3017
|
semanticSearch,
|
|
3018
|
+
sendBulkNotification,
|
|
3019
|
+
sendChatMessage,
|
|
2480
3020
|
sendTestMail,
|
|
2481
3021
|
sessionRecordingEnabled,
|
|
2482
3022
|
setMyDelegate,
|
|
@@ -2486,30 +3026,47 @@ export {
|
|
|
2486
3026
|
setupTwoFactor,
|
|
2487
3027
|
simulatePermissions,
|
|
2488
3028
|
simulatePipeline,
|
|
3029
|
+
simulatePipelineImpact,
|
|
2489
3030
|
startApproval,
|
|
3031
|
+
startMasquerade,
|
|
2490
3032
|
startSessionRecording,
|
|
2491
3033
|
startWorkflow,
|
|
3034
|
+
stopMasquerade,
|
|
2492
3035
|
submitAddendum,
|
|
2493
3036
|
submitFormItem,
|
|
2494
3037
|
submitItemForReview,
|
|
2495
3038
|
submitToErp,
|
|
2496
3039
|
subscribeFieldWatch,
|
|
3040
|
+
subscribeMetricAlert,
|
|
3041
|
+
suggestImportValidation,
|
|
2497
3042
|
suggestQueueLabels,
|
|
2498
3043
|
switchWorkspace,
|
|
2499
3044
|
testExternalApi,
|
|
3045
|
+
testFlow,
|
|
2500
3046
|
testWebhook,
|
|
3047
|
+
toggleChatPin,
|
|
3048
|
+
toggleChatReaction,
|
|
3049
|
+
togglePinnedItem,
|
|
2501
3050
|
toggleReportAlert,
|
|
3051
|
+
touchRecordView,
|
|
2502
3052
|
transitionWorkflow,
|
|
2503
3053
|
unpublishItem,
|
|
2504
3054
|
unsubscribeFieldWatch,
|
|
3055
|
+
unsubscribeMetricAlert,
|
|
3056
|
+
updateAccessAudit,
|
|
2505
3057
|
updateAddendum,
|
|
2506
3058
|
updateAiSettings,
|
|
2507
3059
|
updateAlertDefinition,
|
|
3060
|
+
updateAnomalyLogEntry,
|
|
3061
|
+
updateAnomalyRule,
|
|
2508
3062
|
updateApiKey,
|
|
2509
3063
|
updateApprovalChain,
|
|
2510
3064
|
updateAtRiskRule,
|
|
2511
3065
|
updateAttributeDefinition,
|
|
2512
3066
|
updateAttributeValues,
|
|
3067
|
+
updateChatChannel,
|
|
3068
|
+
updateChatRoom,
|
|
3069
|
+
updateChatRoomType,
|
|
2513
3070
|
updateCollectionLayout,
|
|
2514
3071
|
updateComment,
|
|
2515
3072
|
updateDataQualityRule,
|
|
@@ -2522,6 +3079,7 @@ export {
|
|
|
2522
3079
|
updateFieldWatch,
|
|
2523
3080
|
updateFileMeta,
|
|
2524
3081
|
updateHierarchyConfig,
|
|
3082
|
+
updateImportDefinition,
|
|
2525
3083
|
updateInternalWidget,
|
|
2526
3084
|
updateIssue,
|
|
2527
3085
|
updateItem,
|
|
@@ -2529,6 +3087,8 @@ export {
|
|
|
2529
3087
|
updateLayoutAssignments,
|
|
2530
3088
|
updateLayoutUngroupedSort,
|
|
2531
3089
|
updateMe,
|
|
3090
|
+
updateMetricAlertRule,
|
|
3091
|
+
updateMetricAlertSubscription,
|
|
2532
3092
|
updateNotificationSubscription,
|
|
2533
3093
|
updatePage,
|
|
2534
3094
|
updatePdfTemplate,
|
|
@@ -2539,6 +3099,7 @@ export {
|
|
|
2539
3099
|
updateRecordTemplate,
|
|
2540
3100
|
updateReport,
|
|
2541
3101
|
updateReportAlert,
|
|
3102
|
+
updateReportWidgetPreset,
|
|
2542
3103
|
updateRetentionPolicy,
|
|
2543
3104
|
updateRole,
|
|
2544
3105
|
updateRolePolicy,
|