@takaro/apiclient 0.0.0-dev.8a7d47e → 0.0.0-dev.8be7330

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.
@@ -2599,6 +2599,50 @@ export declare const DomainUpdateInputDTOStateEnum: {
2599
2599
  readonly Maintenance: "MAINTENANCE";
2600
2600
  };
2601
2601
  export type DomainUpdateInputDTOStateEnum = (typeof DomainUpdateInputDTOStateEnum)[keyof typeof DomainUpdateInputDTOStateEnum];
2602
+ /**
2603
+ *
2604
+ * @export
2605
+ * @interface EffectiveStorefrontConfigDTO
2606
+ */
2607
+ export interface EffectiveStorefrontConfigDTO {
2608
+ /**
2609
+ *
2610
+ * @type {string}
2611
+ * @memberof EffectiveStorefrontConfigDTO
2612
+ */
2613
+ templateId: string;
2614
+ /**
2615
+ *
2616
+ * @type {object}
2617
+ * @memberof EffectiveStorefrontConfigDTO
2618
+ */
2619
+ values: object;
2620
+ /**
2621
+ *
2622
+ * @type {object}
2623
+ * @memberof EffectiveStorefrontConfigDTO
2624
+ */
2625
+ schema: object;
2626
+ }
2627
+ /**
2628
+ *
2629
+ * @export
2630
+ * @interface EffectiveStorefrontConfigOutputDTOAPI
2631
+ */
2632
+ export interface EffectiveStorefrontConfigOutputDTOAPI {
2633
+ /**
2634
+ *
2635
+ * @type {EffectiveStorefrontConfigDTO}
2636
+ * @memberof EffectiveStorefrontConfigOutputDTOAPI
2637
+ */
2638
+ data: EffectiveStorefrontConfigDTO;
2639
+ /**
2640
+ *
2641
+ * @type {MetadataOutput}
2642
+ * @memberof EffectiveStorefrontConfigOutputDTOAPI
2643
+ */
2644
+ meta: MetadataOutput;
2645
+ }
2602
2646
  /**
2603
2647
  *
2604
2648
  * @export
@@ -6623,6 +6667,459 @@ export interface InviteOutputDTO {
6623
6667
  */
6624
6668
  devServer: string;
6625
6669
  }
