@takaro/apiclient 0.0.0-dev.a2993e0 → 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.
@@ -780,6 +780,88 @@ export interface BoundingBoxSearchInputDTO {
780
780
  */
781
781
  gameserverId: string;
782
782
  }
783
+ /**
784
+ *
785
+ * @export
786
+ * @interface BulkActionFailureDTO
787
+ */
788
+ export interface BulkActionFailureDTO {
789
+ /**
790
+ *
791
+ * @type {string}
792
+ * @memberof BulkActionFailureDTO
793
+ */
794
+ id: string;
795
+ /**
796
+ *
797
+ * @type {string}
798
+ * @memberof BulkActionFailureDTO
799
+ */
800
+ name: string;
801
+ /**
802
+ *
803
+ * @type {string}
804
+ * @memberof BulkActionFailureDTO
805
+ */
806
+ reason: string;
807
+ }
808
+ /**
809
+ *
810
+ * @export
811
+ * @interface BulkActionResultDTO
812
+ */
813
+ export interface BulkActionResultDTO {
814
+ /**
815
+ *
816
+ * @type {number}
817
+ * @memberof BulkActionResultDTO
818
+ */
819
+ succeeded: number;
820
+ /**
821
+ *
822
+ * @type {Array<BulkActionFailureDTO>}
823
+ * @memberof BulkActionResultDTO
824
+ */
825
+ failed: Array<BulkActionFailureDTO>;
826
+ }
827
+ /**
828
+ *
829
+ * @export
830
+ * @interface BulkActionResultDTOAPI
831
+ */
832
+ export interface BulkActionResultDTOAPI {
833
+ /**
834
+ *
835
+ * @type {BulkActionResultDTO}
836
+ * @memberof BulkActionResultDTOAPI
837
+ */
838
+ data: BulkActionResultDTO;
839
+ /**
840
+ *
841
+ * @type {MetadataOutput}
842
+ * @memberof BulkActionResultDTOAPI
843
+ */
844
+ meta: MetadataOutput;
845
+ }
846
+ /**
847
+ *
848
+ * @export
849
+ * @interface BulkTargetDTO
850
+ */
851
+ export interface BulkTargetDTO {
852
+ /**
853
+ *
854
+ * @type {Array<string>}
855
+ * @memberof BulkTargetDTO
856
+ */
857
+ ids?: Array<string>;
858
+ /**
859
+ *
860
+ * @type {Array<string>}
861
+ * @memberof BulkTargetDTO
862
+ */
863
+ excludedIds?: Array<string>;
864
+ }
783
865
  /**
784
866
  *
785
867
  * @export
@@ -2264,6 +2346,30 @@ export interface DomainCreateInputDTO {
2264
2346
  * @memberof DomainCreateInputDTO
2265
2347
  */
2266
2348
  maxFunctionsInModule?: number;
2349
+ /**
2350
+ *
2351
+ * @type {number}
2352
+ * @memberof DomainCreateInputDTO
2353
+ */
2354
+ maxCustomRoles?: number;
2355
+ /**
2356
+ *
2357
+ * @type {number}
2358
+ * @memberof DomainCreateInputDTO
2359
+ */
2360
+ maxDiscordLinkedRoles?: number;
2361
+ /**
2362
+ *
2363
+ * @type {boolean}
2364
+ * @memberof DomainCreateInputDTO
2365
+ */
2366
+ skipBuiltinSeeding?: boolean;
2367
+ /**
2368
+ *
2369
+ * @type {string}
2370
+ * @memberof DomainCreateInputDTO
2371
+ */
2372
+ serverRegistrationToken?: string;
2267
2373
  }
2268
2374
 
