controlresell 2.2.0 → 2.2.1

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.
Files changed (36) hide show
  1. package/package.json +1 -1
  2. package/src/com/controlresell/models/filters/SavedFilters.d.ts +133 -0
  3. package/src/com/controlresell/models/filters/SavedFilters.js +13 -0
  4. package/src/com/controlresell/models/filters/SavedFilters.ts +12 -0
  5. package/src/com/controlresell/models/filters/SavedFiltersPayload.d.ts +127 -0
  6. package/src/com/controlresell/models/filters/SavedFiltersPayload.js +10 -0
  7. package/src/com/controlresell/models/filters/SavedFiltersPayload.ts +9 -0
  8. package/src/com/controlresell/models/items/CreatedItems.d.ts +70 -70
  9. package/src/com/controlresell/models/items/Item.d.ts +36 -36
  10. package/src/com/controlresell/models/items/ItemFiltersContext.d.ts +2 -2
  11. package/src/com/controlresell/models/items/ItemPayload.d.ts +2 -2
  12. package/src/com/controlresell/models/items/ItemsWithFilters.d.ts +70 -70
  13. package/src/com/controlresell/models/items/UpdatedItem.d.ts +70 -70
  14. package/src/com/controlresell/models/items/platforms/CreateItemOnPlatformPayload.d.ts +2 -2
  15. package/src/com/controlresell/models/items/platforms/ItemOnPlatform.d.ts +2 -2
  16. package/src/com/controlresell/models/items/platforms/ItemOnPlatformUpdateRequest.d.ts +4 -4
  17. package/src/com/controlresell/models/items/platforms/UpdateItemOnPlatformPayload.d.ts +2 -2
  18. package/src/com/controlresell/models/platforms/PlatformFiltersContext.d.ts +12 -0
  19. package/src/com/controlresell/models/platforms/PlatformFiltersContext.js +9 -0
  20. package/src/com/controlresell/models/platforms/PlatformFiltersContext.ts +8 -0
  21. package/src/com/controlresell/models/platforms/conversations/ConversationOnPlatformUpdateRequest.d.ts +6 -6
  22. package/src/com/controlresell/models/platforms/orders/Order.d.ts +6 -6
  23. package/src/com/controlresell/models/platforms/orders/items/ItemInOrder.d.ts +4 -4
  24. package/src/com/controlresell/models/platforms/orders/items/OrderWithItems.d.ts +78 -78
  25. package/src/com/controlresell/models/platforms/transactions/Transaction.d.ts +6 -6
  26. package/src/com/controlresell/models/platforms/transactions/items/ItemInTransaction.d.ts +4 -4
  27. package/src/com/controlresell/models/platforms/transactions/items/TransactionWithItems.d.ts +78 -78
  28. package/src/com/controlresell/models/preferences/payloads/prices/PreferencePriceNegotiationProfile.d.ts +3 -0
  29. package/src/com/controlresell/models/preferences/payloads/prices/PreferencePriceNegotiationProfile.js +7 -0
  30. package/src/com/controlresell/models/preferences/payloads/prices/PreferencePriceNegotiationProfile.ts +6 -0
  31. package/src/com/controlresell/models/preferences/payloads/prices/PreferencePricePayload.d.ts +3 -0
  32. package/src/com/controlresell/models/preferences/payloads/prices/PreferencePricePayload.js +3 -1
  33. package/src/com/controlresell/models/preferences/payloads/prices/PreferencePricePayload.ts +3 -1
  34. package/src/index.d.ts +4 -0
  35. package/src/index.js +12 -4
  36. package/src/index.ts +4 -0
@@ -39,7 +39,7 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
39
39
  accountId: string;
40
40
  }>>>;
41
41
  }, "strip", z.ZodTypeAny, {
42
- status: "DELETED" | "ONLINE" | "DRAFT" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN" | "PENDING" | "ERROR" | "DISPUTE";
42
+ status: "DELETED" | "PENDING" | "DRAFT" | "ONLINE" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN" | "ERROR" | "DISPUTE";
43
43
  id: string;
44
44
  itemId: string | number;
45
45
  accountId: string;
@@ -54,7 +54,7 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
54
54
  accountId: string;
55
55
  } | null | undefined;
