chore: updating the api-docs as some PR's were merged after the api-docs PR merge that were not rebuilt

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2021-06-17 19:19:42 +02:00
parent ae501c04df
commit 90bd5ab9e7
3 changed files with 54 additions and 3 deletions
+5 -2
View File
@@ -43,6 +43,9 @@ export const Reader: ({ entityId, onReady }: Props_2) => JSX.Element;
// @public (undocumented)
export const Router: () => JSX.Element;
// @public (undocumented)
export type SyncResult = 'cached' | 'updated' | 'timeout';
// @public (undocumented)
export interface TechDocsApi {
// (undocumented)
@@ -109,7 +112,7 @@ export interface TechDocsStorageApi {
// (undocumented)
getStorageUrl(): Promise<string>;
// (undocumented)
syncEntityDocs(entityId: EntityName): Promise<boolean>;
syncEntityDocs(entityId: EntityName): Promise<SyncResult>;
}
// @public (undocumented)
@@ -137,7 +140,7 @@ export class TechDocsStorageClient implements TechDocsStorageApi {
getStorageUrl(): Promise<string>;
// (undocumented)
identityApi: IdentityApi;
syncEntityDocs(entityId: EntityName): Promise<boolean>;
syncEntityDocs(entityId: EntityName): Promise<SyncResult>;
}