2269
2375
  export const DomainCreateInputDTOStateEnum = {
@@ -2422,6 +2528,18 @@ export interface DomainOutputDTO {
2422
2528
  * @memberof DomainOutputDTO
2423
2529
  */
2424
2530
  maxFunctionsInModule: number;
2531
+ /**
2532
+ *
2533
+ * @type {number}
2534
+ * @memberof DomainOutputDTO
2535
+ */
2536
+ maxCustomRoles: number;
2537
+ /**
2538
+ *
2539
+ * @type {number}
2540
+ * @memberof DomainOutputDTO
2541
+ */
2542
+ maxDiscordLinkedRoles: number;
2425
2543
  /**
2426
2544
  *
2427
2545
  * @type {string}
@@ -2653,6 +2771,18 @@ export interface DomainUpdateInputDTO {
2653
2771
  * @memberof DomainUpdateInputDTO
2654
2772
  */
2655
2773
  maxFunctionsInModule?: number;
2774
+ /**
2775
+ *
2776
+ * @type {number}
2777
+ * @memberof DomainUpdateInputDTO
2778
+ */
2779
+ maxCustomRoles?: number;
2780
+ /**
2781
+ *
2782
+ * @type {number}
2783
+ * @memberof DomainUpdateInputDTO
2784
+ */
2785
+ maxDiscordLinkedRoles?: number;
2656
2786
  }
2657
2787
 
2658
2788
  export const DomainUpdateInputDTOStateEnum = {
@@ -3105,19 +3235,19 @@ export interface ErrorOutput {
3105
3235
  * @type {string}
3106
3236
  * @memberof ErrorOutput
3107
3237
  */
3108
- code: string;
3238
+ code?: string;
3109
3239
  /**
3110
3240
  *
3111
3241
  * @type {string}
3112
3242
  * @memberof ErrorOutput
3113
3243
  */
3114
- message: string;
3244
+ message?: string;
3115
3245
  /**
3116
3246
  *
3117
3247
  * @type {string}
3118
3248
  * @memberof ErrorOutput
3119
3249
  */
3120
- details: string;
3250
+ details?: string;
3121
3251
  }
3122
3252
  /**
3123
3253
  *
@@ -3130,7 +3260,7 @@ export interface EventChatMessage {
3130
3260
  * @type {IGamePlayer}
3131
3261
  * @memberof EventChatMessage
3132
3262
  */
3133
- player: IGamePlayer;
3263
+ player?: IGamePlayer;
3134
3264
  /**
3135
3265
  *
3136
3266
  * @type {string}
@@ -3263,6 +3393,7 @@ export const EventCreateDTOEventNameEnum = {
3263
3393
  PlayerInventoryChanged: 'player-inventory-changed',
3264
3394
  EventRateLimited: 'event-rate-limited',
3265
3395
  PlayerSyncSnapshot: 'player-sync-snapshot',
3396
+ InviteLinkCreated: 'invite-link-created',
3266
3397
  PlayerConnected: 'player-connected',
3267
3398
  PlayerDisconnected: 'player-disconnected',
3268
3399
  ChatMessage: 'chat-message',
@@ -3481,6 +3612,7 @@ export const EventExploreFiltersDTOEventNameEnum = {
3481
3612
  PlayerInventoryChanged: 'player-inventory-changed',
3482
3613
  EventRateLimited: 'event-rate-limited',
3483
3614
  PlayerSyncSnapshot: 'player-sync-snapshot',
3615
+ InviteLinkCreated: 'invite-link-created',
3484
3616
  PlayerConnected: 'player-connected',
3485
3617
  PlayerDisconnected: 'player-disconnected',
3486
3618
  ChatMessage: 'chat-message',
@@ -3851,6 +3983,7 @@ export const EventOutputDTOEventNameEnum = {
3851
3983
  PlayerInventoryChanged: 'player-inventory-changed',
3852
3984
  EventRateLimited: 'event-rate-limited',
3853
3985
  PlayerSyncSnapshot: 'player-sync-snapshot',
3986
+ InviteLinkCreated: 'invite-link-created',
3854
3987
  PlayerConnected: 'player-connected',
3855
3988
  PlayerDisconnected: 'player-disconnected',
3856
3989
  ChatMessage: 'chat-message',
@@ -3883,6 +4016,7 @@ export type EventOutputDTOMeta =
3883
4016
  | TakaroEventGameserverDeleted
3884
4017
  | TakaroEventGameserverUpdated
3885
4018
  | TakaroEventHookExecuted
4019
+ | TakaroEventInviteLinkCreated
3886
4020
  | TakaroEventModuleCreated
3887
4021
  | TakaroEventModuleDeleted
3888
4022
  | TakaroEventModuleInstalled
@@ -4090,6 +4224,7 @@ export const EventSearchInputAllowedFiltersEventNameEnum = {
4090
4224
  PlayerInventoryChanged: 'player-inventory-changed',
4091
4225
  EventRateLimited: 'event-rate-limited',
4092
4226
  PlayerSyncSnapshot: 'player-sync-snapshot',
4227
+ InviteLinkCreated: 'invite-link-created',
4093
4228
  PlayerConnected: 'player-connected',
4094
4229
  PlayerDisconnected: 'player-disconnected',
4095
4230
  ChatMessage: 'chat-message',
@@ -5584,6 +5719,7 @@ export const HookCreateDTOEventTypeEnum = {
5584
5719
  PlayerInventoryChanged: 'player-inventory-changed',
5585
5720
  EventRateLimited: 'event-rate-limited',
5586
5721
  PlayerSyncSnapshot: 'player-sync-snapshot',
5722
+ InviteLinkCreated: 'invite-link-created',
5587
5723
  } as const;
5588
5724
 
5589
5725
  export type HookCreateDTOEventTypeEnum = (typeof HookCreateDTOEventTypeEnum)[keyof typeof HookCreateDTOEventTypeEnum];
@@ -5747,6 +5883,7 @@ export const HookOutputDTOEventTypeEnum = {
5747
5883
  PlayerInventoryChanged: 'player-inventory-changed',
5748
5884
  EventRateLimited: 'event-rate-limited',
5749
5885
  PlayerSyncSnapshot: 'player-sync-snapshot',
5886
+ InviteLinkCreated: 'invite-link-created',
5750
5887
  } as const;
5751
5888
 
5752
5889
  export type HookOutputDTOEventTypeEnum = (typeof HookOutputDTOEventTypeEnum)[keyof typeof HookOutputDTOEventTypeEnum];
@@ -5855,6 +5992,7 @@ export const HookSearchInputAllowedFiltersEventTypeEnum = {
5855
5992
  PlayerInventoryChanged: 'player-inventory-changed',
5856
5993
  EventRateLimited: 'event-rate-limited',
5857
5994
  PlayerSyncSnapshot: 'player-sync-snapshot',
5995
+ InviteLinkCreated: 'invite-link-created',
5858
5996
  } as const;
5859
5997
 
5860
5998
  export type HookSearchInputAllowedFiltersEventTypeEnum =
@@ -6035,6 +6173,7 @@ export const HookTriggerDTOEventTypeEnum = {
6035
6173
  PlayerInventoryChanged: 'player-inventory-changed',
6036
6174
  EventRateLimited: 'event-rate-limited',
6037
6175
  PlayerSyncSnapshot: 'player-sync-snapshot',
6176
+ InviteLinkCreated: 'invite-link-created',
6038
6177
  } as const;
6039
6178
 
6040
6179
  export type HookTriggerDTOEventTypeEnum =
@@ -6125,6 +6264,7 @@ export const HookUpdateDTOEventTypeEnum = {
6125
6264
  PlayerInventoryChanged: 'player-inventory-changed',
6126
6265
  EventRateLimited: 'event-rate-limited',
6127
6266
  PlayerSyncSnapshot: 'player-sync-snapshot',
6267
+ InviteLinkCreated: 'invite-link-created',
6128
6268
  } as const;
6129
6269
 
6130
6270
  export type HookUpdateDTOEventTypeEnum = (typeof HookUpdateDTOEventTypeEnum)[keyof typeof HookUpdateDTOEventTypeEnum];
@@ -6457,6 +6597,7 @@ export const IHookEventTypeEnum = {
6457
6597
  PlayerInventoryChanged: 'player-inventory-changed',
6458
6598
  EventRateLimited: 'event-rate-limited',
6459
6599
  PlayerSyncSnapshot: 'player-sync-snapshot',
6600
+ InviteLinkCreated: 'invite-link-created',
6460
6601
  } as const;
6461
6602
 
6462
6603
  export type IHookEventTypeEnum = (typeof IHookEventTypeEnum)[keyof typeof IHookEventTypeEnum];
@@ -6886,6 +7027,462 @@ export interface InviteCreateDTO {
6886
7027
  */
6887
7028
  email: string;
6888
7029
  }
7030
+ /**
7031
+ *
7032
+ * @export
7033
+ * @interface InviteLinkCreateInputDTO
7034
+ */
7035
+ export interface InviteLinkCreateInputDTO {
7036
+ /**
7037
+ *
7038
+ * @type {Array<string>}
7039
+ * @memberof InviteLinkCreateInputDTO
7040
+ */
7041
+ roleIds?: Array<string>;
7042
+ /**
7043
+ *
7044
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
7045
+ * @memberof InviteLinkCreateInputDTO
7046
+ */
7047
+ expiresAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
7048
+ /**
7049
+ *
7050
+ * @type {number}
7051
+ * @memberof InviteLinkCreateInputDTO
7052
+ */
7053
+ maxUses?: number;
7054
+ }
7055
+ /**
7056
+ *
7057
+ * @export
7058
+ * @interface InviteLinkCreateResultDTO
7059
+ */
7060
+ export interface InviteLinkCreateResultDTO {
7061
+ /**
7062
+ *
7063
+ * @type {string}
7064
+ * @memberof InviteLinkCreateResultDTO
7065
+ */
7066
+ inviteUrl: string;
7067
+ /**
7068
+ *
7069
+ * @type {string}
7070
+ * @memberof InviteLinkCreateResultDTO
7071
+ */
7072
+ token: string;
7073
+ /**
7074
+ *
7075
+ * @type {string}
7076
+ * @memberof InviteLinkCreateResultDTO
7077
+ */
7078
+ id: string;
7079
+ /**
7080
+ *
7081
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
7082
+ * @memberof InviteLinkCreateResultDTO
7083
+ */
7084
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
7085
+ /**
7086
+ *
7087
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
7088
+ * @memberof InviteLinkCreateResultDTO
7089
+ */
7090
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
7091
+ /**
7092
+ *
7093
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
7094
+ * @memberof InviteLinkCreateResultDTO
7095
+ */
7096
+ expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
7097
+ /**
7098
+ *
7099
+ * @type {number}
7100
+ * @memberof InviteLinkCreateResultDTO
7101
+ */
7102
+ maxUses?: number;
7103
+ /**
7104
+ *
7105
+ * @type {number}
7106
+ * @memberof InviteLinkCreateResultDTO
7107
+ */
7108
+ uses: number;
7109
+ /**
7110
+ *
7111
+ * @type {number}
7112
+ * @memberof InviteLinkCreateResultDTO
7113
+ */
7114
+ remaining?: number;
7115
+ /**
7116
+ *
7117
+ * @type {string}
7118
+ * @memberof InviteLinkCreateResultDTO
7119
+ */
7120
+ status: InviteLinkCreateResultDTOStatusEnum;
7121
+ /**
7122
+ *
7123
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
7124
+ * @memberof InviteLinkCreateResultDTO
7125
+ */
7126
+ revokedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
7127
+ /**
7128
+ *
7129
+ * @type {string}
7130
+ * @memberof InviteLinkCreateResultDTO
7131
+ */
7132
+ createdBy?: string;
7133
+ /**
7134
+ *
7135
+ * @type {Array<InviteLinkRoleDTO>}
7136
+ * @memberof InviteLinkCreateResultDTO
7137
+ */
7138
+ roles: Array<InviteLinkRoleDTO>;
7139
+ }
7140
+
7141
+ export const InviteLinkCreateResultDTOStatusEnum = {
7142
+ Active: 'ACTIVE',
7143
+ Revoked: 'REVOKED',
7144
+ Expired: 'EXPIRED',
7145
+ Depleted: 'DEPLETED',
7146
+ } as const;
7147
+
7148
+ export type InviteLinkCreateResultDTOStatusEnum =
7149
+ (typeof InviteLinkCreateResultDTOStatusEnum)[keyof typeof InviteLinkCreateResultDTOStatusEnum];
7150
+
7151
+ /**
7152
+ *
7153
+ * @export
7154
+ * @interface InviteLinkCreateResultDTOAPI
7155
+ */
7156
+ export interface InviteLinkCreateResultDTOAPI {
7157
+ /**
7158
+ *
7159
+ * @type {InviteLinkCreateResultDTO}
7160
+ * @memberof InviteLinkCreateResultDTOAPI
7161
+ */
7162
+ data: InviteLinkCreateResultDTO;
7163
+ /**
7164
+ *
7165
+ * @type {MetadataOutput}
7166
+ * @memberof InviteLinkCreateResultDTOAPI
7167
+ */
7168
+ meta: MetadataOutput;
7169
+ }
7170
+ /**
7171
+ *
7172
+ * @export
7173
+ * @interface InviteLinkOutputArrayDTOAPI
7174
+ */
7175
+ export interface InviteLinkOutputArrayDTOAPI {
7176
+ /**
7177
+ *
7178
+ * @type {Array<InviteLinkOutputDTO>}
7179
+ * @memberof InviteLinkOutputArrayDTOAPI
7180
+ */
7181
+ data: Array<InviteLinkOutputDTO>;
7182
+ /**
7183
+ *
7184
+ * @type {MetadataOutput}
7185
+ * @memberof InviteLinkOutputArrayDTOAPI
7186
+ */
7187
+ meta: MetadataOutput;
7188
+ }
7189
+ /**
7190
+ *
7191
+ * @export
7192
+ * @interface InviteLinkOutputDTO
7193
+ */
7194
+ export interface InviteLinkOutputDTO {
7195
+ /**
7196
+ *
7197
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
7198
+ * @memberof InviteLinkOutputDTO
7199
+ */
7200
+ expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
7201
+ /**
7202
+ *
7203
+ * @type {number}
7204
+ * @memberof InviteLinkOutputDTO
7205
+ */
7206
+ maxUses?: number;
7207
+ /**
7208
+ *
7209
+ * @type {number}
7210
+ * @memberof InviteLinkOutputDTO
7211
+ */
7212
+ uses: number;
7213
+ /**
7214
+ *
7215
+ * @type {number}
7216
+ * @memberof InviteLinkOutputDTO
7217
+ */
7218
+ remaining?: number;
7219
+ /**
7220
+ *
7221
+ * @type {string}
7222
+ * @memberof InviteLinkOutputDTO
7223
+ */
7224
+ status: InviteLinkOutputDTOStatusEnum;
7225
+ /**
7226
+ *
7227
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
7228
+ * @memberof InviteLinkOutputDTO
7229
+ */
7230
+ revokedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
7231
+ /**
7232
+ *
7233
+ * @type {string}
7234
+ * @memberof InviteLinkOutputDTO
7235
+ */
7236
+ createdBy?: string;
7237
+ /**
7238
+ *
7239
+ * @type {Array<InviteLinkRoleDTO>}
7240
+ * @memberof InviteLinkOutputDTO
7241
+ */
7242
+ roles: Array<InviteLinkRoleDTO>;
7243
+ /**
7244
+ *
7245
+ * @type {string}
7246
+ * @memberof InviteLinkOutputDTO
7247
+ */
7248
+ id: string;
7249
+ /**
7250
+ *
7251
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
7252
+ * @memberof InviteLinkOutputDTO
7253
+ */
7254
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
7255
+ /**
7256
+ *
7257
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
7258
+ * @memberof InviteLinkOutputDTO
7259
+ */
7260
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
7261
+ }
7262
+
7263
+ export const InviteLinkOutputDTOStatusEnum = {
7264
+ Active: 'ACTIVE',
7265
+ Revoked: 'REVOKED',
7266
+ Expired: 'EXPIRED',
7267
+ Depleted: 'DEPLETED',
7268
+ } as const;
7269
+
7270
+ export type InviteLinkOutputDTOStatusEnum =
7271
+ (typeof InviteLinkOutputDTOStatusEnum)[keyof typeof InviteLinkOutputDTOStatusEnum];
7272
+
7273
+ /**
7274
+ *
7275
+ * @export
7276
+ * @interface InviteLinkOutputDTOAPI
7277
+ */
7278
+ export interface InviteLinkOutputDTOAPI {
7279
+ /**
7280
+ *
7281
+ * @type {InviteLinkOutputDTO}
7282
+ * @memberof InviteLinkOutputDTOAPI
7283
+ */
7284
+ data: InviteLinkOutputDTO;
7285
+ /**
7286
+ *
7287
+ * @type {MetadataOutput}
7288
+ * @memberof InviteLinkOutputDTOAPI
7289
+ */
7290
+ meta: MetadataOutput;
7291
+ }
7292
+ /**
7293
+ *
7294
+ * @export
7295
+ * @interface InviteLinkPreviewDTO
7296
+ */
7297
+ export interface InviteLinkPreviewDTO {
7298
+ /**
7299
+ *
7300
+ * @type {InviteLinkPreviewDomainDTO}
7301
+ * @memberof InviteLinkPreviewDTO
7302
+ */
7303
+ domain: InviteLinkPreviewDomainDTO;
7304
+ /**
7305
+ *
7306
+ * @type {Array<InviteLinkPreviewRoleDTO>}
7307
+ * @memberof InviteLinkPreviewDTO
7308
+ */
7309
+ roles: Array<InviteLinkPreviewRoleDTO>;
7310
+ /**
7311
+ *
7312
+ * @type {string}
7313
+ * @memberof InviteLinkPreviewDTO
7314
+ */
7315
+ status: InviteLinkPreviewDTOStatusEnum;
7316
+ /**
7317
+ *
7318
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
7319
+ * @memberof InviteLinkPreviewDTO
7320
+ */
7321
+ expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
7322
+ /**
7323
+ *
7324
+ * @type {number}
7325
+ * @memberof InviteLinkPreviewDTO
7326
+ */
7327
+ remaining?: number;
7328
+ }
7329
+
7330
+ export const InviteLinkPreviewDTOStatusEnum = {
7331
+ Active: 'ACTIVE',
7332
+ Revoked: 'REVOKED',
7333
+ Expired: 'EXPIRED',
7334
+ Depleted: 'DEPLETED',
7335
+ } as const;
7336
+
7337
+ export type InviteLinkPreviewDTOStatusEnum =
7338
+ (typeof InviteLinkPreviewDTOStatusEnum)[keyof typeof InviteLinkPreviewDTOStatusEnum];
7339
+
7340
+ /**
7341
+ *
7342
+ * @export
7343
+ * @interface InviteLinkPreviewDTOAPI
7344
+ */
7345
+ export interface InviteLinkPreviewDTOAPI {
7346
+ /**
7347
+ *
7348
+ * @type {InviteLinkPreviewDTO}
7349
+ * @memberof InviteLinkPreviewDTOAPI
7350
+ */
7351
+ data: InviteLinkPreviewDTO;
7352
+ /**
7353
+ *
7354
+ * @type {MetadataOutput}
7355
+ * @memberof InviteLinkPreviewDTOAPI
7356
+ */
7357
+ meta: MetadataOutput;
7358
+ }
7359
+ /**
7360
+ *
7361
+ * @export
7362
+ * @interface InviteLinkPreviewDomainDTO
7363
+ */
7364
+ export interface InviteLinkPreviewDomainDTO {
7365
+ /**
7366
+ *
7367
+ * @type {string}
7368
+ * @memberof InviteLinkPreviewDomainDTO
7369
+ */
7370
+ id: string;
7371
+ /**
7372
+ *
7373
+ * @type {string}
7374
+ * @memberof InviteLinkPreviewDomainDTO
7375
+ */
7376
+ name: string;
7377
+ }
7378
+ /**
7379
+ *
7380
+ * @export
7381
+ * @interface InviteLinkPreviewRoleDTO
7382
+ */
7383
+ export interface InviteLinkPreviewRoleDTO {
7384
+ /**
7385
+ *
7386
+ * @type {string}
7387
+ * @memberof InviteLinkPreviewRoleDTO
7388
+ */
7389
+ id: string;
7390
+ /**
7391
+ *
7392
+ * @type {string}
7393
+ * @memberof InviteLinkPreviewRoleDTO
7394
+ */
7395
+ name: string;
7396
+ }
7397
+ /**
7398
+ *
7399
+ * @export
7400
+ * @interface InviteLinkRoleDTO
7401
+ */
7402
+ export interface InviteLinkRoleDTO {
7403
+ /**
7404
+ *
7405
+ * @type {string}
7406
+ * @memberof InviteLinkRoleDTO
7407
+ */
7408
+ roleId: string;
7409
+ /**
7410
+ *
7411
+ * @type {string}
7412
+ * @memberof InviteLinkRoleDTO
7413
+ */
7414
+ name: string;
7415
+ }
7416
+ /**
7417
+ *
7418
+ * @export
7419
+ * @interface InviteLinkSearchInputDTO
7420
+ */
7421
+ export interface InviteLinkSearchInputDTO {
7422
+ /**
7423
+ *
7424
+ * @type {string}
7425
+ * @memberof InviteLinkSearchInputDTO
7426
+ */
7427
+ sortBy?: string;
7428
+ /**
7429
+ *
7430
+ * @type {any}
7431
+ * @memberof InviteLinkSearchInputDTO
7432
+ */
7433
+ filters?: any;
7434
+ /**
7435
+ *
7436
+ * @type {any}
7437
+ * @memberof InviteLinkSearchInputDTO
7438
+ */
7439
+ search?: any;
7440
+ /**
7441
+ *
7442
+ * @type {any}
7443
+ * @memberof InviteLinkSearchInputDTO
7444
+ */
7445
+ greaterThan?: any;
7446
+ /**
7447
+ *
7448
+ * @type {any}
7449
+ * @memberof InviteLinkSearchInputDTO
7450
+ */
7451
+ lessThan?: any;
7452
+ /**
7453
+ *
7454
+ * @type {number}
7455
+ * @memberof InviteLinkSearchInputDTO
7456
+ */
7457
+ page?: number;
7458
+ /**
7459
+ *
7460
+ * @type {number}
7461
+ * @memberof InviteLinkSearchInputDTO
7462
+ */
7463
+ limit?: number;
7464
+ /**
7465
+ *
7466
+ * @type {string}
7467
+ * @memberof InviteLinkSearchInputDTO
7468
+ */
7469
+ sortDirection?: InviteLinkSearchInputDTOSortDirectionEnum;
7470
+ /**
7471
+ *
7472
+ * @type {Array<string>}
7473
+ * @memberof InviteLinkSearchInputDTO
7474
+ */
7475
+ extend?: Array<string>;
7476
+ }
7477
+
7478
+ export const InviteLinkSearchInputDTOSortDirectionEnum = {
7479
+ Asc: 'asc',
7480
+ Desc: 'desc',
7481
+ } as const;
7482
+
7483
+ export type InviteLinkSearchInputDTOSortDirectionEnum =
7484
+ (typeof InviteLinkSearchInputDTOSortDirectionEnum)[keyof typeof InviteLinkSearchInputDTOSortDirectionEnum];
7485
+
6889
7486
  /**
6890
7487
  *
6891
7488
  * @export
@@ -7811,7 +8408,7 @@ export interface MetadataOutput {
7811
8408
  * @type {ErrorOutput}
7812
8409
  * @memberof MetadataOutput
7813
8410
  */
7814
- error: ErrorOutput;
8411
+ error?: ErrorOutput;
7815
8412
  /**
7816
8413
  *
7817
8414
  * @type {number}
@@ -9930,7 +10527,13 @@ export interface PlayerBulkAssignRoleInputDTO {
9930
10527
  * @type {Array<string>}
9931
10528
  * @memberof PlayerBulkAssignRoleInputDTO
9932
10529
  */
9933
- playerIds: Array<string>;
10530
+ playerIds?: Array<string>;
10531
+ /**
10532
+ *
10533
+ * @type {PlayerSearchInputDTO}
10534
+ * @memberof PlayerBulkAssignRoleInputDTO
10535
+ */
10536
+ query?: PlayerSearchInputDTO;
9934
10537
  /**
9935
10538
  *
9936
10539
  * @type {string}
@@ -9943,6 +10546,18 @@ export interface PlayerBulkAssignRoleInputDTO {
9943
10546
  * @memberof PlayerBulkAssignRoleInputDTO
9944
10547
  */
9945
10548
  expiresAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
10549
+ /**
10550
+ *
10551
+ * @type {Array<string>}
10552
+ * @memberof PlayerBulkAssignRoleInputDTO
10553
+ */
10554
+ ids?: Array<string>;
10555
+ /**
10556
+ *
10557
+ * @type {Array<string>}
10558
+ * @memberof PlayerBulkAssignRoleInputDTO
10559
+ */
10560
+ excludedIds?: Array<string>;
9946
10561
  }
