@idp.global/interfaces 1.0.1
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/changelog.md +16 -0
- package/dist_ts/00_commitinfo_data.d.ts +8 -0
- package/dist_ts/00_commitinfo_data.js +9 -0
- package/dist_ts/data/abusewindow.d.ts +13 -0
- package/dist_ts/data/abusewindow.js +2 -0
- package/dist_ts/data/activity.d.ts +16 -0
- package/dist_ts/data/activity.js +2 -0
- package/dist_ts/data/alert.d.ts +31 -0
- package/dist_ts/data/alert.js +2 -0
- package/dist_ts/data/alertrule.d.ts +19 -0
- package/dist_ts/data/alertrule.js +2 -0
- package/dist_ts/data/app.d.ts +86 -0
- package/dist_ts/data/app.js +2 -0
- package/dist_ts/data/appconnection.d.ts +16 -0
- package/dist_ts/data/appconnection.js +2 -0
- package/dist_ts/data/billingplan.d.ts +43 -0
- package/dist_ts/data/billingplan.js +2 -0
- package/dist_ts/data/device.d.ts +3 -0
- package/dist_ts/data/device.js +2 -0
- package/dist_ts/data/emailactiontoken.d.ts +11 -0
- package/dist_ts/data/emailactiontoken.js +2 -0
- package/dist_ts/data/index.d.ts +21 -0
- package/dist_ts/data/index.js +22 -0
- package/dist_ts/data/jwt.d.ts +38 -0
- package/dist_ts/data/jwt.js +2 -0
- package/dist_ts/data/loginsession.d.ts +38 -0
- package/dist_ts/data/loginsession.js +2 -0
- package/dist_ts/data/oidc.d.ts +248 -0
- package/dist_ts/data/oidc.js +5 -0
- package/dist_ts/data/organization.d.ts +11 -0
- package/dist_ts/data/organization.js +4 -0
- package/dist_ts/data/paddlecheckoutdata.d.ts +316 -0
- package/dist_ts/data/paddlecheckoutdata.js +2 -0
- package/dist_ts/data/passportchallenge.d.ts +68 -0
- package/dist_ts/data/passportchallenge.js +2 -0
- package/dist_ts/data/passportdevice.d.ts +34 -0
- package/dist_ts/data/passportdevice.js +2 -0
- package/dist_ts/data/passportnonce.d.ts +9 -0
- package/dist_ts/data/passportnonce.js +2 -0
- package/dist_ts/data/property.d.ts +10 -0
- package/dist_ts/data/property.js +3 -0
- package/dist_ts/data/registrationsession.d.ts +25 -0
- package/dist_ts/data/registrationsession.js +2 -0
- package/dist_ts/data/role.d.ts +28 -0
- package/dist_ts/data/role.js +2 -0
- package/dist_ts/data/user.d.ts +32 -0
- package/dist_ts/data/user.js +3 -0
- package/dist_ts/data/userinvitation.d.ts +45 -0
- package/dist_ts/data/userinvitation.js +2 -0
- package/dist_ts/index.d.ts +4 -0
- package/dist_ts/index.js +6 -0
- package/dist_ts/plugins.d.ts +4 -0
- package/dist_ts/plugins.js +7 -0
- package/dist_ts/request/admin.d.ts +100 -0
- package/dist_ts/request/admin.js +3 -0
- package/dist_ts/request/alert.d.ts +78 -0
- package/dist_ts/request/alert.js +3 -0
- package/dist_ts/request/apitoken.d.ts +1 -0
- package/dist_ts/request/apitoken.js +2 -0
- package/dist_ts/request/app.d.ts +48 -0
- package/dist_ts/request/app.js +3 -0
- package/dist_ts/request/authorization.d.ts +57 -0
- package/dist_ts/request/authorization.js +4 -0
- package/dist_ts/request/billingplan.d.ts +40 -0
- package/dist_ts/request/billingplan.js +3 -0
- package/dist_ts/request/index.d.ts +14 -0
- package/dist_ts/request/index.js +15 -0
- package/dist_ts/request/jwt.d.ts +63 -0
- package/dist_ts/request/jwt.js +3 -0
- package/dist_ts/request/login.d.ts +126 -0
- package/dist_ts/request/login.js +3 -0
- package/dist_ts/request/organization.d.ts +96 -0
- package/dist_ts/request/organization.js +3 -0
- package/dist_ts/request/passport.d.ts +169 -0
- package/dist_ts/request/passport.js +3 -0
- package/dist_ts/request/plan.d.ts +12 -0
- package/dist_ts/request/plan.js +3 -0
- package/dist_ts/request/registration.d.ts +65 -0
- package/dist_ts/request/registration.js +3 -0
- package/dist_ts/request/user.d.ts +101 -0
- package/dist_ts/request/user.js +3 -0
- package/dist_ts/request/userinvitation.d.ts +193 -0
- package/dist_ts/request/userinvitation.js +3 -0
- package/dist_ts/tags/index.d.ts +7 -0
- package/dist_ts/tags/index.js +2 -0
- package/license +21 -0
- package/package.json +57 -0
- package/readme.md +101 -0
- package/ts/00_commitinfo_data.ts +8 -0
- package/ts/data/abusewindow.ts +13 -0
- package/ts/data/activity.ts +36 -0
- package/ts/data/alert.ts +35 -0
- package/ts/data/alertrule.ts +22 -0
- package/ts/data/app.ts +99 -0
- package/ts/data/appconnection.ts +18 -0
- package/ts/data/billingplan.ts +47 -0
- package/ts/data/device.ts +3 -0
- package/ts/data/emailactiontoken.ts +12 -0
- package/ts/data/index.ts +21 -0
- package/ts/data/jwt.ts +43 -0
- package/ts/data/loginsession.ts +38 -0
- package/ts/data/oidc.ts +281 -0
- package/ts/data/organization.ts +14 -0
- package/ts/data/paddlecheckoutdata.ts +316 -0
- package/ts/data/passportchallenge.ts +80 -0
- package/ts/data/passportdevice.ts +46 -0
- package/ts/data/passportnonce.ts +9 -0
- package/ts/data/property.ts +12 -0
- package/ts/data/registrationsession.ts +31 -0
- package/ts/data/role.ts +33 -0
- package/ts/data/user.ts +36 -0
- package/ts/data/userinvitation.ts +58 -0
- package/ts/index.ts +6 -0
- package/ts/plugins.ts +9 -0
- package/ts/readme.md +133 -0
- package/ts/request/admin.ts +130 -0
- package/ts/request/alert.ts +113 -0
- package/ts/request/apitoken.ts +1 -0
- package/ts/request/app.ts +71 -0
- package/ts/request/authorization.ts +72 -0
- package/ts/request/billingplan.ts +55 -0
- package/ts/request/index.ts +14 -0
- package/ts/request/jwt.ts +79 -0
- package/ts/request/login.ts +181 -0
- package/ts/request/organization.ts +131 -0
- package/ts/request/passport.ts +227 -0
- package/ts/request/plan.ts +17 -0
- package/ts/request/registration.ts +90 -0
- package/ts/request/user.ts +142 -0
- package/ts/request/userinvitation.ts +248 -0
- package/ts/tags/index.ts +12 -0
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
import * as data from '../data/index.js';
|
|
2
|
+
import * as plugins from '../plugins.js';
|
|
3
|
+
|
|
4
|
+
export interface IReq_GetUserData
|
|
5
|
+
extends plugins.typedRequestInterfaces.implementsTR<
|
|
6
|
+
plugins.typedRequestInterfaces.ITypedRequest,
|
|
7
|
+
IReq_GetUserData
|
|
8
|
+
> {
|
|
9
|
+
method: 'getUserData';
|
|
10
|
+
request: {
|
|
11
|
+
refreshToken: string;
|
|
12
|
+
};
|
|
13
|
+
response: {
|
|
14
|
+
jwt: string;
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export interface IReq_SetUserData
|
|
19
|
+
extends plugins.typedRequestInterfaces.implementsTR<
|
|
20
|
+
plugins.typedRequestInterfaces.ITypedRequest,
|
|
21
|
+
IReq_SetUserData
|
|
22
|
+
> {
|
|
23
|
+
method: 'setUserData';
|
|
24
|
+
request: {
|
|
25
|
+
refreshToken: string;
|
|
26
|
+
};
|
|
27
|
+
response: {
|
|
28
|
+
oneTimeTransferCode: string;
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export interface IReq_SuspendUser
|
|
33
|
+
extends plugins.typedRequestInterfaces.implementsTR<
|
|
34
|
+
plugins.typedRequestInterfaces.ITypedRequest,
|
|
35
|
+
IReq_SuspendUser
|
|
36
|
+
> {
|
|
37
|
+
method: 'suspendUser';
|
|
38
|
+
request: {
|
|
39
|
+
jwt: string;
|
|
40
|
+
userId: string;
|
|
41
|
+
};
|
|
42
|
+
response: {
|
|
43
|
+
publicKeyPem: string;
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
export interface IDeleteSuspendedUser
|
|
48
|
+
extends plugins.typedRequestInterfaces.implementsTR<
|
|
49
|
+
plugins.typedRequestInterfaces.ITypedRequest,
|
|
50
|
+
IDeleteSuspendedUser
|
|
51
|
+
> {
|
|
52
|
+
method: 'deleteSuspendedUser';
|
|
53
|
+
request: {
|
|
54
|
+
backendToken: string;
|
|
55
|
+
};
|
|
56
|
+
response: {
|
|
57
|
+
ok: boolean;
|
|
58
|
+
errorText?: string;
|
|
59
|
+
};
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export interface IReq_GetRolesAndOrganizationsForUserId
|
|
63
|
+
extends plugins.typedRequestInterfaces.implementsTR<
|
|
64
|
+
plugins.typedRequestInterfaces.ITypedRequest,
|
|
65
|
+
IReq_GetRolesAndOrganizationsForUserId
|
|
66
|
+
> {
|
|
67
|
+
method: 'getRolesAndOrganizationsForUserId';
|
|
68
|
+
request: {
|
|
69
|
+
jwt: string;
|
|
70
|
+
userId: string;
|
|
71
|
+
};
|
|
72
|
+
response: {
|
|
73
|
+
roles: data.IRole[];
|
|
74
|
+
organizations: data.IOrganization[];
|
|
75
|
+
};
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
export interface IReq_WhoIs {
|
|
79
|
+
method: 'whoIs';
|
|
80
|
+
request: {
|
|
81
|
+
jwt: string;
|
|
82
|
+
};
|
|
83
|
+
response: {
|
|
84
|
+
user: data.IUser;
|
|
85
|
+
};
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
export interface IReq_GetUserSessions
|
|
89
|
+
extends plugins.typedRequestInterfaces.implementsTR<
|
|
90
|
+
plugins.typedRequestInterfaces.ITypedRequest,
|
|
91
|
+
IReq_GetUserSessions
|
|
92
|
+
> {
|
|
93
|
+
method: 'getUserSessions';
|
|
94
|
+
request: {
|
|
95
|
+
jwt: string;
|
|
96
|
+
};
|
|
97
|
+
response: {
|
|
98
|
+
sessions: Array<{
|
|
99
|
+
id: string;
|
|
100
|
+
deviceId: string;
|
|
101
|
+
deviceName: string;
|
|
102
|
+
browser: string;
|
|
103
|
+
os: string;
|
|
104
|
+
ip: string;
|
|
105
|
+
lastActive: number;
|
|
106
|
+
createdAt: number;
|
|
107
|
+
isCurrent: boolean;
|
|
108
|
+
}>;
|
|
109
|
+
};
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
export interface IReq_RevokeSession
|
|
113
|
+
extends plugins.typedRequestInterfaces.implementsTR<
|
|
114
|
+
plugins.typedRequestInterfaces.ITypedRequest,
|
|
115
|
+
IReq_RevokeSession
|
|
116
|
+
> {
|
|
117
|
+
method: 'revokeSession';
|
|
118
|
+
request: {
|
|
119
|
+
jwt: string;
|
|
120
|
+
sessionId: string;
|
|
121
|
+
};
|
|
122
|
+
response: {
|
|
123
|
+
success: boolean;
|
|
124
|
+
};
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
export interface IReq_GetUserActivity
|
|
128
|
+
extends plugins.typedRequestInterfaces.implementsTR<
|
|
129
|
+
plugins.typedRequestInterfaces.ITypedRequest,
|
|
130
|
+
IReq_GetUserActivity
|
|
131
|
+
> {
|
|
132
|
+
method: 'getUserActivity';
|
|
133
|
+
request: {
|
|
134
|
+
jwt: string;
|
|
135
|
+
limit?: number;
|
|
136
|
+
offset?: number;
|
|
137
|
+
};
|
|
138
|
+
response: {
|
|
139
|
+
activities: data.IActivityLog[];
|
|
140
|
+
total: number;
|
|
141
|
+
};
|
|
142
|
+
}
|
|
@@ -0,0 +1,248 @@
|
|
|
1
|
+
import * as data from '../data/index.js';
|
|
2
|
+
import * as plugins from '../plugins.js';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Create an invitation to join an organization
|
|
6
|
+
*/
|
|
7
|
+
export interface IReq_CreateInvitation
|
|
8
|
+
extends plugins.typedRequestInterfaces.implementsTR<
|
|
9
|
+
plugins.typedRequestInterfaces.ITypedRequest,
|
|
10
|
+
IReq_CreateInvitation
|
|
11
|
+
> {
|
|
12
|
+
method: 'createInvitation';
|
|
13
|
+
request: {
|
|
14
|
+
jwt: string;
|
|
15
|
+
organizationId: string;
|
|
16
|
+
email: string;
|
|
17
|
+
roles: string[];
|
|
18
|
+
};
|
|
19
|
+
response: {
|
|
20
|
+
success: boolean;
|
|
21
|
+
invitation?: data.IUserInvitation;
|
|
22
|
+
message?: string;
|
|
23
|
+
/** True if a new invitation was created, false if email was added to existing */
|
|
24
|
+
isNew: boolean;
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* Get pending invitations for an organization
|
|
30
|
+
*/
|
|
31
|
+
export interface IReq_GetOrgInvitations
|
|
32
|
+
extends plugins.typedRequestInterfaces.implementsTR<
|
|
33
|
+
plugins.typedRequestInterfaces.ITypedRequest,
|
|
34
|
+
IReq_GetOrgInvitations
|
|
35
|
+
> {
|
|
36
|
+
method: 'getOrgInvitations';
|
|
37
|
+
request: {
|
|
38
|
+
jwt: string;
|
|
39
|
+
organizationId: string;
|
|
40
|
+
};
|
|
41
|
+
response: {
|
|
42
|
+
invitations: data.IUserInvitation[];
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Get members of an organization (users with roles)
|
|
48
|
+
*/
|
|
49
|
+
export interface IReq_GetOrgMembers
|
|
50
|
+
extends plugins.typedRequestInterfaces.implementsTR<
|
|
51
|
+
plugins.typedRequestInterfaces.ITypedRequest,
|
|
52
|
+
IReq_GetOrgMembers
|
|
53
|
+
> {
|
|
54
|
+
method: 'getOrgMembers';
|
|
55
|
+
request: {
|
|
56
|
+
jwt: string;
|
|
57
|
+
organizationId: string;
|
|
58
|
+
};
|
|
59
|
+
response: {
|
|
60
|
+
members: Array<{
|
|
61
|
+
user: data.IUser;
|
|
62
|
+
role: data.IRole;
|
|
63
|
+
}>;
|
|
64
|
+
};
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* Cancel a pending invitation
|
|
69
|
+
*/
|
|
70
|
+
export interface IReq_CancelInvitation
|
|
71
|
+
extends plugins.typedRequestInterfaces.implementsTR<
|
|
72
|
+
plugins.typedRequestInterfaces.ITypedRequest,
|
|
73
|
+
IReq_CancelInvitation
|
|
74
|
+
> {
|
|
75
|
+
method: 'cancelInvitation';
|
|
76
|
+
request: {
|
|
77
|
+
jwt: string;
|
|
78
|
+
organizationId: string;
|
|
79
|
+
invitationId: string;
|
|
80
|
+
};
|
|
81
|
+
response: {
|
|
82
|
+
success: boolean;
|
|
83
|
+
message?: string;
|
|
84
|
+
};
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
/**
|
|
88
|
+
* Resend invitation email
|
|
89
|
+
*/
|
|
90
|
+
export interface IReq_ResendInvitation
|
|
91
|
+
extends plugins.typedRequestInterfaces.implementsTR<
|
|
92
|
+
plugins.typedRequestInterfaces.ITypedRequest,
|
|
93
|
+
IReq_ResendInvitation
|
|
94
|
+
> {
|
|
95
|
+
method: 'resendInvitation';
|
|
96
|
+
request: {
|
|
97
|
+
jwt: string;
|
|
98
|
+
organizationId: string;
|
|
99
|
+
invitationId: string;
|
|
100
|
+
};
|
|
101
|
+
response: {
|
|
102
|
+
success: boolean;
|
|
103
|
+
message?: string;
|
|
104
|
+
};
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
/**
|
|
108
|
+
* Remove a member from an organization
|
|
109
|
+
*/
|
|
110
|
+
export interface IReq_RemoveMember
|
|
111
|
+
extends plugins.typedRequestInterfaces.implementsTR<
|
|
112
|
+
plugins.typedRequestInterfaces.ITypedRequest,
|
|
113
|
+
IReq_RemoveMember
|
|
114
|
+
> {
|
|
115
|
+
method: 'removeMember';
|
|
116
|
+
request: {
|
|
117
|
+
jwt: string;
|
|
118
|
+
organizationId: string;
|
|
119
|
+
userId: string;
|
|
120
|
+
};
|
|
121
|
+
response: {
|
|
122
|
+
success: boolean;
|
|
123
|
+
message?: string;
|
|
124
|
+
};
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
/**
|
|
128
|
+
* Update a member's roles
|
|
129
|
+
*/
|
|
130
|
+
export interface IReq_UpdateMemberRoles
|
|
131
|
+
extends plugins.typedRequestInterfaces.implementsTR<
|
|
132
|
+
plugins.typedRequestInterfaces.ITypedRequest,
|
|
133
|
+
IReq_UpdateMemberRoles
|
|
134
|
+
> {
|
|
135
|
+
method: 'updateMemberRoles';
|
|
136
|
+
request: {
|
|
137
|
+
jwt: string;
|
|
138
|
+
organizationId: string;
|
|
139
|
+
userId: string;
|
|
140
|
+
roles: string[];
|
|
141
|
+
};
|
|
142
|
+
response: {
|
|
143
|
+
success: boolean;
|
|
144
|
+
role?: data.IRole;
|
|
145
|
+
message?: string;
|
|
146
|
+
};
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
/**
|
|
150
|
+
* Transfer organization ownership to another member
|
|
151
|
+
*/
|
|
152
|
+
export interface IReq_TransferOwnership
|
|
153
|
+
extends plugins.typedRequestInterfaces.implementsTR<
|
|
154
|
+
plugins.typedRequestInterfaces.ITypedRequest,
|
|
155
|
+
IReq_TransferOwnership
|
|
156
|
+
> {
|
|
157
|
+
method: 'transferOwnership';
|
|
158
|
+
request: {
|
|
159
|
+
jwt: string;
|
|
160
|
+
organizationId: string;
|
|
161
|
+
newOwnerId: string;
|
|
162
|
+
confirmationText: string;
|
|
163
|
+
};
|
|
164
|
+
response: {
|
|
165
|
+
success: boolean;
|
|
166
|
+
message?: string;
|
|
167
|
+
};
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
/**
|
|
171
|
+
* Accept an invitation (called during registration or email verification)
|
|
172
|
+
*/
|
|
173
|
+
export interface IReq_AcceptInvitation
|
|
174
|
+
extends plugins.typedRequestInterfaces.implementsTR<
|
|
175
|
+
plugins.typedRequestInterfaces.ITypedRequest,
|
|
176
|
+
IReq_AcceptInvitation
|
|
177
|
+
> {
|
|
178
|
+
method: 'acceptInvitation';
|
|
179
|
+
request: {
|
|
180
|
+
token: string;
|
|
181
|
+
userId: string;
|
|
182
|
+
};
|
|
183
|
+
response: {
|
|
184
|
+
success: boolean;
|
|
185
|
+
organizations?: data.IOrganization[];
|
|
186
|
+
roles?: data.IRole[];
|
|
187
|
+
message?: string;
|
|
188
|
+
};
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
/**
|
|
192
|
+
* Get invitation by token (for invitation landing page)
|
|
193
|
+
*/
|
|
194
|
+
export interface IReq_GetInvitationByToken
|
|
195
|
+
extends plugins.typedRequestInterfaces.implementsTR<
|
|
196
|
+
plugins.typedRequestInterfaces.ITypedRequest,
|
|
197
|
+
IReq_GetInvitationByToken
|
|
198
|
+
> {
|
|
199
|
+
method: 'getInvitationByToken';
|
|
200
|
+
request: {
|
|
201
|
+
token: string;
|
|
202
|
+
};
|
|
203
|
+
response: {
|
|
204
|
+
invitation?: data.IUserInvitation;
|
|
205
|
+
organizations?: Array<{
|
|
206
|
+
id: string;
|
|
207
|
+
name: string;
|
|
208
|
+
}>;
|
|
209
|
+
isExpired: boolean;
|
|
210
|
+
requiresRegistration: boolean;
|
|
211
|
+
};
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
/**
|
|
215
|
+
* Bulk create invitations from a list (typically from CSV import)
|
|
216
|
+
*/
|
|
217
|
+
export interface IReq_BulkCreateInvitations
|
|
218
|
+
extends plugins.typedRequestInterfaces.implementsTR<
|
|
219
|
+
plugins.typedRequestInterfaces.ITypedRequest,
|
|
220
|
+
IReq_BulkCreateInvitations
|
|
221
|
+
> {
|
|
222
|
+
method: 'bulkCreateInvitations';
|
|
223
|
+
request: {
|
|
224
|
+
jwt: string;
|
|
225
|
+
organizationId: string;
|
|
226
|
+
invitations: Array<{
|
|
227
|
+
email: string;
|
|
228
|
+
roles?: string[];
|
|
229
|
+
}>;
|
|
230
|
+
defaultRoles: string[];
|
|
231
|
+
};
|
|
232
|
+
response: {
|
|
233
|
+
success: boolean;
|
|
234
|
+
results: Array<{
|
|
235
|
+
email: string;
|
|
236
|
+
success: boolean;
|
|
237
|
+
status: 'invited' | 'already_member' | 'invalid_email' | 'error';
|
|
238
|
+
message?: string;
|
|
239
|
+
}>;
|
|
240
|
+
summary: {
|
|
241
|
+
total: number;
|
|
242
|
+
invited: number;
|
|
243
|
+
alreadyMembers: number;
|
|
244
|
+
invalid: number;
|
|
245
|
+
errors: number;
|
|
246
|
+
};
|
|
247
|
+
};
|
|
248
|
+
}
|
package/ts/tags/index.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as plugins from '../plugins.js';
|
|
2
|
+
|
|
3
|
+
export interface ITag_LolePubapi
|
|
4
|
+
extends plugins.typedRequestInterfaces.implementsTag<
|
|
5
|
+
plugins.typedRequestInterfaces.ITag,
|
|
6
|
+
ITag_LolePubapi
|
|
7
|
+
> {
|
|
8
|
+
name: 'lole-reception';
|
|
9
|
+
payload: {
|
|
10
|
+
backendToken: string;
|
|
11
|
+
};
|
|
12
|
+
}
|