@gomusdev/web-components 4.1.1 → 4.2.0
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/README.md +6 -0
- package/dist-js/components/membershipActivation/MembershipActivation.svelte.d.ts +1 -0
- package/dist-js/gomus-webcomponents.iife.js +49 -0
- package/dist-js/gomus-webcomponents.js +49 -0
- package/dist-js/gomus-webcomponents.min.iife.js +18 -18
- package/dist-js/gomus-webcomponents.min.js +1702 -1660
- package/dist-js/src/components/membershipActivation/entry.d.ts +0 -0
- package/dist-js/src/components/membershipActivation/specs/MembershipActivation.spec.d.ts +1 -0
- package/dist-js/src/lib/stores/shop.svelte.d.ts +2 -1
- package/package.json +1 -1
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -6,7 +6,7 @@ import { Auth } from '../../../lib/stores/auth.svelte.ts';
|
|
|
6
6
|
import { User } from '../../../lib/stores/user.svelte.ts';
|
|
7
7
|
import { OpenApiClient } from '@gomus/api';
|
|
8
8
|
import { TicketsAndQuotasParams, TicketsCalendarParams, TicketsParams } from '@gomus/api/lib/types.ts';
|
|
9
|
-
import { CapacitiesResponse, CheckoutParams, CheckoutResponse, Country, Event, Exhibition, FinalizePersonalizationParams, FinalizePersonalizationResponse, LocaleOptions, Merchandise, Museum, OrdersParams, OrdersSuccess, PasswordResetResponse, PasswordUpdateResponse, PostCartParams, PostCartResponse, Salutation, ShopType, SignInParams, SignInResponse, SignUpParams, SignUpResponse, TicketContentEntry, Tour, UploadPersonalizationPhotoResponse, ValidateTokenSuccess, WithdrawalParams, WithdrawalResponse } from '@gomus/types';
|
|
9
|
+
import { CapacitiesResponse, CheckoutParams, CheckoutResponse, Country, Event, Exhibition, FinalizePersonalizationParams, FinalizePersonalizationResponse, LocaleOptions, MembershipActivationParams, MembershipActivationResponse, Merchandise, Museum, OrdersParams, OrdersSuccess, PasswordResetResponse, PasswordUpdateResponse, PostCartParams, PostCartResponse, Salutation, ShopType, SignInParams, SignInResponse, SignUpParams, SignUpResponse, TicketContentEntry, Tour, UploadPersonalizationPhotoResponse, ValidateTokenSuccess, WithdrawalParams, WithdrawalResponse } from '@gomus/types';
|
|
10
10
|
export type ShopKind = 'angular' | 'jmb';
|
|
11
11
|
export type ValidateTokenResult = ValidateTokenSuccess | NotSignedIn | undefined;
|
|
12
12
|
export type OrdersResult = OrdersSuccess | NotSignedIn | undefined;
|
|
@@ -468,6 +468,7 @@ export declare class Shop {
|
|
|
468
468
|
passwordReset(params: {
|
|
469
469
|
email: string;
|
|
470
470
|
}): Promise<PasswordResetResponse>;
|
|
471
|
+
activateMembership(params: MembershipActivationParams): Promise<MembershipActivationResponse>;
|
|
471
472
|
checkout(params: CheckoutParams): Promise<CheckoutResponse>;
|
|
472
473
|
createCart(params: PostCartParams): Promise<PostCartResponse>;
|
|
473
474
|
order(token: string): {
|