mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2025-12-16 08:26:59 +03:00
21 lines
465 B
TypeScript
21 lines
465 B
TypeScript
export const fakeIdentity = {
|
|
data: {},
|
|
links: {},
|
|
included: [
|
|
{
|
|
attributes: {
|
|
is_monthly: true,
|
|
currently_entitled_amount_cents: 100,
|
|
patron_status: "active_patron",
|
|
},
|
|
id: "id",
|
|
type: "campaign"
|
|
}
|
|
],
|
|
};
|
|
|
|
export const fakeOauth = {
|
|
access_token: "test_access_token",
|
|
refresh_token: "test_refresh_token",
|
|
expires_in: 3600,
|
|
}; |