@epilot/cli 0.1.26 → 0.1.27
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 +1 -1
- package/definitions/app.json +539 -31
- package/definitions/automation.json +42 -0
- package/definitions/configuration-hub.json +757 -7
- package/definitions/customer-portal.json +1063 -63
- package/definitions/email-settings.json +86 -4
- package/definitions/entity.json +568 -4
- package/definitions/event-catalog.json +256 -1
- package/definitions/file.json +262 -4
- package/definitions/integration-toolkit.json +480 -4
- package/definitions/journey.json +21 -1
- package/definitions/kanban.json +2 -1
- package/definitions/metering.json +728 -64
- package/definitions/notes.json +175 -130
- package/definitions/pricing.json +163 -84
- package/definitions/webhooks.json +149 -4
- package/definitions/workflow-definition.json +52 -0
- package/definitions/workflow.json +24 -0
- package/dist/bin/epilot.js +6 -6
- package/dist/{chunk-QSYX2PUB.js → chunk-OBSR3RKB.js} +51 -15
- package/dist/{completion-AZYWK6IZ.js → completion-AUP6EFBO.js} +1 -1
- package/dist/{upgrade-O5G6HRVY.js → upgrade-PPGT4OMA.js} +1 -1
- package/package.json +1 -1
|
@@ -516,13 +516,23 @@
|
|
|
516
516
|
}
|
|
517
517
|
},
|
|
518
518
|
"/v2/outlook/connect": {
|
|
519
|
-
"
|
|
519
|
+
"post": {
|
|
520
520
|
"operationId": "connectOutlook",
|
|
521
521
|
"summary": "connectOutlook",
|
|
522
|
-
"description": "Returns Microsoft authorization URL for Outlook OAuth.",
|
|
522
|
+
"description": "Returns the Microsoft authorization URL for Outlook OAuth.\n\nThe request body selects which features to request scopes for. Feature\nflags are additive; Microsoft OAuth scopes are cumulative. Calling this\nendpoint again with a superset of features (e.g. `mail` already connected,\nand `calendar` added) triggers Microsoft's incremental-consent flow —\nthe user only sees a consent prompt for the new scopes.\n",
|
|
523
523
|
"tags": [
|
|
524
524
|
"O365 Outlook Connection"
|
|
525
525
|
],
|
|
526
|
+
"requestBody": {
|
|
527
|
+
"required": true,
|
|
528
|
+
"content": {
|
|
529
|
+
"application/json": {
|
|
530
|
+
"schema": {
|
|
531
|
+
"$ref": "#/components/schemas/ConnectOutlookRequest"
|
|
532
|
+
}
|
|
533
|
+
}
|
|
534
|
+
}
|
|
535
|
+
},
|
|
526
536
|
"responses": {
|
|
527
537
|
"200": {
|
|
528
538
|
"description": "Authorization URL",
|
|
@@ -530,6 +540,9 @@
|
|
|
530
540
|
"application/json": {
|
|
531
541
|
"schema": {
|
|
532
542
|
"type": "object",
|
|
543
|
+
"required": [
|
|
544
|
+
"authorization_url"
|
|
545
|
+
],
|
|
533
546
|
"properties": {
|
|
534
547
|
"authorization_url": {
|
|
535
548
|
"type": "string"
|
|
@@ -539,6 +552,9 @@
|
|
|
539
552
|
}
|
|
540
553
|
}
|
|
541
554
|
},
|
|
555
|
+
"400": {
|
|
556
|
+
"$ref": "#/components/responses/OutlookErrorResponse"
|
|
557
|
+
},
|
|
542
558
|
"403": {
|
|
543
559
|
"$ref": "#/components/responses/OutlookErrorResponse"
|
|
544
560
|
}
|
|
@@ -1655,7 +1671,7 @@
|
|
|
1655
1671
|
"post": {
|
|
1656
1672
|
"operationId": "verifyNameServers",
|
|
1657
1673
|
"summary": "verifyNameServers",
|
|
1658
|
-
"description": "Verifies that the domain's name server (NS) records are correctly configured.\n\nThis check ensures that DNS resolution is properly set up for the domain\nbefore proceeding with full domain verification.\n\nRun this verification after configuring NS records in your DNS provider.\n",
|
|
1674
|
+
"description": "Verifies that the domain's name server (NS) records are correctly configured.\n\nThis check ensures that DNS resolution is properly set up for the domain\nbefore proceeding with full domain verification.\n\nRun this verification after configuring NS records in your DNS provider.\n\n**Deprecated**: Use `/domain/dns-records:verify` for new integrations.\n",
|
|
1659
1675
|
"tags": [
|
|
1660
1676
|
"Domains"
|
|
1661
1677
|
],
|
|
@@ -1693,6 +1709,48 @@
|
|
|
1693
1709
|
}
|
|
1694
1710
|
}
|
|
1695
1711
|
},
|
|
1712
|
+
"/v1/email-settings/domain/dns-records:verify": {
|
|
1713
|
+
"post": {
|
|
1714
|
+
"operationId": "verifyDnsRecords",
|
|
1715
|
+
"summary": "verifyDnsRecords",
|
|
1716
|
+
"description": "Verifies that the domain's DNS records (MX, TXT, CNAME) are correctly configured\nin the customer's DNS provider.\n\nThis check performs DNS lookups to confirm each required record is present\nbefore proceeding with full domain identity verification.\n\nRun this verification after configuring all DNS records in your DNS provider.\n",
|
|
1717
|
+
"tags": [
|
|
1718
|
+
"Domains"
|
|
1719
|
+
],
|
|
1720
|
+
"requestBody": {
|
|
1721
|
+
"description": "The domain to verify DNS records for",
|
|
1722
|
+
"required": true,
|
|
1723
|
+
"content": {
|
|
1724
|
+
"application/json": {
|
|
1725
|
+
"schema": {
|
|
1726
|
+
"$ref": "#/components/schemas/Domain"
|
|
1727
|
+
},
|
|
1728
|
+
"example": {
|
|
1729
|
+
"domain": "mail.yourcompany.com"
|
|
1730
|
+
}
|
|
1731
|
+
}
|
|
1732
|
+
}
|
|
1733
|
+
},
|
|
1734
|
+
"responses": {
|
|
1735
|
+
"200": {
|
|
1736
|
+
"description": "DNS record verification result. Check the response to see if all records\nare verified or if additional DNS configuration is needed.\n",
|
|
1737
|
+
"content": {
|
|
1738
|
+
"application/json": {
|
|
1739
|
+
"schema": {
|
|
1740
|
+
"$ref": "#/components/schemas/SettingsResponse"
|
|
1741
|
+
}
|
|
1742
|
+
}
|
|
1743
|
+
}
|
|
1744
|
+
},
|
|
1745
|
+
"403": {
|
|
1746
|
+
"$ref": "#/components/responses/Forbidden"
|
|
1747
|
+
},
|
|
1748
|
+
"404": {
|
|
1749
|
+
"$ref": "#/components/responses/NotFound"
|
|
1750
|
+
}
|
|
1751
|
+
}
|
|
1752
|
+
}
|
|
1753
|
+
},
|
|
1696
1754
|
"/v1/email-settings/domain:verify": {
|
|
1697
1755
|
"post": {
|
|
1698
1756
|
"operationId": "verifyDomain",
|
|
@@ -2007,6 +2065,22 @@
|
|
|
2007
2065
|
}
|
|
2008
2066
|
},
|
|
2009
2067
|
"schemas": {
|
|
2068
|
+
"ConnectOutlookRequest": {
|
|
2069
|
+
"type": "object",
|
|
2070
|
+
"description": "Feature flags selecting which Microsoft Graph scopes to request.\nAt least one flag must be true. Passing a superset of previously\ngranted features triggers incremental consent for the delta only.\n",
|
|
2071
|
+
"additionalProperties": false,
|
|
2072
|
+
"minProperties": 1,
|
|
2073
|
+
"properties": {
|
|
2074
|
+
"mail": {
|
|
2075
|
+
"type": "boolean",
|
|
2076
|
+
"description": "Request 'mail' specific scopes."
|
|
2077
|
+
},
|
|
2078
|
+
"calendar": {
|
|
2079
|
+
"type": "boolean",
|
|
2080
|
+
"description": "Request 'calendar' specific scopes."
|
|
2081
|
+
}
|
|
2082
|
+
}
|
|
2083
|
+
},
|
|
2010
2084
|
"MailboxSyncStatus": {
|
|
2011
2085
|
"type": "object",
|
|
2012
2086
|
"required": [
|
|
@@ -2597,7 +2671,15 @@
|
|
|
2597
2671
|
"reconnect",
|
|
2598
2672
|
"none"
|
|
2599
2673
|
],
|
|
2600
|
-
"description": "Action for UI to take (all call
|
|
2674
|
+
"description": "Action for UI to take (all call POST /outlook/connect):\n- connect: No connection, initiate OAuth\n- authorize: Admin consent done, complete OAuth\n- reconnect: Re-authenticate expired session or approve updated permissions\n- none: Fully connected, no action needed\n"
|
|
2675
|
+
},
|
|
2676
|
+
"action_reason": {
|
|
2677
|
+
"type": "string",
|
|
2678
|
+
"enum": [
|
|
2679
|
+
"expired",
|
|
2680
|
+
"permission_update"
|
|
2681
|
+
],
|
|
2682
|
+
"description": "Discriminates the cause when `action` is `reconnect`:\n- expired: Stored tokens are no longer valid; user must re-authenticate\n- permission_update: Token is valid, but the granted scopes do not cover the\n scopes required by the configured Outlook integrations (currently `mail`).\n The user must reconnect to grant the additional permissions; Microsoft's\n incremental-consent flow will only prompt for the delta.\n"
|
|
2601
2683
|
},
|
|
2602
2684
|
"connected_by_display_name": {
|
|
2603
2685
|
"type": "string",
|