@wix/automations 1.0.20 → 1.0.22
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 +5 -5
- package/type-bundles/context.bundle.d.ts +313 -133
- package/type-bundles/index.bundle.d.ts +313 -133
- package/type-bundles/meta.bundle.d.ts +4 -0
|
@@ -2110,6 +2110,8 @@ interface Automation$1 extends AutomationOriginInfoOneOf$1 {
|
|
|
2110
2110
|
* @readonly
|
|
2111
2111
|
*/
|
|
2112
2112
|
draftInfo?: DraftInfo$1;
|
|
2113
|
+
/** Namespace */
|
|
2114
|
+
namespace?: string | null;
|
|
2113
2115
|
}
|
|
2114
2116
|
/** @oneof */
|
|
2115
2117
|
interface AutomationOriginInfoOneOf$1 {
|
|
@@ -2842,6 +2844,8 @@ interface Automation extends AutomationOriginInfoOneOf {
|
|
|
2842
2844
|
* @readonly
|
|
2843
2845
|
*/
|
|
2844
2846
|
draftInfo?: DraftInfo;
|
|
2847
|
+
/** Namespace */
|
|
2848
|
+
namespace?: string | null;
|
|
2845
2849
|
}
|
|
2846
2850
|
/** @oneof */
|
|
2847
2851
|
interface AutomationOriginInfoOneOf {
|