Initial commit

This commit is contained in:
Mindboost
2025-07-01 10:53:26 +00:00
commit 38050e5c69
416 changed files with 48708 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
export default auth = {
"status": "success",
"user": {
"id": 2,
"name": null,
"first_name": "Robert",
"surname": "Rapp",
"email": "robbi@happy-rapp.de",
"email_verified_at": null,
"type": null,
"avatar": null,
"blocked_at": null,
"created_at": "2024-02-17T05:02:18.000000Z",
"updated_at": "2024-02-17T05:02:18.000000Z",
"stripe_id": null,
"pm_type": null,
"pm_last_four": null,
"trial_ends_at": null,
"language": "en",
"subscriptions": [],
"settings": {
"id": 2,
"user_id": 2,
"headphone_type": "Over-ear",
"anc_type": "No",
"plan_today": null,
"soundscape": "x",
"status": null,
"adaptive_sound_scape": "yes",
"created_at": "2024-02-17T05:02:24.000000Z",
"updated_at": "2024-03-13T11:59:30.000000Z"
}
},
"authorisation": {
"token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJodHRwOi8vYi5taW5kYm9vc3QudGVhbS9hcGkvbG9naW4iLCJpYXQiOjE3MTAzNDY2NzQsImV4cCI6MTcxMDM4MjY3NCwibmJmIjoxNzEwMzQ2Njc0LCJqdGkiOiJKUUs3OHFzTEpNQkJwWERzIiwic3ViIjoiMiIsInBydiI6IjIzYmQ1Yzg5NDlmNjAwYWRiMzllNzAxYzQwMDg3MmRiN2E1OTc2ZjcifQ.Z7siezlXekT2GaOa4UDK46-xEp411714iAB8wClxA48",
"type": "bearer"
}
}

View File

@@ -0,0 +1,31 @@
export default user = {
id: 2,
name: null,
first_name: 'Robert',
surname: 'Rapp',
email: 'robbi@happy-rapp.de',
email_verified_at: null,
type: null,
avatar: null,
blocked_at: null,
created_at: '2024-02-17T05:02:18.000000Z',
updated_at: '2024-02-17T05:02:18.000000Z',
stripe_id: null,
pm_type: null,
pm_last_four: null,
trial_ends_at: null,
language: 'en',
subscriptions: [],
settings: {
id: 2,
user_id: 2,
headphone_type: 'Over-ear',
anc_type: 'No',
plan_today: null,
soundscape: 'x',
status: null,
adaptive_sound_scape: 'yes',
created_at: '2024-02-17T05:02:24.000000Z',
updated_at: '2024-03-13T11:59:30.000000Z'
}
}