@memnexus-ai/typescript-sdk 1.39.12 → 1.40.2
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/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -268,6 +268,7 @@ declare class AdminService extends BaseService {
|
|
|
268
268
|
invites?: {
|
|
269
269
|
id?: string;
|
|
270
270
|
code?: string;
|
|
271
|
+
email?: string;
|
|
271
272
|
label?: string;
|
|
272
273
|
maxUses?: number;
|
|
273
274
|
currentUses?: number;
|
|
@@ -283,6 +284,7 @@ declare class AdminService extends BaseService {
|
|
|
283
284
|
* @param body - Request body
|
|
284
285
|
*/
|
|
285
286
|
adminCreateInviteCode(body: {
|
|
287
|
+
email: string;
|
|
286
288
|
label: string;
|
|
287
289
|
maxUses?: number;
|
|
288
290
|
code?: string;
|
|
@@ -323,6 +325,7 @@ declare class AdminService extends BaseService {
|
|
|
323
325
|
adminGetInviteCode(code: string): Promise<HttpResponse<{
|
|
324
326
|
id?: string;
|
|
325
327
|
code?: string;
|
|
328
|
+
email?: string;
|
|
326
329
|
label?: string;
|
|
327
330
|
maxUses?: number;
|
|
328
331
|
currentUses?: number;
|
|
@@ -5895,6 +5898,7 @@ declare class InvitesService extends BaseService {
|
|
|
5895
5898
|
*/
|
|
5896
5899
|
validateInviteCode(body: {
|
|
5897
5900
|
code: string;
|
|
5901
|
+
email: string;
|
|
5898
5902
|
}): Promise<HttpResponse<{
|
|
5899
5903
|
valid?: boolean;
|
|
5900
5904
|
error?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -268,6 +268,7 @@ declare class AdminService extends BaseService {
|
|
|
268
268
|
invites?: {
|
|
269
269
|
id?: string;
|
|
270
270
|
code?: string;
|
|
271
|
+
email?: string;
|
|
271
272
|
label?: string;
|
|
272
273
|
maxUses?: number;
|
|
273
274
|
currentUses?: number;
|
|
@@ -283,6 +284,7 @@ declare class AdminService extends BaseService {
|
|
|
283
284
|
* @param body - Request body
|
|
284
285
|
*/
|
|
285
286
|
adminCreateInviteCode(body: {
|
|
287
|
+
email: string;
|
|
286
288
|
label: string;
|
|
287
289
|
maxUses?: number;
|
|
288
290
|
code?: string;
|
|
@@ -323,6 +325,7 @@ declare class AdminService extends BaseService {
|
|
|
323
325
|
adminGetInviteCode(code: string): Promise<HttpResponse<{
|
|
324
326
|
id?: string;
|
|
325
327
|
code?: string;
|
|
328
|
+
email?: string;
|
|
326
329
|
label?: string;
|
|
327
330
|
maxUses?: number;
|
|
328
331
|
currentUses?: number;
|
|
@@ -5895,6 +5898,7 @@ declare class InvitesService extends BaseService {
|
|
|
5895
5898
|
*/
|
|
5896
5899
|
validateInviteCode(body: {
|
|
5897
5900
|
code: string;
|
|
5901
|
+
email: string;
|
|
5898
5902
|
}): Promise<HttpResponse<{
|
|
5899
5903
|
valid?: boolean;
|
|
5900
5904
|
error?: string;
|