@wix/auto_sdk_pricing-plans_orders 1.0.78 → 1.0.79

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.
@@ -18,274 +18,15 @@ import { transformRESTTimestampToSDKTimestamp } from "@wix/sdk-runtime/transform
18
18
  import { transformPaths } from "@wix/sdk-runtime/transformations/transform-paths";
19
19
  import { resolveUrl } from "@wix/sdk-runtime/rest-modules";
20
20
  function resolveComWixpressMembershipV2OrdersCheckoutServiceUrl(opts) {
21
- const domainToMappings = {
22
- "api._api_base_domain_": [
23
- {
24
- srcPath: "/pricing-plans-checkout-proxy",
25
- destPath: ""
26
- }
27
- ],
28
- "*.dev.wix-code.com": [
29
- {
30
- srcPath: "/_api/paid-plans/v2/checkout",
31
- destPath: "/v2/checkout"
32
- }
33
- ],
34
- "*.pub.wix-code.com": [
35
- {
36
- srcPath: "/_api/paid-plans/v2/checkout",
37
- destPath: "/v2/checkout"
38
- }
39
- ],
40
- "*.wixapps.net": [
41
- {
42
- srcPath: "/_api/paid-plans/v2/checkout",
43
- destPath: "/v2/checkout"
44
- }
45
- ],
46
- _: [
47
- {
48
- srcPath: "/pricing-plans/v2/checkout",
49
- destPath: "/v2/checkout"
50
- },
51
- {
52
- srcPath: "/_api/paid-plans/v2/checkout",
53
- destPath: "/v2/checkout"
54
- },
55
- {
56
- srcPath: "/_api/pricing-plans/v2/checkout",
57
- destPath: "/v2/checkout"
58
- }
59
- ],
60
- "editor-flow.wixapps.net": [
61
- {
62
- srcPath: "/_api/paid-plans/v2/checkout",
63
- destPath: "/v2/checkout"
64
- }
65
- ],
66
- "editor._base_domain_": [
67
- {
68
- srcPath: "/_api/paid-plans/v2/checkout",
69
- destPath: "/v2/checkout"
70
- }
71
- ],
72
- "blocks._base_domain_": [
73
- {
74
- srcPath: "/_api/paid-plans/v2/checkout",
75
- destPath: "/v2/checkout"
76
- }
77
- ],
78
- "create.editorx": [
79
- {
80
- srcPath: "/_api/paid-plans/v2/checkout",
81
- destPath: "/v2/checkout"
82
- }
83
- ],
84
- "editor.wixapps.net": [
85
- {
86
- srcPath: "/_api/paid-plans/v2/checkout",
87
- destPath: "/v2/checkout"
88
- }
89
- ],
90
- "forums._base_domain_": [
91
- {
92
- srcPath: "/_api/paid-plans/v2/checkout",
93
- destPath: "/v2/checkout"
94
- }
95
- ],
96
- "forums.wixapps.net": [
97
- {
98
- srcPath: "/_api/paid-plans/v2/checkout",
99
- destPath: "/v2/checkout"
100
- }
101
- ],
102
- "manage._base_domain_": [
103
- {
104
- srcPath: "/_api/pricing-plans/v2/checkout",
105
- destPath: "/v2/checkout"
106
- },
107
- {
108
- srcPath: "/_api/paid-plans/v2/checkout",
109
- destPath: "/v2/checkout"
110
- },
111
- {
112
- srcPath: "/pricing-plans/v2/checkout",
113
- destPath: "/v2/checkout"
114
- }
115
- ],
116
- "www._base_domain_": [
117
- {
118
- srcPath: "/_api/paid-plans/v2/checkout",
119
- destPath: "/v2/checkout"
120
- }
121
- ],
122
- "www.wixapis.com": [
123
- {
124
- srcPath: "/pricing-plans/v2/checkout",
125
- destPath: "/v2/checkout"
126
- }
127
- ]
128
- };
21
+ const domainToMappings = {};
129
22
  return resolveUrl(Object.assign(opts, { domainToMappings }));
130
23
  }
