@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/src/generated/api.ts
CHANGED
|
@@ -2264,6 +2264,18 @@ export interface DomainCreateInputDTO {
|
|
|
2264
2264
|
* @memberof DomainCreateInputDTO
|
|
2265
2265
|
*/
|
|
2266
2266
|
maxFunctionsInModule?: number;
|
|
2267
|
+
/**
|
|
2268
|
+
*
|
|
2269
|
+
* @type {number}
|
|
2270
|
+
* @memberof DomainCreateInputDTO
|
|
2271
|
+
*/
|
|
2272
|
+
maxCustomRoles?: number;
|
|
2273
|
+
/**
|
|
2274
|
+
*
|
|
2275
|
+
* @type {number}
|
|
2276
|
+
* @memberof DomainCreateInputDTO
|
|
2277
|
+
*/
|
|
2278
|
+
maxDiscordLinkedRoles?: number;
|
|
2267
2279
|
}
|
|
2268
2280
|
|
|
2269
2281
|
export const DomainCreateInputDTOStateEnum = {
|
|
@@ -2422,6 +2434,18 @@ export interface DomainOutputDTO {
|
|
|
2422
2434
|
* @memberof DomainOutputDTO
|
|
2423
2435
|
*/
|
|
2424
2436
|
maxFunctionsInModule: number;
|
|
2437
|
+
/**
|
|
2438
|
+
*
|
|
2439
|
+
* @type {number}
|
|
2440
|
+
* @memberof DomainOutputDTO
|
|
2441
|
+
*/
|
|
2442
|
+
maxCustomRoles: number;
|
|
2443
|
+
/**
|
|
2444
|
+
*
|
|
2445
|
+
* @type {number}
|
|
2446
|
+
* @memberof DomainOutputDTO
|
|
2447
|
+
*/
|
|
2448
|
+
maxDiscordLinkedRoles: number;
|
|
2425
2449
|
/**
|
|
2426
2450
|
*
|
|
2427
2451
|
* @type {string}
|
|
@@ -2653,6 +2677,18 @@ export interface DomainUpdateInputDTO {
|
|
|
2653
2677
|
* @memberof DomainUpdateInputDTO
|
|
2654
2678
|
*/
|
|
2655
2679
|
maxFunctionsInModule?: number;
|
|
2680
|
+
/**
|
|
2681
|
+
*
|
|
2682
|
+
* @type {number}
|
|
2683
|
+
* @memberof DomainUpdateInputDTO
|
|
2684
|
+
*/
|
|
2685
|
+
maxCustomRoles?: number;
|
|
2686
|
+
/**
|
|
2687
|
+
*
|
|
2688
|
+
* @type {number}
|
|
2689
|
+
* @memberof DomainUpdateInputDTO
|
|
2690
|
+
*/
|
|
2691
|
+
maxDiscordLinkedRoles?: number;
|
|
2656
2692
|
}
|
|
2657
2693
|
|
|
2658
2694
|
export const DomainUpdateInputDTOStateEnum = {
|
|
@@ -6905,6 +6941,475 @@ export interface InviteOutputDTO {
|
|
|
6905
6941
|
*/
|
|
6906
6942
|
devServer: string;
|
|
6907
6943
|
}
|
|
6944
|
+
/**
|
|
6945
|
+
*
|
|
6946
|
+
* @export
|
|
6947
|
+
* @interface InviteLinkCreateInputDTO
|
|
6948
|
+
*/
|
|
6949
|
+
export interface InviteLinkCreateInputDTO {
|
|
6950
|
+
/**
|
|
6951
|
+
*
|
|
6952
|
+
* @type {Array<string>}
|
|
6953
|
+
* @memberof InviteLinkCreateInputDTO
|
|
6954
|
+
*/
|
|
6955
|
+
roleIds?: Array<string>;
|
|
6956
|
+
/**
|
|
6957
|
+
*
|
|
6958
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6959
|
+
* @memberof InviteLinkCreateInputDTO
|
|
6960
|
+
*/
|
|
6961
|
+
expiresAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6962
|
+
/**
|
|
6963
|
+
*
|
|
6964
|
+
* @type {number}
|
|
6965
|
+
* @memberof InviteLinkCreateInputDTO
|
|
6966
|
+
*/
|
|
6967
|
+
maxUses?: number;
|
|
6968
|
+
}
|
|
6969
|
+
/**
|
|
6970
|
+
*
|
|
6971
|
+
* @export
|
|
6972
|
+
* @interface InviteLinkCreateResultDTO
|
|
6973
|
+
*/
|
|
6974
|
+
export interface InviteLinkCreateResultDTO {
|
|
6975
|
+
/**
|
|
6976
|
+
*
|
|
6977
|
+
* @type {string}
|
|
6978
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6979
|
+
*/
|
|
6980
|
+
inviteUrl: string;
|
|
6981
|
+
/**
|
|
6982
|
+
*
|
|
6983
|
+
* @type {string}
|
|
6984
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6985
|
+
*/
|
|
6986
|
+
token: string;
|
|
6987
|
+
/**
|
|
6988
|
+
*
|
|
6989
|
+
* @type {string}
|
|
6990
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6991
|
+
*/
|
|
6992
|
+
id: string;
|
|
6993
|
+
/**
|
|
6994
|
+
*
|
|
6995
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6996
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6997
|
+
*/
|
|
6998
|
+
createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6999
|
+
/**
|
|
7000
|
+
*
|
|
7001
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
7002
|
+
* @memberof InviteLinkCreateResultDTO
|
|
7003
|
+
*/
|
|
7004
|
+
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
7005
|
+
/**
|
|
7006
|
+
*
|
|
7007
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
7008
|
+
* @memberof InviteLinkCreateResultDTO
|
|
7009
|
+
*/
|
|
7010
|
+
expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
7011
|
+
/**
|
|
7012
|
+
*
|
|
7013
|
+
* @type {number}
|
|
7014
|
+
* @memberof InviteLinkCreateResultDTO
|
|
7015
|
+
*/
|
|
7016
|
+
maxUses?: number;
|
|
7017
|
+
/**
|
|
7018
|
+
*
|
|
7019
|
+
* @type {number}
|
|
7020
|
+
* @memberof InviteLinkCreateResultDTO
|
|
7021
|
+
*/
|
|
7022
|
+
uses: number;
|
|
7023
|
+
/**
|
|
7024
|
+
*
|
|
7025
|
+
* @type {number}
|
|
7026
|
+
* @memberof InviteLinkCreateResultDTO
|
|
7027
|
+
*/
|
|
7028
|
+
remaining?: number;
|
|
7029
|
+
/**
|
|
7030
|
+
*
|
|
7031
|
+
* @type {string}
|
|
7032
|
+
* @memberof InviteLinkCreateResultDTO
|
|
7033
|
+
*/
|
|
7034
|
+
status: InviteLinkCreateResultDTOStatusEnum;
|
|
7035
|
+
/**
|
|
7036
|
+
*
|
|
7037
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
7038
|
+
* @memberof InviteLinkCreateResultDTO
|
|
7039
|
+
*/
|
|
7040
|
+
revokedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
7041
|
+
/**
|
|
7042
|
+
*
|
|
7043
|
+
* @type {string}
|
|
7044
|
+
* @memberof InviteLinkCreateResultDTO
|
|
7045
|
+
*/
|
|
7046
|
+
createdBy?: string;
|
|
7047
|
+
/**
|
|
7048
|
+
*
|
|
7049
|
+
* @type {Array<InviteLinkRoleDTO>}
|
|
7050
|
+
* @memberof InviteLinkCreateResultDTO
|
|
7051
|
+
*/
|
|
7052
|
+
roles: Array<InviteLinkRoleDTO>;
|
|
7053
|
+
}
|
|
7054
|
+
|
|
7055
|
+
export const InviteLinkCreateResultDTOStatusEnum = {
|
|
7056
|
+
Active: 'ACTIVE',
|
|
7057
|
+
Revoked: 'REVOKED',
|
|
7058
|
+
Expired: 'EXPIRED',
|
|
7059
|
+
Depleted: 'DEPLETED',
|
|
7060
|
+
} as const;
|
|
7061
|
+
|
|
7062
|
+
export type InviteLinkCreateResultDTOStatusEnum =
|
|
7063
|
+
(typeof InviteLinkCreateResultDTOStatusEnum)[keyof typeof InviteLinkCreateResultDTOStatusEnum];
|
|
7064
|
+
|
|
7065
|
+
/**
|
|
7066
|
+
*
|
|
7067
|
+
* @export
|
|
7068
|
+
* @interface InviteLinkCreateResultDTOAPI
|
|
7069
|
+
*/
|
|
7070
|
+
export interface InviteLinkCreateResultDTOAPI {
|
|
7071
|
+
/**
|
|
7072
|
+
*
|
|
7073
|
+
* @type {InviteLinkCreateResultDTO}
|
|
7074
|
+
* @memberof InviteLinkCreateResultDTOAPI
|
|
7075
|
+
*/
|
|
7076
|
+
data: InviteLinkCreateResultDTO;
|
|
7077
|
+
/**
|
|
7078
|
+
*
|
|
7079
|
+
* @type {MetadataOutput}
|
|
7080
|
+
* @memberof InviteLinkCreateResultDTOAPI
|
|
7081
|
+
*/
|
|
7082
|
+
meta: MetadataOutput;
|
|
7083
|
+
}
|
|
7084
|
+
/**
|
|
7085
|
+
*
|
|
7086
|
+
* @export
|
|
7087
|
+
* @interface InviteLinkOutputDTO
|
|
7088
|
+
*/
|
|
7089
|
+
export interface InviteLinkOutputDTO {
|
|
7090
|
+
/**
|
|
7091
|
+
*
|
|
7092
|
+
* @type {string}
|
|
7093
|
+
* @memberof InviteLinkOutputDTO
|
|
7094
|
+
*/
|
|
7095
|
+
id: string;
|
|
7096
|
+
/**
|
|
7097
|
+
*
|
|
7098
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
7099
|
+
* @memberof InviteLinkOutputDTO
|
|
7100
|
+
*/
|
|
7101
|
+
createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
7102
|
+
/**
|
|
7103
|
+
*
|
|
7104
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
7105
|
+
* @memberof InviteLinkOutputDTO
|
|
7106
|
+
*/
|
|
7107
|
+
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
7108
|
+
/**
|
|
7109
|
+
*
|
|
7110
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
7111
|
+
* @memberof InviteLinkOutputDTO
|
|
7112
|
+
*/
|
|
7113
|
+
expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
7114
|
+
/**
|
|
7115
|
+
*
|
|
7116
|
+
* @type {number}
|
|
7117
|
+
* @memberof InviteLinkOutputDTO
|
|
7118
|
+
*/
|
|
7119
|
+
maxUses?: number;
|
|
7120
|
+
/**
|
|
7121
|
+
*
|
|
7122
|
+
* @type {number}
|
|
7123
|
+
* @memberof InviteLinkOutputDTO
|
|
7124
|
+
*/
|
|
7125
|
+
uses: number;
|
|
7126
|
+
/**
|
|
7127
|
+
*
|
|
7128
|
+
* @type {number}
|
|
7129
|
+
* @memberof InviteLinkOutputDTO
|
|
7130
|
+
*/
|
|
7131
|
+
remaining?: number;
|
|
7132
|
+
/**
|
|
7133
|
+
*
|
|
7134
|
+
* @type {string}
|
|
7135
|
+
* @memberof InviteLinkOutputDTO
|
|
7136
|
+
*/
|
|
7137
|
+
status: InviteLinkOutputDTOStatusEnum;
|
|
7138
|
+
/**
|
|
7139
|
+
*
|
|
7140
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
7141
|
+
* @memberof InviteLinkOutputDTO
|
|
7142
|
+
*/
|
|
7143
|
+
revokedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
7144
|
+
/**
|
|
7145
|
+
*
|
|
7146
|
+
* @type {string}
|
|
7147
|
+
* @memberof InviteLinkOutputDTO
|
|
7148
|
+
*/
|
|
7149
|
+
createdBy?: string;
|
|
7150
|
+
/**
|
|
7151
|
+
*
|
|
7152
|
+
* @type {Array<InviteLinkRoleDTO>}
|
|
7153
|
+
* @memberof InviteLinkOutputDTO
|
|
7154
|
+
*/
|
|
7155
|
+
roles: Array<InviteLinkRoleDTO>;
|
|
7156
|
+
}
|
|
7157
|
+
|
|
7158
|
+
export const InviteLinkOutputDTOStatusEnum = {
|
|
7159
|
+
Active: 'ACTIVE',
|
|
7160
|
+
Revoked: 'REVOKED',
|
|
7161
|
+
Expired: 'EXPIRED',
|
|
7162
|
+
Depleted: 'DEPLETED',
|
|
7163
|
+
} as const;
|
|
7164
|
+
|
|
7165
|
+
export type InviteLinkOutputDTOStatusEnum =
|
|
7166
|
+
(typeof InviteLinkOutputDTOStatusEnum)[keyof typeof InviteLinkOutputDTOStatusEnum];
|
|
7167
|
+
|
|
7168
|
+
/**
|
|
7169
|
+
*
|
|
7170
|
+
* @export
|
|
7171
|
+
* @interface InviteLinkOutputDTOAPI
|
|
7172
|
+
*/
|
|
7173
|
+
export interface InviteLinkOutputDTOAPI {
|
|
7174
|
+
/**
|
|
7175
|
+
*
|
|
7176
|
+
* @type {InviteLinkOutputDTO}
|
|
7177
|
+
* @memberof InviteLinkOutputDTOAPI
|
|
7178
|
+
*/
|
|
7179
|
+
data: InviteLinkOutputDTO;
|
|
7180
|
+
/**
|
|
7181
|
+
*
|
|
7182
|
+
* @type {MetadataOutput}
|
|
7183
|
+
* @memberof InviteLinkOutputDTOAPI
|
|
7184
|
+
*/
|
|
7185
|
+
meta: MetadataOutput;
|
|
7186
|
+
}
|
|
7187
|
+
/**
|
|
7188
|
+
*
|
|
7189
|
+
* @export
|
|
7190
|
+
* @interface InviteLinkOutputArrayDTOAPI
|
|
7191
|
+
*/
|
|
7192
|
+
export interface InviteLinkOutputArrayDTOAPI {
|
|
7193
|
+
/**
|
|
7194
|
+
*
|
|
7195
|
+
* @type {Array<InviteLinkOutputDTO>}
|
|
7196
|
+
* @memberof InviteLinkOutputArrayDTOAPI
|
|
7197
|
+
*/
|
|
7198
|
+
data: Array<InviteLinkOutputDTO>;
|
|
7199
|
+
/**
|
|
7200
|
+
*
|
|
7201
|
+
* @type {MetadataOutput}
|
|
7202
|
+
* @memberof InviteLinkOutputArrayDTOAPI
|
|
7203
|
+
*/
|
|
7204
|
+
meta: MetadataOutput;
|
|
7205
|
+
}
|
|
7206
|
+
/**
|
|
7207
|
+
*
|
|
7208
|
+
* @export
|
|
7209
|
+
* @interface InviteLinkPreviewDTO
|
|
7210
|
+
*/
|
|
7211
|
+
export interface InviteLinkPreviewDTO {
|
|
7212
|
+
/**
|
|
7213
|
+
*
|
|
7214
|
+
* @type {InviteLinkPreviewDomainDTO}
|
|
7215
|
+
* @memberof InviteLinkPreviewDTO
|
|
7216
|
+
*/
|
|
7217
|
+
domain: InviteLinkPreviewDomainDTO;
|
|
7218
|
+
/**
|
|
7219
|
+
*
|
|
7220
|
+
* @type {Array<InviteLinkPreviewRoleDTO>}
|
|
7221
|
+
* @memberof InviteLinkPreviewDTO
|
|
7222
|
+
*/
|
|
7223
|
+
roles: Array<InviteLinkPreviewRoleDTO>;
|
|
7224
|
+
/**
|
|
7225
|
+
*
|
|
7226
|
+
* @type {string}
|
|
7227
|
+
* @memberof InviteLinkPreviewDTO
|
|
7228
|
+
*/
|
|
7229
|
+
status: InviteLinkPreviewDTOStatusEnum;
|
|
7230
|
+
/**
|
|
7231
|
+
*
|
|
7232
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
7233
|
+
* @memberof InviteLinkPreviewDTO
|
|
7234
|
+
*/
|
|
7235
|
+
expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
7236
|
+
/**
|
|
7237
|
+
*
|
|
7238
|
+
* @type {number}
|
|
7239
|
+
* @memberof InviteLinkPreviewDTO
|
|
7240
|
+
*/
|
|
7241
|
+
remaining?: number;
|
|
7242
|
+
}
|
|
7243
|
+
|
|
7244
|
+
export const InviteLinkPreviewDTOStatusEnum = {
|
|
7245
|
+
Active: 'ACTIVE',
|
|
7246
|
+
Revoked: 'REVOKED',
|
|
7247
|
+
Expired: 'EXPIRED',
|
|
7248
|
+
Depleted: 'DEPLETED',
|
|
7249
|
+
} as const;
|
|
7250
|
+
|
|
7251
|
+
export type InviteLinkPreviewDTOStatusEnum =
|
|
7252
|
+
(typeof InviteLinkPreviewDTOStatusEnum)[keyof typeof InviteLinkPreviewDTOStatusEnum];
|
|
7253
|
+
|
|
7254
|
+
/**
|
|
7255
|
+
*
|
|
7256
|
+
* @export
|
|
7257
|
+
* @interface InviteLinkPreviewDTOAPI
|
|
7258
|
+
*/
|
|
7259
|
+
export interface InviteLinkPreviewDTOAPI {
|
|
7260
|
+
/**
|
|
7261
|
+
*
|
|
7262
|
+
* @type {InviteLinkPreviewDTO}
|
|
7263
|
+
* @memberof InviteLinkPreviewDTOAPI
|
|
7264
|
+
*/
|
|
7265
|
+
data: InviteLinkPreviewDTO;
|
|
7266
|
+
/**
|
|
7267
|
+
*
|
|
7268
|
+
* @type {MetadataOutput}
|
|
7269
|
+
* @memberof InviteLinkPreviewDTOAPI
|
|
7270
|
+
*/
|
|
7271
|
+
meta: MetadataOutput;
|
|
7272
|
+
}
|
|
7273
|
+
/**
|
|
7274
|
+
*
|
|
7275
|
+
* @export
|
|
7276
|
+
* @interface InviteLinkPreviewDomainDTO
|
|
7277
|
+
*/
|
|
7278
|
+
export interface InviteLinkPreviewDomainDTO {
|
|
7279
|
+
/**
|
|
7280
|
+
*
|
|
7281
|
+
* @type {string}
|
|
7282
|
+
* @memberof InviteLinkPreviewDomainDTO
|
|
7283
|
+
*/
|
|
7284
|
+
id: string;
|
|
7285
|
+
/**
|
|
7286
|
+
*
|
|
7287
|
+
* @type {string}
|
|
7288
|
+
* @memberof InviteLinkPreviewDomainDTO
|
|
7289
|
+
*/
|
|
7290
|
+
name: string;
|
|
7291
|
+
}
|
|
7292
|
+
/**
|
|
7293
|
+
*
|
|
7294
|
+
* @export
|
|
7295
|
+
* @interface InviteLinkPreviewRoleDTO
|
|
7296
|
+
*/
|
|
7297
|
+
export interface InviteLinkPreviewRoleDTO {
|
|
7298
|
+
/**
|
|
7299
|
+
*
|
|
7300
|
+
* @type {string}
|
|
7301
|
+
* @memberof InviteLinkPreviewRoleDTO
|
|
7302
|
+
*/
|
|
7303
|
+
id: string;
|
|
7304
|
+
/**
|
|
7305
|
+
*
|
|
7306
|
+
* @type {string}
|
|
7307
|
+
* @memberof InviteLinkPreviewRoleDTO
|
|
7308
|
+
*/
|
|
7309
|
+
name: string;
|
|
7310
|
+
}
|
|
7311
|
+
/**
|
|
7312
|
+
*
|
|
7313
|
+
* @export
|
|
7314
|
+
* @interface InviteLinkRoleDTO
|
|
7315
|
+
*/
|
|
7316
|
+
export interface InviteLinkRoleDTO {
|
|
7317
|
+
/**
|
|
7318
|
+
*
|
|
7319
|
+
* @type {string}
|
|
7320
|
+
* @memberof InviteLinkRoleDTO
|
|
7321
|
+
*/
|
|
7322
|
+
roleId: string;
|
|
7323
|
+
/**
|
|
7324
|
+
*
|
|
7325
|
+
* @type {string}
|
|
7326
|
+
* @memberof InviteLinkRoleDTO
|
|
7327
|
+
*/
|
|
7328
|
+
name: string;
|
|
7329
|
+
}
|
|
7330
|
+
/**
|
|
7331
|
+
*
|
|
7332
|
+
* @export
|
|
7333
|
+
* @interface InviteLinkSearchInputDTO
|
|
7334
|
+
*/
|
|
7335
|
+
export interface InviteLinkSearchInputDTO {
|
|
7336
|
+
/**
|
|
7337
|
+
*
|
|
7338
|
+
* @type {string}
|
|
7339
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7340
|
+
*/
|
|
7341
|
+
sortBy?: string;
|
|
7342
|
+
/**
|
|
7343
|
+
*
|
|
7344
|
+
* @type {any}
|
|
7345
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7346
|
+
*/
|
|
7347
|
+
filters?: any;
|
|
7348
|
+
/**
|
|
7349
|
+
*
|
|
7350
|
+
* @type {any}
|
|
7351
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7352
|
+
*/
|
|
7353
|
+
search?: any;
|
|
7354
|
+
/**
|
|
7355
|
+
*
|
|
7356
|
+
* @type {any}
|
|
7357
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7358
|
+
*/
|
|
7359
|
+
greaterThan?: any;
|
|
7360
|
+
/**
|
|
7361
|
+
*
|
|
7362
|
+
* @type {any}
|
|
7363
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7364
|
+
*/
|
|
7365
|
+
lessThan?: any;
|
|
7366
|
+
/**
|
|
7367
|
+
*
|
|
7368
|
+
* @type {number}
|
|
7369
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7370
|
+
*/
|
|
7371
|
+
page?: number;
|
|
7372
|
+
/**
|
|
7373
|
+
*
|
|
7374
|
+
* @type {number}
|
|
7375
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7376
|
+
*/
|
|
7377
|
+
limit?: number;
|
|
7378
|
+
/**
|
|
7379
|
+
*
|
|
7380
|
+
* @type {string}
|
|
7381
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7382
|
+
*/
|
|
7383
|
+
sortDirection?: InviteLinkSearchInputDTOSortDirectionEnum;
|
|
7384
|
+
/**
|
|
7385
|
+
*
|
|
7386
|
+
* @type {Array<string>}
|
|
7387
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7388
|
+
*/
|
|
7389
|
+
extend?: Array<string>;
|
|
7390
|
+
}
|
|
7391
|
+
|
|
7392
|
+
export const InviteLinkSearchInputDTOSortDirectionEnum = {
|
|
7393
|
+
Asc: 'asc',
|
|
7394
|
+
Desc: 'desc',
|
|
7395
|
+
} as const;
|
|
7396
|
+
|
|
7397
|
+
export type InviteLinkSearchInputDTOSortDirectionEnum =
|
|
7398
|
+
(typeof InviteLinkSearchInputDTOSortDirectionEnum)[keyof typeof InviteLinkSearchInputDTOSortDirectionEnum];
|
|
7399
|
+
|
|
7400
|
+
/**
|
|
7401
|
+
*
|
|
7402
|
+
* @export
|
|
7403
|
+
* @interface RedeemInputDTO
|
|
7404
|
+
*/
|
|
7405
|
+
export interface RedeemInputDTO {
|
|
7406
|
+
/**
|
|
7407
|
+
*
|
|
7408
|
+
* @type {string}
|
|
7409
|
+
* @memberof RedeemInputDTO
|
|
7410
|
+
*/
|
|
7411
|
+
token: string;
|
|
7412
|
+
}
|
|
6908
7413
|
/**
|
|
6909
7414
|
*
|
|
6910
7415
|
* @export
|
|
@@ -12891,7 +13396,7 @@ export interface RoleUpdateInputDTO {
|
|
|
12891
13396
|
* @type {string}
|
|
12892
13397
|
* @memberof RoleUpdateInputDTO
|
|
12893
13398
|
*/
|
|
12894
|
-
linkedDiscordRoleId?: string;
|
|
13399
|
+
linkedDiscordRoleId?: string | null;
|
|
12895
13400
|
}
|
|
12896
13401
|
/**
|
|
12897
13402
|
*
|
|
@@ -14097,6 +14602,25 @@ export interface ShopDeadStockItemDTO {
|
|
|
14097
14602
|
*/
|
|
14098
14603
|
daysSinceLastSale?: number;
|
|
14099
14604
|
}
|
|
14605
|
+
/**
|
|
14606
|
+
*
|
|
14607
|
+
* @export
|
|
14608
|
+
* @interface ShopImportFailureDTO
|
|
14609
|
+
*/
|
|
14610
|
+
export interface ShopImportFailureDTO {
|
|
14611
|
+
/**
|
|
14612
|
+
*
|
|
14613
|
+
* @type {string}
|
|
14614
|
+
* @memberof ShopImportFailureDTO
|
|
14615
|
+
*/
|
|
14616
|
+
name: string;
|
|
14617
|
+
/**
|
|
14618
|
+
*
|
|
14619
|
+
* @type {string}
|
|
14620
|
+
* @memberof ShopImportFailureDTO
|
|
14621
|
+
*/
|
|
14622
|
+
reason: string;
|
|
14623
|
+
}
|
|
14100
14624
|
/**
|
|
14101
14625
|
*
|
|
14102
14626
|
* @export
|
|
@@ -14122,6 +14646,44 @@ export interface ShopImportOptions {
|
|
|
14122
14646
|
*/
|
|
14123
14647
|
gameServerId: string;
|
|
14124
14648
|
}
|
|
14649
|
+
/**
|
|
14650
|
+
*
|
|
14651
|
+
* @export
|
|
14652
|
+
* @interface ShopImportResultDTO
|
|
14653
|
+
*/
|
|
14654
|
+
export interface ShopImportResultDTO {
|
|
14655
|
+
/**
|
|
14656
|
+
*
|
|
14657
|
+
* @type {number}
|
|
14658
|
+
* @memberof ShopImportResultDTO
|
|
14659
|
+
*/
|
|
14660
|
+
imported: number;
|
|
14661
|
+
/**
|
|
14662
|
+
*
|
|
14663
|
+
* @type {Array<ShopImportFailureDTO>}
|
|
14664
|
+
* @memberof ShopImportResultDTO
|
|
14665
|
+
*/
|
|
14666
|
+
failed: Array<ShopImportFailureDTO>;
|
|
14667
|
+
}
|
|
14668
|
+
/**
|
|
14669
|
+
*
|
|
14670
|
+
* @export
|
|
14671
|
+
* @interface ShopImportResultDTOAPI
|
|
14672
|
+
*/
|
|
14673
|
+
export interface ShopImportResultDTOAPI {
|
|
14674
|
+
/**
|
|
14675
|
+
*
|
|
14676
|
+
* @type {ShopImportResultDTO}
|
|
14677
|
+
* @memberof ShopImportResultDTOAPI
|
|
14678
|
+
*/
|
|
14679
|
+
data: ShopImportResultDTO;
|
|
14680
|
+
/**
|
|
14681
|
+
*
|
|
14682
|
+
* @type {MetadataOutput}
|
|
14683
|
+
* @memberof ShopImportResultDTOAPI
|
|
14684
|
+
*/
|
|
14685
|
+
meta: MetadataOutput;
|
|
14686
|
+
}
|
|
14125
14687
|
/**
|
|
14126
14688
|
*
|
|
14127
14689
|
* @export
|
|
@@ -17043,6 +17605,38 @@ export interface UserAssignmentOutputDTO {
|
|
|
17043
17605
|
*/
|
|
17044
17606
|
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
17045
17607
|
}
|
|
17608
|
+
/**
|
|
17609
|
+
*
|
|
17610
|
+
* @export
|
|
17611
|
+
* @interface UserCountOutputDTO
|
|
17612
|
+
*/
|
|
17613
|
+
export interface UserCountOutputDTO {
|
|
17614
|
+
/**
|
|
17615
|
+
*
|
|
17616
|
+
* @type {number}
|
|
17617
|
+
* @memberof UserCountOutputDTO
|
|
17618
|
+
*/
|
|
17619
|
+
count: number;
|
|
17620
|
+
}
|
|
17621
|
+
/**
|
|
17622
|
+
*
|
|
17623
|
+
* @export
|
|
17624
|
+
* @interface UserCountOutputDTOAPI
|
|
17625
|
+
*/
|
|
17626
|
+
export interface UserCountOutputDTOAPI {
|
|
17627
|
+
/**
|
|
17628
|
+
*
|
|
17629
|
+
* @type {UserCountOutputDTO}
|
|
17630
|
+
* @memberof UserCountOutputDTOAPI
|
|
17631
|
+
*/
|
|
17632
|
+
data: UserCountOutputDTO;
|
|
17633
|
+
/**
|
|
17634
|
+
*
|
|
17635
|
+
* @type {MetadataOutput}
|
|
17636
|
+
* @memberof UserCountOutputDTOAPI
|
|
17637
|
+
*/
|
|
17638
|
+
meta: MetadataOutput;
|
|
17639
|
+
}
|
|
17046
17640
|
/**
|
|
17047
17641
|
*
|
|
17048
17642
|
* @export
|
|
@@ -17190,6 +17784,12 @@ export interface UserOutputDTO {
|
|
|
17190
17784
|
* @memberof UserOutputDTO
|
|
17191
17785
|
*/
|
|
17192
17786
|
isDashboardUser: boolean;
|
|
17787
|
+
/**
|
|
17788
|
+
*
|
|
17789
|
+
* @type {boolean}
|
|
17790
|
+
* @memberof UserOutputDTO
|
|
17791
|
+
*/
|
|
17792
|
+
isSupportAccount: boolean;
|
|
17193
17793
|
/**
|
|
17194
17794
|
*
|
|
17195
17795
|
* @type {string}
|
|
@@ -17208,6 +17808,12 @@ export interface UserOutputDTO {
|
|
|
17208
17808
|
* @memberof UserOutputDTO
|
|
17209
17809
|
*/
|
|
17210
17810
|
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
17811
|
+
/**
|
|
17812
|
+
*
|
|
17813
|
+
* @type {string}
|
|
17814
|
+
* @memberof UserOutputDTO
|
|
17815
|
+
*/
|
|
17816
|
+
inviteLinkId?: string;
|
|
17211
17817
|
}
|
|
17212
17818
|
/**
|
|
17213
17819
|
*
|
|
@@ -17306,6 +17912,37 @@ export interface UserOutputWithRolesDTO {
|
|
|
17306
17912
|
* @memberof UserOutputWithRolesDTO
|
|
17307
17913
|
*/
|
|
17308
17914
|
isDashboardUser: boolean;
|
|
17915
|
+
/**
|
|
17916
|
+
*
|
|
17917
|
+
* @type {boolean}
|
|
17918
|
+
* @memberof UserOutputWithRolesDTO
|
|
17919
|
+
*/
|
|
17920
|
+
isSupportAccount: boolean;
|
|
17921
|
+
/**
|
|
17922
|
+
*
|
|
17923
|
+
* @type {string}
|
|
17924
|
+
* @memberof UserOutputWithRolesDTO
|
|
17925
|
+
*/
|
|
17926
|
+
inviteLinkId?: string;
|
|
17927
|
+
}
|
|
17928
|
+
/**
|
|
17929
|
+
*
|
|
17930
|
+
* @export
|
|
17931
|
+
* @interface UserOutputWithRolesDTOAPI
|
|
17932
|
+
*/
|
|
17933
|
+
export interface UserOutputWithRolesDTOAPI {
|
|
17934
|
+
/**
|
|
17935
|
+
*
|
|
17936
|
+
* @type {UserOutputWithRolesDTO}
|
|
17937
|
+
* @memberof UserOutputWithRolesDTOAPI
|
|
17938
|
+
*/
|
|
17939
|
+
data: UserOutputWithRolesDTO;
|
|
17940
|
+
/**
|
|
17941
|
+
*
|
|
17942
|
+
* @type {MetadataOutput}
|
|
17943
|
+
* @memberof UserOutputWithRolesDTOAPI
|
|
17944
|
+
*/
|
|
17945
|
+
meta: MetadataOutput;
|
|
17309
17946
|
}
|
|
17310
17947
|
/**
|
|
17311
17948
|
*
|
|
@@ -18512,7 +19149,7 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
18512
19149
|
};
|
|
18513
19150
|
},
|
|
18514
19151
|
/**
|
|
18515
|
-
* Normalized 0-1 scores across
|
|
19152
|
+
* Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
|
|
18516
19153
|
* @summary Get module health scores
|
|
18517
19154
|
* @param {string} [startDate]
|
|
18518
19155
|
* @param {string} [endDate]
|
|
@@ -19699,7 +20336,7 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
19699
20336
|
},
|
|
19700
20337
|
/**
|
|
19701
20338
|
* Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
|
|
19702
|
-
* @summary Get top modules by
|
|
20339
|
+
* @summary Get top modules by execution volume
|
|
19703
20340
|
* @param {string} [startDate]
|
|
19704
20341
|
* @param {string} [endDate]
|
|
19705
20342
|
* @param {string} [gameServerId]
|
|
@@ -20233,7 +20870,7 @@ export const AnalyticsApiFp = function (configuration?: Configuration) {
|
|
|
20233
20870
|
)(axios, localVarOperationServerBasePath || basePath);
|
|
20234
20871
|
},
|
|
20235
20872
|
/**
|
|
20236
|
-
* Normalized 0-1 scores across
|
|
20873
|
+
* Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
|
|
20237
20874
|
* @summary Get module health scores
|
|
20238
20875
|
* @param {string} [startDate]
|
|
20239
20876
|
* @param {string} [endDate]
|
|
@@ -20985,7 +21622,7 @@ export const AnalyticsApiFp = function (configuration?: Configuration) {
|
|
|
20985
21622
|
},
|
|
20986
21623
|
/**
|
|
20987
21624
|
* Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
|
|
20988
|
-
* @summary Get top modules by
|
|
21625
|
+
* @summary Get top modules by execution volume
|
|
20989
21626
|
* @param {string} [startDate]
|
|
20990
21627
|
* @param {string} [endDate]
|
|
20991
21628
|
* @param {string} [gameServerId]
|
|
@@ -21307,7 +21944,7 @@ export const AnalyticsApiFactory = function (configuration?: Configuration, base
|
|
|
21307
21944
|
.then((request) => request(axios, basePath));
|
|
21308
21945
|
},
|
|
21309
21946
|
/**
|
|
21310
|
-
* Normalized 0-1 scores across
|
|
21947
|
+
* Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
|
|
21311
21948
|
* @summary Get module health scores
|
|
21312
21949
|
* @param {string} [startDate]
|
|
21313
21950
|
* @param {string} [endDate]
|
|
@@ -21751,7 +22388,7 @@ export const AnalyticsApiFactory = function (configuration?: Configuration, base
|
|
|
21751
22388
|
},
|
|
21752
22389
|
/**
|
|
21753
22390
|
* Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
|
|
21754
|
-
* @summary Get top modules by
|
|
22391
|
+
* @summary Get top modules by execution volume
|
|
21755
22392
|
* @param {string} [startDate]
|
|
21756
22393
|
* @param {string} [endDate]
|
|
21757
22394
|
* @param {string} [gameServerId]
|
|
@@ -22070,7 +22707,7 @@ export class AnalyticsApi extends BaseAPI {
|
|
|
22070
22707
|
}
|
|
22071
22708
|
|
|
22072
22709
|
/**
|
|
22073
|
-
* Normalized 0-1 scores across
|
|
22710
|
+
* Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
|
|
22074
22711
|
* @summary Get module health scores
|
|
22075
22712
|
* @param {string} [startDate]
|
|
22076
22713
|
* @param {string} [endDate]
|
|
@@ -22556,7 +23193,7 @@ export class AnalyticsApi extends BaseAPI {
|
|
|
22556
23193
|
|
|
22557
23194
|
/**
|
|
22558
23195
|
* Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
|
|
22559
|
-
* @summary Get top modules by
|
|
23196
|
+
* @summary Get top modules by execution volume
|
|
22560
23197
|
* @param {string} [startDate]
|
|
22561
23198
|
* @param {string} [endDate]
|
|
22562
23199
|
* @param {string} [gameServerId]
|
|
@@ -38857,7 +39494,7 @@ export const ShopListingApiFp = function (configuration?: Configuration) {
|
|
|
38857
39494
|
*/
|
|
38858
39495
|
async shopListingControllerImportListings(
|
|
38859
39496
|
options?: RawAxiosRequestConfig,
|
|
38860
|
-
): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
39497
|
+
): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopImportResultDTOAPI>> {
|
|
38861
39498
|
const localVarAxiosArgs = await localVarAxiosParamCreator.shopListingControllerImportListings(options);
|
|
38862
39499
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
38863
39500
|
const localVarOperationServerBasePath =
|
|
@@ -38980,7 +39617,7 @@ export const ShopListingApiFactory = function (
|
|
|
38980
39617
|
* @param {*} [options] Override http request option.
|
|
38981
39618
|
* @throws {RequiredError}
|
|
38982
39619
|
*/
|
|
38983
|
-
shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
39620
|
+
shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<ShopImportResultDTOAPI> {
|
|
38984
39621
|
return localVarFp.shopListingControllerImportListings(options).then((request) => request(axios, basePath));
|
|
38985
39622
|
},
|
|
38986
39623
|
/**
|
|
@@ -40490,6 +41127,33 @@ export const UserApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
40490
41127
|
options: localVarRequestOptions,
|
|
40491
41128
|
};
|
|
40492
41129
|
},
|
|
41130
|
+
/**
|
|
41131
|
+
* Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
|
|
41132
|
+
* @summary Count billable dashboard users
|
|
41133
|
+
* @param {*} [options] Override http request option.
|
|
41134
|
+
* @throws {RequiredError}
|
|
41135
|
+
*/
|
|
41136
|
+
userControllerCountBillableDashboardUsers: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
41137
|
+
const localVarPath = `/user/count`;
|
|
41138
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
41139
|
+
let baseOptions;
|
|
41140
|
+
if (configuration) {
|
|
41141
|
+
baseOptions = configuration.baseOptions;
|
|
41142
|
+
}
|
|
41143
|
+
|
|
41144
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
41145
|
+
const localVarHeaderParameter = {} as any;
|
|
41146
|
+
const localVarQueryParameter = {} as any;
|
|
41147
|
+
|
|
41148
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
41149
|
+
const headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
41150
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
41151
|
+
|
|
41152
|
+
return {
|
|
41153
|
+
url: toPathString(localVarUrlObj),
|
|
41154
|
+
options: localVarRequestOptions,
|
|
41155
|
+
};
|
|
41156
|
+
},
|
|
40493
41157
|
/**
|
|
40494
41158
|
* Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
|
|
40495
41159
|
* @summary Create
|
|
@@ -40996,6 +41660,27 @@ export const UserApiFp = function (configuration?: Configuration) {
|
|
|
40996
41660
|
configuration,
|
|
40997
41661
|
)(axios, localVarOperationServerBasePath || basePath);
|
|
40998
41662
|
},
|
|
41663
|
+
/**
|
|
41664
|
+
* Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
|
|
41665
|
+
* @summary Count billable dashboard users
|
|
41666
|
+
* @param {*} [options] Override http request option.
|
|
41667
|
+
* @throws {RequiredError}
|
|
41668
|
+
*/
|
|
41669
|
+
async userControllerCountBillableDashboardUsers(
|
|
41670
|
+
options?: RawAxiosRequestConfig,
|
|
41671
|
+
): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserCountOutputDTOAPI>> {
|
|
41672
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.userControllerCountBillableDashboardUsers(options);
|
|
41673
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
41674
|
+
const localVarOperationServerBasePath =
|
|
41675
|
+
operationServerMap['UserApi.userControllerCountBillableDashboardUsers']?.[localVarOperationServerIndex]?.url;
|
|
41676
|
+
return (axios, basePath) =>
|
|
41677
|
+
createRequestFunction(
|
|
41678
|
+
localVarAxiosArgs,
|
|
41679
|
+
globalAxios,
|
|
41680
|
+
BASE_PATH,
|
|
41681
|
+
configuration,
|
|
41682
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
41683
|
+
},
|
|
40999
41684
|
/**
|
|
41000
41685
|
* Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
|
|
41001
41686
|
* @summary Create
|
|
@@ -41325,6 +42010,15 @@ export const UserApiFactory = function (configuration?: Configuration, basePath?
|
|
|
41325
42010
|
.userControllerAssignRole(id, roleId, userRoleAssignChangeDTO, options)
|
|
41326
42011
|
.then((request) => request(axios, basePath));
|
|
41327
42012
|
},
|
|
42013
|
+
/**
|
|
42014
|
+
* Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
|
|
42015
|
+
* @summary Count billable dashboard users
|
|
42016
|
+
* @param {*} [options] Override http request option.
|
|
42017
|
+
* @throws {RequiredError}
|
|
42018
|
+
*/
|
|
42019
|
+
userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): AxiosPromise<UserCountOutputDTOAPI> {
|
|
42020
|
+
return localVarFp.userControllerCountBillableDashboardUsers(options).then((request) => request(axios, basePath));
|
|
42021
|
+
},
|
|
41328
42022
|
/**
|
|
41329
42023
|
* Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
|
|
41330
42024
|
* @summary Create
|
|
@@ -41503,6 +42197,19 @@ export class UserApi extends BaseAPI {
|
|
|
41503
42197
|
.then((request) => request(this.axios, this.basePath));
|
|
41504
42198
|
}
|
|
41505
42199
|
|
|
42200
|
+
/**
|
|
42201
|
+
* Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
|
|
42202
|
+
* @summary Count billable dashboard users
|
|
42203
|
+
* @param {*} [options] Override http request option.
|
|
42204
|
+
* @throws {RequiredError}
|
|
42205
|
+
* @memberof UserApi
|
|
42206
|
+
*/
|
|
42207
|
+
public userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig) {
|
|
42208
|
+
return UserApiFp(this.configuration)
|
|
42209
|
+
.userControllerCountBillableDashboardUsers(options)
|
|
42210
|
+
.then((request) => request(this.axios, this.basePath));
|
|
42211
|
+
}
|
|
42212
|
+
|
|
41506
42213
|
/**
|
|
41507
42214
|
* Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
|
|
41508
42215
|
* @summary Create
|
|
@@ -42171,3 +42878,474 @@ export class VariableApi extends BaseAPI {
|
|
|
42171
42878
|
.then((request) => request(this.axios, this.basePath));
|
|
42172
42879
|
}
|
|
42173
42880
|
}
|
|
42881
|
+
|
|
42882
|
+
/**
|
|
42883
|
+
* InviteLinkApi - axios parameter creator
|
|
42884
|
+
* @export
|
|
42885
|
+
*/
|
|
42886
|
+
export const InviteLinkApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
42887
|
+
return {
|
|
42888
|
+
/**
|
|
42889
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
|
|
42890
|
+
* @summary Create invite link
|
|
42891
|
+
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
42892
|
+
* @param {*} [options] Override http request option.
|
|
42893
|
+
* @throws {RequiredError}
|
|
42894
|
+
*/
|
|
42895
|
+
inviteLinkControllerCreate: async (
|
|
42896
|
+
inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO,
|
|
42897
|
+
options: RawAxiosRequestConfig = {},
|
|
42898
|
+
): Promise<RequestArgs> => {
|
|
42899
|
+
const localVarPath = `/invite-link`;
|
|
42900
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
42901
|
+
let baseOptions;
|
|
42902
|
+
if (configuration) {
|
|
42903
|
+
baseOptions = configuration.baseOptions;
|
|
42904
|
+
}
|
|
42905
|
+
|
|
42906
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
|
|
42907
|
+
const localVarHeaderParameter = {} as any;
|
|
42908
|
+
const localVarQueryParameter = {} as any;
|
|
42909
|
+
|
|
42910
|
+
// authentication domainAuth required
|
|
42911
|
+
|
|
42912
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
42913
|
+
|
|
42914
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
42915
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
42916
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
42917
|
+
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
42918
|
+
inviteLinkCreateInputDTO,
|
|
42919
|
+
localVarRequestOptions,
|
|
42920
|
+
configuration,
|
|
42921
|
+
);
|
|
42922
|
+
|
|
42923
|
+
return {
|
|
42924
|
+
url: toPathString(localVarUrlObj),
|
|
42925
|
+
options: localVarRequestOptions,
|
|
42926
|
+
};
|
|
42927
|
+
},
|
|
42928
|
+
/**
|
|
42929
|
+
* <br> OperationId: `InviteLinkControllerPreview`
|
|
42930
|
+
* @summary Preview
|
|
42931
|
+
* @param {string} token
|
|
42932
|
+
* @param {*} [options] Override http request option.
|
|
42933
|
+
* @throws {RequiredError}
|
|
42934
|
+
*/
|
|
42935
|
+
inviteLinkControllerPreview: async (token: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
42936
|
+
assertParamExists('inviteLinkControllerPreview', 'token', token);
|
|
42937
|
+
const localVarPath = `/invite-link/redeem/{token}`.replace(`{${'token'}}`, encodeURIComponent(String(token)));
|
|
42938
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
42939
|
+
let baseOptions;
|
|
42940
|
+
if (configuration) {
|
|
42941
|
+
baseOptions = configuration.baseOptions;
|
|
42942
|
+
}
|
|
42943
|
+
|
|
42944
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
42945
|
+
const localVarHeaderParameter = {} as any;
|
|
42946
|
+
const localVarQueryParameter = {} as any;
|
|
42947
|
+
|
|
42948
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
42949
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
42950
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
42951
|
+
|
|
42952
|
+
return {
|
|
42953
|
+
url: toPathString(localVarUrlObj),
|
|
42954
|
+
options: localVarRequestOptions,
|
|
42955
|
+
};
|
|
42956
|
+
},
|
|
42957
|
+
/**
|
|
42958
|
+
* <br> OperationId: `InviteLinkControllerRedeem`
|
|
42959
|
+
* @summary Redeem
|
|
42960
|
+
* @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
|
|
42961
|
+
* @param {*} [options] Override http request option.
|
|
42962
|
+
* @throws {RequiredError}
|
|
42963
|
+
*/
|
|
42964
|
+
inviteLinkControllerRedeem: async (
|
|
42965
|
+
redeemInputDTO?: RedeemInputDTO,
|
|
42966
|
+
options: RawAxiosRequestConfig = {},
|
|
42967
|
+
): Promise<RequestArgs> => {
|
|
42968
|
+
const localVarPath = `/invite-link/redeem`;
|
|
42969
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
42970
|
+
let baseOptions;
|
|
42971
|
+
if (configuration) {
|
|
42972
|
+
baseOptions = configuration.baseOptions;
|
|
42973
|
+
}
|
|
42974
|
+
|
|
42975
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
|
|
42976
|
+
const localVarHeaderParameter = {} as any;
|
|
42977
|
+
const localVarQueryParameter = {} as any;
|
|
42978
|
+
|
|
42979
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
42980
|
+
|
|
42981
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
42982
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
42983
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
42984
|
+
localVarRequestOptions.data = serializeDataIfNeeded(redeemInputDTO, localVarRequestOptions, configuration);
|
|
42985
|
+
|
|
42986
|
+
return {
|
|
42987
|
+
url: toPathString(localVarUrlObj),
|
|
42988
|
+
options: localVarRequestOptions,
|
|
42989
|
+
};
|
|
42990
|
+
},
|
|
42991
|
+
/**
|
|
42992
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
|
|
42993
|
+
* @summary Revoke
|
|
42994
|
+
* @param {string} id
|
|
42995
|
+
* @param {*} [options] Override http request option.
|
|
42996
|
+
* @throws {RequiredError}
|
|
42997
|
+
*/
|
|
42998
|
+
inviteLinkControllerRevoke: async (id: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
42999
|
+
assertParamExists('inviteLinkControllerRevoke', 'id', id);
|
|
43000
|
+
const localVarPath = `/invite-link/{id}`.replace(`{${'id'}}`, encodeURIComponent(String(id)));
|
|
43001
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
43002
|
+
let baseOptions;
|
|
43003
|
+
if (configuration) {
|
|
43004
|
+
baseOptions = configuration.baseOptions;
|
|
43005
|
+
}
|
|
43006
|
+
|
|
43007
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
43008
|
+
const localVarHeaderParameter = {} as any;
|
|
43009
|
+
const localVarQueryParameter = {} as any;
|
|
43010
|
+
|
|
43011
|
+
// authentication domainAuth required
|
|
43012
|
+
|
|
43013
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
43014
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
43015
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
43016
|
+
|
|
43017
|
+
return {
|
|
43018
|
+
url: toPathString(localVarUrlObj),
|
|
43019
|
+
options: localVarRequestOptions,
|
|
43020
|
+
};
|
|
43021
|
+
},
|
|
43022
|
+
/**
|
|
43023
|
+
* Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
|
|
43024
|
+
* @summary Search
|
|
43025
|
+
* @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
|
|
43026
|
+
* @param {*} [options] Override http request option.
|
|
43027
|
+
* @throws {RequiredError}
|
|
43028
|
+
*/
|
|
43029
|
+
inviteLinkControllerSearch: async (
|
|
43030
|
+
inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO,
|
|
43031
|
+
options: RawAxiosRequestConfig = {},
|
|
43032
|
+
): Promise<RequestArgs> => {
|
|
43033
|
+
const localVarPath = `/invite-link/search`;
|
|
43034
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
43035
|
+
let baseOptions;
|
|
43036
|
+
if (configuration) {
|
|
43037
|
+
baseOptions = configuration.baseOptions;
|
|
43038
|
+
}
|
|
43039
|
+
|
|
43040
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
|
|
43041
|
+
const localVarHeaderParameter = {} as any;
|
|
43042
|
+
const localVarQueryParameter = {} as any;
|
|
43043
|
+
|
|
43044
|
+
// authentication domainAuth required
|
|
43045
|
+
|
|
43046
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
43047
|
+
|
|
43048
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
43049
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
43050
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
43051
|
+
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
43052
|
+
inviteLinkSearchInputDTO,
|
|
43053
|
+
localVarRequestOptions,
|
|
43054
|
+
configuration,
|
|
43055
|
+
);
|
|
43056
|
+
|
|
43057
|
+
return {
|
|
43058
|
+
url: toPathString(localVarUrlObj),
|
|
43059
|
+
options: localVarRequestOptions,
|
|
43060
|
+
};
|
|
43061
|
+
},
|
|
43062
|
+
};
|
|
43063
|
+
};
|
|
43064
|
+
|
|
43065
|
+
/**
|
|
43066
|
+
* InviteLinkApi - functional programming interface
|
|
43067
|
+
* @export
|
|
43068
|
+
*/
|
|
43069
|
+
export const InviteLinkApiFp = function (configuration?: Configuration) {
|
|
43070
|
+
const localVarAxiosParamCreator = InviteLinkApiAxiosParamCreator(configuration);
|
|
43071
|
+
return {
|
|
43072
|
+
/**
|
|
43073
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
|
|
43074
|
+
* @summary Create invite link
|
|
43075
|
+
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
43076
|
+
* @param {*} [options] Override http request option.
|
|
43077
|
+
* @throws {RequiredError}
|
|
43078
|
+
*/
|
|
43079
|
+
async inviteLinkControllerCreate(
|
|
43080
|
+
inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO,
|
|
43081
|
+
options?: RawAxiosRequestConfig,
|
|
43082
|
+
): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkCreateResultDTOAPI>> {
|
|
43083
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.inviteLinkControllerCreate(
|
|
43084
|
+
inviteLinkCreateInputDTO,
|
|
43085
|
+
options,
|
|
43086
|
+
);
|
|
43087
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
43088
|
+
const localVarOperationServerBasePath =
|
|
43089
|
+
operationServerMap['InviteLinkApi.inviteLinkControllerCreate']?.[localVarOperationServerIndex]?.url;
|
|
43090
|
+
return (axios, basePath) =>
|
|
43091
|
+
createRequestFunction(
|
|
43092
|
+
localVarAxiosArgs,
|
|
43093
|
+
globalAxios,
|
|
43094
|
+
BASE_PATH,
|
|
43095
|
+
configuration,
|
|
43096
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
43097
|
+
},
|
|
43098
|
+
/**
|
|
43099
|
+
* <br> OperationId: `InviteLinkControllerPreview`
|
|
43100
|
+
* @summary Preview
|
|
43101
|
+
* @param {string} token
|
|
43102
|
+
* @param {*} [options] Override http request option.
|
|
43103
|
+
* @throws {RequiredError}
|
|
43104
|
+
*/
|
|
43105
|
+
async inviteLinkControllerPreview(
|
|
43106
|
+
token: string,
|
|
43107
|
+
options?: RawAxiosRequestConfig,
|
|
43108
|
+
): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkPreviewDTOAPI>> {
|
|
43109
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.inviteLinkControllerPreview(token, options);
|
|
43110
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
43111
|
+
const localVarOperationServerBasePath =
|
|
43112
|
+
operationServerMap['InviteLinkApi.inviteLinkControllerPreview']?.[localVarOperationServerIndex]?.url;
|
|
43113
|
+
return (axios, basePath) =>
|
|
43114
|
+
createRequestFunction(
|
|
43115
|
+
localVarAxiosArgs,
|
|
43116
|
+
globalAxios,
|
|
43117
|
+
BASE_PATH,
|
|
43118
|
+
configuration,
|
|
43119
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
43120
|
+
},
|
|
43121
|
+
/**
|
|
43122
|
+
* <br> OperationId: `InviteLinkControllerRedeem`
|
|
43123
|
+
* @summary Redeem
|
|
43124
|
+
* @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
|
|
43125
|
+
* @param {*} [options] Override http request option.
|
|
43126
|
+
* @throws {RequiredError}
|
|
43127
|
+
*/
|
|
43128
|
+
async inviteLinkControllerRedeem(
|
|
43129
|
+
redeemInputDTO?: RedeemInputDTO,
|
|
43130
|
+
options?: RawAxiosRequestConfig,
|
|
43131
|
+
): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOutputWithRolesDTOAPI>> {
|
|
43132
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.inviteLinkControllerRedeem(redeemInputDTO, options);
|
|
43133
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
43134
|
+
const localVarOperationServerBasePath =
|
|
43135
|
+
operationServerMap['InviteLinkApi.inviteLinkControllerRedeem']?.[localVarOperationServerIndex]?.url;
|
|
43136
|
+
return (axios, basePath) =>
|
|
43137
|
+
createRequestFunction(
|
|
43138
|
+
localVarAxiosArgs,
|
|
43139
|
+
globalAxios,
|
|
43140
|
+
BASE_PATH,
|
|
43141
|
+
configuration,
|
|
43142
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
43143
|
+
},
|
|
43144
|
+
/**
|
|
43145
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
|
|
43146
|
+
* @summary Revoke
|
|
43147
|
+
* @param {string} id
|
|
43148
|
+
* @param {*} [options] Override http request option.
|
|
43149
|
+
* @throws {RequiredError}
|
|
43150
|
+
*/
|
|
43151
|
+
async inviteLinkControllerRevoke(
|
|
43152
|
+
id: string,
|
|
43153
|
+
options?: RawAxiosRequestConfig,
|
|
43154
|
+
): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>> {
|
|
43155
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.inviteLinkControllerRevoke(id, options);
|
|
43156
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
43157
|
+
const localVarOperationServerBasePath =
|
|
43158
|
+
operationServerMap['InviteLinkApi.inviteLinkControllerRevoke']?.[localVarOperationServerIndex]?.url;
|
|
43159
|
+
return (axios, basePath) =>
|
|
43160
|
+
createRequestFunction(
|
|
43161
|
+
localVarAxiosArgs,
|
|
43162
|
+
globalAxios,
|
|
43163
|
+
BASE_PATH,
|
|
43164
|
+
configuration,
|
|
43165
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
43166
|
+
},
|
|
43167
|
+
/**
|
|
43168
|
+
* Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
|
|
43169
|
+
* @summary Search
|
|
43170
|
+
* @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
|
|
43171
|
+
* @param {*} [options] Override http request option.
|
|
43172
|
+
* @throws {RequiredError}
|
|
43173
|
+
*/
|
|
43174
|
+
async inviteLinkControllerSearch(
|
|
43175
|
+
inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO,
|
|
43176
|
+
options?: RawAxiosRequestConfig,
|
|
43177
|
+
): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkOutputArrayDTOAPI>> {
|
|
43178
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.inviteLinkControllerSearch(
|
|
43179
|
+
inviteLinkSearchInputDTO,
|
|
43180
|
+
options,
|
|
43181
|
+
);
|
|
43182
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
43183
|
+
const localVarOperationServerBasePath =
|
|
43184
|
+
operationServerMap['InviteLinkApi.inviteLinkControllerSearch']?.[localVarOperationServerIndex]?.url;
|
|
43185
|
+
return (axios, basePath) =>
|
|
43186
|
+
createRequestFunction(
|
|
43187
|
+
localVarAxiosArgs,
|
|
43188
|
+
globalAxios,
|
|
43189
|
+
BASE_PATH,
|
|
43190
|
+
configuration,
|
|
43191
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
43192
|
+
},
|
|
43193
|
+
};
|
|
43194
|
+
};
|
|
43195
|
+
|
|
43196
|
+
/**
|
|
43197
|
+
* InviteLinkApi - factory interface
|
|
43198
|
+
* @export
|
|
43199
|
+
*/
|
|
43200
|
+
export const InviteLinkApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
43201
|
+
const localVarFp = InviteLinkApiFp(configuration);
|
|
43202
|
+
return {
|
|
43203
|
+
/**
|
|
43204
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
|
|
43205
|
+
* @summary Create invite link
|
|
43206
|
+
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
43207
|
+
* @param {*} [options] Override http request option.
|
|
43208
|
+
* @throws {RequiredError}
|
|
43209
|
+
*/
|
|
43210
|
+
inviteLinkControllerCreate(
|
|
43211
|
+
inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO,
|
|
43212
|
+
options?: RawAxiosRequestConfig,
|
|
43213
|
+
): AxiosPromise<InviteLinkCreateResultDTOAPI> {
|
|
43214
|
+
return localVarFp
|
|
43215
|
+
.inviteLinkControllerCreate(inviteLinkCreateInputDTO, options)
|
|
43216
|
+
.then((request) => request(axios, basePath));
|
|
43217
|
+
},
|
|
43218
|
+
/**
|
|
43219
|
+
* <br> OperationId: `InviteLinkControllerPreview`
|
|
43220
|
+
* @summary Preview
|
|
43221
|
+
* @param {string} token
|
|
43222
|
+
* @param {*} [options] Override http request option.
|
|
43223
|
+
* @throws {RequiredError}
|
|
43224
|
+
*/
|
|
43225
|
+
inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkPreviewDTOAPI> {
|
|
43226
|
+
return localVarFp.inviteLinkControllerPreview(token, options).then((request) => request(axios, basePath));
|
|
43227
|
+
},
|
|
43228
|
+
/**
|
|
43229
|
+
* <br> OperationId: `InviteLinkControllerRedeem`
|
|
43230
|
+
* @summary Redeem
|
|
43231
|
+
* @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
|
|
43232
|
+
* @param {*} [options] Override http request option.
|
|
43233
|
+
* @throws {RequiredError}
|
|
43234
|
+
*/
|
|
43235
|
+
inviteLinkControllerRedeem(
|
|
43236
|
+
redeemInputDTO?: RedeemInputDTO,
|
|
43237
|
+
options?: RawAxiosRequestConfig,
|
|
43238
|
+
): AxiosPromise<UserOutputWithRolesDTOAPI> {
|
|
43239
|
+
return localVarFp.inviteLinkControllerRedeem(redeemInputDTO, options).then((request) => request(axios, basePath));
|
|
43240
|
+
},
|
|
43241
|
+
/**
|
|
43242
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
|
|
43243
|
+
* @summary Revoke
|
|
43244
|
+
* @param {string} id
|
|
43245
|
+
* @param {*} [options] Override http request option.
|
|
43246
|
+
* @throws {RequiredError}
|
|
43247
|
+
*/
|
|
43248
|
+
inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput> {
|
|
43249
|
+
return localVarFp.inviteLinkControllerRevoke(id, options).then((request) => request(axios, basePath));
|
|
43250
|
+
},
|
|
43251
|
+
/**
|
|
43252
|
+
* Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
|
|
43253
|
+
* @summary Search
|
|
43254
|
+
* @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
|
|
43255
|
+
* @param {*} [options] Override http request option.
|
|
43256
|
+
* @throws {RequiredError}
|
|
43257
|
+
*/
|
|
43258
|
+
inviteLinkControllerSearch(
|
|
43259
|
+
inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO,
|
|
43260
|
+
options?: RawAxiosRequestConfig,
|
|
43261
|
+
): AxiosPromise<InviteLinkOutputArrayDTOAPI> {
|
|
43262
|
+
return localVarFp
|
|
43263
|
+
.inviteLinkControllerSearch(inviteLinkSearchInputDTO, options)
|
|
43264
|
+
.then((request) => request(axios, basePath));
|
|
43265
|
+
},
|
|
43266
|
+
};
|
|
43267
|
+
};
|
|
43268
|
+
|
|
43269
|
+
/**
|
|
43270
|
+
* InviteLinkApi - object-oriented interface
|
|
43271
|
+
* @export
|
|
43272
|
+
* @class InviteLinkApi
|
|
43273
|
+
* @extends {BaseAPI}
|
|
43274
|
+
*/
|
|
43275
|
+
export class InviteLinkApi extends BaseAPI {
|
|
43276
|
+
/**
|
|
43277
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
|
|
43278
|
+
* @summary Create invite link
|
|
43279
|
+
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
43280
|
+
* @param {*} [options] Override http request option.
|
|
43281
|
+
* @throws {RequiredError}
|
|
43282
|
+
* @memberof InviteLinkApi
|
|
43283
|
+
*/
|
|
43284
|
+
public inviteLinkControllerCreate(
|
|
43285
|
+
inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO,
|
|
43286
|
+
options?: RawAxiosRequestConfig,
|
|
43287
|
+
) {
|
|
43288
|
+
return InviteLinkApiFp(this.configuration)
|
|
43289
|
+
.inviteLinkControllerCreate(inviteLinkCreateInputDTO, options)
|
|
43290
|
+
.then((request) => request(this.axios, this.basePath));
|
|
43291
|
+
}
|
|
43292
|
+
|
|
43293
|
+
/**
|
|
43294
|
+
* <br> OperationId: `InviteLinkControllerPreview`
|
|
43295
|
+
* @summary Preview
|
|
43296
|
+
* @param {string} token
|
|
43297
|
+
* @param {*} [options] Override http request option.
|
|
43298
|
+
* @throws {RequiredError}
|
|
43299
|
+
* @memberof InviteLinkApi
|
|
43300
|
+
*/
|
|
43301
|
+
public inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig) {
|
|
43302
|
+
return InviteLinkApiFp(this.configuration)
|
|
43303
|
+
.inviteLinkControllerPreview(token, options)
|
|
43304
|
+
.then((request) => request(this.axios, this.basePath));
|
|
43305
|
+
}
|
|
43306
|
+
|
|
43307
|
+
/**
|
|
43308
|
+
* <br> OperationId: `InviteLinkControllerRedeem`
|
|
43309
|
+
* @summary Redeem
|
|
43310
|
+
* @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
|
|
43311
|
+
* @param {*} [options] Override http request option.
|
|
43312
|
+
* @throws {RequiredError}
|
|
43313
|
+
* @memberof InviteLinkApi
|
|
43314
|
+
*/
|
|
43315
|
+
public inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig) {
|
|
43316
|
+
return InviteLinkApiFp(this.configuration)
|
|
43317
|
+
.inviteLinkControllerRedeem(redeemInputDTO, options)
|
|
43318
|
+
.then((request) => request(this.axios, this.basePath));
|
|
43319
|
+
}
|
|
43320
|
+
|
|
43321
|
+
/**
|
|
43322
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
|
|
43323
|
+
* @summary Revoke
|
|
43324
|
+
* @param {string} id
|
|
43325
|
+
* @param {*} [options] Override http request option.
|
|
43326
|
+
* @throws {RequiredError}
|
|
43327
|
+
* @memberof InviteLinkApi
|
|
43328
|
+
*/
|
|
43329
|
+
public inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig) {
|
|
43330
|
+
return InviteLinkApiFp(this.configuration)
|
|
43331
|
+
.inviteLinkControllerRevoke(id, options)
|
|
43332
|
+
.then((request) => request(this.axios, this.basePath));
|
|
43333
|
+
}
|
|
43334
|
+
|
|
43335
|
+
/**
|
|
43336
|
+
* Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
|
|
43337
|
+
* @summary Search
|
|
43338
|
+
* @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
|
|
43339
|
+
* @param {*} [options] Override http request option.
|
|
43340
|
+
* @throws {RequiredError}
|
|
43341
|
+
* @memberof InviteLinkApi
|
|
43342
|
+
*/
|
|
43343
|
+
public inviteLinkControllerSearch(
|
|
43344
|
+
inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO,
|
|
43345
|
+
options?: RawAxiosRequestConfig,
|
|
43346
|
+
) {
|
|
43347
|
+
return InviteLinkApiFp(this.configuration)
|
|
43348
|
+
.inviteLinkControllerSearch(inviteLinkSearchInputDTO, options)
|
|
43349
|
+
.then((request) => request(this.axios, this.basePath));
|
|
43350
|
+
}
|
|
43351
|
+
}
|