@takaro/apiclient 0.0.0-dev.d71bf3b → 0.0.0-dev.d94953c

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.
@@ -2664,6 +2664,50 @@ export const DomainUpdateInputDTOStateEnum = {
2664
2664
  export type DomainUpdateInputDTOStateEnum =
2665
2665
  (typeof DomainUpdateInputDTOStateEnum)[keyof typeof DomainUpdateInputDTOStateEnum];
2666
2666
 
2667
+ /**
2668
+ *
2669
+ * @export
2670
+ * @interface EffectiveStorefrontConfigDTO
2671
+ */
2672
+ export interface EffectiveStorefrontConfigDTO {
2673
+ /**
2674
+ *
2675
+ * @type {string}
2676
+ * @memberof EffectiveStorefrontConfigDTO
2677
+ */
2678
+ templateId: string;
2679
+ /**
2680
+ *
2681
+ * @type {object}
2682
+ * @memberof EffectiveStorefrontConfigDTO
2683
+ */
2684
+ values: object;
2685
+ /**
2686
+ *
2687
+ * @type {object}
2688
+ * @memberof EffectiveStorefrontConfigDTO
2689
+ */
2690
+ schema: object;
2691
+ }
2692
+ /**
2693
+ *
2694
+ * @export
2695
+ * @interface EffectiveStorefrontConfigOutputDTOAPI
2696
+ */
2697
+ export interface EffectiveStorefrontConfigOutputDTOAPI {
2698
+ /**
2699
+ *
2700
+ * @type {EffectiveStorefrontConfigDTO}
2701
+ * @memberof EffectiveStorefrontConfigOutputDTOAPI
2702
+ */
2703
+ data: EffectiveStorefrontConfigDTO;
2704
+ /**
2705
+ *
2706
+ * @type {MetadataOutput}
2707
+ * @memberof EffectiveStorefrontConfigOutputDTOAPI
2708
+ */
2709
+ meta: MetadataOutput;
2710
+ }
2667
2711
  /**
2668
2712
  *
2669
2713
  * @export
@@ -3461,10 +3505,10 @@ export interface EventExploreInputDTO {
3461
3505
  filters?: EventExploreFiltersDTO;
3462
3506
  /**
3463
3507
  *
3464
- * @type {Array<any>}
3508
+ * @type {Array<MetaFilterGroupOrLeafDTO>}
3465
3509
  * @memberof EventExploreInputDTO
3466
3510
  */
3467
- metaFilters?: Array<any>;
3511
+ metaFilters?: Array<MetaFilterGroupOrLeafDTO>;
3468
3512
  /**
3469
3513
  *
3470
3514
  * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
@@ -4148,12 +4192,11 @@ export interface EventVolumeDimensionTotalDTO {
4148
4192
  */
4149
4193
  key: string;
4150
4194
  /**
4151
- * Resolved display name (populated when groupBy=gameServerId). Null for the
4152
- * "other" bucket or when the entity no longer exists.
4195
+ *
4153
4196
  * @type {string}
4154
4197
  * @memberof EventVolumeDimensionTotalDTO
4155
4198
  */
4156
- name?: string | null;
4199
+ name?: string;
4157
4200
  /**
4158
4201
  *
4159
4202
  * @type {number}
@@ -4175,10 +4218,10 @@ export interface EventVolumeInputDTO {
4175
4218
  filters?: EventExploreFiltersDTO;
4176
4219
  /**
4177
4220
  *
4178
- * @type {Array<any>}
4221
+ * @type {Array<MetaFilterGroupOrLeafDTO>}
4179
4222
  * @memberof EventVolumeInputDTO
4180
4223
  */
4181
- metaFilters?: Array<any>;
4224
+ metaFilters?: Array<MetaFilterGroupOrLeafDTO>;
4182
4225
  /**
4183
4226
  *
4184
4227
  * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
@@ -4198,8 +4241,7 @@ export interface EventVolumeInputDTO {
4198
4241
  */
4199
4242
  groupBy?: EventVolumeInputDTOGroupByEnum;
4200
4243
  /**
4201
- * Optional preset period name (e.g. "24h", "7d") enabling result caching
4202
- * for standard preset windows with empty filters.
4244
+ *
4203
4245
  * @type {string}
4204
4246
  * @memberof EventVolumeInputDTO
4205
4247
  */
@@ -4284,12 +4326,11 @@ export interface EventVolumeSeriesDTO {
4284
4326
  */
4285
4327
  key: string;
4286
4328
  /**
4287
- * Resolved display name (populated when groupBy=gameServerId). Null for the
4288
- * "other" bucket or when the entity no longer exists.
4329
+ *
4289
4330
  * @type {string}
4290
4331
  * @memberof EventVolumeSeriesDTO
4291
4332
  */
4292
- name?: string | null;
4333
+ name?: string;
4293
4334
  /**
4294
4335
  *
4295
4336
  * @type {Array<EventVolumePointDTO>}
@@ -6864,6 +6905,475 @@ export interface InviteOutputDTO {
6864
6905
  */
6865
6906
  devServer: string;
6866
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
+ }
6867
7377
  /**
6868
7378
  *
6869
7379
  * @export
@@ -7447,6 +7957,32 @@ export interface LoginOutputDTOAPI {
7447
7957
  */
7448
7958
  meta: MetadataOutput;
7449
7959
  }
7960
+ /**
7961
+ *
7962
+ * @export
7963
+ * @interface LoginQueryParams
7964
+ */
7965
+ export interface LoginQueryParams {
7966
+ /**
7967
+ *
7968
+ * @type {string}
7969
+ * @memberof LoginQueryParams
7970
+ */
7971
+ redirect?: string;
7972
+ }
7973
+ /**
7974
+ *
7975
+ * @export
7976
+ * @interface LogoutQueryParams
7977
+ */
7978
+ export interface LogoutQueryParams {
7979
+ /**
7980
+ *
7981
+ * @type {string}
7982
+ * @memberof LogoutQueryParams
7983
+ */
7984
+ redirect?: string;
7985
+ }
7450
7986
  /**
7451
7987
  *
7452
7988
  * @export
@@ -7570,7 +8106,7 @@ export interface MeOutputDTO {
7570
8106
  * @type {UserOutputWithRolesDTO}
7571
8107
  * @memberof MeOutputDTO
7572
8108
  */
7573
- user: UserOutputWithRolesDTO;
8109
+ user?: UserOutputWithRolesDTO;
7574
8110
  /**
7575
8111
  *
7576
8112
  * @type {Array<DomainOutputDTO>}
@@ -7582,7 +8118,7 @@ export interface MeOutputDTO {
7582
8118
  * @type {string}
7583
8119
  * @memberof MeOutputDTO
7584
8120
  */
7585
- domain: string;
8121
+ domain?: string;
7586
8122
  /**
7587
8123
  *
7588
8124
  * @type {PlayerOutputWithRolesDTO}
@@ -7671,6 +8207,62 @@ export interface MessageSendInputDTO {
7671
8207
  */
7672
8208
  opts?: IMessageOptsDTO;
7673
8209
  }
8210
+ /**
8211
+ *
8212
+ * @export
8213
+ * @interface MetaFilterGroupOrLeafDTO
8214
+ */
8215
+ export interface MetaFilterGroupOrLeafDTO {
8216
+ /**
8217
+ *
8218
+ * @type {string}
8219
+ * @memberof MetaFilterGroupOrLeafDTO
8220
+ */
8221
+ logicalOperator?: MetaFilterGroupOrLeafDTOLogicalOperatorEnum;
8222
+ /**
8223
+ *
8224
+ * @type {Array<MetaFilterGroupOrLeafDTO>}
8225
+ * @memberof MetaFilterGroupOrLeafDTO
8226
+ */
8227
+ filters?: Array<MetaFilterGroupOrLeafDTO>;
8228
+ /**
8229
+ *
8230
+ * @type {string}
8231
+ * @memberof MetaFilterGroupOrLeafDTO
8232
+ */
8233
+ field?: string;
8234
+ /**
8235
+ *
8236
+ * @type {string}
8237
+ * @memberof MetaFilterGroupOrLeafDTO
8238
+ */
8239
+ operator?: MetaFilterGroupOrLeafDTOOperatorEnum;
8240
+ /**
8241
+ *
8242
+ * @type {string}
8243
+ * @memberof MetaFilterGroupOrLeafDTO
8244
+ */
8245
+ value?: string;
8246
+ }
8247
+
8248
+ export const MetaFilterGroupOrLeafDTOLogicalOperatorEnum = {
8249
+ And: 'AND',
8250
+ Or: 'OR',
8251
+ } as const;
8252
+
8253
+ export type MetaFilterGroupOrLeafDTOLogicalOperatorEnum =
8254
+ (typeof MetaFilterGroupOrLeafDTOLogicalOperatorEnum)[keyof typeof MetaFilterGroupOrLeafDTOLogicalOperatorEnum];
8255
+ export const MetaFilterGroupOrLeafDTOOperatorEnum = {
8256
+ Equal: '=',
8257
+ NotEqual: '!=',
8258
+ GreaterThan: '>',
8259
+ LessThan: '<',
8260
+ ArrayContains: 'array_contains',
8261
+ } as const;
8262
+
8263
+ export type MetaFilterGroupOrLeafDTOOperatorEnum =
8264
+ (typeof MetaFilterGroupOrLeafDTOOperatorEnum)[keyof typeof MetaFilterGroupOrLeafDTOOperatorEnum];
8265
+
7674
8266
  /**
7675
8267
  *
7676
8268
  * @export
@@ -8020,6 +8612,98 @@ export interface ModuleInstallParamId {
8020
8612
  */
8021
8613
  gameServerId: string;
8022
8614
  }
8615
+ /**
8616
+ *
8617
+ * @export
8618
+ * @interface ModuleInstallationKpisDTO
8619
+ */
8620
+ export interface ModuleInstallationKpisDTO {
8621
+ /**
8622
+ *
8623
+ * @type {number}
8624
+ * @memberof ModuleInstallationKpisDTO
8625
+ */
8626
+ runs: number;
8627
+ /**
8628
+ *
8629
+ * @type {number}
8630
+ * @memberof ModuleInstallationKpisDTO
8631
+ */
8632
+ failures: number;
8633
+ /**
8634
+ *
8635
+ * @type {number}
8636
+ * @memberof ModuleInstallationKpisDTO
8637
+ */
8638
+ successRate: number;
8639
+ }
8640
+ /**
8641
+ *
8642
+ * @export
8643
+ * @interface ModuleInstallationKpisDTOAPI
8644
+ */
8645
+ export interface ModuleInstallationKpisDTOAPI {
8646
+ /**
8647
+ *
8648
+ * @type {ModuleInstallationKpisDTO}
8649
+ * @memberof ModuleInstallationKpisDTOAPI
8650
+ */
8651
+ data: ModuleInstallationKpisDTO;
8652
+ /**
8653
+ *
8654
+ * @type {MetadataOutput}
8655
+ * @memberof ModuleInstallationKpisDTOAPI
8656
+ */
8657
+ meta: MetadataOutput;
8658
+ }
8659
+ /**
8660
+ *
8661
+ * @export
8662
+ * @interface ModuleInstallationKpisQueryDTO
8663
+ */
8664
+ export interface ModuleInstallationKpisQueryDTO {
8665
+ /**
8666
+ *
8667
+ * @type {string}
8668
+ * @memberof ModuleInstallationKpisQueryDTO
8669
+ */
8670
+ startDate?: string;
8671
+ /**
8672
+ *
8673
+ * @type {string}
8674
+ * @memberof ModuleInstallationKpisQueryDTO
8675
+ */
8676
+ endDate?: string;
8677
+ /**
8678
+ *
8679
+ * @type {string}
8680
+ * @memberof ModuleInstallationKpisQueryDTO
8681
+ */
8682
+ gameServerId: string;
8683
+ /**
8684
+ *
8685
+ * @type {string}
8686
+ * @memberof ModuleInstallationKpisQueryDTO
8687
+ */
8688
+ moduleId: string;
8689
+ /**
8690
+ *
8691
+ * @type {string}
8692
+ * @memberof ModuleInstallationKpisQueryDTO
8693
+ */
8694
+ period?: ModuleInstallationKpisQueryDTOPeriodEnum;
8695
+ }
8696
+
8697
+ export const ModuleInstallationKpisQueryDTOPeriodEnum = {
8698
+ _24h: '24h',
8699
+ _7d: '7d',
8700
+ _30d: '30d',
8701
+ _90d: '90d',
8702
+ } as const;
8703
+
8704
+ export type ModuleInstallationKpisQueryDTOPeriodEnum =
8705
+ (typeof ModuleInstallationKpisQueryDTOPeriodEnum)[keyof typeof ModuleInstallationKpisQueryDTOPeriodEnum];
8706
+
8023
8707
  /**
8024
8708
  *
8025
8709
  * @export
@@ -8631,6 +9315,12 @@ export interface ModuleTransferVersionDTO {
8631
9315
  * @memberof ModuleTransferVersionDTO
8632
9316
  */
8633
9317
  uiSchema: string;
9318
+ /**
9319
+ *
9320
+ * @type {string}
9321
+ * @memberof ModuleTransferVersionDTO
9322
+ */
9323
+ defaultSystemConfig?: string;
8634
9324
  /**
8635
9325
  *
8636
9326
  * @type {Array<ICommand>}
@@ -8785,6 +9475,24 @@ export interface ModuleVersionOutputDTO {
8785
9475
  * @memberof ModuleVersionOutputDTO
8786
9476
  */
8787
9477
  moduleId: string;
9478
+ /**
9479
+ *
9480
+ * @type {string}
9481
+ * @memberof ModuleVersionOutputDTO
9482
+ */
9483
+ registryId?: string;
9484
+ /**
9485
+ *
9486
+ * @type {string}
9487
+ * @memberof ModuleVersionOutputDTO
9488
+ */
9489
+ sourceModuleName?: string;
9490
+ /**
9491
+ *
9492
+ * @type {string}
9493
+ * @memberof ModuleVersionOutputDTO
9494
+ */
9495
+ sourceVersion?: string;
8788
9496
  /**
8789
9497
  *
8790
9498
  * @type {Array<CronJobOutputDTO>}
@@ -9324,6 +10032,19 @@ export const ParamKeyKeyEnum = {
9324
10032
 
9325
10033
  export type ParamKeyKeyEnum = (typeof ParamKeyKeyEnum)[keyof typeof ParamKeyKeyEnum];
9326
10034
 
10035
+ /**
10036
+ *
10037
+ * @export
10038
+ * @interface ParamRoleId
10039
+ */
10040
+ export interface ParamRoleId {
10041
+ /**
10042
+ *
10043
+ * @type {string}
10044
+ * @memberof ParamRoleId
10045
+ */
10046
+ roleId: string;
10047
+ }
9327
10048
  /**
9328
10049
  *
9329
10050
  * @export
@@ -9648,6 +10369,94 @@ export interface PlayerActivityMixEntryDTOAPI {
9648
10369
  */
9649
10370
  meta: MetadataOutput;
9650
10371
  }
10372
+ /**
10373
+ *
10374
+ * @export
10375
+ * @interface PlayerBulkAssignRoleErrorDTO
10376
+ */
10377
+ export interface PlayerBulkAssignRoleErrorDTO {
10378
+ /**
10379
+ *
10380
+ * @type {string}
10381
+ * @memberof PlayerBulkAssignRoleErrorDTO
10382
+ */
10383
+ playerId: string;
10384
+ /**
10385
+ *
10386
+ * @type {string}
10387
+ * @memberof PlayerBulkAssignRoleErrorDTO
10388
+ */
10389
+ reason: string;
10390
+ }
10391
+ /**
10392
+ *
10393
+ * @export
10394
+ * @interface PlayerBulkAssignRoleInputDTO
10395
+ */
10396
+ export interface PlayerBulkAssignRoleInputDTO {
10397
+ /**
10398
+ *
10399
+ * @type {Array<string>}
10400
+ * @memberof PlayerBulkAssignRoleInputDTO
10401
+ */
10402
+ playerIds: Array<string>;
10403
+ /**
10404
+ *
10405
+ * @type {string}
10406
+ * @memberof PlayerBulkAssignRoleInputDTO
10407
+ */
10408
+ gameServerId?: string;
10409
+ /**
10410
+ *
10411
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
10412
+ * @memberof PlayerBulkAssignRoleInputDTO
10413
+ */
10414
+ expiresAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
10415
+ }
10416
+ /**
10417
+ *
10418
+ * @export
10419
+ * @interface PlayerBulkAssignRoleOutputDTO
10420
+ */
10421
+ export interface PlayerBulkAssignRoleOutputDTO {
10422
+ /**
10423
+ *
10424
+ * @type {number}
10425
+ * @memberof PlayerBulkAssignRoleOutputDTO
10426
+ */
10427
+ success: number;
10428
+ /**
10429
+ *
10430
+ * @type {number}
10431
+ * @memberof PlayerBulkAssignRoleOutputDTO
10432
+ */
10433
+ failed: number;
10434
+ /**
10435
+ *
10436
+ * @type {Array<PlayerBulkAssignRoleErrorDTO>}
10437
+ * @memberof PlayerBulkAssignRoleOutputDTO
10438
+ */
10439
+ errors: Array<PlayerBulkAssignRoleErrorDTO>;
10440
+ }
10441
+ /**
10442
+ *
10443
+ * @export
10444
+ * @interface PlayerBulkAssignRoleOutputDTOAPI
10445
+ */
10446
+ export interface PlayerBulkAssignRoleOutputDTOAPI {
10447
+ /**
10448
+ *
10449
+ * @type {PlayerBulkAssignRoleOutputDTO}
10450
+ * @memberof PlayerBulkAssignRoleOutputDTOAPI
10451
+ */
10452
+ data: PlayerBulkAssignRoleOutputDTO;
10453
+ /**
10454
+ *
10455
+ * @type {MetadataOutput}
10456
+ * @memberof PlayerBulkAssignRoleOutputDTOAPI
10457
+ */
10458
+ meta: MetadataOutput;
10459
+ }
9651
10460
  /**
9652
10461
  *
9653
10462
  * @export
@@ -11405,6 +12214,88 @@ export interface PlayersByItemInputDTO {
11405
12214
  */
11406
12215
  endDate?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11407
12216
  }
