add page for user profile view and update endpoints; rename any "rowid" to "rowId"

This commit is contained in:
2025-01-20 12:43:05 -07:00
parent f3f8aeefc3
commit 5763fe4e49
7 changed files with 356 additions and 76 deletions

View File

@@ -191,7 +191,7 @@ export interface PlanVerifiableCredential extends GenericVerifiableCredential {
* Represents data about a project
*
* @deprecated
* We should use PlanSummaryRecord instead, adding rowid to it.
* (Maybe we should use PlanSummaryRecord instead, either by adding rowId or by iterating with jwtId.)
**/
export interface PlanData {
/**
@@ -212,9 +212,10 @@ export interface PlanData {
**/
name: string;
/**
* The identifier of the project -- different from jwtId, needs to be fixed
* The identifier of the project record -- different from jwtId
* (Maybe we should use the jwtId to iterate through the records instead.)
**/
rowid?: string;
rowId?: string;
}
export interface EndorserRateLimits {