venafi-connector-ca 2.0.0 → 2.0.1
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/bundle.mjs +6 -6
- package/package.json +1 -1
package/bundle.mjs
CHANGED
|
@@ -32529,8 +32529,8 @@ Use the tools to retrieve templates with placeholders filled in.
|
|
|
32529
32529
|
${lines.join("\n")}
|
|
32530
32530
|
|
|
32531
32531
|
## Placeholder Values
|
|
32532
|
-
- \`<CONNECTOR_NAME>\` \u2014 Your connector name (e.g., "digicert-one
|
|
32533
|
-
- \`<CONNECTOR_MODULE>\` \u2014 Go module path (e.g., "github.com/venafi/digicert-one
|
|
32532
|
+
- \`<CONNECTOR_NAME>\` \u2014 Your connector name (e.g., "venafi-connector-digicert-one")
|
|
32533
|
+
- \`<CONNECTOR_MODULE>\` \u2014 Go module path (e.g., "github.com/venafi/venafi-connector-digicert-one")
|
|
32534
32534
|
- \`<CA_NAME>\` \u2014 CA provider name (e.g., "DigiCert ONE")
|
|
32535
32535
|
- \`<AUTH_HEADER>\` \u2014 Authentication header name (e.g., "x-api-key")
|
|
32536
32536
|
- \`<API_BASE_PATH>\` \u2014 CA API base path (e.g., "/mpki/api/v1")
|
|
@@ -32556,8 +32556,8 @@ server.tool("get_ca_manifest", "Get the complete CA connector manifest.json temp
|
|
|
32556
32556
|
]
|
|
32557
32557
|
}));
|
|
32558
32558
|
server.tool("get_ca_domain_types", "Get all CA connector domain types: Connection, Product, ProductOption, ProductDetails, OrderDetails, CertificateDetails, ImportOption, ImportConfiguration, ImportDetails, CertificateRevocationData, RevocationDetails.", {
|
|
32559
|
-
connectorName: external_exports3.string().optional().describe("Connector name (e.g., 'digicert-one
|
|
32560
|
-
modulePath: external_exports3.string().optional().describe("Go module path (e.g., 'github.com/venafi/digicert-one
|
|
32559
|
+
connectorName: external_exports3.string().optional().describe("Connector name (e.g., 'venafi-connector-digicert-one'). Replaces <CONNECTOR_NAME>."),
|
|
32560
|
+
modulePath: external_exports3.string().optional().describe("Go module path (e.g., 'github.com/venafi/venafi-connector-digicert-one'). Replaces <CONNECTOR_MODULE>."),
|
|
32561
32561
|
caName: external_exports3.string().optional().describe("CA provider name (e.g., 'DigiCert ONE'). Replaces <CA_NAME>.")
|
|
32562
32562
|
}, async (args) => ({
|
|
32563
32563
|
content: [
|
|
@@ -32569,8 +32569,8 @@ server.tool("get_ca_domain_types", "Get all CA connector domain types: Connectio
|
|
|
32569
32569
|
}));
|
|
32570
32570
|
server.tool("get_ca_endpoints", "Get handler/service interface templates for CA connector endpoints. Returns all 8 endpoint handlers plus service interfaces, or a specific endpoint.", {
|
|
32571
32571
|
endpoint: external_exports3.string().optional().describe("Specific endpoint to retrieve: testconnection, getoptions, validateproduct, requestcertificate, checkorder, checkcertificate, importcertificates, revokecertificate. Omit for all endpoints."),
|
|
32572
|
-
connectorName: external_exports3.string().optional().describe("Connector name (e.g., 'digicert-one
|
|
32573
|
-
modulePath: external_exports3.string().optional().describe("Go module path (e.g., 'github.com/venafi/digicert-one
|
|
32572
|
+
connectorName: external_exports3.string().optional().describe("Connector name (e.g., 'venafi-connector-digicert-one'). Replaces <CONNECTOR_NAME>."),
|
|
32573
|
+
modulePath: external_exports3.string().optional().describe("Go module path (e.g., 'github.com/venafi/venafi-connector-digicert-one'). Replaces <CONNECTOR_MODULE>."),
|
|
32574
32574
|
caName: external_exports3.string().optional().describe("CA provider name (e.g., 'DigiCert ONE'). Replaces <CA_NAME>.")
|
|
32575
32575
|
}, async (args) => ({
|
|
32576
32576
|
content: [
|
package/package.json
CHANGED