@djvlc/openapi-admin-client 1.4.0 → 1.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/dist/index.js +41 -114
  2. package/dist/index.mjs +41 -114
  3. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -2349,7 +2349,7 @@ function GetActivityStats200ResponseDataDailyStatsInnerToJSONTyped(value, ignore
2349
2349
  return value;
2350
2350
  }
2351
2351
  return {
2352
- "date": value["date"] == null ? value["date"] : value["date"].toISOString().substring(0, 10),
2352
+ "date": value["date"] == null ? void 0 : value["date"].toISOString().substring(0, 10),
2353
2353
  "participants": value["participants"],
2354
2354
  "claims": value["claims"]
2355
2355
  };
@@ -3136,9 +3136,8 @@ var ActivitiesApi = class extends BaseAPI {
3136
3136
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3137
3137
  }
3138
3138
  }
3139
- let urlPath = `/admin-api/activities`;
3140
3139
  const response = await this.request({
3141
- path: urlPath,
3140
+ path: `/admin-api/activities`,
3142
3141
  method: "POST",
3143
3142
  headers: headerParameters,
3144
3143
  query: queryParameters,
@@ -3172,10 +3171,8 @@ var ActivitiesApi = class extends BaseAPI {
3172
3171
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3173
3172
  }
3174
3173
  }
3175
- let urlPath = `/admin-api/activities/{id}`;
3176
- urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
3177
3174
  const response = await this.request({
3178
- path: urlPath,
3175
+ path: `/admin-api/activities/{id}`.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"]))),
3179
3176
  method: "DELETE",
3180
3177
  headers: headerParameters,
3181
3178
  query: queryParameters
@@ -3207,10 +3204,8 @@ var ActivitiesApi = class extends BaseAPI {
3207
3204
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3208
3205
  }
3209
3206
  }
3210
- let urlPath = `/admin-api/activities/{id}`;
3211
- urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
3212
3207
  const response = await this.request({
3213
- path: urlPath,
3208
+ path: `/admin-api/activities/{id}`.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"]))),
3214
3209
  method: "GET",
3215
3210
  headers: headerParameters,
3216
3211
  query: queryParameters
@@ -3243,10 +3238,8 @@ var ActivitiesApi = class extends BaseAPI {
3243
3238
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3244
3239
  }
3245
3240
  }
3246
- let urlPath = `/admin-api/activities/{id}/stats`;
3247
- urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
3248
3241
  const response = await this.request({
3249
- path: urlPath,
3242
+ path: `/admin-api/activities/{id}/stats`.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"]))),
3250
3243
  method: "GET",
3251
3244
  headers: headerParameters,
3252
3245
  query: queryParameters
@@ -3288,9 +3281,8 @@ var ActivitiesApi = class extends BaseAPI {
3288
3281
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3289
3282
  }
3290
3283
  }
3291
- let urlPath = `/admin-api/activities`;
3292
3284
  const response = await this.request({
3293
- path: urlPath,
3285
+ path: `/admin-api/activities`,
3294
3286
  method: "GET",
3295
3287
  headers: headerParameters,
3296
3288
  query: queryParameters
@@ -3323,10 +3315,8 @@ var ActivitiesApi = class extends BaseAPI {
3323
3315
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3324
3316
  }
3325
3317
  }
3326
- let urlPath = `/admin-api/activities/{id}/pause`;
3327
- urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
3328
3318
  const response = await this.request({
3329
- path: urlPath,
3319
+ path: `/admin-api/activities/{id}/pause`.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"]))),
3330
3320
  method: "POST",
3331
3321
  headers: headerParameters,
3332
3322
  query: queryParameters
@@ -3359,10 +3349,8 @@ var ActivitiesApi = class extends BaseAPI {
3359
3349
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3360
3350
  }
3361
3351
  }
3362
- let urlPath = `/admin-api/activities/{id}/resume`;
3363
- urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
3364
3352
  const response = await this.request({
3365
- path: urlPath,
3353
+ path: `/admin-api/activities/{id}/resume`.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"]))),
3366
3354
  method: "POST",
3367
3355
  headers: headerParameters,
3368
3356
  query: queryParameters
@@ -3402,10 +3390,8 @@ var ActivitiesApi = class extends BaseAPI {
3402
3390
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3403
3391
  }
3404
3392
  }
3405
- let urlPath = `/admin-api/activities/{id}`;
3406
- urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
3407
3393
  const response = await this.request({
3408
- path: urlPath,
3394
+ path: `/admin-api/activities/{id}`.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"]))),
3409
3395
  method: "PUT",
3410
3396
  headers: headerParameters,
3411
3397
  query: queryParameters,
@@ -3475,9 +3461,8 @@ var AuditApi = class extends BaseAPI {
3475
3461
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3476
3462
  }
3477
3463
  }
3478
- let urlPath = `/admin-api/audit/export`;
3479
3464
  const response = await this.request({
3480
- path: urlPath,
3465
+ path: `/admin-api/audit/export`,
3481
3466
  method: "GET",
3482
3467
  headers: headerParameters,
3483
3468
  query: queryParameters
@@ -3514,10 +3499,8 @@ var AuditApi = class extends BaseAPI {
3514
3499
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3515
3500
  }
3516
3501
  }
3517
- let urlPath = `/admin-api/audit/{id}`;
3518
- urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
3519
3502
  const response = await this.request({
3520
- path: urlPath,
3503
+ path: `/admin-api/audit/{id}`.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"]))),
3521
3504
  method: "GET",
3522
3505
  headers: headerParameters,
3523
3506
  query: queryParameters
@@ -3562,11 +3545,8 @@ var AuditApi = class extends BaseAPI {
3562
3545
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3563
3546
  }
3564
3547
  }
3565
- let urlPath = `/admin-api/audit/resource/{resourceType}/{resourceId}`;
3566
- urlPath = urlPath.replace(`{${"resourceType"}}`, encodeURIComponent(String(requestParameters["resourceType"])));
3567
- urlPath = urlPath.replace(`{${"resourceId"}}`, encodeURIComponent(String(requestParameters["resourceId"])));
3568
3548
  const response = await this.request({
3569
- path: urlPath,
3549
+ path: `/admin-api/audit/resource/{resourceType}/{resourceId}`.replace(`{${"resourceType"}}`, encodeURIComponent(String(requestParameters["resourceType"]))).replace(`{${"resourceId"}}`, encodeURIComponent(String(requestParameters["resourceId"]))),
3570
3550
  method: "GET",
3571
3551
  headers: headerParameters,
3572
3552
  query: queryParameters
@@ -3617,9 +3597,8 @@ var AuditApi = class extends BaseAPI {
3617
3597
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3618
3598
  }
3619
3599
  }
3620
- let urlPath = `/admin-api/audit`;
3621
3600
  const response = await this.request({
3622
- path: urlPath,
3601
+ path: `/admin-api/audit`,
3623
3602
  method: "GET",
3624
3603
  headers: headerParameters,
3625
3604
  query: queryParameters
@@ -3699,11 +3678,8 @@ var ComponentsApi = class extends BaseAPI {
3699
3678
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3700
3679
  }
3701
3680
  }
3702
- let urlPath = `/admin-api/components/{name}/versions/{version}/block`;
3703
- urlPath = urlPath.replace(`{${"name"}}`, encodeURIComponent(String(requestParameters["name"])));
3704
- urlPath = urlPath.replace(`{${"version"}}`, encodeURIComponent(String(requestParameters["version"])));
3705
3681
  const response = await this.request({
3706
- path: urlPath,
3682
+ path: `/admin-api/components/{name}/versions/{version}/block`.replace(`{${"name"}}`, encodeURIComponent(String(requestParameters["name"]))).replace(`{${"version"}}`, encodeURIComponent(String(requestParameters["version"]))),
3707
3683
  method: "POST",
3708
3684
  headers: headerParameters,
3709
3685
  query: queryParameters,
@@ -3738,10 +3714,8 @@ var ComponentsApi = class extends BaseAPI {
3738
3714
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3739
3715
  }
3740
3716
  }
3741
- let urlPath = `/admin-api/components/{name}`;
3742
- urlPath = urlPath.replace(`{${"name"}}`, encodeURIComponent(String(requestParameters["name"])));
3743
3717
  const response = await this.request({
3744
- path: urlPath,
3718
+ path: `/admin-api/components/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(requestParameters["name"]))),
3745
3719
  method: "GET",
3746
3720
  headers: headerParameters,
3747
3721
  query: queryParameters
@@ -3780,11 +3754,8 @@ var ComponentsApi = class extends BaseAPI {
3780
3754
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3781
3755
  }
3782
3756
  }
3783
- let urlPath = `/admin-api/components/{name}/versions/{version}`;
3784
- urlPath = urlPath.replace(`{${"name"}}`, encodeURIComponent(String(requestParameters["name"])));
3785
- urlPath = urlPath.replace(`{${"version"}}`, encodeURIComponent(String(requestParameters["version"])));
3786
3757
  const response = await this.request({
3787
- path: urlPath,
3758
+ path: `/admin-api/components/{name}/versions/{version}`.replace(`{${"name"}}`, encodeURIComponent(String(requestParameters["name"]))).replace(`{${"version"}}`, encodeURIComponent(String(requestParameters["version"]))),
3788
3759
  method: "GET",
3789
3760
  headers: headerParameters,
3790
3761
  query: queryParameters
@@ -3823,10 +3794,8 @@ var ComponentsApi = class extends BaseAPI {
3823
3794
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3824
3795
  }
3825
3796
  }
3826
- let urlPath = `/admin-api/components/{name}/versions`;
3827
- urlPath = urlPath.replace(`{${"name"}}`, encodeURIComponent(String(requestParameters["name"])));
3828
3797
  const response = await this.request({
3829
- path: urlPath,
3798
+ path: `/admin-api/components/{name}/versions`.replace(`{${"name"}}`, encodeURIComponent(String(requestParameters["name"]))),
3830
3799
  method: "GET",
3831
3800
  headers: headerParameters,
3832
3801
  query: queryParameters
@@ -3868,9 +3837,8 @@ var ComponentsApi = class extends BaseAPI {
3868
3837
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3869
3838
  }
3870
3839
  }
3871
- let urlPath = `/admin-api/components`;
3872
3840
  const response = await this.request({
3873
- path: urlPath,
3841
+ path: `/admin-api/components`,
3874
3842
  method: "GET",
3875
3843
  headers: headerParameters,
3876
3844
  query: queryParameters
@@ -3909,11 +3877,8 @@ var ComponentsApi = class extends BaseAPI {
3909
3877
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3910
3878
  }
3911
3879
  }
3912
- let urlPath = `/admin-api/components/{name}/versions/{version}/unblock`;
3913
- urlPath = urlPath.replace(`{${"name"}}`, encodeURIComponent(String(requestParameters["name"])));
3914
- urlPath = urlPath.replace(`{${"version"}}`, encodeURIComponent(String(requestParameters["version"])));
3915
3880
  const response = await this.request({
3916
- path: urlPath,
3881
+ path: `/admin-api/components/{name}/versions/{version}/unblock`.replace(`{${"name"}}`, encodeURIComponent(String(requestParameters["name"]))).replace(`{${"version"}}`, encodeURIComponent(String(requestParameters["version"]))),
3917
3882
  method: "POST",
3918
3883
  headers: headerParameters,
3919
3884
  query: queryParameters
@@ -3964,9 +3929,8 @@ var DefinitionsApi = class extends BaseAPI {
3964
3929
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3965
3930
  }
3966
3931
  }
3967
- let urlPath = `/admin-api/definitions/actions`;
3968
3932
  const response = await this.request({
3969
- path: urlPath,
3933
+ path: `/admin-api/definitions/actions`,
3970
3934
  method: "POST",
3971
3935
  headers: headerParameters,
3972
3936
  query: queryParameters,
@@ -4001,9 +3965,8 @@ var DefinitionsApi = class extends BaseAPI {
4001
3965
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
4002
3966
  }
4003
3967
  }
4004
- let urlPath = `/admin-api/definitions/queries`;
4005
3968
  const response = await this.request({
4006
- path: urlPath,
3969
+ path: `/admin-api/definitions/queries`,
4007
3970
  method: "POST",
4008
3971
  headers: headerParameters,
4009
3972
  query: queryParameters,
@@ -4037,10 +4000,8 @@ var DefinitionsApi = class extends BaseAPI {
4037
4000
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
4038
4001
  }
4039
4002
  }
4040
- let urlPath = `/admin-api/definitions/actions/{id}`;
4041
- urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
4042
4003
  const response = await this.request({
4043
- path: urlPath,
4004
+ path: `/admin-api/definitions/actions/{id}`.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"]))),
4044
4005
  method: "GET",
4045
4006
  headers: headerParameters,
4046
4007
  query: queryParameters
@@ -4073,10 +4034,8 @@ var DefinitionsApi = class extends BaseAPI {
4073
4034
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
4074
4035
  }
4075
4036
  }
4076
- let urlPath = `/admin-api/definitions/queries/{id}`;
4077
- urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
4078
4037
  const response = await this.request({
4079
- path: urlPath,
4038
+ path: `/admin-api/definitions/queries/{id}`.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"]))),
4080
4039
  method: "GET",
4081
4040
  headers: headerParameters,
4082
4041
  query: queryParameters
@@ -4115,9 +4074,8 @@ var DefinitionsApi = class extends BaseAPI {
4115
4074
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
4116
4075
  }
4117
4076
  }
4118
- let urlPath = `/admin-api/definitions/actions`;
4119
4077
  const response = await this.request({
4120
- path: urlPath,
4078
+ path: `/admin-api/definitions/actions`,
4121
4079
  method: "GET",
4122
4080
  headers: headerParameters,
4123
4081
  query: queryParameters
@@ -4156,9 +4114,8 @@ var DefinitionsApi = class extends BaseAPI {
4156
4114
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
4157
4115
  }
4158
4116
  }
4159
- let urlPath = `/admin-api/definitions/queries`;
4160
4117
  const response = await this.request({
4161
- path: urlPath,
4118
+ path: `/admin-api/definitions/queries`,
4162
4119
  method: "GET",
4163
4120
  headers: headerParameters,
4164
4121
  query: queryParameters
@@ -4198,10 +4155,8 @@ var DefinitionsApi = class extends BaseAPI {
4198
4155
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
4199
4156
  }
4200
4157
  }
4201
- let urlPath = `/admin-api/definitions/actions/{id}`;
4202
- urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
4203
4158
  const response = await this.request({
4204
- path: urlPath,
4159
+ path: `/admin-api/definitions/actions/{id}`.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"]))),
4205
4160
  method: "PUT",
4206
4161
  headers: headerParameters,
4207
4162
  query: queryParameters,
@@ -4242,10 +4197,8 @@ var DefinitionsApi = class extends BaseAPI {
4242
4197
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
4243
4198
  }
4244
4199
  }
4245
- let urlPath = `/admin-api/definitions/queries/{id}`;
4246
- urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
4247
4200
  const response = await this.request({
4248
- path: urlPath,
4201
+ path: `/admin-api/definitions/queries/{id}`.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"]))),
4249
4202
  method: "PUT",
4250
4203
  headers: headerParameters,
4251
4204
  query: queryParameters,
@@ -4300,10 +4253,8 @@ var PagesApi = class extends BaseAPI {
4300
4253
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
4301
4254
  }
4302
4255
  }
4303
- let urlPath = `/admin-api/lowcode/pages/{uid}/archive`;
4304
- urlPath = urlPath.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"])));
4305
4256
  const response = await this.request({
4306
- path: urlPath,
4257
+ path: `/admin-api/lowcode/pages/{uid}/archive`.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"]))),
4307
4258
  method: "POST",
4308
4259
  headers: headerParameters,
4309
4260
  query: queryParameters
@@ -4339,9 +4290,8 @@ var PagesApi = class extends BaseAPI {
4339
4290
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
4340
4291
  }
4341
4292
  }
4342
- let urlPath = `/admin-api/lowcode/pages`;
4343
4293
  const response = await this.request({
4344
- path: urlPath,
4294
+ path: `/admin-api/lowcode/pages`,
4345
4295
  method: "POST",
4346
4296
  headers: headerParameters,
4347
4297
  query: queryParameters,
@@ -4384,10 +4334,8 @@ var PagesApi = class extends BaseAPI {
4384
4334
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
4385
4335
  }
4386
4336
  }
4387
- let urlPath = `/admin-api/lowcode/pages/{uid}/version`;
4388
- urlPath = urlPath.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"])));
4389
4337
  const response = await this.request({
4390
- path: urlPath,
4338
+ path: `/admin-api/lowcode/pages/{uid}/version`.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"]))),
4391
4339
  method: "POST",
4392
4340
  headers: headerParameters,
4393
4341
  query: queryParameters,
@@ -4423,10 +4371,8 @@ var PagesApi = class extends BaseAPI {
4423
4371
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
4424
4372
  }
4425
4373
  }
4426
- let urlPath = `/admin-api/lowcode/pages/{uid}/delete`;
4427
- urlPath = urlPath.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"])));
4428
4374
  const response = await this.request({
4429
- path: urlPath,
4375
+ path: `/admin-api/lowcode/pages/{uid}/delete`.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"]))),
4430
4376
  method: "POST",
4431
4377
  headers: headerParameters,
4432
4378
  query: queryParameters
@@ -4462,10 +4408,8 @@ var PagesApi = class extends BaseAPI {
4462
4408
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
4463
4409
  }
4464
4410
  }
4465
- let urlPath = `/admin-api/lowcode/pages/{uid}/duplicate`;
4466
- urlPath = urlPath.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"])));
4467
4411
  const response = await this.request({
4468
- path: urlPath,
4412
+ path: `/admin-api/lowcode/pages/{uid}/duplicate`.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"]))),
4469
4413
  method: "POST",
4470
4414
  headers: headerParameters,
4471
4415
  query: queryParameters,
@@ -4501,10 +4445,8 @@ var PagesApi = class extends BaseAPI {
4501
4445
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
4502
4446
  }
4503
4447
  }
4504
- let urlPath = `/admin-api/lowcode/pages/{uid}`;
4505
- urlPath = urlPath.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"])));
4506
4448
  const response = await this.request({
4507
- path: urlPath,
4449
+ path: `/admin-api/lowcode/pages/{uid}`.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"]))),
4508
4450
  method: "GET",
4509
4451
  headers: headerParameters,
4510
4452
  query: queryParameters
@@ -4545,10 +4487,8 @@ var PagesApi = class extends BaseAPI {
4545
4487
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
4546
4488
  }
4547
4489
  }
4548
- let urlPath = `/admin-api/lowcode/pages/{pageUid}/versions`;
4549
- urlPath = urlPath.replace(`{${"pageUid"}}`, encodeURIComponent(String(requestParameters["pageUid"])));
4550
4490
  const response = await this.request({
4551
- path: urlPath,
4491
+ path: `/admin-api/lowcode/pages/{pageUid}/versions`.replace(`{${"pageUid"}}`, encodeURIComponent(String(requestParameters["pageUid"]))),
4552
4492
  method: "GET",
4553
4493
  headers: headerParameters,
4554
4494
  query: queryParameters
@@ -4592,9 +4532,8 @@ var PagesApi = class extends BaseAPI {
4592
4532
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
4593
4533
  }
4594
4534
  }
4595
- let urlPath = `/admin-api/lowcode/pages`;
4596
4535
  const response = await this.request({
4597
- path: urlPath,
4536
+ path: `/admin-api/lowcode/pages`,
4598
4537
  method: "GET",
4599
4538
  headers: headerParameters,
4600
4539
  query: queryParameters
@@ -4636,10 +4575,8 @@ var PagesApi = class extends BaseAPI {
4636
4575
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
4637
4576
  }
4638
4577
  }
4639
- let urlPath = `/admin-api/lowcode/pages/{uid}/publish`;
4640
- urlPath = urlPath.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"])));
4641
4578
  const response = await this.request({
4642
- path: urlPath,
4579
+ path: `/admin-api/lowcode/pages/{uid}/publish`.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"]))),
4643
4580
  method: "POST",
4644
4581
  headers: headerParameters,
4645
4582
  query: queryParameters,
@@ -4675,10 +4612,8 @@ var PagesApi = class extends BaseAPI {
4675
4612
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
4676
4613
  }
4677
4614
  }
4678
- let urlPath = `/admin-api/lowcode/pages/{uid}/restore`;
4679
- urlPath = urlPath.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"])));
4680
4615
  const response = await this.request({
4681
- path: urlPath,
4616
+ path: `/admin-api/lowcode/pages/{uid}/restore`.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"]))),
4682
4617
  method: "POST",
4683
4618
  headers: headerParameters,
4684
4619
  query: queryParameters
@@ -4720,10 +4655,8 @@ var PagesApi = class extends BaseAPI {
4720
4655
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
4721
4656
  }
4722
4657
  }
4723
- let urlPath = `/admin-api/lowcode/pages/{uid}/version/rollback`;
4724
- urlPath = urlPath.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"])));
4725
4658
  const response = await this.request({
4726
- path: urlPath,
4659
+ path: `/admin-api/lowcode/pages/{uid}/version/rollback`.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"]))),
4727
4660
  method: "POST",
4728
4661
  headers: headerParameters,
4729
4662
  query: queryParameters,
@@ -4766,10 +4699,8 @@ var PagesApi = class extends BaseAPI {
4766
4699
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
4767
4700
  }
4768
4701
  }
4769
- let urlPath = `/admin-api/lowcode/pages/{uid}/schema`;
4770
- urlPath = urlPath.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"])));
4771
4702
  const response = await this.request({
4772
- path: urlPath,
4703
+ path: `/admin-api/lowcode/pages/{uid}/schema`.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"]))),
4773
4704
  method: "POST",
4774
4705
  headers: headerParameters,
4775
4706
  query: queryParameters,
@@ -4805,10 +4736,8 @@ var PagesApi = class extends BaseAPI {
4805
4736
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
4806
4737
  }
4807
4738
  }
4808
- let urlPath = `/admin-api/lowcode/pages/{uid}/unpublish`;
4809
- urlPath = urlPath.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"])));
4810
4739
  const response = await this.request({
4811
- path: urlPath,
4740
+ path: `/admin-api/lowcode/pages/{uid}/unpublish`.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"]))),
4812
4741
  method: "POST",
4813
4742
  headers: headerParameters,
4814
4743
  query: queryParameters
@@ -4850,10 +4779,8 @@ var PagesApi = class extends BaseAPI {
4850
4779
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
4851
4780
  }
4852
4781
  }
4853
- let urlPath = `/admin-api/lowcode/pages/{uid}`;
4854
- urlPath = urlPath.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"])));
4855
4782
  const response = await this.request({
4856
- path: urlPath,
4783
+ path: `/admin-api/lowcode/pages/{uid}`.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"]))),
4857
4784
  method: "POST",
4858
4785
  headers: headerParameters,
4859
4786
  query: queryParameters,
package/dist/index.mjs CHANGED
@@ -1979,7 +1979,7 @@ function GetActivityStats200ResponseDataDailyStatsInnerToJSONTyped(value, ignore
1979
1979
  return value;
1980
1980
  }
1981
1981
  return {
1982
- "date": value["date"] == null ? value["date"] : value["date"].toISOString().substring(0, 10),
1982
+ "date": value["date"] == null ? void 0 : value["date"].toISOString().substring(0, 10),
1983
1983
  "participants": value["participants"],
1984
1984
  "claims": value["claims"]
1985
1985
  };
@@ -2766,9 +2766,8 @@ var ActivitiesApi = class extends BaseAPI {
2766
2766
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
2767
2767
  }
2768
2768
  }
2769
- let urlPath = `/admin-api/activities`;
2770
2769
  const response = await this.request({
2771
- path: urlPath,
2770
+ path: `/admin-api/activities`,
2772
2771
  method: "POST",
2773
2772
  headers: headerParameters,
2774
2773
  query: queryParameters,
@@ -2802,10 +2801,8 @@ var ActivitiesApi = class extends BaseAPI {
2802
2801
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
2803
2802
  }
2804
2803
  }
2805
- let urlPath = `/admin-api/activities/{id}`;
2806
- urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
2807
2804
  const response = await this.request({
2808
- path: urlPath,
2805
+ path: `/admin-api/activities/{id}`.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"]))),
2809
2806
  method: "DELETE",
2810
2807
  headers: headerParameters,
2811
2808
  query: queryParameters
@@ -2837,10 +2834,8 @@ var ActivitiesApi = class extends BaseAPI {
2837
2834
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
2838
2835
  }
2839
2836
  }
2840
- let urlPath = `/admin-api/activities/{id}`;
2841
- urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
2842
2837
  const response = await this.request({
2843
- path: urlPath,
2838
+ path: `/admin-api/activities/{id}`.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"]))),
2844
2839
  method: "GET",
2845
2840
  headers: headerParameters,
2846
2841
  query: queryParameters
@@ -2873,10 +2868,8 @@ var ActivitiesApi = class extends BaseAPI {
2873
2868
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
2874
2869
  }
2875
2870
  }
2876
- let urlPath = `/admin-api/activities/{id}/stats`;
2877
- urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
2878
2871
  const response = await this.request({
2879
- path: urlPath,
2872
+ path: `/admin-api/activities/{id}/stats`.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"]))),
2880
2873
  method: "GET",
2881
2874
  headers: headerParameters,
2882
2875
  query: queryParameters
@@ -2918,9 +2911,8 @@ var ActivitiesApi = class extends BaseAPI {
2918
2911
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
2919
2912
  }
2920
2913
  }
2921
- let urlPath = `/admin-api/activities`;
2922
2914
  const response = await this.request({
2923
- path: urlPath,
2915
+ path: `/admin-api/activities`,
2924
2916
  method: "GET",
2925
2917
  headers: headerParameters,
2926
2918
  query: queryParameters
@@ -2953,10 +2945,8 @@ var ActivitiesApi = class extends BaseAPI {
2953
2945
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
2954
2946
  }
2955
2947
  }
2956
- let urlPath = `/admin-api/activities/{id}/pause`;
2957
- urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
2958
2948
  const response = await this.request({
2959
- path: urlPath,
2949
+ path: `/admin-api/activities/{id}/pause`.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"]))),
2960
2950
  method: "POST",
2961
2951
  headers: headerParameters,
2962
2952
  query: queryParameters
@@ -2989,10 +2979,8 @@ var ActivitiesApi = class extends BaseAPI {
2989
2979
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
2990
2980
  }
2991
2981
  }
2992
- let urlPath = `/admin-api/activities/{id}/resume`;
2993
- urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
2994
2982
  const response = await this.request({
2995
- path: urlPath,
2983
+ path: `/admin-api/activities/{id}/resume`.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"]))),
2996
2984
  method: "POST",
2997
2985
  headers: headerParameters,
2998
2986
  query: queryParameters
@@ -3032,10 +3020,8 @@ var ActivitiesApi = class extends BaseAPI {
3032
3020
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3033
3021
  }
3034
3022
  }
3035
- let urlPath = `/admin-api/activities/{id}`;
3036
- urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
3037
3023
  const response = await this.request({
3038
- path: urlPath,
3024
+ path: `/admin-api/activities/{id}`.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"]))),
3039
3025
  method: "PUT",
3040
3026
  headers: headerParameters,
3041
3027
  query: queryParameters,
@@ -3105,9 +3091,8 @@ var AuditApi = class extends BaseAPI {
3105
3091
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3106
3092
  }
3107
3093
  }
3108
- let urlPath = `/admin-api/audit/export`;
3109
3094
  const response = await this.request({
3110
- path: urlPath,
3095
+ path: `/admin-api/audit/export`,
3111
3096
  method: "GET",
3112
3097
  headers: headerParameters,
3113
3098
  query: queryParameters
@@ -3144,10 +3129,8 @@ var AuditApi = class extends BaseAPI {
3144
3129
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3145
3130
  }
3146
3131
  }
3147
- let urlPath = `/admin-api/audit/{id}`;
3148
- urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
3149
3132
  const response = await this.request({
3150
- path: urlPath,
3133
+ path: `/admin-api/audit/{id}`.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"]))),
3151
3134
  method: "GET",
3152
3135
  headers: headerParameters,
3153
3136
  query: queryParameters
@@ -3192,11 +3175,8 @@ var AuditApi = class extends BaseAPI {
3192
3175
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3193
3176
  }
3194
3177
  }
3195
- let urlPath = `/admin-api/audit/resource/{resourceType}/{resourceId}`;
3196
- urlPath = urlPath.replace(`{${"resourceType"}}`, encodeURIComponent(String(requestParameters["resourceType"])));
3197
- urlPath = urlPath.replace(`{${"resourceId"}}`, encodeURIComponent(String(requestParameters["resourceId"])));
3198
3178
  const response = await this.request({
3199
- path: urlPath,
3179
+ path: `/admin-api/audit/resource/{resourceType}/{resourceId}`.replace(`{${"resourceType"}}`, encodeURIComponent(String(requestParameters["resourceType"]))).replace(`{${"resourceId"}}`, encodeURIComponent(String(requestParameters["resourceId"]))),
3200
3180
  method: "GET",
3201
3181
  headers: headerParameters,
3202
3182
  query: queryParameters
@@ -3247,9 +3227,8 @@ var AuditApi = class extends BaseAPI {
3247
3227
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3248
3228
  }
3249
3229
  }
3250
- let urlPath = `/admin-api/audit`;
3251
3230
  const response = await this.request({
3252
- path: urlPath,
3231
+ path: `/admin-api/audit`,
3253
3232
  method: "GET",
3254
3233
  headers: headerParameters,
3255
3234
  query: queryParameters
@@ -3329,11 +3308,8 @@ var ComponentsApi = class extends BaseAPI {
3329
3308
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3330
3309
  }
3331
3310
  }
3332
- let urlPath = `/admin-api/components/{name}/versions/{version}/block`;
3333
- urlPath = urlPath.replace(`{${"name"}}`, encodeURIComponent(String(requestParameters["name"])));
3334
- urlPath = urlPath.replace(`{${"version"}}`, encodeURIComponent(String(requestParameters["version"])));
3335
3311
  const response = await this.request({
3336
- path: urlPath,
3312
+ path: `/admin-api/components/{name}/versions/{version}/block`.replace(`{${"name"}}`, encodeURIComponent(String(requestParameters["name"]))).replace(`{${"version"}}`, encodeURIComponent(String(requestParameters["version"]))),
3337
3313
  method: "POST",
3338
3314
  headers: headerParameters,
3339
3315
  query: queryParameters,
@@ -3368,10 +3344,8 @@ var ComponentsApi = class extends BaseAPI {
3368
3344
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3369
3345
  }
3370
3346
  }
3371
- let urlPath = `/admin-api/components/{name}`;
3372
- urlPath = urlPath.replace(`{${"name"}}`, encodeURIComponent(String(requestParameters["name"])));
3373
3347
  const response = await this.request({
3374
- path: urlPath,
3348
+ path: `/admin-api/components/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(requestParameters["name"]))),
3375
3349
  method: "GET",
3376
3350
  headers: headerParameters,
3377
3351
  query: queryParameters
@@ -3410,11 +3384,8 @@ var ComponentsApi = class extends BaseAPI {
3410
3384
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3411
3385
  }
3412
3386
  }
3413
- let urlPath = `/admin-api/components/{name}/versions/{version}`;
3414
- urlPath = urlPath.replace(`{${"name"}}`, encodeURIComponent(String(requestParameters["name"])));
3415
- urlPath = urlPath.replace(`{${"version"}}`, encodeURIComponent(String(requestParameters["version"])));
3416
3387
  const response = await this.request({
3417
- path: urlPath,
3388
+ path: `/admin-api/components/{name}/versions/{version}`.replace(`{${"name"}}`, encodeURIComponent(String(requestParameters["name"]))).replace(`{${"version"}}`, encodeURIComponent(String(requestParameters["version"]))),
3418
3389
  method: "GET",
3419
3390
  headers: headerParameters,
3420
3391
  query: queryParameters
@@ -3453,10 +3424,8 @@ var ComponentsApi = class extends BaseAPI {
3453
3424
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3454
3425
  }
3455
3426
  }
3456
- let urlPath = `/admin-api/components/{name}/versions`;
3457
- urlPath = urlPath.replace(`{${"name"}}`, encodeURIComponent(String(requestParameters["name"])));
3458
3427
  const response = await this.request({
3459
- path: urlPath,
3428
+ path: `/admin-api/components/{name}/versions`.replace(`{${"name"}}`, encodeURIComponent(String(requestParameters["name"]))),
3460
3429
  method: "GET",
3461
3430
  headers: headerParameters,
3462
3431
  query: queryParameters
@@ -3498,9 +3467,8 @@ var ComponentsApi = class extends BaseAPI {
3498
3467
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3499
3468
  }
3500
3469
  }
3501
- let urlPath = `/admin-api/components`;
3502
3470
  const response = await this.request({
3503
- path: urlPath,
3471
+ path: `/admin-api/components`,
3504
3472
  method: "GET",
3505
3473
  headers: headerParameters,
3506
3474
  query: queryParameters
@@ -3539,11 +3507,8 @@ var ComponentsApi = class extends BaseAPI {
3539
3507
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3540
3508
  }
3541
3509
  }
3542
- let urlPath = `/admin-api/components/{name}/versions/{version}/unblock`;
3543
- urlPath = urlPath.replace(`{${"name"}}`, encodeURIComponent(String(requestParameters["name"])));
3544
- urlPath = urlPath.replace(`{${"version"}}`, encodeURIComponent(String(requestParameters["version"])));
3545
3510
  const response = await this.request({
3546
- path: urlPath,
3511
+ path: `/admin-api/components/{name}/versions/{version}/unblock`.replace(`{${"name"}}`, encodeURIComponent(String(requestParameters["name"]))).replace(`{${"version"}}`, encodeURIComponent(String(requestParameters["version"]))),
3547
3512
  method: "POST",
3548
3513
  headers: headerParameters,
3549
3514
  query: queryParameters
@@ -3594,9 +3559,8 @@ var DefinitionsApi = class extends BaseAPI {
3594
3559
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3595
3560
  }
3596
3561
  }
3597
- let urlPath = `/admin-api/definitions/actions`;
3598
3562
  const response = await this.request({
3599
- path: urlPath,
3563
+ path: `/admin-api/definitions/actions`,
3600
3564
  method: "POST",
3601
3565
  headers: headerParameters,
3602
3566
  query: queryParameters,
@@ -3631,9 +3595,8 @@ var DefinitionsApi = class extends BaseAPI {
3631
3595
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3632
3596
  }
3633
3597
  }
3634
- let urlPath = `/admin-api/definitions/queries`;
3635
3598
  const response = await this.request({
3636
- path: urlPath,
3599
+ path: `/admin-api/definitions/queries`,
3637
3600
  method: "POST",
3638
3601
  headers: headerParameters,
3639
3602
  query: queryParameters,
@@ -3667,10 +3630,8 @@ var DefinitionsApi = class extends BaseAPI {
3667
3630
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3668
3631
  }
3669
3632
  }
3670
- let urlPath = `/admin-api/definitions/actions/{id}`;
3671
- urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
3672
3633
  const response = await this.request({
3673
- path: urlPath,
3634
+ path: `/admin-api/definitions/actions/{id}`.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"]))),
3674
3635
  method: "GET",
3675
3636
  headers: headerParameters,
3676
3637
  query: queryParameters
@@ -3703,10 +3664,8 @@ var DefinitionsApi = class extends BaseAPI {
3703
3664
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3704
3665
  }
3705
3666
  }
3706
- let urlPath = `/admin-api/definitions/queries/{id}`;
3707
- urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
3708
3667
  const response = await this.request({
3709
- path: urlPath,
3668
+ path: `/admin-api/definitions/queries/{id}`.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"]))),
3710
3669
  method: "GET",
3711
3670
  headers: headerParameters,
3712
3671
  query: queryParameters
@@ -3745,9 +3704,8 @@ var DefinitionsApi = class extends BaseAPI {
3745
3704
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3746
3705
  }
3747
3706
  }
3748
- let urlPath = `/admin-api/definitions/actions`;
3749
3707
  const response = await this.request({
3750
- path: urlPath,
3708
+ path: `/admin-api/definitions/actions`,
3751
3709
  method: "GET",
3752
3710
  headers: headerParameters,
3753
3711
  query: queryParameters
@@ -3786,9 +3744,8 @@ var DefinitionsApi = class extends BaseAPI {
3786
3744
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3787
3745
  }
3788
3746
  }
3789
- let urlPath = `/admin-api/definitions/queries`;
3790
3747
  const response = await this.request({
3791
- path: urlPath,
3748
+ path: `/admin-api/definitions/queries`,
3792
3749
  method: "GET",
3793
3750
  headers: headerParameters,
3794
3751
  query: queryParameters
@@ -3828,10 +3785,8 @@ var DefinitionsApi = class extends BaseAPI {
3828
3785
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3829
3786
  }
3830
3787
  }
3831
- let urlPath = `/admin-api/definitions/actions/{id}`;
3832
- urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
3833
3788
  const response = await this.request({
3834
- path: urlPath,
3789
+ path: `/admin-api/definitions/actions/{id}`.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"]))),
3835
3790
  method: "PUT",
3836
3791
  headers: headerParameters,
3837
3792
  query: queryParameters,
@@ -3872,10 +3827,8 @@ var DefinitionsApi = class extends BaseAPI {
3872
3827
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3873
3828
  }
3874
3829
  }
3875
- let urlPath = `/admin-api/definitions/queries/{id}`;
3876
- urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
3877
3830
  const response = await this.request({
3878
- path: urlPath,
3831
+ path: `/admin-api/definitions/queries/{id}`.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"]))),
3879
3832
  method: "PUT",
3880
3833
  headers: headerParameters,
3881
3834
  query: queryParameters,
@@ -3930,10 +3883,8 @@ var PagesApi = class extends BaseAPI {
3930
3883
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3931
3884
  }
3932
3885
  }
3933
- let urlPath = `/admin-api/lowcode/pages/{uid}/archive`;
3934
- urlPath = urlPath.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"])));
3935
3886
  const response = await this.request({
3936
- path: urlPath,
3887
+ path: `/admin-api/lowcode/pages/{uid}/archive`.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"]))),
3937
3888
  method: "POST",
3938
3889
  headers: headerParameters,
3939
3890
  query: queryParameters
@@ -3969,9 +3920,8 @@ var PagesApi = class extends BaseAPI {
3969
3920
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
3970
3921
  }
3971
3922
  }
3972
- let urlPath = `/admin-api/lowcode/pages`;
3973
3923
  const response = await this.request({
3974
- path: urlPath,
3924
+ path: `/admin-api/lowcode/pages`,
3975
3925
  method: "POST",
3976
3926
  headers: headerParameters,
3977
3927
  query: queryParameters,
@@ -4014,10 +3964,8 @@ var PagesApi = class extends BaseAPI {
4014
3964
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
4015
3965
  }
4016
3966
  }
4017
- let urlPath = `/admin-api/lowcode/pages/{uid}/version`;
4018
- urlPath = urlPath.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"])));
4019
3967
  const response = await this.request({
4020
- path: urlPath,
3968
+ path: `/admin-api/lowcode/pages/{uid}/version`.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"]))),
4021
3969
  method: "POST",
4022
3970
  headers: headerParameters,
4023
3971
  query: queryParameters,
@@ -4053,10 +4001,8 @@ var PagesApi = class extends BaseAPI {
4053
4001
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
4054
4002
  }
4055
4003
  }
4056
- let urlPath = `/admin-api/lowcode/pages/{uid}/delete`;
4057
- urlPath = urlPath.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"])));
4058
4004
  const response = await this.request({
4059
- path: urlPath,
4005
+ path: `/admin-api/lowcode/pages/{uid}/delete`.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"]))),
4060
4006
  method: "POST",
4061
4007
  headers: headerParameters,
4062
4008
  query: queryParameters
@@ -4092,10 +4038,8 @@ var PagesApi = class extends BaseAPI {
4092
4038
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
4093
4039
  }
4094
4040
  }
4095
- let urlPath = `/admin-api/lowcode/pages/{uid}/duplicate`;
4096
- urlPath = urlPath.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"])));
4097
4041
  const response = await this.request({
4098
- path: urlPath,
4042
+ path: `/admin-api/lowcode/pages/{uid}/duplicate`.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"]))),
4099
4043
  method: "POST",
4100
4044
  headers: headerParameters,
4101
4045
  query: queryParameters,
@@ -4131,10 +4075,8 @@ var PagesApi = class extends BaseAPI {
4131
4075
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
4132
4076
  }
4133
4077
  }
4134
- let urlPath = `/admin-api/lowcode/pages/{uid}`;
4135
- urlPath = urlPath.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"])));
4136
4078
  const response = await this.request({
4137
- path: urlPath,
4079
+ path: `/admin-api/lowcode/pages/{uid}`.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"]))),
4138
4080
  method: "GET",
4139
4081
  headers: headerParameters,
4140
4082
  query: queryParameters
@@ -4175,10 +4117,8 @@ var PagesApi = class extends BaseAPI {
4175
4117
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
4176
4118
  }
4177
4119
  }
4178
- let urlPath = `/admin-api/lowcode/pages/{pageUid}/versions`;
4179
- urlPath = urlPath.replace(`{${"pageUid"}}`, encodeURIComponent(String(requestParameters["pageUid"])));
4180
4120
  const response = await this.request({
4181
- path: urlPath,
4121
+ path: `/admin-api/lowcode/pages/{pageUid}/versions`.replace(`{${"pageUid"}}`, encodeURIComponent(String(requestParameters["pageUid"]))),
4182
4122
  method: "GET",
4183
4123
  headers: headerParameters,
4184
4124
  query: queryParameters
@@ -4222,9 +4162,8 @@ var PagesApi = class extends BaseAPI {
4222
4162
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
4223
4163
  }
4224
4164
  }
4225
- let urlPath = `/admin-api/lowcode/pages`;
4226
4165
  const response = await this.request({
4227
- path: urlPath,
4166
+ path: `/admin-api/lowcode/pages`,
4228
4167
  method: "GET",
4229
4168
  headers: headerParameters,
4230
4169
  query: queryParameters
@@ -4266,10 +4205,8 @@ var PagesApi = class extends BaseAPI {
4266
4205
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
4267
4206
  }
4268
4207
  }
4269
- let urlPath = `/admin-api/lowcode/pages/{uid}/publish`;
4270
- urlPath = urlPath.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"])));
4271
4208
  const response = await this.request({
4272
- path: urlPath,
4209
+ path: `/admin-api/lowcode/pages/{uid}/publish`.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"]))),
4273
4210
  method: "POST",
4274
4211
  headers: headerParameters,
4275
4212
  query: queryParameters,
@@ -4305,10 +4242,8 @@ var PagesApi = class extends BaseAPI {
4305
4242
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
4306
4243
  }
4307
4244
  }
4308
- let urlPath = `/admin-api/lowcode/pages/{uid}/restore`;
4309
- urlPath = urlPath.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"])));
4310
4245
  const response = await this.request({
4311
- path: urlPath,
4246
+ path: `/admin-api/lowcode/pages/{uid}/restore`.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"]))),
4312
4247
  method: "POST",
4313
4248
  headers: headerParameters,
4314
4249
  query: queryParameters
@@ -4350,10 +4285,8 @@ var PagesApi = class extends BaseAPI {
4350
4285
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
4351
4286
  }
4352
4287
  }
4353
- let urlPath = `/admin-api/lowcode/pages/{uid}/version/rollback`;
4354
- urlPath = urlPath.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"])));
4355
4288
  const response = await this.request({
4356
- path: urlPath,
4289
+ path: `/admin-api/lowcode/pages/{uid}/version/rollback`.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"]))),
4357
4290
  method: "POST",
4358
4291
  headers: headerParameters,
4359
4292
  query: queryParameters,
@@ -4396,10 +4329,8 @@ var PagesApi = class extends BaseAPI {
4396
4329
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
4397
4330
  }
4398
4331
  }
4399
- let urlPath = `/admin-api/lowcode/pages/{uid}/schema`;
4400
- urlPath = urlPath.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"])));
4401
4332
  const response = await this.request({
4402
- path: urlPath,
4333
+ path: `/admin-api/lowcode/pages/{uid}/schema`.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"]))),
4403
4334
  method: "POST",
4404
4335
  headers: headerParameters,
4405
4336
  query: queryParameters,
@@ -4435,10 +4366,8 @@ var PagesApi = class extends BaseAPI {
4435
4366
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
4436
4367
  }
4437
4368
  }
4438
- let urlPath = `/admin-api/lowcode/pages/{uid}/unpublish`;
4439
- urlPath = urlPath.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"])));
4440
4369
  const response = await this.request({
4441
- path: urlPath,
4370
+ path: `/admin-api/lowcode/pages/{uid}/unpublish`.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"]))),
4442
4371
  method: "POST",
4443
4372
  headers: headerParameters,
4444
4373
  query: queryParameters
@@ -4480,10 +4409,8 @@ var PagesApi = class extends BaseAPI {
4480
4409
  headerParameters["Authorization"] = `Bearer ${tokenString}`;
4481
4410
  }
4482
4411
  }
4483
- let urlPath = `/admin-api/lowcode/pages/{uid}`;
4484
- urlPath = urlPath.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"])));
4485
4412
  const response = await this.request({
4486
- path: urlPath,
4413
+ path: `/admin-api/lowcode/pages/{uid}`.replace(`{${"uid"}}`, encodeURIComponent(String(requestParameters["uid"]))),
4487
4414
  method: "POST",
4488
4415
  headers: headerParameters,
4489
4416
  query: queryParameters,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@djvlc/openapi-admin-client",
3
- "version": "1.4.0",
3
+ "version": "1.5.0",
4
4
  "description": "DJV Low-code Platform - Admin API 客户端(自动生成)",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -25,7 +25,7 @@
25
25
  "typecheck": "tsc --noEmit"
26
26
  },
27
27
  "dependencies": {
28
- "@djvlc/openapi-client-core": "1.0.0"
28
+ "@djvlc/openapi-client-core": "1.1.0"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/node": "^20.0.0",