@wix/auto_sdk_online-programs_sections 1.0.15 → 1.0.16

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 (35) hide show
  1. package/build/cjs/index.js +2 -4
  2. package/build/cjs/index.js.map +1 -1
  3. package/build/cjs/index.typings.d.ts +1 -10
  4. package/build/cjs/index.typings.js +1 -3
  5. package/build/cjs/index.typings.js.map +1 -1
  6. package/build/cjs/meta.js.map +1 -1
  7. package/build/cjs/schemas.js +22 -22
  8. package/build/cjs/schemas.js.map +1 -1
  9. package/build/es/index.mjs +2 -4
  10. package/build/es/index.mjs.map +1 -1
  11. package/build/es/index.typings.d.mts +1 -10
  12. package/build/es/index.typings.mjs +1 -3
  13. package/build/es/index.typings.mjs.map +1 -1
  14. package/build/es/meta.mjs.map +1 -1
  15. package/build/es/schemas.mjs +22 -22
  16. package/build/es/schemas.mjs.map +1 -1
  17. package/build/internal/cjs/index.js +2 -4
  18. package/build/internal/cjs/index.js.map +1 -1
  19. package/build/internal/cjs/index.typings.d.ts +103 -10
  20. package/build/internal/cjs/index.typings.js +1 -3
  21. package/build/internal/cjs/index.typings.js.map +1 -1
  22. package/build/internal/cjs/meta.d.ts +202 -0
  23. package/build/internal/cjs/meta.js.map +1 -1
  24. package/build/internal/cjs/schemas.js +22 -22
  25. package/build/internal/cjs/schemas.js.map +1 -1
  26. package/build/internal/es/index.mjs +2 -4
  27. package/build/internal/es/index.mjs.map +1 -1
  28. package/build/internal/es/index.typings.d.mts +103 -10
  29. package/build/internal/es/index.typings.mjs +1 -3
  30. package/build/internal/es/index.typings.mjs.map +1 -1
  31. package/build/internal/es/meta.d.mts +202 -0
  32. package/build/internal/es/meta.mjs.map +1 -1
  33. package/build/internal/es/schemas.mjs +22 -22
  34. package/build/internal/es/schemas.mjs.map +1 -1
  35. package/package.json +4 -4
@@ -1142,11 +1142,6 @@ interface SectionsQueryBuilder {
1142
1142
  * @documentationMaturity preview
1143
1143
  */
1144
1144
  startsWith: (propertyName: '_id', value: string) => SectionsQueryBuilder;
1145
- /** @param propertyName - Property whose value is compared with `values`.
1146
- * @param values - List of values to compare against.
1147
- * @documentationMaturity preview
1148
- */
1149
- hasSome: (propertyName: '_id' | 'state' | 'trialSection' | 'delayInDays', value: any[]) => SectionsQueryBuilder;
1150
1145
  /** @documentationMaturity preview */
1151
1146
  in: (propertyName: '_id' | 'state' | 'trialSection' | 'delayInDays', value: any) => SectionsQueryBuilder;
1152
1147
  /** @documentationMaturity preview */
@@ -1248,11 +1243,7 @@ type SectionQuery = {
1248
1243
  }[];
1249
1244
  };
1250
1245
  declare const utils: {
1251
- query: {
1252
- QueryBuilder: () => _wix_sdk_types.QueryBuilder<Section, SectionQuerySpec, SectionQuery>;
1253
- Filter: _wix_sdk_types.FilterFactory<Section, SectionQuerySpec>;
1254
- Sort: _wix_sdk_types.SortFactory<SectionQuerySpec>;
1255
- };
1246
+ query: _wix_sdk_types.QueryHelpers<Section, SectionQuerySpec, SectionQuery>;
1256
1247
  };
1257
1248
  /**
1258
1249
  * Retrieves the sections in a program.
@@ -1281,9 +1281,7 @@ async function typedQuerySections(query, options) {
1281
1281
  }
1282
1282
  }
1283
1283
  var utils = {
1284
- query: {
1285
- ...(0, import_query_builder_utils.createQueryUtils)()
1286
- }
1284
+ query: /* @__PURE__ */ (0, import_query_builder_utils.createQueryUtils)()
1287
1285
  };
1288
1286
  async function listSections2(programId, options) {
1289
1287
  const { httpClient, sideEffects } = arguments[2];