9947
10562
  /**
9948
10563
  *
@@ -10018,7 +10633,25 @@ export interface PlayerBulkDeleteInputDTO {
10018
10633
  * @type {Array<string>}
10019
10634
  * @memberof PlayerBulkDeleteInputDTO
10020
10635
  */
10021
- playerIds: Array<string>;
10636
+ playerIds?: Array<string>;
10637
+ /**
10638
+ *
10639
+ * @type {PlayerSearchInputDTO}
10640
+ * @memberof PlayerBulkDeleteInputDTO
10641
+ */
10642
+ query?: PlayerSearchInputDTO;
10643
+ /**
10644
+ *
10645
+ * @type {Array<string>}
10646
+ * @memberof PlayerBulkDeleteInputDTO
10647
+ */
10648
+ ids?: Array<string>;
10649
+ /**
10650
+ *
10651
+ * @type {Array<string>}
10652
+ * @memberof PlayerBulkDeleteInputDTO
10653
+ */
10654
+ excludedIds?: Array<string>;
10022
10655
  }
10023
10656
  /**
10024
10657
  *
@@ -10590,6 +11223,12 @@ export interface PlayerOnGameServerSearchInputAllowedRangeFilter {
10590
11223
  * @memberof PlayerOnGameServerSearchInputAllowedRangeFilter
10591
11224
  */
10592
11225
  playtimeSeconds?: number;
11226
+ /**
11227
+ *
11228
+ * @type {number}
11229
+ * @memberof PlayerOnGameServerSearchInputAllowedRangeFilter
11230
+ */
11231
+ currency?: number;
10593
11232
  /**
10594
11233
  *
10595
11234
  * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
@@ -11517,6 +12156,24 @@ export interface PlayerSearchInputAllowedFilters {
11517
12156
  * @memberof PlayerSearchInputAllowedFilters
11518
12157
  */
11519
12158
  roleId?: Array<string>;
12159
+ /**
12160
+ *
12161
+ * @type {Array<boolean>}
12162
+ * @memberof PlayerSearchInputAllowedFilters
12163
+ */
12164
+ online?: Array<boolean>;
12165
+ /**
12166
+ *
12167
+ * @type {Array<string>}
12168
+ * @memberof PlayerSearchInputAllowedFilters
12169
+ */
12170
+ roleAssignmentScope?: Array<PlayerSearchInputAllowedFiltersRoleAssignmentScopeEnum>;
12171
+ /**
12172
+ *
12173
+ * @type {Array<string>}
12174
+ * @memberof PlayerSearchInputAllowedFilters
12175
+ */
12176
+ roleAssignmentGameServerId?: Array<string>;
11520
12177
  /**
11521
12178
  *
11522
12179
  * @type {Array<string>}
@@ -11524,6 +12181,15 @@ export interface PlayerSearchInputAllowedFilters {
11524
12181
  */
11525
12182
  id?: Array<string>;
11526
12183
  }
12184
+
12185
+ export const PlayerSearchInputAllowedFiltersRoleAssignmentScopeEnum = {
12186
+ Global: 'global',
12187
+ GameServer: 'gameServer',
12188
+ } as const;
12189
+
12190
+ export type PlayerSearchInputAllowedFiltersRoleAssignmentScopeEnum =
12191
+ (typeof PlayerSearchInputAllowedFiltersRoleAssignmentScopeEnum)[keyof typeof PlayerSearchInputAllowedFiltersRoleAssignmentScopeEnum];
12192
+
11527
12193
  /**
11528
12194
  *
11529
12195
  * @export
@@ -11775,13 +12441,31 @@ export interface PogBulkAddCurrencyInputDTO {
11775
12441
  * @type {Array<string>}
11776
12442
  * @memberof PogBulkAddCurrencyInputDTO
11777
12443
  */
11778
- playerIds: Array<string>;
12444
+ playerIds?: Array<string>;
12445
+ /**
12446
+ *
12447
+ * @type {PlayerOnGameServerSearchInputDTO}
12448
+ * @memberof PogBulkAddCurrencyInputDTO
12449
+ */
12450
+ query?: PlayerOnGameServerSearchInputDTO;
11779
12451
  /**
11780
12452
  *
11781
12453
  * @type {number}
11782
12454
  * @memberof PogBulkAddCurrencyInputDTO
11783
12455
  */
11784
12456
  amount: number;
12457
+ /**
12458
+ *
12459
+ * @type {Array<string>}
12460
+ * @memberof PogBulkAddCurrencyInputDTO
12461
+ */
12462
+ ids?: Array<string>;
12463
+ /**
12464
+ *
12465
+ * @type {Array<string>}
12466
+ * @memberof PogBulkAddCurrencyInputDTO
12467
+ */
12468
+ excludedIds?: Array<string>;
11785
12469
  }
11786
12470
  /**
11787
12471
  *
@@ -12079,6 +12763,19 @@ export const RecentOrderDTOStatusEnum = {
12079
12763
 
12080
12764
  export type RecentOrderDTOStatusEnum = (typeof RecentOrderDTOStatusEnum)[keyof typeof RecentOrderDTOStatusEnum];
12081
12765
 
12766
+ /**
12767
+ *
12768
+ * @export
12769
+ * @interface RedeemInputDTO
12770
+ */
12771
+ export interface RedeemInputDTO {
12772
+ /**
12773
+ *
12774
+ * @type {string}
12775
+ * @memberof RedeemInputDTO
12776
+ */
12777
+ token: string;
12778
+ }
12082
12779
  /**
12083
12780
  *
12084
12781
  * @export
@@ -12090,7 +12787,7 @@ export interface RedirectQs {
12090
12787
  * @type {string}
12091
12788
  * @memberof RedirectQs
12092
12789
  */
12093
- redirect: string;
12790
+ redirect?: string;
12094
12791
  }
12095
12792
  /**
12096
12793
  *
@@ -12891,7 +13588,7 @@ export interface RoleUpdateInputDTO {
12891
13588
  * @type {string}
12892
13589
  * @memberof RoleUpdateInputDTO
12893
13590
  */
12894
- linkedDiscordRoleId?: string;
13591
+ linkedDiscordRoleId?: string | null;
12895
13592
  }
12896
13593
  /**
12897
13594
  *
@@ -13632,7 +14329,13 @@ export interface ShopCategoryBulkAssignDTO {
13632
14329
  * @type {Array<string>}
13633
14330
  * @memberof ShopCategoryBulkAssignDTO
13634
14331
  */
13635
- listingIds: Array<string>;
14332
+ listingIds?: Array<string>;
14333
+ /**
14334
+ *
14335
+ * @type {ShopListingSearchInputDTO}
14336
+ * @memberof ShopCategoryBulkAssignDTO
14337
+ */
14338
+ query?: ShopListingSearchInputDTO;
13636
14339
  /**
13637
14340
  *
13638
14341
  * @type {Array<string>}
@@ -13645,6 +14348,18 @@ export interface ShopCategoryBulkAssignDTO {
13645
14348
  * @memberof ShopCategoryBulkAssignDTO
13646
14349
  */
13647
14350
  removeCategoryIds?: Array<string>;
14351
+ /**
14352
+ *
14353
+ * @type {Array<string>}
14354
+ * @memberof ShopCategoryBulkAssignDTO
14355
+ */
14356
+ ids?: Array<string>;
14357
+ /**
14358
+ *
14359
+ * @type {Array<string>}
14360
+ * @memberof ShopCategoryBulkAssignDTO
14361
+ */
14362
+ excludedIds?: Array<string>;
13648
14363
  }
13649
14364
  /**
13650
14365
  *
@@ -14097,6 +14812,25 @@ export interface ShopDeadStockItemDTO {
14097
14812
  */
14098
14813
  daysSinceLastSale?: number;
14099
14814
  }
14815
+ /**
14816
+ *
14817
+ * @export
14818
+ * @interface ShopImportFailureDTO
14819
+ */
14820
+ export interface ShopImportFailureDTO {
14821
+ /**
14822
+ *
14823
+ * @type {string}
14824
+ * @memberof ShopImportFailureDTO
14825
+ */
14826
+ name: string;
14827
+ /**
14828
+ *
14829
+ * @type {string}
14830
+ * @memberof ShopImportFailureDTO
14831
+ */
14832
+ reason: string;
14833
+ }
14100
14834
  /**
14101
14835
  *
14102
14836
  * @export
@@ -14122,6 +14856,44 @@ export interface ShopImportOptions {
14122
14856
  */
14123
14857
  gameServerId: string;
14124
14858
  }
14859
+ /**
14860
+ *
14861
+ * @export
14862
+ * @interface ShopImportResultDTO
14863
+ */
14864
+ export interface ShopImportResultDTO {
14865
+ /**
14866
+ *
14867
+ * @type {number}
14868
+ * @memberof ShopImportResultDTO
14869
+ */
14870
+ imported: number;
14871
+ /**
14872
+ *
14873
+ * @type {Array<ShopImportFailureDTO>}
14874
+ * @memberof ShopImportResultDTO
14875
+ */
14876
+ failed: Array<ShopImportFailureDTO>;
14877
+ }
14878
+ /**
14879
+ *
14880
+ * @export
14881
+ * @interface ShopImportResultDTOAPI
14882
+ */
14883
+ export interface ShopImportResultDTOAPI {
14884
+ /**
14885
+ *
14886
+ * @type {ShopImportResultDTO}
14887
+ * @memberof ShopImportResultDTOAPI
14888
+ */
14889
+ data: ShopImportResultDTO;
14890
+ /**
14891
+ *
14892
+ * @type {MetadataOutput}
14893
+ * @memberof ShopImportResultDTOAPI
14894
+ */
14895
+ meta: MetadataOutput;
14896
+ }
14125
14897
  /**
14126
14898
  *
14127
14899
  * @export
@@ -14202,6 +14974,60 @@ export interface ShopKpisDTOAPI {
14202
14974
  */
14203
14975
  meta: MetadataOutput;
14204
14976
  }
14977
+ /**
14978
+ *
14979
+ * @export
14980
+ * @interface ShopListingBulkInputDTO
14981
+ */
14982
+ export interface ShopListingBulkInputDTO {
14983
+ /**
14984
+ *
14985
+ * @type {ShopListingBulkTargetDTO}
14986
+ * @memberof ShopListingBulkInputDTO
14987
+ */
14988
+ target: ShopListingBulkTargetDTO;
14989
+ /**
14990
+ *
14991
+ * @type {string}
14992
+ * @memberof ShopListingBulkInputDTO
14993
+ */
14994
+ action: ShopListingBulkInputDTOActionEnum;
14995
+ }
14996
+
14997
+ export const ShopListingBulkInputDTOActionEnum = {
14998
+ Delete: 'delete',
14999
+ Publish: 'publish',
15000
+ Unpublish: 'unpublish',
15001
+ } as const;
15002
+
15003
+ export type ShopListingBulkInputDTOActionEnum =
15004
+ (typeof ShopListingBulkInputDTOActionEnum)[keyof typeof ShopListingBulkInputDTOActionEnum];
15005
+
15006
+ /**
15007
+ *
15008
+ * @export
15009
+ * @interface ShopListingBulkTargetDTO
15010
+ */
15011
+ export interface ShopListingBulkTargetDTO {
15012
+ /**
15013
+ *
15014
+ * @type {ShopListingSearchInputDTO}
15015
+ * @memberof ShopListingBulkTargetDTO
15016
+ */
15017
+ query?: ShopListingSearchInputDTO;
15018
+ /**
15019
+ *
15020
+ * @type {Array<string>}
15021
+ * @memberof ShopListingBulkTargetDTO
15022
+ */
15023
+ ids?: Array<string>;
15024
+ /**
15025
+ *
15026
+ * @type {Array<string>}
15027
+ * @memberof ShopListingBulkTargetDTO
15028
+ */
15029
+ excludedIds?: Array<string>;
15030
+ }
14205
15031
  /**
14206
15032
  *
14207
15033
  * @export
@@ -15754,6 +16580,49 @@ export interface TakaroEventHookExecuted {
15754
16580
  */
15755
16581
  timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15756
16582
  }
16583
+ /**
16584
+ *
16585
+ * @export
16586
+ * @interface TakaroEventInviteLinkCreated
16587
+ */
16588
+ export interface TakaroEventInviteLinkCreated {
16589
+ /**
16590
+ *
16591
+ * @type {string}
16592
+ * @memberof TakaroEventInviteLinkCreated
16593
+ */
16594
+ inviteLinkId: string;
16595
+ /**
16596
+ *
16597
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
16598
+ * @memberof TakaroEventInviteLinkCreated
16599
+ */
16600
+ expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
16601
+ /**
16602
+ *
16603
+ * @type {number}
16604
+ * @memberof TakaroEventInviteLinkCreated
16605
+ */
16606
+ maxUses: number;
16607
+ /**
16608
+ *
16609
+ * @type {Array<string>}
16610
+ * @memberof TakaroEventInviteLinkCreated
16611
+ */
16612
+ roleIds: Array<string>;
16613
+ /**
16614
+ *
16615
+ * @type {boolean}
16616
+ * @memberof TakaroEventInviteLinkCreated
16617
+ */
16618
+ staffOrigin: boolean;
16619
+ /**
16620
+ *
16621
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
16622
+ * @memberof TakaroEventInviteLinkCreated
16623
+ */
16624
+ timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
16625
+ }
15757
16626
  /**
15758
16627
  *
15759
16628
  * @export
@@ -17043,6 +17912,38 @@ export interface UserAssignmentOutputDTO {
17043
17912
  */
