@wix/multilingual 1.0.19 → 1.0.20
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.
|
@@ -3806,6 +3806,421 @@ interface PagingMetadataV2 {
|
|
|
3806
3806
|
/** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
|
|
3807
3807
|
cursors?: Cursors$1;
|
|
3808
3808
|
}
|
|
3809
|
+
interface SearchContentsRequest {
|
|
3810
|
+
search?: CursorSearch;
|
|
3811
|
+
}
|
|
3812
|
+
interface CursorSearch extends CursorSearchPagingMethodOneOf {
|
|
3813
|
+
/**
|
|
3814
|
+
* Cursor pointing to page of results.
|
|
3815
|
+
* When requesting 'cursor_paging.cursor', no `filter`, `sort` or `search` can be provided.
|
|
3816
|
+
*/
|
|
3817
|
+
cursorPaging?: CursorPaging$1;
|
|
3818
|
+
/** A filter object. See documentation [here](https://bo.wix.com/wix-docs/rnd/platformization-guidelines/api-query-language#platformization-guidelines_api-query-language_defining-in-protobuf) */
|
|
3819
|
+
filter?: Record<string, any> | null;
|
|
3820
|
+
/** Sort object in the form [{"fieldName":"sortField1"},{"fieldName":"sortField2","direction":"DESC"}] */
|
|
3821
|
+
sort?: Sorting$1[];
|
|
3822
|
+
/** Aggregations | Faceted search: refers to a way to explore large amounts of data by displaying summaries about various partitions of the data and later allowing to narrow the navigation to a specific partition. */
|
|
3823
|
+
aggregations?: Aggregation[];
|
|
3824
|
+
/** Free text to match in searchable fields */
|
|
3825
|
+
search?: SearchDetails;
|
|
3826
|
+
/**
|
|
3827
|
+
* UTC offset or IANA time zone. Valid values are
|
|
3828
|
+
* ISO 8601 UTC offsets, such as +02:00 or -06:00,
|
|
3829
|
+
* and IANA time zone IDs, such as Europe/Rome
|
|
3830
|
+
*
|
|
3831
|
+
* Affects all filters and aggregations returned values.
|
|
3832
|
+
* You may override this behavior in a specific filter by providing
|
|
3833
|
+
* timestamps including time zone. e.g. `"2023-12-20T10:52:34.795Z"`
|
|
3834
|
+
*/
|
|
3835
|
+
timeZone?: string | null;
|
|
3836
|
+
}
|
|
3837
|
+
/** @oneof */
|
|
3838
|
+
interface CursorSearchPagingMethodOneOf {
|
|
3839
|
+
/**
|
|
3840
|
+
* Cursor pointing to page of results.
|
|
3841
|
+
* When requesting 'cursor_paging.cursor', no `filter`, `sort` or `search` can be provided.
|
|
3842
|
+
*/
|
|
3843
|
+
cursorPaging?: CursorPaging$1;
|
|
3844
|
+
}
|
|
3845
|
+
interface Aggregation extends AggregationKindOneOf {
|
|
3846
|
+
/** Value aggregation */
|
|
3847
|
+
value?: ValueAggregation;
|
|
3848
|
+
/** Range aggregation */
|
|
3849
|
+
range?: RangeAggregation;
|
|
3850
|
+
/** Scalar aggregation */
|
|
3851
|
+
scalar?: ScalarAggregation;
|
|
3852
|
+
/** Date histogram aggregation */
|
|
3853
|
+
dateHistogram?: DateHistogramAggregation;
|
|
3854
|
+
/** Nested aggregation */
|
|
3855
|
+
nested?: NestedAggregation;
|
|
3856
|
+
/** User-defined name of aggregation, should be unique, will appear in aggregation results */
|
|
3857
|
+
name?: string | null;
|
|
3858
|
+
/** Type of aggregation, client must provide matching aggregation field below */
|
|
3859
|
+
type?: AggregationType;
|
|
3860
|
+
/** Field to aggregate by, use dot notation to specify json path */
|
|
3861
|
+
fieldPath?: string;
|
|
3862
|
+
/**
|
|
3863
|
+
* deprecated, use `nested` instead
|
|
3864
|
+
* @deprecated deprecated, use `nested` instead
|
|
3865
|
+
* @replacedBy kind.nested
|
|
3866
|
+
* @targetRemovalDate 2024-03-30
|
|
3867
|
+
*/
|
|
3868
|
+
groupBy?: GroupByAggregation;
|
|
3869
|
+
}
|
|
3870
|
+
/** @oneof */
|
|
3871
|
+
interface AggregationKindOneOf {
|
|
3872
|
+
/** Value aggregation */
|
|
3873
|
+
value?: ValueAggregation;
|
|
3874
|
+
/** Range aggregation */
|
|
3875
|
+
range?: RangeAggregation;
|
|
3876
|
+
/** Scalar aggregation */
|
|
3877
|
+
scalar?: ScalarAggregation;
|
|
3878
|
+
/** Date histogram aggregation */
|
|
3879
|
+
dateHistogram?: DateHistogramAggregation;
|
|
3880
|
+
/** Nested aggregation */
|
|
3881
|
+
nested?: NestedAggregation;
|
|
3882
|
+
}
|
|
3883
|
+
interface RangeBucket {
|
|
3884
|
+
/** Inclusive lower bound of the range. Required if to is not given */
|
|
3885
|
+
from?: number | null;
|
|
3886
|
+
/** Exclusive upper bound of the range. Required if from is not given */
|
|
3887
|
+
to?: number | null;
|
|
3888
|
+
}
|
|
3889
|
+
declare enum SortType {
|
|
3890
|
+
/** Should sort by number of matches */
|
|
3891
|
+
COUNT = "COUNT",
|
|
3892
|
+
/** Should sort by value of the field alphabetically */
|
|
3893
|
+
VALUE = "VALUE"
|
|
3894
|
+
}
|
|
3895
|
+
declare enum SortDirection {
|
|
3896
|
+
/** Should sort in descending order */
|
|
3897
|
+
DESC = "DESC",
|
|
3898
|
+
/** Should sort in ascending order */
|
|
3899
|
+
ASC = "ASC"
|
|
3900
|
+
}
|
|
3901
|
+
declare enum MissingValues {
|
|
3902
|
+
/** Should missing values be excluded from the aggregation results */
|
|
3903
|
+
EXCLUDE = "EXCLUDE",
|
|
3904
|
+
/** Should missing values be included in the aggregation results */
|
|
3905
|
+
INCLUDE = "INCLUDE"
|
|
3906
|
+
}
|
|
3907
|
+
interface IncludeMissingValuesOptions {
|
|
3908
|
+
/** Can specify custom bucket name. Defaults are [string -> "N/A"], [int -> "0"], [bool -> "false"] ... */
|
|
3909
|
+
addToBucket?: string;
|
|
3910
|
+
}
|
|
3911
|
+
declare enum ScalarType {
|
|
3912
|
+
UNKNOWN_SCALAR_TYPE = "UNKNOWN_SCALAR_TYPE",
|
|
3913
|
+
/** Count of distinct values */
|
|
3914
|
+
COUNT_DISTINCT = "COUNT_DISTINCT",
|
|
3915
|
+
/** Minimum value */
|
|
3916
|
+
MIN = "MIN",
|
|
3917
|
+
/** Maximum value */
|
|
3918
|
+
MAX = "MAX",
|
|
3919
|
+
/** Sum of values */
|
|
3920
|
+
SUM = "SUM",
|
|
3921
|
+
/** Average of values */
|
|
3922
|
+
AVG = "AVG"
|
|
3923
|
+
}
|
|
3924
|
+
interface ValueAggregation extends ValueAggregationOptionsOneOf {
|
|
3925
|
+
/** Options for including missing values */
|
|
3926
|
+
includeOptions?: IncludeMissingValuesOptions;
|
|
3927
|
+
/** Should sort by number of matches or value of the field */
|
|
3928
|
+
sortType?: SortType;
|
|
3929
|
+
/** Should sort in ascending or descending order */
|
|
3930
|
+
sortDirection?: SortDirection;
|
|
3931
|
+
/** How many aggregations would you like to return? Can be between 1 and 250. 10 is the default. */
|
|
3932
|
+
limit?: number | null;
|
|
3933
|
+
/** Should missing values be included or excluded from the aggregation results. Default is EXCLUDE */
|
|
3934
|
+
missingValues?: MissingValues;
|
|
3935
|
+
}
|
|
3936
|
+
/** @oneof */
|
|
3937
|
+
interface ValueAggregationOptionsOneOf {
|
|
3938
|
+
/** Options for including missing values */
|
|
3939
|
+
includeOptions?: IncludeMissingValuesOptions;
|
|
3940
|
+
}
|
|
3941
|
+
declare enum NestedAggregationType {
|
|
3942
|
+
UNKNOWN_AGGREGATION_TYPE = "UNKNOWN_AGGREGATION_TYPE",
|
|
3943
|
+
/** An aggregation where result buckets are dynamically built - one per unique value */
|
|
3944
|
+
VALUE = "VALUE",
|
|
3945
|
+
/** An aggregation, where user can define set of ranges - each representing a bucket */
|
|
3946
|
+
RANGE = "RANGE",
|
|
3947
|
+
/** A single-value metric aggregation - e.g. min, max, sum, avg */
|
|
3948
|
+
SCALAR = "SCALAR",
|
|
3949
|
+
/** An aggregation, where result buckets are dynamically built - one per time interval (hour, day, week, etc.) */
|
|
3950
|
+
DATE_HISTOGRAM = "DATE_HISTOGRAM"
|
|
3951
|
+
}
|
|
3952
|
+
interface RangeAggregation {
|
|
3953
|
+
/** List of range buckets, where during aggregation each entity will be placed in the first bucket where its value falls into based on provided range bounds */
|
|
3954
|
+
buckets?: RangeBucket[];
|
|
3955
|
+
}
|
|
3956
|
+
interface ScalarAggregation {
|
|
3957
|
+
/** Define the operator for the scalar aggregation */
|
|
3958
|
+
type?: ScalarType;
|
|
3959
|
+
}
|
|
3960
|
+
interface DateHistogramAggregation {
|
|
3961
|
+
/** Interval for date histogram aggregation */
|
|
3962
|
+
interval?: Interval;
|
|
3963
|
+
}
|
|
3964
|
+
declare enum Interval {
|
|
3965
|
+
UNKNOWN_INTERVAL = "UNKNOWN_INTERVAL",
|
|
3966
|
+
/** Yearly interval */
|
|
3967
|
+
YEAR = "YEAR",
|
|
3968
|
+
/** Monthly interval */
|
|
3969
|
+
MONTH = "MONTH",
|
|
3970
|
+
/** Weekly interval */
|
|
3971
|
+
WEEK = "WEEK",
|
|
3972
|
+
/** Daily interval */
|
|
3973
|
+
DAY = "DAY",
|
|
3974
|
+
/** Hourly interval */
|
|
3975
|
+
HOUR = "HOUR",
|
|
3976
|
+
/** Minute interval */
|
|
3977
|
+
MINUTE = "MINUTE",
|
|
3978
|
+
/** Second interval */
|
|
3979
|
+
SECOND = "SECOND"
|
|
3980
|
+
}
|
|
3981
|
+
interface NestedAggregationItem extends NestedAggregationItemKindOneOf {
|
|
3982
|
+
/** Value aggregation */
|
|
3983
|
+
value?: ValueAggregation;
|
|
3984
|
+
/** Range aggregation */
|
|
3985
|
+
range?: RangeAggregation;
|
|
3986
|
+
/** Scalar aggregation */
|
|
3987
|
+
scalar?: ScalarAggregation;
|
|
3988
|
+
/** Date histogram aggregation */
|
|
3989
|
+
dateHistogram?: DateHistogramAggregation;
|
|
3990
|
+
/** User-defined name of aggregation, should be unique, will appear in aggregation results */
|
|
3991
|
+
name?: string | null;
|
|
3992
|
+
/** Type of aggregation, client must provide matching aggregation field below */
|
|
3993
|
+
type?: NestedAggregationType;
|
|
3994
|
+
/** Field to aggregate by, use dont notation to specify json path */
|
|
3995
|
+
fieldPath?: string;
|
|
3996
|
+
}
|
|
3997
|
+
/** @oneof */
|
|
3998
|
+
interface NestedAggregationItemKindOneOf {
|
|
3999
|
+
/** Value aggregation */
|
|
4000
|
+
value?: ValueAggregation;
|
|
4001
|
+
/** Range aggregation */
|
|
4002
|
+
range?: RangeAggregation;
|
|
4003
|
+
/** Scalar aggregation */
|
|
4004
|
+
scalar?: ScalarAggregation;
|
|
4005
|
+
/** Date histogram aggregation */
|
|
4006
|
+
dateHistogram?: DateHistogramAggregation;
|
|
4007
|
+
}
|
|
4008
|
+
declare enum AggregationType {
|
|
4009
|
+
UNKNOWN_AGGREGATION_TYPE = "UNKNOWN_AGGREGATION_TYPE",
|
|
4010
|
+
/** An aggregation where result buckets are dynamically built - one per unique value */
|
|
4011
|
+
VALUE = "VALUE",
|
|
4012
|
+
/** An aggregation, where user can define set of ranges - each representing a bucket */
|
|
4013
|
+
RANGE = "RANGE",
|
|
4014
|
+
/** A single-value metric aggregation - e.g. min, max, sum, avg */
|
|
4015
|
+
SCALAR = "SCALAR",
|
|
4016
|
+
/** An aggregation, where result buckets are dynamically built - one per time interval (hour, day, week, etc.) */
|
|
4017
|
+
DATE_HISTOGRAM = "DATE_HISTOGRAM",
|
|
4018
|
+
/** Multi-level aggregation, where each next aggregation is nested within previous one */
|
|
4019
|
+
NESTED = "NESTED"
|
|
4020
|
+
}
|
|
4021
|
+
/** Nested aggregation expressed through a list of aggregation where each next aggregation is nested within previous one */
|
|
4022
|
+
interface NestedAggregation {
|
|
4023
|
+
/** Flattened list of aggregations, where each next aggregation is nested within previous one */
|
|
4024
|
+
nestedAggregations?: NestedAggregationItem[];
|
|
4025
|
+
}
|
|
4026
|
+
interface GroupByAggregation extends GroupByAggregationKindOneOf {
|
|
4027
|
+
/** Value aggregation configuration */
|
|
4028
|
+
value?: ValueAggregation;
|
|
4029
|
+
/** User-defined name of aggregation, should be unique, will appear in aggregation results */
|
|
4030
|
+
name?: string | null;
|
|
4031
|
+
/** Field to aggregate by */
|
|
4032
|
+
fieldPath?: string;
|
|
4033
|
+
}
|
|
4034
|
+
/** @oneof */
|
|
4035
|
+
interface GroupByAggregationKindOneOf {
|
|
4036
|
+
/** Value aggregation configuration */
|
|
4037
|
+
value?: ValueAggregation;
|
|
4038
|
+
}
|
|
4039
|
+
interface SearchDetails {
|
|
4040
|
+
/** Defines how separate search terms in `expression` are combined */
|
|
4041
|
+
mode?: Mode;
|
|
4042
|
+
/** Search term or expression */
|
|
4043
|
+
expression?: string | null;
|
|
4044
|
+
/** Fields to search in. If empty - will search in all searchable fields. Use dot notation to specify json path */
|
|
4045
|
+
fields?: string[];
|
|
4046
|
+
/** Flag if should use auto fuzzy search (allowing typos by a managed proximity algorithm) */
|
|
4047
|
+
fuzzy?: boolean;
|
|
4048
|
+
}
|
|
4049
|
+
declare enum Mode {
|
|
4050
|
+
/** Any of the search terms must be present */
|
|
4051
|
+
OR = "OR",
|
|
4052
|
+
/** All search terms must be present */
|
|
4053
|
+
AND = "AND"
|
|
4054
|
+
}
|
|
4055
|
+
interface SearchContentsResponse {
|
|
4056
|
+
/** List of Contents. */
|
|
4057
|
+
contents?: Content[];
|
|
4058
|
+
/** Paging metadata */
|
|
4059
|
+
pagingMetadata?: CursorPagingMetadata$1;
|
|
4060
|
+
/** Aggregation data */
|
|
4061
|
+
aggregationData?: AggregationData;
|
|
4062
|
+
}
|
|
4063
|
+
interface AggregationData {
|
|
4064
|
+
/** key = aggregation name (as derived from search request) */
|
|
4065
|
+
results?: AggregationResults[];
|
|
4066
|
+
}
|
|
4067
|
+
interface ValueAggregationResult {
|
|
4068
|
+
/** Value of the field */
|
|
4069
|
+
value?: string;
|
|
4070
|
+
/** Count of entities with this value */
|
|
4071
|
+
count?: number;
|
|
4072
|
+
}
|
|
4073
|
+
interface RangeAggregationResult {
|
|
4074
|
+
/** Inclusive lower bound of the range */
|
|
4075
|
+
from?: number | null;
|
|
4076
|
+
/** Exclusive upper bound of the range */
|
|
4077
|
+
to?: number | null;
|
|
4078
|
+
/** Count of entities in this range */
|
|
4079
|
+
count?: number;
|
|
4080
|
+
}
|
|
4081
|
+
interface NestedAggregationResults extends NestedAggregationResultsResultOneOf {
|
|
4082
|
+
/** Value aggregation results */
|
|
4083
|
+
values?: ValueResults;
|
|
4084
|
+
/** Range aggregation results */
|
|
4085
|
+
ranges?: RangeResults;
|
|
4086
|
+
/** Scalar aggregation results */
|
|
4087
|
+
scalar?: AggregationResultsScalarResult;
|
|
4088
|
+
/** User-defined name of aggregation, matches the one provided in request */
|
|
4089
|
+
name?: string;
|
|
4090
|
+
/** Type of aggregation that matches result */
|
|
4091
|
+
type?: AggregationType;
|
|
4092
|
+
/** Field to aggregate by, matches the one provided in request */
|
|
4093
|
+
fieldPath?: string;
|
|
4094
|
+
}
|
|
4095
|
+
/** @oneof */
|
|
4096
|
+
interface NestedAggregationResultsResultOneOf {
|
|
4097
|
+
/** Value aggregation results */
|
|
4098
|
+
values?: ValueResults;
|
|
4099
|
+
/** Range aggregation results */
|
|
4100
|
+
ranges?: RangeResults;
|
|
4101
|
+
/** Scalar aggregation results */
|
|
4102
|
+
scalar?: AggregationResultsScalarResult;
|
|
4103
|
+
}
|
|
4104
|
+
interface ValueResults {
|
|
4105
|
+
/** List of value aggregations */
|
|
4106
|
+
results?: ValueAggregationResult[];
|
|
4107
|
+
}
|
|
4108
|
+
interface RangeResults {
|
|
4109
|
+
/** List of ranges returned in same order as requested */
|
|
4110
|
+
results?: RangeAggregationResult[];
|
|
4111
|
+
}
|
|
4112
|
+
interface AggregationResultsScalarResult {
|
|
4113
|
+
/** Type of scalar aggregation */
|
|
4114
|
+
type?: ScalarType;
|
|
4115
|
+
/** Value of the scalar aggregation */
|
|
4116
|
+
value?: number;
|
|
4117
|
+
}
|
|
4118
|
+
interface NestedValueAggregationResult {
|
|
4119
|
+
/** Value of the field */
|
|
4120
|
+
value?: string;
|
|
4121
|
+
/** Nested aggregations */
|
|
4122
|
+
nestedResults?: NestedAggregationResults;
|
|
4123
|
+
}
|
|
4124
|
+
interface ValueResult {
|
|
4125
|
+
/** Value of the field */
|
|
4126
|
+
value?: string;
|
|
4127
|
+
/** Count of entities with this value */
|
|
4128
|
+
count?: number | null;
|
|
4129
|
+
}
|
|
4130
|
+
interface RangeResult {
|
|
4131
|
+
/** Inclusive lower bound of the range */
|
|
4132
|
+
from?: number | null;
|
|
4133
|
+
/** Exclusive upper bound of the range */
|
|
4134
|
+
to?: number | null;
|
|
4135
|
+
/** Count of entities in this range */
|
|
4136
|
+
count?: number | null;
|
|
4137
|
+
}
|
|
4138
|
+
interface ScalarResult {
|
|
4139
|
+
/** Value of the scalar aggregation */
|
|
4140
|
+
value?: number;
|
|
4141
|
+
}
|
|
4142
|
+
interface NestedResultValue extends NestedResultValueResultOneOf {
|
|
4143
|
+
/** Value aggregation result */
|
|
4144
|
+
value?: ValueResult;
|
|
4145
|
+
/** Range aggregation result */
|
|
4146
|
+
range?: RangeResult;
|
|
4147
|
+
/** Scalar aggregation result */
|
|
4148
|
+
scalar?: ScalarResult;
|
|
4149
|
+
/** Date histogram aggregation result */
|
|
4150
|
+
dateHistogram?: ValueResult;
|
|
4151
|
+
}
|
|
4152
|
+
/** @oneof */
|
|
4153
|
+
interface NestedResultValueResultOneOf {
|
|
4154
|
+
/** Value aggregation result */
|
|
4155
|
+
value?: ValueResult;
|
|
4156
|
+
/** Range aggregation result */
|
|
4157
|
+
range?: RangeResult;
|
|
4158
|
+
/** Scalar aggregation result */
|
|
4159
|
+
scalar?: ScalarResult;
|
|
4160
|
+
/** Date histogram aggregation result */
|
|
4161
|
+
dateHistogram?: ValueResult;
|
|
4162
|
+
}
|
|
4163
|
+
interface Results {
|
|
4164
|
+
/** List of nested aggregations */
|
|
4165
|
+
results?: Record<string, NestedResultValue>;
|
|
4166
|
+
}
|
|
4167
|
+
interface DateHistogramResult {
|
|
4168
|
+
/** Date in ISO 8601 format */
|
|
4169
|
+
value?: string;
|
|
4170
|
+
/** Count of documents in the bucket */
|
|
4171
|
+
count?: number;
|
|
4172
|
+
}
|
|
4173
|
+
interface GroupByValueResults {
|
|
4174
|
+
/** List of value aggregations */
|
|
4175
|
+
results?: NestedValueAggregationResult[];
|
|
4176
|
+
}
|
|
4177
|
+
interface DateHistogramResults {
|
|
4178
|
+
/** List of date histogram aggregations */
|
|
4179
|
+
results?: DateHistogramResult[];
|
|
4180
|
+
}
|
|
4181
|
+
/**
|
|
4182
|
+
* Results of `NESTED` aggregation type in a flattened form
|
|
4183
|
+
* aggregations in resulting array are keyed by requested aggregation `name`.
|
|
4184
|
+
*/
|
|
4185
|
+
interface NestedResults {
|
|
4186
|
+
/** List of nested aggregations */
|
|
4187
|
+
results?: Results[];
|
|
4188
|
+
}
|
|
4189
|
+
interface AggregationResults extends AggregationResultsResultOneOf {
|
|
4190
|
+
/** Value aggregation results */
|
|
4191
|
+
values?: ValueResults;
|
|
4192
|
+
/** Range aggregation results */
|
|
4193
|
+
ranges?: RangeResults;
|
|
4194
|
+
/** Scalar aggregation results */
|
|
4195
|
+
scalar?: AggregationResultsScalarResult;
|
|
4196
|
+
/** Group by value aggregation results */
|
|
4197
|
+
groupedByValue?: GroupByValueResults;
|
|
4198
|
+
/** Date histogram aggregation results */
|
|
4199
|
+
dateHistogram?: DateHistogramResults;
|
|
4200
|
+
/** Nested aggregation results */
|
|
4201
|
+
nested?: NestedResults;
|
|
4202
|
+
/** User-defined name of aggregation as derived from search request */
|
|
4203
|
+
name?: string;
|
|
4204
|
+
/** Type of aggregation that must match provided kind as derived from search request */
|
|
4205
|
+
type?: AggregationType;
|
|
4206
|
+
/** Field to aggregate by as derived from search request */
|
|
4207
|
+
fieldPath?: string;
|
|
4208
|
+
}
|
|
4209
|
+
/** @oneof */
|
|
4210
|
+
interface AggregationResultsResultOneOf {
|
|
4211
|
+
/** Value aggregation results */
|
|
4212
|
+
values?: ValueResults;
|
|
4213
|
+
/** Range aggregation results */
|
|
4214
|
+
ranges?: RangeResults;
|
|
4215
|
+
/** Scalar aggregation results */
|
|
4216
|
+
scalar?: AggregationResultsScalarResult;
|
|
4217
|
+
/** Group by value aggregation results */
|
|
4218
|
+
groupedByValue?: GroupByValueResults;
|
|
4219
|
+
/** Date histogram aggregation results */
|
|
4220
|
+
dateHistogram?: DateHistogramResults;
|
|
4221
|
+
/** Nested aggregation results */
|
|
4222
|
+
nested?: NestedResults;
|
|
4223
|
+
}
|
|
3809
4224
|
interface BulkCreateContentRequest {
|
|
3810
4225
|
/** List of Contents to be created TODO: think again if we want to increase maxSize */
|
|
3811
4226
|
contents: Content[];
|
|
@@ -4065,7 +4480,9 @@ declare enum Namespace$1 {
|
|
|
4065
4480
|
* There's a blank site behind the scene but it's blank).
|
|
4066
4481
|
* The Mobile company will be the owner of this namespace.
|
|
4067
4482
|
*/
|
|
4068
|
-
BRANDED_FIRST = "BRANDED_FIRST"
|
|
4483
|
+
BRANDED_FIRST = "BRANDED_FIRST",
|
|
4484
|
+
/** Nownia.com Siteless account management for Ai Scheduling Assistant. */
|
|
4485
|
+
NOWNIA = "NOWNIA"
|
|
4069
4486
|
}
|
|
4070
4487
|
/** Site transferred to another user. */
|
|
4071
4488
|
interface SiteTransferred$1 {
|
|
@@ -4299,6 +4716,62 @@ interface UpdateContentResponseNonNullableFields {
|
|
|
4299
4716
|
interface QueryContentsResponseNonNullableFields {
|
|
4300
4717
|
contents: ContentNonNullableFields[];
|
|
4301
4718
|
}
|
|
4719
|
+
interface ValueAggregationResultNonNullableFields {
|
|
4720
|
+
value: string;
|
|
4721
|
+
count: number;
|
|
4722
|
+
}
|
|
4723
|
+
interface ValueResultsNonNullableFields {
|
|
4724
|
+
results: ValueAggregationResultNonNullableFields[];
|
|
4725
|
+
}
|
|
4726
|
+
interface RangeAggregationResultNonNullableFields {
|
|
4727
|
+
count: number;
|
|
4728
|
+
}
|
|
4729
|
+
interface RangeResultsNonNullableFields {
|
|
4730
|
+
results: RangeAggregationResultNonNullableFields[];
|
|
4731
|
+
}
|
|
4732
|
+
interface AggregationResultsScalarResultNonNullableFields {
|
|
4733
|
+
type: ScalarType;
|
|
4734
|
+
value: number;
|
|
4735
|
+
}
|
|
4736
|
+
interface NestedAggregationResultsNonNullableFields {
|
|
4737
|
+
values?: ValueResultsNonNullableFields;
|
|
4738
|
+
ranges?: RangeResultsNonNullableFields;
|
|
4739
|
+
scalar?: AggregationResultsScalarResultNonNullableFields;
|
|
4740
|
+
name: string;
|
|
4741
|
+
type: AggregationType;
|
|
4742
|
+
fieldPath: string;
|
|
4743
|
+
}
|
|
4744
|
+
interface NestedValueAggregationResultNonNullableFields {
|
|
4745
|
+
value: string;
|
|
4746
|
+
nestedResults?: NestedAggregationResultsNonNullableFields;
|
|
4747
|
+
}
|
|
4748
|
+
interface GroupByValueResultsNonNullableFields {
|
|
4749
|
+
results: NestedValueAggregationResultNonNullableFields[];
|
|
4750
|
+
}
|
|
4751
|
+
interface DateHistogramResultNonNullableFields {
|
|
4752
|
+
value: string;
|
|
4753
|
+
count: number;
|
|
4754
|
+
}
|
|
4755
|
+
interface DateHistogramResultsNonNullableFields {
|
|
4756
|
+
results: DateHistogramResultNonNullableFields[];
|
|
4757
|
+
}
|
|
4758
|
+
interface AggregationResultsNonNullableFields {
|
|
4759
|
+
values?: ValueResultsNonNullableFields;
|
|
4760
|
+
ranges?: RangeResultsNonNullableFields;
|
|
4761
|
+
scalar?: AggregationResultsScalarResultNonNullableFields;
|
|
4762
|
+
groupedByValue?: GroupByValueResultsNonNullableFields;
|
|
4763
|
+
dateHistogram?: DateHistogramResultsNonNullableFields;
|
|
4764
|
+
name: string;
|
|
4765
|
+
type: AggregationType;
|
|
4766
|
+
fieldPath: string;
|
|
4767
|
+
}
|
|
4768
|
+
interface AggregationDataNonNullableFields {
|
|
4769
|
+
results: AggregationResultsNonNullableFields[];
|
|
4770
|
+
}
|
|
4771
|
+
interface SearchContentsResponseNonNullableFields {
|
|
4772
|
+
contents: ContentNonNullableFields[];
|
|
4773
|
+
aggregationData?: AggregationDataNonNullableFields;
|
|
4774
|
+
}
|
|
4302
4775
|
interface ApplicationErrorNonNullableFields {
|
|
4303
4776
|
code: string;
|
|
4304
4777
|
description: string;
|
|
@@ -4398,6 +4871,9 @@ interface QueryContentsOptions {
|
|
|
4398
4871
|
/** WQL expression. */
|
|
4399
4872
|
query?: CursorQuery$1;
|
|
4400
4873
|
}
|
|
4874
|
+
interface SearchContentsOptions {
|
|
4875
|
+
search?: CursorSearch;
|
|
4876
|
+
}
|
|
4401
4877
|
interface BulkCreateContentOptions {
|
|
4402
4878
|
/** set to `true` if you wish to receive back the created contents in the response */
|
|
4403
4879
|
returnEntity?: boolean;
|
|
@@ -4416,6 +4892,7 @@ declare const getContent: ReturnType<typeof createRESTModule$1<typeof publicGetC
|
|
|
4416
4892
|
declare const updateContent: ReturnType<typeof createRESTModule$1<typeof publicUpdateContent>>;
|
|
4417
4893
|
declare const deleteContent: ReturnType<typeof createRESTModule$1<typeof publicDeleteContent>>;
|
|
4418
4894
|
declare const queryContents: ReturnType<typeof createRESTModule$1<typeof publicQueryContents>>;
|
|
4895
|
+
declare const searchContents: ReturnType<typeof createRESTModule$1<typeof publicSearchContents>>;
|
|
4419
4896
|
declare const bulkCreateContent: ReturnType<typeof createRESTModule$1<typeof publicBulkCreateContent>>;
|
|
4420
4897
|
declare const bulkUpdateContent: ReturnType<typeof createRESTModule$1<typeof publicBulkUpdateContent>>;
|
|
4421
4898
|
declare const bulkDeleteContent: ReturnType<typeof createRESTModule$1<typeof publicBulkDeleteContent>>;
|
|
@@ -4423,6 +4900,14 @@ declare const onContentCreated: ReturnType<typeof createEventModule$1<typeof pub
|
|
|
4423
4900
|
declare const onContentUpdated: ReturnType<typeof createEventModule$1<typeof publicOnContentUpdated>>;
|
|
4424
4901
|
declare const onContentDeleted: ReturnType<typeof createEventModule$1<typeof publicOnContentDeleted>>;
|
|
4425
4902
|
|
|
4903
|
+
type index_d$1_Aggregation = Aggregation;
|
|
4904
|
+
type index_d$1_AggregationData = AggregationData;
|
|
4905
|
+
type index_d$1_AggregationKindOneOf = AggregationKindOneOf;
|
|
4906
|
+
type index_d$1_AggregationResults = AggregationResults;
|
|
4907
|
+
type index_d$1_AggregationResultsResultOneOf = AggregationResultsResultOneOf;
|
|
4908
|
+
type index_d$1_AggregationResultsScalarResult = AggregationResultsScalarResult;
|
|
4909
|
+
type index_d$1_AggregationType = AggregationType;
|
|
4910
|
+
declare const index_d$1_AggregationType: typeof AggregationType;
|
|
4426
4911
|
type index_d$1_Alignment = Alignment;
|
|
4427
4912
|
declare const index_d$1_Alignment: typeof Alignment;
|
|
4428
4913
|
type index_d$1_AnchorData = AnchorData;
|
|
@@ -4474,6 +4959,11 @@ type index_d$1_CreateContentResponse = CreateContentResponse;
|
|
|
4474
4959
|
type index_d$1_CreateContentResponseNonNullableFields = CreateContentResponseNonNullableFields;
|
|
4475
4960
|
type index_d$1_Crop = Crop;
|
|
4476
4961
|
declare const index_d$1_Crop: typeof Crop;
|
|
4962
|
+
type index_d$1_CursorSearch = CursorSearch;
|
|
4963
|
+
type index_d$1_CursorSearchPagingMethodOneOf = CursorSearchPagingMethodOneOf;
|
|
4964
|
+
type index_d$1_DateHistogramAggregation = DateHistogramAggregation;
|
|
4965
|
+
type index_d$1_DateHistogramResult = DateHistogramResult;
|
|
4966
|
+
type index_d$1_DateHistogramResults = DateHistogramResults;
|
|
4477
4967
|
type index_d$1_Decoration = Decoration;
|
|
4478
4968
|
type index_d$1_DecorationDataOneOf = DecorationDataOneOf;
|
|
4479
4969
|
type index_d$1_DecorationType = DecorationType;
|
|
@@ -4502,14 +4992,20 @@ type index_d$1_GetContentRequest = GetContentRequest;
|
|
|
4502
4992
|
type index_d$1_GetContentResponse = GetContentResponse;
|
|
4503
4993
|
type index_d$1_GetContentResponseNonNullableFields = GetContentResponseNonNullableFields;
|
|
4504
4994
|
type index_d$1_Gradient = Gradient;
|
|
4995
|
+
type index_d$1_GroupByAggregation = GroupByAggregation;
|
|
4996
|
+
type index_d$1_GroupByAggregationKindOneOf = GroupByAggregationKindOneOf;
|
|
4997
|
+
type index_d$1_GroupByValueResults = GroupByValueResults;
|
|
4505
4998
|
type index_d$1_HTMLData = HTMLData;
|
|
4506
4999
|
type index_d$1_HTMLDataDataOneOf = HTMLDataDataOneOf;
|
|
4507
5000
|
type index_d$1_HeadingData = HeadingData;
|
|
4508
5001
|
type index_d$1_Height = Height;
|
|
4509
5002
|
type index_d$1_Image = Image;
|
|
4510
5003
|
type index_d$1_ImageData = ImageData;
|
|
5004
|
+
type index_d$1_IncludeMissingValuesOptions = IncludeMissingValuesOptions;
|
|
4511
5005
|
type index_d$1_InitialExpandedItems = InitialExpandedItems;
|
|
4512
5006
|
declare const index_d$1_InitialExpandedItems: typeof InitialExpandedItems;
|
|
5007
|
+
type index_d$1_Interval = Interval;
|
|
5008
|
+
declare const index_d$1_Interval: typeof Interval;
|
|
4513
5009
|
type index_d$1_Item = Item;
|
|
4514
5010
|
type index_d$1_ItemDataOneOf = ItemDataOneOf;
|
|
4515
5011
|
type index_d$1_ItemMetadata = ItemMetadata;
|
|
@@ -4532,6 +5028,21 @@ type index_d$1_MaskedContent = MaskedContent;
|
|
|
4532
5028
|
type index_d$1_Media = Media;
|
|
4533
5029
|
type index_d$1_MentionData = MentionData;
|
|
4534
5030
|
type index_d$1_Metadata = Metadata;
|
|
5031
|
+
type index_d$1_MissingValues = MissingValues;
|
|
5032
|
+
declare const index_d$1_MissingValues: typeof MissingValues;
|
|
5033
|
+
type index_d$1_Mode = Mode;
|
|
5034
|
+
declare const index_d$1_Mode: typeof Mode;
|
|
5035
|
+
type index_d$1_NestedAggregation = NestedAggregation;
|
|
5036
|
+
type index_d$1_NestedAggregationItem = NestedAggregationItem;
|
|
5037
|
+
type index_d$1_NestedAggregationItemKindOneOf = NestedAggregationItemKindOneOf;
|
|
5038
|
+
type index_d$1_NestedAggregationResults = NestedAggregationResults;
|
|
5039
|
+
type index_d$1_NestedAggregationResultsResultOneOf = NestedAggregationResultsResultOneOf;
|
|
5040
|
+
type index_d$1_NestedAggregationType = NestedAggregationType;
|
|
5041
|
+
declare const index_d$1_NestedAggregationType: typeof NestedAggregationType;
|
|
5042
|
+
type index_d$1_NestedResultValue = NestedResultValue;
|
|
5043
|
+
type index_d$1_NestedResultValueResultOneOf = NestedResultValueResultOneOf;
|
|
5044
|
+
type index_d$1_NestedResults = NestedResults;
|
|
5045
|
+
type index_d$1_NestedValueAggregationResult = NestedValueAggregationResult;
|
|
4535
5046
|
type index_d$1_Node = Node;
|
|
4536
5047
|
type index_d$1_NodeDataOneOf = NodeDataOneOf;
|
|
4537
5048
|
type index_d$1_NodeStyle = NodeStyle;
|
|
@@ -4576,13 +5087,32 @@ type index_d$1_QueryContentsResponse = QueryContentsResponse;
|
|
|
4576
5087
|
type index_d$1_QueryContentsResponseNonNullableFields = QueryContentsResponseNonNullableFields;
|
|
4577
5088
|
type index_d$1_QueryV2 = QueryV2;
|
|
4578
5089
|
type index_d$1_QueryV2PagingMethodOneOf = QueryV2PagingMethodOneOf;
|
|
5090
|
+
type index_d$1_RangeAggregation = RangeAggregation;
|
|
5091
|
+
type index_d$1_RangeAggregationResult = RangeAggregationResult;
|
|
5092
|
+
type index_d$1_RangeBucket = RangeBucket;
|
|
5093
|
+
type index_d$1_RangeResult = RangeResult;
|
|
5094
|
+
type index_d$1_RangeResults = RangeResults;
|
|
4579
5095
|
type index_d$1_Rel = Rel;
|
|
4580
5096
|
type index_d$1_RemoveContentsByFilterRequest = RemoveContentsByFilterRequest;
|
|
4581
5097
|
type index_d$1_RemoveContentsByFilterResponse = RemoveContentsByFilterResponse;
|
|
4582
5098
|
type index_d$1_RepublishContentByFilterRequest = RepublishContentByFilterRequest;
|
|
4583
5099
|
type index_d$1_RepublishContentByFilterResponse = RepublishContentByFilterResponse;
|
|
5100
|
+
type index_d$1_Results = Results;
|
|
4584
5101
|
type index_d$1_RichContent = RichContent;
|
|
5102
|
+
type index_d$1_ScalarAggregation = ScalarAggregation;
|
|
5103
|
+
type index_d$1_ScalarResult = ScalarResult;
|
|
5104
|
+
type index_d$1_ScalarType = ScalarType;
|
|
5105
|
+
declare const index_d$1_ScalarType: typeof ScalarType;
|
|
5106
|
+
type index_d$1_SearchContentsOptions = SearchContentsOptions;
|
|
5107
|
+
type index_d$1_SearchContentsRequest = SearchContentsRequest;
|
|
5108
|
+
type index_d$1_SearchContentsResponse = SearchContentsResponse;
|
|
5109
|
+
type index_d$1_SearchContentsResponseNonNullableFields = SearchContentsResponseNonNullableFields;
|
|
5110
|
+
type index_d$1_SearchDetails = SearchDetails;
|
|
4585
5111
|
type index_d$1_Settings = Settings;
|
|
5112
|
+
type index_d$1_SortDirection = SortDirection;
|
|
5113
|
+
declare const index_d$1_SortDirection: typeof SortDirection;
|
|
5114
|
+
type index_d$1_SortType = SortType;
|
|
5115
|
+
declare const index_d$1_SortType: typeof SortType;
|
|
4586
5116
|
type index_d$1_Source = Source;
|
|
4587
5117
|
declare const index_d$1_Source: typeof Source;
|
|
4588
5118
|
type index_d$1_Spoiler = Spoiler;
|
|
@@ -4607,6 +5137,11 @@ type index_d$1_UpdateContentResponse = UpdateContentResponse;
|
|
|
4607
5137
|
type index_d$1_UpdateContentResponseNonNullableFields = UpdateContentResponseNonNullableFields;
|
|
4608
5138
|
type index_d$1_UpdaterIdentity = UpdaterIdentity;
|
|
4609
5139
|
declare const index_d$1_UpdaterIdentity: typeof UpdaterIdentity;
|
|
5140
|
+
type index_d$1_ValueAggregation = ValueAggregation;
|
|
5141
|
+
type index_d$1_ValueAggregationOptionsOneOf = ValueAggregationOptionsOneOf;
|
|
5142
|
+
type index_d$1_ValueAggregationResult = ValueAggregationResult;
|
|
5143
|
+
type index_d$1_ValueResult = ValueResult;
|
|
5144
|
+
type index_d$1_ValueResults = ValueResults;
|
|
4610
5145
|
type index_d$1_VerticalAlignment = VerticalAlignment;
|
|
4611
5146
|
declare const index_d$1_VerticalAlignment: typeof VerticalAlignment;
|
|
4612
5147
|
type index_d$1_Video = Video;
|
|
@@ -4632,9 +5167,10 @@ declare const index_d$1_onContentCreated: typeof onContentCreated;
|
|
|
4632
5167
|
declare const index_d$1_onContentDeleted: typeof onContentDeleted;
|
|
4633
5168
|
declare const index_d$1_onContentUpdated: typeof onContentUpdated;
|
|
4634
5169
|
declare const index_d$1_queryContents: typeof queryContents;
|
|
5170
|
+
declare const index_d$1_searchContents: typeof searchContents;
|
|
4635
5171
|
declare const index_d$1_updateContent: typeof updateContent;
|
|
4636
5172
|
declare namespace index_d$1 {
|
|
4637
|
-
export { type ActionEvent$1 as ActionEvent, index_d$1_Alignment as Alignment, type index_d$1_AnchorData as AnchorData, type index_d$1_AppEmbedData as AppEmbedData, type index_d$1_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d$1_AppType as AppType, type index_d$1_ApplicationError as ApplicationError, type Asset$1 as Asset, type index_d$1_AudioData as AudioData, type index_d$1_Background as Background, type index_d$1_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d$1_BackgroundType as BackgroundType, type BaseEventMetadata$1 as BaseEventMetadata, type index_d$1_BlockquoteData as BlockquoteData, type index_d$1_BookingData as BookingData, type index_d$1_Border as Border, type index_d$1_BorderColors as BorderColors, type index_d$1_BulkActionMetadata as BulkActionMetadata, type index_d$1_BulkContentResult as BulkContentResult, type index_d$1_BulkCreateContentOptions as BulkCreateContentOptions, type index_d$1_BulkCreateContentRequest as BulkCreateContentRequest, type index_d$1_BulkCreateContentResponse as BulkCreateContentResponse, type index_d$1_BulkCreateContentResponseNonNullableFields as BulkCreateContentResponseNonNullableFields, type index_d$1_BulkDeleteContentRequest as BulkDeleteContentRequest, type index_d$1_BulkDeleteContentResponse as BulkDeleteContentResponse, type index_d$1_BulkDeleteContentResponseBulkContentResult as BulkDeleteContentResponseBulkContentResult, type index_d$1_BulkDeleteContentResponseNonNullableFields as BulkDeleteContentResponseNonNullableFields, type index_d$1_BulkUpdateContentOptions as BulkUpdateContentOptions, type index_d$1_BulkUpdateContentRequest as BulkUpdateContentRequest, type index_d$1_BulkUpdateContentResponse as BulkUpdateContentResponse, type index_d$1_BulkUpdateContentResponseBulkContentResult as BulkUpdateContentResponseBulkContentResult, type index_d$1_BulkUpdateContentResponseNonNullableFields as BulkUpdateContentResponseNonNullableFields, type index_d$1_BulletedListData as BulletedListData, type index_d$1_ButtonData as ButtonData, type index_d$1_CellStyle as CellStyle, type index_d$1_CodeBlockData as CodeBlockData, type index_d$1_CollapsibleListData as CollapsibleListData, type index_d$1_ColorData as ColorData, type index_d$1_Colors as Colors, type index_d$1_Content as Content, type index_d$1_ContentCreatedEnvelope as ContentCreatedEnvelope, type index_d$1_ContentDeletedEnvelope as ContentDeletedEnvelope, type index_d$1_ContentField as ContentField, type index_d$1_ContentFieldValueOneOf as ContentFieldValueOneOf, type index_d$1_ContentNonNullableFields as ContentNonNullableFields, type index_d$1_ContentUpdatedEnvelope as ContentUpdatedEnvelope, type index_d$1_CreateContentRequest as CreateContentRequest, type index_d$1_CreateContentResponse as CreateContentResponse, type index_d$1_CreateContentResponseNonNullableFields as CreateContentResponseNonNullableFields, index_d$1_Crop as Crop, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type Cursors$1 as Cursors, type index_d$1_Decoration as Decoration, type index_d$1_DecorationDataOneOf as DecorationDataOneOf, index_d$1_DecorationType as DecorationType, type index_d$1_DeleteContentRequest as DeleteContentRequest, type index_d$1_DeleteContentResponse as DeleteContentResponse, type DeleteContext$1 as DeleteContext, DeleteStatus$1 as DeleteStatus, type index_d$1_Design as Design, type index_d$1_Dimensions as Dimensions, index_d$1_Direction as Direction, type index_d$1_DividerData as DividerData, type index_d$1_DocumentStyle as DocumentStyle, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type index_d$1_EmbedData as EmbedData, type Empty$1 as Empty, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type index_d$1_EventData as EventData, type EventMetadata$1 as EventMetadata, type index_d$1_FileData as FileData, type index_d$1_FileSource as FileSource, type index_d$1_FileSourceDataOneOf as FileSourceDataOneOf, type index_d$1_FontSizeData as FontSizeData, index_d$1_FontType as FontType, type index_d$1_GIF as GIF, type index_d$1_GIFData as GIFData, type index_d$1_GalleryData as GalleryData, type index_d$1_GalleryOptions as GalleryOptions, type index_d$1_GetContentRequest as GetContentRequest, type index_d$1_GetContentResponse as GetContentResponse, type index_d$1_GetContentResponseNonNullableFields as GetContentResponseNonNullableFields, type index_d$1_Gradient as Gradient, type index_d$1_HTMLData as HTMLData, type index_d$1_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d$1_HeadingData as HeadingData, type index_d$1_Height as Height, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type index_d$1_Image as Image, type index_d$1_ImageData as ImageData, index_d$1_InitialExpandedItems as InitialExpandedItems, type index_d$1_Item as Item, type index_d$1_ItemDataOneOf as ItemDataOneOf, type index_d$1_ItemMetadata as ItemMetadata, type index_d$1_ItemStyle as ItemStyle, type index_d$1_Layout as Layout, index_d$1_LayoutType as LayoutType, index_d$1_LineStyle as LineStyle, type index_d$1_Link as Link, type index_d$1_LinkData as LinkData, type index_d$1_LinkDataOneOf as LinkDataOneOf, type index_d$1_LinkPreviewData as LinkPreviewData, type index_d$1_ListValue as ListValue, type index_d$1_MapData as MapData, type index_d$1_MapSettings as MapSettings, index_d$1_MapType as MapType, type index_d$1_MaskedContent as MaskedContent, type index_d$1_Media as Media, type index_d$1_MentionData as MentionData, type MessageEnvelope$1 as MessageEnvelope, type MetaSiteSpecialEvent$1 as MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf$1 as MetaSiteSpecialEventPayloadOneOf, type index_d$1_Metadata as Metadata, Namespace$1 as Namespace, type NamespaceChanged$1 as NamespaceChanged, type index_d$1_Node as Node, type index_d$1_NodeDataOneOf as NodeDataOneOf, type index_d$1_NodeStyle as NodeStyle, index_d$1_NodeType as NodeType, index_d$1_NullValue as NullValue, type index_d$1_Oembed as Oembed, type index_d$1_Option as Option, type index_d$1_OptionDesign as OptionDesign, type index_d$1_OptionLayout as OptionLayout, type index_d$1_OrderedListData as OrderedListData, index_d$1_Orientation as Orientation, type index_d$1_PDFSettings as PDFSettings, type index_d$1_Paging as Paging, type index_d$1_PagingMetadataV2 as PagingMetadataV2, type index_d$1_ParagraphData as ParagraphData, type index_d$1_Permissions as Permissions, type index_d$1_PlaybackOptions as PlaybackOptions, type index_d$1_PluginContainerData as PluginContainerData, index_d$1_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d$1_PluginContainerDataWidth as PluginContainerDataWidth, type index_d$1_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d$1_Poll as Poll, type index_d$1_PollData as PollData, type index_d$1_PollDataLayout as PollDataLayout, type index_d$1_PollDesign as PollDesign, type index_d$1_PollLayout as PollLayout, index_d$1_PollLayoutDirection as PollLayoutDirection, index_d$1_PollLayoutType as PollLayoutType, index_d$1_PublishStatus as PublishStatus, type index_d$1_QueryContentsLegacyRequest as QueryContentsLegacyRequest, type index_d$1_QueryContentsLegacyResponse as QueryContentsLegacyResponse, type index_d$1_QueryContentsOptions as QueryContentsOptions, type index_d$1_QueryContentsRequest as QueryContentsRequest, type index_d$1_QueryContentsResponse as QueryContentsResponse, type index_d$1_QueryContentsResponseNonNullableFields as QueryContentsResponseNonNullableFields, type index_d$1_QueryV2 as QueryV2, type index_d$1_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type index_d$1_Rel as Rel, type index_d$1_RemoveContentsByFilterRequest as RemoveContentsByFilterRequest, type index_d$1_RemoveContentsByFilterResponse as RemoveContentsByFilterResponse, type index_d$1_RepublishContentByFilterRequest as RepublishContentByFilterRequest, type index_d$1_RepublishContentByFilterResponse as RepublishContentByFilterResponse, type RestoreInfo$1 as RestoreInfo, type index_d$1_RichContent as RichContent, type ServiceProvisioned$1 as ServiceProvisioned, type ServiceRemoved$1 as ServiceRemoved, type index_d$1_Settings as Settings, type SiteCreated$1 as SiteCreated, SiteCreatedContext$1 as SiteCreatedContext, type SiteDeleted$1 as SiteDeleted, type SiteHardDeleted$1 as SiteHardDeleted, type SiteMarkedAsTemplate$1 as SiteMarkedAsTemplate, type SiteMarkedAsWixSite$1 as SiteMarkedAsWixSite, type SitePublished$1 as SitePublished, type SiteRenamed$1 as SiteRenamed, type SiteTransferred$1 as SiteTransferred, type SiteUndeleted$1 as SiteUndeleted, type SiteUnpublished$1 as SiteUnpublished, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, index_d$1_Source as Source, type index_d$1_Spoiler as Spoiler, type index_d$1_SpoilerData as SpoilerData, State$1 as State, type StudioAssigned$1 as StudioAssigned, type StudioUnassigned$1 as StudioUnassigned, type index_d$1_Styles as Styles, type index_d$1_TableCellData as TableCellData, type index_d$1_TableData as TableData, index_d$1_Target as Target, index_d$1_TextAlignment as TextAlignment, type index_d$1_TextData as TextData, type index_d$1_TextNodeStyle as TextNodeStyle, type index_d$1_TextStyle as TextStyle, type index_d$1_Thumbnails as Thumbnails, index_d$1_ThumbnailsAlignment as ThumbnailsAlignment, index_d$1_Type as Type, type index_d$1_UpdateContentRequest as UpdateContentRequest, type index_d$1_UpdateContentResponse as UpdateContentResponse, type index_d$1_UpdateContentResponseNonNullableFields as UpdateContentResponseNonNullableFields, index_d$1_UpdaterIdentity as UpdaterIdentity, index_d$1_VerticalAlignment as VerticalAlignment, type index_d$1_Video as Video, type index_d$1_VideoData as VideoData, type index_d$1_VideoResolution as VideoResolution, index_d$1_ViewMode as ViewMode, index_d$1_ViewRole as ViewRole, index_d$1_VoteRole as VoteRole, WebhookIdentityType$1 as WebhookIdentityType, index_d$1_Width as Width, index_d$1_WidthType as WidthType, index_d$1_bulkCreateContent as bulkCreateContent, index_d$1_bulkDeleteContent as bulkDeleteContent, index_d$1_bulkUpdateContent as bulkUpdateContent, index_d$1_createContent as createContent, index_d$1_deleteContent as deleteContent, index_d$1_getContent as getContent, index_d$1_onContentCreated as onContentCreated, index_d$1_onContentDeleted as onContentDeleted, index_d$1_onContentUpdated as onContentUpdated, index_d$1_queryContents as queryContents, index_d$1_updateContent as updateContent };
|
|
5173
|
+
export { type ActionEvent$1 as ActionEvent, type index_d$1_Aggregation as Aggregation, type index_d$1_AggregationData as AggregationData, type index_d$1_AggregationKindOneOf as AggregationKindOneOf, type index_d$1_AggregationResults as AggregationResults, type index_d$1_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type index_d$1_AggregationResultsScalarResult as AggregationResultsScalarResult, index_d$1_AggregationType as AggregationType, index_d$1_Alignment as Alignment, type index_d$1_AnchorData as AnchorData, type index_d$1_AppEmbedData as AppEmbedData, type index_d$1_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d$1_AppType as AppType, type index_d$1_ApplicationError as ApplicationError, type Asset$1 as Asset, type index_d$1_AudioData as AudioData, type index_d$1_Background as Background, type index_d$1_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d$1_BackgroundType as BackgroundType, type BaseEventMetadata$1 as BaseEventMetadata, type index_d$1_BlockquoteData as BlockquoteData, type index_d$1_BookingData as BookingData, type index_d$1_Border as Border, type index_d$1_BorderColors as BorderColors, type index_d$1_BulkActionMetadata as BulkActionMetadata, type index_d$1_BulkContentResult as BulkContentResult, type index_d$1_BulkCreateContentOptions as BulkCreateContentOptions, type index_d$1_BulkCreateContentRequest as BulkCreateContentRequest, type index_d$1_BulkCreateContentResponse as BulkCreateContentResponse, type index_d$1_BulkCreateContentResponseNonNullableFields as BulkCreateContentResponseNonNullableFields, type index_d$1_BulkDeleteContentRequest as BulkDeleteContentRequest, type index_d$1_BulkDeleteContentResponse as BulkDeleteContentResponse, type index_d$1_BulkDeleteContentResponseBulkContentResult as BulkDeleteContentResponseBulkContentResult, type index_d$1_BulkDeleteContentResponseNonNullableFields as BulkDeleteContentResponseNonNullableFields, type index_d$1_BulkUpdateContentOptions as BulkUpdateContentOptions, type index_d$1_BulkUpdateContentRequest as BulkUpdateContentRequest, type index_d$1_BulkUpdateContentResponse as BulkUpdateContentResponse, type index_d$1_BulkUpdateContentResponseBulkContentResult as BulkUpdateContentResponseBulkContentResult, type index_d$1_BulkUpdateContentResponseNonNullableFields as BulkUpdateContentResponseNonNullableFields, type index_d$1_BulletedListData as BulletedListData, type index_d$1_ButtonData as ButtonData, type index_d$1_CellStyle as CellStyle, type index_d$1_CodeBlockData as CodeBlockData, type index_d$1_CollapsibleListData as CollapsibleListData, type index_d$1_ColorData as ColorData, type index_d$1_Colors as Colors, type index_d$1_Content as Content, type index_d$1_ContentCreatedEnvelope as ContentCreatedEnvelope, type index_d$1_ContentDeletedEnvelope as ContentDeletedEnvelope, type index_d$1_ContentField as ContentField, type index_d$1_ContentFieldValueOneOf as ContentFieldValueOneOf, type index_d$1_ContentNonNullableFields as ContentNonNullableFields, type index_d$1_ContentUpdatedEnvelope as ContentUpdatedEnvelope, type index_d$1_CreateContentRequest as CreateContentRequest, type index_d$1_CreateContentResponse as CreateContentResponse, type index_d$1_CreateContentResponseNonNullableFields as CreateContentResponseNonNullableFields, index_d$1_Crop as Crop, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type index_d$1_CursorSearch as CursorSearch, type index_d$1_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$1 as Cursors, type index_d$1_DateHistogramAggregation as DateHistogramAggregation, type index_d$1_DateHistogramResult as DateHistogramResult, type index_d$1_DateHistogramResults as DateHistogramResults, type index_d$1_Decoration as Decoration, type index_d$1_DecorationDataOneOf as DecorationDataOneOf, index_d$1_DecorationType as DecorationType, type index_d$1_DeleteContentRequest as DeleteContentRequest, type index_d$1_DeleteContentResponse as DeleteContentResponse, type DeleteContext$1 as DeleteContext, DeleteStatus$1 as DeleteStatus, type index_d$1_Design as Design, type index_d$1_Dimensions as Dimensions, index_d$1_Direction as Direction, type index_d$1_DividerData as DividerData, type index_d$1_DocumentStyle as DocumentStyle, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type index_d$1_EmbedData as EmbedData, type Empty$1 as Empty, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type index_d$1_EventData as EventData, type EventMetadata$1 as EventMetadata, type index_d$1_FileData as FileData, type index_d$1_FileSource as FileSource, type index_d$1_FileSourceDataOneOf as FileSourceDataOneOf, type index_d$1_FontSizeData as FontSizeData, index_d$1_FontType as FontType, type index_d$1_GIF as GIF, type index_d$1_GIFData as GIFData, type index_d$1_GalleryData as GalleryData, type index_d$1_GalleryOptions as GalleryOptions, type index_d$1_GetContentRequest as GetContentRequest, type index_d$1_GetContentResponse as GetContentResponse, type index_d$1_GetContentResponseNonNullableFields as GetContentResponseNonNullableFields, type index_d$1_Gradient as Gradient, type index_d$1_GroupByAggregation as GroupByAggregation, type index_d$1_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type index_d$1_GroupByValueResults as GroupByValueResults, type index_d$1_HTMLData as HTMLData, type index_d$1_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d$1_HeadingData as HeadingData, type index_d$1_Height as Height, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type index_d$1_Image as Image, type index_d$1_ImageData as ImageData, type index_d$1_IncludeMissingValuesOptions as IncludeMissingValuesOptions, index_d$1_InitialExpandedItems as InitialExpandedItems, index_d$1_Interval as Interval, type index_d$1_Item as Item, type index_d$1_ItemDataOneOf as ItemDataOneOf, type index_d$1_ItemMetadata as ItemMetadata, type index_d$1_ItemStyle as ItemStyle, type index_d$1_Layout as Layout, index_d$1_LayoutType as LayoutType, index_d$1_LineStyle as LineStyle, type index_d$1_Link as Link, type index_d$1_LinkData as LinkData, type index_d$1_LinkDataOneOf as LinkDataOneOf, type index_d$1_LinkPreviewData as LinkPreviewData, type index_d$1_ListValue as ListValue, type index_d$1_MapData as MapData, type index_d$1_MapSettings as MapSettings, index_d$1_MapType as MapType, type index_d$1_MaskedContent as MaskedContent, type index_d$1_Media as Media, type index_d$1_MentionData as MentionData, type MessageEnvelope$1 as MessageEnvelope, type MetaSiteSpecialEvent$1 as MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf$1 as MetaSiteSpecialEventPayloadOneOf, type index_d$1_Metadata as Metadata, index_d$1_MissingValues as MissingValues, index_d$1_Mode as Mode, Namespace$1 as Namespace, type NamespaceChanged$1 as NamespaceChanged, type index_d$1_NestedAggregation as NestedAggregation, type index_d$1_NestedAggregationItem as NestedAggregationItem, type index_d$1_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type index_d$1_NestedAggregationResults as NestedAggregationResults, type index_d$1_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, index_d$1_NestedAggregationType as NestedAggregationType, type index_d$1_NestedResultValue as NestedResultValue, type index_d$1_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type index_d$1_NestedResults as NestedResults, type index_d$1_NestedValueAggregationResult as NestedValueAggregationResult, type index_d$1_Node as Node, type index_d$1_NodeDataOneOf as NodeDataOneOf, type index_d$1_NodeStyle as NodeStyle, index_d$1_NodeType as NodeType, index_d$1_NullValue as NullValue, type index_d$1_Oembed as Oembed, type index_d$1_Option as Option, type index_d$1_OptionDesign as OptionDesign, type index_d$1_OptionLayout as OptionLayout, type index_d$1_OrderedListData as OrderedListData, index_d$1_Orientation as Orientation, type index_d$1_PDFSettings as PDFSettings, type index_d$1_Paging as Paging, type index_d$1_PagingMetadataV2 as PagingMetadataV2, type index_d$1_ParagraphData as ParagraphData, type index_d$1_Permissions as Permissions, type index_d$1_PlaybackOptions as PlaybackOptions, type index_d$1_PluginContainerData as PluginContainerData, index_d$1_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d$1_PluginContainerDataWidth as PluginContainerDataWidth, type index_d$1_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d$1_Poll as Poll, type index_d$1_PollData as PollData, type index_d$1_PollDataLayout as PollDataLayout, type index_d$1_PollDesign as PollDesign, type index_d$1_PollLayout as PollLayout, index_d$1_PollLayoutDirection as PollLayoutDirection, index_d$1_PollLayoutType as PollLayoutType, index_d$1_PublishStatus as PublishStatus, type index_d$1_QueryContentsLegacyRequest as QueryContentsLegacyRequest, type index_d$1_QueryContentsLegacyResponse as QueryContentsLegacyResponse, type index_d$1_QueryContentsOptions as QueryContentsOptions, type index_d$1_QueryContentsRequest as QueryContentsRequest, type index_d$1_QueryContentsResponse as QueryContentsResponse, type index_d$1_QueryContentsResponseNonNullableFields as QueryContentsResponseNonNullableFields, type index_d$1_QueryV2 as QueryV2, type index_d$1_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type index_d$1_RangeAggregation as RangeAggregation, type index_d$1_RangeAggregationResult as RangeAggregationResult, type index_d$1_RangeBucket as RangeBucket, type index_d$1_RangeResult as RangeResult, type index_d$1_RangeResults as RangeResults, type index_d$1_Rel as Rel, type index_d$1_RemoveContentsByFilterRequest as RemoveContentsByFilterRequest, type index_d$1_RemoveContentsByFilterResponse as RemoveContentsByFilterResponse, type index_d$1_RepublishContentByFilterRequest as RepublishContentByFilterRequest, type index_d$1_RepublishContentByFilterResponse as RepublishContentByFilterResponse, type RestoreInfo$1 as RestoreInfo, type index_d$1_Results as Results, type index_d$1_RichContent as RichContent, type index_d$1_ScalarAggregation as ScalarAggregation, type index_d$1_ScalarResult as ScalarResult, index_d$1_ScalarType as ScalarType, type index_d$1_SearchContentsOptions as SearchContentsOptions, type index_d$1_SearchContentsRequest as SearchContentsRequest, type index_d$1_SearchContentsResponse as SearchContentsResponse, type index_d$1_SearchContentsResponseNonNullableFields as SearchContentsResponseNonNullableFields, type index_d$1_SearchDetails as SearchDetails, type ServiceProvisioned$1 as ServiceProvisioned, type ServiceRemoved$1 as ServiceRemoved, type index_d$1_Settings as Settings, type SiteCreated$1 as SiteCreated, SiteCreatedContext$1 as SiteCreatedContext, type SiteDeleted$1 as SiteDeleted, type SiteHardDeleted$1 as SiteHardDeleted, type SiteMarkedAsTemplate$1 as SiteMarkedAsTemplate, type SiteMarkedAsWixSite$1 as SiteMarkedAsWixSite, type SitePublished$1 as SitePublished, type SiteRenamed$1 as SiteRenamed, type SiteTransferred$1 as SiteTransferred, type SiteUndeleted$1 as SiteUndeleted, type SiteUnpublished$1 as SiteUnpublished, index_d$1_SortDirection as SortDirection, SortOrder$1 as SortOrder, index_d$1_SortType as SortType, type Sorting$1 as Sorting, index_d$1_Source as Source, type index_d$1_Spoiler as Spoiler, type index_d$1_SpoilerData as SpoilerData, State$1 as State, type StudioAssigned$1 as StudioAssigned, type StudioUnassigned$1 as StudioUnassigned, type index_d$1_Styles as Styles, type index_d$1_TableCellData as TableCellData, type index_d$1_TableData as TableData, index_d$1_Target as Target, index_d$1_TextAlignment as TextAlignment, type index_d$1_TextData as TextData, type index_d$1_TextNodeStyle as TextNodeStyle, type index_d$1_TextStyle as TextStyle, type index_d$1_Thumbnails as Thumbnails, index_d$1_ThumbnailsAlignment as ThumbnailsAlignment, index_d$1_Type as Type, type index_d$1_UpdateContentRequest as UpdateContentRequest, type index_d$1_UpdateContentResponse as UpdateContentResponse, type index_d$1_UpdateContentResponseNonNullableFields as UpdateContentResponseNonNullableFields, index_d$1_UpdaterIdentity as UpdaterIdentity, type index_d$1_ValueAggregation as ValueAggregation, type index_d$1_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type index_d$1_ValueAggregationResult as ValueAggregationResult, type index_d$1_ValueResult as ValueResult, type index_d$1_ValueResults as ValueResults, index_d$1_VerticalAlignment as VerticalAlignment, type index_d$1_Video as Video, type index_d$1_VideoData as VideoData, type index_d$1_VideoResolution as VideoResolution, index_d$1_ViewMode as ViewMode, index_d$1_ViewRole as ViewRole, index_d$1_VoteRole as VoteRole, WebhookIdentityType$1 as WebhookIdentityType, index_d$1_Width as Width, index_d$1_WidthType as WidthType, index_d$1_bulkCreateContent as bulkCreateContent, index_d$1_bulkDeleteContent as bulkDeleteContent, index_d$1_bulkUpdateContent as bulkUpdateContent, index_d$1_createContent as createContent, index_d$1_deleteContent as deleteContent, index_d$1_getContent as getContent, index_d$1_onContentCreated as onContentCreated, index_d$1_onContentDeleted as onContentDeleted, index_d$1_onContentUpdated as onContentUpdated, index_d$1_queryContents as queryContents, index_d$1_searchContents as searchContents, index_d$1_updateContent as updateContent };
|
|
4638
5174
|
}
|
|
4639
5175
|
|
|
4640
5176
|
interface Schema {
|
|
@@ -5035,7 +5571,9 @@ declare enum Namespace {
|
|
|
5035
5571
|
* There's a blank site behind the scene but it's blank).
|
|
5036
5572
|
* The Mobile company will be the owner of this namespace.
|
|
5037
5573
|
*/
|
|
5038
|
-
BRANDED_FIRST = "BRANDED_FIRST"
|
|
5574
|
+
BRANDED_FIRST = "BRANDED_FIRST",
|
|
5575
|
+
/** Nownia.com Siteless account management for Ai Scheduling Assistant. */
|
|
5576
|
+
NOWNIA = "NOWNIA"
|
|
5039
5577
|
}
|
|
5040
5578
|
/** Site transferred to another user. */
|
|
5041
5579
|
interface SiteTransferred {
|
|
@@ -5150,7 +5688,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
5150
5688
|
slug?: string;
|
|
5151
5689
|
/** ID of the entity associated with the event. */
|
|
5152
5690
|
entityId?: string;
|
|
5153
|
-
/** Event timestamp. */
|
|
5691
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
5154
5692
|
eventTime?: Date;
|
|
5155
5693
|
/**
|
|
5156
5694
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
@@ -5284,7 +5822,7 @@ interface EventMetadata extends BaseEventMetadata {
|
|
|
5284
5822
|
slug?: string;
|
|
5285
5823
|
/** ID of the entity associated with the event. */
|
|
5286
5824
|
entityId?: string;
|
|
5287
|
-
/** Event timestamp. */
|
|
5825
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
5288
5826
|
eventTime?: Date;
|
|
5289
5827
|
/**
|
|
5290
5828
|
* Whether the event was triggered as a result of a privacy regulation application
|