6670
+ /**
6671
+ *
6672
+ * @export
6673
+ * @interface InviteLinkCreateInputDTO
6674
+ */
6675
+ export interface InviteLinkCreateInputDTO {
6676
+ /**
6677
+ *
6678
+ * @type {Array<string>}
6679
+ * @memberof InviteLinkCreateInputDTO
6680
+ */
6681
+ roleIds?: Array<string>;
6682
+ /**
6683
+ *
6684
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6685
+ * @memberof InviteLinkCreateInputDTO
6686
+ */
6687
+ expiresAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6688
+ /**
6689
+ *
6690
+ * @type {number}
6691
+ * @memberof InviteLinkCreateInputDTO
6692
+ */
6693
+ maxUses?: number;
6694
+ }
6695
+ /**
6696
+ *
6697
+ * @export
6698
+ * @interface InviteLinkCreateResultDTO
6699
+ */
6700
+ export interface InviteLinkCreateResultDTO {
6701
+ /**
6702
+ *
6703
+ * @type {string}
6704
+ * @memberof InviteLinkCreateResultDTO
6705
+ */
6706
+ inviteUrl: string;
6707
+ /**
6708
+ *
6709
+ * @type {string}
6710
+ * @memberof InviteLinkCreateResultDTO
6711
+ */
6712
+ token: string;
6713
+ /**
6714
+ *
6715
+ * @type {string}
6716
+ * @memberof InviteLinkCreateResultDTO
6717
+ */
6718
+ id: string;
6719
+ /**
6720
+ *
6721
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6722
+ * @memberof InviteLinkCreateResultDTO
6723
+ */
6724
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6725
+ /**
6726
+ *
6727
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6728
+ * @memberof InviteLinkCreateResultDTO
6729
+ */
6730
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6731
+ /**
6732
+ *
6733
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6734
+ * @memberof InviteLinkCreateResultDTO
6735
+ */
6736
+ expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6737
+ /**
6738
+ *
6739
+ * @type {number}
6740
+ * @memberof InviteLinkCreateResultDTO
6741
+ */
6742
+ maxUses?: number;
6743
+ /**
6744
+ *
6745
+ * @type {number}
6746
+ * @memberof InviteLinkCreateResultDTO
6747
+ */
6748
+ uses: number;
6749
+ /**
6750
+ *
6751
+ * @type {number}
6752
+ * @memberof InviteLinkCreateResultDTO
6753
+ */
6754
+ remaining?: number;
6755
+ /**
6756
+ *
6757
+ * @type {string}
6758
+ * @memberof InviteLinkCreateResultDTO
6759
+ */
6760
+ status: InviteLinkCreateResultDTOStatusEnum;
6761
+ /**
6762
+ *
6763
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6764
+ * @memberof InviteLinkCreateResultDTO
6765
+ */
6766
+ revokedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6767
+ /**
6768
+ *
6769
+ * @type {string}
6770
+ * @memberof InviteLinkCreateResultDTO
6771
+ */
6772
+ createdBy?: string;
6773
+ /**
6774
+ *
6775
+ * @type {Array<InviteLinkRoleDTO>}
6776
+ * @memberof InviteLinkCreateResultDTO
6777
+ */
6778
+ roles: Array<InviteLinkRoleDTO>;
6779
+ }
6780
+ export declare const InviteLinkCreateResultDTOStatusEnum: {
6781
+ readonly Active: "ACTIVE";
6782
+ readonly Revoked: "REVOKED";
6783
+ readonly Expired: "EXPIRED";
6784
+ readonly Depleted: "DEPLETED";
6785
+ };
6786
+ export type InviteLinkCreateResultDTOStatusEnum = (typeof InviteLinkCreateResultDTOStatusEnum)[keyof typeof InviteLinkCreateResultDTOStatusEnum];
6787
+ /**
6788
+ *
6789
+ * @export
6790
+ * @interface InviteLinkCreateResultDTOAPI
6791
+ */
6792
+ export interface InviteLinkCreateResultDTOAPI {
6793
+ /**
6794
+ *
6795
+ * @type {InviteLinkCreateResultDTO}
6796
+ * @memberof InviteLinkCreateResultDTOAPI
6797
+ */
6798
+ data: InviteLinkCreateResultDTO;
6799
+ /**
6800
+ *
6801
+ * @type {MetadataOutput}
6802
+ * @memberof InviteLinkCreateResultDTOAPI
6803
+ */
6804
+ meta: MetadataOutput;
6805
+ }
6806
+ /**
6807
+ *
6808
+ * @export
6809
+ * @interface InviteLinkOutputDTO
6810
+ */
6811
+ export interface InviteLinkOutputDTO {
6812
+ /**
6813
+ *
6814
+ * @type {string}
6815
+ * @memberof InviteLinkOutputDTO
6816
+ */
6817
+ id: string;
6818
+ /**
6819
+ *
6820
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6821
+ * @memberof InviteLinkOutputDTO
6822
+ */
6823
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6824
+ /**
6825
+ *
6826
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6827
+ * @memberof InviteLinkOutputDTO
6828
+ */
6829
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6830
+ /**
6831
+ *
6832
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6833
+ * @memberof InviteLinkOutputDTO
6834
+ */
6835
+ expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6836
+ /**
6837
+ *
6838
+ * @type {number}
6839
+ * @memberof InviteLinkOutputDTO
6840
+ */
6841
+ maxUses?: number;
6842
+ /**
6843
+ *
6844
+ * @type {number}
6845
+ * @memberof InviteLinkOutputDTO
6846
+ */
6847
+ uses: number;
6848
+ /**
6849
+ *
6850
+ * @type {number}
6851
+ * @memberof InviteLinkOutputDTO
6852
+ */
6853
+ remaining?: number;
6854
+ /**
6855
+ *
6856
+ * @type {string}
6857
+ * @memberof InviteLinkOutputDTO
6858
+ */
6859
+ status: InviteLinkOutputDTOStatusEnum;
6860
+ /**
6861
+ *
6862
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6863
+ * @memberof InviteLinkOutputDTO
6864
+ */
6865
+ revokedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6866
+ /**
6867
+ *
6868
+ * @type {string}
6869
+ * @memberof InviteLinkOutputDTO
6870
+ */
6871
+ createdBy?: string;
6872
+ /**
6873
+ *
6874
+ * @type {Array<InviteLinkRoleDTO>}
6875
+ * @memberof InviteLinkOutputDTO
6876
+ */
6877
+ roles: Array<InviteLinkRoleDTO>;
6878
+ }
6879
+ export declare const InviteLinkOutputDTOStatusEnum: {
6880
+ readonly Active: "ACTIVE";
6881
+ readonly Revoked: "REVOKED";
6882
+ readonly Expired: "EXPIRED";
6883
+ readonly Depleted: "DEPLETED";
6884
+ };
6885
+ export type InviteLinkOutputDTOStatusEnum = (typeof InviteLinkOutputDTOStatusEnum)[keyof typeof InviteLinkOutputDTOStatusEnum];
6886
+ /**
6887
+ *
6888
+ * @export
6889
+ * @interface InviteLinkOutputDTOAPI
6890
+ */
6891
+ export interface InviteLinkOutputDTOAPI {
6892
+ /**
6893
+ *
6894
+ * @type {InviteLinkOutputDTO}
6895
+ * @memberof InviteLinkOutputDTOAPI
6896
+ */
6897
+ data: InviteLinkOutputDTO;
6898
+ /**
6899
+ *
6900
+ * @type {MetadataOutput}
6901
+ * @memberof InviteLinkOutputDTOAPI
6902
+ */
6903
+ meta: MetadataOutput;
6904
+ }
6905
+ /**
6906
+ *
6907
+ * @export
6908
+ * @interface InviteLinkOutputArrayDTOAPI
6909
+ */
6910
+ export interface InviteLinkOutputArrayDTOAPI {
6911
+ /**
6912
+ *
6913
+ * @type {Array<InviteLinkOutputDTO>}
6914
+ * @memberof InviteLinkOutputArrayDTOAPI
6915
+ */
6916
+ data: Array<InviteLinkOutputDTO>;
6917
+ /**
6918
+ *
6919
+ * @type {MetadataOutput}
6920
+ * @memberof InviteLinkOutputArrayDTOAPI
6921
+ */
6922
+ meta: MetadataOutput;
6923
+ }
6924
+ /**
6925
+ *
6926
+ * @export
6927
+ * @interface InviteLinkPreviewDTO
6928
+ */
6929
+ export interface InviteLinkPreviewDTO {
6930
+ /**
6931
+ *
6932
+ * @type {InviteLinkPreviewDomainDTO}
6933
+ * @memberof InviteLinkPreviewDTO
6934
+ */
6935
+ domain: InviteLinkPreviewDomainDTO;
6936
+ /**
6937
+ *
6938
+ * @type {Array<InviteLinkPreviewRoleDTO>}
6939
+ * @memberof InviteLinkPreviewDTO
6940
+ */
6941
+ roles: Array<InviteLinkPreviewRoleDTO>;
6942
+ /**
6943
+ *
6944
+ * @type {string}
6945
+ * @memberof InviteLinkPreviewDTO
6946
+ */
6947
+ status: InviteLinkPreviewDTOStatusEnum;
6948
+ /**
6949
+ *
6950
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6951
+ * @memberof InviteLinkPreviewDTO
6952
+ */
6953
+ expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6954
+ /**
6955
+ *
6956
+ * @type {number}
6957
+ * @memberof InviteLinkPreviewDTO
6958
+ */
6959
+ remaining?: number;
6960
+ }
6961
+ export declare const InviteLinkPreviewDTOStatusEnum: {
6962
+ readonly Active: "ACTIVE";
6963
+ readonly Revoked: "REVOKED";
6964
+ readonly Expired: "EXPIRED";
6965
+ readonly Depleted: "DEPLETED";
6966
+ };
6967
+ export type InviteLinkPreviewDTOStatusEnum = (typeof InviteLinkPreviewDTOStatusEnum)[keyof typeof InviteLinkPreviewDTOStatusEnum];
6968
+ /**
6969
+ *
6970
+ * @export
6971
+ * @interface InviteLinkPreviewDTOAPI
6972
+ */
6973
+ export interface InviteLinkPreviewDTOAPI {
6974
+ /**
6975
+ *
6976
+ * @type {InviteLinkPreviewDTO}
6977
+ * @memberof InviteLinkPreviewDTOAPI
6978
+ */
6979
+ data: InviteLinkPreviewDTO;
6980
+ /**
6981
+ *
6982
+ * @type {MetadataOutput}
6983
+ * @memberof InviteLinkPreviewDTOAPI
6984
+ */
6985
+ meta: MetadataOutput;
6986
+ }
6987
+ /**
6988
+ *
6989
+ * @export
6990
+ * @interface InviteLinkPreviewDomainDTO
6991
+ */
6992
+ export interface InviteLinkPreviewDomainDTO {
6993
+ /**
6994
+ *
6995
+ * @type {string}
6996
+ * @memberof InviteLinkPreviewDomainDTO
6997
+ */
6998
+ id: string;
6999
+ /**
7000
+ *
7001
+ * @type {string}
7002
+ * @memberof InviteLinkPreviewDomainDTO
7003
+ */
7004
+ name: string;
7005
+ }
7006
+ /**
7007
+ *
7008
+ * @export
7009
+ * @interface InviteLinkPreviewRoleDTO
7010
+ */
7011
+ export interface InviteLinkPreviewRoleDTO {
7012
+ /**
7013
+ *
7014
+ * @type {string}
7015
+ * @memberof InviteLinkPreviewRoleDTO
7016
+ */
7017
+ id: string;
7018
+ /**
7019
+ *
7020
+ * @type {string}
7021
+ * @memberof InviteLinkPreviewRoleDTO
7022
+ */
7023
+ name: string;
7024
+ }
7025
+ /**
7026
+ *
7027
+ * @export
7028
+ * @interface InviteLinkRoleDTO
7029
+ */
7030
+ export interface InviteLinkRoleDTO {
7031
+ /**
7032
+ *
7033
+ * @type {string}
7034
+ * @memberof InviteLinkRoleDTO
7035
+ */
7036
+ roleId: string;
7037
+ /**
7038
+ *
7039
+ * @type {string}
7040
+ * @memberof InviteLinkRoleDTO
7041
+ */
7042
+ name: string;
7043
+ }
7044
+ /**
7045
+ *
7046
+ * @export
7047
+ * @interface InviteLinkSearchInputDTO
7048
+ */
7049
+ export interface InviteLinkSearchInputDTO {
7050
+ /**
7051
+ *
7052
+ * @type {string}
7053
+ * @memberof InviteLinkSearchInputDTO
7054
+ */
7055
+ sortBy?: string;
7056
+ /**
7057
+ *
7058
+ * @type {any}
7059
+ * @memberof InviteLinkSearchInputDTO
7060
+ */
7061
+ filters?: any;
7062
+ /**
7063
+ *
7064
+ * @type {any}
7065
+ * @memberof InviteLinkSearchInputDTO
7066
+ */
7067
+ search?: any;
7068
+ /**
7069
+ *
7070
+ * @type {any}
7071
+ * @memberof InviteLinkSearchInputDTO
7072
+ */
7073
+ greaterThan?: any;
7074
+ /**
7075
+ *
7076
+ * @type {any}
7077
+ * @memberof InviteLinkSearchInputDTO
7078
+ */
7079
+ lessThan?: any;
7080
+ /**
7081
+ *
7082
+ * @type {number}
7083
+ * @memberof InviteLinkSearchInputDTO
7084
+ */
7085
+ page?: number;
7086
+ /**
7087
+ *
7088
+ * @type {number}
7089
+ * @memberof InviteLinkSearchInputDTO
7090
+ */
7091
+ limit?: number;
7092
+ /**
7093
+ *
7094
+ * @type {string}
7095
+ * @memberof InviteLinkSearchInputDTO
7096
+ */
7097
+ sortDirection?: InviteLinkSearchInputDTOSortDirectionEnum;
7098
+ /**
7099
+ *
7100
+ * @type {Array<string>}
7101
+ * @memberof InviteLinkSearchInputDTO
7102
+ */
7103
+ extend?: Array<string>;
7104
+ }
7105
+ export declare const InviteLinkSearchInputDTOSortDirectionEnum: {
7106
+ readonly Asc: "asc";
7107
+ readonly Desc: "desc";
7108
+ };
7109
+ export type InviteLinkSearchInputDTOSortDirectionEnum = (typeof InviteLinkSearchInputDTOSortDirectionEnum)[keyof typeof InviteLinkSearchInputDTOSortDirectionEnum];
7110
+ /**
7111
+ *
7112
+ * @export
7113
+ * @interface RedeemInputDTO
7114
+ */
7115
+ export interface RedeemInputDTO {
7116
+ /**
7117
+ *
7118
+ * @type {string}
7119
+ * @memberof RedeemInputDTO
7120
+ */
7121
+ token: string;
7122
+ }
6626
7123
  /**
6627
7124
  *
6628
7125
  * @export
@@ -7196,6 +7693,32 @@ export interface LoginOutputDTOAPI {
7196
7693
  */
7197
7694
  meta: MetadataOutput;
7198
7695
  }
7696
+ /**
7697
+ *
7698
+ * @export
7699
+ * @interface LoginQueryParams
7700
+ */
7701
+ export interface LoginQueryParams {
7702
+ /**
7703
+ *
7704
+ * @type {string}
7705
+ * @memberof LoginQueryParams
7706
+ */
7707
+ redirect?: string;
7708
+ }
7709
+ /**
7710
+ *
7711
+ * @export
7712
+ * @interface LogoutQueryParams
7713
+ */
7714
+ export interface LogoutQueryParams {
7715
+ /**
7716
+ *
7717
+ * @type {string}
7718
+ * @memberof LogoutQueryParams
7719
+ */
7720
+ redirect?: string;
7721
+ }
7199
7722
  /**
7200
7723
  *
7201
7724
  * @export
@@ -7319,7 +7842,7 @@ export interface MeOutputDTO {
7319
7842
  * @type {UserOutputWithRolesDTO}
7320
7843
  * @memberof MeOutputDTO
7321
7844
  */
7322
- user: UserOutputWithRolesDTO;
7845
+ user?: UserOutputWithRolesDTO;
7323
7846
  /**
7324
7847
  *
7325
7848
  * @type {Array<DomainOutputDTO>}
@@ -7331,7 +7854,7 @@ export interface MeOutputDTO {
7331
7854
  * @type {string}
7332
7855
  * @memberof MeOutputDTO
7333
7856
  */
