controlresell 2.4.9 → 2.4.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.
Files changed (96) hide show
  1. package/package.json +2 -2
  2. package/src/com/controlresell/models/items/CreatedItems.d.ts +42 -0
  3. package/src/com/controlresell/models/items/CreatedItems.d.ts.map +1 -1
  4. package/src/com/controlresell/models/items/Item.d.ts +34 -0
  5. package/src/com/controlresell/models/items/Item.d.ts.map +1 -1
  6. package/src/com/controlresell/models/items/ItemsWithFilters.d.ts +42 -0
  7. package/src/com/controlresell/models/items/ItemsWithFilters.d.ts.map +1 -1
  8. package/src/com/controlresell/models/items/UpdatedItem.d.ts +42 -0
  9. package/src/com/controlresell/models/items/UpdatedItem.d.ts.map +1 -1
  10. package/src/com/controlresell/models/items/platforms/ItemOnPlatform.d.ts +26 -0
  11. package/src/com/controlresell/models/items/platforms/ItemOnPlatform.d.ts.map +1 -1
  12. package/src/com/controlresell/models/items/platforms/ItemOnPlatformUpdateRequest.d.ts +33 -0
  13. package/src/com/controlresell/models/items/platforms/ItemOnPlatformUpdateRequest.d.ts.map +1 -1
  14. package/src/com/controlresell/models/platforms/conversations/Conversation.d.ts +26 -0
  15. package/src/com/controlresell/models/platforms/conversations/Conversation.d.ts.map +1 -1
  16. package/src/com/controlresell/models/platforms/conversations/ConversationOnPlatformUpdateRequest.d.ts +35 -0
  17. package/src/com/controlresell/models/platforms/conversations/ConversationOnPlatformUpdateRequest.d.ts.map +1 -1
  18. package/src/com/controlresell/models/platforms/conversations/UserConversations.d.ts +34 -0
  19. package/src/com/controlresell/models/platforms/conversations/UserConversations.d.ts.map +1 -1
  20. package/src/com/controlresell/models/platforms/conversations/messages/offers/ConversationOfferRequest.d.ts +6 -0
  21. package/src/com/controlresell/models/platforms/conversations/messages/offers/ConversationOfferRequest.d.ts.map +1 -1
  22. package/src/com/controlresell/models/platforms/conversations/messages/offers/ConversationOfferRequest.js +4 -1
  23. package/src/com/controlresell/models/platforms/conversations/messages/offers/ConversationOfferRequest.js.map +1 -1
  24. package/src/com/controlresell/models/platforms/conversations/messages/offers/ConversationOfferRequest.ts +4 -1
  25. package/src/com/controlresell/models/platforms/favorites/Favorite.d.ts +60 -0
  26. package/src/com/controlresell/models/platforms/favorites/Favorite.d.ts.map +1 -1
  27. package/src/com/controlresell/models/platforms/favorites/FavoriteOnPlatformUpdateRequest.d.ts +37 -0
  28. package/src/com/controlresell/models/platforms/favorites/FavoriteOnPlatformUpdateRequest.d.ts.map +1 -1
  29. package/src/com/controlresell/models/platforms/orders/Order.d.ts +42 -0
  30. package/src/com/controlresell/models/platforms/orders/Order.d.ts.map +1 -1
  31. package/src/com/controlresell/models/platforms/orders/OrderOnPlatformUpdateRequest.d.ts +26 -0
  32. package/src/com/controlresell/models/platforms/orders/OrderOnPlatformUpdateRequest.d.ts.map +1 -1
  33. package/src/com/controlresell/models/platforms/orders/items/ItemInOrder.d.ts +34 -0
  34. package/src/com/controlresell/models/platforms/orders/items/ItemInOrder.d.ts.map +1 -1
  35. package/src/com/controlresell/models/platforms/orders/items/OrderWithItems.d.ts +92 -0
  36. package/src/com/controlresell/models/platforms/orders/items/OrderWithItems.d.ts.map +1 -1
  37. package/src/com/controlresell/models/platforms/transactions/Transaction.d.ts +42 -0
  38. package/src/com/controlresell/models/platforms/transactions/Transaction.d.ts.map +1 -1
  39. package/src/com/controlresell/models/platforms/transactions/items/ItemInTransaction.d.ts +34 -0
  40. package/src/com/controlresell/models/platforms/transactions/items/ItemInTransaction.d.ts.map +1 -1
  41. package/src/com/controlresell/models/platforms/transactions/items/TransactionWithItems.d.ts +92 -0
  42. package/src/com/controlresell/models/platforms/transactions/items/TransactionWithItems.d.ts.map +1 -1
  43. package/src/com/controlresell/models/preferences/Preference.d.ts +79 -0
  44. package/src/com/controlresell/models/preferences/Preference.d.ts.map +1 -1
  45. package/src/com/controlresell/models/preferences/PreferenceFilter.d.ts +68 -0
  46. package/src/com/controlresell/models/preferences/PreferenceFilter.d.ts.map +1 -1
  47. package/src/com/controlresell/models/preferences/PreferenceWithCase.d.ts +237 -0
  48. package/src/com/controlresell/models/preferences/PreferenceWithCase.d.ts.map +1 -1
  49. package/src/com/controlresell/models/preferences/PreferenceWithChildren.d.ts +168 -0
  50. package/src/com/controlresell/models/preferences/PreferenceWithChildren.d.ts.map +1 -1
  51. package/src/com/controlresell/models/preferences/cases/CreatePreferenceCasePayload.d.ts +69 -0
  52. package/src/com/controlresell/models/preferences/cases/CreatePreferenceCasePayload.d.ts.map +1 -1
  53. package/src/com/controlresell/models/preferences/cases/PartialPreferenceCasePayload.d.ts +69 -0
  54. package/src/com/controlresell/models/preferences/cases/PartialPreferenceCasePayload.d.ts.map +1 -1
  55. package/src/com/controlresell/models/preferences/cases/PreferenceCase.d.ts +69 -0
  56. package/src/com/controlresell/models/preferences/cases/PreferenceCase.d.ts.map +1 -1
  57. package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionPayload.d.ts +29 -0
  58. package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionPayload.d.ts.map +1 -1
  59. package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionPayloadDecodedPayload.d.ts +40 -0
  60. package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionPayloadDecodedPayload.d.ts.map +1 -1
  61. package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionPayloadDecodedPayload.js +7 -1
  62. package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionPayloadDecodedPayload.js.map +1 -1
  63. package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionPayloadDecodedPayload.ts +8 -0
  64. package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionsPayload.d.ts +39 -0
  65. package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionsPayload.d.ts.map +1 -1
  66. package/src/com/controlresell/models/preferences/payloads/texts/PreferenceTextsPayload.d.ts +10 -0
  67. package/src/com/controlresell/models/preferences/payloads/texts/PreferenceTextsPayload.d.ts.map +1 -0
  68. package/src/com/controlresell/models/preferences/payloads/texts/PreferenceTextsPayload.js +8 -0
  69. package/src/com/controlresell/models/preferences/payloads/texts/PreferenceTextsPayload.js.map +1 -0
  70. package/src/com/controlresell/models/preferences/payloads/texts/PreferenceTextsPayload.ts +6 -0
  71. package/src/com/controlresell/models/preferences/queue/PreferenceNextActionPayload.d.ts +306 -0
  72. package/src/com/controlresell/models/preferences/queue/PreferenceNextActionPayload.d.ts.map +1 -1
  73. package/src/com/controlresell/models/preferences/variants/PartialPreferenceCaseVariantPayload.d.ts +59 -0
  74. package/src/com/controlresell/models/preferences/variants/PartialPreferenceCaseVariantPayload.d.ts.map +1 -1
  75. package/src/com/controlresell/models/preferences/variants/PreferenceCaseVariant.d.ts +59 -0
  76. package/src/com/controlresell/models/preferences/variants/PreferenceCaseVariant.d.ts.map +1 -1
  77. package/src/com/controlresell/models/preferences/variants/PreferenceCaseVariantDecodedPayload.d.ts +98 -0
  78. package/src/com/controlresell/models/preferences/variants/PreferenceCaseVariantDecodedPayload.d.ts.map +1 -1
  79. package/src/com/controlresell/models/preferences/variants/PreferenceCaseVariantPayload.d.ts +59 -0
  80. package/src/com/controlresell/models/preferences/variants/PreferenceCaseVariantPayload.d.ts.map +1 -1
  81. package/src/com/controlresell/models/users/platforms/PlatformAuthRequest.d.ts +26 -0
  82. package/src/com/controlresell/models/users/platforms/PlatformAuthRequest.d.ts.map +1 -1
  83. package/src/com/controlresell/models/users/platforms/PlatformJobUpdate.d.ts +26 -0
  84. package/src/com/controlresell/models/users/platforms/PlatformJobUpdate.d.ts.map +1 -1
  85. package/src/com/controlresell/models/users/platforms/UserOnPlatform.d.ts +18 -0
  86. package/src/com/controlresell/models/users/platforms/UserOnPlatform.d.ts.map +1 -1
  87. package/src/com/controlresell/models/users/platforms/UserOnPlatform.js +3 -1
  88. package/src/com/controlresell/models/users/platforms/UserOnPlatform.js.map +1 -1
  89. package/src/com/controlresell/models/users/platforms/UserOnPlatform.ts +3 -1
  90. package/src/com/controlresell/models/users/ws/UserWsPayload.d.ts +68 -0
  91. package/src/com/controlresell/models/users/ws/UserWsPayload.d.ts.map +1 -1
  92. package/src/index.d.ts +1 -0
  93. package/src/index.d.ts.map +1 -1
  94. package/src/index.js +3 -1
  95. package/src/index.js.map +1 -1
  96. package/src/index.ts +1 -0