17044
17913
  updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
17045
17914
  }
17915
+ /**
17916
+ *
17917
+ * @export
17918
+ * @interface UserCountOutputDTO
17919
+ */
17920
+ export interface UserCountOutputDTO {
17921
+ /**
17922
+ *
17923
+ * @type {number}
17924
+ * @memberof UserCountOutputDTO
17925
+ */
17926
+ count: number;
17927
+ }
17928
+ /**
17929
+ *
17930
+ * @export
17931
+ * @interface UserCountOutputDTOAPI
17932
+ */
17933
+ export interface UserCountOutputDTOAPI {
17934
+ /**
17935
+ *
17936
+ * @type {UserCountOutputDTO}
17937
+ * @memberof UserCountOutputDTOAPI
17938
+ */
17939
+ data: UserCountOutputDTO;
17940
+ /**
17941
+ *
17942
+ * @type {MetadataOutput}
17943
+ * @memberof UserCountOutputDTOAPI
17944
+ */
17945
+ meta: MetadataOutput;
17946
+ }
17046
17947
  /**
17047
17948
  *
17048
17949
  * @export
@@ -17080,6 +17981,37 @@ export interface UserCreateInputDTO {
17080
17981
  */
17081
17982
  isDashboardUser?: boolean;
17082
17983
  }
17984
+ /**
17985
+ *
17986
+ * @export
17987
+ * @interface UserCreateInviteDTO
17988
+ */
17989
+ export interface UserCreateInviteDTO {
17990
+ /**
17991
+ *
17992
+ * @type {string}
17993
+ * @memberof UserCreateInviteDTO
17994
+ */
17995
+ name: string;
17996
+ /**
17997
+ *
17998
+ * @type {string}
17999
+ * @memberof UserCreateInviteDTO
18000
+ */
18001
+ email: string;
18002
+ /**
18003
+ *
18004
+ * @type {string}
18005
+ * @memberof UserCreateInviteDTO
18006
+ */
18007
+ idpId?: string;
18008
+ /**
18009
+ *
18010
+ * @type {boolean}
18011
+ * @memberof UserCreateInviteDTO
18012
+ */
18013
+ isDashboardUser?: boolean;
18014
+ }
17083
18015
  /**
17084
18016
  *
17085
18017
  * @export
@@ -17183,13 +18115,25 @@ export interface UserOutputDTO {
17183
18115
  * @type {PlayerOutputWithRolesDTO}
17184
18116
  * @memberof UserOutputDTO
17185
18117
  */
17186
- player: PlayerOutputWithRolesDTO;
18118
+ player?: PlayerOutputWithRolesDTO;
17187
18119
  /**
17188
18120
  *
17189
18121
  * @type {boolean}
17190
18122
  * @memberof UserOutputDTO
17191
18123
  */
17192
18124
  isDashboardUser: boolean;
18125
+ /**
18126
+ *
18127
+ * @type {boolean}
18128
+ * @memberof UserOutputDTO
18129
+ */
18130
+ isSupportAccount: boolean;
18131
+ /**
18132
+ *
18133
+ * @type {string}
18134
+ * @memberof UserOutputDTO
18135
+ */
18136
+ inviteLinkId?: string;
17193
18137
  /**
17194
18138
  *
17195
18139
  * @type {string}
@@ -17299,13 +18243,44 @@ export interface UserOutputWithRolesDTO {
17299
18243
  * @type {PlayerOutputWithRolesDTO}
17300
18244
  * @memberof UserOutputWithRolesDTO
17301
18245
  */
17302
- player: PlayerOutputWithRolesDTO;
18246
+ player?: PlayerOutputWithRolesDTO;
17303
18247
  /**
17304
18248
  *
17305
18249
  * @type {boolean}
17306
18250
  * @memberof UserOutputWithRolesDTO
17307
18251
  */
17308
18252
  isDashboardUser: boolean;
18253
+ /**
18254
+ *
18255
+ * @type {boolean}
18256
+ * @memberof UserOutputWithRolesDTO
18257
+ */
18258
+ isSupportAccount: boolean;
18259
+ /**
18260
+ *
18261
+ * @type {string}
18262
+ * @memberof UserOutputWithRolesDTO
18263
+ */
18264
+ inviteLinkId?: string;
18265
+ }
18266
+ /**
18267
+ *
18268
+ * @export
18269
+ * @interface UserOutputWithRolesDTOAPI
18270
+ */
18271
+ export interface UserOutputWithRolesDTOAPI {
18272
+ /**
18273
+ *
18274
+ * @type {UserOutputWithRolesDTO}
18275
+ * @memberof UserOutputWithRolesDTOAPI
18276
+ */
18277
+ data: UserOutputWithRolesDTO;
18278
+ /**
18279
+ *
18280
+ * @type {MetadataOutput}
18281
+ * @memberof UserOutputWithRolesDTOAPI
18282
+ */
18283
+ meta: MetadataOutput;
17309
18284
  }
17310
18285
  /**
17311
18286
  *
@@ -17521,6 +18496,31 @@ export interface UserUpdateDTO {
17521
18496
  */
17522
18497
  isDashboardUser?: boolean;
17523
18498
  }
18499
+ /**
18500
+ *
18501
+ * @export
18502
+ * @interface VariableBulkDeleteInputDTO
18503
+ */
18504
+ export interface VariableBulkDeleteInputDTO {
18505
+ /**
18506
+ *
18507
+ * @type {VariableSearchInputDTO}
18508
+ * @memberof VariableBulkDeleteInputDTO
18509
+ */
18510
+ query?: VariableSearchInputDTO;
18511
+ /**
18512
+ *
18513
+ * @type {Array<string>}
18514
+ * @memberof VariableBulkDeleteInputDTO
18515
+ */
18516
+ ids?: Array<string>;
18517
+ /**
18518
+ *
18519
+ * @type {Array<string>}
18520
+ * @memberof VariableBulkDeleteInputDTO
18521
+ */
18522
+ excludedIds?: Array<string>;
18523
+ }
17524
18524
  /**
17525
18525
  *
17526
18526
  * @export
@@ -17730,6 +18730,12 @@ export interface VariableSearchInputAllowedSearch {
17730
18730
  * @memberof VariableSearchInputAllowedSearch
17731
18731
  */
17732
18732
  key?: Array<string>;
18733
+ /**
18734
+ *
18735
+ * @type {Array<string>}
18736
+ * @memberof VariableSearchInputAllowedSearch
18737
+ */
18738
+ value?: Array<string>;
17733
18739
  }
