@wix/auto_sdk_table-reservations_reservations 1.0.41 → 1.0.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.d.ts +3 -3
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +26 -2
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/{table-reservations-v1-reservation-reservations.universal-C2uTyE02.d.ts → table-reservations-v1-reservation-reservations.universal-DSZ1uOIi.d.ts} +25 -1
- package/build/es/index.d.mts +3 -3
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +26 -2
- package/build/es/meta.mjs.map +1 -1
- package/build/es/{table-reservations-v1-reservation-reservations.universal-C2uTyE02.d.mts → table-reservations-v1-reservation-reservations.universal-DSZ1uOIi.d.mts} +25 -1
- package/build/internal/cjs/index.d.ts +3 -3
- 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.map +1 -1
- package/build/internal/cjs/meta.d.ts +26 -2
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/{table-reservations-v1-reservation-reservations.universal-C2uTyE02.d.ts → table-reservations-v1-reservation-reservations.universal-DSZ1uOIi.d.ts} +25 -1
- package/build/internal/es/index.d.mts +3 -3
- 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.map +1 -1
- package/build/internal/es/meta.d.mts +26 -2
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/{table-reservations-v1-reservation-reservations.universal-C2uTyE02.d.mts → table-reservations-v1-reservation-reservations.universal-DSZ1uOIi.d.mts} +25 -1
- package/package.json +2 -2
|
@@ -1149,6 +1149,13 @@ interface ScalarResult {
|
|
|
1149
1149
|
/** Scalar aggregation results. */
|
|
1150
1150
|
value?: number;
|
|
1151
1151
|
}
|
|
1152
|
+
interface ScalarDateResult {
|
|
1153
|
+
/**
|
|
1154
|
+
* Date in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.
|
|
1155
|
+
* @maxLength 100
|
|
1156
|
+
*/
|
|
1157
|
+
value?: string;
|
|
1158
|
+
}
|
|
1152
1159
|
interface NestedResultValue extends NestedResultValueResultOneOf {
|
|
1153
1160
|
/** Value aggregation results. */
|
|
1154
1161
|
value?: ValueResult;
|
|
@@ -1158,6 +1165,8 @@ interface NestedResultValue extends NestedResultValueResultOneOf {
|
|
|
1158
1165
|
scalar?: ScalarResult;
|
|
1159
1166
|
/** Date histogram aggregation results. */
|
|
1160
1167
|
dateHistogram?: ValueResult;
|
|
1168
|
+
/** Scalar date aggregation result. */
|
|
1169
|
+
scalarDate?: ScalarDateResult;
|
|
1161
1170
|
}
|
|
1162
1171
|
/** @oneof */
|
|
1163
1172
|
interface NestedResultValueResultOneOf {
|
|
@@ -1169,6 +1178,8 @@ interface NestedResultValueResultOneOf {
|
|
|
1169
1178
|
scalar?: ScalarResult;
|
|
1170
1179
|
/** Date histogram aggregation results. */
|
|
1171
1180
|
dateHistogram?: ValueResult;
|
|
1181
|
+
/** Scalar date aggregation result. */
|
|
1182
|
+
scalarDate?: ScalarDateResult;
|
|
1172
1183
|
}
|
|
1173
1184
|
interface Results {
|
|
1174
1185
|
/** List of nested aggregation results. */
|
|
@@ -1206,6 +1217,15 @@ interface NestedResults {
|
|
|
1206
1217
|
*/
|
|
1207
1218
|
results?: Results[];
|
|
1208
1219
|
}
|
|
1220
|
+
interface AggregationResultsScalarDateResult {
|
|
1221
|
+
/** Type of scalar date aggregation. Possible values: `MIN`, `MAX`. */
|
|
1222
|
+
type?: ScalarTypeWithLiterals;
|
|
1223
|
+
/**
|
|
1224
|
+
* Date in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.
|
|
1225
|
+
* @maxLength 100
|
|
1226
|
+
*/
|
|
1227
|
+
value?: string;
|
|
1228
|
+
}
|
|
1209
1229
|
interface AggregationResults extends AggregationResultsResultOneOf {
|
|
1210
1230
|
/** Value aggregation results. */
|
|
1211
1231
|
values?: ValueResults;
|
|
@@ -1219,6 +1239,8 @@ interface AggregationResults extends AggregationResultsResultOneOf {
|
|
|
1219
1239
|
dateHistogram?: DateHistogramResults;
|
|
1220
1240
|
/** Nested aggregation results. */
|
|
1221
1241
|
nested?: NestedResults;
|
|
1242
|
+
/** Date aggregation results. */
|
|
1243
|
+
scalarDate?: AggregationResultsScalarDateResult;
|
|
1222
1244
|
/**
|
|
1223
1245
|
* Aggregation name defined in the request.
|
|
1224
1246
|
* @maxLength 1000
|
|
@@ -1246,6 +1268,8 @@ interface AggregationResultsResultOneOf {
|
|
|
1246
1268
|
dateHistogram?: DateHistogramResults;
|
|
1247
1269
|
/** Nested aggregation results. */
|
|
1248
1270
|
nested?: NestedResults;
|
|
1271
|
+
/** Date aggregation results. */
|
|
1272
|
+
scalarDate?: AggregationResultsScalarDateResult;
|
|
1249
1273
|
}
|
|
1250
1274
|
interface BulkArchiveReservationsRequest {
|
|
1251
1275
|
/**
|
|
@@ -2277,4 +2301,4 @@ declare function bulkArchiveReservations(reservationIds: string[]): Promise<NonN
|
|
|
2277
2301
|
*/
|
|
2278
2302
|
declare function bulkUnarchiveReservations(reservationIds: string[]): Promise<NonNullablePaths<BulkUnarchiveReservationsResponse, `results` | `results.${number}.itemMetadata.originalIndex` | `results.${number}.itemMetadata.success` | `results.${number}.itemMetadata.error.code` | `results.${number}.itemMetadata.error.description` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`, 6>>;
|
|
2279
2303
|
|
|
2280
|
-
export { type MigrationNote as $, Type as A, type BulkArchiveReservationsResponse as B, type CreateReservationOptions as C, Set as D, ExperienceTableCombinationConflictType as E, SortOrder as F, type GetReservationOptions as G, type HeldReservationDetails as H, IgnoreConflictsType as I, SortType as J, SortDirection as K, type ListReservationsOptions as L, MissingValues as M, ScalarType as N, NestedAggregationType as O, PaymentStatus as P, Interval as Q, type Reservation as R, type SearchReservationsResponse as S, TableCombinationConflictType as T, type UpdateReservation as U, AggregationType as V, Mode as W, WebhookIdentityType as X, type Tables as Y, type Details as Z, type ReservedBy as _, type CreateReservationApplicationErrors as a, type AggregationResultsScalarResult as a$, type TableWithReservationConflicts as a0, type ExtendedFields as a1, type ReservationDelayedDomainEvent as a2, type ReservationDelayedDomainEventBodyTypeOneOf as a3, type ReservationCreated as a4, type ReservationUpdated as a5, type ReservationDelayedDomainEventReservationCanceled as a6, type CreateReservationRequest as a7, type IgnoreConflicts as a8, type IgnoreConflictsIgnoreConflictsOptionsOneOf as a9, type Cursors as aA, type QueryReservationsRequest as aB, type CursorQueryPagingMethodOneOf as aC, type QueryReservationsResponse as aD, type SearchReservationsRequest as aE, type CursorSearch as aF, type CursorSearchPagingMethodOneOf as aG, type Aggregation as aH, type AggregationKindOneOf as aI, type RangeBucket as aJ, type IncludeMissingValuesOptions as aK, type ValueAggregation as aL, type ValueAggregationOptionsOneOf as aM, type RangeAggregation as aN, type ScalarAggregation as aO, type DateHistogramAggregation as aP, type NestedAggregationItem as aQ, type NestedAggregationItemKindOneOf as aR, type NestedAggregation as aS, type SearchDetails as aT, type AggregationData as aU, type ValueAggregationResult as aV, type RangeAggregationResult as aW, type NestedAggregationResults as aX, type NestedAggregationResultsResultOneOf as aY, type ValueResults as aZ, type RangeResults as a_, type StandardOptions as aa, type ExperienceOptions as ab, type CreateReservationResponse as ac, type ReservationDetailsConflicts as ad, type TableCombinationConflict as ae, type ReservationLocationConflict as af, type ExperienceTableCombinationConflict as ag, type ExperienceConflict as ah, type ConflictsStandardOptions as ai, type ConflictsExperienceOptions as aj, type Conflicts as ak, type ConflictsOptionsOneOf as al, type GetReservationRequest as am, type GetReservationResponse as an, type UpdateReservationRequest as ao, type UpdateReservationResponse as ap, type CreateHeldReservationRequest as aq, type ReserveReservationRequest as ar, type CancelReservationRequest as as, type ReservationCanceled as at, type DeleteReservationRequest as au, type DeleteReservationResponse as av, type ListReservationsRequest as aw, type CursorPaging as ax, type Sorting as ay, type CursorPagingMetadata as az, type CreateReservationValidationErrors as b,
|
|
2304
|
+
export { type MigrationNote as $, Type as A, type BulkArchiveReservationsResponse as B, type CreateReservationOptions as C, Set as D, ExperienceTableCombinationConflictType as E, SortOrder as F, type GetReservationOptions as G, type HeldReservationDetails as H, IgnoreConflictsType as I, SortType as J, SortDirection as K, type ListReservationsOptions as L, MissingValues as M, ScalarType as N, NestedAggregationType as O, PaymentStatus as P, Interval as Q, type Reservation as R, type SearchReservationsResponse as S, TableCombinationConflictType as T, type UpdateReservation as U, AggregationType as V, Mode as W, WebhookIdentityType as X, type Tables as Y, type Details as Z, type ReservedBy as _, type CreateReservationApplicationErrors as a, type AggregationResultsScalarResult as a$, type TableWithReservationConflicts as a0, type ExtendedFields as a1, type ReservationDelayedDomainEvent as a2, type ReservationDelayedDomainEventBodyTypeOneOf as a3, type ReservationCreated as a4, type ReservationUpdated as a5, type ReservationDelayedDomainEventReservationCanceled as a6, type CreateReservationRequest as a7, type IgnoreConflicts as a8, type IgnoreConflictsIgnoreConflictsOptionsOneOf as a9, type Cursors as aA, type QueryReservationsRequest as aB, type CursorQueryPagingMethodOneOf as aC, type QueryReservationsResponse as aD, type SearchReservationsRequest as aE, type CursorSearch as aF, type CursorSearchPagingMethodOneOf as aG, type Aggregation as aH, type AggregationKindOneOf as aI, type RangeBucket as aJ, type IncludeMissingValuesOptions as aK, type ValueAggregation as aL, type ValueAggregationOptionsOneOf as aM, type RangeAggregation as aN, type ScalarAggregation as aO, type DateHistogramAggregation as aP, type NestedAggregationItem as aQ, type NestedAggregationItemKindOneOf as aR, type NestedAggregation as aS, type SearchDetails as aT, type AggregationData as aU, type ValueAggregationResult as aV, type RangeAggregationResult as aW, type NestedAggregationResults as aX, type NestedAggregationResultsResultOneOf as aY, type ValueResults as aZ, type RangeResults as a_, type StandardOptions as aa, type ExperienceOptions as ab, type CreateReservationResponse as ac, type ReservationDetailsConflicts as ad, type TableCombinationConflict as ae, type ReservationLocationConflict as af, type ExperienceTableCombinationConflict as ag, type ExperienceConflict as ah, type ConflictsStandardOptions as ai, type ConflictsExperienceOptions as aj, type Conflicts as ak, type ConflictsOptionsOneOf as al, type GetReservationRequest as am, type GetReservationResponse as an, type UpdateReservationRequest as ao, type UpdateReservationResponse as ap, type CreateHeldReservationRequest as aq, type ReserveReservationRequest as ar, type CancelReservationRequest as as, type ReservationCanceled as at, type DeleteReservationRequest as au, type DeleteReservationResponse as av, type ListReservationsRequest as aw, type CursorPaging as ax, type Sorting as ay, type CursorPagingMetadata as az, type CreateReservationValidationErrors as b, type WebhookIdentityTypeWithLiterals as b$, type NestedValueAggregationResult as b0, type ValueResult as b1, type RangeResult as b2, type ScalarResult as b3, type ScalarDateResult as b4, type NestedResultValue as b5, type NestedResultValueResultOneOf as b6, type Results as b7, type DateHistogramResult as b8, type GroupByValueResults as b9, type RawHttpResponse as bA, type MessageEnvelope as bB, type IdentificationData as bC, type IdentificationDataIdOneOf as bD, type BaseEventMetadata as bE, type EventMetadata as bF, type ReservationsQueryResult as bG, type ReservationSearchSpec as bH, type StatusWithLiterals as bI, type SourceWithLiterals as bJ, type PaymentStatusWithLiterals as bK, type TableCombinationConflictTypeWithLiterals as bL, type ReservationLocationConflictTypeWithLiterals as bM, type ExperienceTableCombinationConflictTypeWithLiterals as bN, type ExperienceConflictTypeWithLiterals as bO, type IgnoreConflictsTypeWithLiterals as bP, type TypeWithLiterals as bQ, type SetWithLiterals as bR, type SortOrderWithLiterals as bS, type SortTypeWithLiterals as bT, type SortDirectionWithLiterals as bU, type MissingValuesWithLiterals as bV, type ScalarTypeWithLiterals as bW, type NestedAggregationTypeWithLiterals as bX, type IntervalWithLiterals as bY, type AggregationTypeWithLiterals as bZ, type ModeWithLiterals as b_, type DateHistogramResults as ba, type NestedResults as bb, type AggregationResultsScalarDateResult as bc, type AggregationResults as bd, type AggregationResultsResultOneOf as be, type BulkArchiveReservationsRequest as bf, type BulkArchiveReservationsResult as bg, type ItemMetadata as bh, type ApplicationError as bi, type BulkActionMetadata as bj, type BulkUnarchiveReservationsRequest as bk, type BulkUnarchiveReservationsResult as bl, type DomainEvent as bm, type DomainEventBodyOneOf as bn, type EntityCreatedEvent as bo, type RestoreInfo as bp, type EntityUpdatedEvent as bq, type EntityDeletedEvent as br, type ActionEvent as bs, type Empty as bt, type RemoveReservationMigrationNotesRequest as bu, type RemoveReservationMigrationNotesResponse as bv, type RawHttpRequest as bw, type PathParametersEntry as bx, type QueryParametersEntry as by, type HeadersEntry as bz, type UpdateReservationOptions as c, type CommonSearchWithEntityContext as c0, onReservationCreated as c1, onReservationDeleted as c2, onReservationUpdated as c3, createReservation as c4, getReservation as c5, updateReservation as c6, createHeldReservation as c7, reserveReservation as c8, cancelReservation as c9, deleteReservation as ca, listReservations as cb, queryReservations as cc, bulkArchiveReservations as cd, bulkUnarchiveReservations as ce, type UpdateReservationApplicationErrors as d, type UpdateReservationValidationErrors as e, type CreateHeldReservationResponse as f, type CreateHeldReservationApplicationErrors as g, type Reservee as h, type ReserveReservationResponse as i, type ReserveReservationApplicationErrors as j, type CancelReservationOptions as k, type CancelReservationResponse as l, type CancelReservationApplicationErrors as m, type ListReservationsResponse as n, type ReservationSearch as o, type BulkUnarchiveReservationsResponse as p, type ReservationCreatedEnvelope as q, type ReservationDeletedEnvelope as r, type ReservationUpdatedEnvelope as s, type ReservationsQueryBuilder as t, type CursorQuery as u, typedQueryReservations as v, Status as w, Source as x, ReservationLocationConflictType as y, ExperienceConflictType as z };
|
package/build/es/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { R as Reservation, C as CreateReservationOptions, a as CreateReservationApplicationErrors, b as CreateReservationValidationErrors, G as GetReservationOptions, U as UpdateReservation, c as UpdateReservationOptions, d as UpdateReservationApplicationErrors, e as UpdateReservationValidationErrors, H as HeldReservationDetails, f as CreateHeldReservationResponse, g as CreateHeldReservationApplicationErrors, h as Reservee, i as ReserveReservationResponse, j as ReserveReservationApplicationErrors, k as CancelReservationOptions, l as CancelReservationResponse, m as CancelReservationApplicationErrors, L as ListReservationsOptions, n as ListReservationsResponse, o as ReservationSearch, S as SearchReservationsResponse, B as BulkArchiveReservationsResponse, p as BulkUnarchiveReservationsResponse, q as ReservationCreatedEnvelope, r as ReservationDeletedEnvelope, s as ReservationUpdatedEnvelope, t as ReservationsQueryBuilder, u as CursorQuery, v as typedQueryReservations } from './table-reservations-v1-reservation-reservations.universal-
|
|
3
|
-
export {
|
|
2
|
+
import { R as Reservation, C as CreateReservationOptions, a as CreateReservationApplicationErrors, b as CreateReservationValidationErrors, G as GetReservationOptions, U as UpdateReservation, c as UpdateReservationOptions, d as UpdateReservationApplicationErrors, e as UpdateReservationValidationErrors, H as HeldReservationDetails, f as CreateHeldReservationResponse, g as CreateHeldReservationApplicationErrors, h as Reservee, i as ReserveReservationResponse, j as ReserveReservationApplicationErrors, k as CancelReservationOptions, l as CancelReservationResponse, m as CancelReservationApplicationErrors, L as ListReservationsOptions, n as ListReservationsResponse, o as ReservationSearch, S as SearchReservationsResponse, B as BulkArchiveReservationsResponse, p as BulkUnarchiveReservationsResponse, q as ReservationCreatedEnvelope, r as ReservationDeletedEnvelope, s as ReservationUpdatedEnvelope, t as ReservationsQueryBuilder, u as CursorQuery, v as typedQueryReservations } from './table-reservations-v1-reservation-reservations.universal-DSZ1uOIi.mjs';
|
|
3
|
+
export { bs as ActionEvent, aH as Aggregation, aU as AggregationData, aI as AggregationKindOneOf, bd as AggregationResults, be as AggregationResultsResultOneOf, bc as AggregationResultsScalarDateResult, a$ as AggregationResultsScalarResult, V as AggregationType, bZ as AggregationTypeWithLiterals, bi as ApplicationError, bE as BaseEventMetadata, bj as BulkActionMetadata, bf as BulkArchiveReservationsRequest, bg as BulkArchiveReservationsResult, bk as BulkUnarchiveReservationsRequest, bl as BulkUnarchiveReservationsResult, as as CancelReservationRequest, c0 as CommonSearchWithEntityContext, ak as Conflicts, aj as ConflictsExperienceOptions, al as ConflictsOptionsOneOf, ai as ConflictsStandardOptions, aq as CreateHeldReservationRequest, a7 as CreateReservationRequest, ac as CreateReservationResponse, ax as CursorPaging, az as CursorPagingMetadata, aC as CursorQueryPagingMethodOneOf, aF as CursorSearch, aG as CursorSearchPagingMethodOneOf, aA as Cursors, aP as DateHistogramAggregation, b8 as DateHistogramResult, ba as DateHistogramResults, au as DeleteReservationRequest, av as DeleteReservationResponse, Z as Details, bm as DomainEvent, bn as DomainEventBodyOneOf, bt as Empty, bo as EntityCreatedEvent, br as EntityDeletedEvent, bq as EntityUpdatedEvent, bF as EventMetadata, ah as ExperienceConflict, z as ExperienceConflictType, bO as ExperienceConflictTypeWithLiterals, ab as ExperienceOptions, ag as ExperienceTableCombinationConflict, E as ExperienceTableCombinationConflictType, bN as ExperienceTableCombinationConflictTypeWithLiterals, a1 as ExtendedFields, am as GetReservationRequest, an as GetReservationResponse, b9 as GroupByValueResults, bz as HeadersEntry, bC as IdentificationData, bD as IdentificationDataIdOneOf, a8 as IgnoreConflicts, a9 as IgnoreConflictsIgnoreConflictsOptionsOneOf, I as IgnoreConflictsType, bP as IgnoreConflictsTypeWithLiterals, aK as IncludeMissingValuesOptions, Q as Interval, bY as IntervalWithLiterals, bh as ItemMetadata, aw as ListReservationsRequest, bB as MessageEnvelope, $ as MigrationNote, M as MissingValues, bV as MissingValuesWithLiterals, W as Mode, b_ as ModeWithLiterals, aS as NestedAggregation, aQ as NestedAggregationItem, aR as NestedAggregationItemKindOneOf, aX as NestedAggregationResults, aY as NestedAggregationResultsResultOneOf, O as NestedAggregationType, bX as NestedAggregationTypeWithLiterals, b5 as NestedResultValue, b6 as NestedResultValueResultOneOf, bb as NestedResults, b0 as NestedValueAggregationResult, bx as PathParametersEntry, P as PaymentStatus, bK as PaymentStatusWithLiterals, by as QueryParametersEntry, aB as QueryReservationsRequest, aD as QueryReservationsResponse, aN as RangeAggregation, aW as RangeAggregationResult, aJ as RangeBucket, b2 as RangeResult, a_ as RangeResults, bw as RawHttpRequest, bA as RawHttpResponse, bu as RemoveReservationMigrationNotesRequest, bv as RemoveReservationMigrationNotesResponse, at as ReservationCanceled, a4 as ReservationCreated, a2 as ReservationDelayedDomainEvent, a3 as ReservationDelayedDomainEventBodyTypeOneOf, a6 as ReservationDelayedDomainEventReservationCanceled, ad as ReservationDetailsConflicts, af as ReservationLocationConflict, y as ReservationLocationConflictType, bM as ReservationLocationConflictTypeWithLiterals, bH as ReservationSearchSpec, a5 as ReservationUpdated, bG as ReservationsQueryResult, ar as ReserveReservationRequest, _ as ReservedBy, bp as RestoreInfo, b7 as Results, aO as ScalarAggregation, b4 as ScalarDateResult, b3 as ScalarResult, N as ScalarType, bW as ScalarTypeWithLiterals, aT as SearchDetails, aE as SearchReservationsRequest, D as Set, bR as SetWithLiterals, K as SortDirection, bU as SortDirectionWithLiterals, F as SortOrder, bS as SortOrderWithLiterals, J as SortType, bT as SortTypeWithLiterals, ay as Sorting, x as Source, bJ as SourceWithLiterals, aa as StandardOptions, w as Status, bI as StatusWithLiterals, ae as TableCombinationConflict, T as TableCombinationConflictType, bL as TableCombinationConflictTypeWithLiterals, a0 as TableWithReservationConflicts, Y as Tables, A as Type, bQ as TypeWithLiterals, ao as UpdateReservationRequest, ap as UpdateReservationResponse, aL as ValueAggregation, aM as ValueAggregationOptionsOneOf, aV as ValueAggregationResult, b1 as ValueResult, aZ as ValueResults, X as WebhookIdentityType, b$ as WebhookIdentityTypeWithLiterals } from './table-reservations-v1-reservation-reservations.universal-DSZ1uOIi.mjs';
|
|
4
4
|
|
|
5
5
|
declare function createReservation$1(httpClient: HttpClient): CreateReservationSignature;
|
|
6
6
|
interface CreateReservationSignature {
|
|
@@ -144,7 +144,7 @@ interface SearchReservationsSignature {
|
|
|
144
144
|
* For a detailed list of supported operations, see the [Sorting, Filtering, and Search](https://dev.wix.com/docs/rest/api-reference/wix-restaurants/reservations/reservations/sorting-filtering-and-search) article.
|
|
145
145
|
* @param - Search query.
|
|
146
146
|
*/
|
|
147
|
-
(search: ReservationSearch): Promise<NonNullablePaths<SearchReservationsResponse, `reservations` | `reservations.${number}.status` | `reservations.${number}.source` | `reservations.${number}.paymentStatus` | `aggregationData.results` | `aggregationData.results.${number}.scalar.type` | `aggregationData.results.${number}.scalar.value` | `aggregationData.results.${number}.name` | `aggregationData.results.${number}.type` | `aggregationData.results.${number}.fieldPath`, 6>>;
|
|
147
|
+
(search: ReservationSearch): Promise<NonNullablePaths<SearchReservationsResponse, `reservations` | `reservations.${number}.status` | `reservations.${number}.source` | `reservations.${number}.paymentStatus` | `aggregationData.results` | `aggregationData.results.${number}.scalar.type` | `aggregationData.results.${number}.scalar.value` | `aggregationData.results.${number}.scalarDate.type` | `aggregationData.results.${number}.scalarDate.value` | `aggregationData.results.${number}.name` | `aggregationData.results.${number}.type` | `aggregationData.results.${number}.fieldPath`, 6>>;
|
|
148
148
|
}
|
|
149
149
|
declare function bulkArchiveReservations$1(httpClient: HttpClient): BulkArchiveReservationsSignature;
|
|
150
150
|
interface BulkArchiveReservationsSignature {
|