@takaro/apiclient 0.0.0-dev.401d3e5 → 0.0.0-dev.4105af5
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 +808 -3
- package/dist/generated/api.d.ts.map +1 -1
- package/dist/generated/api.js +433 -0
- 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 +1144 -2
- package/src/lib/client.ts +11 -0
package/dist/generated/api.d.ts
CHANGED
|
@@ -6667,6 +6667,459 @@ export interface InviteOutputDTO {
|
|
|
6667
6667
|
*/
|
|
6668
6668
|
devServer: string;
|
|
6669
6669
|
}
|
|
6670
|
+
/**
|
|
6671
|
+
*
|
|
6672
|
+
* @export
|
|
6673
|
+
* @interface InviteLinkCreateInputDTO
|
|
6674
|
+
*/
|
|
6675
|
+
export interface InviteLinkCreateInputDTO {
|
|
6676
|
+
/**
|
|
6677
|
+
*
|
|
6678
|
+
* @type {Array<string>}
|
|
6679
|
+
* @memberof InviteLinkCreateInputDTO
|
|
6680
|
+
*/
|
|
6681
|
+
roleIds?: Array<string>;
|
|
6682
|
+
/**
|
|
6683
|
+
*
|
|
6684
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6685
|
+
* @memberof InviteLinkCreateInputDTO
|
|
6686
|
+
*/
|
|
6687
|
+
expiresAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6688
|
+
/**
|
|
6689
|
+
*
|
|
6690
|
+
* @type {number}
|
|
6691
|
+
* @memberof InviteLinkCreateInputDTO
|
|
6692
|
+
*/
|
|
6693
|
+
maxUses?: number;
|
|
6694
|
+
}
|
|
6695
|
+
/**
|
|
6696
|
+
*
|
|
6697
|
+
* @export
|
|
6698
|
+
* @interface InviteLinkCreateResultDTO
|
|
6699
|
+
*/
|
|
6700
|
+
export interface InviteLinkCreateResultDTO {
|
|
6701
|
+
/**
|
|
6702
|
+
*
|
|
6703
|
+
* @type {string}
|
|
6704
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6705
|
+
*/
|
|
6706
|
+
inviteUrl: string;
|
|
6707
|
+
/**
|
|
6708
|
+
*
|
|
6709
|
+
* @type {string}
|
|
6710
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6711
|
+
*/
|
|
6712
|
+
token: string;
|
|
6713
|
+
/**
|
|
6714
|
+
*
|
|
6715
|
+
* @type {string}
|
|
6716
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6717
|
+
*/
|
|
6718
|
+
id: string;
|
|
6719
|
+
/**
|
|
6720
|
+
*
|
|
6721
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6722
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6723
|
+
*/
|
|
6724
|
+
createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6725
|
+
/**
|
|
6726
|
+
*
|
|
6727
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6728
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6729
|
+
*/
|
|
6730
|
+
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6731
|
+
/**
|
|
6732
|
+
*
|
|
6733
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6734
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6735
|
+
*/
|
|
6736
|
+
expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6737
|
+
/**
|
|
6738
|
+
*
|
|
6739
|
+
* @type {number}
|
|
6740
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6741
|
+
*/
|
|
6742
|
+
maxUses?: number;
|
|
6743
|
+
/**
|
|
6744
|
+
*
|
|
6745
|
+
* @type {number}
|
|
6746
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6747
|
+
*/
|
|
6748
|
+
uses: number;
|
|
6749
|
+
/**
|
|
6750
|
+
*
|
|
6751
|
+
* @type {number}
|
|
6752
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6753
|
+
*/
|
|
6754
|
+
remaining?: number;
|
|
6755
|
+
/**
|
|
6756
|
+
*
|
|
6757
|
+
* @type {string}
|
|
6758
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6759
|
+
*/
|
|
6760
|
+
status: InviteLinkCreateResultDTOStatusEnum;
|
|
6761
|
+
/**
|
|
6762
|
+
*
|
|
6763
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6764
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6765
|
+
*/
|
|
6766
|
+
revokedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6767
|
+
/**
|
|
6768
|
+
*
|
|
6769
|
+
* @type {string}
|
|
6770
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6771
|
+
*/
|
|
6772
|
+
createdBy?: string;
|
|
6773
|
+
/**
|
|
6774
|
+
*
|
|
6775
|
+
* @type {Array<InviteLinkRoleDTO>}
|
|
6776
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6777
|
+
*/
|
|
6778
|
+
roles: Array<InviteLinkRoleDTO>;
|
|
6779
|
+
}
|
|
6780
|
+
export declare const InviteLinkCreateResultDTOStatusEnum: {
|
|
6781
|
+
readonly Active: "ACTIVE";
|
|
6782
|
+
readonly Revoked: "REVOKED";
|
|
6783
|
+
readonly Expired: "EXPIRED";
|
|
6784
|
+
readonly Depleted: "DEPLETED";
|
|
6785
|
+
};
|
|
6786
|
+
export type InviteLinkCreateResultDTOStatusEnum = (typeof InviteLinkCreateResultDTOStatusEnum)[keyof typeof InviteLinkCreateResultDTOStatusEnum];
|
|
6787
|
+
/**
|
|
6788
|
+
*
|
|
6789
|
+
* @export
|
|
6790
|
+
* @interface InviteLinkCreateResultDTOAPI
|
|
6791
|
+
*/
|
|
6792
|
+
export interface InviteLinkCreateResultDTOAPI {
|
|
6793
|
+
/**
|
|
6794
|
+
*
|
|
6795
|
+
* @type {InviteLinkCreateResultDTO}
|
|
6796
|
+
* @memberof InviteLinkCreateResultDTOAPI
|
|
6797
|
+
*/
|
|
6798
|
+
data: InviteLinkCreateResultDTO;
|
|
6799
|
+
/**
|
|
6800
|
+
*
|
|
6801
|
+
* @type {MetadataOutput}
|
|
6802
|
+
* @memberof InviteLinkCreateResultDTOAPI
|
|
6803
|
+
*/
|
|
6804
|
+
meta: MetadataOutput;
|
|
6805
|
+
}
|
|
6806
|
+
/**
|
|
6807
|
+
*
|
|
6808
|
+
* @export
|
|
6809
|
+
* @interface InviteLinkOutputDTO
|
|
6810
|
+
*/
|
|
6811
|
+
export interface InviteLinkOutputDTO {
|
|
6812
|
+
/**
|
|
6813
|
+
*
|
|
6814
|
+
* @type {string}
|
|
6815
|
+
* @memberof InviteLinkOutputDTO
|
|
6816
|
+
*/
|
|
6817
|
+
id: string;
|
|
6818
|
+
/**
|
|
6819
|
+
*
|
|
6820
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6821
|
+
* @memberof InviteLinkOutputDTO
|
|
6822
|
+
*/
|
|
6823
|
+
createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6824
|
+
/**
|
|
6825
|
+
*
|
|
6826
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6827
|
+
* @memberof InviteLinkOutputDTO
|
|
6828
|
+
*/
|
|
6829
|
+
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6830
|
+
/**
|
|
6831
|
+
*
|
|
6832
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6833
|
+
* @memberof InviteLinkOutputDTO
|
|
6834
|
+
*/
|
|
6835
|
+
expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6836
|
+
/**
|
|
6837
|
+
*
|
|
6838
|
+
* @type {number}
|
|
6839
|
+
* @memberof InviteLinkOutputDTO
|
|
6840
|
+
*/
|
|
6841
|
+
maxUses?: number;
|
|
6842
|
+
/**
|
|
6843
|
+
*
|
|
6844
|
+
* @type {number}
|
|
6845
|
+
* @memberof InviteLinkOutputDTO
|
|
6846
|
+
*/
|
|
6847
|
+
uses: number;
|
|
6848
|
+
/**
|
|
6849
|
+
*
|
|
6850
|
+
* @type {number}
|
|
6851
|
+
* @memberof InviteLinkOutputDTO
|
|
6852
|
+
*/
|
|
6853
|
+
remaining?: number;
|
|
6854
|
+
/**
|
|
6855
|
+
*
|
|
6856
|
+
* @type {string}
|
|
6857
|
+
* @memberof InviteLinkOutputDTO
|
|
6858
|
+
*/
|
|
6859
|
+
status: InviteLinkOutputDTOStatusEnum;
|
|
6860
|
+
/**
|
|
6861
|
+
*
|
|
6862
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6863
|
+
* @memberof InviteLinkOutputDTO
|
|
6864
|
+
*/
|
|
6865
|
+
revokedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6866
|
+
/**
|
|
6867
|
+
*
|
|
6868
|
+
* @type {string}
|
|
6869
|
+
* @memberof InviteLinkOutputDTO
|
|
6870
|
+
*/
|
|
6871
|
+
createdBy?: string;
|
|
6872
|
+
/**
|
|
6873
|
+
*
|
|
6874
|
+
* @type {Array<InviteLinkRoleDTO>}
|
|
6875
|
+
* @memberof InviteLinkOutputDTO
|
|
6876
|
+
*/
|
|
6877
|
+
roles: Array<InviteLinkRoleDTO>;
|
|
6878
|
+
}
|
|
6879
|
+
export declare const InviteLinkOutputDTOStatusEnum: {
|
|
6880
|
+
readonly Active: "ACTIVE";
|
|
6881
|
+
readonly Revoked: "REVOKED";
|
|
6882
|
+
readonly Expired: "EXPIRED";
|
|
6883
|
+
readonly Depleted: "DEPLETED";
|
|
6884
|
+
};
|
|
6885
|
+
export type InviteLinkOutputDTOStatusEnum = (typeof InviteLinkOutputDTOStatusEnum)[keyof typeof InviteLinkOutputDTOStatusEnum];
|
|
6886
|
+
/**
|
|
6887
|
+
*
|
|
6888
|
+
* @export
|
|
6889
|
+
* @interface InviteLinkOutputDTOAPI
|
|
6890
|
+
*/
|
|
6891
|
+
export interface InviteLinkOutputDTOAPI {
|
|
6892
|
+
/**
|
|
6893
|
+
*
|
|
6894
|
+
* @type {InviteLinkOutputDTO}
|
|
6895
|
+
* @memberof InviteLinkOutputDTOAPI
|
|
6896
|
+
*/
|
|
6897
|
+
data: InviteLinkOutputDTO;
|
|
6898
|
+
/**
|
|
6899
|
+
*
|
|
6900
|
+
* @type {MetadataOutput}
|
|
6901
|
+
* @memberof InviteLinkOutputDTOAPI
|
|
6902
|
+
*/
|
|
6903
|
+
meta: MetadataOutput;
|
|
6904
|
+
}
|
|
6905
|
+
/**
|
|
6906
|
+
*
|
|
6907
|
+
* @export
|
|
6908
|
+
* @interface InviteLinkOutputArrayDTOAPI
|
|
6909
|
+
*/
|
|
6910
|
+
export interface InviteLinkOutputArrayDTOAPI {
|
|
6911
|
+
/**
|
|
6912
|
+
*
|
|
6913
|
+
* @type {Array<InviteLinkOutputDTO>}
|
|
6914
|
+
* @memberof InviteLinkOutputArrayDTOAPI
|
|
6915
|
+
*/
|
|
6916
|
+
data: Array<InviteLinkOutputDTO>;
|
|
6917
|
+
/**
|
|
6918
|
+
*
|
|
6919
|
+
* @type {MetadataOutput}
|
|
6920
|
+
* @memberof InviteLinkOutputArrayDTOAPI
|
|
6921
|
+
*/
|
|
6922
|
+
meta: MetadataOutput;
|
|
6923
|
+
}
|
|
6924
|
+
/**
|
|
6925
|
+
*
|
|
6926
|
+
* @export
|
|
6927
|
+
* @interface InviteLinkPreviewDTO
|
|
6928
|
+
*/
|
|
6929
|
+
export interface InviteLinkPreviewDTO {
|
|
6930
|
+
/**
|
|
6931
|
+
*
|
|
6932
|
+
* @type {InviteLinkPreviewDomainDTO}
|
|
6933
|
+
* @memberof InviteLinkPreviewDTO
|
|
6934
|
+
*/
|
|
6935
|
+
domain: InviteLinkPreviewDomainDTO;
|
|
6936
|
+
/**
|
|
6937
|
+
*
|
|
6938
|
+
* @type {Array<InviteLinkPreviewRoleDTO>}
|
|
6939
|
+
* @memberof InviteLinkPreviewDTO
|
|
6940
|
+
*/
|
|
6941
|
+
roles: Array<InviteLinkPreviewRoleDTO>;
|
|
6942
|
+
/**
|
|
6943
|
+
*
|
|
6944
|
+
* @type {string}
|
|
6945
|
+
* @memberof InviteLinkPreviewDTO
|
|
6946
|
+
*/
|
|
6947
|
+
status: InviteLinkPreviewDTOStatusEnum;
|
|
6948
|
+
/**
|
|
6949
|
+
*
|
|
6950
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6951
|
+
* @memberof InviteLinkPreviewDTO
|
|
6952
|
+
*/
|
|
6953
|
+
expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6954
|
+
/**
|
|
6955
|
+
*
|
|
6956
|
+
* @type {number}
|
|
6957
|
+
* @memberof InviteLinkPreviewDTO
|
|
6958
|
+
*/
|
|
6959
|
+
remaining?: number;
|
|
6960
|
+
}
|
|
6961
|
+
export declare const InviteLinkPreviewDTOStatusEnum: {
|
|
6962
|
+
readonly Active: "ACTIVE";
|
|
6963
|
+
readonly Revoked: "REVOKED";
|
|
6964
|
+
readonly Expired: "EXPIRED";
|
|
6965
|
+
readonly Depleted: "DEPLETED";
|
|
6966
|
+
};
|
|
6967
|
+
export type InviteLinkPreviewDTOStatusEnum = (typeof InviteLinkPreviewDTOStatusEnum)[keyof typeof InviteLinkPreviewDTOStatusEnum];
|
|
6968
|
+
/**
|
|
6969
|
+
*
|
|
6970
|
+
* @export
|
|
6971
|
+
* @interface InviteLinkPreviewDTOAPI
|
|
6972
|
+
*/
|
|
6973
|
+
export interface InviteLinkPreviewDTOAPI {
|
|
6974
|
+
/**
|
|
6975
|
+
*
|
|
6976
|
+
* @type {InviteLinkPreviewDTO}
|
|
6977
|
+
* @memberof InviteLinkPreviewDTOAPI
|
|
6978
|
+
*/
|
|
6979
|
+
data: InviteLinkPreviewDTO;
|
|
6980
|
+
/**
|
|
6981
|
+
*
|
|
6982
|
+
* @type {MetadataOutput}
|
|
6983
|
+
* @memberof InviteLinkPreviewDTOAPI
|
|
6984
|
+
*/
|
|
6985
|
+
meta: MetadataOutput;
|
|
6986
|
+
}
|
|
6987
|
+
/**
|
|
6988
|
+
*
|
|
6989
|
+
* @export
|
|
6990
|
+
* @interface InviteLinkPreviewDomainDTO
|
|
6991
|
+
*/
|
|
6992
|
+
export interface InviteLinkPreviewDomainDTO {
|
|
6993
|
+
/**
|
|
6994
|
+
*
|
|
6995
|
+
* @type {string}
|
|
6996
|
+
* @memberof InviteLinkPreviewDomainDTO
|
|
6997
|
+
*/
|
|
6998
|
+
id: string;
|
|
6999
|
+
/**
|
|
7000
|
+
*
|
|
7001
|
+
* @type {string}
|
|
7002
|
+
* @memberof InviteLinkPreviewDomainDTO
|
|
7003
|
+
*/
|
|
7004
|
+
name: string;
|
|
7005
|
+
}
|
|
7006
|
+
/**
|
|
7007
|
+
*
|
|
7008
|
+
* @export
|
|
7009
|
+
* @interface InviteLinkPreviewRoleDTO
|
|
7010
|
+
*/
|
|
7011
|
+
export interface InviteLinkPreviewRoleDTO {
|
|
7012
|
+
/**
|
|
7013
|
+
*
|
|
7014
|
+
* @type {string}
|
|
7015
|
+
* @memberof InviteLinkPreviewRoleDTO
|
|
7016
|
+
*/
|
|
7017
|
+
id: string;
|
|
7018
|
+
/**
|
|
7019
|
+
*
|
|
7020
|
+
* @type {string}
|
|
7021
|
+
* @memberof InviteLinkPreviewRoleDTO
|
|
7022
|
+
*/
|
|
7023
|
+
name: string;
|
|
7024
|
+
}
|
|
7025
|
+
/**
|
|
7026
|
+
*
|
|
7027
|
+
* @export
|
|
7028
|
+
* @interface InviteLinkRoleDTO
|
|
7029
|
+
*/
|
|
7030
|
+
export interface InviteLinkRoleDTO {
|
|
7031
|
+
/**
|
|
7032
|
+
*
|
|
7033
|
+
* @type {string}
|
|
7034
|
+
* @memberof InviteLinkRoleDTO
|
|
7035
|
+
*/
|
|
7036
|
+
roleId: string;
|
|
7037
|
+
/**
|
|
7038
|
+
*
|
|
7039
|
+
* @type {string}
|
|
7040
|
+
* @memberof InviteLinkRoleDTO
|
|
7041
|
+
*/
|
|
7042
|
+
name: string;
|
|
7043
|
+
}
|
|
7044
|
+
/**
|
|
7045
|
+
*
|
|
7046
|
+
* @export
|
|
7047
|
+
* @interface InviteLinkSearchInputDTO
|
|
7048
|
+
*/
|
|
7049
|
+
export interface InviteLinkSearchInputDTO {
|
|
7050
|
+
/**
|
|
7051
|
+
*
|
|
7052
|
+
* @type {string}
|
|
7053
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7054
|
+
*/
|
|
7055
|
+
sortBy?: string;
|
|
7056
|
+
/**
|
|
7057
|
+
*
|
|
7058
|
+
* @type {any}
|
|
7059
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7060
|
+
*/
|
|
7061
|
+
filters?: any;
|
|
7062
|
+
/**
|
|
7063
|
+
*
|
|
7064
|
+
* @type {any}
|
|
7065
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7066
|
+
*/
|
|
7067
|
+
search?: any;
|
|
7068
|
+
/**
|
|
7069
|
+
*
|
|
7070
|
+
* @type {any}
|
|
7071
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7072
|
+
*/
|
|
7073
|
+
greaterThan?: any;
|
|
7074
|
+
/**
|
|
7075
|
+
*
|
|
7076
|
+
* @type {any}
|
|
7077
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7078
|
+
*/
|
|
7079
|
+
lessThan?: any;
|
|
7080
|
+
/**
|
|
7081
|
+
*
|
|
7082
|
+
* @type {number}
|
|
7083
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7084
|
+
*/
|
|
7085
|
+
page?: number;
|
|
7086
|
+
/**
|
|
7087
|
+
*
|
|
7088
|
+
* @type {number}
|
|
7089
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7090
|
+
*/
|
|
7091
|
+
limit?: number;
|
|
7092
|
+
/**
|
|
7093
|
+
*
|
|
7094
|
+
* @type {string}
|
|
7095
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7096
|
+
*/
|
|
7097
|
+
sortDirection?: InviteLinkSearchInputDTOSortDirectionEnum;
|
|
7098
|
+
/**
|
|
7099
|
+
*
|
|
7100
|
+
* @type {Array<string>}
|
|
7101
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7102
|
+
*/
|
|
7103
|
+
extend?: Array<string>;
|
|
7104
|
+
}
|
|
7105
|
+
export declare const InviteLinkSearchInputDTOSortDirectionEnum: {
|
|
7106
|
+
readonly Asc: "asc";
|
|
7107
|
+
readonly Desc: "desc";
|
|
7108
|
+
};
|
|
7109
|
+
export type InviteLinkSearchInputDTOSortDirectionEnum = (typeof InviteLinkSearchInputDTOSortDirectionEnum)[keyof typeof InviteLinkSearchInputDTOSortDirectionEnum];
|
|
7110
|
+
/**
|
|
7111
|
+
*
|
|
7112
|
+
* @export
|
|
7113
|
+
* @interface RedeemInputDTO
|
|
7114
|
+
*/
|
|
7115
|
+
export interface RedeemInputDTO {
|
|
7116
|
+
/**
|
|
7117
|
+
*
|
|
7118
|
+
* @type {string}
|
|
7119
|
+
* @memberof RedeemInputDTO
|
|
7120
|
+
*/
|
|
7121
|
+
token: string;
|
|
7122
|
+
}
|
|
6670
7123
|
/**
|
|
6671
7124
|
*
|
|
6672
7125
|
* @export
|
|
@@ -13783,6 +14236,25 @@ export interface ShopDeadStockItemDTO {
|
|
|
13783
14236
|
*/
|
|
13784
14237
|
daysSinceLastSale?: number;
|
|
13785
14238
|
}
|
|
14239
|
+
/**
|
|
14240
|
+
*
|
|
14241
|
+
* @export
|
|
14242
|
+
* @interface ShopImportFailureDTO
|
|
14243
|
+
*/
|
|
14244
|
+
export interface ShopImportFailureDTO {
|
|
14245
|
+
/**
|
|
14246
|
+
*
|
|
14247
|
+
* @type {string}
|
|
14248
|
+
* @memberof ShopImportFailureDTO
|
|
14249
|
+
*/
|
|
14250
|
+
name: string;
|
|
14251
|
+
/**
|
|
14252
|
+
*
|
|
14253
|
+
* @type {string}
|
|
14254
|
+
* @memberof ShopImportFailureDTO
|
|
14255
|
+
*/
|
|
14256
|
+
reason: string;
|
|
14257
|
+
}
|
|
13786
14258
|
/**
|
|
13787
14259
|
*
|
|
13788
14260
|
* @export
|
|
@@ -13808,6 +14280,44 @@ export interface ShopImportOptions {
|
|
|
13808
14280
|
*/
|
|
13809
14281
|
gameServerId: string;
|
|
13810
14282
|
}
|
|
14283
|
+
/**
|
|
14284
|
+
*
|
|
14285
|
+
* @export
|
|
14286
|
+
* @interface ShopImportResultDTO
|
|
14287
|
+
*/
|
|
14288
|
+
export interface ShopImportResultDTO {
|
|
14289
|
+
/**
|
|
14290
|
+
*
|
|
14291
|
+
* @type {number}
|
|
14292
|
+
* @memberof ShopImportResultDTO
|
|
14293
|
+
*/
|
|
14294
|
+
imported: number;
|
|
14295
|
+
/**
|
|
14296
|
+
*
|
|
14297
|
+
* @type {Array<ShopImportFailureDTO>}
|
|
14298
|
+
* @memberof ShopImportResultDTO
|
|
14299
|
+
*/
|
|
14300
|
+
failed: Array<ShopImportFailureDTO>;
|
|
14301
|
+
}
|
|
14302
|
+
/**
|
|
14303
|
+
*
|
|
14304
|
+
* @export
|
|
14305
|
+
* @interface ShopImportResultDTOAPI
|
|
14306
|
+
*/
|
|
14307
|
+
export interface ShopImportResultDTOAPI {
|
|
14308
|
+
/**
|
|
14309
|
+
*
|
|
14310
|
+
* @type {ShopImportResultDTO}
|
|
14311
|
+
* @memberof ShopImportResultDTOAPI
|
|
14312
|
+
*/
|
|
14313
|
+
data: ShopImportResultDTO;
|
|
14314
|
+
/**
|
|
14315
|
+
*
|
|
14316
|
+
* @type {MetadataOutput}
|
|
14317
|
+
* @memberof ShopImportResultDTOAPI
|
|
14318
|
+
*/
|
|
14319
|
+
meta: MetadataOutput;
|
|
14320
|
+
}
|
|
13811
14321
|
/**
|
|
13812
14322
|
*
|
|
13813
14323
|
* @export
|
|
@@ -16698,6 +17208,38 @@ export interface UserAssignmentOutputDTO {
|
|
|
16698
17208
|
*/
|
|
16699
17209
|
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
16700
17210
|
}
|
|
17211
|
+
/**
|
|
17212
|
+
*
|
|
17213
|
+
* @export
|
|
17214
|
+
* @interface UserCountOutputDTO
|
|
17215
|
+
*/
|
|
17216
|
+
export interface UserCountOutputDTO {
|
|
17217
|
+
/**
|
|
17218
|
+
*
|
|
17219
|
+
* @type {number}
|
|
17220
|
+
* @memberof UserCountOutputDTO
|
|
17221
|
+
*/
|
|
17222
|
+
count: number;
|
|
17223
|
+
}
|
|
17224
|
+
/**
|
|
17225
|
+
*
|
|
17226
|
+
* @export
|
|
17227
|
+
* @interface UserCountOutputDTOAPI
|
|
17228
|
+
*/
|
|
17229
|
+
export interface UserCountOutputDTOAPI {
|
|
17230
|
+
/**
|
|
17231
|
+
*
|
|
17232
|
+
* @type {UserCountOutputDTO}
|
|
17233
|
+
* @memberof UserCountOutputDTOAPI
|
|
17234
|
+
*/
|
|
17235
|
+
data: UserCountOutputDTO;
|
|
17236
|
+
/**
|
|
17237
|
+
*
|
|
17238
|
+
* @type {MetadataOutput}
|
|
17239
|
+
* @memberof UserCountOutputDTOAPI
|
|
17240
|
+
*/
|
|
17241
|
+
meta: MetadataOutput;
|
|
17242
|
+
}
|
|
16701
17243
|
/**
|
|
16702
17244
|
*
|
|
16703
17245
|
* @export
|
|
@@ -16845,6 +17387,12 @@ export interface UserOutputDTO {
|
|
|
16845
17387
|
* @memberof UserOutputDTO
|
|
16846
17388
|
*/
|
|
16847
17389
|
isDashboardUser: boolean;
|
|
17390
|
+
/**
|
|
17391
|
+
*
|
|
17392
|
+
* @type {boolean}
|
|
17393
|
+
* @memberof UserOutputDTO
|
|
17394
|
+
*/
|
|
17395
|
+
isSupportAccount: boolean;
|
|
16848
17396
|
/**
|
|
16849
17397
|
*
|
|
16850
17398
|
* @type {string}
|
|
@@ -16863,6 +17411,12 @@ export interface UserOutputDTO {
|
|
|
16863
17411
|
* @memberof UserOutputDTO
|
|
16864
17412
|
*/
|
|
16865
17413
|
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
17414
|
+
/**
|
|
17415
|
+
*
|
|
17416
|
+
* @type {string}
|
|
17417
|
+
* @memberof UserOutputDTO
|
|
17418
|
+
*/
|
|
17419
|
+
inviteLinkId?: string;
|
|
16866
17420
|
}
|
|
16867
17421
|
/**
|
|
16868
17422
|
*
|
|
@@ -16961,6 +17515,37 @@ export interface UserOutputWithRolesDTO {
|
|
|
16961
17515
|
* @memberof UserOutputWithRolesDTO
|
|
16962
17516
|
*/
|
|
16963
17517
|
isDashboardUser: boolean;
|
|
17518
|
+
/**
|
|
17519
|
+
*
|
|
17520
|
+
* @type {boolean}
|
|
17521
|
+
* @memberof UserOutputWithRolesDTO
|
|
17522
|
+
*/
|
|
17523
|
+
isSupportAccount: boolean;
|
|
17524
|
+
/**
|
|
17525
|
+
*
|
|
17526
|
+
* @type {string}
|
|
17527
|
+
* @memberof UserOutputWithRolesDTO
|
|
17528
|
+
*/
|
|
17529
|
+
inviteLinkId?: string;
|
|
17530
|
+
}
|
|
17531
|
+
/**
|
|
17532
|
+
*
|
|
17533
|
+
* @export
|
|
17534
|
+
* @interface UserOutputWithRolesDTOAPI
|
|
17535
|
+
*/
|
|
17536
|
+
export interface UserOutputWithRolesDTOAPI {
|
|
17537
|
+
/**
|
|
17538
|
+
*
|
|
17539
|
+
* @type {UserOutputWithRolesDTO}
|
|
17540
|
+
* @memberof UserOutputWithRolesDTOAPI
|
|
17541
|
+
*/
|
|
17542
|
+
data: UserOutputWithRolesDTO;
|
|
17543
|
+
/**
|
|
17544
|
+
*
|
|
17545
|
+
* @type {MetadataOutput}
|
|
17546
|
+
* @memberof UserOutputWithRolesDTOAPI
|
|
17547
|
+
*/
|
|
17548
|
+
meta: MetadataOutput;
|
|
16964
17549
|
}
|
|
16965
17550
|
/**
|
|
16966
17551
|
*
|
|
@@ -25567,7 +26152,7 @@ export declare const ShopListingApiFp: (configuration?: Configuration) => {
|
|
|
25567
26152
|
* @param {*} [options] Override http request option.
|
|
25568
26153
|
* @throws {RequiredError}
|
|
25569
26154
|
*/
|
|
25570
|
-
shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
26155
|
+
shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopImportResultDTOAPI>>;
|
|
25571
26156
|
/**
|
|
25572
26157
|
* Search shop listings<br> OperationId: `ShopListingControllerSearch`
|
|
25573
26158
|
* @summary Search
|
|
@@ -25621,7 +26206,7 @@ export declare const ShopListingApiFactory: (configuration?: Configuration, base
|
|
|
25621
26206
|
* @param {*} [options] Override http request option.
|
|
25622
26207
|
* @throws {RequiredError}
|
|
25623
26208
|
*/
|
|
25624
|
-
shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
26209
|
+
shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<ShopImportResultDTOAPI>;
|
|
25625
26210
|
/**
|
|
25626
26211
|
* Search shop listings<br> OperationId: `ShopListingControllerSearch`
|
|
25627
26212
|
* @summary Search
|
|
@@ -25681,7 +26266,7 @@ export declare class ShopListingApi extends BaseAPI {
|
|
|
25681
26266
|
* @throws {RequiredError}
|
|
25682
26267
|
* @memberof ShopListingApi
|
|
25683
26268
|
*/
|
|
25684
|
-
shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
26269
|
+
shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopImportResultDTOAPI, any>>;
|
|
25685
26270
|
/**
|
|
25686
26271
|
* Search shop listings<br> OperationId: `ShopListingControllerSearch`
|
|
25687
26272
|
* @summary Search
|
|
@@ -26224,6 +26809,13 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
26224
26809
|
* @throws {RequiredError}
|
|
26225
26810
|
*/
|
|
26226
26811
|
userControllerAssignRole: (id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
26812
|
+
/**
|
|
26813
|
+
* Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
|
|
26814
|
+
* @summary Count billable dashboard users
|
|
26815
|
+
* @param {*} [options] Override http request option.
|
|
26816
|
+
* @throws {RequiredError}
|
|
26817
|
+
*/
|
|
26818
|
+
userControllerCountBillableDashboardUsers: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
26227
26819
|
/**
|
|
26228
26820
|
* Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
|
|
26229
26821
|
* @summary Create
|
|
@@ -26343,6 +26935,13 @@ export declare const UserApiFp: (configuration?: Configuration) => {
|
|
|
26343
26935
|
* @throws {RequiredError}
|
|
26344
26936
|
*/
|
|
26345
26937
|
userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
|
|
26938
|
+
/**
|
|
26939
|
+
* Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
|
|
26940
|
+
* @summary Count billable dashboard users
|
|
26941
|
+
* @param {*} [options] Override http request option.
|
|
26942
|
+
* @throws {RequiredError}
|
|
26943
|
+
*/
|
|
26944
|
+
userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserCountOutputDTOAPI>>;
|
|
26346
26945
|
/**
|
|
26347
26946
|
* Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
|
|
26348
26947
|
* @summary Create
|
|
@@ -26462,6 +27061,13 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
|
|
|
26462
27061
|
* @throws {RequiredError}
|
|
26463
27062
|
*/
|
|
26464
27063
|
userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
|
|
27064
|
+
/**
|
|
27065
|
+
* Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
|
|
27066
|
+
* @summary Count billable dashboard users
|
|
27067
|
+
* @param {*} [options] Override http request option.
|
|
27068
|
+
* @throws {RequiredError}
|
|
27069
|
+
*/
|
|
27070
|
+
userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): AxiosPromise<UserCountOutputDTOAPI>;
|
|
26465
27071
|
/**
|
|
26466
27072
|
* Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
|
|
26467
27073
|
* @summary Create
|
|
@@ -26584,6 +27190,14 @@ export declare class UserApi extends BaseAPI {
|
|
|
26584
27190
|
* @memberof UserApi
|
|
26585
27191
|
*/
|
|
26586
27192
|
userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
|
|
27193
|
+
/**
|
|
27194
|
+
* Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
|
|
27195
|
+
* @summary Count billable dashboard users
|
|
27196
|
+
* @param {*} [options] Override http request option.
|
|
27197
|
+
* @throws {RequiredError}
|
|
27198
|
+
* @memberof UserApi
|
|
27199
|
+
*/
|
|
27200
|
+
userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserCountOutputDTOAPI, any>>;
|
|
26587
27201
|
/**
|
|
26588
27202
|
* Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
|
|
26589
27203
|
* @summary Create
|
|
@@ -26896,4 +27510,195 @@ export declare class VariableApi extends BaseAPI {
|
|
|
26896
27510
|
*/
|
|
26897
27511
|
variableControllerUpdate(id: string, variableUpdateDTO?: VariableUpdateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VariableOutputDTOAPI, any>>;
|
|
26898
27512
|
}
|
|
27513
|
+
/**
|
|
27514
|
+
* InviteLinkApi - axios parameter creator
|
|
27515
|
+
* @export
|
|
27516
|
+
*/
|
|
27517
|
+
export declare const InviteLinkApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
27518
|
+
/**
|
|
27519
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
|
|
27520
|
+
* @summary Create invite link
|
|
27521
|
+
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
27522
|
+
* @param {*} [options] Override http request option.
|
|
27523
|
+
* @throws {RequiredError}
|
|
27524
|
+
*/
|
|
27525
|
+
inviteLinkControllerCreate: (inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27526
|
+
/**
|
|
27527
|
+
* <br> OperationId: `InviteLinkControllerPreview`
|
|
27528
|
+
* @summary Preview
|
|
27529
|
+
* @param {string} token
|
|
27530
|
+
* @param {*} [options] Override http request option.
|
|
27531
|
+
* @throws {RequiredError}
|
|
27532
|
+
*/
|
|
27533
|
+
inviteLinkControllerPreview: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27534
|
+
/**
|
|
27535
|
+
* <br> OperationId: `InviteLinkControllerRedeem`
|
|
27536
|
+
* @summary Redeem
|
|
27537
|
+
* @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
|
|
27538
|
+
* @param {*} [options] Override http request option.
|
|
27539
|
+
* @throws {RequiredError}
|
|
27540
|
+
*/
|
|
27541
|
+
inviteLinkControllerRedeem: (redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27542
|
+
/**
|
|
27543
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
|
|
27544
|
+
* @summary Revoke
|
|
27545
|
+
* @param {string} id
|
|
27546
|
+
* @param {*} [options] Override http request option.
|
|
27547
|
+
* @throws {RequiredError}
|
|
27548
|
+
*/
|
|
27549
|
+
inviteLinkControllerRevoke: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27550
|
+
/**
|
|
27551
|
+
* Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
|
|
27552
|
+
* @summary Search
|
|
27553
|
+
* @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
|
|
27554
|
+
* @param {*} [options] Override http request option.
|
|
27555
|
+
* @throws {RequiredError}
|
|
27556
|
+
*/
|
|
27557
|
+
inviteLinkControllerSearch: (inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27558
|
+
};
|
|
27559
|
+
/**
|
|
27560
|
+
* InviteLinkApi - functional programming interface
|
|
27561
|
+
* @export
|
|
27562
|
+
*/
|
|
27563
|
+
export declare const InviteLinkApiFp: (configuration?: Configuration) => {
|
|
27564
|
+
/**
|
|
27565
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
|
|
27566
|
+
* @summary Create invite link
|
|
27567
|
+
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
27568
|
+
* @param {*} [options] Override http request option.
|
|
27569
|
+
* @throws {RequiredError}
|
|
27570
|
+
*/
|
|
27571
|
+
inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkCreateResultDTOAPI>>;
|
|
27572
|
+
/**
|
|
27573
|
+
* <br> OperationId: `InviteLinkControllerPreview`
|
|
27574
|
+
* @summary Preview
|
|
27575
|
+
* @param {string} token
|
|
27576
|
+
* @param {*} [options] Override http request option.
|
|
27577
|
+
* @throws {RequiredError}
|
|
27578
|
+
*/
|
|
27579
|
+
inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkPreviewDTOAPI>>;
|
|
27580
|
+
/**
|
|
27581
|
+
* <br> OperationId: `InviteLinkControllerRedeem`
|
|
27582
|
+
* @summary Redeem
|
|
27583
|
+
* @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
|
|
27584
|
+
* @param {*} [options] Override http request option.
|
|
27585
|
+
* @throws {RequiredError}
|
|
27586
|
+
*/
|
|
27587
|
+
inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOutputWithRolesDTOAPI>>;
|
|
27588
|
+
/**
|
|
27589
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
|
|
27590
|
+
* @summary Revoke
|
|
27591
|
+
* @param {string} id
|
|
27592
|
+
* @param {*} [options] Override http request option.
|
|
27593
|
+
* @throws {RequiredError}
|
|
27594
|
+
*/
|
|
27595
|
+
inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
|
|
27596
|
+
/**
|
|
27597
|
+
* Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
|
|
27598
|
+
* @summary Search
|
|
27599
|
+
* @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
|
|
27600
|
+
* @param {*} [options] Override http request option.
|
|
27601
|
+
* @throws {RequiredError}
|
|
27602
|
+
*/
|
|
27603
|
+
inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkOutputArrayDTOAPI>>;
|
|
27604
|
+
};
|
|
27605
|
+
/**
|
|
27606
|
+
* InviteLinkApi - factory interface
|
|
27607
|
+
* @export
|
|
27608
|
+
*/
|
|
27609
|
+
export declare const InviteLinkApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
27610
|
+
/**
|
|
27611
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
|
|
27612
|
+
* @summary Create invite link
|
|
27613
|
+
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
27614
|
+
* @param {*} [options] Override http request option.
|
|
27615
|
+
* @throws {RequiredError}
|
|
27616
|
+
*/
|
|
27617
|
+
inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkCreateResultDTOAPI>;
|
|
27618
|
+
/**
|
|
27619
|
+
* <br> OperationId: `InviteLinkControllerPreview`
|
|
27620
|
+
* @summary Preview
|
|
27621
|
+
* @param {string} token
|
|
27622
|
+
* @param {*} [options] Override http request option.
|
|
27623
|
+
* @throws {RequiredError}
|
|
27624
|
+
*/
|
|
27625
|
+
inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkPreviewDTOAPI>;
|
|
27626
|
+
/**
|
|
27627
|
+
* <br> OperationId: `InviteLinkControllerRedeem`
|
|
27628
|
+
* @summary Redeem
|
|
27629
|
+
* @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
|
|
27630
|
+
* @param {*} [options] Override http request option.
|
|
27631
|
+
* @throws {RequiredError}
|
|
27632
|
+
*/
|
|
27633
|
+
inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputWithRolesDTOAPI>;
|
|
27634
|
+
/**
|
|
27635
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
|
|
27636
|
+
* @summary Revoke
|
|
27637
|
+
* @param {string} id
|
|
27638
|
+
* @param {*} [options] Override http request option.
|
|
27639
|
+
* @throws {RequiredError}
|
|
27640
|
+
*/
|
|
27641
|
+
inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
|
|
27642
|
+
/**
|
|
27643
|
+
* Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
|
|
27644
|
+
* @summary Search
|
|
27645
|
+
* @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
|
|
27646
|
+
* @param {*} [options] Override http request option.
|
|
27647
|
+
* @throws {RequiredError}
|
|
27648
|
+
*/
|
|
27649
|
+
inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkOutputArrayDTOAPI>;
|
|
27650
|
+
};
|
|
27651
|
+
/**
|
|
27652
|
+
* InviteLinkApi - object-oriented interface
|
|
27653
|
+
* @export
|
|
27654
|
+
* @class InviteLinkApi
|
|
27655
|
+
* @extends {BaseAPI}
|
|
27656
|
+
*/
|
|
27657
|
+
export declare class InviteLinkApi extends BaseAPI {
|
|
27658
|
+
/**
|
|
27659
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
|
|
27660
|
+
* @summary Create invite link
|
|
27661
|
+
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
27662
|
+
* @param {*} [options] Override http request option.
|
|
27663
|
+
* @throws {RequiredError}
|
|
27664
|
+
* @memberof InviteLinkApi
|
|
27665
|
+
*/
|
|
27666
|
+
inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkCreateResultDTOAPI, any>>;
|
|
27667
|
+
/**
|
|
27668
|
+
* <br> OperationId: `InviteLinkControllerPreview`
|
|
27669
|
+
* @summary Preview
|
|
27670
|
+
* @param {string} token
|
|
27671
|
+
* @param {*} [options] Override http request option.
|
|
27672
|
+
* @throws {RequiredError}
|
|
27673
|
+
* @memberof InviteLinkApi
|
|
27674
|
+
*/
|
|
27675
|
+
inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkPreviewDTOAPI, any>>;
|
|
27676
|
+
/**
|
|
27677
|
+
* <br> OperationId: `InviteLinkControllerRedeem`
|
|
27678
|
+
* @summary Redeem
|
|
27679
|
+
* @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
|
|
27680
|
+
* @param {*} [options] Override http request option.
|
|
27681
|
+
* @throws {RequiredError}
|
|
27682
|
+
* @memberof InviteLinkApi
|
|
27683
|
+
*/
|
|
27684
|
+
inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserOutputWithRolesDTOAPI, any>>;
|
|
27685
|
+
/**
|
|
27686
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
|
|
27687
|
+
* @summary Revoke
|
|
27688
|
+
* @param {string} id
|
|
27689
|
+
* @param {*} [options] Override http request option.
|
|
27690
|
+
* @throws {RequiredError}
|
|
27691
|
+
* @memberof InviteLinkApi
|
|
27692
|
+
*/
|
|
27693
|
+
inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
|
|
27694
|
+
/**
|
|
27695
|
+
* Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
|
|
27696
|
+
* @summary Search
|
|
27697
|
+
* @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
|
|
27698
|
+
* @param {*} [options] Override http request option.
|
|
27699
|
+
* @throws {RequiredError}
|
|
27700
|
+
* @memberof InviteLinkApi
|
|
27701
|
+
*/
|
|
27702
|
+
inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkOutputArrayDTOAPI, any>>;
|
|
27703
|
+
}
|
|
26899
27704
|
//# sourceMappingURL=api.d.ts.map
|