fusio-sdk 6.1.0 → 6.2.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.
package/dist/index.cjs CHANGED
@@ -43,6 +43,7 @@ __export(index_exports, {
43
43
  BackendLogTag: () => BackendLogTag,
44
44
  BackendMarketplaceActionTag: () => BackendMarketplaceActionTag,
45
45
  BackendMarketplaceAppTag: () => BackendMarketplaceAppTag,
46
+ BackendMarketplaceBundleTag: () => BackendMarketplaceBundleTag,
46
47
  BackendMarketplaceTag: () => BackendMarketplaceTag,
47
48
  BackendOperationTag: () => BackendOperationTag,
48
49
  BackendPageTag: () => BackendPageTag,
@@ -3097,9 +3098,127 @@ var BackendMarketplaceAppTag = class extends import_sdkgen_client46.TagAbstract
3097
3098
  }
3098
3099
  };
3099
3100
 
3100
- // src/BackendMarketplaceTag.ts
3101
+ // src/BackendMarketplaceBundleTag.ts
3101
3102
  var import_sdkgen_client48 = require("sdkgen-client");
3102
- var BackendMarketplaceTag = class extends import_sdkgen_client48.TagAbstract {
3103
+ var import_sdkgen_client49 = require("sdkgen-client");
3104
+ var BackendMarketplaceBundleTag = class extends import_sdkgen_client48.TagAbstract {
3105
+ /**
3106
+ * Returns a specific marketplace bundle
3107
+ *
3108
+ * @returns {Promise<MarketplaceBundle>}
3109
+ * @throws {CommonMessageException}
3110
+ * @throws {ClientException}
3111
+ */
3112
+ async get(user, name) {
3113
+ const url = this.parser.url("/backend/marketplace/bundle/:user/:name", {
3114
+ "user": user,
3115
+ "name": name
3116
+ });
3117
+ let request = {
3118
+ url,
3119
+ method: "GET",
3120
+ headers: {},
3121
+ params: this.parser.query({}, [])
3122
+ };
3123
+ const response = await this.httpClient.request(request);
3124
+ if (response.ok) {
3125
+ return await response.json();
3126
+ }
3127
+ const statusCode = response.status;
3128
+ if (statusCode >= 0 && statusCode <= 999) {
3129
+ throw new CommonMessageException(await response.json());
3130
+ }
3131
+ throw new import_sdkgen_client49.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3132
+ }
3133
+ /**
3134
+ * Returns a paginated list of marketplace bundles
3135
+ *
3136
+ * @returns {Promise<MarketplaceBundleCollection>}
3137
+ * @throws {CommonMessageException}
3138
+ * @throws {ClientException}
3139
+ */
3140
+ async getAll(startIndex, query) {
3141
+ const url = this.parser.url("/backend/marketplace/bundle", {});
3142
+ let request = {
3143
+ url,
3144
+ method: "GET",
3145
+ headers: {},
3146
+ params: this.parser.query({
3147
+ "startIndex": startIndex,
3148
+ "query": query
3149
+ }, [])
3150
+ };
3151
+ const response = await this.httpClient.request(request);
3152
+ if (response.ok) {
3153
+ return await response.json();
3154
+ }
3155
+ const statusCode = response.status;
3156
+ if (statusCode >= 0 && statusCode <= 999) {
3157
+ throw new CommonMessageException(await response.json());
3158
+ }
3159
+ throw new import_sdkgen_client49.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3160
+ }
3161
+ /**
3162
+ * Installs an bundle from the marketplace
3163
+ *
3164
+ * @returns {Promise<MarketplaceMessage>}
3165
+ * @throws {CommonMessageException}
3166
+ * @throws {ClientException}
3167
+ */
3168
+ async install(payload) {
3169
+ const url = this.parser.url("/backend/marketplace/bundle", {});
3170
+ let request = {
3171
+ url,
3172
+ method: "POST",
3173
+ headers: {
3174
+ "Content-Type": "application/json"
3175
+ },
3176
+ params: this.parser.query({}, []),
3177
+ data: payload
3178
+ };
3179
+ const response = await this.httpClient.request(request);
3180
+ if (response.ok) {
3181
+ return await response.json();
3182
+ }
3183
+ const statusCode = response.status;
3184
+ if (statusCode >= 0 && statusCode <= 999) {
3185
+ throw new CommonMessageException(await response.json());
3186
+ }
3187
+ throw new import_sdkgen_client49.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3188
+ }
3189
+ /**
3190
+ * Upgrades an bundle from the marketplace
3191
+ *
3192
+ * @returns {Promise<MarketplaceMessage>}
3193
+ * @throws {CommonMessageException}
3194
+ * @throws {ClientException}
3195
+ */
3196
+ async upgrade(user, name) {
3197
+ const url = this.parser.url("/backend/marketplace/bundle/:user/:name", {
3198
+ "user": user,
3199
+ "name": name
3200
+ });
3201
+ let request = {
3202
+ url,
3203
+ method: "PUT",
3204
+ headers: {},
3205
+ params: this.parser.query({}, [])
3206
+ };
3207
+ const response = await this.httpClient.request(request);
3208
+ if (response.ok) {
3209
+ return await response.json();
3210
+ }
3211
+ const statusCode = response.status;
3212
+ if (statusCode >= 0 && statusCode <= 999) {
3213
+ throw new CommonMessageException(await response.json());
3214
+ }
3215
+ throw new import_sdkgen_client49.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3216
+ }
3217
+ };
3218
+
3219
+ // src/BackendMarketplaceTag.ts
3220
+ var import_sdkgen_client50 = require("sdkgen-client");
3221
+ var BackendMarketplaceTag = class extends import_sdkgen_client50.TagAbstract {
3103
3222
  action() {
3104
3223
  return new BackendMarketplaceActionTag(
3105
3224
  this.httpClient,
@@ -3112,12 +3231,18 @@ var BackendMarketplaceTag = class extends import_sdkgen_client48.TagAbstract {
3112
3231
  this.parser
3113
3232
  );
3114
3233
  }
3234
+ bundle() {
3235
+ return new BackendMarketplaceBundleTag(
3236
+ this.httpClient,
3237
+ this.parser
3238
+ );
3239
+ }
3115
3240
  };
3116
3241
 
3117
3242
  // src/BackendOperationTag.ts
3118
- var import_sdkgen_client49 = require("sdkgen-client");
3119
- var import_sdkgen_client50 = require("sdkgen-client");
3120
- var BackendOperationTag = class extends import_sdkgen_client49.TagAbstract {
3243
+ var import_sdkgen_client51 = require("sdkgen-client");
3244
+ var import_sdkgen_client52 = require("sdkgen-client");
3245
+ var BackendOperationTag = class extends import_sdkgen_client51.TagAbstract {
3121
3246
  /**
3122
3247
  * Creates a new operation
3123
3248
  *
@@ -3144,7 +3269,7 @@ var BackendOperationTag = class extends import_sdkgen_client49.TagAbstract {
3144
3269
  if (statusCode >= 0 && statusCode <= 999) {
3145
3270
  throw new CommonMessageException(await response.json());
3146
3271
  }
3147
- throw new import_sdkgen_client50.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3272
+ throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3148
3273
  }
3149
3274
  /**
3150
3275
  * Deletes an existing operation
@@ -3171,7 +3296,7 @@ var BackendOperationTag = class extends import_sdkgen_client49.TagAbstract {
3171
3296
  if (statusCode >= 0 && statusCode <= 999) {
3172
3297
  throw new CommonMessageException(await response.json());
3173
3298
  }
3174
- throw new import_sdkgen_client50.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3299
+ throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3175
3300
  }
3176
3301
  /**
3177
3302
  * Returns a specific operation
@@ -3198,7 +3323,7 @@ var BackendOperationTag = class extends import_sdkgen_client49.TagAbstract {
3198
3323
  if (statusCode >= 0 && statusCode <= 999) {
3199
3324
  throw new CommonMessageException(await response.json());
3200
3325
  }
3201
- throw new import_sdkgen_client50.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3326
+ throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3202
3327
  }
3203
3328
  /**
3204
3329
  * Returns a paginated list of operations
@@ -3227,7 +3352,7 @@ var BackendOperationTag = class extends import_sdkgen_client49.TagAbstract {
3227
3352
  if (statusCode >= 0 && statusCode <= 999) {
3228
3353
  throw new CommonMessageException(await response.json());
3229
3354
  }
3230
- throw new import_sdkgen_client50.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3355
+ throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3231
3356
  }
3232
3357
  /**
3233
3358
  * Updates an existing operation
@@ -3257,14 +3382,14 @@ var BackendOperationTag = class extends import_sdkgen_client49.TagAbstract {
3257
3382
  if (statusCode >= 0 && statusCode <= 999) {
3258
3383
  throw new CommonMessageException(await response.json());
3259
3384
  }
3260
- throw new import_sdkgen_client50.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3385
+ throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3261
3386
  }
3262
3387
  };
3263
3388
 
3264
3389
  // src/BackendPageTag.ts
3265
- var import_sdkgen_client51 = require("sdkgen-client");
3266
- var import_sdkgen_client52 = require("sdkgen-client");
3267
- var BackendPageTag = class extends import_sdkgen_client51.TagAbstract {
3390
+ var import_sdkgen_client53 = require("sdkgen-client");
3391
+ var import_sdkgen_client54 = require("sdkgen-client");
3392
+ var BackendPageTag = class extends import_sdkgen_client53.TagAbstract {
3268
3393
  /**
3269
3394
  * Creates a new page
3270
3395
  *
@@ -3291,7 +3416,7 @@ var BackendPageTag = class extends import_sdkgen_client51.TagAbstract {
3291
3416
  if (statusCode >= 0 && statusCode <= 999) {
3292
3417
  throw new CommonMessageException(await response.json());
3293
3418
  }
3294
- throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3419
+ throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3295
3420
  }
3296
3421
  /**
3297
3422
  * Deletes an existing page
@@ -3318,7 +3443,7 @@ var BackendPageTag = class extends import_sdkgen_client51.TagAbstract {
3318
3443
  if (statusCode >= 0 && statusCode <= 999) {
3319
3444
  throw new CommonMessageException(await response.json());
3320
3445
  }
3321
- throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3446
+ throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3322
3447
  }
3323
3448
  /**
3324
3449
  * Returns a specific page
@@ -3345,7 +3470,7 @@ var BackendPageTag = class extends import_sdkgen_client51.TagAbstract {
3345
3470
  if (statusCode >= 0 && statusCode <= 999) {
3346
3471
  throw new CommonMessageException(await response.json());
3347
3472
  }
3348
- throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3473
+ throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3349
3474
  }
3350
3475
  /**
3351
3476
  * Returns a paginated list of pages
@@ -3374,7 +3499,7 @@ var BackendPageTag = class extends import_sdkgen_client51.TagAbstract {
3374
3499
  if (statusCode >= 0 && statusCode <= 999) {
3375
3500
  throw new CommonMessageException(await response.json());
3376
3501
  }
3377
- throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3502
+ throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3378
3503
  }
3379
3504
  /**
3380
3505
  * Updates an existing page
@@ -3404,14 +3529,14 @@ var BackendPageTag = class extends import_sdkgen_client51.TagAbstract {
3404
3529
  if (statusCode >= 0 && statusCode <= 999) {
3405
3530
  throw new CommonMessageException(await response.json());
3406
3531
  }
3407
- throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3532
+ throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3408
3533
  }
3409
3534
  };
3410
3535
 
3411
3536
  // src/BackendPlanTag.ts
3412
- var import_sdkgen_client53 = require("sdkgen-client");
3413
- var import_sdkgen_client54 = require("sdkgen-client");
3414
- var BackendPlanTag = class extends import_sdkgen_client53.TagAbstract {
3537
+ var import_sdkgen_client55 = require("sdkgen-client");
3538
+ var import_sdkgen_client56 = require("sdkgen-client");
3539
+ var BackendPlanTag = class extends import_sdkgen_client55.TagAbstract {
3415
3540
  /**
3416
3541
  * Creates a new plan
3417
3542
  *
@@ -3438,7 +3563,7 @@ var BackendPlanTag = class extends import_sdkgen_client53.TagAbstract {
3438
3563
  if (statusCode >= 0 && statusCode <= 999) {
3439
3564
  throw new CommonMessageException(await response.json());
3440
3565
  }
3441
- throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3566
+ throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3442
3567
  }
3443
3568
  /**
3444
3569
  * Deletes an existing plan
@@ -3465,7 +3590,7 @@ var BackendPlanTag = class extends import_sdkgen_client53.TagAbstract {
3465
3590
  if (statusCode >= 0 && statusCode <= 999) {
3466
3591
  throw new CommonMessageException(await response.json());
3467
3592
  }
3468
- throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3593
+ throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3469
3594
  }
3470
3595
  /**
3471
3596
  * Returns a specific plan
@@ -3492,7 +3617,7 @@ var BackendPlanTag = class extends import_sdkgen_client53.TagAbstract {
3492
3617
  if (statusCode >= 0 && statusCode <= 999) {
3493
3618
  throw new CommonMessageException(await response.json());
3494
3619
  }
3495
- throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3620
+ throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3496
3621
  }
3497
3622
  /**
3498
3623
  * Returns a paginated list of plans
@@ -3521,7 +3646,7 @@ var BackendPlanTag = class extends import_sdkgen_client53.TagAbstract {
3521
3646
  if (statusCode >= 0 && statusCode <= 999) {
3522
3647
  throw new CommonMessageException(await response.json());
3523
3648
  }
3524
- throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3649
+ throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3525
3650
  }
3526
3651
  /**
3527
3652
  * Updates an existing plan
@@ -3551,14 +3676,14 @@ var BackendPlanTag = class extends import_sdkgen_client53.TagAbstract {
3551
3676
  if (statusCode >= 0 && statusCode <= 999) {
3552
3677
  throw new CommonMessageException(await response.json());
3553
3678
  }
3554
- throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3679
+ throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3555
3680
  }
3556
3681
  };
3557
3682
 
3558
3683
  // src/BackendRateTag.ts
3559
- var import_sdkgen_client55 = require("sdkgen-client");
3560
- var import_sdkgen_client56 = require("sdkgen-client");
3561
- var BackendRateTag = class extends import_sdkgen_client55.TagAbstract {
3684
+ var import_sdkgen_client57 = require("sdkgen-client");
3685
+ var import_sdkgen_client58 = require("sdkgen-client");
3686
+ var BackendRateTag = class extends import_sdkgen_client57.TagAbstract {
3562
3687
  /**
3563
3688
  * Creates a new rate limitation
3564
3689
  *
@@ -3585,7 +3710,7 @@ var BackendRateTag = class extends import_sdkgen_client55.TagAbstract {
3585
3710
  if (statusCode >= 0 && statusCode <= 999) {
3586
3711
  throw new CommonMessageException(await response.json());
3587
3712
  }
3588
- throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3713
+ throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3589
3714
  }
3590
3715
  /**
3591
3716
  * Deletes an existing rate
@@ -3612,7 +3737,7 @@ var BackendRateTag = class extends import_sdkgen_client55.TagAbstract {
3612
3737
  if (statusCode >= 0 && statusCode <= 999) {
3613
3738
  throw new CommonMessageException(await response.json());
3614
3739
  }
3615
- throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3740
+ throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3616
3741
  }
3617
3742
  /**
3618
3743
  * Returns a specific rate
@@ -3639,7 +3764,7 @@ var BackendRateTag = class extends import_sdkgen_client55.TagAbstract {
3639
3764
  if (statusCode >= 0 && statusCode <= 999) {
3640
3765
  throw new CommonMessageException(await response.json());
3641
3766
  }
3642
- throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3767
+ throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3643
3768
  }
3644
3769
  /**
3645
3770
  * Returns a paginated list of rate limitations
@@ -3668,7 +3793,7 @@ var BackendRateTag = class extends import_sdkgen_client55.TagAbstract {
3668
3793
  if (statusCode >= 0 && statusCode <= 999) {
3669
3794
  throw new CommonMessageException(await response.json());
3670
3795
  }
3671
- throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3796
+ throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3672
3797
  }
3673
3798
  /**
3674
3799
  * Updates an existing rate
@@ -3698,14 +3823,14 @@ var BackendRateTag = class extends import_sdkgen_client55.TagAbstract {
3698
3823
  if (statusCode >= 0 && statusCode <= 999) {
3699
3824
  throw new CommonMessageException(await response.json());
3700
3825
  }
3701
- throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3826
+ throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3702
3827
  }
3703
3828
  };
3704
3829
 
3705
3830
  // src/BackendRoleTag.ts
3706
- var import_sdkgen_client57 = require("sdkgen-client");
3707
- var import_sdkgen_client58 = require("sdkgen-client");
3708
- var BackendRoleTag = class extends import_sdkgen_client57.TagAbstract {
3831
+ var import_sdkgen_client59 = require("sdkgen-client");
3832
+ var import_sdkgen_client60 = require("sdkgen-client");
3833
+ var BackendRoleTag = class extends import_sdkgen_client59.TagAbstract {
3709
3834
  /**
3710
3835
  * Creates a new role
3711
3836
  *
@@ -3732,7 +3857,7 @@ var BackendRoleTag = class extends import_sdkgen_client57.TagAbstract {
3732
3857
  if (statusCode >= 0 && statusCode <= 999) {
3733
3858
  throw new CommonMessageException(await response.json());
3734
3859
  }
3735
- throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3860
+ throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3736
3861
  }
3737
3862
  /**
3738
3863
  * Deletes an existing role
@@ -3759,7 +3884,7 @@ var BackendRoleTag = class extends import_sdkgen_client57.TagAbstract {
3759
3884
  if (statusCode >= 0 && statusCode <= 999) {
3760
3885
  throw new CommonMessageException(await response.json());
3761
3886
  }
3762
- throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3887
+ throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3763
3888
  }
3764
3889
  /**
3765
3890
  * Returns a specific role
@@ -3786,7 +3911,7 @@ var BackendRoleTag = class extends import_sdkgen_client57.TagAbstract {
3786
3911
  if (statusCode >= 0 && statusCode <= 999) {
3787
3912
  throw new CommonMessageException(await response.json());
3788
3913
  }
3789
- throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3914
+ throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3790
3915
  }
3791
3916
  /**
3792
3917
  * Returns a paginated list of roles
@@ -3815,7 +3940,7 @@ var BackendRoleTag = class extends import_sdkgen_client57.TagAbstract {
3815
3940
  if (statusCode >= 0 && statusCode <= 999) {
3816
3941
  throw new CommonMessageException(await response.json());
3817
3942
  }
3818
- throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3943
+ throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3819
3944
  }
3820
3945
  /**
3821
3946
  * Updates an existing role
@@ -3845,14 +3970,14 @@ var BackendRoleTag = class extends import_sdkgen_client57.TagAbstract {
3845
3970
  if (statusCode >= 0 && statusCode <= 999) {
3846
3971
  throw new CommonMessageException(await response.json());
3847
3972
  }
3848
- throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3973
+ throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3849
3974
  }
3850
3975
  };
3851
3976
 
3852
3977
  // src/BackendSchemaTag.ts
3853
- var import_sdkgen_client59 = require("sdkgen-client");
3854
- var import_sdkgen_client60 = require("sdkgen-client");
3855
- var BackendSchemaTag = class extends import_sdkgen_client59.TagAbstract {
3978
+ var import_sdkgen_client61 = require("sdkgen-client");
3979
+ var import_sdkgen_client62 = require("sdkgen-client");
3980
+ var BackendSchemaTag = class extends import_sdkgen_client61.TagAbstract {
3856
3981
  /**
3857
3982
  * Creates a new schema
3858
3983
  *
@@ -3879,7 +4004,7 @@ var BackendSchemaTag = class extends import_sdkgen_client59.TagAbstract {
3879
4004
  if (statusCode >= 0 && statusCode <= 999) {
3880
4005
  throw new CommonMessageException(await response.json());
3881
4006
  }
3882
- throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4007
+ throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3883
4008
  }
3884
4009
  /**
3885
4010
  * Deletes an existing schema
@@ -3906,7 +4031,7 @@ var BackendSchemaTag = class extends import_sdkgen_client59.TagAbstract {
3906
4031
  if (statusCode >= 0 && statusCode <= 999) {
3907
4032
  throw new CommonMessageException(await response.json());
3908
4033
  }
3909
- throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4034
+ throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3910
4035
  }
3911
4036
  /**
3912
4037
  * Returns a specific schema
@@ -3933,7 +4058,7 @@ var BackendSchemaTag = class extends import_sdkgen_client59.TagAbstract {
3933
4058
  if (statusCode >= 0 && statusCode <= 999) {
3934
4059
  throw new CommonMessageException(await response.json());
3935
4060
  }
3936
- throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4061
+ throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3937
4062
  }
3938
4063
  /**
3939
4064
  * Returns a paginated list of schemas
@@ -3962,7 +4087,7 @@ var BackendSchemaTag = class extends import_sdkgen_client59.TagAbstract {
3962
4087
  if (statusCode >= 0 && statusCode <= 999) {
3963
4088
  throw new CommonMessageException(await response.json());
3964
4089
  }
3965
- throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4090
+ throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3966
4091
  }
3967
4092
  /**
3968
4093
  * Returns a HTML preview of the provided schema
@@ -3989,7 +4114,7 @@ var BackendSchemaTag = class extends import_sdkgen_client59.TagAbstract {
3989
4114
  if (statusCode >= 0 && statusCode <= 999) {
3990
4115
  throw new CommonMessageException(await response.json());
3991
4116
  }
3992
- throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4117
+ throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3993
4118
  }
3994
4119
  /**
3995
4120
  * Updates an existing schema
@@ -4019,14 +4144,14 @@ var BackendSchemaTag = class extends import_sdkgen_client59.TagAbstract {
4019
4144
  if (statusCode >= 0 && statusCode <= 999) {
4020
4145
  throw new CommonMessageException(await response.json());
4021
4146
  }
4022
- throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4147
+ throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4023
4148
  }
4024
4149
  };
4025
4150
 
4026
4151
  // src/BackendScopeTag.ts
4027
- var import_sdkgen_client61 = require("sdkgen-client");
4028
- var import_sdkgen_client62 = require("sdkgen-client");
4029
- var BackendScopeTag = class extends import_sdkgen_client61.TagAbstract {
4152
+ var import_sdkgen_client63 = require("sdkgen-client");
4153
+ var import_sdkgen_client64 = require("sdkgen-client");
4154
+ var BackendScopeTag = class extends import_sdkgen_client63.TagAbstract {
4030
4155
  /**
4031
4156
  * Creates a new scope
4032
4157
  *
@@ -4053,7 +4178,7 @@ var BackendScopeTag = class extends import_sdkgen_client61.TagAbstract {
4053
4178
  if (statusCode >= 0 && statusCode <= 999) {
4054
4179
  throw new CommonMessageException(await response.json());
4055
4180
  }
4056
- throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4181
+ throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4057
4182
  }
4058
4183
  /**
4059
4184
  * Deletes an existing scope
@@ -4080,7 +4205,7 @@ var BackendScopeTag = class extends import_sdkgen_client61.TagAbstract {
4080
4205
  if (statusCode >= 0 && statusCode <= 999) {
4081
4206
  throw new CommonMessageException(await response.json());
4082
4207
  }
4083
- throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4208
+ throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4084
4209
  }
4085
4210
  /**
4086
4211
  * Returns a specific scope
@@ -4107,7 +4232,7 @@ var BackendScopeTag = class extends import_sdkgen_client61.TagAbstract {
4107
4232
  if (statusCode >= 0 && statusCode <= 999) {
4108
4233
  throw new CommonMessageException(await response.json());
4109
4234
  }
4110
- throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4235
+ throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4111
4236
  }
4112
4237
  /**
4113
4238
  * Returns a paginated list of scopes
@@ -4136,7 +4261,7 @@ var BackendScopeTag = class extends import_sdkgen_client61.TagAbstract {
4136
4261
  if (statusCode >= 0 && statusCode <= 999) {
4137
4262
  throw new CommonMessageException(await response.json());
4138
4263
  }
4139
- throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4264
+ throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4140
4265
  }
4141
4266
  /**
4142
4267
  * Returns all available scopes grouped by category
@@ -4161,7 +4286,7 @@ var BackendScopeTag = class extends import_sdkgen_client61.TagAbstract {
4161
4286
  if (statusCode >= 0 && statusCode <= 999) {
4162
4287
  throw new CommonMessageException(await response.json());
4163
4288
  }
4164
- throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4289
+ throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4165
4290
  }
4166
4291
  /**
4167
4292
  * Updates an existing scope
@@ -4191,14 +4316,14 @@ var BackendScopeTag = class extends import_sdkgen_client61.TagAbstract {
4191
4316
  if (statusCode >= 0 && statusCode <= 999) {
4192
4317
  throw new CommonMessageException(await response.json());
4193
4318
  }
4194
- throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4319
+ throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4195
4320
  }
4196
4321
  };
4197
4322
 
4198
4323
  // src/BackendSdkTag.ts
4199
- var import_sdkgen_client63 = require("sdkgen-client");
4200
- var import_sdkgen_client64 = require("sdkgen-client");
4201
- var BackendSdkTag = class extends import_sdkgen_client63.TagAbstract {
4324
+ var import_sdkgen_client65 = require("sdkgen-client");
4325
+ var import_sdkgen_client66 = require("sdkgen-client");
4326
+ var BackendSdkTag = class extends import_sdkgen_client65.TagAbstract {
4202
4327
  /**
4203
4328
  * Generates a specific SDK
4204
4329
  *
@@ -4225,7 +4350,7 @@ var BackendSdkTag = class extends import_sdkgen_client63.TagAbstract {
4225
4350
  if (statusCode >= 0 && statusCode <= 999) {
4226
4351
  throw new CommonMessageException(await response.json());
4227
4352
  }
4228
- throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4353
+ throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4229
4354
  }
4230
4355
  /**
4231
4356
  * Returns a paginated list of SDKs
@@ -4250,14 +4375,14 @@ var BackendSdkTag = class extends import_sdkgen_client63.TagAbstract {
4250
4375
  if (statusCode >= 0 && statusCode <= 999) {
4251
4376
  throw new CommonMessageException(await response.json());
4252
4377
  }
4253
- throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4378
+ throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4254
4379
  }
4255
4380
  };
4256
4381
 
4257
4382
  // src/BackendStatisticTag.ts
4258
- var import_sdkgen_client65 = require("sdkgen-client");
4259
- var import_sdkgen_client66 = require("sdkgen-client");
4260
- var BackendStatisticTag = class extends import_sdkgen_client65.TagAbstract {
4383
+ var import_sdkgen_client67 = require("sdkgen-client");
4384
+ var import_sdkgen_client68 = require("sdkgen-client");
4385
+ var BackendStatisticTag = class extends import_sdkgen_client67.TagAbstract {
4261
4386
  /**
4262
4387
  * Returns a statistic containing the activities per user
4263
4388
  *
@@ -4296,7 +4421,7 @@ var BackendStatisticTag = class extends import_sdkgen_client65.TagAbstract {
4296
4421
  if (statusCode >= 0 && statusCode <= 999) {
4297
4422
  throw new CommonMessageException(await response.json());
4298
4423
  }
4299
- throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4424
+ throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4300
4425
  }
4301
4426
  /**
4302
4427
  * Returns a statistic containing the request count
@@ -4336,7 +4461,7 @@ var BackendStatisticTag = class extends import_sdkgen_client65.TagAbstract {
4336
4461
  if (statusCode >= 0 && statusCode <= 999) {
4337
4462
  throw new CommonMessageException(await response.json());
4338
4463
  }
4339
- throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4464
+ throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4340
4465
  }
4341
4466
  /**
4342
4467
  * Returns a statistic containing the errors per operation
@@ -4376,7 +4501,7 @@ var BackendStatisticTag = class extends import_sdkgen_client65.TagAbstract {
4376
4501
  if (statusCode >= 0 && statusCode <= 999) {
4377
4502
  throw new CommonMessageException(await response.json());
4378
4503
  }
4379
- throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4504
+ throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4380
4505
  }
4381
4506
  /**
4382
4507
  * Returns a statistic containing the incoming requests
@@ -4416,7 +4541,7 @@ var BackendStatisticTag = class extends import_sdkgen_client65.TagAbstract {
4416
4541
  if (statusCode >= 0 && statusCode <= 999) {
4417
4542
  throw new CommonMessageException(await response.json());
4418
4543
  }
4419
- throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4544
+ throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4420
4545
  }
4421
4546
  /**
4422
4547
  * Returns a statistic containing the incoming transactions
@@ -4456,7 +4581,7 @@ var BackendStatisticTag = class extends import_sdkgen_client65.TagAbstract {
4456
4581
  if (statusCode >= 0 && statusCode <= 999) {
4457
4582
  throw new CommonMessageException(await response.json());
4458
4583
  }
4459
- throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4584
+ throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4460
4585
  }
4461
4586
  /**
4462
4587
  * Returns a statistic containing the issues tokens
@@ -4496,7 +4621,7 @@ var BackendStatisticTag = class extends import_sdkgen_client65.TagAbstract {
4496
4621
  if (statusCode >= 0 && statusCode <= 999) {
4497
4622
  throw new CommonMessageException(await response.json());
4498
4623
  }
4499
- throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4624
+ throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4500
4625
  }
4501
4626
  /**
4502
4627
  * Returns a statistic containing the most used activities
@@ -4536,7 +4661,7 @@ var BackendStatisticTag = class extends import_sdkgen_client65.TagAbstract {
4536
4661
  if (statusCode >= 0 && statusCode <= 999) {
4537
4662
  throw new CommonMessageException(await response.json());
4538
4663
  }
4539
- throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4664
+ throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4540
4665
  }
4541
4666
  /**
4542
4667
  * Returns a statistic containing the most used apps
@@ -4576,7 +4701,7 @@ var BackendStatisticTag = class extends import_sdkgen_client65.TagAbstract {
4576
4701
  if (statusCode >= 0 && statusCode <= 999) {
4577
4702
  throw new CommonMessageException(await response.json());
4578
4703
  }
4579
- throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4704
+ throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4580
4705
  }
4581
4706
  /**
4582
4707
  * Returns a statistic containing the most used operations
@@ -4616,7 +4741,127 @@ var BackendStatisticTag = class extends import_sdkgen_client65.TagAbstract {
4616
4741
  if (statusCode >= 0 && statusCode <= 999) {
4617
4742
  throw new CommonMessageException(await response.json());
4618
4743
  }
4619
- throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4744
+ throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4745
+ }
4746
+ /**
4747
+ * Returns a statistic containing the requests per ip
4748
+ *
4749
+ * @returns {Promise<BackendStatisticChart>}
4750
+ * @throws {CommonMessageException}
4751
+ * @throws {ClientException}
4752
+ */
4753
+ async getRequestsPerIP(startIndex, count, search, from, to, operationId, appId, userId, ip, userAgent, method, path, header, body) {
4754
+ const url = this.parser.url("/backend/statistic/requests_per_ip", {});
4755
+ let request = {
4756
+ url,
4757
+ method: "GET",
4758
+ headers: {},
4759
+ params: this.parser.query({
4760
+ "startIndex": startIndex,
4761
+ "count": count,
4762
+ "search": search,
4763
+ "from": from,
4764
+ "to": to,
4765
+ "operationId": operationId,
4766
+ "appId": appId,
4767
+ "userId": userId,
4768
+ "ip": ip,
4769
+ "userAgent": userAgent,
4770
+ "method": method,
4771
+ "path": path,
4772
+ "header": header,
4773
+ "body": body
4774
+ }, [])
4775
+ };
4776
+ const response = await this.httpClient.request(request);
4777
+ if (response.ok) {
4778
+ return await response.json();
4779
+ }
4780
+ const statusCode = response.status;
4781
+ if (statusCode >= 0 && statusCode <= 999) {
4782
+ throw new CommonMessageException(await response.json());
4783
+ }
4784
+ throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4785
+ }
4786
+ /**
4787
+ * Returns a statistic containing the requests per operation
4788
+ *
4789
+ * @returns {Promise<BackendStatisticChart>}
4790
+ * @throws {CommonMessageException}
4791
+ * @throws {ClientException}
4792
+ */
4793
+ async getRequestsPerOperation(startIndex, count, search, from, to, operationId, appId, userId, ip, userAgent, method, path, header, body) {
4794
+ const url = this.parser.url("/backend/statistic/requests_per_operation", {});
4795
+ let request = {
4796
+ url,
4797
+ method: "GET",
4798
+ headers: {},
4799
+ params: this.parser.query({
4800
+ "startIndex": startIndex,
4801
+ "count": count,
4802
+ "search": search,
4803
+ "from": from,
4804
+ "to": to,
4805
+ "operationId": operationId,
4806
+ "appId": appId,
4807
+ "userId": userId,
4808
+ "ip": ip,
4809
+ "userAgent": userAgent,
4810
+ "method": method,
4811
+ "path": path,
4812
+ "header": header,
4813
+ "body": body
4814
+ }, [])
4815
+ };
4816
+ const response = await this.httpClient.request(request);
4817
+ if (response.ok) {
4818
+ return await response.json();
4819
+ }
4820
+ const statusCode = response.status;
4821
+ if (statusCode >= 0 && statusCode <= 999) {
4822
+ throw new CommonMessageException(await response.json());
4823
+ }
4824
+ throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4825
+ }
4826
+ /**
4827
+ * Returns a statistic containing the requests per user
4828
+ *
4829
+ * @returns {Promise<BackendStatisticChart>}
4830
+ * @throws {CommonMessageException}
4831
+ * @throws {ClientException}
4832
+ */
4833
+ async getRequestsPerUser(startIndex, count, search, from, to, operationId, appId, userId, ip, userAgent, method, path, header, body) {
4834
+ const url = this.parser.url("/backend/statistic/requests_per_user", {});
4835
+ let request = {
4836
+ url,
4837
+ method: "GET",
4838
+ headers: {},
4839
+ params: this.parser.query({
4840
+ "startIndex": startIndex,
4841
+ "count": count,
4842
+ "search": search,
4843
+ "from": from,
4844
+ "to": to,
4845
+ "operationId": operationId,
4846
+ "appId": appId,
4847
+ "userId": userId,
4848
+ "ip": ip,
4849
+ "userAgent": userAgent,
4850
+ "method": method,
4851
+ "path": path,
4852
+ "header": header,
4853
+ "body": body
4854
+ }, [])
4855
+ };
4856
+ const response = await this.httpClient.request(request);
4857
+ if (response.ok) {
4858
+ return await response.json();
4859
+ }
4860
+ const statusCode = response.status;
4861
+ if (statusCode >= 0 && statusCode <= 999) {
4862
+ throw new CommonMessageException(await response.json());
4863
+ }
4864
+ throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4620
4865
  }
4621
4866
  /**
4622
4867
  * Returns a statistic containing the test coverage
@@ -4641,7 +4886,7 @@ var BackendStatisticTag = class extends import_sdkgen_client65.TagAbstract {
4641
4886
  if (statusCode >= 0 && statusCode <= 999) {
4642
4887
  throw new CommonMessageException(await response.json());
4643
4888
  }
4644
- throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4889
+ throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4645
4890
  }
4646
4891
  /**
4647
4892
  * Returns a statistic containing the time average
@@ -4681,7 +4926,7 @@ var BackendStatisticTag = class extends import_sdkgen_client65.TagAbstract {
4681
4926
  if (statusCode >= 0 && statusCode <= 999) {
4682
4927
  throw new CommonMessageException(await response.json());
4683
4928
  }
4684
- throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4929
+ throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4685
4930
  }
4686
4931
  /**
4687
4932
  * Returns a statistic containing the time per operation
@@ -4721,7 +4966,7 @@ var BackendStatisticTag = class extends import_sdkgen_client65.TagAbstract {
4721
4966
  if (statusCode >= 0 && statusCode <= 999) {
4722
4967
  throw new CommonMessageException(await response.json());
4723
4968
  }
4724
- throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4969
+ throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4725
4970
  }
4726
4971
  /**
4727
4972
  * Returns a statistic containing the used points
@@ -4761,7 +5006,7 @@ var BackendStatisticTag = class extends import_sdkgen_client65.TagAbstract {
4761
5006
  if (statusCode >= 0 && statusCode <= 999) {
4762
5007
  throw new CommonMessageException(await response.json());
4763
5008
  }
4764
- throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5009
+ throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4765
5010
  }
4766
5011
  /**
4767
5012
  * Returns a statistic containing the user registrations
@@ -4801,17 +5046,17 @@ var BackendStatisticTag = class extends import_sdkgen_client65.TagAbstract {
4801
5046
  if (statusCode >= 0 && statusCode <= 999) {
4802
5047
  throw new CommonMessageException(await response.json());
4803
5048
  }
4804
- throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5049
+ throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4805
5050
  }
4806
5051
  };
4807
5052
 
4808
5053
  // src/BackendTag.ts
4809
- var import_sdkgen_client83 = require("sdkgen-client");
5054
+ var import_sdkgen_client85 = require("sdkgen-client");
4810
5055
 
4811
5056
  // src/BackendTenantTag.ts
4812
- var import_sdkgen_client67 = require("sdkgen-client");
4813
- var import_sdkgen_client68 = require("sdkgen-client");
4814
- var BackendTenantTag = class extends import_sdkgen_client67.TagAbstract {
5057
+ var import_sdkgen_client69 = require("sdkgen-client");
5058
+ var import_sdkgen_client70 = require("sdkgen-client");
5059
+ var BackendTenantTag = class extends import_sdkgen_client69.TagAbstract {
4815
5060
  /**
4816
5061
  * Removes an existing tenant
4817
5062
  *
@@ -4837,7 +5082,7 @@ var BackendTenantTag = class extends import_sdkgen_client67.TagAbstract {
4837
5082
  if (statusCode >= 0 && statusCode <= 999) {
4838
5083
  throw new CommonMessageException(await response.json());
4839
5084
  }
4840
- throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5085
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4841
5086
  }
4842
5087
  /**
4843
5088
  * Setup a new tenant
@@ -4864,14 +5109,14 @@ var BackendTenantTag = class extends import_sdkgen_client67.TagAbstract {
4864
5109
  if (statusCode >= 0 && statusCode <= 999) {
4865
5110
  throw new CommonMessageException(await response.json());
4866
5111
  }
4867
- throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5112
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4868
5113
  }
4869
5114
  };
4870
5115
 
4871
5116
  // src/BackendTestTag.ts
4872
- var import_sdkgen_client69 = require("sdkgen-client");
4873
- var import_sdkgen_client70 = require("sdkgen-client");
4874
- var BackendTestTag = class extends import_sdkgen_client69.TagAbstract {
5117
+ var import_sdkgen_client71 = require("sdkgen-client");
5118
+ var import_sdkgen_client72 = require("sdkgen-client");
5119
+ var BackendTestTag = class extends import_sdkgen_client71.TagAbstract {
4875
5120
  /**
4876
5121
  * Returns a specific test
4877
5122
  *
@@ -4897,7 +5142,7 @@ var BackendTestTag = class extends import_sdkgen_client69.TagAbstract {
4897
5142
  if (statusCode >= 0 && statusCode <= 999) {
4898
5143
  throw new CommonMessageException(await response.json());
4899
5144
  }
4900
- throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5145
+ throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4901
5146
  }
4902
5147
  /**
4903
5148
  * Returns a paginated list of tests
@@ -4926,7 +5171,7 @@ var BackendTestTag = class extends import_sdkgen_client69.TagAbstract {
4926
5171
  if (statusCode >= 0 && statusCode <= 999) {
4927
5172
  throw new CommonMessageException(await response.json());
4928
5173
  }
4929
- throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5174
+ throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4930
5175
  }
4931
5176
  /**
4932
5177
  * Refresh all tests
@@ -4951,7 +5196,7 @@ var BackendTestTag = class extends import_sdkgen_client69.TagAbstract {
4951
5196
  if (statusCode >= 0 && statusCode <= 999) {
4952
5197
  throw new CommonMessageException(await response.json());
4953
5198
  }
4954
- throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5199
+ throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4955
5200
  }
4956
5201
  /**
4957
5202
  * Run all tests
@@ -4976,7 +5221,7 @@ var BackendTestTag = class extends import_sdkgen_client69.TagAbstract {
4976
5221
  if (statusCode >= 0 && statusCode <= 999) {
4977
5222
  throw new CommonMessageException(await response.json());
4978
5223
  }
4979
- throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5224
+ throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4980
5225
  }
4981
5226
  /**
4982
5227
  * Updates an existing test
@@ -5006,14 +5251,14 @@ var BackendTestTag = class extends import_sdkgen_client69.TagAbstract {
5006
5251
  if (statusCode >= 0 && statusCode <= 999) {
5007
5252
  throw new CommonMessageException(await response.json());
5008
5253
  }
5009
- throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5254
+ throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5010
5255
  }
5011
5256
  };
5012
5257
 
5013
5258
  // src/BackendTokenTag.ts
5014
- var import_sdkgen_client71 = require("sdkgen-client");
5015
- var import_sdkgen_client72 = require("sdkgen-client");
5016
- var BackendTokenTag = class extends import_sdkgen_client71.TagAbstract {
5259
+ var import_sdkgen_client73 = require("sdkgen-client");
5260
+ var import_sdkgen_client74 = require("sdkgen-client");
5261
+ var BackendTokenTag = class extends import_sdkgen_client73.TagAbstract {
5017
5262
  /**
5018
5263
  * Returns a specific token
5019
5264
  *
@@ -5039,7 +5284,7 @@ var BackendTokenTag = class extends import_sdkgen_client71.TagAbstract {
5039
5284
  if (statusCode >= 0 && statusCode <= 999) {
5040
5285
  throw new CommonMessageException(await response.json());
5041
5286
  }
5042
- throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5287
+ throw new import_sdkgen_client74.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5043
5288
  }
5044
5289
  /**
5045
5290
  * Returns a paginated list of tokens
@@ -5075,14 +5320,14 @@ var BackendTokenTag = class extends import_sdkgen_client71.TagAbstract {
5075
5320
  if (statusCode >= 0 && statusCode <= 999) {
5076
5321
  throw new CommonMessageException(await response.json());
5077
5322
  }
5078
- throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5323
+ throw new import_sdkgen_client74.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5079
5324
  }
5080
5325
  };
5081
5326
 
5082
5327
  // src/BackendTransactionTag.ts
5083
- var import_sdkgen_client73 = require("sdkgen-client");
5084
- var import_sdkgen_client74 = require("sdkgen-client");
5085
- var BackendTransactionTag = class extends import_sdkgen_client73.TagAbstract {
5328
+ var import_sdkgen_client75 = require("sdkgen-client");
5329
+ var import_sdkgen_client76 = require("sdkgen-client");
5330
+ var BackendTransactionTag = class extends import_sdkgen_client75.TagAbstract {
5086
5331
  /**
5087
5332
  * Returns a specific transaction
5088
5333
  *
@@ -5108,7 +5353,7 @@ var BackendTransactionTag = class extends import_sdkgen_client73.TagAbstract {
5108
5353
  if (statusCode >= 0 && statusCode <= 999) {
5109
5354
  throw new CommonMessageException(await response.json());
5110
5355
  }
5111
- throw new import_sdkgen_client74.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5356
+ throw new import_sdkgen_client76.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5112
5357
  }
5113
5358
  /**
5114
5359
  * Returns a paginated list of transactions
@@ -5144,14 +5389,14 @@ var BackendTransactionTag = class extends import_sdkgen_client73.TagAbstract {
5144
5389
  if (statusCode >= 0 && statusCode <= 999) {
5145
5390
  throw new CommonMessageException(await response.json());
5146
5391
  }
5147
- throw new import_sdkgen_client74.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5392
+ throw new import_sdkgen_client76.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5148
5393
  }
5149
5394
  };
5150
5395
 
5151
5396
  // src/BackendTrashTag.ts
5152
- var import_sdkgen_client75 = require("sdkgen-client");
5153
- var import_sdkgen_client76 = require("sdkgen-client");
5154
- var BackendTrashTag = class extends import_sdkgen_client75.TagAbstract {
5397
+ var import_sdkgen_client77 = require("sdkgen-client");
5398
+ var import_sdkgen_client78 = require("sdkgen-client");
5399
+ var BackendTrashTag = class extends import_sdkgen_client77.TagAbstract {
5155
5400
  /**
5156
5401
  * Returns all deleted records by trash type
5157
5402
  *
@@ -5181,7 +5426,7 @@ var BackendTrashTag = class extends import_sdkgen_client75.TagAbstract {
5181
5426
  if (statusCode >= 0 && statusCode <= 999) {
5182
5427
  throw new CommonMessageException(await response.json());
5183
5428
  }
5184
- throw new import_sdkgen_client76.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5429
+ throw new import_sdkgen_client78.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5185
5430
  }
5186
5431
  /**
5187
5432
  * Returns all trash types
@@ -5206,7 +5451,7 @@ var BackendTrashTag = class extends import_sdkgen_client75.TagAbstract {
5206
5451
  if (statusCode >= 0 && statusCode <= 999) {
5207
5452
  throw new CommonMessageException(await response.json());
5208
5453
  }
5209
- throw new import_sdkgen_client76.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5454
+ throw new import_sdkgen_client78.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5210
5455
  }
5211
5456
  /**
5212
5457
  * Restores a previously deleted record
@@ -5236,14 +5481,14 @@ var BackendTrashTag = class extends import_sdkgen_client75.TagAbstract {
5236
5481
  if (statusCode >= 0 && statusCode <= 999) {
5237
5482
  throw new CommonMessageException(await response.json());
5238
5483
  }
5239
- throw new import_sdkgen_client76.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5484
+ throw new import_sdkgen_client78.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5240
5485
  }
5241
5486
  };
5242
5487
 
5243
5488
  // src/BackendTriggerTag.ts
5244
- var import_sdkgen_client77 = require("sdkgen-client");
5245
- var import_sdkgen_client78 = require("sdkgen-client");
5246
- var BackendTriggerTag = class extends import_sdkgen_client77.TagAbstract {
5489
+ var import_sdkgen_client79 = require("sdkgen-client");
5490
+ var import_sdkgen_client80 = require("sdkgen-client");
5491
+ var BackendTriggerTag = class extends import_sdkgen_client79.TagAbstract {
5247
5492
  /**
5248
5493
  * Creates a new trigger
5249
5494
  *
@@ -5270,7 +5515,7 @@ var BackendTriggerTag = class extends import_sdkgen_client77.TagAbstract {
5270
5515
  if (statusCode >= 0 && statusCode <= 999) {
5271
5516
  throw new CommonMessageException(await response.json());
5272
5517
  }
5273
- throw new import_sdkgen_client78.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5518
+ throw new import_sdkgen_client80.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5274
5519
  }
5275
5520
  /**
5276
5521
  * Deletes an existing trigger
@@ -5297,7 +5542,7 @@ var BackendTriggerTag = class extends import_sdkgen_client77.TagAbstract {
5297
5542
  if (statusCode >= 0 && statusCode <= 999) {
5298
5543
  throw new CommonMessageException(await response.json());
5299
5544
  }
5300
- throw new import_sdkgen_client78.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5545
+ throw new import_sdkgen_client80.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5301
5546
  }
5302
5547
  /**
5303
5548
  * Returns a specific trigger
@@ -5324,7 +5569,7 @@ var BackendTriggerTag = class extends import_sdkgen_client77.TagAbstract {
5324
5569
  if (statusCode >= 0 && statusCode <= 999) {
5325
5570
  throw new CommonMessageException(await response.json());
5326
5571
  }
5327
- throw new import_sdkgen_client78.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5572
+ throw new import_sdkgen_client80.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5328
5573
  }
5329
5574
  /**
5330
5575
  * Returns a paginated list of triggers
@@ -5353,7 +5598,7 @@ var BackendTriggerTag = class extends import_sdkgen_client77.TagAbstract {
5353
5598
  if (statusCode >= 0 && statusCode <= 999) {
5354
5599
  throw new CommonMessageException(await response.json());
5355
5600
  }
5356
- throw new import_sdkgen_client78.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5601
+ throw new import_sdkgen_client80.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5357
5602
  }
5358
5603
  /**
5359
5604
  * Updates an existing trigger
@@ -5383,14 +5628,14 @@ var BackendTriggerTag = class extends import_sdkgen_client77.TagAbstract {
5383
5628
  if (statusCode >= 0 && statusCode <= 999) {
5384
5629
  throw new CommonMessageException(await response.json());
5385
5630
  }
5386
- throw new import_sdkgen_client78.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5631
+ throw new import_sdkgen_client80.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5387
5632
  }
5388
5633
  };
5389
5634
 
5390
5635
  // src/BackendUserTag.ts
5391
- var import_sdkgen_client79 = require("sdkgen-client");
5392
- var import_sdkgen_client80 = require("sdkgen-client");
5393
- var BackendUserTag = class extends import_sdkgen_client79.TagAbstract {
5636
+ var import_sdkgen_client81 = require("sdkgen-client");
5637
+ var import_sdkgen_client82 = require("sdkgen-client");
5638
+ var BackendUserTag = class extends import_sdkgen_client81.TagAbstract {
5394
5639
  /**
5395
5640
  * Creates a new user
5396
5641
  *
@@ -5417,7 +5662,7 @@ var BackendUserTag = class extends import_sdkgen_client79.TagAbstract {
5417
5662
  if (statusCode >= 0 && statusCode <= 999) {
5418
5663
  throw new CommonMessageException(await response.json());
5419
5664
  }
5420
- throw new import_sdkgen_client80.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5665
+ throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5421
5666
  }
5422
5667
  /**
5423
5668
  * Deletes an existing user
@@ -5444,7 +5689,7 @@ var BackendUserTag = class extends import_sdkgen_client79.TagAbstract {
5444
5689
  if (statusCode >= 0 && statusCode <= 999) {
5445
5690
  throw new CommonMessageException(await response.json());
5446
5691
  }
5447
- throw new import_sdkgen_client80.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5692
+ throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5448
5693
  }
5449
5694
  /**
5450
5695
  * Returns a specific user
@@ -5471,7 +5716,7 @@ var BackendUserTag = class extends import_sdkgen_client79.TagAbstract {
5471
5716
  if (statusCode >= 0 && statusCode <= 999) {
5472
5717
  throw new CommonMessageException(await response.json());
5473
5718
  }
5474
- throw new import_sdkgen_client80.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5719
+ throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5475
5720
  }
5476
5721
  /**
5477
5722
  * Returns a paginated list of users
@@ -5500,7 +5745,7 @@ var BackendUserTag = class extends import_sdkgen_client79.TagAbstract {
5500
5745
  if (statusCode >= 0 && statusCode <= 999) {
5501
5746
  throw new CommonMessageException(await response.json());
5502
5747
  }
5503
- throw new import_sdkgen_client80.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5748
+ throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5504
5749
  }
5505
5750
  /**
5506
5751
  * Resend the activation mail to the provided user
@@ -5530,7 +5775,7 @@ var BackendUserTag = class extends import_sdkgen_client79.TagAbstract {
5530
5775
  if (statusCode >= 0 && statusCode <= 999) {
5531
5776
  throw new CommonMessageException(await response.json());
5532
5777
  }
5533
- throw new import_sdkgen_client80.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5778
+ throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5534
5779
  }
5535
5780
  /**
5536
5781
  * Updates an existing user
@@ -5560,14 +5805,14 @@ var BackendUserTag = class extends import_sdkgen_client79.TagAbstract {
5560
5805
  if (statusCode >= 0 && statusCode <= 999) {
5561
5806
  throw new CommonMessageException(await response.json());
5562
5807
  }
5563
- throw new import_sdkgen_client80.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5808
+ throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5564
5809
  }
5565
5810
  };
5566
5811
 
5567
5812
  // src/BackendWebhookTag.ts
5568
- var import_sdkgen_client81 = require("sdkgen-client");
5569
- var import_sdkgen_client82 = require("sdkgen-client");
5570
- var BackendWebhookTag = class extends import_sdkgen_client81.TagAbstract {
5813
+ var import_sdkgen_client83 = require("sdkgen-client");
5814
+ var import_sdkgen_client84 = require("sdkgen-client");
5815
+ var BackendWebhookTag = class extends import_sdkgen_client83.TagAbstract {
5571
5816
  /**
5572
5817
  * Creates a new webhook
5573
5818
  *
@@ -5594,7 +5839,7 @@ var BackendWebhookTag = class extends import_sdkgen_client81.TagAbstract {
5594
5839
  if (statusCode >= 0 && statusCode <= 999) {
5595
5840
  throw new CommonMessageException(await response.json());
5596
5841
  }
5597
- throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5842
+ throw new import_sdkgen_client84.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5598
5843
  }
5599
5844
  /**
5600
5845
  * Deletes an existing webhook
@@ -5621,7 +5866,7 @@ var BackendWebhookTag = class extends import_sdkgen_client81.TagAbstract {
5621
5866
  if (statusCode >= 0 && statusCode <= 999) {
5622
5867
  throw new CommonMessageException(await response.json());
5623
5868
  }
5624
- throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5869
+ throw new import_sdkgen_client84.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5625
5870
  }
5626
5871
  /**
5627
5872
  * Returns a specific webhook
@@ -5648,7 +5893,7 @@ var BackendWebhookTag = class extends import_sdkgen_client81.TagAbstract {
5648
5893
  if (statusCode >= 0 && statusCode <= 999) {
5649
5894
  throw new CommonMessageException(await response.json());
5650
5895
  }
5651
- throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5896
+ throw new import_sdkgen_client84.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5652
5897
  }
5653
5898
  /**
5654
5899
  * Returns a paginated list of webhooks
@@ -5677,7 +5922,7 @@ var BackendWebhookTag = class extends import_sdkgen_client81.TagAbstract {
5677
5922
  if (statusCode >= 0 && statusCode <= 999) {
5678
5923
  throw new CommonMessageException(await response.json());
5679
5924
  }
5680
- throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5925
+ throw new import_sdkgen_client84.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5681
5926
  }
5682
5927
  /**
5683
5928
  * Updates an existing webhook
@@ -5707,12 +5952,12 @@ var BackendWebhookTag = class extends import_sdkgen_client81.TagAbstract {
5707
5952
  if (statusCode >= 0 && statusCode <= 999) {
5708
5953
  throw new CommonMessageException(await response.json());
5709
5954
  }
5710
- throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5955
+ throw new import_sdkgen_client84.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5711
5956
  }
5712
5957
  };
5713
5958
 
5714
5959
  // src/BackendTag.ts
5715
- var BackendTag = class extends import_sdkgen_client83.TagAbstract {
5960
+ var BackendTag = class extends import_sdkgen_client85.TagAbstract {
5716
5961
  account() {
5717
5962
  return new BackendAccountTag(
5718
5963
  this.httpClient,
@@ -5920,16 +6165,16 @@ var BackendTag = class extends import_sdkgen_client83.TagAbstract {
5920
6165
  };
5921
6166
 
5922
6167
  // src/Client.ts
5923
- var import_sdkgen_client120 = require("sdkgen-client");
5924
- var import_sdkgen_client121 = require("sdkgen-client");
6168
+ var import_sdkgen_client122 = require("sdkgen-client");
6169
+ var import_sdkgen_client123 = require("sdkgen-client");
5925
6170
 
5926
6171
  // src/ConsumerTag.ts
5927
- var import_sdkgen_client112 = require("sdkgen-client");
6172
+ var import_sdkgen_client114 = require("sdkgen-client");
5928
6173
 
5929
6174
  // src/ConsumerAccountTag.ts
5930
- var import_sdkgen_client84 = require("sdkgen-client");
5931
- var import_sdkgen_client85 = require("sdkgen-client");
5932
- var ConsumerAccountTag = class extends import_sdkgen_client84.TagAbstract {
6175
+ var import_sdkgen_client86 = require("sdkgen-client");
6176
+ var import_sdkgen_client87 = require("sdkgen-client");
6177
+ var ConsumerAccountTag = class extends import_sdkgen_client86.TagAbstract {
5933
6178
  /**
5934
6179
  * Activates an previously registered account through a token which was provided to the user via email
5935
6180
  *
@@ -5956,7 +6201,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client84.TagAbstract {
5956
6201
  if (statusCode >= 0 && statusCode <= 999) {
5957
6202
  throw new CommonMessageException(await response.json());
5958
6203
  }
5959
- throw new import_sdkgen_client85.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6204
+ throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5960
6205
  }
5961
6206
  /**
5962
6207
  * Authorizes the access of a specific app for the authenticated user
@@ -5984,7 +6229,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client84.TagAbstract {
5984
6229
  if (statusCode >= 0 && statusCode <= 999) {
5985
6230
  throw new CommonMessageException(await response.json());
5986
6231
  }
5987
- throw new import_sdkgen_client85.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6232
+ throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5988
6233
  }
5989
6234
  /**
5990
6235
  * Change the password for the authenticated user
@@ -6012,7 +6257,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client84.TagAbstract {
6012
6257
  if (statusCode >= 0 && statusCode <= 999) {
6013
6258
  throw new CommonMessageException(await response.json());
6014
6259
  }
6015
- throw new import_sdkgen_client85.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6260
+ throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6016
6261
  }
6017
6262
  /**
6018
6263
  * Change the password after the password reset flow was started
@@ -6040,7 +6285,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client84.TagAbstract {
6040
6285
  if (statusCode >= 0 && statusCode <= 999) {
6041
6286
  throw new CommonMessageException(await response.json());
6042
6287
  }
6043
- throw new import_sdkgen_client85.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6288
+ throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6044
6289
  }
6045
6290
  /**
6046
6291
  * Returns a user data for the authenticated user
@@ -6065,7 +6310,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client84.TagAbstract {
6065
6310
  if (statusCode >= 0 && statusCode <= 999) {
6066
6311
  throw new CommonMessageException(await response.json());
6067
6312
  }
6068
- throw new import_sdkgen_client85.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6313
+ throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6069
6314
  }
6070
6315
  /**
6071
6316
  * Returns information about a specific app to start the OAuth2 authorization code flow
@@ -6093,7 +6338,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client84.TagAbstract {
6093
6338
  if (statusCode >= 0 && statusCode <= 999) {
6094
6339
  throw new CommonMessageException(await response.json());
6095
6340
  }
6096
- throw new import_sdkgen_client85.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6341
+ throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6097
6342
  }
6098
6343
  /**
6099
6344
  * User login by providing a username and password
@@ -6121,7 +6366,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client84.TagAbstract {
6121
6366
  if (statusCode >= 0 && statusCode <= 999) {
6122
6367
  throw new CommonMessageException(await response.json());
6123
6368
  }
6124
- throw new import_sdkgen_client85.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6369
+ throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6125
6370
  }
6126
6371
  /**
6127
6372
  * Refresh a previously obtained access token
@@ -6149,7 +6394,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client84.TagAbstract {
6149
6394
  if (statusCode >= 0 && statusCode <= 999) {
6150
6395
  throw new CommonMessageException(await response.json());
6151
6396
  }
6152
- throw new import_sdkgen_client85.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6397
+ throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6153
6398
  }
6154
6399
  /**
6155
6400
  * Register a new user account
@@ -6177,7 +6422,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client84.TagAbstract {
6177
6422
  if (statusCode >= 0 && statusCode <= 999) {
6178
6423
  throw new CommonMessageException(await response.json());
6179
6424
  }
6180
- throw new import_sdkgen_client85.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6425
+ throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6181
6426
  }
6182
6427
  /**
6183
6428
  * Start the password reset flow
@@ -6205,7 +6450,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client84.TagAbstract {
6205
6450
  if (statusCode >= 0 && statusCode <= 999) {
6206
6451
  throw new CommonMessageException(await response.json());
6207
6452
  }
6208
- throw new import_sdkgen_client85.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6453
+ throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6209
6454
  }
6210
6455
  /**
6211
6456
  * Updates user data for the authenticated user
@@ -6233,14 +6478,14 @@ var ConsumerAccountTag = class extends import_sdkgen_client84.TagAbstract {
6233
6478
  if (statusCode >= 0 && statusCode <= 999) {
6234
6479
  throw new CommonMessageException(await response.json());
6235
6480
  }
6236
- throw new import_sdkgen_client85.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6481
+ throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6237
6482
  }
6238
6483
  };
6239
6484
 
6240
6485
  // src/ConsumerAppTag.ts
6241
- var import_sdkgen_client86 = require("sdkgen-client");
6242
- var import_sdkgen_client87 = require("sdkgen-client");
6243
- var ConsumerAppTag = class extends import_sdkgen_client86.TagAbstract {
6486
+ var import_sdkgen_client88 = require("sdkgen-client");
6487
+ var import_sdkgen_client89 = require("sdkgen-client");
6488
+ var ConsumerAppTag = class extends import_sdkgen_client88.TagAbstract {
6244
6489
  /**
6245
6490
  * Creates a new app for the authenticated user
6246
6491
  *
@@ -6267,7 +6512,7 @@ var ConsumerAppTag = class extends import_sdkgen_client86.TagAbstract {
6267
6512
  if (statusCode >= 0 && statusCode <= 999) {
6268
6513
  throw new CommonMessageException(await response.json());
6269
6514
  }
6270
- throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6515
+ throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6271
6516
  }
6272
6517
  /**
6273
6518
  * Deletes an existing app for the authenticated user
@@ -6294,7 +6539,7 @@ var ConsumerAppTag = class extends import_sdkgen_client86.TagAbstract {
6294
6539
  if (statusCode >= 0 && statusCode <= 999) {
6295
6540
  throw new CommonMessageException(await response.json());
6296
6541
  }
6297
- throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6542
+ throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6298
6543
  }
6299
6544
  /**
6300
6545
  * Returns a specific app for the authenticated user
@@ -6321,7 +6566,7 @@ var ConsumerAppTag = class extends import_sdkgen_client86.TagAbstract {
6321
6566
  if (statusCode >= 0 && statusCode <= 999) {
6322
6567
  throw new CommonMessageException(await response.json());
6323
6568
  }
6324
- throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6569
+ throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6325
6570
  }
6326
6571
  /**
6327
6572
  * Returns a paginated list of apps which are assigned to the authenticated user
@@ -6350,7 +6595,7 @@ var ConsumerAppTag = class extends import_sdkgen_client86.TagAbstract {
6350
6595
  if (statusCode >= 0 && statusCode <= 999) {
6351
6596
  throw new CommonMessageException(await response.json());
6352
6597
  }
6353
- throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6598
+ throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6354
6599
  }
6355
6600
  /**
6356
6601
  * Updates an existing app for the authenticated user
@@ -6380,14 +6625,14 @@ var ConsumerAppTag = class extends import_sdkgen_client86.TagAbstract {
6380
6625
  if (statusCode >= 0 && statusCode <= 999) {
6381
6626
  throw new CommonMessageException(await response.json());
6382
6627
  }
6383
- throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6628
+ throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6384
6629
  }
6385
6630
  };
6386
6631
 
6387
6632
  // src/ConsumerEventTag.ts
6388
- var import_sdkgen_client88 = require("sdkgen-client");
6389
- var import_sdkgen_client89 = require("sdkgen-client");
6390
- var ConsumerEventTag = class extends import_sdkgen_client88.TagAbstract {
6633
+ var import_sdkgen_client90 = require("sdkgen-client");
6634
+ var import_sdkgen_client91 = require("sdkgen-client");
6635
+ var ConsumerEventTag = class extends import_sdkgen_client90.TagAbstract {
6391
6636
  /**
6392
6637
  * Returns a specific event for the authenticated user
6393
6638
  *
@@ -6413,7 +6658,7 @@ var ConsumerEventTag = class extends import_sdkgen_client88.TagAbstract {
6413
6658
  if (statusCode >= 0 && statusCode <= 999) {
6414
6659
  throw new CommonMessageException(await response.json());
6415
6660
  }
6416
- throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6661
+ throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6417
6662
  }
6418
6663
  /**
6419
6664
  * Returns a paginated list of apps which are assigned to the authenticated user
@@ -6442,14 +6687,14 @@ var ConsumerEventTag = class extends import_sdkgen_client88.TagAbstract {
6442
6687
  if (statusCode >= 0 && statusCode <= 999) {
6443
6688
  throw new CommonMessageException(await response.json());
6444
6689
  }
6445
- throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6690
+ throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6446
6691
  }
6447
6692
  };
6448
6693
 
6449
6694
  // src/ConsumerFormTag.ts
6450
- var import_sdkgen_client90 = require("sdkgen-client");
6451
- var import_sdkgen_client91 = require("sdkgen-client");
6452
- var ConsumerFormTag = class extends import_sdkgen_client90.TagAbstract {
6695
+ var import_sdkgen_client92 = require("sdkgen-client");
6696
+ var import_sdkgen_client93 = require("sdkgen-client");
6697
+ var ConsumerFormTag = class extends import_sdkgen_client92.TagAbstract {
6453
6698
  /**
6454
6699
  * Returns a specific form for the authenticated user
6455
6700
  *
@@ -6475,7 +6720,7 @@ var ConsumerFormTag = class extends import_sdkgen_client90.TagAbstract {
6475
6720
  if (statusCode >= 0 && statusCode <= 999) {
6476
6721
  throw new CommonMessageException(await response.json());
6477
6722
  }
6478
- throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6723
+ throw new import_sdkgen_client93.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6479
6724
  }
6480
6725
  /**
6481
6726
  * Returns a paginated list of forms which are relevant to the authenticated user
@@ -6504,14 +6749,14 @@ var ConsumerFormTag = class extends import_sdkgen_client90.TagAbstract {
6504
6749
  if (statusCode >= 0 && statusCode <= 999) {
6505
6750
  throw new CommonMessageException(await response.json());
6506
6751
  }
6507
- throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6752
+ throw new import_sdkgen_client93.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6508
6753
  }
6509
6754
  };
6510
6755
 
6511
6756
  // src/ConsumerGrantTag.ts
6512
- var import_sdkgen_client92 = require("sdkgen-client");
6513
- var import_sdkgen_client93 = require("sdkgen-client");
6514
- var ConsumerGrantTag = class extends import_sdkgen_client92.TagAbstract {
6757
+ var import_sdkgen_client94 = require("sdkgen-client");
6758
+ var import_sdkgen_client95 = require("sdkgen-client");
6759
+ var ConsumerGrantTag = class extends import_sdkgen_client94.TagAbstract {
6515
6760
  /**
6516
6761
  * Deletes an existing grant for an app which was created by the authenticated user
6517
6762
  *
@@ -6537,7 +6782,7 @@ var ConsumerGrantTag = class extends import_sdkgen_client92.TagAbstract {
6537
6782
  if (statusCode >= 0 && statusCode <= 999) {
6538
6783
  throw new CommonMessageException(await response.json());
6539
6784
  }
6540
- throw new import_sdkgen_client93.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6785
+ throw new import_sdkgen_client95.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6541
6786
  }
6542
6787
  /**
6543
6788
  * Returns a paginated list of grants which are assigned to the authenticated user
@@ -6566,14 +6811,14 @@ var ConsumerGrantTag = class extends import_sdkgen_client92.TagAbstract {
6566
6811
  if (statusCode >= 0 && statusCode <= 999) {
6567
6812
  throw new CommonMessageException(await response.json());
6568
6813
  }
6569
- throw new import_sdkgen_client93.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6814
+ throw new import_sdkgen_client95.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6570
6815
  }
6571
6816
  };
6572
6817
 
6573
6818
  // src/ConsumerIdentityTag.ts
6574
- var import_sdkgen_client94 = require("sdkgen-client");
6575
- var import_sdkgen_client95 = require("sdkgen-client");
6576
- var ConsumerIdentityTag = class extends import_sdkgen_client94.TagAbstract {
6819
+ var import_sdkgen_client96 = require("sdkgen-client");
6820
+ var import_sdkgen_client97 = require("sdkgen-client");
6821
+ var ConsumerIdentityTag = class extends import_sdkgen_client96.TagAbstract {
6577
6822
  /**
6578
6823
  * Identity callback endpoint to exchange an access token
6579
6824
  *
@@ -6599,7 +6844,7 @@ var ConsumerIdentityTag = class extends import_sdkgen_client94.TagAbstract {
6599
6844
  if (statusCode >= 0 && statusCode <= 999) {
6600
6845
  throw new CommonMessageException(await response.json());
6601
6846
  }
6602
- throw new import_sdkgen_client95.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6847
+ throw new import_sdkgen_client97.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6603
6848
  }
6604
6849
  /**
6605
6850
  * Returns a paginated list of identities which are relevant to the authenticated user
@@ -6627,7 +6872,7 @@ var ConsumerIdentityTag = class extends import_sdkgen_client94.TagAbstract {
6627
6872
  if (statusCode >= 0 && statusCode <= 999) {
6628
6873
  throw new CommonMessageException(await response.json());
6629
6874
  }
6630
- throw new import_sdkgen_client95.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6875
+ throw new import_sdkgen_client97.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6631
6876
  }
6632
6877
  /**
6633
6878
  * Redirect the user to the configured identity provider
@@ -6654,14 +6899,14 @@ var ConsumerIdentityTag = class extends import_sdkgen_client94.TagAbstract {
6654
6899
  if (statusCode >= 0 && statusCode <= 999) {
6655
6900
  throw new CommonMessageException(await response.json());
6656
6901
  }
6657
- throw new import_sdkgen_client95.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6902
+ throw new import_sdkgen_client97.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6658
6903
  }
6659
6904
  };
6660
6905
 
6661
6906
  // src/ConsumerLogTag.ts
6662
- var import_sdkgen_client96 = require("sdkgen-client");
6663
- var import_sdkgen_client97 = require("sdkgen-client");
6664
- var ConsumerLogTag = class extends import_sdkgen_client96.TagAbstract {
6907
+ var import_sdkgen_client98 = require("sdkgen-client");
6908
+ var import_sdkgen_client99 = require("sdkgen-client");
6909
+ var ConsumerLogTag = class extends import_sdkgen_client98.TagAbstract {
6665
6910
  /**
6666
6911
  * Returns a specific log for the authenticated user
6667
6912
  *
@@ -6687,7 +6932,7 @@ var ConsumerLogTag = class extends import_sdkgen_client96.TagAbstract {
6687
6932
  if (statusCode >= 0 && statusCode <= 999) {
6688
6933
  throw new CommonMessageException(await response.json());
6689
6934
  }
6690
- throw new import_sdkgen_client97.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6935
+ throw new import_sdkgen_client99.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6691
6936
  }
6692
6937
  /**
6693
6938
  * Returns a paginated list of logs which are assigned to the authenticated user
@@ -6716,14 +6961,14 @@ var ConsumerLogTag = class extends import_sdkgen_client96.TagAbstract {
6716
6961
  if (statusCode >= 0 && statusCode <= 999) {
6717
6962
  throw new CommonMessageException(await response.json());
6718
6963
  }
6719
- throw new import_sdkgen_client97.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6964
+ throw new import_sdkgen_client99.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6720
6965
  }
6721
6966
  };
6722
6967
 
6723
6968
  // src/ConsumerPageTag.ts
6724
- var import_sdkgen_client98 = require("sdkgen-client");
6725
- var import_sdkgen_client99 = require("sdkgen-client");
6726
- var ConsumerPageTag = class extends import_sdkgen_client98.TagAbstract {
6969
+ var import_sdkgen_client100 = require("sdkgen-client");
6970
+ var import_sdkgen_client101 = require("sdkgen-client");
6971
+ var ConsumerPageTag = class extends import_sdkgen_client100.TagAbstract {
6727
6972
  /**
6728
6973
  * Returns a specific page for the authenticated user
6729
6974
  *
@@ -6749,7 +6994,7 @@ var ConsumerPageTag = class extends import_sdkgen_client98.TagAbstract {
6749
6994
  if (statusCode >= 0 && statusCode <= 999) {
6750
6995
  throw new CommonMessageException(await response.json());
6751
6996
  }
6752
- throw new import_sdkgen_client99.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6997
+ throw new import_sdkgen_client101.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6753
6998
  }
6754
6999
  /**
6755
7000
  * Returns a paginated list of pages which are relevant to the authenticated user
@@ -6778,14 +7023,14 @@ var ConsumerPageTag = class extends import_sdkgen_client98.TagAbstract {
6778
7023
  if (statusCode >= 0 && statusCode <= 999) {
6779
7024
  throw new CommonMessageException(await response.json());
6780
7025
  }
6781
- throw new import_sdkgen_client99.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7026
+ throw new import_sdkgen_client101.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6782
7027
  }
6783
7028
  };
6784
7029
 
6785
7030
  // src/ConsumerPaymentTag.ts
6786
- var import_sdkgen_client100 = require("sdkgen-client");
6787
- var import_sdkgen_client101 = require("sdkgen-client");
6788
- var ConsumerPaymentTag = class extends import_sdkgen_client100.TagAbstract {
7031
+ var import_sdkgen_client102 = require("sdkgen-client");
7032
+ var import_sdkgen_client103 = require("sdkgen-client");
7033
+ var ConsumerPaymentTag = class extends import_sdkgen_client102.TagAbstract {
6789
7034
  /**
6790
7035
  * Start the checkout process for a specific plan
6791
7036
  *
@@ -6814,7 +7059,7 @@ var ConsumerPaymentTag = class extends import_sdkgen_client100.TagAbstract {
6814
7059
  if (statusCode >= 0 && statusCode <= 999) {
6815
7060
  throw new CommonMessageException(await response.json());
6816
7061
  }
6817
- throw new import_sdkgen_client101.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7062
+ throw new import_sdkgen_client103.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6818
7063
  }
6819
7064
  /**
6820
7065
  * Generates a payment portal link for the authenticated user
@@ -6844,14 +7089,14 @@ var ConsumerPaymentTag = class extends import_sdkgen_client100.TagAbstract {
6844
7089
  if (statusCode >= 0 && statusCode <= 999) {
6845
7090
  throw new CommonMessageException(await response.json());
6846
7091
  }
6847
- throw new import_sdkgen_client101.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7092
+ throw new import_sdkgen_client103.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6848
7093
  }
6849
7094
  };
6850
7095
 
6851
7096
  // src/ConsumerPlanTag.ts
6852
- var import_sdkgen_client102 = require("sdkgen-client");
6853
- var import_sdkgen_client103 = require("sdkgen-client");
6854
- var ConsumerPlanTag = class extends import_sdkgen_client102.TagAbstract {
7097
+ var import_sdkgen_client104 = require("sdkgen-client");
7098
+ var import_sdkgen_client105 = require("sdkgen-client");
7099
+ var ConsumerPlanTag = class extends import_sdkgen_client104.TagAbstract {
6855
7100
  /**
6856
7101
  * Returns a specific plan for the authenticated user
6857
7102
  *
@@ -6877,7 +7122,7 @@ var ConsumerPlanTag = class extends import_sdkgen_client102.TagAbstract {
6877
7122
  if (statusCode >= 0 && statusCode <= 999) {
6878
7123
  throw new CommonMessageException(await response.json());
6879
7124
  }
6880
- throw new import_sdkgen_client103.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7125
+ throw new import_sdkgen_client105.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6881
7126
  }
6882
7127
  /**
6883
7128
  * Returns a paginated list of plans which are relevant to the authenticated user
@@ -6906,14 +7151,14 @@ var ConsumerPlanTag = class extends import_sdkgen_client102.TagAbstract {
6906
7151
  if (statusCode >= 0 && statusCode <= 999) {
6907
7152
  throw new CommonMessageException(await response.json());
6908
7153
  }
6909
- throw new import_sdkgen_client103.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7154
+ throw new import_sdkgen_client105.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6910
7155
  }
6911
7156
  };
6912
7157
 
6913
7158
  // src/ConsumerScopeTag.ts
6914
- var import_sdkgen_client104 = require("sdkgen-client");
6915
- var import_sdkgen_client105 = require("sdkgen-client");
6916
- var ConsumerScopeTag = class extends import_sdkgen_client104.TagAbstract {
7159
+ var import_sdkgen_client106 = require("sdkgen-client");
7160
+ var import_sdkgen_client107 = require("sdkgen-client");
7161
+ var ConsumerScopeTag = class extends import_sdkgen_client106.TagAbstract {
6917
7162
  /**
6918
7163
  * Returns a paginated list of scopes which are assigned to the authenticated user
6919
7164
  *
@@ -6941,7 +7186,7 @@ var ConsumerScopeTag = class extends import_sdkgen_client104.TagAbstract {
6941
7186
  if (statusCode >= 0 && statusCode <= 999) {
6942
7187
  throw new CommonMessageException(await response.json());
6943
7188
  }
6944
- throw new import_sdkgen_client105.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7189
+ throw new import_sdkgen_client107.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6945
7190
  }
6946
7191
  /**
6947
7192
  * Returns all scopes by category
@@ -6966,14 +7211,14 @@ var ConsumerScopeTag = class extends import_sdkgen_client104.TagAbstract {
6966
7211
  if (statusCode >= 0 && statusCode <= 999) {
6967
7212
  throw new CommonMessageException(await response.json());
6968
7213
  }
6969
- throw new import_sdkgen_client105.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7214
+ throw new import_sdkgen_client107.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6970
7215
  }
6971
7216
  };
6972
7217
 
6973
7218
  // src/ConsumerTokenTag.ts
6974
- var import_sdkgen_client106 = require("sdkgen-client");
6975
- var import_sdkgen_client107 = require("sdkgen-client");
6976
- var ConsumerTokenTag = class extends import_sdkgen_client106.TagAbstract {
7219
+ var import_sdkgen_client108 = require("sdkgen-client");
7220
+ var import_sdkgen_client109 = require("sdkgen-client");
7221
+ var ConsumerTokenTag = class extends import_sdkgen_client108.TagAbstract {
6977
7222
  /**
6978
7223
  * Creates a new token for the authenticated user
6979
7224
  *
@@ -7000,7 +7245,7 @@ var ConsumerTokenTag = class extends import_sdkgen_client106.TagAbstract {
7000
7245
  if (statusCode >= 0 && statusCode <= 999) {
7001
7246
  throw new CommonMessageException(await response.json());
7002
7247
  }
7003
- throw new import_sdkgen_client107.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7248
+ throw new import_sdkgen_client109.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7004
7249
  }
7005
7250
  /**
7006
7251
  * Deletes an existing token for the authenticated user
@@ -7027,7 +7272,7 @@ var ConsumerTokenTag = class extends import_sdkgen_client106.TagAbstract {
7027
7272
  if (statusCode >= 0 && statusCode <= 999) {
7028
7273
  throw new CommonMessageException(await response.json());
7029
7274
  }
7030
- throw new import_sdkgen_client107.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7275
+ throw new import_sdkgen_client109.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7031
7276
  }
7032
7277
  /**
7033
7278
  * Returns a specific token for the authenticated user
@@ -7054,7 +7299,7 @@ var ConsumerTokenTag = class extends import_sdkgen_client106.TagAbstract {
7054
7299
  if (statusCode >= 0 && statusCode <= 999) {
7055
7300
  throw new CommonMessageException(await response.json());
7056
7301
  }
7057
- throw new import_sdkgen_client107.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7302
+ throw new import_sdkgen_client109.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7058
7303
  }
7059
7304
  /**
7060
7305
  * Returns a paginated list of tokens which are assigned to the authenticated user
@@ -7083,7 +7328,7 @@ var ConsumerTokenTag = class extends import_sdkgen_client106.TagAbstract {
7083
7328
  if (statusCode >= 0 && statusCode <= 999) {
7084
7329
  throw new CommonMessageException(await response.json());
7085
7330
  }
7086
- throw new import_sdkgen_client107.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7331
+ throw new import_sdkgen_client109.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7087
7332
  }
7088
7333
  /**
7089
7334
  * Updates an existing token for the authenticated user
@@ -7113,14 +7358,14 @@ var ConsumerTokenTag = class extends import_sdkgen_client106.TagAbstract {
7113
7358
  if (statusCode >= 0 && statusCode <= 999) {
7114
7359
  throw new CommonMessageException(await response.json());
7115
7360
  }
7116
- throw new import_sdkgen_client107.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7361
+ throw new import_sdkgen_client109.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7117
7362
  }
7118
7363
  };
7119
7364
 
7120
7365
  // src/ConsumerTransactionTag.ts
7121
- var import_sdkgen_client108 = require("sdkgen-client");
7122
- var import_sdkgen_client109 = require("sdkgen-client");
7123
- var ConsumerTransactionTag = class extends import_sdkgen_client108.TagAbstract {
7366
+ var import_sdkgen_client110 = require("sdkgen-client");
7367
+ var import_sdkgen_client111 = require("sdkgen-client");
7368
+ var ConsumerTransactionTag = class extends import_sdkgen_client110.TagAbstract {
7124
7369
  /**
7125
7370
  * Returns a specific transaction for the authenticated user
7126
7371
  *
@@ -7146,7 +7391,7 @@ var ConsumerTransactionTag = class extends import_sdkgen_client108.TagAbstract {
7146
7391
  if (statusCode >= 0 && statusCode <= 999) {
7147
7392
  throw new CommonMessageException(await response.json());
7148
7393
  }
7149
- throw new import_sdkgen_client109.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7394
+ throw new import_sdkgen_client111.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7150
7395
  }
7151
7396
  /**
7152
7397
  * Returns a paginated list of transactions which are assigned to the authenticated user
@@ -7175,14 +7420,14 @@ var ConsumerTransactionTag = class extends import_sdkgen_client108.TagAbstract {
7175
7420
  if (statusCode >= 0 && statusCode <= 999) {
7176
7421
  throw new CommonMessageException(await response.json());
7177
7422
  }
7178
- throw new import_sdkgen_client109.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7423
+ throw new import_sdkgen_client111.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7179
7424
  }
7180
7425
  };
7181
7426
 
7182
7427
  // src/ConsumerWebhookTag.ts
7183
- var import_sdkgen_client110 = require("sdkgen-client");
7184
- var import_sdkgen_client111 = require("sdkgen-client");
7185
- var ConsumerWebhookTag = class extends import_sdkgen_client110.TagAbstract {
7428
+ var import_sdkgen_client112 = require("sdkgen-client");
7429
+ var import_sdkgen_client113 = require("sdkgen-client");
7430
+ var ConsumerWebhookTag = class extends import_sdkgen_client112.TagAbstract {
7186
7431
  /**
7187
7432
  * Creates a new webhook for the authenticated user
7188
7433
  *
@@ -7209,7 +7454,7 @@ var ConsumerWebhookTag = class extends import_sdkgen_client110.TagAbstract {
7209
7454
  if (statusCode >= 0 && statusCode <= 999) {
7210
7455
  throw new CommonMessageException(await response.json());
7211
7456
  }
7212
- throw new import_sdkgen_client111.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7457
+ throw new import_sdkgen_client113.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7213
7458
  }
7214
7459
  /**
7215
7460
  * Deletes an existing webhook for the authenticated user
@@ -7236,7 +7481,7 @@ var ConsumerWebhookTag = class extends import_sdkgen_client110.TagAbstract {
7236
7481
  if (statusCode >= 0 && statusCode <= 999) {
7237
7482
  throw new CommonMessageException(await response.json());
7238
7483
  }
7239
- throw new import_sdkgen_client111.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7484
+ throw new import_sdkgen_client113.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7240
7485
  }
7241
7486
  /**
7242
7487
  * Returns a specific webhook for the authenticated user
@@ -7263,7 +7508,7 @@ var ConsumerWebhookTag = class extends import_sdkgen_client110.TagAbstract {
7263
7508
  if (statusCode >= 0 && statusCode <= 999) {
7264
7509
  throw new CommonMessageException(await response.json());
7265
7510
  }
7266
- throw new import_sdkgen_client111.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7511
+ throw new import_sdkgen_client113.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7267
7512
  }
7268
7513
  /**
7269
7514
  * Returns a paginated list of webhooks which are assigned to the authenticated user
@@ -7292,7 +7537,7 @@ var ConsumerWebhookTag = class extends import_sdkgen_client110.TagAbstract {
7292
7537
  if (statusCode >= 0 && statusCode <= 999) {
7293
7538
  throw new CommonMessageException(await response.json());
7294
7539
  }
7295
- throw new import_sdkgen_client111.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7540
+ throw new import_sdkgen_client113.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7296
7541
  }
7297
7542
  /**
7298
7543
  * Updates an existing webhook for the authenticated user
@@ -7322,12 +7567,12 @@ var ConsumerWebhookTag = class extends import_sdkgen_client110.TagAbstract {
7322
7567
  if (statusCode >= 0 && statusCode <= 999) {
7323
7568
  throw new CommonMessageException(await response.json());
7324
7569
  }
7325
- throw new import_sdkgen_client111.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7570
+ throw new import_sdkgen_client113.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7326
7571
  }
7327
7572
  };
7328
7573
 
7329
7574
  // src/ConsumerTag.ts
7330
- var ConsumerTag = class extends import_sdkgen_client112.TagAbstract {
7575
+ var ConsumerTag = class extends import_sdkgen_client114.TagAbstract {
7331
7576
  account() {
7332
7577
  return new ConsumerAccountTag(
7333
7578
  this.httpClient,
@@ -7415,12 +7660,12 @@ var ConsumerTag = class extends import_sdkgen_client112.TagAbstract {
7415
7660
  };
7416
7661
 
7417
7662
  // src/SystemTag.ts
7418
- var import_sdkgen_client119 = require("sdkgen-client");
7663
+ var import_sdkgen_client121 = require("sdkgen-client");
7419
7664
 
7420
7665
  // src/SystemConnectionTag.ts
7421
- var import_sdkgen_client113 = require("sdkgen-client");
7422
- var import_sdkgen_client114 = require("sdkgen-client");
7423
- var SystemConnectionTag = class extends import_sdkgen_client113.TagAbstract {
7666
+ var import_sdkgen_client115 = require("sdkgen-client");
7667
+ var import_sdkgen_client116 = require("sdkgen-client");
7668
+ var SystemConnectionTag = class extends import_sdkgen_client115.TagAbstract {
7424
7669
  /**
7425
7670
  * Connection OAuth2 callback to authorize a connection
7426
7671
  *
@@ -7446,14 +7691,14 @@ var SystemConnectionTag = class extends import_sdkgen_client113.TagAbstract {
7446
7691
  if (statusCode >= 0 && statusCode <= 999) {
7447
7692
  throw new CommonMessageException(await response.json());
7448
7693
  }
7449
- throw new import_sdkgen_client114.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7694
+ throw new import_sdkgen_client116.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7450
7695
  }
7451
7696
  };
7452
7697
 
7453
7698
  // src/SystemMetaTag.ts
7454
- var import_sdkgen_client115 = require("sdkgen-client");
7455
- var import_sdkgen_client116 = require("sdkgen-client");
7456
- var SystemMetaTag = class extends import_sdkgen_client115.TagAbstract {
7699
+ var import_sdkgen_client117 = require("sdkgen-client");
7700
+ var import_sdkgen_client118 = require("sdkgen-client");
7701
+ var SystemMetaTag = class extends import_sdkgen_client117.TagAbstract {
7457
7702
  /**
7458
7703
  * Returns meta information and links about the current installed Fusio version
7459
7704
  *
@@ -7477,7 +7722,7 @@ var SystemMetaTag = class extends import_sdkgen_client115.TagAbstract {
7477
7722
  if (statusCode >= 0 && statusCode <= 999) {
7478
7723
  throw new CommonMessageException(await response.json());
7479
7724
  }
7480
- throw new import_sdkgen_client116.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7725
+ throw new import_sdkgen_client118.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7481
7726
  }
7482
7727
  /**
7483
7728
  * Debug endpoint which returns the provided data
@@ -7505,7 +7750,7 @@ var SystemMetaTag = class extends import_sdkgen_client115.TagAbstract {
7505
7750
  if (statusCode >= 0 && statusCode <= 999) {
7506
7751
  throw new CommonMessageException(await response.json());
7507
7752
  }
7508
- throw new import_sdkgen_client116.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7753
+ throw new import_sdkgen_client118.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7509
7754
  }
7510
7755
  /**
7511
7756
  * Health check endpoint which returns information about the health status of the system
@@ -7530,7 +7775,7 @@ var SystemMetaTag = class extends import_sdkgen_client115.TagAbstract {
7530
7775
  if (statusCode >= 0 && statusCode <= 999) {
7531
7776
  throw new CommonMessageException(await response.json());
7532
7777
  }
7533
- throw new import_sdkgen_client116.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7778
+ throw new import_sdkgen_client118.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7534
7779
  }
7535
7780
  /**
7536
7781
  * Returns all available routes
@@ -7555,7 +7800,7 @@ var SystemMetaTag = class extends import_sdkgen_client115.TagAbstract {
7555
7800
  if (statusCode >= 0 && statusCode <= 999) {
7556
7801
  throw new CommonMessageException(await response.json());
7557
7802
  }
7558
- throw new import_sdkgen_client116.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7803
+ throw new import_sdkgen_client118.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7559
7804
  }
7560
7805
  /**
7561
7806
  * Returns details of a specific schema
@@ -7582,14 +7827,14 @@ var SystemMetaTag = class extends import_sdkgen_client115.TagAbstract {
7582
7827
  if (statusCode >= 0 && statusCode <= 999) {
7583
7828
  throw new CommonMessageException(await response.json());
7584
7829
  }
7585
- throw new import_sdkgen_client116.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7830
+ throw new import_sdkgen_client118.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7586
7831
  }
7587
7832
  };
7588
7833
 
7589
7834
  // src/SystemPaymentTag.ts
7590
- var import_sdkgen_client117 = require("sdkgen-client");
7591
- var import_sdkgen_client118 = require("sdkgen-client");
7592
- var SystemPaymentTag = class extends import_sdkgen_client117.TagAbstract {
7835
+ var import_sdkgen_client119 = require("sdkgen-client");
7836
+ var import_sdkgen_client120 = require("sdkgen-client");
7837
+ var SystemPaymentTag = class extends import_sdkgen_client119.TagAbstract {
7593
7838
  /**
7594
7839
  * Payment webhook endpoint after successful purchase of a plan
7595
7840
  *
@@ -7615,12 +7860,12 @@ var SystemPaymentTag = class extends import_sdkgen_client117.TagAbstract {
7615
7860
  if (statusCode >= 0 && statusCode <= 999) {
7616
7861
  throw new CommonMessageException(await response.json());
7617
7862
  }
7618
- throw new import_sdkgen_client118.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7863
+ throw new import_sdkgen_client120.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7619
7864
  }
7620
7865
  };
7621
7866
 
7622
7867
  // src/SystemTag.ts
7623
- var SystemTag = class extends import_sdkgen_client119.TagAbstract {
7868
+ var SystemTag = class extends import_sdkgen_client121.TagAbstract {
7624
7869
  connection() {
7625
7870
  return new SystemConnectionTag(
7626
7871
  this.httpClient,
@@ -7642,7 +7887,7 @@ var SystemTag = class extends import_sdkgen_client119.TagAbstract {
7642
7887
  };
7643
7888
 
7644
7889
  // src/Client.ts
7645
- var Client = class _Client extends import_sdkgen_client120.ClientAbstract {
7890
+ var Client = class _Client extends import_sdkgen_client122.ClientAbstract {
7646
7891
  authorization() {
7647
7892
  return new AuthorizationTag(
7648
7893
  this.httpClient,
@@ -7668,7 +7913,7 @@ var Client = class _Client extends import_sdkgen_client120.ClientAbstract {
7668
7913
  );
7669
7914
  }
7670
7915
  static buildAnonymous(baseUrl) {
7671
- return new _Client(baseUrl, new import_sdkgen_client121.Anonymous());
7916
+ return new _Client(baseUrl, new import_sdkgen_client123.Anonymous());
7672
7917
  }
7673
7918
  };
7674
7919
  // Annotate the CommonJS export names for ESM import in node:
@@ -7696,6 +7941,7 @@ var Client = class _Client extends import_sdkgen_client120.ClientAbstract {
7696
7941
  BackendLogTag,
7697
7942
  BackendMarketplaceActionTag,
7698
7943
  BackendMarketplaceAppTag,
7944
+ BackendMarketplaceBundleTag,
7699
7945
  BackendMarketplaceTag,
7700
7946
  BackendOperationTag,
7701
7947
  BackendPageTag,