@logto/cloud 0.2.5-98514d7 → 0.2.5-9a1b047
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 +192 -25
- package/package.json +1 -1
package/lib/routes/index.d.ts
CHANGED
|
@@ -119,10 +119,13 @@ 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
|
+
tokenLimit: number | null;
|
|
125
|
+
};
|
|
122
126
|
createdAt: Date;
|
|
123
127
|
usage: {
|
|
124
128
|
activeUsers: number;
|
|
125
|
-
cost: number;
|
|
126
129
|
tokenUsage: number;
|
|
127
130
|
};
|
|
128
131
|
indicator: string;
|
|
@@ -134,6 +137,14 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
134
137
|
currentPeriodStart: Date;
|
|
135
138
|
currentPeriodEnd: Date;
|
|
136
139
|
id?: string | undefined;
|
|
140
|
+
upcomingInvoice?: {
|
|
141
|
+
subtotal: number;
|
|
142
|
+
subtotalExcludingTax: number | null;
|
|
143
|
+
total: number;
|
|
144
|
+
totalExcludingTax: number | null;
|
|
145
|
+
} | null | undefined;
|
|
146
|
+
isAddOnAvailable?: boolean | undefined;
|
|
147
|
+
isAddOnVisibleToLegacyUsers?: boolean | undefined;
|
|
137
148
|
};
|
|
138
149
|
regionName: RegionName;
|
|
139
150
|
tag: TenantTag;
|
|
@@ -159,10 +170,13 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
159
170
|
"/tenants": import("@withtyped/server").PathGuard<"/", unknown, unknown, {
|
|
160
171
|
id: string;
|
|
161
172
|
name: string;
|
|
173
|
+
quota: {
|
|
174
|
+
mauLimit: number | null;
|
|
175
|
+
tokenLimit: number | null;
|
|
176
|
+
};
|
|
162
177
|
createdAt: Date;
|
|
163
178
|
usage: {
|
|
164
179
|
activeUsers: number;
|
|
165
|
-
cost: number;
|
|
166
180
|
tokenUsage: number;
|
|
167
181
|
};
|
|
168
182
|
indicator: string;
|
|
@@ -174,6 +188,14 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
174
188
|
currentPeriodStart: Date;
|
|
175
189
|
currentPeriodEnd: Date;
|
|
176
190
|
id?: string | undefined;
|
|
191
|
+
upcomingInvoice?: {
|
|
192
|
+
subtotal: number;
|
|
193
|
+
subtotalExcludingTax: number | null;
|
|
194
|
+
total: number;
|
|
195
|
+
totalExcludingTax: number | null;
|
|
196
|
+
} | null | undefined;
|
|
197
|
+
isAddOnAvailable?: boolean | undefined;
|
|
198
|
+
isAddOnVisibleToLegacyUsers?: boolean | undefined;
|
|
177
199
|
};
|
|
178
200
|
regionName: RegionName;
|
|
179
201
|
tag: TenantTag;
|
|
@@ -202,10 +224,13 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
202
224
|
}, {
|
|
203
225
|
id: string;
|
|
204
226
|
name: string;
|
|
227
|
+
quota: {
|
|
228
|
+
mauLimit: number | null;
|
|
229
|
+
tokenLimit: number | null;
|
|
230
|
+
};
|
|
205
231
|
createdAt: Date;
|
|
206
232
|
usage: {
|
|
207
233
|
activeUsers: number;
|
|
208
|
-
cost: number;
|
|
209
234
|
tokenUsage: number;
|
|
210
235
|
};
|
|
211
236
|
indicator: string;
|
|
@@ -217,6 +242,14 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
217
242
|
currentPeriodStart: Date;
|
|
218
243
|
currentPeriodEnd: Date;
|
|
219
244
|
id?: string | undefined;
|
|
245
|
+
upcomingInvoice?: {
|
|
246
|
+
subtotal: number;
|
|
247
|
+
subtotalExcludingTax: number | null;
|
|
248
|
+
total: number;
|
|
249
|
+
totalExcludingTax: number | null;
|
|
250
|
+
} | null | undefined;
|
|
251
|
+
isAddOnAvailable?: boolean | undefined;
|
|
252
|
+
isAddOnVisibleToLegacyUsers?: boolean | undefined;
|
|
220
253
|
};
|
|
221
254
|
regionName: RegionName;
|
|
222
255
|
tag: TenantTag;
|
|
@@ -253,6 +286,14 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
253
286
|
currentPeriodStart: Date;
|
|
254
287
|
currentPeriodEnd: Date;
|
|
255
288
|
id?: string | undefined;
|
|
289
|
+
upcomingInvoice?: {
|
|
290
|
+
subtotal: number;
|
|
291
|
+
subtotalExcludingTax: number | null;
|
|
292
|
+
total: number;
|
|
293
|
+
totalExcludingTax: number | null;
|
|
294
|
+
} | null | undefined;
|
|
295
|
+
isAddOnAvailable?: boolean | undefined;
|
|
296
|
+
isAddOnVisibleToLegacyUsers?: boolean | undefined;
|
|
256
297
|
}>;
|
|
257
298
|
} & {
|
|
258
299
|
"/tenants/my/subscription/quota": import("@withtyped/server").PathGuard<"/my/subscription/quota", unknown, unknown, {
|
|
@@ -273,13 +314,12 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
273
314
|
tenantMembersLimit: number | null;
|
|
274
315
|
customJwtEnabled: boolean;
|
|
275
316
|
subjectTokenEnabled: boolean;
|
|
317
|
+
bringYourUiEnabled: boolean;
|
|
276
318
|
userRolesLimit: number | null;
|
|
277
319
|
enterpriseSsoLimit: number | null;
|
|
278
320
|
}>;
|
|
279
321
|
} & {
|
|
280
322
|
"/tenants/my/subscription/usage": import("@withtyped/server").PathGuard<"/my/subscription/usage", unknown, unknown, {
|
|
281
|
-
mauLimit: number;
|
|
282
|
-
tokenLimit: number;
|
|
283
323
|
applicationsLimit: number;
|
|
284
324
|
machineToMachineLimit: number;
|
|
285
325
|
resourcesLimit: number;
|
|
@@ -294,6 +334,7 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
294
334
|
tenantMembersLimit: number;
|
|
295
335
|
customJwtEnabled: boolean;
|
|
296
336
|
subjectTokenEnabled: boolean;
|
|
337
|
+
bringYourUiEnabled: boolean;
|
|
297
338
|
userRolesLimit: number;
|
|
298
339
|
enterpriseSsoLimit: number;
|
|
299
340
|
}>;
|
|
@@ -301,6 +342,57 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
301
342
|
"/tenants/my/subscription/usage/:entityName/scopes": import("@withtyped/server").PathGuard<"/my/subscription/usage/:entityName/scopes", {
|
|
302
343
|
entityId?: string | undefined;
|
|
303
344
|
}, unknown, Record<string, number>>;
|
|
345
|
+
} & {
|
|
346
|
+
"/tenants/my/subscription-usage": import("@withtyped/server").PathGuard<"/my/subscription-usage", unknown, unknown, {
|
|
347
|
+
usage: {
|
|
348
|
+
applicationsLimit: number;
|
|
349
|
+
machineToMachineLimit: number;
|
|
350
|
+
resourcesLimit: number;
|
|
351
|
+
scopesPerResourceLimit: number;
|
|
352
|
+
socialConnectorsLimit: number;
|
|
353
|
+
machineToMachineRolesLimit: number;
|
|
354
|
+
scopesPerRoleLimit: number;
|
|
355
|
+
hooksLimit: number;
|
|
356
|
+
mfaEnabled: boolean;
|
|
357
|
+
organizationsEnabled: boolean;
|
|
358
|
+
thirdPartyApplicationsLimit: number;
|
|
359
|
+
tenantMembersLimit: number;
|
|
360
|
+
customJwtEnabled: boolean;
|
|
361
|
+
subjectTokenEnabled: boolean;
|
|
362
|
+
bringYourUiEnabled: boolean;
|
|
363
|
+
userRolesLimit: number;
|
|
364
|
+
enterpriseSsoLimit: number;
|
|
365
|
+
};
|
|
366
|
+
resources: Record<string, number>;
|
|
367
|
+
roles: Record<string, number>;
|
|
368
|
+
quota: {
|
|
369
|
+
mauLimit: number | null;
|
|
370
|
+
tokenLimit: number | null;
|
|
371
|
+
applicationsLimit: number | null;
|
|
372
|
+
machineToMachineLimit: number | null;
|
|
373
|
+
resourcesLimit: number | null;
|
|
374
|
+
scopesPerResourceLimit: number | null;
|
|
375
|
+
socialConnectorsLimit: number | null;
|
|
376
|
+
machineToMachineRolesLimit: number | null;
|
|
377
|
+
scopesPerRoleLimit: number | null;
|
|
378
|
+
hooksLimit: number | null;
|
|
379
|
+
auditLogsRetentionDays: number | null;
|
|
380
|
+
mfaEnabled: boolean;
|
|
381
|
+
organizationsEnabled: boolean;
|
|
382
|
+
thirdPartyApplicationsLimit: number | null;
|
|
383
|
+
tenantMembersLimit: number | null;
|
|
384
|
+
customJwtEnabled: boolean;
|
|
385
|
+
subjectTokenEnabled: boolean;
|
|
386
|
+
bringYourUiEnabled: boolean;
|
|
387
|
+
userRolesLimit: number | null;
|
|
388
|
+
enterpriseSsoLimit: number | null;
|
|
389
|
+
};
|
|
390
|
+
}>;
|
|
391
|
+
} & {
|
|
392
|
+
"/tenants/my/subscription/periodic-usage": import("@withtyped/server").PathGuard<"/my/subscription/periodic-usage", unknown, unknown, {
|
|
393
|
+
mauLimit: number;
|
|
394
|
+
tokenLimit: number;
|
|
395
|
+
}>;
|
|
304
396
|
} & {
|
|
305
397
|
"/tenants/:tenantId/subscription": import("@withtyped/server").PathGuard<"/:tenantId/subscription", unknown, unknown, {
|
|
306
398
|
status: "incomplete" | "incomplete_expired" | "trialing" | "active" | "past_due" | "canceled" | "unpaid" | "paused";
|
|
@@ -308,6 +400,14 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
308
400
|
currentPeriodStart: Date;
|
|
309
401
|
currentPeriodEnd: Date;
|
|
310
402
|
id?: string | undefined;
|
|
403
|
+
upcomingInvoice?: {
|
|
404
|
+
subtotal: number;
|
|
405
|
+
subtotalExcludingTax: number | null;
|
|
406
|
+
total: number;
|
|
407
|
+
totalExcludingTax: number | null;
|
|
408
|
+
} | null | undefined;
|
|
409
|
+
isAddOnAvailable?: boolean | undefined;
|
|
410
|
+
isAddOnVisibleToLegacyUsers?: boolean | undefined;
|
|
311
411
|
}>;
|
|
312
412
|
} & {
|
|
313
413
|
"/tenants/:tenantId/subscription/quota": import("@withtyped/server").PathGuard<"/:tenantId/subscription/quota", unknown, unknown, {
|
|
@@ -328,13 +428,12 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
328
428
|
tenantMembersLimit: number | null;
|
|
329
429
|
customJwtEnabled: boolean;
|
|
330
430
|
subjectTokenEnabled: boolean;
|
|
431
|
+
bringYourUiEnabled: boolean;
|
|
331
432
|
userRolesLimit: number | null;
|
|
332
433
|
enterpriseSsoLimit: number | null;
|
|
333
434
|
}>;
|
|
334
435
|
} & {
|
|
335
436
|
"/tenants/:tenantId/subscription/usage": import("@withtyped/server").PathGuard<"/:tenantId/subscription/usage", unknown, unknown, {
|
|
336
|
-
mauLimit: number;
|
|
337
|
-
tokenLimit: number;
|
|
338
437
|
applicationsLimit: number;
|
|
339
438
|
machineToMachineLimit: number;
|
|
340
439
|
resourcesLimit: number;
|
|
@@ -349,6 +448,7 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
349
448
|
tenantMembersLimit: number;
|
|
350
449
|
customJwtEnabled: boolean;
|
|
351
450
|
subjectTokenEnabled: boolean;
|
|
451
|
+
bringYourUiEnabled: boolean;
|
|
352
452
|
userRolesLimit: number;
|
|
353
453
|
enterpriseSsoLimit: number;
|
|
354
454
|
}>;
|
|
@@ -356,6 +456,57 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
356
456
|
"/tenants/:tenantId/subscription/usage/:entityName/scopes": import("@withtyped/server").PathGuard<"/:tenantId/subscription/usage/:entityName/scopes", {
|
|
357
457
|
entityId?: string | undefined;
|
|
358
458
|
}, unknown, Record<string, number>>;
|
|
459
|
+
} & {
|
|
460
|
+
"/tenants/:tenantId/subscription-usage": import("@withtyped/server").PathGuard<"/:tenantId/subscription-usage", unknown, unknown, {
|
|
461
|
+
usage: {
|
|
462
|
+
applicationsLimit: number;
|
|
463
|
+
machineToMachineLimit: number;
|
|
464
|
+
resourcesLimit: number;
|
|
465
|
+
scopesPerResourceLimit: number;
|
|
466
|
+
socialConnectorsLimit: number;
|
|
467
|
+
machineToMachineRolesLimit: number;
|
|
468
|
+
scopesPerRoleLimit: number;
|
|
469
|
+
hooksLimit: number;
|
|
470
|
+
mfaEnabled: boolean;
|
|
471
|
+
organizationsEnabled: boolean;
|
|
472
|
+
thirdPartyApplicationsLimit: number;
|
|
473
|
+
tenantMembersLimit: number;
|
|
474
|
+
customJwtEnabled: boolean;
|
|
475
|
+
subjectTokenEnabled: boolean;
|
|
476
|
+
bringYourUiEnabled: boolean;
|
|
477
|
+
userRolesLimit: number;
|
|
478
|
+
enterpriseSsoLimit: number;
|
|
479
|
+
};
|
|
480
|
+
resources: Record<string, number>;
|
|
481
|
+
roles: Record<string, number>;
|
|
482
|
+
quota: {
|
|
483
|
+
mauLimit: number | null;
|
|
484
|
+
tokenLimit: number | null;
|
|
485
|
+
applicationsLimit: number | null;
|
|
486
|
+
machineToMachineLimit: number | null;
|
|
487
|
+
resourcesLimit: number | null;
|
|
488
|
+
scopesPerResourceLimit: number | null;
|
|
489
|
+
socialConnectorsLimit: number | null;
|
|
490
|
+
machineToMachineRolesLimit: number | null;
|
|
491
|
+
scopesPerRoleLimit: number | null;
|
|
492
|
+
hooksLimit: number | null;
|
|
493
|
+
auditLogsRetentionDays: number | null;
|
|
494
|
+
mfaEnabled: boolean;
|
|
495
|
+
organizationsEnabled: boolean;
|
|
496
|
+
thirdPartyApplicationsLimit: number | null;
|
|
497
|
+
tenantMembersLimit: number | null;
|
|
498
|
+
customJwtEnabled: boolean;
|
|
499
|
+
subjectTokenEnabled: boolean;
|
|
500
|
+
bringYourUiEnabled: boolean;
|
|
501
|
+
userRolesLimit: number | null;
|
|
502
|
+
enterpriseSsoLimit: number | null;
|
|
503
|
+
};
|
|
504
|
+
}>;
|
|
505
|
+
} & {
|
|
506
|
+
"/tenants/:tenantId/subscription/periodic-usage": import("@withtyped/server").PathGuard<"/:tenantId/subscription/periodic-usage", unknown, unknown, {
|
|
507
|
+
mauLimit: number;
|
|
508
|
+
tokenLimit: number;
|
|
509
|
+
}>;
|
|
359
510
|
} & {
|
|
360
511
|
"/tenants/:tenantId/invoices": import("@withtyped/server").PathGuard<"/:tenantId/invoices", unknown, unknown, {
|
|
361
512
|
invoices: {
|
|
@@ -373,20 +524,21 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
373
524
|
hostedInvoiceUrl: string | null;
|
|
374
525
|
invoicePdf: string | null;
|
|
375
526
|
planName: string | null;
|
|
527
|
+
skuId?: string | null | undefined;
|
|
376
528
|
}[];
|
|
377
529
|
}>;
|
|
378
530
|
} & {
|
|
379
531
|
"/tenants/:tenantId/invoices/:invoiceId/hosted-invoice-url": import("@withtyped/server").PathGuard<"/:tenantId/invoices/:invoiceId/hosted-invoice-url", unknown, unknown, {
|
|
380
532
|
hostedInvoiceUrl: string;
|
|
381
533
|
}>;
|
|
382
|
-
} & {
|
|
383
|
-
"/tenants/:tenantId/usage": import("@withtyped/server").PathGuard<"/:tenantId/usage", unknown, unknown, {
|
|
384
|
-
activeUsers: number;
|
|
385
|
-
cost: number;
|
|
386
|
-
tokenUsage: number;
|
|
387
|
-
}>;
|
|
388
534
|
};
|
|
389
535
|
post: {
|
|
536
|
+
"/tenants/my/subscription/item-updates": import("@withtyped/server").PathGuard<"/my/subscription/item-updates", unknown, {
|
|
537
|
+
usageKey: "tokenLimit" | "machineToMachineLimit" | "resourcesLimit" | "enterpriseSsoLimit" | "hooksLimit" | "tenantMembersLimit" | "mfaEnabled" | "organizationsEnabled";
|
|
538
|
+
}, {
|
|
539
|
+
message: string;
|
|
540
|
+
}>;
|
|
541
|
+
} & {
|
|
390
542
|
"/tenants/:tenantId/stripe-customer-portal": import("@withtyped/server").PathGuard<"/:tenantId/stripe-customer-portal", unknown, {
|
|
391
543
|
callbackUrl?: string | undefined;
|
|
392
544
|
}, {
|
|
@@ -501,6 +653,7 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
501
653
|
tenantMembersLimit: number | null;
|
|
502
654
|
customJwtEnabled: boolean;
|
|
503
655
|
subjectTokenEnabled: boolean;
|
|
656
|
+
bringYourUiEnabled: boolean;
|
|
504
657
|
};
|
|
505
658
|
stripeProducts: {
|
|
506
659
|
type: "flat" | "tier1" | "tier2" | "tier3";
|
|
@@ -533,24 +686,25 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
533
686
|
name: string | null;
|
|
534
687
|
quota: {
|
|
535
688
|
mauLimit?: number | null | undefined;
|
|
689
|
+
tokenLimit?: number | null | undefined;
|
|
536
690
|
applicationsLimit?: number | null | undefined;
|
|
537
|
-
|
|
691
|
+
machineToMachineLimit?: number | null | undefined;
|
|
692
|
+
resourcesLimit?: number | null | undefined;
|
|
538
693
|
scopesPerResourceLimit?: number | null | undefined;
|
|
539
694
|
socialConnectorsLimit?: number | null | undefined;
|
|
540
|
-
userRolesLimit?: number | null | undefined;
|
|
541
695
|
machineToMachineRolesLimit?: number | null | undefined;
|
|
542
696
|
scopesPerRoleLimit?: number | null | undefined;
|
|
543
697
|
hooksLimit?: number | null | undefined;
|
|
544
698
|
auditLogsRetentionDays?: number | null | undefined;
|
|
699
|
+
mfaEnabled?: boolean | undefined;
|
|
700
|
+
organizationsEnabled?: boolean | undefined;
|
|
701
|
+
thirdPartyApplicationsLimit?: number | null | undefined;
|
|
702
|
+
tenantMembersLimit?: number | null | undefined;
|
|
545
703
|
customJwtEnabled?: boolean | undefined;
|
|
546
704
|
subjectTokenEnabled?: boolean | undefined;
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
resourcesLimit?: number | null | undefined;
|
|
705
|
+
bringYourUiEnabled?: boolean | undefined;
|
|
706
|
+
userRolesLimit?: number | null | undefined;
|
|
550
707
|
enterpriseSsoLimit?: number | null | undefined;
|
|
551
|
-
tenantMembersLimit?: number | null | undefined;
|
|
552
|
-
mfaEnabled?: boolean | undefined;
|
|
553
|
-
organizationsEnabled?: boolean | undefined;
|
|
554
708
|
};
|
|
555
709
|
createdAt: Date;
|
|
556
710
|
updatedAt: Date;
|
|
@@ -574,6 +728,7 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
574
728
|
tenantId: string | null;
|
|
575
729
|
updatedAt: Date;
|
|
576
730
|
planId: string;
|
|
731
|
+
skuId: string | null;
|
|
577
732
|
}>;
|
|
578
733
|
};
|
|
579
734
|
post: {
|
|
@@ -582,10 +737,10 @@ declare const router: import("@withtyped/server").Router<RequestContext, WithAut
|
|
|
582
737
|
successCallbackUrl: string;
|
|
583
738
|
tenantId?: string | undefined;
|
|
584
739
|
skuId?: string | undefined;
|
|
585
|
-
cancelCallbackUrl?: string | undefined;
|
|
586
|
-
tenantTag?: TenantTag | undefined;
|
|
587
740
|
tenantName?: string | undefined;
|
|
741
|
+
tenantTag?: TenantTag | undefined;
|
|
588
742
|
tenantRegionName?: RegionName | undefined;
|
|
743
|
+
cancelCallbackUrl?: string | undefined;
|
|
589
744
|
}, {
|
|
590
745
|
sessionId: string;
|
|
591
746
|
redirectUri?: string | null | undefined;
|
|
@@ -769,7 +924,7 @@ export declare const tenantAuthRouter: import("@withtyped/server").Router<Reques
|
|
|
769
924
|
};
|
|
770
925
|
post: {
|
|
771
926
|
"/:tenantId/invitations": import("@withtyped/server").PathGuard<"/:tenantId/invitations", unknown, {
|
|
772
|
-
invitee: string;
|
|
927
|
+
invitee: string | string[];
|
|
773
928
|
roleName: TenantRole;
|
|
774
929
|
expiresAt?: number | undefined;
|
|
775
930
|
}, {
|
|
@@ -784,7 +939,19 @@ export declare const tenantAuthRouter: import("@withtyped/server").Router<Reques
|
|
|
784
939
|
organizationId: string;
|
|
785
940
|
expiresAt: number;
|
|
786
941
|
organizationRoles: OrganizationRoleEntity[];
|
|
787
|
-
}
|
|
942
|
+
} | {
|
|
943
|
+
id: string;
|
|
944
|
+
createdAt: number;
|
|
945
|
+
status: OrganizationInvitationStatus;
|
|
946
|
+
tenantId: string;
|
|
947
|
+
updatedAt: number;
|
|
948
|
+
inviterId: string | null;
|
|
949
|
+
invitee: string;
|
|
950
|
+
acceptedUserId: string | null;
|
|
951
|
+
organizationId: string;
|
|
952
|
+
expiresAt: number;
|
|
953
|
+
organizationRoles: OrganizationRoleEntity[];
|
|
954
|
+
}[]>;
|
|
788
955
|
} & {
|
|
789
956
|
"/:tenantId/invitations/:invitationId/message": import("@withtyped/server").PathGuard<"/:tenantId/invitations/:invitationId/message", unknown, unknown, unknown>;
|
|
790
957
|
};
|