@epilot/blueprint-manifest-client 4.6.3 → 4.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/definition.js +1 -1
- package/dist/openapi-runtime.json +194 -1
- package/dist/openapi.d.ts +921 -23
- package/dist/openapi.json +1497 -151
- package/package.json +2 -2
package/dist/openapi.d.ts
CHANGED
|
@@ -51,11 +51,20 @@ declare namespace Components {
|
|
|
51
51
|
destination_org_id?: string;
|
|
52
52
|
destination_blueprint_id?: string;
|
|
53
53
|
triggered_at?: string; // date-time
|
|
54
|
+
/**
|
|
55
|
+
* User-provided note about this synchronization
|
|
56
|
+
*/
|
|
57
|
+
note?: string;
|
|
54
58
|
}[];
|
|
55
59
|
/**
|
|
56
60
|
* Whether the blueprint is verified by epilot
|
|
57
61
|
*/
|
|
58
62
|
is_verified?: boolean;
|
|
63
|
+
latest_verification?: LatestBlueprintVerification;
|
|
64
|
+
/**
|
|
65
|
+
* Resource addresses excluded during the latest install/update and ignored by verification.
|
|
66
|
+
*/
|
|
67
|
+
ignored_resource_addresses?: string[];
|
|
59
68
|
installation_status?: "IN_PROGRESS" | "CANCELED" | "PARTIAL" | "SUCCESS" | "FAILED";
|
|
60
69
|
created_at?: string; // date-time
|
|
61
70
|
updated_at?: string; // date-time
|
|
@@ -67,12 +76,12 @@ declare namespace Components {
|
|
|
67
76
|
* c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
|
|
68
77
|
*/
|
|
69
78
|
BlueprintJobID[];
|
|
70
|
-
|
|
71
|
-
* ID of
|
|
79
|
+
/**
|
|
80
|
+
* ID of the blueprint that brought this blueprint to the destination org (deployed or installed)
|
|
72
81
|
* example:
|
|
73
82
|
* c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
|
|
74
83
|
*/
|
|
75
|
-
|
|
84
|
+
source_blueprint_id?: string;
|
|
76
85
|
/**
|
|
77
86
|
* Whether the blueprint is archived (soft-deleted). Archived blueprints are hidden from the main list.
|
|
78
87
|
*/
|
|
@@ -180,7 +189,7 @@ declare namespace Components {
|
|
|
180
189
|
* Blueprint slug for marketplace blueprints
|
|
181
190
|
*/
|
|
182
191
|
slug?: string;
|
|
183
|
-
status?: "IN_PROGRESS" | "WAITING_USER_ACTION" | "CANCELED" | "SUCCESS" | "FAILED";
|
|
192
|
+
status?: "IN_PROGRESS" | "WAITING_USER_ACTION" | "CANCELED" | "SUCCESS" | "PARTIAL_SUCCESS" | "FAILED";
|
|
184
193
|
}
|
|
185
194
|
export interface BlueprintInstallationJobOptions {
|
|
186
195
|
/**
|
|
@@ -188,7 +197,7 @@ declare namespace Components {
|
|
|
188
197
|
*/
|
|
189
198
|
resources_to_ignore?: string[];
|
|
190
199
|
}
|
|
191
|
-
export type BlueprintJob = BlueprintExportJob | BlueprintInstallationJob | BlueprintDependenciesSyncJob | BlueprintValidateJob;
|
|
200
|
+
export type BlueprintJob = BlueprintExportJob | BlueprintInstallationJob | BlueprintDependenciesSyncJob | BlueprintValidateJob | BlueprintVerificationJob;
|
|
192
201
|
export interface BlueprintJobEvent {
|
|
193
202
|
timestamp?: string; // date-time
|
|
194
203
|
message?: string;
|
|
@@ -242,6 +251,10 @@ declare namespace Components {
|
|
|
242
251
|
is_verified: boolean;
|
|
243
252
|
docs_url?: string;
|
|
244
253
|
recommended_apps?: string[];
|
|
254
|
+
required_features?: {
|
|
255
|
+
enabled?: string[];
|
|
256
|
+
disabled?: string[];
|
|
257
|
+
};
|
|
245
258
|
created_at: string; // date-time
|
|
246
259
|
created_by: CallerIdentity;
|
|
247
260
|
/**
|
|
@@ -328,6 +341,38 @@ declare namespace Components {
|
|
|
328
341
|
*/
|
|
329
342
|
errors?: FormattedError[];
|
|
330
343
|
}
|
|
344
|
+
export interface BlueprintVerificationJob {
|
|
345
|
+
id?: /**
|
|
346
|
+
* ID of a job
|
|
347
|
+
* example:
|
|
348
|
+
* c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
|
|
349
|
+
*/
|
|
350
|
+
BlueprintJobID;
|
|
351
|
+
events?: BlueprintJobEvent[];
|
|
352
|
+
triggered_at?: string; // date-time
|
|
353
|
+
created_by?: CallerIdentity;
|
|
354
|
+
source_org_id?: string;
|
|
355
|
+
source_blueprint_id?: /**
|
|
356
|
+
* ID of a blueprint
|
|
357
|
+
* example:
|
|
358
|
+
* c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
|
|
359
|
+
*/
|
|
360
|
+
BlueprintID;
|
|
361
|
+
destination_org_id?: string;
|
|
362
|
+
destination_blueprint_id?: /**
|
|
363
|
+
* ID of a blueprint
|
|
364
|
+
* example:
|
|
365
|
+
* c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
|
|
366
|
+
*/
|
|
367
|
+
BlueprintID;
|
|
368
|
+
status?: "IN_PROGRESS" | "SUCCESS" | "FAILED";
|
|
369
|
+
summary?: VerificationSummary;
|
|
370
|
+
resource_results?: ResourceVerificationResult[];
|
|
371
|
+
/**
|
|
372
|
+
* S3 key for detailed results when too large for inline storage.
|
|
373
|
+
*/
|
|
374
|
+
resource_results_s3_key?: string;
|
|
375
|
+
}
|
|
331
376
|
export interface CallerIdentity {
|
|
332
377
|
/**
|
|
333
378
|
* a human readable name of the caller (e.g. user name, token name or email address)
|
|
@@ -386,11 +431,20 @@ declare namespace Components {
|
|
|
386
431
|
destination_org_id?: string;
|
|
387
432
|
destination_blueprint_id?: string;
|
|
388
433
|
triggered_at?: string; // date-time
|
|
434
|
+
/**
|
|
435
|
+
* User-provided note about this synchronization
|
|
436
|
+
*/
|
|
437
|
+
note?: string;
|
|
389
438
|
}[];
|
|
390
439
|
/**
|
|
391
440
|
* Whether the blueprint is verified by epilot
|
|
392
441
|
*/
|
|
393
442
|
is_verified?: boolean;
|
|
443
|
+
latest_verification?: LatestBlueprintVerification;
|
|
444
|
+
/**
|
|
445
|
+
* Resource addresses excluded during the latest install/update and ignored by verification.
|
|
446
|
+
*/
|
|
447
|
+
ignored_resource_addresses?: string[];
|
|
394
448
|
installation_status?: "IN_PROGRESS" | "CANCELED" | "PARTIAL" | "SUCCESS" | "FAILED";
|
|
395
449
|
created_at?: string; // date-time
|
|
396
450
|
updated_at?: string; // date-time
|
|
@@ -404,13 +458,10 @@ declare namespace Components {
|
|
|
404
458
|
BlueprintJobID[];
|
|
405
459
|
/**
|
|
406
460
|
* ID of the blueprint that brought this blueprint to the destination org (deployed or installed)
|
|
407
|
-
*/
|
|
408
|
-
source_blueprint_id?: /**
|
|
409
|
-
* ID of a blueprint
|
|
410
461
|
* example:
|
|
411
462
|
* c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
|
|
412
463
|
*/
|
|
413
|
-
|
|
464
|
+
source_blueprint_id?: string;
|
|
414
465
|
/**
|
|
415
466
|
* Whether the blueprint is archived (soft-deleted). Archived blueprints are hidden from the main list.
|
|
416
467
|
*/
|
|
@@ -659,11 +710,20 @@ declare namespace Components {
|
|
|
659
710
|
destination_org_id?: string;
|
|
660
711
|
destination_blueprint_id?: string;
|
|
661
712
|
triggered_at?: string; // date-time
|
|
713
|
+
/**
|
|
714
|
+
* User-provided note about this synchronization
|
|
715
|
+
*/
|
|
716
|
+
note?: string;
|
|
662
717
|
}[];
|
|
663
718
|
/**
|
|
664
719
|
* Whether the blueprint is verified by epilot
|
|
665
720
|
*/
|
|
666
721
|
is_verified?: boolean;
|
|
722
|
+
latest_verification?: LatestBlueprintVerification;
|
|
723
|
+
/**
|
|
724
|
+
* Resource addresses excluded during the latest install/update and ignored by verification.
|
|
725
|
+
*/
|
|
726
|
+
ignored_resource_addresses?: string[];
|
|
667
727
|
installation_status?: "IN_PROGRESS" | "CANCELED" | "PARTIAL" | "SUCCESS" | "FAILED";
|
|
668
728
|
created_at?: string; // date-time
|
|
669
729
|
updated_at?: string; // date-time
|
|
@@ -675,12 +735,12 @@ declare namespace Components {
|
|
|
675
735
|
* c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
|
|
676
736
|
*/
|
|
677
737
|
BlueprintJobID[];
|
|
678
|
-
|
|
679
|
-
* ID of
|
|
738
|
+
/**
|
|
739
|
+
* ID of the blueprint that brought this blueprint to the destination org (deployed or installed)
|
|
680
740
|
* example:
|
|
681
741
|
* c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
|
|
682
742
|
*/
|
|
683
|
-
|
|
743
|
+
source_blueprint_id?: string;
|
|
684
744
|
/**
|
|
685
745
|
* Whether the blueprint is archived (soft-deleted). Archived blueprints are hidden from the main list.
|
|
686
746
|
*/
|
|
@@ -745,11 +805,20 @@ declare namespace Components {
|
|
|
745
805
|
destination_org_id?: string;
|
|
746
806
|
destination_blueprint_id?: string;
|
|
747
807
|
triggered_at?: string; // date-time
|
|
808
|
+
/**
|
|
809
|
+
* User-provided note about this synchronization
|
|
810
|
+
*/
|
|
811
|
+
note?: string;
|
|
748
812
|
}[];
|
|
749
813
|
/**
|
|
750
814
|
* Whether the blueprint is verified by epilot
|
|
751
815
|
*/
|
|
752
816
|
is_verified?: boolean;
|
|
817
|
+
latest_verification?: LatestBlueprintVerification;
|
|
818
|
+
/**
|
|
819
|
+
* Resource addresses excluded during the latest install/update and ignored by verification.
|
|
820
|
+
*/
|
|
821
|
+
ignored_resource_addresses?: string[];
|
|
753
822
|
installation_status?: "IN_PROGRESS" | "CANCELED" | "PARTIAL" | "SUCCESS" | "FAILED";
|
|
754
823
|
created_at?: string; // date-time
|
|
755
824
|
updated_at?: string; // date-time
|
|
@@ -761,12 +830,12 @@ declare namespace Components {
|
|
|
761
830
|
* c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
|
|
762
831
|
*/
|
|
763
832
|
BlueprintJobID[];
|
|
764
|
-
|
|
765
|
-
* ID of
|
|
833
|
+
/**
|
|
834
|
+
* ID of the blueprint that brought this blueprint to the destination org (deployed or installed)
|
|
766
835
|
* example:
|
|
767
836
|
* c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
|
|
768
837
|
*/
|
|
769
|
-
|
|
838
|
+
source_blueprint_id?: string;
|
|
770
839
|
/**
|
|
771
840
|
* Whether the blueprint is archived (soft-deleted). Archived blueprints are hidden from the main list.
|
|
772
841
|
*/
|
|
@@ -799,6 +868,15 @@ declare namespace Components {
|
|
|
799
868
|
source_type: "deploy";
|
|
800
869
|
resources?: BlueprintResource[];
|
|
801
870
|
}
|
|
871
|
+
export interface FieldDiff {
|
|
872
|
+
/**
|
|
873
|
+
* JSON path to the differing field (e.g. "steps[2].name")
|
|
874
|
+
*/
|
|
875
|
+
path?: string;
|
|
876
|
+
source_value?: any;
|
|
877
|
+
destination_value?: any;
|
|
878
|
+
diff_type?: "value_changed" | "field_missing_in_destination" | "field_missing_in_source" | "type_mismatch";
|
|
879
|
+
}
|
|
802
880
|
export interface FileBlueprint {
|
|
803
881
|
id?: /**
|
|
804
882
|
* ID of a blueprint
|
|
@@ -831,11 +909,20 @@ declare namespace Components {
|
|
|
831
909
|
destination_org_id?: string;
|
|
832
910
|
destination_blueprint_id?: string;
|
|
833
911
|
triggered_at?: string; // date-time
|
|
912
|
+
/**
|
|
913
|
+
* User-provided note about this synchronization
|
|
914
|
+
*/
|
|
915
|
+
note?: string;
|
|
834
916
|
}[];
|
|
835
917
|
/**
|
|
836
918
|
* Whether the blueprint is verified by epilot
|
|
837
919
|
*/
|
|
838
920
|
is_verified?: boolean;
|
|
921
|
+
latest_verification?: LatestBlueprintVerification;
|
|
922
|
+
/**
|
|
923
|
+
* Resource addresses excluded during the latest install/update and ignored by verification.
|
|
924
|
+
*/
|
|
925
|
+
ignored_resource_addresses?: string[];
|
|
839
926
|
installation_status?: "IN_PROGRESS" | "CANCELED" | "PARTIAL" | "SUCCESS" | "FAILED";
|
|
840
927
|
created_at?: string; // date-time
|
|
841
928
|
updated_at?: string; // date-time
|
|
@@ -847,12 +934,12 @@ declare namespace Components {
|
|
|
847
934
|
* c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
|
|
848
935
|
*/
|
|
849
936
|
BlueprintJobID[];
|
|
850
|
-
|
|
851
|
-
* ID of
|
|
937
|
+
/**
|
|
938
|
+
* ID of the blueprint that brought this blueprint to the destination org (deployed or installed)
|
|
852
939
|
* example:
|
|
853
940
|
* c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
|
|
854
941
|
*/
|
|
855
|
-
|
|
942
|
+
source_blueprint_id?: string;
|
|
856
943
|
/**
|
|
857
944
|
* Whether the blueprint is archived (soft-deleted). Archived blueprints are hidden from the main list.
|
|
858
945
|
*/
|
|
@@ -1140,7 +1227,46 @@ declare namespace Components {
|
|
|
1140
1227
|
* 4854bb2a-94f9-424d-a968-3fb17fb0bf89
|
|
1141
1228
|
*/
|
|
1142
1229
|
export type JobID = string;
|
|
1143
|
-
export type JobStatus = "PENDING" | "STARTED" | "WAITING_USER_ACTION" | "CANCELED" | "IN_PROGRESS" | "SUCCESS" | "FAILED";
|
|
1230
|
+
export type JobStatus = "PENDING" | "STARTED" | "WAITING_USER_ACTION" | "CANCELED" | "IN_PROGRESS" | "SUCCESS" | "PARTIAL_SUCCESS" | "FAILED";
|
|
1231
|
+
export interface LatestBlueprintVerification {
|
|
1232
|
+
job_id?: /**
|
|
1233
|
+
* ID of a job
|
|
1234
|
+
* example:
|
|
1235
|
+
* c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
|
|
1236
|
+
*/
|
|
1237
|
+
BlueprintJobID;
|
|
1238
|
+
status?: "IN_PROGRESS" | "SUCCESS" | "FAILED";
|
|
1239
|
+
triggered_at?: string; // date-time
|
|
1240
|
+
source_org_id?: string;
|
|
1241
|
+
source_blueprint_id?: /**
|
|
1242
|
+
* ID of a blueprint
|
|
1243
|
+
* example:
|
|
1244
|
+
* c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
|
|
1245
|
+
*/
|
|
1246
|
+
BlueprintID;
|
|
1247
|
+
destination_org_id?: string;
|
|
1248
|
+
destination_blueprint_id?: /**
|
|
1249
|
+
* ID of a blueprint
|
|
1250
|
+
* example:
|
|
1251
|
+
* c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
|
|
1252
|
+
*/
|
|
1253
|
+
BlueprintID;
|
|
1254
|
+
summary?: VerificationSummary;
|
|
1255
|
+
}
|
|
1256
|
+
export interface LineageEntry {
|
|
1257
|
+
/**
|
|
1258
|
+
* Immutable resource identity across orgs
|
|
1259
|
+
*/
|
|
1260
|
+
lineage_id?: string;
|
|
1261
|
+
/**
|
|
1262
|
+
* Resource ID in the destination org
|
|
1263
|
+
*/
|
|
1264
|
+
target_id?: string;
|
|
1265
|
+
resource_type?: /* Type of the resource */ ResourceNodeType;
|
|
1266
|
+
blueprint_instance_ids?: string[];
|
|
1267
|
+
fidelity?: "full" | "partial";
|
|
1268
|
+
last_synced_at?: string; // date-time
|
|
1269
|
+
}
|
|
1144
1270
|
export interface Manifest {
|
|
1145
1271
|
import_job_id?: /**
|
|
1146
1272
|
* ID of an import or export job (state machine)
|
|
@@ -1486,11 +1612,20 @@ declare namespace Components {
|
|
|
1486
1612
|
destination_org_id?: string;
|
|
1487
1613
|
destination_blueprint_id?: string;
|
|
1488
1614
|
triggered_at?: string; // date-time
|
|
1615
|
+
/**
|
|
1616
|
+
* User-provided note about this synchronization
|
|
1617
|
+
*/
|
|
1618
|
+
note?: string;
|
|
1489
1619
|
}[];
|
|
1490
1620
|
/**
|
|
1491
1621
|
* Whether the blueprint is verified by epilot
|
|
1492
1622
|
*/
|
|
1493
1623
|
is_verified?: boolean;
|
|
1624
|
+
latest_verification?: LatestBlueprintVerification;
|
|
1625
|
+
/**
|
|
1626
|
+
* Resource addresses excluded during the latest install/update and ignored by verification.
|
|
1627
|
+
*/
|
|
1628
|
+
ignored_resource_addresses?: string[];
|
|
1494
1629
|
installation_status?: "IN_PROGRESS" | "CANCELED" | "PARTIAL" | "SUCCESS" | "FAILED";
|
|
1495
1630
|
created_at?: string; // date-time
|
|
1496
1631
|
updated_at?: string; // date-time
|
|
@@ -1502,12 +1637,12 @@ declare namespace Components {
|
|
|
1502
1637
|
* c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
|
|
1503
1638
|
*/
|
|
1504
1639
|
BlueprintJobID[];
|
|
1505
|
-
|
|
1506
|
-
* ID of
|
|
1640
|
+
/**
|
|
1641
|
+
* ID of the blueprint that brought this blueprint to the destination org (deployed or installed)
|
|
1507
1642
|
* example:
|
|
1508
1643
|
* c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
|
|
1509
1644
|
*/
|
|
1510
|
-
|
|
1645
|
+
source_blueprint_id?: string;
|
|
1511
1646
|
/**
|
|
1512
1647
|
* Whether the blueprint is archived (soft-deleted). Archived blueprints are hidden from the main list.
|
|
1513
1648
|
*/
|
|
@@ -1554,6 +1689,98 @@ declare namespace Components {
|
|
|
1554
1689
|
*/
|
|
1555
1690
|
installation_link?: string;
|
|
1556
1691
|
}
|
|
1692
|
+
export interface MarketplaceListing {
|
|
1693
|
+
id: string; // uuid
|
|
1694
|
+
blueprint_id: string;
|
|
1695
|
+
name: string;
|
|
1696
|
+
slug: string;
|
|
1697
|
+
logo?: string | null;
|
|
1698
|
+
documentation_url?: string | null;
|
|
1699
|
+
pricing_type?: "free" | "paid" | "freemium" | "contact_us";
|
|
1700
|
+
support_email?: string | null;
|
|
1701
|
+
portal_description?: string | null;
|
|
1702
|
+
teaser_name?: string | null;
|
|
1703
|
+
teaser_short_description?: string | null;
|
|
1704
|
+
teaser_thumbnail?: string | null;
|
|
1705
|
+
details_page_title?: string | null;
|
|
1706
|
+
details_page_description?: string | null;
|
|
1707
|
+
details_page_hero_image?: string | null;
|
|
1708
|
+
details_page_carousel?: string[] | null;
|
|
1709
|
+
resources_section_description?: string | null;
|
|
1710
|
+
resources_section_benefits_title?: string | null;
|
|
1711
|
+
resources_section_benefits_list?: string | null;
|
|
1712
|
+
resources_section_process_details?: string | null;
|
|
1713
|
+
partner?: string | null;
|
|
1714
|
+
partner_subtext?: string | null;
|
|
1715
|
+
partner_logo?: string | null;
|
|
1716
|
+
partner_website_link?: string | null;
|
|
1717
|
+
last_updated_on?: string | null;
|
|
1718
|
+
requires_customer_portal?: boolean | null;
|
|
1719
|
+
process_details_section_title?: string | null;
|
|
1720
|
+
is_new_blueprint?: boolean | null;
|
|
1721
|
+
available_in?: string | null;
|
|
1722
|
+
testimonials?: string[] | null;
|
|
1723
|
+
installation_link?: string | null;
|
|
1724
|
+
installation_slug?: string | null;
|
|
1725
|
+
demo_form_link?: string | null;
|
|
1726
|
+
order?: number | null;
|
|
1727
|
+
categories?: string[] | null;
|
|
1728
|
+
main_category?: string[] | null;
|
|
1729
|
+
status: "draft" | "live" | "archived";
|
|
1730
|
+
created_at?: string; // date-time
|
|
1731
|
+
updated_at?: string; // date-time
|
|
1732
|
+
}
|
|
1733
|
+
export interface MarketplaceListingUpdate {
|
|
1734
|
+
name?: string;
|
|
1735
|
+
slug?: string;
|
|
1736
|
+
logo?: string | null;
|
|
1737
|
+
documentation_url?: string | null;
|
|
1738
|
+
pricing_type?: "free" | "paid" | "freemium" | "contact_us";
|
|
1739
|
+
support_email?: string | null;
|
|
1740
|
+
portal_description?: string | null;
|
|
1741
|
+
teaser_name?: string | null;
|
|
1742
|
+
teaser_short_description?: string | null;
|
|
1743
|
+
teaser_thumbnail?: string | null;
|
|
1744
|
+
details_page_title?: string | null;
|
|
1745
|
+
details_page_description?: string | null;
|
|
1746
|
+
details_page_hero_image?: string | null;
|
|
1747
|
+
details_page_carousel?: string[] | null;
|
|
1748
|
+
resources_section_description?: string | null;
|
|
1749
|
+
resources_section_benefits_title?: string | null;
|
|
1750
|
+
resources_section_benefits_list?: string | null;
|
|
1751
|
+
resources_section_process_details?: string | null;
|
|
1752
|
+
partner?: string | null;
|
|
1753
|
+
partner_subtext?: string | null;
|
|
1754
|
+
partner_logo?: string | null;
|
|
1755
|
+
partner_website_link?: string | null;
|
|
1756
|
+
last_updated_on?: string | null;
|
|
1757
|
+
requires_customer_portal?: boolean | null;
|
|
1758
|
+
process_details_section_title?: string | null;
|
|
1759
|
+
is_new_blueprint?: boolean | null;
|
|
1760
|
+
available_in?: string | null;
|
|
1761
|
+
testimonials?: string[] | null;
|
|
1762
|
+
installation_link?: string | null;
|
|
1763
|
+
installation_slug?: string | null;
|
|
1764
|
+
demo_form_link?: string | null;
|
|
1765
|
+
order?: number | null;
|
|
1766
|
+
categories?: string[] | null;
|
|
1767
|
+
main_category?: string[] | null;
|
|
1768
|
+
}
|
|
1769
|
+
export interface MarketplaceListingVersion {
|
|
1770
|
+
id: string; // uuid
|
|
1771
|
+
listing_id: string;
|
|
1772
|
+
status: "draft" | "published" | "archived";
|
|
1773
|
+
version_name?: string | null;
|
|
1774
|
+
draft_label: string;
|
|
1775
|
+
update_note?: string | null;
|
|
1776
|
+
resources?: {
|
|
1777
|
+
[key: string]: any;
|
|
1778
|
+
}[] | null;
|
|
1779
|
+
required_features?: string[] | null;
|
|
1780
|
+
recommended_apps?: string[] | null;
|
|
1781
|
+
created_at: string; // date-time
|
|
1782
|
+
published_at?: string | null; // date-time
|
|
1783
|
+
}
|
|
1557
1784
|
export type PlanChanges = ("create" | "update" | "internal-update" | "no-op" | "delete" | "ignored")[];
|
|
1558
1785
|
/**
|
|
1559
1786
|
* List of feature settings that must be enabled before installing the blueprint
|
|
@@ -1630,7 +1857,7 @@ declare namespace Components {
|
|
|
1630
1857
|
/**
|
|
1631
1858
|
* Type of the resource
|
|
1632
1859
|
*/
|
|
1633
|
-
export type ResourceNodeType = "designbuilder" | "journey" | "product" | "price" | "product_recommendation" | "coupon" | "tax" | "automation_flow" | "entity_mapping" | "file" | "emailtemplate" | "schema" | "schema_attribute" | "schema_capability" | "schema_group" | "schema_group_headline" | "workflow_definition" | "closing_reason" | "taxonomy_classification" | "webhook" | "integration" | "dashboard" | "custom_variable" | "usergroup" | "saved_view" | "app" | "role" | "portal_config" | "target" | "kanban" | "validation_rule" | "flow_template" | "taxonomy" | "notification_template";
|
|
1860
|
+
export type ResourceNodeType = "designbuilder" | "journey" | "product" | "price" | "product_recommendation" | "coupon" | "tax" | "automation_flow" | "entity_mapping" | "file" | "emailtemplate" | "schema" | "schema_attribute" | "schema_capability" | "schema_group" | "schema_group_headline" | "workflow_definition" | "closing_reason" | "taxonomy_classification" | "webhook" | "integration" | "dashboard" | "custom_variable" | "usergroup" | "saved_view" | "app" | "role" | "portal_config" | "target" | "kanban" | "validation_rule" | "flow_template" | "taxonomy" | "notification_template" | "environment_variable";
|
|
1634
1861
|
export interface ResourceReplacement {
|
|
1635
1862
|
/**
|
|
1636
1863
|
* Original resource ID to be replaced
|
|
@@ -1645,6 +1872,15 @@ declare namespace Components {
|
|
|
1645
1872
|
*/
|
|
1646
1873
|
replacementName?: string;
|
|
1647
1874
|
}
|
|
1875
|
+
export interface ResourceVerificationResult {
|
|
1876
|
+
resource_type?: /* Type of the resource */ ResourceNodeType;
|
|
1877
|
+
resource_name?: string;
|
|
1878
|
+
source_resource_id?: string;
|
|
1879
|
+
destination_resource_id?: string;
|
|
1880
|
+
status?: "matched" | "mismatched" | "missing_in_destination" | "fetch_error";
|
|
1881
|
+
field_diffs?: FieldDiff[];
|
|
1882
|
+
error?: string;
|
|
1883
|
+
}
|
|
1648
1884
|
export interface RootResourceNode {
|
|
1649
1885
|
/**
|
|
1650
1886
|
* ID of the resource
|
|
@@ -1711,6 +1947,13 @@ declare namespace Components {
|
|
|
1711
1947
|
*/
|
|
1712
1948
|
filename: string;
|
|
1713
1949
|
}
|
|
1950
|
+
export interface VerificationSummary {
|
|
1951
|
+
total_resources?: number;
|
|
1952
|
+
matched?: number;
|
|
1953
|
+
mismatched?: number;
|
|
1954
|
+
missing_in_destination?: number;
|
|
1955
|
+
fetch_errors?: number;
|
|
1956
|
+
}
|
|
1714
1957
|
export interface VirtualResourceNodeGroup {
|
|
1715
1958
|
/**
|
|
1716
1959
|
* ID of the resource
|
|
@@ -1943,6 +2186,36 @@ declare namespace Paths {
|
|
|
1943
2186
|
}
|
|
1944
2187
|
}
|
|
1945
2188
|
}
|
|
2189
|
+
namespace CreateMarketplaceListing {
|
|
2190
|
+
namespace Parameters {
|
|
2191
|
+
export type BlueprintId = string;
|
|
2192
|
+
}
|
|
2193
|
+
export interface PathParameters {
|
|
2194
|
+
blueprint_id: Parameters.BlueprintId;
|
|
2195
|
+
}
|
|
2196
|
+
export interface RequestBody {
|
|
2197
|
+
name: string;
|
|
2198
|
+
slug?: string;
|
|
2199
|
+
}
|
|
2200
|
+
namespace Responses {
|
|
2201
|
+
export type $201 = Components.Schemas.MarketplaceListing;
|
|
2202
|
+
export interface $409 {
|
|
2203
|
+
}
|
|
2204
|
+
}
|
|
2205
|
+
}
|
|
2206
|
+
namespace CreateMarketplaceListingVersion {
|
|
2207
|
+
namespace Parameters {
|
|
2208
|
+
export type ListingId = string;
|
|
2209
|
+
}
|
|
2210
|
+
export interface PathParameters {
|
|
2211
|
+
listing_id: Parameters.ListingId;
|
|
2212
|
+
}
|
|
2213
|
+
namespace Responses {
|
|
2214
|
+
export type $201 = Components.Schemas.MarketplaceListingVersion;
|
|
2215
|
+
export interface $404 {
|
|
2216
|
+
}
|
|
2217
|
+
}
|
|
2218
|
+
}
|
|
1946
2219
|
namespace CreatePlan {
|
|
1947
2220
|
export type RequestBody = {
|
|
1948
2221
|
/**
|
|
@@ -2091,6 +2364,20 @@ declare namespace Paths {
|
|
|
2091
2364
|
export type $200 = Components.Schemas.Manifest;
|
|
2092
2365
|
}
|
|
2093
2366
|
}
|
|
2367
|
+
namespace DeleteMarketplaceListing {
|
|
2368
|
+
namespace Parameters {
|
|
2369
|
+
export type ListingId = string;
|
|
2370
|
+
}
|
|
2371
|
+
export interface PathParameters {
|
|
2372
|
+
listing_id: Parameters.ListingId;
|
|
2373
|
+
}
|
|
2374
|
+
namespace Responses {
|
|
2375
|
+
export interface $204 {
|
|
2376
|
+
}
|
|
2377
|
+
export interface $404 {
|
|
2378
|
+
}
|
|
2379
|
+
}
|
|
2380
|
+
}
|
|
2094
2381
|
namespace ExportBlueprint {
|
|
2095
2382
|
namespace Parameters {
|
|
2096
2383
|
export type BlueprintId = /**
|
|
@@ -2232,6 +2519,25 @@ declare namespace Paths {
|
|
|
2232
2519
|
export type $200 = Components.Schemas.BlueprintJob;
|
|
2233
2520
|
}
|
|
2234
2521
|
}
|
|
2522
|
+
namespace GetBlueprintLineageV3 {
|
|
2523
|
+
namespace Parameters {
|
|
2524
|
+
export type BlueprintId = /**
|
|
2525
|
+
* ID of a blueprint
|
|
2526
|
+
* example:
|
|
2527
|
+
* c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
|
|
2528
|
+
*/
|
|
2529
|
+
Components.Schemas.BlueprintID;
|
|
2530
|
+
}
|
|
2531
|
+
export interface PathParameters {
|
|
2532
|
+
blueprint_id: Parameters.BlueprintId;
|
|
2533
|
+
}
|
|
2534
|
+
namespace Responses {
|
|
2535
|
+
export interface $200 {
|
|
2536
|
+
total?: number;
|
|
2537
|
+
entries?: Components.Schemas.LineageEntry[];
|
|
2538
|
+
}
|
|
2539
|
+
}
|
|
2540
|
+
}
|
|
2235
2541
|
namespace GetBlueprintPreview {
|
|
2236
2542
|
namespace Parameters {
|
|
2237
2543
|
export type PreviewId = string;
|
|
@@ -2277,6 +2583,116 @@ declare namespace Paths {
|
|
|
2277
2583
|
export type $200 = Components.Schemas.Manifest;
|
|
2278
2584
|
}
|
|
2279
2585
|
}
|
|
2586
|
+
namespace GetMarketplaceListing {
|
|
2587
|
+
namespace Parameters {
|
|
2588
|
+
export type BlueprintId = string;
|
|
2589
|
+
}
|
|
2590
|
+
export interface PathParameters {
|
|
2591
|
+
blueprint_id: Parameters.BlueprintId;
|
|
2592
|
+
}
|
|
2593
|
+
namespace Responses {
|
|
2594
|
+
export interface $200 {
|
|
2595
|
+
id: string; // uuid
|
|
2596
|
+
blueprint_id: string;
|
|
2597
|
+
name: string;
|
|
2598
|
+
slug: string;
|
|
2599
|
+
logo?: string | null;
|
|
2600
|
+
documentation_url?: string | null;
|
|
2601
|
+
pricing_type?: "free" | "paid" | "freemium" | "contact_us";
|
|
2602
|
+
support_email?: string | null;
|
|
2603
|
+
portal_description?: string | null;
|
|
2604
|
+
teaser_name?: string | null;
|
|
2605
|
+
teaser_short_description?: string | null;
|
|
2606
|
+
teaser_thumbnail?: string | null;
|
|
2607
|
+
details_page_title?: string | null;
|
|
2608
|
+
details_page_description?: string | null;
|
|
2609
|
+
details_page_hero_image?: string | null;
|
|
2610
|
+
details_page_carousel?: string[] | null;
|
|
2611
|
+
resources_section_description?: string | null;
|
|
2612
|
+
resources_section_benefits_title?: string | null;
|
|
2613
|
+
resources_section_benefits_list?: string | null;
|
|
2614
|
+
resources_section_process_details?: string | null;
|
|
2615
|
+
partner?: string | null;
|
|
2616
|
+
partner_subtext?: string | null;
|
|
2617
|
+
partner_logo?: string | null;
|
|
2618
|
+
partner_website_link?: string | null;
|
|
2619
|
+
last_updated_on?: string | null;
|
|
2620
|
+
requires_customer_portal?: boolean | null;
|
|
2621
|
+
process_details_section_title?: string | null;
|
|
2622
|
+
is_new_blueprint?: boolean | null;
|
|
2623
|
+
available_in?: string | null;
|
|
2624
|
+
testimonials?: string[] | null;
|
|
2625
|
+
installation_link?: string | null;
|
|
2626
|
+
installation_slug?: string | null;
|
|
2627
|
+
demo_form_link?: string | null;
|
|
2628
|
+
order?: number | null;
|
|
2629
|
+
categories?: string[] | null;
|
|
2630
|
+
main_category?: string[] | null;
|
|
2631
|
+
status: "draft" | "live" | "archived";
|
|
2632
|
+
created_at?: string; // date-time
|
|
2633
|
+
updated_at?: string; // date-time
|
|
2634
|
+
versions?: Components.Schemas.MarketplaceListingVersion[];
|
|
2635
|
+
has_publishable_draft?: boolean;
|
|
2636
|
+
}
|
|
2637
|
+
export interface $404 {
|
|
2638
|
+
}
|
|
2639
|
+
}
|
|
2640
|
+
}
|
|
2641
|
+
namespace GetMarketplaceListingById {
|
|
2642
|
+
namespace Parameters {
|
|
2643
|
+
export type ListingId = string;
|
|
2644
|
+
}
|
|
2645
|
+
export interface PathParameters {
|
|
2646
|
+
listing_id: Parameters.ListingId;
|
|
2647
|
+
}
|
|
2648
|
+
namespace Responses {
|
|
2649
|
+
export interface $200 {
|
|
2650
|
+
id: string; // uuid
|
|
2651
|
+
blueprint_id: string;
|
|
2652
|
+
name: string;
|
|
2653
|
+
slug: string;
|
|
2654
|
+
logo?: string | null;
|
|
2655
|
+
documentation_url?: string | null;
|
|
2656
|
+
pricing_type?: "free" | "paid" | "freemium" | "contact_us";
|
|
2657
|
+
support_email?: string | null;
|
|
2658
|
+
portal_description?: string | null;
|
|
2659
|
+
teaser_name?: string | null;
|
|
2660
|
+
teaser_short_description?: string | null;
|
|
2661
|
+
teaser_thumbnail?: string | null;
|
|
2662
|
+
details_page_title?: string | null;
|
|
2663
|
+
details_page_description?: string | null;
|
|
2664
|
+
details_page_hero_image?: string | null;
|
|
2665
|
+
details_page_carousel?: string[] | null;
|
|
2666
|
+
resources_section_description?: string | null;
|
|
2667
|
+
resources_section_benefits_title?: string | null;
|
|
2668
|
+
resources_section_benefits_list?: string | null;
|
|
2669
|
+
resources_section_process_details?: string | null;
|
|
2670
|
+
partner?: string | null;
|
|
2671
|
+
partner_subtext?: string | null;
|
|
2672
|
+
partner_logo?: string | null;
|
|
2673
|
+
partner_website_link?: string | null;
|
|
2674
|
+
last_updated_on?: string | null;
|
|
2675
|
+
requires_customer_portal?: boolean | null;
|
|
2676
|
+
process_details_section_title?: string | null;
|
|
2677
|
+
is_new_blueprint?: boolean | null;
|
|
2678
|
+
available_in?: string | null;
|
|
2679
|
+
testimonials?: string[] | null;
|
|
2680
|
+
installation_link?: string | null;
|
|
2681
|
+
installation_slug?: string | null;
|
|
2682
|
+
demo_form_link?: string | null;
|
|
2683
|
+
order?: number | null;
|
|
2684
|
+
categories?: string[] | null;
|
|
2685
|
+
main_category?: string[] | null;
|
|
2686
|
+
status: "draft" | "live" | "archived";
|
|
2687
|
+
created_at?: string; // date-time
|
|
2688
|
+
updated_at?: string; // date-time
|
|
2689
|
+
versions?: Components.Schemas.MarketplaceListingVersion[];
|
|
2690
|
+
has_publishable_draft?: boolean;
|
|
2691
|
+
}
|
|
2692
|
+
export interface $404 {
|
|
2693
|
+
}
|
|
2694
|
+
}
|
|
2695
|
+
}
|
|
2280
2696
|
namespace InstallBlueprint {
|
|
2281
2697
|
export interface RequestBody {
|
|
2282
2698
|
source_org_id?: string;
|
|
@@ -2307,6 +2723,57 @@ declare namespace Paths {
|
|
|
2307
2723
|
* Slug to enforce in this blueprint. Used in marketplace blueprints to keep it consistent with webflow.
|
|
2308
2724
|
*/
|
|
2309
2725
|
slug?: string;
|
|
2726
|
+
/**
|
|
2727
|
+
* If true, automatically enable required features in the destination org before installing
|
|
2728
|
+
*/
|
|
2729
|
+
auto_enable_features?: boolean;
|
|
2730
|
+
}
|
|
2731
|
+
namespace Responses {
|
|
2732
|
+
export interface $202 {
|
|
2733
|
+
job_id?: /**
|
|
2734
|
+
* ID of a job
|
|
2735
|
+
* example:
|
|
2736
|
+
* c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
|
|
2737
|
+
*/
|
|
2738
|
+
Components.Schemas.BlueprintJobID;
|
|
2739
|
+
destination_blueprint_id?: /**
|
|
2740
|
+
* ID of a blueprint
|
|
2741
|
+
* example:
|
|
2742
|
+
* c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
|
|
2743
|
+
*/
|
|
2744
|
+
Components.Schemas.BlueprintID;
|
|
2745
|
+
}
|
|
2746
|
+
}
|
|
2747
|
+
}
|
|
2748
|
+
namespace InstallBlueprintV3 {
|
|
2749
|
+
export interface RequestBody {
|
|
2750
|
+
source_org_id?: string;
|
|
2751
|
+
source_blueprint_id?: /**
|
|
2752
|
+
* ID of a blueprint
|
|
2753
|
+
* example:
|
|
2754
|
+
* c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
|
|
2755
|
+
*/
|
|
2756
|
+
Components.Schemas.BlueprintID;
|
|
2757
|
+
/**
|
|
2758
|
+
* S3 key to the blueprint zip file
|
|
2759
|
+
*/
|
|
2760
|
+
source_blueprint_file?: string;
|
|
2761
|
+
destination_org_id?: string;
|
|
2762
|
+
destination_blueprint_id?: /**
|
|
2763
|
+
* ID of a blueprint
|
|
2764
|
+
* example:
|
|
2765
|
+
* c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
|
|
2766
|
+
*/
|
|
2767
|
+
Components.Schemas.BlueprintID;
|
|
2768
|
+
/**
|
|
2769
|
+
* Auth token for the destination org. Required for cross-org installs where the caller's token belongs to the source org. Defaults to the caller's bearer token.
|
|
2770
|
+
*/
|
|
2771
|
+
destination_auth_token?: string;
|
|
2772
|
+
options?: Components.Schemas.BlueprintInstallationJobOptions;
|
|
2773
|
+
/**
|
|
2774
|
+
* Slug for marketplace blueprint consistency
|
|
2775
|
+
*/
|
|
2776
|
+
slug?: string;
|
|
2310
2777
|
}
|
|
2311
2778
|
namespace Responses {
|
|
2312
2779
|
export interface $202 {
|
|
@@ -2379,6 +2846,26 @@ declare namespace Paths {
|
|
|
2379
2846
|
}
|
|
2380
2847
|
}
|
|
2381
2848
|
}
|
|
2849
|
+
namespace ListMarketplaceListingVersions {
|
|
2850
|
+
namespace Parameters {
|
|
2851
|
+
export type ListingId = string;
|
|
2852
|
+
}
|
|
2853
|
+
export interface PathParameters {
|
|
2854
|
+
listing_id: Parameters.ListingId;
|
|
2855
|
+
}
|
|
2856
|
+
namespace Responses {
|
|
2857
|
+
export interface $200 {
|
|
2858
|
+
versions?: Components.Schemas.MarketplaceListingVersion[];
|
|
2859
|
+
}
|
|
2860
|
+
}
|
|
2861
|
+
}
|
|
2862
|
+
namespace ListMarketplaceListings {
|
|
2863
|
+
namespace Responses {
|
|
2864
|
+
export interface $200 {
|
|
2865
|
+
listings?: Components.Schemas.MarketplaceListing[];
|
|
2866
|
+
}
|
|
2867
|
+
}
|
|
2868
|
+
}
|
|
2382
2869
|
namespace ListMarketplaceSlugs {
|
|
2383
2870
|
namespace Responses {
|
|
2384
2871
|
export interface $200 {
|
|
@@ -2462,6 +2949,27 @@ declare namespace Paths {
|
|
|
2462
2949
|
}
|
|
2463
2950
|
}
|
|
2464
2951
|
}
|
|
2952
|
+
namespace PublishMarketplaceListingVersion {
|
|
2953
|
+
namespace Parameters {
|
|
2954
|
+
export type ListingId = string;
|
|
2955
|
+
export type VersionId = string;
|
|
2956
|
+
}
|
|
2957
|
+
export interface PathParameters {
|
|
2958
|
+
listing_id: Parameters.ListingId;
|
|
2959
|
+
version_id: Parameters.VersionId;
|
|
2960
|
+
}
|
|
2961
|
+
export interface RequestBody {
|
|
2962
|
+
version_name: string;
|
|
2963
|
+
update_note?: string | null;
|
|
2964
|
+
}
|
|
2965
|
+
namespace Responses {
|
|
2966
|
+
export type $200 = Components.Schemas.MarketplaceListingVersion;
|
|
2967
|
+
export interface $400 {
|
|
2968
|
+
}
|
|
2969
|
+
export interface $404 {
|
|
2970
|
+
}
|
|
2971
|
+
}
|
|
2972
|
+
}
|
|
2465
2973
|
namespace SyncDependencies {
|
|
2466
2974
|
namespace Parameters {
|
|
2467
2975
|
export type BlueprintId = /**
|
|
@@ -2545,6 +3053,42 @@ declare namespace Paths {
|
|
|
2545
3053
|
export type $200 = Components.Schemas.Manifest;
|
|
2546
3054
|
}
|
|
2547
3055
|
}
|
|
3056
|
+
namespace UpdateMarketplaceListing {
|
|
3057
|
+
namespace Parameters {
|
|
3058
|
+
export type ListingId = string;
|
|
3059
|
+
}
|
|
3060
|
+
export interface PathParameters {
|
|
3061
|
+
listing_id: Parameters.ListingId;
|
|
3062
|
+
}
|
|
3063
|
+
export type RequestBody = Components.Schemas.MarketplaceListingUpdate;
|
|
3064
|
+
namespace Responses {
|
|
3065
|
+
export type $200 = Components.Schemas.MarketplaceListing;
|
|
3066
|
+
export interface $404 {
|
|
3067
|
+
}
|
|
3068
|
+
}
|
|
3069
|
+
}
|
|
3070
|
+
namespace UpdateMarketplaceListingVersion {
|
|
3071
|
+
namespace Parameters {
|
|
3072
|
+
export type ListingId = string;
|
|
3073
|
+
export type VersionId = string;
|
|
3074
|
+
}
|
|
3075
|
+
export interface PathParameters {
|
|
3076
|
+
listing_id: Parameters.ListingId;
|
|
3077
|
+
version_id: Parameters.VersionId;
|
|
3078
|
+
}
|
|
3079
|
+
export interface RequestBody {
|
|
3080
|
+
update_note?: string | null;
|
|
3081
|
+
required_features?: string[];
|
|
3082
|
+
recommended_apps?: string[];
|
|
3083
|
+
}
|
|
3084
|
+
namespace Responses {
|
|
3085
|
+
export type $200 = Components.Schemas.MarketplaceListingVersion;
|
|
3086
|
+
export interface $400 {
|
|
3087
|
+
}
|
|
3088
|
+
export interface $404 {
|
|
3089
|
+
}
|
|
3090
|
+
}
|
|
3091
|
+
}
|
|
2548
3092
|
namespace UploadManifest {
|
|
2549
3093
|
export type RequestBody = Components.Schemas.UploadFilePayload;
|
|
2550
3094
|
namespace Responses {
|
|
@@ -2583,6 +3127,57 @@ declare namespace Paths {
|
|
|
2583
3127
|
}
|
|
2584
3128
|
}
|
|
2585
3129
|
}
|
|
3130
|
+
namespace VerifyBlueprint {
|
|
3131
|
+
namespace Parameters {
|
|
3132
|
+
export type BlueprintId = /**
|
|
3133
|
+
* ID of a blueprint
|
|
3134
|
+
* example:
|
|
3135
|
+
* c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
|
|
3136
|
+
*/
|
|
3137
|
+
Components.Schemas.BlueprintID;
|
|
3138
|
+
}
|
|
3139
|
+
export interface PathParameters {
|
|
3140
|
+
blueprint_id: Parameters.BlueprintId;
|
|
3141
|
+
}
|
|
3142
|
+
export interface RequestBody {
|
|
3143
|
+
/**
|
|
3144
|
+
* Organization ID of the source org
|
|
3145
|
+
*/
|
|
3146
|
+
source_org_id: string;
|
|
3147
|
+
source_blueprint_id: /**
|
|
3148
|
+
* ID of a blueprint
|
|
3149
|
+
* example:
|
|
3150
|
+
* c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
|
|
3151
|
+
*/
|
|
3152
|
+
Components.Schemas.BlueprintID;
|
|
3153
|
+
/**
|
|
3154
|
+
* Organization ID of the destination org
|
|
3155
|
+
*/
|
|
3156
|
+
destination_org_id: string;
|
|
3157
|
+
destination_blueprint_id: /**
|
|
3158
|
+
* ID of a blueprint
|
|
3159
|
+
* example:
|
|
3160
|
+
* c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
|
|
3161
|
+
*/
|
|
3162
|
+
Components.Schemas.BlueprintID;
|
|
3163
|
+
/**
|
|
3164
|
+
* Auth token with access to the source org (e.g. pipeline token). If not provided, the caller's bearer token is used for both orgs.
|
|
3165
|
+
*/
|
|
3166
|
+
source_auth_token?: string;
|
|
3167
|
+
}
|
|
3168
|
+
namespace Responses {
|
|
3169
|
+
export interface $202 {
|
|
3170
|
+
job_id?: /**
|
|
3171
|
+
* ID of a job
|
|
3172
|
+
* example:
|
|
3173
|
+
* c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
|
|
3174
|
+
*/
|
|
3175
|
+
Components.Schemas.BlueprintJobID;
|
|
3176
|
+
}
|
|
3177
|
+
export interface $404 {
|
|
3178
|
+
}
|
|
3179
|
+
}
|
|
3180
|
+
}
|
|
2586
3181
|
}
|
|
2587
3182
|
|
|
2588
3183
|
|
|
@@ -2803,6 +3398,19 @@ export interface OperationMethods {
|
|
|
2803
3398
|
data?: any,
|
|
2804
3399
|
config?: AxiosRequestConfig
|
|
2805
3400
|
): OperationResponse<Paths.ValidateBlueprint.Responses.$202>
|
|
3401
|
+
/**
|
|
3402
|
+
* verifyBlueprint - verifyBlueprint
|
|
3403
|
+
*
|
|
3404
|
+
* Start a blueprint verification job. Compares resource configurations between a source org
|
|
3405
|
+
* and a destination org to verify that a sync/install was successful.
|
|
3406
|
+
* Returns 202 Accepted with job_id. Poll GET /jobs/{job_id} for status, summary, and resource_results.
|
|
3407
|
+
*
|
|
3408
|
+
*/
|
|
3409
|
+
'verifyBlueprint'(
|
|
3410
|
+
parameters?: Parameters<Paths.VerifyBlueprint.PathParameters> | null,
|
|
3411
|
+
data?: Paths.VerifyBlueprint.RequestBody,
|
|
3412
|
+
config?: AxiosRequestConfig
|
|
3413
|
+
): OperationResponse<Paths.VerifyBlueprint.Responses.$202>
|
|
2806
3414
|
/**
|
|
2807
3415
|
* exportBlueprint - exportBlueprint
|
|
2808
3416
|
*
|
|
@@ -2958,6 +3566,131 @@ export interface OperationMethods {
|
|
|
2958
3566
|
data?: any,
|
|
2959
3567
|
config?: AxiosRequestConfig
|
|
2960
3568
|
): OperationResponse<Paths.CancelBlueprintJob.Responses.$200>
|
|
3569
|
+
/**
|
|
3570
|
+
* getMarketplaceListing - getMarketplaceListing
|
|
3571
|
+
*
|
|
3572
|
+
* Get marketplace listing for a blueprint including all versions
|
|
3573
|
+
*/
|
|
3574
|
+
'getMarketplaceListing'(
|
|
3575
|
+
parameters?: Parameters<Paths.GetMarketplaceListing.PathParameters> | null,
|
|
3576
|
+
data?: any,
|
|
3577
|
+
config?: AxiosRequestConfig
|
|
3578
|
+
): OperationResponse<Paths.GetMarketplaceListing.Responses.$200>
|
|
3579
|
+
/**
|
|
3580
|
+
* createMarketplaceListing - createMarketplaceListing
|
|
3581
|
+
*
|
|
3582
|
+
* Create a marketplace listing for a blueprint. Returns 409 if one already exists.
|
|
3583
|
+
*/
|
|
3584
|
+
'createMarketplaceListing'(
|
|
3585
|
+
parameters?: Parameters<Paths.CreateMarketplaceListing.PathParameters> | null,
|
|
3586
|
+
data?: Paths.CreateMarketplaceListing.RequestBody,
|
|
3587
|
+
config?: AxiosRequestConfig
|
|
3588
|
+
): OperationResponse<Paths.CreateMarketplaceListing.Responses.$201>
|
|
3589
|
+
/**
|
|
3590
|
+
* listMarketplaceListings - listMarketplaceListings
|
|
3591
|
+
*
|
|
3592
|
+
* List all marketplace listings for the authenticated organization
|
|
3593
|
+
*/
|
|
3594
|
+
'listMarketplaceListings'(
|
|
3595
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
3596
|
+
data?: any,
|
|
3597
|
+
config?: AxiosRequestConfig
|
|
3598
|
+
): OperationResponse<Paths.ListMarketplaceListings.Responses.$200>
|
|
3599
|
+
/**
|
|
3600
|
+
* getMarketplaceListingById - getMarketplaceListingById
|
|
3601
|
+
*
|
|
3602
|
+
* Get marketplace listing by listing ID including all versions
|
|
3603
|
+
*/
|
|
3604
|
+
'getMarketplaceListingById'(
|
|
3605
|
+
parameters?: Parameters<Paths.GetMarketplaceListingById.PathParameters> | null,
|
|
3606
|
+
data?: any,
|
|
3607
|
+
config?: AxiosRequestConfig
|
|
3608
|
+
): OperationResponse<Paths.GetMarketplaceListingById.Responses.$200>
|
|
3609
|
+
/**
|
|
3610
|
+
* updateMarketplaceListing - updateMarketplaceListing
|
|
3611
|
+
*
|
|
3612
|
+
* Update listing-level fields
|
|
3613
|
+
*/
|
|
3614
|
+
'updateMarketplaceListing'(
|
|
3615
|
+
parameters?: Parameters<Paths.UpdateMarketplaceListing.PathParameters> | null,
|
|
3616
|
+
data?: Paths.UpdateMarketplaceListing.RequestBody,
|
|
3617
|
+
config?: AxiosRequestConfig
|
|
3618
|
+
): OperationResponse<Paths.UpdateMarketplaceListing.Responses.$200>
|
|
3619
|
+
/**
|
|
3620
|
+
* deleteMarketplaceListing - deleteMarketplaceListing
|
|
3621
|
+
*
|
|
3622
|
+
* Delete listing and all versions
|
|
3623
|
+
*/
|
|
3624
|
+
'deleteMarketplaceListing'(
|
|
3625
|
+
parameters?: Parameters<Paths.DeleteMarketplaceListing.PathParameters> | null,
|
|
3626
|
+
data?: any,
|
|
3627
|
+
config?: AxiosRequestConfig
|
|
3628
|
+
): OperationResponse<Paths.DeleteMarketplaceListing.Responses.$204>
|
|
3629
|
+
/**
|
|
3630
|
+
* listMarketplaceListingVersions - listMarketplaceListingVersions
|
|
3631
|
+
*
|
|
3632
|
+
* List all versions for a listing, newest first
|
|
3633
|
+
*/
|
|
3634
|
+
'listMarketplaceListingVersions'(
|
|
3635
|
+
parameters?: Parameters<Paths.ListMarketplaceListingVersions.PathParameters> | null,
|
|
3636
|
+
data?: any,
|
|
3637
|
+
config?: AxiosRequestConfig
|
|
3638
|
+
): OperationResponse<Paths.ListMarketplaceListingVersions.Responses.$200>
|
|
3639
|
+
/**
|
|
3640
|
+
* createMarketplaceListingVersion - createMarketplaceListingVersion
|
|
3641
|
+
*
|
|
3642
|
+
* Create a draft version; auto-snapshots resources, requiredFeatures, recommendedApps from current blueprint
|
|
3643
|
+
*/
|
|
3644
|
+
'createMarketplaceListingVersion'(
|
|
3645
|
+
parameters?: Parameters<Paths.CreateMarketplaceListingVersion.PathParameters> | null,
|
|
3646
|
+
data?: any,
|
|
3647
|
+
config?: AxiosRequestConfig
|
|
3648
|
+
): OperationResponse<Paths.CreateMarketplaceListingVersion.Responses.$201>
|
|
3649
|
+
/**
|
|
3650
|
+
* updateMarketplaceListingVersion - updateMarketplaceListingVersion
|
|
3651
|
+
*
|
|
3652
|
+
* Update updateNote, requiredFeatures, or recommendedApps on a draft version
|
|
3653
|
+
*/
|
|
3654
|
+
'updateMarketplaceListingVersion'(
|
|
3655
|
+
parameters?: Parameters<Paths.UpdateMarketplaceListingVersion.PathParameters> | null,
|
|
3656
|
+
data?: Paths.UpdateMarketplaceListingVersion.RequestBody,
|
|
3657
|
+
config?: AxiosRequestConfig
|
|
3658
|
+
): OperationResponse<Paths.UpdateMarketplaceListingVersion.Responses.$200>
|
|
3659
|
+
/**
|
|
3660
|
+
* publishMarketplaceListingVersion - publishMarketplaceListingVersion
|
|
3661
|
+
*
|
|
3662
|
+
* Publish a draft version; archives the previous live version
|
|
3663
|
+
*/
|
|
3664
|
+
'publishMarketplaceListingVersion'(
|
|
3665
|
+
parameters?: Parameters<Paths.PublishMarketplaceListingVersion.PathParameters> | null,
|
|
3666
|
+
data?: Paths.PublishMarketplaceListingVersion.RequestBody,
|
|
3667
|
+
config?: AxiosRequestConfig
|
|
3668
|
+
): OperationResponse<Paths.PublishMarketplaceListingVersion.Responses.$200>
|
|
3669
|
+
/**
|
|
3670
|
+
* installBlueprintV3 - Install Blueprint V3
|
|
3671
|
+
*
|
|
3672
|
+
* Install a blueprint using the V3 engine (direct API calls, no Terraform).
|
|
3673
|
+
* Creates resources in topological order with global ID replacement.
|
|
3674
|
+
* Supports checkpoint-based resume on failure.
|
|
3675
|
+
*
|
|
3676
|
+
*/
|
|
3677
|
+
'installBlueprintV3'(
|
|
3678
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
3679
|
+
data?: Paths.InstallBlueprintV3.RequestBody,
|
|
3680
|
+
config?: AxiosRequestConfig
|
|
3681
|
+
): OperationResponse<Paths.InstallBlueprintV3.Responses.$202>
|
|
3682
|
+
/**
|
|
3683
|
+
* getBlueprintLineageV3 - Get Blueprint Lineage V3
|
|
3684
|
+
*
|
|
3685
|
+
* Returns the lineage registry entries for a blueprint's resources in the current org.
|
|
3686
|
+
* Shows the mapping between source lineage IDs and target resource IDs.
|
|
3687
|
+
*
|
|
3688
|
+
*/
|
|
3689
|
+
'getBlueprintLineageV3'(
|
|
3690
|
+
parameters?: Parameters<Paths.GetBlueprintLineageV3.PathParameters> | null,
|
|
3691
|
+
data?: any,
|
|
3692
|
+
config?: AxiosRequestConfig
|
|
3693
|
+
): OperationResponse<Paths.GetBlueprintLineageV3.Responses.$200>
|
|
2961
3694
|
}
|
|
2962
3695
|
|
|
2963
3696
|
export interface PathsDictionary {
|
|
@@ -3207,6 +3940,21 @@ export interface PathsDictionary {
|
|
|
3207
3940
|
config?: AxiosRequestConfig
|
|
3208
3941
|
): OperationResponse<Paths.ValidateBlueprint.Responses.$202>
|
|
3209
3942
|
}
|
|
3943
|
+
['/v2/blueprint-manifest/blueprints/{blueprint_id}:verify']: {
|
|
3944
|
+
/**
|
|
3945
|
+
* verifyBlueprint - verifyBlueprint
|
|
3946
|
+
*
|
|
3947
|
+
* Start a blueprint verification job. Compares resource configurations between a source org
|
|
3948
|
+
* and a destination org to verify that a sync/install was successful.
|
|
3949
|
+
* Returns 202 Accepted with job_id. Poll GET /jobs/{job_id} for status, summary, and resource_results.
|
|
3950
|
+
*
|
|
3951
|
+
*/
|
|
3952
|
+
'post'(
|
|
3953
|
+
parameters?: Parameters<Paths.VerifyBlueprint.PathParameters> | null,
|
|
3954
|
+
data?: Paths.VerifyBlueprint.RequestBody,
|
|
3955
|
+
config?: AxiosRequestConfig
|
|
3956
|
+
): OperationResponse<Paths.VerifyBlueprint.Responses.$202>
|
|
3957
|
+
}
|
|
3210
3958
|
['/v2/blueprint-manifest/blueprints/{blueprint_id}:export']: {
|
|
3211
3959
|
/**
|
|
3212
3960
|
* exportBlueprint - exportBlueprint
|
|
@@ -3386,6 +4134,147 @@ export interface PathsDictionary {
|
|
|
3386
4134
|
config?: AxiosRequestConfig
|
|
3387
4135
|
): OperationResponse<Paths.CancelBlueprintJob.Responses.$200>
|
|
3388
4136
|
}
|
|
4137
|
+
['/v1/blueprints/{blueprint_id}/marketplace-listing']: {
|
|
4138
|
+
/**
|
|
4139
|
+
* createMarketplaceListing - createMarketplaceListing
|
|
4140
|
+
*
|
|
4141
|
+
* Create a marketplace listing for a blueprint. Returns 409 if one already exists.
|
|
4142
|
+
*/
|
|
4143
|
+
'post'(
|
|
4144
|
+
parameters?: Parameters<Paths.CreateMarketplaceListing.PathParameters> | null,
|
|
4145
|
+
data?: Paths.CreateMarketplaceListing.RequestBody,
|
|
4146
|
+
config?: AxiosRequestConfig
|
|
4147
|
+
): OperationResponse<Paths.CreateMarketplaceListing.Responses.$201>
|
|
4148
|
+
/**
|
|
4149
|
+
* getMarketplaceListing - getMarketplaceListing
|
|
4150
|
+
*
|
|
4151
|
+
* Get marketplace listing for a blueprint including all versions
|
|
4152
|
+
*/
|
|
4153
|
+
'get'(
|
|
4154
|
+
parameters?: Parameters<Paths.GetMarketplaceListing.PathParameters> | null,
|
|
4155
|
+
data?: any,
|
|
4156
|
+
config?: AxiosRequestConfig
|
|
4157
|
+
): OperationResponse<Paths.GetMarketplaceListing.Responses.$200>
|
|
4158
|
+
}
|
|
4159
|
+
['/v1/marketplace-listings']: {
|
|
4160
|
+
/**
|
|
4161
|
+
* listMarketplaceListings - listMarketplaceListings
|
|
4162
|
+
*
|
|
4163
|
+
* List all marketplace listings for the authenticated organization
|
|
4164
|
+
*/
|
|
4165
|
+
'get'(
|
|
4166
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
4167
|
+
data?: any,
|
|
4168
|
+
config?: AxiosRequestConfig
|
|
4169
|
+
): OperationResponse<Paths.ListMarketplaceListings.Responses.$200>
|
|
4170
|
+
}
|
|
4171
|
+
['/v1/marketplace-listings/{listing_id}']: {
|
|
4172
|
+
/**
|
|
4173
|
+
* getMarketplaceListingById - getMarketplaceListingById
|
|
4174
|
+
*
|
|
4175
|
+
* Get marketplace listing by listing ID including all versions
|
|
4176
|
+
*/
|
|
4177
|
+
'get'(
|
|
4178
|
+
parameters?: Parameters<Paths.GetMarketplaceListingById.PathParameters> | null,
|
|
4179
|
+
data?: any,
|
|
4180
|
+
config?: AxiosRequestConfig
|
|
4181
|
+
): OperationResponse<Paths.GetMarketplaceListingById.Responses.$200>
|
|
4182
|
+
/**
|
|
4183
|
+
* updateMarketplaceListing - updateMarketplaceListing
|
|
4184
|
+
*
|
|
4185
|
+
* Update listing-level fields
|
|
4186
|
+
*/
|
|
4187
|
+
'patch'(
|
|
4188
|
+
parameters?: Parameters<Paths.UpdateMarketplaceListing.PathParameters> | null,
|
|
4189
|
+
data?: Paths.UpdateMarketplaceListing.RequestBody,
|
|
4190
|
+
config?: AxiosRequestConfig
|
|
4191
|
+
): OperationResponse<Paths.UpdateMarketplaceListing.Responses.$200>
|
|
4192
|
+
/**
|
|
4193
|
+
* deleteMarketplaceListing - deleteMarketplaceListing
|
|
4194
|
+
*
|
|
4195
|
+
* Delete listing and all versions
|
|
4196
|
+
*/
|
|
4197
|
+
'delete'(
|
|
4198
|
+
parameters?: Parameters<Paths.DeleteMarketplaceListing.PathParameters> | null,
|
|
4199
|
+
data?: any,
|
|
4200
|
+
config?: AxiosRequestConfig
|
|
4201
|
+
): OperationResponse<Paths.DeleteMarketplaceListing.Responses.$204>
|
|
4202
|
+
}
|
|
4203
|
+
['/v1/marketplace-listings/{listing_id}/versions']: {
|
|
4204
|
+
/**
|
|
4205
|
+
* createMarketplaceListingVersion - createMarketplaceListingVersion
|
|
4206
|
+
*
|
|
4207
|
+
* Create a draft version; auto-snapshots resources, requiredFeatures, recommendedApps from current blueprint
|
|
4208
|
+
*/
|
|
4209
|
+
'post'(
|
|
4210
|
+
parameters?: Parameters<Paths.CreateMarketplaceListingVersion.PathParameters> | null,
|
|
4211
|
+
data?: any,
|
|
4212
|
+
config?: AxiosRequestConfig
|
|
4213
|
+
): OperationResponse<Paths.CreateMarketplaceListingVersion.Responses.$201>
|
|
4214
|
+
/**
|
|
4215
|
+
* listMarketplaceListingVersions - listMarketplaceListingVersions
|
|
4216
|
+
*
|
|
4217
|
+
* List all versions for a listing, newest first
|
|
4218
|
+
*/
|
|
4219
|
+
'get'(
|
|
4220
|
+
parameters?: Parameters<Paths.ListMarketplaceListingVersions.PathParameters> | null,
|
|
4221
|
+
data?: any,
|
|
4222
|
+
config?: AxiosRequestConfig
|
|
4223
|
+
): OperationResponse<Paths.ListMarketplaceListingVersions.Responses.$200>
|
|
4224
|
+
}
|
|
4225
|
+
['/v1/marketplace-listings/{listing_id}/versions/{version_id}']: {
|
|
4226
|
+
/**
|
|
4227
|
+
* updateMarketplaceListingVersion - updateMarketplaceListingVersion
|
|
4228
|
+
*
|
|
4229
|
+
* Update updateNote, requiredFeatures, or recommendedApps on a draft version
|
|
4230
|
+
*/
|
|
4231
|
+
'patch'(
|
|
4232
|
+
parameters?: Parameters<Paths.UpdateMarketplaceListingVersion.PathParameters> | null,
|
|
4233
|
+
data?: Paths.UpdateMarketplaceListingVersion.RequestBody,
|
|
4234
|
+
config?: AxiosRequestConfig
|
|
4235
|
+
): OperationResponse<Paths.UpdateMarketplaceListingVersion.Responses.$200>
|
|
4236
|
+
}
|
|
4237
|
+
['/v1/marketplace-listings/{listing_id}/versions/{version_id}/publish']: {
|
|
4238
|
+
/**
|
|
4239
|
+
* publishMarketplaceListingVersion - publishMarketplaceListingVersion
|
|
4240
|
+
*
|
|
4241
|
+
* Publish a draft version; archives the previous live version
|
|
4242
|
+
*/
|
|
4243
|
+
'post'(
|
|
4244
|
+
parameters?: Parameters<Paths.PublishMarketplaceListingVersion.PathParameters> | null,
|
|
4245
|
+
data?: Paths.PublishMarketplaceListingVersion.RequestBody,
|
|
4246
|
+
config?: AxiosRequestConfig
|
|
4247
|
+
): OperationResponse<Paths.PublishMarketplaceListingVersion.Responses.$200>
|
|
4248
|
+
}
|
|
4249
|
+
['/v3/blueprint-manifest/blueprint:install']: {
|
|
4250
|
+
/**
|
|
4251
|
+
* installBlueprintV3 - Install Blueprint V3
|
|
4252
|
+
*
|
|
4253
|
+
* Install a blueprint using the V3 engine (direct API calls, no Terraform).
|
|
4254
|
+
* Creates resources in topological order with global ID replacement.
|
|
4255
|
+
* Supports checkpoint-based resume on failure.
|
|
4256
|
+
*
|
|
4257
|
+
*/
|
|
4258
|
+
'post'(
|
|
4259
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
4260
|
+
data?: Paths.InstallBlueprintV3.RequestBody,
|
|
4261
|
+
config?: AxiosRequestConfig
|
|
4262
|
+
): OperationResponse<Paths.InstallBlueprintV3.Responses.$202>
|
|
4263
|
+
}
|
|
4264
|
+
['/v3/blueprint-manifest/blueprints/{blueprint_id}/lineage']: {
|
|
4265
|
+
/**
|
|
4266
|
+
* getBlueprintLineageV3 - Get Blueprint Lineage V3
|
|
4267
|
+
*
|
|
4268
|
+
* Returns the lineage registry entries for a blueprint's resources in the current org.
|
|
4269
|
+
* Shows the mapping between source lineage IDs and target resource IDs.
|
|
4270
|
+
*
|
|
4271
|
+
*/
|
|
4272
|
+
'get'(
|
|
4273
|
+
parameters?: Parameters<Paths.GetBlueprintLineageV3.PathParameters> | null,
|
|
4274
|
+
data?: any,
|
|
4275
|
+
config?: AxiosRequestConfig
|
|
4276
|
+
): OperationResponse<Paths.GetBlueprintLineageV3.Responses.$200>
|
|
4277
|
+
}
|
|
3389
4278
|
}
|
|
3390
4279
|
|
|
3391
4280
|
export type Client = OpenAPIClient<OperationMethods, PathsDictionary>
|
|
@@ -3406,6 +4295,7 @@ export type BlueprintPreview = Components.Schemas.BlueprintPreview;
|
|
|
3406
4295
|
export type BlueprintResource = Components.Schemas.BlueprintResource;
|
|
3407
4296
|
export type BlueprintResourceID = Components.Schemas.BlueprintResourceID;
|
|
3408
4297
|
export type BlueprintValidateJob = Components.Schemas.BlueprintValidateJob;
|
|
4298
|
+
export type BlueprintVerificationJob = Components.Schemas.BlueprintVerificationJob;
|
|
3409
4299
|
export type CallerIdentity = Components.Schemas.CallerIdentity;
|
|
3410
4300
|
export type CommonBlueprintFields = Components.Schemas.CommonBlueprintFields;
|
|
3411
4301
|
export type CommonBlueprintJobFields = Components.Schemas.CommonBlueprintJobFields;
|
|
@@ -3415,6 +4305,7 @@ export type CommonMarkdownFields = Components.Schemas.CommonMarkdownFields;
|
|
|
3415
4305
|
export type CommonResourceNode = Components.Schemas.CommonResourceNode;
|
|
3416
4306
|
export type CustomBlueprint = Components.Schemas.CustomBlueprint;
|
|
3417
4307
|
export type DeployedBlueprint = Components.Schemas.DeployedBlueprint;
|
|
4308
|
+
export type FieldDiff = Components.Schemas.FieldDiff;
|
|
3418
4309
|
export type FileBlueprint = Components.Schemas.FileBlueprint;
|
|
3419
4310
|
export type FormattedError = Components.Schemas.FormattedError;
|
|
3420
4311
|
export type FormattedErrorCodes = Components.Schemas.FormattedErrorCodes;
|
|
@@ -3423,20 +4314,27 @@ export type InstalledMarketplaceBlueprintItem = Components.Schemas.InstalledMark
|
|
|
3423
4314
|
export type Job = Components.Schemas.Job;
|
|
3424
4315
|
export type JobID = Components.Schemas.JobID;
|
|
3425
4316
|
export type JobStatus = Components.Schemas.JobStatus;
|
|
4317
|
+
export type LatestBlueprintVerification = Components.Schemas.LatestBlueprintVerification;
|
|
4318
|
+
export type LineageEntry = Components.Schemas.LineageEntry;
|
|
3426
4319
|
export type Manifest = Components.Schemas.Manifest;
|
|
3427
4320
|
export type ManifestID = Components.Schemas.ManifestID;
|
|
3428
4321
|
export type ManifestItem = Components.Schemas.ManifestItem;
|
|
3429
4322
|
export type ManifestSource = Components.Schemas.ManifestSource;
|
|
3430
4323
|
export type ManifestTimestampFields = Components.Schemas.ManifestTimestampFields;
|
|
3431
4324
|
export type MarketplaceBlueprint = Components.Schemas.MarketplaceBlueprint;
|
|
4325
|
+
export type MarketplaceListing = Components.Schemas.MarketplaceListing;
|
|
4326
|
+
export type MarketplaceListingUpdate = Components.Schemas.MarketplaceListingUpdate;
|
|
4327
|
+
export type MarketplaceListingVersion = Components.Schemas.MarketplaceListingVersion;
|
|
3432
4328
|
export type PlanChanges = Components.Schemas.PlanChanges;
|
|
3433
4329
|
export type PreInstallRequirements = Components.Schemas.PreInstallRequirements;
|
|
3434
4330
|
export type PutManifestPayload = Components.Schemas.PutManifestPayload;
|
|
3435
4331
|
export type ResourceNode = Components.Schemas.ResourceNode;
|
|
3436
4332
|
export type ResourceNodeType = Components.Schemas.ResourceNodeType;
|
|
3437
4333
|
export type ResourceReplacement = Components.Schemas.ResourceReplacement;
|
|
4334
|
+
export type ResourceVerificationResult = Components.Schemas.ResourceVerificationResult;
|
|
3438
4335
|
export type RootResourceNode = Components.Schemas.RootResourceNode;
|
|
3439
4336
|
export type S3Reference = Components.Schemas.S3Reference;
|
|
3440
4337
|
export type SelectedResources = Components.Schemas.SelectedResources;
|
|
3441
4338
|
export type UploadFilePayload = Components.Schemas.UploadFilePayload;
|
|
4339
|
+
export type VerificationSummary = Components.Schemas.VerificationSummary;
|
|
3442
4340
|
export type VirtualResourceNodeGroup = Components.Schemas.VirtualResourceNodeGroup;
|