Skip to content

Commit b26f250

Browse files
authored
Merge branch 'main' into console-error-script
2 parents 19c984e + ebacdcc commit b26f250

File tree

10 files changed

+464
-12
lines changed

10 files changed

+464
-12
lines changed
274 KB
Loading

public/images/gen-ai/claude.png

29.2 KB
Loading

public/images/gen-ai/login-form.png

62.9 KB
Loading

src/constants/versions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module.exports = {
2-
ANDROID_VERSION: "2.14.2",
2+
ANDROID_VERSION: "2.14.4",
33
ANDROID_DEVPREVIEW: "1.36.5-dev-preview.0",
44
ANDROID_V1_VERSION: "1.38.8",
55
ANDROID_V1_GEO_VERSION: "1.0.1",

src/directory/directory.mjs

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -303,9 +303,9 @@ export const directory = {
303303
filters: ['android', 'flutter', 'ios', 'js', 'react-native']
304304
},
305305
{
306-
title: 'Connect your app code to the API',
307-
route: '/lib/graphqlapi/connect',
308-
filters: ['js']
306+
title: 'Connect your app code to the API',
307+
route: '/lib/graphqlapi/connect',
308+
filters: ['js']
309309
},
310310
{
311311
title: 'Concepts',
@@ -2680,6 +2680,11 @@ export const directory = {
26802680
'api-rest': {
26812681
title: 'API (REST)',
26822682
items: [
2683+
{
2684+
title: 'Generative AI',
2685+
route: '/guides/api-rest/gen-ai',
2686+
filters: ['js']
2687+
},
26832688
{
26842689
title: 'NodeJS API',
26852690
route: '/guides/api-rest/node-api',

src/fragments/lib/project-setup/flutter/upgrade-guide/upgrade-guide.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ Follow the instructions [here](/lib/auth/social/q/platform/flutter/#platform-set
291291
- Automatic session reporting behavior has been aligned in v1. For all platforms, backgrounding and foregrounding the app will stop and start a new session. Previously on iOS, the session would pause and then resume.
292292
- You can now save to the `UserAttributes` field of a Pinpoint Endpoint by passing an `AWSPinpointUserProfile` to `identifyUser`.
293293
- Analytics cached event data is now stored differently. Existing cached analytics events will not be migrated.
294-
- There are now typed `AnalyticsException`s for specific exception cases. See [the documentation on Pub](https://pub.dev/documentation/amplify_analytics_pinpoint/latest/amplify_analytics_pinpoint/amplify_analytics_pinpoint-library.html) for a full list of exceptions.
294+
- There are now typed `AnalyticsException`s for specific exception cases.
295295

296296
## API
297297

src/pages/console/authz/permissions.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ You are going to define set up role-based authorization rules for each of the mo
1616
2. In the **Model** pane on the right, expand the **Owners** window.
1717
3. Choose **Create**, **Read**, **Update** and **Delete** to specify that *Owners* have create, read, update, and delete access. The settings look as follows.
1818

19-
![](/images/console/10_ownersaccess.png)
19+
![Owners Access Console View](/images/console/10_ownersaccess.png)
2020

2121
## To set a private authorization rule
2222
1. Using the *Books* data model that you created in the [Create a data model example](/console/data/data-model#Create-a-data-model-example), set the authorization mode to **Cognito user pool**.
2323
2. In the **Model** pane on the right, expand the **Any signed-in users** window.
2424
3. Choose **Create**, **Read**, and **Update** to specify that any signed-in authenticated user has create, read, and update, access.
2525

26-
![](/images/console/11_privatesaccess.png)
26+
![Private Access Console View](/images/console/11_privatesaccess.png)
2727

2828

2929
## To set a group authorization rule
@@ -35,7 +35,7 @@ You are going to define set up role-based authorization rules for each of the mo
3535

3636
4. Choose **Create**, **Read**, **Update** and **Delete** to specify that signed in users in the *Editors* group have create, read, update, and delete access.
3737

38-
![](/images/console/9_editorgroupaccess.png)
38+
![Editor Access Console View](/images/console/9_editorgroupaccess.png)
3939

4040
## To set a public authorization rule
4141

@@ -44,4 +44,4 @@ If you want your data model to be publicly accessible, switch to API_KEY or IAM
4444
1. Using the *Books* data model that you created in the [Create a data model example](/console/data/data-model#Create-a-data-model-example), set the authorization mode to **API Key**.
4545
2. In the **Model** pane on the right, expand the **Anyone** window. Choose **Read** to specify that any signed in user has read access to the data in the *Book* model.
4646

47-
![](/images/console/7_publicauthreadonly.png)
47+
![Public Auth Readonly Access Console View](/images/console/7_publicauthreadonly.png)
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import ChooseFilterPage from '@/components/ChooseFilterPage';
2+
3+
import { INTEGRATION_FILTER_OPTIONS } from '@/utils/filter-data.ts';
4+
5+
<ChooseFilterPage
6+
directoryPath="/ChooseFilterPage"
7+
address="/guides/api-rest/gen-ai"
8+
filterKind="platform"
9+
filters={['js']}
10+
currentFilter="all"
11+
message={'Choose a platform:'}
12+
/>

0 commit comments

Comments
 (0)