@wix/auto_sdk_bookings_resources 1.0.78 → 1.0.79

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 +2 -2
@@ -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.js';
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.js';
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.js';
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.js';
4
4
 
5
5
  declare function createResource$1(httpClient: HttpClient): CreateResourceSignature;
6
6
  interface CreateResourceSignature {
@@ -507,14 +507,12 @@ var MissingValues = /* @__PURE__ */ ((MissingValues2) => {
507
507
  return MissingValues2;
508
508
  })(MissingValues || {});
509
509
  var ScalarType = /* @__PURE__ */ ((ScalarType2) => {
510
- ScalarType2["UNKNOWN_SCALAR_TYPE"] = "UNKNOWN_SCALAR_TYPE";
511
510
  ScalarType2["COUNT_DISTINCT"] = "COUNT_DISTINCT";
512
511
  ScalarType2["MIN"] = "MIN";
513
512
  ScalarType2["MAX"] = "MAX";
514
513
  return ScalarType2;
515
514
  })(ScalarType || {});
516
515
  var NestedAggregationType = /* @__PURE__ */ ((NestedAggregationType2) => {
517
- NestedAggregationType2["UNKNOWN_AGGREGATION_TYPE"] = "UNKNOWN_AGGREGATION_TYPE";
518
516
  NestedAggregationType2["VALUE"] = "VALUE";
519
517
  NestedAggregationType2["RANGE"] = "RANGE";
520
518
  NestedAggregationType2["SCALAR"] = "SCALAR";
@@ -522,7 +520,6 @@ var NestedAggregationType = /* @__PURE__ */ ((NestedAggregationType2) => {
522
520
  return NestedAggregationType2;
523
521
  })(NestedAggregationType || {});
524
522
  var Interval = /* @__PURE__ */ ((Interval2) => {
525
- Interval2["UNKNOWN_INTERVAL"] = "UNKNOWN_INTERVAL";
526
523
  Interval2["YEAR"] = "YEAR";
527
524
  Interval2["MONTH"] = "MONTH";
528
525
  Interval2["WEEK"] = "WEEK";
@@ -533,7 +530,6 @@ var Interval = /* @__PURE__ */ ((Interval2) => {
533
530
  return Interval2;
534
531
  })(Interval || {});
535
532
  var AggregationType = /* @__PURE__ */ ((AggregationType2) => {
536
- AggregationType2["UNKNOWN_AGGREGATION_TYPE"] = "UNKNOWN_AGGREGATION_TYPE";
537
533
  AggregationType2["VALUE"] = "VALUE";
538
534
  AggregationType2["RANGE"] = "RANGE";
539
535
  AggregationType2["SCALAR"] = "SCALAR";