7334
- domain: string;
7857
+ domain?: string;
7335
7858
  /**
7336
7859
  *
7337
7860
  * @type {PlayerOutputWithRolesDTO}
@@ -7774,51 +8297,139 @@ export interface ModuleHealthScoresDTO {
7774
8297
  * @type {number}
7775
8298
  * @memberof ModuleHealthScoresDTO
7776
8299
  */
7777
- cronSuccess: number;
8300
+ cronSuccess: number;
8301
+ /**
8302
+ *
8303
+ * @type {number}
8304
+ * @memberof ModuleHealthScoresDTO
8305
+ */
8306
+ cmdSuccess: number;
8307
+ /**
8308
+ *
8309
+ * @type {number}
8310
+ * @memberof ModuleHealthScoresDTO
8311
+ */
8312
+ shopActionSuccess: number;
8313
+ /**
8314
+ *
8315
+ * @type {number}
8316
+ * @memberof ModuleHealthScoresDTO
8317
+ */
8318
+ volumeRank: number;
8319
+ /**
8320
+ *
8321
+ * @type {number}
8322
+ * @memberof ModuleHealthScoresDTO
8323
+ */
8324
+ playerReach: number;
8325
+ }
8326
+ /**
8327
+ *
8328
+ * @export
8329
+ * @interface ModuleInstallParamId
8330
+ */
8331
+ export interface ModuleInstallParamId {
8332
+ /**
8333
+ *
8334
+ * @type {string}
8335
+ * @memberof ModuleInstallParamId
8336
+ */
8337
+ moduleId: string;
8338
+ /**
8339
+ *
8340
+ * @type {string}
8341
+ * @memberof ModuleInstallParamId
8342
+ */
8343
+ gameServerId: string;
8344
+ }
8345
+ /**
8346
+ *
8347
+ * @export
8348
+ * @interface ModuleInstallationKpisDTO
8349
+ */
8350
+ export interface ModuleInstallationKpisDTO {
8351
+ /**
8352
+ *
8353
+ * @type {number}
8354
+ * @memberof ModuleInstallationKpisDTO
8355
+ */
8356
+ runs: number;
7778
8357
  /**
7779
8358
  *
7780
8359
  * @type {number}
7781
- * @memberof ModuleHealthScoresDTO
8360
+ * @memberof ModuleInstallationKpisDTO
7782
8361
  */
7783
- cmdSuccess: number;
8362
+ failures: number;
7784
8363
  /**
7785
8364
  *
7786
8365
  * @type {number}
7787
- * @memberof ModuleHealthScoresDTO
8366
+ * @memberof ModuleInstallationKpisDTO
7788
8367
  */
7789
- shopActionSuccess: number;
8368
+ successRate: number;
8369
+ }
8370
+ /**
8371
+ *
8372
+ * @export
8373
+ * @interface ModuleInstallationKpisDTOAPI
8374
+ */
8375
+ export interface ModuleInstallationKpisDTOAPI {
7790
8376
  /**
7791
8377
  *
7792
- * @type {number}
7793
- * @memberof ModuleHealthScoresDTO
8378
+ * @type {ModuleInstallationKpisDTO}
8379
+ * @memberof ModuleInstallationKpisDTOAPI
7794
8380
  */
7795
- volumeRank: number;
8381
+ data: ModuleInstallationKpisDTO;
7796
8382
  /**
7797
8383
  *
7798
- * @type {number}
7799
- * @memberof ModuleHealthScoresDTO
8384
+ * @type {MetadataOutput}
8385
+ * @memberof ModuleInstallationKpisDTOAPI
7800
8386
  */
7801
- playerReach: number;
8387
+ meta: MetadataOutput;
7802
8388
  }
7803
8389
  /**
7804
8390
  *
7805
8391
  * @export
7806
- * @interface ModuleInstallParamId
8392
+ * @interface ModuleInstallationKpisQueryDTO
7807
8393
  */
7808
- export interface ModuleInstallParamId {
8394
+ export interface ModuleInstallationKpisQueryDTO {
7809
8395
  /**
7810
8396
  *
7811
8397
  * @type {string}
7812
- * @memberof ModuleInstallParamId
8398
+ * @memberof ModuleInstallationKpisQueryDTO
7813
8399
  */
7814
- moduleId: string;
8400
+ startDate?: string;
7815
8401
  /**
7816
8402
  *
7817
8403
  * @type {string}
7818
- * @memberof ModuleInstallParamId
8404
+ * @memberof ModuleInstallationKpisQueryDTO
8405
+ */
8406
+ endDate?: string;
8407
+ /**
8408
+ *
8409
+ * @type {string}
8410
+ * @memberof ModuleInstallationKpisQueryDTO
7819
8411
  */
7820
8412
  gameServerId: string;
8413
+ /**
8414
+ *
8415
+ * @type {string}
8416
+ * @memberof ModuleInstallationKpisQueryDTO
8417
+ */
8418
+ moduleId: string;
8419
+ /**
8420
+ *
8421
+ * @type {string}
8422
+ * @memberof ModuleInstallationKpisQueryDTO
8423
+ */
8424
+ period?: ModuleInstallationKpisQueryDTOPeriodEnum;
7821
8425
  }
8426
+ export declare const ModuleInstallationKpisQueryDTOPeriodEnum: {
8427
+ readonly _24h: "24h";
8428
+ readonly _7d: "7d";
8429
+ readonly _30d: "30d";
8430
+ readonly _90d: "90d";
8431
+ };
8432
+ export type ModuleInstallationKpisQueryDTOPeriodEnum = (typeof ModuleInstallationKpisQueryDTOPeriodEnum)[keyof typeof ModuleInstallationKpisQueryDTOPeriodEnum];
7822
8433
  /**
7823
8434
  *
7824
8435
  * @export
@@ -13625,6 +14236,25 @@ export interface ShopDeadStockItemDTO {
13625
14236
  */
13626
14237
  daysSinceLastSale?: number;
13627
14238
  }
14239
+ /**
14240
+ *
14241
+ * @export
14242
+ * @interface ShopImportFailureDTO
14243
+ */
14244
+ export interface ShopImportFailureDTO {
14245
+ /**
14246
+ *
14247
+ * @type {string}
14248
+ * @memberof ShopImportFailureDTO
14249
+ */
14250
+ name: string;
14251
+ /**
14252
+ *
14253
+ * @type {string}
14254
+ * @memberof ShopImportFailureDTO
14255
+ */
14256
+ reason: string;
14257
+ }
13628
14258
  /**
13629
14259
  *
13630
14260
  * @export
@@ -13650,6 +14280,44 @@ export interface ShopImportOptions {
13650
14280
  */
13651
14281
  gameServerId: string;
13652
14282
  }
14283
+ /**
14284
+ *
14285
+ * @export
14286
+ * @interface ShopImportResultDTO
14287
+ */
14288
+ export interface ShopImportResultDTO {
14289
+ /**
14290
+ *
14291
+ * @type {number}
14292
+ * @memberof ShopImportResultDTO
14293
+ */
14294
+ imported: number;
14295
+ /**
14296
+ *
14297
+ * @type {Array<ShopImportFailureDTO>}
14298
+ * @memberof ShopImportResultDTO
14299
+ */
14300
+ failed: Array<ShopImportFailureDTO>;
14301
+ }
14302
+ /**
14303
+ *
14304
+ * @export
14305
+ * @interface ShopImportResultDTOAPI
14306
+ */
14307
+ export interface ShopImportResultDTOAPI {
14308
+ /**
14309
+ *
14310
+ * @type {ShopImportResultDTO}
14311
+ * @memberof ShopImportResultDTOAPI
14312
+ */
14313
+ data: ShopImportResultDTO;
14314
+ /**
14315
+ *
14316
+ * @type {MetadataOutput}
14317
+ * @memberof ShopImportResultDTOAPI
14318
+ */
14319
+ meta: MetadataOutput;
14320
+ }
13653
14321
  /**
13654
14322
  *
13655
14323
  * @export
@@ -14614,163 +15282,332 @@ export interface ShopSearchInputAllowedRangeFilter {
14614
15282
  * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
14615
15283
  * @memberof ShopSearchInputAllowedRangeFilter
14616
15284
  */