56
56
  }, {
57
- status: "DELETED" | "ONLINE" | "DRAFT" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN" | "PENDING" | "ERROR" | "DISPUTE";
57
+ status: "DELETED" | "PENDING" | "DRAFT" | "ONLINE" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN" | "ERROR" | "DISPUTE";
58
58
  id: string;
59
59
  itemId: string | number;
60
60
  accountId: string;
@@ -73,7 +73,7 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
73
73
  transactionId: string;
74
74
  itemOnPlatformId: string;
75
75
  itemOnPlatform?: {
76
- status: "DELETED" | "ONLINE" | "DRAFT" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN" | "PENDING" | "ERROR" | "DISPUTE";
76
+ status: "DELETED" | "PENDING" | "DRAFT" | "ONLINE" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN" | "ERROR" | "DISPUTE";
77
77
  id: string;
78
78
  itemId: string | number;
79
79
  accountId: string;
@@ -92,7 +92,7 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
92
92
  transactionId: string;
93
93
  itemOnPlatformId: string;
94
94
  itemOnPlatform?: {
95
- status: "DELETED" | "ONLINE" | "DRAFT" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN" | "PENDING" | "ERROR" | "DISPUTE";
95
+ status: "DELETED" | "PENDING" | "DRAFT" | "ONLINE" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN" | "ERROR" | "DISPUTE";
96
96
  id: string;
97
97
  itemId: string | number;
98
98
  accountId: string;
@@ -116,7 +116,7 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
116
116
  transactionId: string;
117
117
  itemOnPlatformId: string;
118
118
  itemOnPlatform?: {
119
- status: "DELETED" | "ONLINE" | "DRAFT" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN" | "PENDING" | "ERROR" | "DISPUTE";
119
+ status: "DELETED" | "PENDING" | "DRAFT" | "ONLINE" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN" | "ERROR" | "DISPUTE";
120
120
  id: string;
121
121
  itemId: string | number;
122
122
  accountId: string;
@@ -144,7 +144,7 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
144
144
  transactionId: string;
145
145
  itemOnPlatformId: string;
146
146
  itemOnPlatform?: {
147
- status: "DELETED" | "ONLINE" | "DRAFT" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN" | "PENDING" | "ERROR" | "DISPUTE";
147
+ status: "DELETED" | "PENDING" | "DRAFT" | "ONLINE" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN" | "ERROR" | "DISPUTE";
148
148
  id: string;
149
149
  itemId: string | number;
150
150
  accountId: string;
@@ -429,7 +429,7 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
429
429
  accountId: string;
430
430
  }>>>;
431
431
  }, "strip", z.ZodTypeAny, {
432
- status: "DELETED" | "ONLINE" | "DRAFT" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN" | "PENDING" | "ERROR" | "DISPUTE";
432
+ status: "DELETED" | "PENDING" | "DRAFT" | "ONLINE" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN" | "ERROR" | "DISPUTE";
433
433
  id: string;
434
434
  itemId: string | number;
435
435
  accountId: string;
@@ -444,7 +444,7 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
444
444
  accountId: string;
445
445
  } | null | undefined;
446
446
  }, {
447
- status: "DELETED" | "ONLINE" | "DRAFT" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN" | "PENDING" | "ERROR" | "DISPUTE";
447
+ status: "DELETED" | "PENDING" | "DRAFT" | "ONLINE" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN" | "ERROR" | "DISPUTE";
448
448
  id: string;
449
449
  itemId: string | number;
450
450
  accountId: string;
@@ -470,6 +470,7 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
470
470
  sold: boolean;
471
471
  description?: string | null | undefined;
472
472
  customerId?: string | number | null | undefined;
473
+ sex?: string | null | undefined;
473
474
  state?: number | null | undefined;
474
475
  colorIds?: number[] | null | undefined;
475
476
  packageSizeId?: number | null | undefined;
@@ -486,6 +487,22 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
486
487
  userId?: string | number | null | undefined;
487
488
  } | null | undefined;
488
489
  }[] | null | undefined;
490
+ platforms?: {
491
+ status: "DELETED" | "PENDING" | "DRAFT" | "ONLINE" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN" | "ERROR" | "DISPUTE";
492
+ id: string;
493
+ itemId: string | number;
494
+ accountId: string;
495
+ platformId: string;
496
+ platformUrl: string;
497
+ platformPrice: number;
498
+ account?: {
499
+ status: "ERROR" | "CONNECTED" | "DISCONNECTED";
500
+ userId: string | number;
501
+ name: string;
502
+ platform: "VINTED" | "SHOPIFY";
503
+ accountId: string;
504
+ } | null | undefined;
505
+ }[] | null | undefined;
489
506
  files?: {
490
507
  fileId: string;
491
508
  itemId: string | number;
@@ -500,7 +517,6 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
500
517
  }[] | null | undefined;
501
518
  categoryId?: number | null | undefined;
502
519
  brandId?: string | number | null | undefined;
503
- sex?: string | null | undefined;
504
520
  purchasePrice?: number | null | undefined;
505
521
  purchaseDate?: Date | null | undefined;
506
522
  purchasePlaceId?: string | number | null | undefined;
@@ -555,22 +571,6 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
555
571
  itemId: string | number;
556
572
  data?: string | null | undefined;
557
573
  } | null | undefined;
558
- platforms?: {
559
- status: "DELETED" | "ONLINE" | "DRAFT" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN" | "PENDING" | "ERROR" | "DISPUTE";
560
- id: string;
561
- itemId: string | number;
562
- accountId: string;
563
- platformId: string;
564
- platformUrl: string;
565
- platformPrice: number;
566
- account?: {
567
- status: "ERROR" | "CONNECTED" | "DISCONNECTED";
568
- userId: string | number;
569
- name: string;
570
- platform: "VINTED" | "SHOPIFY";
571
- accountId: string;
572
- } | null | undefined;
573
- }[] | null | undefined;
574
574
  }, {
575
575
  id: string | number;
576
576
  userId: string | number;
@@ -580,6 +580,7 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
580
580
  sold: boolean;
581
581
  description?: string | null | undefined;
582
582
  customerId?: string | number | null | undefined;
583
+ sex?: string | null | undefined;
583
584
  state?: number | null | undefined;
584
585
  colorIds?: number[] | null | undefined;
585
586
  packageSizeId?: number | null | undefined;
@@ -596,6 +597,22 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
596
597
  userId?: string | number | null | undefined;
597
598
  } | null | undefined;
