@logto/cloud 0.2.5-71b7fea → 0.2.5-93f5b5e
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/lib/routes/index.d.ts +5 -5
- package/package.json +1 -1
package/lib/routes/index.d.ts
CHANGED
|
@@ -195,6 +195,8 @@ declare const router: import("@withtyped/server").Router<WithAuthContext, import
|
|
|
195
195
|
planName: string | null;
|
|
196
196
|
}[];
|
|
197
197
|
}>;
|
|
198
|
+
} & {
|
|
199
|
+
"/tenants/:tenantId/invoices/:invoiceId/hosted-invoice-url": import("@withtyped/server").PathGuard<"/:tenantId/invoices/:invoiceId/hosted-invoice-url", unknown, unknown, string>;
|
|
198
200
|
} & {
|
|
199
201
|
"/tenants/:tenantId/usage": import("@withtyped/server").PathGuard<"/:tenantId/usage", unknown, unknown, {
|
|
200
202
|
activeUsers: number;
|
|
@@ -228,13 +230,13 @@ declare const router: import("@withtyped/server").Router<WithAuthContext, import
|
|
|
228
230
|
"/services/mails": import("@withtyped/server").PathGuard<"/mails", unknown, {
|
|
229
231
|
data: {
|
|
230
232
|
type: VerificationCodeType;
|
|
231
|
-
to: string;
|
|
232
233
|
payload: {
|
|
233
234
|
senderName?: string | undefined;
|
|
234
235
|
companyInformation?: string | undefined;
|
|
235
236
|
appLogo?: string | undefined;
|
|
236
237
|
code: string;
|
|
237
238
|
};
|
|
239
|
+
to: string;
|
|
238
240
|
};
|
|
239
241
|
}, unknown>;
|
|
240
242
|
} & {
|
|
@@ -243,9 +245,6 @@ declare const router: import("@withtyped/server").Router<WithAuthContext, import
|
|
|
243
245
|
type: VerificationCodeType;
|
|
244
246
|
to: string;
|
|
245
247
|
payload: {
|
|
246
|
-
senderName?: string | undefined;
|
|
247
|
-
companyInformation?: string | undefined;
|
|
248
|
-
appLogo?: string | undefined;
|
|
249
248
|
code: string;
|
|
250
249
|
};
|
|
251
250
|
};
|
|
@@ -278,6 +277,7 @@ declare const router: import("@withtyped/server").Router<WithAuthContext, import
|
|
|
278
277
|
scopesPerRoleLimit: number | null;
|
|
279
278
|
hooksLimit: number | null;
|
|
280
279
|
auditLogsRetentionDays: number | null;
|
|
280
|
+
mfaEnabled: boolean;
|
|
281
281
|
};
|
|
282
282
|
stripeProducts: {
|
|
283
283
|
description?: string | undefined;
|
|
@@ -304,8 +304,8 @@ declare const router: import("@withtyped/server").Router<WithAuthContext, import
|
|
|
304
304
|
patch: {};
|
|
305
305
|
get: {
|
|
306
306
|
"/my/tenant": import("@withtyped/server").PathGuard<"/tenant", unknown, unknown, {
|
|
307
|
-
name: string;
|
|
308
307
|
id: string;
|
|
308
|
+
name: string;
|
|
309
309
|
indicator: string;
|
|
310
310
|
isSuspended: boolean;
|
|
311
311
|
tag: TenantTag;
|