@epilot/cli 0.1.11 → 0.1.15
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/README.md +20 -19
- package/definitions/automation.json +214 -1
- package/definitions/blueprint-manifest.json +1504 -148
- package/definitions/configuration-hub.json +399 -0
- package/definitions/data-governance.json +1126 -0
- package/definitions/deduplication.json +135 -4
- package/definitions/design.json +103 -57
- package/definitions/email-settings.json +29 -0
- package/definitions/entity.json +88 -6
- package/definitions/environments.json +183 -7
- package/definitions/erp-integration.json +1819 -187
- package/definitions/integration-toolkit.json +7998 -0
- package/definitions/message.json +202 -0
- package/definitions/query.json +3178 -0
- package/definitions/sharing.json +956 -0
- package/definitions/target.json +609 -0
- package/definitions/template-variables.json +12 -4
- package/definitions/user.json +52 -0
- package/definitions/workflow-definition.json +87 -202
- package/definitions/workflow.json +102 -0
- package/dist/{add-component-IW4644NE.js → add-component-AAVQVPKK.js} +68 -13
- package/dist/app-I3XXHZLD.js +24 -0
- package/dist/bin/epilot.js +12 -9
- package/dist/{chunk-POCU2J27.js → chunk-CEP7S7X3.js} +2 -1
- package/dist/{chunk-K2UQOP3Q.js → chunk-UOQMCAJN.js} +149 -60
- package/dist/{completion-HTO64G2S.js → completion-J7SWF5AO.js} +1 -1
- package/dist/configuration-hub-Y7W22GBW.js +54 -0
- package/dist/{data-management-KXAPA7ZU.js → data-governance-DJAAIE6F.js} +5 -5
- package/dist/{deploy-UQZAUHAB.js → deploy-4XDFWOEV.js} +1 -1
- package/dist/{export-US5GMHTS.js → export-JA5N4JCJ.js} +1 -1
- package/dist/{init-DGPWBRRB.js → init-5KGNJEWF.js} +1 -1
- package/dist/integration-toolkit-4CLQDSK7.js +54 -0
- package/dist/{erp-integration-DXFYJ2F3.js → query-IYW42QLU.js} +5 -5
- package/dist/{remove-component-B2GMICMD.js → remove-component-LXSRR23E.js} +1 -1
- package/dist/{review-QFPON37R.js → review-HFOO3NXE.js} +1 -1
- package/dist/sharing-X5U53KSU.js +54 -0
- package/dist/{upgrade-KZSOPDCR.js → upgrade-6Z53BXHL.js} +1 -1
- package/dist/{validate-G7K6AVBI.js → validate-TUMXW56Y.js} +1 -1
- package/dist/{versions-UTPAWTIU.js → versions-ZTWQAGXY.js} +1 -1
- package/package.json +4 -2
- package/definitions/data-management.json +0 -972
- package/dist/app-BKS7M4UQ.js +0 -24
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
|
-
"openapi": "3.
|
|
2
|
+
"openapi": "3.0.2",
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "Blueprint Manifest API",
|
|
5
|
-
"version": "4.6.
|
|
5
|
+
"version": "4.6.4",
|
|
6
6
|
"description": "Service to create and install Blueprint Manifest files"
|
|
7
7
|
},
|
|
8
8
|
"tags": [
|
|
@@ -29,6 +29,14 @@
|
|
|
29
29
|
{
|
|
30
30
|
"name": "Installations",
|
|
31
31
|
"description": "Manage installation jobs"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "Marketplace Listings",
|
|
35
|
+
"description": "Manage marketplace listings for blueprints"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "Marketplace Listing Versions",
|
|
39
|
+
"description": "Manage versions for marketplace listings"
|
|
32
40
|
}
|
|
33
41
|
],
|
|
34
42
|
"security": [
|
|
@@ -936,6 +944,10 @@
|
|
|
936
944
|
"slug": {
|
|
937
945
|
"type": "string",
|
|
938
946
|
"description": "Slug to enforce in this blueprint. Used in marketplace blueprints to keep it consistent with webflow."
|
|
947
|
+
},
|
|
948
|
+
"auto_enable_features": {
|
|
949
|
+
"type": "boolean",
|
|
950
|
+
"description": "If true, automatically enable required features in the destination org before installing"
|
|
939
951
|
}
|
|
940
952
|
},
|
|
941
953
|
"required": [
|
|
@@ -1124,6 +1136,94 @@
|
|
|
1124
1136
|
}
|
|
1125
1137
|
}
|
|
1126
1138
|
},
|
|
1139
|
+
"/v2/blueprint-manifest/blueprints/{blueprint_id}:verify": {
|
|
1140
|
+
"post": {
|
|
1141
|
+
"operationId": "verifyBlueprint",
|
|
1142
|
+
"summary": "verifyBlueprint",
|
|
1143
|
+
"description": "Start a blueprint verification job. Compares resource configurations between a source org\nand a destination org to verify that a sync/install was successful.\nReturns 202 Accepted with job_id. Poll GET /jobs/{job_id} for status, summary, and resource_results.\n",
|
|
1144
|
+
"tags": [
|
|
1145
|
+
"Blueprints"
|
|
1146
|
+
],
|
|
1147
|
+
"parameters": [
|
|
1148
|
+
{
|
|
1149
|
+
"in": "path",
|
|
1150
|
+
"required": true,
|
|
1151
|
+
"name": "blueprint_id",
|
|
1152
|
+
"schema": {
|
|
1153
|
+
"$ref": "#/components/schemas/BlueprintID"
|
|
1154
|
+
}
|
|
1155
|
+
}
|
|
1156
|
+
],
|
|
1157
|
+
"requestBody": {
|
|
1158
|
+
"required": true,
|
|
1159
|
+
"content": {
|
|
1160
|
+
"application/json": {
|
|
1161
|
+
"schema": {
|
|
1162
|
+
"type": "object",
|
|
1163
|
+
"required": [
|
|
1164
|
+
"source_org_id",
|
|
1165
|
+
"source_blueprint_id",
|
|
1166
|
+
"destination_org_id",
|
|
1167
|
+
"destination_blueprint_id"
|
|
1168
|
+
],
|
|
1169
|
+
"properties": {
|
|
1170
|
+
"source_org_id": {
|
|
1171
|
+
"type": "string",
|
|
1172
|
+
"description": "Organization ID of the source org"
|
|
1173
|
+
},
|
|
1174
|
+
"source_blueprint_id": {
|
|
1175
|
+
"$ref": "#/components/schemas/BlueprintID"
|
|
1176
|
+
},
|
|
1177
|
+
"destination_org_id": {
|
|
1178
|
+
"type": "string",
|
|
1179
|
+
"description": "Organization ID of the destination org"
|
|
1180
|
+
},
|
|
1181
|
+
"destination_blueprint_id": {
|
|
1182
|
+
"$ref": "#/components/schemas/BlueprintID"
|
|
1183
|
+
},
|
|
1184
|
+
"source_auth_token": {
|
|
1185
|
+
"type": "string",
|
|
1186
|
+
"description": "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."
|
|
1187
|
+
},
|
|
1188
|
+
"destination_auth_token": {
|
|
1189
|
+
"type": "string",
|
|
1190
|
+
"description": "Auth token with access to the destination org. Required for cross-org verification when the caller token only has access to the source org. If not provided, the caller's bearer token is used for both orgs."
|
|
1191
|
+
}
|
|
1192
|
+
}
|
|
1193
|
+
}
|
|
1194
|
+
}
|
|
1195
|
+
}
|
|
1196
|
+
},
|
|
1197
|
+
"responses": {
|
|
1198
|
+
"202": {
|
|
1199
|
+
"description": "Verification job started",
|
|
1200
|
+
"headers": {
|
|
1201
|
+
"Location": {
|
|
1202
|
+
"description": "URL to poll the job",
|
|
1203
|
+
"schema": {
|
|
1204
|
+
"type": "string"
|
|
1205
|
+
}
|
|
1206
|
+
}
|
|
1207
|
+
},
|
|
1208
|
+
"content": {
|
|
1209
|
+
"application/json": {
|
|
1210
|
+
"schema": {
|
|
1211
|
+
"type": "object",
|
|
1212
|
+
"properties": {
|
|
1213
|
+
"job_id": {
|
|
1214
|
+
"$ref": "#/components/schemas/BlueprintJobID"
|
|
1215
|
+
}
|
|
1216
|
+
}
|
|
1217
|
+
}
|
|
1218
|
+
}
|
|
1219
|
+
}
|
|
1220
|
+
},
|
|
1221
|
+
"404": {
|
|
1222
|
+
"description": "Blueprint not found"
|
|
1223
|
+
}
|
|
1224
|
+
}
|
|
1225
|
+
}
|
|
1226
|
+
},
|
|
1127
1227
|
"/v2/blueprint-manifest/blueprints/{blueprint_id}:export": {
|
|
1128
1228
|
"post": {
|
|
1129
1229
|
"operationId": "exportBlueprint",
|
|
@@ -1214,8 +1314,14 @@
|
|
|
1214
1314
|
"properties": {
|
|
1215
1315
|
"slug": {
|
|
1216
1316
|
"type": "string",
|
|
1317
|
+
"description": "The installation slug identifier for the blueprint (used for publishing).",
|
|
1217
1318
|
"example": "wallbox_b2c"
|
|
1218
1319
|
},
|
|
1320
|
+
"marketplace_slug": {
|
|
1321
|
+
"type": "string",
|
|
1322
|
+
"description": "The marketplace page slug for the Webflow CMS item (used for display).",
|
|
1323
|
+
"example": "wallbox-b2c"
|
|
1324
|
+
},
|
|
1219
1325
|
"version": {
|
|
1220
1326
|
"type": "string",
|
|
1221
1327
|
"example": "v1.0.0"
|
|
@@ -1868,153 +1974,803 @@
|
|
|
1868
1974
|
}
|
|
1869
1975
|
}
|
|
1870
1976
|
}
|
|
1871
|
-
}
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
"
|
|
1877
|
-
"
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
"properties": {
|
|
1888
|
-
"id": {
|
|
1889
|
-
"$ref": "#/components/schemas/BlueprintID"
|
|
1890
|
-
},
|
|
1891
|
-
"title": {
|
|
1892
|
-
"type": "string"
|
|
1893
|
-
},
|
|
1894
|
-
"slug": {
|
|
1895
|
-
"type": "string"
|
|
1896
|
-
},
|
|
1897
|
-
"description": {
|
|
1898
|
-
"type": "object",
|
|
1899
|
-
"properties": {
|
|
1900
|
-
"preinstall": {
|
|
1901
|
-
"type": "string",
|
|
1902
|
-
"description": "Markdown content shown before starting to install the blueprint",
|
|
1903
|
-
"example": "This is the content of the preinstall.md file which contains the blueprint description.\n"
|
|
1904
|
-
},
|
|
1905
|
-
"postinstall": {
|
|
1906
|
-
"type": "string",
|
|
1907
|
-
"description": "Markdown content to be displayed when showing the plan to install blueprint",
|
|
1908
|
-
"example": "This is the content of the postinstall.md file\n"
|
|
1909
|
-
}
|
|
1977
|
+
},
|
|
1978
|
+
"/v1/blueprints/{blueprint_id}/marketplace-listing": {
|
|
1979
|
+
"post": {
|
|
1980
|
+
"operationId": "createMarketplaceListing",
|
|
1981
|
+
"summary": "createMarketplaceListing",
|
|
1982
|
+
"description": "Create a marketplace listing for a blueprint. Returns 409 if one already exists.",
|
|
1983
|
+
"tags": [
|
|
1984
|
+
"Marketplace Listings"
|
|
1985
|
+
],
|
|
1986
|
+
"parameters": [
|
|
1987
|
+
{
|
|
1988
|
+
"name": "blueprint_id",
|
|
1989
|
+
"in": "path",
|
|
1990
|
+
"required": true,
|
|
1991
|
+
"schema": {
|
|
1992
|
+
"type": "string"
|
|
1910
1993
|
}
|
|
1911
|
-
}
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
"
|
|
1916
|
-
"
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
"destination_blueprint_id": {
|
|
1930
|
-
"type": "string"
|
|
1931
|
-
},
|
|
1932
|
-
"triggered_at": {
|
|
1933
|
-
"type": "string",
|
|
1934
|
-
"format": "date-time"
|
|
1994
|
+
}
|
|
1995
|
+
],
|
|
1996
|
+
"requestBody": {
|
|
1997
|
+
"required": true,
|
|
1998
|
+
"content": {
|
|
1999
|
+
"application/json": {
|
|
2000
|
+
"schema": {
|
|
2001
|
+
"type": "object",
|
|
2002
|
+
"required": [
|
|
2003
|
+
"name"
|
|
2004
|
+
],
|
|
2005
|
+
"properties": {
|
|
2006
|
+
"name": {
|
|
2007
|
+
"type": "string"
|
|
2008
|
+
},
|
|
2009
|
+
"slug": {
|
|
2010
|
+
"type": "string"
|
|
2011
|
+
}
|
|
1935
2012
|
}
|
|
1936
2013
|
}
|
|
1937
2014
|
}
|
|
1938
|
-
}
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
"PARTIAL",
|
|
1949
|
-
"SUCCESS",
|
|
1950
|
-
"FAILED"
|
|
1951
|
-
]
|
|
1952
|
-
},
|
|
1953
|
-
"created_at": {
|
|
1954
|
-
"type": "string",
|
|
1955
|
-
"format": "date-time"
|
|
1956
|
-
},
|
|
1957
|
-
"updated_at": {
|
|
1958
|
-
"type": "string",
|
|
1959
|
-
"format": "date-time"
|
|
1960
|
-
},
|
|
1961
|
-
"created_by": {
|
|
1962
|
-
"$ref": "#/components/schemas/CallerIdentity"
|
|
1963
|
-
},
|
|
1964
|
-
"updated_by": {
|
|
1965
|
-
"$ref": "#/components/schemas/CallerIdentity"
|
|
1966
|
-
},
|
|
1967
|
-
"installation_job_ids": {
|
|
1968
|
-
"type": "array",
|
|
1969
|
-
"items": {
|
|
1970
|
-
"$ref": "#/components/schemas/BlueprintJobID"
|
|
1971
|
-
}
|
|
1972
|
-
},
|
|
1973
|
-
"source_blueprint_id": {
|
|
1974
|
-
"description": "ID of the blueprint that brought this blueprint to the destination org (deployed or installed)",
|
|
1975
|
-
"$ref": "#/components/schemas/BlueprintID"
|
|
1976
|
-
},
|
|
1977
|
-
"archived": {
|
|
1978
|
-
"type": "boolean",
|
|
1979
|
-
"description": "Whether the blueprint is archived (soft-deleted). Archived blueprints are hidden from the main list.",
|
|
1980
|
-
"default": false
|
|
1981
|
-
},
|
|
1982
|
-
"docs_url": {
|
|
1983
|
-
"type": "string",
|
|
1984
|
-
"description": "URL to the blueprint documentation"
|
|
1985
|
-
},
|
|
1986
|
-
"recommended_apps": {
|
|
1987
|
-
"type": "array",
|
|
1988
|
-
"items": {
|
|
1989
|
-
"type": "string"
|
|
1990
|
-
},
|
|
1991
|
-
"description": "List of recommended app IDs for the blueprint"
|
|
1992
|
-
},
|
|
1993
|
-
"required_features": {
|
|
1994
|
-
"type": "object",
|
|
1995
|
-
"description": "Feature constraints for blueprint installation",
|
|
1996
|
-
"properties": {
|
|
1997
|
-
"enabled": {
|
|
1998
|
-
"type": "array",
|
|
1999
|
-
"items": {
|
|
2000
|
-
"type": "string"
|
|
2001
|
-
},
|
|
2002
|
-
"description": "Features that must be enabled in the target org"
|
|
2003
|
-
},
|
|
2004
|
-
"disabled": {
|
|
2005
|
-
"type": "array",
|
|
2006
|
-
"items": {
|
|
2007
|
-
"type": "string"
|
|
2008
|
-
},
|
|
2009
|
-
"description": "Features that must be disabled in the target org"
|
|
2015
|
+
}
|
|
2016
|
+
},
|
|
2017
|
+
"responses": {
|
|
2018
|
+
"201": {
|
|
2019
|
+
"description": "Marketplace listing created",
|
|
2020
|
+
"content": {
|
|
2021
|
+
"application/json": {
|
|
2022
|
+
"schema": {
|
|
2023
|
+
"$ref": "#/components/schemas/MarketplaceListing"
|
|
2024
|
+
}
|
|
2010
2025
|
}
|
|
2011
2026
|
}
|
|
2012
2027
|
},
|
|
2013
|
-
"
|
|
2014
|
-
"
|
|
2015
|
-
"description": "Custom name for the exported zip file"
|
|
2028
|
+
"409": {
|
|
2029
|
+
"description": "Listing already exists for this blueprint"
|
|
2016
2030
|
}
|
|
2017
|
-
}
|
|
2031
|
+
}
|
|
2032
|
+
},
|
|
2033
|
+
"get": {
|
|
2034
|
+
"operationId": "getMarketplaceListing",
|
|
2035
|
+
"summary": "getMarketplaceListing",
|
|
2036
|
+
"description": "Get marketplace listing for a blueprint including all versions",
|
|
2037
|
+
"tags": [
|
|
2038
|
+
"Marketplace Listings"
|
|
2039
|
+
],
|
|
2040
|
+
"parameters": [
|
|
2041
|
+
{
|
|
2042
|
+
"name": "blueprint_id",
|
|
2043
|
+
"in": "path",
|
|
2044
|
+
"required": true,
|
|
2045
|
+
"schema": {
|
|
2046
|
+
"type": "string"
|
|
2047
|
+
}
|
|
2048
|
+
}
|
|
2049
|
+
],
|
|
2050
|
+
"responses": {
|
|
2051
|
+
"200": {
|
|
2052
|
+
"description": "Marketplace listing with versions",
|
|
2053
|
+
"content": {
|
|
2054
|
+
"application/json": {
|
|
2055
|
+
"schema": {
|
|
2056
|
+
"allOf": [
|
|
2057
|
+
{
|
|
2058
|
+
"$ref": "#/components/schemas/MarketplaceListing"
|
|
2059
|
+
},
|
|
2060
|
+
{
|
|
2061
|
+
"type": "object",
|
|
2062
|
+
"properties": {
|
|
2063
|
+
"versions": {
|
|
2064
|
+
"type": "array",
|
|
2065
|
+
"items": {
|
|
2066
|
+
"$ref": "#/components/schemas/MarketplaceListingVersion"
|
|
2067
|
+
}
|
|
2068
|
+
},
|
|
2069
|
+
"has_publishable_draft": {
|
|
2070
|
+
"type": "boolean"
|
|
2071
|
+
}
|
|
2072
|
+
}
|
|
2073
|
+
}
|
|
2074
|
+
]
|
|
2075
|
+
}
|
|
2076
|
+
}
|
|
2077
|
+
}
|
|
2078
|
+
},
|
|
2079
|
+
"404": {
|
|
2080
|
+
"description": "Listing not found"
|
|
2081
|
+
}
|
|
2082
|
+
}
|
|
2083
|
+
}
|
|
2084
|
+
},
|
|
2085
|
+
"/v1/marketplace-listings": {
|
|
2086
|
+
"get": {
|
|
2087
|
+
"operationId": "listMarketplaceListings",
|
|
2088
|
+
"summary": "listMarketplaceListings",
|
|
2089
|
+
"description": "List all marketplace listings for the authenticated organization",
|
|
2090
|
+
"tags": [
|
|
2091
|
+
"Marketplace Listings"
|
|
2092
|
+
],
|
|
2093
|
+
"security": [
|
|
2094
|
+
{
|
|
2095
|
+
"EpilotAuth": []
|
|
2096
|
+
}
|
|
2097
|
+
],
|
|
2098
|
+
"responses": {
|
|
2099
|
+
"200": {
|
|
2100
|
+
"description": "List of marketplace listings",
|
|
2101
|
+
"content": {
|
|
2102
|
+
"application/json": {
|
|
2103
|
+
"schema": {
|
|
2104
|
+
"type": "object",
|
|
2105
|
+
"properties": {
|
|
2106
|
+
"listings": {
|
|
2107
|
+
"type": "array",
|
|
2108
|
+
"items": {
|
|
2109
|
+
"$ref": "#/components/schemas/MarketplaceListing"
|
|
2110
|
+
}
|
|
2111
|
+
}
|
|
2112
|
+
}
|
|
2113
|
+
}
|
|
2114
|
+
}
|
|
2115
|
+
}
|
|
2116
|
+
}
|
|
2117
|
+
}
|
|
2118
|
+
}
|
|
2119
|
+
},
|
|
2120
|
+
"/v1/marketplace-listings/{listing_id}": {
|
|
2121
|
+
"get": {
|
|
2122
|
+
"operationId": "getMarketplaceListingById",
|
|
2123
|
+
"summary": "getMarketplaceListingById",
|
|
2124
|
+
"description": "Get marketplace listing by listing ID including all versions",
|
|
2125
|
+
"tags": [
|
|
2126
|
+
"Marketplace Listings"
|
|
2127
|
+
],
|
|
2128
|
+
"parameters": [
|
|
2129
|
+
{
|
|
2130
|
+
"name": "listing_id",
|
|
2131
|
+
"in": "path",
|
|
2132
|
+
"required": true,
|
|
2133
|
+
"schema": {
|
|
2134
|
+
"type": "string"
|
|
2135
|
+
}
|
|
2136
|
+
}
|
|
2137
|
+
],
|
|
2138
|
+
"responses": {
|
|
2139
|
+
"200": {
|
|
2140
|
+
"description": "Marketplace listing with versions",
|
|
2141
|
+
"content": {
|
|
2142
|
+
"application/json": {
|
|
2143
|
+
"schema": {
|
|
2144
|
+
"allOf": [
|
|
2145
|
+
{
|
|
2146
|
+
"$ref": "#/components/schemas/MarketplaceListing"
|
|
2147
|
+
},
|
|
2148
|
+
{
|
|
2149
|
+
"type": "object",
|
|
2150
|
+
"properties": {
|
|
2151
|
+
"versions": {
|
|
2152
|
+
"type": "array",
|
|
2153
|
+
"items": {
|
|
2154
|
+
"$ref": "#/components/schemas/MarketplaceListingVersion"
|
|
2155
|
+
}
|
|
2156
|
+
},
|
|
2157
|
+
"has_publishable_draft": {
|
|
2158
|
+
"type": "boolean"
|
|
2159
|
+
}
|
|
2160
|
+
}
|
|
2161
|
+
}
|
|
2162
|
+
]
|
|
2163
|
+
}
|
|
2164
|
+
}
|
|
2165
|
+
}
|
|
2166
|
+
},
|
|
2167
|
+
"404": {
|
|
2168
|
+
"description": "Listing not found"
|
|
2169
|
+
}
|
|
2170
|
+
}
|
|
2171
|
+
},
|
|
2172
|
+
"patch": {
|
|
2173
|
+
"operationId": "updateMarketplaceListing",
|
|
2174
|
+
"summary": "updateMarketplaceListing",
|
|
2175
|
+
"description": "Update listing-level fields",
|
|
2176
|
+
"tags": [
|
|
2177
|
+
"Marketplace Listings"
|
|
2178
|
+
],
|
|
2179
|
+
"parameters": [
|
|
2180
|
+
{
|
|
2181
|
+
"name": "listing_id",
|
|
2182
|
+
"in": "path",
|
|
2183
|
+
"required": true,
|
|
2184
|
+
"schema": {
|
|
2185
|
+
"type": "string"
|
|
2186
|
+
}
|
|
2187
|
+
}
|
|
2188
|
+
],
|
|
2189
|
+
"requestBody": {
|
|
2190
|
+
"required": true,
|
|
2191
|
+
"content": {
|
|
2192
|
+
"application/json": {
|
|
2193
|
+
"schema": {
|
|
2194
|
+
"$ref": "#/components/schemas/MarketplaceListingUpdate"
|
|
2195
|
+
}
|
|
2196
|
+
}
|
|
2197
|
+
}
|
|
2198
|
+
},
|
|
2199
|
+
"responses": {
|
|
2200
|
+
"200": {
|
|
2201
|
+
"description": "Updated marketplace listing",
|
|
2202
|
+
"content": {
|
|
2203
|
+
"application/json": {
|
|
2204
|
+
"schema": {
|
|
2205
|
+
"$ref": "#/components/schemas/MarketplaceListing"
|
|
2206
|
+
}
|
|
2207
|
+
}
|
|
2208
|
+
}
|
|
2209
|
+
},
|
|
2210
|
+
"404": {
|
|
2211
|
+
"description": "Listing not found"
|
|
2212
|
+
}
|
|
2213
|
+
}
|
|
2214
|
+
},
|
|
2215
|
+
"delete": {
|
|
2216
|
+
"operationId": "deleteMarketplaceListing",
|
|
2217
|
+
"summary": "deleteMarketplaceListing",
|
|
2218
|
+
"description": "Delete listing and all versions",
|
|
2219
|
+
"tags": [
|
|
2220
|
+
"Marketplace Listings"
|
|
2221
|
+
],
|
|
2222
|
+
"parameters": [
|
|
2223
|
+
{
|
|
2224
|
+
"name": "listing_id",
|
|
2225
|
+
"in": "path",
|
|
2226
|
+
"required": true,
|
|
2227
|
+
"schema": {
|
|
2228
|
+
"type": "string"
|
|
2229
|
+
}
|
|
2230
|
+
}
|
|
2231
|
+
],
|
|
2232
|
+
"responses": {
|
|
2233
|
+
"204": {
|
|
2234
|
+
"description": "Listing deleted"
|
|
2235
|
+
},
|
|
2236
|
+
"404": {
|
|
2237
|
+
"description": "Listing not found"
|
|
2238
|
+
}
|
|
2239
|
+
}
|
|
2240
|
+
}
|
|
2241
|
+
},
|
|
2242
|
+
"/v1/marketplace-listings/{listing_id}/versions": {
|
|
2243
|
+
"post": {
|
|
2244
|
+
"operationId": "createMarketplaceListingVersion",
|
|
2245
|
+
"summary": "createMarketplaceListingVersion",
|
|
2246
|
+
"description": "Create a draft version; auto-snapshots resources, requiredFeatures, recommendedApps from current blueprint",
|
|
2247
|
+
"tags": [
|
|
2248
|
+
"Marketplace Listing Versions"
|
|
2249
|
+
],
|
|
2250
|
+
"parameters": [
|
|
2251
|
+
{
|
|
2252
|
+
"name": "listing_id",
|
|
2253
|
+
"in": "path",
|
|
2254
|
+
"required": true,
|
|
2255
|
+
"schema": {
|
|
2256
|
+
"type": "string"
|
|
2257
|
+
}
|
|
2258
|
+
}
|
|
2259
|
+
],
|
|
2260
|
+
"responses": {
|
|
2261
|
+
"201": {
|
|
2262
|
+
"description": "Draft version created",
|
|
2263
|
+
"content": {
|
|
2264
|
+
"application/json": {
|
|
2265
|
+
"schema": {
|
|
2266
|
+
"$ref": "#/components/schemas/MarketplaceListingVersion"
|
|
2267
|
+
}
|
|
2268
|
+
}
|
|
2269
|
+
}
|
|
2270
|
+
},
|
|
2271
|
+
"404": {
|
|
2272
|
+
"description": "Listing not found"
|
|
2273
|
+
}
|
|
2274
|
+
}
|
|
2275
|
+
},
|
|
2276
|
+
"get": {
|
|
2277
|
+
"operationId": "listMarketplaceListingVersions",
|
|
2278
|
+
"summary": "listMarketplaceListingVersions",
|
|
2279
|
+
"description": "List all versions for a listing, newest first",
|
|
2280
|
+
"tags": [
|
|
2281
|
+
"Marketplace Listing Versions"
|
|
2282
|
+
],
|
|
2283
|
+
"parameters": [
|
|
2284
|
+
{
|
|
2285
|
+
"name": "listing_id",
|
|
2286
|
+
"in": "path",
|
|
2287
|
+
"required": true,
|
|
2288
|
+
"schema": {
|
|
2289
|
+
"type": "string"
|
|
2290
|
+
}
|
|
2291
|
+
}
|
|
2292
|
+
],
|
|
2293
|
+
"responses": {
|
|
2294
|
+
"200": {
|
|
2295
|
+
"description": "List of versions",
|
|
2296
|
+
"content": {
|
|
2297
|
+
"application/json": {
|
|
2298
|
+
"schema": {
|
|
2299
|
+
"type": "object",
|
|
2300
|
+
"properties": {
|
|
2301
|
+
"versions": {
|
|
2302
|
+
"type": "array",
|
|
2303
|
+
"items": {
|
|
2304
|
+
"$ref": "#/components/schemas/MarketplaceListingVersion"
|
|
2305
|
+
}
|
|
2306
|
+
}
|
|
2307
|
+
}
|
|
2308
|
+
}
|
|
2309
|
+
}
|
|
2310
|
+
}
|
|
2311
|
+
}
|
|
2312
|
+
}
|
|
2313
|
+
}
|
|
2314
|
+
},
|
|
2315
|
+
"/v1/marketplace-listings/{listing_id}/versions/{version_id}": {
|
|
2316
|
+
"patch": {
|
|
2317
|
+
"operationId": "updateMarketplaceListingVersion",
|
|
2318
|
+
"summary": "updateMarketplaceListingVersion",
|
|
2319
|
+
"description": "Update updateNote, requiredFeatures, or recommendedApps on a draft version",
|
|
2320
|
+
"tags": [
|
|
2321
|
+
"Marketplace Listing Versions"
|
|
2322
|
+
],
|
|
2323
|
+
"parameters": [
|
|
2324
|
+
{
|
|
2325
|
+
"name": "listing_id",
|
|
2326
|
+
"in": "path",
|
|
2327
|
+
"required": true,
|
|
2328
|
+
"schema": {
|
|
2329
|
+
"type": "string"
|
|
2330
|
+
}
|
|
2331
|
+
},
|
|
2332
|
+
{
|
|
2333
|
+
"name": "version_id",
|
|
2334
|
+
"in": "path",
|
|
2335
|
+
"required": true,
|
|
2336
|
+
"schema": {
|
|
2337
|
+
"type": "string"
|
|
2338
|
+
}
|
|
2339
|
+
}
|
|
2340
|
+
],
|
|
2341
|
+
"requestBody": {
|
|
2342
|
+
"required": true,
|
|
2343
|
+
"content": {
|
|
2344
|
+
"application/json": {
|
|
2345
|
+
"schema": {
|
|
2346
|
+
"type": "object",
|
|
2347
|
+
"properties": {
|
|
2348
|
+
"update_note": {
|
|
2349
|
+
"type": "string",
|
|
2350
|
+
"nullable": true
|
|
2351
|
+
},
|
|
2352
|
+
"required_features": {
|
|
2353
|
+
"type": "array",
|
|
2354
|
+
"items": {
|
|
2355
|
+
"type": "string"
|
|
2356
|
+
}
|
|
2357
|
+
},
|
|
2358
|
+
"recommended_apps": {
|
|
2359
|
+
"type": "array",
|
|
2360
|
+
"items": {
|
|
2361
|
+
"type": "string"
|
|
2362
|
+
}
|
|
2363
|
+
}
|
|
2364
|
+
}
|
|
2365
|
+
}
|
|
2366
|
+
}
|
|
2367
|
+
}
|
|
2368
|
+
},
|
|
2369
|
+
"responses": {
|
|
2370
|
+
"200": {
|
|
2371
|
+
"description": "Updated version",
|
|
2372
|
+
"content": {
|
|
2373
|
+
"application/json": {
|
|
2374
|
+
"schema": {
|
|
2375
|
+
"$ref": "#/components/schemas/MarketplaceListingVersion"
|
|
2376
|
+
}
|
|
2377
|
+
}
|
|
2378
|
+
}
|
|
2379
|
+
},
|
|
2380
|
+
"400": {
|
|
2381
|
+
"description": "Cannot update non-draft version"
|
|
2382
|
+
},
|
|
2383
|
+
"404": {
|
|
2384
|
+
"description": "Version not found"
|
|
2385
|
+
}
|
|
2386
|
+
}
|
|
2387
|
+
}
|
|
2388
|
+
},
|
|
2389
|
+
"/v1/marketplace-listings/{listing_id}/versions/{version_id}/publish": {
|
|
2390
|
+
"post": {
|
|
2391
|
+
"operationId": "publishMarketplaceListingVersion",
|
|
2392
|
+
"summary": "publishMarketplaceListingVersion",
|
|
2393
|
+
"description": "Publish a draft version; archives the previous live version",
|
|
2394
|
+
"tags": [
|
|
2395
|
+
"Marketplace Listing Versions"
|
|
2396
|
+
],
|
|
2397
|
+
"parameters": [
|
|
2398
|
+
{
|
|
2399
|
+
"name": "listing_id",
|
|
2400
|
+
"in": "path",
|
|
2401
|
+
"required": true,
|
|
2402
|
+
"schema": {
|
|
2403
|
+
"type": "string"
|
|
2404
|
+
}
|
|
2405
|
+
},
|
|
2406
|
+
{
|
|
2407
|
+
"name": "version_id",
|
|
2408
|
+
"in": "path",
|
|
2409
|
+
"required": true,
|
|
2410
|
+
"schema": {
|
|
2411
|
+
"type": "string"
|
|
2412
|
+
}
|
|
2413
|
+
}
|
|
2414
|
+
],
|
|
2415
|
+
"requestBody": {
|
|
2416
|
+
"required": true,
|
|
2417
|
+
"content": {
|
|
2418
|
+
"application/json": {
|
|
2419
|
+
"schema": {
|
|
2420
|
+
"type": "object",
|
|
2421
|
+
"required": [
|
|
2422
|
+
"version_name"
|
|
2423
|
+
],
|
|
2424
|
+
"properties": {
|
|
2425
|
+
"version_name": {
|
|
2426
|
+
"type": "string"
|
|
2427
|
+
},
|
|
2428
|
+
"update_note": {
|
|
2429
|
+
"type": "string",
|
|
2430
|
+
"nullable": true
|
|
2431
|
+
}
|
|
2432
|
+
}
|
|
2433
|
+
}
|
|
2434
|
+
}
|
|
2435
|
+
}
|
|
2436
|
+
},
|
|
2437
|
+
"responses": {
|
|
2438
|
+
"200": {
|
|
2439
|
+
"description": "Published version",
|
|
2440
|
+
"content": {
|
|
2441
|
+
"application/json": {
|
|
2442
|
+
"schema": {
|
|
2443
|
+
"$ref": "#/components/schemas/MarketplaceListingVersion"
|
|
2444
|
+
}
|
|
2445
|
+
}
|
|
2446
|
+
}
|
|
2447
|
+
},
|
|
2448
|
+
"400": {
|
|
2449
|
+
"description": "Version not publishable or version_name already taken"
|
|
2450
|
+
},
|
|
2451
|
+
"404": {
|
|
2452
|
+
"description": "Version not found"
|
|
2453
|
+
}
|
|
2454
|
+
}
|
|
2455
|
+
}
|
|
2456
|
+
},
|
|
2457
|
+
"/v3/blueprint-manifest/blueprint:install": {
|
|
2458
|
+
"post": {
|
|
2459
|
+
"operationId": "installBlueprintV3",
|
|
2460
|
+
"summary": "Install Blueprint V3",
|
|
2461
|
+
"description": "Install a blueprint using the V3 engine (direct API calls, no Terraform).\nCreates resources in topological order with global ID replacement.\nSupports checkpoint-based resume on failure.\n",
|
|
2462
|
+
"tags": [
|
|
2463
|
+
"Blueprints"
|
|
2464
|
+
],
|
|
2465
|
+
"requestBody": {
|
|
2466
|
+
"required": true,
|
|
2467
|
+
"content": {
|
|
2468
|
+
"application/json": {
|
|
2469
|
+
"schema": {
|
|
2470
|
+
"type": "object",
|
|
2471
|
+
"properties": {
|
|
2472
|
+
"source_org_id": {
|
|
2473
|
+
"type": "string"
|
|
2474
|
+
},
|
|
2475
|
+
"source_blueprint_id": {
|
|
2476
|
+
"$ref": "#/components/schemas/BlueprintID"
|
|
2477
|
+
},
|
|
2478
|
+
"source_blueprint_file": {
|
|
2479
|
+
"type": "string",
|
|
2480
|
+
"description": "S3 key to the blueprint zip file"
|
|
2481
|
+
},
|
|
2482
|
+
"destination_org_id": {
|
|
2483
|
+
"type": "string"
|
|
2484
|
+
},
|
|
2485
|
+
"destination_blueprint_id": {
|
|
2486
|
+
"$ref": "#/components/schemas/BlueprintID"
|
|
2487
|
+
},
|
|
2488
|
+
"destination_auth_token": {
|
|
2489
|
+
"type": "string",
|
|
2490
|
+
"description": "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."
|
|
2491
|
+
},
|
|
2492
|
+
"options": {
|
|
2493
|
+
"$ref": "#/components/schemas/BlueprintInstallationJobOptions"
|
|
2494
|
+
},
|
|
2495
|
+
"slug": {
|
|
2496
|
+
"type": "string",
|
|
2497
|
+
"description": "Slug for marketplace blueprint consistency"
|
|
2498
|
+
}
|
|
2499
|
+
}
|
|
2500
|
+
}
|
|
2501
|
+
}
|
|
2502
|
+
}
|
|
2503
|
+
},
|
|
2504
|
+
"responses": {
|
|
2505
|
+
"202": {
|
|
2506
|
+
"description": "V3 install job started",
|
|
2507
|
+
"headers": {
|
|
2508
|
+
"Location": {
|
|
2509
|
+
"description": "URL to poll the job",
|
|
2510
|
+
"schema": {
|
|
2511
|
+
"type": "string"
|
|
2512
|
+
}
|
|
2513
|
+
}
|
|
2514
|
+
},
|
|
2515
|
+
"content": {
|
|
2516
|
+
"application/json": {
|
|
2517
|
+
"schema": {
|
|
2518
|
+
"type": "object",
|
|
2519
|
+
"properties": {
|
|
2520
|
+
"job_id": {
|
|
2521
|
+
"$ref": "#/components/schemas/BlueprintJobID"
|
|
2522
|
+
},
|
|
2523
|
+
"destination_blueprint_id": {
|
|
2524
|
+
"$ref": "#/components/schemas/BlueprintID"
|
|
2525
|
+
}
|
|
2526
|
+
}
|
|
2527
|
+
}
|
|
2528
|
+
}
|
|
2529
|
+
}
|
|
2530
|
+
}
|
|
2531
|
+
}
|
|
2532
|
+
}
|
|
2533
|
+
},
|
|
2534
|
+
"/v3/blueprint-manifest/blueprints/{blueprint_id}/lineage": {
|
|
2535
|
+
"get": {
|
|
2536
|
+
"operationId": "getBlueprintLineageV3",
|
|
2537
|
+
"summary": "Get Blueprint Lineage V3",
|
|
2538
|
+
"description": "Returns the lineage registry entries for a blueprint's resources in the current org.\nShows the mapping between source lineage IDs and target resource IDs.\n",
|
|
2539
|
+
"tags": [
|
|
2540
|
+
"Blueprints"
|
|
2541
|
+
],
|
|
2542
|
+
"parameters": [
|
|
2543
|
+
{
|
|
2544
|
+
"in": "path",
|
|
2545
|
+
"required": true,
|
|
2546
|
+
"name": "blueprint_id",
|
|
2547
|
+
"schema": {
|
|
2548
|
+
"$ref": "#/components/schemas/BlueprintID"
|
|
2549
|
+
}
|
|
2550
|
+
}
|
|
2551
|
+
],
|
|
2552
|
+
"responses": {
|
|
2553
|
+
"200": {
|
|
2554
|
+
"description": "Lineage entries for the blueprint",
|
|
2555
|
+
"content": {
|
|
2556
|
+
"application/json": {
|
|
2557
|
+
"schema": {
|
|
2558
|
+
"type": "object",
|
|
2559
|
+
"properties": {
|
|
2560
|
+
"total": {
|
|
2561
|
+
"type": "integer"
|
|
2562
|
+
},
|
|
2563
|
+
"entries": {
|
|
2564
|
+
"type": "array",
|
|
2565
|
+
"items": {
|
|
2566
|
+
"$ref": "#/components/schemas/LineageEntry"
|
|
2567
|
+
}
|
|
2568
|
+
}
|
|
2569
|
+
}
|
|
2570
|
+
}
|
|
2571
|
+
}
|
|
2572
|
+
}
|
|
2573
|
+
}
|
|
2574
|
+
}
|
|
2575
|
+
}
|
|
2576
|
+
}
|
|
2577
|
+
},
|
|
2578
|
+
"components": {
|
|
2579
|
+
"schemas": {
|
|
2580
|
+
"LineageEntry": {
|
|
2581
|
+
"type": "object",
|
|
2582
|
+
"properties": {
|
|
2583
|
+
"lineage_id": {
|
|
2584
|
+
"type": "string",
|
|
2585
|
+
"description": "Immutable resource identity across orgs"
|
|
2586
|
+
},
|
|
2587
|
+
"target_id": {
|
|
2588
|
+
"type": "string",
|
|
2589
|
+
"description": "Resource ID in the destination org"
|
|
2590
|
+
},
|
|
2591
|
+
"resource_type": {
|
|
2592
|
+
"$ref": "#/components/schemas/ResourceNodeType"
|
|
2593
|
+
},
|
|
2594
|
+
"blueprint_instance_ids": {
|
|
2595
|
+
"type": "array",
|
|
2596
|
+
"items": {
|
|
2597
|
+
"type": "string"
|
|
2598
|
+
}
|
|
2599
|
+
},
|
|
2600
|
+
"fidelity": {
|
|
2601
|
+
"type": "string",
|
|
2602
|
+
"enum": [
|
|
2603
|
+
"full",
|
|
2604
|
+
"partial"
|
|
2605
|
+
]
|
|
2606
|
+
},
|
|
2607
|
+
"last_synced_at": {
|
|
2608
|
+
"type": "string",
|
|
2609
|
+
"format": "date-time"
|
|
2610
|
+
}
|
|
2611
|
+
}
|
|
2612
|
+
},
|
|
2613
|
+
"BlueprintID": {
|
|
2614
|
+
"type": "string",
|
|
2615
|
+
"description": "ID of a blueprint",
|
|
2616
|
+
"example": "c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341"
|
|
2617
|
+
},
|
|
2618
|
+
"BlueprintResourceID": {
|
|
2619
|
+
"type": "string",
|
|
2620
|
+
"description": "ID of a blueprint resource",
|
|
2621
|
+
"example": "c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341"
|
|
2622
|
+
},
|
|
2623
|
+
"CommonBlueprintFields": {
|
|
2624
|
+
"type": "object",
|
|
2625
|
+
"properties": {
|
|
2626
|
+
"id": {
|
|
2627
|
+
"$ref": "#/components/schemas/BlueprintID"
|
|
2628
|
+
},
|
|
2629
|
+
"title": {
|
|
2630
|
+
"type": "string"
|
|
2631
|
+
},
|
|
2632
|
+
"slug": {
|
|
2633
|
+
"type": "string"
|
|
2634
|
+
},
|
|
2635
|
+
"description": {
|
|
2636
|
+
"type": "object",
|
|
2637
|
+
"properties": {
|
|
2638
|
+
"preinstall": {
|
|
2639
|
+
"type": "string",
|
|
2640
|
+
"description": "Markdown content shown before starting to install the blueprint",
|
|
2641
|
+
"example": "This is the content of the preinstall.md file which contains the blueprint description.\n"
|
|
2642
|
+
},
|
|
2643
|
+
"postinstall": {
|
|
2644
|
+
"type": "string",
|
|
2645
|
+
"description": "Markdown content to be displayed when showing the plan to install blueprint",
|
|
2646
|
+
"example": "This is the content of the postinstall.md file\n"
|
|
2647
|
+
}
|
|
2648
|
+
}
|
|
2649
|
+
},
|
|
2650
|
+
"version": {
|
|
2651
|
+
"type": "string"
|
|
2652
|
+
},
|
|
2653
|
+
"deployments": {
|
|
2654
|
+
"type": "array",
|
|
2655
|
+
"items": {
|
|
2656
|
+
"type": "object",
|
|
2657
|
+
"properties": {
|
|
2658
|
+
"source_org_id": {
|
|
2659
|
+
"type": "string"
|
|
2660
|
+
},
|
|
2661
|
+
"source_blueprint_id": {
|
|
2662
|
+
"type": "string"
|
|
2663
|
+
},
|
|
2664
|
+
"destination_org_id": {
|
|
2665
|
+
"type": "string"
|
|
2666
|
+
},
|
|
2667
|
+
"destination_blueprint_id": {
|
|
2668
|
+
"type": "string"
|
|
2669
|
+
},
|
|
2670
|
+
"triggered_at": {
|
|
2671
|
+
"type": "string",
|
|
2672
|
+
"format": "date-time"
|
|
2673
|
+
},
|
|
2674
|
+
"note": {
|
|
2675
|
+
"type": "string",
|
|
2676
|
+
"description": "User-provided note about this synchronization"
|
|
2677
|
+
}
|
|
2678
|
+
}
|
|
2679
|
+
}
|
|
2680
|
+
},
|
|
2681
|
+
"is_verified": {
|
|
2682
|
+
"type": "boolean",
|
|
2683
|
+
"description": "Whether the blueprint is verified by epilot"
|
|
2684
|
+
},
|
|
2685
|
+
"latest_verification": {
|
|
2686
|
+
"$ref": "#/components/schemas/LatestBlueprintVerification"
|
|
2687
|
+
},
|
|
2688
|
+
"ignored_resource_addresses": {
|
|
2689
|
+
"type": "array",
|
|
2690
|
+
"description": "Resource addresses excluded during the latest install/update and ignored by verification.",
|
|
2691
|
+
"items": {
|
|
2692
|
+
"type": "string"
|
|
2693
|
+
}
|
|
2694
|
+
},
|
|
2695
|
+
"installation_status": {
|
|
2696
|
+
"type": "string",
|
|
2697
|
+
"enum": [
|
|
2698
|
+
"IN_PROGRESS",
|
|
2699
|
+
"CANCELED",
|
|
2700
|
+
"PARTIAL",
|
|
2701
|
+
"SUCCESS",
|
|
2702
|
+
"FAILED"
|
|
2703
|
+
]
|
|
2704
|
+
},
|
|
2705
|
+
"created_at": {
|
|
2706
|
+
"type": "string",
|
|
2707
|
+
"format": "date-time"
|
|
2708
|
+
},
|
|
2709
|
+
"updated_at": {
|
|
2710
|
+
"type": "string",
|
|
2711
|
+
"format": "date-time"
|
|
2712
|
+
},
|
|
2713
|
+
"created_by": {
|
|
2714
|
+
"$ref": "#/components/schemas/CallerIdentity"
|
|
2715
|
+
},
|
|
2716
|
+
"updated_by": {
|
|
2717
|
+
"$ref": "#/components/schemas/CallerIdentity"
|
|
2718
|
+
},
|
|
2719
|
+
"installation_job_ids": {
|
|
2720
|
+
"type": "array",
|
|
2721
|
+
"items": {
|
|
2722
|
+
"$ref": "#/components/schemas/BlueprintJobID"
|
|
2723
|
+
}
|
|
2724
|
+
},
|
|
2725
|
+
"source_blueprint_id": {
|
|
2726
|
+
"description": "ID of the blueprint that brought this blueprint to the destination org (deployed or installed)",
|
|
2727
|
+
"allOf": [
|
|
2728
|
+
{
|
|
2729
|
+
"$ref": "#/components/schemas/BlueprintID"
|
|
2730
|
+
}
|
|
2731
|
+
]
|
|
2732
|
+
},
|
|
2733
|
+
"archived": {
|
|
2734
|
+
"type": "boolean",
|
|
2735
|
+
"description": "Whether the blueprint is archived (soft-deleted). Archived blueprints are hidden from the main list.",
|
|
2736
|
+
"default": false
|
|
2737
|
+
},
|
|
2738
|
+
"docs_url": {
|
|
2739
|
+
"type": "string",
|
|
2740
|
+
"description": "URL to the blueprint documentation"
|
|
2741
|
+
},
|
|
2742
|
+
"recommended_apps": {
|
|
2743
|
+
"type": "array",
|
|
2744
|
+
"items": {
|
|
2745
|
+
"type": "string"
|
|
2746
|
+
},
|
|
2747
|
+
"description": "List of recommended app IDs for the blueprint"
|
|
2748
|
+
},
|
|
2749
|
+
"required_features": {
|
|
2750
|
+
"type": "object",
|
|
2751
|
+
"description": "Feature constraints for blueprint installation",
|
|
2752
|
+
"properties": {
|
|
2753
|
+
"enabled": {
|
|
2754
|
+
"type": "array",
|
|
2755
|
+
"items": {
|
|
2756
|
+
"type": "string"
|
|
2757
|
+
},
|
|
2758
|
+
"description": "Features that must be enabled in the target org"
|
|
2759
|
+
},
|
|
2760
|
+
"disabled": {
|
|
2761
|
+
"type": "array",
|
|
2762
|
+
"items": {
|
|
2763
|
+
"type": "string"
|
|
2764
|
+
},
|
|
2765
|
+
"description": "Features that must be disabled in the target org"
|
|
2766
|
+
}
|
|
2767
|
+
}
|
|
2768
|
+
},
|
|
2769
|
+
"zip_file_name": {
|
|
2770
|
+
"type": "string",
|
|
2771
|
+
"description": "Custom name for the exported zip file"
|
|
2772
|
+
}
|
|
2773
|
+
},
|
|
2018
2774
|
"required": [
|
|
2019
2775
|
"title"
|
|
2020
2776
|
]
|
|
@@ -2150,6 +2906,23 @@
|
|
|
2150
2906
|
"type": "string"
|
|
2151
2907
|
}
|
|
2152
2908
|
},
|
|
2909
|
+
"required_features": {
|
|
2910
|
+
"type": "object",
|
|
2911
|
+
"properties": {
|
|
2912
|
+
"enabled": {
|
|
2913
|
+
"type": "array",
|
|
2914
|
+
"items": {
|
|
2915
|
+
"type": "string"
|
|
2916
|
+
}
|
|
2917
|
+
},
|
|
2918
|
+
"disabled": {
|
|
2919
|
+
"type": "array",
|
|
2920
|
+
"items": {
|
|
2921
|
+
"type": "string"
|
|
2922
|
+
}
|
|
2923
|
+
}
|
|
2924
|
+
}
|
|
2925
|
+
},
|
|
2153
2926
|
"created_at": {
|
|
2154
2927
|
"type": "string",
|
|
2155
2928
|
"format": "date-time"
|
|
@@ -2197,7 +2970,9 @@
|
|
|
2197
2970
|
},
|
|
2198
2971
|
"source_type": {
|
|
2199
2972
|
"type": "string",
|
|
2200
|
-
"
|
|
2973
|
+
"enum": [
|
|
2974
|
+
"custom"
|
|
2975
|
+
]
|
|
2201
2976
|
}
|
|
2202
2977
|
}
|
|
2203
2978
|
}
|
|
@@ -2216,7 +2991,9 @@
|
|
|
2216
2991
|
"properties": {
|
|
2217
2992
|
"source_type": {
|
|
2218
2993
|
"type": "string",
|
|
2219
|
-
"
|
|
2994
|
+
"enum": [
|
|
2995
|
+
"file"
|
|
2996
|
+
]
|
|
2220
2997
|
},
|
|
2221
2998
|
"resources": {
|
|
2222
2999
|
"type": "array",
|
|
@@ -2245,7 +3022,9 @@
|
|
|
2245
3022
|
},
|
|
2246
3023
|
"source_type": {
|
|
2247
3024
|
"type": "string",
|
|
2248
|
-
"
|
|
3025
|
+
"enum": [
|
|
3026
|
+
"marketplace"
|
|
3027
|
+
]
|
|
2249
3028
|
},
|
|
2250
3029
|
"resources": {
|
|
2251
3030
|
"type": "array",
|
|
@@ -2341,7 +3120,9 @@
|
|
|
2341
3120
|
"properties": {
|
|
2342
3121
|
"source_type": {
|
|
2343
3122
|
"type": "string",
|
|
2344
|
-
"
|
|
3123
|
+
"enum": [
|
|
3124
|
+
"deploy"
|
|
3125
|
+
]
|
|
2345
3126
|
},
|
|
2346
3127
|
"resources": {
|
|
2347
3128
|
"type": "array",
|
|
@@ -2366,7 +3147,9 @@
|
|
|
2366
3147
|
"properties": {
|
|
2367
3148
|
"source_type": {
|
|
2368
3149
|
"type": "string",
|
|
2369
|
-
"
|
|
3150
|
+
"enum": [
|
|
3151
|
+
"app"
|
|
3152
|
+
]
|
|
2370
3153
|
},
|
|
2371
3154
|
"resources": {
|
|
2372
3155
|
"type": "array",
|
|
@@ -2497,6 +3280,7 @@
|
|
|
2497
3280
|
"WAITING_USER_ACTION",
|
|
2498
3281
|
"CANCELED",
|
|
2499
3282
|
"SUCCESS",
|
|
3283
|
+
"PARTIAL_SUCCESS",
|
|
2500
3284
|
"FAILED"
|
|
2501
3285
|
]
|
|
2502
3286
|
}
|
|
@@ -2517,6 +3301,9 @@
|
|
|
2517
3301
|
},
|
|
2518
3302
|
{
|
|
2519
3303
|
"$ref": "#/components/schemas/BlueprintValidateJob"
|
|
3304
|
+
},
|
|
3305
|
+
{
|
|
3306
|
+
"$ref": "#/components/schemas/BlueprintVerificationJob"
|
|
2520
3307
|
}
|
|
2521
3308
|
]
|
|
2522
3309
|
},
|
|
@@ -2576,7 +3363,162 @@
|
|
|
2576
3363
|
}
|
|
2577
3364
|
}
|
|
2578
3365
|
}
|
|
2579
|
-
]
|
|
3366
|
+
]
|
|
3367
|
+
},
|
|
3368
|
+
"BlueprintVerificationJob": {
|
|
3369
|
+
"allOf": [
|
|
3370
|
+
{
|
|
3371
|
+
"$ref": "#/components/schemas/CommonBlueprintJobFields"
|
|
3372
|
+
},
|
|
3373
|
+
{
|
|
3374
|
+
"type": "object",
|
|
3375
|
+
"properties": {
|
|
3376
|
+
"source_org_id": {
|
|
3377
|
+
"type": "string"
|
|
3378
|
+
},
|
|
3379
|
+
"source_blueprint_id": {
|
|
3380
|
+
"$ref": "#/components/schemas/BlueprintID"
|
|
3381
|
+
},
|
|
3382
|
+
"destination_org_id": {
|
|
3383
|
+
"type": "string"
|
|
3384
|
+
},
|
|
3385
|
+
"destination_blueprint_id": {
|
|
3386
|
+
"$ref": "#/components/schemas/BlueprintID"
|
|
3387
|
+
},
|
|
3388
|
+
"status": {
|
|
3389
|
+
"type": "string",
|
|
3390
|
+
"enum": [
|
|
3391
|
+
"IN_PROGRESS",
|
|
3392
|
+
"SUCCESS",
|
|
3393
|
+
"FAILED"
|
|
3394
|
+
]
|
|
3395
|
+
},
|
|
3396
|
+
"summary": {
|
|
3397
|
+
"$ref": "#/components/schemas/VerificationSummary"
|
|
3398
|
+
},
|
|
3399
|
+
"resource_results": {
|
|
3400
|
+
"type": "array",
|
|
3401
|
+
"items": {
|
|
3402
|
+
"$ref": "#/components/schemas/ResourceVerificationResult"
|
|
3403
|
+
}
|
|
3404
|
+
},
|
|
3405
|
+
"resource_results_s3_key": {
|
|
3406
|
+
"type": "string",
|
|
3407
|
+
"description": "S3 key for detailed results when too large for inline storage."
|
|
3408
|
+
}
|
|
3409
|
+
}
|
|
3410
|
+
}
|
|
3411
|
+
]
|
|
3412
|
+
},
|
|
3413
|
+
"LatestBlueprintVerification": {
|
|
3414
|
+
"type": "object",
|
|
3415
|
+
"properties": {
|
|
3416
|
+
"job_id": {
|
|
3417
|
+
"$ref": "#/components/schemas/BlueprintJobID"
|
|
3418
|
+
},
|
|
3419
|
+
"status": {
|
|
3420
|
+
"type": "string",
|
|
3421
|
+
"enum": [
|
|
3422
|
+
"IN_PROGRESS",
|
|
3423
|
+
"SUCCESS",
|
|
3424
|
+
"FAILED"
|
|
3425
|
+
]
|
|
3426
|
+
},
|
|
3427
|
+
"triggered_at": {
|
|
3428
|
+
"type": "string",
|
|
3429
|
+
"format": "date-time"
|
|
3430
|
+
},
|
|
3431
|
+
"source_org_id": {
|
|
3432
|
+
"type": "string"
|
|
3433
|
+
},
|
|
3434
|
+
"source_blueprint_id": {
|
|
3435
|
+
"$ref": "#/components/schemas/BlueprintID"
|
|
3436
|
+
},
|
|
3437
|
+
"destination_org_id": {
|
|
3438
|
+
"type": "string"
|
|
3439
|
+
},
|
|
3440
|
+
"destination_blueprint_id": {
|
|
3441
|
+
"$ref": "#/components/schemas/BlueprintID"
|
|
3442
|
+
},
|
|
3443
|
+
"summary": {
|
|
3444
|
+
"$ref": "#/components/schemas/VerificationSummary"
|
|
3445
|
+
}
|
|
3446
|
+
}
|
|
3447
|
+
},
|
|
3448
|
+
"VerificationSummary": {
|
|
3449
|
+
"type": "object",
|
|
3450
|
+
"properties": {
|
|
3451
|
+
"total_resources": {
|
|
3452
|
+
"type": "integer"
|
|
3453
|
+
},
|
|
3454
|
+
"matched": {
|
|
3455
|
+
"type": "integer"
|
|
3456
|
+
},
|
|
3457
|
+
"mismatched": {
|
|
3458
|
+
"type": "integer"
|
|
3459
|
+
},
|
|
3460
|
+
"missing_in_destination": {
|
|
3461
|
+
"type": "integer"
|
|
3462
|
+
},
|
|
3463
|
+
"fetch_errors": {
|
|
3464
|
+
"type": "integer"
|
|
3465
|
+
}
|
|
3466
|
+
}
|
|
3467
|
+
},
|
|
3468
|
+
"ResourceVerificationResult": {
|
|
3469
|
+
"type": "object",
|
|
3470
|
+
"properties": {
|
|
3471
|
+
"resource_type": {
|
|
3472
|
+
"$ref": "#/components/schemas/ResourceNodeType"
|
|
3473
|
+
},
|
|
3474
|
+
"resource_name": {
|
|
3475
|
+
"type": "string"
|
|
3476
|
+
},
|
|
3477
|
+
"source_resource_id": {
|
|
3478
|
+
"type": "string"
|
|
3479
|
+
},
|
|
3480
|
+
"destination_resource_id": {
|
|
3481
|
+
"type": "string"
|
|
3482
|
+
},
|
|
3483
|
+
"status": {
|
|
3484
|
+
"type": "string",
|
|
3485
|
+
"enum": [
|
|
3486
|
+
"matched",
|
|
3487
|
+
"mismatched",
|
|
3488
|
+
"missing_in_destination",
|
|
3489
|
+
"fetch_error"
|
|
3490
|
+
]
|
|
3491
|
+
},
|
|
3492
|
+
"field_diffs": {
|
|
3493
|
+
"type": "array",
|
|
3494
|
+
"items": {
|
|
3495
|
+
"$ref": "#/components/schemas/FieldDiff"
|
|
3496
|
+
}
|
|
3497
|
+
},
|
|
3498
|
+
"error": {
|
|
3499
|
+
"type": "string"
|
|
3500
|
+
}
|
|
3501
|
+
}
|
|
3502
|
+
},
|
|
3503
|
+
"FieldDiff": {
|
|
3504
|
+
"type": "object",
|
|
3505
|
+
"properties": {
|
|
3506
|
+
"path": {
|
|
3507
|
+
"type": "string",
|
|
3508
|
+
"description": "JSON path to the differing field (e.g. \"steps[2].name\")"
|
|
3509
|
+
},
|
|
3510
|
+
"source_value": {},
|
|
3511
|
+
"destination_value": {},
|
|
3512
|
+
"diff_type": {
|
|
3513
|
+
"type": "string",
|
|
3514
|
+
"enum": [
|
|
3515
|
+
"value_changed",
|
|
3516
|
+
"field_missing_in_destination",
|
|
3517
|
+
"field_missing_in_source",
|
|
3518
|
+
"type_mismatch"
|
|
3519
|
+
]
|
|
3520
|
+
}
|
|
3521
|
+
}
|
|
2580
3522
|
},
|
|
2581
3523
|
"BlueprintJobEvent": {
|
|
2582
3524
|
"type": "object",
|
|
@@ -2705,6 +3647,7 @@
|
|
|
2705
3647
|
"CANCELED",
|
|
2706
3648
|
"IN_PROGRESS",
|
|
2707
3649
|
"SUCCESS",
|
|
3650
|
+
"PARTIAL_SUCCESS",
|
|
2708
3651
|
"FAILED"
|
|
2709
3652
|
]
|
|
2710
3653
|
},
|
|
@@ -2745,7 +3688,8 @@
|
|
|
2745
3688
|
"validation_rule",
|
|
2746
3689
|
"flow_template",
|
|
2747
3690
|
"taxonomy",
|
|
2748
|
-
"notification_template"
|
|
3691
|
+
"notification_template",
|
|
3692
|
+
"environment_variable"
|
|
2749
3693
|
]
|
|
2750
3694
|
},
|
|
2751
3695
|
"PlanChanges": {
|
|
@@ -3465,6 +4409,418 @@
|
|
|
3465
4409
|
}
|
|
3466
4410
|
}
|
|
3467
4411
|
}
|
|
4412
|
+
},
|
|
4413
|
+
"MarketplaceListing": {
|
|
4414
|
+
"type": "object",
|
|
4415
|
+
"required": [
|
|
4416
|
+
"id",
|
|
4417
|
+
"blueprint_id",
|
|
4418
|
+
"name",
|
|
4419
|
+
"slug",
|
|
4420
|
+
"status"
|
|
4421
|
+
],
|
|
4422
|
+
"properties": {
|
|
4423
|
+
"id": {
|
|
4424
|
+
"type": "string",
|
|
4425
|
+
"format": "uuid"
|
|
4426
|
+
},
|
|
4427
|
+
"blueprint_id": {
|
|
4428
|
+
"type": "string"
|
|
4429
|
+
},
|
|
4430
|
+
"name": {
|
|
4431
|
+
"type": "string"
|
|
4432
|
+
},
|
|
4433
|
+
"slug": {
|
|
4434
|
+
"type": "string"
|
|
4435
|
+
},
|
|
4436
|
+
"logo": {
|
|
4437
|
+
"type": "string",
|
|
4438
|
+
"nullable": true
|
|
4439
|
+
},
|
|
4440
|
+
"documentation_url": {
|
|
4441
|
+
"type": "string",
|
|
4442
|
+
"nullable": true
|
|
4443
|
+
},
|
|
4444
|
+
"pricing_type": {
|
|
4445
|
+
"type": "string",
|
|
4446
|
+
"enum": [
|
|
4447
|
+
"free",
|
|
4448
|
+
"paid",
|
|
4449
|
+
"freemium",
|
|
4450
|
+
"contact_us"
|
|
4451
|
+
],
|
|
4452
|
+
"nullable": true
|
|
4453
|
+
},
|
|
4454
|
+
"support_email": {
|
|
4455
|
+
"type": "string",
|
|
4456
|
+
"nullable": true
|
|
4457
|
+
},
|
|
4458
|
+
"portal_description": {
|
|
4459
|
+
"type": "string",
|
|
4460
|
+
"nullable": true
|
|
4461
|
+
},
|
|
4462
|
+
"teaser_name": {
|
|
4463
|
+
"type": "string",
|
|
4464
|
+
"nullable": true
|
|
4465
|
+
},
|
|
4466
|
+
"teaser_short_description": {
|
|
4467
|
+
"type": "string",
|
|
4468
|
+
"nullable": true
|
|
4469
|
+
},
|
|
4470
|
+
"teaser_thumbnail": {
|
|
4471
|
+
"type": "string",
|
|
4472
|
+
"nullable": true
|
|
4473
|
+
},
|
|
4474
|
+
"details_page_title": {
|
|
4475
|
+
"type": "string",
|
|
4476
|
+
"nullable": true
|
|
4477
|
+
},
|
|
4478
|
+
"details_page_description": {
|
|
4479
|
+
"type": "string",
|
|
4480
|
+
"nullable": true
|
|
4481
|
+
},
|
|
4482
|
+
"details_page_hero_image": {
|
|
4483
|
+
"type": "string",
|
|
4484
|
+
"nullable": true
|
|
4485
|
+
},
|
|
4486
|
+
"details_page_carousel": {
|
|
4487
|
+
"type": "array",
|
|
4488
|
+
"items": {
|
|
4489
|
+
"type": "string"
|
|
4490
|
+
},
|
|
4491
|
+
"nullable": true
|
|
4492
|
+
},
|
|
4493
|
+
"resources_section_description": {
|
|
4494
|
+
"type": "string",
|
|
4495
|
+
"nullable": true
|
|
4496
|
+
},
|
|
4497
|
+
"resources_section_benefits_title": {
|
|
4498
|
+
"type": "string",
|
|
4499
|
+
"nullable": true
|
|
4500
|
+
},
|
|
4501
|
+
"resources_section_benefits_list": {
|
|
4502
|
+
"type": "string",
|
|
4503
|
+
"nullable": true
|
|
4504
|
+
},
|
|
4505
|
+
"resources_section_process_details": {
|
|
4506
|
+
"type": "string",
|
|
4507
|
+
"nullable": true
|
|
4508
|
+
},
|
|
4509
|
+
"partner": {
|
|
4510
|
+
"type": "string",
|
|
4511
|
+
"nullable": true
|
|
4512
|
+
},
|
|
4513
|
+
"partner_subtext": {
|
|
4514
|
+
"type": "string",
|
|
4515
|
+
"nullable": true
|
|
4516
|
+
},
|
|
4517
|
+
"partner_logo": {
|
|
4518
|
+
"type": "string",
|
|
4519
|
+
"nullable": true
|
|
4520
|
+
},
|
|
4521
|
+
"partner_website_link": {
|
|
4522
|
+
"type": "string",
|
|
4523
|
+
"nullable": true
|
|
4524
|
+
},
|
|
4525
|
+
"last_updated_on": {
|
|
4526
|
+
"type": "string",
|
|
4527
|
+
"nullable": true
|
|
4528
|
+
},
|
|
4529
|
+
"requires_customer_portal": {
|
|
4530
|
+
"type": "boolean",
|
|
4531
|
+
"nullable": true
|
|
4532
|
+
},
|
|
4533
|
+
"process_details_section_title": {
|
|
4534
|
+
"type": "string",
|
|
4535
|
+
"nullable": true
|
|
4536
|
+
},
|
|
4537
|
+
"is_new_blueprint": {
|
|
4538
|
+
"type": "boolean",
|
|
4539
|
+
"nullable": true
|
|
4540
|
+
},
|
|
4541
|
+
"available_in": {
|
|
4542
|
+
"type": "string",
|
|
4543
|
+
"nullable": true
|
|
4544
|
+
},
|
|
4545
|
+
"testimonials": {
|
|
4546
|
+
"type": "array",
|
|
4547
|
+
"items": {
|
|
4548
|
+
"type": "string"
|
|
4549
|
+
},
|
|
4550
|
+
"nullable": true
|
|
4551
|
+
},
|
|
4552
|
+
"installation_link": {
|
|
4553
|
+
"type": "string",
|
|
4554
|
+
"nullable": true
|
|
4555
|
+
},
|
|
4556
|
+
"installation_slug": {
|
|
4557
|
+
"type": "string",
|
|
4558
|
+
"nullable": true
|
|
4559
|
+
},
|
|
4560
|
+
"demo_form_link": {
|
|
4561
|
+
"type": "string",
|
|
4562
|
+
"nullable": true
|
|
4563
|
+
},
|
|
4564
|
+
"order": {
|
|
4565
|
+
"type": "number",
|
|
4566
|
+
"nullable": true
|
|
4567
|
+
},
|
|
4568
|
+
"categories": {
|
|
4569
|
+
"type": "array",
|
|
4570
|
+
"items": {
|
|
4571
|
+
"type": "string"
|
|
4572
|
+
},
|
|
4573
|
+
"nullable": true
|
|
4574
|
+
},
|
|
4575
|
+
"main_category": {
|
|
4576
|
+
"type": "array",
|
|
4577
|
+
"items": {
|
|
4578
|
+
"type": "string"
|
|
4579
|
+
},
|
|
4580
|
+
"nullable": true
|
|
4581
|
+
},
|
|
4582
|
+
"status": {
|
|
4583
|
+
"type": "string",
|
|
4584
|
+
"enum": [
|
|
4585
|
+
"draft",
|
|
4586
|
+
"live",
|
|
4587
|
+
"archived"
|
|
4588
|
+
]
|
|
4589
|
+
},
|
|
4590
|
+
"created_at": {
|
|
4591
|
+
"type": "string",
|
|
4592
|
+
"format": "date-time"
|
|
4593
|
+
},
|
|
4594
|
+
"updated_at": {
|
|
4595
|
+
"type": "string",
|
|
4596
|
+
"format": "date-time"
|
|
4597
|
+
}
|
|
4598
|
+
}
|
|
4599
|
+
},
|
|
4600
|
+
"MarketplaceListingUpdate": {
|
|
4601
|
+
"type": "object",
|
|
4602
|
+
"properties": {
|
|
4603
|
+
"name": {
|
|
4604
|
+
"type": "string"
|
|
4605
|
+
},
|
|
4606
|
+
"slug": {
|
|
4607
|
+
"type": "string"
|
|
4608
|
+
},
|
|
4609
|
+
"logo": {
|
|
4610
|
+
"type": "string",
|
|
4611
|
+
"nullable": true
|
|
4612
|
+
},
|
|
4613
|
+
"documentation_url": {
|
|
4614
|
+
"type": "string",
|
|
4615
|
+
"nullable": true
|
|
4616
|
+
},
|
|
4617
|
+
"pricing_type": {
|
|
4618
|
+
"type": "string",
|
|
4619
|
+
"enum": [
|
|
4620
|
+
"free",
|
|
4621
|
+
"paid",
|
|
4622
|
+
"freemium",
|
|
4623
|
+
"contact_us"
|
|
4624
|
+
],
|
|
4625
|
+
"nullable": true
|
|
4626
|
+
},
|
|
4627
|
+
"support_email": {
|
|
4628
|
+
"type": "string",
|
|
4629
|
+
"nullable": true
|
|
4630
|
+
},
|
|
4631
|
+
"portal_description": {
|
|
4632
|
+
"type": "string",
|
|
4633
|
+
"nullable": true
|
|
4634
|
+
},
|
|
4635
|
+
"teaser_name": {
|
|
4636
|
+
"type": "string",
|
|
4637
|
+
"nullable": true
|
|
4638
|
+
},
|
|
4639
|
+
"teaser_short_description": {
|
|
4640
|
+
"type": "string",
|
|
4641
|
+
"nullable": true
|
|
4642
|
+
},
|
|
4643
|
+
"teaser_thumbnail": {
|
|
4644
|
+
"type": "string",
|
|
4645
|
+
"nullable": true
|
|
4646
|
+
},
|
|
4647
|
+
"details_page_title": {
|
|
4648
|
+
"type": "string",
|
|
4649
|
+
"nullable": true
|
|
4650
|
+
},
|
|
4651
|
+
"details_page_description": {
|
|
4652
|
+
"type": "string",
|
|
4653
|
+
"nullable": true
|
|
4654
|
+
},
|
|
4655
|
+
"details_page_hero_image": {
|
|
4656
|
+
"type": "string",
|
|
4657
|
+
"nullable": true
|
|
4658
|
+
},
|
|
4659
|
+
"details_page_carousel": {
|
|
4660
|
+
"type": "array",
|
|
4661
|
+
"items": {
|
|
4662
|
+
"type": "string"
|
|
4663
|
+
},
|
|
4664
|
+
"nullable": true
|
|
4665
|
+
},
|
|
4666
|
+
"resources_section_description": {
|
|
4667
|
+
"type": "string",
|
|
4668
|
+
"nullable": true
|
|
4669
|
+
},
|
|
4670
|
+
"resources_section_benefits_title": {
|
|
4671
|
+
"type": "string",
|
|
4672
|
+
"nullable": true
|
|
4673
|
+
},
|
|
4674
|
+
"resources_section_benefits_list": {
|
|
4675
|
+
"type": "string",
|
|
4676
|
+
"nullable": true
|
|
4677
|
+
},
|
|
4678
|
+
"resources_section_process_details": {
|
|
4679
|
+
"type": "string",
|
|
4680
|
+
"nullable": true
|
|
4681
|
+
},
|
|
4682
|
+
"partner": {
|
|
4683
|
+
"type": "string",
|
|
4684
|
+
"nullable": true
|
|
4685
|
+
},
|
|
4686
|
+
"partner_subtext": {
|
|
4687
|
+
"type": "string",
|
|
4688
|
+
"nullable": true
|
|
4689
|
+
},
|
|
4690
|
+
"partner_logo": {
|
|
4691
|
+
"type": "string",
|
|
4692
|
+
"nullable": true
|
|
4693
|
+
},
|
|
4694
|
+
"partner_website_link": {
|
|
4695
|
+
"type": "string",
|
|
4696
|
+
"nullable": true
|
|
4697
|
+
},
|
|
4698
|
+
"last_updated_on": {
|
|
4699
|
+
"type": "string",
|
|
4700
|
+
"nullable": true
|
|
4701
|
+
},
|
|
4702
|
+
"requires_customer_portal": {
|
|
4703
|
+
"type": "boolean",
|
|
4704
|
+
"nullable": true
|
|
4705
|
+
},
|
|
4706
|
+
"process_details_section_title": {
|
|
4707
|
+
"type": "string",
|
|
4708
|
+
"nullable": true
|
|
4709
|
+
},
|
|
4710
|
+
"is_new_blueprint": {
|
|
4711
|
+
"type": "boolean",
|
|
4712
|
+
"nullable": true
|
|
4713
|
+
},
|
|
4714
|
+
"available_in": {
|
|
4715
|
+
"type": "string",
|
|
4716
|
+
"nullable": true
|
|
4717
|
+
},
|
|
4718
|
+
"testimonials": {
|
|
4719
|
+
"type": "array",
|
|
4720
|
+
"items": {
|
|
4721
|
+
"type": "string"
|
|
4722
|
+
},
|
|
4723
|
+
"nullable": true
|
|
4724
|
+
},
|
|
4725
|
+
"installation_link": {
|
|
4726
|
+
"type": "string",
|
|
4727
|
+
"nullable": true
|
|
4728
|
+
},
|
|
4729
|
+
"installation_slug": {
|
|
4730
|
+
"type": "string",
|
|
4731
|
+
"nullable": true
|
|
4732
|
+
},
|
|
4733
|
+
"demo_form_link": {
|
|
4734
|
+
"type": "string",
|
|
4735
|
+
"nullable": true
|
|
4736
|
+
},
|
|
4737
|
+
"order": {
|
|
4738
|
+
"type": "number",
|
|
4739
|
+
"nullable": true
|
|
4740
|
+
},
|
|
4741
|
+
"categories": {
|
|
4742
|
+
"type": "array",
|
|
4743
|
+
"items": {
|
|
4744
|
+
"type": "string"
|
|
4745
|
+
},
|
|
4746
|
+
"nullable": true
|
|
4747
|
+
},
|
|
4748
|
+
"main_category": {
|
|
4749
|
+
"type": "array",
|
|
4750
|
+
"items": {
|
|
4751
|
+
"type": "string"
|
|
4752
|
+
},
|
|
4753
|
+
"nullable": true
|
|
4754
|
+
}
|
|
4755
|
+
}
|
|
4756
|
+
},
|
|
4757
|
+
"MarketplaceListingVersion": {
|
|
4758
|
+
"type": "object",
|
|
4759
|
+
"required": [
|
|
4760
|
+
"id",
|
|
4761
|
+
"listing_id",
|
|
4762
|
+
"status",
|
|
4763
|
+
"draft_label",
|
|
4764
|
+
"created_at"
|
|
4765
|
+
],
|
|
4766
|
+
"properties": {
|
|
4767
|
+
"id": {
|
|
4768
|
+
"type": "string",
|
|
4769
|
+
"format": "uuid"
|
|
4770
|
+
},
|
|
4771
|
+
"listing_id": {
|
|
4772
|
+
"type": "string"
|
|
4773
|
+
},
|
|
4774
|
+
"status": {
|
|
4775
|
+
"type": "string",
|
|
4776
|
+
"enum": [
|
|
4777
|
+
"draft",
|
|
4778
|
+
"published",
|
|
4779
|
+
"archived"
|
|
4780
|
+
]
|
|
4781
|
+
},
|
|
4782
|
+
"version_name": {
|
|
4783
|
+
"type": "string",
|
|
4784
|
+
"nullable": true
|
|
4785
|
+
},
|
|
4786
|
+
"draft_label": {
|
|
4787
|
+
"type": "string"
|
|
4788
|
+
},
|
|
4789
|
+
"update_note": {
|
|
4790
|
+
"type": "string",
|
|
4791
|
+
"nullable": true
|
|
4792
|
+
},
|
|
4793
|
+
"resources": {
|
|
4794
|
+
"type": "array",
|
|
4795
|
+
"items": {
|
|
4796
|
+
"type": "object"
|
|
4797
|
+
},
|
|
4798
|
+
"nullable": true
|
|
4799
|
+
},
|
|
4800
|
+
"required_features": {
|
|
4801
|
+
"type": "array",
|
|
4802
|
+
"items": {
|
|
4803
|
+
"type": "string"
|
|
4804
|
+
},
|
|
4805
|
+
"nullable": true
|
|
4806
|
+
},
|
|
4807
|
+
"recommended_apps": {
|
|
4808
|
+
"type": "array",
|
|
4809
|
+
"items": {
|
|
4810
|
+
"type": "string"
|
|
4811
|
+
},
|
|
4812
|
+
"nullable": true
|
|
4813
|
+
},
|
|
4814
|
+
"created_at": {
|
|
4815
|
+
"type": "string",
|
|
4816
|
+
"format": "date-time"
|
|
4817
|
+
},
|
|
4818
|
+
"published_at": {
|
|
4819
|
+
"type": "string",
|
|
4820
|
+
"format": "date-time",
|
|
4821
|
+
"nullable": true
|
|
4822
|
+
}
|
|
4823
|
+
}
|
|
3468
4824
|
}
|
|
3469
4825
|
},
|
|
3470
4826
|
"parameters": {
|