@wix/auto_sdk_events_wix-events-v-2 1.0.41 → 1.0.43
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 +1 -1
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +78 -5
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +6 -4
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +78 -5
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +6 -4
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +78 -5
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +6 -4
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +78 -5
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +6 -4
- package/package.json +2 -2
|
@@ -784,7 +784,7 @@ interface RsvpFormMessages {
|
|
|
784
784
|
submitActionLabel?: string;
|
|
785
785
|
}
|
|
786
786
|
/** Confirmation messages shown after registration. */
|
|
787
|
-
interface
|
|
787
|
+
interface RsvpFormMessagesPositiveResponseConfirmation {
|
|
788
788
|
/** Confirmation message title. */
|
|
789
789
|
title?: string;
|
|
790
790
|
/** Confirmation message text. */
|
|
@@ -795,7 +795,7 @@ interface PositiveResponseConfirmation {
|
|
|
795
795
|
shareActionLabel?: string;
|
|
796
796
|
}
|
|
797
797
|
/** Confirmation messages shown after registration. */
|
|
798
|
-
interface
|
|
798
|
+
interface RsvpFormMessagesNegativeResponseConfirmation {
|
|
799
799
|
/** Confirmation message title. */
|
|
800
800
|
title?: string;
|
|
801
801
|
/** "Share event" call-to-action label text. */
|
|
@@ -806,14 +806,14 @@ interface Positive {
|
|
|
806
806
|
/** Main form title for positive response. */
|
|
807
807
|
title?: string;
|
|
808
808
|
/** Confirmation messages shown after registration. */
|
|
809
|
-
confirmation?:
|
|
809
|
+
confirmation?: RsvpFormMessagesPositiveResponseConfirmation;
|
|
810
810
|
}
|
|
811
811
|
/** A set of messages shown during registration with negative response */
|
|
812
812
|
interface Negative {
|
|
813
813
|
/** Main form title for negative response. */
|
|
814
814
|
title?: string;
|
|
815
815
|
/** Confirmation messages shown after registration. */
|
|
816
|
-
confirmation?:
|
|
816
|
+
confirmation?: RsvpFormMessagesNegativeResponseConfirmation;
|
|
817
817
|
}
|
|
818
818
|
interface CheckoutFormMessages {
|
|
819
819
|
/** Main form title for response. */
|
|
@@ -2292,6 +2292,8 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
|
|
|
2292
2292
|
ribbonStyles?: RibbonStyles;
|
|
2293
2293
|
/** Card styling options. */
|
|
2294
2294
|
cardStyles?: CardStyles;
|
|
2295
|
+
/** Styling for the app embed's container. */
|
|
2296
|
+
containerData?: PluginContainerData;
|
|
2295
2297
|
}
|
|
2296
2298
|
/** @oneof */
|
|
2297
2299
|
interface AppEmbedDataAppDataOneOf {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/auto_sdk_events_wix-events-v-2",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.43",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/",
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"fqdn": "wix.events.v3.event"
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
|
-
"falconPackageHash": "
|
|
53
|
+
"falconPackageHash": "74980554ef79f14e197f8981b5a52a1652df2316d2bdfd1fff058b36"
|
|
54
54
|
}
|