@@ -26,12 +26,26 @@ export declare const OrderSchema: z.ZodObject<{
26
26
  name: z.ZodString;
27
27
  locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
28
28
  status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "ERROR"]>;
29
+ night: z.ZodOptional<z.ZodNullable<z.ZodObject<{
30
+ startsAt: z.ZodDate;
31
+ endsAt: z.ZodDate;
32
+ }, "strip", z.ZodTypeAny, {
33
+ startsAt: Date;
34
+ endsAt: Date;
35
+ }, {
36
+ startsAt: Date;
37
+ endsAt: Date;
38
+ }>>>;
29
39
  }, "strip", z.ZodTypeAny, {
30
40
  status: "ERROR" | "CONNECTED" | "DISCONNECTED";
31
41
  userId: string | number;
32
42
  name: string;
33
43
  platform: "VINTED" | "SHOPIFY";
34
44
  accountId: string;
45
+ night?: {
46
+ startsAt: Date;
47
+ endsAt: Date;
48
+ } | null | undefined;
35
49
  locale?: string | null | undefined;
36
50
  }, {
37
51
  status: "ERROR" | "CONNECTED" | "DISCONNECTED";
@@ -39,6 +53,10 @@ export declare const OrderSchema: z.ZodObject<{
39
53
  name: string;
40
54
  platform: "VINTED" | "SHOPIFY";
41
55
  accountId: string;
56
+ night?: {
57
+ startsAt: Date;
58
+ endsAt: Date;
59
+ } | null | undefined;
42
60
  locale?: string | null | undefined;
43
61
  }>>>;
44
62
  }, "strip", z.ZodTypeAny, {
@@ -55,6 +73,10 @@ export declare const OrderSchema: z.ZodObject<{
55
73
  name: string;
56
74
  platform: "VINTED" | "SHOPIFY";
57
75
  accountId: string;
76
+ night?: {
77
+ startsAt: Date;
78
+ endsAt: Date;
79
+ } | null | undefined;
58
80
  locale?: string | null | undefined;
59
81
  } | null | undefined;
60
82
  }, {
@@ -71,6 +93,10 @@ export declare const OrderSchema: z.ZodObject<{
71
93
  name: string;
72
94
  platform: "VINTED" | "SHOPIFY";
73
95
  accountId: string;
96
+ night?: {
97
+ startsAt: Date;
98
+ endsAt: Date;
99
+ } | null | undefined;
74
100
  locale?: string | null | undefined;
75
101
  } | null | undefined;
76
102
  }>>>;
