@wix/auto_sdk_benefit-programs_pool-definitions 1.0.66 → 1.0.67
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 +5 -9
- 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 +28 -24
- 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 +5 -9
- 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 +28 -24
- 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 +94 -9
- 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 +122 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/schemas.js +28 -24
- 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 +94 -9
- 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 +122 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/schemas.mjs +28 -24
- package/build/internal/es/schemas.mjs.map +1 -1
- package/package.json +4 -4
package/build/es/index.mjs
CHANGED
|
@@ -847,9 +847,7 @@ async function typedQueryPoolDefinitions(query, options) {
|
|
|
847
847
|
}
|
|
848
848
|
}
|
|
849
849
|
var utils = {
|
|
850
|
-
query:
|
|
851
|
-
...createQueryUtils()
|
|
852
|
-
}
|
|
850
|
+
query: /* @__PURE__ */ createQueryUtils()
|
|
853
851
|
};
|
|
854
852
|
async function addPoolDefinitionToProgramDefinition2(poolDefinitionId, options) {
|
|
855
853
|
const { httpClient, sideEffects } = arguments[2];
|
|
@@ -1049,7 +1047,7 @@ function findPoolDefinitionsByProgramDefinition3(httpClient) {
|
|
|
1049
1047
|
import { createRESTModule } from "@wix/sdk-runtime/rest-modules";
|
|
1050
1048
|
import { createQueryOverloadRouter } from "@wix/sdk-runtime/query-method-router";
|
|
1051
1049
|
function customQueryPoolDefinitions(httpClient) {
|
|
1052
|
-
const router = createQueryOverloadRouter({
|
|
1050
|
+
const router = /* @__PURE__ */ createQueryOverloadRouter({
|
|
1053
1051
|
builderQueryFunction: (options) => queryPoolDefinitions3(httpClient)(options),
|
|
1054
1052
|
typedQueryFunction: (query, options) => typedQueryPoolDefinitions2(httpClient)(query, options),
|
|
1055
1053
|
hasOptionsParameter: true
|