@umbraco-engage/backoffice 17.0.1 → 17.0.3

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.
Files changed (52) hide show
  1. package/dist/ab-testing/test/components/variant-picker/ab-testing-test-variant-picker.element.d.ts +2 -0
  2. package/dist/ab-testing/test/components/variant-picker/ab-testing-test-variant-picker.element.js +107 -84
  3. package/dist/ab-testing/test/modal/element/ab-testing-edit-variant-modal.element.d.ts +0 -1
  4. package/dist/ab-testing/test/modal/element/ab-testing-edit-variant-modal.element.js +2 -5
  5. package/dist/ab-testing/test/modal/token/ab-testing-edit-variant-modal.token.d.ts +0 -1
  6. package/dist/ab-testing/test/repository/detail/index.d.ts +1 -0
  7. package/dist/ab-testing/test/repository/detail/index.js +1 -0
  8. package/dist/ab-testing/test/workspace/ab-testing-test-workspace.context.d.ts +3 -2
  9. package/dist/ab-testing/test/workspace/ab-testing-test-workspace.context.js +34 -3
  10. package/dist/ab-testing/test/workspace/actions/schedule-test-action.js +4 -1
  11. package/dist/ab-testing/test/workspace/actions/start-test-action.js +1 -1
  12. package/dist/ab-testing/test/workspace/conditions/ab-testing-can-preview.condition.js +8 -1
  13. package/dist/ab-testing/test/workspace/entity-actions/preview-variant.action.js +7 -16
  14. package/dist/ab-testing/test/workspace/views/edit/ab-testing-test-editor.element.js +1 -1
  15. package/dist/analytics/analytics-context.d.ts +1 -0
  16. package/dist/analytics/analytics-context.js +4 -0
  17. package/dist/analytics/components/chart/analytics-chart.element.d.ts +1 -0
  18. package/dist/analytics/components/chart/analytics-chart.element.js +51 -24
  19. package/dist/analytics/components/chart/chart-dataset-generator.controller.js +1 -1
  20. package/dist/analytics/components/chart/chart-settings-generator.controller.d.ts +1 -1
  21. package/dist/analytics/components/chart/chart-settings-generator.controller.js +17 -5
  22. package/dist/analytics/components/chart/entities.d.ts +0 -1
  23. package/dist/analytics/components/chart/prefab-chart.element.js +0 -1
  24. package/dist/analytics/components/toggle/chart-toggle.element.d.ts +0 -1
  25. package/dist/analytics/components/toggle/chart-toggle.element.js +1 -8
  26. package/dist/core/components/chart/chart-base.element.js +3 -0
  27. package/dist/core/components/chart/chart.element.d.ts +1 -1
  28. package/dist/core/components/chart/chart.element.js +17 -16
  29. package/dist/core/components/chart/donut-chart.element.d.ts +1 -0
  30. package/dist/core/components/chart/donut-chart.element.js +25 -1
  31. package/dist/core/functions/date-utils.d.ts +7 -0
  32. package/dist/core/functions/date-utils.js +11 -0
  33. package/dist/core/lang/en.js +11 -1
  34. package/dist/core/variant-preview.controller.d.ts +1 -1
  35. package/dist/core/variant-preview.controller.js +7 -24
  36. package/dist/generated/client.gen.js +4 -1
  37. package/dist/generated/sdk.gen.d.ts +2 -1
  38. package/dist/generated/sdk.gen.js +816 -134
  39. package/dist/generated/types.gen.d.ts +26 -0
  40. package/dist/personalization/applied-personalization/editor-view/applied-personalization-editor-view.element.js +2 -2
  41. package/dist/personalization/context/personalization-editor-view-base.context.js +1 -1
  42. package/dist/personalization/personalized-variants/workspace/personalized-variant-workspace.context.js +1 -1
  43. package/dist/reporting/components/reporting-chart-card/reporting-chart-card.element.d.ts +8 -2
  44. package/dist/reporting/components/reporting-chart-card/reporting-chart-card.element.js +78 -16
  45. package/dist/reporting/components/segment-personalization/segment-personalization.element.js +7 -2
  46. package/dist/reporting/components/segment-personalization-goal-performance/segment-personalization-goal-performance.element.js +31 -47
  47. package/dist/reporting/components/segment-potential/segment-potential.element.js +7 -2
  48. package/dist/reporting/components/segment-selector/reporting-segment-selector.element.js +25 -11
  49. package/dist/reporting/screens/reporting-segments-screen.element.js +12 -6
  50. package/dist/tsconfig.build.tsbuildinfo +1 -1
  51. package/dist/umbraco-package.json +1 -1
  52. package/package.json +1 -1
