@engini/client 0.3.0 → 0.4.0

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.d.ts CHANGED
@@ -322,251 +322,828 @@ type Options$1<TData extends TDataShape = TDataShape, ThrowOnError extends boole
322
322
  type ClientOptions = {
323
323
  baseUrl: 'https://feat-public-api.staging.engini.io/api' | (string & {});
324
324
  };
325
+ /**
326
+ * Identity of the principal a Developer API request is authenticated as, returned by
327
+ * GET /api/DeveloperAPI/v1/auth/whoami. For x-api-key requests the identity is the
328
+ * token's owner (the key acts as the owner) and UserType is "apiuser".
329
+ */
330
+ type WhoAmIResponse = {
331
+ /**
332
+ * The acting user's full name.
333
+ */
334
+ fullName?: string | null;
335
+ /**
336
+ * The acting user's email address.
337
+ */
338
+ email?: string | null;
339
+ /**
340
+ * Display name of the account/company the request is scoped to.
341
+ */
342
+ currentCompany?: string | null;
343
+ /**
344
+ * Role within the current company (e.g. "Admin", "Member").
345
+ */
346
+ role?: string | null;
347
+ /**
348
+ * Caller type: "apiuser" (x-api-key), "anonymous" (deleted profile), or "user".
349
+ */
350
+ userType: string;
351
+ };
352
+ /**
353
+ * Unified error envelope for every non-200 response from /api/DeveloperAPI/v1*.
354
+ * See applications-tools-spec.md §"Error envelope".
355
+ */
356
+ type ErrorResponse = {
357
+ /**
358
+ * Machine-readable error code identifying the failure.
359
+ */
360
+ errorCode: string;
361
+ /**
362
+ * Human-readable error message.
363
+ */
364
+ message: string;
365
+ /**
366
+ * Identifier of the request, for support/correlation.
367
+ */
368
+ requestId: string;
369
+ /**
370
+ * Timestamp when the error occurred (ISO 8601).
371
+ */
372
+ timestamp: string;
373
+ /**
374
+ * Request path that produced the error.
375
+ */
376
+ path: string;
377
+ /**
378
+ * Per-field validation details, when applicable.
379
+ */
380
+ details?: Array<ErrorDetail> | null;
381
+ };
382
+ /**
383
+ * A single field-level error detail within an ErrorResponse.
384
+ */
385
+ type ErrorDetail = {
386
+ /**
387
+ * Name of the field the issue relates to.
388
+ */
389
+ field: string;
390
+ /**
391
+ * Description of the issue with the field.
392
+ */
393
+ issue: string;
394
+ };
325
395
  type SolutionAdminWriteResponse = {
396
+ /**
397
+ * The created or updated solution detail.
398
+ */
326
399
  solution: SolutionDetailResponse;
400
+ /**
401
+ * Warnings produced while building the manifest.
402
+ */
327
403
  warnings: Array<string>;
328
404
  };
329
405
  type SolutionDetailResponse = {
406
+ /**
407
+ * Identifier of the solution.
408
+ */
330
409
  solutionId: number;
410
+ /**
411
+ * Unique slug of the solution.
412
+ */
331
413
  slug: string;
414
+ /**
415
+ * Display name of the solution.
416
+ */
332
417
  name: string;
418
+ /**
419
+ * Description of the solution.
420
+ */
333
421
  description?: string | null;
422
+ /**
423
+ * URL of the solution's icon.
424
+ */
334
425
  iconUrl?: string | null;
426
+ /**
427
+ * Current status of the solution.
428
+ */
335
429
  status: string;
430
+ /**
431
+ * Current manifest version of the solution.
432
+ */
336
433
  manifestVersion: number;
434
+ /**
435
+ * Number of times the solution has been installed.
436
+ */
337
437
  installCount: number;
438
+ /**
439
+ * When the solution was created.
440
+ */
338
441
  createdDate: string;
442
+ /**
443
+ * When the solution was last updated; null if never updated.
444
+ */
339
445
  updatedDate?: string | null;
446
+ /**
447
+ * The serialized solution manifest JSON.
448
+ */
340
449
  manifest: string;
341
450
  };
342
- type ErrorResponse = {
343
- errorCode: string;
344
- message: string;
345
- requestId: string;
346
- timestamp: string;
347
- path: string;
348
- details?: Array<ErrorDetail> | null;
349
- };
350
- type ErrorDetail = {
351
- field: string;
352
- issue: string;
353
- };
354
451
  type CreateSolutionRequest = {
452
+ /**
453
+ * Unique slug identifying the new solution.
454
+ */
355
455
  slug: string;
456
+ /**
457
+ * Display name of the solution.
458
+ */
356
459
  name: string;
460
+ /**
461
+ * Optional description of the solution.
462
+ */
357
463
  description?: string | null;
464
+ /**
465
+ * Optional URL of the solution's icon.
466
+ */
358
467
  iconUrl?: string | null;
468
+ /**
469
+ * Build inputs used to generate the solution manifest.
470
+ */
359
471
  buildManifest: SolutionManifestBuildSpec;
360
472
  };
361
473
  type SolutionManifestBuildSpec = {
474
+ /**
475
+ * Workflows to include in the built manifest.
476
+ */
362
477
  workflows: Array<BuildManifestWorkflow>;
478
+ /**
479
+ * Tables to include in the built manifest.
480
+ */
363
481
  tables: Array<BuildManifestTable>;
482
+ /**
483
+ * Connections to include in the built manifest.
484
+ */
364
485
  connections: Array<ManifestConnection>;
486
+ /**
487
+ * Optional manifest version; defaults when null.
488
+ */
365
489
  version?: string | null;
366
490
  };
367
491
  type BuildManifestWorkflow = {
492
+ /**
493
+ * Identifier of the workflow to include.
494
+ */
368
495
  workflowId: number;
496
+ /**
497
+ * Manifest-local key to assign the workflow.
498
+ */
369
499
  key: string;
500
+ /**
501
+ * Optional display name for the workflow.
502
+ */
370
503
  name?: string | null;
504
+ /**
505
+ * Whether the workflow is triggered by an incoming webhook.
506
+ */
371
507
  isWebhookEntrypoint: boolean;
372
508
  };
373
509
  type BuildManifestTable = {
510
+ /**
511
+ * Identifier of the table to include.
512
+ */
374
513
  tableId: string;
514
+ /**
515
+ * Manifest-local key to assign the table.
516
+ */
375
517
  key: string;
376
518
  };
519
+ /**
520
+ * A connection requirement declared by a solution manifest.
521
+ */
377
522
  type ManifestConnection = {
523
+ /**
524
+ * Manifest-local key used to reference this connection from workflows.
525
+ */
378
526
  key: string;
527
+ /**
528
+ * Identifier of the application this connection is for.
529
+ */
379
530
  applicationId: number;
531
+ /**
532
+ * Display label for the connection during install.
533
+ */
380
534
  label?: string | null;
535
+ /**
536
+ * Whether the connection must be supplied to install the solution.
537
+ */
381
538
  required: boolean;
539
+ /**
540
+ * Whether the connection requires a per-user token.
541
+ */
382
542
  requiresUserToken: boolean;
543
+ /**
544
+ * Default configuration to seed the connection with.
545
+ */
383
546
  defaultConfig?: ManifestConnectionDefaults | null;
384
547
  };
548
+ /**
549
+ * Default configuration values for a manifest connection.
550
+ */
385
551
  type ManifestConnectionDefaults = {
552
+ /**
553
+ * Default base URL for the connection.
554
+ */
386
555
  baseUrl?: string | null;
387
556
  };
388
557
  type UpdateSolutionRequest = {
558
+ /**
559
+ * New display name; null leaves it unchanged.
560
+ */
389
561
  name?: string | null;
562
+ /**
563
+ * New description; null leaves it unchanged.
564
+ */
390
565
  description?: string | null;
566
+ /**
567
+ * New icon URL; null leaves it unchanged.
568
+ */
391
569
  iconUrl?: string | null;
570
+ /**
571
+ * New build inputs to rebuild the manifest; null leaves it unchanged.
572
+ */
392
573
  buildManifest?: SolutionManifestBuildSpec | null;
393
574
  };
394
575
  type BuildManifestResponse = {
576
+ /**
577
+ * The built solution manifest.
578
+ */
395
579
  manifest: SolutionManifest;
580
+ /**
581
+ * Warnings produced while building the manifest.
582
+ */
396
583
  warnings: Array<string>;
584
+ /**
585
+ * Updated solution detail, populated only when a slug was supplied and the update succeeded.
586
+ */
397
587
  solution?: SolutionDetailResponse | null;
398
588
  };
589
+ /**
590
+ * The manifest describing the connections, tables, and workflows that make up a solution.
591
+ */
399
592
  type SolutionManifest = {
593
+ /**
594
+ * Manifest schema version.
595
+ */
400
596
  version: string;
597
+ /**
598
+ * Connections the solution requires.
599
+ */
401
600
  connections?: Array<ManifestConnection> | null;
601
+ /**
602
+ * Tables the solution provisions.
603
+ */
402
604
  tables?: Array<ManifestTable> | null;
605
+ /**
606
+ * Workflows the solution provisions.
607
+ */
403
608
  workflows?: Array<ManifestWorkflow> | null;
404
609
  };
610
+ /**
611
+ * A table provisioned by a solution manifest.
612
+ */
405
613
  type ManifestTable = {
614
+ /**
615
+ * Manifest-local key used to reference this table.
616
+ */
406
617
  key: string;
618
+ /**
619
+ * Definition of the table to provision.
620
+ */
407
621
  definition: TableDefinitionDto;
408
622
  };
