@pixelbyte-software/pixcode 1.33.10 → 1.34.0

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 (75) hide show
  1. package/dist/api-docs.html +395 -395
  2. package/dist/assets/{index-B_dU5AHA.js → index-BvClqlMf.js} +134 -134
  3. package/dist/favicon.svg +8 -8
  4. package/dist/icons/icon-128x128.svg +9 -9
  5. package/dist/icons/icon-144x144.svg +9 -9
  6. package/dist/icons/icon-152x152.svg +9 -9
  7. package/dist/icons/icon-192x192.svg +9 -9
  8. package/dist/icons/icon-384x384.svg +9 -9
  9. package/dist/icons/icon-512x512.svg +9 -9
  10. package/dist/icons/icon-72x72.svg +9 -9
  11. package/dist/icons/icon-96x96.svg +9 -9
  12. package/dist/icons/icon-template.svg +9 -9
  13. package/dist/index.html +1 -1
  14. package/dist/logo.svg +12 -12
  15. package/dist/openapi.yaml +1311 -1311
  16. package/dist-server/server/index.js +4 -0
  17. package/dist-server/server/index.js.map +1 -1
  18. package/dist-server/server/modules/orchestration/a2a/adapter-registry.js +47 -0
  19. package/dist-server/server/modules/orchestration/a2a/adapter-registry.js.map +1 -0
  20. package/dist-server/server/modules/orchestration/a2a/adapters/abstract-a2a.adapter.js +17 -0
  21. package/dist-server/server/modules/orchestration/a2a/adapters/abstract-a2a.adapter.js.map +1 -0
  22. package/dist-server/server/modules/orchestration/a2a/adapters/claude-code.adapter.js +233 -0
  23. package/dist-server/server/modules/orchestration/a2a/adapters/claude-code.adapter.js.map +1 -0
  24. package/dist-server/server/modules/orchestration/a2a/agent-card.js +50 -0
  25. package/dist-server/server/modules/orchestration/a2a/agent-card.js.map +1 -0
  26. package/dist-server/server/modules/orchestration/a2a/auth.middleware.js +25 -0
  27. package/dist-server/server/modules/orchestration/a2a/auth.middleware.js.map +1 -0
  28. package/dist-server/server/modules/orchestration/a2a/bus.js +34 -0
  29. package/dist-server/server/modules/orchestration/a2a/bus.js.map +1 -0
  30. package/dist-server/server/modules/orchestration/a2a/routes.js +233 -0
  31. package/dist-server/server/modules/orchestration/a2a/routes.js.map +1 -0
  32. package/dist-server/server/modules/orchestration/a2a/types.js +6 -0
  33. package/dist-server/server/modules/orchestration/a2a/types.js.map +1 -0
  34. package/dist-server/server/modules/orchestration/a2a/validator.js +85 -0
  35. package/dist-server/server/modules/orchestration/a2a/validator.js.map +1 -0
  36. package/dist-server/server/modules/orchestration/index.js +10 -0
  37. package/dist-server/server/modules/orchestration/index.js.map +1 -0
  38. package/dist-server/server/opencode-cli.js +4 -1
  39. package/dist-server/server/opencode-cli.js.map +1 -1
  40. package/package.json +178 -178
  41. package/scripts/smoke/a2a-roundtrip.mjs +98 -0
  42. package/server/database/db.js +794 -794
  43. package/server/database/json-store.js +194 -194
  44. package/server/index.js +9 -0
  45. package/server/modules/orchestration/a2a/adapter-registry.ts +58 -0
  46. package/server/modules/orchestration/a2a/adapters/abstract-a2a.adapter.ts +49 -0
  47. package/server/modules/orchestration/a2a/adapters/claude-code.adapter.ts +283 -0
  48. package/server/modules/orchestration/a2a/agent-card.ts +55 -0
  49. package/server/modules/orchestration/a2a/auth.middleware.ts +29 -0
  50. package/server/modules/orchestration/a2a/bus.ts +46 -0
  51. package/server/modules/orchestration/a2a/routes.ts +264 -0
  52. package/server/modules/orchestration/a2a/types.ts +111 -0
  53. package/server/modules/orchestration/a2a/validator.ts +90 -0
  54. package/server/modules/orchestration/index.ts +26 -0
  55. package/server/modules/providers/list/opencode/opencode-auth.provider.ts +130 -130
  56. package/server/modules/providers/list/opencode/opencode-mcp.provider.ts +126 -126
  57. package/server/modules/providers/list/opencode/opencode-sessions.provider.ts +232 -232
  58. package/server/modules/providers/list/opencode/opencode.provider.ts +29 -29
  59. package/server/modules/providers/list/qwen/qwen-auth.provider.ts +145 -145
  60. package/server/modules/providers/list/qwen/qwen-mcp.provider.ts +114 -114
  61. package/server/modules/providers/list/qwen/qwen-sessions.provider.ts +265 -265
  62. package/server/modules/providers/list/qwen/qwen.provider.ts +21 -21
  63. package/server/modules/providers/shared/provider-configs.ts +142 -142
  64. package/server/opencode-cli.js +4 -1
  65. package/server/opencode-response-handler.js +107 -107
  66. package/server/qwen-code-cli.js +395 -395
  67. package/server/qwen-response-handler.js +73 -73
  68. package/server/routes/qwen.js +27 -27
  69. package/server/services/external-access.js +171 -171
  70. package/server/services/provider-credentials.js +189 -189
  71. package/server/services/provider-models.js +381 -381
  72. package/server/services/telegram/telegram-http-client.js +130 -130
  73. package/server/services/vapid-keys.js +36 -36
  74. package/server/utils/port-access.js +209 -209
  75. package/scripts/rest-sweep.mjs +0 -93