17734
18740
  /**
17735
18741
  *
@@ -18512,7 +19518,7 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
18512
19518
  };
18513
19519
  },
18514
19520
  /**
18515
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
19521
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
18516
19522
  * @summary Get module health scores
18517
19523
  * @param {string} [startDate]
18518
19524
  * @param {string} [endDate]
@@ -19699,7 +20705,7 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
19699
20705
  },
19700
20706
  /**
19701
20707
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
19702
- * @summary Get top modules by event volume
20708
+ * @summary Get top modules by execution volume
19703
20709
  * @param {string} [startDate]
19704
20710
  * @param {string} [endDate]
19705
20711
  * @param {string} [gameServerId]
@@ -20233,7 +21239,7 @@ export const AnalyticsApiFp = function (configuration?: Configuration) {
20233
21239
  )(axios, localVarOperationServerBasePath || basePath);
20234
21240
  },
20235
21241
  /**
20236
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
21242
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
20237
21243
  * @summary Get module health scores
20238
21244
  * @param {string} [startDate]
20239
21245
  * @param {string} [endDate]
@@ -20985,7 +21991,7 @@ export const AnalyticsApiFp = function (configuration?: Configuration) {
20985
21991
  },
20986
21992
  /**
20987
21993
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
20988
- * @summary Get top modules by event volume
21994
+ * @summary Get top modules by execution volume
20989
21995
  * @param {string} [startDate]
20990
21996
  * @param {string} [endDate]
20991
21997
  * @param {string} [gameServerId]
@@ -21307,7 +22313,7 @@ export const AnalyticsApiFactory = function (configuration?: Configuration, base
21307
22313
  .then((request) => request(axios, basePath));
21308
22314
  },
21309
22315
  /**
21310
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
22316
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
21311
22317
  * @summary Get module health scores
21312
22318
  * @param {string} [startDate]
21313
22319
  * @param {string} [endDate]
@@ -21751,7 +22757,7 @@ export const AnalyticsApiFactory = function (configuration?: Configuration, base
21751
22757
  },
21752
22758
  /**
21753
22759
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
21754
- * @summary Get top modules by event volume
22760
+ * @summary Get top modules by execution volume
21755
22761
  * @param {string} [startDate]
21756
22762
  * @param {string} [endDate]
21757
22763
  * @param {string} [gameServerId]
@@ -22070,7 +23076,7 @@ export class AnalyticsApi extends BaseAPI {
22070
23076
  }
22071
23077
 
22072
23078
  /**
22073
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
23079
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
22074
23080
  * @summary Get module health scores
22075
23081
  * @param {string} [startDate]
22076
23082
  * @param {string} [endDate]
@@ -22556,7 +23562,7 @@ export class AnalyticsApi extends BaseAPI {
22556
23562
 
22557
23563
  /**
22558
23564
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
22559
- * @summary Get top modules by event volume
23565
+ * @summary Get top modules by execution volume
22560
23566
  * @param {string} [startDate]
22561
23567
  * @param {string} [endDate]
22562
23568
  * @param {string} [gameServerId]
@@ -25803,6 +26809,52 @@ export const DomainApiAxiosParamCreator = function (configuration?: Configuratio
25803
26809
  options: localVarRequestOptions,
25804
26810
  };
25805
26811
  },
26812
+ /**
26813
+ * Creates a staff-recovery invite link scoped to the target domain. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — distribute securely. Hardened for recovery use: expiry is forced to 24 hours and maxUses is forced to 1, regardless of request body values. roleIds is passed through as-is; omit it to grant no extra roles (plain member). Attribution is limited: the admin secret is a single shared identity; this event records that staff acted on the domain but cannot name the individual.<br> OperationId: `DomainControllerCreateInviteLink`
26814
+ * @summary Create staff-recovery invite link for a domain
26815
+ * @param {string} id
26816
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
26817
+ * @param {*} [options] Override http request option.
26818
+ * @throws {RequiredError}
26819
+ */
26820
+ domainControllerCreateInviteLink: async (
26821
+ id: string,
26822
+ inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO,
26823
+ options: RawAxiosRequestConfig = {},
26824
+ ): Promise<RequestArgs> => {
26825
+ // verify required parameter 'id' is not null or undefined
26826
+ assertParamExists('domainControllerCreateInviteLink', 'id', id);
26827
+ const localVarPath = `/domain/{id}/invite-link`.replace(`{${'id'}}`, encodeURIComponent(String(id)));
26828
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
26829
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
26830
+ let baseOptions;
26831
+ if (configuration) {
26832
+ baseOptions = configuration.baseOptions;
26833
+ }
26834
+
26835
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
26836
+ const localVarHeaderParameter = {} as any;
26837
+ const localVarQueryParameter = {} as any;
26838
+
26839
+ // authentication adminAuth required
26840
+ await setApiKeyToObject(localVarHeaderParameter, 'x-takaro-admin-token', configuration);
26841
+
26842
+ localVarHeaderParameter['Content-Type'] = 'application/json';
26843
+
26844
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
26845
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
26846
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
26847
+ localVarRequestOptions.data = serializeDataIfNeeded(
26848
+ inviteLinkCreateInputDTO,
26849
+ localVarRequestOptions,
26850
+ configuration,
26851
+ );
26852
+
26853
+ return {
26854
+ url: toPathString(localVarUrlObj),
26855
+ options: localVarRequestOptions,
26856
+ };
26857
+ },
25806
26858
  /**
25807
26859
  * <br> OperationId: `DomainControllerGetOne`
25808
26860
  * @summary Get one
@@ -26075,6 +27127,35 @@ export const DomainApiFp = function (configuration?: Configuration) {
26075
27127
  configuration,
26076
27128
  )(axios, localVarOperationServerBasePath || basePath);
26077
27129
  },
27130
+ /**
27131
+ * Creates a staff-recovery invite link scoped to the target domain. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — distribute securely. Hardened for recovery use: expiry is forced to 24 hours and maxUses is forced to 1, regardless of request body values. roleIds is passed through as-is; omit it to grant no extra roles (plain member). Attribution is limited: the admin secret is a single shared identity; this event records that staff acted on the domain but cannot name the individual.<br> OperationId: `DomainControllerCreateInviteLink`
27132
+ * @summary Create staff-recovery invite link for a domain
27133
+ * @param {string} id
27134
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
27135
+ * @param {*} [options] Override http request option.
27136
+ * @throws {RequiredError}
27137
+ */
27138
+ async domainControllerCreateInviteLink(
27139
+ id: string,
27140
+ inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO,
27141
+ options?: RawAxiosRequestConfig,
27142
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkCreateResultDTOAPI>> {
27143
+ const localVarAxiosArgs = await localVarAxiosParamCreator.domainControllerCreateInviteLink(
27144
+ id,
27145
+ inviteLinkCreateInputDTO,
27146
+ options,
27147
+ );
27148
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
27149
+ const localVarOperationServerBasePath =
27150
+ operationServerMap['DomainApi.domainControllerCreateInviteLink']?.[localVarOperationServerIndex]?.url;
27151
+ return (axios, basePath) =>
27152
+ createRequestFunction(
27153
+ localVarAxiosArgs,
27154
+ globalAxios,
27155
+ BASE_PATH,
27156
+ configuration,
27157
+ )(axios, localVarOperationServerBasePath || basePath);
27158
+ },
26078
27159
  /**
26079
27160
  * <br> OperationId: `DomainControllerGetOne`
26080
27161
  * @summary Get one
@@ -26249,6 +27330,23 @@ export const DomainApiFactory = function (configuration?: Configuration, basePat
26249
27330
  .domainControllerCreate(domainCreateInputDTO, options)
26250
27331
  .then((request) => request(axios, basePath));
26251
27332
  },
27333
+ /**
27334
+ * Creates a staff-recovery invite link scoped to the target domain. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — distribute securely. Hardened for recovery use: expiry is forced to 24 hours and maxUses is forced to 1, regardless of request body values. roleIds is passed through as-is; omit it to grant no extra roles (plain member). Attribution is limited: the admin secret is a single shared identity; this event records that staff acted on the domain but cannot name the individual.<br> OperationId: `DomainControllerCreateInviteLink`
27335
+ * @summary Create staff-recovery invite link for a domain
27336
+ * @param {string} id
27337
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
27338
+ * @param {*} [options] Override http request option.
27339
+ * @throws {RequiredError}
27340
+ */
27341
+ domainControllerCreateInviteLink(
27342
+ id: string,
27343
+ inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO,
27344
+ options?: RawAxiosRequestConfig,
27345
+ ): AxiosPromise<InviteLinkCreateResultDTOAPI> {
27346
+ return localVarFp
27347
+ .domainControllerCreateInviteLink(id, inviteLinkCreateInputDTO, options)
27348
+ .then((request) => request(axios, basePath));
27349
+ },
26252
27350
  /**
26253
27351
  * <br> OperationId: `DomainControllerGetOne`
26254
27352
  * @summary Get one
@@ -26354,6 +27452,25 @@ export class DomainApi extends BaseAPI {
26354
27452
  .then((request) => request(this.axios, this.basePath));
26355
27453
  }
26356
27454
 
27455
+ /**
27456
+ * Creates a staff-recovery invite link scoped to the target domain. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — distribute securely. Hardened for recovery use: expiry is forced to 24 hours and maxUses is forced to 1, regardless of request body values. roleIds is passed through as-is; omit it to grant no extra roles (plain member). Attribution is limited: the admin secret is a single shared identity; this event records that staff acted on the domain but cannot name the individual.<br> OperationId: `DomainControllerCreateInviteLink`
27457
+ * @summary Create staff-recovery invite link for a domain
27458
+ * @param {string} id
27459
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
27460
+ * @param {*} [options] Override http request option.
27461
+ * @throws {RequiredError}
27462
+ * @memberof DomainApi
27463
+ */
27464
+ public domainControllerCreateInviteLink(
27465
+ id: string,
27466
+ inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO,
27467
+ options?: RawAxiosRequestConfig,
27468
+ ) {
27469
+ return DomainApiFp(this.configuration)
27470
+ .domainControllerCreateInviteLink(id, inviteLinkCreateInputDTO, options)
27471
+ .then((request) => request(this.axios, this.basePath));
27472
+ }
27473
+
26357
27474
  /**
26358
27475
  * <br> OperationId: `DomainControllerGetOne`
26359
27476
  * @summary Get one
@@ -27314,16 +28431,14 @@ export const ExternalAuthApiAxiosParamCreator = function (configuration?: Config
27314
28431
  /**
27315
28432
  * <br> OperationId: `ExternalAuthControllerAuthDiscord`
27316
28433
  * @summary Auth discord
27317
- * @param {string} redirect
28434
+ * @param {string} [redirect]
27318
28435
  * @param {*} [options] Override http request option.
27319
28436
  * @throws {RequiredError}
27320
28437
  */
27321
28438
  externalAuthControllerAuthDiscord: async (
27322
- redirect: string,
28439
+ redirect?: string,
27323
28440
  options: RawAxiosRequestConfig = {},
27324
28441
  ): Promise<RequestArgs> => {
27325
- // verify required parameter 'redirect' is not null or undefined
27326
- assertParamExists('externalAuthControllerAuthDiscord', 'redirect', redirect);
27327
28442
  const localVarPath = `/auth/discord`;
27328
28443
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
27329
28444
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -27390,12 +28505,12 @@ export const ExternalAuthApiFp = function (configuration?: Configuration) {
27390
28505
  /**
27391
28506
  * <br> OperationId: `ExternalAuthControllerAuthDiscord`
27392
28507
  * @summary Auth discord
27393
- * @param {string} redirect
28508
+ * @param {string} [redirect]
27394
28509
  * @param {*} [options] Override http request option.
27395
28510
  * @throws {RequiredError}
27396
28511
  */
27397
28512
  async externalAuthControllerAuthDiscord(
27398
- redirect: string,
28513
+ redirect?: string,
27399
28514
  options?: RawAxiosRequestConfig,
27400
28515
  ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
27401
28516
  const localVarAxiosArgs = await localVarAxiosParamCreator.externalAuthControllerAuthDiscord(redirect, options);
@@ -27449,11 +28564,11 @@ export const ExternalAuthApiFactory = function (
27449
28564
  /**
27450
28565
  * <br> OperationId: `ExternalAuthControllerAuthDiscord`
27451
28566
  * @summary Auth discord
27452
- * @param {string} redirect
28567
+ * @param {string} [redirect]
27453
28568
  * @param {*} [options] Override http request option.
27454
28569
  * @throws {RequiredError}
27455
28570
  */
27456
- externalAuthControllerAuthDiscord(redirect: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
28571
+ externalAuthControllerAuthDiscord(redirect?: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
27457
28572
  return localVarFp
27458
28573
  .externalAuthControllerAuthDiscord(redirect, options)
27459
28574
  .then((request) => request(axios, basePath));
@@ -27480,12 +28595,12 @@ export class ExternalAuthApi extends BaseAPI {
27480
28595
  /**
27481
28596
  * <br> OperationId: `ExternalAuthControllerAuthDiscord`
27482
28597
  * @summary Auth discord
27483
- * @param {string} redirect
28598
+ * @param {string} [redirect]
27484
28599
  * @param {*} [options] Override http request option.
27485
28600
  * @throws {RequiredError}
27486
28601
  * @memberof ExternalAuthApi
27487
28602
  */
27488
- public externalAuthControllerAuthDiscord(redirect: string, options?: RawAxiosRequestConfig) {
28603
+ public externalAuthControllerAuthDiscord(redirect?: string, options?: RawAxiosRequestConfig) {
27489
28604
  return ExternalAuthApiFp(this.configuration)
27490
28605
  .externalAuthControllerAuthDiscord(redirect, options)
27491
28606
  .then((request) => request(this.axios, this.basePath));
@@ -31187,6 +32302,488 @@ export class HookApi extends BaseAPI {
31187
32302
  }
31188
32303
  }
31189
32304
 
32305
+ /**
32306
+ * InviteLinkApi - axios parameter creator
32307
+ * @export
32308
+ */
32309
+ export const InviteLinkApiAxiosParamCreator = function (configuration?: Configuration) {
32310
+ return {
32311
+ /**
32312
+ * Creates a new shareable invite link. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — copy the URL and distribute it securely. Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
32313
+ * @summary Create invite link
32314
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
32315
+ * @param {*} [options] Override http request option.
32316
+ * @throws {RequiredError}
32317
+ */
32318
+ inviteLinkControllerCreate: async (
32319
+ inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO,
32320
+ options: RawAxiosRequestConfig = {},
32321
+ ): Promise<RequestArgs> => {
32322
+ const localVarPath = `/invite-link`;
32323
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
32324
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
32325
+ let baseOptions;
32326
+ if (configuration) {
32327
+ baseOptions = configuration.baseOptions;
32328
+ }
32329
+
32330
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
32331
+ const localVarHeaderParameter = {} as any;
32332
+ const localVarQueryParameter = {} as any;
32333
+
32334
+ // authentication domainAuth required
32335
+
32336
+ localVarHeaderParameter['Content-Type'] = 'application/json';
32337
+
32338
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
32339
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
32340
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
32341
+ localVarRequestOptions.data = serializeDataIfNeeded(
32342
+ inviteLinkCreateInputDTO,
32343
+ localVarRequestOptions,
32344
+ configuration,
32345
+ );
32346
+
32347
+ return {
32348
+ url: toPathString(localVarUrlObj),
32349
+ options: localVarRequestOptions,
32350
+ };
32351
+ },
32352
+ /**
32353
+ * <br> OperationId: `InviteLinkControllerPreview`
32354
+ * @summary Preview
32355
+ * @param {string} token
32356
+ * @param {*} [options] Override http request option.
32357
+ * @throws {RequiredError}
32358
+ */
32359
+ inviteLinkControllerPreview: async (token: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
32360
+ // verify required parameter 'token' is not null or undefined
32361
+ assertParamExists('inviteLinkControllerPreview', 'token', token);
32362
+ const localVarPath = `/invite-link/redeem/{token}`.replace(`{${'token'}}`, encodeURIComponent(String(token)));
32363
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
32364
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
32365
+ let baseOptions;
32366
+ if (configuration) {
32367
+ baseOptions = configuration.baseOptions;
32368
+ }
32369
+
32370
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
32371
+ const localVarHeaderParameter = {} as any;
32372
+ const localVarQueryParameter = {} as any;
32373
+
32374
+ // authentication domainAuth required
32375
+
32376
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
32377
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
32378
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
32379
+
32380
+ return {
32381
+ url: toPathString(localVarUrlObj),
32382
+ options: localVarRequestOptions,
32383
+ };
32384
+ },
32385
+ /**
32386
+ * <br> OperationId: `InviteLinkControllerRedeem`
32387
+ * @summary Redeem
32388
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
32389
+ * @param {*} [options] Override http request option.
32390
+ * @throws {RequiredError}
32391
+ */
32392
+ inviteLinkControllerRedeem: async (
32393
+ redeemInputDTO?: RedeemInputDTO,
32394
+ options: RawAxiosRequestConfig = {},
32395
+ ): Promise<RequestArgs> => {
32396
+ const localVarPath = `/invite-link/redeem`;
32397
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
32398
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
32399
+ let baseOptions;
32400
+ if (configuration) {
32401
+ baseOptions = configuration.baseOptions;
32402
+ }
32403
+
32404
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
32405
+ const localVarHeaderParameter = {} as any;
32406
+ const localVarQueryParameter = {} as any;
32407
+
32408
+ // authentication domainAuth required
32409
+
32410
+ localVarHeaderParameter['Content-Type'] = 'application/json';
32411
+
32412
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
32413
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
32414
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
32415
+ localVarRequestOptions.data = serializeDataIfNeeded(redeemInputDTO, localVarRequestOptions, configuration);
32416
+
32417
+ return {
32418
+ url: toPathString(localVarUrlObj),
32419
+ options: localVarRequestOptions,
32420
+ };
32421
+ },
32422
+ /**
32423
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
32424
+ * @summary Revoke
32425
+ * @param {string} id
32426
+ * @param {*} [options] Override http request option.
32427
+ * @throws {RequiredError}
32428
+ */
32429
+ inviteLinkControllerRevoke: async (id: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
32430
+ // verify required parameter 'id' is not null or undefined
32431
+ assertParamExists('inviteLinkControllerRevoke', 'id', id);
32432
+ const localVarPath = `/invite-link/{id}`.replace(`{${'id'}}`, encodeURIComponent(String(id)));
32433
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
32434
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
32435
+ let baseOptions;
32436
+ if (configuration) {
32437
+ baseOptions = configuration.baseOptions;
32438
+ }
32439
+
32440
+ const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
32441
+ const localVarHeaderParameter = {} as any;
32442
+ const localVarQueryParameter = {} as any;
32443
+
32444
+ // authentication domainAuth required
32445
+
32446
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
32447
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
32448
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
32449
+
32450
+ return {
32451
+ url: toPathString(localVarUrlObj),
32452
+ options: localVarRequestOptions,
32453
+ };
32454
+ },
32455
+ /**
32456
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
32457
+ * @summary Search
32458
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
32459
+ * @param {*} [options] Override http request option.
32460
+ * @throws {RequiredError}
32461
+ */
32462
+ inviteLinkControllerSearch: async (
32463
+ inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO,
32464
+ options: RawAxiosRequestConfig = {},
32465
+ ): Promise<RequestArgs> => {
32466
+ const localVarPath = `/invite-link/search`;
32467
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
32468
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
32469
+ let baseOptions;
32470
+ if (configuration) {
32471
+ baseOptions = configuration.baseOptions;
32472
+ }
32473
+
32474
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
32475
+ const localVarHeaderParameter = {} as any;
32476
+ const localVarQueryParameter = {} as any;
32477
+
32478
+ // authentication domainAuth required
32479
+
32480
+ localVarHeaderParameter['Content-Type'] = 'application/json';
32481
+
32482
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
32483
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
32484
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
32485
+ localVarRequestOptions.data = serializeDataIfNeeded(
32486
+ inviteLinkSearchInputDTO,
32487
+ localVarRequestOptions,
32488
+ configuration,
32489
+ );
32490
+
32491
+ return {
32492
+ url: toPathString(localVarUrlObj),
32493
+ options: localVarRequestOptions,
32494
+ };
32495
+ },
32496
+ };
32497
+ };
32498
+
32499
+ /**
32500
+ * InviteLinkApi - functional programming interface
32501
+ * @export
32502
+ */
32503
+ export const InviteLinkApiFp = function (configuration?: Configuration) {
32504
+ const localVarAxiosParamCreator = InviteLinkApiAxiosParamCreator(configuration);
32505
+ return {
32506
+ /**
32507
+ * Creates a new shareable invite link. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — copy the URL and distribute it securely. Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
32508
+ * @summary Create invite link
32509
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
32510
+ * @param {*} [options] Override http request option.
32511
+ * @throws {RequiredError}
32512
+ */
32513
+ async inviteLinkControllerCreate(
32514
+ inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO,
32515
+ options?: RawAxiosRequestConfig,
32516
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkCreateResultDTOAPI>> {
32517
+ const localVarAxiosArgs = await localVarAxiosParamCreator.inviteLinkControllerCreate(
32518
+ inviteLinkCreateInputDTO,
32519
+ options,
32520
+ );
32521
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
32522
+ const localVarOperationServerBasePath =
32523
+ operationServerMap['InviteLinkApi.inviteLinkControllerCreate']?.[localVarOperationServerIndex]?.url;
32524
+ return (axios, basePath) =>
32525
+ createRequestFunction(
32526
+ localVarAxiosArgs,
32527
+ globalAxios,
32528
+ BASE_PATH,
32529
+ configuration,
32530
+ )(axios, localVarOperationServerBasePath || basePath);
32531
+ },
32532
+ /**
32533
+ * <br> OperationId: `InviteLinkControllerPreview`
32534
+ * @summary Preview
32535
+ * @param {string} token
32536
+ * @param {*} [options] Override http request option.
32537
+ * @throws {RequiredError}
32538
+ */
32539
+ async inviteLinkControllerPreview(
32540
+ token: string,
32541
+ options?: RawAxiosRequestConfig,
32542
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkPreviewDTOAPI>> {
32543
+ const localVarAxiosArgs = await localVarAxiosParamCreator.inviteLinkControllerPreview(token, options);
32544
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
32545
+ const localVarOperationServerBasePath =
32546
+ operationServerMap['InviteLinkApi.inviteLinkControllerPreview']?.[localVarOperationServerIndex]?.url;
32547
+ return (axios, basePath) =>
32548
+ createRequestFunction(
32549
+ localVarAxiosArgs,
32550
+ globalAxios,
32551
+ BASE_PATH,
32552
+ configuration,
32553
+ )(axios, localVarOperationServerBasePath || basePath);
32554
+ },
32555
+ /**
32556
+ * <br> OperationId: `InviteLinkControllerRedeem`
32557
+ * @summary Redeem
32558
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
32559
+ * @param {*} [options] Override http request option.
32560
+ * @throws {RequiredError}
32561
+ */
32562
+ async inviteLinkControllerRedeem(
32563
+ redeemInputDTO?: RedeemInputDTO,
32564
+ options?: RawAxiosRequestConfig,
32565
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOutputWithRolesDTOAPI>> {
32566
+ const localVarAxiosArgs = await localVarAxiosParamCreator.inviteLinkControllerRedeem(redeemInputDTO, options);
32567
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
32568
+ const localVarOperationServerBasePath =
32569
+ operationServerMap['InviteLinkApi.inviteLinkControllerRedeem']?.[localVarOperationServerIndex]?.url;
32570
+ return (axios, basePath) =>
32571
+ createRequestFunction(
32572
+ localVarAxiosArgs,
32573
+ globalAxios,
32574
+ BASE_PATH,
32575
+ configuration,
32576
+ )(axios, localVarOperationServerBasePath || basePath);
32577
+ },
32578
+ /**
32579
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
32580
+ * @summary Revoke
32581
+ * @param {string} id
32582
+ * @param {*} [options] Override http request option.
32583
+ * @throws {RequiredError}
32584
+ */
32585
+ async inviteLinkControllerRevoke(
32586
+ id: string,
32587
+ options?: RawAxiosRequestConfig,
32588
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>> {
32589
+ const localVarAxiosArgs = await localVarAxiosParamCreator.inviteLinkControllerRevoke(id, options);
32590
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
32591
+ const localVarOperationServerBasePath =
32592
+ operationServerMap['InviteLinkApi.inviteLinkControllerRevoke']?.[localVarOperationServerIndex]?.url;
32593
+ return (axios, basePath) =>
32594
+ createRequestFunction(
32595
+ localVarAxiosArgs,
32596
+ globalAxios,
32597
+ BASE_PATH,
32598
+ configuration,
32599
+ )(axios, localVarOperationServerBasePath || basePath);
32600
+ },
32601
+ /**
32602
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
32603
+ * @summary Search
32604
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
32605
+ * @param {*} [options] Override http request option.
32606
+ * @throws {RequiredError}
32607
+ */
32608
+ async inviteLinkControllerSearch(
32609
+ inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO,
32610
+ options?: RawAxiosRequestConfig,
32611
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkOutputArrayDTOAPI>> {
32612
+ const localVarAxiosArgs = await localVarAxiosParamCreator.inviteLinkControllerSearch(
32613
+ inviteLinkSearchInputDTO,
32614
+ options,
32615
+ );
32616
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
32617
+ const localVarOperationServerBasePath =
32618
+ operationServerMap['InviteLinkApi.inviteLinkControllerSearch']?.[localVarOperationServerIndex]?.url;
32619
+ return (axios, basePath) =>
32620
+ createRequestFunction(
32621
+ localVarAxiosArgs,
32622
+ globalAxios,
32623
+ BASE_PATH,
32624
+ configuration,
32625
+ )(axios, localVarOperationServerBasePath || basePath);
32626
+ },
32627
+ };
32628
+ };
32629
+
32630
+ /**
32631
+ * InviteLinkApi - factory interface
32632
+ * @export
32633
+ */
32634
+ export const InviteLinkApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
32635
+ const localVarFp = InviteLinkApiFp(configuration);
32636
+ return {
32637
+ /**
32638
+ * Creates a new shareable invite link. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — copy the URL and distribute it securely. Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
32639
+ * @summary Create invite link
32640
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
32641
+ * @param {*} [options] Override http request option.
32642
+ * @throws {RequiredError}
32643
+ */
32644
+ inviteLinkControllerCreate(
32645
+ inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO,
32646
+ options?: RawAxiosRequestConfig,
32647
+ ): AxiosPromise<InviteLinkCreateResultDTOAPI> {
32648
+ return localVarFp
32649
+ .inviteLinkControllerCreate(inviteLinkCreateInputDTO, options)
32650
+ .then((request) => request(axios, basePath));
32651
+ },
32652
+ /**
32653
+ * <br> OperationId: `InviteLinkControllerPreview`
32654
+ * @summary Preview
32655
+ * @param {string} token
32656
+ * @param {*} [options] Override http request option.
32657
+ * @throws {RequiredError}
32658
+ */
32659
+ inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkPreviewDTOAPI> {
32660
+ return localVarFp.inviteLinkControllerPreview(token, options).then((request) => request(axios, basePath));
32661
+ },
32662
+ /**
32663
+ * <br> OperationId: `InviteLinkControllerRedeem`
32664
+ * @summary Redeem
32665
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
32666
+ * @param {*} [options] Override http request option.
32667
+ * @throws {RequiredError}
32668
+ */
32669
+ inviteLinkControllerRedeem(
32670
+ redeemInputDTO?: RedeemInputDTO,
32671
+ options?: RawAxiosRequestConfig,
32672
+ ): AxiosPromise<UserOutputWithRolesDTOAPI> {
32673
+ return localVarFp.inviteLinkControllerRedeem(redeemInputDTO, options).then((request) => request(axios, basePath));
32674
+ },
32675
+ /**
32676
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
32677
+ * @summary Revoke
32678
+ * @param {string} id
32679
+ * @param {*} [options] Override http request option.
32680
+ * @throws {RequiredError}
32681
+ */
32682
+ inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput> {
32683
+ return localVarFp.inviteLinkControllerRevoke(id, options).then((request) => request(axios, basePath));
32684
+ },
32685
+ /**
32686
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
32687
+ * @summary Search
32688
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
32689
+ * @param {*} [options] Override http request option.
32690
+ * @throws {RequiredError}
32691
+ */
32692
+ inviteLinkControllerSearch(
32693
+ inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO,
32694
+ options?: RawAxiosRequestConfig,
32695
+ ): AxiosPromise<InviteLinkOutputArrayDTOAPI> {
32696
+ return localVarFp
32697
+ .inviteLinkControllerSearch(inviteLinkSearchInputDTO, options)
32698
+ .then((request) => request(axios, basePath));
32699
+ },
32700
+ };
32701
+ };
32702
+
32703
+ /**
32704
+ * InviteLinkApi - object-oriented interface
32705
+ * @export
32706
+ * @class InviteLinkApi
32707
+ * @extends {BaseAPI}
32708
+ */
32709
+ export class InviteLinkApi extends BaseAPI {
32710
+ /**
32711
+ * Creates a new shareable invite link. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — copy the URL and distribute it securely. Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
32712
+ * @summary Create invite link
32713
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
32714
+ * @param {*} [options] Override http request option.
32715
+ * @throws {RequiredError}
32716
+ * @memberof InviteLinkApi
32717
+ */
32718
+ public inviteLinkControllerCreate(
32719
+ inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO,
32720
+ options?: RawAxiosRequestConfig,
32721
+ ) {
32722
+ return InviteLinkApiFp(this.configuration)
32723
+ .inviteLinkControllerCreate(inviteLinkCreateInputDTO, options)
32724
+ .then((request) => request(this.axios, this.basePath));
32725
+ }
32726
+
32727
+ /**
32728
+ * <br> OperationId: `InviteLinkControllerPreview`
32729
+ * @summary Preview
32730
+ * @param {string} token
32731
+ * @param {*} [options] Override http request option.
32732
+ * @throws {RequiredError}
32733
+ * @memberof InviteLinkApi
32734
+ */
32735
+ public inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig) {
32736
+ return InviteLinkApiFp(this.configuration)
32737
+ .inviteLinkControllerPreview(token, options)
32738
+ .then((request) => request(this.axios, this.basePath));
32739
+ }
32740
+
32741
+ /**
32742
+ * <br> OperationId: `InviteLinkControllerRedeem`
32743
+ * @summary Redeem
32744
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
32745
+ * @param {*} [options] Override http request option.
32746
+ * @throws {RequiredError}
32747
+ * @memberof InviteLinkApi
32748
+ */
32749
+ public inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig) {
32750
+ return InviteLinkApiFp(this.configuration)
32751
+ .inviteLinkControllerRedeem(redeemInputDTO, options)
32752
+ .then((request) => request(this.axios, this.basePath));
32753
+ }
32754
+
32755
+ /**
32756
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
32757
+ * @summary Revoke
32758
+ * @param {string} id
32759
+ * @param {*} [options] Override http request option.
32760
+ * @throws {RequiredError}
32761
+ * @memberof InviteLinkApi
32762
+ */
32763
+ public inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig) {
32764
+ return InviteLinkApiFp(this.configuration)
32765
+ .inviteLinkControllerRevoke(id, options)
32766
+ .then((request) => request(this.axios, this.basePath));
32767
+ }
32768
+
32769
+ /**
32770
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
32771
+ * @summary Search
32772
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
32773
+ * @param {*} [options] Override http request option.
32774
+ * @throws {RequiredError}
32775
+ * @memberof InviteLinkApi
32776
+ */
32777
+ public inviteLinkControllerSearch(
32778
+ inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO,
32779
+ options?: RawAxiosRequestConfig,
32780
+ ) {
32781
+ return InviteLinkApiFp(this.configuration)
32782
+ .inviteLinkControllerSearch(inviteLinkSearchInputDTO, options)
32783
+ .then((request) => request(this.axios, this.basePath));
32784
+ }
32785
+ }
32786
+
31190
32787
  /**
31191
32788
  * ItemApi - axios parameter creator
31192
32789
  * @export
@@ -31425,6 +33022,34 @@ export const MetaApiAxiosParamCreator = function (configuration?: Configuration)
31425
33022
  options: localVarRequestOptions,
31426
33023
  };
31427
33024
  },
33025
+ /**
33026
+ * <br> OperationId: `MetaGetLiveness`
33027
+ * @summary Get liveness
33028
+ * @param {*} [options] Override http request option.
33029
+ * @throws {RequiredError}
33030
+ */
33031
+ metaGetLiveness: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
33032
+ const localVarPath = `/livez`;
33033
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
33034
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
33035
+ let baseOptions;
33036
+ if (configuration) {
33037
+ baseOptions = configuration.baseOptions;
33038
+ }
33039
+
33040
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
33041
+ const localVarHeaderParameter = {} as any;
33042
+ const localVarQueryParameter = {} as any;
33043
+
33044
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
33045
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
33046
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
33047
+
33048
+ return {
33049
+ url: toPathString(localVarUrlObj),
33050
+ options: localVarRequestOptions,
33051
+ };
33052
+ },
31428
33053
  /**
31429
33054
  * <br> OperationId: `MetaGetMetrics`
31430
33055
  * @summary Get metrics
@@ -31596,6 +33221,27 @@ export const MetaApiFp = function (configuration?: Configuration) {
31596
33221
  configuration,
31597
33222
  )(axios, localVarOperationServerBasePath || basePath);
31598
33223
  },
33224
+ /**
33225
+ * <br> OperationId: `MetaGetLiveness`
33226
+ * @summary Get liveness
33227
+ * @param {*} [options] Override http request option.
33228
+ * @throws {RequiredError}
33229
+ */
33230
+ async metaGetLiveness(
33231
+ options?: RawAxiosRequestConfig,
33232
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HealthOutputDTO>> {
33233
+ const localVarAxiosArgs = await localVarAxiosParamCreator.metaGetLiveness(options);
33234
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
33235
+ const localVarOperationServerBasePath =
33236
+ operationServerMap['MetaApi.metaGetLiveness']?.[localVarOperationServerIndex]?.url;
33237
+ return (axios, basePath) =>
33238
+ createRequestFunction(
33239
+ localVarAxiosArgs,
33240
+ globalAxios,
33241
+ BASE_PATH,
33242
+ configuration,
33243
+ )(axios, localVarOperationServerBasePath || basePath);
33244
+ },
31599
33245
  /**
31600
33246
  * <br> OperationId: `MetaGetMetrics`
31601
33247
  * @summary Get metrics
@@ -31720,6 +33366,15 @@ export const MetaApiFactory = function (configuration?: Configuration, basePath?
31720
33366
  metaGetHealth(options?: RawAxiosRequestConfig): AxiosPromise<HealthOutputDTO> {
31721
33367
  return localVarFp.metaGetHealth(options).then((request) => request(axios, basePath));
31722
33368
  },
33369
+ /**
33370
+ * <br> OperationId: `MetaGetLiveness`
33371
+ * @summary Get liveness
33372
+ * @param {*} [options] Override http request option.
33373
+ * @throws {RequiredError}
33374
+ */
33375
+ metaGetLiveness(options?: RawAxiosRequestConfig): AxiosPromise<HealthOutputDTO> {
33376
+ return localVarFp.metaGetLiveness(options).then((request) => request(axios, basePath));
33377
+ },
31723
33378
  /**
31724
33379
  * <br> OperationId: `MetaGetMetrics`
31725
33380
  * @summary Get metrics
@@ -31788,6 +33443,19 @@ export class MetaApi extends BaseAPI {
31788
33443
  .then((request) => request(this.axios, this.basePath));
31789
33444
  }
31790
33445
 
33446
+ /**
33447
+ * <br> OperationId: `MetaGetLiveness`
33448
+ * @summary Get liveness
33449
+ * @param {*} [options] Override http request option.
33450
+ * @throws {RequiredError}
33451
+ * @memberof MetaApi
33452
+ */
33453
+ public metaGetLiveness(options?: RawAxiosRequestConfig) {
33454
+ return MetaApiFp(this.configuration)
33455
+ .metaGetLiveness(options)
33456
+ .then((request) => request(this.axios, this.basePath));
33457
+ }
33458
+
31791
33459
  /**
31792
33460
  * <br> OperationId: `MetaGetMetrics`
31793
33461
  * @summary Get metrics
@@ -33453,7 +35121,7 @@ export const PlayerApiAxiosParamCreator = function (configuration?: Configuratio
33453
35121
  };
33454
35122
  },
33455
35123
  /**
33456
- * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
35124
+ * 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`. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
33457
35125
  * @summary Bulk assign role
33458
35126
  * @param {string} roleId
33459
35127
  * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
@@ -33498,7 +35166,7 @@ export const PlayerApiAxiosParamCreator = function (configuration?: Configuratio
33498
35166
  };
33499
35167
  },
33500
35168
  /**
33501
- * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
35169
+ * Bulk delete players, targeted by ids or by a search query. Deletes Player records which cascades to POG records. `playerIds` is deprecated; use `ids`. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
33502
35170
  * @summary Bulk delete
33503
35171
  * @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
33504
35172
  * @param {*} [options] Override http request option.
@@ -33882,7 +35550,7 @@ export const PlayerApiFp = function (configuration?: Configuration) {
33882
35550
  )(axios, localVarOperationServerBasePath || basePath);
33883
35551
  },
33884
35552
  /**
33885
- * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
35553
+ * 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`. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
33886
35554
  * @summary Bulk assign role
33887
35555
  * @param {string} roleId
33888
35556
  * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
@@ -33911,7 +35579,7 @@ export const PlayerApiFp = function (configuration?: Configuration) {
33911
35579
  )(axios, localVarOperationServerBasePath || basePath);
33912
35580
  },
33913
35581
  /**
33914
- * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
35582
+ * Bulk delete players, targeted by ids or by a search query. Deletes Player records which cascades to POG records. `playerIds` is deprecated; use `ids`. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
33915
35583
  * @summary Bulk delete
33916
35584
  * @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
33917
35585
  * @param {*} [options] Override http request option.
@@ -34146,7 +35814,7 @@ export const PlayerApiFactory = function (configuration?: Configuration, basePat
34146
35814
  .then((request) => request(axios, basePath));
34147
35815
  },
34148
35816
  /**
34149
- * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
35817
+ * 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`. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
34150
35818
  * @summary Bulk assign role
34151
35819
  * @param {string} roleId
34152
35820
  * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
@@ -34163,7 +35831,7 @@ export const PlayerApiFactory = function (configuration?: Configuration, basePat
34163
35831
  .then((request) => request(axios, basePath));
34164
35832
  },
34165
35833
  /**
34166
- * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
35834
+ * Bulk delete players, targeted by ids or by a search query. Deletes Player records which cascades to POG records. `playerIds` is deprecated; use `ids`. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
34167
35835
  * @summary Bulk delete
34168
35836
  * @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
34169
35837
  * @param {*} [options] Override http request option.
@@ -34343,7 +36011,7 @@ export class PlayerApi extends BaseAPI {
34343
36011
  }
34344
36012
 
34345
36013
  /**
34346
- * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
36014
+ * 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`. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
34347
36015
  * @summary Bulk assign role
34348
36016
  * @param {string} roleId
34349
36017
  * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
@@ -34362,7 +36030,7 @@ export class PlayerApi extends BaseAPI {
34362
36030
  }
34363
36031
 
34364
36032
  /**
34365
- * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
36033
+ * Bulk delete players, targeted by ids or by a search query. Deletes Player records which cascades to POG records. `playerIds` is deprecated; use `ids`. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
34366
36034
  * @summary Bulk delete
34367
36035
  * @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
34368
36036
  * @param {*} [options] Override http request option.
@@ -34513,7 +36181,7 @@ export const PlayerOnGameServerApiAxiosParamCreator = function (configuration?:
34513
36181
  };
34514
36182
  },
34515
36183
  /**
34516
- * Bulk add currency to multiple players on a game server. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkAddCurrency`
36184
+ * 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`. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkAddCurrency`
34517
36185
  * @summary Bulk add currency
34518
36186
  * @param {string} gameServerId
34519
36187
  * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
@@ -34932,7 +36600,7 @@ export const PlayerOnGameServerApiFp = function (configuration?: Configuration)
34932
36600
  )(axios, localVarOperationServerBasePath || basePath);
34933
36601
  },
34934
36602
  /**
34935
- * Bulk add currency to multiple players on a game server. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkAddCurrency`
36603
+ * 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`. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkAddCurrency`
34936
36604
  * @summary Bulk add currency
34937
36605
  * @param {string} gameServerId
34938
36606
  * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
@@ -35219,7 +36887,7 @@ export const PlayerOnGameServerApiFactory = function (
35219
36887
  .then((request) => request(axios, basePath));
35220
36888
  },
35221
36889
  /**
35222
- * Bulk add currency to multiple players on a game server. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkAddCurrency`
36890
+ * 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`. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkAddCurrency`
35223
36891
  * @summary Bulk add currency
35224
36892
  * @param {string} gameServerId
35225
36893
  * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
@@ -35403,7 +37071,7 @@ export class PlayerOnGameServerApi extends BaseAPI {
35403
37071
  }
35404
37072
 
35405
37073
  /**
35406
- * Bulk add currency to multiple players on a game server. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkAddCurrency`
37074
+ * 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`. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkAddCurrency`
35407
37075
  * @summary Bulk add currency
35408
37076
  * @param {string} gameServerId
35409
37077
  * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
@@ -37743,7 +39411,7 @@ export class ShopActionApi extends BaseAPI {
37743
39411
  export const ShopCategoryApiAxiosParamCreator = function (configuration?: Configuration) {
37744
39412
  return {
37745
39413
  /**
37746
- * Bulk assign categories to multiple shop listings Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerBulkAssign`
39414
+ * Bulk assign categories to shop listings, targeted by ids or by a listing search query. `listingIds` is deprecated; use `ids`. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerBulkAssign`
37747
39415
  * @summary Bulk assign
37748
39416
  * @param {ShopCategoryBulkAssignDTO} [shopCategoryBulkAssignDTO] ShopCategoryBulkAssignDTO
37749
39417
  * @param {*} [options] Override http request option.
@@ -38067,7 +39735,7 @@ export const ShopCategoryApiFp = function (configuration?: Configuration) {
38067
39735
  const localVarAxiosParamCreator = ShopCategoryApiAxiosParamCreator(configuration);
38068
39736
  return {
38069
39737
  /**
38070
- * Bulk assign categories to multiple shop listings Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerBulkAssign`
39738
+ * Bulk assign categories to shop listings, targeted by ids or by a listing search query. `listingIds` is deprecated; use `ids`. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerBulkAssign`
38071
39739
  * @summary Bulk assign
38072
39740
  * @param {ShopCategoryBulkAssignDTO} [shopCategoryBulkAssignDTO] ShopCategoryBulkAssignDTO
38073
39741
  * @param {*} [options] Override http request option.
@@ -38288,7 +39956,7 @@ export const ShopCategoryApiFactory = function (
38288
39956
  const localVarFp = ShopCategoryApiFp(configuration);
38289
39957
  return {
38290
39958
  /**
38291
- * Bulk assign categories to multiple shop listings Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerBulkAssign`
39959
+ * Bulk assign categories to shop listings, targeted by ids or by a listing search query. `listingIds` is deprecated; use `ids`. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerBulkAssign`
38292
39960
  * @summary Bulk assign
38293
39961
  * @param {ShopCategoryBulkAssignDTO} [shopCategoryBulkAssignDTO] ShopCategoryBulkAssignDTO
38294
39962
  * @param {*} [options] Override http request option.
@@ -38417,7 +40085,7 @@ export const ShopCategoryApiFactory = function (
38417
40085
  */
38418
40086
  export class ShopCategoryApi extends BaseAPI {
38419
40087
  /**
38420
- * Bulk assign categories to multiple shop listings Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerBulkAssign`
40088
+ * Bulk assign categories to shop listings, targeted by ids or by a listing search query. `listingIds` is deprecated; use `ids`. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerBulkAssign`
38421
40089
  * @summary Bulk assign
38422
40090
  * @param {ShopCategoryBulkAssignDTO} [shopCategoryBulkAssignDTO] ShopCategoryBulkAssignDTO
38423
40091
  * @param {*} [options] Override http request option.
@@ -38552,6 +40220,47 @@ export class ShopCategoryApi extends BaseAPI {
38552
40220
  */
38553
40221
  export const ShopListingApiAxiosParamCreator = function (configuration?: Configuration) {
38554
40222
  return {
40223
+ /**
40224
+ * Bulk delete/publish/unpublish shop listings, targeted by ids or by a search query. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerBulk`
40225
+ * @summary Bulk
40226
+ * @param {ShopListingBulkInputDTO} [shopListingBulkInputDTO] ShopListingBulkInputDTO
40227
+ * @param {*} [options] Override http request option.
40228
+ * @throws {RequiredError}
40229
+ */
40230
+ shopListingControllerBulk: async (
40231
+ shopListingBulkInputDTO?: ShopListingBulkInputDTO,
40232
+ options: RawAxiosRequestConfig = {},
40233
+ ): Promise<RequestArgs> => {
40234
+ const localVarPath = `/shop/listing/bulk`;
40235
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
40236
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
40237
+ let baseOptions;
40238
+ if (configuration) {
40239
+ baseOptions = configuration.baseOptions;
40240
+ }
40241
+
40242
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
40243
+ const localVarHeaderParameter = {} as any;
40244
+ const localVarQueryParameter = {} as any;
40245
+
40246
+ // authentication domainAuth required
40247
+
40248
+ localVarHeaderParameter['Content-Type'] = 'application/json';
40249
+
40250
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
40251
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
40252
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
40253
+ localVarRequestOptions.data = serializeDataIfNeeded(
40254
+ shopListingBulkInputDTO,
40255
+ localVarRequestOptions,
40256
+ configuration,
40257
+ );
40258
+
40259
+ return {
40260
+ url: toPathString(localVarUrlObj),
40261
+ options: localVarRequestOptions,
40262
+ };
40263
+ },
38555
40264
  /**
38556
40265
  * Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerCreate`
38557
40266
  * @summary Create
@@ -38777,6 +40486,32 @@ export const ShopListingApiAxiosParamCreator = function (configuration?: Configu
38777
40486
  export const ShopListingApiFp = function (configuration?: Configuration) {
38778
40487
  const localVarAxiosParamCreator = ShopListingApiAxiosParamCreator(configuration);
38779
40488
  return {
40489
+ /**
40490
+ * Bulk delete/publish/unpublish shop listings, targeted by ids or by a search query. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerBulk`
40491
+ * @summary Bulk
40492
+ * @param {ShopListingBulkInputDTO} [shopListingBulkInputDTO] ShopListingBulkInputDTO
40493
+ * @param {*} [options] Override http request option.
40494
+ * @throws {RequiredError}
40495
+ */
40496
+ async shopListingControllerBulk(
40497
+ shopListingBulkInputDTO?: ShopListingBulkInputDTO,
40498
+ options?: RawAxiosRequestConfig,
40499
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BulkActionResultDTOAPI>> {
40500
+ const localVarAxiosArgs = await localVarAxiosParamCreator.shopListingControllerBulk(
40501
+ shopListingBulkInputDTO,
40502
+ options,
40503
+ );
40504
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
40505
+ const localVarOperationServerBasePath =
40506
+ operationServerMap['ShopListingApi.shopListingControllerBulk']?.[localVarOperationServerIndex]?.url;
40507
+ return (axios, basePath) =>
40508
+ createRequestFunction(
40509
+ localVarAxiosArgs,
40510
+ globalAxios,
40511
+ BASE_PATH,
40512
+ configuration,
40513
+ )(axios, localVarOperationServerBasePath || basePath);
40514
+ },
38780
40515
  /**
38781
40516
  * Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerCreate`
38782
40517
  * @summary Create
@@ -38857,7 +40592,7 @@ export const ShopListingApiFp = function (configuration?: Configuration) {
38857
40592
  */
38858
40593
  async shopListingControllerImportListings(
38859
40594
  options?: RawAxiosRequestConfig,
38860
- ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>> {
40595
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopImportResultDTOAPI>> {
38861
40596
  const localVarAxiosArgs = await localVarAxiosParamCreator.shopListingControllerImportListings(options);
38862
40597
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
38863
40598
  const localVarOperationServerBasePath =
@@ -38939,6 +40674,21 @@ export const ShopListingApiFactory = function (
38939
40674
  ) {
38940
40675
  const localVarFp = ShopListingApiFp(configuration);
38941
40676
  return {
40677
+ /**
40678
+ * Bulk delete/publish/unpublish shop listings, targeted by ids or by a search query. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerBulk`
40679
+ * @summary Bulk
40680
+ * @param {ShopListingBulkInputDTO} [shopListingBulkInputDTO] ShopListingBulkInputDTO
40681
+ * @param {*} [options] Override http request option.
40682
+ * @throws {RequiredError}
40683
+ */
40684
+ shopListingControllerBulk(
40685
+ shopListingBulkInputDTO?: ShopListingBulkInputDTO,
40686
+ options?: RawAxiosRequestConfig,
40687
+ ): AxiosPromise<BulkActionResultDTOAPI> {
40688
+ return localVarFp
40689
+ .shopListingControllerBulk(shopListingBulkInputDTO, options)
40690
+ .then((request) => request(axios, basePath));
40691
+ },
38942
40692
  /**
38943
40693
  * Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerCreate`
38944
40694
  * @summary Create
@@ -38980,7 +40730,7 @@ export const ShopListingApiFactory = function (
38980
40730
  * @param {*} [options] Override http request option.
38981
40731
  * @throws {RequiredError}
38982
40732
  */
38983
- shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<APIOutput> {
40733
+ shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<ShopImportResultDTOAPI> {
38984
40734
  return localVarFp.shopListingControllerImportListings(options).then((request) => request(axios, basePath));
38985
40735
  },
38986
40736
  /**
@@ -39025,6 +40775,20 @@ export const ShopListingApiFactory = function (
39025
40775
  * @extends {BaseAPI}
39026
40776
  */
39027
40777
  export class ShopListingApi extends BaseAPI {
40778
+ /**
40779
+ * Bulk delete/publish/unpublish shop listings, targeted by ids or by a search query. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerBulk`
40780
+ * @summary Bulk
40781
+ * @param {ShopListingBulkInputDTO} [shopListingBulkInputDTO] ShopListingBulkInputDTO
40782
+ * @param {*} [options] Override http request option.
40783
+ * @throws {RequiredError}
40784
+ * @memberof ShopListingApi
40785
+ */
40786
+ public shopListingControllerBulk(shopListingBulkInputDTO?: ShopListingBulkInputDTO, options?: RawAxiosRequestConfig) {
40787
+ return ShopListingApiFp(this.configuration)
40788
+ .shopListingControllerBulk(shopListingBulkInputDTO, options)
40789
+ .then((request) => request(this.axios, this.basePath));
40790
+ }
40791
+
39028
40792
  /**
39029
40793
  * Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerCreate`
39030
40794
  * @summary Create
@@ -40490,6 +42254,36 @@ export const UserApiAxiosParamCreator = function (configuration?: Configuration)
40490
42254
  options: localVarRequestOptions,
40491
42255
  };
40492
42256
  },
42257
+ /**
42258
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
42259
+ * @summary Count billable dashboard users
42260
+ * @param {*} [options] Override http request option.
42261
+ * @throws {RequiredError}
42262
+ */
42263
+ userControllerCountBillableDashboardUsers: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
42264
+ const localVarPath = `/user/count`;
42265
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
42266
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
42267
+ let baseOptions;
42268
+ if (configuration) {
42269
+ baseOptions = configuration.baseOptions;
42270
+ }
42271
+
42272
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
42273
+ const localVarHeaderParameter = {} as any;
42274
+ const localVarQueryParameter = {} as any;
42275
+
42276
+ // authentication domainAuth required
42277
+
42278
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
42279
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
42280
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
42281
+
42282
+ return {
42283
+ url: toPathString(localVarUrlObj),
42284
+ options: localVarRequestOptions,
42285
+ };
42286
+ },
40493
42287
  /**
40494
42288
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
40495
42289
  * @summary Create
@@ -40595,6 +42389,7 @@ export const UserApiAxiosParamCreator = function (configuration?: Configuration)
40595
42389
  * @summary Invite
40596
42390
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
40597
42391
  * @param {*} [options] Override http request option.
42392
+ * @deprecated
40598
42393
  * @throws {RequiredError}
40599
42394
  */
40600
42395
  userControllerInvite: async (
@@ -40996,6 +42791,27 @@ export const UserApiFp = function (configuration?: Configuration) {
40996
42791
  configuration,
40997
42792
  )(axios, localVarOperationServerBasePath || basePath);
40998
42793
  },
42794
+ /**
42795
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
42796
+ * @summary Count billable dashboard users
42797
+ * @param {*} [options] Override http request option.
42798
+ * @throws {RequiredError}
42799
+ */
42800
+ async userControllerCountBillableDashboardUsers(
42801
+ options?: RawAxiosRequestConfig,
42802
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserCountOutputDTOAPI>> {
42803
+ const localVarAxiosArgs = await localVarAxiosParamCreator.userControllerCountBillableDashboardUsers(options);
42804
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
42805
+ const localVarOperationServerBasePath =
42806
+ operationServerMap['UserApi.userControllerCountBillableDashboardUsers']?.[localVarOperationServerIndex]?.url;
42807
+ return (axios, basePath) =>
42808
+ createRequestFunction(
42809
+ localVarAxiosArgs,
42810
+ globalAxios,
42811
+ BASE_PATH,
42812
+ configuration,
42813
+ )(axios, localVarOperationServerBasePath || basePath);
42814
+ },
40999
42815
  /**
41000
42816
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
41001
42817
  * @summary Create
@@ -41068,6 +42884,7 @@ export const UserApiFp = function (configuration?: Configuration) {
41068
42884
  * @summary Invite
41069
42885
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
41070
42886
  * @param {*} [options] Override http request option.
42887
+ * @deprecated
41071
42888
  * @throws {RequiredError}
41072
42889
  */
41073
42890
  async userControllerInvite(
@@ -41325,6 +43142,15 @@ export const UserApiFactory = function (configuration?: Configuration, basePath?
41325
43142
  .userControllerAssignRole(id, roleId, userRoleAssignChangeDTO, options)
41326
43143
  .then((request) => request(axios, basePath));
41327
43144
  },
43145
+ /**
43146
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
43147
+ * @summary Count billable dashboard users
43148
+ * @param {*} [options] Override http request option.
43149
+ * @throws {RequiredError}
43150
+ */
43151
+ userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): AxiosPromise<UserCountOutputDTOAPI> {
43152
+ return localVarFp.userControllerCountBillableDashboardUsers(options).then((request) => request(axios, basePath));
43153
+ },
41328
43154
  /**
41329
43155
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
41330
43156
  * @summary Create
@@ -41362,6 +43188,7 @@ export const UserApiFactory = function (configuration?: Configuration, basePath?
41362
43188
  * @summary Invite
41363
43189
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
41364
43190
  * @param {*} [options] Override http request option.
43191
+ * @deprecated
41365
43192
  * @throws {RequiredError}
41366
43193
  */
41367
43194
  userControllerInvite(
@@ -41503,6 +43330,19 @@ export class UserApi extends BaseAPI {
41503
43330
  .then((request) => request(this.axios, this.basePath));
41504
43331
  }
41505
43332
 
43333
+ /**
43334
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
43335
+ * @summary Count billable dashboard users
43336
+ * @param {*} [options] Override http request option.
43337
+ * @throws {RequiredError}
43338
+ * @memberof UserApi
43339
+ */
43340
+ public userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig) {
43341
+ return UserApiFp(this.configuration)
43342
+ .userControllerCountBillableDashboardUsers(options)
43343
+ .then((request) => request(this.axios, this.basePath));
43344
+ }
43345
+
41506
43346
  /**
41507
43347
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
41508
43348
  * @summary Create
@@ -41549,6 +43389,7 @@ export class UserApi extends BaseAPI {
41549
43389
  * @summary Invite
41550
43390
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
41551
43391
  * @param {*} [options] Override http request option.
43392
+ * @deprecated
41552
43393
  * @throws {RequiredError}
41553
43394
  * @memberof UserApi
41554
43395
  */
@@ -41694,6 +43535,47 @@ export class UserApi extends BaseAPI {
41694
43535
  */
41695
43536
  export const VariableApiAxiosParamCreator = function (configuration?: Configuration) {
41696
43537
  return {
43538
+ /**
43539
+ * Bulk delete variables by ids or by a search query. Reports per-item failures. Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerBulkDelete`
43540
+ * @summary Bulk delete
43541
+ * @param {VariableBulkDeleteInputDTO} [variableBulkDeleteInputDTO] VariableBulkDeleteInputDTO
43542
+ * @param {*} [options] Override http request option.
43543
+ * @throws {RequiredError}
43544
+ */
43545
+ variableControllerBulkDelete: async (
43546
+ variableBulkDeleteInputDTO?: VariableBulkDeleteInputDTO,
43547
+ options: RawAxiosRequestConfig = {},
43548
+ ): Promise<RequestArgs> => {
43549
+ const localVarPath = `/variables`;
43550
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
43551
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
43552
+ let baseOptions;
43553
+ if (configuration) {
43554
+ baseOptions = configuration.baseOptions;
43555
+ }
43556
+
43557
+ const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
43558
+ const localVarHeaderParameter = {} as any;
43559
+ const localVarQueryParameter = {} as any;
43560
+
43561
+ // authentication domainAuth required
43562
+
43563
+ localVarHeaderParameter['Content-Type'] = 'application/json';
43564
+
43565
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
43566
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
43567
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
43568
+ localVarRequestOptions.data = serializeDataIfNeeded(
43569
+ variableBulkDeleteInputDTO,
43570
+ localVarRequestOptions,
43571
+ configuration,
43572
+ );
43573
+
43574
+ return {
43575
+ url: toPathString(localVarUrlObj),
43576
+ options: localVarRequestOptions,
43577
+ };
43578
+ },
41697
43579
  /**
41698
43580
  * Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerCreate`
41699
43581
  * @summary Create
@@ -41889,6 +43771,32 @@ export const VariableApiAxiosParamCreator = function (configuration?: Configurat
41889
43771
  export const VariableApiFp = function (configuration?: Configuration) {
41890
43772
  const localVarAxiosParamCreator = VariableApiAxiosParamCreator(configuration);
41891
43773
  return {
43774
+ /**
43775
+ * Bulk delete variables by ids or by a search query. Reports per-item failures. Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerBulkDelete`
43776
+ * @summary Bulk delete
43777
+ * @param {VariableBulkDeleteInputDTO} [variableBulkDeleteInputDTO] VariableBulkDeleteInputDTO
43778
+ * @param {*} [options] Override http request option.
43779
+ * @throws {RequiredError}
43780
+ */
43781
+ async variableControllerBulkDelete(
43782
+ variableBulkDeleteInputDTO?: VariableBulkDeleteInputDTO,
43783
+ options?: RawAxiosRequestConfig,
43784
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BulkActionResultDTOAPI>> {
43785
+ const localVarAxiosArgs = await localVarAxiosParamCreator.variableControllerBulkDelete(
43786
+ variableBulkDeleteInputDTO,
43787
+ options,
43788
+ );
43789
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
43790
+ const localVarOperationServerBasePath =
43791
+ operationServerMap['VariableApi.variableControllerBulkDelete']?.[localVarOperationServerIndex]?.url;
43792
+ return (axios, basePath) =>
43793
+ createRequestFunction(
43794
+ localVarAxiosArgs,
43795
+ globalAxios,
43796
+ BASE_PATH,
43797
+ configuration,
43798
+ )(axios, localVarOperationServerBasePath || basePath);
43799
+ },
41892
43800
  /**
41893
43801
  * Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerCreate`
41894
43802
  * @summary Create
@@ -42023,6 +43931,21 @@ export const VariableApiFp = function (configuration?: Configuration) {
42023
43931
  export const VariableApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
42024
43932
  const localVarFp = VariableApiFp(configuration);
42025
43933
  return {
43934
+ /**
43935
+ * Bulk delete variables by ids or by a search query. Reports per-item failures. Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerBulkDelete`
43936
+ * @summary Bulk delete
43937
+ * @param {VariableBulkDeleteInputDTO} [variableBulkDeleteInputDTO] VariableBulkDeleteInputDTO
43938
+ * @param {*} [options] Override http request option.
43939
+ * @throws {RequiredError}
43940
+ */
43941
+ variableControllerBulkDelete(
43942
+ variableBulkDeleteInputDTO?: VariableBulkDeleteInputDTO,
43943
+ options?: RawAxiosRequestConfig,
43944
+ ): AxiosPromise<BulkActionResultDTOAPI> {
43945
+ return localVarFp
43946
+ .variableControllerBulkDelete(variableBulkDeleteInputDTO, options)
43947
+ .then((request) => request(axios, basePath));
43948
+ },
42026
43949
  /**
42027
43950
  * Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerCreate`
42028
43951
  * @summary Create
@@ -42100,6 +44023,23 @@ export const VariableApiFactory = function (configuration?: Configuration, baseP
42100
44023
  * @extends {BaseAPI}
42101
44024
  */
42102
44025
  export class VariableApi extends BaseAPI {
44026
+ /**
44027
+ * Bulk delete variables by ids or by a search query. Reports per-item failures. Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerBulkDelete`
44028
+ * @summary Bulk delete
44029
+ * @param {VariableBulkDeleteInputDTO} [variableBulkDeleteInputDTO] VariableBulkDeleteInputDTO
44030
+ * @param {*} [options] Override http request option.
44031
+ * @throws {RequiredError}
44032
+ * @memberof VariableApi
44033
+ */
44034
+ public variableControllerBulkDelete(
44035
+ variableBulkDeleteInputDTO?: VariableBulkDeleteInputDTO,
44036
+ options?: RawAxiosRequestConfig,
44037
+ ) {
44038
+ return VariableApiFp(this.configuration)
44039
+ .variableControllerBulkDelete(variableBulkDeleteInputDTO, options)
44040
+ .then((request) => request(this.axios, this.basePath));
44041
+ }
44042
+
42103
44043
  /**
42104
44044
  * Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerCreate`
42105
44045
  * @summary Create