wedance-shared 1.0.145 → 1.0.146
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/types/organizer.d.ts +21 -0
- package/package.json +1 -1
|
@@ -38,6 +38,27 @@ export type OrganizerData = {
|
|
|
38
38
|
followersCount?: number;
|
|
39
39
|
eventsCount?: number;
|
|
40
40
|
stripeAccountId?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
* Merchant-of-Record / legal entity details. When `isMerchantOfRecord` is true
|
|
43
|
+
* AND the legal fields below are complete, the organizer is shown as the seller
|
|
44
|
+
* on receipts/invoices; otherwise WeDance (SOB Digital Oy) is the MoR.
|
|
45
|
+
*/
|
|
46
|
+
isMerchantOfRecord?: boolean;
|
|
47
|
+
/** Registered company name, e.g. "Acme Events Oy". */
|
|
48
|
+
legalName?: string | null;
|
|
49
|
+
/** EU VAT ID, e.g. "FI12345678". */
|
|
50
|
+
vatNumber?: string | null;
|
|
51
|
+
/** National registration number (Y-tunnus in FI), e.g. "1234567-8". */
|
|
52
|
+
businessId?: string | null;
|
|
53
|
+
/** Invoice/billing contact; may differ from the public `email`. */
|
|
54
|
+
billingEmail?: string | null;
|
|
55
|
+
/** Legal address (distinct from the display `city`). */
|
|
56
|
+
addressLine1?: string | null;
|
|
57
|
+
addressLine2?: string | null;
|
|
58
|
+
postalCode?: string | null;
|
|
59
|
+
addressCity?: string | null;
|
|
60
|
+
/** ISO-3166 alpha-2, e.g. "FI". */
|
|
61
|
+
addressCountryCode?: string | null;
|
|
41
62
|
};
|
|
42
63
|
export type OrganizerCapabilities = {
|
|
43
64
|
ticketing: boolean;
|
package/package.json
CHANGED