@takaro/apiclient 0.0.0-dev.b2f0324 → 0.0.0-dev.b41dc13

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.
@@ -6905,6 +6905,475 @@ export interface InviteOutputDTO {
6905
6905
  */
6906
6906
  devServer: string;
6907
6907
  }
6908
+ /**
6909
+ *
6910
+ * @export
6911
+ * @interface InviteLinkCreateInputDTO
6912
+ */
6913
+ export interface InviteLinkCreateInputDTO {
6914
+ /**
6915
+ *
6916
+ * @type {Array<string>}
6917
+ * @memberof InviteLinkCreateInputDTO
6918
+ */
6919
+ roleIds?: Array<string>;
6920
+ /**
6921
+ *
6922
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6923
+ * @memberof InviteLinkCreateInputDTO
6924
+ */
6925
+ expiresAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6926
+ /**
6927
+ *
6928
+ * @type {number}
6929
+ * @memberof InviteLinkCreateInputDTO
6930
+ */
6931
+ maxUses?: number;
6932
+ }
6933
+ /**
6934
+ *
6935
+ * @export
6936
+ * @interface InviteLinkCreateResultDTO
6937
+ */
6938
+ export interface InviteLinkCreateResultDTO {
6939
+ /**
6940
+ *
6941
+ * @type {string}
6942
+ * @memberof InviteLinkCreateResultDTO
6943
+ */
6944
+ inviteUrl: string;
6945
+ /**
6946
+ *
6947
+ * @type {string}
6948
+ * @memberof InviteLinkCreateResultDTO
6949
+ */
6950
+ token: string;
6951
+ /**
6952
+ *
6953
+ * @type {string}
6954
+ * @memberof InviteLinkCreateResultDTO
6955
+ */
6956
+ id: string;
6957
+ /**
6958
+ *
6959
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6960
+ * @memberof InviteLinkCreateResultDTO
6961
+ */
6962
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6963
+ /**
6964
+ *
6965
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6966
+ * @memberof InviteLinkCreateResultDTO
6967
+ */
6968
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6969
+ /**
6970
+ *
6971
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6972
+ * @memberof InviteLinkCreateResultDTO
6973
+ */
6974
+ expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6975
+ /**
6976
+ *
6977
+ * @type {number}
6978
+ * @memberof InviteLinkCreateResultDTO
6979
+ */
6980
+ maxUses?: number;
6981
+ /**
6982
+ *
6983
+ * @type {number}
6984
+ * @memberof InviteLinkCreateResultDTO
6985
+ */
6986
+ uses: number;
6987
+ /**
6988
+ *
6989
+ * @type {number}
6990
+ * @memberof InviteLinkCreateResultDTO
6991
+ */
6992
+ remaining?: number;
6993
+ /**
6994
+ *
6995
+ * @type {string}
6996
+ * @memberof InviteLinkCreateResultDTO
6997
+ */
6998
+ status: InviteLinkCreateResultDTOStatusEnum;
6999
+ /**
7000
+ *
7001
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
7002
+ * @memberof InviteLinkCreateResultDTO
7003
+ */
7004
+ revokedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
7005
+ /**
7006
+ *
7007
+ * @type {string}
7008
+ * @memberof InviteLinkCreateResultDTO
7009
+ */
7010
+ createdBy?: string;
7011
+ /**
7012
+ *
7013
+ * @type {Array<InviteLinkRoleDTO>}
7014
+ * @memberof InviteLinkCreateResultDTO
7015
+ */
7016
+ roles: Array<InviteLinkRoleDTO>;
7017
+ }
7018
+
7019
+ export const InviteLinkCreateResultDTOStatusEnum = {
7020
+ Active: 'ACTIVE',
7021
+ Revoked: 'REVOKED',
7022
+ Expired: 'EXPIRED',
7023
+ Depleted: 'DEPLETED',
7024
+ } as const;
7025
+
7026
+ export type InviteLinkCreateResultDTOStatusEnum =
7027
+ (typeof InviteLinkCreateResultDTOStatusEnum)[keyof typeof InviteLinkCreateResultDTOStatusEnum];
7028
+
7029
+ /**
7030
+ *
7031
+ * @export
7032
+ * @interface InviteLinkCreateResultDTOAPI
7033
+ */
7034
+ export interface InviteLinkCreateResultDTOAPI {
7035
+ /**
7036
+ *
7037
+ * @type {InviteLinkCreateResultDTO}
7038
+ * @memberof InviteLinkCreateResultDTOAPI
7039
+ */
7040
+ data: InviteLinkCreateResultDTO;
7041
+ /**
7042
+ *
7043
+ * @type {MetadataOutput}
7044
+ * @memberof InviteLinkCreateResultDTOAPI
7045
+ */
7046
+ meta: MetadataOutput;
7047
+ }
7048
+ /**
7049
+ *
7050
+ * @export
7051
+ * @interface InviteLinkOutputDTO
7052
+ */
7053
+ export interface InviteLinkOutputDTO {
7054
+ /**
7055
+ *
7056
+ * @type {string}
7057
+ * @memberof InviteLinkOutputDTO
7058
+ */
7059
+ id: string;
7060
+ /**
7061
+ *
7062
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
7063
+ * @memberof InviteLinkOutputDTO
7064
+ */
7065
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
7066
+ /**
7067
+ *
7068
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
7069
+ * @memberof InviteLinkOutputDTO
7070
+ */
7071
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
7072
+ /**
7073
+ *
7074
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
7075
+ * @memberof InviteLinkOutputDTO
7076
+ */
7077
+ expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
7078
+ /**
7079
+ *
7080
+ * @type {number}
7081
+ * @memberof InviteLinkOutputDTO
7082
+ */
7083
+ maxUses?: number;
7084
+ /**
7085
+ *
7086
+ * @type {number}
7087
+ * @memberof InviteLinkOutputDTO
7088
+ */
7089
+ uses: number;
7090
+ /**
7091
+ *
7092
+ * @type {number}
7093
+ * @memberof InviteLinkOutputDTO
7094
+ */
7095
+ remaining?: number;
7096
+ /**
7097
+ *
7098
+ * @type {string}
7099
+ * @memberof InviteLinkOutputDTO
7100
+ */
7101
+ status: InviteLinkOutputDTOStatusEnum;
7102
+ /**
7103
+ *
7104
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
7105
+ * @memberof InviteLinkOutputDTO
7106
+ */
7107
+ revokedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
7108
+ /**
7109
+ *
7110
+ * @type {string}
7111
+ * @memberof InviteLinkOutputDTO
7112
+ */
7113
+ createdBy?: string;
7114
+ /**
7115
+ *
7116
+ * @type {Array<InviteLinkRoleDTO>}
7117
+ * @memberof InviteLinkOutputDTO
7118
+ */
7119
+ roles: Array<InviteLinkRoleDTO>;
7120
+ }
7121
+
7122
+ export const InviteLinkOutputDTOStatusEnum = {
7123
+ Active: 'ACTIVE',
7124
+ Revoked: 'REVOKED',
7125
+ Expired: 'EXPIRED',
7126
+ Depleted: 'DEPLETED',
7127
+ } as const;
7128
+
7129
+ export type InviteLinkOutputDTOStatusEnum =
7130
+ (typeof InviteLinkOutputDTOStatusEnum)[keyof typeof InviteLinkOutputDTOStatusEnum];
7131
+
7132
+ /**
7133
+ *
7134
+ * @export
7135
+ * @interface InviteLinkOutputDTOAPI
7136
+ */
7137
+ export interface InviteLinkOutputDTOAPI {
7138
+ /**
7139
+ *
7140
+ * @type {InviteLinkOutputDTO}
7141
+ * @memberof InviteLinkOutputDTOAPI
7142
+ */
7143
+ data: InviteLinkOutputDTO;
7144
+ /**
7145
+ *
7146
+ * @type {MetadataOutput}
7147
+ * @memberof InviteLinkOutputDTOAPI
7148
+ */
7149
+ meta: MetadataOutput;
7150
+ }
7151
+ /**
7152
+ *
7153
+ * @export
7154
+ * @interface InviteLinkOutputArrayDTOAPI
7155
+ */
7156
+ export interface InviteLinkOutputArrayDTOAPI {
7157
+ /**
7158
+ *
7159
+ * @type {Array<InviteLinkOutputDTO>}
7160
+ * @memberof InviteLinkOutputArrayDTOAPI
7161
+ */
7162
+ data: Array<InviteLinkOutputDTO>;
7163
+ /**
7164
+ *
7165
+ * @type {MetadataOutput}
7166
+ * @memberof InviteLinkOutputArrayDTOAPI
7167
+ */
7168
+ meta: MetadataOutput;
7169
+ }
7170
+ /**
7171
+ *
7172
+ * @export
7173
+ * @interface InviteLinkPreviewDTO
7174
+ */
7175
+ export interface InviteLinkPreviewDTO {
7176
+ /**
7177
+ *
7178
+ * @type {InviteLinkPreviewDomainDTO}
7179
+ * @memberof InviteLinkPreviewDTO
7180
+ */
7181
+ domain: InviteLinkPreviewDomainDTO;
7182
+ /**
7183
+ *
7184
+ * @type {Array<InviteLinkPreviewRoleDTO>}
7185
+ * @memberof InviteLinkPreviewDTO
7186
+ */
7187
+ roles: Array<InviteLinkPreviewRoleDTO>;
7188
+ /**
7189
+ *
7190
+ * @type {string}
7191
+ * @memberof InviteLinkPreviewDTO
7192
+ */
7193
+ status: InviteLinkPreviewDTOStatusEnum;
7194
+ /**
7195
+ *
7196
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
7197
+ * @memberof InviteLinkPreviewDTO
7198
+ */
7199
+ expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
7200
+ /**
7201
+ *
7202
+ * @type {number}
7203
+ * @memberof InviteLinkPreviewDTO
7204
+ */
7205
+ remaining?: number;
7206
+ }
7207
+
7208
+ export const InviteLinkPreviewDTOStatusEnum = {
7209
+ Active: 'ACTIVE',
7210
+ Revoked: 'REVOKED',
7211
+ Expired: 'EXPIRED',
7212
+ Depleted: 'DEPLETED',
7213
+ } as const;
7214
+
7215
+ export type InviteLinkPreviewDTOStatusEnum =
7216
+ (typeof InviteLinkPreviewDTOStatusEnum)[keyof typeof InviteLinkPreviewDTOStatusEnum];
7217
+
7218
+ /**
7219
+ *
7220
+ * @export
7221
+ * @interface InviteLinkPreviewDTOAPI
7222
+ */
7223
+ export interface InviteLinkPreviewDTOAPI {
7224
+ /**
7225
+ *
7226
+ * @type {InviteLinkPreviewDTO}
7227
+ * @memberof InviteLinkPreviewDTOAPI
7228
+ */
7229
+ data: InviteLinkPreviewDTO;
7230
+ /**
7231
+ *
7232
+ * @type {MetadataOutput}
7233
+ * @memberof InviteLinkPreviewDTOAPI
7234
+ */
7235
+ meta: MetadataOutput;
7236
+ }
7237
+ /**
7238
+ *
7239
+ * @export
7240
+ * @interface InviteLinkPreviewDomainDTO
7241
+ */
7242
+ export interface InviteLinkPreviewDomainDTO {
7243
+ /**
7244
+ *
7245
+ * @type {string}
7246
+ * @memberof InviteLinkPreviewDomainDTO
7247
+ */
7248
+ id: string;
7249
+ /**
7250
+ *
7251
+ * @type {string}
7252
+ * @memberof InviteLinkPreviewDomainDTO
7253
+ */
7254
+ name: string;
7255
+ }
7256
+ /**
7257
+ *
7258
+ * @export
7259
+ * @interface InviteLinkPreviewRoleDTO
7260
+ */
7261
+ export interface InviteLinkPreviewRoleDTO {
7262
+ /**
7263
+ *
7264
+ * @type {string}
7265
+ * @memberof InviteLinkPreviewRoleDTO
7266
+ */
7267
+ id: string;
7268
+ /**
7269
+ *
7270
+ * @type {string}
7271
+ * @memberof InviteLinkPreviewRoleDTO
7272
+ */
7273
+ name: string;
7274
+ }
7275
+ /**
7276
+ *
7277
+ * @export
7278
+ * @interface InviteLinkRoleDTO
7279
+ */
7280
+ export interface InviteLinkRoleDTO {
7281
+ /**
7282
+ *
7283
+ * @type {string}
7284
+ * @memberof InviteLinkRoleDTO
7285
+ */
7286
+ roleId: string;
7287
+ /**
7288
+ *
7289
+ * @type {string}
7290
+ * @memberof InviteLinkRoleDTO
7291
+ */
7292
+ name: string;
7293
+ }
7294
+ /**
7295
+ *
7296
+ * @export
7297
+ * @interface InviteLinkSearchInputDTO
7298
+ */
7299
+ export interface InviteLinkSearchInputDTO {
7300
+ /**
7301
+ *
7302
+ * @type {string}
7303
+ * @memberof InviteLinkSearchInputDTO
7304
+ */
7305
+ sortBy?: string;
7306
+ /**
7307
+ *
7308
+ * @type {any}
7309
+ * @memberof InviteLinkSearchInputDTO
7310
+ */
7311
+ filters?: any;
7312
+ /**
7313
+ *
7314
+ * @type {any}
7315
+ * @memberof InviteLinkSearchInputDTO
7316
+ */
7317
+ search?: any;
7318
+ /**
7319
+ *
7320
+ * @type {any}
7321
+ * @memberof InviteLinkSearchInputDTO
7322
+ */
7323
+ greaterThan?: any;
7324
+ /**
7325
+ *
7326
+ * @type {any}
7327
+ * @memberof InviteLinkSearchInputDTO
7328
+ */
7329
+ lessThan?: any;
7330
+ /**
7331
+ *
7332
+ * @type {number}
7333
+ * @memberof InviteLinkSearchInputDTO
7334
+ */
7335
+ page?: number;
7336
+ /**
7337
+ *
7338
+ * @type {number}
7339
+ * @memberof InviteLinkSearchInputDTO
7340
+ */
7341
+ limit?: number;
7342
+ /**
7343
+ *
7344
+ * @type {string}
7345
+ * @memberof InviteLinkSearchInputDTO
7346
+ */
7347
+ sortDirection?: InviteLinkSearchInputDTOSortDirectionEnum;
7348
+ /**
7349
+ *
7350
+ * @type {Array<string>}
7351
+ * @memberof InviteLinkSearchInputDTO
7352
+ */
7353
+ extend?: Array<string>;
7354
+ }
7355
+
7356
+ export const InviteLinkSearchInputDTOSortDirectionEnum = {
7357
+ Asc: 'asc',
7358
+ Desc: 'desc',
7359
+ } as const;
7360
+
7361
+ export type InviteLinkSearchInputDTOSortDirectionEnum =
7362
+ (typeof InviteLinkSearchInputDTOSortDirectionEnum)[keyof typeof InviteLinkSearchInputDTOSortDirectionEnum];
7363
+
7364
+ /**
7365
+ *
7366
+ * @export
7367
+ * @interface RedeemInputDTO
7368
+ */
7369
+ export interface RedeemInputDTO {
7370
+ /**
7371
+ *
7372
+ * @type {string}
7373
+ * @memberof RedeemInputDTO
7374
+ */
7375
+ token: string;
7376
+ }
6908
7377
  /**
6909
7378
  *
6910
7379
  * @export
@@ -14097,6 +14566,25 @@ export interface ShopDeadStockItemDTO {
14097
14566
  */
