@epilot/cli 0.1.2 → 0.1.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/README.md CHANGED
@@ -16,7 +16,7 @@ npm install -g @epilot/cli # scoped package (same thing)
16
16
 
17
17
  <!-- usage-help -->
18
18
  ```
19
- epilot v0.1.2 — CLI for epilot APIs
19
+ epilot v0.1.3 — CLI for epilot APIs
20
20
 
21
21
  USAGE
22
22
  epilot <api> <operationId> [params...] [flags]
@@ -1,18 +1,17 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  API_LIST
4
- } from "../chunk-UJ6TU34M.js";
4
+ } from "../chunk-PHXL66VA.js";
5
5
 
6
6
  // bin/epilot.ts
7
7
  import { runMain } from "citty";
8
- import { createRequire } from "module";
9
8
 
10
9
  // src/index.ts
11
10
  import { defineCommand } from "citty";
12
11
  var main = defineCommand({
13
12
  meta: {
14
13
  name: "epilot",
15
- version: "0.1.2",
14
+ version: "0.1.3",
16
15
  description: "CLI for epilot APIs"
17
16
  },
18
17
  args: {
@@ -27,7 +26,7 @@ var main = defineCommand({
27
26
  subCommands: {
28
27
  auth: () => import("../auth-NEBRZ66K.js").then((m) => m.default),
29
28
  profile: () => import("../profile-PPVSNNBG.js").then((m) => m.default),
30
- completion: () => import("../completion-GRQM2FJQ.js").then((m) => m.default),
29
+ completion: () => import("../completion-XN3BD2LS.js").then((m) => m.default),
31
30
  "access-token": () => import("../access-token-F2VH6TNQ.js").then((m) => m.default),
32
31
  address: () => import("../address-YBOAFFFH.js").then((m) => m.default),
33
32
  "address-suggestions": () => import("../address-suggestions-ITPRYJSF.js").then((m) => m.default),
@@ -78,12 +77,11 @@ var main = defineCommand({
78
77
  });
79
78
 
80
79
  // bin/epilot.ts
81
- var require2 = createRequire(import.meta.url);
82
- var VERSION = require2("../package.json").version;
80
+ var VERSION = true ? "0.1.3" : (await null).default.version;
83
81
  var args = process.argv.slice(2);
84
82
  var completionsIdx = args.indexOf("--_completions");
85
83
  if (completionsIdx >= 0) {
86
- const { handleCompletions } = await import("../completion-GRQM2FJQ.js");
84
+ const { handleCompletions } = await import("../completion-XN3BD2LS.js");
87
85
  handleCompletions(args[completionsIdx + 1], args[completionsIdx + 2]);
88
86
  process.exit(0);
89
87
  }
@@ -0,0 +1,1199 @@
1
+ #!/usr/bin/env node
2
+
3
+ // src/generated/api-list.ts
4
+ var API_LIST = [
5
+ {
6
+ apiName: "accessToken",
7
+ kebabName: "access-token",
8
+ title: "Access Token API",
9
+ serverUrl: "https://access-token.sls.epilot.io",
10
+ operationCount: 7,
11
+ operationIds: [
12
+ "listAccessTokens",
13
+ "createAccessToken",
14
+ "revokeAccessToken",
15
+ "getAccessTokenJwks",
16
+ "getAccessTokenOIDC",
17
+ "getPublicTokenJwks",
18
+ "getPublicTokenOIDC"
19
+ ]
20
+ },
21
+ {
22
+ apiName: "address",
23
+ kebabName: "address",
24
+ title: "Address API",
25
+ serverUrl: "https://address.sls.epilot.io",
26
+ operationCount: 3,
27
+ operationIds: ["getAddressSuggestions", "availabilityCheck", "validateAvailabilityFile"]
28
+ },
29
+ {
30
+ apiName: "addressSuggestions",
31
+ kebabName: "address-suggestions",
32
+ title: "Address Suggestions API",
33
+ serverUrl: "https://address-suggestions-api.sls.epilot.io",
34
+ operationCount: 4,
35
+ operationIds: ["getAddresses", "validateAddresses", "checkAvailability", "validateAddressesFile"]
36
+ },
37
+ {
38
+ apiName: "aiAgents",
39
+ kebabName: "ai-agents",
40
+ title: "AI Agents API - OpenAPI 3.0",
41
+ serverUrl: "https://ai-agents.sls.epilot.io",
42
+ operationCount: 12,
43
+ operationIds: [
44
+ "listAgents",
45
+ "createAgent",
46
+ "getAgentById",
47
+ "updateAgentById",
48
+ "deleteAgentById",
49
+ "executeAgent",
50
+ "listExecutions",
51
+ "getExecution",
52
+ "cancelExecution",
53
+ "getExecutionTrace",
54
+ "approveExecution",
55
+ "rejectExecution"
56
+ ]
57
+ },
58
+ {
59
+ apiName: "app",
60
+ kebabName: "app",
61
+ title: "App API",
62
+ serverUrl: "https://app.sls.epilot.io",
63
+ operationCount: 30,
64
+ operationIds: [
65
+ "getPublicFacingComponent",
66
+ "listConfigurations",
67
+ "createConfiguration",
68
+ "listPublicConfigurations",
69
+ "getPublicConfiguration",
70
+ "getConfiguration",
71
+ "patchMetadata",
72
+ "deleteConfiguration",
73
+ "queryEvents",
74
+ "createBundleUploadUrl",
75
+ "createZipUploadUrl",
76
+ "createLogoUploadUrl",
77
+ "deleteLogo",
78
+ "listVersions",
79
+ "getVersion",
80
+ "patchVersion",
81
+ "deleteVersion",
82
+ "getReview",
83
+ "createReview",
84
+ "createComponent",
85
+ "patchComponent",
86
+ "deleteComponent",
87
+ "cloneVersion",
88
+ "listInstallations",
89
+ "getInstallation",
90
+ "install",
91
+ "patchInstallation",
92
+ "uninstall",
93
+ "promoteVersion",
94
+ "ingestEvent"
95
+ ]
96
+ },
97
+ {
98
+ apiName: "auditLogs",
99
+ kebabName: "audit-logs",
100
+ title: "Audit Log",
101
+ serverUrl: "https://audit-logs.sls.epilot.io",
102
+ operationCount: 2,
103
+ operationIds: ["getLogs", "getLogById"]
104
+ },
105
+ {
106
+ apiName: "automation",
107
+ kebabName: "automation",
108
+ title: "Automation API",
109
+ serverUrl: "https://automation.sls.epilot.io",
110
+ operationCount: 16,
111
+ operationIds: [
112
+ "searchFlows",
113
+ "createFlow",
114
+ "batchGetFlows",
115
+ "getFlow",
116
+ "putFlow",
117
+ "deleteFlow",
118
+ "getExecutions",
119
+ "startExecution",
120
+ "bulkTriggerExecutions",
121
+ "getBulkJob",
122
+ "patchBulkJob",
123
+ "getExecution",
124
+ "cancelExecution",
125
+ "retriggerAction",
126
+ "resumeExecutionWithToken",
127
+ "cancelSchedule"
128
+ ]
129
+ },
130
+ {
131
+ apiName: "billing",
132
+ kebabName: "billing",
133
+ title: "Billing API",
134
+ serverUrl: "https://billing.sls.epilot.io",
135
+ operationCount: 10,
136
+ operationIds: [
137
+ "getBillingEvents",
138
+ "createBillingEvent",
139
+ "getBillingEvent",
140
+ "updateBillingEvent",
141
+ "deleteBillingEvent",
142
+ "getBillingEventByExternalId",
143
+ "createContractEntity",
144
+ "updateContractEntity",
145
+ "deleteContractEntity",
146
+ "getCustomerBalance"
147
+ ]
148
+ },
149
+ {
150
+ apiName: "blueprintManifest",
151
+ kebabName: "blueprint-manifest",
152
+ title: "Blueprint Manifest API",
153
+ serverUrl: "https://blueprint-manifest.sls.epilot.io",
154
+ operationCount: 33,
155
+ operationIds: [
156
+ "getJob",
157
+ "createExport",
158
+ "exportManifest",
159
+ "uploadManifest",
160
+ "createPlan",
161
+ "applyPlan",
162
+ "listInstalledManifests",
163
+ "getManifest",
164
+ "updateManifest",
165
+ "deleteManifest",
166
+ "listBlueprints",
167
+ "createBlueprint",
168
+ "listInstalledMarketplaceBlueprints",
169
+ "preInstallBlueprint",
170
+ "getBlueprintPreview",
171
+ "installBlueprint",
172
+ "getBlueprint",
173
+ "updateBlueprint",
174
+ "deleteBlueprint",
175
+ "validateBlueprint",
176
+ "exportBlueprint",
177
+ "formatBlueprintDescription",
178
+ "addBlueprintResource",
179
+ "syncDependencies",
180
+ "bulkAddBlueprintResources",
181
+ "bulkUpdateBlueprintResources",
182
+ "bulkDeleteBlueprintResources",
183
+ "updateBlueprintResource",
184
+ "deleteBlueprintResource",
185
+ "listBlueprintJobs",
186
+ "getBlueprintJob",
187
+ "continueInstallationJob",
188
+ "cancelBlueprintJob"
189
+ ]
190
+ },
191
+ {
192
+ apiName: "consent",
193
+ kebabName: "consent",
194
+ title: "Consent API",
195
+ serverUrl: "https://consent.sls.epilot.io",
196
+ operationCount: 3,
197
+ operationIds: ["publishConsentEvent", "listConsentEvents", "handleOptInWithToken"]
198
+ },
199
+ {
200
+ apiName: "customerPortal",
201
+ kebabName: "customer-portal",
202
+ title: "Portal API",
203
+ serverUrl: "https://customer-portal-api.sls.epilot.io",
204
+ operationCount: 134,
205
+ operationIds: [
206
+ "upsertPortal",
207
+ "createUser",
208
+ "createUserV3",
209
+ "validateToken",
210
+ "revokeToken",
211
+ "getPortalConfigByDomain",
212
+ "getPortalConfig",
213
+ "deletePortal",
214
+ "getPortalExtensions",
215
+ "getPublicPortalExtensionDetails",
216
+ "getPortalExtensionsV3",
217
+ "getPublicPortalExtensionDetailsV3",
218
+ "getConsumption",
219
+ "getCosts",
220
+ "getPrices",
221
+ "getExternalLinks",
222
+ "getResolvedExternalLink",
223
+ "getExternalLinksV3",
224
+ "getResolvedExternalLinkV3",
225
+ "getResolvedSeamlessLink",
226
+ "getPublicPortalConfig",
227
+ "getOrgPortalConfig",
228
+ "getPublicPortalConfigV3",
229
+ "getOrgPortalConfigV3",
230
+ "getAllPortalConfigs",
231
+ "getEmailTemplates",
232
+ "upsertEmailTemplates",
233
+ "getEmailTemplatesByPortalId",
234
+ "upsertEmailTemplatesByPortalId",
235
+ "getPublicPortalWidgets",
236
+ "getPortalWidgets",
237
+ "upsertPortalWidget",
238
+ "replaceECPTemplateVariables",
239
+ "getOrganizationSettings",
240
+ "getSchemas",
241
+ "getSchemasByDomain",
242
+ "getOrganizationSettingsByDomain",
243
+ "extraPermissionAttributes",
244
+ "validateCaaRecords",
245
+ "validateCaaRecordsV3",
246
+ "getContact",
247
+ "updateContact",
248
+ "getECPContact",
249
+ "checkContactExists",
250
+ "checkContactExistsV3",
251
+ "getValidSecondaryAttributes",
252
+ "getPortalUser",
253
+ "updatePortalUser",
254
+ "deletePortalUser",
255
+ "updatePortalUserEmail",
256
+ "resendConfirmationEmail",
257
+ "fetchPortalUsersByRelatedEntity",
258
+ "confirmUser",
259
+ "confirmUserWithUserId",
260
+ "userExists",
261
+ "userExistsV3",
262
+ "getRecipientsToNotifyOnAutomation",
263
+ "configureDistribution",
264
+ "configureDistributionV3",
265
+ "getAllOrders",
266
+ "postOrderAcceptance",
267
+ "getOrder",
268
+ "updateOrder",
269
+ "getAllOpportunities",
270
+ "getSearchableAttributesForOpportunities",
271
+ "getSearchResultsForOpportunities",
272
+ "getOpportunity",
273
+ "updateOpportunity",
274
+ "getAllRequests",
275
+ "getAllContracts",
276
+ "getContract",
277
+ "updateContract",
278
+ "addContractByIdentifiers",
279
+ "getEntityIdentifiers",
280
+ "getEntityActivityFeed",
281
+ "validateCadenceEntityEditRules",
282
+ "searchPaymentRelationsInEntities",
283
+ "createCustomEntityActivity",
284
+ "saveEntityFile",
285
+ "deleteEntityFile",
286
+ "savePortalFiles",
287
+ "getRegistrationIdentifiers",
288
+ "getAllFiles",
289
+ "getFileById",
290
+ "trackFileDownloaded",
291
+ "getFilesCountByEntity",
292
+ "getBillingEvents",
293
+ "getCustomerBalance",
294
+ "getBillingAccount",
295
+ "loginToPortalAsUser",
296
+ "triggerEntityAccessEvent",
297
+ "triggerEntityAccessEventV3",
298
+ "getPortalUserEntity",
299
+ "searchPortalUserEntities",
300
+ "canTriggerPortalFlow",
301
+ "getAutomationContext",
302
+ "updateWorkflowStepAsDone",
303
+ "getEntityWorkflows",
304
+ "uploadMeterReadingPhoto",
305
+ "createMeterReading",
306
+ "getAllowedMeterReadingRange",
307
+ "ssoLogin",
308
+ "ssoLoginV3",
309
+ "ssoRedirect",
310
+ "ssoCallback",
311
+ "getPortalPage",
312
+ "updatePortalPage",
313
+ "deletePortalPage",
314
+ "getPortalPages",
315
+ "createPortalPage",
316
+ "getPublicPages",
317
+ "getDefaultPages",
318
+ "getPortalPageBlocks",
319
+ "createPortalPageBlock",
320
+ "getPortalPageBlock",
321
+ "updatePortalPageBlock",
322
+ "deletePortalPageBlock",
323
+ "getUserEntryPoint",
324
+ "updateCampaignPortalBlockStatus",
325
+ "updateNotificationsStatus",
326
+ "deRegisterMLoginUser",
327
+ "notifyMLoginInterestChange",
328
+ "createPortalConfig",
329
+ "getPortalConfigV3",
330
+ "putPortalConfig",
331
+ "deletePortalConfig",
332
+ "listAllPortalConfigs",
333
+ "swapPortalConfig",
334
+ "invitePartner",
335
+ "listBusinessPartners",
336
+ "resendPartnerInvitation",
337
+ "revokePartner",
338
+ "disablePartner",
339
+ "enablePartner"
340
+ ]
341
+ },
342
+ {
343
+ apiName: "dashboard",
344
+ kebabName: "dashboard",
345
+ title: "Dashboard API",
346
+ serverUrl: "https://dashboard.sls.epilot.io",
347
+ operationCount: 7,
348
+ operationIds: [
349
+ "listDashboards",
350
+ "createDashboard",
351
+ "getDashboard",
352
+ "putDashboard",
353
+ "deleteDashboard",
354
+ "listAvailableVisualisations",
355
+ "listAvailableExamples"
356
+ ]
357
+ },
358
+ {
359
+ apiName: "dataManagement",
360
+ kebabName: "data-management",
361
+ title: "Data Management API",
362
+ serverUrl: "https://data-management.sls.epilot.io",
363
+ operationCount: 10,
364
+ operationIds: [
365
+ "queryEntities",
366
+ "createJob",
367
+ "updateJob",
368
+ "getJob",
369
+ "getJobReportUrl",
370
+ "getConfig",
371
+ "createJobForConfig",
372
+ "upsertConfig",
373
+ "listConfigs",
374
+ "listJobs"
375
+ ]
376
+ },
377
+ {
378
+ apiName: "deduplication",
379
+ kebabName: "deduplication",
380
+ title: "Deduplication API",
381
+ serverUrl: "https://deduplication.sls.epilot.io",
382
+ operationCount: 1,
383
+ operationIds: ["deduplicate"]
384
+ },
385
+ {
386
+ apiName: "design",
387
+ kebabName: "design",
388
+ title: "Design Builder API v2",
389
+ serverUrl: "https://design-builder-api.epilot.io",
390
+ operationCount: 13,
391
+ operationIds: [
392
+ "getAllDesigns",
393
+ "addDesign",
394
+ "getDesign",
395
+ "updateDesign",
396
+ "deleteDesign",
397
+ "getThemeFromDesign",
398
+ "getFiles",
399
+ "uploadFile",
400
+ "getLimit",
401
+ "getBrands",
402
+ "getConsumerDesign",
403
+ "addConsumer",
404
+ "removeConsumer"
405
+ ]
406
+ },
407
+ {
408
+ apiName: "document",
409
+ kebabName: "document",
410
+ title: "Document API",
411
+ serverUrl: "https://document.sls.epilot.io",
412
+ operationCount: 3,
413
+ operationIds: ["getTemplateMeta", "generateDocumentV2", "convertDocument"]
414
+ },
415
+ {
416
+ apiName: "emailSettings",
417
+ kebabName: "email-settings",
418
+ title: "Messaging Settings API",
419
+ serverUrl: "https://email-settings.sls.epilot.io",
420
+ operationCount: 31,
421
+ operationIds: [
422
+ "provisionEpilotEmailAddress",
423
+ "setEmailAddressPrimary",
424
+ "getEmailAddress",
425
+ "updateEmailAddress",
426
+ "deleteEmailAddress",
427
+ "listEmailAddresses",
428
+ "addEmailAddress",
429
+ "getSharedInbox",
430
+ "updateSharedInbox",
431
+ "deleteSharedInbox",
432
+ "listSharedInboxes",
433
+ "addSharedInbox",
434
+ "listInboxBuckets",
435
+ "connectOutlook",
436
+ "getOutlookConnectionStatus",
437
+ "disconnectOutlook",
438
+ "connectOutlookMailbox",
439
+ "disconnectOutlookMailbox",
440
+ "startMailboxSync",
441
+ "getMailboxSyncStatus",
442
+ "retryMailboxSync",
443
+ "getConnectedOutlookEmails",
444
+ "outlookOAuthCallback",
445
+ "getSettings",
446
+ "addSetting",
447
+ "deleteSetting",
448
+ "updateSetting",
449
+ "addDomain",
450
+ "deleteDomain",
451
+ "verifyNameServers",
452
+ "verifyDomain"
453
+ ]
454
+ },
455
+ {
456
+ apiName: "emailTemplate",
457
+ kebabName: "email-template",
458
+ title: "Email template API",
459
+ serverUrl: "https://email-template.sls.epilot.io",
460
+ operationCount: 7,
461
+ operationIds: [
462
+ "saveTemplate",
463
+ "getTemplateDetail",
464
+ "updateTemplateDetail",
465
+ "replaceVariables",
466
+ "replaceVariablesAsync",
467
+ "bulkSendMessage",
468
+ "revertToOriginalTemplate"
469
+ ]
470
+ },
471
+ {
472
+ apiName: "entity",
473
+ kebabName: "entity",
474
+ title: "Entity API",
475
+ serverUrl: "https://entity.sls.epilot.io",
476
+ operationCount: 81,
477
+ operationIds: [
478
+ "listSchemas",
479
+ "getSchema",
480
+ "putSchema",
481
+ "deleteSchema",
482
+ "getJsonSchema",
483
+ "getSchemaExample",
484
+ "getSchemaVersions",
485
+ "listAvailableCapabilities",
486
+ "listSchemaBlueprints",
487
+ "searchEntities",
488
+ "listEntities",
489
+ "queryEntityGraph",
490
+ "createEntity",
491
+ "validateEntity",
492
+ "validateEntityV2",
493
+ "upsertEntity",
494
+ "getEntityV2",
495
+ "restoreEntity",
496
+ "reindexEntity",
497
+ "getEntity",
498
+ "updateEntity",
499
+ "patchEntity",
500
+ "deleteEntity",
501
+ "autocomplete",
502
+ "wipeAllEntities",
503
+ "createActivity",
504
+ "getActivity",
505
+ "attachActivity",
506
+ "getEntityActivityFeed",
507
+ "getRelations",
508
+ "addRelations",
509
+ "removeRelations",
510
+ "getRelationsV2",
511
+ "getRelationsV3",
512
+ "getRelatedEntitiesCount",
513
+ "updateRelation",
514
+ "deleteRelation",
515
+ "exportEntities",
516
+ "importEntities",
517
+ "listSavedViews",
518
+ "createSavedView",
519
+ "getSavedView",
520
+ "updateSavedView",
521
+ "patchSavedView",
522
+ "deleteSavedView",
523
+ "listFavoriteViewsForUser",
524
+ "listTaxonomies",
525
+ "createTaxonomy",
526
+ "getTaxonomy",
527
+ "updateTaxonomy",
528
+ "deleteTaxonomy",
529
+ "updateClassificationsForTaxonomy",
530
+ "createTaxonomyClassification",
531
+ "getTaxonomyClassification",
532
+ "updateTaxonomyClassification",
533
+ "deleteTaxonomyClassification",
534
+ "taxonomyAutocomplete",
535
+ "taxonomiesClassificationsSearch",
536
+ "listTaxonomyClassificationsForSchema",
537
+ "getTaxonomyBulkActionJobs",
538
+ "getTaxonomyBulkActionJobById",
539
+ "cancelBulkAction",
540
+ "bulkMoveClassifications",
541
+ "bulkMergeClassifications",
542
+ "bulkDeleteClassifications",
543
+ "createSchemaAttribute",
544
+ "getSchemaAttribute",
545
+ "putSchemaAttribute",
546
+ "deleteSchemaAttribute",
547
+ "createSchemaCapability",
548
+ "getSchemaCapability",
549
+ "putSchemaCapability",
550
+ "deleteSchemaCapability",
551
+ "createSchemaGroup",
552
+ "getSchemaGroup",
553
+ "putSchemaGroup",
554
+ "deleteSchemaGroup",
555
+ "createSchemaGroupHeadline",
556
+ "getSchemaGroupHeadline",
557
+ "putSchemaGroupHeadline",
558
+ "deleteSchemaGroupHeadline"
559
+ ]
560
+ },
561
+ {
562
+ apiName: "entityMapping",
563
+ kebabName: "entity-mapping",
564
+ title: "Entity Mapping API",
565
+ serverUrl: "https://entity-mapping.sls.epilot.io",
566
+ operationCount: 12,
567
+ operationIds: [
568
+ "storeConfig",
569
+ "getConfig",
570
+ "deleteConfig",
571
+ "getAllVersions",
572
+ "storeNewVersion",
573
+ "getConfigVersion",
574
+ "executeMapping",
575
+ "searchConfigs",
576
+ "queryMappingHistory",
577
+ "executeRelations",
578
+ "getMappingConfig",
579
+ "putMappingConfig"
580
+ ]
581
+ },
582
+ {
583
+ apiName: "environments",
584
+ kebabName: "environments",
585
+ title: "Environments API",
586
+ serverUrl: "https://environments.sls.epilot.io",
587
+ operationCount: 5,
588
+ operationIds: [
589
+ "listEnvironmentVariables",
590
+ "createEnvironmentVariable",
591
+ "getEnvironmentVariable",
592
+ "updateEnvironmentVariable",
593
+ "deleteEnvironmentVariable"
594
+ ]
595
+ },
596
+ {
597
+ apiName: "erpIntegration",
598
+ kebabName: "erp-integration",
599
+ title: "ERP Integration API",
600
+ serverUrl: "https://erp-integration-api.sls.epilot.io",
601
+ operationCount: 33,
602
+ operationIds: [
603
+ "acknowledgeTracking",
604
+ "triggerErp",
605
+ "processErpUpdatesEvents",
606
+ "processErpUpdatesEventsV2",
607
+ "processErpUpdatesEventsV3",
608
+ "simulateMappingV2",
609
+ "simulateMapping",
610
+ "listIntegrations",
611
+ "createIntegration",
612
+ "getIntegration",
613
+ "updateIntegration",
614
+ "deleteIntegration",
615
+ "queryEvents",
616
+ "replayEvents",
617
+ "listUseCases",
618
+ "createUseCase",
619
+ "getUseCase",
620
+ "updateUseCase",
621
+ "deleteUseCase",
622
+ "listUseCaseHistory",
623
+ "listIntegrationsV2",
624
+ "createIntegrationV2",
625
+ "getIntegrationV2",
626
+ "updateIntegrationV2",
627
+ "deleteIntegrationV2",
628
+ "setIntegrationAppMapping",
629
+ "deleteIntegrationAppMapping",
630
+ "queryInboundMonitoringEvents",
631
+ "getMonitoringStats",
632
+ "getMonitoringTimeSeries",
633
+ "getOutboundStatus",
634
+ "queryAccessLogs",
635
+ "queryOutboundMonitoringEvents"
636
+ ]
637
+ },
638
+ {
639
+ apiName: "eventCatalog",
640
+ kebabName: "event-catalog",
641
+ title: "Event Catalog API",
642
+ serverUrl: "https://event-catalog.sls.epilot.io",
643
+ operationCount: 7,
644
+ operationIds: [
645
+ "listEvents",
646
+ "getEvent",
647
+ "patchEvent",
648
+ "getEventJSONSchema",
649
+ "getEventExample",
650
+ "searchEventHistory",
651
+ "triggerEvent"
652
+ ]
653
+ },
654
+ {
655
+ apiName: "file",
656
+ kebabName: "file",
657
+ title: "File API",
658
+ serverUrl: "https://file.sls.epilot.io",
659
+ operationCount: 27,
660
+ operationIds: [
661
+ "uploadFileV2",
662
+ "saveFileV2",
663
+ "uploadFile",
664
+ "saveFile",
665
+ "getFile",
666
+ "deleteFile",
667
+ "downloadFile",
668
+ "downloadS3File",
669
+ "downloadFiles",
670
+ "previewFile",
671
+ "previewS3FileGet",
672
+ "previewS3File",
673
+ "previewPublicFile",
674
+ "getSession",
675
+ "deleteSession",
676
+ "listPublicLinksForFile",
677
+ "generatePublicLink",
678
+ "accessPublicLink",
679
+ "revokePublicLink",
680
+ "verifyCustomDownloadUrl",
681
+ "uploadFilePublic",
682
+ "getUserSchemaFileCollections",
683
+ "createUserSchemaFileCollection",
684
+ "updateUserSchemaFileCollection",
685
+ "deleteUserSchemaFileCollection",
686
+ "getFilesInCollection",
687
+ "getGlobalFileCollections"
688
+ ]
689
+ },
690
+ {
691
+ apiName: "iban",
692
+ kebabName: "iban",
693
+ title: "Iban API",
694
+ serverUrl: "https://iban-api.sls.epilot.io",
695
+ operationCount: 1,
696
+ operationIds: ["validateIban"]
697
+ },
698
+ {
699
+ apiName: "journey",
700
+ kebabName: "journey",
701
+ title: "Journey API",
702
+ serverUrl: "https://journey-config.sls.epilot.io",
703
+ operationCount: 16,
704
+ operationIds: [
705
+ "getJourneysByOrgId",
706
+ "getJourney",
707
+ "removeJourney",
708
+ "getJourneyProducts",
709
+ "createJourney",
710
+ "updateJourney",
711
+ "patchUpdateJourney",
712
+ "searchJourneys",
713
+ "generateDocument",
714
+ "createJourneyV2",
715
+ "updateJourneyV2",
716
+ "patchUpdateJourneyV2",
717
+ "getJourneyV2",
718
+ "removeJourneyV2",
719
+ "getSettingsForJourney",
720
+ "getButtonOptions"
721
+ ]
722
+ },
723
+ {
724
+ apiName: "kanban",
725
+ kebabName: "kanban",
726
+ title: "Kanban API",
727
+ serverUrl: "https://kanban.sls.epilot.io",
728
+ operationCount: 10,
729
+ operationIds: [
730
+ "createKanbanBoard",
731
+ "getKanbanBoards",
732
+ "getKanbanBoard",
733
+ "updateKanbanBoard",
734
+ "patchKanbanBoard",
735
+ "deleteKanbanBoard",
736
+ "setDefaultKanbanBoard",
737
+ "clearDefaultKanbanBoard",
738
+ "flowsAutocomplete",
739
+ "executeFlowsQuery"
740
+ ]
741
+ },
742
+ {
743
+ apiName: "message",
744
+ kebabName: "message",
745
+ title: "Message API",
746
+ serverUrl: "https://message.sls.epilot.io",
747
+ operationCount: 46,
748
+ operationIds: [
749
+ "sendMessage",
750
+ "updateMessage",
751
+ "getMessage",
752
+ "deleteMessage",
753
+ "getMessageEml",
754
+ "searchMessages",
755
+ "trashMessage",
756
+ "untrashMessage",
757
+ "markReadMessage",
758
+ "markReadMessageV2",
759
+ "markUnreadMessage",
760
+ "getUnread",
761
+ "markUnreadMessageV2",
762
+ "searchThreads",
763
+ "searchThreadsV2",
764
+ "searchIds",
765
+ "updateThread",
766
+ "deleteThread",
767
+ "moveThread",
768
+ "markThreadAsDone",
769
+ "markThreadAsOpen",
770
+ "getThreadTimeline",
771
+ "trashThread",
772
+ "untrashThread",
773
+ "threadBulkActionsRead",
774
+ "threadBulkActionsUnread",
775
+ "threadBulkActionsFavorite",
776
+ "threadBulkActionsUnfavorite",
777
+ "threadBulkActionsTrash",
778
+ "threadBulkActionsUntrash",
779
+ "threadBulkActionsDelete",
780
+ "threadBulkActionsDone",
781
+ "threadBulkActionsOpen",
782
+ "markReadThread",
783
+ "markReadThreadV2",
784
+ "markUnreadThread",
785
+ "markUnreadThreadV2",
786
+ "assignThread",
787
+ "unassignThread",
788
+ "assignUsers",
789
+ "assignUsersV2",
790
+ "pinThread",
791
+ "unpinThread",
792
+ "createDraft",
793
+ "sendDraft",
794
+ "getMessageV2"
795
+ ]
796
+ },
797
+ {
798
+ apiName: "metering",
799
+ kebabName: "metering",
800
+ title: "Metering API",
801
+ serverUrl: "https://metering.sls.epilot.io",
802
+ operationCount: 16,
803
+ operationIds: [
804
+ "getCustomerMeters",
805
+ "getMetersByContractId",
806
+ "getMeter",
807
+ "updateMeter",
808
+ "getMeterCounters",
809
+ "getCounterDetails",
810
+ "createMeterReading",
811
+ "createMeterReadings",
812
+ "createPortalMeterReadings",
813
+ "batchWriteMeterReadings",
814
+ "createMeterReadingFromSubmission",
815
+ "getAllowedReadingForMeter",
816
+ "createReadingWithMeter",
817
+ "getReadingsByInterval",
818
+ "updateMeterReading",
819
+ "deleteMeterReading"
820
+ ]
821
+ },
822
+ {
823
+ apiName: "notes",
824
+ kebabName: "notes",
825
+ title: "Notes API",
826
+ serverUrl: "https://notes.sls.epilot.io",
827
+ operationCount: 12,
828
+ operationIds: [
829
+ "createNote",
830
+ "getNote",
831
+ "updateNote",
832
+ "patchNote",
833
+ "deleteNote",
834
+ "searchNotesByContext",
835
+ "getNotesByContext",
836
+ "pinNote",
837
+ "getNoteContexts",
838
+ "addNoteReaction",
839
+ "removeNoteReaction",
840
+ "toggleNoteReactions"
841
+ ]
842
+ },
843
+ {
844
+ apiName: "notification",
845
+ kebabName: "notification",
846
+ title: "Notification API",
847
+ serverUrl: "https://notification.sls.epilot.io",
848
+ operationCount: 14,
849
+ operationIds: [
850
+ "getNotificationsV2",
851
+ "getNotifications",
852
+ "createNotification",
853
+ "getNotification",
854
+ "markAllAsRead",
855
+ "markAsRead",
856
+ "getTotalUnread",
857
+ "listNotificationTemplates",
858
+ "createNotificationTemplate",
859
+ "getNotificationTemplate",
860
+ "updateNotificationTemplate",
861
+ "patchNotificationTemplate",
862
+ "deleteNotificationTemplate",
863
+ "sendPreview"
864
+ ]
865
+ },
866
+ {
867
+ apiName: "organization",
868
+ kebabName: "organization",
869
+ title: "Organization API",
870
+ serverUrl: "https://organization-v2.sls.epilot.io",
871
+ operationCount: 6,
872
+ operationIds: [
873
+ "getCurrentOrganization",
874
+ "getOrganization",
875
+ "updateOrganization",
876
+ "getSettings",
877
+ "putSettingsValue",
878
+ "deleteSettingsValue"
879
+ ]
880
+ },
881
+ {
882
+ apiName: "partnerDirectory",
883
+ kebabName: "partner-directory",
884
+ title: "Partner API",
885
+ serverUrl: "https://partner-directory-api.sls.epilot.io",
886
+ operationCount: 16,
887
+ operationIds: [
888
+ "approvePartner",
889
+ "rejectPartner",
890
+ "searchAssignable",
891
+ "batchGetAssignable",
892
+ "getPartnerByToken",
893
+ "activatePartner",
894
+ "searchGeolocationForText",
895
+ "invitePartnerV2",
896
+ "getPartnerUsers",
897
+ "createPartnerUser",
898
+ "deletePartnerUser",
899
+ "getPartnerRoles",
900
+ "createPartnerRole",
901
+ "updatePartnerRole",
902
+ "assignPartnerUserRoles",
903
+ "unassignPartnerUserRoles"
904
+ ]
905
+ },
906
+ {
907
+ apiName: "permissions",
908
+ kebabName: "permissions",
909
+ title: "Permissions API",
910
+ serverUrl: "https://permissions.sls.epilot.io",
911
+ operationCount: 13,
912
+ operationIds: [
913
+ "listCurrentRoles",
914
+ "listAllRoles",
915
+ "createRole",
916
+ "searchRoles",
917
+ "getRole",
918
+ "putRole",
919
+ "deleteRole",
920
+ "refreshPermissions",
921
+ "getAssignedRolesForUser",
922
+ "assignRoles",
923
+ "addAssignment",
924
+ "removeAssignment",
925
+ "listAllAssignments"
926
+ ]
927
+ },
928
+ {
929
+ apiName: "pricing",
930
+ kebabName: "pricing",
931
+ title: "Pricing API",
932
+ serverUrl: "https://pricing-api.sls.epilot.io",
933
+ operationCount: 22,
934
+ operationIds: [
935
+ "$calculatePricingDetails",
936
+ "createOrder",
937
+ "putOrder",
938
+ "$checkoutCart",
939
+ "$searchCatalog",
940
+ "$privateSearchCatalog",
941
+ "$validatePromoCodes",
942
+ "$availabilityCheck",
943
+ "$validateAvailabilityFile",
944
+ "$historicMarketPrices",
945
+ "$averageMarketPrice",
946
+ "$searchExternalProducts",
947
+ "$searchExternalProductRecommendations",
948
+ "$searchProviders",
949
+ "$searchStreets",
950
+ "$computePrice",
951
+ "$getCredentials",
952
+ "$saveCredentials",
953
+ "$deleteCredentials",
954
+ "$getExternalCatalogProducts",
955
+ "$getExternalCatalogProductRecommendations",
956
+ "$productRecommendations"
957
+ ]
958
+ },
959
+ {
960
+ apiName: "pricingTier",
961
+ kebabName: "pricing-tier",
962
+ title: "Pricing Tier API",
963
+ serverUrl: "",
964
+ operationCount: 1,
965
+ operationIds: ["getCurrentPricingTier"]
966
+ },
967
+ {
968
+ apiName: "purpose",
969
+ kebabName: "purpose",
970
+ title: "Purpose API",
971
+ serverUrl: "https://purpose.sls.epilot.io",
972
+ operationCount: 6,
973
+ operationIds: [
974
+ "createPurpose",
975
+ "searchPurposes",
976
+ "batchGetPurposes",
977
+ "getPurpose",
978
+ "updatePurpose",
979
+ "deletePurpose"
980
+ ]
981
+ },
982
+ {
983
+ apiName: "sandbox",
984
+ kebabName: "sandbox",
985
+ title: "Sandbox API",
986
+ serverUrl: "https://sandbox.sls.epilot.io",
987
+ operationCount: 7,
988
+ operationIds: [
989
+ "listPipelines",
990
+ "createPipeline",
991
+ "getPipeline",
992
+ "deletePipeline",
993
+ "generatePipelineToken",
994
+ "requestSandbox",
995
+ "listSandboxRequests"
996
+ ]
997
+ },
998
+ {
999
+ apiName: "submission",
1000
+ kebabName: "submission",
1001
+ title: "Submission API",
1002
+ serverUrl: "https://submission.sls.epilot.io",
1003
+ operationCount: 2,
1004
+ operationIds: ["createSubmission", "getNonce"]
1005
+ },
1006
+ {
1007
+ apiName: "targeting",
1008
+ kebabName: "targeting",
1009
+ title: "Targeting API",
1010
+ serverUrl: "https://targeting.sls.epilot.io",
1011
+ operationCount: 11,
1012
+ operationIds: [
1013
+ "changeCampaignStatus",
1014
+ "getCampaignJobStatus",
1015
+ "getCampaignPortals",
1016
+ "retriggerCampaignAutomations",
1017
+ "matchCampaigns",
1018
+ "matchTargets",
1019
+ "getTargetQueries",
1020
+ "createRecipient",
1021
+ "updateRecipient",
1022
+ "updateRecipientPortalStatus",
1023
+ "getRecipients"
1024
+ ]
1025
+ },
1026
+ {
1027
+ apiName: "templateVariables",
1028
+ kebabName: "template-variables",
1029
+ title: "Template Variables API",
1030
+ serverUrl: "https://template-variables-api.sls.epilot.io",
1031
+ operationCount: 12,
1032
+ operationIds: [
1033
+ "getCategories",
1034
+ "searchVariables",
1035
+ "getVariableContext",
1036
+ "replaceTemplates",
1037
+ "replaceTemplatesV2",
1038
+ "getCustomVariables",
1039
+ "createCustomVariable",
1040
+ "searchCustomVariables",
1041
+ "getCustomVariable",
1042
+ "updateCustomVariable",
1043
+ "deleteCustomVariable",
1044
+ "getBluePrintTableConfig"
1045
+ ]
1046
+ },
1047
+ {
1048
+ apiName: "user",
1049
+ kebabName: "user",
1050
+ title: "User API",
1051
+ serverUrl: "https://user.sls.epilot.io",
1052
+ operationCount: 34,
1053
+ operationIds: [
1054
+ "signUpUser",
1055
+ "getMeV2",
1056
+ "listUsersV2",
1057
+ "getUserV2",
1058
+ "updateUserV2",
1059
+ "deleteUserV2",
1060
+ "inviteUser",
1061
+ "resendUserInvitation",
1062
+ "getGroupsForUser",
1063
+ "getGroups",
1064
+ "createGroup",
1065
+ "getGroup",
1066
+ "updateGroup",
1067
+ "deleteGroup",
1068
+ "advanceUserAssignment",
1069
+ "createNavigation",
1070
+ "getNavigation",
1071
+ "verifyEmailWithToken",
1072
+ "checkInviteToken",
1073
+ "activateUser",
1074
+ "rejectInvite",
1075
+ "getUserLoginParametersV2",
1076
+ "beginPasskeyAuthentication",
1077
+ "beginDiscoverablePasskeyAuthentication",
1078
+ "resolveDiscoverableCredential",
1079
+ "beginPasskeyRegistration",
1080
+ "completePasskeyRegistration",
1081
+ "listPasskeys",
1082
+ "deletePasskey",
1083
+ "switchOrganization",
1084
+ "getMe",
1085
+ "listUsers",
1086
+ "getUser",
1087
+ "getUserLoginParameters"
1088
+ ]
1089
+ },
1090
+ {
1091
+ apiName: "validationRules",
1092
+ kebabName: "validation-rules",
1093
+ title: "Validation Rules API",
1094
+ serverUrl: "https://validation-rules.sls.epilot.io",
1095
+ operationCount: 7,
1096
+ operationIds: [
1097
+ "getValidationRules",
1098
+ "createValidationRule",
1099
+ "getValidationRuleById",
1100
+ "updateValidationRule",
1101
+ "deleteValidationRule",
1102
+ "addUsedByReference",
1103
+ "removeUsedByReference"
1104
+ ]
1105
+ },
1106
+ {
1107
+ apiName: "webhooks",
1108
+ kebabName: "webhooks",
1109
+ title: "Webhooks",
1110
+ serverUrl: "https://webhooks.sls.epilot.io",
1111
+ operationCount: 14,
1112
+ operationIds: [
1113
+ "getPublicKey",
1114
+ "getConfiguredEvents",
1115
+ "getConfigs",
1116
+ "createConfig",
1117
+ "getConfig",
1118
+ "updateConfig",
1119
+ "deleteConfig",
1120
+ "triggerWebhook",
1121
+ "getWehookEvents",
1122
+ "batchReplayEvents",
1123
+ "getEventById",
1124
+ "replayEvent",
1125
+ "getWebhookExample",
1126
+ "getWebhookEventsV2"
1127
+ ]
1128
+ },
1129
+ {
1130
+ apiName: "workflow",
1131
+ kebabName: "workflow",
1132
+ title: "Workflows Executions",
1133
+ serverUrl: "https://workflows-execution.sls.epilot.io",
1134
+ operationCount: 23,
1135
+ operationIds: [
1136
+ "getExecutions",
1137
+ "createExecution",
1138
+ "getExecution",
1139
+ "updateExecution",
1140
+ "deleteExecution",
1141
+ "createStep",
1142
+ "updateStep",
1143
+ "deleteStep",
1144
+ "searchExecutions",
1145
+ "searchSteps",
1146
+ "getClosingReasonExecution",
1147
+ "startFlowExecution",
1148
+ "getFlowExecution",
1149
+ "patchFlowExecution",
1150
+ "deleteFlowExecution",
1151
+ "searchFlowExecutions",
1152
+ "patchTask",
1153
+ "runTaskAutomation",
1154
+ "executeTask",
1155
+ "patchPhase",
1156
+ "addTask",
1157
+ "cancelTaskSchedule",
1158
+ "cancelSchedule"
1159
+ ]
1160
+ },
1161
+ {
1162
+ apiName: "workflowDefinition",
1163
+ kebabName: "workflow-definition",
1164
+ title: "Workflows Definitions",
1165
+ serverUrl: "https://workflows-definition.sls.epilot.io",
1166
+ operationCount: 24,
1167
+ operationIds: [
1168
+ "getMaxAllowedLimit",
1169
+ "getDefinitions",
1170
+ "createDefinition",
1171
+ "listFlowTemplates",
1172
+ "createFlowTemplate",
1173
+ "searchFlowTemplates",
1174
+ "getFlowTemplate",
1175
+ "updateFlowTemplate",
1176
+ "deleteFlowTemplate",
1177
+ "duplicateFlowTemplate",
1178
+ "exportFlowTemplate",
1179
+ "importFlowTemplate",
1180
+ "getDefinition",
1181
+ "updateDefinition",
1182
+ "deleteDefinition",
1183
+ "getAllClosingReasons",
1184
+ "createClosingReason",
1185
+ "getClosingReason",
1186
+ "updateClosingReason",
1187
+ "deleteClosingReason",
1188
+ "getClosingReasonV1",
1189
+ "changeReasonStatus",
1190
+ "getWorkflowClosingReasons",
1191
+ "setWorkflowClosingReasons"
1192
+ ]
1193
+ }
1194
+ ];
1195
+ var API_NAMES = API_LIST.map((a) => a.apiName);
1196
+
1197
+ export {
1198
+ API_LIST
1199
+ };
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  API_LIST
4
- } from "./chunk-UJ6TU34M.js";
4
+ } from "./chunk-PHXL66VA.js";
5
5
 
6
6
  // src/commands/completion.ts
7
7
  import { defineCommand } from "citty";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/cli",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "CLI for epilot APIs",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,56 +0,0 @@
1
- #!/usr/bin/env node
2
-
3
- // src/generated/api-list.ts
4
- var API_LIST = [
5
- { apiName: "accessToken", kebabName: "access-token", title: "Access Token API", serverUrl: "https://access-token.sls.epilot.io", operationCount: 7, operationIds: ["listAccessTokens", "createAccessToken", "revokeAccessToken", "getAccessTokenJwks", "getAccessTokenOIDC", "getPublicTokenJwks", "getPublicTokenOIDC"] },
6
- { apiName: "address", kebabName: "address", title: "Address API", serverUrl: "https://address.sls.epilot.io", operationCount: 3, operationIds: ["getAddressSuggestions", "availabilityCheck", "validateAvailabilityFile"] },
7
- { apiName: "addressSuggestions", kebabName: "address-suggestions", title: "Address Suggestions API", serverUrl: "https://address-suggestions-api.sls.epilot.io", operationCount: 4, operationIds: ["getAddresses", "validateAddresses", "checkAvailability", "validateAddressesFile"] },
8
- { apiName: "aiAgents", kebabName: "ai-agents", title: "AI Agents API - OpenAPI 3.0", serverUrl: "https://ai-agents.sls.epilot.io", operationCount: 12, operationIds: ["listAgents", "createAgent", "getAgentById", "updateAgentById", "deleteAgentById", "executeAgent", "listExecutions", "getExecution", "cancelExecution", "getExecutionTrace", "approveExecution", "rejectExecution"] },
9
- { apiName: "app", kebabName: "app", title: "App API", serverUrl: "https://app.sls.epilot.io", operationCount: 30, operationIds: ["getPublicFacingComponent", "listConfigurations", "createConfiguration", "listPublicConfigurations", "getPublicConfiguration", "getConfiguration", "patchMetadata", "deleteConfiguration", "queryEvents", "createBundleUploadUrl", "createZipUploadUrl", "createLogoUploadUrl", "deleteLogo", "listVersions", "getVersion", "patchVersion", "deleteVersion", "getReview", "createReview", "createComponent", "patchComponent", "deleteComponent", "cloneVersion", "listInstallations", "getInstallation", "install", "patchInstallation", "uninstall", "promoteVersion", "ingestEvent"] },
10
- { apiName: "auditLogs", kebabName: "audit-logs", title: "Audit Log", serverUrl: "https://audit-logs.sls.epilot.io", operationCount: 2, operationIds: ["getLogs", "getLogById"] },
11
- { apiName: "automation", kebabName: "automation", title: "Automation API", serverUrl: "https://automation.sls.epilot.io", operationCount: 16, operationIds: ["searchFlows", "createFlow", "batchGetFlows", "getFlow", "putFlow", "deleteFlow", "getExecutions", "startExecution", "bulkTriggerExecutions", "getBulkJob", "patchBulkJob", "getExecution", "cancelExecution", "retriggerAction", "resumeExecutionWithToken", "cancelSchedule"] },
12
- { apiName: "billing", kebabName: "billing", title: "Billing API", serverUrl: "https://billing.sls.epilot.io", operationCount: 10, operationIds: ["getBillingEvents", "createBillingEvent", "getBillingEvent", "updateBillingEvent", "deleteBillingEvent", "getBillingEventByExternalId", "createContractEntity", "updateContractEntity", "deleteContractEntity", "getCustomerBalance"] },
13
- { apiName: "blueprintManifest", kebabName: "blueprint-manifest", title: "Blueprint Manifest API", serverUrl: "https://blueprint-manifest.sls.epilot.io", operationCount: 33, operationIds: ["getJob", "createExport", "exportManifest", "uploadManifest", "createPlan", "applyPlan", "listInstalledManifests", "getManifest", "updateManifest", "deleteManifest", "listBlueprints", "createBlueprint", "listInstalledMarketplaceBlueprints", "preInstallBlueprint", "getBlueprintPreview", "installBlueprint", "getBlueprint", "updateBlueprint", "deleteBlueprint", "validateBlueprint", "exportBlueprint", "formatBlueprintDescription", "addBlueprintResource", "syncDependencies", "bulkAddBlueprintResources", "bulkUpdateBlueprintResources", "bulkDeleteBlueprintResources", "updateBlueprintResource", "deleteBlueprintResource", "listBlueprintJobs", "getBlueprintJob", "continueInstallationJob", "cancelBlueprintJob"] },
14
- { apiName: "consent", kebabName: "consent", title: "Consent API", serverUrl: "https://consent.sls.epilot.io", operationCount: 3, operationIds: ["publishConsentEvent", "listConsentEvents", "handleOptInWithToken"] },
15
- { apiName: "customerPortal", kebabName: "customer-portal", title: "Portal API", serverUrl: "https://customer-portal-api.sls.epilot.io", operationCount: 134, operationIds: ["upsertPortal", "createUser", "createUserV3", "validateToken", "revokeToken", "getPortalConfigByDomain", "getPortalConfig", "deletePortal", "getPortalExtensions", "getPublicPortalExtensionDetails", "getPortalExtensionsV3", "getPublicPortalExtensionDetailsV3", "getConsumption", "getCosts", "getPrices", "getExternalLinks", "getResolvedExternalLink", "getExternalLinksV3", "getResolvedExternalLinkV3", "getResolvedSeamlessLink", "getPublicPortalConfig", "getOrgPortalConfig", "getPublicPortalConfigV3", "getOrgPortalConfigV3", "getAllPortalConfigs", "getEmailTemplates", "upsertEmailTemplates", "getEmailTemplatesByPortalId", "upsertEmailTemplatesByPortalId", "getPublicPortalWidgets", "getPortalWidgets", "upsertPortalWidget", "replaceECPTemplateVariables", "getOrganizationSettings", "getSchemas", "getSchemasByDomain", "getOrganizationSettingsByDomain", "extraPermissionAttributes", "validateCaaRecords", "validateCaaRecordsV3", "getContact", "updateContact", "getECPContact", "checkContactExists", "checkContactExistsV3", "getValidSecondaryAttributes", "getPortalUser", "updatePortalUser", "deletePortalUser", "updatePortalUserEmail", "resendConfirmationEmail", "fetchPortalUsersByRelatedEntity", "confirmUser", "confirmUserWithUserId", "userExists", "userExistsV3", "getRecipientsToNotifyOnAutomation", "configureDistribution", "configureDistributionV3", "getAllOrders", "postOrderAcceptance", "getOrder", "updateOrder", "getAllOpportunities", "getSearchableAttributesForOpportunities", "getSearchResultsForOpportunities", "getOpportunity", "updateOpportunity", "getAllRequests", "getAllContracts", "getContract", "updateContract", "addContractByIdentifiers", "getEntityIdentifiers", "getEntityActivityFeed", "validateCadenceEntityEditRules", "searchPaymentRelationsInEntities", "createCustomEntityActivity", "saveEntityFile", "deleteEntityFile", "savePortalFiles", "getRegistrationIdentifiers", "getAllFiles", "getFileById", "trackFileDownloaded", "getFilesCountByEntity", "getBillingEvents", "getCustomerBalance", "getBillingAccount", "loginToPortalAsUser", "triggerEntityAccessEvent", "triggerEntityAccessEventV3", "getPortalUserEntity", "searchPortalUserEntities", "canTriggerPortalFlow", "getAutomationContext", "updateWorkflowStepAsDone", "getEntityWorkflows", "uploadMeterReadingPhoto", "createMeterReading", "getAllowedMeterReadingRange", "ssoLogin", "ssoLoginV3", "ssoRedirect", "ssoCallback", "getPortalPage", "updatePortalPage", "deletePortalPage", "getPortalPages", "createPortalPage", "getPublicPages", "getDefaultPages", "getPortalPageBlocks", "createPortalPageBlock", "getPortalPageBlock", "updatePortalPageBlock", "deletePortalPageBlock", "getUserEntryPoint", "updateCampaignPortalBlockStatus", "updateNotificationsStatus", "deRegisterMLoginUser", "notifyMLoginInterestChange", "createPortalConfig", "getPortalConfigV3", "putPortalConfig", "deletePortalConfig", "listAllPortalConfigs", "swapPortalConfig", "invitePartner", "listBusinessPartners", "resendPartnerInvitation", "revokePartner", "disablePartner", "enablePartner"] },
16
- { apiName: "dashboard", kebabName: "dashboard", title: "Dashboard API", serverUrl: "https://dashboard.sls.epilot.io", operationCount: 7, operationIds: ["listDashboards", "createDashboard", "getDashboard", "putDashboard", "deleteDashboard", "listAvailableVisualisations", "listAvailableExamples"] },
17
- { apiName: "dataManagement", kebabName: "data-management", title: "Data Management API", serverUrl: "https://data-management.sls.epilot.io", operationCount: 10, operationIds: ["queryEntities", "createJob", "updateJob", "getJob", "getJobReportUrl", "getConfig", "createJobForConfig", "upsertConfig", "listConfigs", "listJobs"] },
18
- { apiName: "deduplication", kebabName: "deduplication", title: "Deduplication API", serverUrl: "https://deduplication.sls.epilot.io", operationCount: 1, operationIds: ["deduplicate"] },
19
- { apiName: "design", kebabName: "design", title: "Design Builder API v2", serverUrl: "https://design-builder-api.epilot.io", operationCount: 13, operationIds: ["getAllDesigns", "addDesign", "getDesign", "updateDesign", "deleteDesign", "getThemeFromDesign", "getFiles", "uploadFile", "getLimit", "getBrands", "getConsumerDesign", "addConsumer", "removeConsumer"] },
20
- { apiName: "document", kebabName: "document", title: "Document API", serverUrl: "https://document.sls.epilot.io", operationCount: 3, operationIds: ["getTemplateMeta", "generateDocumentV2", "convertDocument"] },
21
- { apiName: "emailSettings", kebabName: "email-settings", title: "Messaging Settings API", serverUrl: "https://email-settings.sls.epilot.io", operationCount: 31, operationIds: ["provisionEpilotEmailAddress", "setEmailAddressPrimary", "getEmailAddress", "updateEmailAddress", "deleteEmailAddress", "listEmailAddresses", "addEmailAddress", "getSharedInbox", "updateSharedInbox", "deleteSharedInbox", "listSharedInboxes", "addSharedInbox", "listInboxBuckets", "connectOutlook", "getOutlookConnectionStatus", "disconnectOutlook", "connectOutlookMailbox", "disconnectOutlookMailbox", "startMailboxSync", "getMailboxSyncStatus", "retryMailboxSync", "getConnectedOutlookEmails", "outlookOAuthCallback", "getSettings", "addSetting", "deleteSetting", "updateSetting", "addDomain", "deleteDomain", "verifyNameServers", "verifyDomain"] },
22
- { apiName: "emailTemplate", kebabName: "email-template", title: "Email template API", serverUrl: "https://email-template.sls.epilot.io", operationCount: 7, operationIds: ["saveTemplate", "getTemplateDetail", "updateTemplateDetail", "replaceVariables", "replaceVariablesAsync", "bulkSendMessage", "revertToOriginalTemplate"] },
23
- { apiName: "entity", kebabName: "entity", title: "Entity API", serverUrl: "https://entity.sls.epilot.io", operationCount: 81, operationIds: ["listSchemas", "getSchema", "putSchema", "deleteSchema", "getJsonSchema", "getSchemaExample", "getSchemaVersions", "listAvailableCapabilities", "listSchemaBlueprints", "searchEntities", "listEntities", "queryEntityGraph", "createEntity", "validateEntity", "validateEntityV2", "upsertEntity", "getEntityV2", "restoreEntity", "reindexEntity", "getEntity", "updateEntity", "patchEntity", "deleteEntity", "autocomplete", "wipeAllEntities", "createActivity", "getActivity", "attachActivity", "getEntityActivityFeed", "getRelations", "addRelations", "removeRelations", "getRelationsV2", "getRelationsV3", "getRelatedEntitiesCount", "updateRelation", "deleteRelation", "exportEntities", "importEntities", "listSavedViews", "createSavedView", "getSavedView", "updateSavedView", "patchSavedView", "deleteSavedView", "listFavoriteViewsForUser", "listTaxonomies", "createTaxonomy", "getTaxonomy", "updateTaxonomy", "deleteTaxonomy", "updateClassificationsForTaxonomy", "createTaxonomyClassification", "getTaxonomyClassification", "updateTaxonomyClassification", "deleteTaxonomyClassification", "taxonomyAutocomplete", "taxonomiesClassificationsSearch", "listTaxonomyClassificationsForSchema", "getTaxonomyBulkActionJobs", "getTaxonomyBulkActionJobById", "cancelBulkAction", "bulkMoveClassifications", "bulkMergeClassifications", "bulkDeleteClassifications", "createSchemaAttribute", "getSchemaAttribute", "putSchemaAttribute", "deleteSchemaAttribute", "createSchemaCapability", "getSchemaCapability", "putSchemaCapability", "deleteSchemaCapability", "createSchemaGroup", "getSchemaGroup", "putSchemaGroup", "deleteSchemaGroup", "createSchemaGroupHeadline", "getSchemaGroupHeadline", "putSchemaGroupHeadline", "deleteSchemaGroupHeadline"] },
24
- { apiName: "entityMapping", kebabName: "entity-mapping", title: "Entity Mapping API", serverUrl: "https://entity-mapping.sls.epilot.io", operationCount: 12, operationIds: ["storeConfig", "getConfig", "deleteConfig", "getAllVersions", "storeNewVersion", "getConfigVersion", "executeMapping", "searchConfigs", "queryMappingHistory", "executeRelations", "getMappingConfig", "putMappingConfig"] },
25
- { apiName: "environments", kebabName: "environments", title: "Environments API", serverUrl: "https://environments.sls.epilot.io", operationCount: 5, operationIds: ["listEnvironmentVariables", "createEnvironmentVariable", "getEnvironmentVariable", "updateEnvironmentVariable", "deleteEnvironmentVariable"] },
26
- { apiName: "erpIntegration", kebabName: "erp-integration", title: "ERP Integration API", serverUrl: "https://erp-integration-api.sls.epilot.io", operationCount: 33, operationIds: ["acknowledgeTracking", "triggerErp", "processErpUpdatesEvents", "processErpUpdatesEventsV2", "processErpUpdatesEventsV3", "simulateMappingV2", "simulateMapping", "listIntegrations", "createIntegration", "getIntegration", "updateIntegration", "deleteIntegration", "queryEvents", "replayEvents", "listUseCases", "createUseCase", "getUseCase", "updateUseCase", "deleteUseCase", "listUseCaseHistory", "listIntegrationsV2", "createIntegrationV2", "getIntegrationV2", "updateIntegrationV2", "deleteIntegrationV2", "setIntegrationAppMapping", "deleteIntegrationAppMapping", "queryInboundMonitoringEvents", "getMonitoringStats", "getMonitoringTimeSeries", "getOutboundStatus", "queryAccessLogs", "queryOutboundMonitoringEvents"] },
27
- { apiName: "eventCatalog", kebabName: "event-catalog", title: "Event Catalog API", serverUrl: "https://event-catalog.sls.epilot.io", operationCount: 7, operationIds: ["listEvents", "getEvent", "patchEvent", "getEventJSONSchema", "getEventExample", "searchEventHistory", "triggerEvent"] },
28
- { apiName: "file", kebabName: "file", title: "File API", serverUrl: "https://file.sls.epilot.io", operationCount: 27, operationIds: ["uploadFileV2", "saveFileV2", "uploadFile", "saveFile", "getFile", "deleteFile", "downloadFile", "downloadS3File", "downloadFiles", "previewFile", "previewS3FileGet", "previewS3File", "previewPublicFile", "getSession", "deleteSession", "listPublicLinksForFile", "generatePublicLink", "accessPublicLink", "revokePublicLink", "verifyCustomDownloadUrl", "uploadFilePublic", "getUserSchemaFileCollections", "createUserSchemaFileCollection", "updateUserSchemaFileCollection", "deleteUserSchemaFileCollection", "getFilesInCollection", "getGlobalFileCollections"] },
29
- { apiName: "iban", kebabName: "iban", title: "Iban API", serverUrl: "https://iban-api.sls.epilot.io", operationCount: 1, operationIds: ["validateIban"] },
30
- { apiName: "journey", kebabName: "journey", title: "Journey API", serverUrl: "https://journey-config.sls.epilot.io", operationCount: 16, operationIds: ["getJourneysByOrgId", "getJourney", "removeJourney", "getJourneyProducts", "createJourney", "updateJourney", "patchUpdateJourney", "searchJourneys", "generateDocument", "createJourneyV2", "updateJourneyV2", "patchUpdateJourneyV2", "getJourneyV2", "removeJourneyV2", "getSettingsForJourney", "getButtonOptions"] },
31
- { apiName: "kanban", kebabName: "kanban", title: "Kanban API", serverUrl: "https://kanban.sls.epilot.io", operationCount: 10, operationIds: ["createKanbanBoard", "getKanbanBoards", "getKanbanBoard", "updateKanbanBoard", "patchKanbanBoard", "deleteKanbanBoard", "setDefaultKanbanBoard", "clearDefaultKanbanBoard", "flowsAutocomplete", "executeFlowsQuery"] },
32
- { apiName: "message", kebabName: "message", title: "Message API", serverUrl: "https://message.sls.epilot.io", operationCount: 46, operationIds: ["sendMessage", "updateMessage", "getMessage", "deleteMessage", "getMessageEml", "searchMessages", "trashMessage", "untrashMessage", "markReadMessage", "markReadMessageV2", "markUnreadMessage", "getUnread", "markUnreadMessageV2", "searchThreads", "searchThreadsV2", "searchIds", "updateThread", "deleteThread", "moveThread", "markThreadAsDone", "markThreadAsOpen", "getThreadTimeline", "trashThread", "untrashThread", "threadBulkActionsRead", "threadBulkActionsUnread", "threadBulkActionsFavorite", "threadBulkActionsUnfavorite", "threadBulkActionsTrash", "threadBulkActionsUntrash", "threadBulkActionsDelete", "threadBulkActionsDone", "threadBulkActionsOpen", "markReadThread", "markReadThreadV2", "markUnreadThread", "markUnreadThreadV2", "assignThread", "unassignThread", "assignUsers", "assignUsersV2", "pinThread", "unpinThread", "createDraft", "sendDraft", "getMessageV2"] },
33
- { apiName: "metering", kebabName: "metering", title: "Metering API", serverUrl: "https://metering.sls.epilot.io", operationCount: 16, operationIds: ["getCustomerMeters", "getMetersByContractId", "getMeter", "updateMeter", "getMeterCounters", "getCounterDetails", "createMeterReading", "createMeterReadings", "createPortalMeterReadings", "batchWriteMeterReadings", "createMeterReadingFromSubmission", "getAllowedReadingForMeter", "createReadingWithMeter", "getReadingsByInterval", "updateMeterReading", "deleteMeterReading"] },
34
- { apiName: "notes", kebabName: "notes", title: "Notes API", serverUrl: "https://notes.sls.epilot.io", operationCount: 12, operationIds: ["createNote", "getNote", "updateNote", "patchNote", "deleteNote", "searchNotesByContext", "getNotesByContext", "pinNote", "getNoteContexts", "addNoteReaction", "removeNoteReaction", "toggleNoteReactions"] },
35
- { apiName: "notification", kebabName: "notification", title: "Notification API", serverUrl: "https://notification.sls.epilot.io", operationCount: 14, operationIds: ["getNotificationsV2", "getNotifications", "createNotification", "getNotification", "markAllAsRead", "markAsRead", "getTotalUnread", "listNotificationTemplates", "createNotificationTemplate", "getNotificationTemplate", "updateNotificationTemplate", "patchNotificationTemplate", "deleteNotificationTemplate", "sendPreview"] },
36
- { apiName: "organization", kebabName: "organization", title: "Organization API", serverUrl: "https://organization-v2.sls.epilot.io", operationCount: 6, operationIds: ["getCurrentOrganization", "getOrganization", "updateOrganization", "getSettings", "putSettingsValue", "deleteSettingsValue"] },
37
- { apiName: "partnerDirectory", kebabName: "partner-directory", title: "Partner API", serverUrl: "https://partner-directory-api.sls.epilot.io", operationCount: 16, operationIds: ["approvePartner", "rejectPartner", "searchAssignable", "batchGetAssignable", "getPartnerByToken", "activatePartner", "searchGeolocationForText", "invitePartnerV2", "getPartnerUsers", "createPartnerUser", "deletePartnerUser", "getPartnerRoles", "createPartnerRole", "updatePartnerRole", "assignPartnerUserRoles", "unassignPartnerUserRoles"] },
38
- { apiName: "permissions", kebabName: "permissions", title: "Permissions API", serverUrl: "https://permissions.sls.epilot.io", operationCount: 13, operationIds: ["listCurrentRoles", "listAllRoles", "createRole", "searchRoles", "getRole", "putRole", "deleteRole", "refreshPermissions", "getAssignedRolesForUser", "assignRoles", "addAssignment", "removeAssignment", "listAllAssignments"] },
39
- { apiName: "pricing", kebabName: "pricing", title: "Pricing API", serverUrl: "https://pricing-api.sls.epilot.io", operationCount: 22, operationIds: ["$calculatePricingDetails", "createOrder", "putOrder", "$checkoutCart", "$searchCatalog", "$privateSearchCatalog", "$validatePromoCodes", "$availabilityCheck", "$validateAvailabilityFile", "$historicMarketPrices", "$averageMarketPrice", "$searchExternalProducts", "$searchExternalProductRecommendations", "$searchProviders", "$searchStreets", "$computePrice", "$getCredentials", "$saveCredentials", "$deleteCredentials", "$getExternalCatalogProducts", "$getExternalCatalogProductRecommendations", "$productRecommendations"] },
40
- { apiName: "pricingTier", kebabName: "pricing-tier", title: "Pricing Tier API", serverUrl: "", operationCount: 1, operationIds: ["getCurrentPricingTier"] },
41
- { apiName: "purpose", kebabName: "purpose", title: "Purpose API", serverUrl: "https://purpose.sls.epilot.io", operationCount: 6, operationIds: ["createPurpose", "searchPurposes", "batchGetPurposes", "getPurpose", "updatePurpose", "deletePurpose"] },
42
- { apiName: "sandbox", kebabName: "sandbox", title: "Sandbox API", serverUrl: "https://sandbox.sls.epilot.io", operationCount: 7, operationIds: ["listPipelines", "createPipeline", "getPipeline", "deletePipeline", "generatePipelineToken", "requestSandbox", "listSandboxRequests"] },
43
- { apiName: "submission", kebabName: "submission", title: "Submission API", serverUrl: "https://submission.sls.epilot.io", operationCount: 2, operationIds: ["createSubmission", "getNonce"] },
44
- { apiName: "targeting", kebabName: "targeting", title: "Targeting API", serverUrl: "https://targeting.sls.epilot.io", operationCount: 11, operationIds: ["changeCampaignStatus", "getCampaignJobStatus", "getCampaignPortals", "retriggerCampaignAutomations", "matchCampaigns", "matchTargets", "getTargetQueries", "createRecipient", "updateRecipient", "updateRecipientPortalStatus", "getRecipients"] },
45
- { apiName: "templateVariables", kebabName: "template-variables", title: "Template Variables API", serverUrl: "https://template-variables-api.sls.epilot.io", operationCount: 12, operationIds: ["getCategories", "searchVariables", "getVariableContext", "replaceTemplates", "replaceTemplatesV2", "getCustomVariables", "createCustomVariable", "searchCustomVariables", "getCustomVariable", "updateCustomVariable", "deleteCustomVariable", "getBluePrintTableConfig"] },
46
- { apiName: "user", kebabName: "user", title: "User API", serverUrl: "https://user.sls.epilot.io", operationCount: 34, operationIds: ["signUpUser", "getMeV2", "listUsersV2", "getUserV2", "updateUserV2", "deleteUserV2", "inviteUser", "resendUserInvitation", "getGroupsForUser", "getGroups", "createGroup", "getGroup", "updateGroup", "deleteGroup", "advanceUserAssignment", "createNavigation", "getNavigation", "verifyEmailWithToken", "checkInviteToken", "activateUser", "rejectInvite", "getUserLoginParametersV2", "beginPasskeyAuthentication", "beginDiscoverablePasskeyAuthentication", "resolveDiscoverableCredential", "beginPasskeyRegistration", "completePasskeyRegistration", "listPasskeys", "deletePasskey", "switchOrganization", "getMe", "listUsers", "getUser", "getUserLoginParameters"] },
47
- { apiName: "validationRules", kebabName: "validation-rules", title: "Validation Rules API", serverUrl: "https://validation-rules.sls.epilot.io", operationCount: 7, operationIds: ["getValidationRules", "createValidationRule", "getValidationRuleById", "updateValidationRule", "deleteValidationRule", "addUsedByReference", "removeUsedByReference"] },
48
- { apiName: "webhooks", kebabName: "webhooks", title: "Webhooks", serverUrl: "https://webhooks.sls.epilot.io", operationCount: 14, operationIds: ["getPublicKey", "getConfiguredEvents", "getConfigs", "createConfig", "getConfig", "updateConfig", "deleteConfig", "triggerWebhook", "getWehookEvents", "batchReplayEvents", "getEventById", "replayEvent", "getWebhookExample", "getWebhookEventsV2"] },
49
- { apiName: "workflow", kebabName: "workflow", title: "Workflows Executions", serverUrl: "https://workflows-execution.sls.epilot.io", operationCount: 23, operationIds: ["getExecutions", "createExecution", "getExecution", "updateExecution", "deleteExecution", "createStep", "updateStep", "deleteStep", "searchExecutions", "searchSteps", "getClosingReasonExecution", "startFlowExecution", "getFlowExecution", "patchFlowExecution", "deleteFlowExecution", "searchFlowExecutions", "patchTask", "runTaskAutomation", "executeTask", "patchPhase", "addTask", "cancelTaskSchedule", "cancelSchedule"] },
50
- { apiName: "workflowDefinition", kebabName: "workflow-definition", title: "Workflows Definitions", serverUrl: "https://workflows-definition.sls.epilot.io", operationCount: 24, operationIds: ["getMaxAllowedLimit", "getDefinitions", "createDefinition", "listFlowTemplates", "createFlowTemplate", "searchFlowTemplates", "getFlowTemplate", "updateFlowTemplate", "deleteFlowTemplate", "duplicateFlowTemplate", "exportFlowTemplate", "importFlowTemplate", "getDefinition", "updateDefinition", "deleteDefinition", "getAllClosingReasons", "createClosingReason", "getClosingReason", "updateClosingReason", "deleteClosingReason", "getClosingReasonV1", "changeReasonStatus", "getWorkflowClosingReasons", "setWorkflowClosingReasons"] }
51
- ];
52
- var API_NAMES = API_LIST.map((a) => a.apiName);
53
-
54
- export {
55
- API_LIST
56
- };