@wix/auto_sdk_bookings_services 1.0.179 → 1.0.181

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.
@@ -16,11 +16,233 @@ import { transformSDKFieldMaskToRESTFieldMask } from "@wix/sdk-runtime/transform
16
16
  import { transformPaths } from "@wix/sdk-runtime/transformations/transform-paths";
17
17
  import { resolveUrl } from "@wix/sdk-runtime/rest-modules";
18
18
  function resolveWixBookingsServicesV2AddOnGroupsServiceUrl(opts) {
19
- const domainToMappings = {};
19
+ const domainToMappings = {
20
+ "*.dev.wix-code.com": [
21
+ {
22
+ srcPath: "/_api/services-2",
23
+ destPath: ""
24
+ },
25
+ {
26
+ srcPath: "/_api/bookings/v2/services",
27
+ destPath: "/v2/services"
28
+ }
29
+ ],
30
+ "www.wixapis.com": [
31
+ {
32
+ srcPath: "/_api/bookings/v2/services",
33
+ destPath: "/v2/services"
34
+ },
35
+ {
36
+ srcPath: "/bookings/v2/services",
37
+ destPath: "/v2/services"
38
+ },
39
+ {
40
+ srcPath: "/bookings/v2/bulk/services",
41
+ destPath: "/v2/bulk/services"
42
+ },
43
+ {
44
+ srcPath: "/bookings/services/v2/bulk/services",
45
+ destPath: "/v2/bulk/services"
46
+ }
47
+ ],
48
+ "manage._base_domain_": [
49
+ {
50
+ srcPath: "/_api/bookings/v2/services",
51
+ destPath: "/v2/services"
52
+ },
53
+ {
54
+ srcPath: "/_api/bookings/v2/bulk/services",
55
+ destPath: "/v2/bulk/services"
56
+ }
57
+ ],
58
+ "editor._base_domain_": [
59
+ {
60
+ srcPath: "/_api/bookings/v2/services",
61
+ destPath: "/v2/services"
62
+ },
63
+ {
64
+ srcPath: "/_api/bookings/v2/bulk/services",
65
+ destPath: "/v2/bulk/services"
66
+ }
67
+ ],
68
+ "blocks._base_domain_": [
69
+ {
70
+ srcPath: "/_api/bookings/v2/services",
71
+ destPath: "/v2/services"
72
+ },
73
+ {
74
+ srcPath: "/_api/bookings/v2/bulk/services",
75
+ destPath: "/v2/bulk/services"
76
+ }
77
+ ],
78
+ "create.editorx": [
79
+ {
80
+ srcPath: "/_api/bookings/v2/services",
81
+ destPath: "/v2/services"
82
+ },
83
+ {
84
+ srcPath: "/_api/bookings/v2/bulk/services",
85
+ destPath: "/v2/bulk/services"
86
+ }
87
+ ],
88
+ _: [
89
+ {
90
+ srcPath: "/_api/bookings/v2/services",
91
+ destPath: "/v2/services"
92
+ }
93
+ ],
94
+ "www._base_domain_": [
95
+ {
96
+ srcPath: "/_api/bookings/v2/services",
97
+ destPath: "/v2/services"
98
+ }
99
+ ],
100
+ "bo._base_domain_": [
101
+ {
102
+ srcPath: "/_api/bookings/v2/services",
103
+ destPath: "/v2/services"
104
+ }
105
+ ],
106
+ "wixbo.ai": [
107
+ {
108
+ srcPath: "/_api/bookings/v2/services",
109
+ destPath: "/v2/services"
110
+ }
111
+ ],
112
+ "wix-bo.com": [
113
+ {
114
+ srcPath: "/_api/bookings/v2/services",
115
+ destPath: "/v2/services"
116
+ }
117
+ ],
118
+ "editor.wixapps.net": [
119
+ {
120
+ srcPath: "/_api/bookings/v2/services",
121
+ destPath: "/v2/services"
122
+ }
123
+ ],
124
+ "api._api_base_domain_": [
125
+ {
126
+ srcPath: "/services-2",
127
+ destPath: ""
128
+ }
129
+ ]
130
+ };
20
131
  return resolveUrl(Object.assign(opts, { domainToMappings }));
21
132
  }
