@logto/cloud 0.2.5-cbbfdc2 → 0.2.5-d28a065

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.
@@ -0,0 +1,423 @@
1
+ // Generated by dts-bundle-generator v9.0.0
2
+
3
+ import { RequestContext } from '@withtyped/server';
4
+ import { InferModelType } from '@withtyped/server/model';
5
+
6
+ export type WithAuthContext<Context = RequestContext> = Context & {
7
+ auth: {
8
+ id: string;
9
+ scopes: string[];
10
+ };
11
+ };
12
+ declare enum VerificationCodeType {
13
+ SignIn = "SignIn",
14
+ Register = "Register",
15
+ ForgotPassword = "ForgotPassword",
16
+ Generic = "Generic",
17
+ /** @deprecated Use `Generic` type template for sending test sms/email use case */
18
+ Test = "Test"
19
+ }
20
+ declare enum TenantTag {
21
+ Development = "development",
22
+ Staging = "staging",
23
+ Production = "production"
24
+ }
25
+ declare const AffiliateProperties: import("@withtyped/server/lib/model/index.js").default<"affiliate_properties", {
26
+ createdAt: Date;
27
+ affiliateId: string;
28
+ type: "hostname" | "query";
29
+ value: string;
30
+ }, "createdAt", "createdAt">;
31
+ export type AffiliateProperty = InferModelType<typeof AffiliateProperties>;
32
+ declare const Affiliates: import("@withtyped/server/lib/model/index.js").default<"affiliates", {
33
+ id: string;
34
+ createdAt: Date;
35
+ name: string;
36
+ }, "createdAt" | "id", "createdAt" | "id">;
37
+ export type Affiliate = InferModelType<typeof Affiliates>;
38
+ export type AffiliateData = Affiliate & {
39
+ properties: Array<Pick<AffiliateProperty, "type" | "value">>;
40
+ };
41
+ declare const router: import("@withtyped/server").Router<WithAuthContext, import("@withtyped/server").MergeRoutes<import("@withtyped/server").MergeRoutes<import("@withtyped/server").MergeRoutes<import("@withtyped/server").MergeRoutes<import("@withtyped/server").MergeRoutes<import("@withtyped/server").MergeRoutes<import("@withtyped/server").MergeRoutes<import("@withtyped/server").MergeRoutes<import("@withtyped/server").BaseRoutes, import("@withtyped/server").RoutesWithPrefix<{
42
+ options: {};
43
+ patch: {
44
+ "/tenants/:tenantId": import("@withtyped/server").PathGuard<"/:tenantId", unknown, {
45
+ name?: string | undefined;
46
+ }, {
47
+ id: string;
48
+ name: string;
49
+ usage: {
50
+ activeUsers: number;
51
+ cost: number;
52
+ tokenUsage: number;
53
+ };
54
+ indicator: string;
55
+ isSuspended: boolean;
56
+ planId: string;
57
+ subscription: {
58
+ status: "incomplete" | "incomplete_expired" | "trialing" | "active" | "past_due" | "canceled" | "unpaid" | "paused";
59
+ planId: string;
60
+ currentPeriodStart: Date;
61
+ currentPeriodEnd: Date;
62
+ };
63
+ tag: TenantTag;
64
+ openInvoices: {
65
+ status: "void" | "open" | "draft" | "paid" | "uncollectible" | null;
66
+ createdAt: Date;
67
+ id: string;
68
+ updatedAt: Date;
69
+ customerId: string | null;
70
+ billingReason: string | null;
71
+ periodStart: Date;
72
+ periodEnd: Date;
73
+ amountDue: number;
74
+ amountPaid: number;
75
+ subscriptionId: string | null;
76
+ hostedInvoiceUrl: string | null;
77
+ invoicePdf: string | null;
78
+ }[];
79
+ }>;
80
+ };
81
+ get: {
82
+ "/tenants": import("@withtyped/server").PathGuard<"/", unknown, unknown, {
83
+ id: string;
84
+ name: string;
85
+ usage: {
86
+ activeUsers: number;
87
+ cost: number;
88
+ tokenUsage: number;
89
+ };
90
+ indicator: string;
91
+ isSuspended: boolean;
92
+ planId: string;
93
+ subscription: {
94
+ status: "incomplete" | "incomplete_expired" | "trialing" | "active" | "past_due" | "canceled" | "unpaid" | "paused";
95
+ planId: string;
96
+ currentPeriodStart: Date;
97
+ currentPeriodEnd: Date;
98
+ };
99
+ tag: TenantTag;
100
+ openInvoices: {
101
+ status: "void" | "open" | "draft" | "paid" | "uncollectible" | null;
102
+ createdAt: Date;
103
+ id: string;
104
+ updatedAt: Date;
105
+ customerId: string | null;
106
+ billingReason: string | null;
107
+ periodStart: Date;
108
+ periodEnd: Date;
109
+ amountDue: number;
110
+ amountPaid: number;
111
+ subscriptionId: string | null;
112
+ hostedInvoiceUrl: string | null;
113
+ invoicePdf: string | null;
114
+ }[];
115
+ }[]>;
116
+ };
117
+ post: {
118
+ "/tenants": import("@withtyped/server").PathGuard<"/", unknown, {
119
+ name?: string | undefined;
120
+ tag?: TenantTag | undefined;
121
+ }, {
122
+ id: string;
123
+ name: string;
124
+ usage: {
125
+ activeUsers: number;
126
+ cost: number;
127
+ tokenUsage: number;
128
+ };
129
+ indicator: string;
130
+ isSuspended: boolean;
131
+ planId: string;
132
+ subscription: {
133
+ status: "incomplete" | "incomplete_expired" | "trialing" | "active" | "past_due" | "canceled" | "unpaid" | "paused";
134
+ planId: string;
135
+ currentPeriodStart: Date;
136
+ currentPeriodEnd: Date;
137
+ };
138
+ tag: TenantTag;
139
+ openInvoices: {
140
+ status: "void" | "open" | "draft" | "paid" | "uncollectible" | null;
141
+ createdAt: Date;
142
+ id: string;
143
+ updatedAt: Date;
144
+ customerId: string | null;
145
+ billingReason: string | null;
146
+ periodStart: Date;
147
+ periodEnd: Date;
148
+ amountDue: number;
149
+ amountPaid: number;
150
+ subscriptionId: string | null;
151
+ hostedInvoiceUrl: string | null;
152
+ invoicePdf: string | null;
153
+ }[];
154
+ }>;
155
+ };
156
+ put: {};
157
+ delete: {
158
+ "/tenants/:tenantId": import("@withtyped/server").PathGuard<"/:tenantId", unknown, unknown, unknown>;
159
+ };
160
+ copy: {};
161
+ head: {};
162
+ }, "/api">>, import("@withtyped/server").RoutesWithPrefix<{
163
+ options: {};
164
+ patch: {};
165
+ get: {
166
+ "/tenants/my/subscription": import("@withtyped/server").PathGuard<"/my/subscription", unknown, unknown, {
167
+ status: "incomplete" | "incomplete_expired" | "trialing" | "active" | "past_due" | "canceled" | "unpaid" | "paused";
168
+ planId: string;
169
+ currentPeriodStart: Date;
170
+ currentPeriodEnd: Date;
171
+ }>;
172
+ } & {
173
+ "/tenants/:tenantId/subscription": import("@withtyped/server").PathGuard<"/:tenantId/subscription", unknown, unknown, {
174
+ status: "incomplete" | "incomplete_expired" | "trialing" | "active" | "past_due" | "canceled" | "unpaid" | "paused";
175
+ planId: string;
176
+ currentPeriodStart: Date;
177
+ currentPeriodEnd: Date;
178
+ }>;
179
+ } & {
180
+ "/tenants/:tenantId/invoices": import("@withtyped/server").PathGuard<"/:tenantId/invoices", unknown, unknown, {
181
+ invoices: {
182
+ status: "void" | "open" | "draft" | "paid" | "uncollectible" | null;
183
+ createdAt: Date;
184
+ id: string;
185
+ updatedAt: Date;
186
+ customerId: string | null;
187
+ billingReason: string | null;
188
+ periodStart: Date;
189
+ periodEnd: Date;
190
+ amountDue: number;
191
+ amountPaid: number;
192
+ subscriptionId: string | null;
193
+ hostedInvoiceUrl: string | null;
194
+ invoicePdf: string | null;
195
+ planName: string | null;
196
+ }[];
197
+ }>;
198
+ } & {
199
+ "/tenants/:tenantId/invoices/:invoiceId/hosted-invoice-url": import("@withtyped/server").PathGuard<"/:tenantId/invoices/:invoiceId/hosted-invoice-url", unknown, unknown, {
200
+ hostedInvoiceUrl: string;
201
+ }>;
202
+ } & {
203
+ "/tenants/:tenantId/usage": import("@withtyped/server").PathGuard<"/:tenantId/usage", unknown, unknown, {
204
+ activeUsers: number;
205
+ cost: number;
206
+ tokenUsage: number;
207
+ }>;
208
+ };
209
+ post: {
210
+ "/tenants/:tenantId/stripe-customer-portal": import("@withtyped/server").PathGuard<"/:tenantId/stripe-customer-portal", unknown, {
211
+ callbackUrl?: string | undefined;
212
+ }, {
213
+ redirectUri: string;
214
+ }>;
215
+ };
216
+ put: {};
217
+ delete: {
218
+ "/tenants/:tenantId/subscription": import("@withtyped/server").PathGuard<"/:tenantId/subscription", unknown, unknown, unknown>;
219
+ };
220
+ copy: {};
221
+ head: {};
222
+ }, "/api">>, import("@withtyped/server").RoutesWithPrefix<{
223
+ options: {};
224
+ patch: {};
225
+ get: {
226
+ "/services/mails/usage": import("@withtyped/server").PathGuard<"/mails/usage", {
227
+ from?: string | undefined;
228
+ }, unknown, {
229
+ count: number;
230
+ }>;
231
+ };
232
+ post: {
233
+ "/services/mails": import("@withtyped/server").PathGuard<"/mails", unknown, {
234
+ data: {
235
+ type: VerificationCodeType;
236
+ payload: {
237
+ code: string;
238
+ senderName?: string | undefined;
239
+ companyInformation?: string | undefined;
240
+ appLogo?: string | undefined;
241
+ };
242
+ to: string;
243
+ };
244
+ }, unknown>;
245
+ } & {
246
+ "/services/send-sms": import("@withtyped/server").PathGuard<"/send-sms", unknown, {
247
+ data: {
248
+ type: VerificationCodeType;
249
+ to: string;
250
+ payload: {
251
+ code: string;
252
+ };
253
+ };
254
+ }, unknown>;
255
+ };
256
+ put: {};
257
+ delete: {};
258
+ copy: {};
259
+ head: {};
260
+ }, "/api">>, import("@withtyped/server").RoutesWithPrefix<{
261
+ options: {};
262
+ patch: {};
263
+ get: {
264
+ "/subscription-plans": import("@withtyped/server").PathGuard<"/", unknown, unknown, {
265
+ createdAt: Date;
266
+ id: string;
267
+ name: string;
268
+ quota: {
269
+ mauLimit: number | null;
270
+ tokenLimit: number | null;
271
+ applicationsLimit: number | null;
272
+ machineToMachineLimit: number | null;
273
+ resourcesLimit: number | null;
274
+ scopesPerResourceLimit: number | null;
275
+ customDomainEnabled: boolean;
276
+ omniSignInEnabled: boolean;
277
+ builtInEmailConnectorEnabled: boolean;
278
+ socialConnectorsLimit: number | null;
279
+ standardConnectorsLimit: number | null;
280
+ rolesLimit: number | null;
281
+ machineToMachineRolesLimit: number | null;
282
+ scopesPerRoleLimit: number | null;
283
+ hooksLimit: number | null;
284
+ auditLogsRetentionDays: number | null;
285
+ mfaEnabled: boolean;
286
+ organizationsEnabled: boolean;
287
+ ssoEnabled: boolean;
288
+ };
289
+ stripeProducts: {
290
+ type: "flat" | "tier1" | "tier2" | "tier3";
291
+ id: string;
292
+ name: string;
293
+ price: {
294
+ id: string;
295
+ unitAmountDecimal: string;
296
+ quantity?: 1 | undefined;
297
+ unitAmount?: number | null | undefined;
298
+ };
299
+ description?: string | undefined;
300
+ }[];
301
+ updatedAt: Date;
302
+ }[]>;
303
+ };
304
+ post: {};
305
+ put: {};
306
+ delete: {};
307
+ copy: {};
308
+ head: {};
309
+ }, "/api">>, import("@withtyped/server").RoutesWithPrefix<{
310
+ options: {};
311
+ patch: {};
312
+ get: {
313
+ "/my/tenant": import("@withtyped/server").PathGuard<"/tenant", unknown, unknown, {
314
+ name: string;
315
+ id: string;
316
+ indicator: string;
317
+ isSuspended: boolean;
318
+ tag: TenantTag;
319
+ }>;
320
+ };
321
+ post: {};
322
+ put: {};
323
+ delete: {};
324
+ copy: {};
325
+ head: {};
326
+ }, "/api">>, import("@withtyped/server").RoutesWithPrefix<{
327
+ options: {};
328
+ patch: {};
329
+ get: {
330
+ "/checkout-session/:id": import("@withtyped/server").PathGuard<"/:id", unknown, unknown, {
331
+ status: "open" | "complete" | "expired";
332
+ createdAt: Date;
333
+ id: string;
334
+ userId: string;
335
+ updatedAt: Date;
336
+ tenantId: string | null;
337
+ planId: string;
338
+ }>;
339
+ };
340
+ post: {
341
+ "/checkout-session": import("@withtyped/server").PathGuard<"/", unknown, {
342
+ planId: string;
343
+ successCallbackUrl: string;
344
+ tenantId?: string | undefined;
345
+ cancelCallbackUrl?: string | undefined;
346
+ tenantTag?: TenantTag | undefined;
347
+ tenantName?: string | undefined;
348
+ }, {
349
+ sessionId: string;
350
+ redirectUri?: string | null | undefined;
351
+ }>;
352
+ };
353
+ put: {};
354
+ delete: {};
355
+ copy: {};
356
+ head: {};
357
+ }, "/api">>, import("@withtyped/server").RoutesWithPrefix<{
358
+ options: {};
359
+ patch: {};
360
+ get: {
361
+ "/affiliates": import("@withtyped/server").PathGuard<"/", unknown, unknown, AffiliateData[]>;
362
+ };
363
+ post: {
364
+ "/affiliates": import("@withtyped/server").PathGuard<"/", unknown, {
365
+ name: string;
366
+ }, {
367
+ createdAt: Date;
368
+ id: string;
369
+ name: string;
370
+ }>;
371
+ } & {
372
+ "/affiliates/:id/properties": import("@withtyped/server").PathGuard<"/:id/properties", unknown, {
373
+ value: string;
374
+ type: "hostname" | "query";
375
+ }, {
376
+ value: string;
377
+ type: "hostname" | "query";
378
+ createdAt: Date;
379
+ affiliateId: string;
380
+ }>;
381
+ };
382
+ put: {};
383
+ delete: {
384
+ "/affiliates/:id/properties": import("@withtyped/server").PathGuard<"/:id/properties", unknown, {
385
+ value: string;
386
+ type: "hostname" | "query";
387
+ }, unknown>;
388
+ };
389
+ copy: {};
390
+ head: {};
391
+ }, "/api">>, import("@withtyped/server").RoutesWithPrefix<{
392
+ options: {};
393
+ patch: {};
394
+ get: {};
395
+ post: {
396
+ "/affiliate-logs": import("@withtyped/server").PathGuard<"/", unknown, {
397
+ createdAt: string;
398
+ userId: string;
399
+ hostname?: string | undefined;
400
+ query?: string | undefined;
401
+ }, {
402
+ createdAt: Date;
403
+ id: string;
404
+ affiliateId: string | null;
405
+ userId: string;
406
+ createdVia: {
407
+ createdAt: string;
408
+ hostname?: string | undefined;
409
+ query?: string | undefined;
410
+ };
411
+ }>;
412
+ };
413
+ put: {};
414
+ delete: {};
415
+ copy: {};
416
+ head: {};
417
+ }, "/api">>, "/api">;
418
+
419
+ export {
420
+ router as default,
421
+ };
422
+
423
+ export {};
package/package.json CHANGED
@@ -1,43 +1,46 @@
1
1
  {
2
2
  "name": "@logto/cloud",
3
- "version": "0.2.5-cbbfdc2",
3
+ "version": "0.2.5-d28a065",
4
4
  "description": "Logto Cloud service.",
5
5
  "main": "build/index.js",
6
6
  "author": "Silverhand Inc. <contact@silverhand.io>",
7
7
  "license": "Elastic-2.0",
8
8
  "type": "module",
9
9
  "files": [
10
- "build"
10
+ "lib"
11
11
  ],
12
12
  "exports": {
13
- "./routes": "./build/routes/index.js"
13
+ "./routes": "./lib/routes/index.js"
14
14
  },
15
15
  "imports": {
16
16
  "#src/*": "./build/*"
17
17
  },
18
18
  "devDependencies": {
19
- "@silverhand/eslint-config": "3.0.1",
20
- "@silverhand/jest-config": "3.0.0",
21
- "@silverhand/ts-config": "3.0.0",
19
+ "@silverhand/eslint-config": "5.0.0",
20
+ "@silverhand/jest-config": "4.0.0",
21
+ "@silverhand/ts-config": "5.0.0",
22
22
  "@types/accepts": "^1.3.5",
23
23
  "@types/http-proxy": "^1.17.9",
24
24
  "@types/jest": "^29.4.0",
25
25
  "@types/mime-types": "^2.1.1",
26
26
  "@types/node": "^18.11.18",
27
27
  "@types/yargs": "^17.0.24",
28
- "dts-bundle-generator": "^8.0.1",
29
- "eslint": "^8.21.0",
28
+ "dts-bundle-generator": "^9.0.0",
29
+ "eslint": "^8.44.0",
30
30
  "jest": "^29.5.0",
31
- "lint-staged": "^13.0.0",
31
+ "lint-staged": "^15.0.0",
32
32
  "nodemon": "^3.0.0",
33
- "prettier": "^2.8.1",
34
- "typescript": "^5.0.0"
33
+ "prettier": "^3.0.0",
34
+ "typescript": "^5.3.3"
35
35
  },
36
36
  "engines": {
37
- "node": "^18.12.0"
37
+ "node": "^20.9.0"
38
38
  },
39
39
  "eslintConfig": {
40
40
  "extends": "@silverhand",
41
+ "rules": {
42
+ "no-console": "error"
43
+ },
41
44
  "ignorePatterns": [
42
45
  "types.test.ts"
43
46
  ]
@@ -47,14 +50,14 @@
47
50
  "access": "public"
48
51
  },
49
52
  "dependencies": {
50
- "@silverhand/essentials": "^2.7.0",
51
- "@withtyped/server": "^0.12.4"
53
+ "@silverhand/essentials": "^2.8.6",
54
+ "@withtyped/server": "^0.12.7"
52
55
  },
53
56
  "scripts": {
54
57
  "precommit": "lint-staged",
55
- "build": "rm -rf build/ && tsc -p tsconfig.build.json",
58
+ "build": "rm -rf build/ && tsc -p tsconfig.build.json && pnpm build:lib",
56
59
  "//": "It is not used to build the service itself.",
57
- "build:lib": "rm -rf build/ && dts-bundle-generator src/routes/index.ts --project tsconfig.build.json -o build/routes/index.d.ts",
60
+ "build:lib": "rm -rf lib/ && dts-bundle-generator src/routes/index.ts --project tsconfig.build.lib.json -o lib/routes/index.d.ts",
58
61
  "build:test": "rm -rf build/ && tsc -p tsconfig.test.json --sourcemap",
59
62
  "lint": "eslint --ext .ts src",
60
63
  "lint:report": "pnpm lint --format json --output-file report.json",
@@ -1,165 +0,0 @@
1
- // Generated by dts-bundle-generator v8.0.1
2
-
3
- import { RequestContext } from '@withtyped/server';
4
- import { InferModelType } from '@withtyped/server/model';
5
-
6
- export type WithAuthContext<Context = RequestContext> = Context & {
7
- auth: {
8
- id: string;
9
- scopes: string[];
10
- };
11
- };
12
- declare enum TenantTag {
13
- Development = "development",
14
- Staging = "staging",
15
- Production = "production"
16
- }
17
- declare const Tenants: import("@withtyped/server/model").default<"tenants", {
18
- id: string;
19
- dbUser: string | null;
20
- dbUserPassword: string | null;
21
- name: string;
22
- tag: TenantTag;
23
- createdAt: Date;
24
- }, "name" | "createdAt" | "tag", "createdAt">;
25
- export type TenantModel = InferModelType<typeof Tenants>;
26
- export type TenantInfo = Pick<TenantModel, "id" | "name" | "tag"> & {
27
- indicator: string;
28
- };
29
- declare enum VerificationCodeType {
30
- SignIn = "SignIn",
31
- Register = "Register",
32
- ForgotPassword = "ForgotPassword",
33
- /** @deprecated */
34
- Continue = "Continue",
35
- Generic = "Generic",
36
- /** @deprecated Use `Generic` type template for sending test sms/email use case */
37
- Test = "Test"
38
- }
39
- declare const _default: import("@withtyped/server").Router<WithAuthContext, import("@withtyped/server").MergeRoutes<import("@withtyped/server").MergeRoutes<import("@withtyped/server").MergeRoutes<import("@withtyped/server").BaseRoutes, import("@withtyped/server").RoutesWithPrefix<{
40
- options: {};
41
- patch: {
42
- "/tenants/:tenantId": import("@withtyped/server").PathGuard<"/:tenantId", unknown, {
43
- name?: string | undefined;
44
- tag?: TenantTag | undefined;
45
- }, TenantInfo>;
46
- };
47
- get: {
48
- "/tenants": import("@withtyped/server").PathGuard<"/", unknown, unknown, TenantInfo[]>;
49
- };
50
- post: {
51
- "/tenants": import("@withtyped/server").PathGuard<"/", unknown, {
52
- name?: string | undefined;
53
- tag?: TenantTag | undefined;
54
- }, TenantInfo>;
55
- };
56
- put: {};
57
- head: {};
58
- delete: {
59
- "/tenants/:tenantId": import("@withtyped/server").PathGuard<"/:tenantId", unknown, unknown, unknown>;
60
- };
61
- copy: {};
62
- }, "/api">>, import("@withtyped/server").RoutesWithPrefix<{
63
- options: {};
64
- patch: {};
65
- get: {
66
- "/services/mails/usage": import("@withtyped/server").PathGuard<"/mails/usage", {
67
- from?: string | undefined;
68
- }, unknown, unknown>;
69
- };
70
- post: {
71
- "/services/send-email": import("@withtyped/server").PathGuard<"/send-email", unknown, {
72
- data: {
73
- type: VerificationCodeType;
74
- to: string;
75
- payload: {
76
- fromName?: string | undefined;
77
- companyAddress?: string | undefined;
78
- appLogo?: string | undefined;
79
- code: string;
80
- };
81
- };
82
- }, unknown>;
83
- } & {
84
- "/services/mails": import("@withtyped/server").PathGuard<"/mails", unknown, {
85
- data: {
86
- type: VerificationCodeType;
87
- to: string;
88
- payload: {
89
- fromName?: string | undefined;
90
- companyAddress?: string | undefined;
91
- appLogo?: string | undefined;
92
- code: string;
93
- };
94
- };
95
- }, unknown>;
96
- } & {
97
- "/services/send-sms": import("@withtyped/server").PathGuard<"/send-sms", unknown, {
98
- data: {
99
- type: VerificationCodeType;
100
- to: string;
101
- payload: {
102
- fromName?: string | undefined;
103
- companyAddress?: string | undefined;
104
- appLogo?: string | undefined;
105
- code: string;
106
- };
107
- };
108
- }, unknown>;
109
- };
110
- put: {};
111
- head: {};
112
- delete: {};
113
- copy: {};
114
- }, "/api">>, import("@withtyped/server").RoutesWithPrefix<{
115
- options: {};
116
- patch: {};
117
- get: {
118
- "/subscription-plans": import("@withtyped/server").PathGuard<"/", unknown, unknown, {
119
- id: string;
120
- name: string;
121
- products: {
122
- description?: string | undefined;
123
- type: "flat" | "tier1" | "tier2" | "tier3";
124
- id: string;
125
- name: string;
126
- price: {
127
- quantity?: 1 | undefined;
128
- unitAmount?: number | null | undefined;
129
- id: string;
130
- unitAmountDecimal: string;
131
- };
132
- }[];
133
- quota: {
134
- tenantLimit: number | null;
135
- mauLimit: number | null;
136
- applicationsLimit: number;
137
- machineToMachineLimit: number;
138
- resourcesLimit: number;
139
- scopesPerResourceLimit: number;
140
- customDomainEnabled: boolean;
141
- omniSignInEnabled: boolean;
142
- builtInEmailConnectorEnabled: boolean;
143
- socialConnectorsLimit: number | null;
144
- standardConnectorsLimit: number;
145
- rolesLimit: number;
146
- scopesPerRoleLimit: number | null;
147
- hooksLimit: number;
148
- auditLogsRetentionDays: number;
149
- };
150
- createdAt: Date;
151
- updatedAt: Date;
152
- }[]>;
153
- };
154
- post: {};
155
- put: {};
156
- head: {};
157
- delete: {};
158
- copy: {};
159
- }, "/api">>, "/api">;
160
-
161
- export {
162
- _default as default,
163
- };
164
-
165
- export {};