fusio-sdk 6.1.0 → 6.2.1
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/dist/index.cjs +797 -396
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +274 -25
- package/dist/index.d.ts +274 -25
- package/dist/index.js +773 -374
- package/dist/index.js.map +1 -1
- package/package.json +2 -1
package/dist/index.d.cts
CHANGED
|
@@ -608,6 +608,118 @@ declare class BackendBackupTag extends TagAbstract {
|
|
|
608
608
|
import(payload: BackendBackupImport): Promise<BackendBackupImportResult>;
|
|
609
609
|
}
|
|
610
610
|
|
|
611
|
+
/**
|
|
612
|
+
* BackendBundleConfig automatically generated by SDKgen please do not edit this file manually
|
|
613
|
+
* {@link https://sdkgen.app}
|
|
614
|
+
*/
|
|
615
|
+
interface BackendBundleConfig extends Record<string, any> {
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
/**
|
|
619
|
+
* BackendBundle automatically generated by SDKgen please do not edit this file manually
|
|
620
|
+
* {@link https://sdkgen.app}
|
|
621
|
+
*/
|
|
622
|
+
|
|
623
|
+
/**
|
|
624
|
+
* This object represents a bundle which contains action, schema, event, cronjob and trigger configurations from you local instance
|
|
625
|
+
*/
|
|
626
|
+
interface BackendBundle {
|
|
627
|
+
id?: number;
|
|
628
|
+
name?: string;
|
|
629
|
+
config?: BackendBundleConfig;
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
/**
|
|
633
|
+
* BackendBundleCollection automatically generated by SDKgen please do not edit this file manually
|
|
634
|
+
* {@link https://sdkgen.app}
|
|
635
|
+
*/
|
|
636
|
+
|
|
637
|
+
/**
|
|
638
|
+
* A paginated collection of bundle objects
|
|
639
|
+
*/
|
|
640
|
+
interface BackendBundleCollection extends CommonCollection<BackendBundle> {
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
/**
|
|
644
|
+
* BackendBundleCreate automatically generated by SDKgen please do not edit this file manually
|
|
645
|
+
* {@link https://sdkgen.app}
|
|
646
|
+
*/
|
|
647
|
+
|
|
648
|
+
interface BackendBundleCreate extends BackendBundle {
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
/**
|
|
652
|
+
* BackendEvent automatically generated by SDKgen please do not edit this file manually
|
|
653
|
+
* {@link https://sdkgen.app}
|
|
654
|
+
*/
|
|
655
|
+
|
|
656
|
+
/**
|
|
657
|
+
* This object represents an event which can be triggered by an action
|
|
658
|
+
*/
|
|
659
|
+
interface BackendEvent {
|
|
660
|
+
id?: number;
|
|
661
|
+
name?: string;
|
|
662
|
+
description?: string;
|
|
663
|
+
schema?: string;
|
|
664
|
+
metadata?: CommonMetadata;
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
/**
|
|
668
|
+
* BackendEventUpdate automatically generated by SDKgen please do not edit this file manually
|
|
669
|
+
* {@link https://sdkgen.app}
|
|
670
|
+
*/
|
|
671
|
+
|
|
672
|
+
interface BackendEventUpdate extends BackendEvent {
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
/**
|
|
676
|
+
* BackendBundleTag automatically generated by SDKgen please do not edit this file manually
|
|
677
|
+
* {@link https://sdkgen.app}
|
|
678
|
+
*/
|
|
679
|
+
|
|
680
|
+
declare class BackendBundleTag extends TagAbstract {
|
|
681
|
+
/**
|
|
682
|
+
* Creates a new bundle
|
|
683
|
+
*
|
|
684
|
+
* @returns {Promise<CommonMessage>}
|
|
685
|
+
* @throws {CommonMessageException}
|
|
686
|
+
* @throws {ClientException}
|
|
687
|
+
*/
|
|
688
|
+
create(payload: BackendBundleCreate): Promise<CommonMessage>;
|
|
689
|
+
/**
|
|
690
|
+
* Deletes an existing bundle
|
|
691
|
+
*
|
|
692
|
+
* @returns {Promise<CommonMessage>}
|
|
693
|
+
* @throws {CommonMessageException}
|
|
694
|
+
* @throws {ClientException}
|
|
695
|
+
*/
|
|
696
|
+
delete(bundleId: string): Promise<CommonMessage>;
|
|
697
|
+
/**
|
|
698
|
+
* Returns a specific bundle
|
|
699
|
+
*
|
|
700
|
+
* @returns {Promise<BackendEvent>}
|
|
701
|
+
* @throws {CommonMessageException}
|
|
702
|
+
* @throws {ClientException}
|
|
703
|
+
*/
|
|
704
|
+
get(bundleId: string): Promise<BackendEvent>;
|
|
705
|
+
/**
|
|
706
|
+
* Returns a paginated list of bundles
|
|
707
|
+
*
|
|
708
|
+
* @returns {Promise<BackendBundleCollection>}
|
|
709
|
+
* @throws {CommonMessageException}
|
|
710
|
+
* @throws {ClientException}
|
|
711
|
+
*/
|
|
712
|
+
getAll(startIndex?: number, count?: number, search?: string): Promise<BackendBundleCollection>;
|
|
713
|
+
/**
|
|
714
|
+
* Updates an existing bundle
|
|
715
|
+
*
|
|
716
|
+
* @returns {Promise<CommonMessage>}
|
|
717
|
+
* @throws {CommonMessageException}
|
|
718
|
+
* @throws {ClientException}
|
|
719
|
+
*/
|
|
720
|
+
update(bundleId: string, payload: BackendEventUpdate): Promise<CommonMessage>;
|
|
721
|
+
}
|
|
722
|
+
|
|
611
723
|
/**
|
|
612
724
|
* BackendCategory automatically generated by SDKgen please do not edit this file manually
|
|
613
725
|
* {@link https://sdkgen.app}
|
|
@@ -1413,22 +1525,6 @@ declare class BackendDashboardTag extends TagAbstract {
|
|
|
1413
1525
|
getAll(): Promise<BackendDashboard>;
|
|
1414
1526
|
}
|
|
1415
1527
|
|
|
1416
|
-
/**
|
|
1417
|
-
* BackendEvent automatically generated by SDKgen please do not edit this file manually
|
|
1418
|
-
* {@link https://sdkgen.app}
|
|
1419
|
-
*/
|
|
1420
|
-
|
|
1421
|
-
/**
|
|
1422
|
-
* This object represents an event which can be triggered by an action
|
|
1423
|
-
*/
|
|
1424
|
-
interface BackendEvent {
|
|
1425
|
-
id?: number;
|
|
1426
|
-
name?: string;
|
|
1427
|
-
description?: string;
|
|
1428
|
-
schema?: string;
|
|
1429
|
-
metadata?: CommonMetadata;
|
|
1430
|
-
}
|
|
1431
|
-
|
|
1432
1528
|
/**
|
|
1433
1529
|
* BackendEventCollection automatically generated by SDKgen please do not edit this file manually
|
|
1434
1530
|
* {@link https://sdkgen.app}
|
|
@@ -1448,14 +1544,6 @@ interface BackendEventCollection extends CommonCollection<BackendEvent> {
|
|
|
1448
1544
|
interface BackendEventCreate extends BackendEvent {
|
|
1449
1545
|
}
|
|
1450
1546
|
|
|
1451
|
-
/**
|
|
1452
|
-
* BackendEventUpdate automatically generated by SDKgen please do not edit this file manually
|
|
1453
|
-
* {@link https://sdkgen.app}
|
|
1454
|
-
*/
|
|
1455
|
-
|
|
1456
|
-
interface BackendEventUpdate extends BackendEvent {
|
|
1457
|
-
}
|
|
1458
|
-
|
|
1459
1547
|
/**
|
|
1460
1548
|
* BackendEventTag automatically generated by SDKgen please do not edit this file manually
|
|
1461
1549
|
* {@link https://sdkgen.app}
|
|
@@ -2286,6 +2374,141 @@ declare class BackendMarketplaceAppTag extends TagAbstract {
|
|
|
2286
2374
|
upgrade(user: string, name: string): Promise<MarketplaceMessage>;
|
|
2287
2375
|
}
|
|
2288
2376
|
|
|
2377
|
+
/**
|
|
2378
|
+
* MarketplaceBundleActionConfig automatically generated by SDKgen please do not edit this file manually
|
|
2379
|
+
* {@link https://sdkgen.app}
|
|
2380
|
+
*/
|
|
2381
|
+
interface MarketplaceBundleActionConfig extends Record<string, any> {
|
|
2382
|
+
}
|
|
2383
|
+
|
|
2384
|
+
/**
|
|
2385
|
+
* MarketplaceBundleAction automatically generated by SDKgen please do not edit this file manually
|
|
2386
|
+
* {@link https://sdkgen.app}
|
|
2387
|
+
*/
|
|
2388
|
+
|
|
2389
|
+
interface MarketplaceBundleAction {
|
|
2390
|
+
name?: string;
|
|
2391
|
+
class?: string;
|
|
2392
|
+
config?: MarketplaceBundleActionConfig;
|
|
2393
|
+
}
|
|
2394
|
+
|
|
2395
|
+
/**
|
|
2396
|
+
* MarketplaceBundleSchemaSource automatically generated by SDKgen please do not edit this file manually
|
|
2397
|
+
* {@link https://sdkgen.app}
|
|
2398
|
+
*/
|
|
2399
|
+
interface MarketplaceBundleSchemaSource extends Record<string, any> {
|
|
2400
|
+
}
|
|
2401
|
+
|
|
2402
|
+
/**
|
|
2403
|
+
* MarketplaceBundleSchema automatically generated by SDKgen please do not edit this file manually
|
|
2404
|
+
* {@link https://sdkgen.app}
|
|
2405
|
+
*/
|
|
2406
|
+
|
|
2407
|
+
interface MarketplaceBundleSchema {
|
|
2408
|
+
name?: string;
|
|
2409
|
+
source?: MarketplaceBundleSchemaSource;
|
|
2410
|
+
}
|
|
2411
|
+
|
|
2412
|
+
/**
|
|
2413
|
+
* MarketplaceBundleEvent automatically generated by SDKgen please do not edit this file manually
|
|
2414
|
+
* {@link https://sdkgen.app}
|
|
2415
|
+
*/
|
|
2416
|
+
interface MarketplaceBundleEvent {
|
|
2417
|
+
name?: string;
|
|
2418
|
+
description?: string;
|
|
2419
|
+
schema?: string;
|
|
2420
|
+
}
|
|
2421
|
+
|
|
2422
|
+
/**
|
|
2423
|
+
* MarketplaceBundleCronjob automatically generated by SDKgen please do not edit this file manually
|
|
2424
|
+
* {@link https://sdkgen.app}
|
|
2425
|
+
*/
|
|
2426
|
+
interface MarketplaceBundleCronjob {
|
|
2427
|
+
name?: string;
|
|
2428
|
+
cron?: string;
|
|
2429
|
+
action?: string;
|
|
2430
|
+
}
|
|
2431
|
+
|
|
2432
|
+
/**
|
|
2433
|
+
* MarketplaceBundleTrigger automatically generated by SDKgen please do not edit this file manually
|
|
2434
|
+
* {@link https://sdkgen.app}
|
|
2435
|
+
*/
|
|
2436
|
+
interface MarketplaceBundleTrigger {
|
|
2437
|
+
name?: string;
|
|
2438
|
+
event?: string;
|
|
2439
|
+
action?: string;
|
|
2440
|
+
}
|
|
2441
|
+
|
|
2442
|
+
/**
|
|
2443
|
+
* MarketplaceBundleConfig automatically generated by SDKgen please do not edit this file manually
|
|
2444
|
+
* {@link https://sdkgen.app}
|
|
2445
|
+
*/
|
|
2446
|
+
|
|
2447
|
+
interface MarketplaceBundleConfig {
|
|
2448
|
+
actions?: Array<MarketplaceBundleAction>;
|
|
2449
|
+
schemas?: Array<MarketplaceBundleSchema>;
|
|
2450
|
+
events?: Array<MarketplaceBundleEvent>;
|
|
2451
|
+
cronjobs?: Array<MarketplaceBundleCronjob>;
|
|
2452
|
+
triggers?: Array<MarketplaceBundleTrigger>;
|
|
2453
|
+
}
|
|
2454
|
+
|
|
2455
|
+
/**
|
|
2456
|
+
* MarketplaceBundle automatically generated by SDKgen please do not edit this file manually
|
|
2457
|
+
* {@link https://sdkgen.app}
|
|
2458
|
+
*/
|
|
2459
|
+
|
|
2460
|
+
interface MarketplaceBundle extends MarketplaceObject {
|
|
2461
|
+
config?: MarketplaceBundleConfig;
|
|
2462
|
+
}
|
|
2463
|
+
|
|
2464
|
+
/**
|
|
2465
|
+
* MarketplaceBundleCollection automatically generated by SDKgen please do not edit this file manually
|
|
2466
|
+
* {@link https://sdkgen.app}
|
|
2467
|
+
*/
|
|
2468
|
+
|
|
2469
|
+
interface MarketplaceBundleCollection extends MarketplaceCollection<MarketplaceBundle> {
|
|
2470
|
+
}
|
|
2471
|
+
|
|
2472
|
+
/**
|
|
2473
|
+
* BackendMarketplaceBundleTag automatically generated by SDKgen please do not edit this file manually
|
|
2474
|
+
* {@link https://sdkgen.app}
|
|
2475
|
+
*/
|
|
2476
|
+
|
|
2477
|
+
declare class BackendMarketplaceBundleTag extends TagAbstract {
|
|
2478
|
+
/**
|
|
2479
|
+
* Returns a specific marketplace bundle
|
|
2480
|
+
*
|
|
2481
|
+
* @returns {Promise<MarketplaceBundle>}
|
|
2482
|
+
* @throws {CommonMessageException}
|
|
2483
|
+
* @throws {ClientException}
|
|
2484
|
+
*/
|
|
2485
|
+
get(user: string, name: string): Promise<MarketplaceBundle>;
|
|
2486
|
+
/**
|
|
2487
|
+
* Returns a paginated list of marketplace bundles
|
|
2488
|
+
*
|
|
2489
|
+
* @returns {Promise<MarketplaceBundleCollection>}
|
|
2490
|
+
* @throws {CommonMessageException}
|
|
2491
|
+
* @throws {ClientException}
|
|
2492
|
+
*/
|
|
2493
|
+
getAll(startIndex?: number, query?: string): Promise<MarketplaceBundleCollection>;
|
|
2494
|
+
/**
|
|
2495
|
+
* Installs an bundle from the marketplace
|
|
2496
|
+
*
|
|
2497
|
+
* @returns {Promise<MarketplaceMessage>}
|
|
2498
|
+
* @throws {CommonMessageException}
|
|
2499
|
+
* @throws {ClientException}
|
|
2500
|
+
*/
|
|
2501
|
+
install(payload: MarketplaceInstall): Promise<MarketplaceMessage>;
|
|
2502
|
+
/**
|
|
2503
|
+
* Upgrades an bundle from the marketplace
|
|
2504
|
+
*
|
|
2505
|
+
* @returns {Promise<MarketplaceMessage>}
|
|
2506
|
+
* @throws {CommonMessageException}
|
|
2507
|
+
* @throws {ClientException}
|
|
2508
|
+
*/
|
|
2509
|
+
upgrade(user: string, name: string): Promise<MarketplaceMessage>;
|
|
2510
|
+
}
|
|
2511
|
+
|
|
2289
2512
|
/**
|
|
2290
2513
|
* BackendMarketplaceTag automatically generated by SDKgen please do not edit this file manually
|
|
2291
2514
|
* {@link https://sdkgen.app}
|
|
@@ -2294,6 +2517,7 @@ declare class BackendMarketplaceAppTag extends TagAbstract {
|
|
|
2294
2517
|
declare class BackendMarketplaceTag extends TagAbstract {
|
|
2295
2518
|
action(): BackendMarketplaceActionTag;
|
|
2296
2519
|
app(): BackendMarketplaceAppTag;
|
|
2520
|
+
bundle(): BackendMarketplaceBundleTag;
|
|
2297
2521
|
}
|
|
2298
2522
|
|
|
2299
2523
|
/**
|
|
@@ -3135,6 +3359,30 @@ declare class BackendStatisticTag extends TagAbstract {
|
|
|
3135
3359
|
* @throws {ClientException}
|
|
3136
3360
|
*/
|
|
3137
3361
|
getMostUsedOperations(startIndex?: number, count?: number, search?: string, from?: string, to?: string, operationId?: number, appId?: number, userId?: number, ip?: string, userAgent?: string, method?: string, path?: string, header?: string, body?: string): Promise<BackendStatisticChart>;
|
|
3362
|
+
/**
|
|
3363
|
+
* Returns a statistic containing the requests per ip
|
|
3364
|
+
*
|
|
3365
|
+
* @returns {Promise<BackendStatisticChart>}
|
|
3366
|
+
* @throws {CommonMessageException}
|
|
3367
|
+
* @throws {ClientException}
|
|
3368
|
+
*/
|
|
3369
|
+
getRequestsPerIP(startIndex?: number, count?: number, search?: string, from?: string, to?: string, operationId?: number, appId?: number, userId?: number, ip?: string, userAgent?: string, method?: string, path?: string, header?: string, body?: string): Promise<BackendStatisticChart>;
|
|
3370
|
+
/**
|
|
3371
|
+
* Returns a statistic containing the requests per operation
|
|
3372
|
+
*
|
|
3373
|
+
* @returns {Promise<BackendStatisticChart>}
|
|
3374
|
+
* @throws {CommonMessageException}
|
|
3375
|
+
* @throws {ClientException}
|
|
3376
|
+
*/
|
|
3377
|
+
getRequestsPerOperation(startIndex?: number, count?: number, search?: string, from?: string, to?: string, operationId?: number, appId?: number, userId?: number, ip?: string, userAgent?: string, method?: string, path?: string, header?: string, body?: string): Promise<BackendStatisticChart>;
|
|
3378
|
+
/**
|
|
3379
|
+
* Returns a statistic containing the requests per user
|
|
3380
|
+
*
|
|
3381
|
+
* @returns {Promise<BackendStatisticChart>}
|
|
3382
|
+
* @throws {CommonMessageException}
|
|
3383
|
+
* @throws {ClientException}
|
|
3384
|
+
*/
|
|
3385
|
+
getRequestsPerUser(startIndex?: number, count?: number, search?: string, from?: string, to?: string, operationId?: number, appId?: number, userId?: number, ip?: string, userAgent?: string, method?: string, path?: string, header?: string, body?: string): Promise<BackendStatisticChart>;
|
|
3138
3386
|
/**
|
|
3139
3387
|
* Returns a statistic containing the test coverage
|
|
3140
3388
|
*
|
|
@@ -3726,6 +3974,7 @@ declare class BackendTag extends TagAbstract {
|
|
|
3726
3974
|
app(): BackendAppTag;
|
|
3727
3975
|
audit(): BackendAuditTag;
|
|
3728
3976
|
backup(): BackendBackupTag;
|
|
3977
|
+
bundle(): BackendBundleTag;
|
|
3729
3978
|
category(): BackendCategoryTag;
|
|
3730
3979
|
config(): BackendConfigTag;
|
|
3731
3980
|
connection(): BackendConnectionTag;
|
|
@@ -5062,4 +5311,4 @@ declare class CommonMessageException extends KnownStatusCodeException {
|
|
|
5062
5311
|
getPayload(): CommonMessage;
|
|
5063
5312
|
}
|
|
5064
5313
|
|
|
5065
|
-
export { AuthorizationTag, type BackendAccountChangePassword, BackendAccountTag, type BackendAction, type BackendActionCollection, type BackendActionConfig, type BackendActionCreate, type BackendActionExecuteRequest, type BackendActionExecuteRequestBody, type BackendActionExecuteResponse, type BackendActionExecuteResponseBody, type BackendActionExecuteResponseHeaders, type BackendActionIndex, type BackendActionIndexEntry, BackendActionTag, type BackendActionUpdate, type BackendApp, type BackendAppCollection, type BackendAppCreate, BackendAppTag, type BackendAppUpdate, type BackendAudit, type BackendAuditCollection, type BackendAuditObject, BackendAuditTag, type BackendBackupExport, type BackendBackupImport, type BackendBackupImportResult, BackendBackupTag, type BackendCategory, type BackendCategoryCollection, type BackendCategoryCreate, BackendCategoryTag, type BackendCategoryUpdate, type BackendConfig, type BackendConfigCollection, BackendConfigTag, type BackendConfigUpdate, type BackendConnection, type BackendConnectionCollection, type BackendConnectionConfig, type BackendConnectionCreate, BackendConnectionDatabaseTag, BackendConnectionFilesystemTag, BackendConnectionHttpTag, type BackendConnectionIndex, type BackendConnectionIndexEntry, type BackendConnectionRedirectResponse, BackendConnectionSdkTag, BackendConnectionTag, type BackendConnectionUpdate, type BackendCronjob, type BackendCronjobCollection, type BackendCronjobCreate, type BackendCronjobError, BackendCronjobTag, type BackendCronjobUpdate, type BackendDashboard, BackendDashboardTag, type BackendDatabaseRow, type BackendDatabaseRowCollection, type BackendDatabaseTable, type BackendDatabaseTableCollection, type BackendDatabaseTableColumn, type BackendDatabaseTableForeignKeyConstraint, type BackendDatabaseTableIndex, type BackendEvent, type BackendEventCollection, type BackendEventCreate, BackendEventTag, type BackendEventUpdate, type BackendFile, type BackendFileCollection, type BackendFirewall, type BackendFirewallCollection, type BackendFirewallCreate, BackendFirewallTag, type BackendFirewallUpdate, type BackendForm, type BackendFormCollection, type BackendFormCreate, BackendFormTag, type BackendFormUpdate, type BackendGeneratorIndexProvider, type BackendGeneratorIndexProviders, type BackendGeneratorProvider, type BackendGeneratorProviderChangelog, type BackendGeneratorProviderConfig, BackendGeneratorTag, type BackendHttpRequest, type BackendHttpResponse, type BackendIdentity, type BackendIdentityCollection, type BackendIdentityConfig, type BackendIdentityCreate, type BackendIdentityIndex, type BackendIdentityIndexEntry, BackendIdentityTag, type BackendIdentityUpdate, type BackendLog, type BackendLogCollection, type BackendLogError, type BackendLogErrorCollection, BackendLogTag, BackendMarketplaceActionTag, BackendMarketplaceAppTag, BackendMarketplaceTag, type BackendOperation, type BackendOperationCollection, type BackendOperationCreate, type BackendOperationParameters, type BackendOperationSchema, BackendOperationTag, type BackendOperationThrows, type BackendOperationUpdate, type BackendPage, type BackendPageCollection, type BackendPageCreate, BackendPageTag, type BackendPageUpdate, type BackendPlan, type BackendPlanCollection, type BackendPlanCreate, BackendPlanTag, type BackendPlanUpdate, type BackendRate, type BackendRateAllocation, type BackendRateCollection, type BackendRateCreate, BackendRateTag, type BackendRateUpdate, type BackendRole, type BackendRoleCollection, type BackendRoleCreate, BackendRoleTag, type BackendRoleUpdate, type BackendSchema, type BackendSchemaCollection, type BackendSchemaCreate, type BackendSchemaPreviewResponse, type BackendSchemaSource, BackendSchemaTag, type BackendSchemaUpdate, type BackendScope, type BackendScopeCategories, type BackendScopeCategory, type BackendScopeCategoryScope, type BackendScopeCollection, type BackendScopeCreate, type BackendScopeOperation, BackendScopeTag, type BackendScopeUpdate, type BackendSdkGenerate, type BackendSdkMessage, type BackendSdkResponse, BackendSdkTag, type BackendSdkTypes, type BackendStatisticChart, type BackendStatisticChartSeries, type BackendStatisticCount, BackendStatisticTag, BackendTag, BackendTenantTag, type BackendTest, type BackendTestCollection, type BackendTestConfig, BackendTestTag, type BackendToken, type BackendTokenCollection, BackendTokenTag, type BackendTransaction, type BackendTransactionCollection, BackendTransactionTag, type BackendTrashData, type BackendTrashDataCollection, type BackendTrashRestore, BackendTrashTag, type BackendTrashTypes, type BackendTrigger, type BackendTriggerCollection, type BackendTriggerCreate, BackendTriggerTag, type BackendTriggerUpdate, type BackendUser, type BackendUserCollection, type BackendUserCreate, BackendUserTag, type BackendUserUpdate, type BackendWebhook, type BackendWebhookCollection, type BackendWebhookCreate, type BackendWebhookResponse, BackendWebhookTag, type BackendWebhookUpdate, Client, type CommonCollection, type CommonFormContainer, type CommonFormElement, type CommonFormElementInput, type CommonFormElementSelect, type CommonFormElementSelectOption, type CommonFormElementTag, type CommonFormElementTextArea, type CommonMessage, CommonMessageException, type CommonMetadata, ConsumerAccountTag, type ConsumerApp, type ConsumerAppCollection, type ConsumerAppCreate, ConsumerAppTag, type ConsumerAppUpdate, type ConsumerAuthorizeMeta, type ConsumerAuthorizeRequest, type ConsumerAuthorizeResponse, type ConsumerEvent, type ConsumerEventCollection, ConsumerEventTag, type ConsumerForm, type ConsumerFormCollection, ConsumerFormTag, type ConsumerGrant, type ConsumerGrantCollection, ConsumerGrantTag, type ConsumerIdentity, type ConsumerIdentityCollection, ConsumerIdentityTag, type ConsumerLog, type ConsumerLogCollection, ConsumerLogTag, type ConsumerPage, type ConsumerPageCollection, ConsumerPageTag, type ConsumerPaymentCheckoutRequest, type ConsumerPaymentCheckoutResponse, type ConsumerPaymentPortalRequest, type ConsumerPaymentPortalResponse, ConsumerPaymentTag, type ConsumerPlan, type ConsumerPlanCollection, ConsumerPlanTag, type ConsumerScope, type ConsumerScopeCategories, type ConsumerScopeCategory, type ConsumerScopeCategoryScope, type ConsumerScopeCollection, ConsumerScopeTag, ConsumerTag, type ConsumerToken, type ConsumerTokenAccessToken, type ConsumerTokenCollection, type ConsumerTokenCreate, ConsumerTokenTag, type ConsumerTokenUpdate, type ConsumerTransaction, type ConsumerTransactionCollection, ConsumerTransactionTag, type ConsumerUserAccount, type ConsumerUserActivate, type ConsumerUserEmail, type ConsumerUserJWT, type ConsumerUserLogin, type ConsumerUserPasswordReset, type ConsumerUserPlan, type ConsumerUserRefresh, type ConsumerUserRegister, type ConsumerWebhook, type ConsumerWebhookCollection, type ConsumerWebhookCreate, type ConsumerWebhookResponse, ConsumerWebhookTag, type ConsumerWebhookUpdate, type MarketplaceAction, type MarketplaceActionCollection, type MarketplaceActionConfig, type MarketplaceApp, type MarketplaceAppCollection, type MarketplaceCollection, type MarketplaceInstall, type MarketplaceMessage, type MarketplaceObject, type MarketplaceUser, type Passthru, type SystemAbout, type SystemAboutApps, type SystemAboutLink, SystemConnectionTag, type SystemHealthCheck, SystemMetaTag, SystemPaymentTag, type SystemRoute, type SystemRouteMethod, type SystemRoutePath, type SystemSchema, type SystemSchemaForm, type SystemSchemaTypeSchema, SystemTag };
|
|
5314
|
+
export { AuthorizationTag, type BackendAccountChangePassword, BackendAccountTag, type BackendAction, type BackendActionCollection, type BackendActionConfig, type BackendActionCreate, type BackendActionExecuteRequest, type BackendActionExecuteRequestBody, type BackendActionExecuteResponse, type BackendActionExecuteResponseBody, type BackendActionExecuteResponseHeaders, type BackendActionIndex, type BackendActionIndexEntry, BackendActionTag, type BackendActionUpdate, type BackendApp, type BackendAppCollection, type BackendAppCreate, BackendAppTag, type BackendAppUpdate, type BackendAudit, type BackendAuditCollection, type BackendAuditObject, BackendAuditTag, type BackendBackupExport, type BackendBackupImport, type BackendBackupImportResult, BackendBackupTag, type BackendBundle, type BackendBundleCollection, type BackendBundleConfig, type BackendBundleCreate, BackendBundleTag, type BackendCategory, type BackendCategoryCollection, type BackendCategoryCreate, BackendCategoryTag, type BackendCategoryUpdate, type BackendConfig, type BackendConfigCollection, BackendConfigTag, type BackendConfigUpdate, type BackendConnection, type BackendConnectionCollection, type BackendConnectionConfig, type BackendConnectionCreate, BackendConnectionDatabaseTag, BackendConnectionFilesystemTag, BackendConnectionHttpTag, type BackendConnectionIndex, type BackendConnectionIndexEntry, type BackendConnectionRedirectResponse, BackendConnectionSdkTag, BackendConnectionTag, type BackendConnectionUpdate, type BackendCronjob, type BackendCronjobCollection, type BackendCronjobCreate, type BackendCronjobError, BackendCronjobTag, type BackendCronjobUpdate, type BackendDashboard, BackendDashboardTag, type BackendDatabaseRow, type BackendDatabaseRowCollection, type BackendDatabaseTable, type BackendDatabaseTableCollection, type BackendDatabaseTableColumn, type BackendDatabaseTableForeignKeyConstraint, type BackendDatabaseTableIndex, type BackendEvent, type BackendEventCollection, type BackendEventCreate, BackendEventTag, type BackendEventUpdate, type BackendFile, type BackendFileCollection, type BackendFirewall, type BackendFirewallCollection, type BackendFirewallCreate, BackendFirewallTag, type BackendFirewallUpdate, type BackendForm, type BackendFormCollection, type BackendFormCreate, BackendFormTag, type BackendFormUpdate, type BackendGeneratorIndexProvider, type BackendGeneratorIndexProviders, type BackendGeneratorProvider, type BackendGeneratorProviderChangelog, type BackendGeneratorProviderConfig, BackendGeneratorTag, type BackendHttpRequest, type BackendHttpResponse, type BackendIdentity, type BackendIdentityCollection, type BackendIdentityConfig, type BackendIdentityCreate, type BackendIdentityIndex, type BackendIdentityIndexEntry, BackendIdentityTag, type BackendIdentityUpdate, type BackendLog, type BackendLogCollection, type BackendLogError, type BackendLogErrorCollection, BackendLogTag, BackendMarketplaceActionTag, BackendMarketplaceAppTag, BackendMarketplaceBundleTag, BackendMarketplaceTag, type BackendOperation, type BackendOperationCollection, type BackendOperationCreate, type BackendOperationParameters, type BackendOperationSchema, BackendOperationTag, type BackendOperationThrows, type BackendOperationUpdate, type BackendPage, type BackendPageCollection, type BackendPageCreate, BackendPageTag, type BackendPageUpdate, type BackendPlan, type BackendPlanCollection, type BackendPlanCreate, BackendPlanTag, type BackendPlanUpdate, type BackendRate, type BackendRateAllocation, type BackendRateCollection, type BackendRateCreate, BackendRateTag, type BackendRateUpdate, type BackendRole, type BackendRoleCollection, type BackendRoleCreate, BackendRoleTag, type BackendRoleUpdate, type BackendSchema, type BackendSchemaCollection, type BackendSchemaCreate, type BackendSchemaPreviewResponse, type BackendSchemaSource, BackendSchemaTag, type BackendSchemaUpdate, type BackendScope, type BackendScopeCategories, type BackendScopeCategory, type BackendScopeCategoryScope, type BackendScopeCollection, type BackendScopeCreate, type BackendScopeOperation, BackendScopeTag, type BackendScopeUpdate, type BackendSdkGenerate, type BackendSdkMessage, type BackendSdkResponse, BackendSdkTag, type BackendSdkTypes, type BackendStatisticChart, type BackendStatisticChartSeries, type BackendStatisticCount, BackendStatisticTag, BackendTag, BackendTenantTag, type BackendTest, type BackendTestCollection, type BackendTestConfig, BackendTestTag, type BackendToken, type BackendTokenCollection, BackendTokenTag, type BackendTransaction, type BackendTransactionCollection, BackendTransactionTag, type BackendTrashData, type BackendTrashDataCollection, type BackendTrashRestore, BackendTrashTag, type BackendTrashTypes, type BackendTrigger, type BackendTriggerCollection, type BackendTriggerCreate, BackendTriggerTag, type BackendTriggerUpdate, type BackendUser, type BackendUserCollection, type BackendUserCreate, BackendUserTag, type BackendUserUpdate, type BackendWebhook, type BackendWebhookCollection, type BackendWebhookCreate, type BackendWebhookResponse, BackendWebhookTag, type BackendWebhookUpdate, Client, type CommonCollection, type CommonFormContainer, type CommonFormElement, type CommonFormElementInput, type CommonFormElementSelect, type CommonFormElementSelectOption, type CommonFormElementTag, type CommonFormElementTextArea, type CommonMessage, CommonMessageException, type CommonMetadata, ConsumerAccountTag, type ConsumerApp, type ConsumerAppCollection, type ConsumerAppCreate, ConsumerAppTag, type ConsumerAppUpdate, type ConsumerAuthorizeMeta, type ConsumerAuthorizeRequest, type ConsumerAuthorizeResponse, type ConsumerEvent, type ConsumerEventCollection, ConsumerEventTag, type ConsumerForm, type ConsumerFormCollection, ConsumerFormTag, type ConsumerGrant, type ConsumerGrantCollection, ConsumerGrantTag, type ConsumerIdentity, type ConsumerIdentityCollection, ConsumerIdentityTag, type ConsumerLog, type ConsumerLogCollection, ConsumerLogTag, type ConsumerPage, type ConsumerPageCollection, ConsumerPageTag, type ConsumerPaymentCheckoutRequest, type ConsumerPaymentCheckoutResponse, type ConsumerPaymentPortalRequest, type ConsumerPaymentPortalResponse, ConsumerPaymentTag, type ConsumerPlan, type ConsumerPlanCollection, ConsumerPlanTag, type ConsumerScope, type ConsumerScopeCategories, type ConsumerScopeCategory, type ConsumerScopeCategoryScope, type ConsumerScopeCollection, ConsumerScopeTag, ConsumerTag, type ConsumerToken, type ConsumerTokenAccessToken, type ConsumerTokenCollection, type ConsumerTokenCreate, ConsumerTokenTag, type ConsumerTokenUpdate, type ConsumerTransaction, type ConsumerTransactionCollection, ConsumerTransactionTag, type ConsumerUserAccount, type ConsumerUserActivate, type ConsumerUserEmail, type ConsumerUserJWT, type ConsumerUserLogin, type ConsumerUserPasswordReset, type ConsumerUserPlan, type ConsumerUserRefresh, type ConsumerUserRegister, type ConsumerWebhook, type ConsumerWebhookCollection, type ConsumerWebhookCreate, type ConsumerWebhookResponse, ConsumerWebhookTag, type ConsumerWebhookUpdate, type MarketplaceAction, type MarketplaceActionCollection, type MarketplaceActionConfig, type MarketplaceApp, type MarketplaceAppCollection, type MarketplaceBundle, type MarketplaceBundleAction, type MarketplaceBundleActionConfig, type MarketplaceBundleCollection, type MarketplaceBundleConfig, type MarketplaceBundleCronjob, type MarketplaceBundleEvent, type MarketplaceBundleSchema, type MarketplaceBundleSchemaSource, type MarketplaceBundleTrigger, type MarketplaceCollection, type MarketplaceInstall, type MarketplaceMessage, type MarketplaceObject, type MarketplaceUser, type Passthru, type SystemAbout, type SystemAboutApps, type SystemAboutLink, SystemConnectionTag, type SystemHealthCheck, SystemMetaTag, SystemPaymentTag, type SystemRoute, type SystemRouteMethod, type SystemRoutePath, type SystemSchema, type SystemSchemaForm, type SystemSchemaTypeSchema, SystemTag };
|