@@ -91,6 +117,10 @@ export declare const OrderSchema: z.ZodObject<{
91
117
  name: string;
92
118
  platform: "VINTED" | "SHOPIFY";
93
119
  accountId: string;
120
+ night?: {
121
+ startsAt: Date;
122
+ endsAt: Date;
123
+ } | null | undefined;
94
124
  locale?: string | null | undefined;
95
125
  } | null | undefined;
96
126
  } | null | undefined;
@@ -111,6 +141,10 @@ export declare const OrderSchema: z.ZodObject<{
111
141
  name: string;
112
142
  platform: "VINTED" | "SHOPIFY";
113
143
  accountId: string;
144
+ night?: {
145
+ startsAt: Date;
146
+ endsAt: Date;
147
+ } | null | undefined;
114
148
  locale?: string | null | undefined;
115
149
  } | null | undefined;
116
150
  } | null | undefined;
@@ -221,6 +255,10 @@ export declare const OrderSchema: z.ZodObject<{
221
255
  name: string;
222
256
  platform: "VINTED" | "SHOPIFY";
223
257
  accountId: string;
258
+ night?: {
259
+ startsAt: Date;
260
+ endsAt: Date;
261
+ } | null | undefined;
224
262
  locale?: string | null | undefined;
225
263
  } | null | undefined;