598
599
  }[] | null | undefined;
600
+ platforms?: {
601
+ status: "DELETED" | "PENDING" | "DRAFT" | "ONLINE" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN" | "ERROR" | "DISPUTE";
602
+ id: string;
603
+ itemId: string | number;
604
+ accountId: string;
605
+ platformId: string;
606
+ platformUrl: string;
607
+ platformPrice: number;
608
+ account?: {
609
+ status: "ERROR" | "CONNECTED" | "DISCONNECTED";
610
+ userId: string | number;
611
+ name: string;
612
+ platform: "VINTED" | "SHOPIFY";
613
+ accountId: string;
614
+ } | null | undefined;
615
+ }[] | null | undefined;
599
616
  files?: {
600
617
  fileId: string;
601
618
  itemId: string | number;
@@ -610,7 +627,6 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
610
627
  }[] | null | undefined;
611
628
  categoryId?: number | null | undefined;
612
629
  brandId?: string | number | null | undefined;
613
- sex?: string | null | undefined;
614
630
  purchasePrice?: number | null | undefined;
615
631
  purchaseDate?: Date | null | undefined;
616
632
  purchasePlaceId?: string | number | null | undefined;
@@ -665,22 +681,6 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
665
681
  itemId: string | number;
666
682
  data?: string | null | undefined;
667
683
  } | null | undefined;
668
- platforms?: {
669
- status: "DELETED" | "ONLINE" | "DRAFT" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN" | "PENDING" | "ERROR" | "DISPUTE";
670
- id: string;
671
- itemId: string | number;
672
- accountId: string;
673
- platformId: string;
674
- platformUrl: string;
675
- platformPrice: number;
676
- account?: {
677
- status: "ERROR" | "CONNECTED" | "DISCONNECTED";
678
- userId: string | number;
679
- name: string;
680
- platform: "VINTED" | "SHOPIFY";
681
- accountId: string;
682
- } | null | undefined;
683
- }[] | null | undefined;
684
684
  }>, "many">;
685
685
  }, "strip", z.ZodTypeAny, {
686
686
  items: {
@@ -692,6 +692,7 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
692
692
  sold: boolean;
693
693
  description?: string | null | undefined;
694
694
  customerId?: string | number | null | undefined;
695
+ sex?: string | null | undefined;
695
696
  state?: number | null | undefined;
696
697
  colorIds?: number[] | null | undefined;
697
698
  packageSizeId?: number | null | undefined;
@@ -708,6 +709,22 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
708
709
  userId?: string | number | null | undefined;
709
710
  } | null | undefined;
710
711
  }[] | null | undefined;
712
+ platforms?: {
713
+ status: "DELETED" | "PENDING" | "DRAFT" | "ONLINE" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN" | "ERROR" | "DISPUTE";
714
+ id: string;
715
+ itemId: string | number;
716
+ accountId: string;
717
+ platformId: string;
718
+ platformUrl: string;
719
+ platformPrice: number;
720
+ account?: {
721
+ status: "ERROR" | "CONNECTED" | "DISCONNECTED";
722
+ userId: string | number;
723
+ name: string;
724
+ platform: "VINTED" | "SHOPIFY";
725
+ accountId: string;
726
+ } | null | undefined;
727
+ }[] | null | undefined;
711
728
  files?: {
712
729
  fileId: string;
713
730
  itemId: string | number;
@@ -722,7 +739,6 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
722
739
  }[] | null | undefined;
723
740
  categoryId?: number | null | undefined;
724
741
  brandId?: string | number | null | undefined;
725
- sex?: string | null | undefined;
726
742
  purchasePrice?: number | null | undefined;
727
743
  purchaseDate?: Date | null | undefined;
728
744
  purchasePlaceId?: string | number | null | undefined;
@@ -777,22 +793,6 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
777
793
  itemId: string | number;
778
794
  data?: string | null | undefined;
779
795
  } | null | undefined;
780
- platforms?: {
781
- status: "DELETED" | "ONLINE" | "DRAFT" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN" | "PENDING" | "ERROR" | "DISPUTE";
782
- id: string;
783
- itemId: string | number;
784
- accountId: string;
785
- platformId: string;
786
- platformUrl: string;
787
- platformPrice: number;
788
- account?: {
789
- status: "ERROR" | "CONNECTED" | "DISCONNECTED";
790
- userId: string | number;
791
- name: string;
792
- platform: "VINTED" | "SHOPIFY";
793
- accountId: string;
794
- } | null | undefined;
795
- }[] | null | undefined;
796
796
  }[];