14098
14567
  daysSinceLastSale?: number;
14099
14568
  }
14569
+ /**
14570
+ *
14571
+ * @export
14572
+ * @interface ShopImportFailureDTO
14573
+ */
14574
+ export interface ShopImportFailureDTO {
14575
+ /**
14576
+ *
14577
+ * @type {string}
14578
+ * @memberof ShopImportFailureDTO
14579
+ */
14580
+ name: string;
14581
+ /**
14582
+ *
14583
+ * @type {string}
14584
+ * @memberof ShopImportFailureDTO
14585
+ */
14586
+ reason: string;
14587
+ }
14100
14588
  /**
14101
14589
  *
14102
14590
  * @export
@@ -14122,6 +14610,44 @@ export interface ShopImportOptions {
14122
14610
  */
14123
14611
  gameServerId: string;
14124
14612
  }
14613
+ /**
14614
+ *
14615
+ * @export
14616
+ * @interface ShopImportResultDTO
14617
+ */
14618
+ export interface ShopImportResultDTO {
14619
+ /**
14620
+ *
14621
+ * @type {number}
14622
+ * @memberof ShopImportResultDTO
14623
+ */
14624
+ imported: number;
14625
+ /**
14626
+ *
14627
+ * @type {Array<ShopImportFailureDTO>}
14628
+ * @memberof ShopImportResultDTO
14629
+ */
14630
+ failed: Array<ShopImportFailureDTO>;
14631
+ }
14632
+ /**
14633
+ *
14634
+ * @export
14635
+ * @interface ShopImportResultDTOAPI
14636
+ */
14637
+ export interface ShopImportResultDTOAPI {
14638
+ /**
14639
+ *
14640
+ * @type {ShopImportResultDTO}
14641
+ * @memberof ShopImportResultDTOAPI
14642
+ */
14643
+ data: ShopImportResultDTO;
14644
+ /**
14645
+ *
14646
+ * @type {MetadataOutput}
14647
+ * @memberof ShopImportResultDTOAPI
14648
+ */
14649
+ meta: MetadataOutput;
14650
+ }
14125
14651
  /**
14126
14652
  *
14127
14653
  * @export
@@ -17043,6 +17569,38 @@ export interface UserAssignmentOutputDTO {
17043
17569
  */
