controlresell 2.4.9 → 2.4.19
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 +2 -2
- package/src/com/controlresell/models/items/CreatedItems.d.ts +42 -0
- package/src/com/controlresell/models/items/CreatedItems.d.ts.map +1 -1
- package/src/com/controlresell/models/items/Item.d.ts +34 -0
- package/src/com/controlresell/models/items/Item.d.ts.map +1 -1
- package/src/com/controlresell/models/items/ItemsWithFilters.d.ts +42 -0
- package/src/com/controlresell/models/items/ItemsWithFilters.d.ts.map +1 -1
- package/src/com/controlresell/models/items/UpdatedItem.d.ts +42 -0
- package/src/com/controlresell/models/items/UpdatedItem.d.ts.map +1 -1
- package/src/com/controlresell/models/items/platforms/ItemOnPlatform.d.ts +26 -0
- package/src/com/controlresell/models/items/platforms/ItemOnPlatform.d.ts.map +1 -1
- package/src/com/controlresell/models/items/platforms/ItemOnPlatformUpdateRequest.d.ts +33 -0
- package/src/com/controlresell/models/items/platforms/ItemOnPlatformUpdateRequest.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/conversations/Conversation.d.ts +26 -0
- package/src/com/controlresell/models/platforms/conversations/Conversation.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/conversations/ConversationOnPlatformUpdateRequest.d.ts +35 -0
- package/src/com/controlresell/models/platforms/conversations/ConversationOnPlatformUpdateRequest.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/conversations/ConversationUpdate.d.ts +811 -0
- package/src/com/controlresell/models/platforms/conversations/ConversationUpdate.d.ts.map +1 -0
- package/src/com/controlresell/models/platforms/conversations/ConversationUpdate.js +13 -0
- package/src/com/controlresell/models/platforms/conversations/ConversationUpdate.js.map +1 -0
- package/src/com/controlresell/models/platforms/conversations/ConversationUpdate.ts +11 -0
- package/src/com/controlresell/models/platforms/conversations/UserConversations.d.ts +34 -0
- package/src/com/controlresell/models/platforms/conversations/UserConversations.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/conversations/messages/offers/ConversationOfferRequest.d.ts +6 -0
- package/src/com/controlresell/models/platforms/conversations/messages/offers/ConversationOfferRequest.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/conversations/messages/offers/ConversationOfferRequest.js +4 -1
- package/src/com/controlresell/models/platforms/conversations/messages/offers/ConversationOfferRequest.js.map +1 -1
- package/src/com/controlresell/models/platforms/conversations/messages/offers/ConversationOfferRequest.ts +4 -1
- package/src/com/controlresell/models/platforms/conversations/messages/offers/NegotiationOffer.d.ts +16 -0
- package/src/com/controlresell/models/platforms/conversations/messages/offers/NegotiationOffer.d.ts.map +1 -0
- package/src/com/controlresell/models/platforms/conversations/messages/offers/NegotiationOffer.js +10 -0
- package/src/com/controlresell/models/platforms/conversations/messages/offers/NegotiationOffer.js.map +1 -0
- package/src/com/controlresell/models/platforms/conversations/messages/offers/NegotiationOffer.ts +8 -0
- package/src/com/controlresell/models/platforms/conversations/messages/offers/NegotiationParameters.d.ts +16 -0
- package/src/com/controlresell/models/platforms/conversations/messages/offers/NegotiationParameters.d.ts.map +1 -0
- package/src/com/controlresell/models/platforms/conversations/messages/offers/NegotiationParameters.js +11 -0
- package/src/com/controlresell/models/platforms/conversations/messages/offers/NegotiationParameters.js.map +1 -0
- package/src/com/controlresell/models/platforms/conversations/messages/offers/NegotiationParameters.ts +9 -0
- package/src/com/controlresell/models/platforms/favorites/Favorite.d.ts +60 -0
- package/src/com/controlresell/models/platforms/favorites/Favorite.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/favorites/FavoriteOnPlatformUpdateRequest.d.ts +37 -0
- package/src/com/controlresell/models/platforms/favorites/FavoriteOnPlatformUpdateRequest.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/favorites/SendFavoritesRequest.d.ts +10 -0
- package/src/com/controlresell/models/platforms/favorites/SendFavoritesRequest.d.ts.map +1 -0
- package/src/com/controlresell/models/platforms/favorites/SendFavoritesRequest.js +8 -0
- package/src/com/controlresell/models/platforms/favorites/SendFavoritesRequest.js.map +1 -0
- package/src/com/controlresell/models/platforms/favorites/SendFavoritesRequest.ts +6 -0
- package/src/com/controlresell/models/platforms/orders/Order.d.ts +42 -0
- package/src/com/controlresell/models/platforms/orders/Order.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/orders/OrderOnPlatformUpdateRequest.d.ts +26 -0
- package/src/com/controlresell/models/platforms/orders/OrderOnPlatformUpdateRequest.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/orders/items/ItemInOrder.d.ts +34 -0
- package/src/com/controlresell/models/platforms/orders/items/ItemInOrder.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/orders/items/OrderWithItems.d.ts +92 -0
- package/src/com/controlresell/models/platforms/orders/items/OrderWithItems.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/transactions/Transaction.d.ts +42 -0
- package/src/com/controlresell/models/platforms/transactions/Transaction.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/transactions/items/ItemInTransaction.d.ts +34 -0
- package/src/com/controlresell/models/platforms/transactions/items/ItemInTransaction.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/transactions/items/TransactionWithItems.d.ts +92 -0
- package/src/com/controlresell/models/platforms/transactions/items/TransactionWithItems.d.ts.map +1 -1
- package/src/com/controlresell/models/preferences/Preference.d.ts +79 -0
- package/src/com/controlresell/models/preferences/Preference.d.ts.map +1 -1
- package/src/com/controlresell/models/preferences/PreferenceFilter.d.ts +68 -0
- package/src/com/controlresell/models/preferences/PreferenceFilter.d.ts.map +1 -1
- package/src/com/controlresell/models/preferences/PreferenceWithCase.d.ts +237 -0
- package/src/com/controlresell/models/preferences/PreferenceWithCase.d.ts.map +1 -1
- package/src/com/controlresell/models/preferences/PreferenceWithChildren.d.ts +168 -0
- package/src/com/controlresell/models/preferences/PreferenceWithChildren.d.ts.map +1 -1
- package/src/com/controlresell/models/preferences/cases/CreatePreferenceCasePayload.d.ts +69 -0
- package/src/com/controlresell/models/preferences/cases/CreatePreferenceCasePayload.d.ts.map +1 -1
- package/src/com/controlresell/models/preferences/cases/PartialPreferenceCasePayload.d.ts +69 -0
- package/src/com/controlresell/models/preferences/cases/PartialPreferenceCasePayload.d.ts.map +1 -1
- package/src/com/controlresell/models/preferences/cases/PreferenceCase.d.ts +69 -0
- package/src/com/controlresell/models/preferences/cases/PreferenceCase.d.ts.map +1 -1
- package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionPayload.d.ts +29 -0
- package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionPayload.d.ts.map +1 -1
- package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionPayloadDecodedPayload.d.ts +40 -0
- package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionPayloadDecodedPayload.d.ts.map +1 -1
- package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionPayloadDecodedPayload.js +7 -1
- package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionPayloadDecodedPayload.js.map +1 -1
- package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionPayloadDecodedPayload.ts +8 -0
- package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionsPayload.d.ts +39 -0
- package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionsPayload.d.ts.map +1 -1
- package/src/com/controlresell/models/preferences/payloads/texts/PreferenceTextsPayload.d.ts +10 -0
- package/src/com/controlresell/models/preferences/payloads/texts/PreferenceTextsPayload.d.ts.map +1 -0
- package/src/com/controlresell/models/preferences/payloads/texts/PreferenceTextsPayload.js +8 -0
- package/src/com/controlresell/models/preferences/payloads/texts/PreferenceTextsPayload.js.map +1 -0
- package/src/com/controlresell/models/preferences/payloads/texts/PreferenceTextsPayload.ts +6 -0
- package/src/com/controlresell/models/preferences/queue/PreferenceNextActionPayload.d.ts +306 -0
- package/src/com/controlresell/models/preferences/queue/PreferenceNextActionPayload.d.ts.map +1 -1
- package/src/com/controlresell/models/preferences/variants/PartialPreferenceCaseVariantPayload.d.ts +59 -0
- package/src/com/controlresell/models/preferences/variants/PartialPreferenceCaseVariantPayload.d.ts.map +1 -1
- package/src/com/controlresell/models/preferences/variants/PreferenceCaseVariant.d.ts +59 -0
- package/src/com/controlresell/models/preferences/variants/PreferenceCaseVariant.d.ts.map +1 -1
- package/src/com/controlresell/models/preferences/variants/PreferenceCaseVariantDecodedPayload.d.ts +98 -0
- package/src/com/controlresell/models/preferences/variants/PreferenceCaseVariantDecodedPayload.d.ts.map +1 -1
- package/src/com/controlresell/models/preferences/variants/PreferenceCaseVariantPayload.d.ts +59 -0
- package/src/com/controlresell/models/preferences/variants/PreferenceCaseVariantPayload.d.ts.map +1 -1
- package/src/com/controlresell/models/users/platforms/PlatformAuthRequest.d.ts +26 -0
- package/src/com/controlresell/models/users/platforms/PlatformAuthRequest.d.ts.map +1 -1
- package/src/com/controlresell/models/users/platforms/PlatformJobUpdate.d.ts +26 -0
- package/src/com/controlresell/models/users/platforms/PlatformJobUpdate.d.ts.map +1 -1
- package/src/com/controlresell/models/users/platforms/UpdateUserOnPlatformPayload.d.ts +18 -0
- package/src/com/controlresell/models/users/platforms/UpdateUserOnPlatformPayload.d.ts.map +1 -1
- package/src/com/controlresell/models/users/platforms/UpdateUserOnPlatformPayload.js +3 -1
- package/src/com/controlresell/models/users/platforms/UpdateUserOnPlatformPayload.js.map +1 -1
- package/src/com/controlresell/models/users/platforms/UpdateUserOnPlatformPayload.ts +3 -1
- package/src/com/controlresell/models/users/platforms/UserOnPlatform.d.ts +18 -0
- package/src/com/controlresell/models/users/platforms/UserOnPlatform.d.ts.map +1 -1
- package/src/com/controlresell/models/users/platforms/UserOnPlatform.js +3 -1
- package/src/com/controlresell/models/users/platforms/UserOnPlatform.js.map +1 -1
- package/src/com/controlresell/models/users/platforms/UserOnPlatform.ts +3 -1
- package/src/com/controlresell/models/users/ws/UserWsPayload.d.ts +550 -0
- package/src/com/controlresell/models/users/ws/UserWsPayload.d.ts.map +1 -1
- package/src/com/controlresell/models/users/ws/UserWsPayload.js +2 -0
- package/src/com/controlresell/models/users/ws/UserWsPayload.js.map +1 -1
- package/src/com/controlresell/models/users/ws/UserWsPayload.ts +2 -0
- package/src/index.d.ts +5 -0
- package/src/index.d.ts.map +1 -1
- package/src/index.js +13 -3
- package/src/index.js.map +1 -1
- package/src/index.ts +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "controlresell",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.19",
|
|
4
4
|
"main": "src/index.js",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"typescript": "^5.9.2"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"controlresell-connector": "^0.6.
|
|
20
|
+
"controlresell-connector": "^0.6.9",
|
|
21
21
|
"zod": "^3.25.76",
|
|
22
22
|
"zodable-idschema": "^1.0.0",
|
|
23
23
|
"zodable-kotlin-primitives": "^1.0.0"
|
|
@@ -441,12 +441,26 @@ export declare const CreatedItemsSchema: z.ZodObject<{
|
|
|
441
441
|
name: z.ZodString;
|
|
442
442
|
locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
443
443
|
status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "ERROR"]>;
|
|
444
|
+
night: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
445
|
+
startsAt: z.ZodDate;
|
|
446
|
+
endsAt: z.ZodDate;
|
|
447
|
+
}, "strip", z.ZodTypeAny, {
|
|
448
|
+
startsAt: Date;
|
|
449
|
+
endsAt: Date;
|
|
450
|
+
}, {
|
|
451
|
+
startsAt: Date;
|
|
452
|
+
endsAt: Date;
|
|
453
|
+
}>>>;
|
|
444
454
|
}, "strip", z.ZodTypeAny, {
|
|
445
455
|
status: "ERROR" | "CONNECTED" | "DISCONNECTED";
|
|
446
456
|
userId: string | number;
|
|
447
457
|
name: string;
|
|
448
458
|
platform: "VINTED" | "SHOPIFY";
|
|
449
459
|
accountId: string;
|
|
460
|
+
night?: {
|
|
461
|
+
startsAt: Date;
|
|
462
|
+
endsAt: Date;
|
|
463
|
+
} | null | undefined;
|
|
450
464
|
locale?: string | null | undefined;
|
|
451
465
|
}, {
|
|
452
466
|
status: "ERROR" | "CONNECTED" | "DISCONNECTED";
|
|
@@ -454,6 +468,10 @@ export declare const CreatedItemsSchema: z.ZodObject<{
|
|
|
454
468
|
name: string;
|
|
455
469
|
platform: "VINTED" | "SHOPIFY";
|
|
456
470
|
accountId: string;
|
|
471
|
+
night?: {
|
|
472
|
+
startsAt: Date;
|
|
473
|
+
endsAt: Date;
|
|
474
|
+
} | null | undefined;
|
|
457
475
|
locale?: string | null | undefined;
|
|
458
476
|
}>>>;
|
|
459
477
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -470,6 +488,10 @@ export declare const CreatedItemsSchema: z.ZodObject<{
|
|
|
470
488
|
name: string;
|
|
471
489
|
platform: "VINTED" | "SHOPIFY";
|
|
472
490
|
accountId: string;
|
|
491
|
+
night?: {
|
|
492
|
+
startsAt: Date;
|
|
493
|
+
endsAt: Date;
|
|
494
|
+
} | null | undefined;
|
|
473
495
|
locale?: string | null | undefined;
|
|
474
496
|
} | null | undefined;
|
|
475
497
|
}, {
|
|
@@ -486,6 +508,10 @@ export declare const CreatedItemsSchema: z.ZodObject<{
|
|
|
486
508
|
name: string;
|
|
487
509
|
platform: "VINTED" | "SHOPIFY";
|
|
488
510
|
accountId: string;
|
|
511
|
+
night?: {
|
|
512
|
+
startsAt: Date;
|
|
513
|
+
endsAt: Date;
|
|
514
|
+
} | null | undefined;
|
|
489
515
|
locale?: string | null | undefined;
|
|
490
516
|
} | null | undefined;
|
|
491
517
|
}>, "many">>>;
|
|
@@ -531,6 +557,10 @@ export declare const CreatedItemsSchema: z.ZodObject<{
|
|
|
531
557
|
name: string;
|
|
532
558
|
platform: "VINTED" | "SHOPIFY";
|
|
533
559
|
accountId: string;
|
|
560
|
+
night?: {
|
|
561
|
+
startsAt: Date;
|
|
562
|
+
endsAt: Date;
|
|
563
|
+
} | null | undefined;
|
|
534
564
|
locale?: string | null | undefined;
|
|
535
565
|
} | null | undefined;
|
|
536
566
|
}[] | null | undefined;
|
|
@@ -674,6 +704,10 @@ export declare const CreatedItemsSchema: z.ZodObject<{
|
|
|
674
704
|
name: string;
|
|
675
705
|
platform: "VINTED" | "SHOPIFY";
|
|
676
706
|
accountId: string;
|
|
707
|
+
night?: {
|
|
708
|
+
startsAt: Date;
|
|
709
|
+
endsAt: Date;
|
|
710
|
+
} | null | undefined;
|
|
677
711
|
locale?: string | null | undefined;
|
|
678
712
|
} | null | undefined;
|
|
679
713
|
}[] | null | undefined;
|
|
@@ -841,6 +875,10 @@ export declare const CreatedItemsSchema: z.ZodObject<{
|
|
|
841
875
|
name: string;
|
|
842
876
|
platform: "VINTED" | "SHOPIFY";
|
|
843
877
|
accountId: string;
|
|
878
|
+
night?: {
|
|
879
|
+
startsAt: Date;
|
|
880
|
+
endsAt: Date;
|
|
881
|
+
} | null | undefined;
|
|
844
882
|
locale?: string | null | undefined;
|
|
845
883
|
} | null | undefined;
|
|
846
884
|
}[] | null | undefined;
|
|
@@ -994,6 +1032,10 @@ export declare const CreatedItemsSchema: z.ZodObject<{
|
|
|
994
1032
|
name: string;
|
|
995
1033
|
platform: "VINTED" | "SHOPIFY";
|
|
996
1034
|
accountId: string;
|
|
1035
|
+
night?: {
|
|
1036
|
+
startsAt: Date;
|
|
1037
|
+
endsAt: Date;
|
|
1038
|
+
} | null | undefined;
|
|
997
1039
|
locale?: string | null | undefined;
|
|
998
1040
|
} | null | undefined;
|
|
999
1041
|
}[] | null | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CreatedItems.d.ts","sourceRoot":"","sources":["CreatedItems.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAIrB,eAAO,MAAM,kBAAkB
|
|
1
|
+
{"version":3,"file":"CreatedItems.d.ts","sourceRoot":"","sources":["CreatedItems.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAIrB,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAG7B,CAAA;AACF,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAA"}
|
|
@@ -440,12 +440,26 @@ export declare const ItemSchema: z.ZodObject<{
|
|
|
440
440
|
name: z.ZodString;
|
|
441
441
|
locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
442
442
|
status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "ERROR"]>;
|
|
443
|
+
night: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
444
|
+
startsAt: z.ZodDate;
|
|
445
|
+
endsAt: z.ZodDate;
|
|
446
|
+
}, "strip", z.ZodTypeAny, {
|
|
447
|
+
startsAt: Date;
|
|
448
|
+
endsAt: Date;
|
|
449
|
+
}, {
|
|
450
|
+
startsAt: Date;
|
|
451
|
+
endsAt: Date;
|
|
452
|
+
}>>>;
|
|
443
453
|
}, "strip", z.ZodTypeAny, {
|
|
444
454
|
status: "ERROR" | "CONNECTED" | "DISCONNECTED";
|
|
445
455
|
userId: string | number;
|
|
446
456
|
name: string;
|
|
447
457
|
platform: "VINTED" | "SHOPIFY";
|
|
448
458
|
accountId: string;
|
|
459
|
+
night?: {
|
|
460
|
+
startsAt: Date;
|
|
461
|
+
endsAt: Date;
|
|
462
|
+
} | null | undefined;
|
|
449
463
|
locale?: string | null | undefined;
|
|
450
464
|
}, {
|
|
451
465
|
status: "ERROR" | "CONNECTED" | "DISCONNECTED";
|
|
@@ -453,6 +467,10 @@ export declare const ItemSchema: z.ZodObject<{
|
|
|
453
467
|
name: string;
|
|
454
468
|
platform: "VINTED" | "SHOPIFY";
|
|
455
469
|
accountId: string;
|
|
470
|
+
night?: {
|
|
471
|
+
startsAt: Date;
|
|
472
|
+
endsAt: Date;
|
|
473
|
+
} | null | undefined;
|
|
456
474
|
locale?: string | null | undefined;
|
|
457
475
|
}>>>;
|
|
458
476
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -469,6 +487,10 @@ export declare const ItemSchema: z.ZodObject<{
|
|
|
469
487
|
name: string;
|
|
470
488
|
platform: "VINTED" | "SHOPIFY";
|
|
471
489
|
accountId: string;
|
|
490
|
+
night?: {
|
|
491
|
+
startsAt: Date;
|
|
492
|
+
endsAt: Date;
|
|
493
|
+
} | null | undefined;
|
|
472
494
|
locale?: string | null | undefined;
|
|
473
495
|
} | null | undefined;
|
|
474
496
|
}, {
|
|
@@ -485,6 +507,10 @@ export declare const ItemSchema: z.ZodObject<{
|
|
|
485
507
|
name: string;
|
|
486
508
|
platform: "VINTED" | "SHOPIFY";
|
|
487
509
|
accountId: string;
|
|
510
|
+
night?: {
|
|
511
|
+
startsAt: Date;
|
|
512
|
+
endsAt: Date;
|
|
513
|
+
} | null | undefined;
|
|
488
514
|
locale?: string | null | undefined;
|
|
489
515
|
} | null | undefined;
|
|
490
516
|
}>, "many">>>;
|
|
@@ -530,6 +556,10 @@ export declare const ItemSchema: z.ZodObject<{
|
|
|
530
556
|
name: string;
|
|
531
557
|
platform: "VINTED" | "SHOPIFY";
|
|
532
558
|
accountId: string;
|
|
559
|
+
night?: {
|
|
560
|
+
startsAt: Date;
|
|
561
|
+
endsAt: Date;
|
|
562
|
+
} | null | undefined;
|
|
533
563
|
locale?: string | null | undefined;
|
|
534
564
|
} | null | undefined;
|
|
535
565
|
}[] | null | undefined;
|
|
@@ -673,6 +703,10 @@ export declare const ItemSchema: z.ZodObject<{
|
|
|
673
703
|
name: string;
|
|
674
704
|
platform: "VINTED" | "SHOPIFY";
|
|
675
705
|
accountId: string;
|
|
706
|
+
night?: {
|
|
707
|
+
startsAt: Date;
|
|
708
|
+
endsAt: Date;
|
|
709
|
+
} | null | undefined;
|
|
676
710
|
locale?: string | null | undefined;
|
|
677
711
|
} | null | undefined;
|
|
678
712
|
}[] | null | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Item.d.ts","sourceRoot":"","sources":["Item.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAUrB,eAAO,MAAM,UAAU
|
|
1
|
+
{"version":3,"file":"Item.d.ts","sourceRoot":"","sources":["Item.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAUrB,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoCrB,CAAA;AACF,MAAM,MAAM,IAAI,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,CAAA"}
|
|
@@ -443,12 +443,26 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
|
|
|
443
443
|
name: z.ZodString;
|
|
444
444
|
locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
445
445
|
status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "ERROR"]>;
|
|
446
|
+
night: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
447
|
+
startsAt: z.ZodDate;
|
|
448
|
+
endsAt: z.ZodDate;
|
|
449
|
+
}, "strip", z.ZodTypeAny, {
|
|
450
|
+
startsAt: Date;
|
|
451
|
+
endsAt: Date;
|
|
452
|
+
}, {
|
|
453
|
+
startsAt: Date;
|
|
454
|
+
endsAt: Date;
|
|
455
|
+
}>>>;
|
|
446
456
|
}, "strip", z.ZodTypeAny, {
|
|
447
457
|
status: "ERROR" | "CONNECTED" | "DISCONNECTED";
|
|
448
458
|
userId: string | number;
|
|
449
459
|
name: string;
|
|
450
460
|
platform: "VINTED" | "SHOPIFY";
|
|
451
461
|
accountId: string;
|
|
462
|
+
night?: {
|
|
463
|
+
startsAt: Date;
|
|
464
|
+
endsAt: Date;
|
|
465
|
+
} | null | undefined;
|
|
452
466
|
locale?: string | null | undefined;
|
|
453
467
|
}, {
|
|
454
468
|
status: "ERROR" | "CONNECTED" | "DISCONNECTED";
|
|
@@ -456,6 +470,10 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
|
|
|
456
470
|
name: string;
|
|
457
471
|
platform: "VINTED" | "SHOPIFY";
|
|
458
472
|
accountId: string;
|
|
473
|
+
night?: {
|
|
474
|
+
startsAt: Date;
|
|
475
|
+
endsAt: Date;
|
|
476
|
+
} | null | undefined;
|
|
459
477
|
locale?: string | null | undefined;
|
|
460
478
|
}>>>;
|
|
461
479
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -472,6 +490,10 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
|
|
|
472
490
|
name: string;
|
|
473
491
|
platform: "VINTED" | "SHOPIFY";
|
|
474
492
|
accountId: string;
|
|
493
|
+
night?: {
|
|
494
|
+
startsAt: Date;
|
|
495
|
+
endsAt: Date;
|
|
496
|
+
} | null | undefined;
|
|
475
497
|
locale?: string | null | undefined;
|
|
476
498
|
} | null | undefined;
|
|
477
499
|
}, {
|
|
@@ -488,6 +510,10 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
|
|
|
488
510
|
name: string;
|
|
489
511
|
platform: "VINTED" | "SHOPIFY";
|
|
490
512
|
accountId: string;
|
|
513
|
+
night?: {
|
|
514
|
+
startsAt: Date;
|
|
515
|
+
endsAt: Date;
|
|
516
|
+
} | null | undefined;
|
|
491
517
|
locale?: string | null | undefined;
|
|
492
518
|
} | null | undefined;
|
|
493
519
|
}>, "many">>>;
|
|
@@ -533,6 +559,10 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
|
|
|
533
559
|
name: string;
|
|
534
560
|
platform: "VINTED" | "SHOPIFY";
|
|
535
561
|
accountId: string;
|
|
562
|
+
night?: {
|
|
563
|
+
startsAt: Date;
|
|
564
|
+
endsAt: Date;
|
|
565
|
+
} | null | undefined;
|
|
536
566
|
locale?: string | null | undefined;
|
|
537
567
|
} | null | undefined;
|
|
538
568
|
}[] | null | undefined;
|
|
@@ -676,6 +706,10 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
|
|
|
676
706
|
name: string;
|
|
677
707
|
platform: "VINTED" | "SHOPIFY";
|
|
678
708
|
accountId: string;
|
|
709
|
+
night?: {
|
|
710
|
+
startsAt: Date;
|
|
711
|
+
endsAt: Date;
|
|
712
|
+
} | null | undefined;
|
|
679
713
|
locale?: string | null | undefined;
|
|
680
714
|
} | null | undefined;
|
|
681
715
|
}[] | null | undefined;
|
|
@@ -825,6 +859,10 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
|
|
|
825
859
|
name: string;
|
|
826
860
|
platform: "VINTED" | "SHOPIFY";
|
|
827
861
|
accountId: string;
|
|
862
|
+
night?: {
|
|
863
|
+
startsAt: Date;
|
|
864
|
+
endsAt: Date;
|
|
865
|
+
} | null | undefined;
|
|
828
866
|
locale?: string | null | undefined;
|
|
829
867
|
} | null | undefined;
|
|
830
868
|
}[] | null | undefined;
|
|
@@ -974,6 +1012,10 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
|
|
|
974
1012
|
name: string;
|
|
975
1013
|
platform: "VINTED" | "SHOPIFY";
|
|
976
1014
|
accountId: string;
|
|
1015
|
+
night?: {
|
|
1016
|
+
startsAt: Date;
|
|
1017
|
+
endsAt: Date;
|
|
1018
|
+
} | null | undefined;
|
|
977
1019
|
locale?: string | null | undefined;
|
|
978
1020
|
} | null | undefined;
|
|
979
1021
|
}[] | null | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ItemsWithFilters.d.ts","sourceRoot":"","sources":["ItemsWithFilters.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAGrB,eAAO,MAAM,sBAAsB
|
|
1
|
+
{"version":3,"file":"ItemsWithFilters.d.ts","sourceRoot":"","sources":["ItemsWithFilters.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAGrB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMjC,CAAA;AACF,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAA"}
|
|
@@ -441,12 +441,26 @@ export declare const UpdatedItemSchema: z.ZodObject<{
|
|
|
441
441
|
name: z.ZodString;
|
|
442
442
|
locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
443
443
|
status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "ERROR"]>;
|
|
444
|
+
night: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
445
|
+
startsAt: z.ZodDate;
|
|
446
|
+
endsAt: z.ZodDate;
|
|
447
|
+
}, "strip", z.ZodTypeAny, {
|
|
448
|
+
startsAt: Date;
|
|
449
|
+
endsAt: Date;
|
|
450
|
+
}, {
|
|
451
|
+
startsAt: Date;
|
|
452
|
+
endsAt: Date;
|
|
453
|
+
}>>>;
|
|
444
454
|
}, "strip", z.ZodTypeAny, {
|
|
445
455
|
status: "ERROR" | "CONNECTED" | "DISCONNECTED";
|
|
446
456
|
userId: string | number;
|
|
447
457
|
name: string;
|
|
448
458
|
platform: "VINTED" | "SHOPIFY";
|
|
449
459
|
accountId: string;
|
|
460
|
+
night?: {
|
|
461
|
+
startsAt: Date;
|
|
462
|
+
endsAt: Date;
|
|
463
|
+
} | null | undefined;
|
|
450
464
|
locale?: string | null | undefined;
|
|
451
465
|
}, {
|
|
452
466
|
status: "ERROR" | "CONNECTED" | "DISCONNECTED";
|
|
@@ -454,6 +468,10 @@ export declare const UpdatedItemSchema: z.ZodObject<{
|
|
|
454
468
|
name: string;
|
|
455
469
|
platform: "VINTED" | "SHOPIFY";
|
|
456
470
|
accountId: string;
|
|
471
|
+
night?: {
|
|
472
|
+
startsAt: Date;
|
|
473
|
+
endsAt: Date;
|
|
474
|
+
} | null | undefined;
|
|
457
475
|
locale?: string | null | undefined;
|
|
458
476
|
}>>>;
|
|
459
477
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -470,6 +488,10 @@ export declare const UpdatedItemSchema: z.ZodObject<{
|
|
|
470
488
|
name: string;
|
|
471
489
|
platform: "VINTED" | "SHOPIFY";
|
|
472
490
|
accountId: string;
|
|
491
|
+
night?: {
|
|
492
|
+
startsAt: Date;
|
|
493
|
+
endsAt: Date;
|
|
494
|
+
} | null | undefined;
|
|
473
495
|
locale?: string | null | undefined;
|
|
474
496
|
} | null | undefined;
|
|
475
497
|
}, {
|
|
@@ -486,6 +508,10 @@ export declare const UpdatedItemSchema: z.ZodObject<{
|
|
|
486
508
|
name: string;
|
|
487
509
|
platform: "VINTED" | "SHOPIFY";
|
|
488
510
|
accountId: string;
|
|
511
|
+
night?: {
|
|
512
|
+
startsAt: Date;
|
|
513
|
+
endsAt: Date;
|
|
514
|
+
} | null | undefined;
|
|
489
515
|
locale?: string | null | undefined;
|
|
490
516
|
} | null | undefined;
|
|
491
517
|
}>, "many">>>;
|
|
@@ -531,6 +557,10 @@ export declare const UpdatedItemSchema: z.ZodObject<{
|
|
|
531
557
|
name: string;
|
|
532
558
|
platform: "VINTED" | "SHOPIFY";
|
|
533
559
|
accountId: string;
|
|
560
|
+
night?: {
|
|
561
|
+
startsAt: Date;
|
|
562
|
+
endsAt: Date;
|
|
563
|
+
} | null | undefined;
|
|
534
564
|
locale?: string | null | undefined;
|
|
535
565
|
} | null | undefined;
|
|
536
566
|
}[] | null | undefined;
|
|
@@ -674,6 +704,10 @@ export declare const UpdatedItemSchema: z.ZodObject<{
|
|
|
674
704
|
name: string;
|
|
675
705
|
platform: "VINTED" | "SHOPIFY";
|
|
676
706
|
accountId: string;
|
|
707
|
+
night?: {
|
|
708
|
+
startsAt: Date;
|
|
709
|
+
endsAt: Date;
|
|
710
|
+
} | null | undefined;
|
|
677
711
|
locale?: string | null | undefined;
|
|
678
712
|
} | null | undefined;
|
|
679
713
|
}[] | null | undefined;
|
|
@@ -849,6 +883,10 @@ export declare const UpdatedItemSchema: z.ZodObject<{
|
|
|
849
883
|
name: string;
|
|
850
884
|
platform: "VINTED" | "SHOPIFY";
|
|
851
885
|
accountId: string;
|
|
886
|
+
night?: {
|
|
887
|
+
startsAt: Date;
|
|
888
|
+
endsAt: Date;
|
|
889
|
+
} | null | undefined;
|
|
852
890
|
locale?: string | null | undefined;
|
|
853
891
|
} | null | undefined;
|
|
854
892
|
}[] | null | undefined;
|
|
@@ -1002,6 +1040,10 @@ export declare const UpdatedItemSchema: z.ZodObject<{
|
|
|
1002
1040
|
name: string;
|
|
1003
1041
|
platform: "VINTED" | "SHOPIFY";
|
|
1004
1042
|
accountId: string;
|
|
1043
|
+
night?: {
|
|
1044
|
+
startsAt: Date;
|
|
1045
|
+
endsAt: Date;
|
|
1046
|
+
} | null | undefined;
|
|
1005
1047
|
locale?: string | null | undefined;
|
|
1006
1048
|
} | null | undefined;
|
|
1007
1049
|
}[] | null | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UpdatedItem.d.ts","sourceRoot":"","sources":["UpdatedItem.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAIrB,eAAO,MAAM,iBAAiB
|
|
1
|
+
{"version":3,"file":"UpdatedItem.d.ts","sourceRoot":"","sources":["UpdatedItem.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAIrB,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAG5B,CAAA;AACF,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAA"}
|
|
@@ -14,12 +14,26 @@ export declare const ItemOnPlatformSchema: z.ZodObject<{
|
|
|
14
14
|
name: z.ZodString;
|
|
15
15
|
locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16
16
|
status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "ERROR"]>;
|
|
17
|
+
night: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
18
|
+
startsAt: z.ZodDate;
|
|
19
|
+
endsAt: z.ZodDate;
|
|
20
|
+
}, "strip", z.ZodTypeAny, {
|
|
21
|
+
startsAt: Date;
|
|
22
|
+
endsAt: Date;
|
|
23
|
+
}, {
|
|
24
|
+
startsAt: Date;
|
|
25
|
+
endsAt: Date;
|
|
26
|
+
}>>>;
|
|
17
27
|
}, "strip", z.ZodTypeAny, {
|
|
18
28
|
status: "ERROR" | "CONNECTED" | "DISCONNECTED";
|
|
19
29
|
userId: string | number;
|
|
20
30
|
name: string;
|
|
21
31
|
platform: "VINTED" | "SHOPIFY";
|
|
22
32
|
accountId: string;
|
|
33
|
+
night?: {
|
|
34
|
+
startsAt: Date;
|
|
35
|
+
endsAt: Date;
|
|
36
|
+
} | null | undefined;
|
|
23
37
|
locale?: string | null | undefined;
|
|
24
38
|
}, {
|
|
25
39
|
status: "ERROR" | "CONNECTED" | "DISCONNECTED";
|
|
@@ -27,6 +41,10 @@ export declare const ItemOnPlatformSchema: z.ZodObject<{
|
|
|
27
41
|
name: string;
|
|
28
42
|
platform: "VINTED" | "SHOPIFY";
|
|
29
43
|
accountId: string;
|
|
44
|
+
night?: {
|
|
45
|
+
startsAt: Date;
|
|
46
|
+
endsAt: Date;
|
|
47
|
+
} | null | undefined;
|
|
30
48
|
locale?: string | null | undefined;
|
|
31
49
|
}>>>;
|
|
32
50
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -43,6 +61,10 @@ export declare const ItemOnPlatformSchema: z.ZodObject<{
|
|
|
43
61
|
name: string;
|
|
44
62
|
platform: "VINTED" | "SHOPIFY";
|
|
45
63
|
accountId: string;
|
|
64
|
+
night?: {
|
|
65
|
+
startsAt: Date;
|
|
66
|
+
endsAt: Date;
|
|
67
|
+
} | null | undefined;
|
|
46
68
|
locale?: string | null | undefined;
|
|
47
69
|
} | null | undefined;
|
|
48
70
|
}, {
|
|
@@ -59,6 +81,10 @@ export declare const ItemOnPlatformSchema: z.ZodObject<{
|
|
|
59
81
|
name: string;
|
|
60
82
|
platform: "VINTED" | "SHOPIFY";
|
|
61
83
|
accountId: string;
|
|
84
|
+
night?: {
|
|
85
|
+
startsAt: Date;
|
|
86
|
+
endsAt: Date;
|
|
87
|
+
} | null | undefined;
|
|
62
88
|
locale?: string | null | undefined;
|
|
63
89
|
} | null | undefined;
|
|
64
90
|
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ItemOnPlatform.d.ts","sourceRoot":"","sources":["ItemOnPlatform.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAKrB,eAAO,MAAM,oBAAoB
|
|
1
|
+
{"version":3,"file":"ItemOnPlatform.d.ts","sourceRoot":"","sources":["ItemOnPlatform.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAKrB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAS/B,CAAA;AACF,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAA"}
|
|
@@ -16,6 +16,7 @@ export declare const ItemOnPlatformUpdateRequestSchema: z.ZodObject<{
|
|
|
16
16
|
packageSizeId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
17
17
|
photoUrls: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
18
18
|
price: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
19
|
+
currency: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
20
|
size: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20
21
|
sizeId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
21
22
|
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -34,6 +35,7 @@ export declare const ItemOnPlatformUpdateRequestSchema: z.ZodObject<{
|
|
|
34
35
|
description?: string | null | undefined;
|
|
35
36
|
price?: number | null | undefined;
|
|
36
37
|
isDraft?: boolean | null | undefined;
|
|
38
|
+
currency?: string | null | undefined;
|
|
37
39
|
brand?: string | null | undefined;
|
|
38
40
|
catalog?: string | null | undefined;
|
|
39
41
|
catalogId?: number | null | undefined;
|
|
@@ -57,6 +59,7 @@ export declare const ItemOnPlatformUpdateRequestSchema: z.ZodObject<{
|
|
|
57
59
|
description?: string | null | undefined;
|
|
58
60
|
price?: number | null | undefined;
|
|
59
61
|
isDraft?: boolean | null | undefined;
|
|
62
|
+
currency?: string | null | undefined;
|
|
60
63
|
brand?: string | null | undefined;
|
|
61
64
|
catalog?: string | null | undefined;
|
|
62
65
|
catalogId?: number | null | undefined;
|
|
@@ -83,6 +86,7 @@ export declare const ItemOnPlatformUpdateRequestSchema: z.ZodObject<{
|
|
|
83
86
|
description?: string | null | undefined;
|
|
84
87
|
price?: number | null | undefined;
|
|
85
88
|
isDraft?: boolean | null | undefined;
|
|
89
|
+
currency?: string | null | undefined;
|
|
86
90
|
brand?: string | null | undefined;
|
|
87
91
|
catalog?: string | null | undefined;
|
|
88
92
|
catalogId?: number | null | undefined;
|
|
@@ -111,6 +115,7 @@ export declare const ItemOnPlatformUpdateRequestSchema: z.ZodObject<{
|
|
|
111
115
|
description?: string | null | undefined;
|
|
112
116
|
price?: number | null | undefined;
|
|
113
117
|
isDraft?: boolean | null | undefined;
|
|
118
|
+
currency?: string | null | undefined;
|
|
114
119
|
brand?: string | null | undefined;
|
|
115
120
|
catalog?: string | null | undefined;
|
|
116
121
|
catalogId?: number | null | undefined;
|
|
@@ -138,12 +143,26 @@ export declare const ItemOnPlatformUpdateRequestSchema: z.ZodObject<{
|
|
|
138
143
|
name: z.ZodString;
|
|
139
144
|
locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
140
145
|
status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "ERROR"]>;
|
|
146
|
+
night: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
147
|
+
startsAt: z.ZodDate;
|
|
148
|
+
endsAt: z.ZodDate;
|
|
149
|
+
}, "strip", z.ZodTypeAny, {
|
|
150
|
+
startsAt: Date;
|
|
151
|
+
endsAt: Date;
|
|
152
|
+
}, {
|
|
153
|
+
startsAt: Date;
|
|
154
|
+
endsAt: Date;
|
|
155
|
+
}>>>;
|
|
141
156
|
}, "strip", z.ZodTypeAny, {
|
|
142
157
|
status: "ERROR" | "CONNECTED" | "DISCONNECTED";
|
|
143
158
|
userId: string | number;
|
|
144
159
|
name: string;
|
|
145
160
|
platform: "VINTED" | "SHOPIFY";
|
|
146
161
|
accountId: string;
|
|
162
|
+
night?: {
|
|
163
|
+
startsAt: Date;
|
|
164
|
+
endsAt: Date;
|
|
165
|
+
} | null | undefined;
|
|
147
166
|
locale?: string | null | undefined;
|
|
148
167
|
}, {
|
|
149
168
|
status: "ERROR" | "CONNECTED" | "DISCONNECTED";
|
|
@@ -151,6 +170,10 @@ export declare const ItemOnPlatformUpdateRequestSchema: z.ZodObject<{
|
|
|
151
170
|
name: string;
|
|
152
171
|
platform: "VINTED" | "SHOPIFY";
|
|
153
172
|
accountId: string;
|
|
173
|
+
night?: {
|
|
174
|
+
startsAt: Date;
|
|
175
|
+
endsAt: Date;
|
|
176
|
+
} | null | undefined;
|
|
154
177
|
locale?: string | null | undefined;
|
|
155
178
|
}>;
|
|
156
179
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -160,6 +183,10 @@ export declare const ItemOnPlatformUpdateRequestSchema: z.ZodObject<{
|
|
|
160
183
|
name: string;
|
|
161
184
|
platform: "VINTED" | "SHOPIFY";
|
|
162
185
|
accountId: string;
|
|
186
|
+
night?: {
|
|
187
|
+
startsAt: Date;
|
|
188
|
+
endsAt: Date;
|
|
189
|
+
} | null | undefined;
|
|
163
190
|
locale?: string | null | undefined;
|
|
164
191
|
};
|
|
165
192
|
item: {
|
|
@@ -171,6 +198,7 @@ export declare const ItemOnPlatformUpdateRequestSchema: z.ZodObject<{
|
|
|
171
198
|
description?: string | null | undefined;
|
|
172
199
|
price?: number | null | undefined;
|
|
173
200
|
isDraft?: boolean | null | undefined;
|
|
201
|
+
currency?: string | null | undefined;
|
|
174
202
|
brand?: string | null | undefined;
|
|
175
203
|
catalog?: string | null | undefined;
|
|
176
204
|
catalogId?: number | null | undefined;
|
|
@@ -198,6 +226,10 @@ export declare const ItemOnPlatformUpdateRequestSchema: z.ZodObject<{
|
|
|
198
226
|
name: string;
|
|
199
227
|
platform: "VINTED" | "SHOPIFY";
|
|
200
228
|
accountId: string;
|
|
229
|
+
night?: {
|
|
230
|
+
startsAt: Date;
|
|
231
|
+
endsAt: Date;
|
|
232
|
+
} | null | undefined;
|
|
201
233
|
locale?: string | null | undefined;
|
|
202
234
|
};
|
|
203
235
|
item: {
|
|
@@ -209,6 +241,7 @@ export declare const ItemOnPlatformUpdateRequestSchema: z.ZodObject<{
|
|
|
209
241
|
description?: string | null | undefined;
|
|
210
242
|
price?: number | null | undefined;
|
|
211
243
|
isDraft?: boolean | null | undefined;
|
|
244
|
+
currency?: string | null | undefined;
|
|
212
245
|
brand?: string | null | undefined;
|
|
213
246
|
catalog?: string | null | undefined;
|
|
214
247
|
catalogId?: number | null | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ItemOnPlatformUpdateRequest.d.ts","sourceRoot":"","sources":["ItemOnPlatformUpdateRequest.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAIrB,eAAO,MAAM,iCAAiC
|
|
1
|
+
{"version":3,"file":"ItemOnPlatformUpdateRequest.d.ts","sourceRoot":"","sources":["ItemOnPlatformUpdateRequest.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAIrB,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAG5C,CAAA;AACF,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iCAAiC,CAAC,CAAA"}
|