@osdk/create-app 2.2.0-beta.22 → 2.2.0-beta.23
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# @osdk/create-app
|
|
2
2
|
|
|
3
|
+
## 2.2.0-beta.23
|
|
4
|
+
|
|
3
5
|
## 2.2.0-beta.22
|
|
4
6
|
|
|
5
7
|
## 2.2.0-beta.21
|
|
@@ -68,6 +70,22 @@
|
|
|
68
70
|
|
|
69
71
|
## 2.2.0-beta.2
|
|
70
72
|
|
|
73
|
+
## 2.1.0
|
|
74
|
+
|
|
75
|
+
### Minor Changes
|
|
76
|
+
|
|
77
|
+
- 62a3d1f: Use fixed versions for create-app client and oauth deps
|
|
78
|
+
- be9a9ff: Update dependencies for next apps and lock in typescript version
|
|
79
|
+
- 25fd9f0: Updating package.json to have better entry points to support react native bundlers.
|
|
80
|
+
- ef09e2d: Add Expo template to create-app
|
|
81
|
+
- f7008f7: Support TypeScript 2.0 syntax for Todo App tutorials
|
|
82
|
+
- 51b270d: Support 2.0 syntax in Next and Vue templates
|
|
83
|
+
- 292f5a5: Fix template imports
|
|
84
|
+
- 3d2ba6f: Revert api:x-read/write back to api:read/write-x
|
|
85
|
+
- 81e99c0: Couple templates with SDK version, allow specifying --sdkVersion
|
|
86
|
+
- 4849ae2: internal create-app code is codegen'd
|
|
87
|
+
- 0e1a2e3: Add the scopes option to OSDK CLI and update all example generators to include the scopes if provided, else, hide the scopes to avoid confusion
|
|
88
|
+
|
|
71
89
|
## 2.1.0-beta.31
|
|
72
90
|
|
|
73
91
|
## 2.1.0-beta.30
|
|
@@ -429,7 +429,12 @@ export default function Login() {
|
|
|
429
429
|
const [request, response, promptAsync] = useAuthRequest(
|
|
430
430
|
{
|
|
431
431
|
clientId: CLIENT_ID,
|
|
432
|
-
scopes: [
|
|
432
|
+
scopes: [
|
|
433
|
+
"api:read-data",
|
|
434
|
+
"api:write-data",
|
|
435
|
+
"api:use-ontologies-read",
|
|
436
|
+
"api:use-ontologies-write",
|
|
437
|
+
],
|
|
433
438
|
redirectUri,
|
|
434
439
|
usePKCE: true,
|
|
435
440
|
},
|
|
@@ -1245,5 +1250,5 @@ export const platformClient: PlatformClient = createPlatformClient(FOUNDRY_URL,
|
|
|
1245
1250
|
}]]);
|
|
1246
1251
|
|
|
1247
1252
|
export { files };
|
|
1248
|
-
//# sourceMappingURL=esm-
|
|
1249
|
-
//# sourceMappingURL=esm-
|
|
1253
|
+
//# sourceMappingURL=esm-M2GWHOD5.js.map
|
|
1254
|
+
//# sourceMappingURL=esm-M2GWHOD5.js.map
|