@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.
- package/build/cjs/index.js +2 -4
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +1 -10
- package/build/cjs/index.typings.js +1 -3
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/schemas.js +22 -22
- package/build/cjs/schemas.js.map +1 -1
- package/build/es/index.mjs +2 -4
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +1 -10
- package/build/es/index.typings.mjs +1 -3
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.mjs.map +1 -1
- package/build/es/schemas.mjs +22 -22
- package/build/es/schemas.mjs.map +1 -1
- package/build/internal/cjs/index.js +2 -4
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +103 -10
- package/build/internal/cjs/index.typings.js +1 -3
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +202 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/schemas.js +22 -22
- package/build/internal/cjs/schemas.js.map +1 -1
- package/build/internal/es/index.mjs +2 -4
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +103 -10
- package/build/internal/es/index.typings.mjs +1 -3
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +202 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/schemas.mjs +22 -22
- package/build/internal/es/schemas.mjs.map +1 -1
- 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.
|
|
@@ -1238,9 +1238,7 @@ async function typedQuerySections(query, options) {
|
|
|
1238
1238
|
}
|
|
1239
1239
|
}
|
|
1240
1240
|
var utils = {
|
|
1241
|
-
query:
|
|
1242
|
-
...createQueryUtils()
|
|
1243
|
-
}
|
|
1241
|
+
query: /* @__PURE__ */ createQueryUtils()
|
|
1244
1242
|
};
|
|
1245
1243
|
async function listSections2(programId, options) {
|
|
1246
1244
|
const { httpClient, sideEffects } = arguments[2];
|