17044
17570
  updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
17045
17571
  }
17572
+ /**
17573
+ *
17574
+ * @export
17575
+ * @interface UserCountOutputDTO
17576
+ */
17577
+ export interface UserCountOutputDTO {
17578
+ /**
17579
+ *
17580
+ * @type {number}
17581
+ * @memberof UserCountOutputDTO
17582
+ */
17583
+ count: number;
17584
+ }
17585
+ /**
17586
+ *
17587
+ * @export
17588
+ * @interface UserCountOutputDTOAPI
17589
+ */
17590
+ export interface UserCountOutputDTOAPI {
17591
+ /**
17592
+ *
17593
+ * @type {UserCountOutputDTO}
17594
+ * @memberof UserCountOutputDTOAPI
17595
+ */
17596
+ data: UserCountOutputDTO;
17597
+ /**
17598
+ *
17599
+ * @type {MetadataOutput}
17600
+ * @memberof UserCountOutputDTOAPI
17601
+ */
17602
+ meta: MetadataOutput;
17603
+ }
17046
17604
  /**
17047
17605
  *
17048
17606
  * @export
@@ -17190,6 +17748,12 @@ export interface UserOutputDTO {
17190
17748
  * @memberof UserOutputDTO
17191
17749
  */
17192
17750
  isDashboardUser: boolean;
