@wix/auto_sdk_email-marketing_campaigns 1.0.28 → 1.0.29
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 +36 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.js +36 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.js +36 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +36 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.mjs +36 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.mjs +36 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +36 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.js +36 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.js +36 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +36 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.mjs +36 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.mjs +36 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -126,12 +126,20 @@ function resolveWixEmailmarketingApiV1CampaignServiceUrl(opts) {
|
|
|
126
126
|
{
|
|
127
127
|
srcPath: "/_api/shoutout/v1/campaigns",
|
|
128
128
|
destPath: "/v1/campaigns"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
srcPath: "/email-marketing/v1/identify-sender-address",
|
|
132
|
+
destPath: "/v1/identify-sender-address"
|
|
129
133
|
}
|
|
130
134
|
],
|
|
131
135
|
"www.wixapis.com": [
|
|
132
136
|
{
|
|
133
137
|
srcPath: "/email-marketing/v1/campaigns",
|
|
134
138
|
destPath: "/v1/campaigns"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
srcPath: "/email-marketing/v1/identify-sender-address",
|
|
142
|
+
destPath: "/v1/identify-sender-address"
|
|
135
143
|
}
|
|
136
144
|
],
|
|
137
145
|
"www._base_domain_": [
|
|
@@ -145,6 +153,16 @@ function resolveWixEmailmarketingApiV1CampaignServiceUrl(opts) {
|
|
|
145
153
|
srcPath: "/_api/shoutout/v1/campaigns",
|
|
146
154
|
destPath: "/v1/campaigns"
|
|
147
155
|
}
|
|
156
|
+
],
|
|
157
|
+
"*.dev.wix-code.com": [
|
|
158
|
+
{
|
|
159
|
+
srcPath: "/email-marketing/v1/campaigns",
|
|
160
|
+
destPath: "/v1/campaigns"
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
srcPath: "/email-marketing/v1/identify-sender-address",
|
|
164
|
+
destPath: "/v1/identify-sender-address"
|
|
165
|
+
}
|
|
148
166
|
]
|
|
149
167
|
};
|
|
150
168
|
return (0, import_rest_modules2.resolveUrl)(Object.assign(opts, { domainToMappings }));
|
|
@@ -201,12 +219,20 @@ function resolveWixEmailmarketingApiV1CampaignStatisticsServiceUrl(opts) {
|
|
|
201
219
|
{
|
|
202
220
|
srcPath: "/_api/shoutout/v1/campaigns",
|
|
203
221
|
destPath: "/v1/campaigns"
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
srcPath: "/email-marketing/v1/identify-sender-address",
|
|
225
|
+
destPath: "/v1/identify-sender-address"
|
|
204
226
|
}
|
|
205
227
|
],
|
|
206
228
|
"www.wixapis.com": [
|
|
207
229
|
{
|
|
208
230
|
srcPath: "/email-marketing/v1/campaigns",
|
|
209
231
|
destPath: "/v1/campaigns"
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
srcPath: "/email-marketing/v1/identify-sender-address",
|
|
235
|
+
destPath: "/v1/identify-sender-address"
|
|
210
236
|
}
|
|
211
237
|
],
|
|
212
238
|
"www._base_domain_": [
|
|
@@ -220,6 +246,16 @@ function resolveWixEmailmarketingApiV1CampaignStatisticsServiceUrl(opts) {
|
|
|
220
246
|
srcPath: "/_api/shoutout/v1/campaigns",
|
|
221
247
|
destPath: "/v1/campaigns"
|
|
222
248
|
}
|
|
249
|
+
],
|
|
250
|
+
"*.dev.wix-code.com": [
|
|
251
|
+
{
|
|
252
|
+
srcPath: "/email-marketing/v1/campaigns",
|
|
253
|
+
destPath: "/v1/campaigns"
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
srcPath: "/email-marketing/v1/identify-sender-address",
|
|
257
|
+
destPath: "/v1/identify-sender-address"
|
|
258
|
+
}
|
|
223
259
|
]
|
|
224
260
|
};
|
|
225
261
|
return (0, import_rest_modules2.resolveUrl)(Object.assign(opts, { domainToMappings }));
|