@takaro/apiclient 0.0.0-dev.036bf01 → 0.0.0-dev.03bcb3a

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}
@@ -7819,6 +8342,94 @@ export interface ModuleInstallParamId {
7819
8342
  */
7820
8343
  gameServerId: string;
7821
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;
8357
+ /**
8358
+ *
8359
+ * @type {number}
8360
+ * @memberof ModuleInstallationKpisDTO
8361
+ */
8362
+ failures: number;
8363
+ /**
8364
+ *
8365
+ * @type {number}
8366
+ * @memberof ModuleInstallationKpisDTO
8367
+ */
8368
+ successRate: number;
8369
+ }
8370
+ /**
8371
+ *
8372
+ * @export
8373
+ * @interface ModuleInstallationKpisDTOAPI
8374
+ */
8375
+ export interface ModuleInstallationKpisDTOAPI {
8376
+ /**
8377
+ *
8378
+ * @type {ModuleInstallationKpisDTO}
8379
+ * @memberof ModuleInstallationKpisDTOAPI
8380
+ */
8381
+ data: ModuleInstallationKpisDTO;
8382
+ /**
8383
+ *
8384
+ * @type {MetadataOutput}
8385
+ * @memberof ModuleInstallationKpisDTOAPI
8386
+ */
8387
+ meta: MetadataOutput;
8388
+ }
8389
+ /**
8390
+ *
8391
+ * @export
8392
+ * @interface ModuleInstallationKpisQueryDTO
8393
+ */
8394
+ export interface ModuleInstallationKpisQueryDTO {
8395
+ /**
8396
+ *
8397
+ * @type {string}
8398
+ * @memberof ModuleInstallationKpisQueryDTO
8399
+ */
8400
+ startDate?: string;
8401
+ /**
8402
+ *
8403
+ * @type {string}
8404
+ * @memberof ModuleInstallationKpisQueryDTO
8405
+ */
8406
+ endDate?: string;
8407
+ /**
8408
+ *
8409
+ * @type {string}
8410
+ * @memberof ModuleInstallationKpisQueryDTO
8411
+ */
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;
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
@@ -13623,32 +14234,89 @@ export interface ShopDeadStockItemDTO {
13623
14234
  * @type {number}
13624
14235
  * @memberof ShopDeadStockItemDTO
13625
14236
  */
13626
- daysSinceLastSale?: number;
14237
+ daysSinceLastSale?: number;
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
+ }
14258
+ /**
14259
+ *
14260
+ * @export
14261
+ * @interface ShopImportOptions
14262
+ */
14263
+ export interface ShopImportOptions {
14264
+ /**
14265
+ *
14266
+ * @type {boolean}
14267
+ * @memberof ShopImportOptions
14268
+ */
14269
+ replace?: boolean;
14270
+ /**
14271
+ *
14272
+ * @type {boolean}
14273
+ * @memberof ShopImportOptions
14274
+ */
14275
+ draft?: boolean;
14276
+ /**
14277
+ *
14278
+ * @type {string}
14279
+ * @memberof ShopImportOptions
14280
+ */
14281
+ gameServerId: string;
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>;
13627
14301
  }
13628
14302
  /**
13629
14303
  *
13630
14304
  * @export
13631
- * @interface ShopImportOptions
14305
+ * @interface ShopImportResultDTOAPI
13632
14306
  */
13633
- export interface ShopImportOptions {
13634
- /**
13635
- *
13636
- * @type {boolean}
13637
- * @memberof ShopImportOptions
13638
- */
13639
- replace?: boolean;
14307
+ export interface ShopImportResultDTOAPI {
13640
14308
  /**
13641
14309
  *
13642
- * @type {boolean}
13643
- * @memberof ShopImportOptions
14310
+ * @type {ShopImportResultDTO}
14311
+ * @memberof ShopImportResultDTOAPI
13644
14312
  */
13645
- draft?: boolean;
14313
+ data: ShopImportResultDTO;
13646
14314
  /**
13647
14315
  *
13648
- * @type {string}
13649
- * @memberof ShopImportOptions
14316
+ * @type {MetadataOutput}
14317
+ * @memberof ShopImportResultDTOAPI
13650
14318
  */
13651
- gameServerId: string;
14319
+ meta: MetadataOutput;
13652
14320
  }
13653
14321
  /**
13654
14322
  *
@@ -14772,6 +15440,175 @@ export interface SmallModuleVersionOutputDTO {
14772
15440
  */
14773
15441
  updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
14774
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;
15461
+ /**
15462
+ *
15463
+ * @type {object}
15464
+ * @memberof StorefrontConfigCreateDTO
15465
+ */
15466
+ values?: object;
15467
+ }
15468
+ /**
15469
+ *
15470
+ * @export
15471
+ * @interface StorefrontConfigOutputDTO
15472
+ */
15473
+ export interface StorefrontConfigOutputDTO {
15474
+ /**
15475
+ *
15476
+ * @type {string}
15477
+ * @memberof StorefrontConfigOutputDTO
15478
+ */
15479
+ gameServerId: string;
15480
+ /**
15481
+ *
15482
+ * @type {string}
15483
+ * @memberof StorefrontConfigOutputDTO
15484
+ */
15485
+ templateId: string;
15486
+ /**
15487
+ *
15488
+ * @type {object}
15489
+ * @memberof StorefrontConfigOutputDTO
15490
+ */
15491
+ values: object;
15492
+ /**
15493
+ *
15494
+ * @type {string}
15495
+ * @memberof StorefrontConfigOutputDTO
15496
+ */
15497
+ id: string;
15498
+ /**
15499
+ *
15500
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
15501
+ * @memberof StorefrontConfigOutputDTO
15502
+ */
15503
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15504
+ /**
15505
+ *
15506
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
15507
+ * @memberof StorefrontConfigOutputDTO
15508
+ */
15509
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15510
+ }
15511
+ /**
15512
+ *
15513
+ * @export
15514
+ * @interface StorefrontConfigUpdateDTO
15515
+ */
15516
+ export interface StorefrontConfigUpdateDTO {
15517
+ /**
15518
+ *
15519
+ * @type {string}
15520
+ * @memberof StorefrontConfigUpdateDTO
15521
+ */
15522
+ templateId?: string;
15523
+ /**
15524
+ *
15525
+ * @type {object}
15526
+ * @memberof StorefrontConfigUpdateDTO
15527
+ */
15528
+ values?: object;
15529
+ }
15530
+ /**
15531
+ *
15532
+ * @export
15533
+ * @interface StorefrontConfigUpsertBody
15534
+ */
15535
+ export interface StorefrontConfigUpsertBody {
15536
+ /**
15537
+ *
15538
+ * @type {string}
15539
+ * @memberof StorefrontConfigUpsertBody
15540
+ */
15541
+ templateId: string;
15542
+ /**
15543
+ *
15544
+ * @type {object}
15545
+ * @memberof StorefrontConfigUpsertBody
15546
+ */
15547
+ values: object;
15548
+ }
15549
+ /**
15550
+ *
15551
+ * @export
15552
+ * @interface StorefrontConfigUpsertDTO
15553
+ */
15554
+ export interface StorefrontConfigUpsertDTO {
15555
+ /**
15556
+ *
15557
+ * @type {string}
15558
+ * @memberof StorefrontConfigUpsertDTO
15559
+ */
15560
+ templateId: string;
15561
+ /**
15562
+ *
15563
+ * @type {object}
15564
+ * @memberof StorefrontConfigUpsertDTO
15565
+ */
15566
+ values: object;
15567
+ }
15568
+ /**
15569
+ *
15570
+ * @export
15571
+ * @interface StorefrontTemplateDTO
15572
+ */
15573
+ export interface StorefrontTemplateDTO {
15574
+ /**
15575
+ *
15576
+ * @type {string}
15577
+ * @memberof StorefrontTemplateDTO
15578
+ */
15579
+ id: string;
15580
+ /**
15581
+ *
15582
+ * @type {string}
15583
+ * @memberof StorefrontTemplateDTO
15584
+ */
15585
+ name: string;
15586
+ /**
15587
+ *
15588
+ * @type {object}
15589
+ * @memberof StorefrontTemplateDTO
15590
+ */
15591
+ schema: object;
15592
+ }
15593
+ /**
15594
+ *
15595
+ * @export
15596
+ * @interface StorefrontTemplateOutputArrayDTOAPI
15597
+ */
15598
+ export interface StorefrontTemplateOutputArrayDTOAPI {
15599
+ /**
15600
+ *
15601
+ * @type {Array<StorefrontTemplateDTO>}
15602
+ * @memberof StorefrontTemplateOutputArrayDTOAPI
15603
+ */
15604
+ data: Array<StorefrontTemplateDTO>;
15605
+ /**
15606
+ *
15607
+ * @type {MetadataOutput}
15608
+ * @memberof StorefrontTemplateOutputArrayDTOAPI
15609
+ */
15610
+ meta: MetadataOutput;
15611
+ }
14775
15612
  /**
14776
15613
  *
14777
15614
  * @export
@@ -16536,6 +17373,12 @@ export interface UserOutputDTO {
16536
17373
  * @memberof UserOutputDTO
16537
17374
  */
16538
17375
  updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
17376
+ /**
17377
+ *
17378
+ * @type {string}
17379
+ * @memberof UserOutputDTO
17380
+ */
17381
+ inviteLinkId?: string;
16539
17382
  }