623
+ /**
624
+ * Cross-service DTO describing a table to provision. Consumed by WorkappBackend's
625
+ * POST /api/v1/tables/provision endpoint when installing a solution.
626
+ */
409
627
  type TableDefinitionDto = {
628
+ /**
629
+ * Name of the table to provision.
630
+ */
410
631
  name: string;
632
+ /**
633
+ * Description of the table.
634
+ */
411
635
  description?: string | null;
636
+ /**
637
+ * Fields (columns) that make up the table.
638
+ */
412
639
  fields: Array<TableFieldDto>;
413
640
  };
641
+ /**
642
+ * Definition of a single field (column) within a TableDefinitionDto.
643
+ */
414
644
  type TableFieldDto = {
645
+ /**
646
+ * Logical name of the field.
647
+ */
415
648
  fieldName: string;
649
+ /**
650
+ * Matches Engini.Models.WorkappModels.DbModels.FieldTypeEnum
651
+ * (String=2, Bool=3, DateTime=5, Integer=6, Numeric=7, Dropdown=10, ...).
652
+ */
416
653
  fieldTypeId: number;
654
+ /**
655
+ * Display name shown for the field.
656
+ */
417
657
  displayName?: string | null;
658
+ /**
659
+ * Default value for the field.
660
+ */
418
661
  defaultValue?: string | null;
662
+ /**
663
+ * Ordinal position of the field within the table.
664
+ */
419
665
  fieldOrder: number;
666
+ /**
667
+ * Whether the field is the table's primary key.
668
+ */
420
669
  isPrimaryKey: boolean;
670
+ /**
671
+ * Whether the field is required.
672
+ */
421
673
  isMandatory: boolean;
674
+ /**
675
+ * Whether the field is hidden from default views.
676
+ */
422
677
  isHidden: boolean;
678
+ /**
679
+ * Whether the field allows selecting multiple values.
680
+ */
423
681
  isMultiSelect: boolean;
682
+ /**
683
+ * JSON-serialized picklist values for Dropdown/Status/Labels field types.
684
+ * Shape matches TableFieldPicklist.
685
+ */
424
686
  picklistJson?: string | null;
687
+ /**
688
+ * Physical column name in storage. When omitted on provisioning, falls back to FieldName.
689
+ */
425
690
  databaseFieldName?: string | null;
691
+ /**
692
+ * Physical storage table name when the field is stored outside the default per-table layout.
693
+ */
426
694
  databaseFieldLocationTable?: string | null;
427
695
  };
696
+ /**
697
+ * A workflow provisioned by a solution manifest.
698
+ */
428
699
  type ManifestWorkflow = {
700
+ /**
701
+ * Manifest-local key used to reference this workflow.
702
+ */
429
703
  key: string;
704
+ /**
705
+ * Display name of the workflow.
706
+ */
430
707
  name?: string | null;
708
+ /**
709
+ * The serialized workflow definition as an opaque JSON object. The internal shape is the
710
+ * engine's workflow graph and is not part of the public contract, so it is left untyped
711
+ * (api-spec-feedback.md C3) — treat it as an opaque blob to round-trip during install.
712
+ */
431
713
  definition?: unknown;
714
+ /**
715
+ * Maps the workflow's connection references to manifest connection keys.
716
+ */
432
717
  connectionMapping?: {
433
718
  [key: string]: string;
434
719
  } | null;
720
+ /**
721
+ * Whether this workflow is triggered by an incoming webhook.
722
+ */
435
723
  isWebhookEntrypoint: boolean;
436
724
  };
437
725
  type BuildManifestRequest = {
726
+ /**
727
+ * Workflows to include in the built manifest.
728
+ */
438
729
  workflows: Array<BuildManifestWorkflow>;
730
+ /**
731
+ * Tables to include in the built manifest.
732
+ */
439
733
  tables: Array<BuildManifestTable>;
734
+ /**
735
+ * Connections to include in the built manifest.
736
+ */
440
737
  connections: Array<ManifestConnection>;
738
+ /**
739
+ * Optional manifest version; defaults when null.
740
+ */
441
741
  version?: string | null;
742
+ /**
743
+ * When set, updates the existing solution with this slug after building the manifest; omit to build only.
744
+ */
442
745
  slug?: string | null;
443
746
  };
747
+ /**
748
+ * Offset-based paginated wrapper for a list of items.
749
+ */
444
750
  type PaginatedResponseOfSolutionResponse = {
751
+ /**
752
+ * The items in the current page.
753
+ */
445
754
  items: Array<SolutionResponse>;
755
+ /**
756
+ * Total number of items available across all pages.
757
+ */
446
758
  totalCount: number;
759
+ /**
760
+ * Number of items skipped before this page (the requested offset).
761
+ */
447
762
  offset: number;
763
+ /**
764
+ * Maximum number of items requested for this page.
765
+ */
448
766
  top: number;
449
767
  };
450
768
  type SolutionResponse = {
769
+ /**
770
+ * Identifier of the solution.
771
+ */
451
772
  solutionId: number;
773
+ /**
774
+ * Unique slug of the solution.
775
+ */
452
776
  slug: string;
777
+ /**
778
+ * Display name of the solution.
779
+ */
453
780
  name: string;
781
+ /**
782
+ * Description of the solution.
783
+ */
454
784
  description?: string | null;
785
+ /**
786
+ * URL of the solution's icon.
787
+ */
455
788
  iconUrl?: string | null;
789
+ /**
790
+ * Current status of the solution.
791
+ */
456
792
  status: string;
793
+ /**
794
+ * Current manifest version of the solution.
795
+ */
457
796
  manifestVersion: number;
797
+ /**
798
+ * Number of times the solution has been installed.
799
+ */
458
800
  installCount: number;
801
+ /**
802
+ * When the solution was created.
803
+ */
459
804
  createdDate: string;
805
+ /**
806
+ * When the solution was last updated; null if never updated.
807
+ */
460
808
  updatedDate?: string | null;
461
809
  };
462
810
  type SolutionInstallationResponse = {
811
+ /**
812
+ * Identifier of the installation.
813
+ */
463
814
  solutionInstallationId: number;
815
+ /**
816
+ * Identifier of the installed solution.
817
+ */
464
818
  solutionId: number;
819
+ /**
820
+ * Display name of the installed solution.
821
+ */
465
822
  solutionName?: string | null;
823
+ /**
824
+ * Slug of the installed solution.
825
+ */
466
826
  slug?: string | null;
827
+ /**
828
+ * Workspace the solution is installed in.
829
+ */
467
830
  workspaceId: string;
831
+ /**
832
+ * Environment the solution is installed in.
833
+ */
468
834
  environmentId: string;
835
+ /**
836
+ * Manifest version that is currently installed.
837
+ */
469
838
  installedManifestVersion: number;
839
+ /**
840
+ * Whether the installation auto-updates to new versions.
841
+ */
470
842
  autoUpdate: boolean;
843
+ /**
844
+ * Whether a newer manifest version is available.
845
+ */
471
846
  updateAvailable: boolean;
847
+ /**
848
+ * Current status of the installation.
849
+ */
472
850
  status: string;
851
+ /**
852
+ * When the solution was installed.
853
+ */
473
854
  installedDate: string;
474
855
  };
475
856
  type InstallationDetailResponse = {
857
+ /**
858
+ * Identifier of the installation.
859
+ */
476
860
  solutionInstallationId: number;
861
+ /**
862
+ * Identifier of the installed solution.
863
+ */
477
864
  solutionId: number;
865
+ /**
866
+ * Display name of the installed solution.
867
+ */
478
868
  solutionName?: string | null;
869
+ /**
870
+ * Slug of the installed solution.
871
+ */
479
872
  slug?: string | null;
873
+ /**
874
+ * Workspace the solution is installed in.
875
+ */
480
876
  workspaceId: string;
877
+ /**
878
+ * Environment the solution is installed in.
879
+ */
481
880
  environmentId: string;
881
+ /**
882
+ * Manifest version that is currently installed.
883
+ */
482
884
  installedManifestVersion: number;
885
+ /**
886
+ * Whether the installation auto-updates to new versions.
887
+ */
483
888
  autoUpdate: boolean;
889
+ /**
890
+ * Whether a newer manifest version is available.
891
+ */
484
892
  updateAvailable: boolean;
893
+ /**
894
+ * Current status of the installation.
895
+ */
485
896
  status: string;
897
+ /**
898
+ * When the solution was installed.
899
+ */
486
900
  installedDate: string;
901
+ /**
902
+ * Resources provisioned by this installation.
903
+ */
487
904
  installedResources: Array<InstalledResourceResponse>;
488
905
  };
489
906
  type InstalledResourceResponse = {
907
+ /**
908
+ * Identifier of the installed resource record.
909
+ */
490
910
  installedResourceId: number;
911
+ /**
912
+ * Type of the provisioned resource (e.g. connection, table, workflow).
913
+ */
491
914
  resourceType: string;
915
+ /**
916
+ * Manifest-local key of the resource.
917
+ */
492
918
  resourceKey: string;
919
+ /**
920
+ * Identifier of the provisioned resource in the target system.
921
+ */
493
922
  resourceId: string;
923
+ /**
924
+ * Optional metadata about the resource.
925
+ */
494
926
  metadata?: string | null;
927
+ /**
928
+ * Webhook URL for the resource, when applicable.
929
+ */
495
930
  webhookUrl?: string | null;
496
931
  };
497
932
  type InstallSolutionResponse = {
933
+ /**
934
+ * Identifier of the created installation.
935
+ */
498
936
  installationId: number;
937
+ /**
938
+ * Resources provisioned during installation.
939
+ */
499
940
  resources: Array<ProvisionedResourceInfo>;
500
941
  };
501
942
  type ProvisionedResourceInfo = {
943
+ /**
944
+ * Type of the provisioned resource (e.g. connection, table, workflow).
945
+ */
502
946
  resourceType: string;
947
+ /**
948
+ * Manifest-local key of the resource.
949
+ */
503
950
  resourceKey: string;
951
+ /**
952
+ * Identifier of the provisioned resource in the target system.
953
+ */
504
954
  resourceId: string;
955
+ /**
956
+ * Webhook URL for the resource, when applicable.
957
+ */
505
958
  webhookUrl?: string | null;
959
+ /**
960
+ * Webhook token for the resource, when applicable.
961
+ */
506
962
  webhookToken?: string | null;
507
963
  };