@@ -3,21 +3,36 @@ import { client } from './client.gen.js';
3
3
  export class ABTestProjectService {
4
4
  static deleteAbTestProject(options) {
5
5
  return (options?.client ?? client).delete({
6
- security: [{ scheme: 'bearer', type: 'http' }],
6
+ security: [
7
+ {
8
+ scheme: 'bearer',
9
+ type: 'http'
10
+ }
11
+ ],
7
12
  url: '/umbraco/engage/management/api/v1/ab-test-project',
8
13
  ...options
9
14
  });
10
15
  }
11
16
  static getAbTestProject(options) {
12
17
  return (options?.client ?? client).get({
13
- security: [{ scheme: 'bearer', type: 'http' }],
18
+ security: [
19
+ {
20
+ scheme: 'bearer',
21
+ type: 'http'
22
+ }
23
+ ],
14
24
  url: '/umbraco/engage/management/api/v1/ab-test-project',
15
25
  ...options
16
26
  });
17
27
  }
18
28
  static postAbTestProject(options) {
19
29
  return (options?.client ?? client).post({
20
- security: [{ scheme: 'bearer', type: 'http' }],
30
+ security: [
31
+ {
32
+ scheme: 'bearer',
33
+ type: 'http'
34
+ }
35
+ ],
21
36
  url: '/umbraco/engage/management/api/v1/ab-test-project',
22
37
  ...options,
23
38
  headers: {
@@ -28,7 +43,12 @@ export class ABTestProjectService {
28
43
  }
29
44
  static putAbTestProject(options) {
30
45
  return (options?.client ?? client).put({
31
- security: [{ scheme: 'bearer', type: 'http' }],
46
+ security: [
47
+ {
48
+ scheme: 'bearer',
49
+ type: 'http'
50
+ }
51
+ ],
32
52
  url: '/umbraco/engage/management/api/v1/ab-test-project',
33
53
  ...options,
34
54
  headers: {
@@ -39,14 +59,24 @@ export class ABTestProjectService {
39
59
  }
40
60
  static getAbTestProjectAll(options) {
41
61
  return (options?.client ?? client).get({
42
- security: [{ scheme: 'bearer', type: 'http' }],
62
+ security: [
63
+ {
64
+ scheme: 'bearer',
65
+ type: 'http'
66
+ }
67
+ ],
43
68
  url: '/umbraco/engage/management/api/v1/ab-test-project/all',
44
69
  ...options
45
70
  });
46
71
  }
47
72
  static getAbTestProjectDetails(options) {
48
73
  return (options?.client ?? client).get({
49
- security: [{ scheme: 'bearer', type: 'http' }],
74
+ security: [
75
+ {
76
+ scheme: 'bearer',
77
+ type: 'http'
78
+ }
79
+ ],
50
80
  url: '/umbraco/engage/management/api/v1/ab-test-project/details',
51
81
  ...options
52
82
  });
@@ -55,21 +85,36 @@ export class ABTestProjectService {
55
85
  export class ABTestVariantService {
56
86
  static deleteAbTestVariant(options) {
57
87
  return (options?.client ?? client).delete({
58
- security: [{ scheme: 'bearer', type: 'http' }],
88
+ security: [
89
+ {
90
+ scheme: 'bearer',
91
+ type: 'http'
92
+ }
93
+ ],
59
94
  url: '/umbraco/engage/management/api/v1/ab-test-variant',
60
95
  ...options
61
96
  });
62
97
  }
63
98
  static getAbTestVariant(options) {
64
99
  return (options?.client ?? client).get({
65
- security: [{ scheme: 'bearer', type: 'http' }],
100
+ security: [
101
+ {
102
+ scheme: 'bearer',
103
+ type: 'http'
104
+ }
105
+ ],
66
106
  url: '/umbraco/engage/management/api/v1/ab-test-variant',
67
107
  ...options
68
108
  });
69
109
  }
70
110
  static postAbTestVariant(options) {
71
111
  return (options?.client ?? client).post({
72
- security: [{ scheme: 'bearer', type: 'http' }],
112
+ security: [
113
+ {
114
+ scheme: 'bearer',
115
+ type: 'http'
116
+ }
117
+ ],
73
118
  url: '/umbraco/engage/management/api/v1/ab-test-variant',
74
119
  ...options,
75
120
  headers: {
@@ -80,21 +125,48 @@ export class ABTestVariantService {
80
125
  }
81
126
  static getAbTestVariantAll(options) {
82
127
  return (options?.client ?? client).get({
83
- security: [{ scheme: 'bearer', type: 'http' }],
128
+ security: [
129
+ {
130
+ scheme: 'bearer',
131
+ type: 'http'
132
+ }
133
+ ],
84
134
  url: '/umbraco/engage/management/api/v1/ab-test-variant/all',
85
135
  ...options
86
136
  });
87
137
  }
138
+ static postAbTestVariantCreate(options) {
139
+ return (options?.client ?? client).post({
140
+ security: [
141
+ {
142
+ scheme: 'bearer',
143
+ type: 'http'
144
+ }
145
+ ],
146
+ url: '/umbraco/engage/management/api/v1/ab-test-variant/create',
147
+ ...options
148
+ });
149
+ }
88
150
  static postAbTestVariantDisable(options) {
89
151
  return (options?.client ?? client).post({
90
- security: [{ scheme: 'bearer', type: 'http' }],
152
+ security: [
153
+ {
154
+ scheme: 'bearer',
155
+ type: 'http'
156
+ }
157
+ ],
91
158
  url: '/umbraco/engage/management/api/v1/ab-test-variant/disable',
92
159
  ...options
93
160
  });
94
161
  }
95
162
  static getAbTestVariantSegment(options) {
96
163
  return (options?.client ?? client).get({
97
- security: [{ scheme: 'bearer', type: 'http' }],
164
+ security: [
165
+ {
166
+ scheme: 'bearer',
167
+ type: 'http'
168
+ }
169
+ ],
98
170
  url: '/umbraco/engage/management/api/v1/ab-test-variant/segment',
99
171
  ...options
100
172
  });
@@ -103,21 +175,36 @@ export class ABTestVariantService {
103
175
  export class ABTestService {
104
176
  static deleteAbTest(options) {
105
177
  return (options?.client ?? client).delete({
106
- security: [{ scheme: 'bearer', type: 'http' }],
178
+ security: [
179
+ {
180
+ scheme: 'bearer',
181
+ type: 'http'
182
+ }
183
+ ],
107
184
  url: '/umbraco/engage/management/api/v1/ab-test',
108
185
  ...options
109
186
  });
110
187
  }
111
188
  static getAbTest(options) {
112
189
  return (options?.client ?? client).get({
113
- security: [{ scheme: 'bearer', type: 'http' }],
190
+ security: [
191
+ {
192
+ scheme: 'bearer',
193
+ type: 'http'
194
+ }
195
+ ],
114
196
  url: '/umbraco/engage/management/api/v1/ab-test',
115
197
  ...options
116
198
  });
117
199
  }
118
200
  static postAbTest(options) {
119
201
  return (options?.client ?? client).post({
120
- security: [{ scheme: 'bearer', type: 'http' }],
202
+ security: [
203
+ {
204
+ scheme: 'bearer',
205
+ type: 'http'
206
+ }
207
+ ],
121
208
  url: '/umbraco/engage/management/api/v1/ab-test',
122
209
  ...options,
123
210
  headers: {
@@ -128,35 +215,60 @@ export class ABTestService {
128
215
  }
129
216
  static getAbTestAll(options) {
130
217
  return (options?.client ?? client).get({
131
- security: [{ scheme: 'bearer', type: 'http' }],
218
+ security: [
219
+ {
220
+ scheme: 'bearer',
221
+ type: 'http'
222
+ }
223
+ ],
132
224
  url: '/umbraco/engage/management/api/v1/ab-test/all',
133
225
  ...options
134
226
  });
135
227
  }
136
228
  static getAbTestEmpty(options) {
137
229
  return (options?.client ?? client).get({
138
- security: [{ scheme: 'bearer', type: 'http' }],
230
+ security: [
231
+ {
232
+ scheme: 'bearer',
233
+ type: 'http'
234
+ }
235
+ ],
139
236
  url: '/umbraco/engage/management/api/v1/ab-test/empty',
140
237
  ...options
141
238
  });
142
239
  }
143
240
  static getAbTestPage(options) {
144
241
  return (options?.client ?? client).get({
145
- security: [{ scheme: 'bearer', type: 'http' }],
242
+ security: [
243
+ {
244
+ scheme: 'bearer',
245
+ type: 'http'
246
+ }
247
+ ],
146
248
  url: '/umbraco/engage/management/api/v1/ab-test/page',
147
249
  ...options
148
250
  });
149
251
  }
150
252
  static getAbTestPreviewUrl(options) {
151
253
  return (options?.client ?? client).get({
152
- security: [{ scheme: 'bearer', type: 'http' }],
254
+ security: [
255
+ {
256
+ scheme: 'bearer',
257
+ type: 'http'
258
+ }
259
+ ],
153
260
  url: '/umbraco/engage/management/api/v1/ab-test/preview-url',
154
261
  ...options
155
262
  });
156
263
  }
157
264
  static postAbTestRuntimeIndication(options) {
158
265
  return (options?.client ?? client).post({
159
- security: [{ scheme: 'bearer', type: 'http' }],
266
+ security: [
267
+ {
268
+ scheme: 'bearer',
269
+ type: 'http'
270
+ }
271
+ ],
160
272
  url: '/umbraco/engage/management/api/v1/ab-test/runtime-indication',
161
273
  ...options,
162
274
  headers: {
@@ -167,14 +279,24 @@ export class ABTestService {
167
279
  }
168
280
  static postAbTestSegment(options) {
169
281
  return (options?.client ?? client).post({
170
- security: [{ scheme: 'bearer', type: 'http' }],
282
+ security: [
283
+ {
284
+ scheme: 'bearer',
285
+ type: 'http'
286
+ }
287
+ ],
171
288
  url: '/umbraco/engage/management/api/v1/ab-test/segment',
172
289
  ...options
173
290
  });
174
291
  }
175
292
  static postAbTestVariantDetails(options) {
176
293
  return (options?.client ?? client).post({
177
- security: [{ scheme: 'bearer', type: 'http' }],
294
+ security: [
295
+ {
296
+ scheme: 'bearer',
297
+ type: 'http'
298
+ }
299
+ ],
178
300
  url: '/umbraco/engage/management/api/v1/ab-test/variant-details',
179
301
  ...options,
180
302
  headers: {
@@ -185,7 +307,12 @@ export class ABTestService {
185
307
  }
186
308
  static getAbTestViewModel(options) {
187
309
  return (options?.client ?? client).get({
188
- security: [{ scheme: 'bearer', type: 'http' }],
310
+ security: [
311
+ {
312
+ scheme: 'bearer',
313
+ type: 'http'
314
+ }
315
+ ],
189
316
  url: '/umbraco/engage/management/api/v1/ab-test/view-model',
190
317
  ...options
191
318
  });
@@ -194,7 +321,12 @@ export class ABTestService {
194
321
  export class AddOnsService {
195
322
  static getAddOns(options) {
196
323
  return (options?.client ?? client).get({
197
- security: [{ scheme: 'bearer', type: 'http' }],
324
+ security: [
325
+ {
326
+ scheme: 'bearer',
327
+ type: 'http'
328
+ }
329
+ ],
198
330
  url: '/umbraco/engage/management/api/v1/add-ons',
199
331
  ...options
200
332
  });
@@ -203,14 +335,24 @@ export class AddOnsService {
203
335
  export class AnalyticsService {
204
336
  static getAnalyticsDistinct(options) {
205
337
  return (options?.client ?? client).get({
206
- security: [{ scheme: 'bearer', type: 'http' }],
338
+ security: [
339
+ {
340
+ scheme: 'bearer',
341
+ type: 'http'
342
+ }
343
+ ],
207
344
  url: '/umbraco/engage/management/api/v1/analytics/distinct',
208
345
  ...options
209
346
  });
210
347
  }
211
348
  static postAnalyticsQuery(options) {
212
349
  return (options?.client ?? client).post({
213
- security: [{ scheme: 'bearer', type: 'http' }],
350
+ security: [
351
+ {
352
+ scheme: 'bearer',
353
+ type: 'http'
354
+ }
355
+ ],
214
356
  url: '/umbraco/engage/management/api/v1/analytics/query',
215
357
  ...options,
216
358
  headers: {
@@ -223,14 +365,24 @@ export class AnalyticsService {
223
365
  export class AnnotationsService {
224
366
  static deleteAnnotations(options) {
225
367
  return (options?.client ?? client).delete({
226
- security: [{ scheme: 'bearer', type: 'http' }],
368
+ security: [
369
+ {
370
+ scheme: 'bearer',
371
+ type: 'http'
372
+ }
373
+ ],
227
374
  url: '/umbraco/engage/management/api/v1/annotations',
228
375
  ...options
229
376
  });
230
377
  }
231
378
  static postAnnotations(options) {
232
379
  return (options?.client ?? client).post({
233
- security: [{ scheme: 'bearer', type: 'http' }],
380
+ security: [
381
+ {
382
+ scheme: 'bearer',
383
+ type: 'http'
384
+ }
385
+ ],
234
386
  url: '/umbraco/engage/management/api/v1/annotations',
235
387
  ...options,
236
388
  headers: {
@@ -241,28 +393,48 @@ export class AnnotationsService {
241
393
  }
242
394
  static getAnnotationsAll(options) {
243
395
  return (options?.client ?? client).get({
244
- security: [{ scheme: 'bearer', type: 'http' }],
396
+ security: [
397
+ {
398
+ scheme: 'bearer',
399
+ type: 'http'
400
+ }
401
+ ],
245
402
  url: '/umbraco/engage/management/api/v1/annotations/all',
246
403
  ...options
247
404
  });
248
405
  }
249
406
  static getAnnotationsEmpty(options) {
250
407
  return (options?.client ?? client).get({
251
- security: [{ scheme: 'bearer', type: 'http' }],
408
+ security: [
409
+ {
410
+ scheme: 'bearer',
411
+ type: 'http'
412
+ }
413
+ ],
252
414
  url: '/umbraco/engage/management/api/v1/annotations/empty',
253
415
  ...options
254
416
  });
255
417
  }
256
418
  static getAnnotationsGlobal(options) {
257
419
  return (options?.client ?? client).get({
258
- security: [{ scheme: 'bearer', type: 'http' }],
420
+ security: [
421
+ {
422
+ scheme: 'bearer',
423
+ type: 'http'
424
+ }
425
+ ],
259
426
  url: '/umbraco/engage/management/api/v1/annotations/global',
260
427
  ...options
261
428
  });
262
429
  }
263
430
  static getAnnotationsPage(options) {
264
431
  return (options?.client ?? client).get({
265
- security: [{ scheme: 'bearer', type: 'http' }],
432
+ security: [
433
+ {
434
+ scheme: 'bearer',
435
+ type: 'http'
436
+ }
437
+ ],
266
438
  url: '/umbraco/engage/management/api/v1/annotations/page',
267
439
  ...options
268
440
  });
@@ -271,14 +443,24 @@ export class AnnotationsService {
271
443
  export class AppliedPersonalizationService {
272
444
  static deleteAppliedPersonalization(options) {
273
445
  return (options?.client ?? client).delete({
274
- security: [{ scheme: 'bearer', type: 'http' }],
446
+ security: [
447
+ {
448
+ scheme: 'bearer',
449
+ type: 'http'
450
+ }
451
+ ],
275
452
  url: '/umbraco/engage/management/api/v1/applied-personalization',
276
453
  ...options
277
454
  });
278
455
  }
279
456
  static postAppliedPersonalization(options) {
280
457
  return (options?.client ?? client).post({
281
- security: [{ scheme: 'bearer', type: 'http' }],
458
+ security: [
459
+ {
460
+ scheme: 'bearer',
461
+ type: 'http'
462
+ }
463
+ ],
282
464
  url: '/umbraco/engage/management/api/v1/applied-personalization',
283
465
  ...options,
284
466
  headers: {
@@ -289,28 +471,48 @@ export class AppliedPersonalizationService {
289
471
  }
290
472
  static getAppliedPersonalizationAll(options) {
291
473
  return (options?.client ?? client).get({
292
- security: [{ scheme: 'bearer', type: 'http' }],
474
+ security: [
475
+ {
476
+ scheme: 'bearer',
477
+ type: 'http'
478
+ }
479
+ ],
293
480
  url: '/umbraco/engage/management/api/v1/applied-personalization/all',
294
481
  ...options
295
482
  });
296
483
  }
297
484
  static getAppliedPersonalizationId(options) {
298
485
  return (options?.client ?? client).get({
299
- security: [{ scheme: 'bearer', type: 'http' }],
486
+ security: [
487
+ {
488
+ scheme: 'bearer',
489
+ type: 'http'
490
+ }
491
+ ],
300
492
  url: '/umbraco/engage/management/api/v1/applied-personalization/id',
301
493
  ...options
302
494
  });
303
495
  }
304
496
  static getAppliedPersonalizationSegment(options) {
305
497
  return (options?.client ?? client).get({
306
- security: [{ scheme: 'bearer', type: 'http' }],
498
+ security: [
499
+ {
500
+ scheme: 'bearer',
501
+ type: 'http'
502
+ }
503
+ ],
307
504
  url: '/umbraco/engage/management/api/v1/applied-personalization/segment',
308
505
  ...options
309
506
  });
310
507
  }
311
508
  static postAppliedPersonalizationSegment(options) {
312
509
  return (options?.client ?? client).post({
313
- security: [{ scheme: 'bearer', type: 'http' }],
510
+ security: [
511
+ {
512
+ scheme: 'bearer',
513
+ type: 'http'
514
+ }
515
+ ],
314
516
  url: '/umbraco/engage/management/api/v1/applied-personalization/segment',
315
517
  ...options
316
518
  });
@@ -319,21 +521,36 @@ export class AppliedPersonalizationService {
319
521
  export class CampaignGroupService {
320
522
  static deleteCampaignGroup(options) {
321
523
  return (options?.client ?? client).delete({
322
- security: [{ scheme: 'bearer', type: 'http' }],
524
+ security: [
525
+ {
526
+ scheme: 'bearer',
527
+ type: 'http'
528
+ }
529
+ ],
323
530
  url: '/umbraco/engage/management/api/v1/campaign-group',
324
531
  ...options
325
532
  });
326
533
  }
327
534
  static getCampaignGroup(options) {
328
535
  return (options?.client ?? client).get({
329
- security: [{ scheme: 'bearer', type: 'http' }],
536
+ security: [
537
+ {
538
+ scheme: 'bearer',
539
+ type: 'http'
540
+ }
541
+ ],
330
542
  url: '/umbraco/engage/management/api/v1/campaign-group',
331
543
  ...options
332
544
  });
333
545
  }
334
546
  static postCampaignGroup(options) {
335
547
  return (options?.client ?? client).post({
336
- security: [{ scheme: 'bearer', type: 'http' }],
548
+ security: [
549
+ {
550
+ scheme: 'bearer',
551
+ type: 'http'
552
+ }
553
+ ],
337
554
  url: '/umbraco/engage/management/api/v1/campaign-group',
338
555
  ...options,
339
556
  headers: {
@@ -344,21 +561,36 @@ export class CampaignGroupService {
344
561
  }
345
562
  static getCampaignGroupAll(options) {
346
563
  return (options?.client ?? client).get({
347
- security: [{ scheme: 'bearer', type: 'http' }],
564
+ security: [
565
+ {
566
+ scheme: 'bearer',
567
+ type: 'http'
568
+ }
569
+ ],
348
570
  url: '/umbraco/engage/management/api/v1/campaign-group/all',
349
571
  ...options
350
572
  });
351
573
  }
352
574
  static getCampaignGroupUnscored(options) {
353
575
  return (options?.client ?? client).get({
354
- security: [{ scheme: 'bearer', type: 'http' }],
576
+ security: [
577
+ {
578
+ scheme: 'bearer',
579
+ type: 'http'
580
+ }
581
+ ],
355
582
  url: '/umbraco/engage/management/api/v1/campaign-group/unscored',
356
583
  ...options
357
584
  });
358
585
  }
359
586
  static getCampaignGroupVisitors(options) {
360
587
  return (options?.client ?? client).get({
361
- security: [{ scheme: 'bearer', type: 'http' }],
588
+ security: [
589
+ {
590
+ scheme: 'bearer',
591
+ type: 'http'
592
+ }
593
+ ],
362
594
  url: '/umbraco/engage/management/api/v1/campaign-group/visitors',
363
595
  ...options
364
596
  });
@@ -367,7 +599,12 @@ export class CampaignGroupService {
367
599
  export class CampaignsService {
368
600
  static getCampaigns(options) {
369
601
  return (options?.client ?? client).get({
370
- security: [{ scheme: 'bearer', type: 'http' }],
602
+ security: [
603
+ {
604
+ scheme: 'bearer',
605
+ type: 'http'
606
+ }
607
+ ],
371
608
  url: '/umbraco/engage/management/api/v1/campaigns',
372
609
  ...options
373
610
  });
@@ -376,14 +613,24 @@ export class CampaignsService {
376
613
  export class CockpitService {
377
614
  static postCockpitDeleteCookie(options) {
378
615
  return (options?.client ?? client).post({
379
- security: [{ scheme: 'bearer', type: 'http' }],
616
+ security: [
617
+ {
618
+ scheme: 'bearer',
619
+ type: 'http'
620
+ }
621
+ ],
380
622
  url: '/umbraco/engage/management/api/v1/cockpit/delete-cookie',
381
623
  ...options
382
624
  });
383
625
  }
384
626
  static getCockpitGetUmbracoPageInfo(options) {
385
627
  return (options?.client ?? client).get({
386
- security: [{ scheme: 'bearer', type: 'http' }],
628
+ security: [
629
+ {
630
+ scheme: 'bearer',
631
+ type: 'http'
632
+ }
633
+ ],
387
634
  url: '/umbraco/engage/management/api/v1/cockpit/get-umbraco-page-info',
388
635
  ...options
389
636
  });
@@ -392,7 +639,12 @@ export class CockpitService {
392
639
  export class ConfigurationService {
393
640
  static getConfiguration(options) {
394
641
  return (options?.client ?? client).get({
395
- security: [{ scheme: 'bearer', type: 'http' }],
642
+ security: [
643
+ {
644
+ scheme: 'bearer',
645
+ type: 'http'
646
+ }
647
+ ],
396
648
  url: '/umbraco/engage/management/api/v1/configuration',
397
649
  ...options
398
650
  });
@@ -401,42 +653,72 @@ export class ConfigurationService {
401
653
  export class ContentScoringService {
402
654
  static getContentScoringAll(options) {
403
655
  return (options?.client ?? client).get({
404
- security: [{ scheme: 'bearer', type: 'http' }],
656
+ security: [
657
+ {
658
+ scheme: 'bearer',
659
+ type: 'http'
660
+ }
661
+ ],
405
662
  url: '/umbraco/engage/management/api/v1/content-scoring/all',
406
663
  ...options
407
664
  });
408
665
  }
409
666
  static getContentScoringCustomerJourneyExportCsv(options) {
410
667
  return (options?.client ?? client).get({
411
- security: [{ scheme: 'bearer', type: 'http' }],
668
+ security: [
669
+ {
670
+ scheme: 'bearer',
671
+ type: 'http'
672
+ }
673
+ ],
412
674
  url: '/umbraco/engage/management/api/v1/content-scoring/customer-journey/export/csv',
413
675
  ...options
414
676
  });
415
677
  }
416
678
  static deleteContentScoringJourney(options) {
417
679
  return (options?.client ?? client).delete({
418
- security: [{ scheme: 'bearer', type: 'http' }],
680
+ security: [
681
+ {
682
+ scheme: 'bearer',
683
+ type: 'http'
684
+ }
685
+ ],
419
686
  url: '/umbraco/engage/management/api/v1/content-scoring/journey',
420
687
  ...options
421
688
  });
422
689
  }
423
690
  static deleteContentScoringPersona(options) {
424
691
  return (options?.client ?? client).delete({
425
- security: [{ scheme: 'bearer', type: 'http' }],
692
+ security: [
693
+ {
694
+ scheme: 'bearer',
695
+ type: 'http'
696
+ }
697
+ ],
426
698
  url: '/umbraco/engage/management/api/v1/content-scoring/persona',
427
699
  ...options
428
700
  });
429
701
  }
430
702
  static getContentScoringPersonaExportCsv(options) {
431
703
  return (options?.client ?? client).get({
432
- security: [{ scheme: 'bearer', type: 'http' }],
704
+ security: [
705
+ {
706
+ scheme: 'bearer',
707
+ type: 'http'
708
+ }
709
+ ],
433
710
  url: '/umbraco/engage/management/api/v1/content-scoring/persona/export/csv',
434
711
  ...options
435
712
  });
436
713
  }
437
714
  static postContentScoringSave(options) {
438
715
  return (options?.client ?? client).post({
439
- security: [{ scheme: 'bearer', type: 'http' }],
716
+ security: [
717
+ {
718
+ scheme: 'bearer',
719
+ type: 'http'
720
+ }
721
+ ],
440
722
  url: '/umbraco/engage/management/api/v1/content-scoring/save',
441
723
  ...options,
442
724
  headers: {
@@ -449,14 +731,24 @@ export class ContentScoringService {
449
731
  export class ContentTypesService {
450
732
  static getContentTypesAll(options) {
451
733
  return (options?.client ?? client).get({
452
- security: [{ scheme: 'bearer', type: 'http' }],
734
+ security: [
735
+ {
736
+ scheme: 'bearer',
737
+ type: 'http'
738
+ }
739
+ ],
453
740
  url: '/umbraco/engage/management/api/v1/content-types/all',
454
741
  ...options
455
742
  });
456
743
  }
457
744
  static getContentTypesSegmentedProperty(options) {
458
745
  return (options?.client ?? client).get({
459
- security: [{ scheme: 'bearer', type: 'http' }],
746
+ security: [
747
+ {
748
+ scheme: 'bearer',
749
+ type: 'http'
750
+ }
751
+ ],
460
752
  url: '/umbraco/engage/management/api/v1/content-types/segmented-property',
461
753
  ...options
462
754
  });
@@ -465,7 +757,12 @@ export class ContentTypesService {
465
757
  export class CulturesService {
466
758
  static getCultures(options) {
467
759
  return (options?.client ?? client).get({
468
- security: [{ scheme: 'bearer', type: 'http' }],
760
+ security: [
761
+ {
762
+ scheme: 'bearer',
763
+ type: 'http'
764
+ }
765
+ ],
469
766
  url: '/umbraco/engage/management/api/v1/cultures',
470
767
  ...options
471
768
  });
@@ -474,14 +771,24 @@ export class CulturesService {
474
771
  export class CustomerJourneyService {
475
772
  static deleteCustomerJourney(options) {
476
773
  return (options?.client ?? client).delete({
477
- security: [{ scheme: 'bearer', type: 'http' }],
774
+ security: [
775
+ {
776
+ scheme: 'bearer',
777
+ type: 'http'
778
+ }
779
+ ],
478
780
  url: '/umbraco/engage/management/api/v1/customer-journey',
479
781
  ...options
480
782
  });
481
783
  }
482
784
  static postCustomerJourney(options) {
483
785
  return (options?.client ?? client).post({
484
- security: [{ scheme: 'bearer', type: 'http' }],
786
+ security: [
787
+ {
788
+ scheme: 'bearer',
789
+ type: 'http'
790
+ }
791
+ ],
485
792
  url: '/umbraco/engage/management/api/v1/customer-journey',
486
793
  ...options,
487
794
  headers: {
@@ -492,21 +799,36 @@ export class CustomerJourneyService {
492
799
  }
493
800
  static getCustomerJourneyAll(options) {
494
801
  return (options?.client ?? client).get({
495
- security: [{ scheme: 'bearer', type: 'http' }],
802
+ security: [
803
+ {
804
+ scheme: 'bearer',
805
+ type: 'http'
806
+ }
807
+ ],
496
808
  url: '/umbraco/engage/management/api/v1/customer-journey/all',
497
809
  ...options
498
810
  });
499
811
  }
500
812
  static getCustomerJourneyDetails(options) {
501
813
  return (options?.client ?? client).get({
502
- security: [{ scheme: 'bearer', type: 'http' }],
814
+ security: [
815
+ {
816
+ scheme: 'bearer',
817
+ type: 'http'
818
+ }
819
+ ],
503
820
  url: '/umbraco/engage/management/api/v1/customer-journey/details',
504
821
  ...options
505
822
  });
506
823
  }
507
824
  static getCustomerJourneyEmpty(options) {
508
825
  return (options?.client ?? client).get({
509
- security: [{ scheme: 'bearer', type: 'http' }],
826
+ security: [
827
+ {
828
+ scheme: 'bearer',
829
+ type: 'http'
830
+ }
831
+ ],
510
832
  url: '/umbraco/engage/management/api/v1/customer-journey/empty',
511
833
  ...options
512
834
  });
@@ -515,7 +837,12 @@ export class CustomerJourneyService {
515
837
  export class DataCleanupService {
516
838
  static getDataCleanupLogs(options) {
517
839
  return (options?.client ?? client).get({
518
- security: [{ scheme: 'bearer', type: 'http' }],
840
+ security: [
841
+ {
842
+ scheme: 'bearer',
843
+ type: 'http'
844
+ }
845
+ ],
519
846
  url: '/umbraco/engage/management/api/v1/data-cleanup/logs',
520
847
  ...options
521
848
  });
@@ -524,7 +851,12 @@ export class DataCleanupService {
524
851
  export class DataGenerationService {
525
852
  static getDataGenerationLogs(options) {
526
853
  return (options?.client ?? client).get({
527
- security: [{ scheme: 'bearer', type: 'http' }],
854
+ security: [
855
+ {
856
+ scheme: 'bearer',
857
+ type: 'http'
858
+ }
859
+ ],
528
860
  url: '/umbraco/engage/management/api/v1/data-generation/logs',
529
861
  ...options
530
862
  });
@@ -533,14 +865,24 @@ export class DataGenerationService {
533
865
  export class DocumentTypePermissionsService {
534
866
  static getPermissionsDocumentType(options) {
535
867
  return (options?.client ?? client).get({
536
- security: [{ scheme: 'bearer', type: 'http' }],
868
+ security: [
869
+ {
870
+ scheme: 'bearer',
871
+ type: 'http'
872
+ }
873
+ ],
537
874
  url: '/umbraco/engage/management/api/v1/permissions/document-type',
538
875
  ...options
539
876
  });
540
877
  }
541
878
  static postPermissionsDocumentType(options) {
542
879
  return (options?.client ?? client).post({
543
- security: [{ scheme: 'bearer', type: 'http' }],
880
+ security: [
881
+ {
882
+ scheme: 'bearer',
883
+ type: 'http'
884
+ }
885
+ ],
544
886
  url: '/umbraco/engage/management/api/v1/permissions/document-type',
545
887
  ...options,
546
888
  headers: {
@@ -551,7 +893,12 @@ export class DocumentTypePermissionsService {
551
893
  }
552
894
  static getPermissionsDocumentTypeAll(options) {
553
895
  return (options?.client ?? client).get({
554
- security: [{ scheme: 'bearer', type: 'http' }],
896
+ security: [
897
+ {
898
+ scheme: 'bearer',
899
+ type: 'http'
900
+ }
901
+ ],
555
902
  url: '/umbraco/engage/management/api/v1/permissions/document-type/all',
556
903
  ...options
557
904
  });
@@ -560,7 +907,12 @@ export class DocumentTypePermissionsService {
560
907
  export class GoalService {
561
908
  static postGoal(options) {
562
909
  return (options?.client ?? client).post({
563
- security: [{ scheme: 'bearer', type: 'http' }],
910
+ security: [
911
+ {
912
+ scheme: 'bearer',
913
+ type: 'http'
914
+ }
915
+ ],
564
916
  url: '/umbraco/engage/management/api/v1/goal',
565
917
  ...options,
566
918
  headers: {
@@ -571,7 +923,12 @@ export class GoalService {
571
923
  }
572
924
  static postGoalAll(options) {
573
925
  return (options?.client ?? client).post({
574
- security: [{ scheme: 'bearer', type: 'http' }],
926
+ security: [
927
+ {
928
+ scheme: 'bearer',
929
+ type: 'http'
930
+ }
931
+ ],
575
932
  url: '/umbraco/engage/management/api/v1/goal/all',
576
933
  ...options,
577
934
  headers: {
@@ -582,14 +939,24 @@ export class GoalService {
582
939
  }
583
940
  static getGoalAllTypes(options) {
584
941
  return (options?.client ?? client).get({
585
- security: [{ scheme: 'bearer', type: 'http' }],
942
+ security: [
943
+ {
944
+ scheme: 'bearer',
945
+ type: 'http'
946
+ }
947
+ ],
586
948
  url: '/umbraco/engage/management/api/v1/goal/all/types',
587
949
  ...options
588
950
  });
589
951
  }
590
952
  static getGoalDetails(options) {
591
953
  return (options?.client ?? client).get({
592
- security: [{ scheme: 'bearer', type: 'http' }],
954
+ security: [
955
+ {
956
+ scheme: 'bearer',
957
+ type: 'http'
958
+ }
959
+ ],
593
960
  url: '/umbraco/engage/management/api/v1/goal/details',
594
961
  ...options
595
962
  });
@@ -598,14 +965,24 @@ export class GoalService {
598
965
  export class GoalsService {
599
966
  static getGoalsAll(options) {
600
967
  return (options?.client ?? client).get({
601
- security: [{ scheme: 'bearer', type: 'http' }],
968
+ security: [
969
+ {
970
+ scheme: 'bearer',
971
+ type: 'http'
972
+ }
973
+ ],
602
974
  url: '/umbraco/engage/management/api/v1/goals/all',
603
975
  ...options
604
976
  });
605
977
  }
606
978
  static getGoalsMain(options) {
607
979
  return (options?.client ?? client).get({
608
- security: [{ scheme: 'bearer', type: 'http' }],
980
+ security: [
981
+ {
982
+ scheme: 'bearer',
983
+ type: 'http'
984
+ }
985
+ ],
609
986
  url: '/umbraco/engage/management/api/v1/goals/main',
610
987
  ...options
611
988
  });
@@ -614,7 +991,12 @@ export class GoalsService {
614
991
  export class HeatmapsService {
615
992
  static postHeatmapsGenerateScrollHeatmap(options) {
616
993
  return (options?.client ?? client).post({
617
- security: [{ scheme: 'bearer', type: 'http' }],
994
+ security: [
995
+ {
996
+ scheme: 'bearer',
997
+ type: 'http'
998
+ }
999
+ ],
618
1000
  url: '/umbraco/engage/management/api/v1/heatmaps/generate-scroll-heatmap',
619
1001
  ...options,
620
1002
  headers: {
@@ -625,7 +1007,12 @@ export class HeatmapsService {
625
1007
  }
626
1008
  static getHeatmapsVariants(options) {
627
1009
  return (options?.client ?? client).get({
628
- security: [{ scheme: 'bearer', type: 'http' }],
1010
+ security: [
1011
+ {
1012
+ scheme: 'bearer',
1013
+ type: 'http'
1014
+ }
1015
+ ],
629
1016
  url: '/umbraco/engage/management/api/v1/heatmaps/variants',
630
1017
  ...options
631
1018
  });
@@ -634,14 +1021,24 @@ export class HeatmapsService {
634
1021
  export class IpFiltersService {
635
1022
  static deleteIpFilters(options) {
636
1023
  return (options?.client ?? client).delete({
637
- security: [{ scheme: 'bearer', type: 'http' }],
1024
+ security: [
1025
+ {
1026
+ scheme: 'bearer',
1027
+ type: 'http'
1028
+ }
1029
+ ],
638
1030
  url: '/umbraco/engage/management/api/v1/ip-filters',
639
1031
  ...options
640
1032
  });
641
1033
  }
642
1034
  static postIpFilters(options) {
643
1035
  return (options?.client ?? client).post({
644
- security: [{ scheme: 'bearer', type: 'http' }],
1036
+ security: [
1037
+ {
1038
+ scheme: 'bearer',
1039
+ type: 'http'
1040
+ }
1041
+ ],
645
1042
  url: '/umbraco/engage/management/api/v1/ip-filters',
646
1043
  ...options,
647
1044
  headers: {
@@ -652,14 +1049,24 @@ export class IpFiltersService {
652
1049
  }
653
1050
  static getIpFiltersAll(options) {
654
1051
  return (options?.client ?? client).get({
655
- security: [{ scheme: 'bearer', type: 'http' }],
1052
+ security: [
1053
+ {
1054
+ scheme: 'bearer',
1055
+ type: 'http'
1056
+ }
1057
+ ],
656
1058
  url: '/umbraco/engage/management/api/v1/ip-filters/all',
657
1059
  ...options
658
1060
  });
659
1061
  }
660
1062
  static getIpFiltersEmpty(options) {
661
1063
  return (options?.client ?? client).get({
662
- security: [{ scheme: 'bearer', type: 'http' }],
1064
+ security: [
1065
+ {
1066
+ scheme: 'bearer',
1067
+ type: 'http'
1068
+ }
1069
+ ],
663
1070
  url: '/umbraco/engage/management/api/v1/ip-filters/empty',
664
1071
  ...options
665
1072
  });
@@ -668,21 +1075,36 @@ export class IpFiltersService {
668
1075
  export class MainSwitchService {
669
1076
  static getMainSwitch(options) {
670
1077
  return (options?.client ?? client).get({
671
- security: [{ scheme: 'bearer', type: 'http' }],
1078
+ security: [
1079
+ {
1080
+ scheme: 'bearer',
1081
+ type: 'http'
1082
+ }
1083
+ ],
672
1084
  url: '/umbraco/engage/management/api/v1/main-switch',
673
1085
  ...options
674
1086
  });
675
1087
  }
676
1088
  static postMainSwitchTurnOff(options) {
677
1089
  return (options?.client ?? client).post({
678
- security: [{ scheme: 'bearer', type: 'http' }],
1090
+ security: [
1091
+ {
1092
+ scheme: 'bearer',
1093
+ type: 'http'
1094
+ }
1095
+ ],
679
1096
  url: '/umbraco/engage/management/api/v1/main-switch/turn-off',
680
1097
  ...options
681
1098
  });
682
1099
  }
683
1100
  static postMainSwitchTurnOn(options) {
684
1101
  return (options?.client ?? client).post({
685
- security: [{ scheme: 'bearer', type: 'http' }],
1102
+ security: [
1103
+ {
1104
+ scheme: 'bearer',
1105
+ type: 'http'
1106
+ }
1107
+ ],
686
1108
  url: '/umbraco/engage/management/api/v1/main-switch/turn-on',
687
1109
  ...options
688
1110
  });
@@ -691,7 +1113,12 @@ export class MainSwitchService {
691
1113
  export class PackageService {
692
1114
  static getPackage(options) {
693
1115
  return (options?.client ?? client).get({
694
- security: [{ scheme: 'bearer', type: 'http' }],
1116
+ security: [
1117
+ {
1118
+ scheme: 'bearer',
1119
+ type: 'http'
1120
+ }
1121
+ ],
695
1122
  url: '/umbraco/engage/management/api/v1/package',
696
1123
  ...options
697
1124
  });
@@ -700,14 +1127,24 @@ export class PackageService {
700
1127
  export class PageDataService {
701
1128
  static postUmbracoEngagePagedataCollect(options) {
702
1129
  return (options?.client ?? client).post({
703
- security: [{ scheme: 'bearer', type: 'http' }],
1130
+ security: [
1131
+ {
1132
+ scheme: 'bearer',
1133
+ type: 'http'
1134
+ }
1135
+ ],
704
1136
  url: '/umbraco/engage/pagedata/collect',
705
1137
  ...options
706
1138
  });
707
1139
  }
708
1140
  static postUmbracoEngagePagedataCollectEvent(options) {
709
1141
  return (options?.client ?? client).post({
710
- security: [{ scheme: 'bearer', type: 'http' }],
1142
+ security: [
1143
+ {
1144
+ scheme: 'bearer',
1145
+ type: 'http'
1146
+ }
1147
+ ],
711
1148
  url: '/umbraco/engage/pagedata/collect-event',
712
1149
  ...options,
713
1150
  headers: {
@@ -718,14 +1155,24 @@ export class PageDataService {
718
1155
  }
719
1156
  static getUmbracoEngagePagedataPing(options) {
720
1157
  return (options?.client ?? client).get({
721
- security: [{ scheme: 'bearer', type: 'http' }],
1158
+ security: [
1159
+ {
1160
+ scheme: 'bearer',
1161
+ type: 'http'
1162
+ }
1163
+ ],
722
1164
  url: '/umbraco/engage/pagedata/ping',
723
1165
  ...options
724
1166
  });
725
1167
  }
726
1168
  static postUmbracoEngagePagedataPing(options) {
727
1169
  return (options?.client ?? client).post({
728
- security: [{ scheme: 'bearer', type: 'http' }],
1170
+ security: [
1171
+ {
1172
+ scheme: 'bearer',
1173
+ type: 'http'
1174
+ }
1175
+ ],
729
1176
  url: '/umbraco/engage/pagedata/ping',
730
1177
  ...options
731
1178
  });
@@ -734,14 +1181,24 @@ export class PageDataService {
734
1181
  export class PersonaService {
735
1182
  static deletePersona(options) {
736
1183
  return (options?.client ?? client).delete({
737
- security: [{ scheme: 'bearer', type: 'http' }],
1184
+ security: [
1185
+ {
1186
+ scheme: 'bearer',
1187
+ type: 'http'
1188
+ }
1189
+ ],
738
1190
  url: '/umbraco/engage/management/api/v1/persona',
739
1191
  ...options
740
1192
  });
741
1193
  }
742
1194
  static postPersona(options) {
743
1195
  return (options?.client ?? client).post({
744
- security: [{ scheme: 'bearer', type: 'http' }],
1196
+ security: [
1197
+ {
1198
+ scheme: 'bearer',
1199
+ type: 'http'
1200
+ }
1201
+ ],
745
1202
  url: '/umbraco/engage/management/api/v1/persona',
746
1203
  ...options,
747
1204
  headers: {
@@ -752,21 +1209,36 @@ export class PersonaService {
752
1209
  }
753
1210
  static getPersonaAll(options) {
754
1211
  return (options?.client ?? client).get({
755
- security: [{ scheme: 'bearer', type: 'http' }],
1212
+ security: [
1213
+ {
1214
+ scheme: 'bearer',
1215
+ type: 'http'
1216
+ }
1217
+ ],
756
1218
  url: '/umbraco/engage/management/api/v1/persona/all',
757
1219
  ...options
758
1220
  });
759
1221
  }
760
1222
  static getPersonaDetails(options) {
761
1223
  return (options?.client ?? client).get({
762
- security: [{ scheme: 'bearer', type: 'http' }],
1224
+ security: [
1225
+ {
1226
+ scheme: 'bearer',
1227
+ type: 'http'
1228
+ }
1229
+ ],
763
1230
  url: '/umbraco/engage/management/api/v1/persona/details',
764
1231
  ...options
765
1232
  });
766
1233
  }
767
1234
  static getPersonaEmpty(options) {
768
1235
  return (options?.client ?? client).get({
769
- security: [{ scheme: 'bearer', type: 'http' }],
1236
+ security: [
1237
+ {
1238
+ scheme: 'bearer',
1239
+ type: 'http'
1240
+ }
1241
+ ],
770
1242
  url: '/umbraco/engage/management/api/v1/persona/empty',
771
1243
  ...options
772
1244
  });
@@ -775,35 +1247,60 @@ export class PersonaService {
775
1247
  export class ProfileService {
776
1248
  static getProfileBotVisitors(options) {
777
1249
  return (options?.client ?? client).get({
778
- security: [{ scheme: 'bearer', type: 'http' }],
1250
+ security: [
1251
+ {
1252
+ scheme: 'bearer',
1253
+ type: 'http'
1254
+ }
1255
+ ],
779
1256
  url: '/umbraco/engage/management/api/v1/profile/bot-visitors',
780
1257
  ...options
781
1258
  });
782
1259
  }
783
1260
  static getProfileCustomerJourneyStepScores(options) {
784
1261
  return (options?.client ?? client).get({
785
- security: [{ scheme: 'bearer', type: 'http' }],
1262
+ security: [
1263
+ {
1264
+ scheme: 'bearer',
1265
+ type: 'http'
1266
+ }
1267
+ ],
786
1268
  url: '/umbraco/engage/management/api/v1/profile/customer-journey-step-scores',
787
1269
  ...options
788
1270
  });
789
1271
  }
790
1272
  static getProfileDetails(options) {
791
1273
  return (options?.client ?? client).get({
792
- security: [{ scheme: 'bearer', type: 'http' }],
1274
+ security: [
1275
+ {
1276
+ scheme: 'bearer',
1277
+ type: 'http'
1278
+ }
1279
+ ],
793
1280
  url: '/umbraco/engage/management/api/v1/profile/details',
794
1281
  ...options
795
1282
  });
796
1283
  }
797
1284
  static getProfileExport(options) {
798
1285
  return (options?.client ?? client).get({
799
- security: [{ scheme: 'bearer', type: 'http' }],
1286
+ security: [
1287
+ {
1288
+ scheme: 'bearer',
1289
+ type: 'http'
1290
+ }
1291
+ ],
800
1292
  url: '/umbraco/engage/management/api/v1/profile/export',
801
1293
  ...options
802
1294
  });
803
1295
  }
804
1296
  static postProfileExportCsv(options) {
805
1297
  return (options?.client ?? client).post({
806
- security: [{ scheme: 'bearer', type: 'http' }],
1298
+ security: [
1299
+ {
1300
+ scheme: 'bearer',
1301
+ type: 'http'
1302
+ }
1303
+ ],
807
1304
  url: '/umbraco/engage/management/api/v1/profile/export/csv',
808
1305
  ...options,
809
1306
  headers: {
@@ -814,21 +1311,36 @@ export class ProfileService {
814
1311
  }
815
1312
  static getProfileGoalCompletions(options) {
816
1313
  return (options?.client ?? client).get({
817
- security: [{ scheme: 'bearer', type: 'http' }],
1314
+ security: [
1315
+ {
1316
+ scheme: 'bearer',
1317
+ type: 'http'
1318
+ }
1319
+ ],
818
1320
  url: '/umbraco/engage/management/api/v1/profile/goal-completions',
819
1321
  ...options
820
1322
  });
821
1323
  }
822
1324
  static getProfileLastActiveSegment(options) {
823
1325
  return (options?.client ?? client).get({
824
- security: [{ scheme: 'bearer', type: 'http' }],
1326
+ security: [
1327
+ {
1328
+ scheme: 'bearer',
1329
+ type: 'http'
1330
+ }
1331
+ ],
825
1332
  url: '/umbraco/engage/management/api/v1/profile/last-active-segment',
826
1333
  ...options
827
1334
  });
828
1335
  }
829
1336
  static postProfileOverview(options) {
830
1337
  return (options?.client ?? client).post({
831
- security: [{ scheme: 'bearer', type: 'http' }],
1338
+ security: [
1339
+ {
1340
+ scheme: 'bearer',
1341
+ type: 'http'
1342
+ }
1343
+ ],
832
1344
  url: '/umbraco/engage/management/api/v1/profile/overview',
833
1345
  ...options,
834
1346
  headers: {
@@ -839,63 +1351,108 @@ export class ProfileService {
839
1351
  }
840
1352
  static getProfilePageEvents(options) {
841
1353
  return (options?.client ?? client).get({
842
- security: [{ scheme: 'bearer', type: 'http' }],
1354
+ security: [
1355
+ {
1356
+ scheme: 'bearer',
1357
+ type: 'http'
1358
+ }
1359
+ ],
843
1360
  url: '/umbraco/engage/management/api/v1/profile/page-events',
844
1361
  ...options
845
1362
  });
846
1363
  }
847
1364
  static getProfilePageviews(options) {
848
1365
  return (options?.client ?? client).get({
849
- security: [{ scheme: 'bearer', type: 'http' }],
1366
+ security: [
1367
+ {
1368
+ scheme: 'bearer',
1369
+ type: 'http'
1370
+ }
1371
+ ],
850
1372
  url: '/umbraco/engage/management/api/v1/profile/pageviews',
851
1373
  ...options
852
1374
  });
853
1375
  }
854
1376
  static getProfilePersonaScores(options) {
855
1377
  return (options?.client ?? client).get({
856
- security: [{ scheme: 'bearer', type: 'http' }],
1378
+ security: [
1379
+ {
1380
+ scheme: 'bearer',
1381
+ type: 'http'
1382
+ }
1383
+ ],
857
1384
  url: '/umbraco/engage/management/api/v1/profile/persona-scores',
858
1385
  ...options
859
1386
  });
860
1387
  }
861
1388
  static getProfilePotential(options) {
862
1389
  return (options?.client ?? client).get({
863
- security: [{ scheme: 'bearer', type: 'http' }],
1390
+ security: [
1391
+ {
1392
+ scheme: 'bearer',
1393
+ type: 'http'
1394
+ }
1395
+ ],
864
1396
  url: '/umbraco/engage/management/api/v1/profile/potential',
865
1397
  ...options
866
1398
  });
867
1399
  }
868
1400
  static getProfileRelated(options) {
869
1401
  return (options?.client ?? client).get({
870
- security: [{ scheme: 'bearer', type: 'http' }],
1402
+ security: [
1403
+ {
1404
+ scheme: 'bearer',
1405
+ type: 'http'
1406
+ }
1407
+ ],
871
1408
  url: '/umbraco/engage/management/api/v1/profile/related',
872
1409
  ...options
873
1410
  });
874
1411
  }
875
1412
  static getProfileSessions(options) {
876
1413
  return (options?.client ?? client).get({
877
- security: [{ scheme: 'bearer', type: 'http' }],
1414
+ security: [
1415
+ {
1416
+ scheme: 'bearer',
1417
+ type: 'http'
1418
+ }
1419
+ ],
878
1420
  url: '/umbraco/engage/management/api/v1/profile/sessions',
879
1421
  ...options
880
1422
  });
881
1423
  }
882
1424
  static getProfileStatisticsGrowth(options) {
883
1425
  return (options?.client ?? client).get({
884
- security: [{ scheme: 'bearer', type: 'http' }],
1426
+ security: [
1427
+ {
1428
+ scheme: 'bearer',
1429
+ type: 'http'
1430
+ }
1431
+ ],
885
1432
  url: '/umbraco/engage/management/api/v1/profile/statistics/growth',
886
1433
  ...options
887
1434
  });
888
1435
  }
889
1436
  static getProfileStatisticsIdentification(options) {
890
1437
  return (options?.client ?? client).get({
891
- security: [{ scheme: 'bearer', type: 'http' }],
1438
+ security: [
1439
+ {
1440
+ scheme: 'bearer',
1441
+ type: 'http'
1442
+ }
1443
+ ],
892
1444
  url: '/umbraco/engage/management/api/v1/profile/statistics/identification',
893
1445
  ...options
894
1446
  });
895
1447
  }
896
1448
  static getProfileStatisticsTotal(options) {
897
1449
  return (options?.client ?? client).get({
898
- security: [{ scheme: 'bearer', type: 'http' }],
1450
+ security: [
1451
+ {
1452
+ scheme: 'bearer',
1453
+ type: 'http'
1454
+ }
1455
+ ],
899
1456
  url: '/umbraco/engage/management/api/v1/profile/statistics/total',
900
1457
  ...options
901
1458
  });
@@ -904,21 +1461,36 @@ export class ProfileService {
904
1461
  export class ReferralGroupService {
905
1462
  static deleteReferralGroup(options) {
906
1463
  return (options?.client ?? client).delete({
907
- security: [{ scheme: 'bearer', type: 'http' }],
1464
+ security: [
1465
+ {
1466
+ scheme: 'bearer',
1467
+ type: 'http'
1468
+ }
1469
+ ],
908
1470
  url: '/umbraco/engage/management/api/v1/referral-group',
909
1471
  ...options
910
1472
  });
911
1473
  }
912
1474
  static getReferralGroup(options) {
913
1475
  return (options?.client ?? client).get({
914
- security: [{ scheme: 'bearer', type: 'http' }],
1476
+ security: [
1477
+ {
1478
+ scheme: 'bearer',
1479
+ type: 'http'
1480
+ }
1481
+ ],
915
1482
  url: '/umbraco/engage/management/api/v1/referral-group',
916
1483
  ...options
917
1484
  });
918
1485
  }
919
1486
  static postReferralGroup(options) {
920
1487
  return (options?.client ?? client).post({
921
- security: [{ scheme: 'bearer', type: 'http' }],
1488
+ security: [
1489
+ {
1490
+ scheme: 'bearer',
1491
+ type: 'http'
1492
+ }
1493
+ ],
922
1494
  url: '/umbraco/engage/management/api/v1/referral-group',
923
1495
  ...options,
924
1496
  headers: {
@@ -929,14 +1501,24 @@ export class ReferralGroupService {
929
1501
  }
930
1502
  static getReferralGroupAll(options) {
931
1503
  return (options?.client ?? client).get({
932
- security: [{ scheme: 'bearer', type: 'http' }],
1504
+ security: [
1505
+ {
1506
+ scheme: 'bearer',
1507
+ type: 'http'
1508
+ }
1509
+ ],
933
1510
  url: '/umbraco/engage/management/api/v1/referral-group/all',
934
1511
  ...options
935
1512
  });
936
1513
  }
937
1514
  static getReferralGroupVisitors(options) {
938
1515
  return (options?.client ?? client).get({
939
- security: [{ scheme: 'bearer', type: 'http' }],
1516
+ security: [
1517
+ {
1518
+ scheme: 'bearer',
1519
+ type: 'http'
1520
+ }
1521
+ ],
940
1522
  url: '/umbraco/engage/management/api/v1/referral-group/visitors',
941
1523
  ...options
942
1524
  });
@@ -945,7 +1527,12 @@ export class ReferralGroupService {
945
1527
  export class ReferralScoringService {
946
1528
  static postReferralScoringScored(options) {
947
1529
  return (options?.client ?? client).post({
948
- security: [{ scheme: 'bearer', type: 'http' }],
1530
+ security: [
1531
+ {
1532
+ scheme: 'bearer',
1533
+ type: 'http'
1534
+ }
1535
+ ],
949
1536
  url: '/umbraco/engage/management/api/v1/referral-scoring/scored',
950
1537
  ...options,
951
1538
  headers: {
@@ -956,7 +1543,12 @@ export class ReferralScoringService {
956
1543
  }
957
1544
  static postReferralScoringUnscored(options) {
958
1545
  return (options?.client ?? client).post({
959
- security: [{ scheme: 'bearer', type: 'http' }],
1546
+ security: [
1547
+ {
1548
+ scheme: 'bearer',
1549
+ type: 'http'
1550
+ }
1551
+ ],
960
1552
  url: '/umbraco/engage/management/api/v1/referral-scoring/unscored',
961
1553
  ...options,
962
1554
  headers: {
@@ -969,42 +1561,72 @@ export class ReferralScoringService {
969
1561
  export class ReportingService {
970
1562
  static getReporting(options) {
971
1563
  return (options?.client ?? client).get({
972
- security: [{ scheme: 'bearer', type: 'http' }],
1564
+ security: [
1565
+ {
1566
+ scheme: 'bearer',
1567
+ type: 'http'
1568
+ }
1569
+ ],
973
1570
  url: '/umbraco/engage/management/api/v1/reporting',
974
1571
  ...options
975
1572
  });
976
1573
  }
977
1574
  static postReportingGenerationStart(options) {
978
1575
  return (options?.client ?? client).post({
979
- security: [{ scheme: 'bearer', type: 'http' }],
1576
+ security: [
1577
+ {
1578
+ scheme: 'bearer',
1579
+ type: 'http'
1580
+ }
1581
+ ],
980
1582
  url: '/umbraco/engage/management/api/v1/reporting/generation/start',
981
1583
  ...options
982
1584
  });
983
1585
  }
984
1586
  static getReportingGenerationStatus(options) {
985
1587
  return (options?.client ?? client).get({
986
- security: [{ scheme: 'bearer', type: 'http' }],
1588
+ security: [
1589
+ {
1590
+ scheme: 'bearer',
1591
+ type: 'http'
1592
+ }
1593
+ ],
987
1594
  url: '/umbraco/engage/management/api/v1/reporting/generation/status',
988
1595
  ...options
989
1596
  });
990
1597
  }
991
1598
  static getReportingGoalPersonalizationPerformanceBySegmentId(options) {
992
1599
  return (options.client ?? client).get({
993
- security: [{ scheme: 'bearer', type: 'http' }],
1600
+ security: [
1601
+ {
1602
+ scheme: 'bearer',
1603
+ type: 'http'
1604
+ }
1605
+ ],
994
1606
  url: '/umbraco/engage/management/api/v1/reporting/goal/personalization/performance/{segmentId}',
995
1607
  ...options
996
1608
  });
997
1609
  }
998
1610
  static getReportingSegmentSessionsPersonalizationBySegmentId(options) {
999
1611
  return (options.client ?? client).get({
1000
- security: [{ scheme: 'bearer', type: 'http' }],
1612
+ security: [
1613
+ {
1614
+ scheme: 'bearer',
1615
+ type: 'http'
1616
+ }
1617
+ ],
1001
1618
  url: '/umbraco/engage/management/api/v1/reporting/segment/sessions/personalization/{segmentId}',
1002
1619
  ...options
1003
1620
  });
1004
1621
  }
1005
1622
  static getReportingSegmentSessionsPotentialBySegmentId(options) {
1006
1623
  return (options.client ?? client).get({
1007
- security: [{ scheme: 'bearer', type: 'http' }],
1624
+ security: [
1625
+ {
1626
+ scheme: 'bearer',
1627
+ type: 'http'
1628
+ }
1629
+ ],
1008
1630
  url: '/umbraco/engage/management/api/v1/reporting/segment/sessions/potential/{segmentId}',
1009
1631
  ...options
1010
1632
  });
@@ -1013,7 +1635,12 @@ export class ReportingService {
1013
1635
  export class SearchTermsService {
1014
1636
  static getSearchTerms(options) {
1015
1637
  return (options?.client ?? client).get({
1016
- security: [{ scheme: 'bearer', type: 'http' }],
1638
+ security: [
1639
+ {
1640
+ scheme: 'bearer',
1641
+ type: 'http'
1642
+ }
1643
+ ],
1017
1644
  url: '/umbraco/engage/management/api/v1/search-terms',
1018
1645
  ...options
1019
1646
  });
@@ -1022,21 +1649,36 @@ export class SearchTermsService {
1022
1649
  export class SegmentsService {
1023
1650
  static deleteSegments(options) {
1024
1651
  return (options?.client ?? client).delete({
1025
- security: [{ scheme: 'bearer', type: 'http' }],
1652
+ security: [
1653
+ {
1654
+ scheme: 'bearer',
1655
+ type: 'http'
1656
+ }
1657
+ ],
1026
1658
  url: '/umbraco/engage/management/api/v1/segments',
1027
1659
  ...options
1028
1660
  });
1029
1661
  }
1030
1662
  static getSegments(options) {
1031
1663
  return (options?.client ?? client).get({
1032
- security: [{ scheme: 'bearer', type: 'http' }],
1664
+ security: [
1665
+ {
1666
+ scheme: 'bearer',
1667
+ type: 'http'
1668
+ }
1669
+ ],
1033
1670
  url: '/umbraco/engage/management/api/v1/segments',
1034
1671
  ...options
1035
1672
  });
1036
1673
  }
1037
1674
  static postSegments(options) {
1038
1675
  return (options?.client ?? client).post({
1039
- security: [{ scheme: 'bearer', type: 'http' }],
1676
+ security: [
1677
+ {
1678
+ scheme: 'bearer',
1679
+ type: 'http'
1680
+ }
1681
+ ],
1040
1682
  url: '/umbraco/engage/management/api/v1/segments',
1041
1683
  ...options,
1042
1684
  headers: {
@@ -1047,28 +1689,48 @@ export class SegmentsService {
1047
1689
  }
1048
1690
  static getSegmentsAll(options) {
1049
1691
  return (options?.client ?? client).get({
1050
- security: [{ scheme: 'bearer', type: 'http' }],
1692
+ security: [
1693
+ {
1694
+ scheme: 'bearer',
1695
+ type: 'http'
1696
+ }
1697
+ ],
1051
1698
  url: '/umbraco/engage/management/api/v1/segments/all',
1052
1699
  ...options
1053
1700
  });
1054
1701
  }
1055
1702
  static deleteSegmentsDeleteSegmentContent(options) {
1056
1703
  return (options?.client ?? client).delete({
1057
- security: [{ scheme: 'bearer', type: 'http' }],
1704
+ security: [
1705
+ {
1706
+ scheme: 'bearer',
1707
+ type: 'http'
1708
+ }
1709
+ ],
1058
1710
  url: '/umbraco/engage/management/api/v1/segments/delete-segment-content',
1059
1711
  ...options
1060
1712
  });
1061
1713
  }
1062
1714
  static getSegmentsLocationsData(options) {
1063
1715
  return (options?.client ?? client).get({
1064
- security: [{ scheme: 'bearer', type: 'http' }],
1716
+ security: [
1717
+ {
1718
+ scheme: 'bearer',
1719
+ type: 'http'
1720
+ }
1721
+ ],
1065
1722
  url: '/umbraco/engage/management/api/v1/segments/locations/data',
1066
1723
  ...options
1067
1724
  });
1068
1725
  }
1069
1726
  static postSegmentsUpdatePriority(options) {
1070
1727
  return (options?.client ?? client).post({
1071
- security: [{ scheme: 'bearer', type: 'http' }],
1728
+ security: [
1729
+ {
1730
+ scheme: 'bearer',
1731
+ type: 'http'
1732
+ }
1733
+ ],
1072
1734
  url: '/umbraco/engage/management/api/v1/segments/update-priority',
1073
1735
  ...options,
1074
1736
  headers: {
@@ -1081,7 +1743,12 @@ export class SegmentsService {
1081
1743
  export class StatisticsService {
1082
1744
  static getStatistics(options) {
1083
1745
  return (options?.client ?? client).get({
1084
- security: [{ scheme: 'bearer', type: 'http' }],
1746
+ security: [
1747
+ {
1748
+ scheme: 'bearer',
1749
+ type: 'http'
1750
+ }
1751
+ ],
1085
1752
  url: '/umbraco/engage/management/api/v1/statistics',
1086
1753
  ...options
1087
1754
  });
@@ -1090,14 +1757,24 @@ export class StatisticsService {
1090
1757
  export class UserGroupPermissionsService {
1091
1758
  static getPermissionsUserGroup(options) {
1092
1759
  return (options?.client ?? client).get({
1093
- security: [{ scheme: 'bearer', type: 'http' }],
1760
+ security: [
1761
+ {
1762
+ scheme: 'bearer',
1763
+ type: 'http'
1764
+ }
1765
+ ],
1094
1766
  url: '/umbraco/engage/management/api/v1/permissions/user-group',
1095
1767
  ...options
1096
1768
  });
1097
1769
  }
1098
1770
  static postPermissionsUserGroup(options) {
1099
1771
  return (options?.client ?? client).post({
1100
- security: [{ scheme: 'bearer', type: 'http' }],
1772
+ security: [
1773
+ {
1774
+ scheme: 'bearer',
1775
+ type: 'http'
1776
+ }
1777
+ ],
1101
1778
  url: '/umbraco/engage/management/api/v1/permissions/user-group',
1102
1779
  ...options,
1103
1780
  headers: {
@@ -1108,7 +1785,12 @@ export class UserGroupPermissionsService {
1108
1785
  }
1109
1786
  static getPermissionsUserGroupAll(options) {
1110
1787
  return (options?.client ?? client).get({
1111
- security: [{ scheme: 'bearer', type: 'http' }],
1788
+ security: [
1789
+ {
1790
+ scheme: 'bearer',
1791
+ type: 'http'
1792
+ }
1793
+ ],
1112
1794
  url: '/umbraco/engage/management/api/v1/permissions/user-group/all',
1113
1795
  ...options
1114
1796
  });