@logto/cloud 0.2.5-98514d7 → 0.2.5-a1a4d0e
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 +189 -28
- package/package.json +1 -1
package/lib/routes/index.d.ts
CHANGED
|
@@ -119,11 +119,12 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
119
119
|
}, {
|
|
120
120
|
id: string;
|
|
121
121
|
name: string;
|
|
122
|
+
quota: {
|
|
123
|
+
mauLimit: number | null;
|
|
124
|
+
};
|
|
122
125
|
createdAt: Date;
|
|
123
126
|
usage: {
|
|
124
127
|
activeUsers: number;
|
|
125
|
-
cost: number;
|
|
126
|
-
tokenUsage: number;
|
|
127
128
|
};
|
|
128
129
|
indicator: string;
|
|
129
130
|
isSuspended: boolean;
|
|
@@ -134,6 +135,14 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
134
135
|
currentPeriodStart: Date;
|
|
135
136
|
currentPeriodEnd: Date;
|
|
136
137
|
id?: string | undefined;
|
|
138
|
+
upcomingInvoice?: {
|
|
139
|
+
subtotal: number;
|
|
140
|
+
subtotalExcludingTax: number | null;
|
|
141
|
+
total: number;
|
|
142
|
+
totalExcludingTax: number | null;
|
|
143
|
+
} | null | undefined;
|
|
144
|
+
isAddOnAvailable?: boolean | undefined;
|
|
145
|
+
isAddOnVisibleToLegacyUsers?: boolean | undefined;
|
|
137
146
|
};
|
|
138
147
|
regionName: RegionName;
|
|
139
148
|
tag: TenantTag;
|
|
@@ -159,11 +168,12 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
159
168
|
"/tenants": import("@withtyped/server").PathGuard<"/", unknown, unknown, {
|
|
160
169
|
id: string;
|
|
161
170
|
name: string;
|
|
171
|
+
quota: {
|
|
172
|
+
mauLimit: number | null;
|
|
173
|
+
};
|
|
162
174
|
createdAt: Date;
|
|
163
175
|
usage: {
|
|
164
176
|
activeUsers: number;
|
|
165
|
-
cost: number;
|
|
166
|
-
tokenUsage: number;
|
|
167
177
|
};
|
|
168
178
|
indicator: string;
|
|
169
179
|
isSuspended: boolean;
|
|
@@ -174,6 +184,14 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
174
184
|
currentPeriodStart: Date;
|
|
175
185
|
currentPeriodEnd: Date;
|
|
176
186
|
id?: string | undefined;
|
|
187
|
+
upcomingInvoice?: {
|
|
188
|
+
subtotal: number;
|
|
189
|
+
subtotalExcludingTax: number | null;
|
|
190
|
+
total: number;
|
|
191
|
+
totalExcludingTax: number | null;
|
|
192
|
+
} | null | undefined;
|
|
193
|
+
isAddOnAvailable?: boolean | undefined;
|
|
194
|
+
isAddOnVisibleToLegacyUsers?: boolean | undefined;
|
|
177
195
|
};
|
|
178
196
|
regionName: RegionName;
|
|
179
197
|
tag: TenantTag;
|
|
@@ -202,11 +220,12 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
202
220
|
}, {
|
|
203
221
|
id: string;
|
|
204
222
|
name: string;
|
|
223
|
+
quota: {
|
|
224
|
+
mauLimit: number | null;
|
|
225
|
+
};
|
|
205
226
|
createdAt: Date;
|
|
206
227
|
usage: {
|
|
207
228
|
activeUsers: number;
|
|
208
|
-
cost: number;
|
|
209
|
-
tokenUsage: number;
|
|
210
229
|
};
|
|
211
230
|
indicator: string;
|
|
212
231
|
isSuspended: boolean;
|
|
@@ -217,6 +236,14 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
217
236
|
currentPeriodStart: Date;
|
|
218
237
|
currentPeriodEnd: Date;
|
|
219
238
|
id?: string | undefined;
|
|
239
|
+
upcomingInvoice?: {
|
|
240
|
+
subtotal: number;
|
|
241
|
+
subtotalExcludingTax: number | null;
|
|
242
|
+
total: number;
|
|
243
|
+
totalExcludingTax: number | null;
|
|
244
|
+
} | null | undefined;
|
|
245
|
+
isAddOnAvailable?: boolean | undefined;
|
|
246
|
+
isAddOnVisibleToLegacyUsers?: boolean | undefined;
|
|
220
247
|
};
|
|
221
248
|
regionName: RegionName;
|
|
222
249
|
tag: TenantTag;
|
|
@@ -253,6 +280,14 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
253
280
|
currentPeriodStart: Date;
|
|
254
281
|
currentPeriodEnd: Date;
|
|
255
282
|
id?: string | undefined;
|
|
283
|
+
upcomingInvoice?: {
|
|
284
|
+
subtotal: number;
|
|
285
|
+
subtotalExcludingTax: number | null;
|
|
286
|
+
total: number;
|
|
287
|
+
totalExcludingTax: number | null;
|
|
288
|
+
} | null | undefined;
|
|
289
|
+
isAddOnAvailable?: boolean | undefined;
|
|
290
|
+
isAddOnVisibleToLegacyUsers?: boolean | undefined;
|
|
256
291
|
}>;
|
|
257
292
|
} & {
|
|
258
293
|
"/tenants/my/subscription/quota": import("@withtyped/server").PathGuard<"/my/subscription/quota", unknown, unknown, {
|
|
@@ -273,13 +308,12 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
273
308
|
tenantMembersLimit: number | null;
|
|
274
309
|
customJwtEnabled: boolean;
|
|
275
310
|
subjectTokenEnabled: boolean;
|
|
311
|
+
bringYourUiEnabled: boolean;
|
|
276
312
|
userRolesLimit: number | null;
|
|
277
313
|
enterpriseSsoLimit: number | null;
|
|
278
314
|
}>;
|
|
279
315
|
} & {
|
|
280
316
|
"/tenants/my/subscription/usage": import("@withtyped/server").PathGuard<"/my/subscription/usage", unknown, unknown, {
|
|
281
|
-
mauLimit: number;
|
|
282
|
-
tokenLimit: number;
|
|
283
317
|
applicationsLimit: number;
|
|
284
318
|
machineToMachineLimit: number;
|
|
285
319
|
resourcesLimit: number;
|
|
@@ -294,6 +328,7 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
294
328
|
tenantMembersLimit: number;
|
|
295
329
|
customJwtEnabled: boolean;
|
|
296
330
|
subjectTokenEnabled: boolean;
|
|
331
|
+
bringYourUiEnabled: boolean;
|
|
297
332
|
userRolesLimit: number;
|
|
298
333
|
enterpriseSsoLimit: number;
|
|
299
334
|
}>;
|
|
@@ -301,6 +336,57 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
301
336
|
"/tenants/my/subscription/usage/:entityName/scopes": import("@withtyped/server").PathGuard<"/my/subscription/usage/:entityName/scopes", {
|
|
302
337
|
entityId?: string | undefined;
|
|
303
338
|
}, unknown, Record<string, number>>;
|
|
339
|
+
} & {
|
|
340
|
+
"/tenants/my/subscription-usage": import("@withtyped/server").PathGuard<"/my/subscription-usage", unknown, unknown, {
|
|
341
|
+
usage: {
|
|
342
|
+
applicationsLimit: number;
|
|
343
|
+
machineToMachineLimit: number;
|
|
344
|
+
resourcesLimit: number;
|
|
345
|
+
scopesPerResourceLimit: number;
|
|
346
|
+
socialConnectorsLimit: number;
|
|
347
|
+
machineToMachineRolesLimit: number;
|
|
348
|
+
scopesPerRoleLimit: number;
|
|
349
|
+
hooksLimit: number;
|
|
350
|
+
mfaEnabled: boolean;
|
|
351
|
+
organizationsEnabled: boolean;
|
|
352
|
+
thirdPartyApplicationsLimit: number;
|
|
353
|
+
tenantMembersLimit: number;
|
|
354
|
+
customJwtEnabled: boolean;
|
|
355
|
+
subjectTokenEnabled: boolean;
|
|
356
|
+
bringYourUiEnabled: boolean;
|
|
357
|
+
userRolesLimit: number;
|
|
358
|
+
enterpriseSsoLimit: number;
|
|
359
|
+
};
|
|
360
|
+
resources: Record<string, number>;
|
|
361
|
+
roles: Record<string, number>;
|
|
362
|
+
quota: {
|
|
363
|
+
mauLimit: number | null;
|
|
364
|
+
tokenLimit: number | null;
|
|
365
|
+
applicationsLimit: number | null;
|
|
366
|
+
machineToMachineLimit: number | null;
|
|
367
|
+
resourcesLimit: number | null;
|
|
368
|
+
scopesPerResourceLimit: number | null;
|
|
369
|
+
socialConnectorsLimit: number | null;
|
|
370
|
+
machineToMachineRolesLimit: number | null;
|
|
371
|
+
scopesPerRoleLimit: number | null;
|
|
372
|
+
hooksLimit: number | null;
|
|
373
|
+
auditLogsRetentionDays: number | null;
|
|
374
|
+
mfaEnabled: boolean;
|
|
375
|
+
organizationsEnabled: boolean;
|
|
376
|
+
thirdPartyApplicationsLimit: number | null;
|
|
377
|
+
tenantMembersLimit: number | null;
|
|
378
|
+
customJwtEnabled: boolean;
|
|
379
|
+
subjectTokenEnabled: boolean;
|
|
380
|
+
bringYourUiEnabled: boolean;
|
|
381
|
+
userRolesLimit: number | null;
|
|
382
|
+
enterpriseSsoLimit: number | null;
|
|
383
|
+
};
|
|
384
|
+
}>;
|
|
385
|
+
} & {
|
|
386
|
+
"/tenants/my/subscription/periodic-usage": import("@withtyped/server").PathGuard<"/my/subscription/periodic-usage", unknown, unknown, {
|
|
387
|
+
mauLimit: number;
|
|
388
|
+
tokenLimit: number;
|
|
389
|
+
}>;
|
|
304
390
|
} & {
|
|
305
391
|
"/tenants/:tenantId/subscription": import("@withtyped/server").PathGuard<"/:tenantId/subscription", unknown, unknown, {
|
|
306
392
|
status: "incomplete" | "incomplete_expired" | "trialing" | "active" | "past_due" | "canceled" | "unpaid" | "paused";
|
|
@@ -308,6 +394,14 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
308
394
|
currentPeriodStart: Date;
|
|
309
395
|
currentPeriodEnd: Date;
|
|
310
396
|
id?: string | undefined;
|
|
397
|
+
upcomingInvoice?: {
|
|
398
|
+
subtotal: number;
|
|
399
|
+
subtotalExcludingTax: number | null;
|
|
400
|
+
total: number;
|
|
401
|
+
totalExcludingTax: number | null;
|
|
402
|
+
} | null | undefined;
|
|
403
|
+
isAddOnAvailable?: boolean | undefined;
|
|
404
|
+
isAddOnVisibleToLegacyUsers?: boolean | undefined;
|
|
311
405
|
}>;
|
|
312
406
|
} & {
|
|
313
407
|
"/tenants/:tenantId/subscription/quota": import("@withtyped/server").PathGuard<"/:tenantId/subscription/quota", unknown, unknown, {
|
|
@@ -328,13 +422,12 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
328
422
|
tenantMembersLimit: number | null;
|
|
329
423
|
customJwtEnabled: boolean;
|
|
330
424
|
subjectTokenEnabled: boolean;
|
|
425
|
+
bringYourUiEnabled: boolean;
|
|
331
426
|
userRolesLimit: number | null;
|
|
332
427
|
enterpriseSsoLimit: number | null;
|
|
333
428
|
}>;
|
|
334
429
|
} & {
|
|
335
430
|
"/tenants/:tenantId/subscription/usage": import("@withtyped/server").PathGuard<"/:tenantId/subscription/usage", unknown, unknown, {
|
|
336
|
-
mauLimit: number;
|
|
337
|
-
tokenLimit: number;
|
|
338
431
|
applicationsLimit: number;
|
|
339
432
|
machineToMachineLimit: number;
|
|
340
433
|
resourcesLimit: number;
|
|
@@ -349,6 +442,7 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
349
442
|
tenantMembersLimit: number;
|
|
350
443
|
customJwtEnabled: boolean;
|
|
351
444
|
subjectTokenEnabled: boolean;
|
|
445
|
+
bringYourUiEnabled: boolean;
|
|
352
446
|
userRolesLimit: number;
|
|
353
447
|
enterpriseSsoLimit: number;
|
|
354
448
|
}>;
|
|
@@ -356,6 +450,57 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
356
450
|
"/tenants/:tenantId/subscription/usage/:entityName/scopes": import("@withtyped/server").PathGuard<"/:tenantId/subscription/usage/:entityName/scopes", {
|
|
357
451
|
entityId?: string | undefined;
|
|
358
452
|
}, unknown, Record<string, number>>;
|
|
453
|
+
} & {
|
|
454
|
+
"/tenants/:tenantId/subscription-usage": import("@withtyped/server").PathGuard<"/:tenantId/subscription-usage", unknown, unknown, {
|
|
455
|
+
usage: {
|
|
456
|
+
applicationsLimit: number;
|
|
457
|
+
machineToMachineLimit: number;
|
|
458
|
+
resourcesLimit: number;
|
|
459
|
+
scopesPerResourceLimit: number;
|
|
460
|
+
socialConnectorsLimit: number;
|
|
461
|
+
machineToMachineRolesLimit: number;
|
|
462
|
+
scopesPerRoleLimit: number;
|
|
463
|
+
hooksLimit: number;
|
|
464
|
+
mfaEnabled: boolean;
|
|
465
|
+
organizationsEnabled: boolean;
|
|
466
|
+
thirdPartyApplicationsLimit: number;
|
|
467
|
+
tenantMembersLimit: number;
|
|
468
|
+
customJwtEnabled: boolean;
|
|
469
|
+
subjectTokenEnabled: boolean;
|
|
470
|
+
bringYourUiEnabled: boolean;
|
|
471
|
+
userRolesLimit: number;
|
|
472
|
+
enterpriseSsoLimit: number;
|
|
473
|
+
};
|
|
474
|
+
resources: Record<string, number>;
|
|
475
|
+
roles: Record<string, number>;
|
|
476
|
+
quota: {
|
|
477
|
+
mauLimit: number | null;
|
|
478
|
+
tokenLimit: number | null;
|
|
479
|
+
applicationsLimit: number | null;
|
|
480
|
+
machineToMachineLimit: number | null;
|
|
481
|
+
resourcesLimit: number | null;
|
|
482
|
+
scopesPerResourceLimit: number | null;
|
|
483
|
+
socialConnectorsLimit: number | null;
|
|
484
|
+
machineToMachineRolesLimit: number | null;
|
|
485
|
+
scopesPerRoleLimit: number | null;
|
|
486
|
+
hooksLimit: number | null;
|
|
487
|
+
auditLogsRetentionDays: number | null;
|
|
488
|
+
mfaEnabled: boolean;
|
|
489
|
+
organizationsEnabled: boolean;
|
|
490
|
+
thirdPartyApplicationsLimit: number | null;
|
|
491
|
+
tenantMembersLimit: number | null;
|
|
492
|
+
customJwtEnabled: boolean;
|
|
493
|
+
subjectTokenEnabled: boolean;
|
|
494
|
+
bringYourUiEnabled: boolean;
|
|
495
|
+
userRolesLimit: number | null;
|
|
496
|
+
enterpriseSsoLimit: number | null;
|
|
497
|
+
};
|
|
498
|
+
}>;
|
|
499
|
+
} & {
|
|
500
|
+
"/tenants/:tenantId/subscription/periodic-usage": import("@withtyped/server").PathGuard<"/:tenantId/subscription/periodic-usage", unknown, unknown, {
|
|
501
|
+
mauLimit: number;
|
|
502
|
+
tokenLimit: number;
|
|
503
|
+
}>;
|
|
359
504
|
} & {
|
|
360
505
|
"/tenants/:tenantId/invoices": import("@withtyped/server").PathGuard<"/:tenantId/invoices", unknown, unknown, {
|
|
361
506
|
invoices: {
|
|
@@ -373,20 +518,21 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
373
518
|
hostedInvoiceUrl: string | null;
|
|
374
519
|
invoicePdf: string | null;
|
|
375
520
|
planName: string | null;
|
|
521
|
+
skuId?: string | null | undefined;
|
|
376
522
|
}[];
|
|
377
523
|
}>;
|
|
378
524
|
} & {
|
|
379
525
|
"/tenants/:tenantId/invoices/:invoiceId/hosted-invoice-url": import("@withtyped/server").PathGuard<"/:tenantId/invoices/:invoiceId/hosted-invoice-url", unknown, unknown, {
|
|
380
526
|
hostedInvoiceUrl: string;
|
|
381
527
|
}>;
|
|
382
|
-
} & {
|
|
383
|
-
"/tenants/:tenantId/usage": import("@withtyped/server").PathGuard<"/:tenantId/usage", unknown, unknown, {
|
|
384
|
-
activeUsers: number;
|
|
385
|
-
cost: number;
|
|
386
|
-
tokenUsage: number;
|
|
387
|
-
}>;
|
|
388
528
|
};
|
|
389
529
|
post: {
|
|
530
|
+
"/tenants/my/subscription/item-updates": import("@withtyped/server").PathGuard<"/my/subscription/item-updates", unknown, {
|
|
531
|
+
usageKey: "tokenLimit" | "machineToMachineLimit" | "resourcesLimit" | "enterpriseSsoLimit" | "hooksLimit" | "tenantMembersLimit" | "mfaEnabled" | "organizationsEnabled";
|
|
532
|
+
}, {
|
|
533
|
+
message: string;
|
|
534
|
+
}>;
|
|
535
|
+
} & {
|
|
390
536
|
"/tenants/:tenantId/stripe-customer-portal": import("@withtyped/server").PathGuard<"/:tenantId/stripe-customer-portal", unknown, {
|
|
391
537
|
callbackUrl?: string | undefined;
|
|
392
538
|
}, {
|
|
@@ -501,6 +647,7 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
501
647
|
tenantMembersLimit: number | null;
|
|
502
648
|
customJwtEnabled: boolean;
|
|
503
649
|
subjectTokenEnabled: boolean;
|
|
650
|
+
bringYourUiEnabled: boolean;
|
|
504
651
|
};
|
|
505
652
|
stripeProducts: {
|
|
506
653
|
type: "flat" | "tier1" | "tier2" | "tier3";
|
|
@@ -533,24 +680,25 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
533
680
|
name: string | null;
|
|
534
681
|
quota: {
|
|
535
682
|
mauLimit?: number | null | undefined;
|
|
683
|
+
tokenLimit?: number | null | undefined;
|
|
536
684
|
applicationsLimit?: number | null | undefined;
|
|
537
|
-
|
|
685
|
+
machineToMachineLimit?: number | null | undefined;
|
|
686
|
+
resourcesLimit?: number | null | undefined;
|
|
538
687
|
scopesPerResourceLimit?: number | null | undefined;
|
|
539
688
|
socialConnectorsLimit?: number | null | undefined;
|
|
540
|
-
userRolesLimit?: number | null | undefined;
|
|
541
689
|
machineToMachineRolesLimit?: number | null | undefined;
|
|
542
690
|
scopesPerRoleLimit?: number | null | undefined;
|
|
543
691
|
hooksLimit?: number | null | undefined;
|
|
544
692
|
auditLogsRetentionDays?: number | null | undefined;
|
|
693
|
+
mfaEnabled?: boolean | undefined;
|
|
694
|
+
organizationsEnabled?: boolean | undefined;
|
|
695
|
+
thirdPartyApplicationsLimit?: number | null | undefined;
|
|
696
|
+
tenantMembersLimit?: number | null | undefined;
|
|
545
697
|
customJwtEnabled?: boolean | undefined;
|
|
546
698
|
subjectTokenEnabled?: boolean | undefined;
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
resourcesLimit?: number | null | undefined;
|
|
699
|
+
bringYourUiEnabled?: boolean | undefined;
|
|
700
|
+
userRolesLimit?: number | null | undefined;
|
|
550
701
|
enterpriseSsoLimit?: number | null | undefined;
|
|
551
|
-
tenantMembersLimit?: number | null | undefined;
|
|
552
|
-
mfaEnabled?: boolean | undefined;
|
|
553
|
-
organizationsEnabled?: boolean | undefined;
|
|
554
702
|
};
|
|
555
703
|
createdAt: Date;
|
|
556
704
|
updatedAt: Date;
|
|
@@ -574,6 +722,7 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
574
722
|
tenantId: string | null;
|
|
575
723
|
updatedAt: Date;
|
|
576
724
|
planId: string;
|
|
725
|
+
skuId: string | null;
|
|
577
726
|
}>;
|
|
578
727
|
};
|
|
579
728
|
post: {
|
|
@@ -582,10 +731,10 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
582
731
|
successCallbackUrl: string;
|
|
583
732
|
tenantId?: string | undefined;
|
|
584
733
|
skuId?: string | undefined;
|
|
585
|
-
cancelCallbackUrl?: string | undefined;
|
|
586
|
-
tenantTag?: TenantTag | undefined;
|
|
587
734
|
tenantName?: string | undefined;
|
|
735
|
+
tenantTag?: TenantTag | undefined;
|
|
588
736
|
tenantRegionName?: RegionName | undefined;
|
|
737
|
+
cancelCallbackUrl?: string | undefined;
|
|
589
738
|
}, {
|
|
590
739
|
sessionId: string;
|
|
591
740
|
redirectUri?: string | null | undefined;
|
|
@@ -769,7 +918,7 @@ export declare const tenantAuthRouter: import("@withtyped/server").Router<Reques
|
|
|
769
918
|
};
|
|
770
919
|
post: {
|
|
771
920
|
"/:tenantId/invitations": import("@withtyped/server").PathGuard<"/:tenantId/invitations", unknown, {
|
|
772
|
-
invitee: string;
|
|
921
|
+
invitee: string | string[];
|
|
773
922
|
roleName: TenantRole;
|
|
774
923
|
expiresAt?: number | undefined;
|
|
775
924
|
}, {
|
|
@@ -784,7 +933,19 @@ export declare const tenantAuthRouter: import("@withtyped/server").Router<Reques
|
|
|
784
933
|
organizationId: string;
|
|
785
934
|
expiresAt: number;
|
|
786
935
|
organizationRoles: OrganizationRoleEntity[];
|
|
787
|
-
}
|
|
936
|
+
} | {
|
|
937
|
+
id: string;
|
|
938
|
+
createdAt: number;
|
|
939
|
+
status: OrganizationInvitationStatus;
|
|
940
|
+
tenantId: string;
|
|
941
|
+
updatedAt: number;
|
|
942
|
+
inviterId: string | null;
|
|
943
|
+
invitee: string;
|
|
944
|
+
acceptedUserId: string | null;
|
|
945
|
+
organizationId: string;
|
|
946
|
+
expiresAt: number;
|
|
947
|
+
organizationRoles: OrganizationRoleEntity[];
|
|
948
|
+
}[]>;
|
|
788
949
|
} & {
|
|
789
950
|
"/:tenantId/invitations/:invitationId/message": import("@withtyped/server").PathGuard<"/:tenantId/invitations/:invitationId/message", unknown, unknown, unknown>;
|
|
790
951
|
};
|