226
264
  } | null | undefined;
@@ -271,6 +309,10 @@ export declare const OrderSchema: z.ZodObject<{
271
309
  name: string;
272
310
  platform: "VINTED" | "SHOPIFY";
273
311
  accountId: string;
312
+ night?: {
313
+ startsAt: Date;
314
+ endsAt: Date;
315
+ } | null | undefined;
274
316
  locale?: string | null | undefined;
275
317
  } | null | undefined;
276
318
  } | null | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"Order.d.ts","sourceRoot":"","sources":["Order.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAKrB,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAWtB,CAAA;AACF,MAAM,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAA"}
1
+ {"version":3,"file":"Order.d.ts","sourceRoot":"","sources":["Order.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAKrB,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAWtB,CAAA;AACF,MAAM,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAA"}
@@ -32,12 +32,26 @@ export declare const OrderOnPlatformUpdateRequestSchema: z.ZodObject<{
32
32
  name: z.ZodString;
33
33
  locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
34
34
  status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "ERROR"]>;
35
+ night: z.ZodOptional<z.ZodNullable<z.ZodObject<{
36
+ startsAt: z.ZodDate;
37
+ endsAt: z.ZodDate;
38
+ }, "strip", z.ZodTypeAny, {
39
+ startsAt: Date;
40
+ endsAt: Date;
41
+ }, {
42
+ startsAt: Date;
43
+ endsAt: Date;
44
+ }>>>;
35
45
  }, "strip", z.ZodTypeAny, {
36
46
  status: "ERROR" | "CONNECTED" | "DISCONNECTED";
37
47
  userId: string | number;
38
48
  name: string;
39
49
  platform: "VINTED" | "SHOPIFY";
40
50
  accountId: string;
51
+ night?: {
52
+ startsAt: Date;
53
+ endsAt: Date;
54
+ } | null | undefined;
41
55
  locale?: string | null | undefined;
42
56
  }, {
43
57
  status: "ERROR" | "CONNECTED" | "DISCONNECTED";
@@ -45,6 +59,10 @@ export declare const OrderOnPlatformUpdateRequestSchema: z.ZodObject<{
45
59
  name: string;
46
60
  platform: "VINTED" | "SHOPIFY";
47
61
  accountId: string;
62
+ night?: {
63
+ startsAt: Date;
64
+ endsAt: Date;
65
+ } | null | undefined;
48
66
  locale?: string | null | undefined;
49
67
  }>;
50
68
  }, "strip", z.ZodTypeAny, {
@@ -54,6 +72,10 @@ export declare const OrderOnPlatformUpdateRequestSchema: z.ZodObject<{
54
72
  name: string;
55
73
  platform: "VINTED" | "SHOPIFY";
56
74
  accountId: string;
75
+ night?: {
76
+ startsAt: Date;
77
+ endsAt: Date;
78
+ } | null | undefined;
57
79
  locale?: string | null | undefined;
58
80
  };
59
81
  order: {
@@ -72,6 +94,10 @@ export declare const OrderOnPlatformUpdateRequestSchema: z.ZodObject<{
72
94
  name: string;
73
95
  platform: "VINTED" | "SHOPIFY";
74
96
  accountId: string;
97
+ night?: {
98
+ startsAt: Date;
99
+ endsAt: Date;
100
+ } | null | undefined;
75
101
  locale?: string | null | undefined;
76
102
  };
77
103
  order: {
@@ -1 +1 @@
1
- {"version":3,"file":"OrderOnPlatformUpdateRequest.d.ts","sourceRoot":"","sources":["OrderOnPlatformUpdateRequest.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAIrB,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAG7C,CAAA;AACF,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kCAAkC,CAAC,CAAA"}
1
+ {"version":3,"file":"OrderOnPlatformUpdateRequest.d.ts","sourceRoot":"","sources":["OrderOnPlatformUpdateRequest.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAIrB,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAG7C,CAAA;AACF,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kCAAkC,CAAC,CAAA"}
@@ -17,12 +17,26 @@ export declare const ItemInOrderSchema: z.ZodObject<{
17
17
  name: z.ZodString;
18
18
  locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19
19
  status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "ERROR"]>;
20
+ night: z.ZodOptional<z.ZodNullable<z.ZodObject<{
21
+ startsAt: z.ZodDate;
22
+ endsAt: z.ZodDate;
23
+ }, "strip", z.ZodTypeAny, {
24
+ startsAt: Date;
25
+ endsAt: Date;
26
+ }, {
27
+ startsAt: Date;
28
+ endsAt: Date;
29
+ }>>>;
20
30
  }, "strip", z.ZodTypeAny, {
21
31
  status: "ERROR" | "CONNECTED" | "DISCONNECTED";
22
32
  userId: string | number;
23
33
  name: string;
24
34
  platform: "VINTED" | "SHOPIFY";
25
35
  accountId: string;
36
+ night?: {
37
+ startsAt: Date;
38
+ endsAt: Date;
39
+ } | null | undefined;
26
40
  locale?: string | null | undefined;
27
41
  }, {
28
42
  status: "ERROR" | "CONNECTED" | "DISCONNECTED";
@@ -30,6 +44,10 @@ export declare const ItemInOrderSchema: z.ZodObject<{
30
44
  name: string;
31
45
  platform: "VINTED" | "SHOPIFY";
32
46
  accountId: string;
47
+ night?: {
48
+ startsAt: Date;
49
+ endsAt: Date;
50
+ } | null | undefined;
33
51
  locale?: string | null | undefined;
34
52
  }>>>;
35
53
  }, "strip", z.ZodTypeAny, {
@@ -46,6 +64,10 @@ export declare const ItemInOrderSchema: z.ZodObject<{
46
64
  name: string;
47
65
  platform: "VINTED" | "SHOPIFY";
48
66
  accountId: string;
67
+ night?: {
68
+ startsAt: Date;
69
+ endsAt: Date;
70
+ } | null | undefined;
49
71
  locale?: string | null | undefined;
50
72
  } | null | undefined;
51
73
  }, {
@@ -62,6 +84,10 @@ export declare const ItemInOrderSchema: z.ZodObject<{
62
84
  name: string;
63
85
  platform: "VINTED" | "SHOPIFY";
64
86
  accountId: string;
87
+ night?: {
88
+ startsAt: Date;
89
+ endsAt: Date;
90
+ } | null | undefined;
65
91
  locale?: string | null | undefined;
66
92
  } | null | undefined;
67
93
  }>>>;
@@ -82,6 +108,10 @@ export declare const ItemInOrderSchema: z.ZodObject<{
82
108
  name: string;
83
109
  platform: "VINTED" | "SHOPIFY";
84
110
  accountId: string;
111
+ night?: {
112
+ startsAt: Date;
113
+ endsAt: Date;
114
+ } | null | undefined;
85
115
  locale?: string | null | undefined;
86
116
  } | null | undefined;
87
117
  } | null | undefined;
@@ -102,6 +132,10 @@ export declare const ItemInOrderSchema: z.ZodObject<{
102
132
  name: string;
103
133
  platform: "VINTED" | "SHOPIFY";
104
134
  accountId: string;
135
+ night?: {
136
+ startsAt: Date;
137
+ endsAt: Date;
138
+ } | null | undefined;
105
139
  locale?: string | null | undefined;
106
140
  } | null | undefined;
107
141
  } | null | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"ItemInOrder.d.ts","sourceRoot":"","sources":["ItemInOrder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAGrB,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAI5B,CAAA;AACF,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAA"}
1
+ {"version":3,"file":"ItemInOrder.d.ts","sourceRoot":"","sources":["ItemInOrder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAGrB,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAI5B,CAAA;AACF,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAA"}
@@ -27,12 +27,26 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
27
27
  name: z.ZodString;
28
28
  locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
29
29
  status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "ERROR"]>;
30
+ night: z.ZodOptional<z.ZodNullable<z.ZodObject<{
31
+ startsAt: z.ZodDate;
32
+ endsAt: z.ZodDate;
33
+ }, "strip", z.ZodTypeAny, {
34
+ startsAt: Date;
35
+ endsAt: Date;
36
+ }, {
37
+ startsAt: Date;
38
+ endsAt: Date;
39
+ }>>>;
30
40
  }, "strip", z.ZodTypeAny, {
31
41
  status: "ERROR" | "CONNECTED" | "DISCONNECTED";
32
42
  userId: string | number;
33
43
  name: string;
34
44
  platform: "VINTED" | "SHOPIFY";
35
45
  accountId: string;
46
+ night?: {
47
+ startsAt: Date;
48
+ endsAt: Date;
49
+ } | null | undefined;
36
50
  locale?: string | null | undefined;
37
51
  }, {
38
52
  status: "ERROR" | "CONNECTED" | "DISCONNECTED";
@@ -40,6 +54,10 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
40
54
  name: string;
41
55
  platform: "VINTED" | "SHOPIFY";
42
56
  accountId: string;
57
+ night?: {
58
+ startsAt: Date;
59
+ endsAt: Date;
60
+ } | null | undefined;
43
61
  locale?: string | null | undefined;
44
62
  }>>>;
45
63
  }, "strip", z.ZodTypeAny, {
@@ -56,6 +74,10 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
56
74
  name: string;
57
75
  platform: "VINTED" | "SHOPIFY";
58
76
  accountId: string;
77
+ night?: {
78
+ startsAt: Date;
79
+ endsAt: Date;
80
+ } | null | undefined;
59
81
  locale?: string | null | undefined;
60
82
  } | null | undefined;