508
964
  type InstallSolutionRequest = {
965
+ /**
966
+ * Workspace to install the solution into.
967
+ */
509
968
  workspaceId: string;
969
+ /**
970
+ * Environment to install the solution into.
971
+ */
510
972
  environmentId: string;
973
+ /**
974
+ * Maps manifest connection keys to existing connection IDs to reuse.
975
+ */
511
976
  existingConnections?: {
512
977
  [key: string]: number;
513
978
  } | null;
979
+ /**
980
+ * Maps manifest connection keys to new connection inputs to create.
981
+ */
514
982
  connectionMapping?: {
515
983
  [key: string]: ConnectionInput;
516
984
  } | null;
985
+ /**
986
+ * Whether the installation should auto-update to new versions.
987
+ */
517
988
  autoUpdate: boolean;
989
+ /**
990
+ * Optional external context passed through to provisioning.
991
+ */
518
992
  externalContext?: string | null;
519
993
  };
520
994
  type ConnectionInput = {
995
+ /**
996
+ * API key credential for the connection.
997
+ */
521
998
  apiKey?: string | null;
999
+ /**
1000
+ * Base URL for the connection.
1001
+ */
522
1002
  baseUrl?: string | null;
1003
+ /**
1004
+ * Additional custom credential/config values, keyed by name.
1005
+ */
523
1006
  customKeys?: {
524
1007
  [key: string]: string;
525
1008
  } | null;
526
1009
  };
527
1010
  type UpdateInstallationResponse = {
1011
+ /**
1012
+ * Identifier of the updated installation.
1013
+ */
528
1014
  installationId: number;
1015
+ /**
1016
+ * Manifest version before the update.
1017
+ */
529
1018
  fromVersion: number;
1019
+ /**
1020
+ * Manifest version after the update.
1021
+ */
530
1022
  toVersion: number;
1023
+ /**
1024
+ * Resources provisioned or updated during the update.
1025
+ */
531
1026
  resources: Array<ProvisionedResourceInfo>;
1027
+ /**
1028
+ * Webhook URLs that were invalidated by the update.
1029
+ */
532
1030
  brokenWebhookUrls: Array<string>;
533
1031
  };
534
1032
  type UpdateBlockedResponse = {
1033
+ /**
1034
+ * The blockers preventing the update.
1035
+ */
535
1036
  blockers: Array<UpdateBlocker>;
536
1037
  };
537
1038
  type UpdateBlocker = {
1039
+ /**
1040
+ * Type of resource that blocks the update.
1041
+ */
538
1042
  type: string;
1043
+ /**
1044
+ * Manifest-local key of the blocking resource.
1045
+ */
539
1046
  key: string;
1047
+ /**
1048
+ * Reason the resource blocks the update.
1049
+ */
540
1050
  reason: string;
541
1051
  };
542
1052
  type UpdateInstallationRequest = {
1053
+ /**
1054
+ * Whether to proceed with the update despite blockers/local modifications.
1055
+ */
543
1056
  forceModify: boolean;
544
1057
  };
545
1058
  type UninstallSolutionRequest = {
1059
+ /**
1060
+ * Identifier of the installation to uninstall.
1061
+ */
546
1062
  installationId: number;
1063
+ /**
1064
+ * Whether to also delete connections provisioned by the installation.
1065
+ */
547
1066
  deleteConnections: boolean;
1067
+ /**
1068
+ * Whether to also delete workflows provisioned by the installation.
1069
+ */
548
1070
  deleteWorkflows: boolean;
1071
+ /**
1072
+ * Whether to also delete tables provisioned by the installation.
1073
+ */
549
1074
  deleteTables: boolean;
550
1075
  };
1076
+ /**
1077
+ * Offset-based paginated wrapper for a list of items.
1078
+ */
551
1079
  type PaginatedResponseOfApplicationDto = {
1080
+ /**
1081
+ * The items in the current page.
1082
+ */
552
1083
  items: Array<ApplicationDto>;
1084
+ /**
1085
+ * Total number of items available across all pages.
1086
+ */
553
1087
  totalCount: number;
1088
+ /**
1089
+ * Number of items skipped before this page (the requested offset).
1090
+ */
554
1091
  offset: number;
1092
+ /**
1093
+ * Maximum number of items requested for this page.
1094
+ */
555
1095
  top: number;
556
1096
  };
1097
+ /**
1098
+ * Public Developer API v1 representation of an Application.
1099
+ * Returned by GET /api/DeveloperAPI/v1/applications.
1100
+ */
557
1101
  type ApplicationDto = {
1102
+ /**
1103
+ * Stable public slug identifying the application.
1104
+ */
558
1105
  slug: string;
1106
+ /**
1107
+ * Human-readable display name of the application.
1108
+ */
559
1109
  applicationName?: string | null;
1110
+ /**
1111
+ * Description of what the application does.
1112
+ */
560
1113
  description: string;
1114
+ /**
1115
+ * URL of the application's logo image.
1116
+ */
561
1117
  applicationLogo?: string | null;
1118
+ /**
1119
+ * Whether and how a connection is required to use this application.
1120
+ */
562
1121
  connectionRequirement: string;
1122
+ /**
1123
+ * Categories the application belongs to.
1124
+ */
563
1125
  categories: Array<string>;
1126
+ /**
1127
+ * Number of tools (activities) the application exposes.
1128
+ */
564
1129
  toolsCount: number;
1130
+ /**
1131
+ * Number of triggers the application exposes.
1132
+ */
565
1133
  triggersCount: number;
566
1134
  };
567
1135
  type ApplicationDetailDto = ApplicationDto & {
1136
+ /**
1137
+ * Whether the application supports selecting specific objects for a connection.
1138
+ */
568
1139
  supportsObjectSelection?: boolean;
1140
+ /**
1141
+ * URL of help/documentation for the application.
1142
+ */
569
1143
  helpUrl?: string | null;
1144
+ /**
1145
+ * Authentication methods supported by the application.
1146
+ */
570
1147
  authenticationMethods?: Array<ApplicationAuthMethod>;
571
1148
  };
