@wix/auto_sdk_categories_categories 1.0.129 → 1.0.131
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/{internal/cjs/categories-v1-category-categories.universal-C4m4fBaR.d.ts → cjs/categories-v1-category-categories.universal-Cy-lRfCS.d.ts} +195 -24
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +52 -5
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +52 -5
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +196 -7
- package/build/cjs/meta.js +52 -5
- package/build/cjs/meta.js.map +1 -1
- package/build/{internal/es/categories-v1-category-categories.universal-C4m4fBaR.d.mts → es/categories-v1-category-categories.universal-Cy-lRfCS.d.mts} +195 -24
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +49 -5
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +49 -5
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +196 -7
- package/build/es/meta.mjs +49 -5
- package/build/es/meta.mjs.map +1 -1
- package/build/{cjs/categories-v1-category-categories.universal-DibWCZU9.d.ts → internal/cjs/categories-v1-category-categories.universal-BBkrgdQc.d.ts} +213 -6
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +52 -5
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js +52 -5
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +196 -7
- package/build/internal/cjs/meta.js +52 -5
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/{es/categories-v1-category-categories.universal-DibWCZU9.d.mts → internal/es/categories-v1-category-categories.universal-BBkrgdQc.d.mts} +213 -6
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +49 -5
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs +49 -5
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +196 -7
- package/build/internal/es/meta.mjs +49 -5
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -452,6 +452,8 @@ interface ButtonData {
|
|
|
452
452
|
text?: string | null;
|
|
453
453
|
/** Button link details. */
|
|
454
454
|
link?: Link;
|
|
455
|
+
/** Node animation. */
|
|
456
|
+
animation?: Animation;
|
|
455
457
|
}
|
|
456
458
|
/** Background type */
|
|
457
459
|
declare enum BackgroundType {
|
|
@@ -728,9 +730,144 @@ interface Rel {
|
|
|
728
730
|
/** Indicates that this link protect referral information from being passed to the target website. */
|
|
729
731
|
noreferrer?: boolean | null;
|
|
730
732
|
}
|
|
733
|
+
interface Animation {
|
|
734
|
+
/** Animation kind. */
|
|
735
|
+
type?: TypeWithLiterals;
|
|
736
|
+
/** Entrance animation, played once when the node first enters the viewport. */
|
|
737
|
+
entrance?: EntranceAnimation;
|
|
738
|
+
/** Looping animation, repeated indefinitely while the node is on the page. When combined with entrance, the loop starts after the entrance finishes. */
|
|
739
|
+
loop?: LoopAnimation;
|
|
740
|
+
}
|
|
741
|
+
declare enum Type {
|
|
742
|
+
/** Animations that play while the node is in view. */
|
|
743
|
+
VIEW = "VIEW"
|
|
744
|
+
}
|
|
745
|
+
/** @enumType */
|
|
746
|
+
type TypeWithLiterals = Type | 'VIEW';
|
|
747
|
+
interface EntranceAnimation {
|
|
748
|
+
/** The entrance effect to play. */
|
|
749
|
+
effect?: EntranceEffect;
|
|
750
|
+
/** Effect duration in milliseconds. Each effect has its own default. */
|
|
751
|
+
duration?: number | null;
|
|
752
|
+
/** Delay before the effect starts, in milliseconds. */
|
|
753
|
+
delay?: number | null;
|
|
754
|
+
}
|
|
755
|
+
interface EntranceEffect {
|
|
756
|
+
/** The entrance effect type. */
|
|
757
|
+
type?: EntranceEffectTypeWithLiterals;
|
|
758
|
+
/**
|
|
759
|
+
* Direction the effect enters from. Allowed values depend on the effect type (e.g. TOP/RIGHT/BOTTOM/LEFT, the diagonals with or without CENTER, corners, HORIZONTAL/VERTICAL, CLOCKWISE/COUNTER_CLOCKWISE).
|
|
760
|
+
* @maxLength 20
|
|
761
|
+
*/
|
|
762
|
+
direction?: string | null;
|
|
763
|
+
/**
|
|
764
|
+
* Clip-path shape: ELLIPSE, CIRCLE, RECTANGLE, or DIAMOND (SHAPE).
|
|
765
|
+
* @maxLength 12
|
|
766
|
+
*/
|
|
767
|
+
shape?: string | null;
|
|
768
|
+
/**
|
|
769
|
+
* Motion style: GENTLE, MODERATE, or INTENSE. Only the effects that expose one accept it.
|
|
770
|
+
* @maxLength 100
|
|
771
|
+
*/
|
|
772
|
+
easing?: string | null;
|
|
773
|
+
}
|
|
774
|
+
declare enum EntranceEffectType {
|
|
775
|
+
/** Fades in from fully transparent to fully opaque. */
|
|
776
|
+
FADE = "FADE",
|
|
777
|
+
/** Enters along a 3D arc path. */
|
|
778
|
+
ARC = "ARC",
|
|
779
|
+
/** Transitions from blurred to sharp. */
|
|
780
|
+
BLUR = "BLUR",
|
|
781
|
+
/** Bounces into place with an elastic curve. */
|
|
782
|
+
BOUNCE = "BOUNCE",
|
|
783
|
+
/** Shrinks down from a larger size. */
|
|
784
|
+
DROP = "DROP",
|
|
785
|
+
/** Expands from a point, scaling to full size. */
|
|
786
|
+
EXPAND = "EXPAND",
|
|
787
|
+
/** Flips into view with a 3D rotation. */
|
|
788
|
+
FLIP = "FLIP",
|
|
789
|
+
/** Drifts gently into place. */
|
|
790
|
+
FLOAT = "FLOAT",
|
|
791
|
+
/** Unfolds from an edge as if hinged. */
|
|
792
|
+
FOLD = "FOLD",
|
|
793
|
+
/** Glides in smoothly from off-screen. */
|
|
794
|
+
GLIDE = "GLIDE",
|
|
795
|
+
/** Progressively revealed by an expanding clip-path. */
|
|
796
|
+
REVEAL = "REVEAL",
|
|
797
|
+
/** Appears through an expanding geometric clip-path shape. */
|
|
798
|
+
SHAPE = "SHAPE",
|
|
799
|
+
/** Revealed through shutter-like strips. */
|
|
800
|
+
SHUTTERS = "SHUTTERS",
|
|
801
|
+
/** Slides in from one side. */
|
|
802
|
+
SLIDE = "SLIDE",
|
|
803
|
+
/** Spins into view while scaling up. */
|
|
804
|
+
SPIN = "SPIN",
|
|
805
|
+
/** Tilts in from the side with 3D rotation. */
|
|
806
|
+
TILT = "TILT",
|
|
807
|
+
/** Rotates into view around a corner pivot. */
|
|
808
|
+
TURN = "TURN",
|
|
809
|
+
/** Expands from its horizontal or vertical center. */
|
|
810
|
+
WINK = "WINK"
|
|
811
|
+
}
|
|
812
|
+
/** @enumType */
|
|
813
|
+
type EntranceEffectTypeWithLiterals = EntranceEffectType | 'FADE' | 'ARC' | 'BLUR' | 'BOUNCE' | 'DROP' | 'EXPAND' | 'FLIP' | 'FLOAT' | 'FOLD' | 'GLIDE' | 'REVEAL' | 'SHAPE' | 'SHUTTERS' | 'SLIDE' | 'SPIN' | 'TILT' | 'TURN' | 'WINK';
|
|
814
|
+
interface LoopAnimation {
|
|
815
|
+
/** The looping effect to repeat. */
|
|
816
|
+
effect?: LoopEffect;
|
|
817
|
+
/** Duration of a single iteration in milliseconds. Each effect has its own default. */
|
|
818
|
+
duration?: number | null;
|
|
819
|
+
/** Pause between iterations in milliseconds. */
|
|
820
|
+
iterationDelay?: number | null;
|
|
821
|
+
}
|
|
822
|
+
interface LoopEffect {
|
|
823
|
+
/** The looping effect type. */
|
|
824
|
+
type?: LoopEffectTypeWithLiterals;
|
|
825
|
+
/**
|
|
826
|
+
* Direction of the effect. Allowed values depend on the effect type (e.g. TOP/RIGHT/BOTTOM/LEFT, LEFT/RIGHT, HORIZONTAL/VERTICAL with or without CENTER, CLOCKWISE/COUNTER_CLOCKWISE).
|
|
827
|
+
* @maxLength 20
|
|
828
|
+
*/
|
|
829
|
+
direction?: string | null;
|
|
830
|
+
/**
|
|
831
|
+
* Motion style: GENTLE, MODERATE, or INTENSE. Only the effects that expose one accept it.
|
|
832
|
+
* @maxLength 100
|
|
833
|
+
*/
|
|
834
|
+
easing?: string | null;
|
|
835
|
+
}
|
|
836
|
+
declare enum LoopEffectType {
|
|
837
|
+
/** Bounces up and down in place. */
|
|
838
|
+
BOUNCE = "BOUNCE",
|
|
839
|
+
/** Scales gently in and out along an axis. */
|
|
840
|
+
BREATHE = "BREATHE",
|
|
841
|
+
/** Drifts toward one side, then re-enters from the opposite side. */
|
|
842
|
+
CROSS = "CROSS",
|
|
843
|
+
/** Fades out to fully transparent and back in. */
|
|
844
|
+
FLASH = "FLASH",
|
|
845
|
+
/** Rotates a full turn around its horizontal or vertical axis. */
|
|
846
|
+
FLIP = "FLIP",
|
|
847
|
+
/** Folds back and forth around a hinged edge. */
|
|
848
|
+
FOLD = "FOLD",
|
|
849
|
+
/** Wobbles with a jelly-like skew. */
|
|
850
|
+
JELLO = "JELLO",
|
|
851
|
+
/** Nudges repeatedly toward a direction. */
|
|
852
|
+
POKE = "POKE",
|
|
853
|
+
/** Scales up and back down rhythmically. */
|
|
854
|
+
PULSE = "PULSE",
|
|
855
|
+
/** Stretches and squashes like a rubber band. */
|
|
856
|
+
RUBBER = "RUBBER",
|
|
857
|
+
/** Rotates continuously around its center. */
|
|
858
|
+
SPIN = "SPIN",
|
|
859
|
+
/** Swings back and forth around an edge pivot. */
|
|
860
|
+
SWING = "SWING",
|
|
861
|
+
/** Rocks side to side with an accumulating rotation. */
|
|
862
|
+
WIGGLE = "WIGGLE"
|
|
863
|
+
}
|
|
864
|
+
/** @enumType */
|
|
865
|
+
type LoopEffectTypeWithLiterals = LoopEffectType | 'BOUNCE' | 'BREATHE' | 'CROSS' | 'FLASH' | 'FLIP' | 'FOLD' | 'JELLO' | 'POKE' | 'PULSE' | 'RUBBER' | 'SPIN' | 'SWING' | 'WIGGLE';
|
|
731
866
|
interface CodeBlockData {
|
|
732
867
|
/** Styling for the code block's text. */
|
|
733
868
|
textStyle?: TextStyle;
|
|
869
|
+
/** Node animation. */
|
|
870
|
+
animation?: Animation;
|
|
734
871
|
}
|
|
735
872
|
interface TextStyle {
|
|
736
873
|
/** Text alignment. Defaults to `AUTO`. */
|
|
@@ -763,6 +900,8 @@ interface DividerData {
|
|
|
763
900
|
alignment?: DividerDataAlignmentWithLiterals;
|
|
764
901
|
/** Visual styling for the divider lines. */
|
|
765
902
|
styles?: DividerDataStyles;
|
|
903
|
+
/** Node animation. */
|
|
904
|
+
animation?: Animation;
|
|
766
905
|
}
|
|
767
906
|
declare enum LineCap {
|
|
768
907
|
/** Square line endings. */
|
|
@@ -817,9 +956,9 @@ interface DividerDataStyles {
|
|
|
817
956
|
* @maxSize 10
|
|
818
957
|
*/
|
|
819
958
|
lineThickness?: number[];
|
|
820
|
-
/**
|
|
959
|
+
/** Visible dash length for dashed dividers, in pixels. The pattern is snapped to a whole number of dashes so that the first and last dash touch the divider's edges - narrower containers show fewer dashes at the same size. */
|
|
821
960
|
dashLength?: number | null;
|
|
822
|
-
/**
|
|
961
|
+
/** Visible gap between dashes or dots, in pixels. */
|
|
823
962
|
dashGap?: number | null;
|
|
824
963
|
/** Gap between divider lines in pixels. */
|
|
825
964
|
lineGap?: number | null;
|
|
@@ -846,6 +985,8 @@ interface FileData {
|
|
|
846
985
|
path?: string | null;
|
|
847
986
|
/** File size in KB. */
|
|
848
987
|
sizeInKb?: string | null;
|
|
988
|
+
/** Node animation. */
|
|
989
|
+
animation?: Animation;
|
|
849
990
|
}
|
|
850
991
|
declare enum ViewMode {
|
|
851
992
|
/** No PDF view */
|
|
@@ -906,6 +1047,8 @@ interface GalleryData {
|
|
|
906
1047
|
disableExpand?: boolean | null;
|
|
907
1048
|
/** Sets whether the gallery's download button is disabled. Defaults to `false`. */
|
|
908
1049
|
disableDownload?: boolean | null;
|
|
1050
|
+
/** Node animation. */
|
|
1051
|
+
animation?: Animation;
|
|
909
1052
|
}
|
|
910
1053
|
interface Media {
|
|
911
1054
|
/** The source for the media's data. */
|
|
@@ -1049,6 +1192,8 @@ interface GIFData {
|
|
|
1049
1192
|
width?: number;
|
|
1050
1193
|
/** Type of GIF (Sticker or NORMAL). Defaults to `NORMAL`. */
|
|
1051
1194
|
gifType?: GIFTypeWithLiterals;
|
|
1195
|
+
/** Node animation. */
|
|
1196
|
+
animation?: Animation;
|
|
1052
1197
|
}
|
|
1053
1198
|
interface GIF {
|
|
1054
1199
|
/**
|
|
@@ -1082,6 +1227,8 @@ interface HeadingData {
|
|
|
1082
1227
|
indentation?: number | null;
|
|
1083
1228
|
/** Rendered heading level for SEO/accessibility, overrides the HTML tag when set. */
|
|
1084
1229
|
renderedLevel?: number | null;
|
|
1230
|
+
/** Node animation. */
|
|
1231
|
+
animation?: Animation;
|
|
1085
1232
|
}
|
|
1086
1233
|
interface HTMLData extends HTMLDataDataOneOf {
|
|
1087
1234
|
/** The URL for the HTML code for the node. */
|
|
@@ -1101,6 +1248,8 @@ interface HTMLData extends HTMLDataDataOneOf {
|
|
|
1101
1248
|
source?: SourceWithLiterals;
|
|
1102
1249
|
/** If container height is aligned with its content height. Defaults to `true`. */
|
|
1103
1250
|
autoHeight?: boolean | null;
|
|
1251
|
+
/** Node animation. */
|
|
1252
|
+
animation?: Animation;
|
|
1104
1253
|
}
|
|
1105
1254
|
/** @oneof */
|
|
1106
1255
|
interface HTMLDataDataOneOf {
|
|
@@ -1150,6 +1299,8 @@ interface ImageData {
|
|
|
1150
1299
|
crop?: ImageDataCrop;
|
|
1151
1300
|
/** Optional shape mask applied to the visible crop. Supported values: CIRCLE, OVAL, STAR, PENTAGON, HEXAGON, TRIANGLE, HEART, RHOMBUS, FLUID, WINDOW. */
|
|
1152
1301
|
cropShape?: string | null;
|
|
1302
|
+
/** Node animation. */
|
|
1303
|
+
animation?: Animation;
|
|
1153
1304
|
}
|
|
1154
1305
|
interface StylesBorder {
|
|
1155
1306
|
/** Border width in pixels. */
|
|
@@ -1191,6 +1342,8 @@ interface LinkPreviewData {
|
|
|
1191
1342
|
html?: string | null;
|
|
1192
1343
|
/** Styling for the link preview. */
|
|
1193
1344
|
styles?: LinkPreviewDataStyles;
|
|
1345
|
+
/** Node animation. */
|
|
1346
|
+
animation?: Animation;
|
|
1194
1347
|
}
|
|
1195
1348
|
declare enum StylesPosition {
|
|
1196
1349
|
/** Thumbnail positioned at the start (left in LTR layouts, right in RTL layouts) */
|
|
@@ -1286,6 +1439,8 @@ interface ParagraphData {
|
|
|
1286
1439
|
indentation?: number | null;
|
|
1287
1440
|
/** Paragraph level */
|
|
1288
1441
|
level?: number | null;
|
|
1442
|
+
/** Node animation. */
|
|
1443
|
+
animation?: Animation;
|
|
1289
1444
|
}
|
|
1290
1445
|
interface PollData {
|
|
1291
1446
|
/** Styling for the poll's container. */
|
|
@@ -1296,6 +1451,8 @@ interface PollData {
|
|
|
1296
1451
|
layout?: PollDataLayout;
|
|
1297
1452
|
/** Styling for the poll and voting options. */
|
|
1298
1453
|
design?: Design;
|
|
1454
|
+
/** Node animation. */
|
|
1455
|
+
animation?: Animation;
|
|
1299
1456
|
}
|
|
1300
1457
|
declare enum ViewRole {
|
|
1301
1458
|
/** Only Poll creator can view the results */
|
|
@@ -1562,6 +1719,8 @@ interface MentionData {
|
|
|
1562
1719
|
slug?: string;
|
|
1563
1720
|
/** Mentioned user's ID. */
|
|
1564
1721
|
id?: string | null;
|
|
1722
|
+
/** The kind of entity the mention refers to. Any value is accepted, and it's usually used to mark a mention as a group mention (for example, `group`). When empty, the mention refers to a member. */
|
|
1723
|
+
type?: string | null;
|
|
1565
1724
|
}
|
|
1566
1725
|
interface FontSizeData {
|
|
1567
1726
|
/** The units used for the font size. */
|
|
@@ -1654,6 +1813,8 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
|
|
|
1654
1813
|
containerData?: PluginContainerData;
|
|
1655
1814
|
/** Pricing data for embedded Wix App content. */
|
|
1656
1815
|
pricingData?: PricingData;
|
|
1816
|
+
/** Node animation. */
|
|
1817
|
+
animation?: Animation;
|
|
1657
1818
|
}
|
|
1658
1819
|
/** @oneof */
|
|
1659
1820
|
interface AppEmbedDataAppDataOneOf {
|
|
@@ -1696,14 +1857,14 @@ declare enum Placement {
|
|
|
1696
1857
|
}
|
|
1697
1858
|
/** @enumType */
|
|
1698
1859
|
type PlacementWithLiterals = Placement | 'IMAGE' | 'PRODUCT_INFO';
|
|
1699
|
-
declare enum
|
|
1860
|
+
declare enum CardStylesType {
|
|
1700
1861
|
/** Card with visible border and background */
|
|
1701
1862
|
CONTAINED = "CONTAINED",
|
|
1702
1863
|
/** Card without visible border */
|
|
1703
1864
|
FRAMELESS = "FRAMELESS"
|
|
1704
1865
|
}
|
|
1705
1866
|
/** @enumType */
|
|
1706
|
-
type
|
|
1867
|
+
type CardStylesTypeWithLiterals = CardStylesType | 'CONTAINED' | 'FRAMELESS';
|
|
1707
1868
|
declare enum Alignment {
|
|
1708
1869
|
/** Content aligned to start (left in LTR layouts, right in RTL layouts) */
|
|
1709
1870
|
START = "START",
|
|
@@ -1839,7 +2000,7 @@ interface CardStyles {
|
|
|
1839
2000
|
/** Card border radius in pixels. */
|
|
1840
2001
|
borderRadius?: number | null;
|
|
1841
2002
|
/** Card type. Defaults to `CONTAINED`. */
|
|
1842
|
-
type?:
|
|
2003
|
+
type?: CardStylesTypeWithLiterals;
|
|
1843
2004
|
/** Content alignment. Defaults to `START`. */
|
|
1844
2005
|
alignment?: AlignmentWithLiterals;
|
|
1845
2006
|
/** Layout for title and price. Defaults to `STACKED`. */
|
|
@@ -1895,6 +2056,8 @@ interface VideoData {
|
|
|
1895
2056
|
title?: string | null;
|
|
1896
2057
|
/** Video options. */
|
|
1897
2058
|
options?: PlaybackOptions;
|
|
2059
|
+
/** Node animation. */
|
|
2060
|
+
animation?: Animation;
|
|
1898
2061
|
}
|
|
1899
2062
|
interface PlaybackOptions {
|
|
1900
2063
|
/** Sets whether the media will automatically start playing. */
|
|
@@ -1911,6 +2074,8 @@ interface EmbedData {
|
|
|
1911
2074
|
oembed?: Oembed;
|
|
1912
2075
|
/** Origin asset source. */
|
|
1913
2076
|
src?: string | null;
|
|
2077
|
+
/** Node animation. */
|
|
2078
|
+
animation?: Animation;
|
|
1914
2079
|
}
|
|
1915
2080
|
interface Oembed {
|
|
1916
2081
|
/** The resource type. */
|
|
@@ -1955,6 +2120,8 @@ interface CollapsibleListData {
|
|
|
1955
2120
|
direction?: DirectionWithLiterals;
|
|
1956
2121
|
/** If `true`, The collapsible item will appear in search results as an FAQ. */
|
|
1957
2122
|
isQapageData?: boolean | null;
|
|
2123
|
+
/** Node animation. */
|
|
2124
|
+
animation?: Animation;
|
|
1958
2125
|
}
|
|
1959
2126
|
declare enum InitialExpandedItems {
|
|
1960
2127
|
/** First item will be expended initally */
|
|
@@ -1997,6 +2164,8 @@ interface TableData {
|
|
|
1997
2164
|
cellPadding?: number[];
|
|
1998
2165
|
/** Table's alternative text. */
|
|
1999
2166
|
altText?: string | null;
|
|
2167
|
+
/** Node animation. */
|
|
2168
|
+
animation?: Animation;
|
|
2000
2169
|
}
|
|
2001
2170
|
interface Dimensions {
|
|
2002
2171
|
/** An array representing relative width of each column in relation to the other columns. */
|
|
@@ -2105,6 +2274,8 @@ interface AudioData {
|
|
|
2105
2274
|
authorName?: string | null;
|
|
2106
2275
|
/** An HTML version of the audio node. */
|
|
2107
2276
|
html?: string | null;
|
|
2277
|
+
/** Node animation. */
|
|
2278
|
+
animation?: Animation;
|
|
2108
2279
|
}
|
|
2109
2280
|
interface OrderedListData {
|
|
2110
2281
|
/** Indentation level from 0-4. */
|
|
@@ -2113,16 +2284,22 @@ interface OrderedListData {
|
|
|
2113
2284
|
offset?: number | null;
|
|
2114
2285
|
/** List start number. */
|
|
2115
2286
|
start?: number | null;
|
|
2287
|
+
/** Node animation. */
|
|
2288
|
+
animation?: Animation;
|
|
2116
2289
|
}
|
|
2117
2290
|
interface BulletedListData {
|
|
2118
2291
|
/** Indentation level from 0-4. */
|
|
2119
2292
|
indentation?: number;
|
|
2120
2293
|
/** Offset level from 0-4. */
|
|
2121
2294
|
offset?: number | null;
|
|
2295
|
+
/** Node animation. */
|
|
2296
|
+
animation?: Animation;
|
|
2122
2297
|
}
|
|
2123
2298
|
interface BlockquoteData {
|
|
2124
2299
|
/** Indentation level from 1-4. */
|
|
2125
2300
|
indentation?: number;
|
|
2301
|
+
/** Node animation. */
|
|
2302
|
+
animation?: Animation;
|
|
2126
2303
|
}
|
|
2127
2304
|
interface CaptionData {
|
|
2128
2305
|
textStyle?: TextStyle;
|
|
@@ -2180,6 +2357,8 @@ interface LayoutData {
|
|
|
2180
2357
|
background?: LayoutDataBackground;
|
|
2181
2358
|
/** Backdrop styling (color or gradient). */
|
|
2182
2359
|
backdrop?: Backdrop;
|
|
2360
|
+
/** Node animation. */
|
|
2361
|
+
animation?: Animation;
|
|
2183
2362
|
}
|
|
2184
2363
|
declare enum ImageScalingScaling {
|
|
2185
2364
|
/** Auto image scaling */
|
|
@@ -2331,6 +2510,8 @@ interface ShapeData {
|
|
|
2331
2510
|
shape?: Media;
|
|
2332
2511
|
/** Styling for the shape. */
|
|
2333
2512
|
styles?: ShapeDataStyles;
|
|
2513
|
+
/** Node animation. */
|
|
2514
|
+
animation?: Animation;
|
|
2334
2515
|
}
|
|
2335
2516
|
interface ShapeDataStyles {
|
|
2336
2517
|
/**
|
|
@@ -2433,6 +2614,8 @@ interface TocData {
|
|
|
2433
2614
|
color?: string | null;
|
|
2434
2615
|
/** Indentation style. Default: NESTED. */
|
|
2435
2616
|
indentation?: IndentationWithLiterals;
|
|
2617
|
+
/** Node animation. */
|
|
2618
|
+
animation?: Animation;
|
|
2436
2619
|
}
|
|
2437
2620
|
/** List style. */
|
|
2438
2621
|
declare enum ListStyle {
|
|
@@ -2479,6 +2662,8 @@ interface SmartBlockData {
|
|
|
2479
2662
|
borderWidth?: number | null;
|
|
2480
2663
|
/** Border radius in pixels (for SOLID_JOINED_BOXES variant). */
|
|
2481
2664
|
borderRadius?: number | null;
|
|
2665
|
+
/** Node animation. */
|
|
2666
|
+
animation?: Animation;
|
|
2482
2667
|
}
|
|
2483
2668
|
/** Layout type of the smart block */
|
|
2484
2669
|
declare enum SmartBlockDataType {
|
|
@@ -2582,10 +2767,14 @@ interface CheckboxListData {
|
|
|
2582
2767
|
indentation?: number;
|
|
2583
2768
|
/** Offset level from 0-4. */
|
|
2584
2769
|
offset?: number | null;
|
|
2770
|
+
/** Node animation. */
|
|
2771
|
+
animation?: Animation;
|
|
2585
2772
|
}
|
|
2586
2773
|
interface ListItemNodeData {
|
|
2587
2774
|
/** Checkbox list item state. Defaults to `false`. */
|
|
2588
2775
|
checked?: boolean | null;
|
|
2776
|
+
/** Node animation. */
|
|
2777
|
+
animation?: Animation;
|
|
2589
2778
|
}
|
|
2590
2779
|
interface Metadata {
|
|
2591
2780
|
/** Schema version. */
|
|
@@ -5989,24 +6178,6 @@ interface SetArrangedItemsOptions {
|
|
|
5989
6178
|
* @fqn com.wix.categories.api.v1.CategoriesService.GetArrangedItems
|
|
5990
6179
|
*/
|
|
5991
6180
|
declare function getArrangedItems(categoryId: string, treeReference: NonNullablePaths<TreeReference, `appNamespace`, 2>): Promise<NonNullablePaths<GetArrangedItemsResponse, `items` | `items.${number}.catalogItemId` | `items.${number}.appId`, 4>>;
|
|
5992
|
-
/**
|
|
5993
|
-
* Sets categories of an item by providing a sequence of category IDs.
|
|
5994
|
-
* The item's categories will be completely overridden with the provided list.
|
|
5995
|
-
* @param item - The item to update.
|
|
5996
|
-
* @internal
|
|
5997
|
-
* @documentationMaturity preview
|
|
5998
|
-
* @requiredField item
|
|
5999
|
-
* @requiredField item.appId
|
|
6000
|
-
* @requiredField item.catalogItemId
|
|
6001
|
-
* @requiredField options.treeReference
|
|
6002
|
-
* @requiredField options.treeReference.appNamespace
|
|
6003
|
-
* @permissionId CATEGORIES.ITEM_SET_CATEGORIES
|
|
6004
|
-
* @applicableIdentity APP
|
|
6005
|
-
* @fqn com.wix.categories.api.v1.CategoriesService.BulkSetItemCategories
|
|
6006
|
-
*/
|
|
6007
|
-
declare function bulkSetItemCategories(item: NonNullablePaths<ItemReference, `appId` | `catalogItemId`, 2>, options?: NonNullablePaths<BulkSetItemCategoriesOptions, `treeReference` | `treeReference.appNamespace`, 3>): Promise<NonNullablePaths<BulkSetItemCategoriesResponse, `addResults` | `addResults.${number}.itemMetadata.originalIndex` | `addResults.${number}.itemMetadata.success` | `addResults.${number}.itemMetadata.error.code` | `addResults.${number}.itemMetadata.error.description` | `removeResults` | `removeResults.${number}.itemMetadata.originalIndex` | `removeResults.${number}.itemMetadata.success` | `removeResults.${number}.itemMetadata.error.code` | `removeResults.${number}.itemMetadata.error.description` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`, 6> & {
|
|
6008
|
-
__applicationErrorsType?: BulkSetItemCategoriesApplicationErrors;
|
|
6009
|
-
}>;
|
|
6010
6181
|
interface BulkSetItemCategoriesOptions {
|
|
6011
6182
|
/**
|
|
6012
6183
|
* List of category IDs to set for the item.
|
|
@@ -6018,4 +6189,4 @@ interface BulkSetItemCategoriesOptions {
|
|
|
6018
6189
|
treeReference: TreeReference;
|
|
6019
6190
|
}
|
|
6020
6191
|
|
|
6021
|
-
export { type SetArrangedItemsApplicationErrors as $, type BulkAddItemToCategoriesOptions as A, type BulkUpdateCategoriesOptions as B, type Category as C, type DeleteCategoryApplicationErrors as D, type BulkAddItemToCategoriesResponse as E, type BulkAddItemToCategoriesApplicationErrors as F, type GetCategoryOptions as G, type BulkRemoveItemsFromCategoryOptions as H, type ItemReference as I, type BulkRemoveItemsFromCategoryResponse as J, type BulkRemoveItemsFromCategoryApplicationErrors as K, type BulkRemoveItemFromCategoriesOptions as L, type MoveCategoryOptions as M, type BulkRemoveItemFromCategoriesResponse as N, type BulkRemoveItemFromCategoriesApplicationErrors as O, type ListItemsInCategoryOptions as P, type ListItemsInCategoryResponse as Q, type ListCategoriesForItemOptions as R, type SearchCategoriesOptions as S, type TreeReference as T, type UpdateCategory as U, type ListCategoriesForItemResponse as V, type ListCategoriesForItemsOptions as W, type ListCategoriesForItemsResponse as X, type ListTreesResponse as Y, type SetArrangedItemsOptions as Z, type SetArrangedItemsResponse as _, type CreateCategoryOptions as a, ResponsivenessBehaviour as a$, type GetArrangedItemsResponse as a0, type BulkSetItemCategoriesOptions as a1, type BulkSetItemCategoriesResponse as a2, type BulkSetItemCategoriesApplicationErrors as a3, type CategoryMovedEnvelope as a4, type CategoryCreatedEnvelope as a5, type CategoryDeletedEnvelope as a6, type CategoryItemAddedToCategoryEnvelope as a7, type CategoryItemRemovedFromCategoryEnvelope as a8, type CategoryItemsArrangedInCategoryEnvelope as a9, ViewRole as aA, VoteRole as aB, PollLayoutType as aC, PollLayoutDirection as aD, PollDesignBackgroundType as aE, DecorationType as aF, FontType as aG, Variant as aH, ImageStylesPosition as aI, AspectRatio as aJ, Resizing as aK, Placement as aL, Type as aM, Alignment as aN, Layout as aO, AppType as aP, InitialExpandedItems as aQ, Direction as aR, VerticalAlignment as aS, NullValue as aT, ImageScalingScaling as aU, ImagePosition as aV, LayoutDataBackgroundType as aW, Origin as aX, BannerPosition as aY, BackdropType as aZ, VerticalAlignmentAlignment as a_, type CategoryUpdatedEnvelope as aa, type CategoryQuery as ab, type QueryCategoriesOptions as ac, typedQueryCategories as ad, type CategoriesQueryBuilder as ae, NodeType as af, BackgroundType as ag, GradientType as ah, WidthType as ai, PluginContainerDataAlignment as aj, ButtonDataType as ak, Target as al, TextAlignment as am, LineCap as an, LineStyle as ao, Width as ap, DividerDataAlignment as aq, ViewMode as ar, LayoutType as as, Orientation as at, Crop as au, ThumbnailsAlignment as av, GIFType as aw, Source as ax, StylesPosition as ay, MapType as az, type CreateCategoryApplicationErrors as b, type GalleryOptionsLayout as b$, DesignTarget as b0, Scaling as b1, ImagePositionPosition as b2, CardDataBackgroundType as b3, ListStyle as b4, Indentation as b5, SmartBlockDataType as b6, ColumnSize as b7, SingleEntityOpsRequestedFields as b8, SortOrder as b9, type Border as bA, type Colors as bB, type Background as bC, type PluginContainerData as bD, type PluginContainerDataWidth as bE, type PluginContainerDataWidthDataOneOf as bF, type Spoiler as bG, type Height as bH, type Styles as bI, type Link as bJ, type LinkDataOneOf as bK, type Rel as bL, type CodeBlockData as bM, type TextStyle as bN, type DividerData as bO, type DividerDataStyles as bP, type FileData as bQ, type FileSource as bR, type FileSourceDataOneOf as bS, type PDFSettings as bT, type GalleryData as bU, type Media as bV, type Image as bW, type Video as bX, type Item as bY, type ItemDataOneOf as bZ, type GalleryOptions as b_, RequestedFields as ba, SortType as bb, SortDirection as bc, MissingValues as bd, ScalarType as be, NestedAggregationType as bf, Interval as bg, AggregationType as bh, Mode as bi, Position as bj, MoveItemInCategoryRequestPosition as bk, WebhookIdentityType as bl, type BreadcrumbsInfo as bm, type Breadcrumb as bn, type ParentCategory as bo, type SeoSchema as bp, type Keyword as bq, type Tag as br, type Settings as bs, type RichContent as bt, type Node as bu, type NodeDataOneOf as bv, type NodeStyle as bw, type ButtonData as bx, type Gradient as by, type Stop as bz, type CreateCategoryValidationErrors as c, type OrderedListData as c$, type ItemStyle as c0, type Thumbnails as c1, type GIFData as c2, type GIF as c3, type HeadingData as c4, type HTMLData as c5, type HTMLDataDataOneOf as c6, type ImageData as c7, type StylesBorder as c8, type ImageDataStyles as c9, type MentionData as cA, type FontSizeData as cB, type SpoilerData as cC, type FontFamilyData as cD, type SketchData as cE, type AppEmbedData as cF, type AppEmbedDataAppDataOneOf as cG, type BookingData as cH, type EventData as cI, type ButtonStyles as cJ, type ImageStyles as cK, type RibbonStyles as cL, type CardStyles as cM, type PricingData as cN, type VideoData as cO, type PlaybackOptions as cP, type EmbedData as cQ, type Oembed as cR, type CollapsibleListData as cS, type TableData as cT, type Dimensions as cU, type TableCellData as cV, type CellStyle as cW, type BorderColors as cX, type BorderWidths as cY, type ListValue as cZ, type AudioData as c_, type ImageDataCrop as ca, type LinkPreviewData as cb, type LinkPreviewDataStyles as cc, type MapData as cd, type MapSettings as ce, type ParagraphData as cf, type PollData as cg, type Permissions as ch, type Option as ci, type PollSettings as cj, type PollLayout as ck, type OptionLayout as cl, type BackgroundGradient as cm, type PollDesignBackground as cn, type PollDesignBackgroundBackgroundOneOf as co, type PollDesign as cp, type OptionDesign as cq, type Poll as cr, type PollDataLayout as cs, type Design as ct, type TextData as cu, type Decoration as cv, type DecorationDataOneOf as cw, type AnchorData as cx, type ColorData as cy, type LinkData as cz, type GetCategoryBySlugOptions as d, type Aggregation as d$, type BulletedListData as d0, type BlockquoteData as d1, type CaptionData as d2, type LayoutData as d3, type LayoutDataBackground as d4, type LayoutDataBackgroundImage as d5, type Banner as d6, type Backdrop as d7, type LayoutCellData as d8, type ShapeData as d9, type ItemRemovedFromCategory as dA, type ItemsRemovedFromCategory as dB, type ItemsArrangedInCategory as dC, type CreateCategoryRequest as dD, type CreateCategoryResponse as dE, type DuplicateHandleErrorData as dF, type GetCategoryRequest as dG, type GetCategoryResponse as dH, type GetCategoryBySlugRequest as dI, type UpdateCategoryRequest as dJ, type UpdateCategoryResponse as dK, type DeleteCategoryRequest as dL, type DeleteCategoryResponse as dM, type QueryCategoriesRequest as dN, type CursorQuery as dO, type CursorQueryPagingMethodOneOf as dP, type Sorting as dQ, type CursorPaging as dR, type QueryCategoriesResponse as dS, type CursorPagingMetadata as dT, type Cursors as dU, type ListCompactCategoriesByIdsRequest as dV, type ListCompactCategoriesByIdsResponse as dW, type CompactCategory as dX, type SearchCategoriesRequest as dY, type CursorSearch as dZ, type CursorSearchPagingMethodOneOf as d_, type ShapeDataStyles as da, type CardData as db, type CardDataBackground as dc, type BackgroundImage as dd, type TocData as de, type SmartBlockData as df, type SmartBlockCellData as dg, type CheckboxListData as dh, type ListItemNodeData as di, type Metadata as dj, type DocumentStyle as dk, type TextNodeStyle as dl, type ExtendedFields as dm, type InvalidateCache as dn, type InvalidateCacheGetByOneOf as dp, type App as dq, type Page as dr, type URI as ds, type File as dt, type CustomTag as du, type Pages as dv, type URIs as dw, type CategoryMoved as dx, type ItemAddedToCategory as dy, type ItemsAddedToCategory as dz, type GetCategoryBySlugResponse as e, type MoveItemInCategoryResponse as e$, type AggregationKindOneOf as e0, type RangeBucket as e1, type IncludeMissingValuesOptions as e2, type ValueAggregation as e3, type ValueAggregationOptionsOneOf as e4, type RangeAggregation as e5, type ScalarAggregation as e6, type DateHistogramAggregation as e7, type NestedAggregationItem as e8, type NestedAggregationItemKindOneOf as e9, type Paging as eA, type DeprecatedSearchCategoriesWithOffsetResponse as eB, type PagingMetadata as eC, type CountCategoriesRequest as eD, type MoveCategoryRequest as eE, type BulkUpdateCategoriesRequest as eF, type BulkCategoriesResult as eG, type ItemMetadata as eH, type ApplicationError as eI, type BulkActionMetadata as eJ, type UpdateCategoryVisibilityRequest as eK, type BulkShowCategoriesRequest as eL, type BulkAddItemsToCategoryRequest as eM, type BulkItemsToCategoryResult as eN, type ItemReferenceMetadata as eO, type BulkAddItemToCategoriesRequest as eP, type BulkItemToCategoriesResult as eQ, type BulkRemoveItemsFromCategoryRequest as eR, type BulkRemoveItemFromCategoriesRequest as eS, type ListItemsInCategoryRequest as eT, type ListItemsInCategoryRequestPagingMethodOneOf as eU, type PagingMetadataV2 as eV, type ListCategoriesForItemRequest as eW, type ListCategoriesForItemsRequest as eX, type MapItemToCategories as eY, type ListTreesRequest as eZ, type MoveItemInCategoryRequest as e_, type NestedAggregation as ea, type SearchDetails as eb, type AggregationData as ec, type ValueAggregationResult as ed, type RangeAggregationResult as ee, type NestedAggregationResults as ef, type NestedAggregationResultsResultOneOf as eg, type ValueResults as eh, type RangeResults as ei, type AggregationResultsScalarResult as ej, type NestedValueAggregationResult as ek, type ValueResult as el, type RangeResult as em, type ScalarResult as en, type NestedResultValue as eo, type NestedResultValueResultOneOf as ep, type Results as eq, type DateHistogramResult as er, type GroupByValueResults as es, type DateHistogramResults as et, type NestedResults as eu, type AggregationResults as ev, type AggregationResultsResultOneOf as ew, type DeprecatedSearchCategoriesWithOffsetRequest as ex, type OffsetSearch as ey, type OffsetSearchPagingMethodOneOf as ez, type UpdateCategoryOptions as f, type AspectRatioWithLiterals as f$, type SetArrangedItemsRequest as f0, type GetArrangedItemsRequest as f1, type BulkSetItemCategoriesRequest as f2, type GetCategoriesTreeRequest as f3, type GetCategoriesTreeResponse as f4, type CategoryTreeNode as f5, type DomainEvent as f6, type DomainEventBodyOneOf as f7, type EntityCreatedEvent as f8, type RestoreInfo as f9, type WidthTypeWithLiterals as fA, type PluginContainerDataAlignmentWithLiterals as fB, type ButtonDataTypeWithLiterals as fC, type TargetWithLiterals as fD, type TextAlignmentWithLiterals as fE, type LineCapWithLiterals as fF, type LineStyleWithLiterals as fG, type WidthWithLiterals as fH, type DividerDataAlignmentWithLiterals as fI, type ViewModeWithLiterals as fJ, type LayoutTypeWithLiterals as fK, type OrientationWithLiterals as fL, type CropWithLiterals as fM, type ThumbnailsAlignmentWithLiterals as fN, type GIFTypeWithLiterals as fO, type SourceWithLiterals as fP, type StylesPositionWithLiterals as fQ, type MapTypeWithLiterals as fR, type ViewRoleWithLiterals as fS, type VoteRoleWithLiterals as fT, type PollLayoutTypeWithLiterals as fU, type PollLayoutDirectionWithLiterals as fV, type PollDesignBackgroundTypeWithLiterals as fW, type DecorationTypeWithLiterals as fX, type FontTypeWithLiterals as fY, type VariantWithLiterals as fZ, type ImageStylesPositionWithLiterals as f_, type EntityUpdatedEvent as fa, type EntityDeletedEvent as fb, type ActionEvent as fc, type Empty as fd, type BulkCreateCategoriesForMigrationRequest as fe, type BulkCreateCategoriesForMigrationResponse as ff, type BulkAddItemsToCategoryForMigrationRequest as fg, type BulkAddItemsToCategoryForMigrationResponse as fh, type SetArrangedItemsForMigrationRequest as fi, type SetArrangedItemsForMigrationResponse as fj, type CatalogRollbackRequested as fk, type MessageEnvelope as fl, type IdentificationData as fm, type IdentificationDataIdOneOf as fn, type AccountInfo as fo, type BaseEventMetadata as fp, type EventMetadata as fq, type AccountInfoMetadata as fr, type CategoriesQueryResult as fs, type CategoryQuerySpec as ft, type CategorySearchSpec as fu, type ListItemsInCategoryOptionsPagingMethodOneOf as fv, utils as fw, type NodeTypeWithLiterals as fx, type BackgroundTypeWithLiterals as fy, type GradientTypeWithLiterals as fz, type UpdateCategoryApplicationErrors as g, bulkRemoveItemFromCategories as g$, type ResizingWithLiterals as g0, type PlacementWithLiterals as g1, type TypeWithLiterals as g2, type AlignmentWithLiterals as g3, type LayoutWithLiterals as g4, type AppTypeWithLiterals as g5, type InitialExpandedItemsWithLiterals as g6, type DirectionWithLiterals as g7, type VerticalAlignmentWithLiterals as g8, type NullValueWithLiterals as g9, type ModeWithLiterals as gA, type PositionWithLiterals as gB, type MoveItemInCategoryRequestPositionWithLiterals as gC, type WebhookIdentityTypeWithLiterals as gD, type CommonQueryWithEntityContext as gE, type CommonSearchWithEntityContext as gF, onCategoryMoved as gG, onCategoryCreated as gH, onCategoryDeleted as gI, onCategoryItemAddedToCategory as gJ, onCategoryItemRemovedFromCategory as gK, onCategoryItemsArrangedInCategory as gL, onCategoryUpdated as gM, createCategory as gN, getCategory as gO, getCategoryBySlug as gP, updateCategory as gQ, deleteCategory as gR, queryCategories as gS, countCategories as gT, moveCategory as gU, bulkUpdateCategories as gV, updateCategoryVisibility as gW, bulkShowCategories as gX, bulkAddItemsToCategory as gY, bulkAddItemToCategories as gZ, bulkRemoveItemsFromCategory as g_, type ImageScalingScalingWithLiterals as ga, type ImagePositionWithLiterals as gb, type LayoutDataBackgroundTypeWithLiterals as gc, type OriginWithLiterals as gd, type BannerPositionWithLiterals as ge, type BackdropTypeWithLiterals as gf, type VerticalAlignmentAlignmentWithLiterals as gg, type ResponsivenessBehaviourWithLiterals as gh, type DesignTargetWithLiterals as gi, type ScalingWithLiterals as gj, type ImagePositionPositionWithLiterals as gk, type CardDataBackgroundTypeWithLiterals as gl, type ListStyleWithLiterals as gm, type IndentationWithLiterals as gn, type SmartBlockDataTypeWithLiterals as go, type ColumnSizeWithLiterals as gp, type SingleEntityOpsRequestedFieldsWithLiterals as gq, type SortOrderWithLiterals as gr, type RequestedFieldsWithLiterals as gs, type SortTypeWithLiterals as gt, type SortDirectionWithLiterals as gu, type MissingValuesWithLiterals as gv, type ScalarTypeWithLiterals as gw, type NestedAggregationTypeWithLiterals as gx, type IntervalWithLiterals as gy, type AggregationTypeWithLiterals as gz, type UpdateCategoryValidationErrors as h, listItemsInCategory as h0, listCategoriesForItem as h1, listCategoriesForItems as h2, listTrees as h3, setArrangedItems as h4, getArrangedItems as h5, bulkSetItemCategories as h6, type CategorySearch as i, type SearchCategoriesResponse as j, type CountCategoriesOptions as k, type CountCategoriesResponse as l, type MoveCategoryResponse as m, type MoveCategoryApplicationErrors as n, type MaskedCategory as o, type BulkUpdateCategoriesResponse as p, type BulkUpdateCategoriesApplicationErrors as q, type BulkUpdateCategoriesValidationErrors as r, type UpdateCategoryVisibilityOptions as s, type UpdateCategoryVisibilityResponse as t, type UpdateCategoryVisibilityApplicationErrors as u, type BulkShowCategoriesOptions as v, type BulkShowCategoriesResponse as w, type BulkAddItemsToCategoryOptions as x, type BulkAddItemsToCategoryResponse as y, type BulkAddItemsToCategoryApplicationErrors as z };
|
|
6192
|
+
export { type SetArrangedItemsApplicationErrors as $, type BulkAddItemToCategoriesOptions as A, type BulkUpdateCategoriesOptions as B, type Category as C, type DeleteCategoryApplicationErrors as D, type BulkAddItemToCategoriesResponse as E, type BulkAddItemToCategoriesApplicationErrors as F, type GetCategoryOptions as G, type BulkRemoveItemsFromCategoryOptions as H, type ItemReference as I, type BulkRemoveItemsFromCategoryResponse as J, type BulkRemoveItemsFromCategoryApplicationErrors as K, type BulkRemoveItemFromCategoriesOptions as L, type MoveCategoryOptions as M, type BulkRemoveItemFromCategoriesResponse as N, type BulkRemoveItemFromCategoriesApplicationErrors as O, type ListItemsInCategoryOptions as P, type ListItemsInCategoryResponse as Q, type ListCategoriesForItemOptions as R, type SearchCategoriesOptions as S, type TreeReference as T, type UpdateCategory as U, type ListCategoriesForItemResponse as V, type ListCategoriesForItemsOptions as W, type ListCategoriesForItemsResponse as X, type ListTreesResponse as Y, type SetArrangedItemsOptions as Z, type SetArrangedItemsResponse as _, type CreateCategoryOptions as a, ResponsivenessBehaviour as a$, type GetArrangedItemsResponse as a0, type CategoryMovedEnvelope as a1, type CategoryCreatedEnvelope as a2, type CategoryDeletedEnvelope as a3, type CategoryItemAddedToCategoryEnvelope as a4, type CategoryItemRemovedFromCategoryEnvelope as a5, type CategoryItemsArrangedInCategoryEnvelope as a6, type CategoryUpdatedEnvelope as a7, type CategoryQuery as a8, type QueryCategoriesOptions as a9, ViewRole as aA, VoteRole as aB, PollLayoutType as aC, PollLayoutDirection as aD, PollDesignBackgroundType as aE, DecorationType as aF, FontType as aG, Variant as aH, ImageStylesPosition as aI, AspectRatio as aJ, Resizing as aK, Placement as aL, CardStylesType as aM, Alignment as aN, Layout as aO, AppType as aP, InitialExpandedItems as aQ, Direction as aR, VerticalAlignment as aS, NullValue as aT, ImageScalingScaling as aU, ImagePosition as aV, LayoutDataBackgroundType as aW, Origin as aX, BannerPosition as aY, BackdropType as aZ, VerticalAlignmentAlignment as a_, typedQueryCategories as aa, type CategoriesQueryBuilder as ab, NodeType as ac, BackgroundType as ad, GradientType as ae, WidthType as af, PluginContainerDataAlignment as ag, ButtonDataType as ah, Target as ai, Type as aj, EntranceEffectType as ak, LoopEffectType as al, TextAlignment as am, LineCap as an, LineStyle as ao, Width as ap, DividerDataAlignment as aq, ViewMode as ar, LayoutType as as, Orientation as at, Crop as au, ThumbnailsAlignment as av, GIFType as aw, Source as ax, StylesPosition as ay, MapType as az, type CreateCategoryApplicationErrors as b, type Image as b$, DesignTarget as b0, Scaling as b1, ImagePositionPosition as b2, CardDataBackgroundType as b3, ListStyle as b4, Indentation as b5, SmartBlockDataType as b6, ColumnSize as b7, SingleEntityOpsRequestedFields as b8, SortOrder as b9, type Border as bA, type Colors as bB, type Background as bC, type PluginContainerData as bD, type PluginContainerDataWidth as bE, type PluginContainerDataWidthDataOneOf as bF, type Spoiler as bG, type Height as bH, type Styles as bI, type Link as bJ, type LinkDataOneOf as bK, type Rel as bL, type Animation as bM, type EntranceAnimation as bN, type EntranceEffect as bO, type LoopAnimation as bP, type LoopEffect as bQ, type CodeBlockData as bR, type TextStyle as bS, type DividerData as bT, type DividerDataStyles as bU, type FileData as bV, type FileSource as bW, type FileSourceDataOneOf as bX, type PDFSettings as bY, type GalleryData as bZ, type Media as b_, RequestedFields as ba, SortType as bb, SortDirection as bc, MissingValues as bd, ScalarType as be, NestedAggregationType as bf, Interval as bg, AggregationType as bh, Mode as bi, Position as bj, MoveItemInCategoryRequestPosition as bk, WebhookIdentityType as bl, type BreadcrumbsInfo as bm, type Breadcrumb as bn, type ParentCategory as bo, type SeoSchema as bp, type Keyword as bq, type Tag as br, type Settings as bs, type RichContent as bt, type Node as bu, type NodeDataOneOf as bv, type NodeStyle as bw, type ButtonData as bx, type Gradient as by, type Stop as bz, type CreateCategoryValidationErrors as c, type CellStyle as c$, type Video as c0, type Item as c1, type ItemDataOneOf as c2, type GalleryOptions as c3, type GalleryOptionsLayout as c4, type ItemStyle as c5, type Thumbnails as c6, type GIFData as c7, type GIF as c8, type HeadingData as c9, type Decoration as cA, type DecorationDataOneOf as cB, type AnchorData as cC, type ColorData as cD, type LinkData as cE, type MentionData as cF, type FontSizeData as cG, type SpoilerData as cH, type FontFamilyData as cI, type SketchData as cJ, type AppEmbedData as cK, type AppEmbedDataAppDataOneOf as cL, type BookingData as cM, type EventData as cN, type ButtonStyles as cO, type ImageStyles as cP, type RibbonStyles as cQ, type CardStyles as cR, type PricingData as cS, type VideoData as cT, type PlaybackOptions as cU, type EmbedData as cV, type Oembed as cW, type CollapsibleListData as cX, type TableData as cY, type Dimensions as cZ, type TableCellData as c_, type HTMLData as ca, type HTMLDataDataOneOf as cb, type ImageData as cc, type StylesBorder as cd, type ImageDataStyles as ce, type ImageDataCrop as cf, type LinkPreviewData as cg, type LinkPreviewDataStyles as ch, type MapData as ci, type MapSettings as cj, type ParagraphData as ck, type PollData as cl, type Permissions as cm, type Option as cn, type PollSettings as co, type PollLayout as cp, type OptionLayout as cq, type BackgroundGradient as cr, type PollDesignBackground as cs, type PollDesignBackgroundBackgroundOneOf as ct, type PollDesign as cu, type OptionDesign as cv, type Poll as cw, type PollDataLayout as cx, type Design as cy, type TextData as cz, type GetCategoryBySlugOptions as d, type ListCompactCategoriesByIdsResponse as d$, type BorderColors as d0, type BorderWidths as d1, type ListValue as d2, type AudioData as d3, type OrderedListData as d4, type BulletedListData as d5, type BlockquoteData as d6, type CaptionData as d7, type LayoutData as d8, type LayoutDataBackground as d9, type Pages as dA, type URIs as dB, type CategoryMoved as dC, type ItemAddedToCategory as dD, type ItemsAddedToCategory as dE, type ItemRemovedFromCategory as dF, type ItemsRemovedFromCategory as dG, type ItemsArrangedInCategory as dH, type CreateCategoryRequest as dI, type CreateCategoryResponse as dJ, type DuplicateHandleErrorData as dK, type GetCategoryRequest as dL, type GetCategoryResponse as dM, type GetCategoryBySlugRequest as dN, type UpdateCategoryRequest as dO, type UpdateCategoryResponse as dP, type DeleteCategoryRequest as dQ, type DeleteCategoryResponse as dR, type QueryCategoriesRequest as dS, type CursorQuery as dT, type CursorQueryPagingMethodOneOf as dU, type Sorting as dV, type CursorPaging as dW, type QueryCategoriesResponse as dX, type CursorPagingMetadata as dY, type Cursors as dZ, type ListCompactCategoriesByIdsRequest as d_, type LayoutDataBackgroundImage as da, type Banner as db, type Backdrop as dc, type LayoutCellData as dd, type ShapeData as de, type ShapeDataStyles as df, type CardData as dg, type CardDataBackground as dh, type BackgroundImage as di, type TocData as dj, type SmartBlockData as dk, type SmartBlockCellData as dl, type CheckboxListData as dm, type ListItemNodeData as dn, type Metadata as dp, type DocumentStyle as dq, type TextNodeStyle as dr, type ExtendedFields as ds, type InvalidateCache as dt, type InvalidateCacheGetByOneOf as du, type App as dv, type Page as dw, type URI as dx, type File as dy, type CustomTag as dz, type GetCategoryBySlugResponse as e, type ListCategoriesForItemRequest as e$, type CompactCategory as e0, type SearchCategoriesRequest as e1, type CursorSearch as e2, type CursorSearchPagingMethodOneOf as e3, type Aggregation as e4, type AggregationKindOneOf as e5, type RangeBucket as e6, type IncludeMissingValuesOptions as e7, type ValueAggregation as e8, type ValueAggregationOptionsOneOf as e9, type AggregationResults as eA, type AggregationResultsResultOneOf as eB, type DeprecatedSearchCategoriesWithOffsetRequest as eC, type OffsetSearch as eD, type OffsetSearchPagingMethodOneOf as eE, type Paging as eF, type DeprecatedSearchCategoriesWithOffsetResponse as eG, type PagingMetadata as eH, type CountCategoriesRequest as eI, type MoveCategoryRequest as eJ, type BulkUpdateCategoriesRequest as eK, type BulkCategoriesResult as eL, type ItemMetadata as eM, type ApplicationError as eN, type BulkActionMetadata as eO, type UpdateCategoryVisibilityRequest as eP, type BulkShowCategoriesRequest as eQ, type BulkAddItemsToCategoryRequest as eR, type BulkItemsToCategoryResult as eS, type ItemReferenceMetadata as eT, type BulkAddItemToCategoriesRequest as eU, type BulkItemToCategoriesResult as eV, type BulkRemoveItemsFromCategoryRequest as eW, type BulkRemoveItemFromCategoriesRequest as eX, type ListItemsInCategoryRequest as eY, type ListItemsInCategoryRequestPagingMethodOneOf as eZ, type PagingMetadataV2 as e_, type RangeAggregation as ea, type ScalarAggregation as eb, type DateHistogramAggregation as ec, type NestedAggregationItem as ed, type NestedAggregationItemKindOneOf as ee, type NestedAggregation as ef, type SearchDetails as eg, type AggregationData as eh, type ValueAggregationResult as ei, type RangeAggregationResult as ej, type NestedAggregationResults as ek, type NestedAggregationResultsResultOneOf as el, type ValueResults as em, type RangeResults as en, type AggregationResultsScalarResult as eo, type NestedValueAggregationResult as ep, type ValueResult as eq, type RangeResult as er, type ScalarResult as es, type NestedResultValue as et, type NestedResultValueResultOneOf as eu, type Results as ev, type DateHistogramResult as ew, type GroupByValueResults as ex, type DateHistogramResults as ey, type NestedResults as ez, type UpdateCategoryOptions as f, type MapTypeWithLiterals as f$, type ListCategoriesForItemsRequest as f0, type MapItemToCategories as f1, type ListTreesRequest as f2, type MoveItemInCategoryRequest as f3, type MoveItemInCategoryResponse as f4, type SetArrangedItemsRequest as f5, type GetArrangedItemsRequest as f6, type BulkSetItemCategoriesRequest as f7, type BulkSetItemCategoriesResponse as f8, type GetCategoriesTreeRequest as f9, type CategorySearchSpec as fA, type ListItemsInCategoryOptionsPagingMethodOneOf as fB, type BulkSetItemCategoriesOptions as fC, utils as fD, type NodeTypeWithLiterals as fE, type BackgroundTypeWithLiterals as fF, type GradientTypeWithLiterals as fG, type WidthTypeWithLiterals as fH, type PluginContainerDataAlignmentWithLiterals as fI, type ButtonDataTypeWithLiterals as fJ, type TargetWithLiterals as fK, type TypeWithLiterals as fL, type EntranceEffectTypeWithLiterals as fM, type LoopEffectTypeWithLiterals as fN, type TextAlignmentWithLiterals as fO, type LineCapWithLiterals as fP, type LineStyleWithLiterals as fQ, type WidthWithLiterals as fR, type DividerDataAlignmentWithLiterals as fS, type ViewModeWithLiterals as fT, type LayoutTypeWithLiterals as fU, type OrientationWithLiterals as fV, type CropWithLiterals as fW, type ThumbnailsAlignmentWithLiterals as fX, type GIFTypeWithLiterals as fY, type SourceWithLiterals as fZ, type StylesPositionWithLiterals as f_, type GetCategoriesTreeResponse as fa, type CategoryTreeNode as fb, type DomainEvent as fc, type DomainEventBodyOneOf as fd, type EntityCreatedEvent as fe, type RestoreInfo as ff, type EntityUpdatedEvent as fg, type EntityDeletedEvent as fh, type ActionEvent as fi, type Empty as fj, type BulkCreateCategoriesForMigrationRequest as fk, type BulkCreateCategoriesForMigrationResponse as fl, type BulkAddItemsToCategoryForMigrationRequest as fm, type BulkAddItemsToCategoryForMigrationResponse as fn, type SetArrangedItemsForMigrationRequest as fo, type SetArrangedItemsForMigrationResponse as fp, type CatalogRollbackRequested as fq, type MessageEnvelope as fr, type IdentificationData as fs, type IdentificationDataIdOneOf as ft, type AccountInfo as fu, type BaseEventMetadata as fv, type EventMetadata as fw, type AccountInfoMetadata as fx, type CategoriesQueryResult as fy, type CategoryQuerySpec as fz, type UpdateCategoryApplicationErrors as g, updateCategory as g$, type ViewRoleWithLiterals as g0, type VoteRoleWithLiterals as g1, type PollLayoutTypeWithLiterals as g2, type PollLayoutDirectionWithLiterals as g3, type PollDesignBackgroundTypeWithLiterals as g4, type DecorationTypeWithLiterals as g5, type FontTypeWithLiterals as g6, type VariantWithLiterals as g7, type ImageStylesPositionWithLiterals as g8, type AspectRatioWithLiterals as g9, type SingleEntityOpsRequestedFieldsWithLiterals as gA, type SortOrderWithLiterals as gB, type RequestedFieldsWithLiterals as gC, type SortTypeWithLiterals as gD, type SortDirectionWithLiterals as gE, type MissingValuesWithLiterals as gF, type ScalarTypeWithLiterals as gG, type NestedAggregationTypeWithLiterals as gH, type IntervalWithLiterals as gI, type AggregationTypeWithLiterals as gJ, type ModeWithLiterals as gK, type PositionWithLiterals as gL, type MoveItemInCategoryRequestPositionWithLiterals as gM, type WebhookIdentityTypeWithLiterals as gN, type BulkSetItemCategoriesApplicationErrors as gO, type CommonQueryWithEntityContext as gP, type CommonSearchWithEntityContext as gQ, onCategoryMoved as gR, onCategoryCreated as gS, onCategoryDeleted as gT, onCategoryItemAddedToCategory as gU, onCategoryItemRemovedFromCategory as gV, onCategoryItemsArrangedInCategory as gW, onCategoryUpdated as gX, createCategory as gY, getCategory as gZ, getCategoryBySlug as g_, type ResizingWithLiterals as ga, type PlacementWithLiterals as gb, type CardStylesTypeWithLiterals as gc, type AlignmentWithLiterals as gd, type LayoutWithLiterals as ge, type AppTypeWithLiterals as gf, type InitialExpandedItemsWithLiterals as gg, type DirectionWithLiterals as gh, type VerticalAlignmentWithLiterals as gi, type NullValueWithLiterals as gj, type ImageScalingScalingWithLiterals as gk, type ImagePositionWithLiterals as gl, type LayoutDataBackgroundTypeWithLiterals as gm, type OriginWithLiterals as gn, type BannerPositionWithLiterals as go, type BackdropTypeWithLiterals as gp, type VerticalAlignmentAlignmentWithLiterals as gq, type ResponsivenessBehaviourWithLiterals as gr, type DesignTargetWithLiterals as gs, type ScalingWithLiterals as gt, type ImagePositionPositionWithLiterals as gu, type CardDataBackgroundTypeWithLiterals as gv, type ListStyleWithLiterals as gw, type IndentationWithLiterals as gx, type SmartBlockDataTypeWithLiterals as gy, type ColumnSizeWithLiterals as gz, type UpdateCategoryValidationErrors as h, deleteCategory as h0, queryCategories as h1, countCategories as h2, moveCategory as h3, bulkUpdateCategories as h4, updateCategoryVisibility as h5, bulkShowCategories as h6, bulkAddItemsToCategory as h7, bulkAddItemToCategories as h8, bulkRemoveItemsFromCategory as h9, bulkRemoveItemFromCategories as ha, listItemsInCategory as hb, listCategoriesForItem as hc, listCategoriesForItems as hd, listTrees as he, setArrangedItems as hf, getArrangedItems as hg, type CategorySearch as i, type SearchCategoriesResponse as j, type CountCategoriesOptions as k, type CountCategoriesResponse as l, type MoveCategoryResponse as m, type MoveCategoryApplicationErrors as n, type MaskedCategory as o, type BulkUpdateCategoriesResponse as p, type BulkUpdateCategoriesApplicationErrors as q, type BulkUpdateCategoriesValidationErrors as r, type UpdateCategoryVisibilityOptions as s, type UpdateCategoryVisibilityResponse as t, type UpdateCategoryVisibilityApplicationErrors as u, type BulkShowCategoriesOptions as v, type BulkShowCategoriesResponse as w, type BulkAddItemsToCategoryOptions as x, type BulkAddItemsToCategoryResponse as y, type BulkAddItemsToCategoryApplicationErrors as z };
|
package/build/cjs/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { C as Category, a as CreateCategoryOptions, b as CreateCategoryApplicationErrors, c as CreateCategoryValidationErrors, T as TreeReference, G as GetCategoryOptions, d as GetCategoryBySlugOptions, e as GetCategoryBySlugResponse, U as UpdateCategory, f as UpdateCategoryOptions, g as UpdateCategoryApplicationErrors, h as UpdateCategoryValidationErrors, D as DeleteCategoryApplicationErrors, i as CategorySearch, S as SearchCategoriesOptions, j as SearchCategoriesResponse, k as CountCategoriesOptions, l as CountCategoriesResponse, M as MoveCategoryOptions, m as MoveCategoryResponse, n as MoveCategoryApplicationErrors, o as MaskedCategory, B as BulkUpdateCategoriesOptions, p as BulkUpdateCategoriesResponse, q as BulkUpdateCategoriesApplicationErrors, r as BulkUpdateCategoriesValidationErrors, s as UpdateCategoryVisibilityOptions, t as UpdateCategoryVisibilityResponse, u as UpdateCategoryVisibilityApplicationErrors, v as BulkShowCategoriesOptions, w as BulkShowCategoriesResponse, I as ItemReference, x as BulkAddItemsToCategoryOptions, y as BulkAddItemsToCategoryResponse, z as BulkAddItemsToCategoryApplicationErrors, A as BulkAddItemToCategoriesOptions, E as BulkAddItemToCategoriesResponse, F as BulkAddItemToCategoriesApplicationErrors, H as BulkRemoveItemsFromCategoryOptions, J as BulkRemoveItemsFromCategoryResponse, K as BulkRemoveItemsFromCategoryApplicationErrors, L as BulkRemoveItemFromCategoriesOptions, N as BulkRemoveItemFromCategoriesResponse, O as BulkRemoveItemFromCategoriesApplicationErrors, P as ListItemsInCategoryOptions, Q as ListItemsInCategoryResponse, R as ListCategoriesForItemOptions, V as ListCategoriesForItemResponse, W as ListCategoriesForItemsOptions, X as ListCategoriesForItemsResponse, Y as ListTreesResponse, Z as SetArrangedItemsOptions, _ as SetArrangedItemsResponse, $ as SetArrangedItemsApplicationErrors, a0 as GetArrangedItemsResponse, a1 as CategoryMovedEnvelope, a2 as CategoryCreatedEnvelope, a3 as CategoryDeletedEnvelope, a4 as CategoryItemAddedToCategoryEnvelope, a5 as CategoryItemRemovedFromCategoryEnvelope, a6 as CategoryItemsArrangedInCategoryEnvelope, a7 as CategoryUpdatedEnvelope, a8 as CategoryQuery, a9 as QueryCategoriesOptions, aa as typedQueryCategories, ab as CategoriesQueryBuilder } from './categories-v1-category-categories.universal-
|
|
3
|
-
export { fm as AccountInfo, fp as AccountInfoMetadata, fa as ActionEvent, dY as Aggregation, e9 as AggregationData, dZ as AggregationKindOneOf, es as AggregationResults, et as AggregationResultsResultOneOf, eg as AggregationResultsScalarResult, be as AggregationType, gy as AggregationTypeWithLiterals, aK as Alignment, g2 as AlignmentWithLiterals, cu as AnchorData, dm as App, cC as AppEmbedData, cD as AppEmbedDataAppDataOneOf, aM as AppType, g4 as AppTypeWithLiterals, eF as ApplicationError, aG as AspectRatio, f_ as AspectRatioWithLiterals, cX as AudioData, d4 as Backdrop, aW as BackdropType, ge as BackdropTypeWithLiterals, bz as Background, cj as BackgroundGradient, da as BackgroundImage, ad as BackgroundType, fx as BackgroundTypeWithLiterals, d3 as Banner, aV as BannerPosition, gd as BannerPositionWithLiterals, fn as BaseEventMetadata, c_ as BlockquoteData, cE as BookingData, bx as Border, cU as BorderColors, cV as BorderWidths, bk as Breadcrumb, bj as BreadcrumbsInfo, eG as BulkActionMetadata, eM as BulkAddItemToCategoriesRequest, fe as BulkAddItemsToCategoryForMigrationRequest, ff as BulkAddItemsToCategoryForMigrationResponse, eJ as BulkAddItemsToCategoryRequest, eD as BulkCategoriesResult, fc as BulkCreateCategoriesForMigrationRequest, fd as BulkCreateCategoriesForMigrationResponse, eN as BulkItemToCategoriesResult, eK as BulkItemsToCategoryResult, eP as BulkRemoveItemFromCategoriesRequest, eO as BulkRemoveItemsFromCategoryRequest, gD as BulkSetItemCategoriesApplicationErrors, fu as BulkSetItemCategoriesOptions, e$ as BulkSetItemCategoriesRequest, f0 as BulkSetItemCategoriesResponse, eI as BulkShowCategoriesRequest, eC as BulkUpdateCategoriesRequest, cZ as BulletedListData, bu as ButtonData, ah as ButtonDataType, fB as ButtonDataTypeWithLiterals, cG as ButtonStyles, c$ as CaptionData, d8 as CardData, d9 as CardDataBackground, b0 as CardDataBackgroundType, gk as CardDataBackgroundTypeWithLiterals, cJ as CardStyles, fi as CatalogRollbackRequested, fq as CategoriesQueryResult, du as CategoryMoved, fr as CategoryQuerySpec, fs as CategorySearchSpec, f3 as CategoryTreeNode, cT as CellStyle, de as CheckboxListData, bJ as CodeBlockData, cP as CollapsibleListData, cv as ColorData, by as Colors, b4 as ColumnSize, go as ColumnSizeWithLiterals, gE as CommonQueryWithEntityContext, gF as CommonSearchWithEntityContext, dU as CompactCategory, eA as CountCategoriesRequest, dA as CreateCategoryRequest, dB as CreateCategoryResponse, ar as Crop, fL as CropWithLiterals, dO as CursorPaging, dQ as CursorPagingMetadata, dL as CursorQuery, dM as CursorQueryPagingMethodOneOf, dW as CursorSearch, dX as CursorSearchPagingMethodOneOf, dR as Cursors, dr as CustomTag, e4 as DateHistogramAggregation, eo as DateHistogramResult, eq as DateHistogramResults, cs as Decoration, ct as DecorationDataOneOf, aC as DecorationType, fW as DecorationTypeWithLiterals, dI as DeleteCategoryRequest, dJ as DeleteCategoryResponse, eu as DeprecatedSearchCategoriesWithOffsetRequest, ey as DeprecatedSearchCategoriesWithOffsetResponse, cq as Design, aZ as DesignTarget, gh as DesignTargetWithLiterals, cR as Dimensions, aO as Direction, g6 as DirectionWithLiterals, bL as DividerData, an as DividerDataAlignment, fH as DividerDataAlignmentWithLiterals, bM as DividerDataStyles, dh as DocumentStyle, f4 as DomainEvent, f5 as DomainEventBodyOneOf, dC as DuplicateHandleErrorData, cN as EmbedData, fb as Empty, f6 as EntityCreatedEvent, f9 as EntityDeletedEvent, f8 as EntityUpdatedEvent, cF as EventData, fo as EventMetadata, dj as ExtendedFields, dq as File, bN as FileData, bO as FileSource, bP as FileSourceDataOneOf, cA as FontFamilyData, cy as FontSizeData, aD as FontType, fX as FontTypeWithLiterals, c0 as GIF, b$ as GIFData, at as GIFType, fN as GIFTypeWithLiterals, bR as GalleryData, bX as GalleryOptions, bY as GalleryOptionsLayout, e_ as GetArrangedItemsRequest, f1 as GetCategoriesTreeRequest, f2 as GetCategoriesTreeResponse, dF as GetCategoryBySlugRequest, dD as GetCategoryRequest, dE as GetCategoryResponse, bv as Gradient, ae as GradientType, fy as GradientTypeWithLiterals, ep as GroupByValueResults, c2 as HTMLData, c3 as HTMLDataDataOneOf, c1 as HeadingData, bE as Height, fk as IdentificationData, fl as IdentificationDataIdOneOf, bT as Image, c4 as ImageData, c7 as ImageDataCrop, c6 as ImageDataStyles, aS as ImagePosition, a$ as ImagePositionPosition, gj as ImagePositionPositionWithLiterals, ga as ImagePositionWithLiterals, aR as ImageScalingScaling, g9 as ImageScalingScalingWithLiterals, cH as ImageStyles, aF as ImageStylesPosition, fZ as ImageStylesPositionWithLiterals, d$ as IncludeMissingValuesOptions, b2 as Indentation, gm as IndentationWithLiterals, aN as InitialExpandedItems, g5 as InitialExpandedItemsWithLiterals, bd as Interval, gx as IntervalWithLiterals, dk as InvalidateCache, dl as InvalidateCacheGetByOneOf, bV as Item, dv as ItemAddedToCategory, bW as ItemDataOneOf, eE as ItemMetadata, eL as ItemReferenceMetadata, dx as ItemRemovedFromCategory, bZ as ItemStyle, dw as ItemsAddedToCategory, dz as ItemsArrangedInCategory, dy as ItemsRemovedFromCategory, bn as Keyword, aL as Layout, d5 as LayoutCellData, d0 as LayoutData, d1 as LayoutDataBackground, d2 as LayoutDataBackgroundImage, aT as LayoutDataBackgroundType, gb as LayoutDataBackgroundTypeWithLiterals, ap as LayoutType, fJ as LayoutTypeWithLiterals, g3 as LayoutWithLiterals, ak as LineCap, fE as LineCapWithLiterals, al as LineStyle, fF as LineStyleWithLiterals, bG as Link, cw as LinkData, bH as LinkDataOneOf, c8 as LinkPreviewData, c9 as LinkPreviewDataStyles, eT as ListCategoriesForItemRequest, eU as ListCategoriesForItemsRequest, dS as ListCompactCategoriesByIdsRequest, dT as ListCompactCategoriesByIdsResponse, df as ListItemNodeData, ft as ListItemsInCategoryOptionsPagingMethodOneOf, eQ as ListItemsInCategoryRequest, eR as ListItemsInCategoryRequestPagingMethodOneOf, b1 as ListStyle, gl as ListStyleWithLiterals, eW as ListTreesRequest, cW as ListValue, ca as MapData, eV as MapItemToCategories, cb as MapSettings, aw as MapType, fQ as MapTypeWithLiterals, bS as Media, cx as MentionData, fj as MessageEnvelope, dg as Metadata, ba as MissingValues, gu as MissingValuesWithLiterals, bf as Mode, gz as ModeWithLiterals, eB as MoveCategoryRequest, eX as MoveItemInCategoryRequest, bh as MoveItemInCategoryRequestPosition, gB as MoveItemInCategoryRequestPositionWithLiterals, eY as MoveItemInCategoryResponse, e7 as NestedAggregation, e5 as NestedAggregationItem, e6 as NestedAggregationItemKindOneOf, ec as NestedAggregationResults, ed as NestedAggregationResultsResultOneOf, bc as NestedAggregationType, gw as NestedAggregationTypeWithLiterals, el as NestedResultValue, em as NestedResultValueResultOneOf, er as NestedResults, eh as NestedValueAggregationResult, br as Node, bs as NodeDataOneOf, bt as NodeStyle, ac as NodeType, fw as NodeTypeWithLiterals, aQ as NullValue, g8 as NullValueWithLiterals, cO as Oembed, ev as OffsetSearch, ew as OffsetSearchPagingMethodOneOf, cf as Option, cn as OptionDesign, ci as OptionLayout, cY as OrderedListData, aq as Orientation, fK as OrientationWithLiterals, aU as Origin, gc as OriginWithLiterals, bQ as PDFSettings, dn as Page, ds as Pages, ex as Paging, ez as PagingMetadata, eS as PagingMetadataV2, cc as ParagraphData, bl as ParentCategory, ce as Permissions, aI as Placement, g0 as PlacementWithLiterals, cM as PlaybackOptions, bA as PluginContainerData, ag as PluginContainerDataAlignment, fA as PluginContainerDataAlignmentWithLiterals, bB as PluginContainerDataWidth, bC as PluginContainerDataWidthDataOneOf, co as Poll, cd as PollData, cp as PollDataLayout, cm as PollDesign, ck as PollDesignBackground, cl as PollDesignBackgroundBackgroundOneOf, aB as PollDesignBackgroundType, fV as PollDesignBackgroundTypeWithLiterals, ch as PollLayout, aA as PollLayoutDirection, fU as PollLayoutDirectionWithLiterals, az as PollLayoutType, fT as PollLayoutTypeWithLiterals, cg as PollSettings, bg as Position, gA as PositionWithLiterals, cK as PricingData, dK as QueryCategoriesRequest, dP as QueryCategoriesResponse, e2 as RangeAggregation, eb as RangeAggregationResult, d_ as RangeBucket, ej as RangeResult, ef as RangeResults, bI as Rel, b7 as RequestedFields, gr as RequestedFieldsWithLiterals, aH as Resizing, f$ as ResizingWithLiterals, aY as ResponsivenessBehaviour, gg as ResponsivenessBehaviourWithLiterals, f7 as RestoreInfo, en as Results, cI as RibbonStyles, bq as RichContent, e3 as ScalarAggregation, ek as ScalarResult, bb as ScalarType, gv as ScalarTypeWithLiterals, a_ as Scaling, gi as ScalingWithLiterals, dV as SearchCategoriesRequest, e8 as SearchDetails, bm as SeoSchema, fg as SetArrangedItemsForMigrationRequest, fh as SetArrangedItemsForMigrationResponse, eZ as SetArrangedItemsRequest, bp as Settings, d6 as ShapeData, d7 as ShapeDataStyles, b5 as SingleEntityOpsRequestedFields, gp as SingleEntityOpsRequestedFieldsWithLiterals, cB as SketchData, dd as SmartBlockCellData, dc as SmartBlockData, b3 as SmartBlockDataType, gn as SmartBlockDataTypeWithLiterals, b9 as SortDirection, gt as SortDirectionWithLiterals, b6 as SortOrder, gq as SortOrderWithLiterals, b8 as SortType, gs as SortTypeWithLiterals, dN as Sorting, au as Source, fO as SourceWithLiterals, bD as Spoiler, cz as SpoilerData, bw as Stop, bF as Styles, c5 as StylesBorder, av as StylesPosition, fP as StylesPositionWithLiterals, cS as TableCellData, cQ as TableData, bo as Tag, ai as Target, fC as TargetWithLiterals, aj as TextAlignment, fD as TextAlignmentWithLiterals, cr as TextData, di as TextNodeStyle, bK as TextStyle, b_ as Thumbnails, as as ThumbnailsAlignment, fM as ThumbnailsAlignmentWithLiterals, db as TocData, aJ as Type, g1 as TypeWithLiterals, dp as URI, dt as URIs, dG as UpdateCategoryRequest, dH as UpdateCategoryResponse, eH as UpdateCategoryVisibilityRequest, e0 as ValueAggregation, e1 as ValueAggregationOptionsOneOf, ea as ValueAggregationResult, ei as ValueResult, ee as ValueResults, aE as Variant, fY as VariantWithLiterals, aP as VerticalAlignment, aX as VerticalAlignmentAlignment, gf as VerticalAlignmentAlignmentWithLiterals, g7 as VerticalAlignmentWithLiterals, bU as Video, cL as VideoData, ao as ViewMode, fI as ViewModeWithLiterals, ax as ViewRole, fR as ViewRoleWithLiterals, ay as VoteRole, fS as VoteRoleWithLiterals, bi as WebhookIdentityType, gC as WebhookIdentityTypeWithLiterals, am as Width, af as WidthType, fz as WidthTypeWithLiterals, fG as WidthWithLiterals, fv as utils } from './categories-v1-category-categories.universal-DibWCZU9.js';
|
|
2
|
+
import { C as Category, a as CreateCategoryOptions, b as CreateCategoryApplicationErrors, c as CreateCategoryValidationErrors, T as TreeReference, G as GetCategoryOptions, d as GetCategoryBySlugOptions, e as GetCategoryBySlugResponse, U as UpdateCategory, f as UpdateCategoryOptions, g as UpdateCategoryApplicationErrors, h as UpdateCategoryValidationErrors, D as DeleteCategoryApplicationErrors, i as CategorySearch, S as SearchCategoriesOptions, j as SearchCategoriesResponse, k as CountCategoriesOptions, l as CountCategoriesResponse, M as MoveCategoryOptions, m as MoveCategoryResponse, n as MoveCategoryApplicationErrors, o as MaskedCategory, B as BulkUpdateCategoriesOptions, p as BulkUpdateCategoriesResponse, q as BulkUpdateCategoriesApplicationErrors, r as BulkUpdateCategoriesValidationErrors, s as UpdateCategoryVisibilityOptions, t as UpdateCategoryVisibilityResponse, u as UpdateCategoryVisibilityApplicationErrors, v as BulkShowCategoriesOptions, w as BulkShowCategoriesResponse, I as ItemReference, x as BulkAddItemsToCategoryOptions, y as BulkAddItemsToCategoryResponse, z as BulkAddItemsToCategoryApplicationErrors, A as BulkAddItemToCategoriesOptions, E as BulkAddItemToCategoriesResponse, F as BulkAddItemToCategoriesApplicationErrors, H as BulkRemoveItemsFromCategoryOptions, J as BulkRemoveItemsFromCategoryResponse, K as BulkRemoveItemsFromCategoryApplicationErrors, L as BulkRemoveItemFromCategoriesOptions, N as BulkRemoveItemFromCategoriesResponse, O as BulkRemoveItemFromCategoriesApplicationErrors, P as ListItemsInCategoryOptions, Q as ListItemsInCategoryResponse, R as ListCategoriesForItemOptions, V as ListCategoriesForItemResponse, W as ListCategoriesForItemsOptions, X as ListCategoriesForItemsResponse, Y as ListTreesResponse, Z as SetArrangedItemsOptions, _ as SetArrangedItemsResponse, $ as SetArrangedItemsApplicationErrors, a0 as GetArrangedItemsResponse, a1 as CategoryMovedEnvelope, a2 as CategoryCreatedEnvelope, a3 as CategoryDeletedEnvelope, a4 as CategoryItemAddedToCategoryEnvelope, a5 as CategoryItemRemovedFromCategoryEnvelope, a6 as CategoryItemsArrangedInCategoryEnvelope, a7 as CategoryUpdatedEnvelope, a8 as CategoryQuery, a9 as QueryCategoriesOptions, aa as typedQueryCategories, ab as CategoriesQueryBuilder } from './categories-v1-category-categories.universal-Cy-lRfCS.js';
|
|
3
|
+
export { fu as AccountInfo, fx as AccountInfoMetadata, fi as ActionEvent, e4 as Aggregation, eh as AggregationData, e5 as AggregationKindOneOf, eA as AggregationResults, eB as AggregationResultsResultOneOf, eo as AggregationResultsScalarResult, bh as AggregationType, gJ as AggregationTypeWithLiterals, aN as Alignment, gd as AlignmentWithLiterals, cC as AnchorData, bM as Animation, dv as App, cK as AppEmbedData, cL as AppEmbedDataAppDataOneOf, aP as AppType, gf as AppTypeWithLiterals, eN as ApplicationError, aJ as AspectRatio, g9 as AspectRatioWithLiterals, d3 as AudioData, dc as Backdrop, aZ as BackdropType, gp as BackdropTypeWithLiterals, bC as Background, cr as BackgroundGradient, di as BackgroundImage, ad as BackgroundType, fF as BackgroundTypeWithLiterals, db as Banner, aY as BannerPosition, go as BannerPositionWithLiterals, fv as BaseEventMetadata, d6 as BlockquoteData, cM as BookingData, bA as Border, d0 as BorderColors, d1 as BorderWidths, bn as Breadcrumb, bm as BreadcrumbsInfo, eO as BulkActionMetadata, eU as BulkAddItemToCategoriesRequest, fm as BulkAddItemsToCategoryForMigrationRequest, fn as BulkAddItemsToCategoryForMigrationResponse, eR as BulkAddItemsToCategoryRequest, eL as BulkCategoriesResult, fk as BulkCreateCategoriesForMigrationRequest, fl as BulkCreateCategoriesForMigrationResponse, eV as BulkItemToCategoriesResult, eS as BulkItemsToCategoryResult, eX as BulkRemoveItemFromCategoriesRequest, eW as BulkRemoveItemsFromCategoryRequest, gO as BulkSetItemCategoriesApplicationErrors, fC as BulkSetItemCategoriesOptions, f7 as BulkSetItemCategoriesRequest, f8 as BulkSetItemCategoriesResponse, eQ as BulkShowCategoriesRequest, eK as BulkUpdateCategoriesRequest, d5 as BulletedListData, bx as ButtonData, ah as ButtonDataType, fJ as ButtonDataTypeWithLiterals, cO as ButtonStyles, d7 as CaptionData, dg as CardData, dh as CardDataBackground, b3 as CardDataBackgroundType, gv as CardDataBackgroundTypeWithLiterals, cR as CardStyles, aM as CardStylesType, gc as CardStylesTypeWithLiterals, fq as CatalogRollbackRequested, fy as CategoriesQueryResult, dC as CategoryMoved, fz as CategoryQuerySpec, fA as CategorySearchSpec, fb as CategoryTreeNode, c$ as CellStyle, dm as CheckboxListData, bR as CodeBlockData, cX as CollapsibleListData, cD as ColorData, bB as Colors, b7 as ColumnSize, gz as ColumnSizeWithLiterals, gP as CommonQueryWithEntityContext, gQ as CommonSearchWithEntityContext, e0 as CompactCategory, eI as CountCategoriesRequest, dI as CreateCategoryRequest, dJ as CreateCategoryResponse, au as Crop, fW as CropWithLiterals, dW as CursorPaging, dY as CursorPagingMetadata, dT as CursorQuery, dU as CursorQueryPagingMethodOneOf, e2 as CursorSearch, e3 as CursorSearchPagingMethodOneOf, dZ as Cursors, dz as CustomTag, ec as DateHistogramAggregation, ew as DateHistogramResult, ey as DateHistogramResults, cA as Decoration, cB as DecorationDataOneOf, aF as DecorationType, g5 as DecorationTypeWithLiterals, dQ as DeleteCategoryRequest, dR as DeleteCategoryResponse, eC as DeprecatedSearchCategoriesWithOffsetRequest, eG as DeprecatedSearchCategoriesWithOffsetResponse, cy as Design, b0 as DesignTarget, gs as DesignTargetWithLiterals, cZ as Dimensions, aR as Direction, gh as DirectionWithLiterals, bT as DividerData, aq as DividerDataAlignment, fS as DividerDataAlignmentWithLiterals, bU as DividerDataStyles, dq as DocumentStyle, fc as DomainEvent, fd as DomainEventBodyOneOf, dK as DuplicateHandleErrorData, cV as EmbedData, fj as Empty, fe as EntityCreatedEvent, fh as EntityDeletedEvent, fg as EntityUpdatedEvent, bN as EntranceAnimation, bO as EntranceEffect, ak as EntranceEffectType, fM as EntranceEffectTypeWithLiterals, cN as EventData, fw as EventMetadata, ds as ExtendedFields, dy as File, bV as FileData, bW as FileSource, bX as FileSourceDataOneOf, cI as FontFamilyData, cG as FontSizeData, aG as FontType, g6 as FontTypeWithLiterals, c8 as GIF, c7 as GIFData, aw as GIFType, fY as GIFTypeWithLiterals, bZ as GalleryData, c3 as GalleryOptions, c4 as GalleryOptionsLayout, f6 as GetArrangedItemsRequest, f9 as GetCategoriesTreeRequest, fa as GetCategoriesTreeResponse, dN as GetCategoryBySlugRequest, dL as GetCategoryRequest, dM as GetCategoryResponse, by as Gradient, ae as GradientType, fG as GradientTypeWithLiterals, ex as GroupByValueResults, ca as HTMLData, cb as HTMLDataDataOneOf, c9 as HeadingData, bH as Height, fs as IdentificationData, ft as IdentificationDataIdOneOf, b$ as Image, cc as ImageData, cf as ImageDataCrop, ce as ImageDataStyles, aV as ImagePosition, b2 as ImagePositionPosition, gu as ImagePositionPositionWithLiterals, gl as ImagePositionWithLiterals, aU as ImageScalingScaling, gk as ImageScalingScalingWithLiterals, cP as ImageStyles, aI as ImageStylesPosition, g8 as ImageStylesPositionWithLiterals, e7 as IncludeMissingValuesOptions, b5 as Indentation, gx as IndentationWithLiterals, aQ as InitialExpandedItems, gg as InitialExpandedItemsWithLiterals, bg as Interval, gI as IntervalWithLiterals, dt as InvalidateCache, du as InvalidateCacheGetByOneOf, c1 as Item, dD as ItemAddedToCategory, c2 as ItemDataOneOf, eM as ItemMetadata, eT as ItemReferenceMetadata, dF as ItemRemovedFromCategory, c5 as ItemStyle, dE as ItemsAddedToCategory, dH as ItemsArrangedInCategory, dG as ItemsRemovedFromCategory, bq as Keyword, aO as Layout, dd as LayoutCellData, d8 as LayoutData, d9 as LayoutDataBackground, da as LayoutDataBackgroundImage, aW as LayoutDataBackgroundType, gm as LayoutDataBackgroundTypeWithLiterals, as as LayoutType, fU as LayoutTypeWithLiterals, ge as LayoutWithLiterals, an as LineCap, fP as LineCapWithLiterals, ao as LineStyle, fQ as LineStyleWithLiterals, bJ as Link, cE as LinkData, bK as LinkDataOneOf, cg as LinkPreviewData, ch as LinkPreviewDataStyles, e$ as ListCategoriesForItemRequest, f0 as ListCategoriesForItemsRequest, d_ as ListCompactCategoriesByIdsRequest, d$ as ListCompactCategoriesByIdsResponse, dn as ListItemNodeData, fB as ListItemsInCategoryOptionsPagingMethodOneOf, eY as ListItemsInCategoryRequest, eZ as ListItemsInCategoryRequestPagingMethodOneOf, b4 as ListStyle, gw as ListStyleWithLiterals, f2 as ListTreesRequest, d2 as ListValue, bP as LoopAnimation, bQ as LoopEffect, al as LoopEffectType, fN as LoopEffectTypeWithLiterals, ci as MapData, f1 as MapItemToCategories, cj as MapSettings, az as MapType, f$ as MapTypeWithLiterals, b_ as Media, cF as MentionData, fr as MessageEnvelope, dp as Metadata, bd as MissingValues, gF as MissingValuesWithLiterals, bi as Mode, gK as ModeWithLiterals, eJ as MoveCategoryRequest, f3 as MoveItemInCategoryRequest, bk as MoveItemInCategoryRequestPosition, gM as MoveItemInCategoryRequestPositionWithLiterals, f4 as MoveItemInCategoryResponse, ef as NestedAggregation, ed as NestedAggregationItem, ee as NestedAggregationItemKindOneOf, ek as NestedAggregationResults, el as NestedAggregationResultsResultOneOf, bf as NestedAggregationType, gH as NestedAggregationTypeWithLiterals, et as NestedResultValue, eu as NestedResultValueResultOneOf, ez as NestedResults, ep as NestedValueAggregationResult, bu as Node, bv as NodeDataOneOf, bw as NodeStyle, ac as NodeType, fE as NodeTypeWithLiterals, aT as NullValue, gj as NullValueWithLiterals, cW as Oembed, eD as OffsetSearch, eE as OffsetSearchPagingMethodOneOf, cn as Option, cv as OptionDesign, cq as OptionLayout, d4 as OrderedListData, at as Orientation, fV as OrientationWithLiterals, aX as Origin, gn as OriginWithLiterals, bY as PDFSettings, dw as Page, dA as Pages, eF as Paging, eH as PagingMetadata, e_ as PagingMetadataV2, ck as ParagraphData, bo as ParentCategory, cm as Permissions, aL as Placement, gb as PlacementWithLiterals, cU as PlaybackOptions, bD as PluginContainerData, ag as PluginContainerDataAlignment, fI as PluginContainerDataAlignmentWithLiterals, bE as PluginContainerDataWidth, bF as PluginContainerDataWidthDataOneOf, cw as Poll, cl as PollData, cx as PollDataLayout, cu as PollDesign, cs as PollDesignBackground, ct as PollDesignBackgroundBackgroundOneOf, aE as PollDesignBackgroundType, g4 as PollDesignBackgroundTypeWithLiterals, cp as PollLayout, aD as PollLayoutDirection, g3 as PollLayoutDirectionWithLiterals, aC as PollLayoutType, g2 as PollLayoutTypeWithLiterals, co as PollSettings, bj as Position, gL as PositionWithLiterals, cS as PricingData, dS as QueryCategoriesRequest, dX as QueryCategoriesResponse, ea as RangeAggregation, ej as RangeAggregationResult, e6 as RangeBucket, er as RangeResult, en as RangeResults, bL as Rel, ba as RequestedFields, gC as RequestedFieldsWithLiterals, aK as Resizing, ga as ResizingWithLiterals, a$ as ResponsivenessBehaviour, gr as ResponsivenessBehaviourWithLiterals, ff as RestoreInfo, ev as Results, cQ as RibbonStyles, bt as RichContent, eb as ScalarAggregation, es as ScalarResult, be as ScalarType, gG as ScalarTypeWithLiterals, b1 as Scaling, gt as ScalingWithLiterals, e1 as SearchCategoriesRequest, eg as SearchDetails, bp as SeoSchema, fo as SetArrangedItemsForMigrationRequest, fp as SetArrangedItemsForMigrationResponse, f5 as SetArrangedItemsRequest, bs as Settings, de as ShapeData, df as ShapeDataStyles, b8 as SingleEntityOpsRequestedFields, gA as SingleEntityOpsRequestedFieldsWithLiterals, cJ as SketchData, dl as SmartBlockCellData, dk as SmartBlockData, b6 as SmartBlockDataType, gy as SmartBlockDataTypeWithLiterals, bc as SortDirection, gE as SortDirectionWithLiterals, b9 as SortOrder, gB as SortOrderWithLiterals, bb as SortType, gD as SortTypeWithLiterals, dV as Sorting, ax as Source, fZ as SourceWithLiterals, bG as Spoiler, cH as SpoilerData, bz as Stop, bI as Styles, cd as StylesBorder, ay as StylesPosition, f_ as StylesPositionWithLiterals, c_ as TableCellData, cY as TableData, br as Tag, ai as Target, fK as TargetWithLiterals, am as TextAlignment, fO as TextAlignmentWithLiterals, cz as TextData, dr as TextNodeStyle, bS as TextStyle, c6 as Thumbnails, av as ThumbnailsAlignment, fX as ThumbnailsAlignmentWithLiterals, dj as TocData, aj as Type, fL as TypeWithLiterals, dx as URI, dB as URIs, dO as UpdateCategoryRequest, dP as UpdateCategoryResponse, eP as UpdateCategoryVisibilityRequest, e8 as ValueAggregation, e9 as ValueAggregationOptionsOneOf, ei as ValueAggregationResult, eq as ValueResult, em as ValueResults, aH as Variant, g7 as VariantWithLiterals, aS as VerticalAlignment, a_ as VerticalAlignmentAlignment, gq as VerticalAlignmentAlignmentWithLiterals, gi as VerticalAlignmentWithLiterals, c0 as Video, cT as VideoData, ar as ViewMode, fT as ViewModeWithLiterals, aA as ViewRole, g0 as ViewRoleWithLiterals, aB as VoteRole, g1 as VoteRoleWithLiterals, bl as WebhookIdentityType, gN as WebhookIdentityTypeWithLiterals, ap as Width, af as WidthType, fH as WidthTypeWithLiterals, fR as WidthWithLiterals, fD as utils } from './categories-v1-category-categories.universal-Cy-lRfCS.js';
|
|
4
4
|
|
|
5
5
|
declare function createCategory$1(httpClient: HttpClient): CreateCategorySignature;
|
|
6
6
|
interface CreateCategorySignature {
|