@logto/cloud 0.2.5-632268d → 0.2.5-708b3e3
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 +48 -0
- package/package.json +1 -1
package/lib/routes/index.d.ts
CHANGED
|
@@ -335,6 +335,54 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
335
335
|
"/tenants/my/subscription/usage/:entityName/scopes": import("@withtyped/server").PathGuard<"/my/subscription/usage/:entityName/scopes", {
|
|
336
336
|
entityId?: string | undefined;
|
|
337
337
|
}, unknown, Record<string, number>>;
|
|
338
|
+
} & {
|
|
339
|
+
"/tenants/my/subscription-usage": import("@withtyped/server").PathGuard<"/my/subscription-usage", unknown, unknown, {
|
|
340
|
+
usage: {
|
|
341
|
+
mauLimit: number;
|
|
342
|
+
tokenLimit: number;
|
|
343
|
+
applicationsLimit: number;
|
|
344
|
+
machineToMachineLimit: number;
|
|
345
|
+
resourcesLimit: number;
|
|
346
|
+
scopesPerResourceLimit: number;
|
|
347
|
+
socialConnectorsLimit: number;
|
|
348
|
+
machineToMachineRolesLimit: number;
|
|
349
|
+
scopesPerRoleLimit: number;
|
|
350
|
+
hooksLimit: number;
|
|
351
|
+
mfaEnabled: boolean;
|
|
352
|
+
organizationsEnabled: boolean;
|
|
353
|
+
thirdPartyApplicationsLimit: number;
|
|
354
|
+
tenantMembersLimit: number;
|
|
355
|
+
customJwtEnabled: boolean;
|
|
356
|
+
subjectTokenEnabled: boolean;
|
|
357
|
+
bringYourUiEnabled: boolean;
|
|
358
|
+
userRolesLimit: number;
|
|
359
|
+
enterpriseSsoLimit: number;
|
|
360
|
+
};
|
|
361
|
+
resources: Record<string, number>;
|
|
362
|
+
roles: Record<string, number>;
|
|
363
|
+
quota: {
|
|
364
|
+
mauLimit: number | null;
|
|
365
|
+
tokenLimit: number | null;
|
|
366
|
+
applicationsLimit: number | null;
|
|
367
|
+
machineToMachineLimit: number | null;
|
|
368
|
+
resourcesLimit: number | null;
|
|
369
|
+
scopesPerResourceLimit: number | null;
|
|
370
|
+
socialConnectorsLimit: number | null;
|
|
371
|
+
machineToMachineRolesLimit: number | null;
|
|
372
|
+
scopesPerRoleLimit: number | null;
|
|
373
|
+
hooksLimit: number | null;
|
|
374
|
+
auditLogsRetentionDays: number | null;
|
|
375
|
+
mfaEnabled: boolean;
|
|
376
|
+
organizationsEnabled: boolean;
|
|
377
|
+
thirdPartyApplicationsLimit: number | null;
|
|
378
|
+
tenantMembersLimit: number | null;
|
|
379
|
+
customJwtEnabled: boolean;
|
|
380
|
+
subjectTokenEnabled: boolean;
|
|
381
|
+
bringYourUiEnabled: boolean;
|
|
382
|
+
userRolesLimit: number | null;
|
|
383
|
+
enterpriseSsoLimit: number | null;
|
|
384
|
+
};
|
|
385
|
+
}>;
|
|
338
386
|
} & {
|
|
339
387
|
"/tenants/:tenantId/subscription": import("@withtyped/server").PathGuard<"/:tenantId/subscription", unknown, unknown, {
|
|
340
388
|
status: "incomplete" | "incomplete_expired" | "trialing" | "active" | "past_due" | "canceled" | "unpaid" | "paused";
|