controlresell 2.2.10 → 2.2.12
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/catalogs/SizeGroup.d.ts +0 -3
- package/src/com/controlresell/models/catalogs/SizeGroup.js +0 -1
- package/src/com/controlresell/models/catalogs/SizeGroup.ts +0 -1
- package/src/com/controlresell/models/catalogs/SizeRoot.d.ts +0 -5
- package/src/com/controlresell/models/items/ItemPayload.d.ts +0 -3
- package/src/com/controlresell/models/items/ItemPayload.js +0 -1
- package/src/com/controlresell/models/items/ItemPayload.ts +0 -1
- 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 +1 -2
- package/src/index.js +6 -8
- package/src/index.ts +1 -2
- package/src/com/controlresell/models/application/ControlResellEnvironment.d.ts +0 -3
- package/src/com/controlresell/models/application/ControlResellEnvironment.js +0 -7
- package/src/com/controlresell/models/application/ControlResellEnvironment.ts +0 -6
- package/src/com/controlresell/models/application/RabbitMQRoutingKey.d.ts +0 -3
- package/src/com/controlresell/models/application/RabbitMQRoutingKey.js +0 -7
- package/src/com/controlresell/models/application/RabbitMQRoutingKey.ts +0 -6
|
@@ -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
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
export { ControlResellEnvironmentSchema, ControlResellEnvironment } from "./com/controlresell/models/application/ControlResellEnvironment";
|
|
2
|
-
export { RabbitMQRoutingKeySchema, RabbitMQRoutingKey } from "./com/controlresell/models/application/RabbitMQRoutingKey";
|
|
3
1
|
export { VersionsSchema, Versions } from "./com/controlresell/models/application/Versions";
|
|
4
2
|
export { AuthCodeSchema, AuthCode } from "./com/controlresell/models/auth/AuthCode";
|
|
5
3
|
export { AuthCodeTypeSchema, AuthCodeType } from "./com/controlresell/models/auth/AuthCodeType";
|
|
@@ -132,6 +130,7 @@ export { PreferenceSchema, Preference } from "./com/controlresell/models/prefere
|
|
|
132
130
|
export { PreferenceFilterSchema, PreferenceFilter } from "./com/controlresell/models/preferences/PreferenceFilter";
|
|
133
131
|
export { PreferenceTypeSchema, PreferenceType } from "./com/controlresell/models/preferences/PreferenceType";
|
|
134
132
|
export { PreferenceWithCaseSchema, PreferenceWithCase } from "./com/controlresell/models/preferences/PreferenceWithCase";
|
|
133
|
+
export { PreferenceWithChildrenSchema, PreferenceWithChildren } from "./com/controlresell/models/preferences/PreferenceWithChildren";
|
|
135
134
|
export { UpdatePreferencePayloadSchema, UpdatePreferencePayload } from "./com/controlresell/models/preferences/UpdatePreferencePayload";
|
|
136
135
|
export { CreatePreferenceCasePayloadSchema, CreatePreferenceCasePayload } from "./com/controlresell/models/preferences/cases/CreatePreferenceCasePayload";
|
|
137
136
|
export { PartialPreferenceCasePayloadSchema, PartialPreferenceCasePayload } from "./com/controlresell/models/preferences/cases/PartialPreferenceCasePayload";
|
package/src/index.js
CHANGED
|
@@ -1,13 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
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 =
|
|
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 =
|
|
5
|
-
exports.PreferenceTextPayloadSchema = 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.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 =
|
|
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 =
|
|
7
|
-
var ControlResellEnvironment_1 = require("./com/controlresell/models/application/ControlResellEnvironment");
|
|
8
|
-
Object.defineProperty(exports, "ControlResellEnvironmentSchema", { enumerable: true, get: function () { return ControlResellEnvironment_1.ControlResellEnvironmentSchema; } });
|
|
9
|
-
var RabbitMQRoutingKey_1 = require("./com/controlresell/models/application/RabbitMQRoutingKey");
|
|
10
|
-
Object.defineProperty(exports, "RabbitMQRoutingKeySchema", { enumerable: true, get: function () { return RabbitMQRoutingKey_1.RabbitMQRoutingKeySchema; } });
|
|
3
|
+
exports.ItemHistoryTypeSchema = exports.ItemHistoryDecodedPayloadSchema = 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 = void 0;
|
|
4
|
+
exports.ConversationOfferUpdateRequestSchema = exports.ConversationOfferRequestSchema = 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 = void 0;
|
|
5
|
+
exports.PreferenceVisionPayloadSchema = exports.PreferenceTextPayloadSchema = 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 = 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 = void 0;
|
|
11
7
|
var Versions_1 = require("./com/controlresell/models/application/Versions");
|
|
12
8
|
Object.defineProperty(exports, "VersionsSchema", { enumerable: true, get: function () { return Versions_1.VersionsSchema; } });
|
|
13
9
|
var AuthCode_1 = require("./com/controlresell/models/auth/AuthCode");
|
|
@@ -272,6 +268,8 @@ var PreferenceType_1 = require("./com/controlresell/models/preferences/Preferenc
|
|
|
272
268
|
Object.defineProperty(exports, "PreferenceTypeSchema", { enumerable: true, get: function () { return PreferenceType_1.PreferenceTypeSchema; } });
|
|
273
269
|
var PreferenceWithCase_1 = require("./com/controlresell/models/preferences/PreferenceWithCase");
|
|
274
270
|
Object.defineProperty(exports, "PreferenceWithCaseSchema", { enumerable: true, get: function () { return PreferenceWithCase_1.PreferenceWithCaseSchema; } });
|
|
271
|
+
var PreferenceWithChildren_1 = require("./com/controlresell/models/preferences/PreferenceWithChildren");
|
|
272
|
+
Object.defineProperty(exports, "PreferenceWithChildrenSchema", { enumerable: true, get: function () { return PreferenceWithChildren_1.PreferenceWithChildrenSchema; } });
|
|
275
273
|
var UpdatePreferencePayload_1 = require("./com/controlresell/models/preferences/UpdatePreferencePayload");
|
|
276
274
|
Object.defineProperty(exports, "UpdatePreferencePayloadSchema", { enumerable: true, get: function () { return UpdatePreferencePayload_1.UpdatePreferencePayloadSchema; } });
|
|
277
275
|
var CreatePreferenceCasePayload_1 = require("./com/controlresell/models/preferences/cases/CreatePreferenceCasePayload");
|
package/src/index.ts
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
export {ControlResellEnvironmentSchema, ControlResellEnvironment} from "./com/controlresell/models/application/ControlResellEnvironment"
|
|
2
|
-
export {RabbitMQRoutingKeySchema, RabbitMQRoutingKey} from "./com/controlresell/models/application/RabbitMQRoutingKey"
|
|
3
1
|
export {VersionsSchema, Versions} from "./com/controlresell/models/application/Versions"
|
|
4
2
|
export {AuthCodeSchema, AuthCode} from "./com/controlresell/models/auth/AuthCode"
|
|
5
3
|
export {AuthCodeTypeSchema, AuthCodeType} from "./com/controlresell/models/auth/AuthCodeType"
|
|
@@ -132,6 +130,7 @@ export {PreferenceSchema, Preference} from "./com/controlresell/models/preferenc
|
|
|
132
130
|
export {PreferenceFilterSchema, PreferenceFilter} from "./com/controlresell/models/preferences/PreferenceFilter"
|
|
133
131
|
export {PreferenceTypeSchema, PreferenceType} from "./com/controlresell/models/preferences/PreferenceType"
|
|
134
132
|
export {PreferenceWithCaseSchema, PreferenceWithCase} from "./com/controlresell/models/preferences/PreferenceWithCase"
|
|
133
|
+
export {PreferenceWithChildrenSchema, PreferenceWithChildren} from "./com/controlresell/models/preferences/PreferenceWithChildren"
|
|
135
134
|
export {UpdatePreferencePayloadSchema, UpdatePreferencePayload} from "./com/controlresell/models/preferences/UpdatePreferencePayload"
|
|
136
135
|
export {CreatePreferenceCasePayloadSchema, CreatePreferenceCasePayload} from "./com/controlresell/models/preferences/cases/CreatePreferenceCasePayload"
|
|
137
136
|
export {PartialPreferenceCasePayloadSchema, PartialPreferenceCasePayload} from "./com/controlresell/models/preferences/cases/PartialPreferenceCasePayload"
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
import { z } from "zod";
|
|
2
|
-
export declare const RabbitMQRoutingKeySchema: z.ZodEnum<["PLATFORMS_AUTH", "PLATFORMS_JOB", "PLATFORMS_ITEMS_PUBLISH", "PLATFORMS_ITEMS_UPDATE", "PLATFORMS_ORDERS_UPDATE", "PLATFORMS_CONVERSATIONS_UPDATE", "PLATFORMS_FAVORITES_UPDATE", "PLATFORMS_FAVORITES_SEND", "PREFERENCES_ACTIONS_NEXT", "CONNECTOR_JOB_POSTS_GET", "CONNECTOR_JOB_CONVERSATIONS_GET"]>;
|
|
3
|
-
export type RabbitMQRoutingKey = z.infer<typeof RabbitMQRoutingKeySchema>;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.RabbitMQRoutingKeySchema = void 0;
|
|
4
|
-
const zod_1 = require("zod");
|
|
5
|
-
exports.RabbitMQRoutingKeySchema = zod_1.z.enum([
|
|
6
|
-
"PLATFORMS_AUTH", "PLATFORMS_JOB", "PLATFORMS_ITEMS_PUBLISH", "PLATFORMS_ITEMS_UPDATE", "PLATFORMS_ORDERS_UPDATE", "PLATFORMS_CONVERSATIONS_UPDATE", "PLATFORMS_FAVORITES_UPDATE", "PLATFORMS_FAVORITES_SEND", "PREFERENCES_ACTIONS_NEXT", "CONNECTOR_JOB_POSTS_GET", "CONNECTOR_JOB_CONVERSATIONS_GET"
|
|
7
|
-
]);
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import {z} from "zod"
|
|
2
|
-
|
|
3
|
-
export const RabbitMQRoutingKeySchema = z.enum([
|
|
4
|
-
"PLATFORMS_AUTH", "PLATFORMS_JOB", "PLATFORMS_ITEMS_PUBLISH", "PLATFORMS_ITEMS_UPDATE", "PLATFORMS_ORDERS_UPDATE", "PLATFORMS_CONVERSATIONS_UPDATE", "PLATFORMS_FAVORITES_UPDATE", "PLATFORMS_FAVORITES_SEND", "PREFERENCES_ACTIONS_NEXT", "CONNECTOR_JOB_POSTS_GET", "CONNECTOR_JOB_CONVERSATIONS_GET"
|
|
5
|
-
])
|
|
6
|
-
export type RabbitMQRoutingKey = z.infer<typeof RabbitMQRoutingKeySchema>
|