@thelllabs/winehaus-sdk 0.0.37 → 0.0.38
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 +7 -4
- 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
|
@@ -179,9 +179,9 @@ export interface ChangeOperationRequestWithReasonDto {
|
|
|
179
179
|
reason?: string;
|
|
180
180
|
}
|
|
181
181
|
export interface ConfirmWithdrawRequestDto {
|
|
182
|
+
address?: CreateAddressByTemplateDto;
|
|
182
183
|
/** @example "pickup" */
|
|
183
184
|
deliverType: WithdrawRequestDeliverTypeEnum;
|
|
184
|
-
shippingAddress?: CreateAddressByTemplateDto;
|
|
185
185
|
}
|
|
186
186
|
export interface CreateAddressByTemplateDto {
|
|
187
187
|
addressLine1?: string;
|
|
@@ -425,6 +425,7 @@ export interface FullOperationRequestEntityDto {
|
|
|
425
425
|
wines?: OperationRequestWineInventoryItemEntityDto[];
|
|
426
426
|
}
|
|
427
427
|
export interface FullWithdrawRequestExtraDataDto {
|
|
428
|
+
address?: CreateAddressByTemplateDto;
|
|
428
429
|
/** @example "completed" */
|
|
429
430
|
deliverStatus?: WithdrawRequestDeliverStatusEnum | null;
|
|
430
431
|
/** @example "pickup" */
|
|
@@ -434,7 +435,6 @@ export interface FullWithdrawRequestExtraDataDto {
|
|
|
434
435
|
operationNotes?: string;
|
|
435
436
|
/** @format date-time */
|
|
436
437
|
pickupDateTime: string;
|
|
437
|
-
shippingAddress?: CreateAddressByTemplateDto;
|
|
438
438
|
}
|
|
439
439
|
export interface GeoLocationDto {
|
|
440
440
|
lat: number;
|
|
@@ -737,6 +737,9 @@ export interface RequestPasswordResetDto {
|
|
|
737
737
|
tenantId: string;
|
|
738
738
|
}
|
|
739
739
|
export interface RequestWithdrawDto {
|
|
740
|
+
address?: CreateAddressByTemplateDto;
|
|
741
|
+
/** @example "pickup" */
|
|
742
|
+
deliverType?: WithdrawRequestDeliverTypeEnum | null;
|
|
740
743
|
/** @example "please add it into a cooler" */
|
|
741
744
|
notes?: string;
|
|
742
745
|
/** @example [] */
|
|
@@ -992,11 +995,11 @@ export interface UpdateWineInventoryItemDto {
|
|
|
992
995
|
wineId: string;
|
|
993
996
|
}
|
|
994
997
|
export interface UpdateWithdrawDeliverStateDto {
|
|
998
|
+
address?: CreateAddressByTemplateDto;
|
|
995
999
|
/** @example "completed" */
|
|
996
1000
|
deliverStatus?: WithdrawRequestDeliverStatusEnum | null;
|
|
997
1001
|
/** @example "pickup" */
|
|
998
1002
|
deliverType?: WithdrawRequestDeliverTypeEnum | null;
|
|
999
|
-
shippingAddress?: CreateAddressByTemplateDto;
|
|
1000
1003
|
}
|
|
1001
1004
|
export interface UserEntityDto {
|
|
1002
1005
|
/** @format date-time */
|
|
@@ -4253,7 +4256,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
|
|
|
4253
4256
|
}
|
|
4254
4257
|
/**
|
|
4255
4258
|
* @title winehaus-api
|
|
4256
|
-
* @version 0.0.
|
|
4259
|
+
* @version 0.0.11
|
|
4257
4260
|
* @baseUrl https://api.app.veritaswinestorage.com
|
|
4258
4261
|
* @contact
|
|
4259
4262
|
*/
|
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.11
|
|
18608
18608
|
* @baseUrl https://api.app.veritaswinestorage.com
|
|
18609
18609
|
* @contact
|
|
18610
18610
|
*/
|