-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #62 from Foxy/release/1.13.0
chore: release v1.13.0
- Loading branch information
Showing
18 changed files
with
234 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import type { Graph } from '../../core'; | ||
import type { Passkeys } from './passkeys'; | ||
import type { User } from './user'; | ||
|
||
export interface Passkey extends Graph { | ||
curie: 'fx:passkey'; | ||
links: { | ||
'self': Passkey; | ||
'fx:user': User; | ||
'fx:user_passkeys': Passkeys; | ||
}; | ||
props: { | ||
last_login_date: string | null; | ||
last_login_ua: string | null; | ||
credential_id: string; | ||
date_created: string | null; | ||
date_modified: string | null; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import type { CollectionGraphLinks, CollectionGraphProps } from '../../core/defaults'; | ||
import type { Graph } from '../../core'; | ||
import type { Passkey } from './passkey'; | ||
|
||
export interface Passkeys extends Graph { | ||
curie: 'fx:passkeys'; | ||
links: CollectionGraphLinks<Passkeys>; | ||
props: CollectionGraphProps; | ||
child: Passkey; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import type { Graph } from '../../core'; | ||
|
||
export interface SendWebhooks extends Graph { | ||
curie: 'fx:send_webhooks'; | ||
props: { | ||
refeed_hooks: number[]; | ||
event: string; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import type { Graph } from '../../core'; | ||
import type { Store } from './store'; | ||
import type { User } from './user'; | ||
|
||
export interface UserInvitation extends Graph { | ||
curie: 'fx:user_invitation'; | ||
links: { | ||
'self': UserInvitation; | ||
'fx:user': User; | ||
'fx:store': Store; | ||
'fx:resend': { curie: 'fx:resend' }; | ||
'fx:accept': { curie: 'fx:accept' }; | ||
'fx:reject': { curie: 'fx:reject' }; | ||
'fx:revoke': { curie: 'fx:revoke' }; | ||
}; | ||
props: { | ||
/* Read-only website URL of the store that the user is invited to. */ | ||
store_url: string; | ||
/* Read-only name of the store that the user is invited to. */ | ||
store_name: string; | ||
/* Read-only email of the store that the user is invited to. */ | ||
store_email: string; | ||
/* Read-only (sub)domain of the store that the user is invited to. */ | ||
store_domain: string; | ||
/* Read-only first name of the user that is invited. */ | ||
first_name: string | null; | ||
/* Read-only last name of the user that is invited. */ | ||
last_name: string | null; | ||
/* Read-only email of the user that is invited. */ | ||
email: string; | ||
/* Read-only status of the invitation, `sent` on creation. Use POST actions in links to change the status. */ | ||
status: 'sent' | 'accepted' | 'rejected' | 'revoked' | 'expired'; | ||
/* Read-only date the invitation was created. */ | ||
date_created: string; | ||
/* Read-only date the invitation was last modified. */ | ||
date_modified: string; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import type { CollectionGraphLinks, CollectionGraphProps } from '../../core/defaults'; | ||
import type { Graph } from '../../core'; | ||
import type { UserInvitation } from './user_invitation'; | ||
|
||
export interface UserInvitations extends Graph { | ||
curie: 'fx:user_accesses'; | ||
links: CollectionGraphLinks<UserInvitations>; | ||
props: CollectionGraphProps; | ||
child: UserInvitation; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.