@wix/auto_sdk_events_notifications 1.0.27 → 1.0.29
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/build/cjs/index.d.ts +9 -4
- package/build/cjs/index.js +64 -13
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +225 -23
- package/build/cjs/index.typings.js +64 -13
- package/build/cjs/index.typings.js.map +1 -1
- package/build/es/index.d.mts +9 -4
- package/build/es/index.mjs +57 -13
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +225 -23
- package/build/es/index.typings.mjs +57 -13
- package/build/es/index.typings.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +9 -4
- package/build/internal/cjs/index.js +64 -13
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +225 -23
- package/build/internal/cjs/index.typings.js +64 -13
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/es/index.d.mts +9 -4
- package/build/internal/es/index.mjs +57 -13
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +225 -23
- package/build/internal/es/index.typings.mjs +57 -13
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -783,7 +783,7 @@ interface Money {
|
|
|
783
783
|
*/
|
|
784
784
|
amount?: string;
|
|
785
785
|
/**
|
|
786
|
-
*
|
|
786
|
+
* 3-letter currency code in [ISO-4217 alphabetic](https://en.wikipedia.org/wiki/ISO_4217#Active_codes) format. For example, `USD`.
|
|
787
787
|
* @format CURRENCY
|
|
788
788
|
*/
|
|
789
789
|
currency?: string;
|
|
@@ -1749,7 +1749,7 @@ interface DividerData {
|
|
|
1749
1749
|
/** Divider width. */
|
|
1750
1750
|
width?: WidthWithLiterals;
|
|
1751
1751
|
/** Divider alignment. */
|
|
1752
|
-
alignment?:
|
|
1752
|
+
alignment?: DividerDataAlignmentWithLiterals;
|
|
1753
1753
|
}
|
|
1754
1754
|
declare enum LineStyle {
|
|
1755
1755
|
/** Single Line */
|
|
@@ -1773,7 +1773,7 @@ declare enum Width {
|
|
|
1773
1773
|
}
|
|
1774
1774
|
/** @enumType */
|
|
1775
1775
|
type WidthWithLiterals = Width | 'LARGE' | 'MEDIUM' | 'SMALL';
|
|
1776
|
-
declare enum
|
|
1776
|
+
declare enum DividerDataAlignment {
|
|
1777
1777
|
/** Center alignment */
|
|
1778
1778
|
CENTER = "CENTER",
|
|
1779
1779
|
/** Left alignment */
|
|
@@ -1782,7 +1782,7 @@ declare enum Alignment {
|
|
|
1782
1782
|
RIGHT = "RIGHT"
|
|
1783
1783
|
}
|
|
1784
1784
|
/** @enumType */
|
|
1785
|
-
type
|
|
1785
|
+
type DividerDataAlignmentWithLiterals = DividerDataAlignment | 'CENTER' | 'LEFT' | 'RIGHT';
|
|
1786
1786
|
interface FileData {
|
|
1787
1787
|
/** Styling for the file's container. */
|
|
1788
1788
|
containerData?: PluginContainerData;
|
|
@@ -1907,7 +1907,7 @@ interface GalleryDataItemDataOneOf {
|
|
|
1907
1907
|
}
|
|
1908
1908
|
interface GalleryOptions {
|
|
1909
1909
|
/** Gallery layout. */
|
|
1910
|
-
layout?:
|
|
1910
|
+
layout?: GalleryOptionsLayout;
|
|
1911
1911
|
/** Styling for gallery items. */
|
|
1912
1912
|
item?: ItemStyle;
|
|
1913
1913
|
/** Styling for gallery thumbnail images. */
|
|
@@ -1967,7 +1967,7 @@ declare enum ThumbnailsAlignment {
|
|
|
1967
1967
|
}
|
|
1968
1968
|
/** @enumType */
|
|
1969
1969
|
type ThumbnailsAlignmentWithLiterals = ThumbnailsAlignment | 'TOP' | 'RIGHT' | 'BOTTOM' | 'LEFT' | 'NONE';
|
|
1970
|
-
interface
|
|
1970
|
+
interface GalleryOptionsLayout {
|
|
1971
1971
|
/** Gallery layout type. */
|
|
1972
1972
|
type?: LayoutTypeWithLiterals;
|
|
1973
1973
|
/** Sets whether horizontal scroll is enabled. Defaults to `true` unless the layout `type` is set to `GRID` or `COLLAGE`. */
|
|
@@ -2129,7 +2129,7 @@ interface LinkPreviewData {
|
|
|
2129
2129
|
/** Styling for the link preview. */
|
|
2130
2130
|
styles?: LinkPreviewDataStyles;
|
|
2131
2131
|
}
|
|
2132
|
-
declare enum
|
|
2132
|
+
declare enum StylesPosition {
|
|
2133
2133
|
/** Thumbnail positioned at the start (left in LTR layouts, right in RTL layouts) */
|
|
2134
2134
|
START = "START",
|
|
2135
2135
|
/** Thumbnail positioned at the end (right in LTR layouts, left in RTL layouts) */
|
|
@@ -2140,7 +2140,7 @@ declare enum Position {
|
|
|
2140
2140
|
HIDDEN = "HIDDEN"
|
|
2141
2141
|
}
|
|
2142
2142
|
/** @enumType */
|
|
2143
|
-
type
|
|
2143
|
+
type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HIDDEN';
|
|
2144
2144
|
interface LinkPreviewDataStyles {
|
|
2145
2145
|
/**
|
|
2146
2146
|
* Background color as a hexadecimal value.
|
|
@@ -2172,7 +2172,7 @@ interface LinkPreviewDataStyles {
|
|
|
2172
2172
|
*/
|
|
2173
2173
|
borderColor?: string | null;
|
|
2174
2174
|
/** Position of thumbnail. Defaults to `START`. */
|
|
2175
|
-
thumbnailPosition?:
|
|
2175
|
+
thumbnailPosition?: StylesPositionWithLiterals;
|
|
2176
2176
|
}
|
|
2177
2177
|
interface MapData {
|
|
2178
2178
|
/** Styling for the map's container. */
|
|
@@ -2526,6 +2526,32 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
|
|
|
2526
2526
|
url?: string | null;
|
|
2527
2527
|
/** An image for the embedded content. */
|
|
2528
2528
|
image?: Media;
|
|
2529
|
+
/** Whether to hide the image. */
|
|
2530
|
+
hideImage?: boolean | null;
|
|
2531
|
+
/** Whether to hide the title. */
|
|
2532
|
+
hideTitle?: boolean | null;
|
|
2533
|
+
/** Whether to hide the price. */
|
|
2534
|
+
hidePrice?: boolean | null;
|
|
2535
|
+
/** Whether to hide the description (Event and Booking). */
|
|
2536
|
+
hideDescription?: boolean | null;
|
|
2537
|
+
/** Whether to hide the date and time (Event). */
|
|
2538
|
+
hideDateTime?: boolean | null;
|
|
2539
|
+
/** Whether to hide the location (Event). */
|
|
2540
|
+
hideLocation?: boolean | null;
|
|
2541
|
+
/** Whether to hide the duration (Booking). */
|
|
2542
|
+
hideDuration?: boolean | null;
|
|
2543
|
+
/** Whether to hide the button. */
|
|
2544
|
+
hideButton?: boolean | null;
|
|
2545
|
+
/** Whether to hide the ribbon. */
|
|
2546
|
+
hideRibbon?: boolean | null;
|
|
2547
|
+
/** Button styling options. */
|
|
2548
|
+
buttonStyles?: ButtonStyles;
|
|
2549
|
+
/** Image styling options. */
|
|
2550
|
+
imageStyles?: ImageStyles;
|
|
2551
|
+
/** Ribbon styling options. */
|
|
2552
|
+
ribbonStyles?: RibbonStyles;
|
|
2553
|
+
/** Card styling options. */
|
|
2554
|
+
cardStyles?: CardStyles;
|
|
2529
2555
|
}
|
|
2530
2556
|
/** @oneof */
|
|
2531
2557
|
interface AppEmbedDataAppDataOneOf {
|
|
@@ -2534,6 +2560,66 @@ interface AppEmbedDataAppDataOneOf {
|
|
|
2534
2560
|
/** Data for embedded Wix Events content. */
|
|
2535
2561
|
eventData?: EventData;
|
|
2536
2562
|
}
|
|
2563
|
+
declare enum Position {
|
|
2564
|
+
/** Image positioned at the start (left in LTR layouts, right in RTL layouts) */
|
|
2565
|
+
START = "START",
|
|
2566
|
+
/** Image positioned at the end (right in LTR layouts, left in RTL layouts) */
|
|
2567
|
+
END = "END",
|
|
2568
|
+
/** Image positioned at the top */
|
|
2569
|
+
TOP = "TOP"
|
|
2570
|
+
}
|
|
2571
|
+
/** @enumType */
|
|
2572
|
+
type PositionWithLiterals = Position | 'START' | 'END' | 'TOP';
|
|
2573
|
+
declare enum AspectRatio {
|
|
2574
|
+
/** 1:1 aspect ratio */
|
|
2575
|
+
SQUARE = "SQUARE",
|
|
2576
|
+
/** 16:9 aspect ratio */
|
|
2577
|
+
RECTANGLE = "RECTANGLE"
|
|
2578
|
+
}
|
|
2579
|
+
/** @enumType */
|
|
2580
|
+
type AspectRatioWithLiterals = AspectRatio | 'SQUARE' | 'RECTANGLE';
|
|
2581
|
+
declare enum Resizing {
|
|
2582
|
+
/** Fill the container, may crop the image */
|
|
2583
|
+
FILL = "FILL",
|
|
2584
|
+
/** Fit the image within the container */
|
|
2585
|
+
FIT = "FIT"
|
|
2586
|
+
}
|
|
2587
|
+
/** @enumType */
|
|
2588
|
+
type ResizingWithLiterals = Resizing | 'FILL' | 'FIT';
|
|
2589
|
+
declare enum Placement {
|
|
2590
|
+
/** Ribbon placed on the image */
|
|
2591
|
+
IMAGE = "IMAGE",
|
|
2592
|
+
/** Ribbon placed on the product information */
|
|
2593
|
+
PRODUCT_INFO = "PRODUCT_INFO"
|
|
2594
|
+
}
|
|
2595
|
+
/** @enumType */
|
|
2596
|
+
type PlacementWithLiterals = Placement | 'IMAGE' | 'PRODUCT_INFO';
|
|
2597
|
+
declare enum CardStylesType {
|
|
2598
|
+
/** Card with visible border and background */
|
|
2599
|
+
CONTAINED = "CONTAINED",
|
|
2600
|
+
/** Card without visible border */
|
|
2601
|
+
FRAMELESS = "FRAMELESS"
|
|
2602
|
+
}
|
|
2603
|
+
/** @enumType */
|
|
2604
|
+
type CardStylesTypeWithLiterals = CardStylesType | 'CONTAINED' | 'FRAMELESS';
|
|
2605
|
+
declare enum Alignment {
|
|
2606
|
+
/** Content aligned to start (left in LTR layouts, right in RTL layouts) */
|
|
2607
|
+
START = "START",
|
|
2608
|
+
/** Content centered */
|
|
2609
|
+
CENTER = "CENTER",
|
|
2610
|
+
/** Content aligned to end (right in LTR layouts, left in RTL layouts) */
|
|
2611
|
+
END = "END"
|
|
2612
|
+
}
|
|
2613
|
+
/** @enumType */
|
|
2614
|
+
type AlignmentWithLiterals = Alignment | 'START' | 'CENTER' | 'END';
|
|
2615
|
+
declare enum Layout {
|
|
2616
|
+
/** Elements stacked vertically */
|
|
2617
|
+
STACKED = "STACKED",
|
|
2618
|
+
/** Elements arranged horizontally */
|
|
2619
|
+
SIDE_BY_SIDE = "SIDE_BY_SIDE"
|
|
2620
|
+
}
|
|
2621
|
+
/** @enumType */
|
|
2622
|
+
type LayoutWithLiterals = Layout | 'STACKED' | 'SIDE_BY_SIDE';
|
|
2537
2623
|
declare enum AppType {
|
|
2538
2624
|
PRODUCT = "PRODUCT",
|
|
2539
2625
|
EVENT = "EVENT",
|
|
@@ -2551,6 +2637,122 @@ interface EventData {
|
|
|
2551
2637
|
/** Event location. */
|
|
2552
2638
|
location?: string | null;
|
|
2553
2639
|
}
|
|
2640
|
+
interface ButtonStyles {
|
|
2641
|
+
/** Text to display on the button. */
|
|
2642
|
+
buttonText?: string | null;
|
|
2643
|
+
/** Border width in pixels. */
|
|
2644
|
+
borderWidth?: number | null;
|
|
2645
|
+
/** Border radius in pixels. */
|
|
2646
|
+
borderRadius?: number | null;
|
|
2647
|
+
/**
|
|
2648
|
+
* Border color as a hexadecimal value.
|
|
2649
|
+
* @format COLOR_HEX
|
|
2650
|
+
*/
|
|
2651
|
+
borderColor?: string | null;
|
|
2652
|
+
/**
|
|
2653
|
+
* Text color as a hexadecimal value.
|
|
2654
|
+
* @format COLOR_HEX
|
|
2655
|
+
*/
|
|
2656
|
+
textColor?: string | null;
|
|
2657
|
+
/**
|
|
2658
|
+
* Background color as a hexadecimal value.
|
|
2659
|
+
* @format COLOR_HEX
|
|
2660
|
+
*/
|
|
2661
|
+
backgroundColor?: string | null;
|
|
2662
|
+
/**
|
|
2663
|
+
* Border color as a hexadecimal value (hover state).
|
|
2664
|
+
* @format COLOR_HEX
|
|
2665
|
+
*/
|
|
2666
|
+
borderColorHover?: string | null;
|
|
2667
|
+
/**
|
|
2668
|
+
* Text color as a hexadecimal value (hover state).
|
|
2669
|
+
* @format COLOR_HEX
|
|
2670
|
+
*/
|
|
2671
|
+
textColorHover?: string | null;
|
|
2672
|
+
/**
|
|
2673
|
+
* Background color as a hexadecimal value (hover state).
|
|
2674
|
+
* @format COLOR_HEX
|
|
2675
|
+
*/
|
|
2676
|
+
backgroundColorHover?: string | null;
|
|
2677
|
+
/** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
|
|
2678
|
+
buttonSize?: string | null;
|
|
2679
|
+
}
|
|
2680
|
+
interface ImageStyles {
|
|
2681
|
+
/** Whether to hide the image. */
|
|
2682
|
+
hideImage?: boolean | null;
|
|
2683
|
+
/** Position of image. Defaults to `START`. */
|
|
2684
|
+
imagePosition?: PositionWithLiterals;
|
|
2685
|
+
/** Aspect ratio for the image. Defaults to `SQUARE`. */
|
|
2686
|
+
aspectRatio?: AspectRatioWithLiterals;
|
|
2687
|
+
/** How the image should be resized. Defaults to `FILL`. */
|
|
2688
|
+
resizing?: ResizingWithLiterals;
|
|
2689
|
+
/**
|
|
2690
|
+
* Image border color as a hexadecimal value.
|
|
2691
|
+
* @format COLOR_HEX
|
|
2692
|
+
*/
|
|
2693
|
+
borderColor?: string | null;
|
|
2694
|
+
/** Image border width in pixels. */
|
|
2695
|
+
borderWidth?: number | null;
|
|
2696
|
+
/** Image border radius in pixels. */
|
|
2697
|
+
borderRadius?: number | null;
|
|
2698
|
+
}
|
|
2699
|
+
interface RibbonStyles {
|
|
2700
|
+
/** Text to display on the ribbon. */
|
|
2701
|
+
ribbonText?: string | null;
|
|
2702
|
+
/**
|
|
2703
|
+
* Ribbon background color as a hexadecimal value.
|
|
2704
|
+
* @format COLOR_HEX
|
|
2705
|
+
*/
|
|
2706
|
+
backgroundColor?: string | null;
|
|
2707
|
+
/**
|
|
2708
|
+
* Ribbon text color as a hexadecimal value.
|
|
2709
|
+
* @format COLOR_HEX
|
|
2710
|
+
*/
|
|
2711
|
+
textColor?: string | null;
|
|
2712
|
+
/**
|
|
2713
|
+
* Ribbon border color as a hexadecimal value.
|
|
2714
|
+
* @format COLOR_HEX
|
|
2715
|
+
*/
|
|
2716
|
+
borderColor?: string | null;
|
|
2717
|
+
/** Ribbon border width in pixels. */
|
|
2718
|
+
borderWidth?: number | null;
|
|
2719
|
+
/** Ribbon border radius in pixels. */
|
|
2720
|
+
borderRadius?: number | null;
|
|
2721
|
+
/** Placement of the ribbon. Defaults to `IMAGE`. */
|
|
2722
|
+
ribbonPlacement?: PlacementWithLiterals;
|
|
2723
|
+
}
|
|
2724
|
+
interface CardStyles {
|
|
2725
|
+
/**
|
|
2726
|
+
* Card background color as a hexadecimal value.
|
|
2727
|
+
* @format COLOR_HEX
|
|
2728
|
+
*/
|
|
2729
|
+
backgroundColor?: string | null;
|
|
2730
|
+
/**
|
|
2731
|
+
* Card border color as a hexadecimal value.
|
|
2732
|
+
* @format COLOR_HEX
|
|
2733
|
+
*/
|
|
2734
|
+
borderColor?: string | null;
|
|
2735
|
+
/** Card border width in pixels. */
|
|
2736
|
+
borderWidth?: number | null;
|
|
2737
|
+
/** Card border radius in pixels. */
|
|
2738
|
+
borderRadius?: number | null;
|
|
2739
|
+
/** Card type. Defaults to `CONTAINED`. */
|
|
2740
|
+
type?: CardStylesTypeWithLiterals;
|
|
2741
|
+
/** Content alignment. Defaults to `START`. */
|
|
2742
|
+
alignment?: AlignmentWithLiterals;
|
|
2743
|
+
/** Layout for title and price. Defaults to `STACKED`. */
|
|
2744
|
+
titlePriceLayout?: LayoutWithLiterals;
|
|
2745
|
+
/**
|
|
2746
|
+
* Title text color as a hexadecimal value.
|
|
2747
|
+
* @format COLOR_HEX
|
|
2748
|
+
*/
|
|
2749
|
+
titleColor?: string | null;
|
|
2750
|
+
/**
|
|
2751
|
+
* Text color as a hexadecimal value.
|
|
2752
|
+
* @format COLOR_HEX
|
|
2753
|
+
*/
|
|
2754
|
+
textColor?: string | null;
|
|
2755
|
+
}
|
|
2554
2756
|
interface VideoData {
|
|
2555
2757
|
/** Styling for the video's container. */
|
|
2556
2758
|
containerData?: PluginContainerData;
|
|
@@ -2897,24 +3099,24 @@ interface OrderConfirmed {
|
|
|
2897
3099
|
}
|
|
2898
3100
|
interface FormResponse {
|
|
2899
3101
|
/**
|
|
2900
|
-
*
|
|
3102
|
+
* Form field inputs.
|
|
2901
3103
|
* @maxSize 200
|
|
2902
3104
|
*/
|
|
2903
3105
|
inputValues?: InputValue[];
|
|
2904
3106
|
}
|
|
2905
3107
|
interface InputValue {
|
|
2906
3108
|
/**
|
|
2907
|
-
*
|
|
3109
|
+
* Form field input name.
|
|
2908
3110
|
* @maxLength 100
|
|
2909
3111
|
*/
|
|
2910
3112
|
inputName?: string;
|
|
2911
3113
|
/**
|
|
2912
|
-
*
|
|
3114
|
+
* Form field value.
|
|
2913
3115
|
* @maxLength 5000
|
|
2914
3116
|
*/
|
|
2915
3117
|
value?: string;
|
|
2916
3118
|
/**
|
|
2917
|
-
*
|
|
3119
|
+
* Form field values.
|
|
2918
3120
|
* @maxSize 100
|
|
2919
3121
|
* @maxLength 5000
|
|
2920
3122
|
*/
|
|
@@ -2922,11 +3124,11 @@ interface InputValue {
|
|
|
2922
3124
|
}
|
|
2923
3125
|
interface FormattedAddress {
|
|
2924
3126
|
/**
|
|
2925
|
-
*
|
|
3127
|
+
* 1-line address representation.
|
|
2926
3128
|
* @maxLength 200
|
|
2927
3129
|
*/
|
|
2928
3130
|
formatted?: string;
|
|
2929
|
-
/** Address components
|
|
3131
|
+
/** Address components. */
|
|
2930
3132
|
address?: CommonAddress;
|
|
2931
3133
|
}
|
|
2932
3134
|
/** Physical address */
|
|
@@ -2983,7 +3185,7 @@ interface StandardDetails {
|
|
|
2983
3185
|
iso31662?: string | null;
|
|
2984
3186
|
}
|
|
2985
3187
|
declare enum OrderStatus {
|
|
2986
|
-
/** Order status
|
|
3188
|
+
/** Order status isn't available for this request fieldset. */
|
|
2987
3189
|
NA_ORDER_STATUS = "NA_ORDER_STATUS",
|
|
2988
3190
|
/** Order is confirmed, no payment is required. */
|
|
2989
3191
|
FREE = "FREE",
|
|
@@ -2991,9 +3193,9 @@ declare enum OrderStatus {
|
|
|
2991
3193
|
PENDING = "PENDING",
|
|
2992
3194
|
/** Order is paid. */
|
|
2993
3195
|
PAID = "PAID",
|
|
2994
|
-
/** Order is confirmed but
|
|
3196
|
+
/** Order is confirmed but must be paid via offline payment. Status needs to be manually updated to `"PAID"`. */
|
|
2995
3197
|
OFFLINE_PENDING = "OFFLINE_PENDING",
|
|
2996
|
-
/** Order is
|
|
3198
|
+
/** Order is waiting for payment at the cashier. */
|
|
2997
3199
|
INITIATED = "INITIATED",
|
|
2998
3200
|
/** Order is canceled. */
|
|
2999
3201
|
CANCELED = "CANCELED",
|
|
@@ -3057,7 +3259,7 @@ interface Ticket {
|
|
|
3057
3259
|
canceled?: boolean | null;
|
|
3058
3260
|
}
|
|
3059
3261
|
interface CheckIn {
|
|
3060
|
-
/** Time of check-in. */
|
|
3262
|
+
/** Time of a ticket's check-in. */
|
|
3061
3263
|
created?: Date | null;
|
|
3062
3264
|
}
|
|
3063
3265
|
interface OnlineConferencingLogin {
|
|
@@ -3090,8 +3292,8 @@ interface Invoice {
|
|
|
3090
3292
|
* Total amount of a cart after discount, tax, and fees.
|
|
3091
3293
|
* Grand total is calculated in the following order:
|
|
3092
3294
|
* 1. Total prices of all items in the cart are calculated.
|
|
3093
|
-
* 2. Discount is subtracted from the cart
|
|
3094
|
-
* 3. Tax is added
|
|
3295
|
+
* 2. Discount is subtracted from the cart, if applicable.
|
|
3296
|
+
* 3. Tax is added, if applicable.
|
|
3095
3297
|
* 4. Wix ticket service fee is added.
|
|
3096
3298
|
*/
|
|
3097
3299
|
grandTotal?: Money;
|
|
@@ -3100,7 +3302,7 @@ interface Invoice {
|
|
|
3100
3302
|
* @readonly
|
|
3101
3303
|
*/
|
|
3102
3304
|
fees?: Fee[];
|
|
3103
|
-
/** Total revenue, excluding fees.
|
|
3305
|
+
/** Total revenue, excluding fees. Taxes and payment provider fees aren't deducted. */
|
|
3104
3306
|
revenue?: Money;
|
|
3105
3307
|
/** Invoice preview URL. Only returned if the order is paid. */
|
|
3106
3308
|
previewUrl?: string | null;
|
|
@@ -3933,4 +4135,4 @@ interface UpsertNotificationConfig {
|
|
|
3933
4135
|
orderConfirmationWithTicketsLink?: EmailNotificationConfig;
|
|
3934
4136
|
}
|
|
3935
4137
|
|
|
3936
|
-
export { type ActionEvent, type Address, type AddressLocation, type AddressStreetOneOf, type Agenda, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type AudioData, type Background, type BackgroundBackgroundOneOf, BackgroundType, type BackgroundTypeWithLiterals, type Badge, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type CalendarLinks, type CaptionData, type Category, type CategoryCounts, type CellStyle, type CheckIn, type CheckoutFormMessages, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type CommonAddress, type CommonAddressLocation, type CommonAddressStreetOneOf, type CommonStreetAddress, type CommonSubdivision, ConferenceType, type ConferenceTypeWithLiterals, type CouponDiscount, Crop, type CropWithLiterals, type Dashboard, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Design, type Dimensions, Direction, type DirectionWithLiterals, type Discount, type DiscountItem, type DiscountItemDiscountOneOf, type DividerData, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmailNotificationConfig, EmailNotificationReminderTime, type EmailNotificationReminderTimeWithLiterals, EmailNotificationType, type EmailNotificationTypeWithLiterals, type EmailTemplate, type EmbedData, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type Event, type EventCanceled, type EventCopied, type EventData, type EventDeleted, type EventDisplaySettings, type EventEnded, type EventGuests, type EventMetadata, type EventReminder, type EventStarted, EventStatus, type EventStatusWithLiterals, EventType, type EventTypeWithLiterals, type EventUpdated, type ExternalEvent, type Fee, FeeName, type FeeNameWithLiterals, FeeType, type FeeTypeWithLiterals, type Feed, type FileData, type FileSource, type FileSourceDataOneOf, type FontSizeData, FontType, type FontTypeWithLiterals, type Form, type FormMessages, type FormResponse, type FormattedAddress, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryDataItem, type GalleryDataItemDataOneOf, type GalleryOptions, type Gradient, type GuestListConfig, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Input, type InputControl, InputControlType, type InputControlTypeWithLiterals, type InputValue, type Invoice, type Item, type ItemStyle, type Keyword, type Label, type LabellingSettings,
|
|
4138
|
+
export { type ActionEvent, type Address, type AddressLocation, type AddressStreetOneOf, type Agenda, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Background, type BackgroundBackgroundOneOf, BackgroundType, type BackgroundTypeWithLiterals, type Badge, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CalendarLinks, type CaptionData, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type Category, type CategoryCounts, type CellStyle, type CheckIn, type CheckoutFormMessages, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type CommonAddress, type CommonAddressLocation, type CommonAddressStreetOneOf, type CommonStreetAddress, type CommonSubdivision, ConferenceType, type ConferenceTypeWithLiterals, type CouponDiscount, Crop, type CropWithLiterals, type Dashboard, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Design, type Dimensions, Direction, type DirectionWithLiterals, type Discount, type DiscountItem, type DiscountItemDiscountOneOf, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmailNotificationConfig, EmailNotificationReminderTime, type EmailNotificationReminderTimeWithLiterals, EmailNotificationType, type EmailNotificationTypeWithLiterals, type EmailTemplate, type EmbedData, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type Event, type EventCanceled, type EventCopied, type EventData, type EventDeleted, type EventDisplaySettings, type EventEnded, type EventGuests, type EventMetadata, type EventReminder, type EventStarted, EventStatus, type EventStatusWithLiterals, EventType, type EventTypeWithLiterals, type EventUpdated, type ExternalEvent, type Fee, FeeName, type FeeNameWithLiterals, FeeType, type FeeTypeWithLiterals, type Feed, type FileData, type FileSource, type FileSourceDataOneOf, type FontSizeData, FontType, type FontTypeWithLiterals, type Form, type FormMessages, type FormResponse, type FormattedAddress, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryDataItem, type GalleryDataItemDataOneOf, type GalleryOptions, type GalleryOptionsLayout, type Gradient, type GuestListConfig, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Input, type InputControl, InputControlType, type InputControlTypeWithLiterals, type InputValue, type Invoice, type Item, type ItemStyle, type Keyword, type Label, type LabellingSettings, Layout, type LayoutCellData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkPreviewData, type LinkPreviewDataStyles, type ListValue, type Location, LocationType, type LocationTypeWithLiterals, type MapCoordinates, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type MessageEnvelope, type Metadata, type Money, type Negative, type NegativeResponseConfirmation, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, type NotificationConfig, type NotificationConfigCreatedEnvelope, type NotificationConfigUpdatedEnvelope, NullValue, type NullValueWithLiterals, type Occurrence, type Oembed, type OnlineConferencing, type OnlineConferencingConfig, type OnlineConferencingLogin, type OnlineConferencingSession, type Option, type OptionDesign, type OptionLayout, type OptionSelection, type OptionSelectionSelectedOptionOneOf, type OrderCanceled, type OrderConfirmed, type OrderEmailAdded, type OrderGuest, type OrderPaid, OrderStatus, type OrderStatusWithLiterals, type OrderedListData, Orientation, type OrientationWithLiterals, type PDFSettings, type PaidPlanDiscount, type PaidPlanDiscountDiscountOneOf, type ParagraphData, type PercentDiscount, type Permissions, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollSettings, Position, type PositionWithLiterals, type Positive, type PositiveResponseConfirmation, PushNotificationType, type PushNotificationTypeWithLiterals, type Recurrences, type Registration, type RegistrationClosedMessages, RegistrationStatus, type RegistrationStatusWithLiterals, type Rel, Resizing, type ResizingWithLiterals, type ResolveEmailNotificationConfigRequest, type ResolveEmailNotificationConfigResponse, type ResolveNotificationConfigRequest, type ResolveNotificationConfigResponse, type ResponseConfirmation, type RestoreInfo, type RibbonStyles, type RichContent, type RsvpCollection, type RsvpCollectionConfig, type RsvpFormMessages, type RsvpGuest, RsvpStatusOptions, type RsvpStatusOptionsWithLiterals, type RsvpSummary, type ScheduleConfig, type Scheduling, type SeoSchema, type SeoSettings, type Settings, type SiteUrl, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, type StandardDetails, State, type StateWithLiterals, Status, type StatusWithLiterals, type StreetAddress, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type Subdivision, SubdivisionType, type SubdivisionTypeWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, type Tax, type TaxConfig, TaxType, type TaxTypeWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type Ticket, type TicketGuest, type TicketPdfResolveDelayed, type TicketPdfResolved, type Ticketing, type TicketingConfig, type TicketingSummary, type TicketsUnavailableMessages, type TimeDuration, type TriggerNotificationOptions, type TriggerNotificationOptionsGuestsOneOf, type TriggerNotificationOptionsNotificationOneOf, type TriggerNotificationRequest, type TriggerNotificationRequestGuestsOneOf, type TriggerNotificationRequestNotificationOneOf, type TriggerNotificationResponse, Type, type TypeWithLiterals, type UpsertNotificationConfig, type UpsertNotificationConfigRequest, type UpsertNotificationConfigResponse, type V1Link, type V1LinkDataOneOf, ValueType, type ValueTypeWithLiterals, VerticalAlignment, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VisitorType, type VisitorTypeWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, onNotificationConfigCreated, onNotificationConfigUpdated, resolveNotificationConfig, triggerNotification, upsertNotificationConfig };
|
|
@@ -22,12 +22,15 @@ var index_typings_exports = {};
|
|
|
22
22
|
__export(index_typings_exports, {
|
|
23
23
|
Alignment: () => Alignment,
|
|
24
24
|
AppType: () => AppType,
|
|
25
|
+
AspectRatio: () => AspectRatio,
|
|
25
26
|
BackgroundType: () => BackgroundType,
|
|
26
27
|
ButtonDataType: () => ButtonDataType,
|
|
28
|
+
CardStylesType: () => CardStylesType,
|
|
27
29
|
ConferenceType: () => ConferenceType,
|
|
28
30
|
Crop: () => Crop,
|
|
29
31
|
DecorationType: () => DecorationType,
|
|
30
32
|
Direction: () => Direction,
|
|
33
|
+
DividerDataAlignment: () => DividerDataAlignment,
|
|
31
34
|
EmailNotificationReminderTime: () => EmailNotificationReminderTime,
|
|
32
35
|
EmailNotificationType: () => EmailNotificationType,
|
|
33
36
|
EventStatus: () => EventStatus,
|
|
@@ -38,6 +41,7 @@ __export(index_typings_exports, {
|
|
|
38
41
|
GIFType: () => GIFType,
|
|
39
42
|
InitialExpandedItems: () => InitialExpandedItems,
|
|
40
43
|
InputControlType: () => InputControlType,
|
|
44
|
+
Layout: () => Layout,
|
|
41
45
|
LayoutType: () => LayoutType,
|
|
42
46
|
LineStyle: () => LineStyle,
|
|
43
47
|
LocationType: () => LocationType,
|
|
@@ -46,16 +50,19 @@ __export(index_typings_exports, {
|
|
|
46
50
|
NullValue: () => NullValue,
|
|
47
51
|
OrderStatus: () => OrderStatus,
|
|
48
52
|
Orientation: () => Orientation,
|
|
53
|
+
Placement: () => Placement,
|
|
49
54
|
PluginContainerDataAlignment: () => PluginContainerDataAlignment,
|
|
50
55
|
PollLayoutDirection: () => PollLayoutDirection,
|
|
51
56
|
PollLayoutType: () => PollLayoutType,
|
|
52
57
|
Position: () => Position,
|
|
53
58
|
PushNotificationType: () => PushNotificationType,
|
|
54
59
|
RegistrationStatus: () => RegistrationStatus,
|
|
60
|
+
Resizing: () => Resizing,
|
|
55
61
|
RsvpStatusOptions: () => RsvpStatusOptions,
|
|
56
62
|
Source: () => Source,
|
|
57
63
|
State: () => State,
|
|
58
64
|
Status: () => Status,
|
|
65
|
+
StylesPosition: () => StylesPosition,
|
|
59
66
|
SubdivisionType: () => SubdivisionType,
|
|
60
67
|
Target: () => Target,
|
|
61
68
|
TaxType: () => TaxType,
|
|
@@ -452,12 +459,12 @@ var Width = /* @__PURE__ */ ((Width2) => {
|
|
|
452
459
|
Width2["SMALL"] = "SMALL";
|
|
453
460
|
return Width2;
|
|
454
461
|
})(Width || {});
|
|
455
|
-
var
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
return
|
|
460
|
-
})(
|
|
462
|
+
var DividerDataAlignment = /* @__PURE__ */ ((DividerDataAlignment2) => {
|
|
463
|
+
DividerDataAlignment2["CENTER"] = "CENTER";
|
|
464
|
+
DividerDataAlignment2["LEFT"] = "LEFT";
|
|
465
|
+
DividerDataAlignment2["RIGHT"] = "RIGHT";
|
|
466
|
+
return DividerDataAlignment2;
|
|
467
|
+
})(DividerDataAlignment || {});
|
|
461
468
|
var ViewMode = /* @__PURE__ */ ((ViewMode2) => {
|
|
462
469
|
ViewMode2["NONE"] = "NONE";
|
|
463
470
|
ViewMode2["FULL"] = "FULL";
|
|
@@ -505,13 +512,13 @@ var Source = /* @__PURE__ */ ((Source2) => {
|
|
|
505
512
|
Source2["ADSENSE"] = "ADSENSE";
|
|
506
513
|
return Source2;
|
|
507
514
|
})(Source || {});
|
|
508
|
-
var
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
return
|
|
514
|
-
})(
|
|
515
|
+
var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
|
|
516
|
+
StylesPosition2["START"] = "START";
|
|
517
|
+
StylesPosition2["END"] = "END";
|
|
518
|
+
StylesPosition2["TOP"] = "TOP";
|
|
519
|
+
StylesPosition2["HIDDEN"] = "HIDDEN";
|
|
520
|
+
return StylesPosition2;
|
|
521
|
+
})(StylesPosition || {});
|
|
515
522
|
var MapType = /* @__PURE__ */ ((MapType2) => {
|
|
516
523
|
MapType2["ROADMAP"] = "ROADMAP";
|
|
517
524
|
MapType2["SATELITE"] = "SATELITE";
|
|
@@ -567,6 +574,43 @@ var FontType = /* @__PURE__ */ ((FontType2) => {
|
|
|
567
574
|
FontType2["EM"] = "EM";
|
|
568
575
|
return FontType2;
|
|
569
576
|
})(FontType || {});
|
|
577
|
+
var Position = /* @__PURE__ */ ((Position2) => {
|
|
578
|
+
Position2["START"] = "START";
|
|
579
|
+
Position2["END"] = "END";
|
|
580
|
+
Position2["TOP"] = "TOP";
|
|
581
|
+
return Position2;
|
|
582
|
+
})(Position || {});
|
|
583
|
+
var AspectRatio = /* @__PURE__ */ ((AspectRatio2) => {
|
|
584
|
+
AspectRatio2["SQUARE"] = "SQUARE";
|
|
585
|
+
AspectRatio2["RECTANGLE"] = "RECTANGLE";
|
|
586
|
+
return AspectRatio2;
|
|
587
|
+
})(AspectRatio || {});
|
|
588
|
+
var Resizing = /* @__PURE__ */ ((Resizing2) => {
|
|
589
|
+
Resizing2["FILL"] = "FILL";
|
|
590
|
+
Resizing2["FIT"] = "FIT";
|
|
591
|
+
return Resizing2;
|
|
592
|
+
})(Resizing || {});
|
|
593
|
+
var Placement = /* @__PURE__ */ ((Placement2) => {
|
|
594
|
+
Placement2["IMAGE"] = "IMAGE";
|
|
595
|
+
Placement2["PRODUCT_INFO"] = "PRODUCT_INFO";
|
|
596
|
+
return Placement2;
|
|
597
|
+
})(Placement || {});
|
|
598
|
+
var CardStylesType = /* @__PURE__ */ ((CardStylesType2) => {
|
|
599
|
+
CardStylesType2["CONTAINED"] = "CONTAINED";
|
|
600
|
+
CardStylesType2["FRAMELESS"] = "FRAMELESS";
|
|
601
|
+
return CardStylesType2;
|
|
602
|
+
})(CardStylesType || {});
|
|
603
|
+
var Alignment = /* @__PURE__ */ ((Alignment2) => {
|
|
604
|
+
Alignment2["START"] = "START";
|
|
605
|
+
Alignment2["CENTER"] = "CENTER";
|
|
606
|
+
Alignment2["END"] = "END";
|
|
607
|
+
return Alignment2;
|
|
608
|
+
})(Alignment || {});
|
|
609
|
+
var Layout = /* @__PURE__ */ ((Layout2) => {
|
|
610
|
+
Layout2["STACKED"] = "STACKED";
|
|
611
|
+
Layout2["SIDE_BY_SIDE"] = "SIDE_BY_SIDE";
|
|
612
|
+
return Layout2;
|
|
613
|
+
})(Layout || {});
|
|
570
614
|
var AppType = /* @__PURE__ */ ((AppType2) => {
|
|
571
615
|
AppType2["PRODUCT"] = "PRODUCT";
|
|
572
616
|
AppType2["EVENT"] = "EVENT";
|
|
@@ -729,12 +773,15 @@ async function upsertNotificationConfig2(_id, notificationConfig) {
|
|
|
729
773
|
0 && (module.exports = {
|
|
730
774
|
Alignment,
|
|
731
775
|
AppType,
|
|
776
|
+
AspectRatio,
|
|
732
777
|
BackgroundType,
|
|
733
778
|
ButtonDataType,
|
|
779
|
+
CardStylesType,
|
|
734
780
|
ConferenceType,
|
|
735
781
|
Crop,
|
|
736
782
|
DecorationType,
|
|
737
783
|
Direction,
|
|
784
|
+
DividerDataAlignment,
|
|
738
785
|
EmailNotificationReminderTime,
|
|
739
786
|
EmailNotificationType,
|
|
740
787
|
EventStatus,
|
|
@@ -745,6 +792,7 @@ async function upsertNotificationConfig2(_id, notificationConfig) {
|
|
|
745
792
|
GIFType,
|
|
746
793
|
InitialExpandedItems,
|
|
747
794
|
InputControlType,
|
|
795
|
+
Layout,
|
|
748
796
|
LayoutType,
|
|
749
797
|
LineStyle,
|
|
750
798
|
LocationType,
|
|
@@ -753,16 +801,19 @@ async function upsertNotificationConfig2(_id, notificationConfig) {
|
|
|
753
801
|
NullValue,
|
|
754
802
|
OrderStatus,
|
|
755
803
|
Orientation,
|
|
804
|
+
Placement,
|
|
756
805
|
PluginContainerDataAlignment,
|
|
757
806
|
PollLayoutDirection,
|
|
758
807
|
PollLayoutType,
|
|
759
808
|
Position,
|
|
760
809
|
PushNotificationType,
|
|
761
810
|
RegistrationStatus,
|
|
811
|
+
Resizing,
|
|
762
812
|
RsvpStatusOptions,
|
|
763
813
|
Source,
|
|
764
814
|
State,
|
|
765
815
|
Status,
|
|
816
|
+
StylesPosition,
|
|
766
817
|
SubdivisionType,
|
|
767
818
|
Target,
|
|
768
819
|
TaxType,
|