@engini/client 0.3.0 → 0.5.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/LICENSE +21 -0
- package/README.md +32 -0
- package/dist/index.cjs +159 -51
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1116 -264
- package/dist/index.d.ts +1116 -264
- package/dist/index.js +159 -52
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -320,232 +320,757 @@ type OmitKeys<T, K> = Pick<T, Exclude<keyof T, K>>;
|
|
|
320
320
|
type Options$1<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean, TResponse = unknown, TResponseStyle extends ResponseStyle = 'fields'> = OmitKeys<RequestOptions<TResponse, TResponseStyle, ThrowOnError>, 'body' | 'path' | 'query' | 'url'> & ([TData] extends [never] ? unknown : Omit<TData, 'url'>);
|
|
321
321
|
|
|
322
322
|
type ClientOptions = {
|
|
323
|
-
baseUrl: 'https://
|
|
323
|
+
baseUrl: 'https://api.staging.engini.io' | (string & {});
|
|
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;
|
|
324
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
|
};
|
|
551
1076
|
type PaginatedResponseOfApplicationDto = {
|
|
@@ -577,6 +1102,7 @@ type ApplicationAuthMethod = {
|
|
|
577
1102
|
connectionFields: Array<ApplicationConnectionField>;
|
|
578
1103
|
requiresOAuthSignIn: boolean;
|
|
579
1104
|
oAuthProvider?: string | null;
|
|
1105
|
+
isDefault: boolean;
|
|
580
1106
|
};
|
|
581
1107
|
type ApplicationConnectionField = {
|
|
582
1108
|
fieldName: string;
|
|
@@ -629,7 +1155,7 @@ type CreateConnectionRequest = {
|
|
|
629
1155
|
applicationSlug: string;
|
|
630
1156
|
connectionName: string;
|
|
631
1157
|
description?: string | null;
|
|
632
|
-
authenticationId
|
|
1158
|
+
authenticationId?: number | null;
|
|
633
1159
|
fields: {
|
|
634
1160
|
[key: string]: string;
|
|
635
1161
|
};
|
|
@@ -807,7 +1333,8 @@ type CreateToolsetRequest = {
|
|
|
807
1333
|
workflows?: Array<string> | null;
|
|
808
1334
|
};
|
|
809
1335
|
type ToolsetConnectionRequest = {
|
|
810
|
-
connectionId
|
|
1336
|
+
connectionId?: number | null;
|
|
1337
|
+
applicationSlug?: string | null;
|
|
811
1338
|
toolSlugs?: Array<string> | null;
|
|
812
1339
|
};
|
|
813
1340
|
type UpdateToolsetRequest = {
|
|
@@ -815,6 +1342,52 @@ type UpdateToolsetRequest = {
|
|
|
815
1342
|
connections?: Array<ToolsetConnectionRequest> | null;
|
|
816
1343
|
workflows?: Array<string> | null;
|
|
817
1344
|
};
|
|
1345
|
+
type AuthWhoAmIData = {
|
|
1346
|
+
body?: never;
|
|
1347
|
+
headers?: {
|
|
1348
|
+
/**
|
|
1349
|
+
* Account token. Optional — alternatively send the AccountToken JWT claim.
|
|
1350
|
+
*/
|
|
1351
|
+
companytoken?: string;
|
|
1352
|
+
};
|
|
1353
|
+
path?: never;
|
|
1354
|
+
query?: never;
|
|
1355
|
+
url: '/v1/auth/whoami';
|
|
1356
|
+
};
|
|
1357
|
+
type AuthWhoAmIErrors = {
|
|
1358
|
+
/**
|
|
1359
|
+
* Bad request - malformed body or invalid parameters.
|
|
1360
|
+
*/
|
|
1361
|
+
400: ErrorResponse;
|
|
1362
|
+
/**
|
|
1363
|
+
* Unauthorized - missing or invalid bearer token.
|
|
1364
|
+
*/
|
|
1365
|
+
401: ErrorResponse;
|
|
1366
|
+
/**
|
|
1367
|
+
* Forbidden - the caller lacks access to the resource.
|
|
1368
|
+
*/
|
|
1369
|
+
403: ErrorResponse;
|
|
1370
|
+
/**
|
|
1371
|
+
* Not found - the resource does not exist.
|
|
1372
|
+
*/
|
|
1373
|
+
404: ErrorResponse;
|
|
1374
|
+
/**
|
|
1375
|
+
* Too many requests - rate limit exceeded.
|
|
1376
|
+
*/
|
|
1377
|
+
429: ErrorResponse;
|
|
1378
|
+
/**
|
|
1379
|
+
* Internal server error - an unexpected error occurred.
|
|
1380
|
+
*/
|
|
1381
|
+
500: ErrorResponse;
|
|
1382
|
+
};
|
|
1383
|
+
type AuthWhoAmIError = AuthWhoAmIErrors[keyof AuthWhoAmIErrors];
|
|
1384
|
+
type AuthWhoAmIResponses = {
|
|
1385
|
+
/**
|
|
1386
|
+
* The acting principal's identity.
|
|
1387
|
+
*/
|
|
1388
|
+
200: WhoAmIResponse;
|
|
1389
|
+
};
|
|
1390
|
+
type AuthWhoAmIResponse = AuthWhoAmIResponses[keyof AuthWhoAmIResponses];
|
|
818
1391
|
type SolutionsCreateSolutionData = {
|
|
819
1392
|
/**
|
|
820
1393
|
* The solution metadata and build manifest used to create the solution.
|
|
@@ -822,7 +1395,7 @@ type SolutionsCreateSolutionData = {
|
|
|
822
1395
|
body: CreateSolutionRequest;
|
|
823
1396
|
headers?: {
|
|
824
1397
|
/**
|
|
825
|
-
*
|
|
1398
|
+
* Optional account-scoping header. Alternative to a claim carried on the Bearer JWT.
|
|
826
1399
|
*/
|
|
827
1400
|
companytoken?: string;
|
|
828
1401
|
};
|
|
@@ -831,22 +1404,28 @@ type SolutionsCreateSolutionData = {
|
|
|
831
1404
|
url: '/v1/solutions/admin';
|
|
832
1405
|
};
|
|
833
1406
|
type SolutionsCreateSolutionErrors = {
|
|
1407
|
+
/**
|
|
1408
|
+
* Bad request - malformed body or invalid parameters.
|
|
1409
|
+
*/
|
|
834
1410
|
400: ErrorResponse;
|
|
835
1411
|
/**
|
|
836
|
-
* Unauthorized
|
|
1412
|
+
* Unauthorized - missing or invalid bearer token.
|
|
837
1413
|
*/
|
|
838
1414
|
401: ErrorResponse;
|
|
1415
|
+
/**
|
|
1416
|
+
* Forbidden - the caller lacks access to the resource.
|
|
1417
|
+
*/
|
|
839
1418
|
403: ErrorResponse;
|
|
840
1419
|
/**
|
|
841
|
-
* Not found
|
|
1420
|
+
* Not found - the resource does not exist.
|
|
842
1421
|
*/
|
|
843
1422
|
404: ErrorResponse;
|
|
844
1423
|
/**
|
|
845
|
-
* Too many requests
|
|
1424
|
+
* Too many requests - rate limit exceeded.
|
|
846
1425
|
*/
|
|
847
1426
|
429: ErrorResponse;
|
|
848
1427
|
/**
|
|
849
|
-
* Internal server error
|
|
1428
|
+
* Internal server error - an unexpected error occurred.
|
|
850
1429
|
*/
|
|
851
1430
|
500: ErrorResponse;
|
|
852
1431
|
};
|
|
@@ -877,21 +1456,27 @@ type SolutionsArchiveSolutionData = {
|
|
|
877
1456
|
};
|
|
878
1457
|
type SolutionsArchiveSolutionErrors = {
|
|
879
1458
|
/**
|
|
880
|
-
* Bad request
|
|
1459
|
+
* Bad request - malformed body or invalid parameters.
|
|
881
1460
|
*/
|
|
882
1461
|
400: ErrorResponse;
|
|
883
1462
|
/**
|
|
884
|
-
* Unauthorized
|
|
1463
|
+
* Unauthorized - missing or invalid bearer token.
|
|
885
1464
|
*/
|
|
886
1465
|
401: ErrorResponse;
|
|
1466
|
+
/**
|
|
1467
|
+
* Forbidden - the caller lacks access to the resource.
|
|
1468
|
+
*/
|
|
887
1469
|
403: ErrorResponse;
|
|
1470
|
+
/**
|
|
1471
|
+
* Not found - the resource does not exist.
|
|
1472
|
+
*/
|
|
888
1473
|
404: ErrorResponse;
|
|
889
1474
|
/**
|
|
890
|
-
* Too many requests
|
|
1475
|
+
* Too many requests - rate limit exceeded.
|
|
891
1476
|
*/
|
|
892
1477
|
429: ErrorResponse;
|
|
893
1478
|
/**
|
|
894
|
-
* Internal server error
|
|
1479
|
+
* Internal server error - an unexpected error occurred.
|
|
895
1480
|
*/
|
|
896
1481
|
500: ErrorResponse;
|
|
897
1482
|
};
|
|
@@ -910,7 +1495,7 @@ type SolutionsUpdateSolutionData = {
|
|
|
910
1495
|
body: UpdateSolutionRequest;
|
|
911
1496
|
headers?: {
|
|
912
1497
|
/**
|
|
913
|
-
*
|
|
1498
|
+
* Optional account-scoping header. Alternative to a claim carried on the Bearer JWT.
|
|
914
1499
|
*/
|
|
915
1500
|
companytoken?: string;
|
|
916
1501
|
};
|
|
@@ -924,19 +1509,28 @@ type SolutionsUpdateSolutionData = {
|
|
|
924
1509
|
url: '/v1/solutions/admin/{slug}';
|
|
925
1510
|
};
|
|
926
1511
|
type SolutionsUpdateSolutionErrors = {
|
|
1512
|
+
/**
|
|
1513
|
+
* Bad request - malformed body or invalid parameters.
|
|
1514
|
+
*/
|
|
927
1515
|
400: ErrorResponse;
|
|
928
1516
|
/**
|
|
929
|
-
* Unauthorized
|
|
1517
|
+
* Unauthorized - missing or invalid bearer token.
|
|
930
1518
|
*/
|
|
931
1519
|
401: ErrorResponse;
|
|
1520
|
+
/**
|
|
1521
|
+
* Forbidden - the caller lacks access to the resource.
|
|
1522
|
+
*/
|
|
932
1523
|
403: ErrorResponse;
|
|
1524
|
+
/**
|
|
1525
|
+
* Not found - the resource does not exist.
|
|
1526
|
+
*/
|
|
933
1527
|
404: ErrorResponse;
|
|
934
1528
|
/**
|
|
935
|
-
* Too many requests
|
|
1529
|
+
* Too many requests - rate limit exceeded.
|
|
936
1530
|
*/
|
|
937
1531
|
429: ErrorResponse;
|
|
938
1532
|
/**
|
|
939
|
-
* Internal server error
|
|
1533
|
+
* Internal server error - an unexpected error occurred.
|
|
940
1534
|
*/
|
|
941
1535
|
500: ErrorResponse;
|
|
942
1536
|
};
|
|
@@ -966,19 +1560,28 @@ type SolutionsPublishSolutionData = {
|
|
|
966
1560
|
url: '/v1/solutions/admin/{slug}/publish';
|
|
967
1561
|
};
|
|
968
1562
|
type SolutionsPublishSolutionErrors = {
|
|
1563
|
+
/**
|
|
1564
|
+
* Bad request - malformed body or invalid parameters.
|
|
1565
|
+
*/
|
|
969
1566
|
400: ErrorResponse;
|
|
970
1567
|
/**
|
|
971
|
-
* Unauthorized
|
|
1568
|
+
* Unauthorized - missing or invalid bearer token.
|
|
972
1569
|
*/
|
|
973
1570
|
401: ErrorResponse;
|
|
1571
|
+
/**
|
|
1572
|
+
* Forbidden - the caller lacks access to the resource.
|
|
1573
|
+
*/
|
|
974
1574
|
403: ErrorResponse;
|
|
1575
|
+
/**
|
|
1576
|
+
* Not found - the resource does not exist.
|
|
1577
|
+
*/
|
|
975
1578
|
404: ErrorResponse;
|
|
976
1579
|
/**
|
|
977
|
-
* Too many requests
|
|
1580
|
+
* Too many requests - rate limit exceeded.
|
|
978
1581
|
*/
|
|
979
1582
|
429: ErrorResponse;
|
|
980
1583
|
/**
|
|
981
|
-
* Internal server error
|
|
1584
|
+
* Internal server error - an unexpected error occurred.
|
|
982
1585
|
*/
|
|
983
1586
|
500: ErrorResponse;
|
|
984
1587
|
};
|
|
@@ -997,7 +1600,7 @@ type SolutionsBuildManifestData = {
|
|
|
997
1600
|
body: BuildManifestRequest;
|
|
998
1601
|
headers?: {
|
|
999
1602
|
/**
|
|
1000
|
-
*
|
|
1603
|
+
* Optional account-scoping header. Alternative to a claim carried on the Bearer JWT.
|
|
1001
1604
|
*/
|
|
1002
1605
|
companytoken?: string;
|
|
1003
1606
|
};
|
|
@@ -1006,19 +1609,28 @@ type SolutionsBuildManifestData = {
|
|
|
1006
1609
|
url: '/v1/solutions/admin/build-manifest';
|
|
1007
1610
|
};
|
|
1008
1611
|
type SolutionsBuildManifestErrors = {
|
|
1612
|
+
/**
|
|
1613
|
+
* Bad request - malformed body or invalid parameters.
|
|
1614
|
+
*/
|
|
1009
1615
|
400: ErrorResponse;
|
|
1010
1616
|
/**
|
|
1011
|
-
* Unauthorized
|
|
1617
|
+
* Unauthorized - missing or invalid bearer token.
|
|
1012
1618
|
*/
|
|
1013
1619
|
401: ErrorResponse;
|
|
1620
|
+
/**
|
|
1621
|
+
* Forbidden - the caller lacks access to the resource.
|
|
1622
|
+
*/
|
|
1014
1623
|
403: ErrorResponse;
|
|
1624
|
+
/**
|
|
1625
|
+
* Not found - the resource does not exist.
|
|
1626
|
+
*/
|
|
1015
1627
|
404: ErrorResponse;
|
|
1016
1628
|
/**
|
|
1017
|
-
* Too many requests
|
|
1629
|
+
* Too many requests - rate limit exceeded.
|
|
1018
1630
|
*/
|
|
1019
1631
|
429: ErrorResponse;
|
|
1020
1632
|
/**
|
|
1021
|
-
* Internal server error
|
|
1633
|
+
* Internal server error - an unexpected error occurred.
|
|
1022
1634
|
*/
|
|
1023
1635
|
500: ErrorResponse;
|
|
1024
1636
|
};
|
|
@@ -1040,35 +1652,44 @@ type SolutionsGetPublishedSolutionsData = {
|
|
|
1040
1652
|
};
|
|
1041
1653
|
path?: never;
|
|
1042
1654
|
query?: {
|
|
1655
|
+
/**
|
|
1656
|
+
* Optional search term to filter solutions by.
|
|
1657
|
+
*/
|
|
1043
1658
|
Search?: string | null;
|
|
1659
|
+
/**
|
|
1660
|
+
* Number of items to skip (pagination offset).
|
|
1661
|
+
*/
|
|
1044
1662
|
Offset?: number;
|
|
1663
|
+
/**
|
|
1664
|
+
* Maximum number of items to return.
|
|
1665
|
+
*/
|
|
1045
1666
|
Top?: number;
|
|
1046
1667
|
};
|
|
1047
1668
|
url: '/v1/solutions';
|
|
1048
1669
|
};
|
|
1049
1670
|
type SolutionsGetPublishedSolutionsErrors = {
|
|
1050
1671
|
/**
|
|
1051
|
-
* Bad request
|
|
1672
|
+
* Bad request - malformed body or invalid parameters.
|
|
1052
1673
|
*/
|
|
1053
1674
|
400: ErrorResponse;
|
|
1054
1675
|
/**
|
|
1055
|
-
* Unauthorized
|
|
1676
|
+
* Unauthorized - missing or invalid bearer token.
|
|
1056
1677
|
*/
|
|
1057
1678
|
401: ErrorResponse;
|
|
1058
1679
|
/**
|
|
1059
|
-
* Forbidden
|
|
1680
|
+
* Forbidden - the caller lacks access to the resource.
|
|
1060
1681
|
*/
|
|
1061
1682
|
403: ErrorResponse;
|
|
1062
1683
|
/**
|
|
1063
|
-
* Not found
|
|
1684
|
+
* Not found - the resource does not exist.
|
|
1064
1685
|
*/
|
|
1065
1686
|
404: ErrorResponse;
|
|
1066
1687
|
/**
|
|
1067
|
-
* Too many requests
|
|
1688
|
+
* Too many requests - rate limit exceeded.
|
|
1068
1689
|
*/
|
|
1069
1690
|
429: ErrorResponse;
|
|
1070
1691
|
/**
|
|
1071
|
-
* Internal server error
|
|
1692
|
+
* Internal server error - an unexpected error occurred.
|
|
1072
1693
|
*/
|
|
1073
1694
|
500: ErrorResponse;
|
|
1074
1695
|
};
|
|
@@ -1099,24 +1720,27 @@ type SolutionsGetSolutionBySlugData = {
|
|
|
1099
1720
|
};
|
|
1100
1721
|
type SolutionsGetSolutionBySlugErrors = {
|
|
1101
1722
|
/**
|
|
1102
|
-
* Bad request
|
|
1723
|
+
* Bad request - malformed body or invalid parameters.
|
|
1103
1724
|
*/
|
|
1104
1725
|
400: ErrorResponse;
|
|
1105
1726
|
/**
|
|
1106
|
-
* Unauthorized
|
|
1727
|
+
* Unauthorized - missing or invalid bearer token.
|
|
1107
1728
|
*/
|
|
1108
1729
|
401: ErrorResponse;
|
|
1109
1730
|
/**
|
|
1110
|
-
* Forbidden
|
|
1731
|
+
* Forbidden - the caller lacks access to the resource.
|
|
1111
1732
|
*/
|
|
1112
1733
|
403: ErrorResponse;
|
|
1734
|
+
/**
|
|
1735
|
+
* Not found - the resource does not exist.
|
|
1736
|
+
*/
|
|
1113
1737
|
404: ErrorResponse;
|
|
1114
1738
|
/**
|
|
1115
|
-
* Too many requests
|
|
1739
|
+
* Too many requests - rate limit exceeded.
|
|
1116
1740
|
*/
|
|
1117
1741
|
429: ErrorResponse;
|
|
1118
1742
|
/**
|
|
1119
|
-
* Internal server error
|
|
1743
|
+
* Internal server error - an unexpected error occurred.
|
|
1120
1744
|
*/
|
|
1121
1745
|
500: ErrorResponse;
|
|
1122
1746
|
};
|
|
@@ -1132,7 +1756,7 @@ type SolutionsGetInstallationsData = {
|
|
|
1132
1756
|
body?: never;
|
|
1133
1757
|
headers?: {
|
|
1134
1758
|
/**
|
|
1135
|
-
*
|
|
1759
|
+
* Optional account-scoping header. Alternative to a claim carried on the Bearer JWT.
|
|
1136
1760
|
*/
|
|
1137
1761
|
companytoken?: string;
|
|
1138
1762
|
};
|
|
@@ -1150,25 +1774,28 @@ type SolutionsGetInstallationsData = {
|
|
|
1150
1774
|
url: '/v1/solutions/installations';
|
|
1151
1775
|
};
|
|
1152
1776
|
type SolutionsGetInstallationsErrors = {
|
|
1777
|
+
/**
|
|
1778
|
+
* Bad request - malformed body or invalid parameters.
|
|
1779
|
+
*/
|
|
1153
1780
|
400: ErrorResponse;
|
|
1154
1781
|
/**
|
|
1155
|
-
* Unauthorized
|
|
1782
|
+
* Unauthorized - missing or invalid bearer token.
|
|
1156
1783
|
*/
|
|
1157
1784
|
401: ErrorResponse;
|
|
1158
1785
|
/**
|
|
1159
|
-
* Forbidden
|
|
1786
|
+
* Forbidden - the caller lacks access to the resource.
|
|
1160
1787
|
*/
|
|
1161
1788
|
403: ErrorResponse;
|
|
1162
1789
|
/**
|
|
1163
|
-
* Not found
|
|
1790
|
+
* Not found - the resource does not exist.
|
|
1164
1791
|
*/
|
|
1165
1792
|
404: ErrorResponse;
|
|
1166
1793
|
/**
|
|
1167
|
-
* Too many requests
|
|
1794
|
+
* Too many requests - rate limit exceeded.
|
|
1168
1795
|
*/
|
|
1169
1796
|
429: ErrorResponse;
|
|
1170
1797
|
/**
|
|
1171
|
-
* Internal server error
|
|
1798
|
+
* Internal server error - an unexpected error occurred.
|
|
1172
1799
|
*/
|
|
1173
1800
|
500: ErrorResponse;
|
|
1174
1801
|
};
|
|
@@ -1184,7 +1811,7 @@ type SolutionsGetInstallationDetailData = {
|
|
|
1184
1811
|
body?: never;
|
|
1185
1812
|
headers?: {
|
|
1186
1813
|
/**
|
|
1187
|
-
*
|
|
1814
|
+
* Optional account-scoping header. Alternative to a claim carried on the Bearer JWT.
|
|
1188
1815
|
*/
|
|
1189
1816
|
companytoken?: string;
|
|
1190
1817
|
};
|
|
@@ -1198,22 +1825,28 @@ type SolutionsGetInstallationDetailData = {
|
|
|
1198
1825
|
url: '/v1/solutions/installations/{id}';
|
|
1199
1826
|
};
|
|
1200
1827
|
type SolutionsGetInstallationDetailErrors = {
|
|
1828
|
+
/**
|
|
1829
|
+
* Bad request - malformed body or invalid parameters.
|
|
1830
|
+
*/
|
|
1201
1831
|
400: ErrorResponse;
|
|
1202
1832
|
/**
|
|
1203
|
-
* Unauthorized
|
|
1833
|
+
* Unauthorized - missing or invalid bearer token.
|
|
1204
1834
|
*/
|
|
1205
1835
|
401: ErrorResponse;
|
|
1206
1836
|
/**
|
|
1207
|
-
* Forbidden
|
|
1837
|
+
* Forbidden - the caller lacks access to the resource.
|
|
1208
1838
|
*/
|
|
1209
1839
|
403: ErrorResponse;
|
|
1840
|
+
/**
|
|
1841
|
+
* Not found - the resource does not exist.
|
|
1842
|
+
*/
|
|
1210
1843
|
404: ErrorResponse;
|
|
1211
1844
|
/**
|
|
1212
|
-
* Too many requests
|
|
1845
|
+
* Too many requests - rate limit exceeded.
|
|
1213
1846
|
*/
|
|
1214
1847
|
429: ErrorResponse;
|
|
1215
1848
|
/**
|
|
1216
|
-
* Internal server error
|
|
1849
|
+
* Internal server error - an unexpected error occurred.
|
|
1217
1850
|
*/
|
|
1218
1851
|
500: ErrorResponse;
|
|
1219
1852
|
};
|
|
@@ -1229,7 +1862,7 @@ type SolutionsGetInstallationResourcesData = {
|
|
|
1229
1862
|
body?: never;
|
|
1230
1863
|
headers?: {
|
|
1231
1864
|
/**
|
|
1232
|
-
*
|
|
1865
|
+
* Optional account-scoping header. Alternative to a claim carried on the Bearer JWT.
|
|
1233
1866
|
*/
|
|
1234
1867
|
companytoken?: string;
|
|
1235
1868
|
};
|
|
@@ -1252,22 +1885,28 @@ type SolutionsGetInstallationResourcesData = {
|
|
|
1252
1885
|
url: '/v1/solutions/installations/{id}/resources';
|
|
1253
1886
|
};
|
|
1254
1887
|
type SolutionsGetInstallationResourcesErrors = {
|
|
1888
|
+
/**
|
|
1889
|
+
* Bad request - malformed body or invalid parameters.
|
|
1890
|
+
*/
|
|
1255
1891
|
400: ErrorResponse;
|
|
1256
1892
|
/**
|
|
1257
|
-
* Unauthorized
|
|
1893
|
+
* Unauthorized - missing or invalid bearer token.
|
|
1258
1894
|
*/
|
|
1259
1895
|
401: ErrorResponse;
|
|
1260
1896
|
/**
|
|
1261
|
-
* Forbidden
|
|
1897
|
+
* Forbidden - the caller lacks access to the resource.
|
|
1262
1898
|
*/
|
|
1263
1899
|
403: ErrorResponse;
|
|
1900
|
+
/**
|
|
1901
|
+
* Not found - the resource does not exist.
|
|
1902
|
+
*/
|
|
1264
1903
|
404: ErrorResponse;
|
|
1265
1904
|
/**
|
|
1266
|
-
* Too many requests
|
|
1905
|
+
* Too many requests - rate limit exceeded.
|
|
1267
1906
|
*/
|
|
1268
1907
|
429: ErrorResponse;
|
|
1269
1908
|
/**
|
|
1270
|
-
* Internal server error
|
|
1909
|
+
* Internal server error - an unexpected error occurred.
|
|
1271
1910
|
*/
|
|
1272
1911
|
500: ErrorResponse;
|
|
1273
1912
|
};
|
|
@@ -1286,7 +1925,7 @@ type SolutionsInstallSolutionData = {
|
|
|
1286
1925
|
body: InstallSolutionRequest;
|
|
1287
1926
|
headers?: {
|
|
1288
1927
|
/**
|
|
1289
|
-
*
|
|
1928
|
+
* Optional account-scoping header. Alternative to a claim carried on the Bearer JWT.
|
|
1290
1929
|
*/
|
|
1291
1930
|
companytoken?: string;
|
|
1292
1931
|
};
|
|
@@ -1300,20 +1939,32 @@ type SolutionsInstallSolutionData = {
|
|
|
1300
1939
|
url: '/v1/solutions/{slug}/install';
|
|
1301
1940
|
};
|
|
1302
1941
|
type SolutionsInstallSolutionErrors = {
|
|
1942
|
+
/**
|
|
1943
|
+
* Bad request - malformed body or invalid parameters.
|
|
1944
|
+
*/
|
|
1303
1945
|
400: ErrorResponse;
|
|
1946
|
+
/**
|
|
1947
|
+
* Unauthorized - missing or invalid bearer token.
|
|
1948
|
+
*/
|
|
1304
1949
|
401: ErrorResponse;
|
|
1305
1950
|
/**
|
|
1306
|
-
* Forbidden
|
|
1951
|
+
* Forbidden - the caller lacks access to the resource.
|
|
1307
1952
|
*/
|
|
1308
1953
|
403: ErrorResponse;
|
|
1954
|
+
/**
|
|
1955
|
+
* Not found - the resource does not exist.
|
|
1956
|
+
*/
|
|
1309
1957
|
404: ErrorResponse;
|
|
1958
|
+
/**
|
|
1959
|
+
* Conflict - the solution is already installed in this workspace.
|
|
1960
|
+
*/
|
|
1310
1961
|
409: ErrorResponse;
|
|
1311
1962
|
/**
|
|
1312
|
-
* Too many requests
|
|
1963
|
+
* Too many requests - rate limit exceeded.
|
|
1313
1964
|
*/
|
|
1314
1965
|
429: ErrorResponse;
|
|
1315
1966
|
/**
|
|
1316
|
-
* Internal server error
|
|
1967
|
+
* Internal server error - an unexpected error occurred.
|
|
1317
1968
|
*/
|
|
1318
1969
|
500: ErrorResponse;
|
|
1319
1970
|
};
|
|
@@ -1332,7 +1983,7 @@ type SolutionsUpdateInstallationData = {
|
|
|
1332
1983
|
body?: UpdateInstallationRequest;
|
|
1333
1984
|
headers?: {
|
|
1334
1985
|
/**
|
|
1335
|
-
*
|
|
1986
|
+
* Optional account-scoping header. Alternative to a claim carried on the Bearer JWT.
|
|
1336
1987
|
*/
|
|
1337
1988
|
companytoken?: string;
|
|
1338
1989
|
};
|
|
@@ -1346,23 +1997,32 @@ type SolutionsUpdateInstallationData = {
|
|
|
1346
1997
|
url: '/v1/solutions/installations/{id}/update';
|
|
1347
1998
|
};
|
|
1348
1999
|
type SolutionsUpdateInstallationErrors = {
|
|
2000
|
+
/**
|
|
2001
|
+
* Bad request - malformed body or invalid parameters.
|
|
2002
|
+
*/
|
|
1349
2003
|
400: ErrorResponse;
|
|
1350
2004
|
/**
|
|
1351
|
-
* Unauthorized
|
|
2005
|
+
* Unauthorized - missing or invalid bearer token.
|
|
1352
2006
|
*/
|
|
1353
2007
|
401: ErrorResponse;
|
|
1354
2008
|
/**
|
|
1355
|
-
* Forbidden
|
|
2009
|
+
* Forbidden - the caller lacks access to the resource.
|
|
1356
2010
|
*/
|
|
1357
2011
|
403: ErrorResponse;
|
|
2012
|
+
/**
|
|
2013
|
+
* Not found - the resource does not exist.
|
|
2014
|
+
*/
|
|
1358
2015
|
404: ErrorResponse;
|
|
2016
|
+
/**
|
|
2017
|
+
* Conflict - the update is blocked by one or more conditions, returned in the response body; retry with forceModify=true to proceed anyway.
|
|
2018
|
+
*/
|
|
1359
2019
|
409: UpdateBlockedResponse;
|
|
1360
2020
|
/**
|
|
1361
|
-
* Too many requests
|
|
2021
|
+
* Too many requests - rate limit exceeded.
|
|
1362
2022
|
*/
|
|
1363
2023
|
429: ErrorResponse;
|
|
1364
2024
|
/**
|
|
1365
|
-
* Internal server error
|
|
2025
|
+
* Internal server error - an unexpected error occurred.
|
|
1366
2026
|
*/
|
|
1367
2027
|
500: ErrorResponse;
|
|
1368
2028
|
};
|
|
@@ -1381,7 +2041,7 @@ type SolutionsUninstallSolutionData = {
|
|
|
1381
2041
|
body: UninstallSolutionRequest;
|
|
1382
2042
|
headers?: {
|
|
1383
2043
|
/**
|
|
1384
|
-
*
|
|
2044
|
+
* Optional account-scoping header. Alternative to a claim carried on the Bearer JWT.
|
|
1385
2045
|
*/
|
|
1386
2046
|
companytoken?: string;
|
|
1387
2047
|
};
|
|
@@ -1395,22 +2055,28 @@ type SolutionsUninstallSolutionData = {
|
|
|
1395
2055
|
url: '/v1/solutions/{slug}/uninstall';
|
|
1396
2056
|
};
|
|
1397
2057
|
type SolutionsUninstallSolutionErrors = {
|
|
2058
|
+
/**
|
|
2059
|
+
* Bad request - malformed body or invalid parameters.
|
|
2060
|
+
*/
|
|
1398
2061
|
400: ErrorResponse;
|
|
1399
2062
|
/**
|
|
1400
|
-
* Unauthorized
|
|
2063
|
+
* Unauthorized - missing or invalid bearer token.
|
|
1401
2064
|
*/
|
|
1402
2065
|
401: ErrorResponse;
|
|
1403
2066
|
/**
|
|
1404
|
-
* Forbidden
|
|
2067
|
+
* Forbidden - the caller lacks access to the resource.
|
|
1405
2068
|
*/
|
|
1406
2069
|
403: ErrorResponse;
|
|
2070
|
+
/**
|
|
2071
|
+
* Not found - the resource does not exist.
|
|
2072
|
+
*/
|
|
1407
2073
|
404: ErrorResponse;
|
|
1408
2074
|
/**
|
|
1409
|
-
* Too many requests
|
|
2075
|
+
* Too many requests - rate limit exceeded.
|
|
1410
2076
|
*/
|
|
1411
2077
|
429: ErrorResponse;
|
|
1412
2078
|
/**
|
|
1413
|
-
* Internal server error
|
|
2079
|
+
* Internal server error - an unexpected error occurred.
|
|
1414
2080
|
*/
|
|
1415
2081
|
500: ErrorResponse;
|
|
1416
2082
|
};
|
|
@@ -1464,22 +2130,28 @@ type ApplicationsListApplicationsData = {
|
|
|
1464
2130
|
url: '/v1/applications';
|
|
1465
2131
|
};
|
|
1466
2132
|
type ApplicationsListApplicationsErrors = {
|
|
2133
|
+
/**
|
|
2134
|
+
* Bad request - malformed body or invalid parameters.
|
|
2135
|
+
*/
|
|
1467
2136
|
400: ErrorResponse;
|
|
2137
|
+
/**
|
|
2138
|
+
* Unauthorized - missing or invalid bearer token.
|
|
2139
|
+
*/
|
|
1468
2140
|
401: ErrorResponse;
|
|
1469
2141
|
/**
|
|
1470
|
-
* Forbidden
|
|
2142
|
+
* Forbidden - the caller lacks access to the resource.
|
|
1471
2143
|
*/
|
|
1472
2144
|
403: ErrorResponse;
|
|
1473
2145
|
/**
|
|
1474
|
-
* Not found
|
|
2146
|
+
* Not found - the resource does not exist.
|
|
1475
2147
|
*/
|
|
1476
2148
|
404: ErrorResponse;
|
|
1477
2149
|
/**
|
|
1478
|
-
* Too many requests
|
|
2150
|
+
* Too many requests - rate limit exceeded.
|
|
1479
2151
|
*/
|
|
1480
2152
|
429: ErrorResponse;
|
|
1481
2153
|
/**
|
|
1482
|
-
* Internal server error
|
|
2154
|
+
* Internal server error - an unexpected error occurred.
|
|
1483
2155
|
*/
|
|
1484
2156
|
500: ErrorResponse;
|
|
1485
2157
|
};
|
|
@@ -1510,21 +2182,27 @@ type ApplicationsGetApplicationData = {
|
|
|
1510
2182
|
};
|
|
1511
2183
|
type ApplicationsGetApplicationErrors = {
|
|
1512
2184
|
/**
|
|
1513
|
-
* Bad request
|
|
2185
|
+
* Bad request - malformed body or invalid parameters.
|
|
1514
2186
|
*/
|
|
1515
2187
|
400: ErrorResponse;
|
|
2188
|
+
/**
|
|
2189
|
+
* Unauthorized - missing or invalid bearer token.
|
|
2190
|
+
*/
|
|
1516
2191
|
401: ErrorResponse;
|
|
1517
2192
|
/**
|
|
1518
|
-
* Forbidden
|
|
2193
|
+
* Forbidden - the caller lacks access to the resource.
|
|
1519
2194
|
*/
|
|
1520
2195
|
403: ErrorResponse;
|
|
2196
|
+
/**
|
|
2197
|
+
* Not found - the resource does not exist.
|
|
2198
|
+
*/
|
|
1521
2199
|
404: ErrorResponse;
|
|
1522
2200
|
/**
|
|
1523
|
-
* Too many requests
|
|
2201
|
+
* Too many requests - rate limit exceeded.
|
|
1524
2202
|
*/
|
|
1525
2203
|
429: ErrorResponse;
|
|
1526
2204
|
/**
|
|
1527
|
-
* Internal server error
|
|
2205
|
+
* Internal server error - an unexpected error occurred.
|
|
1528
2206
|
*/
|
|
1529
2207
|
500: ErrorResponse;
|
|
1530
2208
|
};
|
|
@@ -1573,27 +2251,27 @@ type ConnectionsGetConnectionsData = {
|
|
|
1573
2251
|
};
|
|
1574
2252
|
type ConnectionsGetConnectionsErrors = {
|
|
1575
2253
|
/**
|
|
1576
|
-
* Bad request
|
|
2254
|
+
* Bad request - malformed body or invalid parameters.
|
|
1577
2255
|
*/
|
|
1578
2256
|
400: ErrorResponse;
|
|
1579
2257
|
/**
|
|
1580
|
-
* Unauthorized
|
|
2258
|
+
* Unauthorized - missing or invalid bearer token.
|
|
1581
2259
|
*/
|
|
1582
2260
|
401: ErrorResponse;
|
|
1583
2261
|
/**
|
|
1584
|
-
* Forbidden
|
|
2262
|
+
* Forbidden - the caller lacks access to the resource.
|
|
1585
2263
|
*/
|
|
1586
2264
|
403: ErrorResponse;
|
|
1587
2265
|
/**
|
|
1588
|
-
* Not found
|
|
2266
|
+
* Not found - the resource does not exist.
|
|
1589
2267
|
*/
|
|
1590
2268
|
404: ErrorResponse;
|
|
1591
2269
|
/**
|
|
1592
|
-
* Too many requests
|
|
2270
|
+
* Too many requests - rate limit exceeded.
|
|
1593
2271
|
*/
|
|
1594
2272
|
429: ErrorResponse;
|
|
1595
2273
|
/**
|
|
1596
|
-
* Internal server error
|
|
2274
|
+
* Internal server error - an unexpected error occurred.
|
|
1597
2275
|
*/
|
|
1598
2276
|
500: ErrorResponse;
|
|
1599
2277
|
};
|
|
@@ -1622,27 +2300,27 @@ type ConnectionsCreateConnectionData = {
|
|
|
1622
2300
|
};
|
|
1623
2301
|
type ConnectionsCreateConnectionErrors = {
|
|
1624
2302
|
/**
|
|
1625
|
-
* Bad request
|
|
2303
|
+
* Bad request - malformed body or invalid parameters.
|
|
1626
2304
|
*/
|
|
1627
2305
|
400: ErrorResponse;
|
|
1628
2306
|
/**
|
|
1629
|
-
* Unauthorized
|
|
2307
|
+
* Unauthorized - missing or invalid bearer token.
|
|
1630
2308
|
*/
|
|
1631
2309
|
401: ErrorResponse;
|
|
1632
2310
|
/**
|
|
1633
|
-
* Forbidden
|
|
2311
|
+
* Forbidden - the caller lacks access to the resource.
|
|
1634
2312
|
*/
|
|
1635
2313
|
403: ErrorResponse;
|
|
1636
2314
|
/**
|
|
1637
|
-
* Not found
|
|
2315
|
+
* Not found - the resource does not exist.
|
|
1638
2316
|
*/
|
|
1639
2317
|
404: ErrorResponse;
|
|
1640
2318
|
/**
|
|
1641
|
-
* Too many requests
|
|
2319
|
+
* Too many requests - rate limit exceeded.
|
|
1642
2320
|
*/
|
|
1643
2321
|
429: ErrorResponse;
|
|
1644
2322
|
/**
|
|
1645
|
-
* Internal server error
|
|
2323
|
+
* Internal server error - an unexpected error occurred.
|
|
1646
2324
|
*/
|
|
1647
2325
|
500: ErrorResponse;
|
|
1648
2326
|
};
|
|
@@ -1673,27 +2351,27 @@ type ConnectionsDeleteConnectionData = {
|
|
|
1673
2351
|
};
|
|
1674
2352
|
type ConnectionsDeleteConnectionErrors = {
|
|
1675
2353
|
/**
|
|
1676
|
-
* Bad request
|
|
2354
|
+
* Bad request - malformed body or invalid parameters.
|
|
1677
2355
|
*/
|
|
1678
2356
|
400: ErrorResponse;
|
|
1679
2357
|
/**
|
|
1680
|
-
* Unauthorized
|
|
2358
|
+
* Unauthorized - missing or invalid bearer token.
|
|
1681
2359
|
*/
|
|
1682
2360
|
401: ErrorResponse;
|
|
1683
2361
|
/**
|
|
1684
|
-
* Forbidden
|
|
2362
|
+
* Forbidden - the caller lacks access to the resource.
|
|
1685
2363
|
*/
|
|
1686
2364
|
403: ErrorResponse;
|
|
1687
2365
|
/**
|
|
1688
|
-
* Not found
|
|
2366
|
+
* Not found - the resource does not exist.
|
|
1689
2367
|
*/
|
|
1690
2368
|
404: ErrorResponse;
|
|
1691
2369
|
/**
|
|
1692
|
-
* Too many requests
|
|
2370
|
+
* Too many requests - rate limit exceeded.
|
|
1693
2371
|
*/
|
|
1694
2372
|
429: ErrorResponse;
|
|
1695
2373
|
/**
|
|
1696
|
-
* Internal server error
|
|
2374
|
+
* Internal server error - an unexpected error occurred.
|
|
1697
2375
|
*/
|
|
1698
2376
|
500: ErrorResponse;
|
|
1699
2377
|
};
|
|
@@ -1724,27 +2402,27 @@ type ConnectionsGetConnectionData = {
|
|
|
1724
2402
|
};
|
|
1725
2403
|
type ConnectionsGetConnectionErrors = {
|
|
1726
2404
|
/**
|
|
1727
|
-
* Bad request
|
|
2405
|
+
* Bad request - malformed body or invalid parameters.
|
|
1728
2406
|
*/
|
|
1729
2407
|
400: ErrorResponse;
|
|
1730
2408
|
/**
|
|
1731
|
-
* Unauthorized
|
|
2409
|
+
* Unauthorized - missing or invalid bearer token.
|
|
1732
2410
|
*/
|
|
1733
2411
|
401: ErrorResponse;
|
|
1734
2412
|
/**
|
|
1735
|
-
* Forbidden
|
|
2413
|
+
* Forbidden - the caller lacks access to the resource.
|
|
1736
2414
|
*/
|
|
1737
2415
|
403: ErrorResponse;
|
|
1738
2416
|
/**
|
|
1739
|
-
* Not found
|
|
2417
|
+
* Not found - the resource does not exist.
|
|
1740
2418
|
*/
|
|
1741
2419
|
404: ErrorResponse;
|
|
1742
2420
|
/**
|
|
1743
|
-
* Too many requests
|
|
2421
|
+
* Too many requests - rate limit exceeded.
|
|
1744
2422
|
*/
|
|
1745
2423
|
429: ErrorResponse;
|
|
1746
2424
|
/**
|
|
1747
|
-
* Internal server error
|
|
2425
|
+
* Internal server error - an unexpected error occurred.
|
|
1748
2426
|
*/
|
|
1749
2427
|
500: ErrorResponse;
|
|
1750
2428
|
};
|
|
@@ -1778,27 +2456,27 @@ type ConnectionsUpdateConnectionData = {
|
|
|
1778
2456
|
};
|
|
1779
2457
|
type ConnectionsUpdateConnectionErrors = {
|
|
1780
2458
|
/**
|
|
1781
|
-
* Bad request
|
|
2459
|
+
* Bad request - malformed body or invalid parameters.
|
|
1782
2460
|
*/
|
|
1783
2461
|
400: ErrorResponse;
|
|
1784
2462
|
/**
|
|
1785
|
-
* Unauthorized
|
|
2463
|
+
* Unauthorized - missing or invalid bearer token.
|
|
1786
2464
|
*/
|
|
1787
2465
|
401: ErrorResponse;
|
|
1788
2466
|
/**
|
|
1789
|
-
* Forbidden
|
|
2467
|
+
* Forbidden - the caller lacks access to the resource.
|
|
1790
2468
|
*/
|
|
1791
2469
|
403: ErrorResponse;
|
|
1792
2470
|
/**
|
|
1793
|
-
* Not found
|
|
2471
|
+
* Not found - the resource does not exist.
|
|
1794
2472
|
*/
|
|
1795
2473
|
404: ErrorResponse;
|
|
1796
2474
|
/**
|
|
1797
|
-
* Too many requests
|
|
2475
|
+
* Too many requests - rate limit exceeded.
|
|
1798
2476
|
*/
|
|
1799
2477
|
429: ErrorResponse;
|
|
1800
2478
|
/**
|
|
1801
|
-
* Internal server error
|
|
2479
|
+
* Internal server error - an unexpected error occurred.
|
|
1802
2480
|
*/
|
|
1803
2481
|
500: ErrorResponse;
|
|
1804
2482
|
};
|
|
@@ -1820,31 +2498,31 @@ type ConnectionsGetDefaultConnectionsData = {
|
|
|
1820
2498
|
};
|
|
1821
2499
|
path?: never;
|
|
1822
2500
|
query?: never;
|
|
1823
|
-
url: '/v1/connections/
|
|
2501
|
+
url: '/v1/connections/defaults';
|
|
1824
2502
|
};
|
|
1825
2503
|
type ConnectionsGetDefaultConnectionsErrors = {
|
|
1826
2504
|
/**
|
|
1827
|
-
* Bad request
|
|
2505
|
+
* Bad request - malformed body or invalid parameters.
|
|
1828
2506
|
*/
|
|
1829
2507
|
400: ErrorResponse;
|
|
1830
2508
|
/**
|
|
1831
|
-
* Unauthorized
|
|
2509
|
+
* Unauthorized - missing or invalid bearer token.
|
|
1832
2510
|
*/
|
|
1833
2511
|
401: ErrorResponse;
|
|
1834
2512
|
/**
|
|
1835
|
-
* Forbidden
|
|
2513
|
+
* Forbidden - the caller lacks access to the resource.
|
|
1836
2514
|
*/
|
|
1837
2515
|
403: ErrorResponse;
|
|
1838
2516
|
/**
|
|
1839
|
-
* Not found
|
|
2517
|
+
* Not found - the resource does not exist.
|
|
1840
2518
|
*/
|
|
1841
2519
|
404: ErrorResponse;
|
|
1842
2520
|
/**
|
|
1843
|
-
* Too many requests
|
|
2521
|
+
* Too many requests - rate limit exceeded.
|
|
1844
2522
|
*/
|
|
1845
2523
|
429: ErrorResponse;
|
|
1846
2524
|
/**
|
|
1847
|
-
* Internal server error
|
|
2525
|
+
* Internal server error - an unexpected error occurred.
|
|
1848
2526
|
*/
|
|
1849
2527
|
500: ErrorResponse;
|
|
1850
2528
|
};
|
|
@@ -1871,31 +2549,31 @@ type ConnectionsClearDefaultConnectionData = {
|
|
|
1871
2549
|
connectionId: number;
|
|
1872
2550
|
};
|
|
1873
2551
|
query?: never;
|
|
1874
|
-
url: '/v1/connections/{connectionId}/
|
|
2552
|
+
url: '/v1/connections/{connectionId}/default';
|
|
1875
2553
|
};
|
|
1876
2554
|
type ConnectionsClearDefaultConnectionErrors = {
|
|
1877
2555
|
/**
|
|
1878
|
-
* Bad request
|
|
2556
|
+
* Bad request - malformed body or invalid parameters.
|
|
1879
2557
|
*/
|
|
1880
2558
|
400: ErrorResponse;
|
|
1881
2559
|
/**
|
|
1882
|
-
* Unauthorized
|
|
2560
|
+
* Unauthorized - missing or invalid bearer token.
|
|
1883
2561
|
*/
|
|
1884
2562
|
401: ErrorResponse;
|
|
1885
2563
|
/**
|
|
1886
|
-
* Forbidden
|
|
2564
|
+
* Forbidden - the caller lacks access to the resource.
|
|
1887
2565
|
*/
|
|
1888
2566
|
403: ErrorResponse;
|
|
1889
2567
|
/**
|
|
1890
|
-
* Not found
|
|
2568
|
+
* Not found - the resource does not exist.
|
|
1891
2569
|
*/
|
|
1892
2570
|
404: ErrorResponse;
|
|
1893
2571
|
/**
|
|
1894
|
-
* Too many requests
|
|
2572
|
+
* Too many requests - rate limit exceeded.
|
|
1895
2573
|
*/
|
|
1896
2574
|
429: ErrorResponse;
|
|
1897
2575
|
/**
|
|
1898
|
-
* Internal server error
|
|
2576
|
+
* Internal server error - an unexpected error occurred.
|
|
1899
2577
|
*/
|
|
1900
2578
|
500: ErrorResponse;
|
|
1901
2579
|
};
|
|
@@ -1922,31 +2600,31 @@ type ConnectionsSetDefaultConnectionData = {
|
|
|
1922
2600
|
connectionId: number;
|
|
1923
2601
|
};
|
|
1924
2602
|
query?: never;
|
|
1925
|
-
url: '/v1/connections/{connectionId}/
|
|
2603
|
+
url: '/v1/connections/{connectionId}/default';
|
|
1926
2604
|
};
|
|
1927
2605
|
type ConnectionsSetDefaultConnectionErrors = {
|
|
1928
2606
|
/**
|
|
1929
|
-
* Bad request
|
|
2607
|
+
* Bad request - malformed body or invalid parameters.
|
|
1930
2608
|
*/
|
|
1931
2609
|
400: ErrorResponse;
|
|
1932
2610
|
/**
|
|
1933
|
-
* Unauthorized
|
|
2611
|
+
* Unauthorized - missing or invalid bearer token.
|
|
1934
2612
|
*/
|
|
1935
2613
|
401: ErrorResponse;
|
|
1936
2614
|
/**
|
|
1937
|
-
* Forbidden
|
|
2615
|
+
* Forbidden - the caller lacks access to the resource.
|
|
1938
2616
|
*/
|
|
1939
2617
|
403: ErrorResponse;
|
|
1940
2618
|
/**
|
|
1941
|
-
* Not found
|
|
2619
|
+
* Not found - the resource does not exist.
|
|
1942
2620
|
*/
|
|
1943
2621
|
404: ErrorResponse;
|
|
1944
2622
|
/**
|
|
1945
|
-
* Too many requests
|
|
2623
|
+
* Too many requests - rate limit exceeded.
|
|
1946
2624
|
*/
|
|
1947
2625
|
429: ErrorResponse;
|
|
1948
2626
|
/**
|
|
1949
|
-
* Internal server error
|
|
2627
|
+
* Internal server error - an unexpected error occurred.
|
|
1950
2628
|
*/
|
|
1951
2629
|
500: ErrorResponse;
|
|
1952
2630
|
};
|
|
@@ -1971,31 +2649,31 @@ type ConnectionsReplaceConnectionData = {
|
|
|
1971
2649
|
};
|
|
1972
2650
|
path?: never;
|
|
1973
2651
|
query?: never;
|
|
1974
|
-
url: '/v1/connections/
|
|
2652
|
+
url: '/v1/connections/replace';
|
|
1975
2653
|
};
|
|
1976
2654
|
type ConnectionsReplaceConnectionErrors = {
|
|
1977
2655
|
/**
|
|
1978
|
-
* Bad request
|
|
2656
|
+
* Bad request - malformed body or invalid parameters.
|
|
1979
2657
|
*/
|
|
1980
2658
|
400: ErrorResponse;
|
|
1981
2659
|
/**
|
|
1982
|
-
* Unauthorized
|
|
2660
|
+
* Unauthorized - missing or invalid bearer token.
|
|
1983
2661
|
*/
|
|
1984
2662
|
401: ErrorResponse;
|
|
1985
2663
|
/**
|
|
1986
|
-
* Forbidden
|
|
2664
|
+
* Forbidden - the caller lacks access to the resource.
|
|
1987
2665
|
*/
|
|
1988
2666
|
403: ErrorResponse;
|
|
1989
2667
|
/**
|
|
1990
|
-
* Not found
|
|
2668
|
+
* Not found - the resource does not exist.
|
|
1991
2669
|
*/
|
|
1992
2670
|
404: ErrorResponse;
|
|
1993
2671
|
/**
|
|
1994
|
-
* Too many requests
|
|
2672
|
+
* Too many requests - rate limit exceeded.
|
|
1995
2673
|
*/
|
|
1996
2674
|
429: ErrorResponse;
|
|
1997
2675
|
/**
|
|
1998
|
-
* Internal server error
|
|
2676
|
+
* Internal server error - an unexpected error occurred.
|
|
1999
2677
|
*/
|
|
2000
2678
|
500: ErrorResponse;
|
|
2001
2679
|
};
|
|
@@ -2022,31 +2700,31 @@ type ConnectionsRefreshObjectsData = {
|
|
|
2022
2700
|
connectionId: number;
|
|
2023
2701
|
};
|
|
2024
2702
|
query?: never;
|
|
2025
|
-
url: '/v1/connections/{connectionId}/
|
|
2703
|
+
url: '/v1/connections/{connectionId}/refresh-objects';
|
|
2026
2704
|
};
|
|
2027
2705
|
type ConnectionsRefreshObjectsErrors = {
|
|
2028
2706
|
/**
|
|
2029
|
-
* Bad request
|
|
2707
|
+
* Bad request - malformed body or invalid parameters.
|
|
2030
2708
|
*/
|
|
2031
2709
|
400: ErrorResponse;
|
|
2032
2710
|
/**
|
|
2033
|
-
* Unauthorized
|
|
2711
|
+
* Unauthorized - missing or invalid bearer token.
|
|
2034
2712
|
*/
|
|
2035
2713
|
401: ErrorResponse;
|
|
2036
2714
|
/**
|
|
2037
|
-
* Forbidden
|
|
2715
|
+
* Forbidden - the caller lacks access to the resource.
|
|
2038
2716
|
*/
|
|
2039
2717
|
403: ErrorResponse;
|
|
2040
2718
|
/**
|
|
2041
|
-
* Not found
|
|
2719
|
+
* Not found - the resource does not exist.
|
|
2042
2720
|
*/
|
|
2043
2721
|
404: ErrorResponse;
|
|
2044
2722
|
/**
|
|
2045
|
-
* Too many requests
|
|
2723
|
+
* Too many requests - rate limit exceeded.
|
|
2046
2724
|
*/
|
|
2047
2725
|
429: ErrorResponse;
|
|
2048
2726
|
/**
|
|
2049
|
-
* Internal server error
|
|
2727
|
+
* Internal server error - an unexpected error occurred.
|
|
2050
2728
|
*/
|
|
2051
2729
|
500: ErrorResponse;
|
|
2052
2730
|
};
|
|
@@ -2073,31 +2751,31 @@ type ConnectionsGetRefreshStatusData = {
|
|
|
2073
2751
|
connectionId: number;
|
|
2074
2752
|
};
|
|
2075
2753
|
query?: never;
|
|
2076
|
-
url: '/v1/connections/{connectionId}/
|
|
2754
|
+
url: '/v1/connections/{connectionId}/refresh-status';
|
|
2077
2755
|
};
|
|
2078
2756
|
type ConnectionsGetRefreshStatusErrors = {
|
|
2079
2757
|
/**
|
|
2080
|
-
* Bad request
|
|
2758
|
+
* Bad request - malformed body or invalid parameters.
|
|
2081
2759
|
*/
|
|
2082
2760
|
400: ErrorResponse;
|
|
2083
2761
|
/**
|
|
2084
|
-
* Unauthorized
|
|
2762
|
+
* Unauthorized - missing or invalid bearer token.
|
|
2085
2763
|
*/
|
|
2086
2764
|
401: ErrorResponse;
|
|
2087
2765
|
/**
|
|
2088
|
-
* Forbidden
|
|
2766
|
+
* Forbidden - the caller lacks access to the resource.
|
|
2089
2767
|
*/
|
|
2090
2768
|
403: ErrorResponse;
|
|
2091
2769
|
/**
|
|
2092
|
-
* Not found
|
|
2770
|
+
* Not found - the resource does not exist.
|
|
2093
2771
|
*/
|
|
2094
2772
|
404: ErrorResponse;
|
|
2095
2773
|
/**
|
|
2096
|
-
* Too many requests
|
|
2774
|
+
* Too many requests - rate limit exceeded.
|
|
2097
2775
|
*/
|
|
2098
2776
|
429: ErrorResponse;
|
|
2099
2777
|
/**
|
|
2100
|
-
* Internal server error
|
|
2778
|
+
* Internal server error - an unexpected error occurred.
|
|
2101
2779
|
*/
|
|
2102
2780
|
500: ErrorResponse;
|
|
2103
2781
|
};
|
|
@@ -2127,31 +2805,31 @@ type ConnectionsSelectObjectsData = {
|
|
|
2127
2805
|
connectionId: number;
|
|
2128
2806
|
};
|
|
2129
2807
|
query?: never;
|
|
2130
|
-
url: '/v1/connections/{connectionId}/
|
|
2808
|
+
url: '/v1/connections/{connectionId}/select-objects';
|
|
2131
2809
|
};
|
|
2132
2810
|
type ConnectionsSelectObjectsErrors = {
|
|
2133
2811
|
/**
|
|
2134
|
-
* Bad request
|
|
2812
|
+
* Bad request - malformed body or invalid parameters.
|
|
2135
2813
|
*/
|
|
2136
2814
|
400: ErrorResponse;
|
|
2137
2815
|
/**
|
|
2138
|
-
* Unauthorized
|
|
2816
|
+
* Unauthorized - missing or invalid bearer token.
|
|
2139
2817
|
*/
|
|
2140
2818
|
401: ErrorResponse;
|
|
2141
2819
|
/**
|
|
2142
|
-
* Forbidden
|
|
2820
|
+
* Forbidden - the caller lacks access to the resource.
|
|
2143
2821
|
*/
|
|
2144
2822
|
403: ErrorResponse;
|
|
2145
2823
|
/**
|
|
2146
|
-
* Not found
|
|
2824
|
+
* Not found - the resource does not exist.
|
|
2147
2825
|
*/
|
|
2148
2826
|
404: ErrorResponse;
|
|
2149
2827
|
/**
|
|
2150
|
-
* Too many requests
|
|
2828
|
+
* Too many requests - rate limit exceeded.
|
|
2151
2829
|
*/
|
|
2152
2830
|
429: ErrorResponse;
|
|
2153
2831
|
/**
|
|
2154
|
-
* Internal server error
|
|
2832
|
+
* Internal server error - an unexpected error occurred.
|
|
2155
2833
|
*/
|
|
2156
2834
|
500: ErrorResponse;
|
|
2157
2835
|
};
|
|
@@ -2195,31 +2873,31 @@ type ConnectionsGetConnectionObjectsData = {
|
|
|
2195
2873
|
*/
|
|
2196
2874
|
top?: number;
|
|
2197
2875
|
};
|
|
2198
|
-
url: '/v1/connections/{connectionId}/
|
|
2876
|
+
url: '/v1/connections/{connectionId}/objects';
|
|
2199
2877
|
};
|
|
2200
2878
|
type ConnectionsGetConnectionObjectsErrors = {
|
|
2201
2879
|
/**
|
|
2202
|
-
* Bad request
|
|
2880
|
+
* Bad request - malformed body or invalid parameters.
|
|
2203
2881
|
*/
|
|
2204
2882
|
400: ErrorResponse;
|
|
2205
2883
|
/**
|
|
2206
|
-
* Unauthorized
|
|
2884
|
+
* Unauthorized - missing or invalid bearer token.
|
|
2207
2885
|
*/
|
|
2208
2886
|
401: ErrorResponse;
|
|
2209
2887
|
/**
|
|
2210
|
-
* Forbidden
|
|
2888
|
+
* Forbidden - the caller lacks access to the resource.
|
|
2211
2889
|
*/
|
|
2212
2890
|
403: ErrorResponse;
|
|
2213
2891
|
/**
|
|
2214
|
-
* Not found
|
|
2892
|
+
* Not found - the resource does not exist.
|
|
2215
2893
|
*/
|
|
2216
2894
|
404: ErrorResponse;
|
|
2217
2895
|
/**
|
|
2218
|
-
* Too many requests
|
|
2896
|
+
* Too many requests - rate limit exceeded.
|
|
2219
2897
|
*/
|
|
2220
2898
|
429: ErrorResponse;
|
|
2221
2899
|
/**
|
|
2222
|
-
* Internal server error
|
|
2900
|
+
* Internal server error - an unexpected error occurred.
|
|
2223
2901
|
*/
|
|
2224
2902
|
500: ErrorResponse;
|
|
2225
2903
|
};
|
|
@@ -2246,31 +2924,31 @@ type ConnectionsCheckConnectionData = {
|
|
|
2246
2924
|
connectionId: number;
|
|
2247
2925
|
};
|
|
2248
2926
|
query?: never;
|
|
2249
|
-
url: '/v1/connections/{connectionId}/
|
|
2927
|
+
url: '/v1/connections/{connectionId}/check';
|
|
2250
2928
|
};
|
|
2251
2929
|
type ConnectionsCheckConnectionErrors = {
|
|
2252
2930
|
/**
|
|
2253
|
-
* Bad request
|
|
2931
|
+
* Bad request - malformed body or invalid parameters.
|
|
2254
2932
|
*/
|
|
2255
2933
|
400: ErrorResponse;
|
|
2256
2934
|
/**
|
|
2257
|
-
* Unauthorized
|
|
2935
|
+
* Unauthorized - missing or invalid bearer token.
|
|
2258
2936
|
*/
|
|
2259
2937
|
401: ErrorResponse;
|
|
2260
2938
|
/**
|
|
2261
|
-
* Forbidden
|
|
2939
|
+
* Forbidden - the caller lacks access to the resource.
|
|
2262
2940
|
*/
|
|
2263
2941
|
403: ErrorResponse;
|
|
2264
2942
|
/**
|
|
2265
|
-
* Not found
|
|
2943
|
+
* Not found - the resource does not exist.
|
|
2266
2944
|
*/
|
|
2267
2945
|
404: ErrorResponse;
|
|
2268
2946
|
/**
|
|
2269
|
-
* Too many requests
|
|
2947
|
+
* Too many requests - rate limit exceeded.
|
|
2270
2948
|
*/
|
|
2271
2949
|
429: ErrorResponse;
|
|
2272
2950
|
/**
|
|
2273
|
-
* Internal server error
|
|
2951
|
+
* Internal server error - an unexpected error occurred.
|
|
2274
2952
|
*/
|
|
2275
2953
|
500: ErrorResponse;
|
|
2276
2954
|
};
|
|
@@ -2295,31 +2973,31 @@ type ConnectionsGetSignInUrlData = {
|
|
|
2295
2973
|
};
|
|
2296
2974
|
path?: never;
|
|
2297
2975
|
query?: never;
|
|
2298
|
-
url: '/v1/connections/
|
|
2976
|
+
url: '/v1/connections/get-sign-in-url';
|
|
2299
2977
|
};
|
|
2300
2978
|
type ConnectionsGetSignInUrlErrors = {
|
|
2301
2979
|
/**
|
|
2302
|
-
* Bad request
|
|
2980
|
+
* Bad request - malformed body or invalid parameters.
|
|
2303
2981
|
*/
|
|
2304
2982
|
400: ErrorResponse;
|
|
2305
2983
|
/**
|
|
2306
|
-
* Unauthorized
|
|
2984
|
+
* Unauthorized - missing or invalid bearer token.
|
|
2307
2985
|
*/
|
|
2308
2986
|
401: ErrorResponse;
|
|
2309
2987
|
/**
|
|
2310
|
-
* Forbidden
|
|
2988
|
+
* Forbidden - the caller lacks access to the resource.
|
|
2311
2989
|
*/
|
|
2312
2990
|
403: ErrorResponse;
|
|
2313
2991
|
/**
|
|
2314
|
-
* Not found
|
|
2992
|
+
* Not found - the resource does not exist.
|
|
2315
2993
|
*/
|
|
2316
2994
|
404: ErrorResponse;
|
|
2317
2995
|
/**
|
|
2318
|
-
* Too many requests
|
|
2996
|
+
* Too many requests - rate limit exceeded.
|
|
2319
2997
|
*/
|
|
2320
2998
|
429: ErrorResponse;
|
|
2321
2999
|
/**
|
|
2322
|
-
* Internal server error
|
|
3000
|
+
* Internal server error - an unexpected error occurred.
|
|
2323
3001
|
*/
|
|
2324
3002
|
500: ErrorResponse;
|
|
2325
3003
|
};
|
|
@@ -2346,31 +3024,31 @@ type ConnectionsGetAccessTokenData = {
|
|
|
2346
3024
|
state: string;
|
|
2347
3025
|
};
|
|
2348
3026
|
query?: never;
|
|
2349
|
-
url: '/v1/connections/
|
|
3027
|
+
url: '/v1/connections/access-token/{state}';
|
|
2350
3028
|
};
|
|
2351
3029
|
type ConnectionsGetAccessTokenErrors = {
|
|
2352
3030
|
/**
|
|
2353
|
-
* Bad request
|
|
3031
|
+
* Bad request - malformed body or invalid parameters.
|
|
2354
3032
|
*/
|
|
2355
3033
|
400: ErrorResponse;
|
|
2356
3034
|
/**
|
|
2357
|
-
* Unauthorized
|
|
3035
|
+
* Unauthorized - missing or invalid bearer token.
|
|
2358
3036
|
*/
|
|
2359
3037
|
401: ErrorResponse;
|
|
2360
3038
|
/**
|
|
2361
|
-
* Forbidden
|
|
3039
|
+
* Forbidden - the caller lacks access to the resource.
|
|
2362
3040
|
*/
|
|
2363
3041
|
403: ErrorResponse;
|
|
2364
3042
|
/**
|
|
2365
|
-
* Not found
|
|
3043
|
+
* Not found - the resource does not exist.
|
|
2366
3044
|
*/
|
|
2367
3045
|
404: ErrorResponse;
|
|
2368
3046
|
/**
|
|
2369
|
-
* Too many requests
|
|
3047
|
+
* Too many requests - rate limit exceeded.
|
|
2370
3048
|
*/
|
|
2371
3049
|
429: ErrorResponse;
|
|
2372
3050
|
/**
|
|
2373
|
-
* Internal server error
|
|
3051
|
+
* Internal server error - an unexpected error occurred.
|
|
2374
3052
|
*/
|
|
2375
3053
|
500: ErrorResponse;
|
|
2376
3054
|
};
|
|
@@ -2424,26 +3102,36 @@ type ToolsListToolsData = {
|
|
|
2424
3102
|
* Maximum number of items to return. Defaults to 100.
|
|
2425
3103
|
*/
|
|
2426
3104
|
top?: number;
|
|
3105
|
+
/**
|
|
3106
|
+
* Optional toolset id; when supplied, the caller's workflow tools in that toolset are included alongside activity tools.
|
|
3107
|
+
*/
|
|
3108
|
+
toolsetId?: string | null;
|
|
2427
3109
|
};
|
|
2428
3110
|
url: '/v1/tools';
|
|
2429
3111
|
};
|
|
2430
3112
|
type ToolsListToolsErrors = {
|
|
3113
|
+
/**
|
|
3114
|
+
* Bad request - malformed body or invalid parameters.
|
|
3115
|
+
*/
|
|
2431
3116
|
400: ErrorResponse;
|
|
3117
|
+
/**
|
|
3118
|
+
* Unauthorized - missing or invalid bearer token.
|
|
3119
|
+
*/
|
|
2432
3120
|
401: ErrorResponse;
|
|
2433
3121
|
/**
|
|
2434
|
-
* Forbidden
|
|
3122
|
+
* Forbidden - the caller lacks access to the resource.
|
|
2435
3123
|
*/
|
|
2436
3124
|
403: ErrorResponse;
|
|
2437
3125
|
/**
|
|
2438
|
-
* Not found
|
|
3126
|
+
* Not found - the resource does not exist.
|
|
2439
3127
|
*/
|
|
2440
3128
|
404: ErrorResponse;
|
|
2441
3129
|
/**
|
|
2442
|
-
* Too many requests
|
|
3130
|
+
* Too many requests - rate limit exceeded.
|
|
2443
3131
|
*/
|
|
2444
3132
|
429: ErrorResponse;
|
|
2445
3133
|
/**
|
|
2446
|
-
* Internal server error
|
|
3134
|
+
* Internal server error - an unexpected error occurred.
|
|
2447
3135
|
*/
|
|
2448
3136
|
500: ErrorResponse;
|
|
2449
3137
|
};
|
|
@@ -2474,23 +3162,36 @@ type ToolsGetToolData = {
|
|
|
2474
3162
|
* Optional parent-application slug used to disambiguate when the same tool slug exists across applications.
|
|
2475
3163
|
*/
|
|
2476
3164
|
applicationSlug?: string | null;
|
|
3165
|
+
/**
|
|
3166
|
+
* Optional toolset id; when supplied, a slug naming one of the caller's workflows in that toolset resolves to the workflow-tool detail.
|
|
3167
|
+
*/
|
|
3168
|
+
toolsetId?: string | null;
|
|
2477
3169
|
};
|
|
2478
3170
|
url: '/v1/tools/{toolSlug}';
|
|
2479
3171
|
};
|
|
2480
3172
|
type ToolsGetToolErrors = {
|
|
3173
|
+
/**
|
|
3174
|
+
* Bad request - malformed body or invalid parameters.
|
|
3175
|
+
*/
|
|
2481
3176
|
400: ErrorResponse;
|
|
3177
|
+
/**
|
|
3178
|
+
* Unauthorized - missing or invalid bearer token.
|
|
3179
|
+
*/
|
|
2482
3180
|
401: ErrorResponse;
|
|
2483
3181
|
/**
|
|
2484
|
-
* Forbidden
|
|
3182
|
+
* Forbidden - the caller lacks access to the resource.
|
|
2485
3183
|
*/
|
|
2486
3184
|
403: ErrorResponse;
|
|
3185
|
+
/**
|
|
3186
|
+
* Not found - the resource does not exist.
|
|
3187
|
+
*/
|
|
2487
3188
|
404: ErrorResponse;
|
|
2488
3189
|
/**
|
|
2489
|
-
* Too many requests
|
|
3190
|
+
* Too many requests - rate limit exceeded.
|
|
2490
3191
|
*/
|
|
2491
3192
|
429: ErrorResponse;
|
|
2492
3193
|
/**
|
|
2493
|
-
* Internal server error
|
|
3194
|
+
* Internal server error - an unexpected error occurred.
|
|
2494
3195
|
*/
|
|
2495
3196
|
500: ErrorResponse;
|
|
2496
3197
|
};
|
|
@@ -2520,10 +3221,6 @@ type ToolsExecuteToolData = {
|
|
|
2520
3221
|
toolSlug: string;
|
|
2521
3222
|
};
|
|
2522
3223
|
query?: {
|
|
2523
|
-
/**
|
|
2524
|
-
* Optional parent-application slug used to disambiguate the tool and resolve the connection.
|
|
2525
|
-
*/
|
|
2526
|
-
applicationSlug?: string | null;
|
|
2527
3224
|
/**
|
|
2528
3225
|
* Optional toolset identifier used to scope connection resolution.
|
|
2529
3226
|
*/
|
|
@@ -2536,17 +3233,32 @@ type ToolsExecuteToolData = {
|
|
|
2536
3233
|
url: '/v1/tools/{toolSlug}/execute';
|
|
2537
3234
|
};
|
|
2538
3235
|
type ToolsExecuteToolErrors = {
|
|
3236
|
+
/**
|
|
3237
|
+
* Bad request - malformed body or invalid parameters.
|
|
3238
|
+
*/
|
|
2539
3239
|
400: ErrorResponse;
|
|
3240
|
+
/**
|
|
3241
|
+
* Unauthorized - missing or invalid bearer token.
|
|
3242
|
+
*/
|
|
2540
3243
|
401: ErrorResponse;
|
|
3244
|
+
/**
|
|
3245
|
+
* Forbidden - the caller lacks access to the resource.
|
|
3246
|
+
*/
|
|
2541
3247
|
403: ErrorResponse;
|
|
3248
|
+
/**
|
|
3249
|
+
* Not found - the resource does not exist.
|
|
3250
|
+
*/
|
|
2542
3251
|
404: ErrorResponse;
|
|
3252
|
+
/**
|
|
3253
|
+
* Conflict - the tool has no resolvable connection: either the supplied toolset has no connection for the tool's application (NO_TOOLSET_CONNECTION), or the caller has no default connection configured and none can be resolved (NO_DEFAULT_CONNECTION).
|
|
3254
|
+
*/
|
|
2543
3255
|
409: ErrorResponse;
|
|
2544
3256
|
/**
|
|
2545
|
-
* Too many requests
|
|
3257
|
+
* Too many requests - rate limit exceeded.
|
|
2546
3258
|
*/
|
|
2547
3259
|
429: ErrorResponse;
|
|
2548
3260
|
/**
|
|
2549
|
-
* Internal server error
|
|
3261
|
+
* Internal server error - an unexpected error occurred.
|
|
2550
3262
|
*/
|
|
2551
3263
|
500: ErrorResponse;
|
|
2552
3264
|
};
|
|
@@ -2581,27 +3293,27 @@ type ToolsetsListToolsetsData = {
|
|
|
2581
3293
|
};
|
|
2582
3294
|
type ToolsetsListToolsetsErrors = {
|
|
2583
3295
|
/**
|
|
2584
|
-
* Bad request
|
|
3296
|
+
* Bad request - malformed body or invalid parameters.
|
|
2585
3297
|
*/
|
|
2586
3298
|
400: ErrorResponse;
|
|
2587
3299
|
/**
|
|
2588
|
-
* Unauthorized
|
|
3300
|
+
* Unauthorized - missing or invalid bearer token.
|
|
2589
3301
|
*/
|
|
2590
3302
|
401: ErrorResponse;
|
|
2591
3303
|
/**
|
|
2592
|
-
* Forbidden
|
|
3304
|
+
* Forbidden - the caller lacks access to the resource.
|
|
2593
3305
|
*/
|
|
2594
3306
|
403: ErrorResponse;
|
|
2595
3307
|
/**
|
|
2596
|
-
* Not found
|
|
3308
|
+
* Not found - the resource does not exist.
|
|
2597
3309
|
*/
|
|
2598
3310
|
404: ErrorResponse;
|
|
2599
3311
|
/**
|
|
2600
|
-
* Too many requests
|
|
3312
|
+
* Too many requests - rate limit exceeded.
|
|
2601
3313
|
*/
|
|
2602
3314
|
429: ErrorResponse;
|
|
2603
3315
|
/**
|
|
2604
|
-
* Internal server error
|
|
3316
|
+
* Internal server error - an unexpected error occurred.
|
|
2605
3317
|
*/
|
|
2606
3318
|
500: ErrorResponse;
|
|
2607
3319
|
};
|
|
@@ -2630,27 +3342,27 @@ type ToolsetsCreateToolsetData = {
|
|
|
2630
3342
|
};
|
|
2631
3343
|
type ToolsetsCreateToolsetErrors = {
|
|
2632
3344
|
/**
|
|
2633
|
-
* Bad request
|
|
3345
|
+
* Bad request - malformed body or invalid parameters.
|
|
2634
3346
|
*/
|
|
2635
3347
|
400: ErrorResponse;
|
|
2636
3348
|
/**
|
|
2637
|
-
* Unauthorized
|
|
3349
|
+
* Unauthorized - missing or invalid bearer token.
|
|
2638
3350
|
*/
|
|
2639
3351
|
401: ErrorResponse;
|
|
2640
3352
|
/**
|
|
2641
|
-
* Forbidden
|
|
3353
|
+
* Forbidden - the caller lacks access to the resource.
|
|
2642
3354
|
*/
|
|
2643
3355
|
403: ErrorResponse;
|
|
2644
3356
|
/**
|
|
2645
|
-
* Not found
|
|
3357
|
+
* Not found - the resource does not exist.
|
|
2646
3358
|
*/
|
|
2647
3359
|
404: ErrorResponse;
|
|
2648
3360
|
/**
|
|
2649
|
-
* Too many requests
|
|
3361
|
+
* Too many requests - rate limit exceeded.
|
|
2650
3362
|
*/
|
|
2651
3363
|
429: ErrorResponse;
|
|
2652
3364
|
/**
|
|
2653
|
-
* Internal server error
|
|
3365
|
+
* Internal server error - an unexpected error occurred.
|
|
2654
3366
|
*/
|
|
2655
3367
|
500: ErrorResponse;
|
|
2656
3368
|
};
|
|
@@ -2681,27 +3393,27 @@ type ToolsetsDeleteToolsetData = {
|
|
|
2681
3393
|
};
|
|
2682
3394
|
type ToolsetsDeleteToolsetErrors = {
|
|
2683
3395
|
/**
|
|
2684
|
-
* Bad request
|
|
3396
|
+
* Bad request - malformed body or invalid parameters.
|
|
2685
3397
|
*/
|
|
2686
3398
|
400: ErrorResponse;
|
|
2687
3399
|
/**
|
|
2688
|
-
* Unauthorized
|
|
3400
|
+
* Unauthorized - missing or invalid bearer token.
|
|
2689
3401
|
*/
|
|
2690
3402
|
401: ErrorResponse;
|
|
2691
3403
|
/**
|
|
2692
|
-
* Forbidden
|
|
3404
|
+
* Forbidden - the caller lacks access to the resource.
|
|
2693
3405
|
*/
|
|
2694
3406
|
403: ErrorResponse;
|
|
2695
3407
|
/**
|
|
2696
|
-
* Not found
|
|
3408
|
+
* Not found - the resource does not exist.
|
|
2697
3409
|
*/
|
|
2698
3410
|
404: ErrorResponse;
|
|
2699
3411
|
/**
|
|
2700
|
-
* Too many requests
|
|
3412
|
+
* Too many requests - rate limit exceeded.
|
|
2701
3413
|
*/
|
|
2702
3414
|
429: ErrorResponse;
|
|
2703
3415
|
/**
|
|
2704
|
-
* Internal server error
|
|
3416
|
+
* Internal server error - an unexpected error occurred.
|
|
2705
3417
|
*/
|
|
2706
3418
|
500: ErrorResponse;
|
|
2707
3419
|
};
|
|
@@ -2732,27 +3444,27 @@ type ToolsetsGetToolsetData = {
|
|
|
2732
3444
|
};
|
|
2733
3445
|
type ToolsetsGetToolsetErrors = {
|
|
2734
3446
|
/**
|
|
2735
|
-
* Bad request
|
|
3447
|
+
* Bad request - malformed body or invalid parameters.
|
|
2736
3448
|
*/
|
|
2737
3449
|
400: ErrorResponse;
|
|
2738
3450
|
/**
|
|
2739
|
-
* Unauthorized
|
|
3451
|
+
* Unauthorized - missing or invalid bearer token.
|
|
2740
3452
|
*/
|
|
2741
3453
|
401: ErrorResponse;
|
|
2742
3454
|
/**
|
|
2743
|
-
* Forbidden
|
|
3455
|
+
* Forbidden - the caller lacks access to the resource.
|
|
2744
3456
|
*/
|
|
2745
3457
|
403: ErrorResponse;
|
|
2746
3458
|
/**
|
|
2747
|
-
* Not found
|
|
3459
|
+
* Not found - the resource does not exist.
|
|
2748
3460
|
*/
|
|
2749
3461
|
404: ErrorResponse;
|
|
2750
3462
|
/**
|
|
2751
|
-
* Too many requests
|
|
3463
|
+
* Too many requests - rate limit exceeded.
|
|
2752
3464
|
*/
|
|
2753
3465
|
429: ErrorResponse;
|
|
2754
3466
|
/**
|
|
2755
|
-
* Internal server error
|
|
3467
|
+
* Internal server error - an unexpected error occurred.
|
|
2756
3468
|
*/
|
|
2757
3469
|
500: ErrorResponse;
|
|
2758
3470
|
};
|
|
@@ -2786,27 +3498,27 @@ type ToolsetsUpdateToolsetData = {
|
|
|
2786
3498
|
};
|
|
2787
3499
|
type ToolsetsUpdateToolsetErrors = {
|
|
2788
3500
|
/**
|
|
2789
|
-
* Bad request
|
|
3501
|
+
* Bad request - malformed body or invalid parameters.
|
|
2790
3502
|
*/
|
|
2791
3503
|
400: ErrorResponse;
|
|
2792
3504
|
/**
|
|
2793
|
-
* Unauthorized
|
|
3505
|
+
* Unauthorized - missing or invalid bearer token.
|
|
2794
3506
|
*/
|
|
2795
3507
|
401: ErrorResponse;
|
|
2796
3508
|
/**
|
|
2797
|
-
* Forbidden
|
|
3509
|
+
* Forbidden - the caller lacks access to the resource.
|
|
2798
3510
|
*/
|
|
2799
3511
|
403: ErrorResponse;
|
|
2800
3512
|
/**
|
|
2801
|
-
* Not found
|
|
3513
|
+
* Not found - the resource does not exist.
|
|
2802
3514
|
*/
|
|
2803
3515
|
404: ErrorResponse;
|
|
2804
3516
|
/**
|
|
2805
|
-
* Too many requests
|
|
3517
|
+
* Too many requests - rate limit exceeded.
|
|
2806
3518
|
*/
|
|
2807
3519
|
429: ErrorResponse;
|
|
2808
3520
|
/**
|
|
2809
|
-
* Internal server error
|
|
3521
|
+
* Internal server error - an unexpected error occurred.
|
|
2810
3522
|
*/
|
|
2811
3523
|
500: ErrorResponse;
|
|
2812
3524
|
};
|
|
@@ -2832,6 +3544,18 @@ type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean
|
|
|
2832
3544
|
*/
|
|
2833
3545
|
meta?: Record<string, unknown>;
|
|
2834
3546
|
};
|
|
3547
|
+
/**
|
|
3548
|
+
* Get the caller's identity.
|
|
3549
|
+
*
|
|
3550
|
+
* Returns the identity of the principal the request is authenticated as: full name, email,
|
|
3551
|
+
* current company, role, and caller type (userType). For an x-api-key request
|
|
3552
|
+
* the identity returned is the key's owner (the key acts as the owner) and userType is
|
|
3553
|
+
* reported as apiuser; a hard-deleted (anonymized) profile is reported as
|
|
3554
|
+
* anonymous; every other caller is user. Fields resolved from the current
|
|
3555
|
+
* company/role (currentCompany, role) are null when no company context could
|
|
3556
|
+
* be resolved for the caller.
|
|
3557
|
+
*/
|
|
3558
|
+
declare const authWhoAmI: <ThrowOnError extends boolean = false>(options?: Options<AuthWhoAmIData, ThrowOnError>) => RequestResult<AuthWhoAmIResponses, AuthWhoAmIErrors, ThrowOnError>;
|
|
2835
3559
|
/**
|
|
2836
3560
|
* Creates a new solution (Engini admin only). The request's build manifest is compiled into a
|
|
2837
3561
|
* stored manifest, and the resulting solution is returned together with any build warnings.
|
|
@@ -2895,110 +3619,238 @@ declare const solutionsUpdateInstallation: <ThrowOnError extends boolean = false
|
|
|
2895
3619
|
*/
|
|
2896
3620
|
declare const solutionsUninstallSolution: <ThrowOnError extends boolean = false>(options: Options<SolutionsUninstallSolutionData, ThrowOnError>) => RequestResult<SolutionsUninstallSolutionResponses, SolutionsUninstallSolutionErrors, ThrowOnError>;
|
|
2897
3621
|
/**
|
|
2898
|
-
* List
|
|
3622
|
+
* List applications.
|
|
3623
|
+
*
|
|
3624
|
+
* Returns the applications the caller's account can browse, honoring the optional filters
|
|
3625
|
+
* and pagination. Set available=true to restrict results to applications the caller
|
|
3626
|
+
* can currently use - i.e. their connection requirement is already satisfied - otherwise the
|
|
3627
|
+
* full catalog is returned regardless of connection state. Account context is resolved from
|
|
3628
|
+
* the caller's authenticated account / API key.
|
|
2899
3629
|
*/
|
|
2900
3630
|
declare const applicationsListApplications: <ThrowOnError extends boolean = false>(options?: Options<ApplicationsListApplicationsData, ThrowOnError>) => RequestResult<ApplicationsListApplicationsResponses, ApplicationsListApplicationsErrors, ThrowOnError>;
|
|
2901
3631
|
/**
|
|
2902
|
-
* Get
|
|
3632
|
+
* Get an application.
|
|
3633
|
+
*
|
|
3634
|
+
* Fetches the full detail record for a single application by slug, including its connection
|
|
3635
|
+
* requirement and the authentication methods it supports. Returns 404 if no application
|
|
3636
|
+
* exists with the given slug for the caller's account.
|
|
2903
3637
|
*/
|
|
2904
3638
|
declare const applicationsGetApplication: <ThrowOnError extends boolean = false>(options: Options<ApplicationsGetApplicationData, ThrowOnError>) => RequestResult<ApplicationsGetApplicationResponses, ApplicationsGetApplicationErrors, ThrowOnError>;
|
|
2905
3639
|
/**
|
|
2906
|
-
* List
|
|
3640
|
+
* List connections.
|
|
3641
|
+
*
|
|
3642
|
+
* Returns the connections owned by the caller's account, honoring the optional filters
|
|
3643
|
+
* and pagination. top is silently clamped to the range 1-100 (default 25) and a
|
|
3644
|
+
* negative offset is treated as 0. The optional metadata filter matches on
|
|
3645
|
+
* the connection's stored metadata key/value pairs.
|
|
2907
3646
|
*/
|
|
2908
3647
|
declare const connectionsGetConnections: <ThrowOnError extends boolean = false>(options?: Options<ConnectionsGetConnectionsData, ThrowOnError>) => RequestResult<ConnectionsGetConnectionsResponses, ConnectionsGetConnectionsErrors, ThrowOnError>;
|
|
2909
3648
|
/**
|
|
2910
|
-
* Create a
|
|
3649
|
+
* Create a connection.
|
|
3650
|
+
*
|
|
3651
|
+
* Creates a new connection for the caller's account using the given field values (e.g.
|
|
3652
|
+
* API key, credentials) for the target application. authenticationId selects which
|
|
3653
|
+
* of the application's authentication methods to use; omit it to use the application's
|
|
3654
|
+
* default. To connect via OAuth instead of directly supplying credentials, use
|
|
3655
|
+
* POST /connections/get-sign-in-url followed by
|
|
3656
|
+
* GET /connections/access-token/{state}.
|
|
2911
3657
|
*/
|
|
2912
3658
|
declare const connectionsCreateConnection: <ThrowOnError extends boolean = false>(options: Options<ConnectionsCreateConnectionData, ThrowOnError>) => RequestResult<ConnectionsCreateConnectionResponses, ConnectionsCreateConnectionErrors, ThrowOnError>;
|
|
2913
3659
|
/**
|
|
2914
|
-
* Delete a connection
|
|
3660
|
+
* Delete a connection.
|
|
3661
|
+
*
|
|
3662
|
+
* Permanently deletes a connection owned by the caller's account. A public (shared)
|
|
3663
|
+
* connection cannot be deleted via this endpoint. Any toolsets referencing this
|
|
3664
|
+
* connection are updated as part of the deletion.
|
|
2915
3665
|
*/
|
|
2916
3666
|
declare const connectionsDeleteConnection: <ThrowOnError extends boolean = false>(options: Options<ConnectionsDeleteConnectionData, ThrowOnError>) => RequestResult<ConnectionsDeleteConnectionResponses, ConnectionsDeleteConnectionErrors, ThrowOnError>;
|
|
2917
3667
|
/**
|
|
2918
|
-
* Get
|
|
3668
|
+
* Get a connection.
|
|
3669
|
+
*
|
|
3670
|
+
* Fetches the full detail record for a single connection owned by the caller's account,
|
|
3671
|
+
* including its field values and metadata.
|
|
2919
3672
|
*/
|
|
2920
3673
|
declare const connectionsGetConnection: <ThrowOnError extends boolean = false>(options: Options<ConnectionsGetConnectionData, ThrowOnError>) => RequestResult<ConnectionsGetConnectionResponses, ConnectionsGetConnectionErrors, ThrowOnError>;
|
|
2921
3674
|
/**
|
|
2922
|
-
* Update
|
|
3675
|
+
* Update a connection.
|
|
3676
|
+
*
|
|
3677
|
+
* Updates a connection owned by the caller's account. Only the fields present in the
|
|
3678
|
+
* request body are changed; connectionName, description, fields, and
|
|
3679
|
+
* metadata are each left unchanged when omitted (null). Supplying fields or
|
|
3680
|
+
* metadata replaces the entire map, it does not merge with the existing one.
|
|
2923
3681
|
*/
|
|
2924
3682
|
declare const connectionsUpdateConnection: <ThrowOnError extends boolean = false>(options: Options<ConnectionsUpdateConnectionData, ThrowOnError>) => RequestResult<ConnectionsUpdateConnectionResponses, ConnectionsUpdateConnectionErrors, ThrowOnError>;
|
|
2925
3683
|
/**
|
|
2926
|
-
* List
|
|
3684
|
+
* List default connections.
|
|
3685
|
+
*
|
|
3686
|
+
* Returns the caller's default connections, one per application where a default is set.
|
|
3687
|
+
* Defaults drive implicit connection resolution everywhere a connection isn't explicitly
|
|
3688
|
+
* specified - e.g. POST /tools/{toolSlug}/execute without a connectionId or
|
|
3689
|
+
* toolsetId.
|
|
2927
3690
|
*/
|
|
2928
3691
|
declare const connectionsGetDefaultConnections: <ThrowOnError extends boolean = false>(options?: Options<ConnectionsGetDefaultConnectionsData, ThrowOnError>) => RequestResult<ConnectionsGetDefaultConnectionsResponses, ConnectionsGetDefaultConnectionsErrors, ThrowOnError>;
|
|
2929
3692
|
/**
|
|
2930
|
-
* Clear
|
|
3693
|
+
* Clear a default connection.
|
|
3694
|
+
*
|
|
3695
|
+
* Clears the default designation for the given connection. After this, implicit
|
|
3696
|
+
* connection resolution for that application falls back to the single-connection rule
|
|
3697
|
+
* (used automatically when exactly one connection exists) or otherwise requires an
|
|
3698
|
+
* explicit connectionId/toolsetId.
|
|
2931
3699
|
*/
|
|
2932
3700
|
declare const connectionsClearDefaultConnection: <ThrowOnError extends boolean = false>(options: Options<ConnectionsClearDefaultConnectionData, ThrowOnError>) => RequestResult<ConnectionsClearDefaultConnectionResponses, ConnectionsClearDefaultConnectionErrors, ThrowOnError>;
|
|
2933
3701
|
/**
|
|
2934
|
-
* Set
|
|
3702
|
+
* Set a default connection.
|
|
3703
|
+
*
|
|
3704
|
+
* Marks the given connection as the caller's default for its application, replacing any
|
|
3705
|
+
* previous default for that application. Subsequent calls that omit an explicit
|
|
3706
|
+
* connectionId/toolsetId resolve to this connection.
|
|
2935
3707
|
*/
|
|
2936
3708
|
declare const connectionsSetDefaultConnection: <ThrowOnError extends boolean = false>(options: Options<ConnectionsSetDefaultConnectionData, ThrowOnError>) => RequestResult<ConnectionsSetDefaultConnectionResponses, ConnectionsSetDefaultConnectionErrors, ThrowOnError>;
|
|
2937
3709
|
/**
|
|
2938
|
-
* Replace
|
|
3710
|
+
* Replace a connection.
|
|
3711
|
+
*
|
|
3712
|
+
* Repoints a specific workflow's usage from originalConnectionId to
|
|
3713
|
+
* newConnectionId. Both connections must belong to the caller's account; the
|
|
3714
|
+
* original connection itself is left intact and is not deleted by this call.
|
|
2939
3715
|
*/
|
|
2940
3716
|
declare const connectionsReplaceConnection: <ThrowOnError extends boolean = false>(options: Options<ConnectionsReplaceConnectionData, ThrowOnError>) => RequestResult<ConnectionsReplaceConnectionResponses, ConnectionsReplaceConnectionErrors, ThrowOnError>;
|
|
2941
3717
|
/**
|
|
2942
|
-
*
|
|
3718
|
+
* Refresh connection objects.
|
|
3719
|
+
*
|
|
3720
|
+
* Triggers an asynchronous refresh of the objects (e.g. tables, lists) the given
|
|
3721
|
+
* connection exposes. This returns immediately once the refresh is initiated; poll
|
|
3722
|
+
* GET /connections/{connectionId}/refresh-status to observe completion. A new
|
|
3723
|
+
* refresh cannot be started within 15 minutes of the previous one.
|
|
2943
3724
|
*/
|
|
2944
3725
|
declare const connectionsRefreshObjects: <ThrowOnError extends boolean = false>(options: Options<ConnectionsRefreshObjectsData, ThrowOnError>) => RequestResult<ConnectionsRefreshObjectsResponses, ConnectionsRefreshObjectsErrors, ThrowOnError>;
|
|
2945
3726
|
/**
|
|
2946
|
-
* Get the
|
|
3727
|
+
* Get the refresh status.
|
|
3728
|
+
*
|
|
3729
|
+
* Returns the status of the most recent object refresh triggered by
|
|
3730
|
+
* POST /connections/{connectionId}/refresh-objects for the given connection,
|
|
3731
|
+
* including whether it is still running, when it last completed, and any error.
|
|
2947
3732
|
*/
|
|
2948
3733
|
declare const connectionsGetRefreshStatus: <ThrowOnError extends boolean = false>(options: Options<ConnectionsGetRefreshStatusData, ThrowOnError>) => RequestResult<ConnectionsGetRefreshStatusResponses, ConnectionsGetRefreshStatusErrors, ThrowOnError>;
|
|
2949
3734
|
/**
|
|
2950
|
-
* Select
|
|
3735
|
+
* Select connection objects.
|
|
3736
|
+
*
|
|
3737
|
+
* Saves which objects (e.g. tables, lists) discovered on the given connection are active
|
|
3738
|
+
* - used where an application exposes more objects than are relevant, so the caller can
|
|
3739
|
+
* scope the connection down to the ones it needs. Replaces the entire selection; it does
|
|
3740
|
+
* not merge with the previous one.
|
|
2951
3741
|
*/
|
|
2952
3742
|
declare const connectionsSelectObjects: <ThrowOnError extends boolean = false>(options: Options<ConnectionsSelectObjectsData, ThrowOnError>) => RequestResult<ConnectionsSelectObjectsResponses, ConnectionsSelectObjectsErrors, ThrowOnError>;
|
|
2953
3743
|
/**
|
|
2954
|
-
* List
|
|
3744
|
+
* List connection objects.
|
|
3745
|
+
*
|
|
3746
|
+
* Returns the objects (e.g. tables, lists) discovered on the given connection, honoring
|
|
3747
|
+
* the optional name filter, sort expression, and pagination. top is silently
|
|
3748
|
+
* clamped to the range 1-1000 (default 100) and a negative offset is treated as 0.
|
|
3749
|
+
* Run POST /connections/{connectionId}/refresh-objects first if the connection's
|
|
3750
|
+
* objects have changed upstream.
|
|
2955
3751
|
*/
|
|
2956
3752
|
declare const connectionsGetConnectionObjects: <ThrowOnError extends boolean = false>(options: Options<ConnectionsGetConnectionObjectsData, ThrowOnError>) => RequestResult<ConnectionsGetConnectionObjectsResponses, ConnectionsGetConnectionObjectsErrors, ThrowOnError>;
|
|
2957
3753
|
/**
|
|
2958
|
-
*
|
|
3754
|
+
* Check a connection.
|
|
3755
|
+
*
|
|
3756
|
+
* Verifies that the given connection is valid and currently usable - e.g. its stored
|
|
3757
|
+
* credentials still authenticate against the target application. Returns a non-2xx error
|
|
3758
|
+
* if the connection is no longer healthy.
|
|
2959
3759
|
*/
|
|
2960
3760
|
declare const connectionsCheckConnection: <ThrowOnError extends boolean = false>(options: Options<ConnectionsCheckConnectionData, ThrowOnError>) => RequestResult<ConnectionsCheckConnectionResponses, ConnectionsCheckConnectionErrors, ThrowOnError>;
|
|
2961
3761
|
/**
|
|
2962
|
-
*
|
|
3762
|
+
* Get an OAuth sign-in URL.
|
|
3763
|
+
*
|
|
3764
|
+
* First half of the OAuth pairing with GET /connections/access-token/{state}.
|
|
3765
|
+
* Builds a sign-in URL for the given application and authentication method, along with a
|
|
3766
|
+
* freshly generated opaque state value. Redirect the end user to signInUrl to
|
|
3767
|
+
* authorize; once they complete the provider's consent screen, poll the access-token
|
|
3768
|
+
* endpoint with the same state to retrieve the resulting token data.
|
|
2963
3769
|
*/
|
|
2964
3770
|
declare const connectionsGetSignInUrl: <ThrowOnError extends boolean = false>(options: Options<ConnectionsGetSignInUrlData, ThrowOnError>) => RequestResult<ConnectionsGetSignInUrlResponses, ConnectionsGetSignInUrlErrors, ThrowOnError>;
|
|
2965
3771
|
/**
|
|
2966
|
-
*
|
|
3772
|
+
* Get the access token for a sign-in.
|
|
3773
|
+
*
|
|
3774
|
+
* Second half of the OAuth pairing with POST /connections/get-sign-in-url. Retrieves
|
|
3775
|
+
* the token data captured once the end user completes the sign-in flow for the given
|
|
3776
|
+
* state. Returns a null body if the flow hasn't completed yet - poll until a
|
|
3777
|
+
* non-null response is returned, then use tokenData/connectionData to
|
|
3778
|
+
* complete the connection.
|
|
2967
3779
|
*/
|
|
2968
3780
|
declare const connectionsGetAccessToken: <ThrowOnError extends boolean = false>(options: Options<ConnectionsGetAccessTokenData, ThrowOnError>) => RequestResult<ConnectionsGetAccessTokenResponses, ConnectionsGetAccessTokenErrors, ThrowOnError>;
|
|
2969
3781
|
/**
|
|
2970
|
-
* List
|
|
3782
|
+
* List tools.
|
|
3783
|
+
*
|
|
3784
|
+
* Returns the tools available to the caller across all applications, honoring the optional
|
|
3785
|
+
* filters and pagination. Set available=true to restrict results to tools the caller
|
|
3786
|
+
* can currently execute. Supplying toolsetId additionally includes the caller's
|
|
3787
|
+
* workflow-backed tools scoped to that toolset, alongside the standard activity tools.
|
|
3788
|
+
* Deprecated tools are excluded unless includeDeprecated=true.
|
|
2971
3789
|
*/
|
|
2972
3790
|
declare const toolsListTools: <ThrowOnError extends boolean = false>(options?: Options<ToolsListToolsData, ThrowOnError>) => RequestResult<ToolsListToolsResponses, ToolsListToolsErrors, ThrowOnError>;
|
|
2973
3791
|
/**
|
|
2974
|
-
* Get
|
|
3792
|
+
* Get a tool.
|
|
3793
|
+
*
|
|
3794
|
+
* Fetches the full detail for a single tool, identified by its slug, including its
|
|
3795
|
+
* input/output JSON schemas and execution capability flags (filters, sort, pagination).
|
|
3796
|
+
* Supply applicationSlug to disambiguate when the same tool slug exists under more
|
|
3797
|
+
* than one application. Supplying toolsetId additionally allows a workflow-backed tool
|
|
3798
|
+
* within that toolset to resolve by slug.
|
|
2975
3799
|
*/
|
|
2976
3800
|
declare const toolsGetTool: <ThrowOnError extends boolean = false>(options: Options<ToolsGetToolData, ThrowOnError>) => RequestResult<ToolsGetToolResponses, ToolsGetToolErrors, ThrowOnError>;
|
|
2977
3801
|
/**
|
|
2978
|
-
* Execute a tool.
|
|
2979
|
-
*
|
|
2980
|
-
*
|
|
2981
|
-
*
|
|
3802
|
+
* Execute a tool.
|
|
3803
|
+
*
|
|
3804
|
+
* Executes the named tool with the given input fields. The connection to use is resolved
|
|
3805
|
+
* implicitly: an explicit connectionId takes precedence, then toolsetId scopes
|
|
3806
|
+
* resolution to that toolset's connection for the tool's application, and otherwise the
|
|
3807
|
+
* caller's default connection for the application is used. Tool-runtime failures - the
|
|
3808
|
+
* downstream call itself failing - are reported as a 200 response with
|
|
3809
|
+
* isSuccess=false and an errorMessage, not as a 4xx/5xx, so callers must check
|
|
3810
|
+
* isSuccess even on a successful HTTP response. A 409 is returned only when no
|
|
3811
|
+
* connection can be resolved at all (no toolset connection for the app, or no default
|
|
3812
|
+
* connection configured); every other failure uses the standard error envelope.
|
|
2982
3813
|
*/
|
|
2983
3814
|
declare const toolsExecuteTool: <ThrowOnError extends boolean = false>(options: Options<ToolsExecuteToolData, ThrowOnError>) => RequestResult<ToolsExecuteToolResponses, ToolsExecuteToolErrors, ThrowOnError>;
|
|
2984
3815
|
/**
|
|
2985
|
-
* List
|
|
3816
|
+
* List toolsets.
|
|
3817
|
+
*
|
|
3818
|
+
* Returns the toolsets owned by the caller, paginated. top is silently clamped to
|
|
3819
|
+
* the range 1-100 and a negative offset is treated as 0.
|
|
2986
3820
|
*/
|
|
2987
3821
|
declare const toolsetsListToolsets: <ThrowOnError extends boolean = false>(options?: Options<ToolsetsListToolsetsData, ThrowOnError>) => RequestResult<ToolsetsListToolsetsResponses, ToolsetsListToolsetsErrors, ThrowOnError>;
|
|
2988
3822
|
/**
|
|
2989
|
-
* Create a
|
|
3823
|
+
* Create a toolset.
|
|
3824
|
+
*
|
|
3825
|
+
* Creates a new toolset owned by the caller, with the given connections (and their
|
|
3826
|
+
* permitted tool slugs) and workflows. A connection entry may omit connectionId and
|
|
3827
|
+
* instead supply applicationSlug or at least one tool slug, letting the caller's
|
|
3828
|
+
* default connection for that application be resolved and stored at save time.
|
|
2990
3829
|
*/
|
|
2991
3830
|
declare const toolsetsCreateToolset: <ThrowOnError extends boolean = false>(options: Options<ToolsetsCreateToolsetData, ThrowOnError>) => RequestResult<ToolsetsCreateToolsetResponses, ToolsetsCreateToolsetErrors, ThrowOnError>;
|
|
2992
3831
|
/**
|
|
2993
|
-
* Delete a toolset
|
|
3832
|
+
* Delete a toolset.
|
|
3833
|
+
*
|
|
3834
|
+
* Permanently deletes a toolset owned by the caller, including its connection and
|
|
3835
|
+
* workflow associations. This does not delete the underlying connections or workflows
|
|
3836
|
+
* themselves. Returns an error if the toolset does not exist.
|
|
2994
3837
|
*/
|
|
2995
3838
|
declare const toolsetsDeleteToolset: <ThrowOnError extends boolean = false>(options: Options<ToolsetsDeleteToolsetData, ThrowOnError>) => RequestResult<ToolsetsDeleteToolsetResponses, ToolsetsDeleteToolsetErrors, ThrowOnError>;
|
|
2996
3839
|
/**
|
|
2997
|
-
* Get a
|
|
3840
|
+
* Get a toolset.
|
|
3841
|
+
*
|
|
3842
|
+
* Fetches a single toolset by id, including its member connections (with their permitted
|
|
3843
|
+
* tools) and any included workflows. Returns an error if the toolset does not exist or is
|
|
3844
|
+
* not owned by the caller.
|
|
2998
3845
|
*/
|
|
2999
3846
|
declare const toolsetsGetToolset: <ThrowOnError extends boolean = false>(options: Options<ToolsetsGetToolsetData, ThrowOnError>) => RequestResult<ToolsetsGetToolsetResponses, ToolsetsGetToolsetErrors, ThrowOnError>;
|
|
3000
3847
|
/**
|
|
3001
|
-
* Update
|
|
3848
|
+
* Update a toolset.
|
|
3849
|
+
*
|
|
3850
|
+
* Updates a toolset owned by the caller. Only the fields present in the request body are
|
|
3851
|
+
* changed - name, connections, and workflows are each left unchanged
|
|
3852
|
+
* when omitted (null); supplying connections or workflows replaces the
|
|
3853
|
+
* entire set, it does not merge with the existing one.
|
|
3002
3854
|
*/
|
|
3003
3855
|
declare const toolsetsUpdateToolset: <ThrowOnError extends boolean = false>(options: Options<ToolsetsUpdateToolsetData, ThrowOnError>) => RequestResult<ToolsetsUpdateToolsetResponses, ToolsetsUpdateToolsetErrors, ThrowOnError>;
|
|
3004
3856
|
|
|
@@ -3023,4 +3875,4 @@ interface EnginiClientOptions {
|
|
|
3023
3875
|
*/
|
|
3024
3876
|
declare function createEnginiClient(options: EnginiClientOptions): Client;
|
|
3025
3877
|
|
|
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 };
|
|
3878
|
+
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 };
|