snow-flow 8.31.31 → 8.31.32

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "snow-flow",
3
- "version": "8.31.31",
3
+ "version": "8.31.32",
4
4
  "description": "ServiceNow development with SnowCode - 75+ LLM providers (Claude, GPT, Gemini, Llama, Mistral, DeepSeek, Groq, Ollama) • 393 Optimized Tools • 2 MCP Servers • Multi-agent orchestration • Use ANY AI coding assistant (ML tools moved to Enterprise)",
5
5
  "main": "dist/index.js",
6
6
  "type": "commonjs",
@@ -1,5 +1,5 @@
1
1
  diff --git a/node_modules/@groeimetai/snow-code/src/cli/cmd/auth.ts b/node_modules/@groeimetai/snow-code/src/cli/cmd/auth.ts
2
- index ce6bfbd..f8c3e36 100644
2
+ index ce6bfbd..1133af8 100644
3
3
  --- a/node_modules/@groeimetai/snow-code/src/cli/cmd/auth.ts
4
4
  +++ b/node_modules/@groeimetai/snow-code/src/cli/cmd/auth.ts
5
5
  @@ -711,6 +711,63 @@ export const AuthLoginCommand = cmd({
@@ -84,7 +84,7 @@ index ce6bfbd..f8c3e36 100644
84
84
  + },
85
85
  + body: JSON.stringify({
86
86
  + service: "jira",
87
- + username: jiraEmail,
87
+ + email: jiraEmail,
88
88
  + apiToken: jiraApiToken,
89
89
  + instanceUrl: jiraBaseUrl
90
90
  + })
@@ -124,7 +124,7 @@ index ce6bfbd..f8c3e36 100644
124
124
  + },
125
125
  + body: JSON.stringify({
126
126
  + service: "jira",
127
- + username: enterpriseJiraEmail,
127
+ + email: enterpriseJiraEmail,
128
128
  + apiToken: enterpriseJiraApiToken,
129
129
  + instanceUrl: enterpriseJiraBaseUrl
130
130
  + })
@@ -163,28 +163,6 @@ index ce6bfbd..f8c3e36 100644
163
163
  - jira: jiraBaseUrl
164
164
  - ? {
165
165
  - baseUrl: jiraBaseUrl,
166
- - email: jiraEmail,
167
- - // API token is NOT sent - kept local for security
168
- - }
169
- - : undefined,
170
- - azure: azureOrg
171
- - ? {
172
- - organization: azureOrg,
173
- - project: azureProject,
174
- - // PAT is NOT sent - kept local for security
175
- - }
176
- - : undefined,
177
- - confluence: confluenceUrl
178
- - ? {
179
- - baseUrl: confluenceUrl,
180
- - email: confluenceEmail,
181
- - // API token is NOT sent - kept local for security
182
- - }
183
- - : undefined,
184
- - }),
185
- - })
186
- - } catch (error) {
187
- - // Silently fail - integrations are still saved locally
188
166
  + // 🔐 SYNC CREDENTIALS TO PORTAL (secure encrypted storage)
189
167
  + // Note: Credentials are encrypted with AES-256-GCM in the portal database
190
168
  + if (authData && authData.token) {
@@ -206,7 +184,20 @@ index ce6bfbd..f8c3e36 100644
206
184
  + },
207
185
  + body: JSON.stringify({
208
186
  + service: "jira",
209
- + username: jiraEmail,
187
+ email: jiraEmail,
188
+ - // API token is NOT sent - kept local for security
189
+ - }
190
+ - : undefined,
191
+ - azure: azureOrg
192
+ - ? {
193
+ - organization: azureOrg,
194
+ - project: azureProject,
195
+ - // PAT is NOT sent - kept local for security
196
+ - }
197
+ - : undefined,
198
+ - confluence: confluenceUrl
199
+ - ? {
200
+ - baseUrl: confluenceUrl,
210
201
  + apiToken: jiraApiToken,
211
202
  + instanceUrl: jiraBaseUrl
212
203
  + })
@@ -260,7 +251,14 @@ index ce6bfbd..f8c3e36 100644
260
251
  + },
261
252
  + body: JSON.stringify({
262
253
  + service: "confluence",
263
- + username: confluenceEmail,
254
+ email: confluenceEmail,
255
+ - // API token is NOT sent - kept local for security
256
+ - }
257
+ - : undefined,
258
+ - }),
259
+ - })
260
+ - } catch (error) {
261
+ - // Silently fail - integrations are still saved locally
264
262
  + apiToken: confluenceApiToken,
265
263
  + instanceUrl: confluenceUrl
266
264
  + })