61
83
  }, {
@@ -72,6 +94,10 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
72
94
  name: string;
73
95
  platform: "VINTED" | "SHOPIFY";
74
96
  accountId: string;
97
+ night?: {
98
+ startsAt: Date;
99
+ endsAt: Date;
100
+ } | null | undefined;
75
101
  locale?: string | null | undefined;
76
102
  } | null | undefined;
77
103
  }>>>;
@@ -92,6 +118,10 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
92
118
  name: string;
93
119
  platform: "VINTED" | "SHOPIFY";
94
120
  accountId: string;
121
+ night?: {
122
+ startsAt: Date;
123
+ endsAt: Date;
124
+ } | null | undefined;
95
125
  locale?: string | null | undefined;
96
126
  } | null | undefined;
97
127
  } | null | undefined;
@@ -112,6 +142,10 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
112
142
  name: string;
113
143
  platform: "VINTED" | "SHOPIFY";
114
144
  accountId: string;
145
+ night?: {
146
+ startsAt: Date;
147
+ endsAt: Date;
148
+ } | null | undefined;
115
149
  locale?: string | null | undefined;
116
150
  } | null | undefined;
117
151
  } | null | undefined;
@@ -222,6 +256,10 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
222
256
  name: string;
223
257
  platform: "VINTED" | "SHOPIFY";
