theragist-ts 1.0.50 → 1.0.52
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/admin/message.d.ts +51 -0
- package/dist/admin/message.js +719 -10
- package/dist/admin/service.d.ts +49 -1
- package/dist/admin/service.js +212 -0
- package/dist/index.d.ts +4 -4
- package/dist/index.js +106 -31
- package/dist/lookup/message.d.ts +17 -0
- package/dist/lookup/message.js +224 -1
- package/dist/lookup/service.d.ts +13 -1
- package/dist/lookup/service.js +40 -0
- package/dist/lounge/message.d.ts +62 -0
- package/dist/lounge/message.js +1110 -143
- package/dist/lounge/service.d.ts +73 -1
- package/dist/lounge/service.js +327 -0
- package/dist/workspace/message.d.ts +366 -0
- package/dist/workspace/message.js +5293 -1
- package/dist/workspace/service.d.ts +253 -1
- package/dist/workspace/service.js +1494 -0
- package/package.json +1 -1
package/dist/admin/message.d.ts
CHANGED
|
@@ -327,6 +327,48 @@ export interface DeleteAppSettingRequest {
|
|
|
327
327
|
category: string;
|
|
328
328
|
key: string;
|
|
329
329
|
}
|
|
330
|
+
export interface LookupAvatarOption {
|
|
331
|
+
id: string;
|
|
332
|
+
label: string;
|
|
333
|
+
emoji: string;
|
|
334
|
+
avatarUrl: string;
|
|
335
|
+
description: string;
|
|
336
|
+
background: string;
|
|
337
|
+
}
|
|
338
|
+
export interface ListLookupAvatarsRequest {
|
|
339
|
+
}
|
|
340
|
+
export interface ListLookupAvatarsResponse {
|
|
341
|
+
avatars: LookupAvatarOption[];
|
|
342
|
+
}
|
|
343
|
+
export interface CreateLookupAvatarRequest {
|
|
344
|
+
id: string;
|
|
345
|
+
label: string;
|
|
346
|
+
emoji: string;
|
|
347
|
+
avatarUrl: string;
|
|
348
|
+
description: string;
|
|
349
|
+
background: string;
|
|
350
|
+
}
|
|
351
|
+
export interface CreateLookupAvatarResponse {
|
|
352
|
+
avatar: LookupAvatarOption | undefined;
|
|
353
|
+
}
|
|
354
|
+
export interface UpdateLookupAvatarRequest {
|
|
355
|
+
avatarId: string;
|
|
356
|
+
label: string;
|
|
357
|
+
emoji: string;
|
|
358
|
+
avatarUrl: string;
|
|
359
|
+
description: string;
|
|
360
|
+
background: string;
|
|
361
|
+
}
|
|
362
|
+
export interface UpdateLookupAvatarResponse {
|
|
363
|
+
avatar: LookupAvatarOption | undefined;
|
|
364
|
+
}
|
|
365
|
+
export interface DeleteLookupAvatarRequest {
|
|
366
|
+
avatarId: string;
|
|
367
|
+
}
|
|
368
|
+
export interface DeleteLookupAvatarResponse {
|
|
369
|
+
deleted: boolean;
|
|
370
|
+
avatarId: string;
|
|
371
|
+
}
|
|
330
372
|
export interface DashboardMetric {
|
|
331
373
|
value: number;
|
|
332
374
|
delta: number;
|
|
@@ -4155,6 +4197,15 @@ export declare const UpsertAppSettingItem: MessageFns<UpsertAppSettingItem>;
|
|
|
4155
4197
|
export declare const UpsertAppSettingsRequest: MessageFns<UpsertAppSettingsRequest>;
|
|
4156
4198
|
export declare const UpsertAppSettingsResponse: MessageFns<UpsertAppSettingsResponse>;
|
|
4157
4199
|
export declare const DeleteAppSettingRequest: MessageFns<DeleteAppSettingRequest>;
|
|
4200
|
+
export declare const LookupAvatarOption: MessageFns<LookupAvatarOption>;
|
|
4201
|
+
export declare const ListLookupAvatarsRequest: MessageFns<ListLookupAvatarsRequest>;
|
|
4202
|
+
export declare const ListLookupAvatarsResponse: MessageFns<ListLookupAvatarsResponse>;
|
|
4203
|
+
export declare const CreateLookupAvatarRequest: MessageFns<CreateLookupAvatarRequest>;
|
|
4204
|
+
export declare const CreateLookupAvatarResponse: MessageFns<CreateLookupAvatarResponse>;
|
|
4205
|
+
export declare const UpdateLookupAvatarRequest: MessageFns<UpdateLookupAvatarRequest>;
|
|
4206
|
+
export declare const UpdateLookupAvatarResponse: MessageFns<UpdateLookupAvatarResponse>;
|
|
4207
|
+
export declare const DeleteLookupAvatarRequest: MessageFns<DeleteLookupAvatarRequest>;
|
|
4208
|
+
export declare const DeleteLookupAvatarResponse: MessageFns<DeleteLookupAvatarResponse>;
|
|
4158
4209
|
export declare const DashboardMetric: MessageFns<DashboardMetric>;
|
|
4159
4210
|
export declare const DashboardOverviewRequest: MessageFns<DashboardOverviewRequest>;
|
|
4160
4211
|
export declare const DashboardOverviewResponse: MessageFns<DashboardOverviewResponse>;
|