@@ -1,189 +1,189 @@
1
- import { promises as fs } from 'node:fs';
2
- import os from 'node:os';
3
- import path from 'node:path';
4
-
5
- /**
6
- * Central credentials store for CLI providers.
7
- *
8
- * File: `~/.pixcode/provider-credentials.json`. Lets the UI save an API key
9
- * (and optional base URL for OpenAI-compatible providers) once and have it
10
- * picked up by:
11
- * - the spawn adapters (claude-sdk.js, cursor-cli.js, openai-codex.js,
12
- * gemini-cli.js, qwen-code-cli.js) when they launch the CLI subprocess
13
- * - the provider-auth modules as an additional "authenticated" signal
14
- *
15
- * Keeping credentials in one file instead of per-CLI config files means we
16
- * don't have to learn each CLI's settings schema just to set an API key,
17
- * and users see one "Logout" button that actually clears everything.
18
- */
19
-
20
- const CONFIG_FILE = path.join(os.homedir(), '.pixcode', 'provider-credentials.json');
21
-
22
- /**
23
- * Map provider id → {apiKeyEnv, baseUrlEnv, extraEnv?} so we know which env
24
- * vars to inject into the spawn env. Cursor is OAuth-only; it has no api-key
25
- * entry.
26
- *
27
- * `baseUrlEnv` lets users point a provider at any OpenAI-compatible (or
28
- * Gemini-compatible) endpoint they want — third-party gateways, self-hosted
29
- * proxies, OpenRouter, Together, etc. — without forking the CLI. The CLI
30
- * picks the env var up natively because every supported CLI honours its
31
- * vendor's standard variable names. **Don't rename these.** Pixcode is just
32
- * a passthrough; people expect the same names that work outside Pixcode.
33
- *
34
- * `extraEnv` is a list of additional env-var names that should be mirrored
35
- * across with the same value as `baseUrlEnv` — handy when a provider has
36
- * historical aliases (e.g. Gemini's `GOOGLE_GEMINI_BASE_URL` vs newer
37
- * `GEMINI_BASE_URL` clients).
38
- */
39
- export const PROVIDER_ENV_VARS = Object.freeze({
40
- claude: { apiKeyEnv: 'ANTHROPIC_API_KEY', baseUrlEnv: 'ANTHROPIC_BASE_URL' },
41
- codex: { apiKeyEnv: 'OPENAI_API_KEY', baseUrlEnv: 'OPENAI_BASE_URL' },
42
- gemini: {
43
- apiKeyEnv: 'GEMINI_API_KEY',
44
- baseUrlEnv: 'GOOGLE_GEMINI_BASE_URL',
45
- // Some Gemini-API-compatible gateways pick up the shorter
46
- // `GEMINI_BASE_URL` name; mirror so either client works.
47
- extraBaseUrlEnv: ['GEMINI_BASE_URL'],
48
- },
49
- qwen: { apiKeyEnv: 'OPENAI_API_KEY', baseUrlEnv: 'OPENAI_BASE_URL' },
50
- // OpenCode is multi-provider. Default-set ANTHROPIC_*, but ALSO mirror
51
- // the same key into OPENAI_API_KEY when the user picks an OpenAI-flavour
52
- // model — handled at spawn time in opencode-cli.js, not here.
53
- opencode: { apiKeyEnv: 'ANTHROPIC_API_KEY', baseUrlEnv: 'ANTHROPIC_BASE_URL' },
54
- });
55
-
56
- async function readStore() {
57
- try {
58
- const raw = await fs.readFile(CONFIG_FILE, 'utf8');
59
- const parsed = JSON.parse(raw);
60
- return parsed && typeof parsed === 'object' ? parsed : {};
61
- } catch {
62
- return {};
63
- }
64
- }
65
-
66
- async function writeStore(next) {
67
- await fs.mkdir(path.dirname(CONFIG_FILE), { recursive: true });
68
- await fs.writeFile(CONFIG_FILE, JSON.stringify(next, null, 2), { mode: 0o600 });
69
- }
70
-
71
- /**
72
- * Returns `{ apiKey, baseUrl }` for the given provider, or `null` if no key
73
- * is stored. Safe to call on any provider id — unknown ids yield null.
74
- */
75
- export async function getProviderCredentials(provider) {
76
- const store = await readStore();
77
- const entry = store[provider];
78
- if (!entry || typeof entry !== 'object') return null;
79
- const apiKey = typeof entry.apiKey === 'string' && entry.apiKey.trim() ? entry.apiKey.trim() : null;
80
- if (!apiKey) return null;
81
- const baseUrl = typeof entry.baseUrl === 'string' && entry.baseUrl.trim() ? entry.baseUrl.trim() : null;
82
- return { apiKey, baseUrl };
83
- }
84
-
85
- /** Persist credentials; empty string apiKey deletes the entry. */
86
- export async function setProviderCredentials(provider, { apiKey, baseUrl }) {
87
- const store = await readStore();
88
- const trimmedKey = typeof apiKey === 'string' ? apiKey.trim() : '';
89
- if (!trimmedKey) {
90
- delete store[provider];
91
- } else {
92
- store[provider] = {
93
- apiKey: trimmedKey,
94
- baseUrl: typeof baseUrl === 'string' && baseUrl.trim() ? baseUrl.trim() : null,
95
- updatedAt: new Date().toISOString(),
96
- };
97
- }
98
- await writeStore(store);
99
- }
100
-
101
- export async function clearProviderCredentials(provider) {
102
- await setProviderCredentials(provider, { apiKey: '', baseUrl: null });
103
- }
104
-
105
- /**
106
- * Builds an env object that inherits from the server process env and
107
- * overlays stored credentials for the given provider. Use when spawning
108
- * a CLI subprocess so the user's Pixcode-configured key is available
109
- * without leaking unrelated provider keys into the child.
110
- */
111
- export async function buildSpawnEnv(provider, baseEnv = process.env) {
112
- const envVars = PROVIDER_ENV_VARS[provider];
113
- const env = { ...baseEnv };
114
- if (!envVars) return env;
115
-
116
- const creds = await getProviderCredentials(provider);
117
- if (!creds) return env;
118
-
119
- if (envVars.apiKeyEnv) env[envVars.apiKeyEnv] = creds.apiKey;
120
- if (envVars.baseUrlEnv && creds.baseUrl) {
121
- env[envVars.baseUrlEnv] = creds.baseUrl;
122
- // Mirror to alias env-var names so clients that read either work.
123
- for (const alias of envVars.extraBaseUrlEnv || []) {
124
- env[alias] = creds.baseUrl;
125
- }
126
- }
127
- return env;
128
- }
129
-
130
- /**
131
- * Apply stored credentials onto `process.env` for every known provider.
132
- * Called on server boot so SDK-based integrations (Claude, Codex) see the
133
- * API keys without reading our credentials file directly. Subprocess spawns
134
- * go through `buildSpawnEnv` which layers on top of this.
135
- */
136
- export async function applyAllStoredCredentialsToEnv() {
137
- const store = await readStore();
138
- for (const [provider, envVars] of Object.entries(PROVIDER_ENV_VARS)) {
139
- const entry = store[provider];
140
- if (!entry || typeof entry !== 'object') continue;
141
- const apiKey = typeof entry.apiKey === 'string' ? entry.apiKey.trim() : '';
142
- const baseUrl = typeof entry.baseUrl === 'string' ? entry.baseUrl.trim() : '';
143
- if (envVars.apiKeyEnv && apiKey) process.env[envVars.apiKeyEnv] = apiKey;
144
- if (envVars.baseUrlEnv && baseUrl) {
145
- process.env[envVars.baseUrlEnv] = baseUrl;
146
- for (const alias of envVars.extraBaseUrlEnv || []) {
147
- process.env[alias] = baseUrl;
148
- }
149
- }
150
- }
151
- }
152
-
153
- /**
154
- * Sync a single provider's credentials into `process.env` (or clear them
155
- * when no key is set). Call after mutating the store via the API so the
156
- * effect is immediate instead of needing a restart.
157
- */
158
- export async function applyProviderCredentialsToEnv(provider) {
159
- const envVars = PROVIDER_ENV_VARS[provider];
160
- if (!envVars) return;
161
- const creds = await getProviderCredentials(provider);
162
- if (envVars.apiKeyEnv) {
163
- if (creds?.apiKey) process.env[envVars.apiKeyEnv] = creds.apiKey;
164
- else delete process.env[envVars.apiKeyEnv];
165
- }
166
- if (envVars.baseUrlEnv) {
167
- if (creds?.baseUrl) process.env[envVars.baseUrlEnv] = creds.baseUrl;
168
- else delete process.env[envVars.baseUrlEnv];
169
- for (const alias of envVars.extraBaseUrlEnv || []) {
170
- if (creds?.baseUrl) process.env[alias] = creds.baseUrl;
171
- else delete process.env[alias];
172
- }
173
- }
174
- }
175
-
176
- /** Listing + logout helpers for the UI. */
177
- export async function listProviderCredentialSummaries() {
178
- const store = await readStore();
179
- const out = {};
180
- for (const key of Object.keys(PROVIDER_ENV_VARS)) {
181
- const entry = store[key];
182
- out[key] = {
183
- hasKey: Boolean(entry && typeof entry.apiKey === 'string' && entry.apiKey.trim()),
184
- baseUrl: entry && typeof entry.baseUrl === 'string' && entry.baseUrl.trim() ? entry.baseUrl.trim() : null,
185
- updatedAt: entry && typeof entry.updatedAt === 'string' ? entry.updatedAt : null,
186
- };
187
- }
188
- return out;
189
- }
1
+ import { promises as fs } from 'node:fs';
2
+ import os from 'node:os';
3
+ import path from 'node:path';
4
+
5
+ /**
6
+ * Central credentials store for CLI providers.
7
+ *
8
+ * File: `~/.pixcode/provider-credentials.json`. Lets the UI save an API key
9
+ * (and optional base URL for OpenAI-compatible providers) once and have it
10
+ * picked up by:
11
+ * - the spawn adapters (claude-sdk.js, cursor-cli.js, openai-codex.js,
12
+ * gemini-cli.js, qwen-code-cli.js) when they launch the CLI subprocess
13
+ * - the provider-auth modules as an additional "authenticated" signal
14
+ *
15
+ * Keeping credentials in one file instead of per-CLI config files means we
16
+ * don't have to learn each CLI's settings schema just to set an API key,
17
+ * and users see one "Logout" button that actually clears everything.
18
+ */
19
+
20
+ const CONFIG_FILE = path.join(os.homedir(), '.pixcode', 'provider-credentials.json');
21
+
22
+ /**
23
+ * Map provider id → {apiKeyEnv, baseUrlEnv, extraEnv?} so we know which env
24
+ * vars to inject into the spawn env. Cursor is OAuth-only; it has no api-key
25
+ * entry.
26
+ *
27
+ * `baseUrlEnv` lets users point a provider at any OpenAI-compatible (or
28
+ * Gemini-compatible) endpoint they want — third-party gateways, self-hosted
29
+ * proxies, OpenRouter, Together, etc. — without forking the CLI. The CLI
30
+ * picks the env var up natively because every supported CLI honours its
31
+ * vendor's standard variable names. **Don't rename these.** Pixcode is just
32
+ * a passthrough; people expect the same names that work outside Pixcode.
33
+ *
34
+ * `extraEnv` is a list of additional env-var names that should be mirrored
35
+ * across with the same value as `baseUrlEnv` — handy when a provider has
36
+ * historical aliases (e.g. Gemini's `GOOGLE_GEMINI_BASE_URL` vs newer
37
+ * `GEMINI_BASE_URL` clients).
38
+ */
39
+ export const PROVIDER_ENV_VARS = Object.freeze({
40
+ claude: { apiKeyEnv: 'ANTHROPIC_API_KEY', baseUrlEnv: 'ANTHROPIC_BASE_URL' },
41
+ codex: { apiKeyEnv: 'OPENAI_API_KEY', baseUrlEnv: 'OPENAI_BASE_URL' },
42
+ gemini: {
43
+ apiKeyEnv: 'GEMINI_API_KEY',
44
+ baseUrlEnv: 'GOOGLE_GEMINI_BASE_URL',
45
+ // Some Gemini-API-compatible gateways pick up the shorter
46
+ // `GEMINI_BASE_URL` name; mirror so either client works.
47
+ extraBaseUrlEnv: ['GEMINI_BASE_URL'],
48
+ },
49
+ qwen: { apiKeyEnv: 'OPENAI_API_KEY', baseUrlEnv: 'OPENAI_BASE_URL' },
50
+ // OpenCode is multi-provider. Default-set ANTHROPIC_*, but ALSO mirror
51
+ // the same key into OPENAI_API_KEY when the user picks an OpenAI-flavour
52
+ // model — handled at spawn time in opencode-cli.js, not here.
53
+ opencode: { apiKeyEnv: 'ANTHROPIC_API_KEY', baseUrlEnv: 'ANTHROPIC_BASE_URL' },
54
+ });
55
+
56
+ async function readStore() {
57
+ try {
58
+ const raw = await fs.readFile(CONFIG_FILE, 'utf8');
59
+ const parsed = JSON.parse(raw);
60
+ return parsed && typeof parsed === 'object' ? parsed : {};
61
+ } catch {
62
+ return {};
63
+ }
64
+ }
65
+
66
+ async function writeStore(next) {
67
+ await fs.mkdir(path.dirname(CONFIG_FILE), { recursive: true });
68
+ await fs.writeFile(CONFIG_FILE, JSON.stringify(next, null, 2), { mode: 0o600 });
69
+ }
70
+
71
+ /**
72
+ * Returns `{ apiKey, baseUrl }` for the given provider, or `null` if no key
73
+ * is stored. Safe to call on any provider id — unknown ids yield null.
74
+ */
75
+ export async function getProviderCredentials(provider) {
76
+ const store = await readStore();
77
+ const entry = store[provider];
78
+ if (!entry || typeof entry !== 'object') return null;
79
+ const apiKey = typeof entry.apiKey === 'string' && entry.apiKey.trim() ? entry.apiKey.trim() : null;
80
+ if (!apiKey) return null;
81
+ const baseUrl = typeof entry.baseUrl === 'string' && entry.baseUrl.trim() ? entry.baseUrl.trim() : null;
82
+ return { apiKey, baseUrl };
83
+ }
84
+
85
+ /** Persist credentials; empty string apiKey deletes the entry. */
86
+ export async function setProviderCredentials(provider, { apiKey, baseUrl }) {
87
+ const store = await readStore();
88
+ const trimmedKey = typeof apiKey === 'string' ? apiKey.trim() : '';
89
+ if (!trimmedKey) {
90
+ delete store[provider];
91
+ } else {
92
+ store[provider] = {
93
+ apiKey: trimmedKey,
94
+ baseUrl: typeof baseUrl === 'string' && baseUrl.trim() ? baseUrl.trim() : null,
95
+ updatedAt: new Date().toISOString(),
96
+ };
97
+ }
98
+ await writeStore(store);
99
+ }
100
+
101
+ export async function clearProviderCredentials(provider) {
102
+ await setProviderCredentials(provider, { apiKey: '', baseUrl: null });
103
+ }
104
+
105
+ /**
106
+ * Builds an env object that inherits from the server process env and
107
+ * overlays stored credentials for the given provider. Use when spawning
108
+ * a CLI subprocess so the user's Pixcode-configured key is available
109
+ * without leaking unrelated provider keys into the child.
110
+ */
111
+ export async function buildSpawnEnv(provider, baseEnv = process.env) {
112
+ const envVars = PROVIDER_ENV_VARS[provider];
113
+ const env = { ...baseEnv };
114
+ if (!envVars) return env;
115
+
116
+ const creds = await getProviderCredentials(provider);
117
+ if (!creds) return env;
118
+
119
+ if (envVars.apiKeyEnv) env[envVars.apiKeyEnv] = creds.apiKey;
120
+ if (envVars.baseUrlEnv && creds.baseUrl) {
121
+ env[envVars.baseUrlEnv] = creds.baseUrl;
122
+ // Mirror to alias env-var names so clients that read either work.
123
+ for (const alias of envVars.extraBaseUrlEnv || []) {
124
+ env[alias] = creds.baseUrl;
125
+ }
126
+ }
127
+ return env;
128
+ }
129
+
130
+ /**
131
+ * Apply stored credentials onto `process.env` for every known provider.
132
+ * Called on server boot so SDK-based integrations (Claude, Codex) see the
133
+ * API keys without reading our credentials file directly. Subprocess spawns
134
+ * go through `buildSpawnEnv` which layers on top of this.
135
+ */
136
+ export async function applyAllStoredCredentialsToEnv() {
137
+ const store = await readStore();
138
+ for (const [provider, envVars] of Object.entries(PROVIDER_ENV_VARS)) {
139
+ const entry = store[provider];
140
+ if (!entry || typeof entry !== 'object') continue;
141
+ const apiKey = typeof entry.apiKey === 'string' ? entry.apiKey.trim() : '';
142
+ const baseUrl = typeof entry.baseUrl === 'string' ? entry.baseUrl.trim() : '';
143
+ if (envVars.apiKeyEnv && apiKey) process.env[envVars.apiKeyEnv] = apiKey;
144
+ if (envVars.baseUrlEnv && baseUrl) {
145
+ process.env[envVars.baseUrlEnv] = baseUrl;
146
+ for (const alias of envVars.extraBaseUrlEnv || []) {
147
+ process.env[alias] = baseUrl;
148
+ }
149
+ }
150
+ }
151
+ }
152
+
153
+ /**
154
+ * Sync a single provider's credentials into `process.env` (or clear them
155
+ * when no key is set). Call after mutating the store via the API so the
156
+ * effect is immediate instead of needing a restart.
157
+ */
158
+ export async function applyProviderCredentialsToEnv(provider) {
159
+ const envVars = PROVIDER_ENV_VARS[provider];
160
+ if (!envVars) return;
161
+ const creds = await getProviderCredentials(provider);
162
+ if (envVars.apiKeyEnv) {
163
+ if (creds?.apiKey) process.env[envVars.apiKeyEnv] = creds.apiKey;
164
+ else delete process.env[envVars.apiKeyEnv];
165
+ }
166
+ if (envVars.baseUrlEnv) {
167
+ if (creds?.baseUrl) process.env[envVars.baseUrlEnv] = creds.baseUrl;
168
+ else delete process.env[envVars.baseUrlEnv];
169
+ for (const alias of envVars.extraBaseUrlEnv || []) {
170
+ if (creds?.baseUrl) process.env[alias] = creds.baseUrl;
171
+ else delete process.env[alias];
172
+ }
173
+ }
174
+ }
175
+
176
+ /** Listing + logout helpers for the UI. */
177
+ export async function listProviderCredentialSummaries() {
178
+ const store = await readStore();
179
+ const out = {};
180
+ for (const key of Object.keys(PROVIDER_ENV_VARS)) {
181
+ const entry = store[key];
182
+ out[key] = {
183
+ hasKey: Boolean(entry && typeof entry.apiKey === 'string' && entry.apiKey.trim()),
184
+ baseUrl: entry && typeof entry.baseUrl === 'string' && entry.baseUrl.trim() ? entry.baseUrl.trim() : null,
185
+ updatedAt: entry && typeof entry.updatedAt === 'string' ? entry.updatedAt : null,
186
+ };
187
+ }
188
+ return out;
189
+ }