224
258
  accountId: string;
259
+ night?: {
260
+ startsAt: Date;
261
+ endsAt: Date;
262
+ } | null | undefined;
225
263
  locale?: string | null | undefined;
226
264
  } | null | undefined;
227
265
  } | null | undefined;
@@ -272,6 +310,10 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
272
310
  name: string;
273
311
  platform: "VINTED" | "SHOPIFY";
274
312
  accountId: string;
313
+ night?: {
314
+ startsAt: Date;
315
+ endsAt: Date;
316
+ } | null | undefined;
275
317
  locale?: string | null | undefined;
276
318
  } | null | undefined;
277
319
  } | null | undefined;
@@ -740,12 +782,26 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
740
782
  name: z.ZodString;
741
783
  locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
742
784
  status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "ERROR"]>;
785
+ night: z.ZodOptional<z.ZodNullable<z.ZodObject<{
786
+ startsAt: z.ZodDate;
787
+ endsAt: z.ZodDate;
788
+ }, "strip", z.ZodTypeAny, {
789
+ startsAt: Date;
790
+ endsAt: Date;
791
+ }, {
792
+ startsAt: Date;
793
+ endsAt: Date;
794
+ }>>>;
743
795
  }, "strip", z.ZodTypeAny, {
744
796
  status: "ERROR" | "CONNECTED" | "DISCONNECTED";
745
797
  userId: string | number;
746
798
  name: string;
747
799
  platform: "VINTED" | "SHOPIFY";
748
800
  accountId: string;
801
+ night?: {
802
+ startsAt: Date;
803
+ endsAt: Date;
804
+ } | null | undefined;
749
805
  locale?: string | null | undefined;
750
806
  }, {
751
807
  status: "ERROR" | "CONNECTED" | "DISCONNECTED";
@@ -753,6 +809,10 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
753
809
  name: string;
754
810
  platform: "VINTED" | "SHOPIFY";
755
811
  accountId: string;
812
+ night?: {
813
+ startsAt: Date;
814
+ endsAt: Date;
815
+ } | null | undefined;
756
816
  locale?: string | null | undefined;
757
817
  }>>>;
