@umbraco-engage/backoffice 17.0.0-rc3 → 17.0.0

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