797
797
  transaction: {
798
798
  id: string;
@@ -802,7 +802,7 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
802
802
  transactionId: string;
803
803
  itemOnPlatformId: string;
804
804
  itemOnPlatform?: {
805
- status: "DELETED" | "ONLINE" | "DRAFT" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN" | "PENDING" | "ERROR" | "DISPUTE";
805
+ status: "DELETED" | "PENDING" | "DRAFT" | "ONLINE" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN" | "ERROR" | "DISPUTE";
806
806
  id: string;
807
807
  itemId: string | number;
808
808
  accountId: string;
@@ -833,6 +833,7 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
833
833
  sold: boolean;
834
834
  description?: string | null | undefined;
835
835
  customerId?: string | number | null | undefined;
836
+ sex?: string | null | undefined;
836
837
  state?: number | null | undefined;
837
838
  colorIds?: number[] | null | undefined;
838
839
  packageSizeId?: number | null | undefined;
@@ -849,6 +850,22 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
849
850
  userId?: string | number | null | undefined;
850
851
  } | null | undefined;
851
852
  }[] | null | undefined;
853
+ platforms?: {
854
+ status: "DELETED" | "PENDING" | "DRAFT" | "ONLINE" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN" | "ERROR" | "DISPUTE";
855
+ id: string;
856
+ itemId: string | number;
857
+ accountId: string;
858
+ platformId: string;
859
+ platformUrl: string;
860
+ platformPrice: number;
861
+ account?: {
862
+ status: "ERROR" | "CONNECTED" | "DISCONNECTED";
863
+ userId: string | number;
864
+ name: string;
865
+ platform: "VINTED" | "SHOPIFY";
866
+ accountId: string;
867
+ } | null | undefined;
868
+ }[] | null | undefined;
852
869
  files?: {
853
870
  fileId: string;
854
871
  itemId: string | number;
@@ -863,7 +880,6 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
863
880
  }[] | null | undefined;
864
881
  categoryId?: number | null | undefined;
865
882
  brandId?: string | number | null | undefined;
866
- sex?: string | null | undefined;
867
883
  purchasePrice?: number | null | undefined;
868
884
  purchaseDate?: Date | null | undefined;
869
885
  purchasePlaceId?: string | number | null | undefined;
@@ -918,22 +934,6 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
918
934
  itemId: string | number;
919
935
  data?: string | null | undefined;
920
936
  } | null | undefined;
921
- platforms?: {
922
- status: "DELETED" | "ONLINE" | "DRAFT" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN" | "PENDING" | "ERROR" | "DISPUTE";
923
- id: string;
924
- itemId: string | number;
925
- accountId: string;
926
- platformId: string;
927
- platformUrl: string;
928
- platformPrice: number;
929
- account?: {
930
- status: "ERROR" | "CONNECTED" | "DISCONNECTED";
931
- userId: string | number;
932
- name: string;
933
- platform: "VINTED" | "SHOPIFY";
934
- accountId: string;
935
- } | null | undefined;
936
- }[] | null | undefined;
937
937
  }[];
