@alphabite/medusa-sdk 0.6.4 → 0.6.6
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/dist/index.d.mts +108 -8
- package/dist/index.d.ts +108 -8
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import Medusa, { ClientHeaders } from '@medusajs/js-sdk';
|
|
2
2
|
import { BaseProductVariant, BaseProduct } from '@medusajs/types/dist/http/product/common';
|
|
3
3
|
import { FindParams, RemoteQueryFunctionReturnPagination, PriceDTO, StoreCartAddress, StoreCartLineItem, CustomerDTO, ProductDTO, FileDTO } from '@medusajs/types';
|
|
4
|
-
import { City, Quarter
|
|
4
|
+
import { City, Quarter } from '@alphabite/econt-types';
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
7
|
* Standard paginated response structure for list endpoints
|
|
@@ -460,7 +460,7 @@ interface ListCitiesInput {
|
|
|
460
460
|
*/
|
|
461
461
|
fields?: string;
|
|
462
462
|
/**
|
|
463
|
-
* Maximum number of results (1-
|
|
463
|
+
* Maximum number of results (1-500, default: 15)
|
|
464
464
|
*/
|
|
465
465
|
limit?: number;
|
|
466
466
|
/**
|
|
@@ -481,6 +481,18 @@ interface ListCitiesOutput {
|
|
|
481
481
|
* Includes: id, name, nameEn, postCode, region, etc.
|
|
482
482
|
*/
|
|
483
483
|
cities: City[];
|
|
484
|
+
/**
|
|
485
|
+
* Total count of cities matching the query
|
|
486
|
+
*/
|
|
487
|
+
count: number;
|
|
488
|
+
/**
|
|
489
|
+
* Maximum number of results per page
|
|
490
|
+
*/
|
|
491
|
+
limit: number;
|
|
492
|
+
/**
|
|
493
|
+
* Number of results skipped
|
|
494
|
+
*/
|
|
495
|
+
offset: number;
|
|
484
496
|
}
|
|
485
497
|
/**
|
|
486
498
|
* Input for listing quarters (neighborhoods) in a city
|
|
@@ -505,7 +517,7 @@ interface ListQuartersInput {
|
|
|
505
517
|
*/
|
|
506
518
|
fields?: string;
|
|
507
519
|
/**
|
|
508
|
-
* Maximum number of results (1-
|
|
520
|
+
* Maximum number of results (1-500, default: 15)
|
|
509
521
|
*/
|
|
510
522
|
limit?: number;
|
|
511
523
|
/**
|
|
@@ -526,6 +538,18 @@ interface ListQuartersOutput {
|
|
|
526
538
|
* Includes: id, cityID, name, nameEn
|
|
527
539
|
*/
|
|
528
540
|
quarters: Quarter[];
|
|
541
|
+
/**
|
|
542
|
+
* Total count of quarters matching the query
|
|
543
|
+
*/
|
|
544
|
+
count: number;
|
|
545
|
+
/**
|
|
546
|
+
* Maximum number of results per page
|
|
547
|
+
*/
|
|
548
|
+
limit: number;
|
|
549
|
+
/**
|
|
550
|
+
* Number of results skipped
|
|
551
|
+
*/
|
|
552
|
+
offset: number;
|
|
529
553
|
}
|
|
530
554
|
/**
|
|
531
555
|
* Input for listing Econt offices with optional filtering
|
|
@@ -564,7 +588,7 @@ interface ListOfficesInput {
|
|
|
564
588
|
*/
|
|
565
589
|
fields?: string;
|
|
566
590
|
/**
|
|
567
|
-
* Maximum number of results (1-
|
|
591
|
+
* Maximum number of results (1-500, default: 15)
|
|
568
592
|
*/
|
|
569
593
|
limit?: number;
|
|
570
594
|
/**
|
|
@@ -576,15 +600,91 @@ interface ListOfficesInput {
|
|
|
576
600
|
*/
|
|
577
601
|
order?: string;
|
|
578
602
|
}
|
|
603
|
+
/**
|
|
604
|
+
* Flattened office structure with address fields at top level
|
|
605
|
+
*/
|
|
606
|
+
interface FlattenedOffice {
|
|
607
|
+
/**
|
|
608
|
+
* Office code
|
|
609
|
+
*/
|
|
610
|
+
code: string;
|
|
611
|
+
/**
|
|
612
|
+
* Office name
|
|
613
|
+
*/
|
|
614
|
+
name: string;
|
|
615
|
+
/**
|
|
616
|
+
* Office name in English
|
|
617
|
+
*/
|
|
618
|
+
nameEn: string;
|
|
619
|
+
/**
|
|
620
|
+
* City ID
|
|
621
|
+
*/
|
|
622
|
+
cityId: number;
|
|
623
|
+
/**
|
|
624
|
+
* Quarter ID
|
|
625
|
+
*/
|
|
626
|
+
quarterId?: string;
|
|
627
|
+
/**
|
|
628
|
+
* Full address string
|
|
629
|
+
*/
|
|
630
|
+
fullAddress: string;
|
|
631
|
+
/**
|
|
632
|
+
* Full address string in English
|
|
633
|
+
*/
|
|
634
|
+
fullAddressEn: string;
|
|
635
|
+
/**
|
|
636
|
+
* Latitude coordinate
|
|
637
|
+
*/
|
|
638
|
+
latitude: number;
|
|
639
|
+
/**
|
|
640
|
+
* Longitude coordinate
|
|
641
|
+
*/
|
|
642
|
+
longitude: number;
|
|
643
|
+
/**
|
|
644
|
+
* Array of phone numbers
|
|
645
|
+
*/
|
|
646
|
+
phones: string[];
|
|
647
|
+
/**
|
|
648
|
+
* Additional information
|
|
649
|
+
*/
|
|
650
|
+
info?: string;
|
|
651
|
+
/**
|
|
652
|
+
* Normal business hours start time (ISO 8601)
|
|
653
|
+
*/
|
|
654
|
+
normalBusinessHoursFrom: string;
|
|
655
|
+
/**
|
|
656
|
+
* Normal business hours end time (ISO 8601)
|
|
657
|
+
*/
|
|
658
|
+
normalBusinessHoursTo: string;
|
|
659
|
+
/**
|
|
660
|
+
* Half day business hours start time (ISO 8601)
|
|
661
|
+
*/
|
|
662
|
+
halfDayBusinessHoursFrom?: string;
|
|
663
|
+
/**
|
|
664
|
+
* Half day business hours end time (ISO 8601)
|
|
665
|
+
*/
|
|
666
|
+
halfDayBusinessHoursTo?: string;
|
|
667
|
+
}
|
|
579
668
|
/**
|
|
580
669
|
* Response containing list of Econt offices
|
|
581
670
|
*/
|
|
582
671
|
interface ListOfficesOutput {
|
|
583
672
|
/**
|
|
584
|
-
* Array of offices with
|
|
585
|
-
|
|
673
|
+
* Array of offices with flattened structure and address fields at top level
|
|
674
|
+
*/
|
|
675
|
+
offices: FlattenedOffice[];
|
|
676
|
+
/**
|
|
677
|
+
* Total count of offices matching the query
|
|
678
|
+
*/
|
|
679
|
+
count: number;
|
|
680
|
+
/**
|
|
681
|
+
* Maximum number of results per page
|
|
682
|
+
*/
|
|
683
|
+
limit: number;
|
|
684
|
+
/**
|
|
685
|
+
* Number of results skipped
|
|
586
686
|
*/
|
|
587
|
-
|
|
687
|
+
offset: number;
|
|
588
688
|
}
|
|
589
689
|
/**
|
|
590
690
|
* Available Econt plugin endpoints
|
|
@@ -685,4 +785,4 @@ declare class AlphabiteMedusaSdk<TPlugins extends readonly Plugin<any, any>[], T
|
|
|
685
785
|
constructor(medusaOptions: AlphabiteMedusaConfig, plugins: TPlugins, options?: TOptions);
|
|
686
786
|
}
|
|
687
787
|
|
|
688
|
-
export { type AddItemToWishlistInput, type AddItemToWishlistOutput, type AggregateCounts, type AggregateCountsInput, type AggregateCountsOutput, type AlphabiteClientOptions, type AlphabiteMedusaConfig, AlphabiteMedusaSdk, type CountryCode, type CreateClientTokenOutput, type CreateReviewInput, type CreateReviewOutput, type CreateWishlistInput, type CreateWishlistOutput, type DeleteReviewInput, type DeleteReviewOutput, type DeleteWishlistInput, type DeleteWishlistOutput, type ImportWishlistInput, type ImportWishlistOutput, type ListCitiesInput, type ListCitiesOutput, type ListItemsInput, type ListItemsOutput, type ListOfficesInput, type ListOfficesOutput, type ListProductReviewsInput, type ListProductReviewsOutput, type ListQuartersInput, type ListQuartersOutput, type ListReviewsInput, type ListReviewsOutput, type ListWishlistsInput, type ListWishlistsOutput, type PaypalPaymentSessionInputData, type Plugin, type PluginsToAlphabite, type ProductCategoryImage, type ProductCollectionImage, type ProductVariantImage, type RemoveItemFromWishlistInput, type RemoveItemFromWishlistOutput, type RetrieveWishlistInput, type RetrieveWishlistOutput, type Review, type ShareWishlistInput, type ShareWishlistOutput, type TotalItemsCountInput, type TotalItemsCountOutput, type TransferWishlistInput, type TransferWishlistOutput, type UpdateWishlistInput, type UpdateWishlistOutput, type UploadImageFilesInput, type ValidateAddressCity, type ValidateAddressInput, type ValidateAddressInputAddress, type ValidateAddressLocation, type ValidateAddressOutput, type ValidatedAddress, type Wishlist, type WishlistItem, econtPlugin, paypalPlugin, reviewsPlugin, wishlistPlugin };
|
|
788
|
+
export { type AddItemToWishlistInput, type AddItemToWishlistOutput, type AggregateCounts, type AggregateCountsInput, type AggregateCountsOutput, type AlphabiteClientOptions, type AlphabiteMedusaConfig, AlphabiteMedusaSdk, type CountryCode, type CreateClientTokenOutput, type CreateReviewInput, type CreateReviewOutput, type CreateWishlistInput, type CreateWishlistOutput, type DeleteReviewInput, type DeleteReviewOutput, type DeleteWishlistInput, type DeleteWishlistOutput, type FlattenedOffice, type ImportWishlistInput, type ImportWishlistOutput, type ListCitiesInput, type ListCitiesOutput, type ListItemsInput, type ListItemsOutput, type ListOfficesInput, type ListOfficesOutput, type ListProductReviewsInput, type ListProductReviewsOutput, type ListQuartersInput, type ListQuartersOutput, type ListReviewsInput, type ListReviewsOutput, type ListWishlistsInput, type ListWishlistsOutput, type PaypalPaymentSessionInputData, type Plugin, type PluginsToAlphabite, type ProductCategoryImage, type ProductCollectionImage, type ProductVariantImage, type RemoveItemFromWishlistInput, type RemoveItemFromWishlistOutput, type RetrieveWishlistInput, type RetrieveWishlistOutput, type Review, type ShareWishlistInput, type ShareWishlistOutput, type TotalItemsCountInput, type TotalItemsCountOutput, type TransferWishlistInput, type TransferWishlistOutput, type UpdateWishlistInput, type UpdateWishlistOutput, type UploadImageFilesInput, type ValidateAddressCity, type ValidateAddressInput, type ValidateAddressInputAddress, type ValidateAddressLocation, type ValidateAddressOutput, type ValidatedAddress, type Wishlist, type WishlistItem, econtPlugin, paypalPlugin, reviewsPlugin, wishlistPlugin };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import Medusa, { ClientHeaders } from '@medusajs/js-sdk';
|
|
2
2
|
import { BaseProductVariant, BaseProduct } from '@medusajs/types/dist/http/product/common';
|
|
3
3
|
import { FindParams, RemoteQueryFunctionReturnPagination, PriceDTO, StoreCartAddress, StoreCartLineItem, CustomerDTO, ProductDTO, FileDTO } from '@medusajs/types';
|
|
4
|
-
import { City, Quarter
|
|
4
|
+
import { City, Quarter } from '@alphabite/econt-types';
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
7
|
* Standard paginated response structure for list endpoints
|
|
@@ -460,7 +460,7 @@ interface ListCitiesInput {
|
|
|
460
460
|
*/
|
|
461
461
|
fields?: string;
|
|
462
462
|
/**
|
|
463
|
-
* Maximum number of results (1-
|
|
463
|
+
* Maximum number of results (1-500, default: 15)
|
|
464
464
|
*/
|
|
465
465
|
limit?: number;
|
|
466
466
|
/**
|
|
@@ -481,6 +481,18 @@ interface ListCitiesOutput {
|
|
|
481
481
|
* Includes: id, name, nameEn, postCode, region, etc.
|
|
482
482
|
*/
|
|
483
483
|
cities: City[];
|
|
484
|
+
/**
|
|
485
|
+
* Total count of cities matching the query
|
|
486
|
+
*/
|
|
487
|
+
count: number;
|
|
488
|
+
/**
|
|
489
|
+
* Maximum number of results per page
|
|
490
|
+
*/
|
|
491
|
+
limit: number;
|
|
492
|
+
/**
|
|
493
|
+
* Number of results skipped
|
|
494
|
+
*/
|
|
495
|
+
offset: number;
|
|
484
496
|
}
|
|
485
497
|
/**
|
|
486
498
|
* Input for listing quarters (neighborhoods) in a city
|
|
@@ -505,7 +517,7 @@ interface ListQuartersInput {
|
|
|
505
517
|
*/
|
|
506
518
|
fields?: string;
|
|
507
519
|
/**
|
|
508
|
-
* Maximum number of results (1-
|
|
520
|
+
* Maximum number of results (1-500, default: 15)
|
|
509
521
|
*/
|
|
510
522
|
limit?: number;
|
|
511
523
|
/**
|
|
@@ -526,6 +538,18 @@ interface ListQuartersOutput {
|
|
|
526
538
|
* Includes: id, cityID, name, nameEn
|
|
527
539
|
*/
|
|
528
540
|
quarters: Quarter[];
|
|
541
|
+
/**
|
|
542
|
+
* Total count of quarters matching the query
|
|
543
|
+
*/
|
|
544
|
+
count: number;
|
|
545
|
+
/**
|
|
546
|
+
* Maximum number of results per page
|
|
547
|
+
*/
|
|
548
|
+
limit: number;
|
|
549
|
+
/**
|
|
550
|
+
* Number of results skipped
|
|
551
|
+
*/
|
|
552
|
+
offset: number;
|
|
529
553
|
}
|
|
530
554
|
/**
|
|
531
555
|
* Input for listing Econt offices with optional filtering
|
|
@@ -564,7 +588,7 @@ interface ListOfficesInput {
|
|
|
564
588
|
*/
|
|
565
589
|
fields?: string;
|
|
566
590
|
/**
|
|
567
|
-
* Maximum number of results (1-
|
|
591
|
+
* Maximum number of results (1-500, default: 15)
|
|
568
592
|
*/
|
|
569
593
|
limit?: number;
|
|
570
594
|
/**
|
|
@@ -576,15 +600,91 @@ interface ListOfficesInput {
|
|
|
576
600
|
*/
|
|
577
601
|
order?: string;
|
|
578
602
|
}
|
|
603
|
+
/**
|
|
604
|
+
* Flattened office structure with address fields at top level
|
|
605
|
+
*/
|
|
606
|
+
interface FlattenedOffice {
|
|
607
|
+
/**
|
|
608
|
+
* Office code
|
|
609
|
+
*/
|
|
610
|
+
code: string;
|
|
611
|
+
/**
|
|
612
|
+
* Office name
|
|
613
|
+
*/
|
|
614
|
+
name: string;
|
|
615
|
+
/**
|
|
616
|
+
* Office name in English
|
|
617
|
+
*/
|
|
618
|
+
nameEn: string;
|
|
619
|
+
/**
|
|
620
|
+
* City ID
|
|
621
|
+
*/
|
|
622
|
+
cityId: number;
|
|
623
|
+
/**
|
|
624
|
+
* Quarter ID
|
|
625
|
+
*/
|
|
626
|
+
quarterId?: string;
|
|
627
|
+
/**
|
|
628
|
+
* Full address string
|
|
629
|
+
*/
|
|
630
|
+
fullAddress: string;
|
|
631
|
+
/**
|
|
632
|
+
* Full address string in English
|
|
633
|
+
*/
|
|
634
|
+
fullAddressEn: string;
|
|
635
|
+
/**
|
|
636
|
+
* Latitude coordinate
|
|
637
|
+
*/
|
|
638
|
+
latitude: number;
|
|
639
|
+
/**
|
|
640
|
+
* Longitude coordinate
|
|
641
|
+
*/
|
|
642
|
+
longitude: number;
|
|
643
|
+
/**
|
|
644
|
+
* Array of phone numbers
|
|
645
|
+
*/
|
|
646
|
+
phones: string[];
|
|
647
|
+
/**
|
|
648
|
+
* Additional information
|
|
649
|
+
*/
|
|
650
|
+
info?: string;
|
|
651
|
+
/**
|
|
652
|
+
* Normal business hours start time (ISO 8601)
|
|
653
|
+
*/
|
|
654
|
+
normalBusinessHoursFrom: string;
|
|
655
|
+
/**
|
|
656
|
+
* Normal business hours end time (ISO 8601)
|
|
657
|
+
*/
|
|
658
|
+
normalBusinessHoursTo: string;
|
|
659
|
+
/**
|
|
660
|
+
* Half day business hours start time (ISO 8601)
|
|
661
|
+
*/
|
|
662
|
+
halfDayBusinessHoursFrom?: string;
|
|
663
|
+
/**
|
|
664
|
+
* Half day business hours end time (ISO 8601)
|
|
665
|
+
*/
|
|
666
|
+
halfDayBusinessHoursTo?: string;
|
|
667
|
+
}
|
|
579
668
|
/**
|
|
580
669
|
* Response containing list of Econt offices
|
|
581
670
|
*/
|
|
582
671
|
interface ListOfficesOutput {
|
|
583
672
|
/**
|
|
584
|
-
* Array of offices with
|
|
585
|
-
|
|
673
|
+
* Array of offices with flattened structure and address fields at top level
|
|
674
|
+
*/
|
|
675
|
+
offices: FlattenedOffice[];
|
|
676
|
+
/**
|
|
677
|
+
* Total count of offices matching the query
|
|
678
|
+
*/
|
|
679
|
+
count: number;
|
|
680
|
+
/**
|
|
681
|
+
* Maximum number of results per page
|
|
682
|
+
*/
|
|
683
|
+
limit: number;
|
|
684
|
+
/**
|
|
685
|
+
* Number of results skipped
|
|
586
686
|
*/
|
|
587
|
-
|
|
687
|
+
offset: number;
|
|
588
688
|
}
|
|
589
689
|
/**
|
|
590
690
|
* Available Econt plugin endpoints
|
|
@@ -685,4 +785,4 @@ declare class AlphabiteMedusaSdk<TPlugins extends readonly Plugin<any, any>[], T
|
|
|
685
785
|
constructor(medusaOptions: AlphabiteMedusaConfig, plugins: TPlugins, options?: TOptions);
|
|
686
786
|
}
|
|
687
787
|
|
|
688
|
-
export { type AddItemToWishlistInput, type AddItemToWishlistOutput, type AggregateCounts, type AggregateCountsInput, type AggregateCountsOutput, type AlphabiteClientOptions, type AlphabiteMedusaConfig, AlphabiteMedusaSdk, type CountryCode, type CreateClientTokenOutput, type CreateReviewInput, type CreateReviewOutput, type CreateWishlistInput, type CreateWishlistOutput, type DeleteReviewInput, type DeleteReviewOutput, type DeleteWishlistInput, type DeleteWishlistOutput, type ImportWishlistInput, type ImportWishlistOutput, type ListCitiesInput, type ListCitiesOutput, type ListItemsInput, type ListItemsOutput, type ListOfficesInput, type ListOfficesOutput, type ListProductReviewsInput, type ListProductReviewsOutput, type ListQuartersInput, type ListQuartersOutput, type ListReviewsInput, type ListReviewsOutput, type ListWishlistsInput, type ListWishlistsOutput, type PaypalPaymentSessionInputData, type Plugin, type PluginsToAlphabite, type ProductCategoryImage, type ProductCollectionImage, type ProductVariantImage, type RemoveItemFromWishlistInput, type RemoveItemFromWishlistOutput, type RetrieveWishlistInput, type RetrieveWishlistOutput, type Review, type ShareWishlistInput, type ShareWishlistOutput, type TotalItemsCountInput, type TotalItemsCountOutput, type TransferWishlistInput, type TransferWishlistOutput, type UpdateWishlistInput, type UpdateWishlistOutput, type UploadImageFilesInput, type ValidateAddressCity, type ValidateAddressInput, type ValidateAddressInputAddress, type ValidateAddressLocation, type ValidateAddressOutput, type ValidatedAddress, type Wishlist, type WishlistItem, econtPlugin, paypalPlugin, reviewsPlugin, wishlistPlugin };
|
|
788
|
+
export { type AddItemToWishlistInput, type AddItemToWishlistOutput, type AggregateCounts, type AggregateCountsInput, type AggregateCountsOutput, type AlphabiteClientOptions, type AlphabiteMedusaConfig, AlphabiteMedusaSdk, type CountryCode, type CreateClientTokenOutput, type CreateReviewInput, type CreateReviewOutput, type CreateWishlistInput, type CreateWishlistOutput, type DeleteReviewInput, type DeleteReviewOutput, type DeleteWishlistInput, type DeleteWishlistOutput, type FlattenedOffice, type ImportWishlistInput, type ImportWishlistOutput, type ListCitiesInput, type ListCitiesOutput, type ListItemsInput, type ListItemsOutput, type ListOfficesInput, type ListOfficesOutput, type ListProductReviewsInput, type ListProductReviewsOutput, type ListQuartersInput, type ListQuartersOutput, type ListReviewsInput, type ListReviewsOutput, type ListWishlistsInput, type ListWishlistsOutput, type PaypalPaymentSessionInputData, type Plugin, type PluginsToAlphabite, type ProductCategoryImage, type ProductCollectionImage, type ProductVariantImage, type RemoveItemFromWishlistInput, type RemoveItemFromWishlistOutput, type RetrieveWishlistInput, type RetrieveWishlistOutput, type Review, type ShareWishlistInput, type ShareWishlistOutput, type TotalItemsCountInput, type TotalItemsCountOutput, type TransferWishlistInput, type TransferWishlistOutput, type UpdateWishlistInput, type UpdateWishlistOutput, type UploadImageFilesInput, type ValidateAddressCity, type ValidateAddressInput, type ValidateAddressInputAddress, type ValidateAddressLocation, type ValidateAddressOutput, type ValidatedAddress, type Wishlist, type WishlistItem, econtPlugin, paypalPlugin, reviewsPlugin, wishlistPlugin };
|
package/dist/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';var
|
|
1
|
+
'use strict';var u=require('@medusajs/js-sdk');function _interopDefault(e){return e&&e.__esModule?e:{default:e}}var u__default=/*#__PURE__*/_interopDefault(u);var l={name:"wishlist",endpoints:(r,s)=>({create:async({...t},e)=>r.client.fetch("/store/wishlists",{method:"POST",body:t,headers:{...await s?.getAuthHeader?.(),...e}}),list:async({limit:t=10,offset:e=0,...i},n)=>r.client.fetch("/store/wishlists",{method:"GET",headers:{...await s?.getAuthHeader?.(),...n},query:{limit:t,offset:e,...i}}),retrieve:async({id:t,...e},i)=>r.client.fetch(`/store/wishlists/${t}`,{method:"GET",headers:{...await s?.getAuthHeader?.(),...i},query:e}),update:async({id:t,...e},i)=>r.client.fetch(`/store/wishlists/${t}`,{method:"PUT",body:e,headers:{...await s?.getAuthHeader?.(),...i}}),delete:async({id:t},e)=>r.client.fetch(`/store/wishlists/${t}`,{method:"DELETE",headers:{...await s?.getAuthHeader?.(),...e}}),totalItemsCount:async({wishlist_id:t},e)=>r.client.fetch("store/wishlists/total-items-count",{method:"GET",headers:{...await s?.getAuthHeader?.(),...e},query:{wishlist_id:t}}),transfer:async({id:t},e)=>r.client.fetch(`/store/wishlists/${t}/transfer`,{method:"POST",headers:{...await s?.getAuthHeader?.(),...e}}),share:async({id:t},e)=>r.client.fetch(`/store/wishlists/${t}/share`,{method:"POST",headers:{...await s?.getAuthHeader?.(),...e}}),import:async(t,e)=>r.client.fetch("/store/wishlists/import",{method:"POST",body:t,headers:{...await s?.getAuthHeader?.(),...e}}),addItem:async({id:t,...e},i)=>r.client.fetch(`/store/wishlists/${t}/add-item`,{method:"POST",body:e,headers:{...await s?.getAuthHeader?.(),...i}}),listItems:async({id:t,limit:e=10,offset:i=0,...n},a)=>r.client.fetch(`/store/wishlists/${t}/items`,{method:"GET",headers:{...await s?.getAuthHeader?.(),...a},query:{limit:e,offset:i,...n}}),removeItem:async({wishlist_item_id:t,id:e},i)=>r.client.fetch(`/store/wishlists/${e}/items/${t}`,{method:"DELETE",headers:{...await s?.getAuthHeader?.(),...i}})})};var c={name:"paypal",endpoints:(r,s)=>({createClientToken:async t=>r.client.fetch("/store/paypal/client-token",{method:"POST",headers:{...await s?.getAuthHeader?.(),...t}})})};var m={name:"reviews",endpoints:(r,s,t)=>({create:async(e,i)=>r.client.fetch("/store/reviews",{method:"POST",body:e,headers:{...await s?.getAuthHeader?.(),...i}}),list:async({...e},i)=>r.client.fetch("/store/products/reviews",{method:"GET",headers:{...await s?.getAuthHeader?.(),...i},query:e}),listProductReviews:async({product_id:e,...i},n)=>r.client.fetch(`/store/reviews/product/${e}`,{method:"GET",query:i,headers:{...await s?.getAuthHeader?.(),...n}}),aggregateCounts:async({product_id:e,...i},n)=>r.client.fetch(`/store/reviews/product/${e}/aggregate-counts`,{method:"GET",query:i,headers:{...await s?.getAuthHeader?.(),...n}}),delete:async({id:e},i)=>r.client.fetch(`/store/reviews/${e}`,{method:"DELETE",headers:{...await s?.getAuthHeader?.(),...i}}),uploadImageFiles:async(e,i)=>{let n=t?.baseUrl,a=t?.publishableKey;if(!n||!a)throw new Error("Missing baseUrl or publishableKey");return await(await fetch(`${n}/store/reviews/files/images/upload`,{method:"POST",body:e.formData,headers:{...i,"x-publishable-api-key":a}})).json()}})};var f={name:"econt",endpoints:(r,s)=>({validateAddress:async(t,e)=>r.client.fetch("/store/econt/validate-address",{method:"POST",body:t,headers:{...await s?.getAuthHeader?.(),...e}}),listCities:async({countryCode:t="BGR",...e},i)=>r.client.fetch("/store/econt/cities",{method:"GET",headers:{...await s?.getAuthHeader?.(),...i},query:{countryCode:t,...e}}),listQuarters:async({cityId:t,countryCode:e="BGR",...i},n)=>r.client.fetch("/store/econt/quarters",{method:"GET",headers:{...await s?.getAuthHeader?.(),...n},query:{cityId:t,countryCode:e,...i}}),listOffices:async({countryCode:t="BGR",...e},i)=>r.client.fetch("/store/econt/offices",{method:"GET",headers:{...await s?.getAuthHeader?.(),...i},query:{countryCode:t,...e}})})};var o=class extends u__default.default{constructor(s,t,e){super(s),this.options=e,this.medusaConfig=s;let i={};t.forEach(n=>{i[n.name]=n.endpoints(this,this.options,this.medusaConfig);}),this.alphabite=i;}};exports.AlphabiteMedusaSdk=o;exports.econtPlugin=f;exports.paypalPlugin=c;exports.reviewsPlugin=m;exports.wishlistPlugin=l;
|
package/dist/index.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import
|
|
1
|
+
import u from'@medusajs/js-sdk';var l={name:"wishlist",endpoints:(r,s)=>({create:async({...t},e)=>r.client.fetch("/store/wishlists",{method:"POST",body:t,headers:{...await s?.getAuthHeader?.(),...e}}),list:async({limit:t=10,offset:e=0,...i},n)=>r.client.fetch("/store/wishlists",{method:"GET",headers:{...await s?.getAuthHeader?.(),...n},query:{limit:t,offset:e,...i}}),retrieve:async({id:t,...e},i)=>r.client.fetch(`/store/wishlists/${t}`,{method:"GET",headers:{...await s?.getAuthHeader?.(),...i},query:e}),update:async({id:t,...e},i)=>r.client.fetch(`/store/wishlists/${t}`,{method:"PUT",body:e,headers:{...await s?.getAuthHeader?.(),...i}}),delete:async({id:t},e)=>r.client.fetch(`/store/wishlists/${t}`,{method:"DELETE",headers:{...await s?.getAuthHeader?.(),...e}}),totalItemsCount:async({wishlist_id:t},e)=>r.client.fetch("store/wishlists/total-items-count",{method:"GET",headers:{...await s?.getAuthHeader?.(),...e},query:{wishlist_id:t}}),transfer:async({id:t},e)=>r.client.fetch(`/store/wishlists/${t}/transfer`,{method:"POST",headers:{...await s?.getAuthHeader?.(),...e}}),share:async({id:t},e)=>r.client.fetch(`/store/wishlists/${t}/share`,{method:"POST",headers:{...await s?.getAuthHeader?.(),...e}}),import:async(t,e)=>r.client.fetch("/store/wishlists/import",{method:"POST",body:t,headers:{...await s?.getAuthHeader?.(),...e}}),addItem:async({id:t,...e},i)=>r.client.fetch(`/store/wishlists/${t}/add-item`,{method:"POST",body:e,headers:{...await s?.getAuthHeader?.(),...i}}),listItems:async({id:t,limit:e=10,offset:i=0,...n},a)=>r.client.fetch(`/store/wishlists/${t}/items`,{method:"GET",headers:{...await s?.getAuthHeader?.(),...a},query:{limit:e,offset:i,...n}}),removeItem:async({wishlist_item_id:t,id:e},i)=>r.client.fetch(`/store/wishlists/${e}/items/${t}`,{method:"DELETE",headers:{...await s?.getAuthHeader?.(),...i}})})};var c={name:"paypal",endpoints:(r,s)=>({createClientToken:async t=>r.client.fetch("/store/paypal/client-token",{method:"POST",headers:{...await s?.getAuthHeader?.(),...t}})})};var m={name:"reviews",endpoints:(r,s,t)=>({create:async(e,i)=>r.client.fetch("/store/reviews",{method:"POST",body:e,headers:{...await s?.getAuthHeader?.(),...i}}),list:async({...e},i)=>r.client.fetch("/store/products/reviews",{method:"GET",headers:{...await s?.getAuthHeader?.(),...i},query:e}),listProductReviews:async({product_id:e,...i},n)=>r.client.fetch(`/store/reviews/product/${e}`,{method:"GET",query:i,headers:{...await s?.getAuthHeader?.(),...n}}),aggregateCounts:async({product_id:e,...i},n)=>r.client.fetch(`/store/reviews/product/${e}/aggregate-counts`,{method:"GET",query:i,headers:{...await s?.getAuthHeader?.(),...n}}),delete:async({id:e},i)=>r.client.fetch(`/store/reviews/${e}`,{method:"DELETE",headers:{...await s?.getAuthHeader?.(),...i}}),uploadImageFiles:async(e,i)=>{let n=t?.baseUrl,a=t?.publishableKey;if(!n||!a)throw new Error("Missing baseUrl or publishableKey");return await(await fetch(`${n}/store/reviews/files/images/upload`,{method:"POST",body:e.formData,headers:{...i,"x-publishable-api-key":a}})).json()}})};var f={name:"econt",endpoints:(r,s)=>({validateAddress:async(t,e)=>r.client.fetch("/store/econt/validate-address",{method:"POST",body:t,headers:{...await s?.getAuthHeader?.(),...e}}),listCities:async({countryCode:t="BGR",...e},i)=>r.client.fetch("/store/econt/cities",{method:"GET",headers:{...await s?.getAuthHeader?.(),...i},query:{countryCode:t,...e}}),listQuarters:async({cityId:t,countryCode:e="BGR",...i},n)=>r.client.fetch("/store/econt/quarters",{method:"GET",headers:{...await s?.getAuthHeader?.(),...n},query:{cityId:t,countryCode:e,...i}}),listOffices:async({countryCode:t="BGR",...e},i)=>r.client.fetch("/store/econt/offices",{method:"GET",headers:{...await s?.getAuthHeader?.(),...i},query:{countryCode:t,...e}})})};var o=class extends u{constructor(s,t,e){super(s),this.options=e,this.medusaConfig=s;let i={};t.forEach(n=>{i[n.name]=n.endpoints(this,this.options,this.medusaConfig);}),this.alphabite=i;}};export{o as AlphabiteMedusaSdk,f as econtPlugin,c as paypalPlugin,m as reviewsPlugin,l as wishlistPlugin};
|