@wix/events 1.0.256 → 1.0.257

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/events",
3
- "version": "1.0.256",
3
+ "version": "1.0.257",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -32,7 +32,7 @@
32
32
  "@wix/events_ticket-definitions": "1.0.42",
33
33
  "@wix/events_ticket-definitions-v-2": "1.0.48",
34
34
  "@wix/events_tickets": "1.0.36",
35
- "@wix/events_wix-events-v-2": "1.0.47"
35
+ "@wix/events_wix-events-v-2": "1.0.48"
36
36
  },
37
37
  "devDependencies": {
38
38
  "glob": "^10.4.1",
@@ -57,5 +57,5 @@
57
57
  "fqdn": ""
58
58
  }
59
59
  },
60
- "falconPackageHash": "5ea58963c96cc593c8c6541d6809a1f3ff24cb1c93689ff6bd207355"
60
+ "falconPackageHash": "f5a44942b84e3cdd50b955edccd67514110ad5a77f91c7c7d7e090cf"
61
61
  }
@@ -17342,6 +17342,18 @@ interface EventEventPublished {
17342
17342
  * Can be used to track the original event and add missing information.
17343
17343
  */
17344
17344
  derivedFromEventId?: string | null;
17345
+ /** Event title. */
17346
+ title?: string | null;
17347
+ /** Short description that appears under the event title. */
17348
+ shortDescription?: string | null;
17349
+ /** Event location. */
17350
+ location?: Location$1;
17351
+ /** Event date and time settings. */
17352
+ dateAndTimeSettings?: DateAndTimeSettings;
17353
+ /** Event page URL components. */
17354
+ eventPageUrl?: string;
17355
+ /** RSVP or ticketing registration details. */
17356
+ registration?: Registration$1;
17345
17357
  }
17346
17358
  interface EventCloned {
17347
17359
  /** Event creation timestamp in ISO UTC format. */
@@ -17342,6 +17342,18 @@ interface EventEventPublished {
17342
17342
  * Can be used to track the original event and add missing information.
17343
17343
  */
17344
17344
  derivedFromEventId?: string | null;
17345
+ /** Event title. */
17346
+ title?: string | null;
17347
+ /** Short description that appears under the event title. */
17348
+ shortDescription?: string | null;
17349
+ /** Event location. */
17350
+ location?: Location$1;
17351
+ /** Event date and time settings. */
17352
+ dateAndTimeSettings?: DateAndTimeSettings;
17353
+ /** Event page URL components. */
17354
+ eventPageUrl?: string;
17355
+ /** RSVP or ticketing registration details. */
17356
+ registration?: Registration$1;
17345
17357
  }
17346
17358
  interface EventCloned {
17347
17359
  /** Event creation timestamp in ISO UTC format. */
@@ -13594,25 +13594,11 @@ declare enum Status$1 {
13594
13594
  /** Event is not public */
13595
13595
  DRAFT = "DRAFT"
13596
13596
  }
13597
- interface CommonImage {
13598
- /** WixMedia image ID. */
13599
- id?: string;
13600
- /** Image URL. */
13601
- url?: string;
13602
- /**
13603
- * Original image height.
13604
- *
13605
- * **Note:** You have to define height for the image to appear.
13606
- */
13607
- height?: number;
13608
- /**
13609
- * Original image width.
13610
- *
13611
- * **Note:** You have to define width for the image to appear.
13612
- */
13613
- width?: number;
13614
- /** Image alt text. */
13615
- altText?: string | null;
13597
+ interface PageUrl {
13598
+ /** The base URL. For premium sites, the base is the domain. For free sites, the base is the Wix site URL (for example, `https://mysite.wixsite.com/mysite`). */
13599
+ base?: string;
13600
+ /** The path to the page. For example, `/product-page/a-product`. */
13601
+ path?: string;
13616
13602
  }
13617
13603
  interface Registration$1 {
13618
13604
  /**
@@ -13800,6 +13786,26 @@ declare enum InitialRegistrationTypeType$1 {
13800
13786
  /** Registration via ticket purchase */
13801
13787
  TICKETING = "TICKETING"
13802
13788
  }
13789
+ interface CommonImage {
13790
+ /** WixMedia image ID. */
13791
+ id?: string;
13792
+ /** Image URL. */
13793
+ url?: string;
13794
+ /**
13795
+ * Original image height.
13796
+ *
13797
+ * **Note:** You have to define height for the image to appear.
13798
+ */
13799
+ height?: number;
13800
+ /**
13801
+ * Original image width.
13802
+ *
13803
+ * **Note:** You have to define width for the image to appear.
13804
+ */
13805
+ width?: number;
13806
+ /** Image alt text. */
13807
+ altText?: string | null;
13808
+ }
13803
13809
  interface CalendarUrls$1 {
13804
13810
  /**
13805
13811
  * "Add to Google calendar" URL.
@@ -13812,12 +13818,6 @@ interface CalendarUrls$1 {
13812
13818
  */
13813
13819
  ics?: string;
13814
13820
  }
13815
- interface PageUrl {
13816
- /** The base URL. For premium sites, the base is the domain. For free sites, the base is the Wix site URL (for example, `https://mysite.wixsite.com/mysite`). */
13817
- base?: string;
13818
- /** The path to the page. For example, `/product-page/a-product`. */
13819
- path?: string;
13820
- }
13821
13821
  /**
13822
13822
  * The form defines which elements are rendered in the Wix UI during the registration process (RSVP or checkout).
13823
13823
  * It also contains customizable messages and labels.