@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.
@@ -279,7 +279,7 @@ var HttpClient = /** @class */ (function () {
279
279
  exports.HttpClient = HttpClient;
280
280
  /**
281
281
  * @title winehaus-api
282
- * @version 0.0.11
282
+ * @version 0.0.13
283
283
  * @baseUrl https://api.app.veritaswinestorage.com
284
284
  * @contact
285
285
  */
@@ -273,7 +273,7 @@ var HttpClient = /** @class */ (function () {
273
273
  export { HttpClient };
274
274
  /**
275
275
  * @title winehaus-api
276
- * @version 0.0.11
276
+ * @version 0.0.13
277
277
  * @baseUrl https://api.app.veritaswinestorage.com
278
278
  * @contact
279
279
  */
@@ -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.11
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.11
18607
+ * @version 0.0.13
18608
18608
  * @baseUrl https://api.app.veritaswinestorage.com
18609
18609
  * @contact
18610
18610
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thelllabs/winehaus-sdk",
3
- "version": "0.0.39",
3
+ "version": "0.0.40",
4
4
  "description": "Winehaus SDK",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",