12217
+ /**
12218
+ *
12219
+ * @export
12220
+ * @interface PogBulkAddCurrencyErrorDTO
12221
+ */
12222
+ export interface PogBulkAddCurrencyErrorDTO {
12223
+ /**
12224
+ *
12225
+ * @type {string}
12226
+ * @memberof PogBulkAddCurrencyErrorDTO
12227
+ */
12228
+ playerId: string;
12229
+ /**
12230
+ *
12231
+ * @type {string}
12232
+ * @memberof PogBulkAddCurrencyErrorDTO
12233
+ */
12234
+ reason: string;
12235
+ }
12236
+ /**
12237
+ *
12238
+ * @export
12239
+ * @interface PogBulkAddCurrencyInputDTO
12240
+ */
12241
+ export interface PogBulkAddCurrencyInputDTO {
12242
+ /**
12243
+ *
12244
+ * @type {Array<string>}
12245
+ * @memberof PogBulkAddCurrencyInputDTO
12246
+ */
12247
+ playerIds: Array<string>;
12248
+ /**
12249
+ *
12250
+ * @type {number}
12251
+ * @memberof PogBulkAddCurrencyInputDTO
12252
+ */
12253
+ amount: number;
12254
+ }
12255
+ /**
12256
+ *
12257
+ * @export
12258
+ * @interface PogBulkAddCurrencyOutputDTO
12259
+ */
12260
+ export interface PogBulkAddCurrencyOutputDTO {
12261
+ /**
12262
+ *
12263
+ * @type {number}
12264
+ * @memberof PogBulkAddCurrencyOutputDTO
12265
+ */
12266
+ success: number;
12267
+ /**
12268
+ *
12269
+ * @type {number}
12270
+ * @memberof PogBulkAddCurrencyOutputDTO
12271
+ */
12272
+ failed: number;
12273
+ /**
12274
+ *
12275
+ * @type {Array<PogBulkAddCurrencyErrorDTO>}
12276
+ * @memberof PogBulkAddCurrencyOutputDTO
12277
+ */
12278
+ errors: Array<PogBulkAddCurrencyErrorDTO>;
12279
+ }
12280
+ /**
12281
+ *
12282
+ * @export
12283
+ * @interface PogBulkAddCurrencyOutputDTOAPI
12284
+ */
12285
+ export interface PogBulkAddCurrencyOutputDTOAPI {
12286
+ /**
12287
+ *
12288
+ * @type {PogBulkAddCurrencyOutputDTO}
12289
+ * @memberof PogBulkAddCurrencyOutputDTOAPI
12290
+ */
12291
+ data: PogBulkAddCurrencyOutputDTO;
12292
+ /**
12293
+ *
12294
+ * @type {MetadataOutput}
12295
+ * @memberof PogBulkAddCurrencyOutputDTOAPI
12296
+ */
12297
+ meta: MetadataOutput;
12298
+ }
11408
12299
  /**
11409
12300
  *
11410
12301
  * @export
@@ -11670,6 +12561,386 @@ export interface RedirectQs {
11670
12561
  */
11671
12562
  redirect: string;
11672
12563
  }
12564
+ /**
12565
+ *
12566
+ * @export
12567
+ * @interface RegistryCreateDTO
12568
+ */
12569
+ export interface RegistryCreateDTO {
12570
+ /**
12571
+ *
12572
+ * @type {string}
12573
+ * @memberof RegistryCreateDTO
12574
+ */
12575
+ url: string;
12576
+ /**
12577
+ *
12578
+ * @type {string}
12579
+ * @memberof RegistryCreateDTO
12580
+ */
12581
+ name?: string;
12582
+ /**
12583
+ *
12584
+ * @type {string}
12585
+ * @memberof RegistryCreateDTO
12586
+ */
12587
+ description?: string;
12588
+ }
12589
+ /**
12590
+ *
12591
+ * @export
12592
+ * @interface RegistryInstallBody
12593
+ */
12594
+ export interface RegistryInstallBody {
12595
+ /**
12596
+ *
12597
+ * @type {string}
12598
+ * @memberof RegistryInstallBody
12599
+ */
12600
+ moduleName: string;
12601
+ /**
12602
+ *
12603
+ * @type {string}
12604
+ * @memberof RegistryInstallBody
12605
+ */
12606
+ version: string;
12607
+ }
12608
+ /**
12609
+ *
12610
+ * @export
12611
+ * @interface RegistryInstallInputDTO
12612
+ */
12613
+ export interface RegistryInstallInputDTO {
12614
+ /**
12615
+ *
12616
+ * @type {string}
12617
+ * @memberof RegistryInstallInputDTO
12618
+ */
12619
+ moduleName: string;
12620
+ /**
12621
+ *
12622
+ * @type {string}
12623
+ * @memberof RegistryInstallInputDTO
12624
+ */
12625
+ version: string;
12626
+ }
12627
+ /**
12628
+ *
12629
+ * @export
12630
+ * @interface RegistryListOutputDTO
12631
+ */
12632
+ export interface RegistryListOutputDTO {
12633
+ /**
12634
+ *
12635
+ * @type {string}
12636
+ * @memberof RegistryListOutputDTO
12637
+ */
12638
+ url: string;
12639
+ /**
12640
+ *
12641
+ * @type {string}
12642
+ * @memberof RegistryListOutputDTO
12643
+ */
12644
+ name: string;
12645
+ /**
12646
+ *
12647
+ * @type {string}
12648
+ * @memberof RegistryListOutputDTO
12649
+ */
12650
+ description?: string;
12651
+ /**
12652
+ *
12653
+ * @type {Array<RegistryModuleVersionOutputDTO>}
12654
+ * @memberof RegistryListOutputDTO
12655
+ */
12656
+ modules?: Array<RegistryModuleVersionOutputDTO>;
12657
+ /**
12658
+ *
12659
+ * @type {string}
12660
+ * @memberof RegistryListOutputDTO
12661
+ */
12662
+ lastFetchError?: string;
12663
+ /**
12664
+ *
12665
+ * @type {string}
12666
+ * @memberof RegistryListOutputDTO
12667
+ */
12668
+ id: string;
12669
+ /**
12670
+ *
12671
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
12672
+ * @memberof RegistryListOutputDTO
12673
+ */
12674
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
12675
+ /**
12676
+ *
12677
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
12678
+ * @memberof RegistryListOutputDTO
12679
+ */
12680
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
12681
+ }
12682
+ /**
12683
+ *
12684
+ * @export
12685
+ * @interface RegistryListOutputDTOAPI
12686
+ */
12687
+ export interface RegistryListOutputDTOAPI {
12688
+ /**
12689
+ *
12690
+ * @type {Array<RegistryListOutputDTO>}
12691
+ * @memberof RegistryListOutputDTOAPI
12692
+ */
12693
+ data: Array<RegistryListOutputDTO>;
12694
+ /**
12695
+ *
12696
+ * @type {MetadataOutput}
12697
+ * @memberof RegistryListOutputDTOAPI
12698
+ */
12699
+ meta: MetadataOutput;
12700
+ }
12701
+ /**
12702
+ *
12703
+ * @export
12704
+ * @interface RegistryManifestDTO
12705
+ */
12706
+ export interface RegistryManifestDTO {
12707
+ /**
12708
+ *
12709
+ * @type {string}
12710
+ * @memberof RegistryManifestDTO
12711
+ */
12712
+ name: string;
12713
+ /**
12714
+ *
12715
+ * @type {string}
12716
+ * @memberof RegistryManifestDTO
12717
+ */
12718
+ description?: string;
12719
+ /**
12720
+ *
12721
+ * @type {Array<RegistryManifestModuleDTO>}
12722
+ * @memberof RegistryManifestDTO
12723
+ */
12724
+ modules: Array<RegistryManifestModuleDTO>;
12725
+ }
12726
+ /**
12727
+ *
12728
+ * @export
12729
+ * @interface RegistryManifestModuleDTO
12730
+ */
12731
+ export interface RegistryManifestModuleDTO {
12732
+ /**
12733
+ *
12734
+ * @type {string}
12735
+ * @memberof RegistryManifestModuleDTO
12736
+ */
12737
+ name: string;
12738
+ /**
12739
+ *
12740
+ * @type {string}
12741
+ * @memberof RegistryManifestModuleDTO
12742
+ */
12743
+ latestVersion: string;
12744
+ /**
12745
+ *
12746
+ * @type {Array<string>}
12747
+ * @memberof RegistryManifestModuleDTO
12748
+ */
12749
+ versions: Array<string>;
12750
+ /**
12751
+ *
12752
+ * @type {string}
12753
+ * @memberof RegistryManifestModuleDTO
12754
+ */
12755
+ description?: string;
12756
+ }
12757
+ /**
12758
+ *
12759
+ * @export
12760
+ * @interface RegistryModuleVersionOutputDTO
12761
+ */
12762
+ export interface RegistryModuleVersionOutputDTO {
12763
+ /**
12764
+ *
12765
+ * @type {string}
12766
+ * @memberof RegistryModuleVersionOutputDTO
12767
+ */
12768
+ name: string;
12769
+ /**
12770
+ *
12771
+ * @type {Array<string>}
12772
+ * @memberof RegistryModuleVersionOutputDTO
12773
+ */
12774
+ versions: Array<string>;
12775
+ /**
12776
+ *
12777
+ * @type {string}
12778
+ * @memberof RegistryModuleVersionOutputDTO
12779
+ */
12780
+ latestVersion: string;
12781
+ /**
12782
+ *
12783
+ * @type {string}
12784
+ * @memberof RegistryModuleVersionOutputDTO
12785
+ */
12786
+ description?: string;
12787
+ }
12788
+ /**
12789
+ *
12790
+ * @export
12791
+ * @interface RegistryOutputDTO
12792
+ */
12793
+ export interface RegistryOutputDTO {
12794
+ /**
12795
+ *
12796
+ * @type {string}
12797
+ * @memberof RegistryOutputDTO
12798
+ */
12799
+ url: string;
12800
+ /**
12801
+ *
12802
+ * @type {string}
12803
+ * @memberof RegistryOutputDTO
12804
+ */
12805
+ name: string;
12806
+ /**
12807
+ *
12808
+ * @type {string}
12809
+ * @memberof RegistryOutputDTO
12810
+ */
12811
+ description?: string;
12812
+ /**
12813
+ *
12814
+ * @type {string}
12815
+ * @memberof RegistryOutputDTO
12816
+ */
12817
+ id: string;
12818
+ /**
12819
+ *
12820
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
12821
+ * @memberof RegistryOutputDTO
12822
+ */
12823
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
12824
+ /**
12825
+ *
12826
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
12827
+ * @memberof RegistryOutputDTO
12828
+ */
12829
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
12830
+ }
12831
+ /**
12832
+ *
12833
+ * @export
12834
+ * @interface RegistrySubscribeBody
12835
+ */
12836
+ export interface RegistrySubscribeBody {
12837
+ /**
12838
+ *
12839
+ * @type {string}
12840
+ * @memberof RegistrySubscribeBody
12841
+ */
12842
+ url: string;
12843
+ }
12844
+ /**
12845
+ *
12846
+ * @export
12847
+ * @interface RegistrySubscribeInputDTO
12848
+ */
12849
+ export interface RegistrySubscribeInputDTO {
12850
+ /**
12851
+ *
12852
+ * @type {string}
12853
+ * @memberof RegistrySubscribeInputDTO
12854
+ */
12855
+ url: string;
12856
+ }
12857
+ /**
12858
+ *
12859
+ * @export
12860
+ * @interface RegistryUpdateDTO
12861
+ */
12862
+ export interface RegistryUpdateDTO {
12863
+ /**
12864
+ *
12865
+ * @type {string}
12866
+ * @memberof RegistryUpdateDTO
12867
+ */
12868
+ name?: string;
12869
+ /**
12870
+ *
12871
+ * @type {string}
12872
+ * @memberof RegistryUpdateDTO
12873
+ */
12874
+ description?: string;
12875
+ }
12876
+ /**
12877
+ *
12878
+ * @export
12879
+ * @interface RegistryWithManifestOutputDTO
12880
+ */
12881
+ export interface RegistryWithManifestOutputDTO {
12882
+ /**
12883
+ *
12884
+ * @type {string}
12885
+ * @memberof RegistryWithManifestOutputDTO
12886
+ */
12887
+ url: string;
12888
+ /**
12889
+ *
12890
+ * @type {string}
12891
+ * @memberof RegistryWithManifestOutputDTO
12892
+ */
12893
+ name: string;
12894
+ /**
12895
+ *
12896
+ * @type {string}
12897
+ * @memberof RegistryWithManifestOutputDTO
12898
+ */
12899
+ description?: string;
12900
+ /**
12901
+ *
12902
+ * @type {object}
12903
+ * @memberof RegistryWithManifestOutputDTO
12904
+ */
12905
+ manifest?: object;
12906
+ /**
12907
+ *
12908
+ * @type {string}
12909
+ * @memberof RegistryWithManifestOutputDTO
12910
+ */
12911
+ id: string;
12912
+ /**
12913
+ *
12914
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
12915
+ * @memberof RegistryWithManifestOutputDTO
12916
+ */
12917
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
12918
+ /**
12919
+ *
12920
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
12921
+ * @memberof RegistryWithManifestOutputDTO
12922
+ */
12923
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
12924
+ }
12925
+ /**
12926
+ *
12927
+ * @export
12928
+ * @interface RegistryWithManifestOutputDTOAPI
12929
+ */
12930
+ export interface RegistryWithManifestOutputDTOAPI {
12931
+ /**
12932
+ *
12933
+ * @type {RegistryWithManifestOutputDTO}
12934
+ * @memberof RegistryWithManifestOutputDTOAPI
12935
+ */
12936
+ data: RegistryWithManifestOutputDTO;
12937
+ /**
12938
+ *
12939
+ * @type {MetadataOutput}
12940
+ * @memberof RegistryWithManifestOutputDTOAPI
12941
+ */
12942
+ meta: MetadataOutput;
12943
+ }
11673
12944
  /**
11674
12945
  *
11675
12946
  * @export
@@ -13295,6 +14566,25 @@ export interface ShopDeadStockItemDTO {
13295
14566
  */
13296
14567
  daysSinceLastSale?: number;
13297
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
+ }
13298
14588
  /**
13299
14589
  *
13300
14590
  * @export
@@ -13320,6 +14610,44 @@ export interface ShopImportOptions {
13320
14610
  */
13321
14611
  gameServerId: string;
13322
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
+ }
13323
14651
  /**
13324
14652
  *
13325
14653
  * @export
@@ -14462,6 +15790,175 @@ export interface SmallModuleVersionOutputDTO {
14462
15790
  */
14463
15791
  updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
14464
15792
  }
15793
+ /**
15794
+ *
15795
+ * @export
15796
+ * @interface StorefrontConfigCreateDTO
15797
+ */
15798
+ export interface StorefrontConfigCreateDTO {
15799
+ /**
15800
+ *
15801
+ * @type {string}
15802
+ * @memberof StorefrontConfigCreateDTO
15803
+ */
15804
+ gameServerId: string;
15805
+ /**
15806
+ *
15807
+ * @type {string}
15808
+ * @memberof StorefrontConfigCreateDTO
15809
+ */
15810
+ templateId: string;
15811
+ /**
15812
+ *
15813
+ * @type {object}
15814
+ * @memberof StorefrontConfigCreateDTO
15815
+ */
15816
+ values?: object;
15817
+ }
15818
+ /**
15819
+ *
15820
+ * @export
15821
+ * @interface StorefrontConfigOutputDTO
15822
+ */
15823
+ export interface StorefrontConfigOutputDTO {
15824
+ /**
15825
+ *
15826
+ * @type {string}
15827
+ * @memberof StorefrontConfigOutputDTO
15828
+ */
15829
+ gameServerId: string;
15830
+ /**
15831
+ *
15832
+ * @type {string}
15833
+ * @memberof StorefrontConfigOutputDTO
15834
+ */
15835
+ templateId: string;
15836
+ /**
15837
+ *
15838
+ * @type {object}
15839
+ * @memberof StorefrontConfigOutputDTO
15840
+ */
15841
+ values: object;
15842
+ /**
15843
+ *
15844
+ * @type {string}
15845
+ * @memberof StorefrontConfigOutputDTO
15846
+ */
15847
+ id: string;
15848
+ /**
15849
+ *
15850
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
15851
+ * @memberof StorefrontConfigOutputDTO
15852
+ */
15853
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15854
+ /**
15855
+ *
15856
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
15857
+ * @memberof StorefrontConfigOutputDTO
15858
+ */
15859
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15860
+ }
15861
+ /**
15862
+ *
15863
+ * @export
15864
+ * @interface StorefrontConfigUpdateDTO
15865
+ */
15866
+ export interface StorefrontConfigUpdateDTO {
15867
+ /**
15868
+ *
15869
+ * @type {string}
15870
+ * @memberof StorefrontConfigUpdateDTO
15871
+ */
15872
+ templateId?: string;
15873
+ /**
15874
+ *
15875
+ * @type {object}
15876
+ * @memberof StorefrontConfigUpdateDTO
15877
+ */
15878
+ values?: object;
15879
+ }
15880
+ /**
15881
+ *
15882
+ * @export
15883
+ * @interface StorefrontConfigUpsertBody
15884
+ */
15885
+ export interface StorefrontConfigUpsertBody {
15886
+ /**
15887
+ *
15888
+ * @type {string}
15889
+ * @memberof StorefrontConfigUpsertBody
15890
+ */
15891
+ templateId: string;
15892
+ /**
15893
+ *
15894
+ * @type {object}
15895
+ * @memberof StorefrontConfigUpsertBody
15896
+ */
15897
+ values: object;
15898
+ }
15899
+ /**
15900
+ *
15901
+ * @export
15902
+ * @interface StorefrontConfigUpsertDTO
15903
+ */
15904
+ export interface StorefrontConfigUpsertDTO {
15905
+ /**
15906
+ *
15907
+ * @type {string}
15908
+ * @memberof StorefrontConfigUpsertDTO
15909
+ */
15910
+ templateId: string;
15911
+ /**
15912
+ *
15913
+ * @type {object}
15914
+ * @memberof StorefrontConfigUpsertDTO
15915
+ */
15916
+ values: object;
15917
+ }
15918
+ /**
15919
+ *
15920
+ * @export
15921
+ * @interface StorefrontTemplateDTO
15922
+ */
15923
+ export interface StorefrontTemplateDTO {
15924
+ /**
15925
+ *
15926
+ * @type {string}
15927
+ * @memberof StorefrontTemplateDTO
15928
+ */
15929
+ id: string;
15930
+ /**
15931
+ *
15932
+ * @type {string}
15933
+ * @memberof StorefrontTemplateDTO
15934
+ */
15935
+ name: string;
15936
+ /**
15937
+ *
15938
+ * @type {object}
15939
+ * @memberof StorefrontTemplateDTO
15940
+ */
15941
+ schema: object;
15942
+ }
15943
+ /**
15944
+ *
15945
+ * @export
15946
+ * @interface StorefrontTemplateOutputArrayDTOAPI
15947
+ */
15948
+ export interface StorefrontTemplateOutputArrayDTOAPI {
15949
+ /**
15950
+ *
15951
+ * @type {Array<StorefrontTemplateDTO>}
15952
+ * @memberof StorefrontTemplateOutputArrayDTOAPI
15953
+ */
15954
+ data: Array<StorefrontTemplateDTO>;
15955
+ /**
15956
+ *
15957
+ * @type {MetadataOutput}
15958
+ * @memberof StorefrontTemplateOutputArrayDTOAPI
15959
+ */
15960
+ meta: MetadataOutput;
15961
+ }
14465
15962
  /**
14466
15963
  *
14467
15964
  * @export
@@ -16072,6 +17569,38 @@ export interface UserAssignmentOutputDTO {
16072
17569
  */