17751
+ /**
17752
+ *
17753
+ * @type {boolean}
17754
+ * @memberof UserOutputDTO
17755
+ */
17756
+ isSupportAccount: boolean;
17193
17757
  /**
17194
17758
  *
17195
17759
  * @type {string}
@@ -17208,6 +17772,12 @@ export interface UserOutputDTO {
17208
17772
  * @memberof UserOutputDTO
17209
17773
  */
17210
17774
  updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
17775
+ /**
17776
+ *
17777
+ * @type {string}
17778
+ * @memberof UserOutputDTO
17779
+ */
17780
+ inviteLinkId?: string;
17211
17781
  }
17212
17782
  /**
17213
17783
  *
@@ -17306,6 +17876,37 @@ export interface UserOutputWithRolesDTO {
17306
17876
  * @memberof UserOutputWithRolesDTO
17307
17877
  */
17308
17878
  isDashboardUser: boolean;
17879
+ /**
17880
+ *
17881
+ * @type {boolean}
17882
+ * @memberof UserOutputWithRolesDTO
17883
+ */
17884
+ isSupportAccount: boolean;
17885
+ /**
17886
+ *
17887
+ * @type {string}
17888
+ * @memberof UserOutputWithRolesDTO
17889
+ */
17890
+ inviteLinkId?: string;
17891
+ }
17892
+ /**
17893
+ *
17894
+ * @export
17895
+ * @interface UserOutputWithRolesDTOAPI
17896
+ */
17897
+ export interface UserOutputWithRolesDTOAPI {
17898
+ /**
17899
+ *
17900
+ * @type {UserOutputWithRolesDTO}
17901
+ * @memberof UserOutputWithRolesDTOAPI
17902
+ */
17903
+ data: UserOutputWithRolesDTO;
17904
+ /**
17905
+ *
17906
+ * @type {MetadataOutput}
17907
+ * @memberof UserOutputWithRolesDTOAPI
17908
+ */
17909
+ meta: MetadataOutput;
17309
17910
  }
17310
17911
  /**
17311
17912
  *
@@ -18512,7 +19113,7 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
18512
19113
  };
18513
19114
  },
18514
19115
  /**
18515
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
19116
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
18516
19117
  * @summary Get module health scores
18517
19118
  * @param {string} [startDate]
18518
19119
  * @param {string} [endDate]
@@ -19699,7 +20300,7 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
19699
20300
  },
19700
20301
  /**
19701
20302
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
19702
- * @summary Get top modules by event volume
20303
+ * @summary Get top modules by execution volume
19703
20304
  * @param {string} [startDate]
19704
20305
  * @param {string} [endDate]
19705
20306
  * @param {string} [gameServerId]
@@ -20233,7 +20834,7 @@ export const AnalyticsApiFp = function (configuration?: Configuration) {
20233
20834
  )(axios, localVarOperationServerBasePath || basePath);
20234
20835
  },
20235
20836
  /**
20236
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
20837
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
20237
20838
  * @summary Get module health scores
20238
20839
  * @param {string} [startDate]
20239
20840
  * @param {string} [endDate]
@@ -20985,7 +21586,7 @@ export const AnalyticsApiFp = function (configuration?: Configuration) {
20985
21586
  },
20986
21587
  /**
20987
21588
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
20988
- * @summary Get top modules by event volume
21589
+ * @summary Get top modules by execution volume
20989
21590
  * @param {string} [startDate]
20990
21591
  * @param {string} [endDate]
20991
21592
  * @param {string} [gameServerId]
@@ -21307,7 +21908,7 @@ export const AnalyticsApiFactory = function (configuration?: Configuration, base
21307
21908
  .then((request) => request(axios, basePath));
21308
21909
  },
21309
21910
  /**
21310
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
21911
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
21311
21912
  * @summary Get module health scores
21312
21913
  * @param {string} [startDate]
21313
21914
  * @param {string} [endDate]
@@ -21751,7 +22352,7 @@ export const AnalyticsApiFactory = function (configuration?: Configuration, base
21751
22352
  },
21752
22353
  /**
21753
22354
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
21754
- * @summary Get top modules by event volume
22355
+ * @summary Get top modules by execution volume
21755
22356
  * @param {string} [startDate]
21756
22357
  * @param {string} [endDate]
21757
22358
  * @param {string} [gameServerId]
@@ -22070,7 +22671,7 @@ export class AnalyticsApi extends BaseAPI {
22070
22671
  }
22071
22672
 
22072
22673
  /**
22073
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
22674
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
22074
22675
  * @summary Get module health scores
22075
22676
  * @param {string} [startDate]
22076
22677
  * @param {string} [endDate]
@@ -22556,7 +23157,7 @@ export class AnalyticsApi extends BaseAPI {
22556
23157
 
22557
23158
  /**
22558
23159
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
22559
- * @summary Get top modules by event volume
23160
+ * @summary Get top modules by execution volume
22560
23161
  * @param {string} [startDate]
22561
23162
  * @param {string} [endDate]
22562
23163
  * @param {string} [gameServerId]
@@ -38857,7 +39458,7 @@ export const ShopListingApiFp = function (configuration?: Configuration) {
38857
39458
  */
