@wix/auto_sdk_bookings_services 1.0.74 → 1.0.75
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/{bookings-services-v2-service-services.universal-D6jEh8MN.d.ts → bookings-services-v2-service-services.universal-CEp6lBCA.d.ts} +330 -330
- package/build/cjs/index.d.ts +69 -69
- package/build/cjs/index.js +347 -347
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +303 -303
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +173 -173
- package/build/cjs/meta.js +220 -220
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{bookings-services-v2-service-services.universal-D6jEh8MN.d.mts → bookings-services-v2-service-services.universal-CEp6lBCA.d.mts} +330 -330
- package/build/es/index.d.mts +69 -69
- package/build/es/index.mjs +347 -347
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +303 -303
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +173 -173
- package/build/es/meta.mjs +220 -220
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{bookings-services-v2-service-services.universal-D6jEh8MN.d.ts → bookings-services-v2-service-services.universal-CEp6lBCA.d.ts} +330 -330
- package/build/internal/cjs/index.d.ts +69 -69
- package/build/internal/cjs/index.js +347 -347
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js +303 -303
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +173 -173
- package/build/internal/cjs/meta.js +220 -220
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{bookings-services-v2-service-services.universal-D6jEh8MN.d.mts → bookings-services-v2-service-services.universal-CEp6lBCA.d.mts} +330 -330
- package/build/internal/es/index.d.mts +69 -69
- package/build/internal/es/index.mjs +347 -347
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs +303 -303
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +173 -173
- package/build/internal/es/meta.mjs +220 -220
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -7,7 +7,7 @@ import { transformRESTTimestampToSDKTimestamp } from "@wix/sdk-runtime/transform
|
|
|
7
7
|
import { transformSDKFieldMaskToRESTFieldMask } from "@wix/sdk-runtime/transformations/field-mask";
|
|
8
8
|
import { transformPaths } from "@wix/sdk-runtime/transformations/transform-paths";
|
|
9
9
|
import { resolveUrl } from "@wix/sdk-runtime/rest-modules";
|
|
10
|
-
function
|
|
10
|
+
function resolveWixBookingsServicesV2ServicesServiceUrl(opts) {
|
|
11
11
|
const domainToMappings = {
|
|
12
12
|
"*.dev.wix-code.com": [
|
|
13
13
|
{
|
|
@@ -118,7 +118,7 @@ function resolveWixBookingsServicesV2AddOnGroupsServiceUrl(opts) {
|
|
|
118
118
|
};
|
|
119
119
|
return resolveUrl(Object.assign(opts, { domainToMappings }));
|
|
120
120
|
}
|
|
121
|
-
function
|
|
121
|
+
function resolveWixBookingsServicesV2AddOnGroupsServiceUrl(opts) {
|
|
122
122
|
const domainToMappings = {
|
|
123
123
|
"*.dev.wix-code.com": [
|
|
124
124
|
{
|
|
@@ -230,6 +230,120 @@ function resolveWixBookingsServicesV2ServicesServiceUrl(opts) {
|
|
|
230
230
|
return resolveUrl(Object.assign(opts, { domainToMappings }));
|
|
231
231
|
}
|
|
232
232
|
var PACKAGE_NAME = "@wix/auto_sdk_bookings_services";
|
|
233
|
+
function createAddOnGroup(payload) {
|
|
234
|
+
function __createAddOnGroup({ host }) {
|
|
235
|
+
const metadata = {
|
|
236
|
+
entityFqdn: "wix.bookings.services.v2.service",
|
|
237
|
+
method: "POST",
|
|
238
|
+
methodFqn: "wix.bookings.services.v2.AddOnGroupsService.CreateAddOnGroup",
|
|
239
|
+
packageName: PACKAGE_NAME,
|
|
240
|
+
url: resolveWixBookingsServicesV2AddOnGroupsServiceUrl({
|
|
241
|
+
protoPath: "/v2/services/add-on-groups/create",
|
|
242
|
+
data: payload,
|
|
243
|
+
host
|
|
244
|
+
}),
|
|
245
|
+
data: payload
|
|
246
|
+
};
|
|
247
|
+
return metadata;
|
|
248
|
+
}
|
|
249
|
+
return __createAddOnGroup;
|
|
250
|
+
}
|
|
251
|
+
function deleteAddOnGroup(payload) {
|
|
252
|
+
function __deleteAddOnGroup({ host }) {
|
|
253
|
+
const metadata = {
|
|
254
|
+
entityFqdn: "wix.bookings.services.v2.service",
|
|
255
|
+
method: "POST",
|
|
256
|
+
methodFqn: "wix.bookings.services.v2.AddOnGroupsService.DeleteAddOnGroup",
|
|
257
|
+
packageName: PACKAGE_NAME,
|
|
258
|
+
url: resolveWixBookingsServicesV2AddOnGroupsServiceUrl({
|
|
259
|
+
protoPath: "/v2/services/add-on-groups/delete",
|
|
260
|
+
data: payload,
|
|
261
|
+
host
|
|
262
|
+
}),
|
|
263
|
+
data: payload
|
|
264
|
+
};
|
|
265
|
+
return metadata;
|
|
266
|
+
}
|
|
267
|
+
return __deleteAddOnGroup;
|
|
268
|
+
}
|
|
269
|
+
function updateAddOnGroup(payload) {
|
|
270
|
+
function __updateAddOnGroup({ host }) {
|
|
271
|
+
const serializedData = transformPaths(payload, [
|
|
272
|
+
{
|
|
273
|
+
transformFn: transformSDKFieldMaskToRESTFieldMask,
|
|
274
|
+
paths: [{ path: "mask" }]
|
|
275
|
+
}
|
|
276
|
+
]);
|
|
277
|
+
const metadata = {
|
|
278
|
+
entityFqdn: "wix.bookings.services.v2.service",
|
|
279
|
+
method: "POST",
|
|
280
|
+
methodFqn: "wix.bookings.services.v2.AddOnGroupsService.UpdateAddOnGroup",
|
|
281
|
+
packageName: PACKAGE_NAME,
|
|
282
|
+
url: resolveWixBookingsServicesV2AddOnGroupsServiceUrl({
|
|
283
|
+
protoPath: "/v2/services/add-on-groups/update",
|
|
284
|
+
data: serializedData,
|
|
285
|
+
host
|
|
286
|
+
}),
|
|
287
|
+
data: serializedData
|
|
288
|
+
};
|
|
289
|
+
return metadata;
|
|
290
|
+
}
|
|
291
|
+
return __updateAddOnGroup;
|
|
292
|
+
}
|
|
293
|
+
function listAddOnGroupsByServiceId(payload) {
|
|
294
|
+
function __listAddOnGroupsByServiceId({ host }) {
|
|
295
|
+
const metadata = {
|
|
296
|
+
entityFqdn: "wix.bookings.services.v2.service",
|
|
297
|
+
method: "POST",
|
|
298
|
+
methodFqn: "wix.bookings.services.v2.AddOnGroupsService.ListAddOnGroupsByServiceId",
|
|
299
|
+
packageName: PACKAGE_NAME,
|
|
300
|
+
url: resolveWixBookingsServicesV2AddOnGroupsServiceUrl({
|
|
301
|
+
protoPath: "/v2/services/add-on-groups/list-add-on-groups-by-service-id",
|
|
302
|
+
data: payload,
|
|
303
|
+
host
|
|
304
|
+
}),
|
|
305
|
+
data: payload
|
|
306
|
+
};
|
|
307
|
+
return metadata;
|
|
308
|
+
}
|
|
309
|
+
return __listAddOnGroupsByServiceId;
|
|
310
|
+
}
|
|
311
|
+
function setAddOnsForGroup(payload) {
|
|
312
|
+
function __setAddOnsForGroup({ host }) {
|
|
313
|
+
const metadata = {
|
|
314
|
+
entityFqdn: "wix.bookings.services.v2.service",
|
|
315
|
+
method: "POST",
|
|
316
|
+
methodFqn: "wix.bookings.services.v2.AddOnGroupsService.SetAddOnsForGroup",
|
|
317
|
+
packageName: PACKAGE_NAME,
|
|
318
|
+
url: resolveWixBookingsServicesV2AddOnGroupsServiceUrl({
|
|
319
|
+
protoPath: "/v2/services/add-on-groups/set-add-ons-for-group",
|
|
320
|
+
data: payload,
|
|
321
|
+
host
|
|
322
|
+
}),
|
|
323
|
+
data: payload
|
|
324
|
+
};
|
|
325
|
+
return metadata;
|
|
326
|
+
}
|
|
327
|
+
return __setAddOnsForGroup;
|
|
328
|
+
}
|
|
329
|
+
function validateAddOnsSelection(payload) {
|
|
330
|
+
function __validateAddOnsSelection({ host }) {
|
|
331
|
+
const metadata = {
|
|
332
|
+
entityFqdn: "wix.bookings.services.v2.service",
|
|
333
|
+
method: "POST",
|
|
334
|
+
methodFqn: "wix.bookings.services.v2.AddOnGroupsService.ValidateAddOnsSelection",
|
|
335
|
+
packageName: PACKAGE_NAME,
|
|
336
|
+
url: resolveWixBookingsServicesV2AddOnGroupsServiceUrl({
|
|
337
|
+
protoPath: "/v2/services/add-on-groups/validate-add-ons-selection",
|
|
338
|
+
data: payload,
|
|
339
|
+
host
|
|
340
|
+
}),
|
|
341
|
+
data: payload
|
|
342
|
+
};
|
|
343
|
+
return metadata;
|
|
344
|
+
}
|
|
345
|
+
return __validateAddOnsSelection;
|
|
346
|
+
}
|
|
233
347
|
function createService(payload) {
|
|
234
348
|
function __createService({ host }) {
|
|
235
349
|
const serializedData = transformPaths(payload, [
|
|
@@ -1513,122 +1627,116 @@ function cloneService(payload) {
|
|
|
1513
1627
|
}
|
|
1514
1628
|
return __cloneService;
|
|
1515
1629
|
}
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
}
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1630
|
+
|
|
1631
|
+
// src/bookings-services-v2-service-services.meta.ts
|
|
1632
|
+
function createAddOnGroup2() {
|
|
1633
|
+
const payload = {};
|
|
1634
|
+
const getRequestOptions = createAddOnGroup(payload);
|
|
1635
|
+
const getUrl = (context) => {
|
|
1636
|
+
const { url } = getRequestOptions(context);
|
|
1637
|
+
return url;
|
|
1638
|
+
};
|
|
1639
|
+
return {
|
|
1640
|
+
getUrl,
|
|
1641
|
+
httpMethod: "POST",
|
|
1642
|
+
path: "/v2/services/add-on-groups/create",
|
|
1643
|
+
pathParams: {},
|
|
1644
|
+
__requestType: null,
|
|
1645
|
+
__originalRequestType: null,
|
|
1646
|
+
__responseType: null,
|
|
1647
|
+
__originalResponseType: null
|
|
1648
|
+
};
|
|
1533
1649
|
}
|
|
1534
|
-
function
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1650
|
+
function deleteAddOnGroup2() {
|
|
1651
|
+
const payload = {};
|
|
1652
|
+
const getRequestOptions = deleteAddOnGroup(payload);
|
|
1653
|
+
const getUrl = (context) => {
|
|
1654
|
+
const { url } = getRequestOptions(context);
|
|
1655
|
+
return url;
|
|
1656
|
+
};
|
|
1657
|
+
return {
|
|
1658
|
+
getUrl,
|
|
1659
|
+
httpMethod: "POST",
|
|
1660
|
+
path: "/v2/services/add-on-groups/delete",
|
|
1661
|
+
pathParams: {},
|
|
1662
|
+
__requestType: null,
|
|
1663
|
+
__originalRequestType: null,
|
|
1664
|
+
__responseType: null,
|
|
1665
|
+
__originalResponseType: null
|
|
1666
|
+
};
|
|
1551
1667
|
}
|
|
1552
|
-
function
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
}),
|
|
1570
|
-
data: serializedData
|
|
1571
|
-
};
|
|
1572
|
-
return metadata;
|
|
1573
|
-
}
|
|
1574
|
-
return __updateAddOnGroup;
|
|
1668
|
+
function updateAddOnGroup2() {
|
|
1669
|
+
const payload = {};
|
|
1670
|
+
const getRequestOptions = updateAddOnGroup(payload);
|
|
1671
|
+
const getUrl = (context) => {
|
|
1672
|
+
const { url } = getRequestOptions(context);
|
|
1673
|
+
return url;
|
|
1674
|
+
};
|
|
1675
|
+
return {
|
|
1676
|
+
getUrl,
|
|
1677
|
+
httpMethod: "POST",
|
|
1678
|
+
path: "/v2/services/add-on-groups/update",
|
|
1679
|
+
pathParams: {},
|
|
1680
|
+
__requestType: null,
|
|
1681
|
+
__originalRequestType: null,
|
|
1682
|
+
__responseType: null,
|
|
1683
|
+
__originalResponseType: null
|
|
1684
|
+
};
|
|
1575
1685
|
}
|
|
1576
|
-
function
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1686
|
+
function listAddOnGroupsByServiceId2() {
|
|
1687
|
+
const payload = {};
|
|
1688
|
+
const getRequestOptions = listAddOnGroupsByServiceId(payload);
|
|
1689
|
+
const getUrl = (context) => {
|
|
1690
|
+
const { url } = getRequestOptions(context);
|
|
1691
|
+
return url;
|
|
1692
|
+
};
|
|
1693
|
+
return {
|
|
1694
|
+
getUrl,
|
|
1695
|
+
httpMethod: "POST",
|
|
1696
|
+
path: "/v2/services/add-on-groups/list-add-on-groups-by-service-id",
|
|
1697
|
+
pathParams: {},
|
|
1698
|
+
__requestType: null,
|
|
1699
|
+
__originalRequestType: null,
|
|
1700
|
+
__responseType: null,
|
|
1701
|
+
__originalResponseType: null
|
|
1702
|
+
};
|
|
1593
1703
|
}
|
|
1594
|
-
function
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1704
|
+
function setAddOnsForGroup2() {
|
|
1705
|
+
const payload = {};
|
|
1706
|
+
const getRequestOptions = setAddOnsForGroup(payload);
|
|
1707
|
+
const getUrl = (context) => {
|
|
1708
|
+
const { url } = getRequestOptions(context);
|
|
1709
|
+
return url;
|
|
1710
|
+
};
|
|
1711
|
+
return {
|
|
1712
|
+
getUrl,
|
|
1713
|
+
httpMethod: "POST",
|
|
1714
|
+
path: "/v2/services/add-on-groups/set-add-ons-for-group",
|
|
1715
|
+
pathParams: {},
|
|
1716
|
+
__requestType: null,
|
|
1717
|
+
__originalRequestType: null,
|
|
1718
|
+
__responseType: null,
|
|
1719
|
+
__originalResponseType: null
|
|
1720
|
+
};
|
|
1611
1721
|
}
|
|
1612
|
-
function
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1722
|
+
function validateAddOnsSelection2() {
|
|
1723
|
+
const payload = {};
|
|
1724
|
+
const getRequestOptions = validateAddOnsSelection(payload);
|
|
1725
|
+
const getUrl = (context) => {
|
|
1726
|
+
const { url } = getRequestOptions(context);
|
|
1727
|
+
return url;
|
|
1728
|
+
};
|
|
1729
|
+
return {
|
|
1730
|
+
getUrl,
|
|
1731
|
+
httpMethod: "POST",
|
|
1732
|
+
path: "/v2/services/add-on-groups/validate-add-ons-selection",
|
|
1733
|
+
pathParams: {},
|
|
1734
|
+
__requestType: null,
|
|
1735
|
+
__originalRequestType: null,
|
|
1736
|
+
__responseType: null,
|
|
1737
|
+
__originalResponseType: null
|
|
1738
|
+
};
|
|
1629
1739
|
}
|
|
1630
|
-
|
|
1631
|
-
// src/bookings-services-v2-service-services.meta.ts
|
|
1632
1740
|
function createService2() {
|
|
1633
1741
|
const payload = {};
|
|
1634
1742
|
const getRequestOptions = createService(payload);
|
|
@@ -2029,114 +2137,6 @@ function cloneService2() {
|
|
|
2029
2137
|
__originalResponseType: null
|
|
2030
2138
|
};
|
|
2031
2139
|
}
|
|
2032
|
-
function createAddOnGroup2() {
|
|
2033
|
-
const payload = {};
|
|
2034
|
-
const getRequestOptions = createAddOnGroup(payload);
|
|
2035
|
-
const getUrl = (context) => {
|
|
2036
|
-
const { url } = getRequestOptions(context);
|
|
2037
|
-
return url;
|
|
2038
|
-
};
|
|
2039
|
-
return {
|
|
2040
|
-
getUrl,
|
|
2041
|
-
httpMethod: "POST",
|
|
2042
|
-
path: "/v2/services/add-on-groups/create",
|
|
2043
|
-
pathParams: {},
|
|
2044
|
-
__requestType: null,
|
|
2045
|
-
__originalRequestType: null,
|
|
2046
|
-
__responseType: null,
|
|
2047
|
-
__originalResponseType: null
|
|
2048
|
-
};
|
|
2049
|
-
}
|
|
2050
|
-
function deleteAddOnGroup2() {
|
|
2051
|
-
const payload = {};
|
|
2052
|
-
const getRequestOptions = deleteAddOnGroup(payload);
|
|
2053
|
-
const getUrl = (context) => {
|
|
2054
|
-
const { url } = getRequestOptions(context);
|
|
2055
|
-
return url;
|
|
2056
|
-
};
|
|
2057
|
-
return {
|
|
2058
|
-
getUrl,
|
|
2059
|
-
httpMethod: "POST",
|
|
2060
|
-
path: "/v2/services/add-on-groups/delete",
|
|
2061
|
-
pathParams: {},
|
|
2062
|
-
__requestType: null,
|
|
2063
|
-
__originalRequestType: null,
|
|
2064
|
-
__responseType: null,
|
|
2065
|
-
__originalResponseType: null
|
|
2066
|
-
};
|
|
2067
|
-
}
|
|
2068
|
-
function updateAddOnGroup2() {
|
|
2069
|
-
const payload = {};
|
|
2070
|
-
const getRequestOptions = updateAddOnGroup(payload);
|
|
2071
|
-
const getUrl = (context) => {
|
|
2072
|
-
const { url } = getRequestOptions(context);
|
|
2073
|
-
return url;
|
|
2074
|
-
};
|
|
2075
|
-
return {
|
|
2076
|
-
getUrl,
|
|
2077
|
-
httpMethod: "POST",
|
|
2078
|
-
path: "/v2/services/add-on-groups/update",
|
|
2079
|
-
pathParams: {},
|
|
2080
|
-
__requestType: null,
|
|
2081
|
-
__originalRequestType: null,
|
|
2082
|
-
__responseType: null,
|
|
2083
|
-
__originalResponseType: null
|
|
2084
|
-
};
|
|
2085
|
-
}
|
|
2086
|
-
function listAddOnGroupsByServiceId2() {
|
|
2087
|
-
const payload = {};
|
|
2088
|
-
const getRequestOptions = listAddOnGroupsByServiceId(payload);
|
|
2089
|
-
const getUrl = (context) => {
|
|
2090
|
-
const { url } = getRequestOptions(context);
|
|
2091
|
-
return url;
|
|
2092
|
-
};
|
|
2093
|
-
return {
|
|
2094
|
-
getUrl,
|
|
2095
|
-
httpMethod: "POST",
|
|
2096
|
-
path: "/v2/services/add-on-groups/list-add-on-groups-by-service-id",
|
|
2097
|
-
pathParams: {},
|
|
2098
|
-
__requestType: null,
|
|
2099
|
-
__originalRequestType: null,
|
|
2100
|
-
__responseType: null,
|
|
2101
|
-
__originalResponseType: null
|
|
2102
|
-
};
|
|
2103
|
-
}
|
|
2104
|
-
function setAddOnsForGroup2() {
|
|
2105
|
-
const payload = {};
|
|
2106
|
-
const getRequestOptions = setAddOnsForGroup(payload);
|
|
2107
|
-
const getUrl = (context) => {
|
|
2108
|
-
const { url } = getRequestOptions(context);
|
|
2109
|
-
return url;
|
|
2110
|
-
};
|
|
2111
|
-
return {
|
|
2112
|
-
getUrl,
|
|
2113
|
-
httpMethod: "POST",
|
|
2114
|
-
path: "/v2/services/add-on-groups/set-add-ons-for-group",
|
|
2115
|
-
pathParams: {},
|
|
2116
|
-
__requestType: null,
|
|
2117
|
-
__originalRequestType: null,
|
|
2118
|
-
__responseType: null,
|
|
2119
|
-
__originalResponseType: null
|
|
2120
|
-
};
|
|
2121
|
-
}
|
|
2122
|
-
function validateAddOnsSelection2() {
|
|
2123
|
-
const payload = {};
|
|
2124
|
-
const getRequestOptions = validateAddOnsSelection(payload);
|
|
2125
|
-
const getUrl = (context) => {
|
|
2126
|
-
const { url } = getRequestOptions(context);
|
|
2127
|
-
return url;
|
|
2128
|
-
};
|
|
2129
|
-
return {
|
|
2130
|
-
getUrl,
|
|
2131
|
-
httpMethod: "POST",
|
|
2132
|
-
path: "/v2/services/add-on-groups/validate-add-ons-selection",
|
|
2133
|
-
pathParams: {},
|
|
2134
|
-
__requestType: null,
|
|
2135
|
-
__originalRequestType: null,
|
|
2136
|
-
__responseType: null,
|
|
2137
|
-
__originalResponseType: null
|
|
2138
|
-
};
|
|
2139
|
-
}
|
|
2140
2140
|
export {
|
|
2141
2141
|
bulkCreateServices2 as bulkCreateServices,
|
|
2142
2142
|
bulkDeleteServices2 as bulkDeleteServices,
|