16540
17383
  /**
16541
17384
  *
@@ -16634,6 +17477,31 @@ export interface UserOutputWithRolesDTO {
16634
17477
  * @memberof UserOutputWithRolesDTO
16635
17478
  */
16636
17479
  isDashboardUser: boolean;
17480
+ /**
17481
+ *
17482
+ * @type {string}
17483
+ * @memberof UserOutputWithRolesDTO
17484
+ */
17485
+ inviteLinkId?: string;
17486
+ }
17487
+ /**
17488
+ *
17489
+ * @export
17490
+ * @interface UserOutputWithRolesDTOAPI
17491
+ */
17492
+ export interface UserOutputWithRolesDTOAPI {
17493
+ /**
17494
+ *
17495
+ * @type {UserOutputWithRolesDTO}
17496
+ * @memberof UserOutputWithRolesDTOAPI
17497
+ */
17498
+ data: UserOutputWithRolesDTO;
17499
+ /**
17500
+ *
17501
+ * @type {MetadataOutput}
17502
+ * @memberof UserOutputWithRolesDTOAPI
17503
+ */
17504
+ meta: MetadataOutput;
16637
17505
  }
16638
17506
  /**
16639
17507
  *
@@ -17313,6 +18181,18 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
17313
18181
  * @throws {RequiredError}
17314
18182
  */