38858
39459
  async shopListingControllerImportListings(
38859
39460
  options?: RawAxiosRequestConfig,
38860
- ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>> {
39461
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopImportResultDTOAPI>> {
38861
39462
  const localVarAxiosArgs = await localVarAxiosParamCreator.shopListingControllerImportListings(options);
38862
39463
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
38863
39464
  const localVarOperationServerBasePath =
@@ -38980,7 +39581,7 @@ export const ShopListingApiFactory = function (
38980
39581
  * @param {*} [options] Override http request option.
38981
39582
  * @throws {RequiredError}
38982
39583
  */
38983
- shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<APIOutput> {
39584
+ shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<ShopImportResultDTOAPI> {
38984
39585
  return localVarFp.shopListingControllerImportListings(options).then((request) => request(axios, basePath));
38985
39586
  },
38986
39587
  /**
@@ -40490,6 +41091,33 @@ export const UserApiAxiosParamCreator = function (configuration?: Configuration)
40490
41091
  options: localVarRequestOptions,
40491
41092
  };
40492
41093
  },
41094
+ /**
41095
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
41096
+ * @summary Count billable dashboard users
41097
+ * @param {*} [options] Override http request option.
41098
+ * @throws {RequiredError}
41099
+ */
41100
+ userControllerCountBillableDashboardUsers: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
41101
+ const localVarPath = `/user/count`;
41102
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
41103
+ let baseOptions;
41104
+ if (configuration) {
41105
+ baseOptions = configuration.baseOptions;
41106
+ }
41107
+
41108
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
41109
+ const localVarHeaderParameter = {} as any;
41110
+ const localVarQueryParameter = {} as any;
41111
+
41112
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
41113
+ const headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
41114
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
41115
+
41116
+ return {
41117
+ url: toPathString(localVarUrlObj),
41118
+ options: localVarRequestOptions,
41119
+ };
41120
+ },
40493
41121
  /**
40494
41122
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
40495
41123
  * @summary Create
@@ -40996,6 +41624,27 @@ export const UserApiFp = function (configuration?: Configuration) {
40996
41624
  configuration,
40997
41625
  )(axios, localVarOperationServerBasePath || basePath);
40998
41626
  },
41627
+ /**
41628
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
41629
+ * @summary Count billable dashboard users
41630
+ * @param {*} [options] Override http request option.
41631
+ * @throws {RequiredError}
41632
+ */
41633
+ async userControllerCountBillableDashboardUsers(
41634
+ options?: RawAxiosRequestConfig,
41635
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserCountOutputDTOAPI>> {
41636
+ const localVarAxiosArgs = await localVarAxiosParamCreator.userControllerCountBillableDashboardUsers(options);
41637
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
41638
+ const localVarOperationServerBasePath =
41639
+ operationServerMap['UserApi.userControllerCountBillableDashboardUsers']?.[localVarOperationServerIndex]?.url;
41640
+ return (axios, basePath) =>
41641
+ createRequestFunction(
41642
+ localVarAxiosArgs,
41643
+ globalAxios,
41644
+ BASE_PATH,
41645
+ configuration,
41646
+ )(axios, localVarOperationServerBasePath || basePath);
41647
+ },
40999
41648
  /**
41000
41649
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
41001
41650
  * @summary Create
@@ -41325,6 +41974,15 @@ export const UserApiFactory = function (configuration?: Configuration, basePath?
41325
41974
  .userControllerAssignRole(id, roleId, userRoleAssignChangeDTO, options)
41326
41975
  .then((request) => request(axios, basePath));
41327
41976
  },
41977
+ /**
41978
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
41979
+ * @summary Count billable dashboard users
41980
+ * @param {*} [options] Override http request option.
41981
+ * @throws {RequiredError}
41982
+ */
41983
+ userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): AxiosPromise<UserCountOutputDTOAPI> {
41984
+ return localVarFp.userControllerCountBillableDashboardUsers(options).then((request) => request(axios, basePath));
41985
+ },
41328
41986
  /**
41329
41987
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
41330
41988
  * @summary Create
@@ -41503,6 +42161,19 @@ export class UserApi extends BaseAPI {
41503
42161
  .then((request) => request(this.axios, this.basePath));
41504
42162
  }
41505
42163
 
42164
+ /**
42165
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
42166
+ * @summary Count billable dashboard users
42167
+ * @param {*} [options] Override http request option.
42168
+ * @throws {RequiredError}
42169
+ * @memberof UserApi
42170
+ */
42171
+ public userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig) {
42172
+ return UserApiFp(this.configuration)
42173
+ .userControllerCountBillableDashboardUsers(options)
42174
+ .then((request) => request(this.axios, this.basePath));
42175
+ }
42176
+
41506
42177
  /**
41507
42178
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
41508
42179
  * @summary Create
@@ -42171,3 +42842,474 @@ export class VariableApi extends BaseAPI {
42171
42842
  .then((request) => request(this.axios, this.basePath));
42172
42843
  }
42173
42844
  }
42845
+
42846
+ /**
42847
+ * InviteLinkApi - axios parameter creator
42848
+ * @export
42849
+ */
42850
+ export const InviteLinkApiAxiosParamCreator = function (configuration?: Configuration) {
42851
+ return {
42852
+ /**
42853
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
42854
+ * @summary Create invite link
42855
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
42856
+ * @param {*} [options] Override http request option.
42857
+ * @throws {RequiredError}
42858
+ */
42859
+ inviteLinkControllerCreate: async (
42860
+ inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO,
42861
+ options: RawAxiosRequestConfig = {},
42862
+ ): Promise<RequestArgs> => {
42863
+ const localVarPath = `/invite-link`;
42864
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
42865
+ let baseOptions;
42866
+ if (configuration) {
42867
+ baseOptions = configuration.baseOptions;
42868
+ }
42869
+
42870
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
42871
+ const localVarHeaderParameter = {} as any;
42872
+ const localVarQueryParameter = {} as any;
42873
+
42874
+ // authentication domainAuth required
42875
+
42876
+ localVarHeaderParameter['Content-Type'] = 'application/json';
42877
+
42878
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
42879
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
42880
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
42881
+ localVarRequestOptions.data = serializeDataIfNeeded(
42882
+ inviteLinkCreateInputDTO,
42883
+ localVarRequestOptions,
42884
+ configuration,
42885
+ );
42886
+
42887
+ return {
42888
+ url: toPathString(localVarUrlObj),
42889
+ options: localVarRequestOptions,
42890
+ };
42891
+ },
42892
+ /**
42893
+ * <br> OperationId: `InviteLinkControllerPreview`
42894
+ * @summary Preview
42895
+ * @param {string} token
42896
+ * @param {*} [options] Override http request option.
42897
+ * @throws {RequiredError}
42898
+ */
42899
+ inviteLinkControllerPreview: async (token: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
42900
+ assertParamExists('inviteLinkControllerPreview', 'token', token);
42901
+ const localVarPath = `/invite-link/redeem/{token}`.replace(`{${'token'}}`, encodeURIComponent(String(token)));
42902
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
42903
+ let baseOptions;
42904
+ if (configuration) {
42905
+ baseOptions = configuration.baseOptions;
42906
+ }
42907
+
42908
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
42909
+ const localVarHeaderParameter = {} as any;
42910
+ const localVarQueryParameter = {} as any;
42911
+
42912
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
42913
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
42914
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
42915
+
42916
+ return {
42917
+ url: toPathString(localVarUrlObj),
42918
+ options: localVarRequestOptions,
42919
+ };
42920
+ },
42921
+ /**
42922
+ * <br> OperationId: `InviteLinkControllerRedeem`
42923
+ * @summary Redeem
42924
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
42925
+ * @param {*} [options] Override http request option.
42926
+ * @throws {RequiredError}
42927
+ */
42928
+ inviteLinkControllerRedeem: async (
42929
+ redeemInputDTO?: RedeemInputDTO,
42930
+ options: RawAxiosRequestConfig = {},
42931
+ ): Promise<RequestArgs> => {
42932
+ const localVarPath = `/invite-link/redeem`;
42933
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
42934
+ let baseOptions;
42935
+ if (configuration) {
42936
+ baseOptions = configuration.baseOptions;
42937
+ }
42938
+
42939
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
42940
+ const localVarHeaderParameter = {} as any;
42941
+ const localVarQueryParameter = {} as any;
42942
+
42943
+ localVarHeaderParameter['Content-Type'] = 'application/json';
42944
+
42945
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
42946
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
42947
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
42948
+ localVarRequestOptions.data = serializeDataIfNeeded(redeemInputDTO, localVarRequestOptions, configuration);
42949
+
42950
+ return {
42951
+ url: toPathString(localVarUrlObj),
42952
+ options: localVarRequestOptions,
42953
+ };
42954
+ },
42955
+ /**
42956
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
42957
+ * @summary Revoke
42958
+ * @param {string} id
42959
+ * @param {*} [options] Override http request option.
42960
+ * @throws {RequiredError}
42961
+ */
42962
+ inviteLinkControllerRevoke: async (id: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
42963
+ assertParamExists('inviteLinkControllerRevoke', 'id', id);
42964
+ const localVarPath = `/invite-link/{id}`.replace(`{${'id'}}`, encodeURIComponent(String(id)));
42965
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
42966
+ let baseOptions;
42967
+ if (configuration) {
42968
+ baseOptions = configuration.baseOptions;
42969
+ }
42970
+
42971
+ const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
42972
+ const localVarHeaderParameter = {} as any;
42973
+ const localVarQueryParameter = {} as any;
42974
+
42975
+ // authentication domainAuth required
42976
+
42977
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
42978
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
42979
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
42980
+
42981
+ return {
42982
+ url: toPathString(localVarUrlObj),
42983
+ options: localVarRequestOptions,
42984
+ };
42985
+ },
42986
+ /**
42987
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
42988
+ * @summary Search
42989
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
42990
+ * @param {*} [options] Override http request option.
42991
+ * @throws {RequiredError}
42992
+ */
42993
+ inviteLinkControllerSearch: async (
42994
+ inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO,
42995
+ options: RawAxiosRequestConfig = {},
42996
+ ): Promise<RequestArgs> => {
42997
+ const localVarPath = `/invite-link/search`;
42998
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
42999
+ let baseOptions;
43000
+ if (configuration) {
43001
+ baseOptions = configuration.baseOptions;
43002
+ }
43003
+
43004
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
43005
+ const localVarHeaderParameter = {} as any;
43006
+ const localVarQueryParameter = {} as any;
43007
+
43008
+ // authentication domainAuth required
43009
+
43010
+ localVarHeaderParameter['Content-Type'] = 'application/json';
43011
+
43012
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
43013
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
43014
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
43015
+ localVarRequestOptions.data = serializeDataIfNeeded(
43016
+ inviteLinkSearchInputDTO,
43017
+ localVarRequestOptions,
43018
+ configuration,
43019
+ );
43020
+
43021
+ return {
43022
+ url: toPathString(localVarUrlObj),
43023
+ options: localVarRequestOptions,
43024
+ };
43025
+ },
43026
+ };
43027
+ };
43028
+
43029
+ /**
43030
+ * InviteLinkApi - functional programming interface
43031
+ * @export
43032
+ */
43033
+ export const InviteLinkApiFp = function (configuration?: Configuration) {
43034
+ const localVarAxiosParamCreator = InviteLinkApiAxiosParamCreator(configuration);
43035
+ return {
43036
+ /**
43037
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
43038
+ * @summary Create invite link
43039
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
43040
+ * @param {*} [options] Override http request option.
43041
+ * @throws {RequiredError}
43042
+ */
43043
+ async inviteLinkControllerCreate(
43044
+ inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO,
43045
+ options?: RawAxiosRequestConfig,
43046
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkCreateResultDTOAPI>> {
43047
+ const localVarAxiosArgs = await localVarAxiosParamCreator.inviteLinkControllerCreate(
43048
+ inviteLinkCreateInputDTO,
43049
+ options,
43050
+ );
43051
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
43052
+ const localVarOperationServerBasePath =
43053
+ operationServerMap['InviteLinkApi.inviteLinkControllerCreate']?.[localVarOperationServerIndex]?.url;
43054
+ return (axios, basePath) =>
43055
+ createRequestFunction(
43056
+ localVarAxiosArgs,
43057
+ globalAxios,
43058
+ BASE_PATH,
43059
+ configuration,
43060
+ )(axios, localVarOperationServerBasePath || basePath);
43061
+ },
43062
+ /**
43063
+ * <br> OperationId: `InviteLinkControllerPreview`
43064
+ * @summary Preview
43065
+ * @param {string} token
43066
+ * @param {*} [options] Override http request option.
43067
+ * @throws {RequiredError}
43068
+ */
43069
+ async inviteLinkControllerPreview(
43070
+ token: string,
43071
+ options?: RawAxiosRequestConfig,
43072
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkPreviewDTOAPI>> {
43073
+ const localVarAxiosArgs = await localVarAxiosParamCreator.inviteLinkControllerPreview(token, options);
43074
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
43075
+ const localVarOperationServerBasePath =
43076
+ operationServerMap['InviteLinkApi.inviteLinkControllerPreview']?.[localVarOperationServerIndex]?.url;
43077
+ return (axios, basePath) =>
43078
+ createRequestFunction(
43079
+ localVarAxiosArgs,
43080
+ globalAxios,
43081
+ BASE_PATH,
43082
+ configuration,
43083
+ )(axios, localVarOperationServerBasePath || basePath);
43084
+ },
43085
+ /**
43086
+ * <br> OperationId: `InviteLinkControllerRedeem`
43087
+ * @summary Redeem
43088
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
43089
+ * @param {*} [options] Override http request option.
43090
+ * @throws {RequiredError}
43091
+ */
43092
+ async inviteLinkControllerRedeem(
43093
+ redeemInputDTO?: RedeemInputDTO,
43094
+ options?: RawAxiosRequestConfig,
43095
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOutputWithRolesDTOAPI>> {
43096
+ const localVarAxiosArgs = await localVarAxiosParamCreator.inviteLinkControllerRedeem(redeemInputDTO, options);
43097
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
43098
+ const localVarOperationServerBasePath =
43099
+ operationServerMap['InviteLinkApi.inviteLinkControllerRedeem']?.[localVarOperationServerIndex]?.url;
43100
+ return (axios, basePath) =>
43101
+ createRequestFunction(
43102
+ localVarAxiosArgs,
43103
+ globalAxios,
43104
+ BASE_PATH,
43105
+ configuration,
43106
+ )(axios, localVarOperationServerBasePath || basePath);
43107
+ },
43108
+ /**
43109
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
43110
+ * @summary Revoke
43111
+ * @param {string} id
43112
+ * @param {*} [options] Override http request option.
43113
+ * @throws {RequiredError}
43114
+ */
43115
+ async inviteLinkControllerRevoke(
43116
+ id: string,
43117
+ options?: RawAxiosRequestConfig,
43118
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>> {
43119
+ const localVarAxiosArgs = await localVarAxiosParamCreator.inviteLinkControllerRevoke(id, options);
43120
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
43121
+ const localVarOperationServerBasePath =
43122
+ operationServerMap['InviteLinkApi.inviteLinkControllerRevoke']?.[localVarOperationServerIndex]?.url;
43123
+ return (axios, basePath) =>
43124
+ createRequestFunction(
43125
+ localVarAxiosArgs,
43126
+ globalAxios,
43127
+ BASE_PATH,
43128
+ configuration,
43129
+ )(axios, localVarOperationServerBasePath || basePath);
43130
+ },
43131
+ /**
43132
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
43133
+ * @summary Search
43134
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
43135
+ * @param {*} [options] Override http request option.
43136
+ * @throws {RequiredError}
43137
+ */
43138
+ async inviteLinkControllerSearch(
43139
+ inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO,
43140
+ options?: RawAxiosRequestConfig,
43141
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkOutputArrayDTOAPI>> {
43142
+ const localVarAxiosArgs = await localVarAxiosParamCreator.inviteLinkControllerSearch(
43143
+ inviteLinkSearchInputDTO,
43144
+ options,
43145
+ );
43146
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
43147
+ const localVarOperationServerBasePath =
43148
+ operationServerMap['InviteLinkApi.inviteLinkControllerSearch']?.[localVarOperationServerIndex]?.url;
43149
+ return (axios, basePath) =>
43150
+ createRequestFunction(
43151
+ localVarAxiosArgs,
43152
+ globalAxios,
43153
+ BASE_PATH,
43154
+ configuration,
43155
+ )(axios, localVarOperationServerBasePath || basePath);
43156
+ },
43157
+ };
43158
+ };
43159
+
43160
+ /**
43161
+ * InviteLinkApi - factory interface
43162
+ * @export
43163
+ */
43164
+ export const InviteLinkApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
43165
+ const localVarFp = InviteLinkApiFp(configuration);
43166
+ return {
43167
+ /**
43168
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
43169
+ * @summary Create invite link
43170
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
43171
+ * @param {*} [options] Override http request option.
43172
+ * @throws {RequiredError}
43173
+ */
43174
+ inviteLinkControllerCreate(
43175
+ inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO,
43176
+ options?: RawAxiosRequestConfig,
43177
+ ): AxiosPromise<InviteLinkCreateResultDTOAPI> {
43178
+ return localVarFp
43179
+ .inviteLinkControllerCreate(inviteLinkCreateInputDTO, options)
43180
+ .then((request) => request(axios, basePath));
43181
+ },
43182
+ /**
43183
+ * <br> OperationId: `InviteLinkControllerPreview`
43184
+ * @summary Preview
43185
+ * @param {string} token
43186
+ * @param {*} [options] Override http request option.
43187
+ * @throws {RequiredError}
43188
+ */
43189
+ inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkPreviewDTOAPI> {
43190
+ return localVarFp.inviteLinkControllerPreview(token, options).then((request) => request(axios, basePath));
43191
+ },
43192
+ /**
43193
+ * <br> OperationId: `InviteLinkControllerRedeem`
43194
+ * @summary Redeem
43195
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
43196
+ * @param {*} [options] Override http request option.
43197
+ * @throws {RequiredError}
43198
+ */
43199
+ inviteLinkControllerRedeem(
43200
+ redeemInputDTO?: RedeemInputDTO,
43201
+ options?: RawAxiosRequestConfig,
43202
+ ): AxiosPromise<UserOutputWithRolesDTOAPI> {
43203
+ return localVarFp.inviteLinkControllerRedeem(redeemInputDTO, options).then((request) => request(axios, basePath));
43204
+ },
43205
+ /**
43206
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
43207
+ * @summary Revoke
43208
+ * @param {string} id
43209
+ * @param {*} [options] Override http request option.
43210
+ * @throws {RequiredError}
43211
+ */
43212
+ inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput> {
43213
+ return localVarFp.inviteLinkControllerRevoke(id, options).then((request) => request(axios, basePath));
43214
+ },
43215
+ /**
43216
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
43217
+ * @summary Search
43218
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
43219
+ * @param {*} [options] Override http request option.
43220
+ * @throws {RequiredError}
43221
+ */
43222
+ inviteLinkControllerSearch(
43223
+ inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO,
43224
+ options?: RawAxiosRequestConfig,
43225
+ ): AxiosPromise<InviteLinkOutputArrayDTOAPI> {
43226
+ return localVarFp
43227
+ .inviteLinkControllerSearch(inviteLinkSearchInputDTO, options)
43228
+ .then((request) => request(axios, basePath));
43229
+ },
43230
+ };
43231
+ };
43232
+
43233
+ /**
43234
+ * InviteLinkApi - object-oriented interface
43235
+ * @export
43236
+ * @class InviteLinkApi
43237
+ * @extends {BaseAPI}
43238
+ */
43239
+ export class InviteLinkApi extends BaseAPI {
43240
+ /**
43241
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
43242
+ * @summary Create invite link
43243
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
43244
+ * @param {*} [options] Override http request option.
43245
+ * @throws {RequiredError}
43246
+ * @memberof InviteLinkApi
43247
+ */
43248
+ public inviteLinkControllerCreate(
43249
+ inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO,
43250
+ options?: RawAxiosRequestConfig,
43251
+ ) {
43252
+ return InviteLinkApiFp(this.configuration)
43253
+ .inviteLinkControllerCreate(inviteLinkCreateInputDTO, options)
43254
+ .then((request) => request(this.axios, this.basePath));
43255
+ }
43256
+
43257
+ /**
43258
+ * <br> OperationId: `InviteLinkControllerPreview`
43259
+ * @summary Preview
43260
+ * @param {string} token
43261
+ * @param {*} [options] Override http request option.
43262
+ * @throws {RequiredError}
43263
+ * @memberof InviteLinkApi
43264
+ */
43265
+ public inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig) {
43266
+ return InviteLinkApiFp(this.configuration)
43267
+ .inviteLinkControllerPreview(token, options)
43268
+ .then((request) => request(this.axios, this.basePath));
43269
+ }
43270
+
43271
+ /**
43272
+ * <br> OperationId: `InviteLinkControllerRedeem`
43273
+ * @summary Redeem
43274
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
43275
+ * @param {*} [options] Override http request option.
43276
+ * @throws {RequiredError}
43277
+ * @memberof InviteLinkApi
43278
+ */
43279
+ public inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig) {
43280
+ return InviteLinkApiFp(this.configuration)
43281
+ .inviteLinkControllerRedeem(redeemInputDTO, options)
43282
+ .then((request) => request(this.axios, this.basePath));
43283
+ }
43284
+
43285
+ /**
43286
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
43287
+ * @summary Revoke
43288
+ * @param {string} id
43289
+ * @param {*} [options] Override http request option.
43290
+ * @throws {RequiredError}
43291
+ * @memberof InviteLinkApi
43292
+ */
43293
+ public inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig) {
43294
+ return InviteLinkApiFp(this.configuration)
43295
+ .inviteLinkControllerRevoke(id, options)
43296
+ .then((request) => request(this.axios, this.basePath));
43297
+ }
43298
+
43299
+ /**
43300
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
43301
+ * @summary Search
43302
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
43303
+ * @param {*} [options] Override http request option.
43304
+ * @throws {RequiredError}
43305
+ * @memberof InviteLinkApi
43306
+ */
43307
+ public inviteLinkControllerSearch(
43308
+ inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO,
43309
+ options?: RawAxiosRequestConfig,
43310
+ ) {
43311
+ return InviteLinkApiFp(this.configuration)
43312
+ .inviteLinkControllerSearch(inviteLinkSearchInputDTO, options)
43313
+ .then((request) => request(this.axios, this.basePath));
43314
+ }
43315
+ }