758
818
  }, "strip", z.ZodTypeAny, {
@@ -769,6 +829,10 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
769
829
  name: string;
770
830
  platform: "VINTED" | "SHOPIFY";
771
831
  accountId: string;
832
+ night?: {
833
+ startsAt: Date;
834
+ endsAt: Date;
835
+ } | null | undefined;
772
836
  locale?: string | null | undefined;
773
837
  } | null | undefined;
774
838
  }, {
@@ -785,6 +849,10 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
785
849
  name: string;
786
850
  platform: "VINTED" | "SHOPIFY";
787
851
  accountId: string;
852
+ night?: {
853
+ startsAt: Date;
854
+ endsAt: Date;
855
+ } | null | undefined;
788
856
  locale?: string | null | undefined;
789
857
  } | null | undefined;
790
858
  }>, "many">>>;
@@ -830,6 +898,10 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
830
898
  name: string;
831
899
  platform: "VINTED" | "SHOPIFY";
832
900
  accountId: string;
901
+ night?: {
902
+ startsAt: Date;
903
+ endsAt: Date;
904
+ } | null | undefined;
833
905
  locale?: string | null | undefined;
834
906
  } | null | undefined;
835
907
  }[] | null | undefined;
@@ -973,6 +1045,10 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
973
1045
  name: string;
974
1046
  platform: "VINTED" | "SHOPIFY";
975
1047
  accountId: string;
1048
+ night?: {
1049
+ startsAt: Date;
1050
+ endsAt: Date;
1051
+ } | null | undefined;
976
1052
  locale?: string | null | undefined;
977
1053
  } | null | undefined;
978
1054
  }[] | null | undefined;
@@ -1118,6 +1194,10 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
1118
1194
  name: string;
1119
1195
  platform: "VINTED" | "SHOPIFY";
1120
1196
  accountId: string;
1197
+ night?: {
1198
+ startsAt: Date;
1199
+ endsAt: Date;
1200
+ } | null | undefined;
1121
1201
  locale?: string | null | undefined;
1122
1202
  } | null | undefined;
1123
1203
  }[] | null | undefined;
@@ -1246,6 +1326,10 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
1246
1326
  name: string;
1247
1327
  platform: "VINTED" | "SHOPIFY";
1248
1328
  accountId: string;
1329
+ night?: {
1330
+ startsAt: Date;
1331
+ endsAt: Date;
1332
+ } | null | undefined;
1249
1333
  locale?: string | null | undefined;
1250
1334
  } | null | undefined;
1251
1335
  } | null | undefined;
@@ -1314,6 +1398,10 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
1314
1398
  name: string;
1315
1399
  platform: "VINTED" | "SHOPIFY";
1316
1400
  accountId: string;
1401
+ night?: {
1402
+ startsAt: Date;
1403
+ endsAt: Date;
1404
+ } | null | undefined;
1317
1405
  locale?: string | null | undefined;
1318
1406
  } | null | undefined;
1319
1407
  }[] | null | undefined;
@@ -1442,6 +1530,10 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
1442
1530
  name: string;
1443
1531
  platform: "VINTED" | "SHOPIFY";
1444
1532
  accountId: string;
1533
+ night?: {
1534
+ startsAt: Date;
1535
+ endsAt: Date;
1536
+ } | null | undefined;
1445
1537
  locale?: string | null | undefined;
1446
1538
  } | null | undefined;
1447
1539
  } | null | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"OrderWithItems.d.ts","sourceRoot":"","sources":["OrderWithItems.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAIrB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAG/B,CAAA;AACF,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAA"}