22
133
  function resolveWixBookingsServicesV2ServicesServiceUrl(opts) {
23
- const domainToMappings = {};
134
+ const domainToMappings = {
135
+ "*.dev.wix-code.com": [
136
+ {
137
+ srcPath: "/_api/services-2",
138
+ destPath: ""
139
+ },
140
+ {
141
+ srcPath: "/_api/bookings/v2/services",
142
+ destPath: "/v2/services"
143
+ }
144
+ ],
145
+ "www.wixapis.com": [
146
+ {
147
+ srcPath: "/_api/bookings/v2/services",
148
+ destPath: "/v2/services"
149
+ },
150
+ {
151
+ srcPath: "/bookings/v2/services",
152
+ destPath: "/v2/services"
153
+ },
154
+ {
155
+ srcPath: "/bookings/v2/bulk/services",
156
+ destPath: "/v2/bulk/services"
157
+ },
158
+ {
159
+ srcPath: "/bookings/services/v2/bulk/services",
160
+ destPath: "/v2/bulk/services"
161
+ }
162
+ ],
163
+ "manage._base_domain_": [
164
+ {
165
+ srcPath: "/_api/bookings/v2/services",
166
+ destPath: "/v2/services"
167
+ },
168
+ {
169
+ srcPath: "/_api/bookings/v2/bulk/services",
170
+ destPath: "/v2/bulk/services"
171
+ }
172
+ ],
173
+ "editor._base_domain_": [
174
+ {
175
+ srcPath: "/_api/bookings/v2/services",
176
+ destPath: "/v2/services"
177
+ },
178
+ {
179
+ srcPath: "/_api/bookings/v2/bulk/services",
180
+ destPath: "/v2/bulk/services"
181
+ }
182
+ ],
183
+ "blocks._base_domain_": [
184
+ {
185
+ srcPath: "/_api/bookings/v2/services",
186
+ destPath: "/v2/services"
187
+ },
188
+ {
189
+ srcPath: "/_api/bookings/v2/bulk/services",
190
+ destPath: "/v2/bulk/services"
191
+ }
192
+ ],
193
+ "create.editorx": [
194
+ {
195
+ srcPath: "/_api/bookings/v2/services",
196
+ destPath: "/v2/services"
197
+ },
198
+ {
199
+ srcPath: "/_api/bookings/v2/bulk/services",
200
+ destPath: "/v2/bulk/services"
201
+ }
202
+ ],
203
+ _: [
204
+ {
205
+ srcPath: "/_api/bookings/v2/services",
206
+ destPath: "/v2/services"
207
+ }
208
+ ],
209
+ "www._base_domain_": [
210
+ {
211
+ srcPath: "/_api/bookings/v2/services",
212
+ destPath: "/v2/services"
213
+ }
214
+ ],
215
+ "bo._base_domain_": [
216
+ {
217
+ srcPath: "/_api/bookings/v2/services",
218
+ destPath: "/v2/services"
219
+ }
220
+ ],
221
+ "wixbo.ai": [
222
+ {
223
+ srcPath: "/_api/bookings/v2/services",
224
+ destPath: "/v2/services"
225
+ }
226
+ ],
227
+ "wix-bo.com": [
228
+ {
229
+ srcPath: "/_api/bookings/v2/services",
230
+ destPath: "/v2/services"
231
+ }
232
+ ],
233
+ "editor.wixapps.net": [
234
+ {
235
+ srcPath: "/_api/bookings/v2/services",
236
+ destPath: "/v2/services"
237
+ }
238
+ ],
239
+ "api._api_base_domain_": [
240
+ {
241
+ srcPath: "/services-2",
242
+ destPath: ""
243
+ }
244
+ ]
245
+ };
24
246
  return resolveUrl(Object.assign(opts, { domainToMappings }));
25
247
  }
26
248
  var PACKAGE_NAME = "@wix/auto_sdk_bookings_services";