@takaro/apiclient 0.0.0-dev.e4f01af → 0.0.0-dev.e637394
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.
- package/dist/generated/api.d.ts +1254 -75
- package/dist/generated/api.d.ts.map +1 -1
- package/dist/generated/api.js +675 -8
- package/dist/generated/api.js.map +1 -1
- package/dist/lib/client.d.ts +2 -1
- package/dist/lib/client.d.ts.map +1 -1
- package/dist/lib/client.js +6 -1
- package/dist/lib/client.js.map +1 -1
- package/package.json +2 -2
- package/src/generated/api.ts +1908 -189
- package/src/lib/client.ts +11 -0
package/dist/generated/api.d.ts
CHANGED
|
@@ -2218,6 +2218,18 @@ export interface DomainCreateInputDTO {
|
|
|
2218
2218
|
* @memberof DomainCreateInputDTO
|
|
2219
2219
|
*/
|
|
2220
2220
|
maxFunctionsInModule?: number;
|
|
2221
|
+
/**
|
|
2222
|
+
*
|
|
2223
|
+
* @type {number}
|
|
2224
|
+
* @memberof DomainCreateInputDTO
|
|
2225
|
+
*/
|
|
2226
|
+
maxCustomRoles?: number;
|
|
2227
|
+
/**
|
|
2228
|
+
*
|
|
2229
|
+
* @type {number}
|
|
2230
|
+
* @memberof DomainCreateInputDTO
|
|
2231
|
+
*/
|
|
2232
|
+
maxDiscordLinkedRoles?: number;
|
|
2221
2233
|
}
|
|
2222
2234
|
export declare const DomainCreateInputDTOStateEnum: {
|
|
2223
2235
|
readonly Active: "ACTIVE";
|
|
@@ -2372,6 +2384,18 @@ export interface DomainOutputDTO {
|
|
|
2372
2384
|
* @memberof DomainOutputDTO
|
|
2373
2385
|
*/
|
|
2374
2386
|
maxFunctionsInModule: number;
|
|
2387
|
+
/**
|
|
2388
|
+
*
|
|
2389
|
+
* @type {number}
|
|
2390
|
+
* @memberof DomainOutputDTO
|
|
2391
|
+
*/
|
|
2392
|
+
maxCustomRoles: number;
|
|
2393
|
+
/**
|
|
2394
|
+
*
|
|
2395
|
+
* @type {number}
|
|
2396
|
+
* @memberof DomainOutputDTO
|
|
2397
|
+
*/
|
|
2398
|
+
maxDiscordLinkedRoles: number;
|
|
2375
2399
|
/**
|
|
2376
2400
|
*
|
|
2377
2401
|
* @type {string}
|
|
@@ -2592,6 +2616,18 @@ export interface DomainUpdateInputDTO {
|
|
|
2592
2616
|
* @memberof DomainUpdateInputDTO
|
|
2593
2617
|
*/
|
|
2594
2618
|
maxFunctionsInModule?: number;
|
|
2619
|
+
/**
|
|
2620
|
+
*
|
|
2621
|
+
* @type {number}
|
|
2622
|
+
* @memberof DomainUpdateInputDTO
|
|
2623
|
+
*/
|
|
2624
|
+
maxCustomRoles?: number;
|
|
2625
|
+
/**
|
|
2626
|
+
*
|
|
2627
|
+
* @type {number}
|
|
2628
|
+
* @memberof DomainUpdateInputDTO
|
|
2629
|
+
*/
|
|
2630
|
+
maxDiscordLinkedRoles?: number;
|
|
2595
2631
|
}
|
|
2596
2632
|
export declare const DomainUpdateInputDTOStateEnum: {
|
|
2597
2633
|
readonly Active: "ACTIVE";
|
|
@@ -2599,6 +2635,50 @@ export declare const DomainUpdateInputDTOStateEnum: {
|
|
|
2599
2635
|
readonly Maintenance: "MAINTENANCE";
|
|
2600
2636
|
};
|
|
2601
2637
|
export type DomainUpdateInputDTOStateEnum = (typeof DomainUpdateInputDTOStateEnum)[keyof typeof DomainUpdateInputDTOStateEnum];
|
|
2638
|
+
/**
|
|
2639
|
+
*
|
|
2640
|
+
* @export
|
|
2641
|
+
* @interface EffectiveStorefrontConfigDTO
|
|
2642
|
+
*/
|
|
2643
|
+
export interface EffectiveStorefrontConfigDTO {
|
|
2644
|
+
/**
|
|
2645
|
+
*
|
|
2646
|
+
* @type {string}
|
|
2647
|
+
* @memberof EffectiveStorefrontConfigDTO
|
|
2648
|
+
*/
|
|
2649
|
+
templateId: string;
|
|
2650
|
+
/**
|
|
2651
|
+
*
|
|
2652
|
+
* @type {object}
|
|
2653
|
+
* @memberof EffectiveStorefrontConfigDTO
|
|
2654
|
+
*/
|
|
2655
|
+
values: object;
|
|
2656
|
+
/**
|
|
2657
|
+
*
|
|
2658
|
+
* @type {object}
|
|
2659
|
+
* @memberof EffectiveStorefrontConfigDTO
|
|
2660
|
+
*/
|
|
2661
|
+
schema: object;
|
|
2662
|
+
}
|
|
2663
|
+
/**
|
|
2664
|
+
*
|
|
2665
|
+
* @export
|
|
2666
|
+
* @interface EffectiveStorefrontConfigOutputDTOAPI
|
|
2667
|
+
*/
|
|
2668
|
+
export interface EffectiveStorefrontConfigOutputDTOAPI {
|
|
2669
|
+
/**
|
|
2670
|
+
*
|
|
2671
|
+
* @type {EffectiveStorefrontConfigDTO}
|
|
2672
|
+
* @memberof EffectiveStorefrontConfigOutputDTOAPI
|
|
2673
|
+
*/
|
|
2674
|
+
data: EffectiveStorefrontConfigDTO;
|
|
2675
|
+
/**
|
|
2676
|
+
*
|
|
2677
|
+
* @type {MetadataOutput}
|
|
2678
|
+
* @memberof EffectiveStorefrontConfigOutputDTOAPI
|
|
2679
|
+
*/
|
|
2680
|
+
meta: MetadataOutput;
|
|
2681
|
+
}
|
|
2602
2682
|
/**
|
|
2603
2683
|
*
|
|
2604
2684
|
* @export
|
|
@@ -6507,121 +6587,574 @@ export interface ImportOutputDTO {
|
|
|
6507
6587
|
/**
|
|
6508
6588
|
*
|
|
6509
6589
|
* @export
|
|
6510
|
-
* @interface ImportOutputDTOAPI
|
|
6590
|
+
* @interface ImportOutputDTOAPI
|
|
6591
|
+
*/
|
|
6592
|
+
export interface ImportOutputDTOAPI {
|
|
6593
|
+
/**
|
|
6594
|
+
*
|
|
6595
|
+
* @type {ImportOutputDTO}
|
|
6596
|
+
* @memberof ImportOutputDTOAPI
|
|
6597
|
+
*/
|
|
6598
|
+
data: ImportOutputDTO;
|
|
6599
|
+
/**
|
|
6600
|
+
*
|
|
6601
|
+
* @type {MetadataOutput}
|
|
6602
|
+
* @memberof ImportOutputDTOAPI
|
|
6603
|
+
*/
|
|
6604
|
+
meta: MetadataOutput;
|
|
6605
|
+
}
|
|
6606
|
+
/**
|
|
6607
|
+
*
|
|
6608
|
+
* @export
|
|
6609
|
+
* @interface InsightDTO
|
|
6610
|
+
*/
|
|
6611
|
+
export interface InsightDTO {
|
|
6612
|
+
/**
|
|
6613
|
+
*
|
|
6614
|
+
* @type {string}
|
|
6615
|
+
* @memberof InsightDTO
|
|
6616
|
+
*/
|
|
6617
|
+
type: string;
|
|
6618
|
+
/**
|
|
6619
|
+
*
|
|
6620
|
+
* @type {string}
|
|
6621
|
+
* @memberof InsightDTO
|
|
6622
|
+
*/
|
|
6623
|
+
title: string;
|
|
6624
|
+
/**
|
|
6625
|
+
*
|
|
6626
|
+
* @type {string}
|
|
6627
|
+
* @memberof InsightDTO
|
|
6628
|
+
*/
|
|
6629
|
+
description: string;
|
|
6630
|
+
/**
|
|
6631
|
+
*
|
|
6632
|
+
* @type {string}
|
|
6633
|
+
* @memberof InsightDTO
|
|
6634
|
+
*/
|
|
6635
|
+
value?: string;
|
|
6636
|
+
/**
|
|
6637
|
+
*
|
|
6638
|
+
* @type {string}
|
|
6639
|
+
* @memberof InsightDTO
|
|
6640
|
+
*/
|
|
6641
|
+
icon: string;
|
|
6642
|
+
}
|
|
6643
|
+
/**
|
|
6644
|
+
*
|
|
6645
|
+
* @export
|
|
6646
|
+
* @interface InstallModuleDTO
|
|
6647
|
+
*/
|
|
6648
|
+
export interface InstallModuleDTO {
|
|
6649
|
+
/**
|
|
6650
|
+
*
|
|
6651
|
+
* @type {string}
|
|
6652
|
+
* @memberof InstallModuleDTO
|
|
6653
|
+
*/
|
|
6654
|
+
versionId: string;
|
|
6655
|
+
/**
|
|
6656
|
+
*
|
|
6657
|
+
* @type {string}
|
|
6658
|
+
* @memberof InstallModuleDTO
|
|
6659
|
+
*/
|
|
6660
|
+
gameServerId: string;
|
|
6661
|
+
/**
|
|
6662
|
+
*
|
|
6663
|
+
* @type {string}
|
|
6664
|
+
* @memberof InstallModuleDTO
|
|
6665
|
+
*/
|
|
6666
|
+
userConfig?: string;
|
|
6667
|
+
/**
|
|
6668
|
+
*
|
|
6669
|
+
* @type {string}
|
|
6670
|
+
* @memberof InstallModuleDTO
|
|
6671
|
+
*/
|
|
6672
|
+
systemConfig?: string;
|
|
6673
|
+
}
|
|
6674
|
+
/**
|
|
6675
|
+
*
|
|
6676
|
+
* @export
|
|
6677
|
+
* @interface InviteCreateDTO
|
|
6678
|
+
*/
|
|
6679
|
+
export interface InviteCreateDTO {
|
|
6680
|
+
/**
|
|
6681
|
+
*
|
|
6682
|
+
* @type {string}
|
|
6683
|
+
* @memberof InviteCreateDTO
|
|
6684
|
+
*/
|
|
6685
|
+
email: string;
|
|
6686
|
+
}
|
|
6687
|
+
/**
|
|
6688
|
+
*
|
|
6689
|
+
* @export
|
|
6690
|
+
* @interface InviteOutputDTO
|
|
6691
|
+
*/
|
|
6692
|
+
export interface InviteOutputDTO {
|
|
6693
|
+
/**
|
|
6694
|
+
*
|
|
6695
|
+
* @type {string}
|
|
6696
|
+
* @memberof InviteOutputDTO
|
|
6697
|
+
*/
|
|
6698
|
+
botInvite: string;
|
|
6699
|
+
/**
|
|
6700
|
+
*
|
|
6701
|
+
* @type {string}
|
|
6702
|
+
* @memberof InviteOutputDTO
|
|
6703
|
+
*/
|
|
6704
|
+
devServer: string;
|
|
6705
|
+
}
|
|
6706
|
+
/**
|
|
6707
|
+
*
|
|
6708
|
+
* @export
|
|
6709
|
+
* @interface InviteLinkCreateInputDTO
|
|
6710
|
+
*/
|
|
6711
|
+
export interface InviteLinkCreateInputDTO {
|
|
6712
|
+
/**
|
|
6713
|
+
*
|
|
6714
|
+
* @type {Array<string>}
|
|
6715
|
+
* @memberof InviteLinkCreateInputDTO
|
|
6716
|
+
*/
|
|
6717
|
+
roleIds?: Array<string>;
|
|
6718
|
+
/**
|
|
6719
|
+
*
|
|
6720
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6721
|
+
* @memberof InviteLinkCreateInputDTO
|
|
6722
|
+
*/
|
|
6723
|
+
expiresAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6724
|
+
/**
|
|
6725
|
+
*
|
|
6726
|
+
* @type {number}
|
|
6727
|
+
* @memberof InviteLinkCreateInputDTO
|
|
6728
|
+
*/
|
|
6729
|
+
maxUses?: number;
|
|
6730
|
+
}
|
|
6731
|
+
/**
|
|
6732
|
+
*
|
|
6733
|
+
* @export
|
|
6734
|
+
* @interface InviteLinkCreateResultDTO
|
|
6735
|
+
*/
|
|
6736
|
+
export interface InviteLinkCreateResultDTO {
|
|
6737
|
+
/**
|
|
6738
|
+
*
|
|
6739
|
+
* @type {string}
|
|
6740
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6741
|
+
*/
|
|
6742
|
+
inviteUrl: string;
|
|
6743
|
+
/**
|
|
6744
|
+
*
|
|
6745
|
+
* @type {string}
|
|
6746
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6747
|
+
*/
|
|
6748
|
+
token: string;
|
|
6749
|
+
/**
|
|
6750
|
+
*
|
|
6751
|
+
* @type {string}
|
|
6752
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6753
|
+
*/
|
|
6754
|
+
id: string;
|
|
6755
|
+
/**
|
|
6756
|
+
*
|
|
6757
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6758
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6759
|
+
*/
|
|
6760
|
+
createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6761
|
+
/**
|
|
6762
|
+
*
|
|
6763
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6764
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6765
|
+
*/
|
|
6766
|
+
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6767
|
+
/**
|
|
6768
|
+
*
|
|
6769
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6770
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6771
|
+
*/
|
|
6772
|
+
expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6773
|
+
/**
|
|
6774
|
+
*
|
|
6775
|
+
* @type {number}
|
|
6776
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6777
|
+
*/
|
|
6778
|
+
maxUses?: number;
|
|
6779
|
+
/**
|
|
6780
|
+
*
|
|
6781
|
+
* @type {number}
|
|
6782
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6783
|
+
*/
|
|
6784
|
+
uses: number;
|
|
6785
|
+
/**
|
|
6786
|
+
*
|
|
6787
|
+
* @type {number}
|
|
6788
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6789
|
+
*/
|
|
6790
|
+
remaining?: number;
|
|
6791
|
+
/**
|
|
6792
|
+
*
|
|
6793
|
+
* @type {string}
|
|
6794
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6795
|
+
*/
|
|
6796
|
+
status: InviteLinkCreateResultDTOStatusEnum;
|
|
6797
|
+
/**
|
|
6798
|
+
*
|
|
6799
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6800
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6801
|
+
*/
|
|
6802
|
+
revokedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6803
|
+
/**
|
|
6804
|
+
*
|
|
6805
|
+
* @type {string}
|
|
6806
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6807
|
+
*/
|
|
6808
|
+
createdBy?: string;
|
|
6809
|
+
/**
|
|
6810
|
+
*
|
|
6811
|
+
* @type {Array<InviteLinkRoleDTO>}
|
|
6812
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6813
|
+
*/
|
|
6814
|
+
roles: Array<InviteLinkRoleDTO>;
|
|
6815
|
+
}
|
|
6816
|
+
export declare const InviteLinkCreateResultDTOStatusEnum: {
|
|
6817
|
+
readonly Active: "ACTIVE";
|
|
6818
|
+
readonly Revoked: "REVOKED";
|
|
6819
|
+
readonly Expired: "EXPIRED";
|
|
6820
|
+
readonly Depleted: "DEPLETED";
|
|
6821
|
+
};
|
|
6822
|
+
export type InviteLinkCreateResultDTOStatusEnum = (typeof InviteLinkCreateResultDTOStatusEnum)[keyof typeof InviteLinkCreateResultDTOStatusEnum];
|
|
6823
|
+
/**
|
|
6824
|
+
*
|
|
6825
|
+
* @export
|
|
6826
|
+
* @interface InviteLinkCreateResultDTOAPI
|
|
6827
|
+
*/
|
|
6828
|
+
export interface InviteLinkCreateResultDTOAPI {
|
|
6829
|
+
/**
|
|
6830
|
+
*
|
|
6831
|
+
* @type {InviteLinkCreateResultDTO}
|
|
6832
|
+
* @memberof InviteLinkCreateResultDTOAPI
|
|
6833
|
+
*/
|
|
6834
|
+
data: InviteLinkCreateResultDTO;
|
|
6835
|
+
/**
|
|
6836
|
+
*
|
|
6837
|
+
* @type {MetadataOutput}
|
|
6838
|
+
* @memberof InviteLinkCreateResultDTOAPI
|
|
6839
|
+
*/
|
|
6840
|
+
meta: MetadataOutput;
|
|
6841
|
+
}
|
|
6842
|
+
/**
|
|
6843
|
+
*
|
|
6844
|
+
* @export
|
|
6845
|
+
* @interface InviteLinkOutputDTO
|
|
6846
|
+
*/
|
|
6847
|
+
export interface InviteLinkOutputDTO {
|
|
6848
|
+
/**
|
|
6849
|
+
*
|
|
6850
|
+
* @type {string}
|
|
6851
|
+
* @memberof InviteLinkOutputDTO
|
|
6852
|
+
*/
|
|
6853
|
+
id: string;
|
|
6854
|
+
/**
|
|
6855
|
+
*
|
|
6856
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6857
|
+
* @memberof InviteLinkOutputDTO
|
|
6858
|
+
*/
|
|
6859
|
+
createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6860
|
+
/**
|
|
6861
|
+
*
|
|
6862
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6863
|
+
* @memberof InviteLinkOutputDTO
|
|
6864
|
+
*/
|
|
6865
|
+
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6866
|
+
/**
|
|
6867
|
+
*
|
|
6868
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6869
|
+
* @memberof InviteLinkOutputDTO
|
|
6870
|
+
*/
|
|
6871
|
+
expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6872
|
+
/**
|
|
6873
|
+
*
|
|
6874
|
+
* @type {number}
|
|
6875
|
+
* @memberof InviteLinkOutputDTO
|
|
6876
|
+
*/
|
|
6877
|
+
maxUses?: number;
|
|
6878
|
+
/**
|
|
6879
|
+
*
|
|
6880
|
+
* @type {number}
|
|
6881
|
+
* @memberof InviteLinkOutputDTO
|
|
6882
|
+
*/
|
|
6883
|
+
uses: number;
|
|
6884
|
+
/**
|
|
6885
|
+
*
|
|
6886
|
+
* @type {number}
|
|
6887
|
+
* @memberof InviteLinkOutputDTO
|
|
6888
|
+
*/
|
|
6889
|
+
remaining?: number;
|
|
6890
|
+
/**
|
|
6891
|
+
*
|
|
6892
|
+
* @type {string}
|
|
6893
|
+
* @memberof InviteLinkOutputDTO
|
|
6894
|
+
*/
|
|
6895
|
+
status: InviteLinkOutputDTOStatusEnum;
|
|
6896
|
+
/**
|
|
6897
|
+
*
|
|
6898
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6899
|
+
* @memberof InviteLinkOutputDTO
|
|
6900
|
+
*/
|
|
6901
|
+
revokedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6902
|
+
/**
|
|
6903
|
+
*
|
|
6904
|
+
* @type {string}
|
|
6905
|
+
* @memberof InviteLinkOutputDTO
|
|
6906
|
+
*/
|
|
6907
|
+
createdBy?: string;
|
|
6908
|
+
/**
|
|
6909
|
+
*
|
|
6910
|
+
* @type {Array<InviteLinkRoleDTO>}
|
|
6911
|
+
* @memberof InviteLinkOutputDTO
|
|
6912
|
+
*/
|
|
6913
|
+
roles: Array<InviteLinkRoleDTO>;
|
|
6914
|
+
}
|
|
6915
|
+
export declare const InviteLinkOutputDTOStatusEnum: {
|
|
6916
|
+
readonly Active: "ACTIVE";
|
|
6917
|
+
readonly Revoked: "REVOKED";
|
|
6918
|
+
readonly Expired: "EXPIRED";
|
|
6919
|
+
readonly Depleted: "DEPLETED";
|
|
6920
|
+
};
|
|
6921
|
+
export type InviteLinkOutputDTOStatusEnum = (typeof InviteLinkOutputDTOStatusEnum)[keyof typeof InviteLinkOutputDTOStatusEnum];
|
|
6922
|
+
/**
|
|
6923
|
+
*
|
|
6924
|
+
* @export
|
|
6925
|
+
* @interface InviteLinkOutputDTOAPI
|
|
6926
|
+
*/
|
|
6927
|
+
export interface InviteLinkOutputDTOAPI {
|
|
6928
|
+
/**
|
|
6929
|
+
*
|
|
6930
|
+
* @type {InviteLinkOutputDTO}
|
|
6931
|
+
* @memberof InviteLinkOutputDTOAPI
|
|
6932
|
+
*/
|
|
6933
|
+
data: InviteLinkOutputDTO;
|
|
6934
|
+
/**
|
|
6935
|
+
*
|
|
6936
|
+
* @type {MetadataOutput}
|
|
6937
|
+
* @memberof InviteLinkOutputDTOAPI
|
|
6938
|
+
*/
|
|
6939
|
+
meta: MetadataOutput;
|
|
6940
|
+
}
|
|
6941
|
+
/**
|
|
6942
|
+
*
|
|
6943
|
+
* @export
|
|
6944
|
+
* @interface InviteLinkOutputArrayDTOAPI
|
|
6945
|
+
*/
|
|
6946
|
+
export interface InviteLinkOutputArrayDTOAPI {
|
|
6947
|
+
/**
|
|
6948
|
+
*
|
|
6949
|
+
* @type {Array<InviteLinkOutputDTO>}
|
|
6950
|
+
* @memberof InviteLinkOutputArrayDTOAPI
|
|
6951
|
+
*/
|
|
6952
|
+
data: Array<InviteLinkOutputDTO>;
|
|
6953
|
+
/**
|
|
6954
|
+
*
|
|
6955
|
+
* @type {MetadataOutput}
|
|
6956
|
+
* @memberof InviteLinkOutputArrayDTOAPI
|
|
6957
|
+
*/
|
|
6958
|
+
meta: MetadataOutput;
|
|
6959
|
+
}
|
|
6960
|
+
/**
|
|
6961
|
+
*
|
|
6962
|
+
* @export
|
|
6963
|
+
* @interface InviteLinkPreviewDTO
|
|
6964
|
+
*/
|
|
6965
|
+
export interface InviteLinkPreviewDTO {
|
|
6966
|
+
/**
|
|
6967
|
+
*
|
|
6968
|
+
* @type {InviteLinkPreviewDomainDTO}
|
|
6969
|
+
* @memberof InviteLinkPreviewDTO
|
|
6970
|
+
*/
|
|
6971
|
+
domain: InviteLinkPreviewDomainDTO;
|
|
6972
|
+
/**
|
|
6973
|
+
*
|
|
6974
|
+
* @type {Array<InviteLinkPreviewRoleDTO>}
|
|
6975
|
+
* @memberof InviteLinkPreviewDTO
|
|
6976
|
+
*/
|
|
6977
|
+
roles: Array<InviteLinkPreviewRoleDTO>;
|
|
6978
|
+
/**
|
|
6979
|
+
*
|
|
6980
|
+
* @type {string}
|
|
6981
|
+
* @memberof InviteLinkPreviewDTO
|
|
6982
|
+
*/
|
|
6983
|
+
status: InviteLinkPreviewDTOStatusEnum;
|
|
6984
|
+
/**
|
|
6985
|
+
*
|
|
6986
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6987
|
+
* @memberof InviteLinkPreviewDTO
|
|
6988
|
+
*/
|
|
6989
|
+
expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6990
|
+
/**
|
|
6991
|
+
*
|
|
6992
|
+
* @type {number}
|
|
6993
|
+
* @memberof InviteLinkPreviewDTO
|
|
6994
|
+
*/
|
|
6995
|
+
remaining?: number;
|
|
6996
|
+
}
|
|
6997
|
+
export declare const InviteLinkPreviewDTOStatusEnum: {
|
|
6998
|
+
readonly Active: "ACTIVE";
|
|
6999
|
+
readonly Revoked: "REVOKED";
|
|
7000
|
+
readonly Expired: "EXPIRED";
|
|
7001
|
+
readonly Depleted: "DEPLETED";
|
|
7002
|
+
};
|
|
7003
|
+
export type InviteLinkPreviewDTOStatusEnum = (typeof InviteLinkPreviewDTOStatusEnum)[keyof typeof InviteLinkPreviewDTOStatusEnum];
|
|
7004
|
+
/**
|
|
7005
|
+
*
|
|
7006
|
+
* @export
|
|
7007
|
+
* @interface InviteLinkPreviewDTOAPI
|
|
7008
|
+
*/
|
|
7009
|
+
export interface InviteLinkPreviewDTOAPI {
|
|
7010
|
+
/**
|
|
7011
|
+
*
|
|
7012
|
+
* @type {InviteLinkPreviewDTO}
|
|
7013
|
+
* @memberof InviteLinkPreviewDTOAPI
|
|
7014
|
+
*/
|
|
7015
|
+
data: InviteLinkPreviewDTO;
|
|
7016
|
+
/**
|
|
7017
|
+
*
|
|
7018
|
+
* @type {MetadataOutput}
|
|
7019
|
+
* @memberof InviteLinkPreviewDTOAPI
|
|
7020
|
+
*/
|
|
7021
|
+
meta: MetadataOutput;
|
|
7022
|
+
}
|
|
7023
|
+
/**
|
|
7024
|
+
*
|
|
7025
|
+
* @export
|
|
7026
|
+
* @interface InviteLinkPreviewDomainDTO
|
|
7027
|
+
*/
|
|
7028
|
+
export interface InviteLinkPreviewDomainDTO {
|
|
7029
|
+
/**
|
|
7030
|
+
*
|
|
7031
|
+
* @type {string}
|
|
7032
|
+
* @memberof InviteLinkPreviewDomainDTO
|
|
7033
|
+
*/
|
|
7034
|
+
id: string;
|
|
7035
|
+
/**
|
|
7036
|
+
*
|
|
7037
|
+
* @type {string}
|
|
7038
|
+
* @memberof InviteLinkPreviewDomainDTO
|
|
7039
|
+
*/
|
|
7040
|
+
name: string;
|
|
7041
|
+
}
|
|
7042
|
+
/**
|
|
7043
|
+
*
|
|
7044
|
+
* @export
|
|
7045
|
+
* @interface InviteLinkPreviewRoleDTO
|
|
6511
7046
|
*/
|
|
6512
|
-
export interface
|
|
7047
|
+
export interface InviteLinkPreviewRoleDTO {
|
|
6513
7048
|
/**
|
|
6514
7049
|
*
|
|
6515
|
-
* @type {
|
|
6516
|
-
* @memberof
|
|
7050
|
+
* @type {string}
|
|
7051
|
+
* @memberof InviteLinkPreviewRoleDTO
|
|
6517
7052
|
*/
|
|
6518
|
-
|
|
7053
|
+
id: string;
|
|
6519
7054
|
/**
|
|
6520
7055
|
*
|
|
6521
|
-
* @type {
|
|
6522
|
-
* @memberof
|
|
7056
|
+
* @type {string}
|
|
7057
|
+
* @memberof InviteLinkPreviewRoleDTO
|
|
6523
7058
|
*/
|
|
6524
|
-
|
|
7059
|
+
name: string;
|
|
6525
7060
|
}
|
|
6526
7061
|
/**
|
|
6527
7062
|
*
|
|
6528
7063
|
* @export
|
|
6529
|
-
* @interface
|
|
7064
|
+
* @interface InviteLinkRoleDTO
|
|
6530
7065
|
*/
|
|
6531
|
-
export interface
|
|
7066
|
+
export interface InviteLinkRoleDTO {
|
|
6532
7067
|
/**
|
|
6533
7068
|
*
|
|
6534
7069
|
* @type {string}
|
|
6535
|
-
* @memberof
|
|
7070
|
+
* @memberof InviteLinkRoleDTO
|
|
6536
7071
|
*/
|
|
6537
|
-
|
|
7072
|
+
roleId: string;
|
|
6538
7073
|
/**
|
|
6539
7074
|
*
|
|
6540
7075
|
* @type {string}
|
|
6541
|
-
* @memberof
|
|
7076
|
+
* @memberof InviteLinkRoleDTO
|
|
6542
7077
|
*/
|
|
6543
|
-
|
|
7078
|
+
name: string;
|
|
7079
|
+
}
|
|
7080
|
+
/**
|
|
7081
|
+
*
|
|
7082
|
+
* @export
|
|
7083
|
+
* @interface InviteLinkSearchInputDTO
|
|
7084
|
+
*/
|
|
7085
|
+
export interface InviteLinkSearchInputDTO {
|
|
6544
7086
|
/**
|
|
6545
7087
|
*
|
|
6546
7088
|
* @type {string}
|
|
6547
|
-
* @memberof
|
|
7089
|
+
* @memberof InviteLinkSearchInputDTO
|
|
6548
7090
|
*/
|
|
6549
|
-
|
|
7091
|
+
sortBy?: string;
|
|
6550
7092
|
/**
|
|
6551
7093
|
*
|
|
6552
|
-
* @type {
|
|
6553
|
-
* @memberof
|
|
7094
|
+
* @type {any}
|
|
7095
|
+
* @memberof InviteLinkSearchInputDTO
|
|
6554
7096
|
*/
|
|
6555
|
-
|
|
7097
|
+
filters?: any;
|
|
6556
7098
|
/**
|
|
6557
7099
|
*
|
|
6558
|
-
* @type {
|
|
6559
|
-
* @memberof
|
|
7100
|
+
* @type {any}
|
|
7101
|
+
* @memberof InviteLinkSearchInputDTO
|
|
6560
7102
|
*/
|
|
6561
|
-
|
|
6562
|
-
}
|
|
6563
|
-
/**
|
|
6564
|
-
*
|
|
6565
|
-
* @export
|
|
6566
|
-
* @interface InstallModuleDTO
|
|
6567
|
-
*/
|
|
6568
|
-
export interface InstallModuleDTO {
|
|
7103
|
+
search?: any;
|
|
6569
7104
|
/**
|
|
6570
7105
|
*
|
|
6571
|
-
* @type {
|
|
6572
|
-
* @memberof
|
|
7106
|
+
* @type {any}
|
|
7107
|
+
* @memberof InviteLinkSearchInputDTO
|
|
6573
7108
|
*/
|
|
6574
|
-
|
|
7109
|
+
greaterThan?: any;
|
|
6575
7110
|
/**
|
|
6576
7111
|
*
|
|
6577
|
-
* @type {
|
|
6578
|
-
* @memberof
|
|
7112
|
+
* @type {any}
|
|
7113
|
+
* @memberof InviteLinkSearchInputDTO
|
|
6579
7114
|
*/
|
|
6580
|
-
|
|
7115
|
+
lessThan?: any;
|
|
6581
7116
|
/**
|
|
6582
7117
|
*
|
|
6583
|
-
* @type {
|
|
6584
|
-
* @memberof
|
|
7118
|
+
* @type {number}
|
|
7119
|
+
* @memberof InviteLinkSearchInputDTO
|
|
6585
7120
|
*/
|
|
6586
|
-
|
|
7121
|
+
page?: number;
|
|
6587
7122
|
/**
|
|
6588
7123
|
*
|
|
6589
|
-
* @type {
|
|
6590
|
-
* @memberof
|
|
7124
|
+
* @type {number}
|
|
7125
|
+
* @memberof InviteLinkSearchInputDTO
|
|
6591
7126
|
*/
|
|
6592
|
-
|
|
6593
|
-
}
|
|
6594
|
-
/**
|
|
6595
|
-
*
|
|
6596
|
-
* @export
|
|
6597
|
-
* @interface InviteCreateDTO
|
|
6598
|
-
*/
|
|
6599
|
-
export interface InviteCreateDTO {
|
|
7127
|
+
limit?: number;
|
|
6600
7128
|
/**
|
|
6601
7129
|
*
|
|
6602
7130
|
* @type {string}
|
|
6603
|
-
* @memberof
|
|
7131
|
+
* @memberof InviteLinkSearchInputDTO
|
|
6604
7132
|
*/
|
|
6605
|
-
|
|
7133
|
+
sortDirection?: InviteLinkSearchInputDTOSortDirectionEnum;
|
|
7134
|
+
/**
|
|
7135
|
+
*
|
|
7136
|
+
* @type {Array<string>}
|
|
7137
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7138
|
+
*/
|
|
7139
|
+
extend?: Array<string>;
|
|
6606
7140
|
}
|
|
7141
|
+
export declare const InviteLinkSearchInputDTOSortDirectionEnum: {
|
|
7142
|
+
readonly Asc: "asc";
|
|
7143
|
+
readonly Desc: "desc";
|
|
7144
|
+
};
|
|
7145
|
+
export type InviteLinkSearchInputDTOSortDirectionEnum = (typeof InviteLinkSearchInputDTOSortDirectionEnum)[keyof typeof InviteLinkSearchInputDTOSortDirectionEnum];
|
|
6607
7146
|
/**
|
|
6608
7147
|
*
|
|
6609
7148
|
* @export
|
|
6610
|
-
* @interface
|
|
7149
|
+
* @interface RedeemInputDTO
|
|
6611
7150
|
*/
|
|
6612
|
-
export interface
|
|
6613
|
-
/**
|
|
6614
|
-
*
|
|
6615
|
-
* @type {string}
|
|
6616
|
-
* @memberof InviteOutputDTO
|
|
6617
|
-
*/
|
|
6618
|
-
botInvite: string;
|
|
7151
|
+
export interface RedeemInputDTO {
|
|
6619
7152
|
/**
|
|
6620
7153
|
*
|
|
6621
7154
|
* @type {string}
|
|
6622
|
-
* @memberof
|
|
7155
|
+
* @memberof RedeemInputDTO
|
|
6623
7156
|
*/
|
|
6624
|
-
|
|
7157
|
+
token: string;
|
|
6625
7158
|
}
|
|
6626
7159
|
/**
|
|
6627
7160
|
*
|
|
@@ -7345,7 +7878,7 @@ export interface MeOutputDTO {
|
|
|
7345
7878
|
* @type {UserOutputWithRolesDTO}
|
|
7346
7879
|
* @memberof MeOutputDTO
|
|
7347
7880
|
*/
|
|
7348
|
-
user
|
|
7881
|
+
user?: UserOutputWithRolesDTO;
|
|
7349
7882
|
/**
|
|
7350
7883
|
*
|
|
7351
7884
|
* @type {Array<DomainOutputDTO>}
|
|
@@ -7357,7 +7890,7 @@ export interface MeOutputDTO {
|
|
|
7357
7890
|
* @type {string}
|
|
7358
7891
|
* @memberof MeOutputDTO
|
|
7359
7892
|
*/
|
|
7360
|
-
domain
|
|
7893
|
+
domain?: string;
|
|
7361
7894
|
/**
|
|
7362
7895
|
*
|
|
7363
7896
|
* @type {PlayerOutputWithRolesDTO}
|
|
@@ -12545,7 +13078,7 @@ export interface RoleUpdateInputDTO {
|
|
|
12545
13078
|
* @type {string}
|
|
12546
13079
|
* @memberof RoleUpdateInputDTO
|
|
12547
13080
|
*/
|
|
12548
|
-
linkedDiscordRoleId?: string;
|
|
13081
|
+
linkedDiscordRoleId?: string | null;
|
|
12549
13082
|
}
|
|
12550
13083
|
/**
|
|
12551
13084
|
*
|
|
@@ -13739,6 +14272,25 @@ export interface ShopDeadStockItemDTO {
|
|
|
13739
14272
|
*/
|
|
13740
14273
|
daysSinceLastSale?: number;
|
|
13741
14274
|
}
|
|
14275
|
+
/**
|
|
14276
|
+
*
|
|
14277
|
+
* @export
|
|
14278
|
+
* @interface ShopImportFailureDTO
|
|
14279
|
+
*/
|
|
14280
|
+
export interface ShopImportFailureDTO {
|
|
14281
|
+
/**
|
|
14282
|
+
*
|
|
14283
|
+
* @type {string}
|
|
14284
|
+
* @memberof ShopImportFailureDTO
|
|
14285
|
+
*/
|
|
14286
|
+
name: string;
|
|
14287
|
+
/**
|
|
14288
|
+
*
|
|
14289
|
+
* @type {string}
|
|
14290
|
+
* @memberof ShopImportFailureDTO
|
|
14291
|
+
*/
|
|
14292
|
+
reason: string;
|
|
14293
|
+
}
|
|
13742
14294
|
/**
|
|
13743
14295
|
*
|
|
13744
14296
|
* @export
|
|
@@ -13764,6 +14316,44 @@ export interface ShopImportOptions {
|
|
|
13764
14316
|
*/
|
|
13765
14317
|
gameServerId: string;
|
|
13766
14318
|
}
|
|
14319
|
+
/**
|
|
14320
|
+
*
|
|
14321
|
+
* @export
|
|
14322
|
+
* @interface ShopImportResultDTO
|
|
14323
|
+
*/
|
|
14324
|
+
export interface ShopImportResultDTO {
|
|
14325
|
+
/**
|
|
14326
|
+
*
|
|
14327
|
+
* @type {number}
|
|
14328
|
+
* @memberof ShopImportResultDTO
|
|
14329
|
+
*/
|
|
14330
|
+
imported: number;
|
|
14331
|
+
/**
|
|
14332
|
+
*
|
|
14333
|
+
* @type {Array<ShopImportFailureDTO>}
|
|
14334
|
+
* @memberof ShopImportResultDTO
|
|
14335
|
+
*/
|
|
14336
|
+
failed: Array<ShopImportFailureDTO>;
|
|
14337
|
+
}
|
|
14338
|
+
/**
|
|
14339
|
+
*
|
|
14340
|
+
* @export
|
|
14341
|
+
* @interface ShopImportResultDTOAPI
|
|
14342
|
+
*/
|
|
14343
|
+
export interface ShopImportResultDTOAPI {
|
|
14344
|
+
/**
|
|
14345
|
+
*
|
|
14346
|
+
* @type {ShopImportResultDTO}
|
|
14347
|
+
* @memberof ShopImportResultDTOAPI
|
|
14348
|
+
*/
|
|
14349
|
+
data: ShopImportResultDTO;
|
|
14350
|
+
/**
|
|
14351
|
+
*
|
|
14352
|
+
* @type {MetadataOutput}
|
|
14353
|
+
* @memberof ShopImportResultDTOAPI
|
|
14354
|
+
*/
|
|
14355
|
+
meta: MetadataOutput;
|
|
14356
|
+
}
|
|
13767
14357
|
/**
|
|
13768
14358
|
*
|
|
13769
14359
|
* @export
|
|
@@ -14884,7 +15474,176 @@ export interface SmallModuleVersionOutputDTO {
|
|
|
14884
15474
|
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
14885
15475
|
* @memberof SmallModuleVersionOutputDTO
|
|
14886
15476
|
*/
|
|
14887
|
-
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
15477
|
+
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
15478
|
+
}
|
|
15479
|
+
/**
|
|
15480
|
+
*
|
|
15481
|
+
* @export
|
|
15482
|
+
* @interface StorefrontConfigCreateDTO
|
|
15483
|
+
*/
|
|
15484
|
+
export interface StorefrontConfigCreateDTO {
|
|
15485
|
+
/**
|
|
15486
|
+
*
|
|
15487
|
+
* @type {string}
|
|
15488
|
+
* @memberof StorefrontConfigCreateDTO
|
|
15489
|
+
*/
|
|
15490
|
+
gameServerId: string;
|
|
15491
|
+
/**
|
|
15492
|
+
*
|
|
15493
|
+
* @type {string}
|
|
15494
|
+
* @memberof StorefrontConfigCreateDTO
|
|
15495
|
+
*/
|
|
15496
|
+
templateId: string;
|
|
15497
|
+
/**
|
|
15498
|
+
*
|
|
15499
|
+
* @type {object}
|
|
15500
|
+
* @memberof StorefrontConfigCreateDTO
|
|
15501
|
+
*/
|
|
15502
|
+
values?: object;
|
|
15503
|
+
}
|
|
15504
|
+
/**
|
|
15505
|
+
*
|
|
15506
|
+
* @export
|
|
15507
|
+
* @interface StorefrontConfigOutputDTO
|
|
15508
|
+
*/
|
|
15509
|
+
export interface StorefrontConfigOutputDTO {
|
|
15510
|
+
/**
|
|
15511
|
+
*
|
|
15512
|
+
* @type {string}
|
|
15513
|
+
* @memberof StorefrontConfigOutputDTO
|
|
15514
|
+
*/
|
|
15515
|
+
gameServerId: string;
|
|
15516
|
+
/**
|
|
15517
|
+
*
|
|
15518
|
+
* @type {string}
|
|
15519
|
+
* @memberof StorefrontConfigOutputDTO
|
|
15520
|
+
*/
|
|
15521
|
+
templateId: string;
|
|
15522
|
+
/**
|
|
15523
|
+
*
|
|
15524
|
+
* @type {object}
|
|
15525
|
+
* @memberof StorefrontConfigOutputDTO
|
|
15526
|
+
*/
|
|
15527
|
+
values: object;
|
|
15528
|
+
/**
|
|
15529
|
+
*
|
|
15530
|
+
* @type {string}
|
|
15531
|
+
* @memberof StorefrontConfigOutputDTO
|
|
15532
|
+
*/
|
|
15533
|
+
id: string;
|
|
15534
|
+
/**
|
|
15535
|
+
*
|
|
15536
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
15537
|
+
* @memberof StorefrontConfigOutputDTO
|
|
15538
|
+
*/
|
|
15539
|
+
createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
15540
|
+
/**
|
|
15541
|
+
*
|
|
15542
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
15543
|
+
* @memberof StorefrontConfigOutputDTO
|
|
15544
|
+
*/
|
|
15545
|
+
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
15546
|
+
}
|
|
15547
|
+
/**
|
|
15548
|
+
*
|
|
15549
|
+
* @export
|
|
15550
|
+
* @interface StorefrontConfigUpdateDTO
|
|
15551
|
+
*/
|
|
15552
|
+
export interface StorefrontConfigUpdateDTO {
|
|
15553
|
+
/**
|
|
15554
|
+
*
|
|
15555
|
+
* @type {string}
|
|
15556
|
+
* @memberof StorefrontConfigUpdateDTO
|
|
15557
|
+
*/
|
|
15558
|
+
templateId?: string;
|
|
15559
|
+
/**
|
|
15560
|
+
*
|
|
15561
|
+
* @type {object}
|
|
15562
|
+
* @memberof StorefrontConfigUpdateDTO
|
|
15563
|
+
*/
|
|
15564
|
+
values?: object;
|
|
15565
|
+
}
|
|
15566
|
+
/**
|
|
15567
|
+
*
|
|
15568
|
+
* @export
|
|
15569
|
+
* @interface StorefrontConfigUpsertBody
|
|
15570
|
+
*/
|
|
15571
|
+
export interface StorefrontConfigUpsertBody {
|
|
15572
|
+
/**
|
|
15573
|
+
*
|
|
15574
|
+
* @type {string}
|
|
15575
|
+
* @memberof StorefrontConfigUpsertBody
|
|
15576
|
+
*/
|
|
15577
|
+
templateId: string;
|
|
15578
|
+
/**
|
|
15579
|
+
*
|
|
15580
|
+
* @type {object}
|
|
15581
|
+
* @memberof StorefrontConfigUpsertBody
|
|
15582
|
+
*/
|
|
15583
|
+
values: object;
|
|
15584
|
+
}
|
|
15585
|
+
/**
|
|
15586
|
+
*
|
|
15587
|
+
* @export
|
|
15588
|
+
* @interface StorefrontConfigUpsertDTO
|
|
15589
|
+
*/
|
|
15590
|
+
export interface StorefrontConfigUpsertDTO {
|
|
15591
|
+
/**
|
|
15592
|
+
*
|
|
15593
|
+
* @type {string}
|
|
15594
|
+
* @memberof StorefrontConfigUpsertDTO
|
|
15595
|
+
*/
|
|
15596
|
+
templateId: string;
|
|
15597
|
+
/**
|
|
15598
|
+
*
|
|
15599
|
+
* @type {object}
|
|
15600
|
+
* @memberof StorefrontConfigUpsertDTO
|
|
15601
|
+
*/
|
|
15602
|
+
values: object;
|
|
15603
|
+
}
|
|
15604
|
+
/**
|
|
15605
|
+
*
|
|
15606
|
+
* @export
|
|
15607
|
+
* @interface StorefrontTemplateDTO
|
|
15608
|
+
*/
|
|
15609
|
+
export interface StorefrontTemplateDTO {
|
|
15610
|
+
/**
|
|
15611
|
+
*
|
|
15612
|
+
* @type {string}
|
|
15613
|
+
* @memberof StorefrontTemplateDTO
|
|
15614
|
+
*/
|
|
15615
|
+
id: string;
|
|
15616
|
+
/**
|
|
15617
|
+
*
|
|
15618
|
+
* @type {string}
|
|
15619
|
+
* @memberof StorefrontTemplateDTO
|
|
15620
|
+
*/
|
|
15621
|
+
name: string;
|
|
15622
|
+
/**
|
|
15623
|
+
*
|
|
15624
|
+
* @type {object}
|
|
15625
|
+
* @memberof StorefrontTemplateDTO
|
|
15626
|
+
*/
|
|
15627
|
+
schema: object;
|
|
15628
|
+
}
|
|
15629
|
+
/**
|
|
15630
|
+
*
|
|
15631
|
+
* @export
|
|
15632
|
+
* @interface StorefrontTemplateOutputArrayDTOAPI
|
|
15633
|
+
*/
|
|
15634
|
+
export interface StorefrontTemplateOutputArrayDTOAPI {
|
|
15635
|
+
/**
|
|
15636
|
+
*
|
|
15637
|
+
* @type {Array<StorefrontTemplateDTO>}
|
|
15638
|
+
* @memberof StorefrontTemplateOutputArrayDTOAPI
|
|
15639
|
+
*/
|
|
15640
|
+
data: Array<StorefrontTemplateDTO>;
|
|
15641
|
+
/**
|
|
15642
|
+
*
|
|
15643
|
+
* @type {MetadataOutput}
|
|
15644
|
+
* @memberof StorefrontTemplateOutputArrayDTOAPI
|
|
15645
|
+
*/
|
|
15646
|
+
meta: MetadataOutput;
|
|
14888
15647
|
}
|
|
14889
15648
|
/**
|
|
14890
15649
|
*
|
|
@@ -16485,6 +17244,38 @@ export interface UserAssignmentOutputDTO {
|
|
|
16485
17244
|
*/
|
|
16486
17245
|
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
16487
17246
|
}
|
|
17247
|
+
/**
|
|
17248
|
+
*
|
|
17249
|
+
* @export
|
|
17250
|
+
* @interface UserCountOutputDTO
|
|
17251
|
+
*/
|
|
17252
|
+
export interface UserCountOutputDTO {
|
|
17253
|
+
/**
|
|
17254
|
+
*
|
|
17255
|
+
* @type {number}
|
|
17256
|
+
* @memberof UserCountOutputDTO
|
|
17257
|
+
*/
|
|
17258
|
+
count: number;
|
|
17259
|
+
}
|
|
17260
|
+
/**
|
|
17261
|
+
*
|
|
17262
|
+
* @export
|
|
17263
|
+
* @interface UserCountOutputDTOAPI
|
|
17264
|
+
*/
|
|
17265
|
+
export interface UserCountOutputDTOAPI {
|
|
17266
|
+
/**
|
|
17267
|
+
*
|
|
17268
|
+
* @type {UserCountOutputDTO}
|
|
17269
|
+
* @memberof UserCountOutputDTOAPI
|
|
17270
|
+
*/
|
|
17271
|
+
data: UserCountOutputDTO;
|
|
17272
|
+
/**
|
|
17273
|
+
*
|
|
17274
|
+
* @type {MetadataOutput}
|
|
17275
|
+
* @memberof UserCountOutputDTOAPI
|
|
17276
|
+
*/
|
|
17277
|
+
meta: MetadataOutput;
|
|
17278
|
+
}
|
|
16488
17279
|
/**
|
|
16489
17280
|
*
|
|
16490
17281
|
* @export
|
|
@@ -16632,6 +17423,12 @@ export interface UserOutputDTO {
|
|
|
16632
17423
|
* @memberof UserOutputDTO
|
|
16633
17424
|
*/
|
|
16634
17425
|
isDashboardUser: boolean;
|
|
17426
|
+
/**
|
|
17427
|
+
*
|
|
17428
|
+
* @type {boolean}
|
|
17429
|
+
* @memberof UserOutputDTO
|
|
17430
|
+
*/
|
|
17431
|
+
isSupportAccount: boolean;
|
|
16635
17432
|
/**
|
|
16636
17433
|
*
|
|
16637
17434
|
* @type {string}
|
|
@@ -16650,6 +17447,12 @@ export interface UserOutputDTO {
|
|
|
16650
17447
|
* @memberof UserOutputDTO
|
|
16651
17448
|
*/
|
|
16652
17449
|
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
17450
|
+
/**
|
|
17451
|
+
*
|
|
17452
|
+
* @type {string}
|
|
17453
|
+
* @memberof UserOutputDTO
|
|
17454
|
+
*/
|
|
17455
|
+
inviteLinkId?: string;
|
|
16653
17456
|
}
|
|
16654
17457
|
/**
|
|
16655
17458
|
*
|
|
@@ -16748,6 +17551,37 @@ export interface UserOutputWithRolesDTO {
|
|
|
16748
17551
|
* @memberof UserOutputWithRolesDTO
|
|
16749
17552
|
*/
|
|
16750
17553
|
isDashboardUser: boolean;
|
|
17554
|
+
/**
|
|
17555
|
+
*
|
|
17556
|
+
* @type {boolean}
|
|
17557
|
+
* @memberof UserOutputWithRolesDTO
|
|
17558
|
+
*/
|
|
17559
|
+
isSupportAccount: boolean;
|
|
17560
|
+
/**
|
|
17561
|
+
*
|
|
17562
|
+
* @type {string}
|
|
17563
|
+
* @memberof UserOutputWithRolesDTO
|
|
17564
|
+
*/
|
|
17565
|
+
inviteLinkId?: string;
|
|
17566
|
+
}
|
|
17567
|
+
/**
|
|
17568
|
+
*
|
|
17569
|
+
* @export
|
|
17570
|
+
* @interface UserOutputWithRolesDTOAPI
|
|
17571
|
+
*/
|
|
17572
|
+
export interface UserOutputWithRolesDTOAPI {
|
|
17573
|
+
/**
|
|
17574
|
+
*
|
|
17575
|
+
* @type {UserOutputWithRolesDTO}
|
|
17576
|
+
* @memberof UserOutputWithRolesDTOAPI
|
|
17577
|
+
*/
|
|
17578
|
+
data: UserOutputWithRolesDTO;
|
|
17579
|
+
/**
|
|
17580
|
+
*
|
|
17581
|
+
* @type {MetadataOutput}
|
|
17582
|
+
* @memberof UserOutputWithRolesDTOAPI
|
|
17583
|
+
*/
|
|
17584
|
+
meta: MetadataOutput;
|
|
16751
17585
|
}
|
|
16752
17586
|
/**
|
|
16753
17587
|
*
|
|
@@ -17417,7 +18251,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
17417
18251
|
*/
|
|
17418
18252
|
analyticsControllerGetModerationTimeseries: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17419
18253
|
/**
|
|
17420
|
-
* Normalized 0-1 scores across
|
|
18254
|
+
* Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
|
|
17421
18255
|
* @summary Get module health scores
|
|
17422
18256
|
* @param {string} [startDate]
|
|
17423
18257
|
* @param {string} [endDate]
|
|
@@ -17650,7 +18484,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
17650
18484
|
analyticsControllerGetTopListings: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17651
18485
|
/**
|
|
17652
18486
|
* Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
|
|
17653
|
-
* @summary Get top modules by
|
|
18487
|
+
* @summary Get top modules by execution volume
|
|
17654
18488
|
* @param {string} [startDate]
|
|
17655
18489
|
* @param {string} [endDate]
|
|
17656
18490
|
* @param {string} [gameServerId]
|
|
@@ -17806,7 +18640,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
17806
18640
|
*/
|
|
17807
18641
|
analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModerationDailyPointDTOAPI>>;
|
|
17808
18642
|
/**
|
|
17809
|
-
* Normalized 0-1 scores across
|
|
18643
|
+
* Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
|
|
17810
18644
|
* @summary Get module health scores
|
|
17811
18645
|
* @param {string} [startDate]
|
|
17812
18646
|
* @param {string} [endDate]
|
|
@@ -18039,7 +18873,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
18039
18873
|
analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopTopListingDTOAPI>>;
|
|
18040
18874
|
/**
|
|
18041
18875
|
* Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
|
|
18042
|
-
* @summary Get top modules by
|
|
18876
|
+
* @summary Get top modules by execution volume
|
|
18043
18877
|
* @param {string} [startDate]
|
|
18044
18878
|
* @param {string} [endDate]
|
|
18045
18879
|
* @param {string} [gameServerId]
|
|
@@ -18195,7 +19029,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
|
|
|
18195
19029
|
*/
|
|
18196
19030
|
analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ModerationDailyPointDTOAPI>;
|
|
18197
19031
|
/**
|
|
18198
|
-
* Normalized 0-1 scores across
|
|
19032
|
+
* Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
|
|
18199
19033
|
* @summary Get module health scores
|
|
18200
19034
|
* @param {string} [startDate]
|
|
18201
19035
|
* @param {string} [endDate]
|
|
@@ -18428,7 +19262,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
|
|
|
18428
19262
|
analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ShopTopListingDTOAPI>;
|
|
18429
19263
|
/**
|
|
18430
19264
|
* Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
|
|
18431
|
-
* @summary Get top modules by
|
|
19265
|
+
* @summary Get top modules by execution volume
|
|
18432
19266
|
* @param {string} [startDate]
|
|
18433
19267
|
* @param {string} [endDate]
|
|
18434
19268
|
* @param {string} [gameServerId]
|
|
@@ -18598,7 +19432,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
18598
19432
|
*/
|
|
18599
19433
|
analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModerationDailyPointDTOAPI, any>>;
|
|
18600
19434
|
/**
|
|
18601
|
-
* Normalized 0-1 scores across
|
|
19435
|
+
* Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
|
|
18602
19436
|
* @summary Get module health scores
|
|
18603
19437
|
* @param {string} [startDate]
|
|
18604
19438
|
* @param {string} [endDate]
|
|
@@ -18852,7 +19686,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
18852
19686
|
analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopTopListingDTOAPI, any>>;
|
|
18853
19687
|
/**
|
|
18854
19688
|
* Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
|
|
18855
|
-
* @summary Get top modules by
|
|
19689
|
+
* @summary Get top modules by execution volume
|
|
18856
19690
|
* @param {string} [startDate]
|
|
18857
19691
|
* @param {string} [endDate]
|
|
18858
19692
|
* @param {string} [gameServerId]
|
|
@@ -25354,7 +26188,7 @@ export declare const ShopListingApiFp: (configuration?: Configuration) => {
|
|
|
25354
26188
|
* @param {*} [options] Override http request option.
|
|
25355
26189
|
* @throws {RequiredError}
|
|
25356
26190
|
*/
|
|
25357
|
-
shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
26191
|
+
shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopImportResultDTOAPI>>;
|
|
25358
26192
|
/**
|
|
25359
26193
|
* Search shop listings<br> OperationId: `ShopListingControllerSearch`
|
|
25360
26194
|
* @summary Search
|
|
@@ -25408,7 +26242,7 @@ export declare const ShopListingApiFactory: (configuration?: Configuration, base
|
|
|
25408
26242
|
* @param {*} [options] Override http request option.
|
|
25409
26243
|
* @throws {RequiredError}
|
|
25410
26244
|
*/
|
|
25411
|
-
shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
26245
|
+
shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<ShopImportResultDTOAPI>;
|
|
25412
26246
|
/**
|
|
25413
26247
|
* Search shop listings<br> OperationId: `ShopListingControllerSearch`
|
|
25414
26248
|
* @summary Search
|
|
@@ -25468,7 +26302,7 @@ export declare class ShopListingApi extends BaseAPI {
|
|
|
25468
26302
|
* @throws {RequiredError}
|
|
25469
26303
|
* @memberof ShopListingApi
|
|
25470
26304
|
*/
|
|
25471
|
-
shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
26305
|
+
shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopImportResultDTOAPI, any>>;
|
|
25472
26306
|
/**
|
|
25473
26307
|
* Search shop listings<br> OperationId: `ShopListingControllerSearch`
|
|
25474
26308
|
* @summary Search
|
|
@@ -25680,6 +26514,131 @@ export declare class ShopOrderApi extends BaseAPI {
|
|
|
25680
26514
|
*/
|
|
25681
26515
|
shopOrderControllerSearch(shopOrderSearchInputDTO?: ShopOrderSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopOrderOutputArrayDTOAPI, any>>;
|
|
25682
26516
|
}
|
|
26517
|
+
/**
|
|
26518
|
+
* StorefrontConfigApi - axios parameter creator
|
|
26519
|
+
* @export
|
|
26520
|
+
*/
|
|
26521
|
+
export declare const StorefrontConfigApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
26522
|
+
/**
|
|
26523
|
+
* Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
|
|
26524
|
+
* @summary Get effective config
|
|
26525
|
+
* @param {string} gameServerId
|
|
26526
|
+
* @param {*} [options] Override http request option.
|
|
26527
|
+
* @throws {RequiredError}
|
|
26528
|
+
*/
|
|
26529
|
+
storefrontConfigControllerGetEffectiveConfig: (gameServerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
26530
|
+
/**
|
|
26531
|
+
* List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
|
|
26532
|
+
* @summary List templates
|
|
26533
|
+
* @param {*} [options] Override http request option.
|
|
26534
|
+
* @throws {RequiredError}
|
|
26535
|
+
*/
|
|
26536
|
+
storefrontConfigControllerListTemplates: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
26537
|
+
/**
|
|
26538
|
+
* 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`
|
|
26539
|
+
* @summary Set config
|
|
26540
|
+
* @param {string} gameServerId
|
|
26541
|
+
* @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
|
|
26542
|
+
* @param {*} [options] Override http request option.
|
|
26543
|
+
* @throws {RequiredError}
|
|
26544
|
+
*/
|
|
26545
|
+
storefrontConfigControllerSetConfig: (gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
26546
|
+
};
|
|
26547
|
+
/**
|
|
26548
|
+
* StorefrontConfigApi - functional programming interface
|
|
26549
|
+
* @export
|
|
26550
|
+
*/
|
|
26551
|
+
export declare const StorefrontConfigApiFp: (configuration?: Configuration) => {
|
|
26552
|
+
/**
|
|
26553
|
+
* Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
|
|
26554
|
+
* @summary Get effective config
|
|
26555
|
+
* @param {string} gameServerId
|
|
26556
|
+
* @param {*} [options] Override http request option.
|
|
26557
|
+
* @throws {RequiredError}
|
|
26558
|
+
*/
|
|
26559
|
+
storefrontConfigControllerGetEffectiveConfig(gameServerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>>;
|
|
26560
|
+
/**
|
|
26561
|
+
* List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
|
|
26562
|
+
* @summary List templates
|
|
26563
|
+
* @param {*} [options] Override http request option.
|
|
26564
|
+
* @throws {RequiredError}
|
|
26565
|
+
*/
|
|
26566
|
+
storefrontConfigControllerListTemplates(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StorefrontTemplateOutputArrayDTOAPI>>;
|
|
26567
|
+
/**
|
|
26568
|
+
* 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`
|
|
26569
|
+
* @summary Set config
|
|
26570
|
+
* @param {string} gameServerId
|
|
26571
|
+
* @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
|
|
26572
|
+
* @param {*} [options] Override http request option.
|
|
26573
|
+
* @throws {RequiredError}
|
|
26574
|
+
*/
|
|
26575
|
+
storefrontConfigControllerSetConfig(gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>>;
|
|
26576
|
+
};
|
|
26577
|
+
/**
|
|
26578
|
+
* StorefrontConfigApi - factory interface
|
|
26579
|
+
* @export
|
|
26580
|
+
*/
|
|
26581
|
+
export declare const StorefrontConfigApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
26582
|
+
/**
|
|
26583
|
+
* Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
|
|
26584
|
+
* @summary Get effective config
|
|
26585
|
+
* @param {string} gameServerId
|
|
26586
|
+
* @param {*} [options] Override http request option.
|
|
26587
|
+
* @throws {RequiredError}
|
|
26588
|
+
*/
|
|
26589
|
+
storefrontConfigControllerGetEffectiveConfig(gameServerId: string, options?: RawAxiosRequestConfig): AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>;
|
|
26590
|
+
/**
|
|
26591
|
+
* List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
|
|
26592
|
+
* @summary List templates
|
|
26593
|
+
* @param {*} [options] Override http request option.
|
|
26594
|
+
* @throws {RequiredError}
|
|
26595
|
+
*/
|
|
26596
|
+
storefrontConfigControllerListTemplates(options?: RawAxiosRequestConfig): AxiosPromise<StorefrontTemplateOutputArrayDTOAPI>;
|
|
26597
|
+
/**
|
|
26598
|
+
* 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`
|
|
26599
|
+
* @summary Set config
|
|
26600
|
+
* @param {string} gameServerId
|
|
26601
|
+
* @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
|
|
26602
|
+
* @param {*} [options] Override http request option.
|
|
26603
|
+
* @throws {RequiredError}
|
|
26604
|
+
*/
|
|
26605
|
+
storefrontConfigControllerSetConfig(gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig): AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>;
|
|
26606
|
+
};
|
|
26607
|
+
/**
|
|
26608
|
+
* StorefrontConfigApi - object-oriented interface
|
|
26609
|
+
* @export
|
|
26610
|
+
* @class StorefrontConfigApi
|
|
26611
|
+
* @extends {BaseAPI}
|
|
26612
|
+
*/
|
|
26613
|
+
export declare class StorefrontConfigApi extends BaseAPI {
|
|
26614
|
+
/**
|
|
26615
|
+
* Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
|
|
26616
|
+
* @summary Get effective config
|
|
26617
|
+
* @param {string} gameServerId
|
|
26618
|
+
* @param {*} [options] Override http request option.
|
|
26619
|
+
* @throws {RequiredError}
|
|
26620
|
+
* @memberof StorefrontConfigApi
|
|
26621
|
+
*/
|
|
26622
|
+
storefrontConfigControllerGetEffectiveConfig(gameServerId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EffectiveStorefrontConfigOutputDTOAPI, any>>;
|
|
26623
|
+
/**
|
|
26624
|
+
* List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
|
|
26625
|
+
* @summary List templates
|
|
26626
|
+
* @param {*} [options] Override http request option.
|
|
26627
|
+
* @throws {RequiredError}
|
|
26628
|
+
* @memberof StorefrontConfigApi
|
|
26629
|
+
*/
|
|
26630
|
+
storefrontConfigControllerListTemplates(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StorefrontTemplateOutputArrayDTOAPI, any>>;
|
|
26631
|
+
/**
|
|
26632
|
+
* 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`
|
|
26633
|
+
* @summary Set config
|
|
26634
|
+
* @param {string} gameServerId
|
|
26635
|
+
* @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
|
|
26636
|
+
* @param {*} [options] Override http request option.
|
|
26637
|
+
* @throws {RequiredError}
|
|
26638
|
+
* @memberof StorefrontConfigApi
|
|
26639
|
+
*/
|
|
26640
|
+
storefrontConfigControllerSetConfig(gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EffectiveStorefrontConfigOutputDTOAPI, any>>;
|
|
26641
|
+
}
|
|
25683
26642
|
/**
|
|
25684
26643
|
* TrackingApi - axios parameter creator
|
|
25685
26644
|
* @export
|
|
@@ -25886,6 +26845,13 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
25886
26845
|
* @throws {RequiredError}
|
|
25887
26846
|
*/
|
|
25888
26847
|
userControllerAssignRole: (id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
26848
|
+
/**
|
|
26849
|
+
* Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
|
|
26850
|
+
* @summary Count billable dashboard users
|
|
26851
|
+
* @param {*} [options] Override http request option.
|
|
26852
|
+
* @throws {RequiredError}
|
|
26853
|
+
*/
|
|
26854
|
+
userControllerCountBillableDashboardUsers: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25889
26855
|
/**
|
|
25890
26856
|
* Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
|
|
25891
26857
|
* @summary Create
|
|
@@ -26005,6 +26971,13 @@ export declare const UserApiFp: (configuration?: Configuration) => {
|
|
|
26005
26971
|
* @throws {RequiredError}
|
|
26006
26972
|
*/
|
|
26007
26973
|
userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
|
|
26974
|
+
/**
|
|
26975
|
+
* Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
|
|
26976
|
+
* @summary Count billable dashboard users
|
|
26977
|
+
* @param {*} [options] Override http request option.
|
|
26978
|
+
* @throws {RequiredError}
|
|
26979
|
+
*/
|
|
26980
|
+
userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserCountOutputDTOAPI>>;
|
|
26008
26981
|
/**
|
|
26009
26982
|
* Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
|
|
26010
26983
|
* @summary Create
|
|
@@ -26124,6 +27097,13 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
|
|
|
26124
27097
|
* @throws {RequiredError}
|
|
26125
27098
|
*/
|
|
26126
27099
|
userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
|
|
27100
|
+
/**
|
|
27101
|
+
* Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
|
|
27102
|
+
* @summary Count billable dashboard users
|
|
27103
|
+
* @param {*} [options] Override http request option.
|
|
27104
|
+
* @throws {RequiredError}
|
|
27105
|
+
*/
|
|
27106
|
+
userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): AxiosPromise<UserCountOutputDTOAPI>;
|
|
26127
27107
|
/**
|
|
26128
27108
|
* Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
|
|
26129
27109
|
* @summary Create
|
|
@@ -26246,6 +27226,14 @@ export declare class UserApi extends BaseAPI {
|
|
|
26246
27226
|
* @memberof UserApi
|
|
26247
27227
|
*/
|
|
26248
27228
|
userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
|
|
27229
|
+
/**
|
|
27230
|
+
* Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
|
|
27231
|
+
* @summary Count billable dashboard users
|
|
27232
|
+
* @param {*} [options] Override http request option.
|
|
27233
|
+
* @throws {RequiredError}
|
|
27234
|
+
* @memberof UserApi
|
|
27235
|
+
*/
|
|
27236
|
+
userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserCountOutputDTOAPI, any>>;
|
|
26249
27237
|
/**
|
|
26250
27238
|
* Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
|
|
26251
27239
|
* @summary Create
|
|
@@ -26558,4 +27546,195 @@ export declare class VariableApi extends BaseAPI {
|
|
|
26558
27546
|
*/
|
|
26559
27547
|
variableControllerUpdate(id: string, variableUpdateDTO?: VariableUpdateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VariableOutputDTOAPI, any>>;
|
|
26560
27548
|
}
|
|
27549
|
+
/**
|
|
27550
|
+
* InviteLinkApi - axios parameter creator
|
|
27551
|
+
* @export
|
|
27552
|
+
*/
|
|
27553
|
+
export declare const InviteLinkApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
27554
|
+
/**
|
|
27555
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
|
|
27556
|
+
* @summary Create invite link
|
|
27557
|
+
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
27558
|
+
* @param {*} [options] Override http request option.
|
|
27559
|
+
* @throws {RequiredError}
|
|
27560
|
+
*/
|
|
27561
|
+
inviteLinkControllerCreate: (inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27562
|
+
/**
|
|
27563
|
+
* <br> OperationId: `InviteLinkControllerPreview`
|
|
27564
|
+
* @summary Preview
|
|
27565
|
+
* @param {string} token
|
|
27566
|
+
* @param {*} [options] Override http request option.
|
|
27567
|
+
* @throws {RequiredError}
|
|
27568
|
+
*/
|
|
27569
|
+
inviteLinkControllerPreview: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27570
|
+
/**
|
|
27571
|
+
* <br> OperationId: `InviteLinkControllerRedeem`
|
|
27572
|
+
* @summary Redeem
|
|
27573
|
+
* @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
|
|
27574
|
+
* @param {*} [options] Override http request option.
|
|
27575
|
+
* @throws {RequiredError}
|
|
27576
|
+
*/
|
|
27577
|
+
inviteLinkControllerRedeem: (redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27578
|
+
/**
|
|
27579
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
|
|
27580
|
+
* @summary Revoke
|
|
27581
|
+
* @param {string} id
|
|
27582
|
+
* @param {*} [options] Override http request option.
|
|
27583
|
+
* @throws {RequiredError}
|
|
27584
|
+
*/
|
|
27585
|
+
inviteLinkControllerRevoke: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27586
|
+
/**
|
|
27587
|
+
* Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
|
|
27588
|
+
* @summary Search
|
|
27589
|
+
* @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
|
|
27590
|
+
* @param {*} [options] Override http request option.
|
|
27591
|
+
* @throws {RequiredError}
|
|
27592
|
+
*/
|
|
27593
|
+
inviteLinkControllerSearch: (inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27594
|
+
};
|
|
27595
|
+
/**
|
|
27596
|
+
* InviteLinkApi - functional programming interface
|
|
27597
|
+
* @export
|
|
27598
|
+
*/
|
|
27599
|
+
export declare const InviteLinkApiFp: (configuration?: Configuration) => {
|
|
27600
|
+
/**
|
|
27601
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
|
|
27602
|
+
* @summary Create invite link
|
|
27603
|
+
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
27604
|
+
* @param {*} [options] Override http request option.
|
|
27605
|
+
* @throws {RequiredError}
|
|
27606
|
+
*/
|
|
27607
|
+
inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkCreateResultDTOAPI>>;
|
|
27608
|
+
/**
|
|
27609
|
+
* <br> OperationId: `InviteLinkControllerPreview`
|
|
27610
|
+
* @summary Preview
|
|
27611
|
+
* @param {string} token
|
|
27612
|
+
* @param {*} [options] Override http request option.
|
|
27613
|
+
* @throws {RequiredError}
|
|
27614
|
+
*/
|
|
27615
|
+
inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkPreviewDTOAPI>>;
|
|
27616
|
+
/**
|
|
27617
|
+
* <br> OperationId: `InviteLinkControllerRedeem`
|
|
27618
|
+
* @summary Redeem
|
|
27619
|
+
* @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
|
|
27620
|
+
* @param {*} [options] Override http request option.
|
|
27621
|
+
* @throws {RequiredError}
|
|
27622
|
+
*/
|
|
27623
|
+
inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOutputWithRolesDTOAPI>>;
|
|
27624
|
+
/**
|
|
27625
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
|
|
27626
|
+
* @summary Revoke
|
|
27627
|
+
* @param {string} id
|
|
27628
|
+
* @param {*} [options] Override http request option.
|
|
27629
|
+
* @throws {RequiredError}
|
|
27630
|
+
*/
|
|
27631
|
+
inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
|
|
27632
|
+
/**
|
|
27633
|
+
* Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
|
|
27634
|
+
* @summary Search
|
|
27635
|
+
* @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
|
|
27636
|
+
* @param {*} [options] Override http request option.
|
|
27637
|
+
* @throws {RequiredError}
|
|
27638
|
+
*/
|
|
27639
|
+
inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkOutputArrayDTOAPI>>;
|
|
27640
|
+
};
|
|
27641
|
+
/**
|
|
27642
|
+
* InviteLinkApi - factory interface
|
|
27643
|
+
* @export
|
|
27644
|
+
*/
|
|
27645
|
+
export declare const InviteLinkApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
27646
|
+
/**
|
|
27647
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
|
|
27648
|
+
* @summary Create invite link
|
|
27649
|
+
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
27650
|
+
* @param {*} [options] Override http request option.
|
|
27651
|
+
* @throws {RequiredError}
|
|
27652
|
+
*/
|
|
27653
|
+
inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkCreateResultDTOAPI>;
|
|
27654
|
+
/**
|
|
27655
|
+
* <br> OperationId: `InviteLinkControllerPreview`
|
|
27656
|
+
* @summary Preview
|
|
27657
|
+
* @param {string} token
|
|
27658
|
+
* @param {*} [options] Override http request option.
|
|
27659
|
+
* @throws {RequiredError}
|
|
27660
|
+
*/
|
|
27661
|
+
inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkPreviewDTOAPI>;
|
|
27662
|
+
/**
|
|
27663
|
+
* <br> OperationId: `InviteLinkControllerRedeem`
|
|
27664
|
+
* @summary Redeem
|
|
27665
|
+
* @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
|
|
27666
|
+
* @param {*} [options] Override http request option.
|
|
27667
|
+
* @throws {RequiredError}
|
|
27668
|
+
*/
|
|
27669
|
+
inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputWithRolesDTOAPI>;
|
|
27670
|
+
/**
|
|
27671
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
|
|
27672
|
+
* @summary Revoke
|
|
27673
|
+
* @param {string} id
|
|
27674
|
+
* @param {*} [options] Override http request option.
|
|
27675
|
+
* @throws {RequiredError}
|
|
27676
|
+
*/
|
|
27677
|
+
inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
|
|
27678
|
+
/**
|
|
27679
|
+
* Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
|
|
27680
|
+
* @summary Search
|
|
27681
|
+
* @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
|
|
27682
|
+
* @param {*} [options] Override http request option.
|
|
27683
|
+
* @throws {RequiredError}
|
|
27684
|
+
*/
|
|
27685
|
+
inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkOutputArrayDTOAPI>;
|
|
27686
|
+
};
|
|
27687
|
+
/**
|
|
27688
|
+
* InviteLinkApi - object-oriented interface
|
|
27689
|
+
* @export
|
|
27690
|
+
* @class InviteLinkApi
|
|
27691
|
+
* @extends {BaseAPI}
|
|
27692
|
+
*/
|
|
27693
|
+
export declare class InviteLinkApi extends BaseAPI {
|
|
27694
|
+
/**
|
|
27695
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
|
|
27696
|
+
* @summary Create invite link
|
|
27697
|
+
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
27698
|
+
* @param {*} [options] Override http request option.
|
|
27699
|
+
* @throws {RequiredError}
|
|
27700
|
+
* @memberof InviteLinkApi
|
|
27701
|
+
*/
|
|
27702
|
+
inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkCreateResultDTOAPI, any>>;
|
|
27703
|
+
/**
|
|
27704
|
+
* <br> OperationId: `InviteLinkControllerPreview`
|
|
27705
|
+
* @summary Preview
|
|
27706
|
+
* @param {string} token
|
|
27707
|
+
* @param {*} [options] Override http request option.
|
|
27708
|
+
* @throws {RequiredError}
|
|
27709
|
+
* @memberof InviteLinkApi
|
|
27710
|
+
*/
|
|
27711
|
+
inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkPreviewDTOAPI, any>>;
|
|
27712
|
+
/**
|
|
27713
|
+
* <br> OperationId: `InviteLinkControllerRedeem`
|
|
27714
|
+
* @summary Redeem
|
|
27715
|
+
* @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
|
|
27716
|
+
* @param {*} [options] Override http request option.
|
|
27717
|
+
* @throws {RequiredError}
|
|
27718
|
+
* @memberof InviteLinkApi
|
|
27719
|
+
*/
|
|
27720
|
+
inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserOutputWithRolesDTOAPI, any>>;
|
|
27721
|
+
/**
|
|
27722
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
|
|
27723
|
+
* @summary Revoke
|
|
27724
|
+
* @param {string} id
|
|
27725
|
+
* @param {*} [options] Override http request option.
|
|
27726
|
+
* @throws {RequiredError}
|
|
27727
|
+
* @memberof InviteLinkApi
|
|
27728
|
+
*/
|
|
27729
|
+
inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
|
|
27730
|
+
/**
|
|
27731
|
+
* Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
|
|
27732
|
+
* @summary Search
|
|
27733
|
+
* @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
|
|
27734
|
+
* @param {*} [options] Override http request option.
|
|
27735
|
+
* @throws {RequiredError}
|
|
27736
|
+
* @memberof InviteLinkApi
|
|
27737
|
+
*/
|
|
27738
|
+
inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkOutputArrayDTOAPI, any>>;
|
|
27739
|
+
}
|
|
26561
27740
|
//# sourceMappingURL=api.d.ts.map
|