938
938
  transaction: {
939
939
  id: string;
@@ -943,7 +943,7 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
943
943
  transactionId: string;
944
944
  itemOnPlatformId: string;
945
945
  itemOnPlatform?: {
946
- status: "DELETED" | "ONLINE" | "DRAFT" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN" | "PENDING" | "ERROR" | "DISPUTE";
946
+ status: "DELETED" | "PENDING" | "DRAFT" | "ONLINE" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN" | "ERROR" | "DISPUTE";
947
947
  id: string;
948
948
  itemId: string | number;
949
949
  accountId: string;
@@ -0,0 +1,3 @@
1
+ import { z } from "zod";
2
+ export declare const PreferencePriceNegotiationProfileSchema: z.ZodEnum<["AUTO", "MODERATE", "CONSERVATIVE"]>;
3
+ export type PreferencePriceNegotiationProfile = z.infer<typeof PreferencePriceNegotiationProfileSchema>;
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PreferencePriceNegotiationProfileSchema = void 0;
4
+ const zod_1 = require("zod");
5
+ exports.PreferencePriceNegotiationProfileSchema = zod_1.z.enum([
6
+ "AUTO", "MODERATE", "CONSERVATIVE"
7
+ ]);
@@ -0,0 +1,6 @@
1
+ import {z} from "zod"
2
+
3
+ export const PreferencePriceNegotiationProfileSchema = z.enum([
4
+ "AUTO", "MODERATE", "CONSERVATIVE"
5
+ ])
6
+ export type PreferencePriceNegotiationProfile = z.infer<typeof PreferencePriceNegotiationProfileSchema>
@@ -4,15 +4,18 @@ export declare const PreferencePricePayloadSchema: z.ZodObject<{
4
4
  value: z.ZodNumber;
5
5
  roundType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["NEAREST", "UP", "DOWN", "CUSTOM"]>>>;
6
6
  roundStep: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7
+ negotiationProfile: z.ZodOptional<z.ZodNullable<z.ZodEnum<["AUTO", "MODERATE", "CONSERVATIVE"]>>>;
7
8
  }, "strip", z.ZodTypeAny, {
8
9
  value: number;
9
10
  type: "PERCENTAGE" | "ABSOLUTE";
10
11
  roundType?: "NEAREST" | "UP" | "DOWN" | "CUSTOM" | null | undefined;
11
12
  roundStep?: number | null | undefined;
13
+ negotiationProfile?: "AUTO" | "MODERATE" | "CONSERVATIVE" | null | undefined;
12
14
  }, {
13
15
  value: number;
14
16
  type: "PERCENTAGE" | "ABSOLUTE";
15
17
  roundType?: "NEAREST" | "UP" | "DOWN" | "CUSTOM" | null | undefined;
16
18
  roundStep?: number | null | undefined;
19
+ negotiationProfile?: "AUTO" | "MODERATE" | "CONSERVATIVE" | null | undefined;
17
20
  }>;
18
21
  export type PreferencePricePayload = z.infer<typeof PreferencePricePayloadSchema>;
@@ -4,9 +4,11 @@ exports.PreferencePricePayloadSchema = void 0;
4
4
  const zod_1 = require("zod");
5
5
  const PreferencePricePayloadType_1 = require("./PreferencePricePayloadType");
6
6
  const PreferencePricePayloadRoundType_1 = require("./PreferencePricePayloadRoundType");
7
+ const PreferencePriceNegotiationProfile_1 = require("./PreferencePriceNegotiationProfile");
7
8
  exports.PreferencePricePayloadSchema = zod_1.z.object({
8
9
  type: PreferencePricePayloadType_1.PreferencePricePayloadTypeSchema,
9
10
  value: zod_1.z.number(),
10
11
  roundType: PreferencePricePayloadRoundType_1.PreferencePricePayloadRoundTypeSchema.nullish(),
11
- roundStep: zod_1.z.number().nullish()
12
+ roundStep: zod_1.z.number().nullish(),
13
+ negotiationProfile: PreferencePriceNegotiationProfile_1.PreferencePriceNegotiationProfileSchema.nullish()
12
14
  });
@@ -1,11 +1,13 @@
1
1
  import {z} from "zod"
2
2
  import {PreferencePricePayloadTypeSchema} from "./PreferencePricePayloadType"
3
3
  import {PreferencePricePayloadRoundTypeSchema} from "./PreferencePricePayloadRoundType"
4
+ import {PreferencePriceNegotiationProfileSchema} from "./PreferencePriceNegotiationProfile"
4
5
 
5
6
  export const PreferencePricePayloadSchema = z.object({
6
7
  type: PreferencePricePayloadTypeSchema,
7
8
  value: z.number(),
8
9
  roundType: PreferencePricePayloadRoundTypeSchema.nullish(),
9
- roundStep: z.number().nullish()
10
+ roundStep: z.number().nullish(),
11
+ negotiationProfile: PreferencePriceNegotiationProfileSchema.nullish()
10
12
  })
11
13
  export type PreferencePricePayload = z.infer<typeof PreferencePricePayloadSchema>
package/src/index.d.ts CHANGED
@@ -29,6 +29,8 @@ export { FeeRecurrenceSchema, FeeRecurrence } from "./com/controlresell/models/f
29
29
  export { SpotConfigSchema, SpotConfig } from "./com/controlresell/models/fields/SpotConfig";
30
30
  export { SpotDefaultValueSchema, SpotDefaultValue } from "./com/controlresell/models/fields/SpotDefaultValue";
31
31
  export { SpotValueSchema, SpotValue } from "./com/controlresell/models/fields/SpotValue";
32
+ export { SavedFiltersSchema, SavedFilters } from "./com/controlresell/models/filters/SavedFilters";
33
+ export { SavedFiltersPayloadSchema, SavedFiltersPayload } from "./com/controlresell/models/filters/SavedFiltersPayload";
32
34
  export { CreatedItemsSchema, CreatedItems } from "./com/controlresell/models/items/CreatedItems";
33
35
  export { ItemSchema, Item } from "./com/controlresell/models/items/Item";
34
36
  export { ItemFiltersContextSchema, ItemFiltersContext } from "./com/controlresell/models/items/ItemFiltersContext";
@@ -74,6 +76,7 @@ export { SizeSchema, Size } from "./com/controlresell/models/metadata/sizes/Size
74
76
  export { StatusSchema, Status } from "./com/controlresell/models/metadata/statuses/Status";
75
77
  export { CreateNotificationTokenPayloadSchema, CreateNotificationTokenPayload } from "./com/controlresell/models/notifications/CreateNotificationTokenPayload";
76
78
  export { NotificationTokenSchema, NotificationToken } from "./com/controlresell/models/notifications/NotificationToken";
79
+ export { PlatformFiltersContextSchema, PlatformFiltersContext } from "./com/controlresell/models/platforms/PlatformFiltersContext";
77
80
  export { ConversationSchema, Conversation } from "./com/controlresell/models/platforms/conversations/Conversation";
78
81
  export { ConversationOnPlatformUpdateRequestSchema, ConversationOnPlatformUpdateRequest } from "./com/controlresell/models/platforms/conversations/ConversationOnPlatformUpdateRequest";
79
82
  export { CreateConversationPayloadSchema, CreateConversationPayload } from "./com/controlresell/models/platforms/conversations/CreateConversationPayload";
@@ -128,6 +131,7 @@ export { PreferenceActionVariantPayloadSchema, PreferenceActionVariantPayload }
128
131
  export { PreferenceActionsPayloadSchema, PreferenceActionsPayload } from "./com/controlresell/models/preferences/payloads/actions/PreferenceActionsPayload";
129
132
  export { PreferenceFeesPayloadSchema, PreferenceFeesPayload } from "./com/controlresell/models/preferences/payloads/fees/PreferenceFeesPayload";
130
133
  export { PreferenceFeesPayloadFeeSchema, PreferenceFeesPayloadFee } from "./com/controlresell/models/preferences/payloads/fees/PreferenceFeesPayloadFee";
134
+ export { PreferencePriceNegotiationProfileSchema, PreferencePriceNegotiationProfile } from "./com/controlresell/models/preferences/payloads/prices/PreferencePriceNegotiationProfile";
131
135
  export { PreferencePricePayloadSchema, PreferencePricePayload } from "./com/controlresell/models/preferences/payloads/prices/PreferencePricePayload";
132
136
  export { PreferencePricePayloadRoundTypeSchema, PreferencePricePayloadRoundType } from "./com/controlresell/models/preferences/payloads/prices/PreferencePricePayloadRoundType";
133
137
  export { PreferencePricePayloadTypeSchema, PreferencePricePayloadType } from "./com/controlresell/models/preferences/payloads/prices/PreferencePricePayloadType";
package/src/index.js CHANGED
@@ -1,9 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ItemHistoryTypeWithCountSchema = exports.ItemHistoryTypeSchema = 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.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.UpdateConversationUserPayloadSchema = exports.CreateConversationUserPayloadSchema = exports.ConversationUserSchema = exports.TranslationContextSchema = exports.TranslatedMessageSchema = exports.CreateTranslatedMessagePayloadSchema = exports.UpdateConversationMessageOfferPayloadSchema = exports.CreateConversationMessageOfferPayloadSchema = 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.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.PlatformInfoSchema = exports.ItemOnPlatformsRequestWithItemSchema = exports.ItemOnPlatformsRequestSchema = exports.ItemOnPlatformUpdateRequestSchema = exports.ItemOnPlatformStatusSchema = exports.ItemOnPlatformSchema = exports.CreateItemOnPlatformPayloadSchema = exports.ItemLabelSchema = exports.CreateItemLabelPayloadSchema = exports.ItemHistoryScheduledPayloadSchema = exports.ItemHistoryFailedToPublishPayloadSchema = void 0;
5
- 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.PreferenceVisionPayloadSchema = exports.PreferenceTextPayloadSchema = exports.PreferencePricePayloadTypeSchema = exports.PreferencePricePayloadRoundTypeSchema = exports.PreferencePricePayloadSchema = exports.PreferenceFeesPayloadFeeSchema = exports.PreferenceFeesPayloadSchema = exports.PreferenceActionsPayloadSchema = exports.PreferenceActionVariantPayloadSchema = exports.PreferenceActionPayloadTypeSchema = exports.PreferenceActionPayloadSchema = exports.PreferenceCasePayloadSchema = exports.PreferenceCaseSchema = exports.UpdatePreferencePayloadSchema = exports.PreferenceTypeSchema = exports.PreferenceSchema = exports.CreatePreferencePayloadSchema = exports.TransactionWithItemsSchema = exports.ItemInTransactionSchema = exports.CreateItemInTransactionPayloadSchema = exports.UpdateTransactionPayloadSchema = exports.TransactionSchema = exports.CreateTransactionPayloadSchema = exports.UpdatePlatformPreferencePayloadSchema = exports.PlatformPreferenceSchema = exports.CreatePlatformPreferencePayloadSchema = exports.OrderWithItemsSchema = exports.ItemInOrderSchema = exports.CreateItemInOrderPayloadSchema = exports.UpdateOrderPayloadSchema = exports.OrderOnPlatformUpdateRequestSchema = exports.OrderSchema = exports.CreateOrderPayloadSchema = exports.OrderLabelSchema = exports.CreateOrderLabelPayloadSchema = void 0;
6
- exports.UserPreferenceSchema = exports.UserOnPlatformStatusSchema = exports.UserOnPlatformSessionMessageSchema = exports.UserOnPlatformRequestSchema = exports.UserOnPlatformSchema = exports.UpdateUserOnPlatformPayloadSchema = exports.PlatformJobUpdateSchema = exports.PlatformAuthRequestSchema = void 0;
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.TranslationContextSchema = exports.TranslatedMessageSchema = exports.CreateTranslatedMessagePayloadSchema = exports.UpdateConversationMessageOfferPayloadSchema = exports.CreateConversationMessageOfferPayloadSchema = 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.PlatformInfoSchema = exports.ItemOnPlatformsRequestWithItemSchema = exports.ItemOnPlatformsRequestSchema = exports.ItemOnPlatformUpdateRequestSchema = exports.ItemOnPlatformStatusSchema = exports.ItemOnPlatformSchema = exports.CreateItemOnPlatformPayloadSchema = exports.ItemLabelSchema = exports.CreateItemLabelPayloadSchema = exports.ItemHistoryScheduledPayloadSchema = exports.ItemHistoryFailedToPublishPayloadSchema = exports.ItemHistoryTypeWithCountSchema = exports.ItemHistoryTypeSchema = void 0;
5
+ exports.FieldTypeSchema = exports.FieldPayloadSchema = exports.FieldConfigSchema = exports.FieldSchema = exports.AffiliateSchema = exports.WalletSchema = exports.UserContextSchema = exports.UserSchema = exports.UpdateUserPayloadSchema = exports.GettingStartedStepsSchema = exports.CreateUserPayloadSchema = exports.PreferenceVisionPayloadSchema = exports.PreferenceTextPayloadSchema = exports.PreferencePricePayloadTypeSchema = exports.PreferencePricePayloadRoundTypeSchema = exports.PreferencePricePayloadSchema = exports.PreferencePriceNegotiationProfileSchema = exports.PreferenceFeesPayloadFeeSchema = exports.PreferenceFeesPayloadSchema = exports.PreferenceActionsPayloadSchema = exports.PreferenceActionVariantPayloadSchema = exports.PreferenceActionPayloadTypeSchema = exports.PreferenceActionPayloadSchema = exports.PreferenceCasePayloadSchema = exports.PreferenceCaseSchema = exports.UpdatePreferencePayloadSchema = exports.PreferenceTypeSchema = exports.PreferenceSchema = exports.CreatePreferencePayloadSchema = exports.TransactionWithItemsSchema = exports.ItemInTransactionSchema = exports.CreateItemInTransactionPayloadSchema = exports.UpdateTransactionPayloadSchema = exports.TransactionSchema = exports.CreateTransactionPayloadSchema = exports.UpdatePlatformPreferencePayloadSchema = exports.PlatformPreferenceSchema = exports.CreatePlatformPreferencePayloadSchema = exports.OrderWithItemsSchema = exports.ItemInOrderSchema = exports.CreateItemInOrderPayloadSchema = exports.UpdateOrderPayloadSchema = exports.OrderOnPlatformUpdateRequestSchema = exports.OrderSchema = exports.CreateOrderPayloadSchema = exports.OrderLabelSchema = exports.CreateOrderLabelPayloadSchema = exports.UpdateConversationUserPayloadSchema = exports.CreateConversationUserPayloadSchema = exports.ConversationUserSchema = void 0;
6
+ exports.UserPreferenceSchema = exports.UserOnPlatformStatusSchema = exports.UserOnPlatformSessionMessageSchema = exports.UserOnPlatformRequestSchema = exports.UserOnPlatformSchema = exports.UpdateUserOnPlatformPayloadSchema = exports.PlatformJobUpdateSchema = exports.PlatformAuthRequestSchema = exports.CreateUserOnPlatformPayloadSchema = exports.FileSchema = exports.CreateFilePayloadSchema = exports.FieldsWithDataSchema = 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");
@@ -66,6 +66,10 @@ var SpotDefaultValue_1 = require("./com/controlresell/models/fields/SpotDefaultV
66
66
  Object.defineProperty(exports, "SpotDefaultValueSchema", { enumerable: true, get: function () { return SpotDefaultValue_1.SpotDefaultValueSchema; } });
67
67
  var SpotValue_1 = require("./com/controlresell/models/fields/SpotValue");
68
68
  Object.defineProperty(exports, "SpotValueSchema", { enumerable: true, get: function () { return SpotValue_1.SpotValueSchema; } });
69
+ var SavedFilters_1 = require("./com/controlresell/models/filters/SavedFilters");
70
+ Object.defineProperty(exports, "SavedFiltersSchema", { enumerable: true, get: function () { return SavedFilters_1.SavedFiltersSchema; } });
71
+ var SavedFiltersPayload_1 = require("./com/controlresell/models/filters/SavedFiltersPayload");
72
+ Object.defineProperty(exports, "SavedFiltersPayloadSchema", { enumerable: true, get: function () { return SavedFiltersPayload_1.SavedFiltersPayloadSchema; } });
69
73
  var CreatedItems_1 = require("./com/controlresell/models/items/CreatedItems");
70
74
  Object.defineProperty(exports, "CreatedItemsSchema", { enumerable: true, get: function () { return CreatedItems_1.CreatedItemsSchema; } });
71
75
  var Item_1 = require("./com/controlresell/models/items/Item");
@@ -156,6 +160,8 @@ var CreateNotificationTokenPayload_1 = require("./com/controlresell/models/notif
156
160
  Object.defineProperty(exports, "CreateNotificationTokenPayloadSchema", { enumerable: true, get: function () { return CreateNotificationTokenPayload_1.CreateNotificationTokenPayloadSchema; } });
157
161
  var NotificationToken_1 = require("./com/controlresell/models/notifications/NotificationToken");
158
162
  Object.defineProperty(exports, "NotificationTokenSchema", { enumerable: true, get: function () { return NotificationToken_1.NotificationTokenSchema; } });
163
+ var PlatformFiltersContext_1 = require("./com/controlresell/models/platforms/PlatformFiltersContext");
164
+ Object.defineProperty(exports, "PlatformFiltersContextSchema", { enumerable: true, get: function () { return PlatformFiltersContext_1.PlatformFiltersContextSchema; } });
159
165
  var Conversation_1 = require("./com/controlresell/models/platforms/conversations/Conversation");
160
166
  Object.defineProperty(exports, "ConversationSchema", { enumerable: true, get: function () { return Conversation_1.ConversationSchema; } });
161
167
  var ConversationOnPlatformUpdateRequest_1 = require("./com/controlresell/models/platforms/conversations/ConversationOnPlatformUpdateRequest");
@@ -264,6 +270,8 @@ var PreferenceFeesPayload_1 = require("./com/controlresell/models/preferences/pa
264
270
  Object.defineProperty(exports, "PreferenceFeesPayloadSchema", { enumerable: true, get: function () { return PreferenceFeesPayload_1.PreferenceFeesPayloadSchema; } });
265
271
  var PreferenceFeesPayloadFee_1 = require("./com/controlresell/models/preferences/payloads/fees/PreferenceFeesPayloadFee");
266
272
  Object.defineProperty(exports, "PreferenceFeesPayloadFeeSchema", { enumerable: true, get: function () { return PreferenceFeesPayloadFee_1.PreferenceFeesPayloadFeeSchema; } });
273
+ var PreferencePriceNegotiationProfile_1 = require("./com/controlresell/models/preferences/payloads/prices/PreferencePriceNegotiationProfile");
274
+ Object.defineProperty(exports, "PreferencePriceNegotiationProfileSchema", { enumerable: true, get: function () { return PreferencePriceNegotiationProfile_1.PreferencePriceNegotiationProfileSchema; } });
267
275
  var PreferencePricePayload_1 = require("./com/controlresell/models/preferences/payloads/prices/PreferencePricePayload");
268
276
  Object.defineProperty(exports, "PreferencePricePayloadSchema", { enumerable: true, get: function () { return PreferencePricePayload_1.PreferencePricePayloadSchema; } });
269
277
  var PreferencePricePayloadRoundType_1 = require("./com/controlresell/models/preferences/payloads/prices/PreferencePricePayloadRoundType");
package/src/index.ts CHANGED
@@ -29,6 +29,8 @@ export {FeeRecurrenceSchema, FeeRecurrence} from "./com/controlresell/models/fee
29
29
  export {SpotConfigSchema, SpotConfig} from "./com/controlresell/models/fields/SpotConfig"
30
30
  export {SpotDefaultValueSchema, SpotDefaultValue} from "./com/controlresell/models/fields/SpotDefaultValue"
31
31
  export {SpotValueSchema, SpotValue} from "./com/controlresell/models/fields/SpotValue"
32
+ export {SavedFiltersSchema, SavedFilters} from "./com/controlresell/models/filters/SavedFilters"
33
+ export {SavedFiltersPayloadSchema, SavedFiltersPayload} from "./com/controlresell/models/filters/SavedFiltersPayload"
32
34
  export {CreatedItemsSchema, CreatedItems} from "./com/controlresell/models/items/CreatedItems"
33
35
  export {ItemSchema, Item} from "./com/controlresell/models/items/Item"
34
36
  export {ItemFiltersContextSchema, ItemFiltersContext} from "./com/controlresell/models/items/ItemFiltersContext"
@@ -74,6 +76,7 @@ export {SizeSchema, Size} from "./com/controlresell/models/metadata/sizes/Size"
74
76
  export {StatusSchema, Status} from "./com/controlresell/models/metadata/statuses/Status"
75
77
  export {CreateNotificationTokenPayloadSchema, CreateNotificationTokenPayload} from "./com/controlresell/models/notifications/CreateNotificationTokenPayload"
76
78
  export {NotificationTokenSchema, NotificationToken} from "./com/controlresell/models/notifications/NotificationToken"
79
+ export {PlatformFiltersContextSchema, PlatformFiltersContext} from "./com/controlresell/models/platforms/PlatformFiltersContext"
77
80
  export {ConversationSchema, Conversation} from "./com/controlresell/models/platforms/conversations/Conversation"
78
81
  export {ConversationOnPlatformUpdateRequestSchema, ConversationOnPlatformUpdateRequest} from "./com/controlresell/models/platforms/conversations/ConversationOnPlatformUpdateRequest"
79
82
  export {CreateConversationPayloadSchema, CreateConversationPayload} from "./com/controlresell/models/platforms/conversations/CreateConversationPayload"
@@ -128,6 +131,7 @@ export {PreferenceActionVariantPayloadSchema, PreferenceActionVariantPayload} fr
128
131
  export {PreferenceActionsPayloadSchema, PreferenceActionsPayload} from "./com/controlresell/models/preferences/payloads/actions/PreferenceActionsPayload"
129
132
  export {PreferenceFeesPayloadSchema, PreferenceFeesPayload} from "./com/controlresell/models/preferences/payloads/fees/PreferenceFeesPayload"
130
133
  export {PreferenceFeesPayloadFeeSchema, PreferenceFeesPayloadFee} from "./com/controlresell/models/preferences/payloads/fees/PreferenceFeesPayloadFee"
134
+ export {PreferencePriceNegotiationProfileSchema, PreferencePriceNegotiationProfile} from "./com/controlresell/models/preferences/payloads/prices/PreferencePriceNegotiationProfile"
131
135
  export {PreferencePricePayloadSchema, PreferencePricePayload} from "./com/controlresell/models/preferences/payloads/prices/PreferencePricePayload"
132
136
  export {PreferencePricePayloadRoundTypeSchema, PreferencePricePayloadRoundType} from "./com/controlresell/models/preferences/payloads/prices/PreferencePricePayloadRoundType"
133
137
  export {PreferencePricePayloadTypeSchema, PreferencePricePayloadType} from "./com/controlresell/models/preferences/payloads/prices/PreferencePricePayloadType"