16073
17570
  updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
16074
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
+ }
16075
17604
  /**
16076
17605
  *
16077
17606
  * @export
@@ -16219,6 +17748,12 @@ export interface UserOutputDTO {
16219
17748
  * @memberof UserOutputDTO
16220
17749
  */
16221
17750
  isDashboardUser: boolean;
17751
+ /**
17752
+ *
17753
+ * @type {boolean}
17754
+ * @memberof UserOutputDTO
17755
+ */
17756
+ isSupportAccount: boolean;
16222
17757
  /**
16223
17758
  *
16224
17759
  * @type {string}
@@ -16237,6 +17772,12 @@ export interface UserOutputDTO {
16237
17772
  * @memberof UserOutputDTO
16238
17773
  */
16239
17774
  updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
17775
+ /**
17776
+ *
17777
+ * @type {string}
17778
+ * @memberof UserOutputDTO
17779
+ */
17780
+ inviteLinkId?: string;
16240
17781
  }
16241
17782
  /**
16242
17783
  *
@@ -16335,6 +17876,37 @@ export interface UserOutputWithRolesDTO {
16335
17876
  * @memberof UserOutputWithRolesDTO
16336
17877
  */
16337
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;
16338
17910
  }
16339
17911
  /**
16340
17912
  *
@@ -17597,23 +19169,29 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
17597
19169
  };
17598
19170
  },
17599
19171
  /**
17600
- * Unified failure leaderboard across all module-item types (hooks, crons, commands, shop actions). Each row carries a `type` discriminator alongside runs, failures, and failure rate. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleItemFailureLeaderboard`
17601
- * @summary Get module item failure aggregate
19172
+ * Runs, failures and success rate for one module on one game server. Both gameServerId and moduleId are required. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleInstallationKpis`
19173
+ * @summary Get per-installation module KPIs
19174
+ * @param {string} gameServerId
19175
+ * @param {string} moduleId
17602
19176
  * @param {string} [startDate]
17603
19177
  * @param {string} [endDate]
17604
- * @param {string} [gameServerId]
17605
- * @param {AnalyticsControllerGetModuleItemFailureLeaderboardPeriodEnum} [period]
19178
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
17606
19179
  * @param {*} [options] Override http request option.
17607
19180
  * @throws {RequiredError}
17608
19181
  */
17609
- analyticsControllerGetModuleItemFailureLeaderboard: async (
19182
+ analyticsControllerGetModuleInstallationKpis: async (
19183
+ gameServerId: string,
19184
+ moduleId: string,
17610
19185
  startDate?: string,
17611
19186
  endDate?: string,
17612
- gameServerId?: string,
17613
- period?: AnalyticsControllerGetModuleItemFailureLeaderboardPeriodEnum,
19187
+ period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum,
17614
19188
  options: RawAxiosRequestConfig = {},
17615
19189
  ): Promise<RequestArgs> => {
17616
- const localVarPath = `/analytics/modules/items/failures`;
19190
+ // verify required parameter 'gameServerId' is not null or undefined
19191
+ assertParamExists('analyticsControllerGetModuleInstallationKpis', 'gameServerId', gameServerId);
19192
+ // verify required parameter 'moduleId' is not null or undefined
19193
+ assertParamExists('analyticsControllerGetModuleInstallationKpis', 'moduleId', moduleId);
19194
+ const localVarPath = `/analytics/modules/installation-kpis`;
17617
19195
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
17618
19196
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
17619
19197
  let baseOptions;
@@ -17639,6 +19217,10 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
17639
19217
  localVarQueryParameter['gameServerId'] = gameServerId;
17640
19218
  }
17641
19219
 
19220
+ if (moduleId !== undefined) {
19221
+ localVarQueryParameter['moduleId'] = moduleId;
19222
+ }
19223
+
17642
19224
  if (period !== undefined) {
17643
19225
  localVarQueryParameter['period'] = period;
17644
19226
  }
@@ -17653,23 +19235,23 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
17653
19235
  };
17654
19236
  },
17655
19237
  /**
17656
- * Returns one row per module-item type (hook, cron, command, shopAction) with total runs and failures. Zero-filled when no events exist so the response shape is stable. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleItemTypeSummary`
17657
- * @summary Get module item run/failure totals per type
19238
+ * Unified failure leaderboard across all module-item types (hooks, crons, commands, shop actions). Each row carries a `type` discriminator alongside runs, failures, and failure rate. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleItemFailureLeaderboard`
19239
+ * @summary Get module item failure aggregate
17658
19240
  * @param {string} [startDate]
17659
19241
  * @param {string} [endDate]
17660
19242
  * @param {string} [gameServerId]
17661
- * @param {AnalyticsControllerGetModuleItemTypeSummaryPeriodEnum} [period]
19243
+ * @param {AnalyticsControllerGetModuleItemFailureLeaderboardPeriodEnum} [period]
17662
19244
  * @param {*} [options] Override http request option.
17663
19245
  * @throws {RequiredError}
17664
19246
  */
17665
- analyticsControllerGetModuleItemTypeSummary: async (
19247
+ analyticsControllerGetModuleItemFailureLeaderboard: async (
17666
19248
  startDate?: string,
17667
19249
  endDate?: string,
17668
19250
  gameServerId?: string,
17669
- period?: AnalyticsControllerGetModuleItemTypeSummaryPeriodEnum,
19251
+ period?: AnalyticsControllerGetModuleItemFailureLeaderboardPeriodEnum,
17670
19252
  options: RawAxiosRequestConfig = {},
17671
19253
  ): Promise<RequestArgs> => {
17672
- const localVarPath = `/analytics/modules/items/summary`;
19254
+ const localVarPath = `/analytics/modules/items/failures`;
17673
19255
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
17674
19256
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
17675
19257
  let baseOptions;
@@ -17709,23 +19291,79 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
17709
19291
  };
17710
19292
  },
17711
19293
  /**
17712
- * Counts by status sourced from Postgres `shopOrder.status` (authoritative current state). Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `AnalyticsControllerGetOrderStatusMix`
17713
- * @summary Get shop order status distribution
19294
+ * Returns one row per module-item type (hook, cron, command, shopAction) with total runs and failures. Zero-filled when no events exist so the response shape is stable. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleItemTypeSummary`
19295
+ * @summary Get module item run/failure totals per type
17714
19296
  * @param {string} [startDate]
17715
19297
  * @param {string} [endDate]
17716
19298
  * @param {string} [gameServerId]
17717
- * @param {AnalyticsControllerGetOrderStatusMixPeriodEnum} [period]
19299
+ * @param {AnalyticsControllerGetModuleItemTypeSummaryPeriodEnum} [period]
17718
19300
  * @param {*} [options] Override http request option.
17719
19301
  * @throws {RequiredError}
17720
19302
  */
