@wix/auto_sdk_bookings_resources 1.0.78 → 1.0.80

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.
Files changed (41) hide show
  1. package/build/cjs/{bookings-resources-v2-resource-resources.universal-CdUEJoGw.d.ts → bookings-resources-v2-resource-resources.universal-Ba7IleZN.d.ts} +4 -8
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +0 -4
  4. package/build/cjs/index.js.map +1 -1
  5. package/build/cjs/index.typings.d.ts +2 -2
  6. package/build/cjs/index.typings.js +0 -4
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +5 -9
  9. package/build/cjs/meta.js +0 -4
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{bookings-resources-v2-resource-resources.universal-CdUEJoGw.d.mts → bookings-resources-v2-resource-resources.universal-Ba7IleZN.d.mts} +4 -8
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +0 -4
  14. package/build/es/index.mjs.map +1 -1
  15. package/build/es/index.typings.d.mts +2 -2
  16. package/build/es/index.typings.mjs +0 -4
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +5 -9
  19. package/build/es/meta.mjs +0 -4
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{bookings-resources-v2-resource-resources.universal-CdUEJoGw.d.ts → bookings-resources-v2-resource-resources.universal-Ba7IleZN.d.ts} +4 -8
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +0 -4
  24. package/build/internal/cjs/index.js.map +1 -1
  25. package/build/internal/cjs/index.typings.d.ts +2 -2
  26. package/build/internal/cjs/index.typings.js +0 -4
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +5 -9
  29. package/build/internal/cjs/meta.js +0 -4
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{bookings-resources-v2-resource-resources.universal-CdUEJoGw.d.mts → bookings-resources-v2-resource-resources.universal-Ba7IleZN.d.mts} +4 -8
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +0 -4
  34. package/build/internal/es/index.mjs.map +1 -1
  35. package/build/internal/es/index.typings.d.mts +2 -2
  36. package/build/internal/es/index.typings.mjs +0 -4
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +5 -9
  39. package/build/internal/es/meta.mjs +0 -4
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +4 -4
@@ -597,7 +597,6 @@ interface IncludeMissingValuesOptions {
597
597
  addToBucket?: string;
598
598
  }
