@thelllabs/winehaus-sdk 0.0.32 → 0.0.34
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/cjs/api/api.js +1 -1
- package/dist/esm/api/api.js +1 -1
- package/dist/types/api/api.d.ts +9 -1
- package/dist/umd/index.ts +1 -1
- package/package.json +1 -1
package/dist/cjs/api/api.js
CHANGED
package/dist/esm/api/api.js
CHANGED
package/dist/types/api/api.d.ts
CHANGED
|
@@ -31,6 +31,8 @@ export interface AppLoadResponseDto {
|
|
|
31
31
|
host: string;
|
|
32
32
|
/** @format uuid */
|
|
33
33
|
tenantId: string;
|
|
34
|
+
/** @example {"name":"Sandbox Tenant"} */
|
|
35
|
+
tenantInfo: TenantInfoDto;
|
|
34
36
|
/** @example {"logoUrl":"https://winestorage.com/images/logo.png","primaryColor":"#FFFFFF","secondaryColor":"#FFFFFF"} */
|
|
35
37
|
theme: HostThemeDto;
|
|
36
38
|
}
|
|
@@ -459,9 +461,12 @@ export interface GroupedWineInventoryItemEntityPaginatedDto {
|
|
|
459
461
|
meta: PaginationMetaDto;
|
|
460
462
|
}
|
|
461
463
|
export interface HostThemeDto {
|
|
464
|
+
contactEmail?: string;
|
|
465
|
+
iconUrl?: string;
|
|
462
466
|
logoUrl?: string;
|
|
463
467
|
primaryColor?: string;
|
|
464
468
|
secondaryColor?: string;
|
|
469
|
+
secondaryLogoUrl?: string;
|
|
465
470
|
}
|
|
466
471
|
export interface HttpExceptionDto {
|
|
467
472
|
/** @example null */
|
|
@@ -831,6 +836,9 @@ export interface SyncOperationGroupWithSnapshotDto {
|
|
|
831
836
|
/** @minItems 1 */
|
|
832
837
|
operations: UpdateCaseOperationDto[];
|
|
833
838
|
}
|
|
839
|
+
export interface TenantInfoDto {
|
|
840
|
+
name?: string | null;
|
|
841
|
+
}
|
|
834
842
|
export declare enum TenantRoleEnum {
|
|
835
843
|
Operator = "operator",
|
|
836
844
|
Admin = "admin",
|
|
@@ -4245,7 +4253,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
|
|
|
4245
4253
|
}
|
|
4246
4254
|
/**
|
|
4247
4255
|
* @title winehaus-api
|
|
4248
|
-
* @version 0.0.
|
|
4256
|
+
* @version 0.0.7
|
|
4249
4257
|
* @baseUrl http://localhost:3000
|
|
4250
4258
|
* @contact
|
|
4251
4259
|
*/
|
package/dist/umd/index.ts
CHANGED
|
@@ -18604,7 +18604,7 @@ var HttpClient = /** @class */ (function () {
|
|
|
18604
18604
|
exports.HttpClient = HttpClient;
|
|
18605
18605
|
/**
|
|
18606
18606
|
* @title winehaus-api
|
|
18607
|
-
* @version 0.0.
|
|
18607
|
+
* @version 0.0.7
|
|
18608
18608
|
* @baseUrl http://localhost:3000
|
|
18609
18609
|
* @contact
|
|
18610
18610
|
*/
|