14617
- createdAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15285
+ createdAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15286
+ /**
15287
+ *
15288
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
15289
+ * @memberof ShopSearchInputAllowedRangeFilter
15290
+ */
15291
+ updatedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15292
+ }
15293
+ /**
15294
+ *
15295
+ * @export
15296
+ * @interface ShopTopBuyerDTO
15297
+ */
15298
+ export interface ShopTopBuyerDTO {
15299
+ /**
15300
+ *
15301
+ * @type {string}
15302
+ * @memberof ShopTopBuyerDTO
15303
+ */
15304
+ playerId: string;
15305
+ /**
15306
+ *
15307
+ * @type {string}
15308
+ * @memberof ShopTopBuyerDTO
15309
+ */
15310
+ playerName?: string;
15311
+ /**
15312
+ *
15313
+ * @type {number}
15314
+ * @memberof ShopTopBuyerDTO
15315
+ */
15316
+ orderCount: number;
15317
+ /**
15318
+ *
15319
+ * @type {number}
15320
+ * @memberof ShopTopBuyerDTO
15321
+ */
15322
+ totalSpend: number;
15323
+ }
15324
+ /**
15325
+ *
15326
+ * @export
15327
+ * @interface ShopTopBuyerDTOAPI
15328
+ */
15329
+ export interface ShopTopBuyerDTOAPI {
15330
+ /**
15331
+ *
15332
+ * @type {Array<ShopTopBuyerDTO>}
15333
+ * @memberof ShopTopBuyerDTOAPI
15334
+ */
15335
+ data: Array<ShopTopBuyerDTO>;
15336
+ /**
15337
+ *
15338
+ * @type {MetadataOutput}
15339
+ * @memberof ShopTopBuyerDTOAPI
15340
+ */
15341
+ meta: MetadataOutput;
15342
+ }
15343
+ /**
15344
+ *
15345
+ * @export
15346
+ * @interface ShopTopListingDTO
15347
+ */
15348
+ export interface ShopTopListingDTO {
15349
+ /**
15350
+ *
15351
+ * @type {string}
15352
+ * @memberof ShopTopListingDTO
15353
+ */
15354
+ name: string;
15355
+ /**
15356
+ *
15357
+ * @type {number}
15358
+ * @memberof ShopTopListingDTO
15359
+ */
15360
+ orderCount: number;
15361
+ /**
15362
+ *
15363
+ * @type {number}
15364
+ * @memberof ShopTopListingDTO
15365
+ */
15366
+ totalRevenue: number;
15367
+ /**
15368
+ *
15369
+ * @type {number}
15370
+ * @memberof ShopTopListingDTO
15371
+ */
15372
+ quantity: number;
15373
+ }
15374
+ /**
15375
+ *
15376
+ * @export
15377
+ * @interface ShopTopListingDTOAPI
15378
+ */
15379
+ export interface ShopTopListingDTOAPI {
15380
+ /**
15381
+ *
15382
+ * @type {Array<ShopTopListingDTO>}
15383
+ * @memberof ShopTopListingDTOAPI
15384
+ */
15385
+ data: Array<ShopTopListingDTO>;
15386
+ /**
15387
+ *
15388
+ * @type {MetadataOutput}
15389
+ * @memberof ShopTopListingDTOAPI
15390
+ */
15391
+ meta: MetadataOutput;
15392
+ }
15393
+ /**
15394
+ *
15395
+ * @export
15396
+ * @interface SmallModuleOutputArrayDTOAPI
15397
+ */
15398
+ export interface SmallModuleOutputArrayDTOAPI {
15399
+ /**
15400
+ *
15401
+ * @type {Array<SmallModuleVersionOutputDTO>}
15402
+ * @memberof SmallModuleOutputArrayDTOAPI
15403
+ */
15404
+ data: Array<SmallModuleVersionOutputDTO>;
15405
+ /**
15406
+ *
15407
+ * @type {MetadataOutput}
15408
+ * @memberof SmallModuleOutputArrayDTOAPI
15409
+ */
15410
+ meta: MetadataOutput;
15411
+ }
15412
+ /**
15413
+ *
15414
+ * @export
15415
+ * @interface SmallModuleVersionOutputDTO
15416
+ */
15417
+ export interface SmallModuleVersionOutputDTO {
15418
+ /**
15419
+ *
15420
+ * @type {string}
15421
+ * @memberof SmallModuleVersionOutputDTO
15422
+ */
15423
+ id: string;
15424
+ /**
15425
+ *
15426
+ * @type {string}
15427
+ * @memberof SmallModuleVersionOutputDTO
15428
+ */
15429
+ tag: string;
15430
+ /**
15431
+ *
15432
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
15433
+ * @memberof SmallModuleVersionOutputDTO
15434
+ */
15435
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15436
+ /**
15437
+ *
15438
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
15439
+ * @memberof SmallModuleVersionOutputDTO
15440
+ */
15441
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15442
+ }
15443
+ /**
15444
+ *
15445
+ * @export
15446
+ * @interface StorefrontConfigCreateDTO
15447
+ */
15448
+ export interface StorefrontConfigCreateDTO {
15449
+ /**
15450
+ *
15451
+ * @type {string}
15452
+ * @memberof StorefrontConfigCreateDTO
15453
+ */
15454
+ gameServerId: string;
15455
+ /**
15456
+ *
15457
+ * @type {string}
15458
+ * @memberof StorefrontConfigCreateDTO
15459
+ */
15460
+ templateId: string;
14618
15461
  /**
14619
15462
  *
14620
- * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
14621
- * @memberof ShopSearchInputAllowedRangeFilter
15463
+ * @type {object}
15464
+ * @memberof StorefrontConfigCreateDTO
14622
15465
  */
14623
- updatedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15466
+ values?: object;
14624
15467
  }
14625
15468
  /**
14626
15469
  *
14627
15470
  * @export
14628
- * @interface ShopTopBuyerDTO
15471
+ * @interface StorefrontConfigOutputDTO
14629
15472
  */
