controlresell 2.2.9 → 2.2.11
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/package.json +1 -1
- package/src/com/controlresell/models/application/RabbitMQRoutingKey.d.ts +1 -1
- package/src/com/controlresell/models/application/RabbitMQRoutingKey.js +1 -1
- package/src/com/controlresell/models/application/RabbitMQRoutingKey.ts +1 -1
- package/src/com/controlresell/models/filters/SavedFilters.d.ts +5 -5
- package/src/com/controlresell/models/filters/SavedFiltersPayload.d.ts +5 -5
- package/src/com/controlresell/models/items/CreatedItems.d.ts +56 -7
- package/src/com/controlresell/models/items/Item.d.ts +44 -5
- package/src/com/controlresell/models/items/ItemFiltersContext.d.ts +3 -3
- package/src/com/controlresell/models/items/ItemsWithFilters.d.ts +56 -7
- package/src/com/controlresell/models/items/UpdatedItem.d.ts +56 -7
- package/src/com/controlresell/models/items/history/CreateItemHistoryPayload.d.ts +32 -3
- package/src/com/controlresell/models/items/history/ItemHistory.d.ts +32 -3
- package/src/com/controlresell/models/items/history/ItemHistoryDecodedPayload.d.ts +19 -0
- package/src/com/controlresell/models/items/history/ItemHistoryDecodedPayload.js +5 -0
- package/src/com/controlresell/models/items/history/ItemHistoryDecodedPayload.ts +5 -0
- package/src/com/controlresell/models/items/history/ItemHistoryType.d.ts +1 -1
- package/src/com/controlresell/models/items/history/ItemHistoryType.js +1 -1
- package/src/com/controlresell/models/items/history/ItemHistoryType.ts +1 -1
- package/src/com/controlresell/models/items/history/ItemHistoryTypeWithCount.d.ts +3 -3
- package/src/com/controlresell/models/items/history/data/ItemHistoryRepublishing.d.ts +9 -0
- package/src/com/controlresell/models/items/history/data/ItemHistoryRepublishing.js +8 -0
- package/src/com/controlresell/models/items/history/data/ItemHistoryRepublishing.ts +7 -0
- package/src/com/controlresell/models/items/platforms/ItemOnPlatformsRequest.d.ts +3 -0
- package/src/com/controlresell/models/items/platforms/ItemOnPlatformsRequest.js +1 -0
- package/src/com/controlresell/models/items/platforms/ItemOnPlatformsRequest.ts +1 -0
- package/src/com/controlresell/models/items/platforms/ItemOnPlatformsRequestWithItem.d.ts +8 -0
- package/src/com/controlresell/models/items/platforms/ItemOnPlatformsRequestWithItem.js +2 -1
- package/src/com/controlresell/models/items/platforms/ItemOnPlatformsRequestWithItem.ts +2 -1
- package/src/com/controlresell/models/items/platforms/PlatformInfo.d.ts +3 -0
- package/src/com/controlresell/models/items/platforms/PlatformInfo.js +2 -1
- package/src/com/controlresell/models/items/platforms/PlatformInfo.ts +2 -1
- package/src/com/controlresell/models/items/platforms/RepublishRequestWithItem.d.ts +131 -0
- package/src/com/controlresell/models/items/platforms/RepublishRequestWithItem.js +11 -0
- package/src/com/controlresell/models/items/platforms/RepublishRequestWithItem.ts +10 -0
- package/src/com/controlresell/models/platforms/orders/items/OrderWithItems.d.ts +56 -7
- package/src/com/controlresell/models/platforms/transactions/items/TransactionWithItems.d.ts +56 -7
- package/src/com/controlresell/models/preferences/PreferenceFilter.d.ts +56 -7
- package/src/com/controlresell/models/preferences/PreferenceWithChildren.d.ts +2163 -0
- package/src/com/controlresell/models/preferences/PreferenceWithChildren.js +8 -0
- package/src/com/controlresell/models/preferences/PreferenceWithChildren.ts +8 -0
- package/src/com/controlresell/models/preferences/payloads/vision/PreferenceVisionPayload.js +1 -1
- package/src/com/controlresell/models/preferences/payloads/vision/PreferenceVisionPayload.ts +1 -1
- package/src/index.d.ts +3 -0
- package/src/index.js +9 -3
- package/src/index.ts +3 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PreferenceWithChildrenSchema = void 0;
|
|
4
|
+
const zod_1 = require("zod");
|
|
5
|
+
const Preference_1 = require("./Preference");
|
|
6
|
+
exports.PreferenceWithChildrenSchema = Preference_1.PreferenceSchema.extend({
|
|
7
|
+
children: zod_1.z.array(Preference_1.PreferenceSchema).nullish(),
|
|
8
|
+
});
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import {z} from "zod"
|
|
2
|
+
|
|
3
|
+
import {PreferenceSchema} from "./Preference"
|
|
4
|
+
|
|
5
|
+
export const PreferenceWithChildrenSchema = PreferenceSchema.extend({
|
|
6
|
+
children: z.array(PreferenceSchema).nullish(),
|
|
7
|
+
})
|
|
8
|
+
export type PreferenceWithChildren = z.infer<typeof PreferenceWithChildrenSchema>
|
|
@@ -13,7 +13,7 @@ exports.PreferenceVisionPayloadSchema = zod_1.z.object({
|
|
|
13
13
|
targetHeight: zod_1.z.number().int().nullish(),
|
|
14
14
|
newBackgroundColor: zod_1.z.string().nullish(),
|
|
15
15
|
newBackgroundUrl: zod_1.z.string().nullish(),
|
|
16
|
-
rotationAngle: zod_1.z.number().
|
|
16
|
+
rotationAngle: zod_1.z.number().nullish(),
|
|
17
17
|
borderSize: zod_1.z.number().int().nullish(),
|
|
18
18
|
borderColor: zod_1.z.string().nullish()
|
|
19
19
|
});
|
|
@@ -11,7 +11,7 @@ export const PreferenceVisionPayloadSchema = z.object({
|
|
|
11
11
|
targetHeight: z.number().int().nullish(),
|
|
12
12
|
newBackgroundColor: z.string().nullish(),
|
|
13
13
|
newBackgroundUrl: z.string().nullish(),
|
|
14
|
-
rotationAngle: z.number().
|
|
14
|
+
rotationAngle: z.number().nullish(),
|
|
15
15
|
borderSize: z.number().int().nullish(),
|
|
16
16
|
borderColor: z.string().nullish()
|
|
17
17
|
})
|
package/src/index.d.ts
CHANGED
|
@@ -54,6 +54,7 @@ export { ItemHistoryTypeWithCountSchema, ItemHistoryTypeWithCount } from "./com/
|
|
|
54
54
|
export { ItemHistoryBuyerPaidPayloadSchema, ItemHistoryBuyerPaidPayload } from "./com/controlresell/models/items/history/data/ItemHistoryBuyerPaidPayload";
|
|
55
55
|
export { ItemHistoryDeliveredPayloadSchema, ItemHistoryDeliveredPayload } from "./com/controlresell/models/items/history/data/ItemHistoryDeliveredPayload";
|
|
56
56
|
export { ItemHistoryFailedToPublishPayloadSchema, ItemHistoryFailedToPublishPayload } from "./com/controlresell/models/items/history/data/ItemHistoryFailedToPublishPayload";
|
|
57
|
+
export { ItemHistoryRepublishingSchema, ItemHistoryRepublishing } from "./com/controlresell/models/items/history/data/ItemHistoryRepublishing";
|
|
57
58
|
export { ItemHistoryScheduledPayloadSchema, ItemHistoryScheduledPayload } from "./com/controlresell/models/items/history/data/ItemHistoryScheduledPayload";
|
|
58
59
|
export { CreateItemLabelPayloadSchema, CreateItemLabelPayload } from "./com/controlresell/models/items/labels/CreateItemLabelPayload";
|
|
59
60
|
export { ItemLabelSchema, ItemLabel } from "./com/controlresell/models/items/labels/ItemLabel";
|
|
@@ -66,6 +67,7 @@ export { ItemOnPlatformsRequestWithItemSchema, ItemOnPlatformsRequestWithItem }
|
|
|
66
67
|
export { PlatformInfoSchema, PlatformInfo } from "./com/controlresell/models/items/platforms/PlatformInfo";
|
|
67
68
|
export { PriceDropRequestSchema, PriceDropRequest } from "./com/controlresell/models/items/platforms/PriceDropRequest";
|
|
68
69
|
export { RepublishRequestSchema, RepublishRequest } from "./com/controlresell/models/items/platforms/RepublishRequest";
|
|
70
|
+
export { RepublishRequestWithItemSchema, RepublishRequestWithItem } from "./com/controlresell/models/items/platforms/RepublishRequestWithItem";
|
|
69
71
|
export { UpdateItemOnPlatformPayloadSchema, UpdateItemOnPlatformPayload } from "./com/controlresell/models/items/platforms/UpdateItemOnPlatformPayload";
|
|
70
72
|
export { InvestmentSummarySchema, InvestmentSummary } from "./com/controlresell/models/items/summary/InvestmentSummary";
|
|
71
73
|
export { InvestmentSummaryBreakdownSchema, InvestmentSummaryBreakdown } from "./com/controlresell/models/items/summary/InvestmentSummaryBreakdown";
|
|
@@ -130,6 +132,7 @@ export { PreferenceSchema, Preference } from "./com/controlresell/models/prefere
|
|
|
130
132
|
export { PreferenceFilterSchema, PreferenceFilter } from "./com/controlresell/models/preferences/PreferenceFilter";
|
|
131
133
|
export { PreferenceTypeSchema, PreferenceType } from "./com/controlresell/models/preferences/PreferenceType";
|
|
132
134
|
export { PreferenceWithCaseSchema, PreferenceWithCase } from "./com/controlresell/models/preferences/PreferenceWithCase";
|
|
135
|
+
export { PreferenceWithChildrenSchema, PreferenceWithChildren } from "./com/controlresell/models/preferences/PreferenceWithChildren";
|
|
133
136
|
export { UpdatePreferencePayloadSchema, UpdatePreferencePayload } from "./com/controlresell/models/preferences/UpdatePreferencePayload";
|
|
134
137
|
export { CreatePreferenceCasePayloadSchema, CreatePreferenceCasePayload } from "./com/controlresell/models/preferences/cases/CreatePreferenceCasePayload";
|
|
135
138
|
export { PartialPreferenceCasePayloadSchema, PartialPreferenceCasePayload } from "./com/controlresell/models/preferences/cases/PartialPreferenceCasePayload";
|
package/src/index.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ItemHistorySchema = exports.CreateItemHistoryPayloadSchema = exports.UpdateItemFilePayloadSchema = exports.ItemFileSchema = exports.CreateItemFilePayloadSchema = exports.ItemFieldPayloadSchema = exports.ItemFieldSchema = exports.ItemAnalysisRequestSchema = exports.ItemAnalysisCompletionSchema = exports.UpdatedItemSchema = exports.ItemsWithFiltersSchema = exports.ItemSortSchema = exports.ItemSoldPayloadSchema = exports.ItemPayloadSchema = exports.ItemFiltersContextSchema = exports.ItemSchema = exports.CreatedItemsSchema = exports.SavedFiltersPayloadSchema = exports.SavedFiltersSchema = exports.SpotValueSchema = exports.SpotDefaultValueSchema = exports.SpotConfigSchema = exports.FeeRecurrenceSchema = exports.FeeSchema = exports.PrepareContractResponseSchema = exports.PrepareContractPayloadSchema = exports.CreateContractPayloadSchema = exports.ContractItemSchema = exports.ContractSchema = exports.VerifyCustomerRequestSchema = exports.CustomerSchema = exports.SizeRootSchema = exports.SizeGroupSchema = exports.PackageSizesAndStatusesSchema = exports.ColorRootSchema = exports.CatalogRootSchema = exports.CatalogSchema = exports.SwitchAccountPayloadSchema = exports.ResetPasswordPayloadSchema = exports.RegisterPayloadSchema = exports.RefreshTokenPayloadSchema = exports.LoginPayloadSchema = exports.EmailPayloadSchema = exports.CreateAuthCodePayloadSchema = exports.AuthTokenSchema = exports.AuthCodeTypeSchema = exports.AuthCodeSchema = exports.VersionsSchema = exports.RabbitMQRoutingKeySchema = exports.ControlResellEnvironmentSchema = void 0;
|
|
4
|
-
exports.
|
|
5
|
-
exports.
|
|
6
|
-
exports.UserOnPlatformStatusSchema = exports.UserOnPlatformSessionMessageSchema = exports.UserOnPlatformRequestSchema = exports.UserOnPlatformSchema = exports.UpdateUserOnPlatformPayloadSchema = exports.PlatformJobUpdateSchema = exports.PlatformAuthRequestSchema = exports.CreateUserOnPlatformPayloadSchema = exports.FileSchema = exports.CreateFilePayloadSchema = exports.FieldsWithDataSchema = exports.FieldTypeSchema = exports.FieldPayloadSchema = exports.FieldConfigSchema = exports.FieldSchema = exports.AffiliateSchema = exports.WalletSchema = exports.UserContextSchema = exports.UserSchema = exports.UpdateUserPayloadSchema = exports.GettingStartedStepsSchema = exports.CreateUserPayloadSchema = exports.PreferenceCaseVariantPayloadSchema = exports.PreferenceCaseVariantDecodedPayloadSchema = exports.PreferenceCaseVariantSchema = exports.PartialPreferenceCaseVariantPayloadSchema = exports.PreferenceVariableTemplateSchema = exports.PreferenceVariableNameSchema = exports.PreferenceVariableSchema = exports.PreferenceNextActionPayloadTypeSchema = exports.PreferenceNextActionPayloadSchema = exports.PreferenceWaitPayloadSchema = void 0;
|
|
4
|
+
exports.ConversationMessageOfferSchema = exports.UpdateConversationMessageFilePayloadSchema = exports.CreateConversationMessageFilePayloadSchema = exports.ConversationMessageFileSchema = exports.UpdateConversationMessagePayloadSchema = exports.PaginatedConversationMessagesSchema = exports.CreateConversationMessagePayloadSchema = exports.ConversationMessageRequestSchema = exports.ConversationMessageSchema = exports.UserConversationsSchema = exports.UpdateConversationPayloadSchema = exports.CreateConversationPayloadSchema = exports.ConversationOnPlatformUpdateRequestSchema = exports.ConversationSchema = exports.PlatformFiltersContextSchema = exports.NotificationTokenSchema = exports.CreateNotificationTokenPayloadSchema = exports.StatusSchema = exports.SizeSchema = exports.PlaceSchema = exports.CreatePlacePayloadSchema = exports.PackageSizeSchema = exports.LabelSchema = exports.CreateLabelPayloadSchema = exports.ColorSchema = exports.CreateBrandPayloadSchema = exports.BrandSchema = exports.InvestmentSummaryBreakdownSchema = exports.InvestmentSummarySchema = exports.UpdateItemOnPlatformPayloadSchema = exports.RepublishRequestWithItemSchema = exports.RepublishRequestSchema = exports.PriceDropRequestSchema = exports.PlatformInfoSchema = exports.ItemOnPlatformsRequestWithItemSchema = exports.ItemOnPlatformsRequestSchema = exports.ItemOnPlatformUpdateRequestSchema = exports.ItemOnPlatformStatusSchema = exports.ItemOnPlatformSchema = exports.CreateItemOnPlatformPayloadSchema = exports.ItemLabelSchema = exports.CreateItemLabelPayloadSchema = exports.ItemHistoryScheduledPayloadSchema = exports.ItemHistoryRepublishingSchema = exports.ItemHistoryFailedToPublishPayloadSchema = exports.ItemHistoryDeliveredPayloadSchema = exports.ItemHistoryBuyerPaidPayloadSchema = exports.ItemHistoryTypeWithCountSchema = exports.ItemHistoryTypeSchema = exports.ItemHistoryDecodedPayloadSchema = void 0;
|
|
5
|
+
exports.PreferencePricePayloadTypeSchema = exports.PreferencePricePayloadRoundTypeSchema = exports.PreferencePricePayloadSchema = exports.PreferencePriceNegotiationProfileSchema = exports.PreferenceFeesPayloadFeeSchema = exports.PreferenceFeesPayloadSchema = exports.PreferenceActionsPayloadSchema = exports.PreferenceActionPayloadTypeSchema = exports.PreferenceActionPayloadDecodedPayloadSchema = exports.PreferenceActionPayloadSchema = exports.UpdatePreferenceCasePayloadSchema = exports.PreferenceCaseSchema = exports.PartialPreferenceCasePayloadSchema = exports.CreatePreferenceCasePayloadSchema = exports.UpdatePreferencePayloadSchema = exports.PreferenceWithChildrenSchema = exports.PreferenceWithCaseSchema = exports.PreferenceTypeSchema = exports.PreferenceFilterSchema = exports.PreferenceSchema = exports.CreatePreferencePayloadSchema = exports.TransactionWithItemsSchema = exports.ItemInTransactionSchema = exports.CreateItemInTransactionPayloadSchema = exports.UpdateTransactionPayloadSchema = exports.TransactionSchema = exports.CreateTransactionPayloadSchema = exports.OrderWithItemsSchema = exports.ItemInOrderSchema = exports.CreateItemInOrderPayloadSchema = exports.UpdateOrderPayloadSchema = exports.OrderOnPlatformUpdateRequestSchema = exports.OrderSchema = exports.CreateOrderPayloadSchema = exports.OrderLabelSchema = exports.CreateOrderLabelPayloadSchema = exports.UpdateFavoritePayloadSchema = exports.FavoriteOnPlatformUpdateRequestSchema = exports.FavoriteSchema = exports.CreateFavoritePayloadSchema = exports.UpdateConversationUserPayloadSchema = exports.CreateConversationUserPayloadSchema = exports.ConversationUserSchema = exports.TranslationContextSchema = exports.TranslatedMessageSchema = exports.CreateTranslatedMessagePayloadSchema = exports.UpdateConversationMessageOfferPayloadSchema = exports.CreateConversationMessageOfferPayloadSchema = exports.ConversationOfferUpdateRequestSchema = exports.ConversationOfferRequestSchema = void 0;
|
|
6
|
+
exports.UserOnPlatformStatusSchema = exports.UserOnPlatformSessionMessageSchema = exports.UserOnPlatformRequestSchema = exports.UserOnPlatformSchema = exports.UpdateUserOnPlatformPayloadSchema = exports.PlatformJobUpdateSchema = exports.PlatformAuthRequestSchema = exports.CreateUserOnPlatformPayloadSchema = exports.FileSchema = exports.CreateFilePayloadSchema = exports.FieldsWithDataSchema = exports.FieldTypeSchema = exports.FieldPayloadSchema = exports.FieldConfigSchema = exports.FieldSchema = exports.AffiliateSchema = exports.WalletSchema = exports.UserContextSchema = exports.UserSchema = exports.UpdateUserPayloadSchema = exports.GettingStartedStepsSchema = exports.CreateUserPayloadSchema = exports.PreferenceCaseVariantPayloadSchema = exports.PreferenceCaseVariantDecodedPayloadSchema = exports.PreferenceCaseVariantSchema = exports.PartialPreferenceCaseVariantPayloadSchema = exports.PreferenceVariableTemplateSchema = exports.PreferenceVariableNameSchema = exports.PreferenceVariableSchema = exports.PreferenceNextActionPayloadTypeSchema = exports.PreferenceNextActionPayloadSchema = exports.PreferenceWaitPayloadSchema = exports.TryVisionPayloadSchema = exports.PreferenceVisionPayloadSchema = exports.PreferenceTextPayloadSchema = void 0;
|
|
7
7
|
var ControlResellEnvironment_1 = require("./com/controlresell/models/application/ControlResellEnvironment");
|
|
8
8
|
Object.defineProperty(exports, "ControlResellEnvironmentSchema", { enumerable: true, get: function () { return ControlResellEnvironment_1.ControlResellEnvironmentSchema; } });
|
|
9
9
|
var RabbitMQRoutingKey_1 = require("./com/controlresell/models/application/RabbitMQRoutingKey");
|
|
@@ -116,6 +116,8 @@ var ItemHistoryDeliveredPayload_1 = require("./com/controlresell/models/items/hi
|
|
|
116
116
|
Object.defineProperty(exports, "ItemHistoryDeliveredPayloadSchema", { enumerable: true, get: function () { return ItemHistoryDeliveredPayload_1.ItemHistoryDeliveredPayloadSchema; } });
|
|
117
117
|
var ItemHistoryFailedToPublishPayload_1 = require("./com/controlresell/models/items/history/data/ItemHistoryFailedToPublishPayload");
|
|
118
118
|
Object.defineProperty(exports, "ItemHistoryFailedToPublishPayloadSchema", { enumerable: true, get: function () { return ItemHistoryFailedToPublishPayload_1.ItemHistoryFailedToPublishPayloadSchema; } });
|
|
119
|
+
var ItemHistoryRepublishing_1 = require("./com/controlresell/models/items/history/data/ItemHistoryRepublishing");
|
|
120
|
+
Object.defineProperty(exports, "ItemHistoryRepublishingSchema", { enumerable: true, get: function () { return ItemHistoryRepublishing_1.ItemHistoryRepublishingSchema; } });
|
|
119
121
|
var ItemHistoryScheduledPayload_1 = require("./com/controlresell/models/items/history/data/ItemHistoryScheduledPayload");
|
|
120
122
|
Object.defineProperty(exports, "ItemHistoryScheduledPayloadSchema", { enumerable: true, get: function () { return ItemHistoryScheduledPayload_1.ItemHistoryScheduledPayloadSchema; } });
|
|
121
123
|
var CreateItemLabelPayload_1 = require("./com/controlresell/models/items/labels/CreateItemLabelPayload");
|
|
@@ -140,6 +142,8 @@ var PriceDropRequest_1 = require("./com/controlresell/models/items/platforms/Pri
|
|
|
140
142
|
Object.defineProperty(exports, "PriceDropRequestSchema", { enumerable: true, get: function () { return PriceDropRequest_1.PriceDropRequestSchema; } });
|
|
141
143
|
var RepublishRequest_1 = require("./com/controlresell/models/items/platforms/RepublishRequest");
|
|
142
144
|
Object.defineProperty(exports, "RepublishRequestSchema", { enumerable: true, get: function () { return RepublishRequest_1.RepublishRequestSchema; } });
|
|
145
|
+
var RepublishRequestWithItem_1 = require("./com/controlresell/models/items/platforms/RepublishRequestWithItem");
|
|
146
|
+
Object.defineProperty(exports, "RepublishRequestWithItemSchema", { enumerable: true, get: function () { return RepublishRequestWithItem_1.RepublishRequestWithItemSchema; } });
|
|
143
147
|
var UpdateItemOnPlatformPayload_1 = require("./com/controlresell/models/items/platforms/UpdateItemOnPlatformPayload");
|
|
144
148
|
Object.defineProperty(exports, "UpdateItemOnPlatformPayloadSchema", { enumerable: true, get: function () { return UpdateItemOnPlatformPayload_1.UpdateItemOnPlatformPayloadSchema; } });
|
|
145
149
|
var InvestmentSummary_1 = require("./com/controlresell/models/items/summary/InvestmentSummary");
|
|
@@ -268,6 +272,8 @@ var PreferenceType_1 = require("./com/controlresell/models/preferences/Preferenc
|
|
|
268
272
|
Object.defineProperty(exports, "PreferenceTypeSchema", { enumerable: true, get: function () { return PreferenceType_1.PreferenceTypeSchema; } });
|
|
269
273
|
var PreferenceWithCase_1 = require("./com/controlresell/models/preferences/PreferenceWithCase");
|
|
270
274
|
Object.defineProperty(exports, "PreferenceWithCaseSchema", { enumerable: true, get: function () { return PreferenceWithCase_1.PreferenceWithCaseSchema; } });
|
|
275
|
+
var PreferenceWithChildren_1 = require("./com/controlresell/models/preferences/PreferenceWithChildren");
|
|
276
|
+
Object.defineProperty(exports, "PreferenceWithChildrenSchema", { enumerable: true, get: function () { return PreferenceWithChildren_1.PreferenceWithChildrenSchema; } });
|
|
271
277
|
var UpdatePreferencePayload_1 = require("./com/controlresell/models/preferences/UpdatePreferencePayload");
|
|
272
278
|
Object.defineProperty(exports, "UpdatePreferencePayloadSchema", { enumerable: true, get: function () { return UpdatePreferencePayload_1.UpdatePreferencePayloadSchema; } });
|
|
273
279
|
var CreatePreferenceCasePayload_1 = require("./com/controlresell/models/preferences/cases/CreatePreferenceCasePayload");
|
package/src/index.ts
CHANGED
|
@@ -54,6 +54,7 @@ export {ItemHistoryTypeWithCountSchema, ItemHistoryTypeWithCount} from "./com/co
|
|
|
54
54
|
export {ItemHistoryBuyerPaidPayloadSchema, ItemHistoryBuyerPaidPayload} from "./com/controlresell/models/items/history/data/ItemHistoryBuyerPaidPayload"
|
|
55
55
|
export {ItemHistoryDeliveredPayloadSchema, ItemHistoryDeliveredPayload} from "./com/controlresell/models/items/history/data/ItemHistoryDeliveredPayload"
|
|
56
56
|
export {ItemHistoryFailedToPublishPayloadSchema, ItemHistoryFailedToPublishPayload} from "./com/controlresell/models/items/history/data/ItemHistoryFailedToPublishPayload"
|
|
57
|
+
export {ItemHistoryRepublishingSchema, ItemHistoryRepublishing} from "./com/controlresell/models/items/history/data/ItemHistoryRepublishing"
|
|
57
58
|
export {ItemHistoryScheduledPayloadSchema, ItemHistoryScheduledPayload} from "./com/controlresell/models/items/history/data/ItemHistoryScheduledPayload"
|
|
58
59
|
export {CreateItemLabelPayloadSchema, CreateItemLabelPayload} from "./com/controlresell/models/items/labels/CreateItemLabelPayload"
|
|
59
60
|
export {ItemLabelSchema, ItemLabel} from "./com/controlresell/models/items/labels/ItemLabel"
|
|
@@ -66,6 +67,7 @@ export {ItemOnPlatformsRequestWithItemSchema, ItemOnPlatformsRequestWithItem} fr
|
|
|
66
67
|
export {PlatformInfoSchema, PlatformInfo} from "./com/controlresell/models/items/platforms/PlatformInfo"
|
|
67
68
|
export {PriceDropRequestSchema, PriceDropRequest} from "./com/controlresell/models/items/platforms/PriceDropRequest"
|
|
68
69
|
export {RepublishRequestSchema, RepublishRequest} from "./com/controlresell/models/items/platforms/RepublishRequest"
|
|
70
|
+
export {RepublishRequestWithItemSchema, RepublishRequestWithItem} from "./com/controlresell/models/items/platforms/RepublishRequestWithItem"
|
|
69
71
|
export {UpdateItemOnPlatformPayloadSchema, UpdateItemOnPlatformPayload} from "./com/controlresell/models/items/platforms/UpdateItemOnPlatformPayload"
|
|
70
72
|
export {InvestmentSummarySchema, InvestmentSummary} from "./com/controlresell/models/items/summary/InvestmentSummary"
|
|
71
73
|
export {InvestmentSummaryBreakdownSchema, InvestmentSummaryBreakdown} from "./com/controlresell/models/items/summary/InvestmentSummaryBreakdown"
|
|
@@ -130,6 +132,7 @@ export {PreferenceSchema, Preference} from "./com/controlresell/models/preferenc
|
|
|
130
132
|
export {PreferenceFilterSchema, PreferenceFilter} from "./com/controlresell/models/preferences/PreferenceFilter"
|
|
131
133
|
export {PreferenceTypeSchema, PreferenceType} from "./com/controlresell/models/preferences/PreferenceType"
|
|
132
134
|
export {PreferenceWithCaseSchema, PreferenceWithCase} from "./com/controlresell/models/preferences/PreferenceWithCase"
|
|
135
|
+
export {PreferenceWithChildrenSchema, PreferenceWithChildren} from "./com/controlresell/models/preferences/PreferenceWithChildren"
|
|
133
136
|
export {UpdatePreferencePayloadSchema, UpdatePreferencePayload} from "./com/controlresell/models/preferences/UpdatePreferencePayload"
|
|
134
137
|
export {CreatePreferenceCasePayloadSchema, CreatePreferenceCasePayload} from "./com/controlresell/models/preferences/cases/CreatePreferenceCasePayload"
|
|
135
138
|
export {PartialPreferenceCasePayloadSchema, PartialPreferenceCasePayload} from "./com/controlresell/models/preferences/cases/PartialPreferenceCasePayload"
|