@randock/nameshift-api-client 0.0.356 → 0.0.358
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/README.md +3 -3
- package/dist/models/AccountDto.d.ts +6 -0
- package/dist/models/AccountDto.js +4 -0
- package/dist/models/AuctionListItemDto.d.ts +12 -0
- package/dist/models/AuctionListItemDto.js +8 -0
- package/dist/models/BuyerNotificationDto.d.ts +2 -0
- package/dist/models/BuyerNotificationDto.js +3 -1
- package/dist/models/BuyerNotificationListItemDto.d.ts +2 -0
- package/dist/models/BuyerNotificationListItemDto.js +3 -1
- package/dist/models/IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto.d.ts +6 -0
- package/dist/models/IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto.js +4 -0
- package/dist/models/PrivateAccountGetMeResponse.d.ts +6 -0
- package/dist/models/PrivateAccountGetMeResponse.js +4 -0
- package/dist/models/SellerAuctionListItemDto.d.ts +6 -0
- package/dist/models/SellerAuctionListItemDto.js +4 -0
- package/dist/models/UserNotificationDto.d.ts +2 -0
- package/dist/models/UserNotificationDto.js +3 -1
- package/dist/models/UserNotificationListItemDto.d.ts +2 -0
- package/dist/models/UserNotificationListItemDto.js +3 -1
- package/package.json +1 -1
- package/src/models/AccountDto.ts +9 -0
- package/src/models/AuctionListItemDto.ts +18 -0
- package/src/models/BuyerNotificationDto.ts +3 -1
- package/src/models/BuyerNotificationListItemDto.ts +3 -1
- package/src/models/IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto.ts +9 -0
- package/src/models/PrivateAccountGetMeResponse.ts +9 -0
- package/src/models/SellerAuctionListItemDto.ts +9 -0
- package/src/models/UserNotificationDto.ts +3 -1
- package/src/models/UserNotificationListItemDto.ts +3 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @randock/nameshift-api-client@0.0.
|
|
1
|
+
## @randock/nameshift-api-client@0.0.358
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @randock/nameshift-api-client@0.0.
|
|
39
|
+
npm install @randock/nameshift-api-client@0.0.358 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -44,4 +44,4 @@ _unPublished (not recommended):_
|
|
|
44
44
|
```
|
|
45
45
|
npm install PATH_TO_GENERATED_PACKAGE --save
|
|
46
46
|
```
|
|
47
|
-
|
|
47
|
+
8574d748addb0c95628b00e8fe0e175e159bca3d3780a4fabdfaed8d91a20ab8733ac44ff10780d489bdc114a1f9f601
|
|
@@ -67,6 +67,12 @@ export interface AccountDto {
|
|
|
67
67
|
* @memberof AccountDto
|
|
68
68
|
*/
|
|
69
69
|
leaseToOwnKickbackPercentage: number;
|
|
70
|
+
/**
|
|
71
|
+
*
|
|
72
|
+
* @type {boolean}
|
|
73
|
+
* @memberof AccountDto
|
|
74
|
+
*/
|
|
75
|
+
canSell: boolean;
|
|
70
76
|
}
|
|
71
77
|
/**
|
|
72
78
|
* Check if a given object implements the AccountDto interface.
|
|
@@ -42,6 +42,8 @@ function instanceOfAccountDto(value) {
|
|
|
42
42
|
return false;
|
|
43
43
|
if (!('leaseToOwnKickbackPercentage' in value) || value['leaseToOwnKickbackPercentage'] === undefined)
|
|
44
44
|
return false;
|
|
45
|
+
if (!('canSell' in value) || value['canSell'] === undefined)
|
|
46
|
+
return false;
|
|
45
47
|
return true;
|
|
46
48
|
}
|
|
47
49
|
function AccountDtoFromJSON(json) {
|
|
@@ -60,6 +62,7 @@ function AccountDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
60
62
|
'payout': (0, AccountPayoutDto_1.AccountPayoutDtoFromJSON)(json['payout']),
|
|
61
63
|
'billingInformation': (0, BillingInformationDto_1.BillingInformationDtoFromJSON)(json['billingInformation']),
|
|
62
64
|
'leaseToOwnKickbackPercentage': json['leaseToOwnKickbackPercentage'],
|
|
65
|
+
'canSell': json['canSell'],
|
|
63
66
|
};
|
|
64
67
|
}
|
|
65
68
|
function AccountDtoToJSON(json) {
|
|
@@ -79,5 +82,6 @@ function AccountDtoToJSONTyped(value, ignoreDiscriminator) {
|
|
|
79
82
|
'payout': (0, AccountPayoutDto_1.AccountPayoutDtoToJSON)(value['payout']),
|
|
80
83
|
'billingInformation': (0, BillingInformationDto_1.BillingInformationDtoToJSON)(value['billingInformation']),
|
|
81
84
|
'leaseToOwnKickbackPercentage': value['leaseToOwnKickbackPercentage'],
|
|
85
|
+
'canSell': value['canSell'],
|
|
82
86
|
};
|
|
83
87
|
}
|
|
@@ -31,6 +31,12 @@ export interface AuctionListItemDto {
|
|
|
31
31
|
* @memberof AuctionListItemDto
|
|
32
32
|
*/
|
|
33
33
|
status: AuctionListItemDtoStatusEnum;
|
|
34
|
+
/**
|
|
35
|
+
* Initital auction minimum bid
|
|
36
|
+
* @type {MoneyDto}
|
|
37
|
+
* @memberof AuctionListItemDto
|
|
38
|
+
*/
|
|
39
|
+
initialMinimumBid: MoneyDto;
|
|
34
40
|
/**
|
|
35
41
|
* Auction minimum bid
|
|
36
42
|
* @type {MoneyDto}
|
|
@@ -97,6 +103,12 @@ export interface AuctionListItemDto {
|
|
|
97
103
|
* @memberof AuctionListItemDto
|
|
98
104
|
*/
|
|
99
105
|
bids: Array<AuctionBidDto>;
|
|
106
|
+
/**
|
|
107
|
+
* Account payment ID
|
|
108
|
+
* @type {string}
|
|
109
|
+
* @memberof AuctionListItemDto
|
|
110
|
+
*/
|
|
111
|
+
accountPaymentId: string | null;
|
|
100
112
|
}
|
|
101
113
|
/**
|
|
102
114
|
* @export
|
|
@@ -41,6 +41,8 @@ function instanceOfAuctionListItemDto(value) {
|
|
|
41
41
|
return false;
|
|
42
42
|
if (!('status' in value) || value['status'] === undefined)
|
|
43
43
|
return false;
|
|
44
|
+
if (!('initialMinimumBid' in value) || value['initialMinimumBid'] === undefined)
|
|
45
|
+
return false;
|
|
44
46
|
if (!('minimumBid' in value) || value['minimumBid'] === undefined)
|
|
45
47
|
return false;
|
|
46
48
|
if (!('reservePrice' in value) || value['reservePrice'] === undefined)
|
|
@@ -63,6 +65,8 @@ function instanceOfAuctionListItemDto(value) {
|
|
|
63
65
|
return false;
|
|
64
66
|
if (!('bids' in value) || value['bids'] === undefined)
|
|
65
67
|
return false;
|
|
68
|
+
if (!('accountPaymentId' in value) || value['accountPaymentId'] === undefined)
|
|
69
|
+
return false;
|
|
66
70
|
return true;
|
|
67
71
|
}
|
|
68
72
|
function AuctionListItemDtoFromJSON(json) {
|
|
@@ -75,6 +79,7 @@ function AuctionListItemDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
75
79
|
return {
|
|
76
80
|
'id': json['id'],
|
|
77
81
|
'status': json['status'],
|
|
82
|
+
'initialMinimumBid': (0, MoneyDto_1.MoneyDtoFromJSON)(json['initialMinimumBid']),
|
|
78
83
|
'minimumBid': (0, MoneyDto_1.MoneyDtoFromJSON)(json['minimumBid']),
|
|
79
84
|
'reservePrice': (0, MoneyDto_1.MoneyDtoFromJSON)(json['reservePrice']),
|
|
80
85
|
'highestBid': (0, MoneyDto_1.MoneyDtoFromJSON)(json['highestBid']),
|
|
@@ -86,6 +91,7 @@ function AuctionListItemDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
86
91
|
'sellerAccount': (0, AuctionListItemDtoSellerAccount_1.AuctionListItemDtoSellerAccountFromJSON)(json['sellerAccount']),
|
|
87
92
|
'numberOfBids': json['numberOfBids'],
|
|
88
93
|
'bids': (json['bids'].map(AuctionBidDto_1.AuctionBidDtoFromJSON)),
|
|
94
|
+
'accountPaymentId': json['accountPaymentId'],
|
|
89
95
|
};
|
|
90
96
|
}
|
|
91
97
|
function AuctionListItemDtoToJSON(json) {
|
|
@@ -99,6 +105,7 @@ function AuctionListItemDtoToJSONTyped(value, ignoreDiscriminator) {
|
|
|
99
105
|
return {
|
|
100
106
|
'id': value['id'],
|
|
101
107
|
'status': value['status'],
|
|
108
|
+
'initialMinimumBid': (0, MoneyDto_1.MoneyDtoToJSON)(value['initialMinimumBid']),
|
|
102
109
|
'minimumBid': (0, MoneyDto_1.MoneyDtoToJSON)(value['minimumBid']),
|
|
103
110
|
'reservePrice': (0, MoneyDto_1.MoneyDtoToJSON)(value['reservePrice']),
|
|
104
111
|
'highestBid': (0, MoneyDto_1.MoneyDtoToJSON)(value['highestBid']),
|
|
@@ -110,5 +117,6 @@ function AuctionListItemDtoToJSONTyped(value, ignoreDiscriminator) {
|
|
|
110
117
|
'sellerAccount': (0, AuctionListItemDtoSellerAccount_1.AuctionListItemDtoSellerAccountToJSON)(value['sellerAccount']),
|
|
111
118
|
'numberOfBids': value['numberOfBids'],
|
|
112
119
|
'bids': (value['bids'].map(AuctionBidDto_1.AuctionBidDtoToJSON)),
|
|
120
|
+
'accountPaymentId': value['accountPaymentId'],
|
|
113
121
|
};
|
|
114
122
|
}
|
|
@@ -139,6 +139,8 @@ export declare const BuyerNotificationDtoTypeEnum: {
|
|
|
139
139
|
readonly AUCTION_BUYER_OUTBID: "auction.buyer_outbid";
|
|
140
140
|
readonly AUCTION_BID_CREATED_FOR_BIDDER: "auction.bid_created_for_bidder";
|
|
141
141
|
readonly AUCTION_WINNER_CONTINUE_ORDER_EMAIL: "auction.winner_continue_order_email";
|
|
142
|
+
readonly AUCTION_FINISHED_WITH_WINNER_SELLER_NOTIFICATION: "auction.finished_with_winner_seller_notification";
|
|
143
|
+
readonly AUCTION_FINISHED_WITHOUT_WINNER_SELLER_NOTIFICATION: "auction.finished_without_winner_seller_notification";
|
|
142
144
|
};
|
|
143
145
|
export type BuyerNotificationDtoTypeEnum = typeof BuyerNotificationDtoTypeEnum[keyof typeof BuyerNotificationDtoTypeEnum];
|
|
144
146
|
/**
|
|
@@ -99,7 +99,9 @@ exports.BuyerNotificationDtoTypeEnum = {
|
|
|
99
99
|
TASKS_REMINDER_ORDER: 'tasks.reminder.order',
|
|
100
100
|
AUCTION_BUYER_OUTBID: 'auction.buyer_outbid',
|
|
101
101
|
AUCTION_BID_CREATED_FOR_BIDDER: 'auction.bid_created_for_bidder',
|
|
102
|
-
AUCTION_WINNER_CONTINUE_ORDER_EMAIL: 'auction.winner_continue_order_email'
|
|
102
|
+
AUCTION_WINNER_CONTINUE_ORDER_EMAIL: 'auction.winner_continue_order_email',
|
|
103
|
+
AUCTION_FINISHED_WITH_WINNER_SELLER_NOTIFICATION: 'auction.finished_with_winner_seller_notification',
|
|
104
|
+
AUCTION_FINISHED_WITHOUT_WINNER_SELLER_NOTIFICATION: 'auction.finished_without_winner_seller_notification'
|
|
103
105
|
};
|
|
104
106
|
/**
|
|
105
107
|
* Check if a given object implements the BuyerNotificationDto interface.
|
|
@@ -132,6 +132,8 @@ export declare const BuyerNotificationListItemDtoTypeEnum: {
|
|
|
132
132
|
readonly AUCTION_BUYER_OUTBID: "auction.buyer_outbid";
|
|
133
133
|
readonly AUCTION_BID_CREATED_FOR_BIDDER: "auction.bid_created_for_bidder";
|
|
134
134
|
readonly AUCTION_WINNER_CONTINUE_ORDER_EMAIL: "auction.winner_continue_order_email";
|
|
135
|
+
readonly AUCTION_FINISHED_WITH_WINNER_SELLER_NOTIFICATION: "auction.finished_with_winner_seller_notification";
|
|
136
|
+
readonly AUCTION_FINISHED_WITHOUT_WINNER_SELLER_NOTIFICATION: "auction.finished_without_winner_seller_notification";
|
|
135
137
|
};
|
|
136
138
|
export type BuyerNotificationListItemDtoTypeEnum = typeof BuyerNotificationListItemDtoTypeEnum[keyof typeof BuyerNotificationListItemDtoTypeEnum];
|
|
137
139
|
/**
|
|
@@ -98,7 +98,9 @@ exports.BuyerNotificationListItemDtoTypeEnum = {
|
|
|
98
98
|
TASKS_REMINDER_ORDER: 'tasks.reminder.order',
|
|
99
99
|
AUCTION_BUYER_OUTBID: 'auction.buyer_outbid',
|
|
100
100
|
AUCTION_BID_CREATED_FOR_BIDDER: 'auction.bid_created_for_bidder',
|
|
101
|
-
AUCTION_WINNER_CONTINUE_ORDER_EMAIL: 'auction.winner_continue_order_email'
|
|
101
|
+
AUCTION_WINNER_CONTINUE_ORDER_EMAIL: 'auction.winner_continue_order_email',
|
|
102
|
+
AUCTION_FINISHED_WITH_WINNER_SELLER_NOTIFICATION: 'auction.finished_with_winner_seller_notification',
|
|
103
|
+
AUCTION_FINISHED_WITHOUT_WINNER_SELLER_NOTIFICATION: 'auction.finished_without_winner_seller_notification'
|
|
102
104
|
};
|
|
103
105
|
/**
|
|
104
106
|
* Check if a given object implements the BuyerNotificationListItemDto interface.
|
|
@@ -69,6 +69,12 @@ export interface IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFe
|
|
|
69
69
|
* @memberof IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto
|
|
70
70
|
*/
|
|
71
71
|
leaseToOwnKickbackPercentage: number;
|
|
72
|
+
/**
|
|
73
|
+
*
|
|
74
|
+
* @type {boolean}
|
|
75
|
+
* @memberof IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto
|
|
76
|
+
*/
|
|
77
|
+
canSell: boolean;
|
|
72
78
|
/**
|
|
73
79
|
*
|
|
74
80
|
* @type {WithSettingsInner}
|
package/dist/models/IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto.js
CHANGED
|
@@ -64,6 +64,8 @@ function instanceOfIntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWith
|
|
|
64
64
|
return false;
|
|
65
65
|
if (!('leaseToOwnKickbackPercentage' in value) || value['leaseToOwnKickbackPercentage'] === undefined)
|
|
66
66
|
return false;
|
|
67
|
+
if (!('canSell' in value) || value['canSell'] === undefined)
|
|
68
|
+
return false;
|
|
67
69
|
if (!('settings' in value) || value['settings'] === undefined)
|
|
68
70
|
return false;
|
|
69
71
|
if (!('notifications' in value) || value['notifications'] === undefined)
|
|
@@ -88,6 +90,7 @@ function IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFla
|
|
|
88
90
|
'payout': (0, AccountPayoutDto_1.AccountPayoutDtoFromJSON)(json['payout']),
|
|
89
91
|
'billingInformation': (0, BillingInformationDto_1.BillingInformationDtoFromJSON)(json['billingInformation']),
|
|
90
92
|
'leaseToOwnKickbackPercentage': json['leaseToOwnKickbackPercentage'],
|
|
93
|
+
'canSell': json['canSell'],
|
|
91
94
|
'settings': (0, WithSettingsInner_1.WithSettingsInnerFromJSON)(json['settings']),
|
|
92
95
|
'notifications': (json['notifications'].map(AccountNotificationDto_1.AccountNotificationDtoFromJSON)),
|
|
93
96
|
'enabledFeatures': json['enabledFeatures'],
|
|
@@ -110,6 +113,7 @@ function IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFla
|
|
|
110
113
|
'payout': (0, AccountPayoutDto_1.AccountPayoutDtoToJSON)(value['payout']),
|
|
111
114
|
'billingInformation': (0, BillingInformationDto_1.BillingInformationDtoToJSON)(value['billingInformation']),
|
|
112
115
|
'leaseToOwnKickbackPercentage': value['leaseToOwnKickbackPercentage'],
|
|
116
|
+
'canSell': value['canSell'],
|
|
113
117
|
'settings': (0, WithSettingsInner_1.WithSettingsInnerToJSON)(value['settings']),
|
|
114
118
|
'notifications': (value['notifications'].map(AccountNotificationDto_1.AccountNotificationDtoToJSON)),
|
|
115
119
|
'enabledFeatures': value['enabledFeatures'],
|
|
@@ -69,6 +69,12 @@ export interface PrivateAccountGetMeResponse {
|
|
|
69
69
|
* @memberof PrivateAccountGetMeResponse
|
|
70
70
|
*/
|
|
71
71
|
leaseToOwnKickbackPercentage: number;
|
|
72
|
+
/**
|
|
73
|
+
*
|
|
74
|
+
* @type {boolean}
|
|
75
|
+
* @memberof PrivateAccountGetMeResponse
|
|
76
|
+
*/
|
|
77
|
+
canSell: boolean;
|
|
72
78
|
/**
|
|
73
79
|
*
|
|
74
80
|
* @type {WithSettingsInner}
|
|
@@ -64,6 +64,8 @@ function instanceOfPrivateAccountGetMeResponse(value) {
|
|
|
64
64
|
return false;
|
|
65
65
|
if (!('leaseToOwnKickbackPercentage' in value) || value['leaseToOwnKickbackPercentage'] === undefined)
|
|
66
66
|
return false;
|
|
67
|
+
if (!('canSell' in value) || value['canSell'] === undefined)
|
|
68
|
+
return false;
|
|
67
69
|
if (!('settings' in value) || value['settings'] === undefined)
|
|
68
70
|
return false;
|
|
69
71
|
if (!('notifications' in value) || value['notifications'] === undefined)
|
|
@@ -90,6 +92,7 @@ function PrivateAccountGetMeResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
90
92
|
'payout': (0, AccountPayoutDto_1.AccountPayoutDtoFromJSON)(json['payout']),
|
|
91
93
|
'billingInformation': (0, BillingInformationDto_1.BillingInformationDtoFromJSON)(json['billingInformation']),
|
|
92
94
|
'leaseToOwnKickbackPercentage': json['leaseToOwnKickbackPercentage'],
|
|
95
|
+
'canSell': json['canSell'],
|
|
93
96
|
'settings': (0, WithSettingsInner_1.WithSettingsInnerFromJSON)(json['settings']),
|
|
94
97
|
'notifications': (json['notifications'].map(AccountNotificationDto_1.AccountNotificationDtoFromJSON)),
|
|
95
98
|
'enabledFeatures': json['enabledFeatures'],
|
|
@@ -113,6 +116,7 @@ function PrivateAccountGetMeResponseToJSONTyped(value, ignoreDiscriminator) {
|
|
|
113
116
|
'payout': (0, AccountPayoutDto_1.AccountPayoutDtoToJSON)(value['payout']),
|
|
114
117
|
'billingInformation': (0, BillingInformationDto_1.BillingInformationDtoToJSON)(value['billingInformation']),
|
|
115
118
|
'leaseToOwnKickbackPercentage': value['leaseToOwnKickbackPercentage'],
|
|
119
|
+
'canSell': value['canSell'],
|
|
116
120
|
'settings': (0, WithSettingsInner_1.WithSettingsInnerToJSON)(value['settings']),
|
|
117
121
|
'notifications': (value['notifications'].map(AccountNotificationDto_1.AccountNotificationDtoToJSON)),
|
|
118
122
|
'enabledFeatures': value['enabledFeatures'],
|
|
@@ -31,6 +31,12 @@ export interface SellerAuctionListItemDto {
|
|
|
31
31
|
* @memberof SellerAuctionListItemDto
|
|
32
32
|
*/
|
|
33
33
|
status: SellerAuctionListItemDtoStatusEnum;
|
|
34
|
+
/**
|
|
35
|
+
* Initial auction minimum bid
|
|
36
|
+
* @type {MoneyDto}
|
|
37
|
+
* @memberof SellerAuctionListItemDto
|
|
38
|
+
*/
|
|
39
|
+
initialMinimumBid: MoneyDto;
|
|
34
40
|
/**
|
|
35
41
|
* Auction minimum bid
|
|
36
42
|
* @type {MoneyDto}
|
|
@@ -41,6 +41,8 @@ function instanceOfSellerAuctionListItemDto(value) {
|
|
|
41
41
|
return false;
|
|
42
42
|
if (!('status' in value) || value['status'] === undefined)
|
|
43
43
|
return false;
|
|
44
|
+
if (!('initialMinimumBid' in value) || value['initialMinimumBid'] === undefined)
|
|
45
|
+
return false;
|
|
44
46
|
if (!('minimumBid' in value) || value['minimumBid'] === undefined)
|
|
45
47
|
return false;
|
|
46
48
|
if (!('reservePrice' in value) || value['reservePrice'] === undefined)
|
|
@@ -77,6 +79,7 @@ function SellerAuctionListItemDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
77
79
|
return {
|
|
78
80
|
'id': json['id'],
|
|
79
81
|
'status': json['status'],
|
|
82
|
+
'initialMinimumBid': (0, MoneyDto_1.MoneyDtoFromJSON)(json['initialMinimumBid']),
|
|
80
83
|
'minimumBid': (0, MoneyDto_1.MoneyDtoFromJSON)(json['minimumBid']),
|
|
81
84
|
'reservePrice': (0, MoneyDto_1.MoneyDtoFromJSON)(json['reservePrice']),
|
|
82
85
|
'highestBid': (0, MoneyDto_1.MoneyDtoFromJSON)(json['highestBid']),
|
|
@@ -102,6 +105,7 @@ function SellerAuctionListItemDtoToJSONTyped(value, ignoreDiscriminator) {
|
|
|
102
105
|
return {
|
|
103
106
|
'id': value['id'],
|
|
104
107
|
'status': value['status'],
|
|
108
|
+
'initialMinimumBid': (0, MoneyDto_1.MoneyDtoToJSON)(value['initialMinimumBid']),
|
|
105
109
|
'minimumBid': (0, MoneyDto_1.MoneyDtoToJSON)(value['minimumBid']),
|
|
106
110
|
'reservePrice': (0, MoneyDto_1.MoneyDtoToJSON)(value['reservePrice']),
|
|
107
111
|
'highestBid': (0, MoneyDto_1.MoneyDtoToJSON)(value['highestBid']),
|
|
@@ -139,6 +139,8 @@ export declare const UserNotificationDtoTypeEnum: {
|
|
|
139
139
|
readonly AUCTION_BUYER_OUTBID: "auction.buyer_outbid";
|
|
140
140
|
readonly AUCTION_BID_CREATED_FOR_BIDDER: "auction.bid_created_for_bidder";
|
|
141
141
|
readonly AUCTION_WINNER_CONTINUE_ORDER_EMAIL: "auction.winner_continue_order_email";
|
|
142
|
+
readonly AUCTION_FINISHED_WITH_WINNER_SELLER_NOTIFICATION: "auction.finished_with_winner_seller_notification";
|
|
143
|
+
readonly AUCTION_FINISHED_WITHOUT_WINNER_SELLER_NOTIFICATION: "auction.finished_without_winner_seller_notification";
|
|
142
144
|
};
|
|
143
145
|
export type UserNotificationDtoTypeEnum = typeof UserNotificationDtoTypeEnum[keyof typeof UserNotificationDtoTypeEnum];
|
|
144
146
|
/**
|
|
@@ -99,7 +99,9 @@ exports.UserNotificationDtoTypeEnum = {
|
|
|
99
99
|
TASKS_REMINDER_ORDER: 'tasks.reminder.order',
|
|
100
100
|
AUCTION_BUYER_OUTBID: 'auction.buyer_outbid',
|
|
101
101
|
AUCTION_BID_CREATED_FOR_BIDDER: 'auction.bid_created_for_bidder',
|
|
102
|
-
AUCTION_WINNER_CONTINUE_ORDER_EMAIL: 'auction.winner_continue_order_email'
|
|
102
|
+
AUCTION_WINNER_CONTINUE_ORDER_EMAIL: 'auction.winner_continue_order_email',
|
|
103
|
+
AUCTION_FINISHED_WITH_WINNER_SELLER_NOTIFICATION: 'auction.finished_with_winner_seller_notification',
|
|
104
|
+
AUCTION_FINISHED_WITHOUT_WINNER_SELLER_NOTIFICATION: 'auction.finished_without_winner_seller_notification'
|
|
103
105
|
};
|
|
104
106
|
/**
|
|
105
107
|
* Check if a given object implements the UserNotificationDto interface.
|
|
@@ -132,6 +132,8 @@ export declare const UserNotificationListItemDtoTypeEnum: {
|
|
|
132
132
|
readonly AUCTION_BUYER_OUTBID: "auction.buyer_outbid";
|
|
133
133
|
readonly AUCTION_BID_CREATED_FOR_BIDDER: "auction.bid_created_for_bidder";
|
|
134
134
|
readonly AUCTION_WINNER_CONTINUE_ORDER_EMAIL: "auction.winner_continue_order_email";
|
|
135
|
+
readonly AUCTION_FINISHED_WITH_WINNER_SELLER_NOTIFICATION: "auction.finished_with_winner_seller_notification";
|
|
136
|
+
readonly AUCTION_FINISHED_WITHOUT_WINNER_SELLER_NOTIFICATION: "auction.finished_without_winner_seller_notification";
|
|
135
137
|
};
|
|
136
138
|
export type UserNotificationListItemDtoTypeEnum = typeof UserNotificationListItemDtoTypeEnum[keyof typeof UserNotificationListItemDtoTypeEnum];
|
|
137
139
|
/**
|
|
@@ -98,7 +98,9 @@ exports.UserNotificationListItemDtoTypeEnum = {
|
|
|
98
98
|
TASKS_REMINDER_ORDER: 'tasks.reminder.order',
|
|
99
99
|
AUCTION_BUYER_OUTBID: 'auction.buyer_outbid',
|
|
100
100
|
AUCTION_BID_CREATED_FOR_BIDDER: 'auction.bid_created_for_bidder',
|
|
101
|
-
AUCTION_WINNER_CONTINUE_ORDER_EMAIL: 'auction.winner_continue_order_email'
|
|
101
|
+
AUCTION_WINNER_CONTINUE_ORDER_EMAIL: 'auction.winner_continue_order_email',
|
|
102
|
+
AUCTION_FINISHED_WITH_WINNER_SELLER_NOTIFICATION: 'auction.finished_with_winner_seller_notification',
|
|
103
|
+
AUCTION_FINISHED_WITHOUT_WINNER_SELLER_NOTIFICATION: 'auction.finished_without_winner_seller_notification'
|
|
102
104
|
};
|
|
103
105
|
/**
|
|
104
106
|
* Check if a given object implements the UserNotificationListItemDto interface.
|
package/package.json
CHANGED
package/src/models/AccountDto.ts
CHANGED
|
@@ -96,6 +96,12 @@ export interface AccountDto {
|
|
|
96
96
|
* @memberof AccountDto
|
|
97
97
|
*/
|
|
98
98
|
leaseToOwnKickbackPercentage: number;
|
|
99
|
+
/**
|
|
100
|
+
*
|
|
101
|
+
* @type {boolean}
|
|
102
|
+
* @memberof AccountDto
|
|
103
|
+
*/
|
|
104
|
+
canSell: boolean;
|
|
99
105
|
}
|
|
100
106
|
|
|
101
107
|
/**
|
|
@@ -110,6 +116,7 @@ export function instanceOfAccountDto(value: object): value is AccountDto {
|
|
|
110
116
|
if (!('payout' in value) || value['payout'] === undefined) return false;
|
|
111
117
|
if (!('billingInformation' in value) || value['billingInformation'] === undefined) return false;
|
|
112
118
|
if (!('leaseToOwnKickbackPercentage' in value) || value['leaseToOwnKickbackPercentage'] === undefined) return false;
|
|
119
|
+
if (!('canSell' in value) || value['canSell'] === undefined) return false;
|
|
113
120
|
return true;
|
|
114
121
|
}
|
|
115
122
|
|
|
@@ -131,6 +138,7 @@ export function AccountDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean)
|
|
|
131
138
|
'payout': AccountPayoutDtoFromJSON(json['payout']),
|
|
132
139
|
'billingInformation': BillingInformationDtoFromJSON(json['billingInformation']),
|
|
133
140
|
'leaseToOwnKickbackPercentage': json['leaseToOwnKickbackPercentage'],
|
|
141
|
+
'canSell': json['canSell'],
|
|
134
142
|
};
|
|
135
143
|
}
|
|
136
144
|
|
|
@@ -153,6 +161,7 @@ export function AccountDtoToJSONTyped(value?: AccountDto | null, ignoreDiscrimin
|
|
|
153
161
|
'payout': AccountPayoutDtoToJSON(value['payout']),
|
|
154
162
|
'billingInformation': BillingInformationDtoToJSON(value['billingInformation']),
|
|
155
163
|
'leaseToOwnKickbackPercentage': value['leaseToOwnKickbackPercentage'],
|
|
164
|
+
'canSell': value['canSell'],
|
|
156
165
|
};
|
|
157
166
|
}
|
|
158
167
|
|
|
@@ -60,6 +60,12 @@ export interface AuctionListItemDto {
|
|
|
60
60
|
* @memberof AuctionListItemDto
|
|
61
61
|
*/
|
|
62
62
|
status: AuctionListItemDtoStatusEnum;
|
|
63
|
+
/**
|
|
64
|
+
* Initital auction minimum bid
|
|
65
|
+
* @type {MoneyDto}
|
|
66
|
+
* @memberof AuctionListItemDto
|
|
67
|
+
*/
|
|
68
|
+
initialMinimumBid: MoneyDto;
|
|
63
69
|
/**
|
|
64
70
|
* Auction minimum bid
|
|
65
71
|
* @type {MoneyDto}
|
|
@@ -126,6 +132,12 @@ export interface AuctionListItemDto {
|
|
|
126
132
|
* @memberof AuctionListItemDto
|
|
127
133
|
*/
|
|
128
134
|
bids: Array<AuctionBidDto>;
|
|
135
|
+
/**
|
|
136
|
+
* Account payment ID
|
|
137
|
+
* @type {string}
|
|
138
|
+
* @memberof AuctionListItemDto
|
|
139
|
+
*/
|
|
140
|
+
accountPaymentId: string | null;
|
|
129
141
|
}
|
|
130
142
|
|
|
131
143
|
|
|
@@ -148,6 +160,7 @@ export type AuctionListItemDtoStatusEnum = typeof AuctionListItemDtoStatusEnum[k
|
|
|
148
160
|
export function instanceOfAuctionListItemDto(value: object): value is AuctionListItemDto {
|
|
149
161
|
if (!('id' in value) || value['id'] === undefined) return false;
|
|
150
162
|
if (!('status' in value) || value['status'] === undefined) return false;
|
|
163
|
+
if (!('initialMinimumBid' in value) || value['initialMinimumBid'] === undefined) return false;
|
|
151
164
|
if (!('minimumBid' in value) || value['minimumBid'] === undefined) return false;
|
|
152
165
|
if (!('reservePrice' in value) || value['reservePrice'] === undefined) return false;
|
|
153
166
|
if (!('highestBid' in value) || value['highestBid'] === undefined) return false;
|
|
@@ -159,6 +172,7 @@ export function instanceOfAuctionListItemDto(value: object): value is AuctionLis
|
|
|
159
172
|
if (!('sellerAccount' in value) || value['sellerAccount'] === undefined) return false;
|
|
160
173
|
if (!('numberOfBids' in value) || value['numberOfBids'] === undefined) return false;
|
|
161
174
|
if (!('bids' in value) || value['bids'] === undefined) return false;
|
|
175
|
+
if (!('accountPaymentId' in value) || value['accountPaymentId'] === undefined) return false;
|
|
162
176
|
return true;
|
|
163
177
|
}
|
|
164
178
|
|
|
@@ -174,6 +188,7 @@ export function AuctionListItemDtoFromJSONTyped(json: any, ignoreDiscriminator:
|
|
|
174
188
|
|
|
175
189
|
'id': json['id'],
|
|
176
190
|
'status': json['status'],
|
|
191
|
+
'initialMinimumBid': MoneyDtoFromJSON(json['initialMinimumBid']),
|
|
177
192
|
'minimumBid': MoneyDtoFromJSON(json['minimumBid']),
|
|
178
193
|
'reservePrice': MoneyDtoFromJSON(json['reservePrice']),
|
|
179
194
|
'highestBid': MoneyDtoFromJSON(json['highestBid']),
|
|
@@ -185,6 +200,7 @@ export function AuctionListItemDtoFromJSONTyped(json: any, ignoreDiscriminator:
|
|
|
185
200
|
'sellerAccount': AuctionListItemDtoSellerAccountFromJSON(json['sellerAccount']),
|
|
186
201
|
'numberOfBids': json['numberOfBids'],
|
|
187
202
|
'bids': ((json['bids'] as Array<any>).map(AuctionBidDtoFromJSON)),
|
|
203
|
+
'accountPaymentId': json['accountPaymentId'],
|
|
188
204
|
};
|
|
189
205
|
}
|
|
190
206
|
|
|
@@ -201,6 +217,7 @@ export function AuctionListItemDtoToJSONTyped(value?: AuctionListItemDto | null,
|
|
|
201
217
|
|
|
202
218
|
'id': value['id'],
|
|
203
219
|
'status': value['status'],
|
|
220
|
+
'initialMinimumBid': MoneyDtoToJSON(value['initialMinimumBid']),
|
|
204
221
|
'minimumBid': MoneyDtoToJSON(value['minimumBid']),
|
|
205
222
|
'reservePrice': MoneyDtoToJSON(value['reservePrice']),
|
|
206
223
|
'highestBid': MoneyDtoToJSON(value['highestBid']),
|
|
@@ -212,6 +229,7 @@ export function AuctionListItemDtoToJSONTyped(value?: AuctionListItemDto | null,
|
|
|
212
229
|
'sellerAccount': AuctionListItemDtoSellerAccountToJSON(value['sellerAccount']),
|
|
213
230
|
'numberOfBids': value['numberOfBids'],
|
|
214
231
|
'bids': ((value['bids'] as Array<any>).map(AuctionBidDtoToJSON)),
|
|
232
|
+
'accountPaymentId': value['accountPaymentId'],
|
|
215
233
|
};
|
|
216
234
|
}
|
|
217
235
|
|
|
@@ -151,7 +151,9 @@ export const BuyerNotificationDtoTypeEnum = {
|
|
|
151
151
|
TASKS_REMINDER_ORDER: 'tasks.reminder.order',
|
|
152
152
|
AUCTION_BUYER_OUTBID: 'auction.buyer_outbid',
|
|
153
153
|
AUCTION_BID_CREATED_FOR_BIDDER: 'auction.bid_created_for_bidder',
|
|
154
|
-
AUCTION_WINNER_CONTINUE_ORDER_EMAIL: 'auction.winner_continue_order_email'
|
|
154
|
+
AUCTION_WINNER_CONTINUE_ORDER_EMAIL: 'auction.winner_continue_order_email',
|
|
155
|
+
AUCTION_FINISHED_WITH_WINNER_SELLER_NOTIFICATION: 'auction.finished_with_winner_seller_notification',
|
|
156
|
+
AUCTION_FINISHED_WITHOUT_WINNER_SELLER_NOTIFICATION: 'auction.finished_without_winner_seller_notification'
|
|
155
157
|
} as const;
|
|
156
158
|
export type BuyerNotificationDtoTypeEnum = typeof BuyerNotificationDtoTypeEnum[keyof typeof BuyerNotificationDtoTypeEnum];
|
|
157
159
|
|
|
@@ -137,7 +137,9 @@ export const BuyerNotificationListItemDtoTypeEnum = {
|
|
|
137
137
|
TASKS_REMINDER_ORDER: 'tasks.reminder.order',
|
|
138
138
|
AUCTION_BUYER_OUTBID: 'auction.buyer_outbid',
|
|
139
139
|
AUCTION_BID_CREATED_FOR_BIDDER: 'auction.bid_created_for_bidder',
|
|
140
|
-
AUCTION_WINNER_CONTINUE_ORDER_EMAIL: 'auction.winner_continue_order_email'
|
|
140
|
+
AUCTION_WINNER_CONTINUE_ORDER_EMAIL: 'auction.winner_continue_order_email',
|
|
141
|
+
AUCTION_FINISHED_WITH_WINNER_SELLER_NOTIFICATION: 'auction.finished_with_winner_seller_notification',
|
|
142
|
+
AUCTION_FINISHED_WITHOUT_WINNER_SELLER_NOTIFICATION: 'auction.finished_without_winner_seller_notification'
|
|
141
143
|
} as const;
|
|
142
144
|
export type BuyerNotificationListItemDtoTypeEnum = typeof BuyerNotificationListItemDtoTypeEnum[keyof typeof BuyerNotificationListItemDtoTypeEnum];
|
|
143
145
|
|
package/src/models/IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto.ts
CHANGED
|
@@ -110,6 +110,12 @@ export interface IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFe
|
|
|
110
110
|
* @memberof IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto
|
|
111
111
|
*/
|
|
112
112
|
leaseToOwnKickbackPercentage: number;
|
|
113
|
+
/**
|
|
114
|
+
*
|
|
115
|
+
* @type {boolean}
|
|
116
|
+
* @memberof IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto
|
|
117
|
+
*/
|
|
118
|
+
canSell: boolean;
|
|
113
119
|
/**
|
|
114
120
|
*
|
|
115
121
|
* @type {WithSettingsInner}
|
|
@@ -165,6 +171,7 @@ export function instanceOfIntersectionAccountDtoWithSettingsDtoWithNotifications
|
|
|
165
171
|
if (!('payout' in value) || value['payout'] === undefined) return false;
|
|
166
172
|
if (!('billingInformation' in value) || value['billingInformation'] === undefined) return false;
|
|
167
173
|
if (!('leaseToOwnKickbackPercentage' in value) || value['leaseToOwnKickbackPercentage'] === undefined) return false;
|
|
174
|
+
if (!('canSell' in value) || value['canSell'] === undefined) return false;
|
|
168
175
|
if (!('settings' in value) || value['settings'] === undefined) return false;
|
|
169
176
|
if (!('notifications' in value) || value['notifications'] === undefined) return false;
|
|
170
177
|
if (!('enabledFeatures' in value) || value['enabledFeatures'] === undefined) return false;
|
|
@@ -189,6 +196,7 @@ export function IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFea
|
|
|
189
196
|
'payout': AccountPayoutDtoFromJSON(json['payout']),
|
|
190
197
|
'billingInformation': BillingInformationDtoFromJSON(json['billingInformation']),
|
|
191
198
|
'leaseToOwnKickbackPercentage': json['leaseToOwnKickbackPercentage'],
|
|
199
|
+
'canSell': json['canSell'],
|
|
192
200
|
'settings': WithSettingsInnerFromJSON(json['settings']),
|
|
193
201
|
'notifications': ((json['notifications'] as Array<any>).map(AccountNotificationDtoFromJSON)),
|
|
194
202
|
'enabledFeatures': json['enabledFeatures'],
|
|
@@ -214,6 +222,7 @@ export function IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFea
|
|
|
214
222
|
'payout': AccountPayoutDtoToJSON(value['payout']),
|
|
215
223
|
'billingInformation': BillingInformationDtoToJSON(value['billingInformation']),
|
|
216
224
|
'leaseToOwnKickbackPercentage': value['leaseToOwnKickbackPercentage'],
|
|
225
|
+
'canSell': value['canSell'],
|
|
217
226
|
'settings': WithSettingsInnerToJSON(value['settings']),
|
|
218
227
|
'notifications': ((value['notifications'] as Array<any>).map(AccountNotificationDtoToJSON)),
|
|
219
228
|
'enabledFeatures': value['enabledFeatures'],
|
|
@@ -110,6 +110,12 @@ export interface PrivateAccountGetMeResponse {
|
|
|
110
110
|
* @memberof PrivateAccountGetMeResponse
|
|
111
111
|
*/
|
|
112
112
|
leaseToOwnKickbackPercentage: number;
|
|
113
|
+
/**
|
|
114
|
+
*
|
|
115
|
+
* @type {boolean}
|
|
116
|
+
* @memberof PrivateAccountGetMeResponse
|
|
117
|
+
*/
|
|
118
|
+
canSell: boolean;
|
|
113
119
|
/**
|
|
114
120
|
*
|
|
115
121
|
* @type {WithSettingsInner}
|
|
@@ -171,6 +177,7 @@ export function instanceOfPrivateAccountGetMeResponse(value: object): value is P
|
|
|
171
177
|
if (!('payout' in value) || value['payout'] === undefined) return false;
|
|
172
178
|
if (!('billingInformation' in value) || value['billingInformation'] === undefined) return false;
|
|
173
179
|
if (!('leaseToOwnKickbackPercentage' in value) || value['leaseToOwnKickbackPercentage'] === undefined) return false;
|
|
180
|
+
if (!('canSell' in value) || value['canSell'] === undefined) return false;
|
|
174
181
|
if (!('settings' in value) || value['settings'] === undefined) return false;
|
|
175
182
|
if (!('notifications' in value) || value['notifications'] === undefined) return false;
|
|
176
183
|
if (!('enabledFeatures' in value) || value['enabledFeatures'] === undefined) return false;
|
|
@@ -196,6 +203,7 @@ export function PrivateAccountGetMeResponseFromJSONTyped(json: any, ignoreDiscri
|
|
|
196
203
|
'payout': AccountPayoutDtoFromJSON(json['payout']),
|
|
197
204
|
'billingInformation': BillingInformationDtoFromJSON(json['billingInformation']),
|
|
198
205
|
'leaseToOwnKickbackPercentage': json['leaseToOwnKickbackPercentage'],
|
|
206
|
+
'canSell': json['canSell'],
|
|
199
207
|
'settings': WithSettingsInnerFromJSON(json['settings']),
|
|
200
208
|
'notifications': ((json['notifications'] as Array<any>).map(AccountNotificationDtoFromJSON)),
|
|
201
209
|
'enabledFeatures': json['enabledFeatures'],
|
|
@@ -222,6 +230,7 @@ export function PrivateAccountGetMeResponseToJSONTyped(value?: PrivateAccountGet
|
|
|
222
230
|
'payout': AccountPayoutDtoToJSON(value['payout']),
|
|
223
231
|
'billingInformation': BillingInformationDtoToJSON(value['billingInformation']),
|
|
224
232
|
'leaseToOwnKickbackPercentage': value['leaseToOwnKickbackPercentage'],
|
|
233
|
+
'canSell': value['canSell'],
|
|
225
234
|
'settings': WithSettingsInnerToJSON(value['settings']),
|
|
226
235
|
'notifications': ((value['notifications'] as Array<any>).map(AccountNotificationDtoToJSON)),
|
|
227
236
|
'enabledFeatures': value['enabledFeatures'],
|
|
@@ -60,6 +60,12 @@ export interface SellerAuctionListItemDto {
|
|
|
60
60
|
* @memberof SellerAuctionListItemDto
|
|
61
61
|
*/
|
|
62
62
|
status: SellerAuctionListItemDtoStatusEnum;
|
|
63
|
+
/**
|
|
64
|
+
* Initial auction minimum bid
|
|
65
|
+
* @type {MoneyDto}
|
|
66
|
+
* @memberof SellerAuctionListItemDto
|
|
67
|
+
*/
|
|
68
|
+
initialMinimumBid: MoneyDto;
|
|
63
69
|
/**
|
|
64
70
|
* Auction minimum bid
|
|
65
71
|
* @type {MoneyDto}
|
|
@@ -154,6 +160,7 @@ export type SellerAuctionListItemDtoStatusEnum = typeof SellerAuctionListItemDto
|
|
|
154
160
|
export function instanceOfSellerAuctionListItemDto(value: object): value is SellerAuctionListItemDto {
|
|
155
161
|
if (!('id' in value) || value['id'] === undefined) return false;
|
|
156
162
|
if (!('status' in value) || value['status'] === undefined) return false;
|
|
163
|
+
if (!('initialMinimumBid' in value) || value['initialMinimumBid'] === undefined) return false;
|
|
157
164
|
if (!('minimumBid' in value) || value['minimumBid'] === undefined) return false;
|
|
158
165
|
if (!('reservePrice' in value) || value['reservePrice'] === undefined) return false;
|
|
159
166
|
if (!('highestBid' in value) || value['highestBid'] === undefined) return false;
|
|
@@ -181,6 +188,7 @@ export function SellerAuctionListItemDtoFromJSONTyped(json: any, ignoreDiscrimin
|
|
|
181
188
|
|
|
182
189
|
'id': json['id'],
|
|
183
190
|
'status': json['status'],
|
|
191
|
+
'initialMinimumBid': MoneyDtoFromJSON(json['initialMinimumBid']),
|
|
184
192
|
'minimumBid': MoneyDtoFromJSON(json['minimumBid']),
|
|
185
193
|
'reservePrice': MoneyDtoFromJSON(json['reservePrice']),
|
|
186
194
|
'highestBid': MoneyDtoFromJSON(json['highestBid']),
|
|
@@ -209,6 +217,7 @@ export function SellerAuctionListItemDtoToJSONTyped(value?: SellerAuctionListIte
|
|
|
209
217
|
|
|
210
218
|
'id': value['id'],
|
|
211
219
|
'status': value['status'],
|
|
220
|
+
'initialMinimumBid': MoneyDtoToJSON(value['initialMinimumBid']),
|
|
212
221
|
'minimumBid': MoneyDtoToJSON(value['minimumBid']),
|
|
213
222
|
'reservePrice': MoneyDtoToJSON(value['reservePrice']),
|
|
214
223
|
'highestBid': MoneyDtoToJSON(value['highestBid']),
|
|
@@ -151,7 +151,9 @@ export const UserNotificationDtoTypeEnum = {
|
|
|
151
151
|
TASKS_REMINDER_ORDER: 'tasks.reminder.order',
|
|
152
152
|
AUCTION_BUYER_OUTBID: 'auction.buyer_outbid',
|
|
153
153
|
AUCTION_BID_CREATED_FOR_BIDDER: 'auction.bid_created_for_bidder',
|
|
154
|
-
AUCTION_WINNER_CONTINUE_ORDER_EMAIL: 'auction.winner_continue_order_email'
|
|
154
|
+
AUCTION_WINNER_CONTINUE_ORDER_EMAIL: 'auction.winner_continue_order_email',
|
|
155
|
+
AUCTION_FINISHED_WITH_WINNER_SELLER_NOTIFICATION: 'auction.finished_with_winner_seller_notification',
|
|
156
|
+
AUCTION_FINISHED_WITHOUT_WINNER_SELLER_NOTIFICATION: 'auction.finished_without_winner_seller_notification'
|
|
155
157
|
} as const;
|
|
156
158
|
export type UserNotificationDtoTypeEnum = typeof UserNotificationDtoTypeEnum[keyof typeof UserNotificationDtoTypeEnum];
|
|
157
159
|
|
|
@@ -137,7 +137,9 @@ export const UserNotificationListItemDtoTypeEnum = {
|
|
|
137
137
|
TASKS_REMINDER_ORDER: 'tasks.reminder.order',
|
|
138
138
|
AUCTION_BUYER_OUTBID: 'auction.buyer_outbid',
|
|
139
139
|
AUCTION_BID_CREATED_FOR_BIDDER: 'auction.bid_created_for_bidder',
|
|
140
|
-
AUCTION_WINNER_CONTINUE_ORDER_EMAIL: 'auction.winner_continue_order_email'
|
|
140
|
+
AUCTION_WINNER_CONTINUE_ORDER_EMAIL: 'auction.winner_continue_order_email',
|
|
141
|
+
AUCTION_FINISHED_WITH_WINNER_SELLER_NOTIFICATION: 'auction.finished_with_winner_seller_notification',
|
|
142
|
+
AUCTION_FINISHED_WITHOUT_WINNER_SELLER_NOTIFICATION: 'auction.finished_without_winner_seller_notification'
|
|
141
143
|
} as const;
|
|
142
144
|
export type UserNotificationListItemDtoTypeEnum = typeof UserNotificationListItemDtoTypeEnum[keyof typeof UserNotificationListItemDtoTypeEnum];
|
|
143
145
|
|