572
1149
  type ApplicationAuthMethod = {
@@ -590,97 +1167,300 @@ type ApplicationConnectionField = {
590
1167
  tooltip?: string | null;
591
1168
  placeholder?: string | null;
592
1169
  listValues?: string | null;
1170
+ /**
1171
+ * When true, callers can supply this field's value per-execution via the
1172
+ * `customConnectionData` array on POST /tools/{toolSlug}/execute. Mirrors
1173
+ * AppConnectionField.AllowOverride.
1174
+ */
593
1175
  allowOverride: boolean;
594
1176
  };
595
1177
  type AppConnectionFieldInputType = 0 | 1 | 2 | 3;
1178
+ /**
1179
+ * Offset-based paginated wrapper for a list of items.
1180
+ */
596
1181
  type PaginatedResponseOfConnectionPublicListItem = {
1182
+ /**
1183
+ * The items in the current page.
1184
+ */
597
1185
  items: Array<ConnectionPublicListItem>;
1186
+ /**
1187
+ * Total number of items available across all pages.
1188
+ */
598
1189
  totalCount: number;
1190
+ /**
1191
+ * Number of items skipped before this page (the requested offset).
1192
+ */
599
1193
  offset: number;
1194
+ /**
1195
+ * Maximum number of items requested for this page.
1196
+ */
600
1197
  top: number;
601
1198
  };
1199
+ /**
1200
+ * Public-shape list item for /api/DeveloperAPI/v1/Connections.
1201
+ * Applications are identified by slug only (no ApplicationId in the wire response).
1202
+ * Internal queries continue to use ConnectionList which carries both.
1203
+ */
602
1204
  type ConnectionPublicListItem = {
1205
+ /**
1206
+ * Identifier of the connection.
1207
+ */
603
1208
  connectionId: number;
1209
+ /**
1210
+ * Display name of the connection.
1211
+ */
604
1212
  connectionName: string;
1213
+ /**
1214
+ * Description of the connection.
1215
+ */
605
1216
  description?: string | null;
1217
+ /**
1218
+ * Slug of the connection's application.
1219
+ */
606
1220
  applicationSlug: string;
1221
+ /**
1222
+ * Display name of the connection's application.
1223
+ */
607
1224
  applicationName?: string | null;
1225
+ /**
1226
+ * URL of the application's logo image.
1227
+ */
608
1228
  applicationLogo?: string | null;
1229
+ /**
1230
+ * Whether the connection is shared/public.
1231
+ */
609
1232
  isPublic: boolean;
1233
+ /**
1234
+ * Identifier of the user who created the connection.
1235
+ */
610
1236
  createdBy: string;
1237
+ /**
1238
+ * When the connection was created.
1239
+ */
611
1240
  createdDate: string;
1241
+ /**
1242
+ * Identifier of the user who last updated the connection; null if never updated.
1243
+ */
612
1244
  updatedBy?: string | null;
1245
+ /**
1246
+ * When the connection was last updated; null if never updated.
1247
+ */
613
1248
  updatedDate?: string | null;
614
1249
  };
615
1250
  type ConnectionPublicDetail = ConnectionPublicListItem & {
1251
+ /**
1252
+ * Identifier of the authentication method used by the connection.
1253
+ */
616
1254
  authenticationId?: number;
1255
+ /**
1256
+ * Name of the authentication type used by the connection.
1257
+ */
617
1258
  authenticationType?: string;
1259
+ /**
1260
+ * Connection field values, keyed by field name (sensitive values may be masked).
1261
+ */
618
1262
  fields?: {
619
1263
  [key: string]: string | null;
620
1264
  };
1265
+ /**
1266
+ * Whether the connection uses selected database objects.
1267
+ */
621
1268
  useSelectDBObjects?: boolean;
1269
+ /**
1270
+ * Last connection error message, if any.
1271
+ */
622
1272
  connectionError?: string | null;
1273
+ /**
1274
+ * Whether the connection is currently healthy/reachable.
1275
+ */
623
1276
  isAlive?: boolean;
1277
+ /**
1278
+ * Additional connection metadata, keyed by name.
1279
+ */
624
1280
  metadata?: {
625
1281
  [key: string]: string;
626
1282
  } | null;
627
1283
  };
1284
+ /**
1285
+ * Request body for creating a connection.
1286
+ */
628
1287
  type CreateConnectionRequest = {
1288
+ /**
1289
+ * Slug of the application to connect to.
1290
+ */
629
1291
  applicationSlug: string;
1292
+ /**
1293
+ * Display name for the new connection.
1294
+ */
630
1295
  connectionName: string;
1296
+ /**
1297
+ * Optional description of the connection.
1298
+ */
631
1299
  description?: string | null;
1300
+ /**
1301
+ * Identifier of the authentication method to use.
1302
+ */
632
1303
  authenticationId: number;
1304
+ /**
1305
+ * Connection field values, keyed by field name.
1306
+ */
633
1307
  fields: {
634
1308
  [key: string]: string;
635
1309
  };
1310
+ /**
1311
+ * Optional additional connection metadata, keyed by name.
1312
+ */
636
1313
  metadata?: {
637
1314
  [key: string]: string;
638
1315
  } | null;
639
1316
  };
1317
+ /**
1318
+ * Request body for updating a connection; null members are left unchanged.
1319
+ */
640
1320
  type UpdateConnectionRequest = {
1321
+ /**
1322
+ * New display name; null leaves it unchanged.
1323
+ */
641
1324
  connectionName?: string | null;
1325
+ /**
1326
+ * New description; null leaves it unchanged.
1327
+ */
642
1328
  description?: string | null;
1329
+ /**
1330
+ * Connection field values to update, keyed by field name; null leaves them unchanged.
1331
+ */
643
1332
  fields?: {
644
1333
  [key: string]: string;
645
1334
  } | null;
1335
+ /**
1336
+ * Metadata to update, keyed by name; null leaves it unchanged.
1337
+ */
646
1338
  metadata?: {
647
1339
  [key: string]: string;
648
1340
  } | null;
649
1341
  };
1342
+ /**
1343
+ * Response listing the caller's default connection per application.
1344
+ */
650
1345
  type DefaultConnectionsResponse = {
1346
+ /**
1347
+ * The default-connection entries, one per application.
1348
+ */
651
1349
  items: Array<DefaultConnectionDto>;
652
1350
  };
1351
+ /**
1352
+ * Per-(account-user, application) default-connection responses for the
1353
+ * /connections/defaults endpoints. See toolsets-and-connections-spec.md.
1354
+ */
653
1355
  type DefaultConnectionDto = {
1356
+ /**
1357
+ * Slug of the application this default applies to.
1358
+ */
654
1359
  applicationSlug: string;
1360
+ /**
1361
+ * Display name of the application.
1362
+ */
655
1363
  applicationName?: string | null;
1364
+ /**
1365
+ * Identifier of the default connection (Connector ID).
1366
+ */
656
1367
  connectionId: number;
1368
+ /**
1369
+ * Display name of the default connection.
1370
+ */
657
1371
  connectionName?: string | null;
658
1372
  };
1373
+ /**
1374
+ * Response confirming a connection was set as the default for an application.
1375
+ */
659
1376
  type SetDefaultConnectionResponse = {
1377
+ /**
1378
+ * Slug of the application the default was set for.
1379
+ */
660
1380
  applicationSlug: string;
1381
+ /**
1382
+ * Identifier of the connection set as default.
1383
+ */
661
1384
  connectionId: number;
1385
+ /**
1386
+ * Whether the connection is now the default (always true).
1387
+ */
662
1388
  isDefault: boolean;
663
1389
  };
1390
+ /**
1391
+ * Request body for replacing a connection used by a workflow.
1392
+ */
664
1393
  type ReplaceConnectionRequest = {
1394
+ /**
1395
+ * Identifier of the workflow whose connection is being replaced.
1396
+ */
665
1397
  workflowId: number;
1398
+ /**
1399
+ * Identifier of the connection currently used by the workflow.
1400
+ */
666
1401
  originalConnectionId: number;
1402
+ /**
1403
+ * Identifier of the connection to use instead.
1404
+ */
667
1405
  newConnectionId: number;
668
1406
  };
1407
+ /**
1408
+ * Status of a connection's most recent metadata/object refresh.
1409
+ */
669
1410
  type RefreshStatusResponse = {
1411
+ /**
1412
+ * Current refresh status.
1413
+ */
670
1414
  status: RefreshStatus;
1415
+ /**
1416
+ * Human-readable description of the current status.
1417
+ */
671
1418
  statusDescription?: string | null;
1419
+ /**
1420
+ * Error message from the last failed refresh, if any.
1421
+ */
672
1422
  error?: string | null;
1423
+ /**
1424
+ * When the last error occurred, if any.
1425
+ */
673
1426
  errorDate?: string | null;
1427
+ /**
1428
+ * When the connection was last refreshed successfully.
1429
+ */
674
1430
  lastRefreshDate?: string | null;
675
1431
  };
1432
+ /**
1433
+ * Possible states of a connection refresh.
1434
+ */
676
1435
  type RefreshStatus = 0 | 1 | 2;
1436
+ /**
1437
+ * Request body for selecting which objects a connection exposes.
1438
+ */
677
1439
  type SelectObjectsRequest = {
1440
+ /**
1441
+ * Identifiers of the objects to select for the connection.
1442
+ */
678
1443
  objectIds: Array<number>;
679
1444
  };
1445
+ /**
1446
+ * Offset-based paginated wrapper for a list of items.
1447
+ */
680
1448
  type PaginatedResponseOfConnectionObject = {
1449
+ /**
1450
+ * The items in the current page.
1451
+ */
681
1452
  items: Array<ConnectionObject>;
1453
+ /**
1454
+ * Total number of items available across all pages.
1455
+ */
682
1456
  totalCount: number;
1457
+ /**
1458
+ * Number of items skipped before this page (the requested offset).
1459
+ */
683
1460
  offset: number;
1461
+ /**
1462
+ * Maximum number of items requested for this page.
1463
+ */
684
1464
  top: number;
685
1465
  };
686
1466
  type ConnectionObject = {
@@ -689,14 +1469,38 @@ type ConnectionObject = {
689
1469
  type: string;
690
1470
  isSelected: boolean;
691
1471
  };
1472
+ /**
1473
+ * Response containing a generated OAuth sign-in URL.
1474
+ */
692
1475
  type SignInUrlResponse = {
1476
+ /**
1477
+ * The URL the user should visit to authenticate.
1478
+ */
693
1479
  signInUrl: string;
1480
+ /**
1481
+ * Opaque state value tying the sign-in flow back to the request.
1482
+ */
694
1483
  state: string;
695
1484
  };
1485
+ /**
1486
+ * Request body for generating an OAuth sign-in URL.
1487
+ */
696
1488
  type SignInUrlRequest = {
1489
+ /**
1490
+ * Slug of the application to authenticate against.
1491
+ */
697
1492
  applicationSlug: string;
1493
+ /**
1494
+ * Identifier of the authentication method to use.
1495
+ */
698
1496
  authenticationId: number;
1497
+ /**
1498
+ * Optional environment to target for sign-in.
1499
+ */
699
1500
  environment?: string | null;
1501
+ /**
1502
+ * Optional field values required to build the sign-in URL, keyed by field name.
1503
+ */
700
1504
  fields?: {
701
1505
  [key: string]: string;
702
1506
  } | null;
@@ -711,58 +1515,192 @@ type AccessTokenResponse = {
711
1515
  [key: string]: unknown;
712
1516
  };
713
1517
  };
1518
+ /**
1519
+ * Offset-based paginated wrapper for a list of items.
1520
+ */
714
1521
  type PaginatedResponseOfToolDto = {
1522
+ /**
1523
+ * The items in the current page.
1524
+ */
715
1525
  items: Array<ToolDto>;
1526
+ /**
1527
+ * Total number of items available across all pages.
1528
+ */
716
1529
  totalCount: number;
1530
+ /**
1531
+ * Number of items skipped before this page (the requested offset).
1532
+ */
717
1533
  offset: number;
1534
+ /**
1535
+ * Maximum number of items requested for this page.
1536
+ */
718
1537
  top: number;
719
1538
  };
1539
+ /**
1540
+ * Public Developer API v1 representation of a tool (Activity).
1541
+ * Returned by GET /api/DeveloperAPI/v1/tools.
1542
+ */
720
1543
  type ToolDto = {
1544
+ /**
1545
+ * Public identifier, sourced from Activity.McpToolName.
1546
+ */
721
1547
  toolSlug: string;
1548
+ /**
1549
+ * Human-readable display name of the tool.
1550
+ */
722
1551
  toolName?: string | null;
1552
+ /**
1553
+ * Description of what the tool does.
1554
+ */
723
1555
  description?: string | null;
1556
+ /**
1557
+ * Category the tool belongs to.
1558
+ */
724
1559
  category: string;
1560
+ /**
1561
+ * Slug of the application this tool belongs to.
1562
+ */
725
1563
  applicationSlug: string;
1564
+ /**
1565
+ * Display name of the application this tool belongs to.
1566
+ */
726
1567
  applicationName?: string | null;
1568
+ /**
1569
+ * Version of the tool.
1570
+ */
727
1571
  version?: string | null;
1572
+ /**
1573
+ * Whether the tool is deprecated.
1574
+ */
728
1575
  isDeprecated: boolean;
729
1576
  };
730
1577
  type ToolDetailDto = ToolDto & {
1578
+ /**
1579
+ * JSON Schema describing the tool's input fields.
1580
+ */
731
1581
  inputSchema?: unknown;
1582
+ /**
1583
+ * JSON Schema describing the tool's output shape.
1584
+ */
732
1585
  outputSchema?: unknown;
1586
+ /**
1587
+ * Whether the tool supports filter conditions on execution.
1588
+ */
733
1589
  supportsFilters?: boolean;
1590
+ /**
1591
+ * Whether the tool supports sort ordering on execution.
1592
+ */
734
1593
  supportsSort?: boolean;
1594
+ /**
1595
+ * Whether the tool supports top/offset pagination on execution.
1596
+ */
735
1597
  supportsTopOffset?: boolean;
1598
+ /**
1599
+ * Maximum number of filter conditions allowed per execution.
1600
+ */
736
1601
  maxFilters?: number;
1602
+ /**
1603
+ * Maximum number of sort clauses allowed per execution.
1604
+ */
737
1605
  maxSorts?: number;
738
1606
  };
1607
+ /**
1608
+ * 200 response shape for POST /api/DeveloperAPI/v1/tools/{toolSlug}/execute.
1609
+ * Tool-runtime failures (downstream API errors) return 200 + IsSuccess=false
1610
+ * + ErrorMessage — not the standard error envelope. All non-200 responses use
1611
+ * the standard ErrorResponse envelope, not this type.
1612
+ * See applications-tools-spec.md §"Response 200".
1613
+ */
739
1614
  type ToolExecuteResponse = {
1615
+ /**
1616
+ * Whether the tool executed successfully. When false, see ErrorMessage.
1617
+ */
740
1618
  isSuccess: boolean;
1619
+ /**
1620
+ * Human-readable failure reason when IsSuccess is false; otherwise null.
1621
+ */
741
1622
  errorMessage?: string | null;
1623
+ /**
1624
+ * Metadata about the execution (HTTP status, headers, timing, payload size).
1625
+ */
742
1626
  executionInfo?: ExecutionInfo | null;
1627
+ /**
1628
+ * The tool's result payload. Intentionally free-form (any JSON): its shape is defined by the
1629
+ * individual tool's output schema, not by this envelope (api-spec-feedback.md C3).
1630
+ */
743
1631
  output?: unknown;
1632
+ /**
1633
+ * Identifier of the workflow-history record for this execution, when one was created.
1634
+ */
744
1635
  historyId?: number | null;
745
1636
  };
1637
+ /**
1638
+ * Metadata about a tool execution (downstream HTTP status, headers, timing, payload size).
1639
+ */
746
1640
  type ExecutionInfo = {
1641
+ /**
1642
+ * HTTP status code returned by the downstream call.
1643
+ */
747
1644
  statusCode?: number | null;
1645
+ /**
1646
+ * Response headers from the downstream call, keyed by header name.
1647
+ */
748
1648
  headers?: {
749
1649
  [key: string]: string;
750
1650
  } | null;
1651
+ /**
1652
+ * Execution time in milliseconds.
1653
+ */
751
1654
  executionTime?: number | null;
1655
+ /**
1656
+ * Size of the response payload in bytes.
1657
+ */
752
1658
  dataSize?: number | null;
753
1659
  };
1660
+ /**
1661
+ * Body shape for POST /api/DeveloperAPI/v1/tools/{toolSlug}/execute.
1662
+ * activityName is intentionally absent — the activity is resolved from the
1663
+ * path slug (+ optional ?applicationSlug=). Connection is resolved implicitly
1664
+ * from the caller's account-user, the tool's parent application, and the
1665
+ * optional ?toolsetId= query param. See applications-tools-spec.md §"POST
1666
+ * /api/DeveloperAPI/v1/tools/{toolSlug}/execute".
1667
+ */
754
1668
  type ToolExecuteRequest = {
1669
+ /**
1670
+ * Input field values for the tool, keyed by field name.
1671
+ */
755
1672
  fields?: {
756
1673
  [key: string]: unknown;
757
1674
  } | null;
1675
+ /**
1676
+ * Optional context value passed to the tool.
1677
+ */
758
1678
  contextValue?: string | null;
1679
+ /**
1680
+ * Filter conditions to apply to the tool's results.
1681
+ */
759
1682
  filters?: Array<ActivityCondition> | null;
1683
+ /**
1684
+ * Sort clauses to apply to the tool's results.
1685
+ */
760
1686
  sort?: Array<ActivitySort> | null;
1687
+ /**
1688
+ * Number of leading results to skip (pagination offset).
1689
+ */
761
1690
  offset?: number | null;
1691
+ /**
1692
+ * Maximum number of results to return.
1693
+ */
762
1694
  top?: number | null;
1695
+ /**
1696
+ * Sub-item input values for the tool, keyed by name.
1697
+ */
763
1698
  subItems?: {
764
1699
  [key: string]: unknown;
765
1700
  } | null;
1701
+ /**
1702
+ * Per-call overrides for the resolved connection's fields; only fields marked overridable are accepted.
1703
+ */
766
1704
  customConnectionData?: Array<CustomConnectionDataItem> | null;
767
1705
  };
768
1706
  type ActivityCondition = {
@@ -775,46 +1713,200 @@ type ActivitySort = {
775
1713
  orderDirection: OrderDirection;
776
1714
  };
777
1715
  type OrderDirection = 1 | -1;
1716
+ /**
1717
+ * A single per-call override of a connection field value.
1718
+ */
778
1719
  type CustomConnectionDataItem = {
1720
+ /**
1721
+ * Name of the connection field to override.
1722
+ */
779
1723
  fieldName: string;
1724
+ /**
1725
+ * Override value for the field.
1726
+ */
780
1727
  value: string;
781
1728
  };
1729
+ /**
1730
+ * Offset-based paginated wrapper for a list of items.
1731
+ */
782
1732
  type PaginatedResponseOfToolsetDto = {
1733
+ /**
1734
+ * The items in the current page.
1735
+ */
783
1736
  items: Array<ToolsetDto>;
1737
+ /**
1738
+ * Total number of items available across all pages.
1739
+ */
784
1740
  totalCount: number;
1741
+ /**
1742
+ * Number of items skipped before this page (the requested offset).
1743
+ */
785
1744
  offset: number;
1745
+ /**
1746
+ * Maximum number of items requested for this page.
1747
+ */
786
1748
  top: number;
787
1749
  };
1750
+ /**
1751
+ * Public-shape DTO for a toolset (per-account-user, named scope bundling specific
1752
+ * connections + an allowed tool set). See toolsets-and-connections-spec.md.
1753
+ */
788
1754
  type ToolsetDto = {
1755
+ /**
1756
+ * Unique identifier of the toolset (the MCPServer token GUID).
1757
+ */
789
1758
  toolsetId: string;
1759
+ /**
1760
+ * Display name of the toolset.
1761
+ */
790
1762
  name: string;
1763
+ /**
1764
+ * Connections included in this toolset and their permitted tools.
1765
+ */
791
1766
  connections: Array<ToolsetConnectionDto>;
1767
+ /**
1768
+ * Workflow token GUIDs included in this toolset.
1769
+ */
792
1770
  workflows: Array<string>;
1771
+ /**
1772
+ * When the toolset was created.
1773
+ */
793
1774
  createdDate: string;
1775
+ /**
1776
+ * When the toolset was last updated; null if never updated.
1777
+ */
794
1778
  updatedDate?: string | null;
1779
+ /**
1780
+ * Account-user ID that created the toolset.
1781
+ */
795
1782
  createdByAccountUserId?: number | null;
1783
+ /**
1784
+ * Account-user ID that last updated the toolset; null/0 until first updated.
1785
+ */
796
1786
  updatedByAccountUserId?: number | null;
797
1787
  };
1788
+ /**
1789
+ * A connection within a toolset, scoped to a set of permitted tools.
1790
+ */
798
1791
  type ToolsetConnectionDto = {
1792
+ /**
1793
+ * Identifier of the connection (Connector ID).
1794
+ */
799
1795
  connectionId: number;
1796
+ /**
1797
+ * Slug of the connection's application.
1798
+ */
800
1799
  applicationSlug: string;
1800
+ /**
1801
+ * Display name of the connection's application.
1802
+ */
801
1803
  applicationName?: string | null;
1804
+ /**
1805
+ * Tool slugs permitted for this connection; empty means all tools of the app are permitted.
1806
+ */
802
1807
  toolSlugs: Array<string>;
803
1808
  };
1809
+ /**
1810
+ * Request body for creating a toolset.
1811
+ */
804
1812
  type CreateToolsetRequest = {
1813
+ /**
1814
+ * Display name for the new toolset.
1815
+ */
805
1816
  name: string;
1817
+ /**
1818
+ * Connections to include in the toolset and their permitted tools.
1819
+ */
806
1820
  connections: Array<ToolsetConnectionRequest>;
1821
+ /**
1822
+ * Workflow token GUIDs to include in the toolset.
1823
+ */
807
1824
  workflows?: Array<string> | null;
808
1825
  };
1826
+ /**
1827
+ * A connection entry in a create/update toolset request.
1828
+ */
809
1829
  type ToolsetConnectionRequest = {
810
- connectionId: number;
1830
+ /**
1831
+ * Optional connection identifier (Connector ID). Omit it to let the backend pick the
1832
+ * caller's default connection for the application of the listed tools (resolved and
1833
+ * stored as a concrete id at save time); when omitted, ToolSlugs must list
1834
+ * at least one tool so the application can be determined.
1835
+ */
1836
+ connectionId?: number | null;
1837
+ /**
1838
+ * Optional application slug. When ConnectionId is omitted, supply this to
1839
+ * scope the entry to a whole application (all its tools) using the caller's default
1840
+ * connection for that app — resolved and stored as a concrete connectionId at save time.
1841
+ * An alternative to listing tool slugs; if both are supplied, applicationSlug is
1842
+ * authoritative for the application.
1843
+ */
1844
+ applicationSlug?: string | null;
1845
+ /**
1846
+ * Tool slugs to permit for this connection; omit/empty to permit all tools of the app. When ConnectionId is omitted, supply either applicationSlug or at least one tool slug.
1847
+ */
811
1848
  toolSlugs?: Array<string> | null;
812
1849
  };
1850
+ /**
1851
+ * Request body for updating a toolset; null members are left unchanged.
1852
+ */
813
1853
  type UpdateToolsetRequest = {
1854
+ /**
1855
+ * New display name; null leaves it unchanged.
1856
+ */
814
1857
  name?: string | null;
1858
+ /**
1859
+ * Replacement connection set; null leaves it unchanged.
1860
+ */
815
1861
  connections?: Array<ToolsetConnectionRequest> | null;
1862
+ /**
1863
+ * Replacement workflow set; null leaves it unchanged.
1864
+ */
816
1865
  workflows?: Array<string> | null;
817
1866
  };
1867
+ type AuthWhoAmIData = {
1868
+ body?: never;
1869
+ headers?: {
1870
+ /**
1871
+ * Account token. Optional — alternatively send the AccountToken JWT claim.
1872
+ */
1873
+ companytoken?: string;
1874
+ };
1875
+ path?: never;
1876
+ query?: never;
1877
+ url: '/v1/auth/whoami';
1878
+ };
1879
+ type AuthWhoAmIErrors = {
1880
+ /**
1881
+ * Bad request — malformed body or invalid parameters.
1882
+ */
1883
+ 400: ErrorResponse;
1884
+ 401: ErrorResponse;
1885
+ /**
1886
+ * Forbidden — the caller lacks access to the resource.
1887
+ */
1888
+ 403: ErrorResponse;
1889
+ /**
1890
+ * Not found — the resource does not exist.
1891
+ */
1892
+ 404: ErrorResponse;
1893
+ /**
1894
+ * Too many requests — rate limit exceeded.
1895
+ */
1896
+ 429: ErrorResponse;
1897
+ /**
1898
+ * Internal server error — an unexpected error occurred.
1899
+ */
1900
+ 500: ErrorResponse;
1901
+ };
1902
+ type AuthWhoAmIError = AuthWhoAmIErrors[keyof AuthWhoAmIErrors];
1903
+ type AuthWhoAmIResponses = {
1904
+ /**
1905
+ * The acting principal's identity.
1906
+ */
1907
+ 200: WhoAmIResponse;
1908
+ };
1909
+ type AuthWhoAmIResponse = AuthWhoAmIResponses[keyof AuthWhoAmIResponses];
818
1910
  type SolutionsCreateSolutionData = {
819
1911
  /**
820
1912
  * The solution metadata and build manifest used to create the solution.
@@ -1040,8 +2132,17 @@ type SolutionsGetPublishedSolutionsData = {
1040
2132
  };
1041
2133
  path?: never;
1042
2134
  query?: {
2135
+ /**
2136
+ * Optional search term to filter solutions by.
2137
+ */
1043
2138
  Search?: string | null;
2139
+ /**
2140
+ * Number of items to skip (pagination offset).
2141
+ */
1044
2142
  Offset?: number;
2143
+ /**
2144
+ * Maximum number of items to return.
2145
+ */
1045
2146
  Top?: number;
1046
2147
  };
1047
2148
  url: '/v1/solutions';
@@ -2424,6 +3525,10 @@ type ToolsListToolsData = {
2424
3525
  * Maximum number of items to return. Defaults to 100.
2425
3526
  */
2426
3527
  top?: number;
3528
+ /**
3529
+ * Optional toolset id; when supplied, the caller's workflow tools in that toolset are included alongside activity tools.
3530
+ */
3531
+ toolsetId?: string | null;
2427
3532
  };
2428
3533
  url: '/v1/tools';
2429
3534
  };
@@ -2474,6 +3579,10 @@ type ToolsGetToolData = {
2474
3579
  * Optional parent-application slug used to disambiguate when the same tool slug exists across applications.
2475
3580
  */
2476
3581
  applicationSlug?: string | null;
3582
+ /**
3583
+ * Optional toolset id; when supplied, a slug naming one of the caller's workflows in that toolset resolves to the workflow-tool detail.
3584
+ */
3585
+ toolsetId?: string | null;
2477
3586
  };
2478
3587
  url: '/v1/tools/{toolSlug}';
2479
3588
  };
@@ -2520,10 +3629,6 @@ type ToolsExecuteToolData = {
2520
3629
  toolSlug: string;
2521
3630
  };
2522
3631
  query?: {
2523
- /**
2524
- * Optional parent-application slug used to disambiguate the tool and resolve the connection.
2525
- */
2526
- applicationSlug?: string | null;
2527
3632
  /**
2528
3633
  * Optional toolset identifier used to scope connection resolution.
2529
3634
  */
@@ -2832,6 +3937,12 @@ type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean
2832
3937
  */
2833
3938
  meta?: Record<string, unknown>;
2834
3939
  };
3940
+ /**
3941
+ * Returns the identity of the principal the request is authenticated as: full name, email,
3942
+ * current company, role, and caller type. For x-api-key requests the identity is the
3943
+ * token's owner (the key acts as the owner) and the type is reported as apiuser.
3944
+ */
3945
+ declare const authWhoAmI: <ThrowOnError extends boolean = false>(options?: Options<AuthWhoAmIData, ThrowOnError>) => RequestResult<AuthWhoAmIResponses, AuthWhoAmIErrors, ThrowOnError>;
2835
3946
  /**
2836
3947
  * Creates a new solution (Engini admin only). The request's build manifest is compiled into a
2837
3948
  * stored manifest, and the resulting solution is returned together with any build warnings.
@@ -3023,4 +4134,4 @@ interface EnginiClientOptions {
3023
4134
  */
3024
4135
  declare function createEnginiClient(options: EnginiClientOptions): Client;
3025
4136
 
3026
- export { type AccessTokenResponse, type ActivityCondition, type ActivitySort, type AppConnectionFieldInputType, type ApplicationAuthMethod, type ApplicationConnectionField, type ApplicationDetailDto, type ApplicationDto, type ApplicationsGetApplicationData, type ApplicationsGetApplicationError, type ApplicationsGetApplicationErrors, type ApplicationsGetApplicationResponse, type ApplicationsGetApplicationResponses, type ApplicationsListApplicationsData, type ApplicationsListApplicationsError, type ApplicationsListApplicationsErrors, type ApplicationsListApplicationsResponse, type ApplicationsListApplicationsResponses, type BuildManifestRequest, type BuildManifestResponse, type BuildManifestTable, type BuildManifestWorkflow, type ClientOptions, type ConnectionInput, type ConnectionObject, type ConnectionPublicDetail, type ConnectionPublicListItem, type ConnectionsCheckConnectionData, type ConnectionsCheckConnectionError, type ConnectionsCheckConnectionErrors, type ConnectionsCheckConnectionResponse, type ConnectionsCheckConnectionResponses, type ConnectionsClearDefaultConnectionData, type ConnectionsClearDefaultConnectionError, type ConnectionsClearDefaultConnectionErrors, type ConnectionsClearDefaultConnectionResponse, type ConnectionsClearDefaultConnectionResponses, type ConnectionsCreateConnectionData, type ConnectionsCreateConnectionError, type ConnectionsCreateConnectionErrors, type ConnectionsCreateConnectionResponse, type ConnectionsCreateConnectionResponses, type ConnectionsDeleteConnectionData, type ConnectionsDeleteConnectionError, type ConnectionsDeleteConnectionErrors, type ConnectionsDeleteConnectionResponse, type ConnectionsDeleteConnectionResponses, type ConnectionsGetAccessTokenData, type ConnectionsGetAccessTokenError, type ConnectionsGetAccessTokenErrors, type ConnectionsGetAccessTokenResponse, type ConnectionsGetAccessTokenResponses, type ConnectionsGetConnectionData, type ConnectionsGetConnectionError, type ConnectionsGetConnectionErrors, type ConnectionsGetConnectionObjectsData, type ConnectionsGetConnectionObjectsError, type ConnectionsGetConnectionObjectsErrors, type ConnectionsGetConnectionObjectsResponse, type ConnectionsGetConnectionObjectsResponses, type ConnectionsGetConnectionResponse, type ConnectionsGetConnectionResponses, type ConnectionsGetConnectionsData, type ConnectionsGetConnectionsError, type ConnectionsGetConnectionsErrors, type ConnectionsGetConnectionsResponse, type ConnectionsGetConnectionsResponses, type ConnectionsGetDefaultConnectionsData, type ConnectionsGetDefaultConnectionsError, type ConnectionsGetDefaultConnectionsErrors, type ConnectionsGetDefaultConnectionsResponse, type ConnectionsGetDefaultConnectionsResponses, type ConnectionsGetRefreshStatusData, type ConnectionsGetRefreshStatusError, type ConnectionsGetRefreshStatusErrors, type ConnectionsGetRefreshStatusResponse, type ConnectionsGetRefreshStatusResponses, type ConnectionsGetSignInUrlData, type ConnectionsGetSignInUrlError, type ConnectionsGetSignInUrlErrors, type ConnectionsGetSignInUrlResponse, type ConnectionsGetSignInUrlResponses, type ConnectionsRefreshObjectsData, type ConnectionsRefreshObjectsError, type ConnectionsRefreshObjectsErrors, type ConnectionsRefreshObjectsResponse, type ConnectionsRefreshObjectsResponses, type ConnectionsReplaceConnectionData, type ConnectionsReplaceConnectionError, type ConnectionsReplaceConnectionErrors, type ConnectionsReplaceConnectionResponse, type ConnectionsReplaceConnectionResponses, type ConnectionsSelectObjectsData, type ConnectionsSelectObjectsError, type ConnectionsSelectObjectsErrors, type ConnectionsSelectObjectsResponse, type ConnectionsSelectObjectsResponses, type ConnectionsSetDefaultConnectionData, type ConnectionsSetDefaultConnectionError, type ConnectionsSetDefaultConnectionErrors, type ConnectionsSetDefaultConnectionResponse, type ConnectionsSetDefaultConnectionResponses, type ConnectionsUpdateConnectionData, type ConnectionsUpdateConnectionError, type ConnectionsUpdateConnectionErrors, type ConnectionsUpdateConnectionResponse, type ConnectionsUpdateConnectionResponses, type CreateConnectionRequest, type CreateSolutionRequest, type CreateToolsetRequest, type CustomConnectionDataItem, type DefaultConnectionDto, type DefaultConnectionsResponse, type EnginiClientOptions, type ErrorDetail, type ErrorResponse, type ExecutionInfo, type InstallSolutionRequest, type InstallSolutionResponse, type InstallationDetailResponse, type InstalledResourceResponse, type ManifestConnection, type ManifestConnectionDefaults, type ManifestTable, type ManifestWorkflow, type Options, type OrderDirection, type PaginatedResponseOfApplicationDto, type PaginatedResponseOfConnectionObject, type PaginatedResponseOfConnectionPublicListItem, type PaginatedResponseOfSolutionResponse, type PaginatedResponseOfToolDto, type PaginatedResponseOfToolsetDto, type ProvisionedResourceInfo, type RefreshStatus, type RefreshStatusResponse, type ReplaceConnectionRequest, type SelectObjectsRequest, type SetDefaultConnectionResponse, type SignInUrlRequest, type SignInUrlResponse, type SolutionAdminWriteResponse, type SolutionDetailResponse, type SolutionInstallationResponse, type SolutionManifest, type SolutionManifestBuildSpec, type SolutionResponse, type SolutionsArchiveSolutionData, type SolutionsArchiveSolutionError, type SolutionsArchiveSolutionErrors, type SolutionsArchiveSolutionResponse, type SolutionsArchiveSolutionResponses, type SolutionsBuildManifestData, type SolutionsBuildManifestError, type SolutionsBuildManifestErrors, type SolutionsBuildManifestResponse, type SolutionsBuildManifestResponses, type SolutionsCreateSolutionData, type SolutionsCreateSolutionError, type SolutionsCreateSolutionErrors, type SolutionsCreateSolutionResponse, type SolutionsCreateSolutionResponses, type SolutionsGetInstallationDetailData, type SolutionsGetInstallationDetailError, type SolutionsGetInstallationDetailErrors, type SolutionsGetInstallationDetailResponse, type SolutionsGetInstallationDetailResponses, type SolutionsGetInstallationResourcesData, type SolutionsGetInstallationResourcesError, type SolutionsGetInstallationResourcesErrors, type SolutionsGetInstallationResourcesResponse, type SolutionsGetInstallationResourcesResponses, type SolutionsGetInstallationsData, type SolutionsGetInstallationsError, type SolutionsGetInstallationsErrors, type SolutionsGetInstallationsResponse, type SolutionsGetInstallationsResponses, type SolutionsGetPublishedSolutionsData, type SolutionsGetPublishedSolutionsError, type SolutionsGetPublishedSolutionsErrors, type SolutionsGetPublishedSolutionsResponse, type SolutionsGetPublishedSolutionsResponses, type SolutionsGetSolutionBySlugData, type SolutionsGetSolutionBySlugError, type SolutionsGetSolutionBySlugErrors, type SolutionsGetSolutionBySlugResponse, type SolutionsGetSolutionBySlugResponses, type SolutionsInstallSolutionData, type SolutionsInstallSolutionError, type SolutionsInstallSolutionErrors, type SolutionsInstallSolutionResponse, type SolutionsInstallSolutionResponses, type SolutionsPublishSolutionData, type SolutionsPublishSolutionError, type SolutionsPublishSolutionErrors, type SolutionsPublishSolutionResponse, type SolutionsPublishSolutionResponses, type SolutionsUninstallSolutionData, type SolutionsUninstallSolutionError, type SolutionsUninstallSolutionErrors, type SolutionsUninstallSolutionResponse, type SolutionsUninstallSolutionResponses, type SolutionsUpdateInstallationData, type SolutionsUpdateInstallationError, type SolutionsUpdateInstallationErrors, type SolutionsUpdateInstallationResponse, type SolutionsUpdateInstallationResponses, type SolutionsUpdateSolutionData, type SolutionsUpdateSolutionError, type SolutionsUpdateSolutionErrors, type SolutionsUpdateSolutionResponse, type SolutionsUpdateSolutionResponses, type TableDefinitionDto, type TableFieldDto, type ToolDetailDto, type ToolDto, type ToolExecuteRequest, type ToolExecuteResponse, type ToolsExecuteToolData, type ToolsExecuteToolError, type ToolsExecuteToolErrors, type ToolsExecuteToolResponse, type ToolsExecuteToolResponses, type ToolsGetToolData, type ToolsGetToolError, type ToolsGetToolErrors, type ToolsGetToolResponse, type ToolsGetToolResponses, type ToolsListToolsData, type ToolsListToolsError, type ToolsListToolsErrors, type ToolsListToolsResponse, type ToolsListToolsResponses, type ToolsetConnectionDto, type ToolsetConnectionRequest, type ToolsetDto, type ToolsetsCreateToolsetData, type ToolsetsCreateToolsetError, type ToolsetsCreateToolsetErrors, type ToolsetsCreateToolsetResponse, type ToolsetsCreateToolsetResponses, type ToolsetsDeleteToolsetData, type ToolsetsDeleteToolsetError, type ToolsetsDeleteToolsetErrors, type ToolsetsDeleteToolsetResponse, type ToolsetsDeleteToolsetResponses, type ToolsetsGetToolsetData, type ToolsetsGetToolsetError, type ToolsetsGetToolsetErrors, type ToolsetsGetToolsetResponse, type ToolsetsGetToolsetResponses, type ToolsetsListToolsetsData, type ToolsetsListToolsetsError, type ToolsetsListToolsetsErrors, type ToolsetsListToolsetsResponse, type ToolsetsListToolsetsResponses, type ToolsetsUpdateToolsetData, type ToolsetsUpdateToolsetError, type ToolsetsUpdateToolsetErrors, type ToolsetsUpdateToolsetResponse, type ToolsetsUpdateToolsetResponses, type UninstallSolutionRequest, type UpdateBlockedResponse, type UpdateBlocker, type UpdateConnectionRequest, type UpdateInstallationRequest, type UpdateInstallationResponse, type UpdateSolutionRequest, type UpdateToolsetRequest, applicationsGetApplication, applicationsListApplications, connectionsCheckConnection, connectionsClearDefaultConnection, connectionsCreateConnection, connectionsDeleteConnection, connectionsGetAccessToken, connectionsGetConnection, connectionsGetConnectionObjects, connectionsGetConnections, connectionsGetDefaultConnections, connectionsGetRefreshStatus, connectionsGetSignInUrl, connectionsRefreshObjects, connectionsReplaceConnection, connectionsSelectObjects, connectionsSetDefaultConnection, connectionsUpdateConnection, createEnginiClient, solutionsArchiveSolution, solutionsBuildManifest, solutionsCreateSolution, solutionsGetInstallationDetail, solutionsGetInstallationResources, solutionsGetInstallations, solutionsGetPublishedSolutions, solutionsGetSolutionBySlug, solutionsInstallSolution, solutionsPublishSolution, solutionsUninstallSolution, solutionsUpdateInstallation, solutionsUpdateSolution, toolsExecuteTool, toolsGetTool, toolsListTools, toolsetsCreateToolset, toolsetsDeleteToolset, toolsetsGetToolset, toolsetsListToolsets, toolsetsUpdateToolset };
4137
+ export { type AccessTokenResponse, type ActivityCondition, type ActivitySort, type AppConnectionFieldInputType, type ApplicationAuthMethod, type ApplicationConnectionField, type ApplicationDetailDto, type ApplicationDto, type ApplicationsGetApplicationData, type ApplicationsGetApplicationError, type ApplicationsGetApplicationErrors, type ApplicationsGetApplicationResponse, type ApplicationsGetApplicationResponses, type ApplicationsListApplicationsData, type ApplicationsListApplicationsError, type ApplicationsListApplicationsErrors, type ApplicationsListApplicationsResponse, type ApplicationsListApplicationsResponses, type AuthWhoAmIData, type AuthWhoAmIError, type AuthWhoAmIErrors, type AuthWhoAmIResponse, type AuthWhoAmIResponses, type BuildManifestRequest, type BuildManifestResponse, type BuildManifestTable, type BuildManifestWorkflow, type ClientOptions, type ConnectionInput, type ConnectionObject, type ConnectionPublicDetail, type ConnectionPublicListItem, type ConnectionsCheckConnectionData, type ConnectionsCheckConnectionError, type ConnectionsCheckConnectionErrors, type ConnectionsCheckConnectionResponse, type ConnectionsCheckConnectionResponses, type ConnectionsClearDefaultConnectionData, type ConnectionsClearDefaultConnectionError, type ConnectionsClearDefaultConnectionErrors, type ConnectionsClearDefaultConnectionResponse, type ConnectionsClearDefaultConnectionResponses, type ConnectionsCreateConnectionData, type ConnectionsCreateConnectionError, type ConnectionsCreateConnectionErrors, type ConnectionsCreateConnectionResponse, type ConnectionsCreateConnectionResponses, type ConnectionsDeleteConnectionData, type ConnectionsDeleteConnectionError, type ConnectionsDeleteConnectionErrors, type ConnectionsDeleteConnectionResponse, type ConnectionsDeleteConnectionResponses, type ConnectionsGetAccessTokenData, type ConnectionsGetAccessTokenError, type ConnectionsGetAccessTokenErrors, type ConnectionsGetAccessTokenResponse, type ConnectionsGetAccessTokenResponses, type ConnectionsGetConnectionData, type ConnectionsGetConnectionError, type ConnectionsGetConnectionErrors, type ConnectionsGetConnectionObjectsData, type ConnectionsGetConnectionObjectsError, type ConnectionsGetConnectionObjectsErrors, type ConnectionsGetConnectionObjectsResponse, type ConnectionsGetConnectionObjectsResponses, type ConnectionsGetConnectionResponse, type ConnectionsGetConnectionResponses, type ConnectionsGetConnectionsData, type ConnectionsGetConnectionsError, type ConnectionsGetConnectionsErrors, type ConnectionsGetConnectionsResponse, type ConnectionsGetConnectionsResponses, type ConnectionsGetDefaultConnectionsData, type ConnectionsGetDefaultConnectionsError, type ConnectionsGetDefaultConnectionsErrors, type ConnectionsGetDefaultConnectionsResponse, type ConnectionsGetDefaultConnectionsResponses, type ConnectionsGetRefreshStatusData, type ConnectionsGetRefreshStatusError, type ConnectionsGetRefreshStatusErrors, type ConnectionsGetRefreshStatusResponse, type ConnectionsGetRefreshStatusResponses, type ConnectionsGetSignInUrlData, type ConnectionsGetSignInUrlError, type ConnectionsGetSignInUrlErrors, type ConnectionsGetSignInUrlResponse, type ConnectionsGetSignInUrlResponses, type ConnectionsRefreshObjectsData, type ConnectionsRefreshObjectsError, type ConnectionsRefreshObjectsErrors, type ConnectionsRefreshObjectsResponse, type ConnectionsRefreshObjectsResponses, type ConnectionsReplaceConnectionData, type ConnectionsReplaceConnectionError, type ConnectionsReplaceConnectionErrors, type ConnectionsReplaceConnectionResponse, type ConnectionsReplaceConnectionResponses, type ConnectionsSelectObjectsData, type ConnectionsSelectObjectsError, type ConnectionsSelectObjectsErrors, type ConnectionsSelectObjectsResponse, type ConnectionsSelectObjectsResponses, type ConnectionsSetDefaultConnectionData, type ConnectionsSetDefaultConnectionError, type ConnectionsSetDefaultConnectionErrors, type ConnectionsSetDefaultConnectionResponse, type ConnectionsSetDefaultConnectionResponses, type ConnectionsUpdateConnectionData, type ConnectionsUpdateConnectionError, type ConnectionsUpdateConnectionErrors, type ConnectionsUpdateConnectionResponse, type ConnectionsUpdateConnectionResponses, type CreateConnectionRequest, type CreateSolutionRequest, type CreateToolsetRequest, type CustomConnectionDataItem, type DefaultConnectionDto, type DefaultConnectionsResponse, type EnginiClientOptions, type ErrorDetail, type ErrorResponse, type ExecutionInfo, type InstallSolutionRequest, type InstallSolutionResponse, type InstallationDetailResponse, type InstalledResourceResponse, type ManifestConnection, type ManifestConnectionDefaults, type ManifestTable, type ManifestWorkflow, type Options, type OrderDirection, type PaginatedResponseOfApplicationDto, type PaginatedResponseOfConnectionObject, type PaginatedResponseOfConnectionPublicListItem, type PaginatedResponseOfSolutionResponse, type PaginatedResponseOfToolDto, type PaginatedResponseOfToolsetDto, type ProvisionedResourceInfo, type RefreshStatus, type RefreshStatusResponse, type ReplaceConnectionRequest, type SelectObjectsRequest, type SetDefaultConnectionResponse, type SignInUrlRequest, type SignInUrlResponse, type SolutionAdminWriteResponse, type SolutionDetailResponse, type SolutionInstallationResponse, type SolutionManifest, type SolutionManifestBuildSpec, type SolutionResponse, type SolutionsArchiveSolutionData, type SolutionsArchiveSolutionError, type SolutionsArchiveSolutionErrors, type SolutionsArchiveSolutionResponse, type SolutionsArchiveSolutionResponses, type SolutionsBuildManifestData, type SolutionsBuildManifestError, type SolutionsBuildManifestErrors, type SolutionsBuildManifestResponse, type SolutionsBuildManifestResponses, type SolutionsCreateSolutionData, type SolutionsCreateSolutionError, type SolutionsCreateSolutionErrors, type SolutionsCreateSolutionResponse, type SolutionsCreateSolutionResponses, type SolutionsGetInstallationDetailData, type SolutionsGetInstallationDetailError, type SolutionsGetInstallationDetailErrors, type SolutionsGetInstallationDetailResponse, type SolutionsGetInstallationDetailResponses, type SolutionsGetInstallationResourcesData, type SolutionsGetInstallationResourcesError, type SolutionsGetInstallationResourcesErrors, type SolutionsGetInstallationResourcesResponse, type SolutionsGetInstallationResourcesResponses, type SolutionsGetInstallationsData, type SolutionsGetInstallationsError, type SolutionsGetInstallationsErrors, type SolutionsGetInstallationsResponse, type SolutionsGetInstallationsResponses, type SolutionsGetPublishedSolutionsData, type SolutionsGetPublishedSolutionsError, type SolutionsGetPublishedSolutionsErrors, type SolutionsGetPublishedSolutionsResponse, type SolutionsGetPublishedSolutionsResponses, type SolutionsGetSolutionBySlugData, type SolutionsGetSolutionBySlugError, type SolutionsGetSolutionBySlugErrors, type SolutionsGetSolutionBySlugResponse, type SolutionsGetSolutionBySlugResponses, type SolutionsInstallSolutionData, type SolutionsInstallSolutionError, type SolutionsInstallSolutionErrors, type SolutionsInstallSolutionResponse, type SolutionsInstallSolutionResponses, type SolutionsPublishSolutionData, type SolutionsPublishSolutionError, type SolutionsPublishSolutionErrors, type SolutionsPublishSolutionResponse, type SolutionsPublishSolutionResponses, type SolutionsUninstallSolutionData, type SolutionsUninstallSolutionError, type SolutionsUninstallSolutionErrors, type SolutionsUninstallSolutionResponse, type SolutionsUninstallSolutionResponses, type SolutionsUpdateInstallationData, type SolutionsUpdateInstallationError, type SolutionsUpdateInstallationErrors, type SolutionsUpdateInstallationResponse, type SolutionsUpdateInstallationResponses, type SolutionsUpdateSolutionData, type SolutionsUpdateSolutionError, type SolutionsUpdateSolutionErrors, type SolutionsUpdateSolutionResponse, type SolutionsUpdateSolutionResponses, type TableDefinitionDto, type TableFieldDto, type ToolDetailDto, type ToolDto, type ToolExecuteRequest, type ToolExecuteResponse, type ToolsExecuteToolData, type ToolsExecuteToolError, type ToolsExecuteToolErrors, type ToolsExecuteToolResponse, type ToolsExecuteToolResponses, type ToolsGetToolData, type ToolsGetToolError, type ToolsGetToolErrors, type ToolsGetToolResponse, type ToolsGetToolResponses, type ToolsListToolsData, type ToolsListToolsError, type ToolsListToolsErrors, type ToolsListToolsResponse, type ToolsListToolsResponses, type ToolsetConnectionDto, type ToolsetConnectionRequest, type ToolsetDto, type ToolsetsCreateToolsetData, type ToolsetsCreateToolsetError, type ToolsetsCreateToolsetErrors, type ToolsetsCreateToolsetResponse, type ToolsetsCreateToolsetResponses, type ToolsetsDeleteToolsetData, type ToolsetsDeleteToolsetError, type ToolsetsDeleteToolsetErrors, type ToolsetsDeleteToolsetResponse, type ToolsetsDeleteToolsetResponses, type ToolsetsGetToolsetData, type ToolsetsGetToolsetError, type ToolsetsGetToolsetErrors, type ToolsetsGetToolsetResponse, type ToolsetsGetToolsetResponses, type ToolsetsListToolsetsData, type ToolsetsListToolsetsError, type ToolsetsListToolsetsErrors, type ToolsetsListToolsetsResponse, type ToolsetsListToolsetsResponses, type ToolsetsUpdateToolsetData, type ToolsetsUpdateToolsetError, type ToolsetsUpdateToolsetErrors, type ToolsetsUpdateToolsetResponse, type ToolsetsUpdateToolsetResponses, type UninstallSolutionRequest, type UpdateBlockedResponse, type UpdateBlocker, type UpdateConnectionRequest, type UpdateInstallationRequest, type UpdateInstallationResponse, type UpdateSolutionRequest, type UpdateToolsetRequest, type WhoAmIResponse, applicationsGetApplication, applicationsListApplications, authWhoAmI, connectionsCheckConnection, connectionsClearDefaultConnection, connectionsCreateConnection, connectionsDeleteConnection, connectionsGetAccessToken, connectionsGetConnection, connectionsGetConnectionObjects, connectionsGetConnections, connectionsGetDefaultConnections, connectionsGetRefreshStatus, connectionsGetSignInUrl, connectionsRefreshObjects, connectionsReplaceConnection, connectionsSelectObjects, connectionsSetDefaultConnection, connectionsUpdateConnection, createEnginiClient, solutionsArchiveSolution, solutionsBuildManifest, solutionsCreateSolution, solutionsGetInstallationDetail, solutionsGetInstallationResources, solutionsGetInstallations, solutionsGetPublishedSolutions, solutionsGetSolutionBySlug, solutionsInstallSolution, solutionsPublishSolution, solutionsUninstallSolution, solutionsUpdateInstallation, solutionsUpdateSolution, toolsExecuteTool, toolsGetTool, toolsListTools, toolsetsCreateToolset, toolsetsDeleteToolset, toolsetsGetToolset, toolsetsListToolsets, toolsetsUpdateToolset };