@takaro/apiclient 0.0.0-dev.a282bfc → 0.0.0-dev.a453433

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/openapi.json CHANGED
@@ -2531,6 +2531,65 @@
2531
2531
  },
2532
2532
  "type": "object"
2533
2533
  },
2534
+ "BulkTargetDTO": {
2535
+ "properties": {
2536
+ "ids": {
2537
+ "items": {
2538
+ "format": "uuid",
2539
+ "type": "string"
2540
+ },
2541
+ "maxItems": 5000,
2542
+ "type": "array"
2543
+ },
2544
+ "excludedIds": {
2545
+ "items": {
2546
+ "format": "uuid",
2547
+ "type": "string"
2548
+ },
2549
+ "maxItems": 5000,
2550
+ "type": "array"
2551
+ }
2552
+ },
2553
+ "type": "object"
2554
+ },
2555
+ "BulkActionFailureDTO": {
2556
+ "properties": {
2557
+ "id": {
2558
+ "format": "uuid",
2559
+ "type": "string"
2560
+ },
2561
+ "name": {
2562
+ "type": "string"
2563
+ },
2564
+ "reason": {
2565
+ "type": "string"
2566
+ }
2567
+ },
2568
+ "type": "object",
2569
+ "required": [
2570
+ "id",
2571
+ "name",
2572
+ "reason"
2573
+ ]
2574
+ },
2575
+ "BulkActionResultDTO": {
2576
+ "properties": {
2577
+ "succeeded": {
2578
+ "type": "number"
2579
+ },
2580
+ "failed": {
2581
+ "items": {
2582
+ "$ref": "#/components/schemas/BulkActionFailureDTO"
2583
+ },
2584
+ "type": "array"
2585
+ }
2586
+ },
2587
+ "type": "object",
2588
+ "required": [
2589
+ "succeeded",
2590
+ "failed"
2591
+ ]
2592
+ },
2534
2593
  "Settings": {
2535
2594
  "properties": {
2536
2595
  "commandPrefix": {
@@ -4044,6 +4103,193 @@
4044
4103
  },
4045
4104
  "type": "object"
4046
4105
  },
4106
+ "ShopListingSearchInputAllowedFilters": {
4107
+ "properties": {
4108
+ "id": {
4109
+ "items": {
4110
+ "format": "uuid",
4111
+ "type": "string"
4112
+ },
4113
+ "type": "array"
4114
+ },
4115
+ "gameServerId": {
4116
+ "items": {
4117
+ "format": "uuid",
4118
+ "type": "string"
4119
+ },
4120
+ "type": "array"
4121
+ },
4122
+ "price": {
4123
+ "items": {
4124
+ "type": "number"
4125
+ },
4126
+ "type": "array"
4127
+ },
4128
+ "name": {
4129
+ "items": {
4130
+ "type": "string"
4131
+ },
4132
+ "type": "array"
4133
+ },
4134
+ "draft": {
4135
+ "type": "boolean"
4136
+ },
4137
+ "categoryIds": {
4138
+ "items": {
4139
+ "format": "uuid",
4140
+ "type": "string"
4141
+ },
4142
+ "type": "array"
4143
+ },
4144
+ "uncategorized": {
4145
+ "type": "boolean"
4146
+ }
4147
+ },
4148
+ "type": "object"
4149
+ },
4150
+ "ShopListingSearchInputAllowedSearch": {
4151
+ "properties": {
4152
+ "name": {
4153
+ "items": {
4154
+ "type": "string"
4155
+ },
4156
+ "type": "array"
4157
+ }
4158
+ },
4159
+ "type": "object"
4160
+ },
4161
+ "ShopSearchInputAllowedRangeFilter": {
4162
+ "properties": {
4163
+ "price": {
4164
+ "type": "number"
4165
+ },
4166
+ "deletedAt": {
4167
+ "oneOf": [
4168
+ {
4169
+ "format": "date",
4170
+ "type": "string"
4171
+ },
4172
+ {
4173
+ "format": "date-time",
4174
+ "type": "string"
4175
+ }
4176
+ ]
4177
+ },
4178
+ "createdAt": {
4179
+ "oneOf": [
4180
+ {
4181
+ "format": "date",
4182
+ "type": "string"
4183
+ },
4184
+ {
4185
+ "format": "date-time",
4186
+ "type": "string"
4187
+ }
4188
+ ]
4189
+ },
4190
+ "updatedAt": {
4191
+ "oneOf": [
4192
+ {
4193
+ "format": "date",
4194
+ "type": "string"
4195
+ },
4196
+ {
4197
+ "format": "date-time",
4198
+ "type": "string"
4199
+ }
4200
+ ]
4201
+ }
4202
+ },
4203
+ "type": "object"
4204
+ },
4205
+ "ShopListingSearchInputDTO": {
4206
+ "properties": {
4207
+ "filters": {
4208
+ "$ref": "#/components/schemas/ShopListingSearchInputAllowedFilters"
4209
+ },
4210
+ "search": {
4211
+ "$ref": "#/components/schemas/ShopListingSearchInputAllowedSearch"
4212
+ },
4213
+ "greaterThan": {
4214
+ "$ref": "#/components/schemas/ShopSearchInputAllowedRangeFilter"
4215
+ },
4216
+ "lessThan": {
4217
+ "$ref": "#/components/schemas/ShopSearchInputAllowedRangeFilter"
4218
+ },
4219
+ "extend": {
4220
+ "items": {
4221
+ "enum": [
4222
+ "gameServer",
4223
+ "items",
4224
+ "categories"
4225
+ ],
4226
+ "type": "string"
4227
+ },
4228
+ "type": "array"
4229
+ },
4230
+ "page": {
4231
+ "type": "number"
4232
+ },
4233
+ "limit": {
4234
+ "type": "number"
4235
+ },
4236
+ "sortBy": {
4237
+ "type": "string"
4238
+ },
4239
+ "sortDirection": {
4240
+ "enum": [
4241
+ "asc",
4242
+ "desc"
4243
+ ],
4244
+ "type": "string"
4245
+ }
4246
+ },
4247
+ "type": "object"
4248
+ },
4249
+ "ShopListingBulkTargetDTO": {
4250
+ "properties": {
4251
+ "query": {
4252
+ "$ref": "#/components/schemas/ShopListingSearchInputDTO"
4253
+ },
4254
+ "ids": {
4255
+ "items": {
4256
+ "format": "uuid",
4257
+ "type": "string"
4258
+ },
4259
+ "maxItems": 5000,
4260
+ "type": "array"
4261
+ },
4262
+ "excludedIds": {
4263
+ "items": {
4264
+ "format": "uuid",
4265
+ "type": "string"
4266
+ },
4267
+ "maxItems": 5000,
4268
+ "type": "array"
4269
+ }
4270
+ },
4271
+ "type": "object"
4272
+ },
4273
+ "ShopListingBulkInputDTO": {
4274
+ "properties": {
4275
+ "target": {
4276
+ "$ref": "#/components/schemas/ShopListingBulkTargetDTO"
4277
+ },
4278
+ "action": {
4279
+ "enum": [
4280
+ "delete",
4281
+ "publish",
4282
+ "unpublish"
4283
+ ],
4284
+ "type": "string"
4285
+ }
4286
+ },
4287
+ "type": "object",
4288
+ "required": [
4289
+ "target",
4290
+ "action"
4291
+ ]
4292
+ },
4047
4293
  "ShopCategoryBulkAssignDTO": {
4048
4294
  "properties": {
4049
4295
  "listingIds": {
@@ -4053,6 +4299,9 @@
4053
4299
  },
4054
4300
  "type": "array"
4055
4301
  },
4302
+ "query": {
4303
+ "$ref": "#/components/schemas/ShopListingSearchInputDTO"
4304
+ },
4056
4305
  "addCategoryIds": {
4057
4306
  "items": {
4058
4307
  "format": "uuid",
@@ -4066,12 +4315,25 @@
4066
4315
  "type": "string"
4067
4316
  },
4068
4317
  "type": "array"
4318
+ },
4319
+ "ids": {
4320
+ "items": {
4321
+ "format": "uuid",
4322
+ "type": "string"
4323
+ },
4324
+ "maxItems": 5000,
4325
+ "type": "array"
4326
+ },
4327
+ "excludedIds": {
4328
+ "items": {
4329
+ "format": "uuid",
4330
+ "type": "string"
4331
+ },
4332
+ "maxItems": 5000,
4333
+ "type": "array"
4069
4334
  }
4070
4335
  },
4071
- "type": "object",
4072
- "required": [
4073
- "listingIds"
4074
- ]
4336
+ "type": "object"
4075
4337
  },
