@hmxlabs/dax-client 2.4.0 → 2.6.0
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.
|
@@ -690,6 +690,19 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
690
690
|
listingType?: string;
|
|
691
691
|
listingStatus?: string;
|
|
692
692
|
}, params?: RequestParams) => Promise<T>;
|
|
693
|
+
/**
|
|
694
|
+
* No description
|
|
695
|
+
*
|
|
696
|
+
* @tags ListingDetail
|
|
697
|
+
* @name ListingDetailFindAllForBuyer
|
|
698
|
+
* @request GET:/api/v1/buyer/listing-detail
|
|
699
|
+
* @secure
|
|
700
|
+
* @response `200` `object`
|
|
701
|
+
*/
|
|
702
|
+
listingDetailFindAllForBuyer: <T>(query?: {
|
|
703
|
+
listingType?: string;
|
|
704
|
+
listingStatus?: string;
|
|
705
|
+
}, params?: RequestParams) => Promise<T>;
|
|
693
706
|
/**
|
|
694
707
|
* No description
|
|
695
708
|
*
|
|
@@ -944,4 +957,24 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
944
957
|
workerManageProcessingPaymentsWorkerStatus: (query: {
|
|
945
958
|
status: boolean;
|
|
946
959
|
}, params?: RequestParams) => Promise<File>;
|
|
960
|
+
/**
|
|
961
|
+
* No description
|
|
962
|
+
*
|
|
963
|
+
* @tags Worker
|
|
964
|
+
* @name WorkerManageEmailWorkerStatus
|
|
965
|
+
* @request PUT:/api/v1/dax-admin/worker/email
|
|
966
|
+
* @response `200` `File`
|
|
967
|
+
*/
|
|
968
|
+
workerManageEmailWorkerStatus: (query: {
|
|
969
|
+
status: boolean;
|
|
970
|
+
}, params?: RequestParams) => Promise<File>;
|
|
971
|
+
/**
|
|
972
|
+
* No description
|
|
973
|
+
*
|
|
974
|
+
* @tags Worker
|
|
975
|
+
* @name WorkerTesting
|
|
976
|
+
* @request PUT:/api/v1/dax-admin/worker/testing
|
|
977
|
+
* @response `200` `File`
|
|
978
|
+
*/
|
|
979
|
+
workerTesting: (params?: RequestParams) => Promise<File>;
|
|
947
980
|
}
|
|
@@ -34,12 +34,14 @@ export interface ListingDetailGetByIdResponse {
|
|
|
34
34
|
maximumBidIncrement?: number;
|
|
35
35
|
startsOn?: string;
|
|
36
36
|
endsOn?: string;
|
|
37
|
+
createdOn: string;
|
|
37
38
|
withdrawnOn?: string;
|
|
38
39
|
withdrawnReason?: string;
|
|
39
40
|
listingProperties: ListingDetailGetByIdNameValue[];
|
|
40
41
|
feeStructureId: string;
|
|
41
42
|
ccyCode: string;
|
|
42
43
|
itemId: string;
|
|
44
|
+
sellerId: string;
|
|
43
45
|
manufactureDate?: string;
|
|
44
46
|
condition: string;
|
|
45
47
|
conditionText: string;
|