1
+ {"version":3,"file":"OrderWithItems.d.ts","sourceRoot":"","sources":["OrderWithItems.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAIrB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAG/B,CAAA;AACF,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAA"}
@@ -25,12 +25,26 @@ export declare const TransactionSchema: z.ZodObject<{
25
25
  name: z.ZodString;
26
26
  locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
27
27
  status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "ERROR"]>;
28
+ night: z.ZodOptional<z.ZodNullable<z.ZodObject<{
29
+ startsAt: z.ZodDate;
30
+ endsAt: z.ZodDate;
31
+ }, "strip", z.ZodTypeAny, {
32
+ startsAt: Date;
33
+ endsAt: Date;
34
+ }, {
35
+ startsAt: Date;
36
+ endsAt: Date;
37
+ }>>>;
28
38
  }, "strip", z.ZodTypeAny, {
29
39
  status: "ERROR" | "CONNECTED" | "DISCONNECTED";
30
40
  userId: string | number;
31
41
  name: string;
32
42
  platform: "VINTED" | "SHOPIFY";
33
43
  accountId: string;
44
+ night?: {
45
+ startsAt: Date;
46
+ endsAt: Date;
47
+ } | null | undefined;
34
48
  locale?: string | null | undefined;
35
49
  }, {
36
50
  status: "ERROR" | "CONNECTED" | "DISCONNECTED";
@@ -38,6 +52,10 @@ export declare const TransactionSchema: z.ZodObject<{
38
52
  name: string;
39
53
  platform: "VINTED" | "SHOPIFY";
40
54
  accountId: string;
55
+ night?: {
56
+ startsAt: Date;
57
+ endsAt: Date;
58
+ } | null | undefined;
41
59
  locale?: string | null | undefined;
42
60
  }>>>;
43
61
  }, "strip", z.ZodTypeAny, {
@@ -54,6 +72,10 @@ export declare const TransactionSchema: z.ZodObject<{
54
72
  name: string;
55
73
  platform: "VINTED" | "SHOPIFY";
56
74
  accountId: string;
75
+ night?: {
76
+ startsAt: Date;
77
+ endsAt: Date;
78
+ } | null | undefined;
57
79
  locale?: string | null | undefined;
58
80
  } | null | undefined;
59
81
  }, {
@@ -70,6 +92,10 @@ export declare const TransactionSchema: z.ZodObject<{
70
92
  name: string;
71
93
  platform: "VINTED" | "SHOPIFY";
72
94
  accountId: string;
95
+ night?: {
96
+ startsAt: Date;
97
+ endsAt: Date;
98
+ } | null | undefined;
73
99
  locale?: string | null | undefined;
74
100
  } | null | undefined;
75
101
  }>>>;
@@ -90,6 +116,10 @@ export declare const TransactionSchema: z.ZodObject<{
90
116
  name: string;
91
117
  platform: "VINTED" | "SHOPIFY";
92
118
  accountId: string;
119
+ night?: {
120
+ startsAt: Date;
121
+ endsAt: Date;
122
+ } | null | undefined;
93
123
  locale?: string | null | undefined;
94
124
  } | null | undefined;
95
125
  } | null | undefined;
@@ -110,6 +140,10 @@ export declare const TransactionSchema: z.ZodObject<{
110
140
  name: string;
111
141
  platform: "VINTED" | "SHOPIFY";
112
142
  accountId: string;
143
+ night?: {
144
+ startsAt: Date;
145
+ endsAt: Date;
146
+ } | null | undefined;
113
147
  locale?: string | null | undefined;
114
148
  } | null | undefined;
115
149
  } | null | undefined;
@@ -135,6 +169,10 @@ export declare const TransactionSchema: z.ZodObject<{
135
169
  name: string;
136
170
  platform: "VINTED" | "SHOPIFY";
137
171
  accountId: string;
172
+ night?: {
173
+ startsAt: Date;
174
+ endsAt: Date;
175
+ } | null | undefined;
138
176
  locale?: string | null | undefined;
139
177
  } | null | undefined;
140
178
  } | null | undefined;
@@ -164,6 +202,10 @@ export declare const TransactionSchema: z.ZodObject<{
164
202
  name: string;
165
203
  platform: "VINTED" | "SHOPIFY";
166
204
  accountId: string;
205
+ night?: {
206
+ startsAt: Date;
207
+ endsAt: Date;
208
+ } | null | undefined;
167
209
  locale?: string | null | undefined;
168
210
  } | null | undefined;
169
211
  } | null | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"Transaction.d.ts","sourceRoot":"","sources":["Transaction.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAGrB,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAS5B,CAAA;AACF,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAA"}
1
+ {"version":3,"file":"Transaction.d.ts","sourceRoot":"","sources":["Transaction.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAGrB,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAS5B,CAAA;AACF,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAA"}