17315
18183
  analyticsControllerGetModuleHealth: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
18184
+ /**
18185
+ * 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`
18186
+ * @summary Get per-installation module KPIs
18187
+ * @param {string} gameServerId
18188
+ * @param {string} moduleId
18189
+ * @param {string} [startDate]
18190
+ * @param {string} [endDate]
18191
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
18192
+ * @param {*} [options] Override http request option.
18193
+ * @throws {RequiredError}
18194
+ */
18195
+ analyticsControllerGetModuleInstallationKpis: (gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17316
18196
  /**
17317
18197
  * 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
18198
  * @summary Get module item failure aggregate
@@ -17690,6 +18570,18 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
17690
18570
  * @throws {RequiredError}
17691
18571
  */
17692
18572
  analyticsControllerGetModuleHealth(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModuleHealthEntryDTOAPI>>;
18573
+ /**
18574
+ * 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`
18575
+ * @summary Get per-installation module KPIs
18576
+ * @param {string} gameServerId
18577
+ * @param {string} moduleId
18578
+ * @param {string} [startDate]
18579
+ * @param {string} [endDate]
18580
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
18581
+ * @param {*} [options] Override http request option.
18582
+ * @throws {RequiredError}
18583
+ */
18584
+ analyticsControllerGetModuleInstallationKpis(gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModuleInstallationKpisDTOAPI>>;
17693
18585
  /**
17694
18586
  * 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
18587
  * @summary Get module item failure aggregate
@@ -18067,6 +18959,18 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
18067
18959
  * @throws {RequiredError}
18068
18960
  */
18069
18961
  analyticsControllerGetModuleHealth(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ModuleHealthEntryDTOAPI>;
18962
+ /**
18963
+ * 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`
18964
+ * @summary Get per-installation module KPIs
18965
+ * @param {string} gameServerId
18966
+ * @param {string} moduleId
18967
+ * @param {string} [startDate]
18968
+ * @param {string} [endDate]
18969
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
18970
+ * @param {*} [options] Override http request option.
18971
+ * @throws {RequiredError}
18972
+ */
18973
+ analyticsControllerGetModuleInstallationKpis(gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ModuleInstallationKpisDTOAPI>;
18070
18974
  /**
18071
18975
  * 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
18976
  * @summary Get module item failure aggregate
@@ -18459,6 +19363,19 @@ export declare class AnalyticsApi extends BaseAPI {
18459
19363
  * @memberof AnalyticsApi
18460
19364
  */
18461
19365
  analyticsControllerGetModuleHealth(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModuleHealthEntryDTOAPI, any>>;
19366
+ /**
19367
+ * 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`
19368
+ * @summary Get per-installation module KPIs
19369
+ * @param {string} gameServerId
19370
+ * @param {string} moduleId
19371
+ * @param {string} [startDate]
19372
+ * @param {string} [endDate]
19373
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
19374
+ * @param {*} [options] Override http request option.
19375
+ * @throws {RequiredError}
19376
+ * @memberof AnalyticsApi
19377
+ */
19378
+ analyticsControllerGetModuleInstallationKpis(gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModuleInstallationKpisDTOAPI, any>>;
18462
19379
  /**
18463
19380
  * 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
19381
  * @summary Get module item failure aggregate
@@ -18832,6 +19749,16 @@ export declare const AnalyticsControllerGetModuleHealthPeriodEnum: {
18832
19749
  readonly _90d: "90d";
18833
19750
  };
18834
19751
  export type AnalyticsControllerGetModuleHealthPeriodEnum = (typeof AnalyticsControllerGetModuleHealthPeriodEnum)[keyof typeof AnalyticsControllerGetModuleHealthPeriodEnum];
19752
+ /**
19753
+ * @export
19754
+ */
19755
+ export declare const AnalyticsControllerGetModuleInstallationKpisPeriodEnum: {
19756
+ readonly _24h: "24h";
19757
+ readonly _7d: "7d";
19758
+ readonly _30d: "30d";
19759
+ readonly _90d: "90d";
19760
+ };
19761
+ export type AnalyticsControllerGetModuleInstallationKpisPeriodEnum = (typeof AnalyticsControllerGetModuleInstallationKpisPeriodEnum)[keyof typeof AnalyticsControllerGetModuleInstallationKpisPeriodEnum];
18835
19762
  /**
18836
19763
  * @export
18837
19764
  */
@@ -19011,37 +19938,187 @@ export declare const AnalyticsControllerGetTopEventNamesPeriodEnum: {
19011
19938
  readonly _30d: "30d";
19012
19939
  readonly _90d: "90d";
19013
19940
  };
19014
- export type AnalyticsControllerGetTopEventNamesPeriodEnum = (typeof AnalyticsControllerGetTopEventNamesPeriodEnum)[keyof typeof AnalyticsControllerGetTopEventNamesPeriodEnum];
19941
+ export type AnalyticsControllerGetTopEventNamesPeriodEnum = (typeof AnalyticsControllerGetTopEventNamesPeriodEnum)[keyof typeof AnalyticsControllerGetTopEventNamesPeriodEnum];
19942
+ /**
19943
+ * @export
19944
+ */
19945
+ export declare const AnalyticsControllerGetTopListingsPeriodEnum: {
19946
+ readonly _24h: "24h";
19947
+ readonly _7d: "7d";
19948
+ readonly _30d: "30d";
19949
+ readonly _90d: "90d";
19950
+ };
19951
+ export type AnalyticsControllerGetTopListingsPeriodEnum = (typeof AnalyticsControllerGetTopListingsPeriodEnum)[keyof typeof AnalyticsControllerGetTopListingsPeriodEnum];
19952
+ /**
19953
+ * @export
19954
+ */
19955
+ export declare const AnalyticsControllerGetTopModulesByVolumePeriodEnum: {
19956
+ readonly _24h: "24h";
19957
+ readonly _7d: "7d";
19958
+ readonly _30d: "30d";
19959
+ readonly _90d: "90d";
19960
+ };
19961
+ export type AnalyticsControllerGetTopModulesByVolumePeriodEnum = (typeof AnalyticsControllerGetTopModulesByVolumePeriodEnum)[keyof typeof AnalyticsControllerGetTopModulesByVolumePeriodEnum];
19962
+ /**
19963
+ * @export
19964
+ */
19965
+ export declare const AnalyticsControllerGetTopServersPeriodEnum: {
19966
+ readonly _24h: "24h";
19967
+ readonly _7d: "7d";
19968
+ readonly _30d: "30d";
19969
+ readonly _90d: "90d";
19970
+ };
19971
+ export type AnalyticsControllerGetTopServersPeriodEnum = (typeof AnalyticsControllerGetTopServersPeriodEnum)[keyof typeof AnalyticsControllerGetTopServersPeriodEnum];
19972
+ /**
19973
+ * AuthApi - axios parameter creator
19974
+ * @export
19975
+ */
19976
+ export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) => {
19977
+ /**
19978
+ * <br> OperationId: `AuthControllerAccount`
19979
+ * @summary Account
19980
+ * @param {*} [options] Override http request option.
19981
+ * @throws {RequiredError}
19982
+ */
19983
+ authControllerAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19984
+ /**
19985
+ * <br> OperationId: `AuthControllerCallback`
19986
+ * @summary Callback
19987
+ * @param {*} [options] Override http request option.
19988
+ * @throws {RequiredError}
19989
+ */
19990
+ authControllerCallback: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19991
+ /**
19992
+ * <br> OperationId: `AuthControllerLogin`
19993
+ * @summary Login
19994
+ * @param {string} [redirect]
19995
+ * @param {*} [options] Override http request option.
19996
+ * @throws {RequiredError}
19997
+ */
19998
+ authControllerLogin: (redirect?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19999
+ /**
20000
+ * <br> OperationId: `AuthControllerLogout`
20001
+ * @summary Logout
20002
+ * @param {string} [redirect]
20003
+ * @param {*} [options] Override http request option.
20004
+ * @throws {RequiredError}
20005
+ */
20006
+ authControllerLogout: (redirect?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20007
+ };
19015
20008
  /**
20009
+ * AuthApi - functional programming interface
19016
20010
  * @export
19017
20011
  */
19018
- export declare const AnalyticsControllerGetTopListingsPeriodEnum: {
19019
- readonly _24h: "24h";
19020
- readonly _7d: "7d";
19021
- readonly _30d: "30d";
19022
- readonly _90d: "90d";
20012
+ export declare const AuthApiFp: (configuration?: Configuration) => {
20013
+ /**
20014
+ * <br> OperationId: `AuthControllerAccount`
20015
+ * @summary Account
20016
+ * @param {*} [options] Override http request option.
20017
+ * @throws {RequiredError}
20018
+ */
20019
+ authControllerAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
20020
+ /**
20021
+ * <br> OperationId: `AuthControllerCallback`
20022
+ * @summary Callback
20023
+ * @param {*} [options] Override http request option.
20024
+ * @throws {RequiredError}
20025
+ */
20026
+ authControllerCallback(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
20027
+ /**
20028
+ * <br> OperationId: `AuthControllerLogin`
20029
+ * @summary Login
20030
+ * @param {string} [redirect]
20031
+ * @param {*} [options] Override http request option.
20032
+ * @throws {RequiredError}
20033
+ */
20034
+ authControllerLogin(redirect?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
20035
+ /**
20036
+ * <br> OperationId: `AuthControllerLogout`
20037
+ * @summary Logout
20038
+ * @param {string} [redirect]
20039
+ * @param {*} [options] Override http request option.
20040
+ * @throws {RequiredError}
20041
+ */
20042
+ authControllerLogout(redirect?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
19023
20043
  };
19024
- export type AnalyticsControllerGetTopListingsPeriodEnum = (typeof AnalyticsControllerGetTopListingsPeriodEnum)[keyof typeof AnalyticsControllerGetTopListingsPeriodEnum];
19025
20044
  /**
20045
+ * AuthApi - factory interface
19026
20046
  * @export
19027
20047
  */
19028
- export declare const AnalyticsControllerGetTopModulesByVolumePeriodEnum: {
19029
- readonly _24h: "24h";
19030
- readonly _7d: "7d";
19031
- readonly _30d: "30d";
19032
- readonly _90d: "90d";
20048
+ export declare const AuthApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
20049
+ /**
20050
+ * <br> OperationId: `AuthControllerAccount`
20051
+ * @summary Account
20052
+ * @param {*} [options] Override http request option.
20053
+ * @throws {RequiredError}
20054
+ */
20055
+ authControllerAccount(options?: RawAxiosRequestConfig): AxiosPromise<void>;
20056
+ /**
20057
+ * <br> OperationId: `AuthControllerCallback`
20058
+ * @summary Callback
20059
+ * @param {*} [options] Override http request option.
20060
+ * @throws {RequiredError}
20061
+ */
20062
+ authControllerCallback(options?: RawAxiosRequestConfig): AxiosPromise<void>;
20063
+ /**
20064
+ * <br> OperationId: `AuthControllerLogin`
20065
+ * @summary Login
20066
+ * @param {string} [redirect]
20067
+ * @param {*} [options] Override http request option.
20068
+ * @throws {RequiredError}
20069
+ */
20070
+ authControllerLogin(redirect?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
20071
+ /**
20072
+ * <br> OperationId: `AuthControllerLogout`
20073
+ * @summary Logout
20074
+ * @param {string} [redirect]
20075
+ * @param {*} [options] Override http request option.
20076
+ * @throws {RequiredError}
20077
+ */
20078
+ authControllerLogout(redirect?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
19033
20079
  };
19034
- export type AnalyticsControllerGetTopModulesByVolumePeriodEnum = (typeof AnalyticsControllerGetTopModulesByVolumePeriodEnum)[keyof typeof AnalyticsControllerGetTopModulesByVolumePeriodEnum];
19035
20080
  /**
20081
+ * AuthApi - object-oriented interface
19036
20082
  * @export
20083
+ * @class AuthApi
20084
+ * @extends {BaseAPI}
19037
20085
  */
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];
20086
+ export declare class AuthApi extends BaseAPI {
20087
+ /**
20088
+ * <br> OperationId: `AuthControllerAccount`
20089
+ * @summary Account
20090
+ * @param {*} [options] Override http request option.
20091
+ * @throws {RequiredError}
20092
+ * @memberof AuthApi
20093
+ */
20094
+ authControllerAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
20095
+ /**
20096
+ * <br> OperationId: `AuthControllerCallback`
20097
+ * @summary Callback
20098
+ * @param {*} [options] Override http request option.
20099
+ * @throws {RequiredError}
20100
+ * @memberof AuthApi
20101
+ */
20102
+ authControllerCallback(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
20103
+ /**
20104
+ * <br> OperationId: `AuthControllerLogin`
20105
+ * @summary Login
20106
+ * @param {string} [redirect]
20107
+ * @param {*} [options] Override http request option.
20108
+ * @throws {RequiredError}
20109
+ * @memberof AuthApi
20110
+ */
20111
+ authControllerLogin(redirect?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
20112
+ /**
20113
+ * <br> OperationId: `AuthControllerLogout`
20114
+ * @summary Logout
20115
+ * @param {string} [redirect]
20116
+ * @param {*} [options] Override http request option.
20117
+ * @throws {RequiredError}
20118
+ * @memberof AuthApi
20119
+ */
20120
+ authControllerLogout(redirect?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
20121
+ }
19045
20122
  /**
19046
20123
  * CommandApi - axios parameter creator
19047
20124
  * @export
@@ -25031,7 +26108,7 @@ export declare const ShopListingApiFp: (configuration?: Configuration) => {
25031
26108
  * @param {*} [options] Override http request option.
25032
26109
  * @throws {RequiredError}
25033
26110
  */
25034
- shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
26111
+ shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopImportResultDTOAPI>>;
25035
26112
  /**
25036
26113
  * Search shop listings<br> OperationId: `ShopListingControllerSearch`
25037
26114
  * @summary Search
@@ -25085,7 +26162,7 @@ export declare const ShopListingApiFactory: (configuration?: Configuration, base
25085
26162
  * @param {*} [options] Override http request option.
25086
26163
  * @throws {RequiredError}
25087
26164
  */
25088
- shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
26165
+ shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<ShopImportResultDTOAPI>;
25089
26166
  /**
25090
26167
  * Search shop listings<br> OperationId: `ShopListingControllerSearch`
25091
26168
  * @summary Search
@@ -25145,7 +26222,7 @@ export declare class ShopListingApi extends BaseAPI {
25145
26222
  * @throws {RequiredError}
25146
26223
  * @memberof ShopListingApi
25147
26224
  */
25148
- shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
26225
+ shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopImportResultDTOAPI, any>>;
25149
26226
  /**
25150
26227
  * Search shop listings<br> OperationId: `ShopListingControllerSearch`
25151
26228
  * @summary Search
@@ -25357,6 +26434,131 @@ export declare class ShopOrderApi extends BaseAPI {
25357
26434
  */
25358
26435
  shopOrderControllerSearch(shopOrderSearchInputDTO?: ShopOrderSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopOrderOutputArrayDTOAPI, any>>;
25359
26436
  }
26437
+ /**
26438
+ * StorefrontConfigApi - axios parameter creator
26439
+ * @export
26440
+ */
26441
+ export declare const StorefrontConfigApiAxiosParamCreator: (configuration?: Configuration) => {
26442
+ /**
26443
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
26444
+ * @summary Get effective config
26445
+ * @param {string} gameServerId
26446
+ * @param {*} [options] Override http request option.
26447
+ * @throws {RequiredError}
26448
+ */
26449
+ storefrontConfigControllerGetEffectiveConfig: (gameServerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26450
+ /**
26451
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
26452
+ * @summary List templates
26453
+ * @param {*} [options] Override http request option.
26454
+ * @throws {RequiredError}
26455
+ */
26456
+ storefrontConfigControllerListTemplates: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26457
+ /**
26458
+ * 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`
26459
+ * @summary Set config
26460
+ * @param {string} gameServerId
26461
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
26462
+ * @param {*} [options] Override http request option.
26463
+ * @throws {RequiredError}
26464
+ */
26465
+ storefrontConfigControllerSetConfig: (gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26466
+ };
26467
+ /**
26468
+ * StorefrontConfigApi - functional programming interface
26469
+ * @export
26470
+ */
26471
+ export declare const StorefrontConfigApiFp: (configuration?: Configuration) => {
26472
+ /**
26473
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
26474
+ * @summary Get effective config
26475
+ * @param {string} gameServerId
26476
+ * @param {*} [options] Override http request option.
26477
+ * @throws {RequiredError}
26478
+ */
26479
+ storefrontConfigControllerGetEffectiveConfig(gameServerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>>;
26480
+ /**
26481
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
26482
+ * @summary List templates
26483
+ * @param {*} [options] Override http request option.
26484
+ * @throws {RequiredError}
26485
+ */
26486
+ storefrontConfigControllerListTemplates(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StorefrontTemplateOutputArrayDTOAPI>>;
26487
+ /**
26488
+ * 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`
26489
+ * @summary Set config
26490
+ * @param {string} gameServerId
26491
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
26492
+ * @param {*} [options] Override http request option.
26493
+ * @throws {RequiredError}
26494
+ */
26495
+ storefrontConfigControllerSetConfig(gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>>;
26496
+ };
26497
+ /**
26498
+ * StorefrontConfigApi - factory interface
26499
+ * @export
26500
+ */
26501
+ export declare const StorefrontConfigApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
26502
+ /**
26503
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
26504
+ * @summary Get effective config
26505
+ * @param {string} gameServerId
26506
+ * @param {*} [options] Override http request option.
26507
+ * @throws {RequiredError}
26508
+ */
26509
+ storefrontConfigControllerGetEffectiveConfig(gameServerId: string, options?: RawAxiosRequestConfig): AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>;
26510
+ /**
26511
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
26512
+ * @summary List templates
26513
+ * @param {*} [options] Override http request option.
26514
+ * @throws {RequiredError}
26515
+ */
26516
+ storefrontConfigControllerListTemplates(options?: RawAxiosRequestConfig): AxiosPromise<StorefrontTemplateOutputArrayDTOAPI>;
26517
+ /**
26518
+ * 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`
26519
+ * @summary Set config
26520
+ * @param {string} gameServerId
26521
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
26522
+ * @param {*} [options] Override http request option.
26523
+ * @throws {RequiredError}
26524
+ */
26525
+ storefrontConfigControllerSetConfig(gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig): AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>;
26526
+ };
26527
+ /**
26528
+ * StorefrontConfigApi - object-oriented interface
26529
+ * @export
26530
+ * @class StorefrontConfigApi
26531
+ * @extends {BaseAPI}
26532
+ */
26533
+ export declare class StorefrontConfigApi extends BaseAPI {
26534
+ /**
26535
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
26536
+ * @summary Get effective config
26537
+ * @param {string} gameServerId
26538
+ * @param {*} [options] Override http request option.
26539
+ * @throws {RequiredError}
26540
+ * @memberof StorefrontConfigApi
26541
+ */
26542
+ storefrontConfigControllerGetEffectiveConfig(gameServerId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EffectiveStorefrontConfigOutputDTOAPI, any>>;
26543
+ /**
26544
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
26545
+ * @summary List templates
26546
+ * @param {*} [options] Override http request option.
26547
+ * @throws {RequiredError}
26548
+ * @memberof StorefrontConfigApi
26549
+ */
26550
+ storefrontConfigControllerListTemplates(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StorefrontTemplateOutputArrayDTOAPI, any>>;
26551
+ /**
26552
+ * 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`
26553
+ * @summary Set config
26554
+ * @param {string} gameServerId
26555
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
26556
+ * @param {*} [options] Override http request option.
26557
+ * @throws {RequiredError}
26558
+ * @memberof StorefrontConfigApi
26559
+ */
26560
+ storefrontConfigControllerSetConfig(gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EffectiveStorefrontConfigOutputDTOAPI, any>>;
26561
+ }
25360
26562
  /**
25361
26563
  * TrackingApi - axios parameter creator
25362
26564
  * @export
@@ -26235,4 +27437,195 @@ export declare class VariableApi extends BaseAPI {
26235
27437
  */
26236
27438
  variableControllerUpdate(id: string, variableUpdateDTO?: VariableUpdateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VariableOutputDTOAPI, any>>;
26237
27439
  }
27440
+ /**
27441
+ * InviteLinkApi - axios parameter creator
27442
+ * @export
27443
+ */
27444
+ export declare const InviteLinkApiAxiosParamCreator: (configuration?: Configuration) => {
27445
+ /**
27446
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
27447
+ * @summary Create invite link
27448
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
27449
+ * @param {*} [options] Override http request option.
27450
+ * @throws {RequiredError}
27451
+ */
27452
+ inviteLinkControllerCreate: (inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27453
+ /**
27454
+ * <br> OperationId: `InviteLinkControllerPreview`
27455
+ * @summary Preview
27456
+ * @param {string} token
27457
+ * @param {*} [options] Override http request option.
27458
+ * @throws {RequiredError}
27459
+ */
27460
+ inviteLinkControllerPreview: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27461
+ /**
27462
+ * <br> OperationId: `InviteLinkControllerRedeem`
27463
+ * @summary Redeem
27464
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
27465
+ * @param {*} [options] Override http request option.
27466
+ * @throws {RequiredError}
27467
+ */
27468
+ inviteLinkControllerRedeem: (redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27469
+ /**
27470
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
27471
+ * @summary Revoke
27472
+ * @param {string} id
27473
+ * @param {*} [options] Override http request option.
27474
+ * @throws {RequiredError}
27475
+ */
27476
+ inviteLinkControllerRevoke: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27477
+ /**
27478
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
27479
+ * @summary Search
27480
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
27481
+ * @param {*} [options] Override http request option.
27482
+ * @throws {RequiredError}
27483
+ */
27484
+ inviteLinkControllerSearch: (inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27485
+ };
27486
+ /**
27487
+ * InviteLinkApi - functional programming interface
27488
+ * @export
27489
+ */
27490
+ export declare const InviteLinkApiFp: (configuration?: Configuration) => {
27491
+ /**
27492
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
27493
+ * @summary Create invite link
27494
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
27495
+ * @param {*} [options] Override http request option.
27496
+ * @throws {RequiredError}
27497
+ */
27498
+ inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkCreateResultDTOAPI>>;
27499
+ /**
27500
+ * <br> OperationId: `InviteLinkControllerPreview`
27501
+ * @summary Preview
27502
+ * @param {string} token
27503
+ * @param {*} [options] Override http request option.
27504
+ * @throws {RequiredError}
27505
+ */
27506
+ inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkPreviewDTOAPI>>;
27507
+ /**
27508
+ * <br> OperationId: `InviteLinkControllerRedeem`
27509
+ * @summary Redeem
27510
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
27511
+ * @param {*} [options] Override http request option.
27512
+ * @throws {RequiredError}
27513
+ */
27514
+ inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOutputWithRolesDTOAPI>>;
27515
+ /**
27516
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
27517
+ * @summary Revoke
27518
+ * @param {string} id
27519
+ * @param {*} [options] Override http request option.
27520
+ * @throws {RequiredError}
27521
+ */
27522
+ inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
27523
+ /**
27524
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
27525
+ * @summary Search
27526
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
27527
+ * @param {*} [options] Override http request option.
27528
+ * @throws {RequiredError}
27529
+ */
27530
+ inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkOutputArrayDTOAPI>>;
27531
+ };
27532
+ /**
27533
+ * InviteLinkApi - factory interface
27534
+ * @export
27535
+ */
27536
+ export declare const InviteLinkApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
27537
+ /**
27538
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
27539
+ * @summary Create invite link
27540
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
27541
+ * @param {*} [options] Override http request option.
27542
+ * @throws {RequiredError}
27543
+ */
27544
+ inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkCreateResultDTOAPI>;
27545
+ /**
27546
+ * <br> OperationId: `InviteLinkControllerPreview`
27547
+ * @summary Preview
27548
+ * @param {string} token
27549
+ * @param {*} [options] Override http request option.
27550
+ * @throws {RequiredError}
27551
+ */
27552
+ inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkPreviewDTOAPI>;
27553
+ /**
27554
+ * <br> OperationId: `InviteLinkControllerRedeem`
27555
+ * @summary Redeem
27556
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
27557
+ * @param {*} [options] Override http request option.
27558
+ * @throws {RequiredError}
27559
+ */
27560
+ inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputWithRolesDTOAPI>;
27561
+ /**
27562
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
27563
+ * @summary Revoke
27564
+ * @param {string} id
27565
+ * @param {*} [options] Override http request option.
27566
+ * @throws {RequiredError}
27567
+ */
27568
+ inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
27569
+ /**
27570
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
27571
+ * @summary Search
27572
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
27573
+ * @param {*} [options] Override http request option.
27574
+ * @throws {RequiredError}
27575
+ */
27576
+ inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkOutputArrayDTOAPI>;
27577
+ };
27578
+ /**
27579
+ * InviteLinkApi - object-oriented interface
27580
+ * @export
27581
+ * @class InviteLinkApi
27582
+ * @extends {BaseAPI}
27583
+ */
27584
+ export declare class InviteLinkApi extends BaseAPI {
27585
+ /**
27586
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
27587
+ * @summary Create invite link
27588
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
27589
+ * @param {*} [options] Override http request option.
27590
+ * @throws {RequiredError}
27591
+ * @memberof InviteLinkApi
27592
+ */
27593
+ inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkCreateResultDTOAPI, any>>;
27594
+ /**
27595
+ * <br> OperationId: `InviteLinkControllerPreview`
27596
+ * @summary Preview
27597
+ * @param {string} token
27598
+ * @param {*} [options] Override http request option.
27599
+ * @throws {RequiredError}
27600
+ * @memberof InviteLinkApi
27601
+ */
27602
+ inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkPreviewDTOAPI, any>>;
27603
+ /**
27604
+ * <br> OperationId: `InviteLinkControllerRedeem`
27605
+ * @summary Redeem
27606
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
27607
+ * @param {*} [options] Override http request option.
27608
+ * @throws {RequiredError}
27609
+ * @memberof InviteLinkApi
27610
+ */
27611
+ inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserOutputWithRolesDTOAPI, any>>;
27612
+ /**
27613
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
27614
+ * @summary Revoke
27615
+ * @param {string} id
27616
+ * @param {*} [options] Override http request option.
27617
+ * @throws {RequiredError}
27618
+ * @memberof InviteLinkApi
27619
+ */
27620
+ inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
27621
+ /**
27622
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
27623
+ * @summary Search
27624
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
27625
+ * @param {*} [options] Override http request option.
27626
+ * @throws {RequiredError}
27627
+ * @memberof InviteLinkApi
27628
+ */
27629
+ inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkOutputArrayDTOAPI, any>>;
27630
+ }
26238
27631
  //# sourceMappingURL=api.d.ts.map