131
24
  function resolveComWixpressMembershipV2OrdersMemberMemberOrdersServiceUrl(opts) {
132
- const domainToMappings = {
133
- "api._api_base_domain_": [
134
- {
135
- srcPath: "/member-orders-service-proxy",
136
- destPath: ""
137
- }
138
- ],
139
- "*.dev.wix-code.com": [
140
- {
141
- srcPath: "/_api/pricing-plans-member-orders/v2/member/orders",
142
- destPath: "/v2/member/orders"
143
- },
144
- {
145
- srcPath: "/_api/pricing-plans/v2/member/orders",
146
- destPath: "/v2/member/orders"
147
- }
148
- ],
149
- "*.pub.wix-code.com": [
150
- {
151
- srcPath: "/_api/pricing-plans-member-orders/v2/member/orders",
152
- destPath: "/v2/member/orders"
153
- },
154
- {
155
- srcPath: "/_api/pricing-plans/v2/member/orders",
156
- destPath: "/v2/member/orders"
157
- }
158
- ],
159
- _: [
160
- {
161
- srcPath: "/_api/pricing-plans/v2/member/orders",
162
- destPath: "/v2/member/orders"
163
- }
164
- ],
165
- "editor.wixapps.net": [
166
- {
167
- srcPath: "/_api/pricing-plans/v2/member/orders",
168
- destPath: "/v2/member/orders"
169
- }
170
- ],
171
- "manage._base_domain_": [
172
- {
173
- srcPath: "/_api/pricing-plans/v2/member/orders",
174
- destPath: "/v2/member/orders"
175
- }
176
- ],
177
- "www._base_domain_": [
178
- {
179
- srcPath: "/_api/pricing-plans/v2/member/orders",
180
- destPath: "/v2/member/orders"
181
- }
182
- ],
183
- "www.wixapis.com": [
184
- {
185
- srcPath: "/pricing-plans/v2/member/orders",
186
- destPath: "/v2/member/orders"
187
- }
188
- ]
189
- };
25
+ const domainToMappings = {};
190
26
  return resolveUrl(Object.assign(opts, { domainToMappings }));
191
27
  }
192
28
  function resolveComWixpressMembershipV2OrdersOrderManagementServiceUrl(opts) {
193
- const domainToMappings = {
194
- "api._api_base_domain_": [
195
- {
196
- srcPath: "/order-management-service-proxy",
197
- destPath: ""
198
- }
199
- ],
200
- "*.dev.wix-code.com": [
201
- {
202
- srcPath: "/_api/paid-plans/v2/orders",
203
- destPath: "/v2/orders"
204
- }
205
- ],
206
- "*.pub.wix-code.com": [
207
- {
208
- srcPath: "/_api/paid-plans/v2/orders",
209
- destPath: "/v2/orders"
210
- }
211
- ],
212
- "*.wixapps.net": [
213
- {
214
- srcPath: "/_api/paid-plans/v2/orders",
215
- destPath: "/v2/orders"
216
- }
217
- ],
218
- _: [
219
- {
220
- srcPath: "/_api/paid-plans/v2/orders",
221
- destPath: "/v2/orders"
222
- }
223
- ],
224
- "editor-flow.wixapps.net": [
225
- {
226
- srcPath: "/_api/paid-plans/v2/orders",
227
- destPath: "/v2/orders"
228
- }
229
- ],
230
- "editor._base_domain_": [
231
- {
232
- srcPath: "/_api/paid-plans/v2/orders",
233
- destPath: "/v2/orders"
234
- }
235
- ],
236
- "blocks._base_domain_": [
237
- {
238
- srcPath: "/_api/paid-plans/v2/orders",
239
- destPath: "/v2/orders"
240
- }
241
- ],
242
- "create.editorx": [
243
- {
244
- srcPath: "/_api/paid-plans/v2/orders",
245
- destPath: "/v2/orders"
246
- }
247
- ],
248
- "editor.wixapps.net": [
249
- {
250
- srcPath: "/_api/paid-plans/v2/orders",
251
- destPath: "/v2/orders"
252
- }
253
- ],
254
- "forums._base_domain_": [
255
- {
256
- srcPath: "/_api/paid-plans/v2/orders",
257
- destPath: "/v2/orders"
258
- }
259
- ],
260
- "forums.wixapps.net": [
261
- {
262
- srcPath: "/_api/paid-plans/v2/orders",
263
- destPath: "/v2/orders"
264
- }
265
- ],
266
- "manage._base_domain_": [
267
- {
268
- srcPath: "/_api/pricing-plans/v2/orders",
269
- destPath: "/v2/orders"
270
- },
271
- {
272
- srcPath: "/_api/paid-plans/v2/orders",
273
- destPath: "/v2/orders"
274
- }
275
- ],
276
- "www._base_domain_": [
277
- {
278
- srcPath: "/_api/paid-plans/v2/orders",
279
- destPath: "/v2/orders"
280
- }
281
- ],
282
- "www.wixapis.com": [
283
- {
284
- srcPath: "/pricing-plans/v2/orders",
285
- destPath: "/v2/orders"
286
- }
287
- ]
288
- };
29
+ const domainToMappings = {};
289
30
  return resolveUrl(Object.assign(opts, { domainToMappings }));
290
31
  }
291
32
  var PACKAGE_NAME = "@wix/auto_sdk_pricing-plans_orders";