@gomusdev/web-components 4.2.0 → 4.3.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.
@@ -79,7 +79,7 @@ export declare class Shop {
79
79
  };
80
80
  get cart(): {
81
81
  items: {
82
- type: "Ticket" | "Event" | "Coupon";
82
+ type: "Ticket" | "Event" | "Coupon" | "Tour";
83
83
  product: import('../models/cart/types').Product;
84
84
  orderAttributes(): {
85
85
  sub_ticket_quantities?: Record<number, number> | undefined;
@@ -103,6 +103,12 @@ export declare class Shop {
103
103
  shipping_mode: string;
104
104
  id: number;
105
105
  uuid: string;
106
+ } | {
107
+ start_time: string | undefined;
108
+ shipped_with_merchandise_id: null;
109
+ shipping_mode: string;
110
+ id: number;
111
+ uuid: string;
106
112
  };
107
113
  uuid: string;
108
114
  subUId: string;
@@ -129,7 +135,7 @@ export declare class Shop {
129
135
  paymentModeId: undefined;
130
136
  uid: string;
131
137
  readonly nonEmptyItems: {
132
- type: "Ticket" | "Event" | "Coupon";
138
+ type: "Ticket" | "Event" | "Coupon" | "Tour";
133
139
  product: import('../models/cart/types').Product;
134
140
  orderAttributes(): {
135
141
  sub_ticket_quantities?: Record<number, number> | undefined;
@@ -153,6 +159,12 @@ export declare class Shop {
153
159
  shipping_mode: string;
154
160
  id: number;
155
161
  uuid: string;
162
+ } | {
163
+ start_time: string | undefined;
164
+ shipped_with_merchandise_id: null;
165
+ shipping_mode: string;
166
+ id: number;
167
+ uuid: string;
156
168
  };
157
169
  uuid: string;
158
170
  subUId: string;
@@ -182,7 +194,7 @@ export declare class Shop {
182
194
  toString(): string;
183
195
  orderData(): {
184
196
  items: {
185
- type: "Ticket" | "Event" | "Coupon";
197
+ type: "Ticket" | "Event" | "Coupon" | "Tour";
186
198
  attributes: {
187
199
  sub_ticket_quantities?: Record<number, number> | undefined;
188
200
  time: string | undefined;
@@ -205,6 +217,12 @@ export declare class Shop {
205
217
  shipping_mode: string;
206
218
  id: number;
207
219
  uuid: string;
220
+ } | {
221
+ start_time: string | undefined;
222
+ shipped_with_merchandise_id: null;
223
+ shipping_mode: string;
224
+ id: number;
225
+ uuid: string;
208
226
  };
209
227
  }[];
210
228
  shipping_address_id: null;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "name": "Giantmonkey GmbH"
5
5
  },
6
6
  "license": "MIT",
7
- "version": "4.2.0",
7
+ "version": "4.3.0",
8
8
  "type": "module",
9
9
  "main": "./dist-js/gomus-webcomponents.iife.js",
10
10
  "module": "./dist-js/gomus-webcomponents.iife.js",
@@ -45,7 +45,7 @@
45
45
  "storybook:docker:build-and-run": "docker build -t storybook-caddy-auth ./.storybook/deploy && docker run --env-file .env -p 8080:8080 storybook-caddy-auth",
46
46
  "=== D O C U M E N T A T I O N ===": "",
47
47
  "storybook:docs": "pnpm build:interactive-editor && storybook dev -c .storybook-docs",
48
- "storybook:docs:build": "pnpm build:interactive-editor && storybook build -o ./.storybook-docs/deploy/build -c ./.storybook-docs && node .storybook-docs/copy-bugs.mjs",
48
+ "storybook:docs:build": "pnpm build:interactive-editor && storybook build -o ./.storybook-docs/deploy/build -c ./.storybook-docs && node .storybook-docs/copy-bugs.mjs && node .storybook-docs/copy-demos.mjs",
49
49
  "storybook:docs:build-and-deploy": "pnpm storybook:docs:build && cd ./.storybook-docs/deploy && fly deploy",
50
50
  "storybook:docs:docker:build-and-run": "docker build -t storybook-caddy-auth ./.storybook-docs/deploy && docker run --env-file .env -p 8080:8080 storybook-caddy-auth"
51
51
  },