fusio-sdk 7.0.3 → 7.0.6
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 +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +107 -58
- package/dist/index.d.ts +107 -58
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -350,6 +350,30 @@ interface CommonFormElement {
|
|
|
350
350
|
help?: string;
|
|
351
351
|
}
|
|
352
352
|
|
|
353
|
+
/**
|
|
354
|
+
* CommonFormElementCheckbox automatically generated by SDKgen please do not edit this file manually
|
|
355
|
+
* {@link https://sdkgen.app}
|
|
356
|
+
*/
|
|
357
|
+
|
|
358
|
+
/**
|
|
359
|
+
* Form element which represents a checkbox element
|
|
360
|
+
*/
|
|
361
|
+
interface CommonFormElementCheckbox extends CommonFormElement {
|
|
362
|
+
type: "checkbox";
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
/**
|
|
366
|
+
* CommonFormElementCollection automatically generated by SDKgen please do not edit this file manually
|
|
367
|
+
* {@link https://sdkgen.app}
|
|
368
|
+
*/
|
|
369
|
+
|
|
370
|
+
/**
|
|
371
|
+
* Form element which represents a collection element
|
|
372
|
+
*/
|
|
373
|
+
interface CommonFormElementCollection extends CommonFormElement {
|
|
374
|
+
type: "collection";
|
|
375
|
+
}
|
|
376
|
+
|
|
353
377
|
/**
|
|
354
378
|
* CommonFormElementInput automatically generated by SDKgen please do not edit this file manually
|
|
355
379
|
* {@link https://sdkgen.app}
|
|
@@ -359,7 +383,19 @@ interface CommonFormElement {
|
|
|
359
383
|
* Form element which represents an input element
|
|
360
384
|
*/
|
|
361
385
|
interface CommonFormElementInput extends CommonFormElement {
|
|
362
|
-
type: "
|
|
386
|
+
type: "input";
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
/**
|
|
390
|
+
* CommonFormElementMap automatically generated by SDKgen please do not edit this file manually
|
|
391
|
+
* {@link https://sdkgen.app}
|
|
392
|
+
*/
|
|
393
|
+
|
|
394
|
+
/**
|
|
395
|
+
* Form element which represents a map element
|
|
396
|
+
*/
|
|
397
|
+
interface CommonFormElementMap extends CommonFormElement {
|
|
398
|
+
type: "map";
|
|
363
399
|
}
|
|
364
400
|
|
|
365
401
|
/**
|
|
@@ -383,33 +419,45 @@ interface CommonFormElementSelectOption {
|
|
|
383
419
|
* Form element which represents a select element
|
|
384
420
|
*/
|
|
385
421
|
interface CommonFormElementSelect extends CommonFormElement {
|
|
386
|
-
type: "
|
|
422
|
+
type: "select";
|
|
387
423
|
options?: Array<CommonFormElementSelectOption>;
|
|
388
424
|
}
|
|
389
425
|
|
|
390
426
|
/**
|
|
391
|
-
*
|
|
427
|
+
* CommonFormElementTextArea automatically generated by SDKgen please do not edit this file manually
|
|
392
428
|
* {@link https://sdkgen.app}
|
|
393
429
|
*/
|
|
394
430
|
|
|
395
431
|
/**
|
|
396
|
-
* Form element which represents
|
|
432
|
+
* Form element which represents a textarea
|
|
397
433
|
*/
|
|
398
|
-
interface
|
|
399
|
-
type: "
|
|
434
|
+
interface CommonFormElementTextArea extends CommonFormElement {
|
|
435
|
+
type: "textarea";
|
|
436
|
+
mode?: string;
|
|
400
437
|
}
|
|
401
438
|
|
|
402
439
|
/**
|
|
403
|
-
*
|
|
440
|
+
* CommonFormElementTypeAPI automatically generated by SDKgen please do not edit this file manually
|
|
404
441
|
* {@link https://sdkgen.app}
|
|
405
442
|
*/
|
|
406
443
|
|
|
407
444
|
/**
|
|
408
|
-
* Form element which represents a
|
|
445
|
+
* Form element which represents a TypeAPI editor
|
|
409
446
|
*/
|
|
410
|
-
interface
|
|
411
|
-
type: "
|
|
412
|
-
|
|
447
|
+
interface CommonFormElementTypeAPI extends CommonFormElement {
|
|
448
|
+
type: "typeapi";
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
/**
|
|
452
|
+
* CommonFormElementTypeSchema automatically generated by SDKgen please do not edit this file manually
|
|
453
|
+
* {@link https://sdkgen.app}
|
|
454
|
+
*/
|
|
455
|
+
|
|
456
|
+
/**
|
|
457
|
+
* Form element which represents a TypeSchema editor
|
|
458
|
+
*/
|
|
459
|
+
interface CommonFormElementTypeSchema extends CommonFormElement {
|
|
460
|
+
type: "typeschema";
|
|
413
461
|
}
|
|
414
462
|
|
|
415
463
|
/**
|
|
@@ -421,7 +469,7 @@ interface CommonFormElementTextArea extends CommonFormElement {
|
|
|
421
469
|
* Represents a config form with a list of elements
|
|
422
470
|
*/
|
|
423
471
|
interface CommonFormContainer {
|
|
424
|
-
element?: Array<CommonFormElementInput | CommonFormElementSelect |
|
|
472
|
+
element?: Array<CommonFormElementCheckbox | CommonFormElementCollection | CommonFormElementInput | CommonFormElementMap | CommonFormElementSelect | CommonFormElementTextArea | CommonFormElementTypeAPI | CommonFormElementTypeSchema>;
|
|
425
473
|
}
|
|
426
474
|
|
|
427
475
|
/**
|
|
@@ -538,114 +586,102 @@ interface BackendAgentCollection extends CommonCollection<BackendAgent> {
|
|
|
538
586
|
}
|
|
539
587
|
|
|
540
588
|
/**
|
|
541
|
-
*
|
|
589
|
+
* BackendAgentCreate automatically generated by SDKgen please do not edit this file manually
|
|
590
|
+
* {@link https://sdkgen.app}
|
|
591
|
+
*/
|
|
592
|
+
|
|
593
|
+
interface BackendAgentCreate extends BackendAgent {
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
/**
|
|
597
|
+
* CommonAgentContent automatically generated by SDKgen please do not edit this file manually
|
|
542
598
|
* {@link https://sdkgen.app}
|
|
543
599
|
*/
|
|
544
600
|
/**
|
|
545
601
|
* Agent message
|
|
546
602
|
*/
|
|
547
|
-
interface
|
|
603
|
+
interface CommonAgentContent {
|
|
548
604
|
type?: string;
|
|
549
605
|
metadata?: Record<string, any>;
|
|
550
606
|
}
|
|
551
607
|
|
|
552
608
|
/**
|
|
553
|
-
*
|
|
609
|
+
* CommonAgentContentBinary automatically generated by SDKgen please do not edit this file manually
|
|
554
610
|
* {@link https://sdkgen.app}
|
|
555
611
|
*/
|
|
556
612
|
|
|
557
613
|
/**
|
|
558
614
|
* Binary agent message
|
|
559
615
|
*/
|
|
560
|
-
interface
|
|
616
|
+
interface CommonAgentContentBinary extends CommonAgentContent {
|
|
561
617
|
type: "binary";
|
|
562
618
|
mime?: string;
|
|
563
619
|
data?: string;
|
|
564
620
|
}
|
|
565
621
|
|
|
566
622
|
/**
|
|
567
|
-
*
|
|
623
|
+
* CommonAgentContentObject automatically generated by SDKgen please do not edit this file manually
|
|
568
624
|
* {@link https://sdkgen.app}
|
|
569
625
|
*/
|
|
570
626
|
|
|
571
627
|
/**
|
|
572
628
|
* Structured agent message
|
|
573
629
|
*/
|
|
574
|
-
interface
|
|
630
|
+
interface CommonAgentContentObject extends CommonAgentContent {
|
|
575
631
|
type: "object";
|
|
576
632
|
payload?: any;
|
|
577
633
|
}
|
|
578
634
|
|
|
579
635
|
/**
|
|
580
|
-
*
|
|
636
|
+
* CommonAgentContentText automatically generated by SDKgen please do not edit this file manually
|
|
581
637
|
* {@link https://sdkgen.app}
|
|
582
638
|
*/
|
|
583
639
|
|
|
584
640
|
/**
|
|
585
641
|
* Text agent message
|
|
586
642
|
*/
|
|
587
|
-
interface
|
|
643
|
+
interface CommonAgentContentText extends CommonAgentContent {
|
|
588
644
|
type: "text";
|
|
589
645
|
content?: string;
|
|
590
646
|
}
|
|
591
647
|
|
|
592
648
|
/**
|
|
593
|
-
*
|
|
649
|
+
* CommonAgentContentToolCallFunction automatically generated by SDKgen please do not edit this file manually
|
|
594
650
|
* {@link https://sdkgen.app}
|
|
595
651
|
*/
|
|
596
652
|
/**
|
|
597
653
|
* Concrete values for a function tool call
|
|
598
654
|
*/
|
|
599
|
-
interface
|
|
655
|
+
interface CommonAgentContentToolCallFunction {
|
|
600
656
|
id?: string;
|
|
601
657
|
name?: string;
|
|
602
658
|
arguments?: string;
|
|
603
659
|
}
|
|
604
660
|
|
|
605
661
|
/**
|
|
606
|
-
*
|
|
662
|
+
* CommonAgentContentToolCall automatically generated by SDKgen please do not edit this file manually
|
|
607
663
|
* {@link https://sdkgen.app}
|
|
608
664
|
*/
|
|
609
665
|
|
|
610
666
|
/**
|
|
611
667
|
* Tool call agent message
|
|
612
668
|
*/
|
|
613
|
-
interface
|
|
669
|
+
interface CommonAgentContentToolCall extends CommonAgentContent {
|
|
614
670
|
type: "tool_call";
|
|
615
|
-
functions?: Array<
|
|
671
|
+
functions?: Array<CommonAgentContentToolCallFunction>;
|
|
616
672
|
}
|
|
617
673
|
|
|
618
674
|
/**
|
|
619
|
-
*
|
|
675
|
+
* CommonAgentContentChoice automatically generated by SDKgen please do not edit this file manually
|
|
620
676
|
* {@link https://sdkgen.app}
|
|
621
677
|
*/
|
|
622
678
|
|
|
623
679
|
/**
|
|
624
680
|
* Choice agent message
|
|
625
681
|
*/
|
|
626
|
-
interface
|
|
682
|
+
interface CommonAgentContentChoice extends CommonAgentContent {
|
|
627
683
|
type: "choice";
|
|
628
|
-
items?: Array<
|
|
629
|
-
}
|
|
630
|
-
|
|
631
|
-
/**
|
|
632
|
-
* BackendAgentCreate automatically generated by SDKgen please do not edit this file manually
|
|
633
|
-
* {@link https://sdkgen.app}
|
|
634
|
-
*/
|
|
635
|
-
|
|
636
|
-
interface BackendAgentCreate extends BackendAgent {
|
|
637
|
-
}
|
|
638
|
-
|
|
639
|
-
/**
|
|
640
|
-
* BackendAgentInput automatically generated by SDKgen please do not edit this file manually
|
|
641
|
-
* {@link https://sdkgen.app}
|
|
642
|
-
*/
|
|
643
|
-
|
|
644
|
-
/**
|
|
645
|
-
* This object represents an agent input
|
|
646
|
-
*/
|
|
647
|
-
interface BackendAgentInput {
|
|
648
|
-
input?: BackendAgentContentBinary | BackendAgentContentChoice | BackendAgentContentObject | BackendAgentContentText | BackendAgentContentToolCall;
|
|
684
|
+
items?: Array<CommonAgentContentBinary | CommonAgentContentChoice | CommonAgentContentObject | CommonAgentContentText | CommonAgentContentToolCall>;
|
|
649
685
|
}
|
|
650
686
|
|
|
651
687
|
/**
|
|
@@ -659,7 +695,7 @@ interface BackendAgentInput {
|
|
|
659
695
|
interface BackendAgentMessage {
|
|
660
696
|
id?: number;
|
|
661
697
|
role?: string;
|
|
662
|
-
content?:
|
|
698
|
+
content?: CommonAgentContentBinary | CommonAgentContentChoice | CommonAgentContentObject | CommonAgentContentText | CommonAgentContentToolCall;
|
|
663
699
|
insertDate?: string;
|
|
664
700
|
}
|
|
665
701
|
|
|
@@ -675,16 +711,29 @@ interface BackendAgentMessageCollection extends CommonCollection<BackendAgentMes
|
|
|
675
711
|
}
|
|
676
712
|
|
|
677
713
|
/**
|
|
678
|
-
*
|
|
714
|
+
* CommonAgentInput automatically generated by SDKgen please do not edit this file manually
|
|
715
|
+
* {@link https://sdkgen.app}
|
|
716
|
+
*/
|
|
717
|
+
|
|
718
|
+
/**
|
|
719
|
+
* This object represents an agent input
|
|
720
|
+
*/
|
|
721
|
+
interface CommonAgentInput {
|
|
722
|
+
previousId?: string;
|
|
723
|
+
input?: CommonAgentContentBinary | CommonAgentContentChoice | CommonAgentContentObject | CommonAgentContentText | CommonAgentContentToolCall;
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
/**
|
|
727
|
+
* CommonAgentOutput automatically generated by SDKgen please do not edit this file manually
|
|
679
728
|
* {@link https://sdkgen.app}
|
|
680
729
|
*/
|
|
681
730
|
|
|
682
731
|
/**
|
|
683
732
|
* This object represents an agent output
|
|
684
733
|
*/
|
|
685
|
-
interface
|
|
734
|
+
interface CommonAgentOutput {
|
|
686
735
|
id?: string;
|
|
687
|
-
output?:
|
|
736
|
+
output?: CommonAgentContentBinary | CommonAgentContentChoice | CommonAgentContentObject | CommonAgentContentText | CommonAgentContentToolCall;
|
|
688
737
|
}
|
|
689
738
|
|
|
690
739
|
/**
|
|
@@ -700,15 +749,15 @@ declare class BackendAgentMessageTag extends TagAbstract {
|
|
|
700
749
|
* @throws {CommonMessageException}
|
|
701
750
|
* @throws {ClientException}
|
|
702
751
|
*/
|
|
703
|
-
getAll(agentId: string,
|
|
752
|
+
getAll(agentId: string, chatId?: string): Promise<BackendAgentMessageCollection>;
|
|
704
753
|
/**
|
|
705
754
|
* Submits a new agent message
|
|
706
755
|
*
|
|
707
|
-
* @returns {Promise<
|
|
756
|
+
* @returns {Promise<CommonAgentOutput>}
|
|
708
757
|
* @throws {CommonMessageException}
|
|
709
758
|
* @throws {ClientException}
|
|
710
759
|
*/
|
|
711
|
-
submit(agentId: string, payload:
|
|
760
|
+
submit(agentId: string, payload: CommonAgentInput): Promise<CommonAgentOutput>;
|
|
712
761
|
}
|
|
713
762
|
|
|
714
763
|
/**
|
|
@@ -1304,11 +1353,11 @@ declare class BackendConnectionAgentTag extends TagAbstract {
|
|
|
1304
1353
|
/**
|
|
1305
1354
|
* Sends a message to an agent
|
|
1306
1355
|
*
|
|
1307
|
-
* @returns {Promise<
|
|
1356
|
+
* @returns {Promise<CommonAgentOutput>}
|
|
1308
1357
|
* @throws {CommonMessageException}
|
|
1309
1358
|
* @throws {ClientException}
|
|
1310
1359
|
*/
|
|
1311
|
-
send(connectionId: string, payload:
|
|
1360
|
+
send(connectionId: string, payload: CommonAgentInput): Promise<CommonAgentOutput>;
|
|
1312
1361
|
}
|
|
1313
1362
|
|
|
1314
1363
|
/**
|
|
@@ -5854,4 +5903,4 @@ declare class CommonMessageException extends KnownStatusCodeException {
|
|
|
5854
5903
|
getPayload(): CommonMessage;
|
|
5855
5904
|
}
|
|
5856
5905
|
|
|
5857
|
-
export { AuthorizationTag, type BackendAccountChangePassword, BackendAccountTag, type BackendAction, type BackendActionCollection, type BackendActionCommit, type BackendActionCommitCollection, type BackendActionConfig, type BackendActionCreate, type BackendActionExecuteRequest, type BackendActionExecuteRequestBody, type BackendActionExecuteResponse, type BackendActionExecuteResponseBody, type BackendActionExecuteResponseHeaders, type BackendActionIndex, type BackendActionIndexEntry, BackendActionTag, type BackendActionUpdate, type BackendAgent, type BackendAgentCollection, type
|
|
5906
|
+
export { AuthorizationTag, type BackendAccountChangePassword, BackendAccountTag, type BackendAction, type BackendActionCollection, type BackendActionCommit, type BackendActionCommitCollection, type BackendActionConfig, type BackendActionCreate, type BackendActionExecuteRequest, type BackendActionExecuteRequestBody, type BackendActionExecuteResponse, type BackendActionExecuteResponseBody, type BackendActionExecuteResponseHeaders, type BackendActionIndex, type BackendActionIndexEntry, BackendActionTag, type BackendActionUpdate, type BackendAgent, type BackendAgentCollection, type BackendAgentCreate, type BackendAgentMessage, type BackendAgentMessageCollection, BackendAgentMessageTag, BackendAgentTag, type BackendAgentTool, type BackendAgentTools, type BackendAgentUpdate, 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 BackendBundleUpdate, type BackendCategory, type BackendCategoryCollection, type BackendCategoryCreate, BackendCategoryTag, type BackendCategoryUpdate, type BackendConfig, type BackendConfigCollection, BackendConfigTag, type BackendConfigUpdate, type BackendConnection, BackendConnectionAgentTag, 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 BackendSchemaCommit, type BackendSchemaCommitCollection, 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, type BackendTaxonomy, type BackendTaxonomyCollection, type BackendTaxonomyCreate, type BackendTaxonomyMove, BackendTaxonomyTag, type BackendTaxonomyUpdate, 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 CommonAgentContent, type CommonAgentContentBinary, type CommonAgentContentChoice, type CommonAgentContentObject, type CommonAgentContentText, type CommonAgentContentToolCall, type CommonAgentContentToolCallFunction, type CommonAgentInput, type CommonAgentOutput, type CommonCollection, type CommonFormContainer, type CommonFormElement, type CommonFormElementCheckbox, type CommonFormElementCollection, type CommonFormElementInput, type CommonFormElementMap, type CommonFormElementSelect, type CommonFormElementSelectOption, type CommonFormElementTextArea, type CommonFormElementTypeAPI, type CommonFormElementTypeSchema, 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 };
|