@nivaro/sdk 0.1.4 → 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.
Files changed (3) hide show
  1. package/dist/index.d.ts +1826 -64
  2. package/dist/index.js +557 -0
  3. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -277,6 +277,219 @@ function toggleReportAlert(id, alertId, isActive) {
277
277
  function deleteReportAlert(id, alertId) {
278
278
  return cmd("DELETE", `/report-studio/${id}/alerts/${alertId}`);
279
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
+ }
280
493
 
281
494
  // src/commands/ai.ts
282
495
  function aiGenerate(body) {
@@ -318,6 +531,12 @@ function approveAiProposal(id) {
318
531
  function rejectAiProposal(id) {
319
532
  return cmd("POST", `/ai/proposals/${id}/reject`);
320
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
+ }
321
540
 
322
541
  // src/commands/collab.ts
323
542
  function listTasks(query) {
@@ -477,6 +696,135 @@ function subscribeFieldWatch(id) {
477
696
  function unsubscribeFieldWatch(id) {
478
697
  return cmd("DELETE", `/field-watches/${id}/subscribe`);
479
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
+ }
480
828
 
481
829
  // src/commands/content.ts
482
830
  function exportContent(collection, options) {
@@ -696,6 +1044,23 @@ function updateLayoutUngroupedSort(id, ungroupedSort) {
696
1044
  ungrouped_sort: ungroupedSort
697
1045
  });
698
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
+ }
699
1064
 
700
1065
  // src/commands/devex.ts
701
1066
  function getPostmanCollection() {
@@ -872,6 +1237,64 @@ function listBulkActions(collection) {
872
1237
  function executeBulkAction(actionId, data) {
873
1238
  return cmd("POST", `/bulk-actions/${actionId}/execute`, void 0, data);
874
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
+ }
875
1298
 
876
1299
  // src/commands/files.ts
877
1300
  function listFiles(options = {}) {
@@ -2068,8 +2491,10 @@ export {
2068
2491
  _starts_with,
2069
2492
  acquireItemLock,
2070
2493
  activateLayout,
2494
+ addChatChannelMember,
2071
2495
  addInstanceOwner,
2072
2496
  addSubRow,
2497
+ aiBrief,
2073
2498
  aiBuildReport,
2074
2499
  aiChat,
2075
2500
  aiCheckDuplicates,
@@ -2077,6 +2502,7 @@ export {
2077
2502
  aiMapColumns,
2078
2503
  aiQuery,
2079
2504
  aiReportFilters,
2505
+ aiReview,
2080
2506
  aiSummarize,
2081
2507
  aiValidate,
2082
2508
  appendSessionRecordingEvents,
@@ -2092,21 +2518,29 @@ export {
2092
2518
  callExternalApi,
2093
2519
  callExternalApiEndpoint,
2094
2520
  cancelScheduledChange,
2521
+ cancelStagedImport,
2095
2522
  cascadeFieldDependencies,
2096
2523
  checkBlackoutDate,
2097
2524
  claimQueueItem,
2525
+ clearTraces,
2098
2526
  cloneItem,
2099
2527
  cloneLayout,
2100
2528
  cloneReport,
2529
+ compareConfigSnapshot,
2101
2530
  completeTask,
2531
+ copyReportWidget,
2532
+ createAccessAudit,
2102
2533
  createAddendum,
2103
2534
  createAlertDefinition,
2104
2535
  createAlertSubscription,
2536
+ createAnomalyRule,
2105
2537
  createApiKey,
2106
2538
  createApprovalChain,
2107
2539
  createAtRiskRule,
2108
2540
  createAttributeDefinition,
2109
2541
  createBlackoutDate,
2542
+ createChatChannel,
2543
+ createChatRoomType,
2110
2544
  createCollectionLayout,
2111
2545
  createComment,
2112
2546
  createDataQualityRule,
@@ -2114,13 +2548,17 @@ export {
2114
2548
  createExternalApiEndpoint,
2115
2549
  createFieldGroup,
2116
2550
  createFieldWatch,
2551
+ createGroupDm,
2117
2552
  createHierarchyConfig,
2553
+ createImportDefinition,
2118
2554
  createImportJob,
2119
2555
  createImportJobFromUrl,
2120
2556
  createInternalWidget,
2121
2557
  createIssue,
2122
2558
  createItem,
2559
+ createMetricAlertRule,
2123
2560
  createNivaro,
2561
+ createNotification,
2124
2562
  createNotificationSubscription,
2125
2563
  createPage,
2126
2564
  createPdfTemplate,
@@ -2129,9 +2567,14 @@ export {
2129
2567
  createQueue,
2130
2568
  createQueueView,
2131
2569
  createRealtime,
2570
+ createRecordLink,
2132
2571
  createRecordTemplate,
2133
2572
  createReport,
2134
2573
  createReportAlert,
2574
+ createReportAnnotation,
2575
+ createReportFromTemplate,
2576
+ createReportSnapshot,
2577
+ createReportWidgetPreset,
2135
2578
  createRetentionPolicy,
2136
2579
  createRole,
2137
2580
  createRolePolicy,
@@ -2146,20 +2589,24 @@ export {
2146
2589
  createTask,
2147
2590
  createTreePermission,
2148
2591
  createUser,
2592
+ createViewSubscription,
2149
2593
  createVirtualCollection,
2150
2594
  createWebhook,
2151
2595
  createWidgetFeed,
2152
2596
  createWorkspace,
2153
2597
  createWorkspaceTemplate,
2154
2598
  decideApproval,
2599
+ deleteAccessAudit,
2155
2600
  deleteAddendum,
2156
2601
  deleteAlertDefinition,
2157
2602
  deleteAlertSubscription,
2603
+ deleteAnomalyRule,
2158
2604
  deleteApiKey,
2159
2605
  deleteApprovalChain,
2160
2606
  deleteAtRiskRule,
2161
2607
  deleteAttributeDefinition,
2162
2608
  deleteBlackoutDate,
2609
+ deleteChatMessage,
2163
2610
  deleteCollectionLayout,
2164
2611
  deleteComment,
2165
2612
  deleteDataQualityRule,
@@ -2175,6 +2622,7 @@ export {
2175
2622
  deleteInternalWidget,
2176
2623
  deleteIssue,
2177
2624
  deleteItem,
2625
+ deleteMetricAlertRule,
2178
2626
  deleteNotification,
2179
2627
  deleteNotificationSubscription,
2180
2628
  deletePage,
@@ -2182,10 +2630,15 @@ export {
2182
2630
  deletePersistedQuery,
2183
2631
  deleteQueue,
2184
2632
  deleteQueueView,
2633
+ deleteRecordLink,
2185
2634
  deleteRecordTemplate,
2186
2635
  deleteReport,
2187
2636
  deleteReportAlert,
2637
+ deleteReportAnnotation,
2188
2638
  deleteReportFilterPreset,
2639
+ deleteReportSnapshot,
2640
+ deleteReportTemplate,
2641
+ deleteReportWidgetPreset,
2189
2642
  deleteRetentionPolicy,
2190
2643
  deleteRole,
2191
2644
  deleteRolePolicy,
@@ -2200,13 +2653,17 @@ export {
2200
2653
  deleteTask,
2201
2654
  deleteTreePermission,
2202
2655
  deleteUser,
2656
+ deleteViewSubscription,
2203
2657
  deleteVirtualCollection,
2204
2658
  deleteWebhook,
2205
2659
  deleteWidgetFeed,
2206
2660
  deleteWorkspace,
2207
2661
  deleteWorkspaceTemplate,
2662
+ deployImportProcedure,
2208
2663
  desc,
2209
2664
  disableTwoFactor,
2665
+ drillReportRow,
2666
+ editChatMessage,
2210
2667
  endSessionRecording,
2211
2668
  evaluateAlerts,
2212
2669
  evaluateAtRisk,
@@ -2220,7 +2677,9 @@ export {
2220
2677
  executeImportTemplate,
2221
2678
  executeItemAction,
2222
2679
  executeScheduledChange,
2680
+ explainRecordAccess,
2223
2681
  exportBlueprint,
2682
+ exportConfigSnapshot,
2224
2683
  exportContent,
2225
2684
  exportContentBundle,
2226
2685
  exportSchemaSnapshot,
@@ -2256,12 +2715,18 @@ export {
2256
2715
  installCollectionPreset,
2257
2716
  invokeInternalWidgetAction,
2258
2717
  isPageSlot,
2718
+ joinChatRoom,
2719
+ leaveChatRoom,
2720
+ listAccessAuditRuns,
2721
+ listAccessAudits,
2259
2722
  listActiveAtRiskRules,
2260
2723
  listActivePresence,
2261
2724
  listAddendums,
2262
2725
  listAlertDefinitions,
2263
2726
  listAlertSubscriptions,
2264
2727
  listAllNotificationSubscriptions,
2728
+ listAnomalyDefinitions,
2729
+ listAnomalyRules,
2265
2730
  listApiKeys,
2266
2731
  listApprovalChains,
2267
2732
  listApprovalInstances,
@@ -2270,9 +2735,16 @@ export {
2270
2735
  listBlackoutDates,
2271
2736
  listBulkActions,
2272
2737
  listChangeOrders,
2738
+ listChatChannelMembers,
2739
+ listChatMessages,
2740
+ listChatPins,
2741
+ listChatRoles,
2742
+ listChatRoomTypes,
2743
+ listChatRooms,
2273
2744
  listCollectionPresets,
2274
2745
  listCollectionRecordTemplates,
2275
2746
  listComments,
2747
+ listCronJobs,
2276
2748
  listCustomQueries,
2277
2749
  listDataQualityRules,
2278
2750
  listDataQualityRuns,
@@ -2285,12 +2757,18 @@ export {
2285
2757
  listFiles,
2286
2758
  listFlowRuns,
2287
2759
  listHierarchyConfigs,
2760
+ listImportDefinitionVersions,
2761
+ listImportDefinitions,
2288
2762
  listImportJobs,
2289
2763
  listImportTemplates,
2290
2764
  listInternalWidgets,
2291
2765
  listIssues,
2292
2766
  listItemActions,
2293
2767
  listItemScheduledChanges,
2768
+ listLayoutVersions,
2769
+ listMetricAlertRules,
2770
+ listMetricAlertSubscriptions,
2771
+ listMetricDefinitions,
2294
2772
  listMyTasks,
2295
2773
  listNotificationSubscriptions,
2296
2774
  listNotifications,
@@ -2298,14 +2776,23 @@ export {
2298
2776
  listPages,
2299
2777
  listPdfTemplates,
2300
2778
  listPersistedQueries,
2779
+ listPinnedItems,
2780
+ listPipelineVersions,
2301
2781
  listQueueViews,
2302
2782
  listQueues,
2783
+ listRecordLinks,
2303
2784
  listRecordTemplates,
2304
2785
  listRegisteredExtensions,
2305
2786
  listRegisteredFlowOperations,
2306
2787
  listRegisteredFlowTriggers,
2788
+ listRelatedComments,
2307
2789
  listReportAlerts,
2790
+ listReportAnnotations,
2308
2791
  listReportFilterPresets,
2792
+ listReportSnapshots,
2793
+ listReportTemplates,
2794
+ listReportVersions,
2795
+ listReportWidgetPresets,
2309
2796
  listReports,
2310
2797
  listRetentionPolicies,
2311
2798
  listRetentionRuns,
@@ -2316,15 +2803,19 @@ export {
2316
2803
  listSavedViews,
2317
2804
  listScheduledChanges,
2318
2805
  listScheduledReports,
2806
+ listScopeDimensions,
2319
2807
  listSessionRecordings,
2320
2808
  listShareLinks,
2321
2809
  listSlaRules,
2810
+ listStagedImports,
2322
2811
  listSubRowTemplates,
2323
2812
  listSubRows,
2324
2813
  listSyncJobs,
2325
2814
  listTasks,
2326
2815
  listThroughputCollections,
2816
+ listTraces,
2327
2817
  listTreePermissions,
2818
+ listViewSubscriptions,
2328
2819
  listVirtualCollections,
2329
2820
  listWebhookDeliveries,
2330
2821
  listWebhooks,
@@ -2332,13 +2823,18 @@ export {
2332
2823
  listWorkspaceTemplates,
2333
2824
  listWorkspaces,
2334
2825
  markAllNotificationsRead,
2826
+ markChatRoomRead,
2335
2827
  markNotificationRead,
2828
+ markNotificationsRead,
2336
2829
  moveTreeNode,
2830
+ omniSearch,
2337
2831
  presignFileUpload,
2338
2832
  previewContentBundle,
2833
+ previewImportJob,
2339
2834
  previewReportWidget,
2340
2835
  publishItem,
2341
2836
  queryVirtualCollection,
2837
+ readAccessAuditFindings,
2342
2838
  readActiveLayout,
2343
2839
  readActivity,
2344
2840
  readActivityReportSummary,
@@ -2346,23 +2842,32 @@ export {
2346
2842
  readAiSettings,
2347
2843
  readAlertLog,
2348
2844
  readAllStateOwners,
2845
+ readAnomalyLog,
2349
2846
  readApiAnalyticsErrors,
2350
2847
  readApiAnalyticsSummary,
2351
2848
  readApiAnalyticsTimeseries,
2352
2849
  readApiAnalyticsTopCollections,
2353
2850
  readApiAnalyticsTopPaths,
2354
2851
  readApiKey,
2852
+ readApprovalBrief,
2355
2853
  readApprovalChain,
2356
2854
  readAtRiskSummary,
2357
2855
  readBackupManifest,
2856
+ readChatConfig,
2857
+ readChatDirectory,
2858
+ readChatPeerRead,
2358
2859
  readCollection,
2359
2860
  readCollectionLayout,
2360
2861
  readCollectionLayouts,
2361
2862
  readCollections,
2863
+ readConfigInventory,
2864
+ readCoverageGaps,
2362
2865
  readDataQualityRun,
2363
2866
  readDetailLayout,
2867
+ readDistinctValues,
2364
2868
  readDraftPublishConfig,
2365
2869
  readErpSubmissionHistory,
2870
+ readFieldChangeHistory,
2366
2871
  readFieldConfig,
2367
2872
  readFieldHistory,
2368
2873
  readFieldImpact,
@@ -2375,7 +2880,9 @@ export {
2375
2880
  readHierarchyNodes,
2376
2881
  readHierarchyTree,
2377
2882
  readImportJob,
2883
+ readImportProcedure,
2378
2884
  readInstanceOwners,
2885
+ readIntegrationHealth,
2379
2886
  readInternalWidget,
2380
2887
  readIssue,
2381
2888
  readIssueSummary,
@@ -2383,12 +2890,16 @@ export {
2383
2890
  readItemLock,
2384
2891
  readItemLockConfig,
2385
2892
  readItems,
2893
+ readLastTouch,
2386
2894
  readLayoutAssignments,
2387
2895
  readLayoutGroups,
2388
2896
  readMe,
2897
+ readMetricAlertLog,
2389
2898
  readMyScopes,
2899
+ readMyWork,
2390
2900
  readNotificationCount,
2391
2901
  readNotificationSubscriptionStats,
2902
+ readOnlinePresence,
2392
2903
  readOwnerGroups,
2393
2904
  readPage,
2394
2905
  readPageWidgetData,
@@ -2398,6 +2909,8 @@ export {
2398
2909
  readPipelineReplay,
2399
2910
  readPipelineTemplate,
2400
2911
  readPipelineTemplates,
2912
+ readPipelineVersion,
2913
+ readPreflight,
2401
2914
  readQueue,
2402
2915
  readQueueCollectionStates,
2403
2916
  readQueueColumnPrefs,
@@ -2408,22 +2921,31 @@ export {
2408
2921
  readRelationOptions,
2409
2922
  readReport,
2410
2923
  readReportAlertLog,
2924
+ readReportAlertsLog,
2411
2925
  readReportFilterOptions,
2926
+ readReportFiring,
2927
+ readReportSnapshot,
2412
2928
  readReportSubscription,
2929
+ readReportUsage,
2413
2930
  readReportWidgetData,
2414
2931
  readRevision,
2415
2932
  readRevisions,
2416
2933
  readRole,
2934
+ readScopeDimensionCoverage,
2417
2935
  readSessionRecordingEvents,
2418
2936
  readSettings,
2419
2937
  readSingleton,
2420
2938
  readSlaStatusBatch,
2939
+ readStagedImport,
2940
+ readStagedImportStats,
2421
2941
  readStateOwnerGroups,
2422
2942
  readStateOwners,
2943
+ readStateOwnersBatch,
2423
2944
  readSyncJob,
2424
2945
  readTask,
2425
2946
  readThroughputReport,
2426
2947
  readTimeline,
2948
+ readTrace,
2427
2949
  readTreeAncestors,
2428
2950
  readTreeChildren,
2429
2951
  readTreeConfig,
@@ -2450,6 +2972,7 @@ export {
2450
2972
  releaseItemLock,
2451
2973
  releaseQueueItem,
2452
2974
  rematerializeQueue,
2975
+ removeChatChannelMember,
2453
2976
  removeInstanceOwner,
2454
2977
  renderInternalWidget,
2455
2978
  renderPdfTemplate,
@@ -2458,9 +2981,16 @@ export {
2458
2981
  reorderTreeSiblings,
2459
2982
  replaceSubRows,
2460
2983
  replayActivityEvent,
2984
+ replayFlow,
2461
2985
  reportClientError,
2986
+ requestRecordAccess,
2987
+ requeueStagedImport,
2462
2988
  resetReportCache,
2463
2989
  resolveReportAlert,
2990
+ restoreImportDefinitionVersion,
2991
+ restoreLayoutVersion,
2992
+ restorePipelineVersion,
2993
+ restoreReportVersion,
2464
2994
  retryDeadLetter,
2465
2995
  retryErpSubmission,
2466
2996
  retryWebhookDelivery,
@@ -2470,17 +3000,23 @@ export {
2470
3000
  revokeUserToken,
2471
3001
  rollbackRevision,
2472
3002
  rotateWidgetFeedToken,
3003
+ runAccessAudit,
2473
3004
  runActivityReport,
2474
3005
  runActivityReportCsv,
3006
+ runCronJob,
2475
3007
  runDataQuality,
2476
3008
  runRetentionPolicy,
2477
3009
  runScheduledReport,
2478
3010
  runSyncJob,
2479
3011
  saveMyScopeDefaults,
2480
3012
  saveReportFilterPreset,
3013
+ saveReportTemplate,
2481
3014
  saveReportWidgets,
2482
3015
  saveUserScope,
3016
+ searchChatMessages,
2483
3017
  semanticSearch,
3018
+ sendBulkNotification,
3019
+ sendChatMessage,
2484
3020
  sendTestMail,
2485
3021
  sessionRecordingEnabled,
2486
3022
  setMyDelegate,
@@ -2490,30 +3026,47 @@ export {
2490
3026
  setupTwoFactor,
2491
3027
  simulatePermissions,
2492
3028
  simulatePipeline,
3029
+ simulatePipelineImpact,
2493
3030
  startApproval,
3031
+ startMasquerade,
2494
3032
  startSessionRecording,
2495
3033
  startWorkflow,
3034
+ stopMasquerade,
2496
3035
  submitAddendum,
2497
3036
  submitFormItem,
2498
3037
  submitItemForReview,
2499
3038
  submitToErp,
2500
3039
  subscribeFieldWatch,
3040
+ subscribeMetricAlert,
3041
+ suggestImportValidation,
2501
3042
  suggestQueueLabels,
2502
3043
  switchWorkspace,
2503
3044
  testExternalApi,
3045
+ testFlow,
2504
3046
  testWebhook,
3047
+ toggleChatPin,
3048
+ toggleChatReaction,
3049
+ togglePinnedItem,
2505
3050
  toggleReportAlert,
3051
+ touchRecordView,
2506
3052
  transitionWorkflow,
2507
3053
  unpublishItem,
2508
3054
  unsubscribeFieldWatch,
3055
+ unsubscribeMetricAlert,
3056
+ updateAccessAudit,
2509
3057
  updateAddendum,
2510
3058
  updateAiSettings,
2511
3059
  updateAlertDefinition,
3060
+ updateAnomalyLogEntry,
3061
+ updateAnomalyRule,
2512
3062
  updateApiKey,
2513
3063
  updateApprovalChain,
2514
3064
  updateAtRiskRule,
2515
3065
  updateAttributeDefinition,
2516
3066
  updateAttributeValues,
3067
+ updateChatChannel,
3068
+ updateChatRoom,
3069
+ updateChatRoomType,
2517
3070
  updateCollectionLayout,
2518
3071
  updateComment,
2519
3072
  updateDataQualityRule,
@@ -2526,6 +3079,7 @@ export {
2526
3079
  updateFieldWatch,
2527
3080
  updateFileMeta,
2528
3081
  updateHierarchyConfig,
3082
+ updateImportDefinition,
2529
3083
  updateInternalWidget,
2530
3084
  updateIssue,
2531
3085
  updateItem,
@@ -2533,6 +3087,8 @@ export {
2533
3087
  updateLayoutAssignments,
2534
3088
  updateLayoutUngroupedSort,
2535
3089
  updateMe,
3090
+ updateMetricAlertRule,
3091
+ updateMetricAlertSubscription,
2536
3092
  updateNotificationSubscription,
2537
3093
  updatePage,
2538
3094
  updatePdfTemplate,
@@ -2543,6 +3099,7 @@ export {
2543
3099
  updateRecordTemplate,
2544
3100
  updateReport,
2545
3101
  updateReportAlert,
3102
+ updateReportWidgetPreset,
2546
3103
  updateRetentionPolicy,
2547
3104
  updateRole,
2548
3105
  updateRolePolicy,