@friggframework/devtools 2.0.0-next.68 → 2.0.0-next.69
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.
|
@@ -103,13 +103,13 @@ async function runApiKeyFlow(definition, ApiClass, providedApiKey, options) {
|
|
|
103
103
|
} catch (err) {
|
|
104
104
|
console.log(chalk.yellow(` Warning: getEntityDetails failed: ${err.message}`));
|
|
105
105
|
entityDetails = {
|
|
106
|
-
identifiers: { externalId: 'unknown',
|
|
106
|
+
identifiers: { externalId: 'unknown', userId: 'cli-test-user' },
|
|
107
107
|
details: { name: 'API Key Authentication' }
|
|
108
108
|
};
|
|
109
109
|
}
|
|
110
110
|
} else {
|
|
111
111
|
entityDetails = {
|
|
112
|
-
identifiers: { externalId: 'unknown',
|
|
112
|
+
identifiers: { externalId: 'unknown', userId: 'cli-test-user' },
|
|
113
113
|
details: { name: 'API Key Authentication' }
|
|
114
114
|
};
|
|
115
115
|
}
|
|
@@ -118,7 +118,7 @@ async function runOAuthFlow(definition, ApiClass, options) {
|
|
|
118
118
|
} else {
|
|
119
119
|
// Minimal entity details if method not provided
|
|
120
120
|
entityDetails = {
|
|
121
|
-
identifiers: { externalId: 'unknown',
|
|
121
|
+
identifiers: { externalId: 'unknown', userId: 'cli-test-user' },
|
|
122
122
|
details: { name: 'Unknown' },
|
|
123
123
|
};
|
|
124
124
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@friggframework/devtools",
|
|
3
3
|
"prettier": "@friggframework/prettier-config",
|
|
4
|
-
"version": "2.0.0-next.
|
|
4
|
+
"version": "2.0.0-next.69",
|
|
5
5
|
"bin": {
|
|
6
6
|
"frigg": "./frigg-cli/index.js"
|
|
7
7
|
},
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
"@babel/eslint-parser": "^7.18.9",
|
|
26
26
|
"@babel/parser": "^7.25.3",
|
|
27
27
|
"@babel/traverse": "^7.25.3",
|
|
28
|
-
"@friggframework/core": "2.0.0-next.
|
|
29
|
-
"@friggframework/schemas": "2.0.0-next.
|
|
30
|
-
"@friggframework/test": "2.0.0-next.
|
|
28
|
+
"@friggframework/core": "2.0.0-next.69",
|
|
29
|
+
"@friggframework/schemas": "2.0.0-next.69",
|
|
30
|
+
"@friggframework/test": "2.0.0-next.69",
|
|
31
31
|
"@hapi/boom": "^10.0.1",
|
|
32
32
|
"@inquirer/prompts": "^5.3.8",
|
|
33
33
|
"axios": "^1.7.2",
|
|
@@ -55,8 +55,8 @@
|
|
|
55
55
|
"validate-npm-package-name": "^5.0.0"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@friggframework/eslint-config": "2.0.0-next.
|
|
59
|
-
"@friggframework/prettier-config": "2.0.0-next.
|
|
58
|
+
"@friggframework/eslint-config": "2.0.0-next.69",
|
|
59
|
+
"@friggframework/prettier-config": "2.0.0-next.69",
|
|
60
60
|
"aws-sdk-client-mock": "^4.1.0",
|
|
61
61
|
"aws-sdk-client-mock-jest": "^4.1.0",
|
|
62
62
|
"jest": "^30.1.3",
|
|
@@ -88,5 +88,5 @@
|
|
|
88
88
|
"publishConfig": {
|
|
89
89
|
"access": "public"
|
|
90
90
|
},
|
|
91
|
-
"gitHead": "
|
|
91
|
+
"gitHead": "018c93f98b5f14786d016a4f621adef10ad27597"
|
|
92
92
|
}
|