@thelllabs/winehaus-sdk 0.0.39 → 0.0.40
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 +16 -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
|
@@ -407,6 +407,8 @@ export interface FullOperationRequestEntityDto {
|
|
|
407
407
|
customer: UserEntityDto;
|
|
408
408
|
/** @format uuid */
|
|
409
409
|
customerId: string;
|
|
410
|
+
/** Formatted display ID (e.g., DEP-1, WTH-1) */
|
|
411
|
+
displayId?: string | null;
|
|
410
412
|
extraData: FullDepositRequestExtraDataDto | FullWithdrawRequestExtraDataDto;
|
|
411
413
|
/** @format uuid */
|
|
412
414
|
id: string;
|
|
@@ -418,6 +420,7 @@ export interface FullOperationRequestEntityDto {
|
|
|
418
420
|
status: OperationRequestStatusEnum;
|
|
419
421
|
/** @format uuid */
|
|
420
422
|
tenantId: string;
|
|
423
|
+
tenantSequence?: number | null;
|
|
421
424
|
/** @example "deposit" */
|
|
422
425
|
type: OperationRequestTypeEnum;
|
|
423
426
|
/** @format date-time */
|
|
@@ -467,6 +470,7 @@ export interface HostThemeDto {
|
|
|
467
470
|
primaryColor?: string;
|
|
468
471
|
secondaryColor?: string;
|
|
469
472
|
secondaryLogoUrl?: string;
|
|
473
|
+
storeAddress?: StoreAddressDto;
|
|
470
474
|
}
|
|
471
475
|
export interface HttpExceptionDto {
|
|
472
476
|
/** @example null */
|
|
@@ -604,6 +608,8 @@ export interface OperationRequestEntityDto {
|
|
|
604
608
|
customer: UserEntityDto;
|
|
605
609
|
/** @format uuid */
|
|
606
610
|
customerId: string;
|
|
611
|
+
/** Formatted display ID (e.g., DEP-1, WTH-1) */
|
|
612
|
+
displayId?: string | null;
|
|
607
613
|
extraData: FullDepositRequestExtraDataDto | FullWithdrawRequestExtraDataDto;
|
|
608
614
|
/** @format uuid */
|
|
609
615
|
id: string;
|
|
@@ -614,6 +620,7 @@ export interface OperationRequestEntityDto {
|
|
|
614
620
|
status: OperationRequestStatusEnum;
|
|
615
621
|
/** @format uuid */
|
|
616
622
|
tenantId: string;
|
|
623
|
+
tenantSequence?: number | null;
|
|
617
624
|
/** @example "deposit" */
|
|
618
625
|
type: OperationRequestTypeEnum;
|
|
619
626
|
/** @format date-time */
|
|
@@ -832,6 +839,14 @@ export interface StoragePlanEntityPaginatedDto {
|
|
|
832
839
|
links?: PaginationLinksDto;
|
|
833
840
|
meta: PaginationMetaDto;
|
|
834
841
|
}
|
|
842
|
+
export interface StoreAddressDto {
|
|
843
|
+
city: string;
|
|
844
|
+
country: string;
|
|
845
|
+
name?: string;
|
|
846
|
+
state: string;
|
|
847
|
+
street: string;
|
|
848
|
+
zip: string;
|
|
849
|
+
}
|
|
835
850
|
export interface SyncOperationGroupWithSnapshotDto {
|
|
836
851
|
/** @minItems 0 */
|
|
837
852
|
extras?: UpdateOperationExtraDto[];
|
|
@@ -4256,7 +4271,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
|
|
|
4256
4271
|
}
|
|
4257
4272
|
/**
|
|
4258
4273
|
* @title winehaus-api
|
|
4259
|
-
* @version 0.0.
|
|
4274
|
+
* @version 0.0.13
|
|
4260
4275
|
* @baseUrl https://api.app.veritaswinestorage.com
|
|
4261
4276
|
* @contact
|
|
4262
4277
|
*/
|
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.13
|
|
18608
18608
|
* @baseUrl https://api.app.veritaswinestorage.com
|
|
18609
18609
|
* @contact
|
|
18610
18610
|
*/
|