14630
- export interface ShopTopBuyerDTO {
15473
+ export interface StorefrontConfigOutputDTO {
14631
15474
  /**
14632
15475
  *
14633
15476
  * @type {string}
14634
- * @memberof ShopTopBuyerDTO
15477
+ * @memberof StorefrontConfigOutputDTO
14635
15478
  */
14636
- playerId: string;
15479
+ gameServerId: string;
14637
15480
  /**
14638
15481
  *
14639
15482
  * @type {string}
14640
- * @memberof ShopTopBuyerDTO
15483
+ * @memberof StorefrontConfigOutputDTO
14641
15484
  */
14642
- playerName?: string;
15485
+ templateId: string;
14643
15486
  /**
14644
15487
  *
14645
- * @type {number}
14646
- * @memberof ShopTopBuyerDTO
15488
+ * @type {object}
15489
+ * @memberof StorefrontConfigOutputDTO
14647
15490
  */
14648
- orderCount: number;
15491
+ values: object;
14649
15492
  /**
14650
15493
  *
14651
- * @type {number}
14652
- * @memberof ShopTopBuyerDTO
15494
+ * @type {string}
15495
+ * @memberof StorefrontConfigOutputDTO
14653
15496
  */
14654
- totalSpend: number;
14655
- }
14656
- /**
14657
- *
14658
- * @export
14659
- * @interface ShopTopBuyerDTOAPI
14660
- */
14661
- export interface ShopTopBuyerDTOAPI {
15497
+ id: string;
14662
15498
  /**
14663
15499
  *
14664
- * @type {Array<ShopTopBuyerDTO>}
14665
- * @memberof ShopTopBuyerDTOAPI
15500
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
15501
+ * @memberof StorefrontConfigOutputDTO
14666
15502
  */
14667
- data: Array<ShopTopBuyerDTO>;
15503
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
14668
15504
  /**
14669
15505
  *
14670
- * @type {MetadataOutput}
14671
- * @memberof ShopTopBuyerDTOAPI
15506
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
15507
+ * @memberof StorefrontConfigOutputDTO
14672
15508
  */
14673
- meta: MetadataOutput;
15509
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
14674
15510
  }
14675
15511
  /**
14676
15512
  *
14677
15513
  * @export
14678
- * @interface ShopTopListingDTO
15514
+ * @interface StorefrontConfigUpdateDTO
14679
15515
  */
14680
- export interface ShopTopListingDTO {
15516
+ export interface StorefrontConfigUpdateDTO {
14681
15517
  /**
14682
15518
  *
14683
15519
  * @type {string}
14684
- * @memberof ShopTopListingDTO
14685
- */
14686
- name: string;
14687
- /**
14688
- *
14689
- * @type {number}
14690
- * @memberof ShopTopListingDTO
14691
- */
14692
- orderCount: number;
14693
- /**
14694
- *
14695
- * @type {number}
14696
- * @memberof ShopTopListingDTO
15520
+ * @memberof StorefrontConfigUpdateDTO
14697
15521
  */
14698
- totalRevenue: number;
15522
+ templateId?: string;
14699
15523
  /**
14700
15524
  *
14701
- * @type {number}
14702
- * @memberof ShopTopListingDTO
15525
+ * @type {object}
15526
+ * @memberof StorefrontConfigUpdateDTO
14703
15527
  */
14704
- quantity: number;
15528
+ values?: object;
14705
15529
  }
14706
15530
  /**
14707
15531
  *
14708
15532
  * @export
14709
- * @interface ShopTopListingDTOAPI
15533
+ * @interface StorefrontConfigUpsertBody
14710
15534
  */
14711
- export interface ShopTopListingDTOAPI {
15535
+ export interface StorefrontConfigUpsertBody {
14712
15536
  /**
14713
15537
  *
14714
- * @type {Array<ShopTopListingDTO>}
14715
- * @memberof ShopTopListingDTOAPI
15538
+ * @type {string}
15539
+ * @memberof StorefrontConfigUpsertBody
14716
15540
  */
14717
- data: Array<ShopTopListingDTO>;
15541
+ templateId: string;
14718
15542
  /**
14719
15543
  *
14720
- * @type {MetadataOutput}
14721
- * @memberof ShopTopListingDTOAPI
15544
+ * @type {object}
15545
+ * @memberof StorefrontConfigUpsertBody
14722
15546
  */
14723
- meta: MetadataOutput;
15547
+ values: object;
14724
15548
  }
14725
15549
  /**
14726
15550
  *
14727
15551
  * @export
14728
- * @interface SmallModuleOutputArrayDTOAPI
15552
+ * @interface StorefrontConfigUpsertDTO
14729
15553
  */
14730
- export interface SmallModuleOutputArrayDTOAPI {
15554
+ export interface StorefrontConfigUpsertDTO {
14731
15555
  /**
14732
15556
  *
14733
- * @type {Array<SmallModuleVersionOutputDTO>}
14734
- * @memberof SmallModuleOutputArrayDTOAPI
15557
+ * @type {string}
15558
+ * @memberof StorefrontConfigUpsertDTO
14735
15559
  */
14736
- data: Array<SmallModuleVersionOutputDTO>;
15560
+ templateId: string;
14737
15561
  /**
14738
15562
  *
14739
- * @type {MetadataOutput}
14740
- * @memberof SmallModuleOutputArrayDTOAPI
15563
+ * @type {object}
15564
+ * @memberof StorefrontConfigUpsertDTO
14741
15565
  */
14742
- meta: MetadataOutput;
15566
+ values: object;
14743
15567
  }
14744
15568
  /**
14745
15569
  *
14746
15570
  * @export
14747
- * @interface SmallModuleVersionOutputDTO
15571
+ * @interface StorefrontTemplateDTO
14748
15572
  */
14749
- export interface SmallModuleVersionOutputDTO {
15573
+ export interface StorefrontTemplateDTO {
14750
15574
  /**
14751
15575
  *
14752
15576
  * @type {string}
14753
- * @memberof SmallModuleVersionOutputDTO
15577
+ * @memberof StorefrontTemplateDTO
14754
15578
  */
14755
15579
  id: string;
14756
15580
  /**
14757
15581
  *
14758
15582
  * @type {string}
14759
- * @memberof SmallModuleVersionOutputDTO
15583
+ * @memberof StorefrontTemplateDTO
14760
15584
  */
14761
- tag: string;
15585
+ name: string;
14762
15586
  /**
14763
15587
  *
14764
- * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
14765
- * @memberof SmallModuleVersionOutputDTO
15588
+ * @type {object}
15589
+ * @memberof StorefrontTemplateDTO
14766
15590
  */
14767
- createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15591
+ schema: object;
15592
+ }
15593
+ /**
15594
+ *
15595
+ * @export
15596
+ * @interface StorefrontTemplateOutputArrayDTOAPI
15597
+ */
15598
+ export interface StorefrontTemplateOutputArrayDTOAPI {
14768
15599
  /**
14769
15600
  *
14770
- * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
14771
- * @memberof SmallModuleVersionOutputDTO
15601
+ * @type {Array<StorefrontTemplateDTO>}
15602
+ * @memberof StorefrontTemplateOutputArrayDTOAPI
14772
15603
  */
14773
- updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15604
+ data: Array<StorefrontTemplateDTO>;
15605
+ /**
15606
+ *
15607
+ * @type {MetadataOutput}
15608
+ * @memberof StorefrontTemplateOutputArrayDTOAPI
15609
+ */
15610
+ meta: MetadataOutput;
14774
15611
  }
14775
15612
  /**
14776
15613
  *
@@ -16371,6 +17208,38 @@ export interface UserAssignmentOutputDTO {
16371
17208
  */
16372
17209
  updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
16373
17210
  }
17211
+ /**
17212
+ *
17213
+ * @export
17214
+ * @interface UserCountOutputDTO
17215
+ */
17216
+ export interface UserCountOutputDTO {
17217
+ /**
17218
+ *
17219
+ * @type {number}
17220
+ * @memberof UserCountOutputDTO
17221
+ */
17222
+ count: number;
17223
+ }
17224
+ /**
17225
+ *
17226
+ * @export
17227
+ * @interface UserCountOutputDTOAPI
17228
+ */
17229
+ export interface UserCountOutputDTOAPI {
17230
+ /**
17231
+ *
17232
+ * @type {UserCountOutputDTO}
17233
+ * @memberof UserCountOutputDTOAPI
17234
+ */
17235
+ data: UserCountOutputDTO;
17236
+ /**
17237
+ *
17238
+ * @type {MetadataOutput}
17239
+ * @memberof UserCountOutputDTOAPI
17240
+ */
17241
+ meta: MetadataOutput;
17242
+ }
16374
17243
  /**
16375
17244
  *
16376
17245
  * @export
@@ -16518,6 +17387,12 @@ export interface UserOutputDTO {
16518
17387
  * @memberof UserOutputDTO
16519
17388
  */
16520
17389
  isDashboardUser: boolean;
17390
+ /**
17391
+ *
17392
+ * @type {boolean}
17393
+ * @memberof UserOutputDTO
17394
+ */
17395
+ isSupportAccount: boolean;
16521
17396
  /**
16522
17397
  *
16523
17398
  * @type {string}
@@ -16536,6 +17411,12 @@ export interface UserOutputDTO {
16536
17411
  * @memberof UserOutputDTO
16537
17412
  */
16538
17413
  updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
17414
+ /**
17415
+ *
17416
+ * @type {string}
17417
+ * @memberof UserOutputDTO
17418
+ */
17419
+ inviteLinkId?: string;
16539
17420
  }
16540
17421
  /**
16541
17422
  *
@@ -16634,6 +17515,37 @@ export interface UserOutputWithRolesDTO {
16634
17515
  * @memberof UserOutputWithRolesDTO
16635
17516
  */
16636
17517
  isDashboardUser: boolean;
17518
+ /**
17519
+ *
17520
+ * @type {boolean}
17521
+ * @memberof UserOutputWithRolesDTO
17522
+ */
17523
+ isSupportAccount: boolean;
17524
+ /**
17525
+ *
17526
+ * @type {string}
17527
+ * @memberof UserOutputWithRolesDTO
17528
+ */
17529
+ inviteLinkId?: string;
17530
+ }
17531
+ /**
17532
+ *
17533
+ * @export
17534
+ * @interface UserOutputWithRolesDTOAPI
17535
+ */
17536
+ export interface UserOutputWithRolesDTOAPI {
17537
+ /**
17538
+ *
17539
+ * @type {UserOutputWithRolesDTO}
17540
+ * @memberof UserOutputWithRolesDTOAPI
17541
+ */
17542
+ data: UserOutputWithRolesDTO;
17543
+ /**
17544
+ *
17545
+ * @type {MetadataOutput}
17546
+ * @memberof UserOutputWithRolesDTOAPI
17547
+ */
17548
+ meta: MetadataOutput;
16637
17549
  }
16638
17550
  /**
16639
17551
  *
@@ -17303,7 +18215,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
17303
18215
  */
17304
18216
  analyticsControllerGetModerationTimeseries: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17305
18217
  /**
17306
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
18218
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
17307
18219
  * @summary Get module health scores
17308
18220
  * @param {string} [startDate]
17309
18221
  * @param {string} [endDate]
@@ -17313,6 +18225,18 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
17313
18225
  * @throws {RequiredError}
17314
18226
  */
17315
18227
  analyticsControllerGetModuleHealth: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
18228
+ /**
18229
+ * 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`
18230
+ * @summary Get per-installation module KPIs
18231
+ * @param {string} gameServerId
18232
+ * @param {string} moduleId
18233
+ * @param {string} [startDate]
18234
+ * @param {string} [endDate]
18235
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
18236
+ * @param {*} [options] Override http request option.
18237
+ * @throws {RequiredError}
18238
+ */
18239
+ analyticsControllerGetModuleInstallationKpis: (gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17316
18240
  /**
17317
18241
  * 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`
17318
18242
  * @summary Get module item failure aggregate
@@ -17524,7 +18448,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
17524
18448
  analyticsControllerGetTopListings: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17525
18449
  /**
17526
18450
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
17527
- * @summary Get top modules by event volume
18451
+ * @summary Get top modules by execution volume
17528
18452
  * @param {string} [startDate]
17529
18453
  * @param {string} [endDate]
17530
18454
  * @param {string} [gameServerId]
@@ -17680,7 +18604,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
17680
18604
  */
17681
18605
  analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModerationDailyPointDTOAPI>>;
17682
18606
  /**
17683
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
18607
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
17684
18608
  * @summary Get module health scores
17685
18609
  * @param {string} [startDate]
17686
18610
  * @param {string} [endDate]
@@ -17690,6 +18614,18 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
17690
18614
  * @throws {RequiredError}
17691
18615
  */
17692
18616
  analyticsControllerGetModuleHealth(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModuleHealthEntryDTOAPI>>;
18617
+ /**
18618
+ * 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`
18619
+ * @summary Get per-installation module KPIs
18620
+ * @param {string} gameServerId
18621
+ * @param {string} moduleId
18622
+ * @param {string} [startDate]
18623
+ * @param {string} [endDate]
18624
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
18625
+ * @param {*} [options] Override http request option.
18626
+ * @throws {RequiredError}
18627
+ */
18628
+ analyticsControllerGetModuleInstallationKpis(gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModuleInstallationKpisDTOAPI>>;
17693
18629
  /**
17694
18630
  * 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`
17695
18631
  * @summary Get module item failure aggregate
@@ -17901,7 +18837,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
17901
18837
  analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopTopListingDTOAPI>>;
17902
18838
  /**
17903
18839
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
17904
- * @summary Get top modules by event volume
18840
+ * @summary Get top modules by execution volume
17905
18841
  * @param {string} [startDate]
17906
18842
  * @param {string} [endDate]
17907
18843
  * @param {string} [gameServerId]
@@ -18057,7 +18993,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
18057
18993
  */
18058
18994
  analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ModerationDailyPointDTOAPI>;
18059
18995
  /**
18060
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
18996
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
18061
18997
  * @summary Get module health scores
18062
18998
  * @param {string} [startDate]
18063
18999
  * @param {string} [endDate]
@@ -18067,6 +19003,18 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
18067
19003
  * @throws {RequiredError}
18068
19004
  */
18069
19005
  analyticsControllerGetModuleHealth(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ModuleHealthEntryDTOAPI>;
19006
+ /**
19007
+ * 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`
19008
+ * @summary Get per-installation module KPIs
19009
+ * @param {string} gameServerId
19010
+ * @param {string} moduleId
19011
+ * @param {string} [startDate]
19012
+ * @param {string} [endDate]
19013
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
19014
+ * @param {*} [options] Override http request option.
19015
+ * @throws {RequiredError}
19016
+ */
19017
+ analyticsControllerGetModuleInstallationKpis(gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ModuleInstallationKpisDTOAPI>;
18070
19018
  /**
18071
19019
  * 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`
18072
19020
  * @summary Get module item failure aggregate
@@ -18278,7 +19226,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
18278
19226
  analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ShopTopListingDTOAPI>;
18279
19227
  /**
18280
19228
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
18281
- * @summary Get top modules by event volume
19229
+ * @summary Get top modules by execution volume
18282
19230
  * @param {string} [startDate]
18283
19231
  * @param {string} [endDate]
18284
19232
  * @param {string} [gameServerId]
@@ -18448,7 +19396,7 @@ export declare class AnalyticsApi extends BaseAPI {
18448
19396
  */
18449
19397
  analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModerationDailyPointDTOAPI, any>>;
18450
19398
  /**
18451
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
19399
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
18452
19400
  * @summary Get module health scores
18453
19401
  * @param {string} [startDate]
18454
19402
  * @param {string} [endDate]
@@ -18459,6 +19407,19 @@ export declare class AnalyticsApi extends BaseAPI {
18459
19407
  * @memberof AnalyticsApi
18460
19408
  */
18461
19409
  analyticsControllerGetModuleHealth(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModuleHealthEntryDTOAPI, any>>;
19410
+ /**
19411
+ * 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`
19412
+ * @summary Get per-installation module KPIs
19413
+ * @param {string} gameServerId
19414
+ * @param {string} moduleId
19415
+ * @param {string} [startDate]
19416
+ * @param {string} [endDate]
19417
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
19418
+ * @param {*} [options] Override http request option.
19419
+ * @throws {RequiredError}
19420
+ * @memberof AnalyticsApi
19421
+ */
19422
+ analyticsControllerGetModuleInstallationKpis(gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModuleInstallationKpisDTOAPI, any>>;
18462
19423
  /**
18463
19424
  * 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`
18464
19425
  * @summary Get module item failure aggregate
@@ -18689,7 +19650,7 @@ export declare class AnalyticsApi extends BaseAPI {
18689
19650
  analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopTopListingDTOAPI, any>>;
18690
19651
  /**
18691
19652
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
18692
- * @summary Get top modules by event volume
19653
+ * @summary Get top modules by execution volume
18693
19654
  * @param {string} [startDate]
18694
19655
  * @param {string} [endDate]
18695
19656
  * @param {string} [gameServerId]
@@ -18832,6 +19793,16 @@ export declare const AnalyticsControllerGetModuleHealthPeriodEnum: {
18832
19793
  readonly _90d: "90d";
18833
19794
  };
18834
19795
  export type AnalyticsControllerGetModuleHealthPeriodEnum = (typeof AnalyticsControllerGetModuleHealthPeriodEnum)[keyof typeof AnalyticsControllerGetModuleHealthPeriodEnum];
19796
+ /**
19797
+ * @export
19798
+ */
19799
+ export declare const AnalyticsControllerGetModuleInstallationKpisPeriodEnum: {
19800
+ readonly _24h: "24h";
19801
+ readonly _7d: "7d";
19802
+ readonly _30d: "30d";
19803
+ readonly _90d: "90d";
19804
+ };
19805
+ export type AnalyticsControllerGetModuleInstallationKpisPeriodEnum = (typeof AnalyticsControllerGetModuleInstallationKpisPeriodEnum)[keyof typeof AnalyticsControllerGetModuleInstallationKpisPeriodEnum];
18835
19806
  /**
18836
19807
  * @export
18837
19808
  */
@@ -19021,27 +19992,177 @@ export declare const AnalyticsControllerGetTopListingsPeriodEnum: {
19021
19992
  readonly _30d: "30d";
19022
19993
  readonly _90d: "90d";
19023
19994
  };
19024
- export type AnalyticsControllerGetTopListingsPeriodEnum = (typeof AnalyticsControllerGetTopListingsPeriodEnum)[keyof typeof AnalyticsControllerGetTopListingsPeriodEnum];
19995
+ export type AnalyticsControllerGetTopListingsPeriodEnum = (typeof AnalyticsControllerGetTopListingsPeriodEnum)[keyof typeof AnalyticsControllerGetTopListingsPeriodEnum];
19996
+ /**
19997
+ * @export
19998
+ */
19999
+ export declare const AnalyticsControllerGetTopModulesByVolumePeriodEnum: {
20000
+ readonly _24h: "24h";
20001
+ readonly _7d: "7d";
20002
+ readonly _30d: "30d";
20003
+ readonly _90d: "90d";
20004
+ };
20005
+ export type AnalyticsControllerGetTopModulesByVolumePeriodEnum = (typeof AnalyticsControllerGetTopModulesByVolumePeriodEnum)[keyof typeof AnalyticsControllerGetTopModulesByVolumePeriodEnum];
20006
+ /**
20007
+ * @export
20008
+ */
20009
+ export declare const AnalyticsControllerGetTopServersPeriodEnum: {
20010
+ readonly _24h: "24h";
20011
+ readonly _7d: "7d";
20012
+ readonly _30d: "30d";
20013
+ readonly _90d: "90d";
20014
+ };
20015
+ export type AnalyticsControllerGetTopServersPeriodEnum = (typeof AnalyticsControllerGetTopServersPeriodEnum)[keyof typeof AnalyticsControllerGetTopServersPeriodEnum];
20016
+ /**
20017
+ * AuthApi - axios parameter creator
20018
+ * @export
20019
+ */
20020
+ export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) => {
20021
+ /**
20022
+ * <br> OperationId: `AuthControllerAccount`
20023
+ * @summary Account
20024
+ * @param {*} [options] Override http request option.
20025
+ * @throws {RequiredError}
20026
+ */
20027
+ authControllerAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20028
+ /**
20029
+ * <br> OperationId: `AuthControllerCallback`
20030
+ * @summary Callback
20031
+ * @param {*} [options] Override http request option.
20032
+ * @throws {RequiredError}
20033
+ */
20034
+ authControllerCallback: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20035
+ /**
20036
+ * <br> OperationId: `AuthControllerLogin`
20037
+ * @summary Login
20038
+ * @param {string} [redirect]
20039
+ * @param {*} [options] Override http request option.
20040
+ * @throws {RequiredError}
20041
+ */
20042
+ authControllerLogin: (redirect?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20043
+ /**
20044
+ * <br> OperationId: `AuthControllerLogout`
20045
+ * @summary Logout
20046
+ * @param {string} [redirect]
20047
+ * @param {*} [options] Override http request option.
20048
+ * @throws {RequiredError}
20049
+ */
20050
+ authControllerLogout: (redirect?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20051
+ };
20052
+ /**
20053
+ * AuthApi - functional programming interface
20054
+ * @export
20055
+ */
20056
+ export declare const AuthApiFp: (configuration?: Configuration) => {
20057
+ /**
20058
+ * <br> OperationId: `AuthControllerAccount`
20059
+ * @summary Account
20060
+ * @param {*} [options] Override http request option.
20061
+ * @throws {RequiredError}
20062
+ */
20063
+ authControllerAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
20064
+ /**
20065
+ * <br> OperationId: `AuthControllerCallback`
20066
+ * @summary Callback
20067
+ * @param {*} [options] Override http request option.
20068
+ * @throws {RequiredError}
20069
+ */
20070
+ authControllerCallback(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
20071
+ /**
20072
+ * <br> OperationId: `AuthControllerLogin`
20073
+ * @summary Login
20074
+ * @param {string} [redirect]
20075
+ * @param {*} [options] Override http request option.
20076
+ * @throws {RequiredError}
20077
+ */
20078
+ authControllerLogin(redirect?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
20079
+ /**
20080
+ * <br> OperationId: `AuthControllerLogout`
20081
+ * @summary Logout
20082
+ * @param {string} [redirect]
20083
+ * @param {*} [options] Override http request option.
20084
+ * @throws {RequiredError}
20085
+ */
20086
+ authControllerLogout(redirect?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
20087
+ };
19025
20088
  /**
20089
+ * AuthApi - factory interface
19026
20090
  * @export
19027
20091
  */
19028
- export declare const AnalyticsControllerGetTopModulesByVolumePeriodEnum: {
19029
- readonly _24h: "24h";
19030
- readonly _7d: "7d";
19031
- readonly _30d: "30d";
19032
- readonly _90d: "90d";
20092
+ export declare const AuthApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
20093
+ /**
20094
+ * <br> OperationId: `AuthControllerAccount`
20095
+ * @summary Account
20096
+ * @param {*} [options] Override http request option.
20097
+ * @throws {RequiredError}
20098
+ */
20099
+ authControllerAccount(options?: RawAxiosRequestConfig): AxiosPromise<void>;
20100
+ /**
20101
+ * <br> OperationId: `AuthControllerCallback`
20102
+ * @summary Callback
20103
+ * @param {*} [options] Override http request option.
20104
+ * @throws {RequiredError}
20105
+ */
20106
+ authControllerCallback(options?: RawAxiosRequestConfig): AxiosPromise<void>;
20107
+ /**
20108
+ * <br> OperationId: `AuthControllerLogin`
20109
+ * @summary Login
20110
+ * @param {string} [redirect]
20111
+ * @param {*} [options] Override http request option.
20112
+ * @throws {RequiredError}
20113
+ */
20114
+ authControllerLogin(redirect?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
20115
+ /**
20116
+ * <br> OperationId: `AuthControllerLogout`
20117
+ * @summary Logout
20118
+ * @param {string} [redirect]
20119
+ * @param {*} [options] Override http request option.
20120
+ * @throws {RequiredError}
20121
+ */
20122
+ authControllerLogout(redirect?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
19033
20123
  };
19034
- export type AnalyticsControllerGetTopModulesByVolumePeriodEnum = (typeof AnalyticsControllerGetTopModulesByVolumePeriodEnum)[keyof typeof AnalyticsControllerGetTopModulesByVolumePeriodEnum];
19035
20124
  /**
20125
+ * AuthApi - object-oriented interface
19036
20126
  * @export
20127
+ * @class AuthApi
20128
+ * @extends {BaseAPI}
19037
20129
  */
19038
- export declare const AnalyticsControllerGetTopServersPeriodEnum: {
19039
- readonly _24h: "24h";
19040
- readonly _7d: "7d";
19041
- readonly _30d: "30d";
19042
- readonly _90d: "90d";
19043
- };
19044
- export type AnalyticsControllerGetTopServersPeriodEnum = (typeof AnalyticsControllerGetTopServersPeriodEnum)[keyof typeof AnalyticsControllerGetTopServersPeriodEnum];
20130
+ export declare class AuthApi extends BaseAPI {
20131
+ /**
20132
+ * <br> OperationId: `AuthControllerAccount`
20133
+ * @summary Account
20134
+ * @param {*} [options] Override http request option.
20135
+ * @throws {RequiredError}
20136
+ * @memberof AuthApi
20137
+ */
20138
+ authControllerAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
20139
+ /**
20140
+ * <br> OperationId: `AuthControllerCallback`
20141
+ * @summary Callback
20142
+ * @param {*} [options] Override http request option.
20143
+ * @throws {RequiredError}
20144
+ * @memberof AuthApi
20145
+ */
20146
+ authControllerCallback(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
20147
+ /**
20148
+ * <br> OperationId: `AuthControllerLogin`
20149
+ * @summary Login
20150
+ * @param {string} [redirect]
20151
+ * @param {*} [options] Override http request option.
20152
+ * @throws {RequiredError}
20153
+ * @memberof AuthApi
20154
+ */
20155
+ authControllerLogin(redirect?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
20156
+ /**
20157
+ * <br> OperationId: `AuthControllerLogout`
20158
+ * @summary Logout
20159
+ * @param {string} [redirect]
20160
+ * @param {*} [options] Override http request option.
20161
+ * @throws {RequiredError}
20162
+ * @memberof AuthApi
20163
+ */
20164
+ authControllerLogout(redirect?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
20165
+ }
19045
20166
  /**
19046
20167
  * CommandApi - axios parameter creator
19047
20168
  * @export
@@ -25031,7 +26152,7 @@ export declare const ShopListingApiFp: (configuration?: Configuration) => {
25031
26152
  * @param {*} [options] Override http request option.
25032
26153
  * @throws {RequiredError}
25033
26154
  */
25034
- shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
26155
+ shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopImportResultDTOAPI>>;
25035
26156
  /**
25036
26157
  * Search shop listings<br> OperationId: `ShopListingControllerSearch`
25037
26158
  * @summary Search
@@ -25085,7 +26206,7 @@ export declare const ShopListingApiFactory: (configuration?: Configuration, base
25085
26206
  * @param {*} [options] Override http request option.
25086
26207
  * @throws {RequiredError}
25087
26208
  */
25088
- shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
26209
+ shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<ShopImportResultDTOAPI>;
25089
26210
  /**
25090
26211
  * Search shop listings<br> OperationId: `ShopListingControllerSearch`
25091
26212
  * @summary Search
@@ -25145,7 +26266,7 @@ export declare class ShopListingApi extends BaseAPI {
25145
26266
  * @throws {RequiredError}
25146
26267
  * @memberof ShopListingApi
25147
26268
  */
25148
- shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
26269
+ shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopImportResultDTOAPI, any>>;
25149
26270
  /**
25150
26271
  * Search shop listings<br> OperationId: `ShopListingControllerSearch`
25151
26272
  * @summary Search
@@ -25357,6 +26478,131 @@ export declare class ShopOrderApi extends BaseAPI {
25357
26478
  */
25358
26479
  shopOrderControllerSearch(shopOrderSearchInputDTO?: ShopOrderSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopOrderOutputArrayDTOAPI, any>>;
25359
26480
  }
26481
+ /**
26482
+ * StorefrontConfigApi - axios parameter creator
26483
+ * @export
26484
+ */
26485
+ export declare const StorefrontConfigApiAxiosParamCreator: (configuration?: Configuration) => {
26486
+ /**
26487
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
26488
+ * @summary Get effective config
26489
+ * @param {string} gameServerId
26490
+ * @param {*} [options] Override http request option.
26491
+ * @throws {RequiredError}
26492
+ */
26493
+ storefrontConfigControllerGetEffectiveConfig: (gameServerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26494
+ /**
26495
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
26496
+ * @summary List templates
26497
+ * @param {*} [options] Override http request option.
26498
+ * @throws {RequiredError}
26499
+ */
26500
+ storefrontConfigControllerListTemplates: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26501
+ /**
26502
+ * 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`
26503
+ * @summary Set config
26504
+ * @param {string} gameServerId
26505
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
26506
+ * @param {*} [options] Override http request option.
26507
+ * @throws {RequiredError}
26508
+ */
26509
+ storefrontConfigControllerSetConfig: (gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26510
+ };
26511
+ /**
26512
+ * StorefrontConfigApi - functional programming interface
26513
+ * @export
26514
+ */
26515
+ export declare const StorefrontConfigApiFp: (configuration?: Configuration) => {
26516
+ /**
26517
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
26518
+ * @summary Get effective config
26519
+ * @param {string} gameServerId
26520
+ * @param {*} [options] Override http request option.
26521
+ * @throws {RequiredError}
26522
+ */
26523
+ storefrontConfigControllerGetEffectiveConfig(gameServerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>>;
26524
+ /**
26525
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
26526
+ * @summary List templates
26527
+ * @param {*} [options] Override http request option.
26528
+ * @throws {RequiredError}
26529
+ */
26530
+ storefrontConfigControllerListTemplates(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StorefrontTemplateOutputArrayDTOAPI>>;
26531
+ /**
26532
+ * 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`
26533
+ * @summary Set config
26534
+ * @param {string} gameServerId
26535
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
26536
+ * @param {*} [options] Override http request option.
26537
+ * @throws {RequiredError}
26538
+ */
26539
+ storefrontConfigControllerSetConfig(gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>>;
26540
+ };
26541
+ /**
26542
+ * StorefrontConfigApi - factory interface
26543
+ * @export
26544
+ */
26545
+ export declare const StorefrontConfigApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
26546
+ /**
26547
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
26548
+ * @summary Get effective config
26549
+ * @param {string} gameServerId
26550
+ * @param {*} [options] Override http request option.
26551
+ * @throws {RequiredError}
26552
+ */
26553
+ storefrontConfigControllerGetEffectiveConfig(gameServerId: string, options?: RawAxiosRequestConfig): AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>;
26554
+ /**
26555
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
26556
+ * @summary List templates
26557
+ * @param {*} [options] Override http request option.
26558
+ * @throws {RequiredError}
26559
+ */
26560
+ storefrontConfigControllerListTemplates(options?: RawAxiosRequestConfig): AxiosPromise<StorefrontTemplateOutputArrayDTOAPI>;
26561
+ /**
26562
+ * 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`
26563
+ * @summary Set config
26564
+ * @param {string} gameServerId
26565
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
26566
+ * @param {*} [options] Override http request option.
26567
+ * @throws {RequiredError}
26568
+ */
26569
+ storefrontConfigControllerSetConfig(gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig): AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>;
26570
+ };
26571
+ /**
26572
+ * StorefrontConfigApi - object-oriented interface
26573
+ * @export
26574
+ * @class StorefrontConfigApi
26575
+ * @extends {BaseAPI}
26576
+ */
26577
+ export declare class StorefrontConfigApi extends BaseAPI {
26578
+ /**
26579
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
26580
+ * @summary Get effective config
26581
+ * @param {string} gameServerId
26582
+ * @param {*} [options] Override http request option.
26583
+ * @throws {RequiredError}
26584
+ * @memberof StorefrontConfigApi
26585
+ */
26586
+ storefrontConfigControllerGetEffectiveConfig(gameServerId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EffectiveStorefrontConfigOutputDTOAPI, any>>;
26587
+ /**
26588
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
26589
+ * @summary List templates
26590
+ * @param {*} [options] Override http request option.
26591
+ * @throws {RequiredError}
26592
+ * @memberof StorefrontConfigApi
26593
+ */
26594
+ storefrontConfigControllerListTemplates(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StorefrontTemplateOutputArrayDTOAPI, any>>;
26595
+ /**
26596
+ * 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`
26597
+ * @summary Set config
26598
+ * @param {string} gameServerId
26599
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
26600
+ * @param {*} [options] Override http request option.
26601
+ * @throws {RequiredError}
26602
+ * @memberof StorefrontConfigApi
26603
+ */
26604
+ storefrontConfigControllerSetConfig(gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EffectiveStorefrontConfigOutputDTOAPI, any>>;
26605
+ }
25360
26606
  /**
25361
26607
  * TrackingApi - axios parameter creator
25362
26608
  * @export
@@ -25563,6 +26809,13 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
25563
26809
  * @throws {RequiredError}
25564
26810
  */
25565
26811
  userControllerAssignRole: (id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26812
+ /**
26813
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
26814
+ * @summary Count billable dashboard users
26815
+ * @param {*} [options] Override http request option.
26816
+ * @throws {RequiredError}
26817
+ */
26818
+ userControllerCountBillableDashboardUsers: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25566
26819
  /**
25567
26820
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
25568
26821
  * @summary Create
@@ -25682,6 +26935,13 @@ export declare const UserApiFp: (configuration?: Configuration) => {
25682
26935
  * @throws {RequiredError}
25683
26936
  */
25684
26937
  userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
26938
+ /**
26939
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
26940
+ * @summary Count billable dashboard users
26941
+ * @param {*} [options] Override http request option.
26942
+ * @throws {RequiredError}
26943
+ */
26944
+ userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserCountOutputDTOAPI>>;
25685
26945
  /**
25686
26946
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
25687
26947
  * @summary Create
@@ -25801,6 +27061,13 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
25801
27061
  * @throws {RequiredError}
25802
27062
  */
25803
27063
  userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
27064
+ /**
27065
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
27066
+ * @summary Count billable dashboard users
27067
+ * @param {*} [options] Override http request option.
27068
+ * @throws {RequiredError}
27069
+ */
27070
+ userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): AxiosPromise<UserCountOutputDTOAPI>;
25804
27071
  /**
25805
27072
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
25806
27073
  * @summary Create
@@ -25923,6 +27190,14 @@ export declare class UserApi extends BaseAPI {
25923
27190
  * @memberof UserApi
25924
27191
  */
25925
27192
  userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
27193
+ /**
27194
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
27195
+ * @summary Count billable dashboard users
27196
+ * @param {*} [options] Override http request option.
27197
+ * @throws {RequiredError}
27198
+ * @memberof UserApi
27199
+ */
27200
+ userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserCountOutputDTOAPI, any>>;
25926
27201
  /**
25927
27202
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
25928
27203
  * @summary Create
@@ -26235,4 +27510,195 @@ export declare class VariableApi extends BaseAPI {
26235
27510
  */
26236
27511
  variableControllerUpdate(id: string, variableUpdateDTO?: VariableUpdateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VariableOutputDTOAPI, any>>;
26237
27512
  }
27513
+ /**
27514
+ * InviteLinkApi - axios parameter creator
27515
+ * @export
27516
+ */
27517
+ export declare const InviteLinkApiAxiosParamCreator: (configuration?: Configuration) => {
27518
+ /**
27519
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
27520
+ * @summary Create invite link
27521
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
27522
+ * @param {*} [options] Override http request option.
27523
+ * @throws {RequiredError}
27524
+ */
27525
+ inviteLinkControllerCreate: (inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27526
+ /**
27527
+ * <br> OperationId: `InviteLinkControllerPreview`
27528
+ * @summary Preview
27529
+ * @param {string} token
27530
+ * @param {*} [options] Override http request option.
27531
+ * @throws {RequiredError}
27532
+ */
27533
+ inviteLinkControllerPreview: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27534
+ /**
27535
+ * <br> OperationId: `InviteLinkControllerRedeem`
27536
+ * @summary Redeem
27537
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
27538
+ * @param {*} [options] Override http request option.
27539
+ * @throws {RequiredError}
27540
+ */
27541
+ inviteLinkControllerRedeem: (redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27542
+ /**
27543
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
27544
+ * @summary Revoke
27545
+ * @param {string} id
27546
+ * @param {*} [options] Override http request option.
27547
+ * @throws {RequiredError}
27548
+ */
27549
+ inviteLinkControllerRevoke: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27550
+ /**
27551
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
27552
+ * @summary Search
27553
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
27554
+ * @param {*} [options] Override http request option.
27555
+ * @throws {RequiredError}
27556
+ */
27557
+ inviteLinkControllerSearch: (inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27558
+ };
27559
+ /**
27560
+ * InviteLinkApi - functional programming interface
27561
+ * @export
27562
+ */
27563
+ export declare const InviteLinkApiFp: (configuration?: Configuration) => {
27564
+ /**
27565
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
27566
+ * @summary Create invite link
27567
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
27568
+ * @param {*} [options] Override http request option.
27569
+ * @throws {RequiredError}
27570
+ */
27571
+ inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkCreateResultDTOAPI>>;
27572
+ /**
27573
+ * <br> OperationId: `InviteLinkControllerPreview`
27574
+ * @summary Preview
27575
+ * @param {string} token
27576
+ * @param {*} [options] Override http request option.
27577
+ * @throws {RequiredError}
27578
+ */
27579
+ inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkPreviewDTOAPI>>;
27580
+ /**
27581
+ * <br> OperationId: `InviteLinkControllerRedeem`
27582
+ * @summary Redeem
27583
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
27584
+ * @param {*} [options] Override http request option.
27585
+ * @throws {RequiredError}
27586
+ */
27587
+ inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOutputWithRolesDTOAPI>>;
27588
+ /**
27589
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
27590
+ * @summary Revoke
27591
+ * @param {string} id
27592
+ * @param {*} [options] Override http request option.
27593
+ * @throws {RequiredError}
27594
+ */
27595
+ inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
27596
+ /**
27597
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
27598
+ * @summary Search
27599
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
27600
+ * @param {*} [options] Override http request option.
27601
+ * @throws {RequiredError}
27602
+ */
27603
+ inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkOutputArrayDTOAPI>>;
27604
+ };
27605
+ /**
27606
+ * InviteLinkApi - factory interface
27607
+ * @export
27608
+ */
27609
+ export declare const InviteLinkApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
27610
+ /**
27611
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
27612
+ * @summary Create invite link
27613
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
27614
+ * @param {*} [options] Override http request option.
27615
+ * @throws {RequiredError}
27616
+ */
27617
+ inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkCreateResultDTOAPI>;
27618
+ /**
27619
+ * <br> OperationId: `InviteLinkControllerPreview`
27620
+ * @summary Preview
27621
+ * @param {string} token
27622
+ * @param {*} [options] Override http request option.
27623
+ * @throws {RequiredError}
27624
+ */
27625
+ inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkPreviewDTOAPI>;
27626
+ /**
27627
+ * <br> OperationId: `InviteLinkControllerRedeem`
27628
+ * @summary Redeem
27629
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
27630
+ * @param {*} [options] Override http request option.
27631
+ * @throws {RequiredError}
27632
+ */
27633
+ inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputWithRolesDTOAPI>;
27634
+ /**
27635
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
27636
+ * @summary Revoke
27637
+ * @param {string} id
27638
+ * @param {*} [options] Override http request option.
27639
+ * @throws {RequiredError}
27640
+ */
27641
+ inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
27642
+ /**
27643
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
27644
+ * @summary Search
27645
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
27646
+ * @param {*} [options] Override http request option.
27647
+ * @throws {RequiredError}
27648
+ */
27649
+ inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkOutputArrayDTOAPI>;
27650
+ };
27651
+ /**
27652
+ * InviteLinkApi - object-oriented interface
27653
+ * @export
27654
+ * @class InviteLinkApi
27655
+ * @extends {BaseAPI}
27656
+ */
27657
+ export declare class InviteLinkApi extends BaseAPI {
27658
+ /**
27659
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
27660
+ * @summary Create invite link
27661
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
27662
+ * @param {*} [options] Override http request option.
27663
+ * @throws {RequiredError}
27664
+ * @memberof InviteLinkApi
27665
+ */
27666
+ inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkCreateResultDTOAPI, any>>;
27667
+ /**
27668
+ * <br> OperationId: `InviteLinkControllerPreview`
27669
+ * @summary Preview
27670
+ * @param {string} token
27671
+ * @param {*} [options] Override http request option.
27672
+ * @throws {RequiredError}
27673
+ * @memberof InviteLinkApi
27674
+ */
27675
+ inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkPreviewDTOAPI, any>>;
27676
+ /**
27677
+ * <br> OperationId: `InviteLinkControllerRedeem`
27678
+ * @summary Redeem
27679
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
27680
+ * @param {*} [options] Override http request option.
27681
+ * @throws {RequiredError}
27682
+ * @memberof InviteLinkApi
27683
+ */
27684
+ inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserOutputWithRolesDTOAPI, any>>;
27685
+ /**
27686
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
27687
+ * @summary Revoke
27688
+ * @param {string} id
27689
+ * @param {*} [options] Override http request option.
27690
+ * @throws {RequiredError}
27691
+ * @memberof InviteLinkApi
27692
+ */
27693
+ inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
27694
+ /**
27695
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
27696
+ * @summary Search
27697
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
27698
+ * @param {*} [options] Override http request option.
27699
+ * @throws {RequiredError}
27700
+ * @memberof InviteLinkApi
27701
+ */
27702
+ inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkOutputArrayDTOAPI, any>>;
27703
+ }
26238
27704
  //# sourceMappingURL=api.d.ts.map