@pdpp/local-collector 0.18.0 → 0.18.2
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.
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
const COLLECTOR_BUILD_SOURCE_SENTINEL = "source";
|
|
2
2
|
const COLLECTOR_BUILD_INFO = {
|
|
3
|
-
builtAt: "2026-06-
|
|
4
|
-
revision: "
|
|
5
|
-
version: "0.18.
|
|
3
|
+
builtAt: "2026-06-26T09:13:45.041Z",
|
|
4
|
+
revision: "ca887ef84ecc",
|
|
5
|
+
version: "0.18.2",
|
|
6
6
|
};
|
|
7
7
|
function buildAgentVersion(info = COLLECTOR_BUILD_INFO) {
|
|
8
8
|
return `${info.version}+${info.revision}`;
|
|
@@ -17,6 +17,13 @@ function freezeStaticSecretDescriptor(descriptor) {
|
|
|
17
17
|
return Object.freeze(descriptor);
|
|
18
18
|
}
|
|
19
19
|
export const STATIC_SECRET_CONNECTOR_REGISTRY = Object.freeze({
|
|
20
|
+
chatgpt: freezeStaticSecretDescriptor({
|
|
21
|
+
credentialKind: "username_password",
|
|
22
|
+
secretFieldEnvVars: {
|
|
23
|
+
password: ["CHATGPT_PASSWORD"],
|
|
24
|
+
username: ["CHATGPT_USERNAME"],
|
|
25
|
+
},
|
|
26
|
+
}),
|
|
20
27
|
gmail: freezeStaticSecretDescriptor({
|
|
21
28
|
credentialKind: "app_password",
|
|
22
29
|
secretEnvVars: ["GOOGLE_APP_PASSWORD_PDPP", "GMAIL_APP_PASSWORD"],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pdpp/local-collector",
|
|
3
|
-
"version": "0.18.
|
|
3
|
+
"version": "0.18.2",
|
|
4
4
|
"description": "Publishable local collector runtime for PDPP: filesystem-class connectors (Claude Code, Codex) plus the device-exporter ingest client.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|