599
599
  declare enum ScalarType {
600
- UNKNOWN_SCALAR_TYPE = "UNKNOWN_SCALAR_TYPE",
601
600
  /** Total number of distinct values. */
602
601
  COUNT_DISTINCT = "COUNT_DISTINCT",
603
602
  /** Minimum value. */
@@ -606,7 +605,7 @@ declare enum ScalarType {
606
605
  MAX = "MAX"
607
606
  }
608
607
  /** @enumType */
609
- type ScalarTypeWithLiterals = ScalarType | 'UNKNOWN_SCALAR_TYPE' | 'COUNT_DISTINCT' | 'MIN' | 'MAX';
608
+ type ScalarTypeWithLiterals = ScalarType | 'COUNT_DISTINCT' | 'MIN' | 'MAX';
610
609
  interface ValueAggregation extends ValueAggregationOptionsOneOf {
611
610
  /** Options for including missing values in the aggregation results. */
612
611
  includeOptions?: IncludeMissingValuesOptions;
@@ -635,7 +634,6 @@ interface ValueAggregationOptionsOneOf {
635
634
  includeOptions?: IncludeMissingValuesOptions;
636
635
  }
637
636
  declare enum NestedAggregationType {
638
- UNKNOWN_AGGREGATION_TYPE = "UNKNOWN_AGGREGATION_TYPE",
639
637
  /** Calculates the distribution of a specific field's values within a dataset, providing insights into the overall distribution and key statistics of those values. */
640
638
  VALUE = "VALUE",
641
639
  /** Calculates the count of the values from the specified field in the dataset that fall within the range of each bucket you define. */
@@ -646,7 +644,7 @@ declare enum NestedAggregationType {
646
644
  DATE_HISTOGRAM = "DATE_HISTOGRAM"
647
645
  }
648
646
  /** @enumType */
649
- type NestedAggregationTypeWithLiterals = NestedAggregationType | 'UNKNOWN_AGGREGATION_TYPE' | 'VALUE' | 'RANGE' | 'SCALAR' | 'DATE_HISTOGRAM';
647
+ type NestedAggregationTypeWithLiterals = NestedAggregationType | 'VALUE' | 'RANGE' | 'SCALAR' | 'DATE_HISTOGRAM';
650
648
  interface RangeAggregation {
651
649
  /**
652
650
  * List of range buckets defining the ranges for aggregation. During aggregation, each entity is placed in the first bucket where its value falls within the specified range bounds.
@@ -663,7 +661,6 @@ interface DateHistogramAggregation {
663
661
  interval?: IntervalWithLiterals;
664
662
  }
665
663
  declare enum Interval {
666
- UNKNOWN_INTERVAL = "UNKNOWN_INTERVAL",
667
664
  /** Yearly interval */
668
665
  YEAR = "YEAR",
669
666
  /** Monthly interval */
@@ -680,7 +677,7 @@ declare enum Interval {
680
677
  SECOND = "SECOND"
681
678
  }
682
679
  /** @enumType */
683
- type IntervalWithLiterals = Interval | 'UNKNOWN_INTERVAL' | 'YEAR' | 'MONTH' | 'WEEK' | 'DAY' | 'HOUR' | 'MINUTE' | 'SECOND';
680
+ type IntervalWithLiterals = Interval | 'YEAR' | 'MONTH' | 'WEEK' | 'DAY' | 'HOUR' | 'MINUTE' | 'SECOND';
684
681
  interface NestedAggregationItem extends NestedAggregationItemKindOneOf {
685
682
  /** Value aggregation configuration. Calculates the distribution of field values within the dataset. */
686
683
  value?: ValueAggregation;
@@ -715,7 +712,6 @@ interface NestedAggregationItemKindOneOf {
715
712
  dateHistogram?: DateHistogramAggregation;
716
713
  }
717
714
  declare enum AggregationType {
718
- UNKNOWN_AGGREGATION_TYPE = "UNKNOWN_AGGREGATION_TYPE",
719
715
  /** Calculates the distribution of a specific field's values within a dataset, providing insights into the overall distribution and key statistics of those values. */
720
716
  VALUE = "VALUE",
721
717
  /** Calculates the count of the values from the specified field in the dataset that fall within the range of each bucket you define. */
@@ -728,7 +724,7 @@ declare enum AggregationType {
728
724
  NESTED = "NESTED"
729
725
  }
730
726
  /** @enumType */
731
- type AggregationTypeWithLiterals = AggregationType | 'UNKNOWN_AGGREGATION_TYPE' | 'VALUE' | 'RANGE' | 'SCALAR' | 'DATE_HISTOGRAM' | 'NESTED';
727
+ type AggregationTypeWithLiterals = AggregationType | 'VALUE' | 'RANGE' | 'SCALAR' | 'DATE_HISTOGRAM' | 'NESTED';
732
728
  /** Nested aggregation for multi-level faceted search. Allows exploring large amounts of data through multiple levels of categorization, where each subsequent aggregation is nested within the previous aggregation to create hierarchical data summaries. */
733
729
  interface NestedAggregation {
734
730
  /**
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
- import { R as Resource, C as CreateResourceValidationErrors, B as BulkCreateResourcesOptions, a as BulkCreateResourcesResponse, b as BulkCreateResourcesValidationErrors, U as UpdateResource, c as UpdateResourceValidationErrors, M as MaskedResource, d as BulkUpdateResourcesOptions, e as BulkUpdateResourcesResponse, f as BulkUpdateResourcesValidationErrors, g as BulkDeleteResourcesResponse, h as ResourceSearch, S as SearchResourcesResponse, i as CountResourcesOptions, j as CountResourcesResponse, k as ResourceCreatedEnvelope, l as ResourceDeletedEnvelope, m as ResourceUpdatedEnvelope, n as ResourcesQueryBuilder, o as ResourceQuery, t as typedQueryResources } from './bookings-resources-v2-resource-resources.universal-CdUEJoGw.mjs';
3
- export { bc as AccountInfo, bf as AccountInfoMetadata, b7 as ActionEvent, ak as Aggregation, az as AggregationData, al as AggregationKindOneOf, aS as AggregationResults, aT as AggregationResultsResultOneOf, aG as AggregationResultsScalarResult, A as AggregationType, bs as AggregationTypeWithLiterals, X as ApplicationError, bd as BaseEventMetadata, Y as BulkActionMetadata, P as BulkCreateResourcesRequest, af as BulkDeleteResourcesRequest, Q as BulkResourceResult, ac as BulkUpdateResourcesRequest, F as BusinessLocation, bw as CommonQueryWithEntityContext, bv as CommonSearchWithEntityContext, aY as CountResourcesRequest, K as CreateResourceRequest, O as CreateResourceResponse, a2 as CursorPaging, a4 as CursorPagingMetadata, aV as CursorQuery, aW as CursorQueryPagingMethodOneOf, ah as CursorSearch, ai as CursorSearchPagingMethodOneOf, a5 as Cursors, as as DateHistogramAggregation, aO as DateHistogramResult, aQ as DateHistogramResults, ad as DeleteResourceRequest, ae as DeleteResourceResponse, b1 as DomainEvent, b2 as DomainEventBodyOneOf, b8 as Empty, b3 as EntityCreatedEvent, b6 as EntityDeletedEvent, b5 as EntityUpdatedEvent, be as EventMetadata, H as EventsSchedule, J as ExtendedFields, aZ as FixResourceSchedulesRequest, a_ as FixResourceSchedulesResponse, $ as GetDeletedResourceRequest, a0 as GetDeletedResourceResponse, Z as GetResourceRequest, _ as GetResourceResponse, aw as GroupByAggregation, ax as GroupByAggregationKindOneOf, aP as GroupByValueResults, ba as IdentificationData, bb as IdentificationDataIdOneOf, an as IncludeMissingValuesOptions, I as Interval, br as IntervalWithLiterals, T as ItemMetadata, a1 as ListDeletedResourcesRequest, a3 as ListDeletedResourcesResponse, L as LocationOptions, p as ManagementType, bk as ManagementTypeWithLiterals, b9 as MessageEnvelope, u as MissingValues, bo as MissingValuesWithLiterals, w as Mode, bt as ModeWithLiterals, av as NestedAggregation, at as NestedAggregationItem, au as NestedAggregationItemKindOneOf, aC as NestedAggregationResults, aD as NestedAggregationResultsResultOneOf, N as NestedAggregationType, bq as NestedAggregationTypeWithLiterals, aL as NestedResultValue, aM as NestedResultValueResultOneOf, aR as NestedResults, aH as NestedValueAggregationResult, aU as QueryResourcesRequest, aX as QueryResourcesResponse, aq as RangeAggregation, aB as RangeAggregationResult, am as RangeBucket, aJ as RangeResult, aF as RangeResults, a$ as ReindexTenantRequest, b0 as ReindexTenantResponse, a6 as RemoveResourceFromTrashBinRequest, a7 as RemoveResourceFromTrashBinResponse, x as ResourceCompositionDetailsOneOf, bi as ResourceQuerySpec, bg as ResourceSearchSpec, bh as ResourcesQueryResult, b4 as RestoreInfo, a8 as RestoreResourceFromTrashBinRequest, a9 as RestoreResourceFromTrashBinResponse, aN as Results, ar as ScalarAggregation, aK as ScalarResult, v as ScalarType, bp as ScalarTypeWithLiterals, D as Schedule, ay as SearchDetails, ag as SearchResourcesRequest, z as SingleResource, s as SortDirection, bn as SortDirectionWithLiterals, q as SortOrder, bl as SortOrderWithLiterals, r as SortType, bm as SortTypeWithLiterals, aj as Sorting, E as SpecificLocation, aa as UpdateResourceRequest, ab as UpdateResourceResponse, V as V2WorkingHoursSchedules, ao as ValueAggregation, ap as ValueAggregationOptionsOneOf, aA as ValueAggregationResult, aI as ValueResult, aE as ValueResults, W as WebhookIdentityType, bu as WebhookIdentityTypeWithLiterals, y as WorkingHoursSchedule, G as WorkingHoursSchedules, bj as utils } from './bookings-resources-v2-resource-resources.universal-CdUEJoGw.mjs';
2
+ import { R as Resource, C as CreateResourceValidationErrors, B as BulkCreateResourcesOptions, a as BulkCreateResourcesResponse, b as BulkCreateResourcesValidationErrors, U as UpdateResource, c as UpdateResourceValidationErrors, M as MaskedResource, d as BulkUpdateResourcesOptions, e as BulkUpdateResourcesResponse, f as BulkUpdateResourcesValidationErrors, g as BulkDeleteResourcesResponse, h as ResourceSearch, S as SearchResourcesResponse, i as CountResourcesOptions, j as CountResourcesResponse, k as ResourceCreatedEnvelope, l as ResourceDeletedEnvelope, m as ResourceUpdatedEnvelope, n as ResourcesQueryBuilder, o as ResourceQuery, t as typedQueryResources } from './bookings-resources-v2-resource-resources.universal-Ba7IleZN.mjs';
3
+ export { bc as AccountInfo, bf as AccountInfoMetadata, b7 as ActionEvent, ak as Aggregation, az as AggregationData, al as AggregationKindOneOf, aS as AggregationResults, aT as AggregationResultsResultOneOf, aG as AggregationResultsScalarResult, A as AggregationType, bs as AggregationTypeWithLiterals, X as ApplicationError, bd as BaseEventMetadata, Y as BulkActionMetadata, P as BulkCreateResourcesRequest, af as BulkDeleteResourcesRequest, Q as BulkResourceResult, ac as BulkUpdateResourcesRequest, F as BusinessLocation, bw as CommonQueryWithEntityContext, bv as CommonSearchWithEntityContext, aY as CountResourcesRequest, K as CreateResourceRequest, O as CreateResourceResponse, a2 as CursorPaging, a4 as CursorPagingMetadata, aV as CursorQuery, aW as CursorQueryPagingMethodOneOf, ah as CursorSearch, ai as CursorSearchPagingMethodOneOf, a5 as Cursors, as as DateHistogramAggregation, aO as DateHistogramResult, aQ as DateHistogramResults, ad as DeleteResourceRequest, ae as DeleteResourceResponse, b1 as DomainEvent, b2 as DomainEventBodyOneOf, b8 as Empty, b3 as EntityCreatedEvent, b6 as EntityDeletedEvent, b5 as EntityUpdatedEvent, be as EventMetadata, H as EventsSchedule, J as ExtendedFields, aZ as FixResourceSchedulesRequest, a_ as FixResourceSchedulesResponse, $ as GetDeletedResourceRequest, a0 as GetDeletedResourceResponse, Z as GetResourceRequest, _ as GetResourceResponse, aw as GroupByAggregation, ax as GroupByAggregationKindOneOf, aP as GroupByValueResults, ba as IdentificationData, bb as IdentificationDataIdOneOf, an as IncludeMissingValuesOptions, I as Interval, br as IntervalWithLiterals, T as ItemMetadata, a1 as ListDeletedResourcesRequest, a3 as ListDeletedResourcesResponse, L as LocationOptions, p as ManagementType, bk as ManagementTypeWithLiterals, b9 as MessageEnvelope, u as MissingValues, bo as MissingValuesWithLiterals, w as Mode, bt as ModeWithLiterals, av as NestedAggregation, at as NestedAggregationItem, au as NestedAggregationItemKindOneOf, aC as NestedAggregationResults, aD as NestedAggregationResultsResultOneOf, N as NestedAggregationType, bq as NestedAggregationTypeWithLiterals, aL as NestedResultValue, aM as NestedResultValueResultOneOf, aR as NestedResults, aH as NestedValueAggregationResult, aU as QueryResourcesRequest, aX as QueryResourcesResponse, aq as RangeAggregation, aB as RangeAggregationResult, am as RangeBucket, aJ as RangeResult, aF as RangeResults, a$ as ReindexTenantRequest, b0 as ReindexTenantResponse, a6 as RemoveResourceFromTrashBinRequest, a7 as RemoveResourceFromTrashBinResponse, x as ResourceCompositionDetailsOneOf, bi as ResourceQuerySpec, bg as ResourceSearchSpec, bh as ResourcesQueryResult, b4 as RestoreInfo, a8 as RestoreResourceFromTrashBinRequest, a9 as RestoreResourceFromTrashBinResponse, aN as Results, ar as ScalarAggregation, aK as ScalarResult, v as ScalarType, bp as ScalarTypeWithLiterals, D as Schedule, ay as SearchDetails, ag as SearchResourcesRequest, z as SingleResource, s as SortDirection, bn as SortDirectionWithLiterals, q as SortOrder, bl as SortOrderWithLiterals, r as SortType, bm as SortTypeWithLiterals, aj as Sorting, E as SpecificLocation, aa as UpdateResourceRequest, ab as UpdateResourceResponse, V as V2WorkingHoursSchedules, ao as ValueAggregation, ap as ValueAggregationOptionsOneOf, aA as ValueAggregationResult, aI as ValueResult, aE as ValueResults, W as WebhookIdentityType, bu as WebhookIdentityTypeWithLiterals, y as WorkingHoursSchedule, G as WorkingHoursSchedules, bj as utils } from './bookings-resources-v2-resource-resources.universal-Ba7IleZN.mjs';
4
4
 
5
5
  declare function createResource$1(httpClient: HttpClient): CreateResourceSignature;
6
6
  interface CreateResourceSignature {
@@ -460,14 +460,12 @@ var MissingValues = /* @__PURE__ */ ((MissingValues2) => {
460
460
  return MissingValues2;
461
461
  })(MissingValues || {});
462
462
  var ScalarType = /* @__PURE__ */ ((ScalarType2) => {
463
- ScalarType2["UNKNOWN_SCALAR_TYPE"] = "UNKNOWN_SCALAR_TYPE";
464
463
  ScalarType2["COUNT_DISTINCT"] = "COUNT_DISTINCT";
465
464
  ScalarType2["MIN"] = "MIN";
466
465
  ScalarType2["MAX"] = "MAX";
467
466
  return ScalarType2;
468
467
  })(ScalarType || {});
469
468
  var NestedAggregationType = /* @__PURE__ */ ((NestedAggregationType2) => {
470
- NestedAggregationType2["UNKNOWN_AGGREGATION_TYPE"] = "UNKNOWN_AGGREGATION_TYPE";
471
469
  NestedAggregationType2["VALUE"] = "VALUE";
472
470
  NestedAggregationType2["RANGE"] = "RANGE";
473
471
  NestedAggregationType2["SCALAR"] = "SCALAR";
@@ -475,7 +473,6 @@ var NestedAggregationType = /* @__PURE__ */ ((NestedAggregationType2) => {
475
473
  return NestedAggregationType2;
476
474
  })(NestedAggregationType || {});
477
475
  var Interval = /* @__PURE__ */ ((Interval2) => {
478
- Interval2["UNKNOWN_INTERVAL"] = "UNKNOWN_INTERVAL";
479
476
  Interval2["YEAR"] = "YEAR";
480
477
  Interval2["MONTH"] = "MONTH";
481
478
  Interval2["WEEK"] = "WEEK";
@@ -486,7 +483,6 @@ var Interval = /* @__PURE__ */ ((Interval2) => {
486
483
  return Interval2;
487
484
  })(Interval || {});
488
485
  var AggregationType = /* @__PURE__ */ ((AggregationType2) => {
489
- AggregationType2["UNKNOWN_AGGREGATION_TYPE"] = "UNKNOWN_AGGREGATION_TYPE";
490
486
  AggregationType2["VALUE"] = "VALUE";
491
487
  AggregationType2["RANGE"] = "RANGE";
492
488
  AggregationType2["SCALAR"] = "SCALAR";