17721
- analyticsControllerGetOrderStatusMix: async (
19303
+ analyticsControllerGetModuleItemTypeSummary: async (
17722
19304
  startDate?: string,
17723
19305
  endDate?: string,
17724
19306
  gameServerId?: string,
17725
- period?: AnalyticsControllerGetOrderStatusMixPeriodEnum,
19307
+ period?: AnalyticsControllerGetModuleItemTypeSummaryPeriodEnum,
17726
19308
  options: RawAxiosRequestConfig = {},
17727
19309
  ): Promise<RequestArgs> => {
17728
- const localVarPath = `/analytics/shop/order-status-mix`;
19310
+ const localVarPath = `/analytics/modules/items/summary`;
19311
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
19312
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
19313
+ let baseOptions;
19314
+ if (configuration) {
19315
+ baseOptions = configuration.baseOptions;
19316
+ }
19317
+
19318
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
19319
+ const localVarHeaderParameter = {} as any;
19320
+ const localVarQueryParameter = {} as any;
19321
+
19322
+ // authentication domainAuth required
19323
+
19324
+ if (startDate !== undefined) {
19325
+ localVarQueryParameter['startDate'] = startDate;
19326
+ }
19327
+
19328
+ if (endDate !== undefined) {
19329
+ localVarQueryParameter['endDate'] = endDate;
19330
+ }
19331
+
19332
+ if (gameServerId !== undefined) {
19333
+ localVarQueryParameter['gameServerId'] = gameServerId;
19334
+ }
19335
+
19336
+ if (period !== undefined) {
19337
+ localVarQueryParameter['period'] = period;
19338
+ }
19339
+
19340
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
19341
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
19342
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
19343
+
19344
+ return {
19345
+ url: toPathString(localVarUrlObj),
19346
+ options: localVarRequestOptions,
19347
+ };
19348
+ },
19349
+ /**
19350
+ * Counts by status sourced from Postgres `shopOrder.status` (authoritative current state). Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `AnalyticsControllerGetOrderStatusMix`
19351
+ * @summary Get shop order status distribution
19352
+ * @param {string} [startDate]
19353
+ * @param {string} [endDate]
19354
+ * @param {string} [gameServerId]
19355
+ * @param {AnalyticsControllerGetOrderStatusMixPeriodEnum} [period]
19356
+ * @param {*} [options] Override http request option.
19357
+ * @throws {RequiredError}
19358
+ */
19359
+ analyticsControllerGetOrderStatusMix: async (
19360
+ startDate?: string,
19361
+ endDate?: string,
19362
+ gameServerId?: string,
19363
+ period?: AnalyticsControllerGetOrderStatusMixPeriodEnum,
19364
+ options: RawAxiosRequestConfig = {},
19365
+ ): Promise<RequestArgs> => {
19366
+ const localVarPath = `/analytics/shop/order-status-mix`;
17729
19367
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
17730
19368
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
17731
19369
  let baseOptions;
@@ -19230,6 +20868,45 @@ export const AnalyticsApiFp = function (configuration?: Configuration) {
19230
20868
  configuration,
19231
20869
  )(axios, localVarOperationServerBasePath || basePath);
19232
20870
  },
20871
+ /**
20872
+ * Runs, failures and success rate for one module on one game server. Both gameServerId and moduleId are required. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleInstallationKpis`
20873
+ * @summary Get per-installation module KPIs
20874
+ * @param {string} gameServerId
20875
+ * @param {string} moduleId
20876
+ * @param {string} [startDate]
20877
+ * @param {string} [endDate]
20878
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
20879
+ * @param {*} [options] Override http request option.
20880
+ * @throws {RequiredError}
20881
+ */
20882
+ async analyticsControllerGetModuleInstallationKpis(
20883
+ gameServerId: string,
20884
+ moduleId: string,
20885
+ startDate?: string,
20886
+ endDate?: string,
20887
+ period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum,
20888
+ options?: RawAxiosRequestConfig,
20889
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModuleInstallationKpisDTOAPI>> {
20890
+ const localVarAxiosArgs = await localVarAxiosParamCreator.analyticsControllerGetModuleInstallationKpis(
20891
+ gameServerId,
20892
+ moduleId,
20893
+ startDate,
20894
+ endDate,
20895
+ period,
20896
+ options,
20897
+ );
20898
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
20899
+ const localVarOperationServerBasePath =
20900
+ operationServerMap['AnalyticsApi.analyticsControllerGetModuleInstallationKpis']?.[localVarOperationServerIndex]
20901
+ ?.url;
20902
+ return (axios, basePath) =>
20903
+ createRequestFunction(
20904
+ localVarAxiosArgs,
20905
+ globalAxios,
20906
+ BASE_PATH,
20907
+ configuration,
20908
+ )(axios, localVarOperationServerBasePath || basePath);
20909
+ },
19233
20910
  /**
19234
20911
  * Unified failure leaderboard across all module-item types (hooks, crons, commands, shop actions). Each row carries a `type` discriminator alongside runs, failures, and failure rate. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleItemFailureLeaderboard`
19235
20912
  * @summary Get module item failure aggregate
@@ -20251,6 +21928,29 @@ export const AnalyticsApiFactory = function (configuration?: Configuration, base
20251
21928
  .analyticsControllerGetModuleHealth(startDate, endDate, gameServerId, period, options)
20252
21929
  .then((request) => request(axios, basePath));
20253
21930
  },
21931
+ /**
21932
+ * Runs, failures and success rate for one module on one game server. Both gameServerId and moduleId are required. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleInstallationKpis`
21933
+ * @summary Get per-installation module KPIs
21934
+ * @param {string} gameServerId
21935
+ * @param {string} moduleId
21936
+ * @param {string} [startDate]
21937
+ * @param {string} [endDate]
21938
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
21939
+ * @param {*} [options] Override http request option.
21940
+ * @throws {RequiredError}
21941
+ */
21942
+ analyticsControllerGetModuleInstallationKpis(
21943
+ gameServerId: string,
21944
+ moduleId: string,
21945
+ startDate?: string,
21946
+ endDate?: string,
21947
+ period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum,
21948
+ options?: RawAxiosRequestConfig,
21949
+ ): AxiosPromise<ModuleInstallationKpisDTOAPI> {
21950
+ return localVarFp
21951
+ .analyticsControllerGetModuleInstallationKpis(gameServerId, moduleId, startDate, endDate, period, options)
21952
+ .then((request) => request(axios, basePath));
21953
+ },
20254
21954
  /**
20255
21955
  * Unified failure leaderboard across all module-item types (hooks, crons, commands, shop actions). Each row carries a `type` discriminator alongside runs, failures, and failure rate. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleItemFailureLeaderboard`
20256
21956
  * @summary Get module item failure aggregate
@@ -20993,6 +22693,31 @@ export class AnalyticsApi extends BaseAPI {
20993
22693
  .then((request) => request(this.axios, this.basePath));
20994
22694
  }
20995
22695
 
22696
+ /**
22697
+ * Runs, failures and success rate for one module on one game server. Both gameServerId and moduleId are required. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleInstallationKpis`
22698
+ * @summary Get per-installation module KPIs
22699
+ * @param {string} gameServerId
22700
+ * @param {string} moduleId
22701
+ * @param {string} [startDate]
22702
+ * @param {string} [endDate]
22703
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
22704
+ * @param {*} [options] Override http request option.
22705
+ * @throws {RequiredError}
22706
+ * @memberof AnalyticsApi
22707
+ */
22708
+ public analyticsControllerGetModuleInstallationKpis(
22709
+ gameServerId: string,
22710
+ moduleId: string,
22711
+ startDate?: string,
22712
+ endDate?: string,
22713
+ period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum,
22714
+ options?: RawAxiosRequestConfig,
22715
+ ) {
22716
+ return AnalyticsApiFp(this.configuration)
22717
+ .analyticsControllerGetModuleInstallationKpis(gameServerId, moduleId, startDate, endDate, period, options)
22718
+ .then((request) => request(this.axios, this.basePath));
22719
+ }
22720
+
20996
22721
  /**
20997
22722
  * Unified failure leaderboard across all module-item types (hooks, crons, commands, shop actions). Each row carries a `type` discriminator alongside runs, failures, and failure rate. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleItemFailureLeaderboard`
20998
22723
  * @summary Get module item failure aggregate
@@ -21612,6 +23337,17 @@ export type AnalyticsControllerGetModuleHealthPeriodEnum =
21612
23337
  /**
21613
23338
  * @export
21614
23339
  */
23340
+ export const AnalyticsControllerGetModuleInstallationKpisPeriodEnum = {
23341
+ _24h: '24h',
23342
+ _7d: '7d',
23343
+ _30d: '30d',
23344
+ _90d: '90d',
23345
+ } as const;
23346
+ export type AnalyticsControllerGetModuleInstallationKpisPeriodEnum =
23347
+ (typeof AnalyticsControllerGetModuleInstallationKpisPeriodEnum)[keyof typeof AnalyticsControllerGetModuleInstallationKpisPeriodEnum];
23348
+ /**
23349
+ * @export
23350
+ */
21615
23351
  export const AnalyticsControllerGetModuleItemFailureLeaderboardPeriodEnum = {
21616
23352
  _24h: '24h',
21617
23353
  _7d: '7d',
@@ -21841,6 +23577,345 @@ export const AnalyticsControllerGetTopServersPeriodEnum = {
21841
23577
  export type AnalyticsControllerGetTopServersPeriodEnum =
21842
23578
  (typeof AnalyticsControllerGetTopServersPeriodEnum)[keyof typeof AnalyticsControllerGetTopServersPeriodEnum];
21843
23579
 
23580
+ /**
23581
+ * AuthApi - axios parameter creator
23582
+ * @export
23583
+ */
23584
+ export const AuthApiAxiosParamCreator = function (configuration?: Configuration) {
23585
+ return {
23586
+ /**
23587
+ * <br> OperationId: `AuthControllerAccount`
23588
+ * @summary Account
23589
+ * @param {*} [options] Override http request option.
23590
+ * @throws {RequiredError}
23591
+ */
23592
+ authControllerAccount: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
23593
+ const localVarPath = `/auth/account`;
23594
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
23595
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
23596
+ let baseOptions;
23597
+ if (configuration) {
23598
+ baseOptions = configuration.baseOptions;
23599
+ }
23600
+
23601
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
23602
+ const localVarHeaderParameter = {} as any;
23603
+ const localVarQueryParameter = {} as any;
23604
+
23605
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
23606
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
23607
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
23608
+
23609
+ return {
23610
+ url: toPathString(localVarUrlObj),
23611
+ options: localVarRequestOptions,
23612
+ };
23613
+ },
23614
+ /**
23615
+ * <br> OperationId: `AuthControllerCallback`
23616
+ * @summary Callback
23617
+ * @param {*} [options] Override http request option.
23618
+ * @throws {RequiredError}
23619
+ */
23620
+ authControllerCallback: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
23621
+ const localVarPath = `/auth/callback`;
23622
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
23623
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
23624
+ let baseOptions;
23625
+ if (configuration) {
23626
+ baseOptions = configuration.baseOptions;
23627
+ }
23628
+
23629
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
23630
+ const localVarHeaderParameter = {} as any;
23631
+ const localVarQueryParameter = {} as any;
23632
+
23633
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
23634
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
23635
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
23636
+
23637
+ return {
23638
+ url: toPathString(localVarUrlObj),
23639
+ options: localVarRequestOptions,
23640
+ };
23641
+ },
23642
+ /**
23643
+ * <br> OperationId: `AuthControllerLogin`
23644
+ * @summary Login
23645
+ * @param {string} [redirect]
23646
+ * @param {*} [options] Override http request option.
23647
+ * @throws {RequiredError}
23648
+ */
23649
+ authControllerLogin: async (redirect?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
23650
+ const localVarPath = `/auth/login`;
23651
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
23652
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
23653
+ let baseOptions;
23654
+ if (configuration) {
23655
+ baseOptions = configuration.baseOptions;
23656
+ }
23657
+
23658
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
23659
+ const localVarHeaderParameter = {} as any;
23660
+ const localVarQueryParameter = {} as any;
23661
+
23662
+ if (redirect !== undefined) {
23663
+ localVarQueryParameter['redirect'] = redirect;
23664
+ }
23665
+
23666
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
23667
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
23668
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
23669
+
23670
+ return {
23671
+ url: toPathString(localVarUrlObj),
23672
+ options: localVarRequestOptions,
23673
+ };
23674
+ },
23675
+ /**
23676
+ * <br> OperationId: `AuthControllerLogout`
23677
+ * @summary Logout
23678
+ * @param {string} [redirect]
23679
+ * @param {*} [options] Override http request option.
23680
+ * @throws {RequiredError}
23681
+ */
23682
+ authControllerLogout: async (redirect?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
23683
+ const localVarPath = `/auth/logout`;
23684
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
23685
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
23686
+ let baseOptions;
23687
+ if (configuration) {
23688
+ baseOptions = configuration.baseOptions;
23689
+ }
23690
+
23691
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
23692
+ const localVarHeaderParameter = {} as any;
23693
+ const localVarQueryParameter = {} as any;
23694
+
23695
+ if (redirect !== undefined) {
23696
+ localVarQueryParameter['redirect'] = redirect;
23697
+ }
23698
+
23699
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
23700
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
23701
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
23702
+
23703
+ return {
23704
+ url: toPathString(localVarUrlObj),
23705
+ options: localVarRequestOptions,
23706
+ };
23707
+ },
23708
+ };
23709
+ };
23710
+
23711
+ /**
23712
+ * AuthApi - functional programming interface
23713
+ * @export
23714
+ */
23715
+ export const AuthApiFp = function (configuration?: Configuration) {
23716
+ const localVarAxiosParamCreator = AuthApiAxiosParamCreator(configuration);
23717
+ return {
23718
+ /**
23719
+ * <br> OperationId: `AuthControllerAccount`
23720
+ * @summary Account
23721
+ * @param {*} [options] Override http request option.
23722
+ * @throws {RequiredError}
23723
+ */
23724
+ async authControllerAccount(
23725
+ options?: RawAxiosRequestConfig,
23726
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
23727
+ const localVarAxiosArgs = await localVarAxiosParamCreator.authControllerAccount(options);
23728
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
23729
+ const localVarOperationServerBasePath =
23730
+ operationServerMap['AuthApi.authControllerAccount']?.[localVarOperationServerIndex]?.url;
23731
+ return (axios, basePath) =>
23732
+ createRequestFunction(
23733
+ localVarAxiosArgs,
23734
+ globalAxios,
23735
+ BASE_PATH,
23736
+ configuration,
23737
+ )(axios, localVarOperationServerBasePath || basePath);
23738
+ },
23739
+ /**
23740
+ * <br> OperationId: `AuthControllerCallback`
23741
+ * @summary Callback
23742
+ * @param {*} [options] Override http request option.
23743
+ * @throws {RequiredError}
23744
+ */
23745
+ async authControllerCallback(
23746
+ options?: RawAxiosRequestConfig,
23747
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
23748
+ const localVarAxiosArgs = await localVarAxiosParamCreator.authControllerCallback(options);
23749
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
23750
+ const localVarOperationServerBasePath =
23751
+ operationServerMap['AuthApi.authControllerCallback']?.[localVarOperationServerIndex]?.url;
23752
+ return (axios, basePath) =>
23753
+ createRequestFunction(
23754
+ localVarAxiosArgs,
23755
+ globalAxios,
23756
+ BASE_PATH,
23757
+ configuration,
23758
+ )(axios, localVarOperationServerBasePath || basePath);
23759
+ },
23760
+ /**
23761
+ * <br> OperationId: `AuthControllerLogin`
23762
+ * @summary Login
23763
+ * @param {string} [redirect]
23764
+ * @param {*} [options] Override http request option.
23765
+ * @throws {RequiredError}
23766
+ */
23767
+ async authControllerLogin(
23768
+ redirect?: string,
23769
+ options?: RawAxiosRequestConfig,
23770
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
23771
+ const localVarAxiosArgs = await localVarAxiosParamCreator.authControllerLogin(redirect, options);
23772
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
23773
+ const localVarOperationServerBasePath =
23774
+ operationServerMap['AuthApi.authControllerLogin']?.[localVarOperationServerIndex]?.url;
23775
+ return (axios, basePath) =>
23776
+ createRequestFunction(
23777
+ localVarAxiosArgs,
23778
+ globalAxios,
23779
+ BASE_PATH,
23780
+ configuration,
23781
+ )(axios, localVarOperationServerBasePath || basePath);
23782
+ },
23783
+ /**
23784
+ * <br> OperationId: `AuthControllerLogout`
23785
+ * @summary Logout
23786
+ * @param {string} [redirect]
23787
+ * @param {*} [options] Override http request option.
23788
+ * @throws {RequiredError}
23789
+ */
23790
+ async authControllerLogout(
23791
+ redirect?: string,
23792
+ options?: RawAxiosRequestConfig,
23793
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
23794
+ const localVarAxiosArgs = await localVarAxiosParamCreator.authControllerLogout(redirect, options);
23795
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
23796
+ const localVarOperationServerBasePath =
23797
+ operationServerMap['AuthApi.authControllerLogout']?.[localVarOperationServerIndex]?.url;
23798
+ return (axios, basePath) =>
23799
+ createRequestFunction(
23800
+ localVarAxiosArgs,
23801
+ globalAxios,
23802
+ BASE_PATH,
23803
+ configuration,
23804
+ )(axios, localVarOperationServerBasePath || basePath);
23805
+ },
23806
+ };
23807
+ };
23808
+
23809
+ /**
23810
+ * AuthApi - factory interface
23811
+ * @export
23812
+ */
23813
+ export const AuthApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
23814
+ const localVarFp = AuthApiFp(configuration);
23815
+ return {
23816
+ /**
23817
+ * <br> OperationId: `AuthControllerAccount`
23818
+ * @summary Account
23819
+ * @param {*} [options] Override http request option.
23820
+ * @throws {RequiredError}
23821
+ */
23822
+ authControllerAccount(options?: RawAxiosRequestConfig): AxiosPromise<void> {
23823
+ return localVarFp.authControllerAccount(options).then((request) => request(axios, basePath));
23824
+ },
23825
+ /**
23826
+ * <br> OperationId: `AuthControllerCallback`
23827
+ * @summary Callback
23828
+ * @param {*} [options] Override http request option.
23829
+ * @throws {RequiredError}
23830
+ */
23831
+ authControllerCallback(options?: RawAxiosRequestConfig): AxiosPromise<void> {
23832
+ return localVarFp.authControllerCallback(options).then((request) => request(axios, basePath));
23833
+ },
23834
+ /**
23835
+ * <br> OperationId: `AuthControllerLogin`
23836
+ * @summary Login
23837
+ * @param {string} [redirect]
23838
+ * @param {*} [options] Override http request option.
23839
+ * @throws {RequiredError}
23840
+ */
23841
+ authControllerLogin(redirect?: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
23842
+ return localVarFp.authControllerLogin(redirect, options).then((request) => request(axios, basePath));
23843
+ },
23844
+ /**
23845
+ * <br> OperationId: `AuthControllerLogout`
23846
+ * @summary Logout
23847
+ * @param {string} [redirect]
23848
+ * @param {*} [options] Override http request option.
23849
+ * @throws {RequiredError}
23850
+ */
23851
+ authControllerLogout(redirect?: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
23852
+ return localVarFp.authControllerLogout(redirect, options).then((request) => request(axios, basePath));
23853
+ },
23854
+ };
23855
+ };
23856
+
23857
+ /**
23858
+ * AuthApi - object-oriented interface
23859
+ * @export
23860
+ * @class AuthApi
23861
+ * @extends {BaseAPI}
23862
+ */
23863
+ export class AuthApi extends BaseAPI {
23864
+ /**
23865
+ * <br> OperationId: `AuthControllerAccount`
23866
+ * @summary Account
23867
+ * @param {*} [options] Override http request option.
23868
+ * @throws {RequiredError}
23869
+ * @memberof AuthApi
23870
+ */
23871
+ public authControllerAccount(options?: RawAxiosRequestConfig) {
23872
+ return AuthApiFp(this.configuration)
23873
+ .authControllerAccount(options)
23874
+ .then((request) => request(this.axios, this.basePath));
23875
+ }
23876
+
23877
+ /**
23878
+ * <br> OperationId: `AuthControllerCallback`
23879
+ * @summary Callback
23880
+ * @param {*} [options] Override http request option.
23881
+ * @throws {RequiredError}
23882
+ * @memberof AuthApi
23883
+ */
23884
+ public authControllerCallback(options?: RawAxiosRequestConfig) {
23885
+ return AuthApiFp(this.configuration)
23886
+ .authControllerCallback(options)
23887
+ .then((request) => request(this.axios, this.basePath));
23888
+ }
23889
+
23890
+ /**
23891
+ * <br> OperationId: `AuthControllerLogin`
23892
+ * @summary Login
23893
+ * @param {string} [redirect]
23894
+ * @param {*} [options] Override http request option.
23895
+ * @throws {RequiredError}
23896
+ * @memberof AuthApi
23897
+ */
23898
+ public authControllerLogin(redirect?: string, options?: RawAxiosRequestConfig) {
23899
+ return AuthApiFp(this.configuration)
23900
+ .authControllerLogin(redirect, options)
23901
+ .then((request) => request(this.axios, this.basePath));
23902
+ }
23903
+
23904
+ /**
23905
+ * <br> OperationId: `AuthControllerLogout`
23906
+ * @summary Logout
23907
+ * @param {string} [redirect]
23908
+ * @param {*} [options] Override http request option.
23909
+ * @throws {RequiredError}
23910
+ * @memberof AuthApi
23911
+ */
23912
+ public authControllerLogout(redirect?: string, options?: RawAxiosRequestConfig) {
23913
+ return AuthApiFp(this.configuration)
23914
+ .authControllerLogout(redirect, options)
23915
+ .then((request) => request(this.axios, this.basePath));
23916
+ }
23917
+ }
23918
+
21844
23919
  /**
21845
23920
  * CommandApi - axios parameter creator
21846
23921
  * @export
@@ -25224,8 +27299,8 @@ export const EventApiAxiosParamCreator = function (configuration?: Configuration
25224
27299
  };
25225
27300
  },
25226
27301
  /**
25227
- * Cursor-paginated event search powered by ClickHouse. Rows are hydrated with current entity names (player, gameserver, module, user) from Postgres. Use the returned `nextCursor` to fetch older events; pass `cursor: null` (or omit) to start from the newest. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExplore`
25228
- * @summary Explore events (ClickHouse-backed)
27302
+ * Cursor-paginated event search. Rows are hydrated with the current display names of their related entities (player, gameserver, module, user). Use the returned `nextCursor` to fetch older events; pass `cursor: null` (or omit) to start from the newest. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExplore`
27303
+ * @summary Explore events
25229
27304
  * @param {EventExploreInputDTO} [eventExploreInputDTO] EventExploreInputDTO
25230
27305
  * @param {*} [options] Override http request option.
25231
27306
  * @throws {RequiredError}
@@ -25261,7 +27336,7 @@ export const EventApiAxiosParamCreator = function (configuration?: Configuration
25261
27336
  };
25262
27337
  },
25263
27338
  /**
25264
- * Returns time-bucketed event counts, optionally stacked by event name or game server. Accepts the same filter shape as `/event/explore` so the graph matches the stream. Bucket size adapts to the range. Caches preset-period queries with empty filters/metaFilters. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExploreVolume`
27339
+ * Returns time-bucketed event counts, optionally stacked by event name or game server. Accepts the same filter shape as `/event/explore` so the graph matches the stream. Bucket size adapts to the range. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExploreVolume`
25265
27340
  * @summary Get event volume time-series with optional grouping
25266
27341
  * @param {EventVolumeInputDTO} [eventVolumeInputDTO] EventVolumeInputDTO
25267
27342
  * @param {*} [options] Override http request option.
@@ -25475,8 +27550,8 @@ export const EventApiFp = function (configuration?: Configuration) {
25475
27550
  )(axios, localVarOperationServerBasePath || basePath);
25476
27551
  },
25477
27552
  /**
25478
- * Cursor-paginated event search powered by ClickHouse. Rows are hydrated with current entity names (player, gameserver, module, user) from Postgres. Use the returned `nextCursor` to fetch older events; pass `cursor: null` (or omit) to start from the newest. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExplore`
25479
- * @summary Explore events (ClickHouse-backed)
27553
+ * Cursor-paginated event search. Rows are hydrated with the current display names of their related entities (player, gameserver, module, user). Use the returned `nextCursor` to fetch older events; pass `cursor: null` (or omit) to start from the newest. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExplore`
27554
+ * @summary Explore events
25480
27555
  * @param {EventExploreInputDTO} [eventExploreInputDTO] EventExploreInputDTO
25481
27556
  * @param {*} [options] Override http request option.
25482
27557
  * @throws {RequiredError}
@@ -25498,7 +27573,7 @@ export const EventApiFp = function (configuration?: Configuration) {
25498
27573
  )(axios, localVarOperationServerBasePath || basePath);
25499
27574
  },
25500
27575
  /**
25501
- * Returns time-bucketed event counts, optionally stacked by event name or game server. Accepts the same filter shape as `/event/explore` so the graph matches the stream. Bucket size adapts to the range. Caches preset-period queries with empty filters/metaFilters. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExploreVolume`
27576
+ * Returns time-bucketed event counts, optionally stacked by event name or game server. Accepts the same filter shape as `/event/explore` so the graph matches the stream. Bucket size adapts to the range. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExploreVolume`
25502
27577
  * @summary Get event volume time-series with optional grouping
25503
27578
  * @param {EventVolumeInputDTO} [eventVolumeInputDTO] EventVolumeInputDTO
25504
27579
  * @param {*} [options] Override http request option.
@@ -25642,8 +27717,8 @@ export const EventApiFactory = function (configuration?: Configuration, basePath
25642
27717
  return localVarFp.eventControllerCreate(eventCreateDTO, options).then((request) => request(axios, basePath));
25643
27718
  },
25644
27719
  /**
25645
- * Cursor-paginated event search powered by ClickHouse. Rows are hydrated with current entity names (player, gameserver, module, user) from Postgres. Use the returned `nextCursor` to fetch older events; pass `cursor: null` (or omit) to start from the newest. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExplore`
25646
- * @summary Explore events (ClickHouse-backed)
27720
+ * Cursor-paginated event search. Rows are hydrated with the current display names of their related entities (player, gameserver, module, user). Use the returned `nextCursor` to fetch older events; pass `cursor: null` (or omit) to start from the newest. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExplore`
27721
+ * @summary Explore events
25647
27722
  * @param {EventExploreInputDTO} [eventExploreInputDTO] EventExploreInputDTO
25648
27723
  * @param {*} [options] Override http request option.
25649
27724
  * @throws {RequiredError}
@@ -25657,7 +27732,7 @@ export const EventApiFactory = function (configuration?: Configuration, basePath
25657
27732
  .then((request) => request(axios, basePath));
25658
27733
  },
25659
27734
  /**
25660
- * Returns time-bucketed event counts, optionally stacked by event name or game server. Accepts the same filter shape as `/event/explore` so the graph matches the stream. Bucket size adapts to the range. Caches preset-period queries with empty filters/metaFilters. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExploreVolume`
27735
+ * Returns time-bucketed event counts, optionally stacked by event name or game server. Accepts the same filter shape as `/event/explore` so the graph matches the stream. Bucket size adapts to the range. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExploreVolume`
25661
27736
  * @summary Get event volume time-series with optional grouping
25662
27737
  * @param {EventVolumeInputDTO} [eventVolumeInputDTO] EventVolumeInputDTO
25663
27738
  * @param {*} [options] Override http request option.
@@ -25747,8 +27822,8 @@ export class EventApi extends BaseAPI {
25747
27822
  }
25748
27823
 
25749
27824
  /**
25750
- * Cursor-paginated event search powered by ClickHouse. Rows are hydrated with current entity names (player, gameserver, module, user) from Postgres. Use the returned `nextCursor` to fetch older events; pass `cursor: null` (or omit) to start from the newest. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExplore`
25751
- * @summary Explore events (ClickHouse-backed)
27825
+ * Cursor-paginated event search. Rows are hydrated with the current display names of their related entities (player, gameserver, module, user). Use the returned `nextCursor` to fetch older events; pass `cursor: null` (or omit) to start from the newest. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExplore`
27826
+ * @summary Explore events
25752
27827
  * @param {EventExploreInputDTO} [eventExploreInputDTO] EventExploreInputDTO
25753
27828
  * @param {*} [options] Override http request option.
25754
27829
  * @throws {RequiredError}
@@ -25761,7 +27836,7 @@ export class EventApi extends BaseAPI {
25761
27836
  }
25762
27837
 
25763
27838
  /**
25764
- * Returns time-bucketed event counts, optionally stacked by event name or game server. Accepts the same filter shape as `/event/explore` so the graph matches the stream. Bucket size adapts to the range. Caches preset-period queries with empty filters/metaFilters. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExploreVolume`
27839
+ * Returns time-bucketed event counts, optionally stacked by event name or game server. Accepts the same filter shape as `/event/explore` so the graph matches the stream. Bucket size adapts to the range. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExploreVolume`
25765
27840
  * @summary Get event volume time-series with optional grouping
25766
27841
  * @param {EventVolumeInputDTO} [eventVolumeInputDTO] EventVolumeInputDTO
25767
27842
  * @param {*} [options] Override http request option.
@@ -31978,6 +34053,51 @@ export const PlayerApiAxiosParamCreator = function (configuration?: Configuratio
31978
34053
  options: localVarRequestOptions,
31979
34054
  };
31980
34055
  },
34056
+ /**
34057
+ * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
34058
+ * @summary Bulk assign role
34059
+ * @param {string} roleId
34060
+ * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
34061
+ * @param {*} [options] Override http request option.
34062
+ * @throws {RequiredError}
34063
+ */
34064
+ playerControllerBulkAssignRole: async (
34065
+ roleId: string,
34066
+ playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO,
34067
+ options: RawAxiosRequestConfig = {},
34068
+ ): Promise<RequestArgs> => {
34069
+ // verify required parameter 'roleId' is not null or undefined
34070
+ assertParamExists('playerControllerBulkAssignRole', 'roleId', roleId);
34071
+ const localVarPath = `/player/role/{roleId}`.replace(`{${'roleId'}}`, encodeURIComponent(String(roleId)));
34072
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
34073
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
34074
+ let baseOptions;
34075
+ if (configuration) {
34076
+ baseOptions = configuration.baseOptions;
34077
+ }
34078
+
34079
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
34080
+ const localVarHeaderParameter = {} as any;
34081
+ const localVarQueryParameter = {} as any;
34082
+
34083
+ // authentication domainAuth required
34084
+
34085
+ localVarHeaderParameter['Content-Type'] = 'application/json';
34086
+
34087
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
34088
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
34089
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
34090
+ localVarRequestOptions.data = serializeDataIfNeeded(
34091
+ playerBulkAssignRoleInputDTO,
34092
+ localVarRequestOptions,
34093
+ configuration,
34094
+ );
34095
+
34096
+ return {
34097
+ url: toPathString(localVarUrlObj),
34098
+ options: localVarRequestOptions,
34099
+ };
34100
+ },
31981
34101
  /**
31982
34102
  * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
31983
34103
  * @summary Bulk delete
@@ -32362,6 +34482,35 @@ export const PlayerApiFp = function (configuration?: Configuration) {
32362
34482
  configuration,
32363
34483
  )(axios, localVarOperationServerBasePath || basePath);
32364
34484
  },
34485
+ /**
34486
+ * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
34487
+ * @summary Bulk assign role
34488
+ * @param {string} roleId
34489
+ * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
34490
+ * @param {*} [options] Override http request option.
34491
+ * @throws {RequiredError}
34492
+ */
34493
+ async playerControllerBulkAssignRole(
34494
+ roleId: string,
34495
+ playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO,
34496
+ options?: RawAxiosRequestConfig,
34497
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerBulkAssignRoleOutputDTOAPI>> {
34498
+ const localVarAxiosArgs = await localVarAxiosParamCreator.playerControllerBulkAssignRole(
34499
+ roleId,
34500
+ playerBulkAssignRoleInputDTO,
34501
+ options,
34502
+ );
34503
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
34504
+ const localVarOperationServerBasePath =
34505
+ operationServerMap['PlayerApi.playerControllerBulkAssignRole']?.[localVarOperationServerIndex]?.url;
34506
+ return (axios, basePath) =>
34507
+ createRequestFunction(
34508
+ localVarAxiosArgs,
34509
+ globalAxios,
34510
+ BASE_PATH,
34511
+ configuration,
34512
+ )(axios, localVarOperationServerBasePath || basePath);
34513
+ },
32365
34514
  /**
32366
34515
  * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
32367
34516
  * @summary Bulk delete
@@ -32597,6 +34746,23 @@ export const PlayerApiFactory = function (configuration?: Configuration, basePat
32597
34746
  .playerControllerAssignRole(id, roleId, playerRoleAssignChangeDTO, options)
32598
34747
  .then((request) => request(axios, basePath));
32599
34748
  },
34749
+ /**
34750
+ * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
34751
+ * @summary Bulk assign role
34752
+ * @param {string} roleId
34753
+ * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
34754
+ * @param {*} [options] Override http request option.
34755
+ * @throws {RequiredError}
34756
+ */
34757
+ playerControllerBulkAssignRole(
34758
+ roleId: string,
34759
+ playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO,
34760
+ options?: RawAxiosRequestConfig,
34761
+ ): AxiosPromise<PlayerBulkAssignRoleOutputDTOAPI> {
34762
+ return localVarFp
34763
+ .playerControllerBulkAssignRole(roleId, playerBulkAssignRoleInputDTO, options)
34764
+ .then((request) => request(axios, basePath));
34765
+ },
32600
34766
  /**
32601
34767
  * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
32602
34768
  * @summary Bulk delete
@@ -32777,6 +34943,25 @@ export class PlayerApi extends BaseAPI {
32777
34943
  .then((request) => request(this.axios, this.basePath));
32778
34944
  }
32779
34945
 
34946
+ /**
34947
+ * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
34948
+ * @summary Bulk assign role
34949
+ * @param {string} roleId
34950
+ * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
34951
+ * @param {*} [options] Override http request option.
34952
+ * @throws {RequiredError}
34953
+ * @memberof PlayerApi
34954
+ */
34955
+ public playerControllerBulkAssignRole(
34956
+ roleId: string,
34957
+ playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO,
34958
+ options?: RawAxiosRequestConfig,
34959
+ ) {
34960
+ return PlayerApiFp(this.configuration)
34961
+ .playerControllerBulkAssignRole(roleId, playerBulkAssignRoleInputDTO, options)
34962
+ .then((request) => request(this.axios, this.basePath));
34963
+ }
34964
+
32780
34965
  /**
32781
34966
  * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
32782
34967
  * @summary Bulk delete
@@ -32928,6 +35113,54 @@ export const PlayerOnGameServerApiAxiosParamCreator = function (configuration?:
32928
35113
  options: localVarRequestOptions,
32929
35114
  };
32930
35115
  },
35116
+ /**
35117
+ * 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`
35118
+ * @summary Bulk add currency
35119
+ * @param {string} gameServerId
35120
+ * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
35121
+ * @param {*} [options] Override http request option.
35122
+ * @throws {RequiredError}
35123
+ */
35124
+ playerOnGameServerControllerBulkAddCurrency: async (
35125
+ gameServerId: string,
35126
+ pogBulkAddCurrencyInputDTO?: PogBulkAddCurrencyInputDTO,
35127
+ options: RawAxiosRequestConfig = {},
35128
+ ): Promise<RequestArgs> => {
35129
+ // verify required parameter 'gameServerId' is not null or undefined
35130
+ assertParamExists('playerOnGameServerControllerBulkAddCurrency', 'gameServerId', gameServerId);
35131
+ const localVarPath = `/gameserver/{gameServerId}/addCurrency`.replace(
35132
+ `{${'gameServerId'}}`,
35133
+ encodeURIComponent(String(gameServerId)),
35134
+ );
35135
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
35136
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
35137
+ let baseOptions;
35138
+ if (configuration) {
35139
+ baseOptions = configuration.baseOptions;
35140
+ }
35141
+
35142
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
35143
+ const localVarHeaderParameter = {} as any;
35144
+ const localVarQueryParameter = {} as any;
35145
+
35146
+ // authentication domainAuth required
35147
+
35148
+ localVarHeaderParameter['Content-Type'] = 'application/json';
35149
+
35150
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
35151
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
35152
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
35153
+ localVarRequestOptions.data = serializeDataIfNeeded(
35154
+ pogBulkAddCurrencyInputDTO,
35155
+ localVarRequestOptions,
35156
+ configuration,
35157
+ );
35158
+
35159
+ return {
35160
+ url: toPathString(localVarUrlObj),
35161
+ options: localVarRequestOptions,
35162
+ };
35163
+ },
32931
35164
  /**
32932
35165
  * Bulk delete POG records by player IDs for a specific gameserver. Deletes POG records only, Player records remain intact. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkDelete`
32933
35166
  * @summary Bulk delete
@@ -33299,6 +35532,37 @@ export const PlayerOnGameServerApiFp = function (configuration?: Configuration)
33299
35532
  configuration,
33300
35533
  )(axios, localVarOperationServerBasePath || basePath);
33301
35534
  },
35535
+ /**
35536
+ * 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`
35537
+ * @summary Bulk add currency
35538
+ * @param {string} gameServerId
35539
+ * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
35540
+ * @param {*} [options] Override http request option.
35541
+ * @throws {RequiredError}
35542
+ */
35543
+ async playerOnGameServerControllerBulkAddCurrency(
35544
+ gameServerId: string,
35545
+ pogBulkAddCurrencyInputDTO?: PogBulkAddCurrencyInputDTO,
35546
+ options?: RawAxiosRequestConfig,
35547
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PogBulkAddCurrencyOutputDTOAPI>> {
35548
+ const localVarAxiosArgs = await localVarAxiosParamCreator.playerOnGameServerControllerBulkAddCurrency(
35549
+ gameServerId,
35550
+ pogBulkAddCurrencyInputDTO,
35551
+ options,
35552
+ );
35553
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
35554
+ const localVarOperationServerBasePath =
35555
+ operationServerMap['PlayerOnGameServerApi.playerOnGameServerControllerBulkAddCurrency']?.[
35556
+ localVarOperationServerIndex
35557
+ ]?.url;
35558
+ return (axios, basePath) =>
35559
+ createRequestFunction(
35560
+ localVarAxiosArgs,
35561
+ globalAxios,
35562
+ BASE_PATH,
35563
+ configuration,
35564
+ )(axios, localVarOperationServerBasePath || basePath);
35565
+ },
33302
35566
  /**
33303
35567
  * Bulk delete POG records by player IDs for a specific gameserver. Deletes POG records only, Player records remain intact. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkDelete`
33304
35568
  * @summary Bulk delete
@@ -33555,6 +35819,23 @@ export const PlayerOnGameServerApiFactory = function (
33555
35819
  .playerOnGameServerControllerAddCurrency(gameServerId, playerId, playerOnGameServerSetCurrencyInputDTO, options)
33556
35820
  .then((request) => request(axios, basePath));
33557
35821
  },
35822
+ /**
35823
+ * 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`
35824
+ * @summary Bulk add currency
35825
+ * @param {string} gameServerId
35826
+ * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
35827
+ * @param {*} [options] Override http request option.
35828
+ * @throws {RequiredError}
35829
+ */
35830
+ playerOnGameServerControllerBulkAddCurrency(
35831
+ gameServerId: string,
35832
+ pogBulkAddCurrencyInputDTO?: PogBulkAddCurrencyInputDTO,
35833
+ options?: RawAxiosRequestConfig,
35834
+ ): AxiosPromise<PogBulkAddCurrencyOutputDTOAPI> {
35835
+ return localVarFp
35836
+ .playerOnGameServerControllerBulkAddCurrency(gameServerId, pogBulkAddCurrencyInputDTO, options)
35837
+ .then((request) => request(axios, basePath));
35838
+ },
33558
35839
  /**
33559
35840
  * Bulk delete POG records by player IDs for a specific gameserver. Deletes POG records only, Player records remain intact. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkDelete`
33560
35841
  * @summary Bulk delete
@@ -33722,6 +36003,25 @@ export class PlayerOnGameServerApi extends BaseAPI {
33722
36003
  .then((request) => request(this.axios, this.basePath));
33723
36004
  }
33724
36005
 
36006
+ /**
36007
+ * 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`
36008
+ * @summary Bulk add currency
36009
+ * @param {string} gameServerId
36010
+ * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
36011
+ * @param {*} [options] Override http request option.
36012
+ * @throws {RequiredError}
36013
+ * @memberof PlayerOnGameServerApi
36014
+ */
36015
+ public playerOnGameServerControllerBulkAddCurrency(
36016
+ gameServerId: string,
36017
+ pogBulkAddCurrencyInputDTO?: PogBulkAddCurrencyInputDTO,
36018
+ options?: RawAxiosRequestConfig,
36019
+ ) {
36020
+ return PlayerOnGameServerApiFp(this.configuration)
36021
+ .playerOnGameServerControllerBulkAddCurrency(gameServerId, pogBulkAddCurrencyInputDTO, options)
36022
+ .then((request) => request(this.axios, this.basePath));
36023
+ }
36024
+
33725
36025
  /**
33726
36026
  * Bulk delete POG records by player IDs for a specific gameserver. Deletes POG records only, Player records remain intact. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkDelete`
33727
36027
  * @summary Bulk delete
@@ -33865,6 +36165,477 @@ export class PlayerOnGameServerApi extends BaseAPI {
33865
36165
  }
33866
36166
  }
33867
36167
 
36168
+ /**
36169
+ * RegistryApi - axios parameter creator
36170
+ * @export
36171
+ */
36172
+ export const RegistryApiAxiosParamCreator = function (configuration?: Configuration) {
36173
+ return {
36174
+ /**
36175
+ * Fetch a specific module version from the registry and install it into the domain Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerInstall`
36176
+ * @summary Install a module from a registry
36177
+ * @param {string} id
36178
+ * @param {RegistryInstallBody} [registryInstallBody] RegistryInstallBody
36179
+ * @param {*} [options] Override http request option.
36180
+ * @throws {RequiredError}
36181
+ */
36182
+ registryControllerInstall: async (
36183
+ id: string,
36184
+ registryInstallBody?: RegistryInstallBody,
36185
+ options: RawAxiosRequestConfig = {},
36186
+ ): Promise<RequestArgs> => {
36187
+ // verify required parameter 'id' is not null or undefined
36188
+ assertParamExists('registryControllerInstall', 'id', id);
36189
+ const localVarPath = `/registry/{id}/install`.replace(`{${'id'}}`, encodeURIComponent(String(id)));
36190
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
36191
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
36192
+ let baseOptions;
36193
+ if (configuration) {
36194
+ baseOptions = configuration.baseOptions;
36195
+ }
36196
+
36197
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
36198
+ const localVarHeaderParameter = {} as any;
36199
+ const localVarQueryParameter = {} as any;
36200
+
36201
+ // authentication domainAuth required
36202
+
36203
+ localVarHeaderParameter['Content-Type'] = 'application/json';
36204
+
36205
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
36206
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
36207
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
36208
+ localVarRequestOptions.data = serializeDataIfNeeded(registryInstallBody, localVarRequestOptions, configuration);
36209
+
36210
+ return {
36211
+ url: toPathString(localVarUrlObj),
36212
+ options: localVarRequestOptions,
36213
+ };
36214
+ },
36215
+ /**
36216
+ * List all subscribed registries with their cached module manifests Required permissions: `READ_MODULES`<br> OperationId: `RegistryControllerList`
36217
+ * @summary List subscribed registries
36218
+ * @param {*} [options] Override http request option.
36219
+ * @throws {RequiredError}
36220
+ */
36221
+ registryControllerList: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
36222
+ const localVarPath = `/registry`;
36223
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
36224
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
36225
+ let baseOptions;
36226
+ if (configuration) {
36227
+ baseOptions = configuration.baseOptions;
36228
+ }
36229
+
36230
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
36231
+ const localVarHeaderParameter = {} as any;
36232
+ const localVarQueryParameter = {} as any;
36233
+
36234
+ // authentication domainAuth required
36235
+
36236
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
36237
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
36238
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
36239
+
36240
+ return {
36241
+ url: toPathString(localVarUrlObj),
36242
+ options: localVarRequestOptions,
36243
+ };
36244
+ },
36245
+ /**
36246
+ * Bust the manifest cache and re-fetch from the registry URL. Requires MANAGE_MODULES permission. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerRefresh`
36247
+ * @summary Refresh registry manifest
36248
+ * @param {string} id
36249
+ * @param {*} [options] Override http request option.
36250
+ * @throws {RequiredError}
36251
+ */
36252
+ registryControllerRefresh: async (id: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
36253
+ // verify required parameter 'id' is not null or undefined
36254
+ assertParamExists('registryControllerRefresh', 'id', id);
36255
+ const localVarPath = `/registry/{id}/refresh`.replace(`{${'id'}}`, encodeURIComponent(String(id)));
36256
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
36257
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
36258
+ let baseOptions;
36259
+ if (configuration) {
36260
+ baseOptions = configuration.baseOptions;
36261
+ }
36262
+
36263
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
36264
+ const localVarHeaderParameter = {} as any;
36265
+ const localVarQueryParameter = {} as any;
36266
+
36267
+ // authentication domainAuth required
36268
+
36269
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
36270
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
36271
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
36272
+
36273
+ return {
36274
+ url: toPathString(localVarUrlObj),
36275
+ options: localVarRequestOptions,
36276
+ };
36277
+ },
36278
+ /**
36279
+ * Subscribe to a module registry by URL. The URL must serve a valid registry.json manifest. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerSubscribe`
36280
+ * @summary Subscribe to a registry
36281
+ * @param {RegistrySubscribeBody} [registrySubscribeBody] RegistrySubscribeBody
36282
+ * @param {*} [options] Override http request option.
36283
+ * @throws {RequiredError}
36284
+ */
36285
+ registryControllerSubscribe: async (
36286
+ registrySubscribeBody?: RegistrySubscribeBody,
36287
+ options: RawAxiosRequestConfig = {},
36288
+ ): Promise<RequestArgs> => {
36289
+ const localVarPath = `/registry`;
36290
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
36291
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
36292
+ let baseOptions;
36293
+ if (configuration) {
36294
+ baseOptions = configuration.baseOptions;
36295
+ }
36296
+
36297
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
36298
+ const localVarHeaderParameter = {} as any;
36299
+ const localVarQueryParameter = {} as any;
36300
+
36301
+ // authentication domainAuth required
36302
+
36303
+ localVarHeaderParameter['Content-Type'] = 'application/json';
36304
+
36305
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
36306
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
36307
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
36308
+ localVarRequestOptions.data = serializeDataIfNeeded(registrySubscribeBody, localVarRequestOptions, configuration);
36309
+
36310
+ return {
36311
+ url: toPathString(localVarUrlObj),
36312
+ options: localVarRequestOptions,
36313
+ };
36314
+ },
36315
+ /**
36316
+ * Unsubscribe from a registry. Installed modules from this registry will be orphaned (registry_id set to null). Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerUnsubscribe`
36317
+ * @summary Unsubscribe from a registry
36318
+ * @param {string} id
36319
+ * @param {*} [options] Override http request option.
36320
+ * @throws {RequiredError}
36321
+ */
36322
+ registryControllerUnsubscribe: async (id: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
36323
+ // verify required parameter 'id' is not null or undefined
36324
+ assertParamExists('registryControllerUnsubscribe', 'id', id);
36325
+ const localVarPath = `/registry/{id}`.replace(`{${'id'}}`, encodeURIComponent(String(id)));
36326
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
36327
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
36328
+ let baseOptions;
36329
+ if (configuration) {
36330
+ baseOptions = configuration.baseOptions;
36331
+ }
36332
+
36333
+ const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
36334
+ const localVarHeaderParameter = {} as any;
36335
+ const localVarQueryParameter = {} as any;
36336
+
36337
+ // authentication domainAuth required
36338
+
36339
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
36340
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
36341
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
36342
+
36343
+ return {
36344
+ url: toPathString(localVarUrlObj),
36345
+ options: localVarRequestOptions,
36346
+ };
36347
+ },
36348
+ };
36349
+ };
36350
+
36351
+ /**
36352
+ * RegistryApi - functional programming interface
36353
+ * @export
36354
+ */
36355
+ export const RegistryApiFp = function (configuration?: Configuration) {
36356
+ const localVarAxiosParamCreator = RegistryApiAxiosParamCreator(configuration);
36357
+ return {
36358
+ /**
36359
+ * Fetch a specific module version from the registry and install it into the domain Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerInstall`
36360
+ * @summary Install a module from a registry
36361
+ * @param {string} id
36362
+ * @param {RegistryInstallBody} [registryInstallBody] RegistryInstallBody
36363
+ * @param {*} [options] Override http request option.
36364
+ * @throws {RequiredError}
36365
+ */
36366
+ async registryControllerInstall(
36367
+ id: string,
36368
+ registryInstallBody?: RegistryInstallBody,
36369
+ options?: RawAxiosRequestConfig,
36370
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>> {
36371
+ const localVarAxiosArgs = await localVarAxiosParamCreator.registryControllerInstall(
36372
+ id,
36373
+ registryInstallBody,
36374
+ options,
36375
+ );
36376
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
36377
+ const localVarOperationServerBasePath =
36378
+ operationServerMap['RegistryApi.registryControllerInstall']?.[localVarOperationServerIndex]?.url;
36379
+ return (axios, basePath) =>
36380
+ createRequestFunction(
36381
+ localVarAxiosArgs,
36382
+ globalAxios,
36383
+ BASE_PATH,
36384
+ configuration,
36385
+ )(axios, localVarOperationServerBasePath || basePath);
36386
+ },
36387
+ /**
36388
+ * List all subscribed registries with their cached module manifests Required permissions: `READ_MODULES`<br> OperationId: `RegistryControllerList`
36389
+ * @summary List subscribed registries
36390
+ * @param {*} [options] Override http request option.
36391
+ * @throws {RequiredError}
36392
+ */
36393
+ async registryControllerList(
36394
+ options?: RawAxiosRequestConfig,
36395
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegistryListOutputDTOAPI>> {
36396
+ const localVarAxiosArgs = await localVarAxiosParamCreator.registryControllerList(options);
36397
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
36398
+ const localVarOperationServerBasePath =
36399
+ operationServerMap['RegistryApi.registryControllerList']?.[localVarOperationServerIndex]?.url;
36400
+ return (axios, basePath) =>
36401
+ createRequestFunction(
36402
+ localVarAxiosArgs,
36403
+ globalAxios,
36404
+ BASE_PATH,
36405
+ configuration,
36406
+ )(axios, localVarOperationServerBasePath || basePath);
36407
+ },
36408
+ /**
36409
+ * Bust the manifest cache and re-fetch from the registry URL. Requires MANAGE_MODULES permission. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerRefresh`
36410
+ * @summary Refresh registry manifest
36411
+ * @param {string} id
36412
+ * @param {*} [options] Override http request option.
36413
+ * @throws {RequiredError}
36414
+ */
36415
+ async registryControllerRefresh(
36416
+ id: string,
36417
+ options?: RawAxiosRequestConfig,
36418
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegistryWithManifestOutputDTOAPI>> {
36419
+ const localVarAxiosArgs = await localVarAxiosParamCreator.registryControllerRefresh(id, options);
36420
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
36421
+ const localVarOperationServerBasePath =
36422
+ operationServerMap['RegistryApi.registryControllerRefresh']?.[localVarOperationServerIndex]?.url;
36423
+ return (axios, basePath) =>
36424
+ createRequestFunction(
36425
+ localVarAxiosArgs,
36426
+ globalAxios,
36427
+ BASE_PATH,
36428
+ configuration,
36429
+ )(axios, localVarOperationServerBasePath || basePath);
36430
+ },
36431
+ /**
36432
+ * Subscribe to a module registry by URL. The URL must serve a valid registry.json manifest. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerSubscribe`
36433
+ * @summary Subscribe to a registry
36434
+ * @param {RegistrySubscribeBody} [registrySubscribeBody] RegistrySubscribeBody
36435
+ * @param {*} [options] Override http request option.
36436
+ * @throws {RequiredError}
36437
+ */
36438
+ async registryControllerSubscribe(
36439
+ registrySubscribeBody?: RegistrySubscribeBody,
36440
+ options?: RawAxiosRequestConfig,
36441
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegistryWithManifestOutputDTOAPI>> {
36442
+ const localVarAxiosArgs = await localVarAxiosParamCreator.registryControllerSubscribe(
36443
+ registrySubscribeBody,
36444
+ options,
36445
+ );
36446
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
36447
+ const localVarOperationServerBasePath =
36448
+ operationServerMap['RegistryApi.registryControllerSubscribe']?.[localVarOperationServerIndex]?.url;
36449
+ return (axios, basePath) =>
36450
+ createRequestFunction(
36451
+ localVarAxiosArgs,
36452
+ globalAxios,
36453
+ BASE_PATH,
36454
+ configuration,
36455
+ )(axios, localVarOperationServerBasePath || basePath);
36456
+ },
36457
+ /**
36458
+ * Unsubscribe from a registry. Installed modules from this registry will be orphaned (registry_id set to null). Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerUnsubscribe`
36459
+ * @summary Unsubscribe from a registry
36460
+ * @param {string} id
36461
+ * @param {*} [options] Override http request option.
36462
+ * @throws {RequiredError}
36463
+ */
36464
+ async registryControllerUnsubscribe(
36465
+ id: string,
36466
+ options?: RawAxiosRequestConfig,
36467
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>> {
36468
+ const localVarAxiosArgs = await localVarAxiosParamCreator.registryControllerUnsubscribe(id, options);
36469
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
36470
+ const localVarOperationServerBasePath =
36471
+ operationServerMap['RegistryApi.registryControllerUnsubscribe']?.[localVarOperationServerIndex]?.url;
36472
+ return (axios, basePath) =>
36473
+ createRequestFunction(
36474
+ localVarAxiosArgs,
36475
+ globalAxios,
36476
+ BASE_PATH,
36477
+ configuration,
36478
+ )(axios, localVarOperationServerBasePath || basePath);
36479
+ },
36480
+ };
36481
+ };
36482
+
36483
+ /**
36484
+ * RegistryApi - factory interface
36485
+ * @export
36486
+ */
36487
+ export const RegistryApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
36488
+ const localVarFp = RegistryApiFp(configuration);
36489
+ return {
36490
+ /**
36491
+ * Fetch a specific module version from the registry and install it into the domain Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerInstall`
36492
+ * @summary Install a module from a registry
36493
+ * @param {string} id
36494
+ * @param {RegistryInstallBody} [registryInstallBody] RegistryInstallBody
36495
+ * @param {*} [options] Override http request option.
36496
+ * @throws {RequiredError}
36497
+ */
36498
+ registryControllerInstall(
36499
+ id: string,
36500
+ registryInstallBody?: RegistryInstallBody,
36501
+ options?: RawAxiosRequestConfig,
36502
+ ): AxiosPromise<APIOutput> {
36503
+ return localVarFp
36504
+ .registryControllerInstall(id, registryInstallBody, options)
36505
+ .then((request) => request(axios, basePath));
36506
+ },
36507
+ /**
36508
+ * List all subscribed registries with their cached module manifests Required permissions: `READ_MODULES`<br> OperationId: `RegistryControllerList`
36509
+ * @summary List subscribed registries
36510
+ * @param {*} [options] Override http request option.
36511
+ * @throws {RequiredError}
36512
+ */
36513
+ registryControllerList(options?: RawAxiosRequestConfig): AxiosPromise<RegistryListOutputDTOAPI> {
36514
+ return localVarFp.registryControllerList(options).then((request) => request(axios, basePath));
36515
+ },
36516
+ /**
36517
+ * Bust the manifest cache and re-fetch from the registry URL. Requires MANAGE_MODULES permission. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerRefresh`
36518
+ * @summary Refresh registry manifest
36519
+ * @param {string} id
36520
+ * @param {*} [options] Override http request option.
36521
+ * @throws {RequiredError}
36522
+ */
36523
+ registryControllerRefresh(
36524
+ id: string,
36525
+ options?: RawAxiosRequestConfig,
36526
+ ): AxiosPromise<RegistryWithManifestOutputDTOAPI> {
36527
+ return localVarFp.registryControllerRefresh(id, options).then((request) => request(axios, basePath));
36528
+ },
36529
+ /**
36530
+ * Subscribe to a module registry by URL. The URL must serve a valid registry.json manifest. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerSubscribe`
36531
+ * @summary Subscribe to a registry
36532
+ * @param {RegistrySubscribeBody} [registrySubscribeBody] RegistrySubscribeBody
36533
+ * @param {*} [options] Override http request option.
36534
+ * @throws {RequiredError}
36535
+ */
36536
+ registryControllerSubscribe(
36537
+ registrySubscribeBody?: RegistrySubscribeBody,
36538
+ options?: RawAxiosRequestConfig,
36539
+ ): AxiosPromise<RegistryWithManifestOutputDTOAPI> {
36540
+ return localVarFp
36541
+ .registryControllerSubscribe(registrySubscribeBody, options)
36542
+ .then((request) => request(axios, basePath));
36543
+ },
36544
+ /**
36545
+ * Unsubscribe from a registry. Installed modules from this registry will be orphaned (registry_id set to null). Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerUnsubscribe`
36546
+ * @summary Unsubscribe from a registry
36547
+ * @param {string} id
36548
+ * @param {*} [options] Override http request option.
36549
+ * @throws {RequiredError}
36550
+ */
36551
+ registryControllerUnsubscribe(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput> {
36552
+ return localVarFp.registryControllerUnsubscribe(id, options).then((request) => request(axios, basePath));
36553
+ },
36554
+ };
36555
+ };
36556
+
36557
+ /**
36558
+ * RegistryApi - object-oriented interface
36559
+ * @export
36560
+ * @class RegistryApi
36561
+ * @extends {BaseAPI}
36562
+ */
36563
+ export class RegistryApi extends BaseAPI {
36564
+ /**
36565
+ * Fetch a specific module version from the registry and install it into the domain Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerInstall`
36566
+ * @summary Install a module from a registry
36567
+ * @param {string} id
36568
+ * @param {RegistryInstallBody} [registryInstallBody] RegistryInstallBody
36569
+ * @param {*} [options] Override http request option.
36570
+ * @throws {RequiredError}
36571
+ * @memberof RegistryApi
36572
+ */
36573
+ public registryControllerInstall(
36574
+ id: string,
36575
+ registryInstallBody?: RegistryInstallBody,
36576
+ options?: RawAxiosRequestConfig,
36577
+ ) {
36578
+ return RegistryApiFp(this.configuration)
36579
+ .registryControllerInstall(id, registryInstallBody, options)
36580
+ .then((request) => request(this.axios, this.basePath));
36581
+ }
36582
+
36583
+ /**
36584
+ * List all subscribed registries with their cached module manifests Required permissions: `READ_MODULES`<br> OperationId: `RegistryControllerList`
36585
+ * @summary List subscribed registries
36586
+ * @param {*} [options] Override http request option.
36587
+ * @throws {RequiredError}
36588
+ * @memberof RegistryApi
36589
+ */
36590
+ public registryControllerList(options?: RawAxiosRequestConfig) {
36591
+ return RegistryApiFp(this.configuration)
36592
+ .registryControllerList(options)
36593
+ .then((request) => request(this.axios, this.basePath));
36594
+ }
36595
+
36596
+ /**
36597
+ * Bust the manifest cache and re-fetch from the registry URL. Requires MANAGE_MODULES permission. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerRefresh`
36598
+ * @summary Refresh registry manifest
36599
+ * @param {string} id
36600
+ * @param {*} [options] Override http request option.
36601
+ * @throws {RequiredError}
36602
+ * @memberof RegistryApi
36603
+ */
36604
+ public registryControllerRefresh(id: string, options?: RawAxiosRequestConfig) {
36605
+ return RegistryApiFp(this.configuration)
36606
+ .registryControllerRefresh(id, options)
36607
+ .then((request) => request(this.axios, this.basePath));
36608
+ }
36609
+
36610
+ /**
36611
+ * Subscribe to a module registry by URL. The URL must serve a valid registry.json manifest. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerSubscribe`
36612
+ * @summary Subscribe to a registry
36613
+ * @param {RegistrySubscribeBody} [registrySubscribeBody] RegistrySubscribeBody
36614
+ * @param {*} [options] Override http request option.
36615
+ * @throws {RequiredError}
36616
+ * @memberof RegistryApi
36617
+ */
36618
+ public registryControllerSubscribe(registrySubscribeBody?: RegistrySubscribeBody, options?: RawAxiosRequestConfig) {
36619
+ return RegistryApiFp(this.configuration)
36620
+ .registryControllerSubscribe(registrySubscribeBody, options)
36621
+ .then((request) => request(this.axios, this.basePath));
36622
+ }
36623
+
36624
+ /**
36625
+ * Unsubscribe from a registry. Installed modules from this registry will be orphaned (registry_id set to null). Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerUnsubscribe`
36626
+ * @summary Unsubscribe from a registry
36627
+ * @param {string} id
36628
+ * @param {*} [options] Override http request option.
36629
+ * @throws {RequiredError}
36630
+ * @memberof RegistryApi
36631
+ */
36632
+ public registryControllerUnsubscribe(id: string, options?: RawAxiosRequestConfig) {
36633
+ return RegistryApiFp(this.configuration)
36634
+ .registryControllerUnsubscribe(id, options)
36635
+ .then((request) => request(this.axios, this.basePath));
36636
+ }
36637
+ }
36638
+
33868
36639
  /**
33869
36640
  * RoleApi - axios parameter creator
33870
36641
  * @export
@@ -36687,7 +39458,7 @@ export const ShopListingApiFp = function (configuration?: Configuration) {
36687
39458
  */
36688
39459
  async shopListingControllerImportListings(
36689
39460
  options?: RawAxiosRequestConfig,
36690
- ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>> {
39461
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopImportResultDTOAPI>> {
36691
39462
  const localVarAxiosArgs = await localVarAxiosParamCreator.shopListingControllerImportListings(options);
36692
39463
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
36693
39464
  const localVarOperationServerBasePath =
@@ -36810,7 +39581,7 @@ export const ShopListingApiFactory = function (
36810
39581
  * @param {*} [options] Override http request option.
36811
39582
  * @throws {RequiredError}
36812
39583
  */
36813
- shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<APIOutput> {
39584
+ shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<ShopImportResultDTOAPI> {
36814
39585
  return localVarFp.shopListingControllerImportListings(options).then((request) => request(axios, basePath));
36815
39586
  },
36816
39587
  /**
@@ -37090,17 +39861,419 @@ export const ShopOrderApiAxiosParamCreator = function (configuration?: Configura
37090
39861
  };
37091
39862
  },
37092
39863
  /**
37093
- * Search for orders. By default, this endpoint only returns your own orders. When the caller has permission to view all orders, they can search for all orders.<br> OperationId: `ShopOrderControllerSearch`
37094
- * @summary Search orders
37095
- * @param {ShopOrderSearchInputDTO} [shopOrderSearchInputDTO] ShopOrderSearchInputDTO
39864
+ * Search for orders. By default, this endpoint only returns your own orders. When the caller has permission to view all orders, they can search for all orders.<br> OperationId: `ShopOrderControllerSearch`
39865
+ * @summary Search orders
39866
+ * @param {ShopOrderSearchInputDTO} [shopOrderSearchInputDTO] ShopOrderSearchInputDTO
39867
+ * @param {*} [options] Override http request option.
39868
+ * @throws {RequiredError}
39869
+ */
39870
+ shopOrderControllerSearch: async (
39871
+ shopOrderSearchInputDTO?: ShopOrderSearchInputDTO,
39872
+ options: RawAxiosRequestConfig = {},
39873
+ ): Promise<RequestArgs> => {
39874
+ const localVarPath = `/shop/order/search`;
39875
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
39876
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
39877
+ let baseOptions;
39878
+ if (configuration) {
39879
+ baseOptions = configuration.baseOptions;
39880
+ }
39881
+
39882
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
39883
+ const localVarHeaderParameter = {} as any;
39884
+ const localVarQueryParameter = {} as any;
39885
+
39886
+ // authentication domainAuth required
39887
+
39888
+ localVarHeaderParameter['Content-Type'] = 'application/json';
39889
+
39890
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
39891
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
39892
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
39893
+ localVarRequestOptions.data = serializeDataIfNeeded(
39894
+ shopOrderSearchInputDTO,
39895
+ localVarRequestOptions,
39896
+ configuration,
39897
+ );
39898
+
39899
+ return {
39900
+ url: toPathString(localVarUrlObj),
39901
+ options: localVarRequestOptions,
39902
+ };
39903
+ },
39904
+ };
39905
+ };
39906
+
39907
+ /**
39908
+ * ShopOrderApi - functional programming interface
39909
+ * @export
39910
+ */
39911
+ export const ShopOrderApiFp = function (configuration?: Configuration) {
39912
+ const localVarAxiosParamCreator = ShopOrderApiAxiosParamCreator(configuration);
39913
+ return {
39914
+ /**
39915
+ * <br> OperationId: `ShopOrderControllerCancel`
39916
+ * @summary Cancel
39917
+ * @param {string} id
39918
+ * @param {*} [options] Override http request option.
39919
+ * @throws {RequiredError}
39920
+ */
39921
+ async shopOrderControllerCancel(
39922
+ id: string,
39923
+ options?: RawAxiosRequestConfig,
39924
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopOrderOutputDTOAPI>> {
39925
+ const localVarAxiosArgs = await localVarAxiosParamCreator.shopOrderControllerCancel(id, options);
39926
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
39927
+ const localVarOperationServerBasePath =
39928
+ operationServerMap['ShopOrderApi.shopOrderControllerCancel']?.[localVarOperationServerIndex]?.url;
39929
+ return (axios, basePath) =>
39930
+ createRequestFunction(
39931
+ localVarAxiosArgs,
39932
+ globalAxios,
39933
+ BASE_PATH,
39934
+ configuration,
39935
+ )(axios, localVarOperationServerBasePath || basePath);
39936
+ },
39937
+ /**
39938
+ * Claiming an order will mark it as completed and give the user the item in-game<br> OperationId: `ShopOrderControllerClaim`
39939
+ * @summary Claim an order
39940
+ * @param {string} id
39941
+ * @param {*} [options] Override http request option.
39942
+ * @throws {RequiredError}
39943
+ */
39944
+ async shopOrderControllerClaim(
39945
+ id: string,
39946
+ options?: RawAxiosRequestConfig,
39947
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopOrderOutputDTOAPI>> {
39948
+ const localVarAxiosArgs = await localVarAxiosParamCreator.shopOrderControllerClaim(id, options);
39949
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
39950
+ const localVarOperationServerBasePath =
39951
+ operationServerMap['ShopOrderApi.shopOrderControllerClaim']?.[localVarOperationServerIndex]?.url;
39952
+ return (axios, basePath) =>
39953
+ createRequestFunction(
39954
+ localVarAxiosArgs,
39955
+ globalAxios,
39956
+ BASE_PATH,
39957
+ configuration,
39958
+ )(axios, localVarOperationServerBasePath || basePath);
39959
+ },
39960
+ /**
39961
+ * <br> OperationId: `ShopOrderControllerCreate`
39962
+ * @summary Create
39963
+ * @param {ShopOrderCreateDTO} [shopOrderCreateDTO] ShopOrderCreateDTO
39964
+ * @param {*} [options] Override http request option.
39965
+ * @throws {RequiredError}
39966
+ */
39967
+ async shopOrderControllerCreate(
39968
+ shopOrderCreateDTO?: ShopOrderCreateDTO,
39969
+ options?: RawAxiosRequestConfig,
39970
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopOrderOutputDTOAPI>> {
39971
+ const localVarAxiosArgs = await localVarAxiosParamCreator.shopOrderControllerCreate(shopOrderCreateDTO, options);
39972
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
39973
+ const localVarOperationServerBasePath =
39974
+ operationServerMap['ShopOrderApi.shopOrderControllerCreate']?.[localVarOperationServerIndex]?.url;
39975
+ return (axios, basePath) =>
39976
+ createRequestFunction(
39977
+ localVarAxiosArgs,
39978
+ globalAxios,
39979
+ BASE_PATH,
39980
+ configuration,
39981
+ )(axios, localVarOperationServerBasePath || basePath);
39982
+ },
39983
+ /**
39984
+ * Get an order by its ID. This endpoint only returns orders that belong to the caller. When the caller has permission to view all orders, they can get any order.<br> OperationId: `ShopOrderControllerGetOne`
39985
+ * @summary Get order by ID
39986
+ * @param {string} id
39987
+ * @param {*} [options] Override http request option.
39988
+ * @throws {RequiredError}
39989
+ */
39990
+ async shopOrderControllerGetOne(
39991
+ id: string,
39992
+ options?: RawAxiosRequestConfig,
39993
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopOrderOutputDTOAPI>> {
39994
+ const localVarAxiosArgs = await localVarAxiosParamCreator.shopOrderControllerGetOne(id, options);
39995
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
39996
+ const localVarOperationServerBasePath =
39997
+ operationServerMap['ShopOrderApi.shopOrderControllerGetOne']?.[localVarOperationServerIndex]?.url;
39998
+ return (axios, basePath) =>
39999
+ createRequestFunction(
40000
+ localVarAxiosArgs,
40001
+ globalAxios,
40002
+ BASE_PATH,
40003
+ configuration,
40004
+ )(axios, localVarOperationServerBasePath || basePath);
40005
+ },
40006
+ /**
40007
+ * Search for orders. By default, this endpoint only returns your own orders. When the caller has permission to view all orders, they can search for all orders.<br> OperationId: `ShopOrderControllerSearch`
40008
+ * @summary Search orders
40009
+ * @param {ShopOrderSearchInputDTO} [shopOrderSearchInputDTO] ShopOrderSearchInputDTO
40010
+ * @param {*} [options] Override http request option.
40011
+ * @throws {RequiredError}
40012
+ */
40013
+ async shopOrderControllerSearch(
40014
+ shopOrderSearchInputDTO?: ShopOrderSearchInputDTO,
40015
+ options?: RawAxiosRequestConfig,
40016
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopOrderOutputArrayDTOAPI>> {
40017
+ const localVarAxiosArgs = await localVarAxiosParamCreator.shopOrderControllerSearch(
40018
+ shopOrderSearchInputDTO,
40019
+ options,
40020
+ );
40021
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
40022
+ const localVarOperationServerBasePath =
40023
+ operationServerMap['ShopOrderApi.shopOrderControllerSearch']?.[localVarOperationServerIndex]?.url;
40024
+ return (axios, basePath) =>
40025
+ createRequestFunction(
40026
+ localVarAxiosArgs,
40027
+ globalAxios,
40028
+ BASE_PATH,
40029
+ configuration,
40030
+ )(axios, localVarOperationServerBasePath || basePath);
40031
+ },
40032
+ };
40033
+ };
40034
+
40035
+ /**
40036
+ * ShopOrderApi - factory interface
40037
+ * @export
40038
+ */
40039
+ export const ShopOrderApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
40040
+ const localVarFp = ShopOrderApiFp(configuration);
40041
+ return {
40042
+ /**
40043
+ * <br> OperationId: `ShopOrderControllerCancel`
40044
+ * @summary Cancel
40045
+ * @param {string} id
40046
+ * @param {*} [options] Override http request option.
40047
+ * @throws {RequiredError}
40048
+ */
40049
+ shopOrderControllerCancel(id: string, options?: RawAxiosRequestConfig): AxiosPromise<ShopOrderOutputDTOAPI> {
40050
+ return localVarFp.shopOrderControllerCancel(id, options).then((request) => request(axios, basePath));
40051
+ },
40052
+ /**
40053
+ * Claiming an order will mark it as completed and give the user the item in-game<br> OperationId: `ShopOrderControllerClaim`
40054
+ * @summary Claim an order
40055
+ * @param {string} id
40056
+ * @param {*} [options] Override http request option.
40057
+ * @throws {RequiredError}
40058
+ */
40059
+ shopOrderControllerClaim(id: string, options?: RawAxiosRequestConfig): AxiosPromise<ShopOrderOutputDTOAPI> {
40060
+ return localVarFp.shopOrderControllerClaim(id, options).then((request) => request(axios, basePath));
40061
+ },
40062
+ /**
40063
+ * <br> OperationId: `ShopOrderControllerCreate`
40064
+ * @summary Create
40065
+ * @param {ShopOrderCreateDTO} [shopOrderCreateDTO] ShopOrderCreateDTO
40066
+ * @param {*} [options] Override http request option.
40067
+ * @throws {RequiredError}
40068
+ */
40069
+ shopOrderControllerCreate(
40070
+ shopOrderCreateDTO?: ShopOrderCreateDTO,
40071
+ options?: RawAxiosRequestConfig,
40072
+ ): AxiosPromise<ShopOrderOutputDTOAPI> {
40073
+ return localVarFp
40074
+ .shopOrderControllerCreate(shopOrderCreateDTO, options)
40075
+ .then((request) => request(axios, basePath));
40076
+ },
40077
+ /**
40078
+ * Get an order by its ID. This endpoint only returns orders that belong to the caller. When the caller has permission to view all orders, they can get any order.<br> OperationId: `ShopOrderControllerGetOne`
40079
+ * @summary Get order by ID
40080
+ * @param {string} id
40081
+ * @param {*} [options] Override http request option.
40082
+ * @throws {RequiredError}
40083
+ */
40084
+ shopOrderControllerGetOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<ShopOrderOutputDTOAPI> {
40085
+ return localVarFp.shopOrderControllerGetOne(id, options).then((request) => request(axios, basePath));
40086
+ },
40087
+ /**
40088
+ * Search for orders. By default, this endpoint only returns your own orders. When the caller has permission to view all orders, they can search for all orders.<br> OperationId: `ShopOrderControllerSearch`
40089
+ * @summary Search orders
40090
+ * @param {ShopOrderSearchInputDTO} [shopOrderSearchInputDTO] ShopOrderSearchInputDTO
40091
+ * @param {*} [options] Override http request option.
40092
+ * @throws {RequiredError}
40093
+ */
40094
+ shopOrderControllerSearch(
40095
+ shopOrderSearchInputDTO?: ShopOrderSearchInputDTO,
40096
+ options?: RawAxiosRequestConfig,
40097
+ ): AxiosPromise<ShopOrderOutputArrayDTOAPI> {
40098
+ return localVarFp
40099
+ .shopOrderControllerSearch(shopOrderSearchInputDTO, options)
40100
+ .then((request) => request(axios, basePath));
40101
+ },
40102
+ };
40103
+ };
40104
+
40105
+ /**
40106
+ * ShopOrderApi - object-oriented interface
40107
+ * @export
40108
+ * @class ShopOrderApi
40109
+ * @extends {BaseAPI}
40110
+ */
40111
+ export class ShopOrderApi extends BaseAPI {
40112
+ /**
40113
+ * <br> OperationId: `ShopOrderControllerCancel`
40114
+ * @summary Cancel
40115
+ * @param {string} id
40116
+ * @param {*} [options] Override http request option.
40117
+ * @throws {RequiredError}
40118
+ * @memberof ShopOrderApi
40119
+ */
40120
+ public shopOrderControllerCancel(id: string, options?: RawAxiosRequestConfig) {
40121
+ return ShopOrderApiFp(this.configuration)
40122
+ .shopOrderControllerCancel(id, options)
40123
+ .then((request) => request(this.axios, this.basePath));
40124
+ }
40125
+
40126
+ /**
40127
+ * Claiming an order will mark it as completed and give the user the item in-game<br> OperationId: `ShopOrderControllerClaim`
40128
+ * @summary Claim an order
40129
+ * @param {string} id
40130
+ * @param {*} [options] Override http request option.
40131
+ * @throws {RequiredError}
40132
+ * @memberof ShopOrderApi
40133
+ */
40134
+ public shopOrderControllerClaim(id: string, options?: RawAxiosRequestConfig) {
40135
+ return ShopOrderApiFp(this.configuration)
40136
+ .shopOrderControllerClaim(id, options)
40137
+ .then((request) => request(this.axios, this.basePath));
40138
+ }
40139
+
40140
+ /**
40141
+ * <br> OperationId: `ShopOrderControllerCreate`
40142
+ * @summary Create
40143
+ * @param {ShopOrderCreateDTO} [shopOrderCreateDTO] ShopOrderCreateDTO
40144
+ * @param {*} [options] Override http request option.
40145
+ * @throws {RequiredError}
40146
+ * @memberof ShopOrderApi
40147
+ */
40148
+ public shopOrderControllerCreate(shopOrderCreateDTO?: ShopOrderCreateDTO, options?: RawAxiosRequestConfig) {
40149
+ return ShopOrderApiFp(this.configuration)
40150
+ .shopOrderControllerCreate(shopOrderCreateDTO, options)
40151
+ .then((request) => request(this.axios, this.basePath));
40152
+ }
40153
+
40154
+ /**
40155
+ * Get an order by its ID. This endpoint only returns orders that belong to the caller. When the caller has permission to view all orders, they can get any order.<br> OperationId: `ShopOrderControllerGetOne`
40156
+ * @summary Get order by ID
40157
+ * @param {string} id
40158
+ * @param {*} [options] Override http request option.
40159
+ * @throws {RequiredError}
40160
+ * @memberof ShopOrderApi
40161
+ */
40162
+ public shopOrderControllerGetOne(id: string, options?: RawAxiosRequestConfig) {
40163
+ return ShopOrderApiFp(this.configuration)
40164
+ .shopOrderControllerGetOne(id, options)
40165
+ .then((request) => request(this.axios, this.basePath));
40166
+ }
40167
+
40168
+ /**
40169
+ * Search for orders. By default, this endpoint only returns your own orders. When the caller has permission to view all orders, they can search for all orders.<br> OperationId: `ShopOrderControllerSearch`
40170
+ * @summary Search orders
40171
+ * @param {ShopOrderSearchInputDTO} [shopOrderSearchInputDTO] ShopOrderSearchInputDTO
40172
+ * @param {*} [options] Override http request option.
40173
+ * @throws {RequiredError}
40174
+ * @memberof ShopOrderApi
40175
+ */
40176
+ public shopOrderControllerSearch(shopOrderSearchInputDTO?: ShopOrderSearchInputDTO, options?: RawAxiosRequestConfig) {
40177
+ return ShopOrderApiFp(this.configuration)
40178
+ .shopOrderControllerSearch(shopOrderSearchInputDTO, options)
40179
+ .then((request) => request(this.axios, this.basePath));
40180
+ }
40181
+ }
40182
+
40183
+ /**
40184
+ * StorefrontConfigApi - axios parameter creator
40185
+ * @export
40186
+ */
40187
+ export const StorefrontConfigApiAxiosParamCreator = function (configuration?: Configuration) {
40188
+ return {
40189
+ /**
40190
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
40191
+ * @summary Get effective config
40192
+ * @param {string} gameServerId
40193
+ * @param {*} [options] Override http request option.
40194
+ * @throws {RequiredError}
40195
+ */
40196
+ storefrontConfigControllerGetEffectiveConfig: async (
40197
+ gameServerId: string,
40198
+ options: RawAxiosRequestConfig = {},
40199
+ ): Promise<RequestArgs> => {
40200
+ // verify required parameter 'gameServerId' is not null or undefined
40201
+ assertParamExists('storefrontConfigControllerGetEffectiveConfig', 'gameServerId', gameServerId);
40202
+ const localVarPath = `/gameserver/{gameServerId}/storefront-config`.replace(
40203
+ `{${'gameServerId'}}`,
40204
+ encodeURIComponent(String(gameServerId)),
40205
+ );
40206
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
40207
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
40208
+ let baseOptions;
40209
+ if (configuration) {
40210
+ baseOptions = configuration.baseOptions;
40211
+ }
40212
+
40213
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
40214
+ const localVarHeaderParameter = {} as any;
40215
+ const localVarQueryParameter = {} as any;
40216
+
40217
+ // authentication domainAuth required
40218
+
40219
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
40220
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
40221
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
40222
+
40223
+ return {
40224
+ url: toPathString(localVarUrlObj),
40225
+ options: localVarRequestOptions,
40226
+ };
40227
+ },
40228
+ /**
40229
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
40230
+ * @summary List templates
40231
+ * @param {*} [options] Override http request option.
40232
+ * @throws {RequiredError}
40233
+ */
40234
+ storefrontConfigControllerListTemplates: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
40235
+ const localVarPath = `/storefront/templates`;
40236
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
40237
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
40238
+ let baseOptions;
40239
+ if (configuration) {
40240
+ baseOptions = configuration.baseOptions;
40241
+ }
40242
+
40243
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
40244
+ const localVarHeaderParameter = {} as any;
40245
+ const localVarQueryParameter = {} as any;
40246
+
40247
+ // authentication domainAuth required
40248
+
40249
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
40250
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
40251
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
40252
+
40253
+ return {
40254
+ url: toPathString(localVarUrlObj),
40255
+ options: localVarRequestOptions,
40256
+ };
40257
+ },
40258
+ /**
40259
+ * Set the storefront configuration for a game server. Validates the template id and values against the template schema. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerSetConfig`
40260
+ * @summary Set config
40261
+ * @param {string} gameServerId
40262
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
37096
40263
  * @param {*} [options] Override http request option.
37097
40264
  * @throws {RequiredError}
37098
40265
  */
37099
- shopOrderControllerSearch: async (
37100
- shopOrderSearchInputDTO?: ShopOrderSearchInputDTO,
40266
+ storefrontConfigControllerSetConfig: async (
40267
+ gameServerId: string,
40268
+ storefrontConfigUpsertBody?: StorefrontConfigUpsertBody,
37101
40269
  options: RawAxiosRequestConfig = {},
37102
40270
  ): Promise<RequestArgs> => {
37103
- const localVarPath = `/shop/order/search`;
40271
+ // verify required parameter 'gameServerId' is not null or undefined
40272
+ assertParamExists('storefrontConfigControllerSetConfig', 'gameServerId', gameServerId);
40273
+ const localVarPath = `/gameserver/{gameServerId}/storefront-config`.replace(
40274
+ `{${'gameServerId'}}`,
40275
+ encodeURIComponent(String(gameServerId)),
40276
+ );
37104
40277
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
37105
40278
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
37106
40279
  let baseOptions;
@@ -37108,7 +40281,7 @@ export const ShopOrderApiAxiosParamCreator = function (configuration?: Configura
37108
40281
  baseOptions = configuration.baseOptions;
37109
40282
  }
37110
40283
 
37111
- const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
40284
+ const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options };
37112
40285
  const localVarHeaderParameter = {} as any;
37113
40286
  const localVarQueryParameter = {} as any;
37114
40287
 
@@ -37120,7 +40293,7 @@ export const ShopOrderApiAxiosParamCreator = function (configuration?: Configura
37120
40293
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
37121
40294
  localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
37122
40295
  localVarRequestOptions.data = serializeDataIfNeeded(
37123
- shopOrderSearchInputDTO,
40296
+ storefrontConfigUpsertBody,
37124
40297
  localVarRequestOptions,
37125
40298
  configuration,
37126
40299
  );
@@ -37134,73 +40307,32 @@ export const ShopOrderApiAxiosParamCreator = function (configuration?: Configura
37134
40307
  };
37135
40308
 
37136
40309
  /**
37137
- * ShopOrderApi - functional programming interface
40310
+ * StorefrontConfigApi - functional programming interface
37138
40311
  * @export
37139
40312
  */
37140
- export const ShopOrderApiFp = function (configuration?: Configuration) {
37141
- const localVarAxiosParamCreator = ShopOrderApiAxiosParamCreator(configuration);
40313
+ export const StorefrontConfigApiFp = function (configuration?: Configuration) {
40314
+ const localVarAxiosParamCreator = StorefrontConfigApiAxiosParamCreator(configuration);
37142
40315
  return {
37143
40316
  /**
37144
- * <br> OperationId: `ShopOrderControllerCancel`
37145
- * @summary Cancel
37146
- * @param {string} id
37147
- * @param {*} [options] Override http request option.
37148
- * @throws {RequiredError}
37149
- */
37150
- async shopOrderControllerCancel(
37151
- id: string,
37152
- options?: RawAxiosRequestConfig,
37153
- ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopOrderOutputDTOAPI>> {
37154
- const localVarAxiosArgs = await localVarAxiosParamCreator.shopOrderControllerCancel(id, options);
37155
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
37156
- const localVarOperationServerBasePath =
37157
- operationServerMap['ShopOrderApi.shopOrderControllerCancel']?.[localVarOperationServerIndex]?.url;
37158
- return (axios, basePath) =>
37159
- createRequestFunction(
37160
- localVarAxiosArgs,
37161
- globalAxios,
37162
- BASE_PATH,
37163
- configuration,
37164
- )(axios, localVarOperationServerBasePath || basePath);
37165
- },
37166
- /**
37167
- * Claiming an order will mark it as completed and give the user the item in-game<br> OperationId: `ShopOrderControllerClaim`
37168
- * @summary Claim an order
37169
- * @param {string} id
37170
- * @param {*} [options] Override http request option.
37171
- * @throws {RequiredError}
37172
- */
37173
- async shopOrderControllerClaim(
37174
- id: string,
37175
- options?: RawAxiosRequestConfig,
37176
- ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopOrderOutputDTOAPI>> {
37177
- const localVarAxiosArgs = await localVarAxiosParamCreator.shopOrderControllerClaim(id, options);
37178
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
37179
- const localVarOperationServerBasePath =
37180
- operationServerMap['ShopOrderApi.shopOrderControllerClaim']?.[localVarOperationServerIndex]?.url;
37181
- return (axios, basePath) =>
37182
- createRequestFunction(
37183
- localVarAxiosArgs,
37184
- globalAxios,
37185
- BASE_PATH,
37186
- configuration,
37187
- )(axios, localVarOperationServerBasePath || basePath);
37188
- },
37189
- /**
37190
- * <br> OperationId: `ShopOrderControllerCreate`
37191
- * @summary Create
37192
- * @param {ShopOrderCreateDTO} [shopOrderCreateDTO] ShopOrderCreateDTO
40317
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
40318
+ * @summary Get effective config
40319
+ * @param {string} gameServerId
37193
40320
  * @param {*} [options] Override http request option.
37194
40321
  * @throws {RequiredError}
37195
40322
  */
37196
- async shopOrderControllerCreate(
37197
- shopOrderCreateDTO?: ShopOrderCreateDTO,
40323
+ async storefrontConfigControllerGetEffectiveConfig(
40324
+ gameServerId: string,
37198
40325
  options?: RawAxiosRequestConfig,
37199
- ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopOrderOutputDTOAPI>> {
37200
- const localVarAxiosArgs = await localVarAxiosParamCreator.shopOrderControllerCreate(shopOrderCreateDTO, options);
40326
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>> {
40327
+ const localVarAxiosArgs = await localVarAxiosParamCreator.storefrontConfigControllerGetEffectiveConfig(
40328
+ gameServerId,
40329
+ options,
40330
+ );
37201
40331
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
37202
40332
  const localVarOperationServerBasePath =
37203
- operationServerMap['ShopOrderApi.shopOrderControllerCreate']?.[localVarOperationServerIndex]?.url;
40333
+ operationServerMap['StorefrontConfigApi.storefrontConfigControllerGetEffectiveConfig']?.[
40334
+ localVarOperationServerIndex
40335
+ ]?.url;
37204
40336
  return (axios, basePath) =>
37205
40337
  createRequestFunction(
37206
40338
  localVarAxiosArgs,
@@ -37210,20 +40342,20 @@ export const ShopOrderApiFp = function (configuration?: Configuration) {
37210
40342
  )(axios, localVarOperationServerBasePath || basePath);
37211
40343
  },
37212
40344
  /**
37213
- * Get an order by its ID. This endpoint only returns orders that belong to the caller. When the caller has permission to view all orders, they can get any order.<br> OperationId: `ShopOrderControllerGetOne`
37214
- * @summary Get order by ID
37215
- * @param {string} id
40345
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
40346
+ * @summary List templates
37216
40347
  * @param {*} [options] Override http request option.
37217
40348
  * @throws {RequiredError}
37218
40349
  */
37219
- async shopOrderControllerGetOne(
37220
- id: string,
40350
+ async storefrontConfigControllerListTemplates(
37221
40351
  options?: RawAxiosRequestConfig,
37222
- ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopOrderOutputDTOAPI>> {
37223
- const localVarAxiosArgs = await localVarAxiosParamCreator.shopOrderControllerGetOne(id, options);
40352
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StorefrontTemplateOutputArrayDTOAPI>> {
40353
+ const localVarAxiosArgs = await localVarAxiosParamCreator.storefrontConfigControllerListTemplates(options);
37224
40354
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
37225
40355
  const localVarOperationServerBasePath =
37226
- operationServerMap['ShopOrderApi.shopOrderControllerGetOne']?.[localVarOperationServerIndex]?.url;
40356
+ operationServerMap['StorefrontConfigApi.storefrontConfigControllerListTemplates']?.[
40357
+ localVarOperationServerIndex
40358
+ ]?.url;
37227
40359
  return (axios, basePath) =>
37228
40360
  createRequestFunction(
37229
40361
  localVarAxiosArgs,
@@ -37233,23 +40365,27 @@ export const ShopOrderApiFp = function (configuration?: Configuration) {
37233
40365
  )(axios, localVarOperationServerBasePath || basePath);
37234
40366
  },
37235
40367
  /**
37236
- * Search for orders. By default, this endpoint only returns your own orders. When the caller has permission to view all orders, they can search for all orders.<br> OperationId: `ShopOrderControllerSearch`
37237
- * @summary Search orders
37238
- * @param {ShopOrderSearchInputDTO} [shopOrderSearchInputDTO] ShopOrderSearchInputDTO
40368
+ * Set the storefront configuration for a game server. Validates the template id and values against the template schema. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerSetConfig`
40369
+ * @summary Set config
40370
+ * @param {string} gameServerId
40371
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
37239
40372
  * @param {*} [options] Override http request option.
37240
40373
  * @throws {RequiredError}
37241
40374
  */
37242
- async shopOrderControllerSearch(
37243
- shopOrderSearchInputDTO?: ShopOrderSearchInputDTO,
40375
+ async storefrontConfigControllerSetConfig(
40376
+ gameServerId: string,
40377
+ storefrontConfigUpsertBody?: StorefrontConfigUpsertBody,
37244
40378
  options?: RawAxiosRequestConfig,
37245
- ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopOrderOutputArrayDTOAPI>> {
37246
- const localVarAxiosArgs = await localVarAxiosParamCreator.shopOrderControllerSearch(
37247
- shopOrderSearchInputDTO,
40379
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>> {
40380
+ const localVarAxiosArgs = await localVarAxiosParamCreator.storefrontConfigControllerSetConfig(
40381
+ gameServerId,
40382
+ storefrontConfigUpsertBody,
37248
40383
  options,
37249
40384
  );
37250
40385
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
37251
40386
  const localVarOperationServerBasePath =
37252
- operationServerMap['ShopOrderApi.shopOrderControllerSearch']?.[localVarOperationServerIndex]?.url;
40387
+ operationServerMap['StorefrontConfigApi.storefrontConfigControllerSetConfig']?.[localVarOperationServerIndex]
40388
+ ?.url;
37253
40389
  return (axios, basePath) =>
37254
40390
  createRequestFunction(
37255
40391
  localVarAxiosArgs,
@@ -37262,149 +40398,112 @@ export const ShopOrderApiFp = function (configuration?: Configuration) {
37262
40398
  };
37263
40399
 
37264
40400
  /**
37265
- * ShopOrderApi - factory interface
40401
+ * StorefrontConfigApi - factory interface
37266
40402
  * @export
37267
40403
  */
37268
- export const ShopOrderApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
37269
- const localVarFp = ShopOrderApiFp(configuration);
40404
+ export const StorefrontConfigApiFactory = function (
40405
+ configuration?: Configuration,
40406
+ basePath?: string,
40407
+ axios?: AxiosInstance,
40408
+ ) {
40409
+ const localVarFp = StorefrontConfigApiFp(configuration);
37270
40410
  return {
37271
40411
  /**
37272
- * <br> OperationId: `ShopOrderControllerCancel`
37273
- * @summary Cancel
37274
- * @param {string} id
37275
- * @param {*} [options] Override http request option.
37276
- * @throws {RequiredError}
37277
- */
37278
- shopOrderControllerCancel(id: string, options?: RawAxiosRequestConfig): AxiosPromise<ShopOrderOutputDTOAPI> {
37279
- return localVarFp.shopOrderControllerCancel(id, options).then((request) => request(axios, basePath));
37280
- },
37281
- /**
37282
- * Claiming an order will mark it as completed and give the user the item in-game<br> OperationId: `ShopOrderControllerClaim`
37283
- * @summary Claim an order
37284
- * @param {string} id
37285
- * @param {*} [options] Override http request option.
37286
- * @throws {RequiredError}
37287
- */
37288
- shopOrderControllerClaim(id: string, options?: RawAxiosRequestConfig): AxiosPromise<ShopOrderOutputDTOAPI> {
37289
- return localVarFp.shopOrderControllerClaim(id, options).then((request) => request(axios, basePath));
37290
- },
37291
- /**
37292
- * <br> OperationId: `ShopOrderControllerCreate`
37293
- * @summary Create
37294
- * @param {ShopOrderCreateDTO} [shopOrderCreateDTO] ShopOrderCreateDTO
40412
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
40413
+ * @summary Get effective config
40414
+ * @param {string} gameServerId
37295
40415
  * @param {*} [options] Override http request option.
37296
40416
  * @throws {RequiredError}
37297
40417
  */
37298
- shopOrderControllerCreate(
37299
- shopOrderCreateDTO?: ShopOrderCreateDTO,
40418
+ storefrontConfigControllerGetEffectiveConfig(
40419
+ gameServerId: string,
37300
40420
  options?: RawAxiosRequestConfig,
37301
- ): AxiosPromise<ShopOrderOutputDTOAPI> {
40421
+ ): AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI> {
37302
40422
  return localVarFp
37303
- .shopOrderControllerCreate(shopOrderCreateDTO, options)
40423
+ .storefrontConfigControllerGetEffectiveConfig(gameServerId, options)
37304
40424
  .then((request) => request(axios, basePath));
37305
40425
  },
37306
40426
  /**
37307
- * Get an order by its ID. This endpoint only returns orders that belong to the caller. When the caller has permission to view all orders, they can get any order.<br> OperationId: `ShopOrderControllerGetOne`
37308
- * @summary Get order by ID
37309
- * @param {string} id
40427
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
40428
+ * @summary List templates
37310
40429
  * @param {*} [options] Override http request option.
37311
40430
  * @throws {RequiredError}
37312
40431
  */
37313
- shopOrderControllerGetOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<ShopOrderOutputDTOAPI> {
37314
- return localVarFp.shopOrderControllerGetOne(id, options).then((request) => request(axios, basePath));
40432
+ storefrontConfigControllerListTemplates(
40433
+ options?: RawAxiosRequestConfig,
40434
+ ): AxiosPromise<StorefrontTemplateOutputArrayDTOAPI> {
40435
+ return localVarFp.storefrontConfigControllerListTemplates(options).then((request) => request(axios, basePath));
37315
40436
  },
37316
40437
  /**
37317
- * Search for orders. By default, this endpoint only returns your own orders. When the caller has permission to view all orders, they can search for all orders.<br> OperationId: `ShopOrderControllerSearch`
37318
- * @summary Search orders
37319
- * @param {ShopOrderSearchInputDTO} [shopOrderSearchInputDTO] ShopOrderSearchInputDTO
40438
+ * Set the storefront configuration for a game server. Validates the template id and values against the template schema. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerSetConfig`
40439
+ * @summary Set config
40440
+ * @param {string} gameServerId
40441
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
37320
40442
  * @param {*} [options] Override http request option.
37321
40443
  * @throws {RequiredError}
37322
40444
  */
37323
- shopOrderControllerSearch(
37324
- shopOrderSearchInputDTO?: ShopOrderSearchInputDTO,
40445
+ storefrontConfigControllerSetConfig(
40446
+ gameServerId: string,
40447
+ storefrontConfigUpsertBody?: StorefrontConfigUpsertBody,
37325
40448
  options?: RawAxiosRequestConfig,
37326
- ): AxiosPromise<ShopOrderOutputArrayDTOAPI> {
40449
+ ): AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI> {
37327
40450
  return localVarFp
37328
- .shopOrderControllerSearch(shopOrderSearchInputDTO, options)
40451
+ .storefrontConfigControllerSetConfig(gameServerId, storefrontConfigUpsertBody, options)
37329
40452
  .then((request) => request(axios, basePath));
37330
40453
  },
37331
40454
  };
37332
40455
  };
37333
40456
 
37334
40457
  /**
37335
- * ShopOrderApi - object-oriented interface
40458
+ * StorefrontConfigApi - object-oriented interface
37336
40459
  * @export
37337
- * @class ShopOrderApi
40460
+ * @class StorefrontConfigApi
37338
40461
  * @extends {BaseAPI}
37339
40462
  */
37340
- export class ShopOrderApi extends BaseAPI {
40463
+ export class StorefrontConfigApi extends BaseAPI {
37341
40464
  /**
37342
- * <br> OperationId: `ShopOrderControllerCancel`
37343
- * @summary Cancel
37344
- * @param {string} id
37345
- * @param {*} [options] Override http request option.
37346
- * @throws {RequiredError}
37347
- * @memberof ShopOrderApi
37348
- */
37349
- public shopOrderControllerCancel(id: string, options?: RawAxiosRequestConfig) {
37350
- return ShopOrderApiFp(this.configuration)
37351
- .shopOrderControllerCancel(id, options)
37352
- .then((request) => request(this.axios, this.basePath));
37353
- }
37354
-
37355
- /**
37356
- * Claiming an order will mark it as completed and give the user the item in-game<br> OperationId: `ShopOrderControllerClaim`
37357
- * @summary Claim an order
37358
- * @param {string} id
37359
- * @param {*} [options] Override http request option.
37360
- * @throws {RequiredError}
37361
- * @memberof ShopOrderApi
37362
- */
37363
- public shopOrderControllerClaim(id: string, options?: RawAxiosRequestConfig) {
37364
- return ShopOrderApiFp(this.configuration)
37365
- .shopOrderControllerClaim(id, options)
37366
- .then((request) => request(this.axios, this.basePath));
37367
- }
37368
-
37369
- /**
37370
- * <br> OperationId: `ShopOrderControllerCreate`
37371
- * @summary Create
37372
- * @param {ShopOrderCreateDTO} [shopOrderCreateDTO] ShopOrderCreateDTO
40465
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
40466
+ * @summary Get effective config
40467
+ * @param {string} gameServerId
37373
40468
  * @param {*} [options] Override http request option.
37374
40469
  * @throws {RequiredError}
37375
- * @memberof ShopOrderApi
40470
+ * @memberof StorefrontConfigApi
37376
40471
  */
37377
- public shopOrderControllerCreate(shopOrderCreateDTO?: ShopOrderCreateDTO, options?: RawAxiosRequestConfig) {
37378
- return ShopOrderApiFp(this.configuration)
37379
- .shopOrderControllerCreate(shopOrderCreateDTO, options)
40472
+ public storefrontConfigControllerGetEffectiveConfig(gameServerId: string, options?: RawAxiosRequestConfig) {
40473
+ return StorefrontConfigApiFp(this.configuration)
40474
+ .storefrontConfigControllerGetEffectiveConfig(gameServerId, options)
37380
40475
  .then((request) => request(this.axios, this.basePath));
37381
40476
  }
37382
40477
 
37383
40478
  /**
37384
- * Get an order by its ID. This endpoint only returns orders that belong to the caller. When the caller has permission to view all orders, they can get any order.<br> OperationId: `ShopOrderControllerGetOne`
37385
- * @summary Get order by ID
37386
- * @param {string} id
40479
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
40480
+ * @summary List templates
37387
40481
  * @param {*} [options] Override http request option.
37388
40482
  * @throws {RequiredError}
37389
- * @memberof ShopOrderApi
40483
+ * @memberof StorefrontConfigApi
37390
40484
  */
37391
- public shopOrderControllerGetOne(id: string, options?: RawAxiosRequestConfig) {
37392
- return ShopOrderApiFp(this.configuration)
37393
- .shopOrderControllerGetOne(id, options)
40485
+ public storefrontConfigControllerListTemplates(options?: RawAxiosRequestConfig) {
40486
+ return StorefrontConfigApiFp(this.configuration)
40487
+ .storefrontConfigControllerListTemplates(options)
37394
40488
  .then((request) => request(this.axios, this.basePath));
37395
40489
  }
37396
40490
 
37397
40491
  /**
37398
- * Search for orders. By default, this endpoint only returns your own orders. When the caller has permission to view all orders, they can search for all orders.<br> OperationId: `ShopOrderControllerSearch`
37399
- * @summary Search orders
37400
- * @param {ShopOrderSearchInputDTO} [shopOrderSearchInputDTO] ShopOrderSearchInputDTO
40492
+ * Set the storefront configuration for a game server. Validates the template id and values against the template schema. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerSetConfig`
40493
+ * @summary Set config
40494
+ * @param {string} gameServerId
40495
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
37401
40496
  * @param {*} [options] Override http request option.
37402
40497
  * @throws {RequiredError}
37403
- * @memberof ShopOrderApi
40498
+ * @memberof StorefrontConfigApi
37404
40499
  */
37405
- public shopOrderControllerSearch(shopOrderSearchInputDTO?: ShopOrderSearchInputDTO, options?: RawAxiosRequestConfig) {
37406
- return ShopOrderApiFp(this.configuration)
37407
- .shopOrderControllerSearch(shopOrderSearchInputDTO, options)
40500
+ public storefrontConfigControllerSetConfig(
40501
+ gameServerId: string,
40502
+ storefrontConfigUpsertBody?: StorefrontConfigUpsertBody,
40503
+ options?: RawAxiosRequestConfig,
40504
+ ) {
40505
+ return StorefrontConfigApiFp(this.configuration)
40506
+ .storefrontConfigControllerSetConfig(gameServerId, storefrontConfigUpsertBody, options)
37408
40507
  .then((request) => request(this.axios, this.basePath));
37409
40508
  }
37410
40509
  }
@@ -37992,6 +41091,33 @@ export const UserApiAxiosParamCreator = function (configuration?: Configuration)
37992
41091
  options: localVarRequestOptions,
37993
41092
  };
37994
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
+ },
37995
41121
  /**
37996
41122
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
37997
41123
  * @summary Create
@@ -38498,6 +41624,27 @@ export const UserApiFp = function (configuration?: Configuration) {
38498
41624
  configuration,
38499
41625
  )(axios, localVarOperationServerBasePath || basePath);
38500
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
+ },
38501
41648
  /**
38502
41649
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
38503
41650
  * @summary Create
@@ -38827,6 +41974,15 @@ export const UserApiFactory = function (configuration?: Configuration, basePath?
38827
41974
  .userControllerAssignRole(id, roleId, userRoleAssignChangeDTO, options)
38828
41975
  .then((request) => request(axios, basePath));
38829
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
+ },
38830
41986
  /**
38831
41987
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
38832
41988
  * @summary Create
@@ -39005,6 +42161,19 @@ export class UserApi extends BaseAPI {
39005
42161
  .then((request) => request(this.axios, this.basePath));
39006
42162
  }
39007
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
+
39008
42177
  /**
39009
42178
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
39010
42179
  * @summary Create
@@ -39673,3 +42842,474 @@ export class VariableApi extends BaseAPI {
39673
42842
  .then((request) => request(this.axios, this.basePath));
39674
42843
  }
39675
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
+ }