4076
4338
  "ShopAnalyticsInputDTO": {
4077
4339
  "properties": {
@@ -6233,6 +6495,21 @@
6233
6495
  },
6234
6496
  "type": "object"
6235
6497
  },
6498
+ "BulkActionResultDTOAPI": {
6499
+ "properties": {
6500
+ "data": {
6501
+ "$ref": "#/components/schemas/BulkActionResultDTO"
6502
+ },
6503
+ "meta": {
6504
+ "$ref": "#/components/schemas/MetadataOutput"
6505
+ }
6506
+ },
6507
+ "type": "object",
6508
+ "required": [
6509
+ "data",
6510
+ "meta"
6511
+ ]
6512
+ },
6236
6513
  "LoginQueryParams": {
6237
6514
  "properties": {
6238
6515
  "redirect": {
@@ -9164,25 +9441,168 @@
9164
9441
  "reason"
9165
9442
  ]
9166
9443
  },
9167
- "PogBulkAddCurrencyInputDTO": {
9444
+ "PlayerOnGameServerSearchInputAllowedFilters": {
9168
9445
  "properties": {
9169
- "playerIds": {
9446
+ "gameId": {
9170
9447
  "items": {
9171
- "format": "uuid",
9172
9448
  "type": "string"
9173
9449
  },
9174
- "maxItems": 1000,
9175
- "type": "array",
9176
- "minItems": 1
9450
+ "type": "array"
9451
+ },
9452
+ "gameServerId": {
9453
+ "items": {
9454
+ "format": "uuid",
9455
+ "type": "string"
9456
+ },
9457
+ "type": "array"
9458
+ },
9459
+ "playerId": {
9460
+ "items": {
9461
+ "format": "uuid",
9462
+ "type": "string"
9463
+ },
9464
+ "type": "array"
9465
+ },
9466
+ "online": {
9467
+ "items": {
9468
+ "type": "boolean"
9469
+ },
9470
+ "type": "array"
9471
+ },
9472
+ "id": {
9473
+ "items": {
9474
+ "format": "uuid",
9475
+ "type": "string"
9476
+ },
9477
+ "type": "array"
9478
+ }
9479
+ },
9480
+ "type": "object"
9481
+ },
9482
+ "PlayerOnGameServerSearchInputAllowedRangeFilter": {
9483
+ "properties": {
9484
+ "lastSeen": {
9485
+ "oneOf": [
9486
+ {
9487
+ "format": "date",
9488
+ "type": "string"
9489
+ },
9490
+ {
9491
+ "format": "date-time",
9492
+ "type": "string"
9493
+ }
9494
+ ]
9495
+ },
9496
+ "playtimeSeconds": {
9497
+ "type": "number"
9498
+ },
9499
+ "currency": {
9500
+ "type": "number"
9501
+ },
9502
+ "createdAt": {
9503
+ "oneOf": [
9504
+ {
9505
+ "format": "date",
9506
+ "type": "string"
9507
+ },
9508
+ {
9509
+ "format": "date-time",
9510
+ "type": "string"
9511
+ }
9512
+ ]
9513
+ },
9514
+ "updatedAt": {
9515
+ "oneOf": [
9516
+ {
9517
+ "format": "date",
9518
+ "type": "string"
9519
+ },
9520
+ {
9521
+ "format": "date-time",
9522
+ "type": "string"
9523
+ }
9524
+ ]
9525
+ }
9526
+ },
9527
+ "type": "object"
9528
+ },
9529
+ "PlayerOnGameServerSearchInputDTO": {
9530
+ "properties": {
9531
+ "filters": {
9532
+ "$ref": "#/components/schemas/PlayerOnGameServerSearchInputAllowedFilters"
9533
+ },
9534
+ "greaterThan": {
9535
+ "$ref": "#/components/schemas/PlayerOnGameServerSearchInputAllowedRangeFilter"
9536
+ },
9537
+ "lessThan": {
9538
+ "$ref": "#/components/schemas/PlayerOnGameServerSearchInputAllowedRangeFilter"
9539
+ },
9540
+ "extend": {
9541
+ "items": {
9542
+ "enum": [
9543
+ "gameServer",
9544
+ "player"
9545
+ ],
9546
+ "type": "string"
9547
+ },
9548
+ "type": "array"
9549
+ },
9550
+ "search": {},
9551
+ "page": {
9552
+ "type": "number"
9553
+ },
9554
+ "limit": {
9555
+ "type": "number"
9556
+ },
9557
+ "sortBy": {
9558
+ "type": "string"
9559
+ },
9560
+ "sortDirection": {
9561
+ "enum": [
9562
+ "asc",
9563
+ "desc"
9564
+ ],
9565
+ "type": "string"
9566
+ }
9567
+ },
9568
+ "type": "object"
9569
+ },
9570
+ "PogBulkAddCurrencyInputDTO": {
9571
+ "properties": {
9572
+ "playerIds": {
9573
+ "items": {
9574
+ "format": "uuid",
9575
+ "type": "string"
9576
+ },
9577
+ "maxItems": 1000,
9578
+ "type": "array"
9579
+ },
9580
+ "query": {
9581
+ "$ref": "#/components/schemas/PlayerOnGameServerSearchInputDTO"
9177
9582
  },
9178
9583
  "amount": {
9179
9584
  "minimum": 1,
9180
9585
  "type": "number"
9586
+ },
9587
+ "ids": {
9588
+ "items": {
9589
+ "format": "uuid",
9590
+ "type": "string"
9591
+ },
9592
+ "maxItems": 5000,
9593
+ "type": "array"
9594
+ },
9595
+ "excludedIds": {
9596
+ "items": {
9597
+ "format": "uuid",
9598
+ "type": "string"
9599
+ },
9600
+ "maxItems": 5000,
9601
+ "type": "array"
9181
9602
  }
9182
9603
  },
9183
9604
  "type": "object",
9184
9605
  "required": [
9185
- "playerIds",
9186
9606
  "amount"
9187
9607
  ]
9188
9608
  },
@@ -9581,132 +10001,6 @@
9581
10001
  "name"
9582
10002
  ]
9583
10003
  },
9584
- "PlayerBulkDeleteInputDTO": {
9585
- "properties": {
9586
- "playerIds": {
9587
- "items": {
9588
- "format": "uuid",
9589
- "type": "string"
9590
- },
9591
- "maxItems": 1000,
9592
- "type": "array",
9593
- "minItems": 1
9594
- }
9595
- },
9596
- "type": "object",
9597
- "required": [
9598
- "playerIds"
9599
- ]
9600
- },
9601
- "PlayerBulkDeleteOutputDTO": {
9602
- "properties": {
9603
- "deleted": {
9604
- "type": "number"
9605
- },
9606
- "failed": {
9607
- "type": "number"
9608
- },
9609
- "errors": {
9610
- "items": {
9611
- "$ref": "#/components/schemas/PlayerBulkDeleteErrorDTO"
9612
- },
9613
- "type": "array"
9614
- }
9615
- },
9616
- "type": "object",
9617
- "required": [
9618
- "deleted",
9619
- "failed",
9620
- "errors"
9621
- ]
9622
- },
9623
- "PlayerBulkDeleteErrorDTO": {
9624
- "properties": {
9625
- "playerId": {
9626
- "format": "uuid",
9627
- "type": "string"
9628
- },
9629
- "reason": {
9630
- "type": "string"
9631
- }
9632
- },
9633
- "type": "object",
9634
- "required": [
9635
- "playerId",
9636
- "reason"
9637
- ]
9638
- },
9639
- "PlayerBulkAssignRoleInputDTO": {
9640
- "properties": {
9641
- "playerIds": {
9642
- "items": {
9643
- "format": "uuid",
9644
- "type": "string"
9645
- },
9646
- "maxItems": 1000,
9647
- "type": "array",
9648
- "minItems": 1
9649
- },
9650
- "gameServerId": {
9651
- "format": "uuid",
9652
- "type": "string"
9653
- },
9654
- "expiresAt": {
9655
- "oneOf": [
9656
- {
9657
- "format": "date",
9658
- "type": "string"
9659
- },
9660
- {
9661
- "format": "date-time",
9662
- "type": "string"
9663
- }
9664
- ]
9665
- }
9666
- },
9667
- "type": "object",
9668
- "required": [
9669
- "playerIds"
9670
- ]
9671
- },
9672
- "PlayerBulkAssignRoleErrorDTO": {
9673
- "properties": {
9674
- "playerId": {
9675
- "format": "uuid",
9676
- "type": "string"
9677
- },
9678
- "reason": {
9679
- "type": "string"
9680
- }
9681
- },
9682
- "type": "object",
9683
- "required": [
9684
- "playerId",
9685
- "reason"
9686
- ]
9687
- },
9688
- "PlayerBulkAssignRoleOutputDTO": {
9689
- "properties": {
9690
- "success": {
9691
- "type": "number"
9692
- },
9693
- "failed": {
9694
- "type": "number"
9695
- },
9696
- "errors": {
9697
- "items": {
9698
- "$ref": "#/components/schemas/PlayerBulkAssignRoleErrorDTO"
9699
- },
9700
- "type": "array"
9701
- }
9702
- },
9703
- "type": "object",
9704
- "required": [
9705
- "success",
9706
- "failed",
9707
- "errors"
9708
- ]
9709
- },
9710
10004
  "PlayerSearchInputAllowedFilters": {
9711
10005
  "properties": {
9712
10006
  "name": {
@@ -9758,6 +10052,29 @@
9758
10052
  },
9759
10053
  "type": "array"
9760
10054
  },
10055
+ "online": {
10056
+ "items": {
10057
+ "type": "boolean"
10058
+ },
10059
+ "type": "array"
10060
+ },
10061
+ "roleAssignmentScope": {
10062
+ "items": {
10063
+ "enum": [
10064
+ "global",
10065
+ "gameServer"
10066
+ ],
10067
+ "type": "string"
10068
+ },
10069
+ "type": "array"
10070
+ },
10071
+ "roleAssignmentGameServerId": {
10072
+ "items": {
10073
+ "format": "uuid",
10074
+ "type": "string"
10075
+ },
10076
+ "type": "array"
10077
+ },
9761
10078
  "id": {
9762
10079
  "items": {
9763
10080
  "format": "uuid",
@@ -9787,37 +10104,196 @@
9787
10104
  "type": "string"
9788
10105
  },
9789
10106
  "type": "array"
9790
- }
9791
- },
9792
- "type": "object"
9793
- },
9794
- "PlayerSearchInputAllowedRangeFilter": {
9795
- "properties": {
9796
- "steamAccountCreated": {
9797
- "oneOf": [
9798
- {
9799
- "format": "date",
9800
- "type": "string"
9801
- },
9802
- {
9803
- "format": "date-time",
9804
- "type": "string"
9805
- }
9806
- ]
9807
- },
9808
- "steamsDaysSinceLastBan": {
9809
- "type": "number"
9810
- },
9811
- "steamNumberOfVACBans": {
9812
- "type": "number"
10107
+ }
10108
+ },
10109
+ "type": "object"
10110
+ },
10111
+ "PlayerSearchInputAllowedRangeFilter": {
10112
+ "properties": {
10113
+ "steamAccountCreated": {
10114
+ "oneOf": [
10115
+ {
10116
+ "format": "date",
10117
+ "type": "string"
10118
+ },
10119
+ {
10120
+ "format": "date-time",
10121
+ "type": "string"
10122
+ }
10123
+ ]
10124
+ },
10125
+ "steamsDaysSinceLastBan": {
10126
+ "type": "number"
10127
+ },
10128
+ "steamNumberOfVACBans": {
10129
+ "type": "number"
10130
+ },
10131
+ "steamLevel": {
10132
+ "type": "number"
10133
+ },
10134
+ "playtimeSeconds": {
10135
+ "type": "number"
10136
+ },
10137
+ "createdAt": {
10138
+ "oneOf": [
10139
+ {
10140
+ "format": "date",
10141
+ "type": "string"
10142
+ },
10143
+ {
10144
+ "format": "date-time",
10145
+ "type": "string"
10146
+ }
10147
+ ]
10148
+ },
10149
+ "updatedAt": {
10150
+ "oneOf": [
10151
+ {
10152
+ "format": "date",
10153
+ "type": "string"
10154
+ },
10155
+ {
10156
+ "format": "date-time",
10157
+ "type": "string"
10158
+ }
10159
+ ]
10160
+ }
10161
+ },
10162
+ "type": "object"
10163
+ },
10164
+ "PlayerSearchInputDTO": {
10165
+ "properties": {
10166
+ "filters": {
10167
+ "$ref": "#/components/schemas/PlayerSearchInputAllowedFilters"
10168
+ },
10169
+ "search": {
10170
+ "$ref": "#/components/schemas/PlayerSearchInputAllowedSearch"
10171
+ },
10172
+ "greaterThan": {
10173
+ "$ref": "#/components/schemas/PlayerSearchInputAllowedRangeFilter"
10174
+ },
10175
+ "lessThan": {
10176
+ "$ref": "#/components/schemas/PlayerSearchInputAllowedRangeFilter"
10177
+ },
10178
+ "extend": {
10179
+ "items": {
10180
+ "enum": [
10181
+ "playerOnGameServers",
10182
+ "roles",
10183
+ "gameServers",
10184
+ "roleAssignments"
10185
+ ],
10186
+ "type": "string"
10187
+ },
10188
+ "type": "array"
10189
+ },
10190
+ "page": {
10191
+ "type": "number"
10192
+ },
10193
+ "limit": {
10194
+ "type": "number"
10195
+ },
10196
+ "sortBy": {
10197
+ "type": "string"
10198
+ },
10199
+ "sortDirection": {
10200
+ "enum": [
10201
+ "asc",
10202
+ "desc"
10203
+ ],
10204
+ "type": "string"
10205
+ }
10206
+ },
10207
+ "type": "object"
10208
+ },
10209
+ "PlayerBulkDeleteInputDTO": {
10210
+ "properties": {
10211
+ "playerIds": {
10212
+ "items": {
10213
+ "format": "uuid",
10214
+ "type": "string"
10215
+ },
10216
+ "maxItems": 1000,
10217
+ "type": "array"
10218
+ },
10219
+ "query": {
10220
+ "$ref": "#/components/schemas/PlayerSearchInputDTO"
10221
+ },
10222
+ "ids": {
10223
+ "items": {
10224
+ "format": "uuid",
10225
+ "type": "string"
10226
+ },
10227
+ "maxItems": 5000,
10228
+ "type": "array"
10229
+ },
10230
+ "excludedIds": {
10231
+ "items": {
10232
+ "format": "uuid",
10233
+ "type": "string"
10234
+ },
10235
+ "maxItems": 5000,
10236
+ "type": "array"
10237
+ }
10238
+ },
10239
+ "type": "object"
10240
+ },
10241
+ "PlayerBulkDeleteOutputDTO": {
10242
+ "properties": {
10243
+ "deleted": {
10244
+ "type": "number"
10245
+ },
10246
+ "failed": {
10247
+ "type": "number"
10248
+ },
10249
+ "errors": {
10250
+ "items": {
10251
+ "$ref": "#/components/schemas/PlayerBulkDeleteErrorDTO"
10252
+ },
10253
+ "type": "array"
10254
+ }
10255
+ },
10256
+ "type": "object",
10257
+ "required": [
10258
+ "deleted",
10259
+ "failed",
10260
+ "errors"
10261
+ ]
10262
+ },
10263
+ "PlayerBulkDeleteErrorDTO": {
10264
+ "properties": {
10265
+ "playerId": {
10266
+ "format": "uuid",
10267
+ "type": "string"
10268
+ },
10269
+ "reason": {
10270
+ "type": "string"
10271
+ }
10272
+ },
10273
+ "type": "object",
10274
+ "required": [
10275
+ "playerId",
10276
+ "reason"
10277
+ ]
10278
+ },
10279
+ "PlayerBulkAssignRoleInputDTO": {
10280
+ "properties": {
10281
+ "playerIds": {
10282
+ "items": {
10283
+ "format": "uuid",
10284
+ "type": "string"
10285
+ },
10286
+ "maxItems": 1000,
10287
+ "type": "array"
9813
10288
  },
9814
- "steamLevel": {
9815
- "type": "number"
10289
+ "query": {
10290
+ "$ref": "#/components/schemas/PlayerSearchInputDTO"
9816
10291
  },
9817
- "playtimeSeconds": {
9818
- "type": "number"
10292
+ "gameServerId": {
10293
+ "format": "uuid",
10294
+ "type": "string"
9819
10295
  },
9820
- "createdAt": {
10296
+ "expiresAt": {
9821
10297
  "oneOf": [
9822
10298
  {
9823
10299
  "format": "date",
@@ -9829,65 +10305,62 @@
9829
10305
  }
9830
10306
  ]
9831
10307
  },
9832
- "updatedAt": {
9833
- "oneOf": [
9834
- {
9835
- "format": "date",
9836
- "type": "string"
9837
- },
9838
- {
9839
- "format": "date-time",
9840
- "type": "string"
9841
- }
9842
- ]
10308
+ "ids": {
10309
+ "items": {
10310
+ "format": "uuid",
10311
+ "type": "string"
10312
+ },
10313
+ "maxItems": 5000,
10314
+ "type": "array"
10315
+ },
10316
+ "excludedIds": {
10317
+ "items": {
10318
+ "format": "uuid",
10319
+ "type": "string"
10320
+ },
10321
+ "maxItems": 5000,
10322
+ "type": "array"
9843
10323
  }
9844
10324
  },
9845
10325
  "type": "object"
9846
10326
  },
9847
- "PlayerSearchInputDTO": {
10327
+ "PlayerBulkAssignRoleErrorDTO": {
9848
10328
  "properties": {
9849
- "filters": {
9850
- "$ref": "#/components/schemas/PlayerSearchInputAllowedFilters"
9851
- },
9852
- "search": {
9853
- "$ref": "#/components/schemas/PlayerSearchInputAllowedSearch"
10329
+ "playerId": {
10330
+ "format": "uuid",
10331
+ "type": "string"
9854
10332
  },
9855
- "greaterThan": {
9856
- "$ref": "#/components/schemas/PlayerSearchInputAllowedRangeFilter"
10333
+ "reason": {
10334
+ "type": "string"
10335
+ }
10336
+ },
10337
+ "type": "object",
10338
+ "required": [
10339
+ "playerId",
10340
+ "reason"
10341
+ ]
10342
+ },
10343
+ "PlayerBulkAssignRoleOutputDTO": {
10344
+ "properties": {
10345
+ "success": {
10346
+ "type": "number"
9857
10347
  },
9858
- "lessThan": {
9859
- "$ref": "#/components/schemas/PlayerSearchInputAllowedRangeFilter"
10348
+ "failed": {
10349
+ "type": "number"
9860
10350
  },
9861
- "extend": {
10351
+ "errors": {
9862
10352
  "items": {
9863
- "enum": [
9864
- "playerOnGameServers",
9865
- "roles",
9866
- "gameServers",
9867
- "roleAssignments"
9868
- ],
9869
- "type": "string"
10353
+ "$ref": "#/components/schemas/PlayerBulkAssignRoleErrorDTO"
9870
10354
  },
9871
10355
  "type": "array"
9872
- },
9873
- "page": {
9874
- "type": "number"
9875
- },
9876
- "limit": {
9877
- "type": "number"
9878
- },
9879
- "sortBy": {
9880
- "type": "string"
9881
- },
9882
- "sortDirection": {
9883
- "enum": [
9884
- "asc",
9885
- "desc"
9886
- ],
9887
- "type": "string"
9888
10356
  }
9889
10357
  },
9890
- "type": "object"
10358
+ "type": "object",
10359
+ "required": [
10360
+ "success",
10361
+ "failed",
10362
+ "errors"
10363
+ ]
9891
10364
  },
9892
10365
  "EventOutputDTO": {
9893
10366
  "properties": {
@@ -10895,54 +11368,174 @@
10895
11368
  "format": "uuid",
10896
11369
  "type": "string"
10897
11370
  },
10898
- "moduleId": {
10899
- "format": "uuid",
11371
+ "moduleId": {
11372
+ "format": "uuid",
11373
+ "type": "string"
11374
+ }
11375
+ },
11376
+ "type": "object",
11377
+ "required": [
11378
+ "key",
11379
+ "value"
11380
+ ]
11381
+ },
11382
+ "VariableUpdateDTO": {
11383
+ "properties": {
11384
+ "key": {
11385
+ "type": "string"
11386
+ },
11387
+ "value": {
11388
+ "type": "string"
11389
+ },
11390
+ "expiresAt": {
11391
+ "oneOf": [
11392
+ {
11393
+ "format": "date",
11394
+ "type": "string"
11395
+ },
11396
+ {
11397
+ "format": "date-time",
11398
+ "type": "string"
11399
+ }
11400
+ ]
11401
+ },
11402
+ "gameServerId": {
11403
+ "format": "uuid",
11404
+ "type": "string"
11405
+ },
11406
+ "playerId": {
11407
+ "format": "uuid",
11408
+ "type": "string"
11409
+ },
11410
+ "moduleId": {
11411
+ "format": "uuid",
11412
+ "type": "string"
11413
+ }
11414
+ },
11415
+ "type": "object",
11416
+ "required": [
11417
+ "value"
11418
+ ]
11419
+ },
11420
+ "VariableSearchInputAllowedFilters": {
11421
+ "properties": {
11422
+ "key": {
11423
+ "items": {
11424
+ "type": "string"
11425
+ },
11426
+ "type": "array"
11427
+ },
11428
+ "gameServerId": {
11429
+ "items": {
11430
+ "format": "uuid",
11431
+ "type": "string"
11432
+ },
11433
+ "type": "array"
11434
+ },
11435
+ "playerId": {
11436
+ "items": {
11437
+ "format": "uuid",
11438
+ "type": "string"
11439
+ },
11440
+ "type": "array"
11441
+ },
11442
+ "moduleId": {
11443
+ "items": {
11444
+ "format": "uuid",
11445
+ "type": "string"
11446
+ },
11447
+ "type": "array"
11448
+ },
11449
+ "id": {
11450
+ "items": {
11451
+ "format": "uuid",
11452
+ "type": "string"
11453
+ },
11454
+ "type": "array"
11455
+ }
11456
+ },
11457
+ "type": "object"
11458
+ },
11459
+ "VariableSearchInputAllowedSearch": {
11460
+ "properties": {
11461
+ "key": {
11462
+ "items": {
11463
+ "type": "string"
11464
+ },
11465
+ "type": "array"
11466
+ },
11467
+ "value": {
11468
+ "items": {
11469
+ "type": "string"
11470
+ },
11471
+ "type": "array"
11472
+ }
11473
+ },
11474
+ "type": "object"
11475
+ },
11476
+ "VariableSearchInputDTO": {
11477
+ "properties": {
11478
+ "filters": {
11479
+ "$ref": "#/components/schemas/VariableSearchInputAllowedFilters"
11480
+ },
11481
+ "search": {
11482
+ "$ref": "#/components/schemas/VariableSearchInputAllowedSearch"
11483
+ },
11484
+ "extend": {
11485
+ "items": {
11486
+ "enum": [
11487
+ "module",
11488
+ "player",
11489
+ "gameServer"
11490
+ ],
11491
+ "type": "string"
11492
+ },
11493
+ "type": "array"
11494
+ },
11495
+ "greaterThan": {},
11496
+ "lessThan": {},
11497
+ "page": {
11498
+ "type": "number"
11499
+ },
11500
+ "limit": {
11501
+ "type": "number"
11502
+ },
11503
+ "sortBy": {
11504
+ "type": "string"
11505
+ },
11506
+ "sortDirection": {
11507
+ "enum": [
11508
+ "asc",
11509
+ "desc"
11510
+ ],
10900
11511
  "type": "string"
10901
11512
  }
10902
11513
  },
10903
- "type": "object",
10904
- "required": [
10905
- "key",
10906
- "value"
10907
- ]
11514
+ "type": "object"
10908
11515
  },
10909
- "VariableUpdateDTO": {
11516
+ "VariableBulkDeleteInputDTO": {
10910
11517
  "properties": {
10911
- "key": {
10912
- "type": "string"
10913
- },
10914
- "value": {
10915
- "type": "string"
10916
- },
10917
- "expiresAt": {
10918
- "oneOf": [
10919
- {
10920
- "format": "date",
10921
- "type": "string"
10922
- },
10923
- {
10924
- "format": "date-time",
10925
- "type": "string"
10926
- }
10927
- ]
10928
- },
10929
- "gameServerId": {
10930
- "format": "uuid",
10931
- "type": "string"
11518
+ "query": {
11519
+ "$ref": "#/components/schemas/VariableSearchInputDTO"
10932
11520
  },
10933
- "playerId": {
10934
- "format": "uuid",
10935
- "type": "string"
11521
+ "ids": {
11522
+ "items": {
11523
+ "format": "uuid",
11524
+ "type": "string"
11525
+ },
11526
+ "maxItems": 5000,
11527
+ "type": "array"
10936
11528
  },
10937
- "moduleId": {
10938
- "format": "uuid",
10939
- "type": "string"
11529
+ "excludedIds": {
11530
+ "items": {
11531
+ "format": "uuid",
11532
+ "type": "string"
11533
+ },
11534
+ "maxItems": 5000,
11535
+ "type": "array"
10940
11536
  }
10941
11537
  },
10942
- "type": "object",
10943
- "required": [
10944
- "value"
10945
- ]
11538
+ "type": "object"
10946
11539
  },
10947
11540
  "InviteLinkOutputDTOAPI": {
10948
11541
  "properties": {
@@ -11626,129 +12219,6 @@
11626
12219
  "meta"
11627
12220
  ]
11628
12221
  },
11629
- "PlayerOnGameServerSearchInputAllowedFilters": {
11630
- "properties": {
11631
- "gameId": {
11632
- "items": {
11633
- "type": "string"
11634
- },
11635
- "type": "array"
11636
- },
11637
- "gameServerId": {
11638
- "items": {
11639
- "format": "uuid",
11640
- "type": "string"
11641
- },
11642
- "type": "array"
11643
- },
11644
- "playerId": {
11645
- "items": {
11646
- "format": "uuid",
11647
- "type": "string"
11648
- },
11649
- "type": "array"
11650
- },
11651
- "online": {
11652
- "items": {
11653
- "type": "boolean"
11654
- },
11655
- "type": "array"
11656
- },
11657
- "id": {
11658
- "items": {
11659
- "format": "uuid",
11660
- "type": "string"
11661
- },
11662
- "type": "array"
11663
- }
11664
- },
11665
- "type": "object"
11666
- },
11667
- "PlayerOnGameServerSearchInputAllowedRangeFilter": {
11668
- "properties": {
11669
- "lastSeen": {
11670
- "oneOf": [
11671
- {
11672
- "format": "date",
11673
- "type": "string"
11674
- },
11675
- {
11676
- "format": "date-time",
11677
- "type": "string"
11678
- }
11679
- ]
11680
- },
11681
- "playtimeSeconds": {
11682
- "type": "number"
11683
- },
11684
- "createdAt": {
11685
- "oneOf": [
11686
- {
11687
- "format": "date",
11688
- "type": "string"
11689
- },
11690
- {
11691
- "format": "date-time",
11692
- "type": "string"
11693
- }
11694
- ]
11695
- },
11696
- "updatedAt": {
11697
- "oneOf": [
11698
- {
11699
- "format": "date",
11700
- "type": "string"
11701
- },
11702
- {
11703
- "format": "date-time",
11704
- "type": "string"
11705
- }
11706
- ]
11707
- }
11708
- },
11709
- "type": "object"
11710
- },
11711
- "PlayerOnGameServerSearchInputDTO": {
11712
- "properties": {
11713
- "filters": {
11714
- "$ref": "#/components/schemas/PlayerOnGameServerSearchInputAllowedFilters"
11715
- },
11716
- "greaterThan": {
11717
- "$ref": "#/components/schemas/PlayerOnGameServerSearchInputAllowedRangeFilter"
11718
- },
11719
- "lessThan": {
11720
- "$ref": "#/components/schemas/PlayerOnGameServerSearchInputAllowedRangeFilter"
11721
- },
11722
- "extend": {
11723
- "items": {
11724
- "enum": [
11725
- "gameServer",
11726
- "player"
11727
- ],
11728
- "type": "string"
11729
- },
11730
- "type": "array"
11731
- },
11732
- "search": {},
11733
- "page": {
11734
- "type": "number"
11735
- },
11736
- "limit": {
11737
- "type": "number"
11738
- },
11739
- "sortBy": {
11740
- "type": "string"
11741
- },
11742
- "sortDirection": {
11743
- "enum": [
11744
- "asc",
11745
- "desc"
11746
- ],
11747
- "type": "string"
11748
- }
11749
- },
11750
- "type": "object"
11751
- },
11752
12222
  "PlayerOnGameServerSetCurrencyInputDTO": {
11753
12223
  "properties": {
11754
12224
  "currency": {
@@ -13783,124 +14253,34 @@
13783
14253
  "properties": {
13784
14254
  "data": {
13785
14255
  "$ref": "#/components/schemas/VariableOutputDTO"
13786
- },
13787
- "meta": {
13788
- "$ref": "#/components/schemas/MetadataOutput"
13789
- }
13790
- },
13791
- "type": "object",
13792
- "required": [
13793
- "data",
13794
- "meta"
13795
- ]
13796
- },
13797
- "VariableOutputArrayDTOAPI": {
13798
- "properties": {
13799
- "data": {
13800
- "items": {
13801
- "$ref": "#/components/schemas/VariableOutputDTO"
13802
- },
13803
- "type": "array"
13804
- },
13805
- "meta": {
13806
- "$ref": "#/components/schemas/MetadataOutput"
13807
- }
13808
- },
13809
- "type": "object",
13810
- "required": [
13811
- "data",
13812
- "meta"
13813
- ]
13814
- },
13815
- "VariableSearchInputAllowedFilters": {
13816
- "properties": {
13817
- "key": {
13818
- "items": {
13819
- "type": "string"
13820
- },
13821
- "type": "array"
13822
- },
13823
- "gameServerId": {
13824
- "items": {
13825
- "format": "uuid",
13826
- "type": "string"
13827
- },
13828
- "type": "array"
13829
- },
13830
- "playerId": {
13831
- "items": {
13832
- "format": "uuid",
13833
- "type": "string"
13834
- },
13835
- "type": "array"
13836
- },
13837
- "moduleId": {
13838
- "items": {
13839
- "format": "uuid",
13840
- "type": "string"
13841
- },
13842
- "type": "array"
13843
- },
13844
- "id": {
13845
- "items": {
13846
- "format": "uuid",
13847
- "type": "string"
13848
- },
13849
- "type": "array"
13850
- }
13851
- },
13852
- "type": "object"
13853
- },
13854
- "VariableSearchInputAllowedSearch": {
13855
- "properties": {
13856
- "key": {
13857
- "items": {
13858
- "type": "string"
13859
- },
13860
- "type": "array"
14256
+ },
14257
+ "meta": {
14258
+ "$ref": "#/components/schemas/MetadataOutput"
13861
14259
  }
13862
14260
  },
13863
- "type": "object"
14261
+ "type": "object",
14262
+ "required": [
14263
+ "data",
14264
+ "meta"
14265
+ ]
13864
14266
  },
13865
- "VariableSearchInputDTO": {
14267
+ "VariableOutputArrayDTOAPI": {
13866
14268
  "properties": {
13867
- "filters": {
13868
- "$ref": "#/components/schemas/VariableSearchInputAllowedFilters"
13869
- },
13870
- "search": {
13871
- "$ref": "#/components/schemas/VariableSearchInputAllowedSearch"
13872
- },
13873
- "extend": {
14269
+ "data": {
13874
14270
  "items": {
13875
- "enum": [
13876
- "module",
13877
- "player",
13878
- "gameServer"
13879
- ],
13880
- "type": "string"
14271
+ "$ref": "#/components/schemas/VariableOutputDTO"
13881
14272
  },
13882
14273
  "type": "array"
13883
14274
  },
13884
- "greaterThan": {},
13885
- "lessThan": {},
13886
- "page": {
13887
- "type": "number"
13888
- },
13889
- "limit": {
13890
- "type": "number"
13891
- },
13892
- "sortBy": {
13893
- "type": "string"
13894
- },
13895
- "sortDirection": {
13896
- "enum": [
13897
- "asc",
13898
- "desc"
13899
- ],
13900
- "type": "string"
14275
+ "meta": {
14276
+ "$ref": "#/components/schemas/MetadataOutput"
13901
14277
  }
13902
14278
  },
13903
- "type": "object"
14279
+ "type": "object",
14280
+ "required": [
14281
+ "data",
14282
+ "meta"
14283
+ ]
13904
14284
  },
13905
14285
  "RedirectQs": {
13906
14286
  "properties": {
@@ -14428,149 +14808,6 @@
14428
14808
  "meta"
14429
14809
  ]
14430
14810
  },
14431
- "ShopListingSearchInputAllowedFilters": {
14432
- "properties": {
14433
- "id": {
14434
- "items": {
14435
- "format": "uuid",
14436
- "type": "string"
14437
- },
14438
- "type": "array"
14439
- },
14440
- "gameServerId": {
14441
- "items": {
14442
- "format": "uuid",
14443
- "type": "string"
14444
- },
14445
- "type": "array"
14446
- },
14447
- "price": {
14448
- "items": {
14449
- "type": "number"
14450
- },
14451
- "type": "array"
14452
- },
14453
- "name": {
14454
- "items": {
14455
- "type": "string"
14456
- },
14457
- "type": "array"
14458
- },
14459
- "draft": {
14460
- "type": "boolean"
14461
- },
14462
- "categoryIds": {
14463
- "items": {
14464
- "format": "uuid",
14465
- "type": "string"
14466
- },
14467
- "type": "array"
14468
- },
14469
- "uncategorized": {
14470
- "type": "boolean"
14471
- }
14472
- },
14473
- "type": "object"
14474
- },
14475
- "ShopListingSearchInputAllowedSearch": {
14476
- "properties": {
14477
- "name": {
14478
- "items": {
14479
- "type": "string"
14480
- },
14481
- "type": "array"
14482
- }
14483
- },
14484
- "type": "object"
14485
- },
14486
- "ShopSearchInputAllowedRangeFilter": {
14487
- "properties": {
14488
- "price": {
14489
- "type": "number"
14490
- },
14491
- "deletedAt": {
14492
- "oneOf": [
14493
- {
14494
- "format": "date",
14495
- "type": "string"
14496
- },
14497
- {
14498
- "format": "date-time",
14499
- "type": "string"
14500
- }
14501
- ]
14502
- },
14503
- "createdAt": {
14504
- "oneOf": [
14505
- {
14506
- "format": "date",
14507
- "type": "string"
14508
- },
14509
- {
14510
- "format": "date-time",
14511
- "type": "string"
14512
- }
14513
- ]
14514
- },
14515
- "updatedAt": {
14516
- "oneOf": [
14517
- {
14518
- "format": "date",
14519
- "type": "string"
14520
- },
14521
- {
14522
- "format": "date-time",
14523
- "type": "string"
14524
- }
14525
- ]
14526
- }
14527
- },
14528
- "type": "object"
14529
- },
14530
- "ShopListingSearchInputDTO": {
14531
- "properties": {
14532
- "filters": {
14533
- "$ref": "#/components/schemas/ShopListingSearchInputAllowedFilters"
14534
- },
14535
- "search": {
14536
- "$ref": "#/components/schemas/ShopListingSearchInputAllowedSearch"
14537
- },
14538
- "greaterThan": {
14539
- "$ref": "#/components/schemas/ShopSearchInputAllowedRangeFilter"
14540
- },
14541
- "lessThan": {
14542
- "$ref": "#/components/schemas/ShopSearchInputAllowedRangeFilter"
14543
- },
14544
- "extend": {
14545
- "items": {
14546
- "enum": [
14547
- "gameServer",
14548
- "items",
14549
- "categories"
14550
- ],
14551
- "type": "string"
14552
- },
14553
- "type": "array"
14554
- },
14555
- "page": {
14556
- "type": "number"
14557
- },
14558
- "limit": {
14559
- "type": "number"
14560
- },
14561
- "sortBy": {
14562
- "type": "string"
14563
- },
14564
- "sortDirection": {
14565
- "enum": [
14566
- "asc",
14567
- "desc"
14568
- ],
14569
- "type": "string"
14570
- }
14571
- },
14572
- "type": "object"
14573
- },
14574
14811
  "ShopOrderOutputDTOAPI": {
14575
14812
  "properties": {
14576
14813
  "data": {
@@ -17961,7 +18198,7 @@
17961
18198
  "domainAuth": []
17962
18199
  }
17963
18200
  ],
17964
- "description": "Bulk add currency to multiple players on a game server. Processes each player individually and reports partial failures.\n\n Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkAddCurrency`"
18201
+ "description": "Bulk add currency to players on a game server, targeted by player ids or by a player-on-game-server search query (at most 1000 resolved players). Processes each player individually and reports partial failures. `playerIds` is deprecated; use `ids`.\n\n Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkAddCurrency`"
17965
18202
  }
17966
18203
  },
17967
18204
  "/gameserver/{gameServerId}/player/{playerId}/add-currency": {
@@ -21281,7 +21518,7 @@
21281
21518
  "domainAuth": []
21282
21519
  }
21283
21520
  ],
21284
- "description": "Bulk assign a role to multiple players. Processes each player individually and reports partial failures.\n\n Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`"
21521
+ "description": "Bulk assign a role to multiple players, targeted by ids or by a search query (at most 1000 resolved players). Processes each player individually and reports partial failures. `playerIds` is deprecated; use `ids`.\n\n Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`"
21285
21522
  }
21286
21523
  },
21287
21524
  "/player/{id}/role/{roleId}": {
@@ -21433,7 +21670,7 @@
21433
21670
  "domainAuth": []
21434
21671
  }
21435
21672
  ],
21436
- "description": "Bulk delete players by their IDs. Deletes Player records which cascades to POG records.\n\n Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`"
21673
+ "description": "Bulk delete players, targeted by ids or by a search query. Deletes Player records which cascades to POG records. `playerIds` is deprecated; use `ids`.\n\n Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`"
21437
21674
  }
21438
21675
  },
21439
21676
  "/settings/{key}": {
@@ -22306,6 +22543,42 @@
22306
22543
  }
22307
22544
  ],
22308
22545
  "description": "\n\n Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerCreate`"
22546
+ },
22547
+ "delete": {
22548
+ "operationId": "VariableController.bulkDelete",
22549
+ "requestBody": {
22550
+ "content": {
22551
+ "application/json": {
22552
+ "schema": {
22553
+ "$ref": "#/components/schemas/VariableBulkDeleteInputDTO"
22554
+ }
22555
+ }
22556
+ },
22557
+ "description": "VariableBulkDeleteInputDTO",
22558
+ "required": false
22559
+ },
22560
+ "responses": {
22561
+ "200": {
22562
+ "content": {
22563
+ "application/json": {
22564
+ "schema": {
22565
+ "$ref": "#/components/schemas/BulkActionResultDTOAPI"
22566
+ }
22567
+ }
22568
+ },
22569
+ "description": ""
22570
+ }
22571
+ },
22572
+ "summary": "Bulk delete",
22573
+ "tags": [
22574
+ "Variable"
22575
+ ],
22576
+ "security": [
22577
+ {
22578
+ "domainAuth": []
22579
+ }
22580
+ ],
22581
+ "description": "Bulk delete variables by ids or by a search query. Reports per-item failures.\n\n Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerBulkDelete`"
22309
22582
  }
22310
22583
  },
22311
22584
  "/discord/guilds/search": {
@@ -23293,6 +23566,44 @@
23293
23566
  "description": "\n\n Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerCreate`"
23294
23567
  }
23295
23568
  },
23569
+ "/shop/listing/bulk": {
23570
+ "post": {
23571
+ "operationId": "ShopListingController.bulk",
23572
+ "requestBody": {
23573
+ "content": {
23574
+ "application/json": {
23575
+ "schema": {
23576
+ "$ref": "#/components/schemas/ShopListingBulkInputDTO"
23577
+ }
23578
+ }
23579
+ },
23580
+ "description": "ShopListingBulkInputDTO",
23581
+ "required": false
23582
+ },
23583
+ "responses": {
23584
+ "200": {
23585
+ "content": {
23586
+ "application/json": {
23587
+ "schema": {
23588
+ "$ref": "#/components/schemas/BulkActionResultDTOAPI"
23589
+ }
23590
+ }
23591
+ },
23592
+ "description": ""
23593
+ }
23594
+ },
23595
+ "summary": "Bulk",
23596
+ "tags": [
23597
+ "Shop Listing"
23598
+ ],
23599
+ "security": [
23600
+ {
23601
+ "domainAuth": []
23602
+ }
23603
+ ],
23604
+ "description": "Bulk delete/publish/unpublish shop listings, targeted by ids or by a search query.\n\n Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerBulk`"
23605
+ }
23606
+ },
23296
23607
  "/shop/listing/import": {
23297
23608
  "post": {
23298
23609
  "operationId": "ShopListingController.importListings",
@@ -23887,7 +24198,7 @@
23887
24198
  "domainAuth": []
23888
24199
  }
23889
24200
  ],
23890
- "description": "Bulk assign categories to multiple shop listings\n\n Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerBulkAssign`"
24201
+ "description": "Bulk assign categories to shop listings, targeted by ids or by a listing search query. `listingIds` is deprecated; use `ids`.\n\n Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerBulkAssign`"
23891
24202
  }
23892
24203
  },
23893
24204
  "/player/ban/search": {