Skip to content

Commit

Permalink
206-version-008-updates (#217)
Browse files Browse the repository at this point in the history
* Emergency Hotfix: Azure deploy prod (#215)

* 20240429 @Mookse
- assets

* 20240429 @Mookse
wip stable

* 20240429 @Mookse
- assets

Signed-off-by: Erik Jespersen <mookse@gmail.com>

* 20240429 @Mookse
wip stable

Signed-off-by: Erik Jespersen <mookse@gmail.com>

* Update azure-deploy-prod_maht.yml

Updated version numbers

* Update azure-deploy-prod_maht.yml

updated azure/webapps-deploy to v3

* 20240507 @Mookse
- `Globals` improvement
- select help type
- submit help
- receive reponse
- cosmetic update of @module in ESDocs

* 20240511 @Mookse
- display chat/request response bubbles
- begin breakout of animations.css
- llm conectivity
- await css

* 20240512 @Mookse
- help chat refresh

* 20240512 @Mookse
- availableExperiences()
- launch tutorial button
- launchExperience event

* 20240513 @Mookse
- popup-container css

* 20240513 @Mookse
- env defaults to gpt-4o

* 20240513 @Mookse
- gpt updates
- improved message parsing
- cosmetic

* 20240513 @Mookse
wip unstable

* Version 0.0.6 Release (#198)

* 20240429 @Mookse
- assets

* 20240429 @Mookse
wip stable

* 20240429 @Mookse
- assets

Signed-off-by: Erik Jespersen <mookse@gmail.com>

* 20240429 @Mookse
wip stable

Signed-off-by: Erik Jespersen <mookse@gmail.com>

* 20240507 @Mookse
- `Globals` improvement
- select help type
- submit help
- receive reponse
- cosmetic update of @module in ESDocs

* 20240511 @Mookse
- display chat/request response bubbles
- begin breakout of animations.css
- llm conectivity
- await css

* 20240512 @Mookse
- help chat refresh

* 20240512 @Mookse
- availableExperiences()
- launch tutorial button
- launchExperience event

* 20240513 @Mookse
- popup-container css

* 20240513 @Mookse
- env defaults to gpt-4o

* 20240513 @Mookse
- gpt updates
- improved message parsing
- cosmetic

---------

Signed-off-by: Erik Jespersen <mookse@gmail.com>

* 20240513 @Mookse
- clean-up after wip

* 20240514 @Mookse
- vector store initial paint

* 20240514 @Mookse
- bug fix: system experiences frontend function

* 20240514 @Mookse
- multi-file upload button frontend

* 20240515 @Mookse
- pipeline to vector-store to attach files

* 20240515 @Mookse
- vector store attached to PA

* 20240515 @Mookse
- avatar upload() returns
```
{
 uploads: files,
 files: vectorstoreFileList,
 success: true,
}
```
- api adds:
```
{
 type: type,
 message: `File(s) [type=${ type }] uploaded successfully.`
}
```

* 20240515 @Mookse
- file-collection returned correctly on refresh

* 20240515 @Mookse
- file-collection displays

* 20240516 @Mookse
- HTML parsed in bubbles

* 20240516 @Mookse
- bot thread memory restored

* 197 version 007 updates (#208)

* 20240516 @Mookse
- alert background -> aliceblue

* 20240517 @Mookse
- `createBot` endpoint
- cosmetic

* 20240518 @Mookse
- `updateTools` becomes `updateAssistant`
- fix: merge error

* 20240518 @Mookse
- createBot, type=journaler succeeds

* 20240518 @Mookse
- icon asset

* 202401518 @Mookse
- journal-thumb.png
- cosmetic console clear

* 20240519 @Mookse
- entrySummary()

* 20240519 @Mookse
- cosmetic

* 20240519 @Mookse
- Teams placeholder
- addTeamMember()
- getAvailableTeamMembers(team)

* 20240520 @Mookse
- public/private avatar placeholder toggle
- cosmetic

* 20240521 @Mookse
- hotfix

---------

Signed-off-by: Erik Jespersen <mookse@gmail.com>
Signed-off-by: Erik Jespersen <42016062+Mookse@users.noreply.github.com>

* 20240521 @Mookse
- hotfix: registration restored

---------

Signed-off-by: Erik Jespersen <mookse@gmail.com>
Signed-off-by: Erik Jespersen <42016062+Mookse@users.noreply.github.com>
  • Loading branch information
Mookse committed May 21, 2024
1 parent 8dc3210 commit 2bd2e89
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions inc/js/mylife-data-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -283,15 +283,17 @@ class Dataservices {
}
async findRegistrationIdByEmail(_email){
/* pull record for email, returning id or new guid */
const _ = await this.getItems(
const registered = await this.getItems(
'registration',
undefined,
[{ name: '@email',
value: _email,
}],
'registration',
)
return _?.[0]?.id??Guid.newGuid().toString() // needed to separate out, was failing
const registrationId = registered?.[0]?.id
?? this.globals.newGuid
return registrationId
}
/**
* Retrieves a specific alert by its ID. _Currently placehoder_.
Expand Down

0 comments on commit 2bd2e89

Please sign in to comment.