@takaro/apiclient 0.0.0-dev.318d34c → 0.0.0-dev.31cf8d8
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 +879 -38
- package/dist/generated/api.d.ts.map +1 -1
- package/dist/generated/api.js +441 -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 +1 -1
- package/src/generated/api.ts +1189 -11
- 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";
|
|
@@ -6621,51 +6657,504 @@ export interface InstallModuleDTO {
|
|
|
6621
6657
|
* @type {string}
|
|
6622
6658
|
* @memberof InstallModuleDTO
|
|
6623
6659
|
*/
|
|
6624
|
-
gameServerId: string;
|
|
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
|
|
7046
|
+
*/
|
|
7047
|
+
export interface InviteLinkPreviewRoleDTO {
|
|
7048
|
+
/**
|
|
7049
|
+
*
|
|
7050
|
+
* @type {string}
|
|
7051
|
+
* @memberof InviteLinkPreviewRoleDTO
|
|
7052
|
+
*/
|
|
7053
|
+
id: string;
|
|
7054
|
+
/**
|
|
7055
|
+
*
|
|
7056
|
+
* @type {string}
|
|
7057
|
+
* @memberof InviteLinkPreviewRoleDTO
|
|
7058
|
+
*/
|
|
7059
|
+
name: string;
|
|
7060
|
+
}
|
|
7061
|
+
/**
|
|
7062
|
+
*
|
|
7063
|
+
* @export
|
|
7064
|
+
* @interface InviteLinkRoleDTO
|
|
7065
|
+
*/
|
|
7066
|
+
export interface InviteLinkRoleDTO {
|
|
7067
|
+
/**
|
|
7068
|
+
*
|
|
7069
|
+
* @type {string}
|
|
7070
|
+
* @memberof InviteLinkRoleDTO
|
|
7071
|
+
*/
|
|
7072
|
+
roleId: string;
|
|
7073
|
+
/**
|
|
7074
|
+
*
|
|
7075
|
+
* @type {string}
|
|
7076
|
+
* @memberof InviteLinkRoleDTO
|
|
7077
|
+
*/
|
|
7078
|
+
name: string;
|
|
7079
|
+
}
|
|
7080
|
+
/**
|
|
7081
|
+
*
|
|
7082
|
+
* @export
|
|
7083
|
+
* @interface InviteLinkSearchInputDTO
|
|
7084
|
+
*/
|
|
7085
|
+
export interface InviteLinkSearchInputDTO {
|
|
7086
|
+
/**
|
|
7087
|
+
*
|
|
7088
|
+
* @type {string}
|
|
7089
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7090
|
+
*/
|
|
7091
|
+
sortBy?: string;
|
|
7092
|
+
/**
|
|
7093
|
+
*
|
|
7094
|
+
* @type {any}
|
|
7095
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7096
|
+
*/
|
|
7097
|
+
filters?: any;
|
|
7098
|
+
/**
|
|
7099
|
+
*
|
|
7100
|
+
* @type {any}
|
|
7101
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7102
|
+
*/
|
|
7103
|
+
search?: any;
|
|
7104
|
+
/**
|
|
7105
|
+
*
|
|
7106
|
+
* @type {any}
|
|
7107
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7108
|
+
*/
|
|
7109
|
+
greaterThan?: any;
|
|
7110
|
+
/**
|
|
7111
|
+
*
|
|
7112
|
+
* @type {any}
|
|
7113
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7114
|
+
*/
|
|
7115
|
+
lessThan?: any;
|
|
7116
|
+
/**
|
|
7117
|
+
*
|
|
7118
|
+
* @type {number}
|
|
7119
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7120
|
+
*/
|
|
7121
|
+
page?: number;
|
|
6625
7122
|
/**
|
|
6626
7123
|
*
|
|
6627
|
-
* @type {
|
|
6628
|
-
* @memberof
|
|
7124
|
+
* @type {number}
|
|
7125
|
+
* @memberof InviteLinkSearchInputDTO
|
|
6629
7126
|
*/
|
|
6630
|
-
|
|
7127
|
+
limit?: number;
|
|
6631
7128
|
/**
|
|
6632
7129
|
*
|
|
6633
7130
|
* @type {string}
|
|
6634
|
-
* @memberof
|
|
7131
|
+
* @memberof InviteLinkSearchInputDTO
|
|
6635
7132
|
*/
|
|
6636
|
-
|
|
6637
|
-
}
|
|
6638
|
-
/**
|
|
6639
|
-
*
|
|
6640
|
-
* @export
|
|
6641
|
-
* @interface InviteCreateDTO
|
|
6642
|
-
*/
|
|
6643
|
-
export interface InviteCreateDTO {
|
|
7133
|
+
sortDirection?: InviteLinkSearchInputDTOSortDirectionEnum;
|
|
6644
7134
|
/**
|
|
6645
7135
|
*
|
|
6646
|
-
* @type {string}
|
|
6647
|
-
* @memberof
|
|
7136
|
+
* @type {Array<string>}
|
|
7137
|
+
* @memberof InviteLinkSearchInputDTO
|
|
6648
7138
|
*/
|
|
6649
|
-
|
|
7139
|
+
extend?: Array<string>;
|
|
6650
7140
|
}
|
|
7141
|
+
export declare const InviteLinkSearchInputDTOSortDirectionEnum: {
|
|
7142
|
+
readonly Asc: "asc";
|
|
7143
|
+
readonly Desc: "desc";
|
|
7144
|
+
};
|
|
7145
|
+
export type InviteLinkSearchInputDTOSortDirectionEnum = (typeof InviteLinkSearchInputDTOSortDirectionEnum)[keyof typeof InviteLinkSearchInputDTOSortDirectionEnum];
|
|
6651
7146
|
/**
|
|
6652
7147
|
*
|
|
6653
7148
|
* @export
|
|
6654
|
-
* @interface
|
|
7149
|
+
* @interface RedeemInputDTO
|
|
6655
7150
|
*/
|
|
6656
|
-
export interface
|
|
6657
|
-
/**
|
|
6658
|
-
*
|
|
6659
|
-
* @type {string}
|
|
6660
|
-
* @memberof InviteOutputDTO
|
|
6661
|
-
*/
|
|
6662
|
-
botInvite: string;
|
|
7151
|
+
export interface RedeemInputDTO {
|
|
6663
7152
|
/**
|
|
6664
7153
|
*
|
|
6665
7154
|
* @type {string}
|
|
6666
|
-
* @memberof
|
|
7155
|
+
* @memberof RedeemInputDTO
|
|
6667
7156
|
*/
|
|
6668
|
-
|
|
7157
|
+
token: string;
|
|
6669
7158
|
}
|
|
6670
7159
|
/**
|
|
6671
7160
|
*
|
|
@@ -12589,7 +13078,7 @@ export interface RoleUpdateInputDTO {
|
|
|
12589
13078
|
* @type {string}
|
|
12590
13079
|
* @memberof RoleUpdateInputDTO
|
|
12591
13080
|
*/
|
|
12592
|
-
linkedDiscordRoleId?: string;
|
|
13081
|
+
linkedDiscordRoleId?: string | null;
|
|
12593
13082
|
}
|
|
12594
13083
|
/**
|
|
12595
13084
|
*
|
|
@@ -13783,6 +14272,25 @@ export interface ShopDeadStockItemDTO {
|
|
|
13783
14272
|
*/
|
|
13784
14273
|
daysSinceLastSale?: number;
|
|
13785
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
|
+
}
|
|
13786
14294
|
/**
|
|
13787
14295
|
*
|
|
13788
14296
|
* @export
|
|
@@ -13808,6 +14316,44 @@ export interface ShopImportOptions {
|
|
|
13808
14316
|
*/
|
|
13809
14317
|
gameServerId: string;
|
|
13810
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
|
+
}
|
|
13811
14357
|
/**
|
|
13812
14358
|
*
|
|
13813
14359
|
* @export
|
|
@@ -16698,6 +17244,38 @@ export interface UserAssignmentOutputDTO {
|
|
|
16698
17244
|
*/
|
|
16699
17245
|
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
16700
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
|
+
}
|
|
16701
17279
|
/**
|
|
16702
17280
|
*
|
|
16703
17281
|
* @export
|
|
@@ -16845,6 +17423,12 @@ export interface UserOutputDTO {
|
|
|
16845
17423
|
* @memberof UserOutputDTO
|
|
16846
17424
|
*/
|
|
16847
17425
|
isDashboardUser: boolean;
|
|
17426
|
+
/**
|
|
17427
|
+
*
|
|
17428
|
+
* @type {boolean}
|
|
17429
|
+
* @memberof UserOutputDTO
|
|
17430
|
+
*/
|
|
17431
|
+
isSupportAccount: boolean;
|
|
16848
17432
|
/**
|
|
16849
17433
|
*
|
|
16850
17434
|
* @type {string}
|
|
@@ -16863,6 +17447,12 @@ export interface UserOutputDTO {
|
|
|
16863
17447
|
* @memberof UserOutputDTO
|
|
16864
17448
|
*/
|
|
16865
17449
|
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
17450
|
+
/**
|
|
17451
|
+
*
|
|
17452
|
+
* @type {string}
|
|
17453
|
+
* @memberof UserOutputDTO
|
|
17454
|
+
*/
|
|
17455
|
+
inviteLinkId?: string;
|
|
16866
17456
|
}
|
|
16867
17457
|
/**
|
|
16868
17458
|
*
|
|
@@ -16961,6 +17551,37 @@ export interface UserOutputWithRolesDTO {
|
|
|
16961
17551
|
* @memberof UserOutputWithRolesDTO
|
|
16962
17552
|
*/
|
|
16963
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;
|
|
16964
17585
|
}
|
|
16965
17586
|
/**
|
|
16966
17587
|
*
|
|
@@ -17630,7 +18251,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
17630
18251
|
*/
|
|
17631
18252
|
analyticsControllerGetModerationTimeseries: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17632
18253
|
/**
|
|
17633
|
-
* 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`
|
|
17634
18255
|
* @summary Get module health scores
|
|
17635
18256
|
* @param {string} [startDate]
|
|
17636
18257
|
* @param {string} [endDate]
|
|
@@ -17863,7 +18484,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
17863
18484
|
analyticsControllerGetTopListings: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17864
18485
|
/**
|
|
17865
18486
|
* Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
|
|
17866
|
-
* @summary Get top modules by
|
|
18487
|
+
* @summary Get top modules by execution volume
|
|
17867
18488
|
* @param {string} [startDate]
|
|
17868
18489
|
* @param {string} [endDate]
|
|
17869
18490
|
* @param {string} [gameServerId]
|
|
@@ -18019,7 +18640,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
18019
18640
|
*/
|
|
18020
18641
|
analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModerationDailyPointDTOAPI>>;
|
|
18021
18642
|
/**
|
|
18022
|
-
* 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`
|
|
18023
18644
|
* @summary Get module health scores
|
|
18024
18645
|
* @param {string} [startDate]
|
|
18025
18646
|
* @param {string} [endDate]
|
|
@@ -18252,7 +18873,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
18252
18873
|
analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopTopListingDTOAPI>>;
|
|
18253
18874
|
/**
|
|
18254
18875
|
* Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
|
|
18255
|
-
* @summary Get top modules by
|
|
18876
|
+
* @summary Get top modules by execution volume
|
|
18256
18877
|
* @param {string} [startDate]
|
|
18257
18878
|
* @param {string} [endDate]
|
|
18258
18879
|
* @param {string} [gameServerId]
|
|
@@ -18408,7 +19029,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
|
|
|
18408
19029
|
*/
|
|
18409
19030
|
analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ModerationDailyPointDTOAPI>;
|
|
18410
19031
|
/**
|
|
18411
|
-
* 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`
|
|
18412
19033
|
* @summary Get module health scores
|
|
18413
19034
|
* @param {string} [startDate]
|
|
18414
19035
|
* @param {string} [endDate]
|
|
@@ -18641,7 +19262,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
|
|
|
18641
19262
|
analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ShopTopListingDTOAPI>;
|
|
18642
19263
|
/**
|
|
18643
19264
|
* Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
|
|
18644
|
-
* @summary Get top modules by
|
|
19265
|
+
* @summary Get top modules by execution volume
|
|
18645
19266
|
* @param {string} [startDate]
|
|
18646
19267
|
* @param {string} [endDate]
|
|
18647
19268
|
* @param {string} [gameServerId]
|
|
@@ -18811,7 +19432,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
18811
19432
|
*/
|
|
18812
19433
|
analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModerationDailyPointDTOAPI, any>>;
|
|
18813
19434
|
/**
|
|
18814
|
-
* 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`
|
|
18815
19436
|
* @summary Get module health scores
|
|
18816
19437
|
* @param {string} [startDate]
|
|
18817
19438
|
* @param {string} [endDate]
|
|
@@ -19065,7 +19686,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
19065
19686
|
analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopTopListingDTOAPI, any>>;
|
|
19066
19687
|
/**
|
|
19067
19688
|
* Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
|
|
19068
|
-
* @summary Get top modules by
|
|
19689
|
+
* @summary Get top modules by execution volume
|
|
19069
19690
|
* @param {string} [startDate]
|
|
19070
19691
|
* @param {string} [endDate]
|
|
19071
19692
|
* @param {string} [gameServerId]
|
|
@@ -25567,7 +26188,7 @@ export declare const ShopListingApiFp: (configuration?: Configuration) => {
|
|
|
25567
26188
|
* @param {*} [options] Override http request option.
|
|
25568
26189
|
* @throws {RequiredError}
|
|
25569
26190
|
*/
|
|
25570
|
-
shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
26191
|
+
shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopImportResultDTOAPI>>;
|
|
25571
26192
|
/**
|
|
25572
26193
|
* Search shop listings<br> OperationId: `ShopListingControllerSearch`
|
|
25573
26194
|
* @summary Search
|
|
@@ -25621,7 +26242,7 @@ export declare const ShopListingApiFactory: (configuration?: Configuration, base
|
|
|
25621
26242
|
* @param {*} [options] Override http request option.
|
|
25622
26243
|
* @throws {RequiredError}
|
|
25623
26244
|
*/
|
|
25624
|
-
shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
26245
|
+
shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<ShopImportResultDTOAPI>;
|
|
25625
26246
|
/**
|
|
25626
26247
|
* Search shop listings<br> OperationId: `ShopListingControllerSearch`
|
|
25627
26248
|
* @summary Search
|
|
@@ -25681,7 +26302,7 @@ export declare class ShopListingApi extends BaseAPI {
|
|
|
25681
26302
|
* @throws {RequiredError}
|
|
25682
26303
|
* @memberof ShopListingApi
|
|
25683
26304
|
*/
|
|
25684
|
-
shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
26305
|
+
shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopImportResultDTOAPI, any>>;
|
|
25685
26306
|
/**
|
|
25686
26307
|
* Search shop listings<br> OperationId: `ShopListingControllerSearch`
|
|
25687
26308
|
* @summary Search
|
|
@@ -26224,6 +26845,13 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
26224
26845
|
* @throws {RequiredError}
|
|
26225
26846
|
*/
|
|
26226
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>;
|
|
26227
26855
|
/**
|
|
26228
26856
|
* Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
|
|
26229
26857
|
* @summary Create
|
|
@@ -26343,6 +26971,13 @@ export declare const UserApiFp: (configuration?: Configuration) => {
|
|
|
26343
26971
|
* @throws {RequiredError}
|
|
26344
26972
|
*/
|
|
26345
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>>;
|
|
26346
26981
|
/**
|
|
26347
26982
|
* Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
|
|
26348
26983
|
* @summary Create
|
|
@@ -26462,6 +27097,13 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
|
|
|
26462
27097
|
* @throws {RequiredError}
|
|
26463
27098
|
*/
|
|
26464
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>;
|
|
26465
27107
|
/**
|
|
26466
27108
|
* Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
|
|
26467
27109
|
* @summary Create
|
|
@@ -26584,6 +27226,14 @@ export declare class UserApi extends BaseAPI {
|
|
|
26584
27226
|
* @memberof UserApi
|
|
26585
27227
|
*/
|
|
26586
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>>;
|
|
26587
27237
|
/**
|
|
26588
27238
|
* Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
|
|
26589
27239
|
* @summary Create
|
|
@@ -26896,4 +27546,195 @@ export declare class VariableApi extends BaseAPI {
|
|
|
26896
27546
|
*/
|
|
26897
27547
|
variableControllerUpdate(id: string, variableUpdateDTO?: VariableUpdateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VariableOutputDTOAPI, any>>;
|
|
26898
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
|
+
}
|
|
26899
27740
|
//# sourceMappingURL=api.d.ts.map
|