N
N
#### Description of changes When @auth rules are defined with dynamic groups the roleName is identified by `${rule.provider}:dynamicGroup:${groupsField}` which does not uniquely identify a valid @auth rule. The change updates...
### Describe the feature you'd like to request Given the following schema: ```ts const schema = a.schema({ Todo: a.model({ todoId: a.id(), updatesCount: a.number().default(0), content: a.string(), completed: a.boolean(), }) .identifier(['todoId']) .authorization(allow...
### Describe the feature you'd like to request Given the following schema: ```ts const schema = a.schema({ Todo: a.model({ updatesCount: a.number().default(0), content: a.string(), completed: a.boolean().default(false), }) .authorization(allow => [allow.publicApiKey()]), });...
I'm having some trouble using the `@aws-appsync/utils` (v1.8.0) in my Vitest tests. Given the following test script `util` is equal to `{}`; ```ts import { util } from '@aws-appsync/utils'; import...
### How did you install the Amplify CLI? npm ### If applicable, what version of Node.js are you using? 20.9.0 ### Amplify CLI Version 12.10.1 ### What operating system are...
### How did you install the Amplify CLI? npm ### If applicable, what version of Node.js are you using? v20.9.0 ### Amplify CLI Version 1.4.9 ### What operating system are...
### How did you install the Amplify CLI? npm ### If applicable, what version of Node.js are you using? v20.9.0 ### Amplify CLI Version 1.4.9 ### What operating system are...
### Description I am able to sign in using `Amplify.Auth.signIn()` which returns an object that confirms successful login. However, when I fetch the session to check if the user is...
**Is your feature request related to a problem? Please describe.** The upgrade to the Freezed package from v2 to v3 comes with a breaking change in the syntax. Specifically, "Classes...