@epilot/blueprint-manifest-client 2.2.2 → 2.2.3
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/openapi.d.ts +9 -0
- package/dist/openapi.json +11 -0
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -192,6 +192,11 @@ declare namespace Paths {
|
|
|
192
192
|
string?,
|
|
193
193
|
string?
|
|
194
194
|
];
|
|
195
|
+
/**
|
|
196
|
+
* Temporary flag to indicate if multiple resources are being exported
|
|
197
|
+
*/
|
|
198
|
+
isExportingMultipleResources?: boolean;
|
|
199
|
+
jobId?: string;
|
|
195
200
|
}
|
|
196
201
|
namespace Responses {
|
|
197
202
|
export interface $200 {
|
|
@@ -245,6 +250,10 @@ declare namespace Paths {
|
|
|
245
250
|
* journey_HouseConnectionJourney
|
|
246
251
|
*/
|
|
247
252
|
resourceName?: string;
|
|
253
|
+
/**
|
|
254
|
+
* Temporary flag to indicate if multiple resources are being exported
|
|
255
|
+
*/
|
|
256
|
+
isExportingMultipleResources?: boolean;
|
|
248
257
|
}
|
|
249
258
|
namespace Responses {
|
|
250
259
|
export interface $200 {
|
package/dist/openapi.json
CHANGED
|
@@ -102,6 +102,13 @@
|
|
|
102
102
|
},
|
|
103
103
|
"minItems": 1,
|
|
104
104
|
"maxItems": 25
|
|
105
|
+
},
|
|
106
|
+
"isExportingMultipleResources": {
|
|
107
|
+
"type": "boolean",
|
|
108
|
+
"description": "Temporary flag to indicate if multiple resources are being exported"
|
|
109
|
+
},
|
|
110
|
+
"jobId": {
|
|
111
|
+
"type": "string"
|
|
105
112
|
}
|
|
106
113
|
}
|
|
107
114
|
}
|
|
@@ -156,6 +163,10 @@
|
|
|
156
163
|
"resourceName": {
|
|
157
164
|
"type": "string",
|
|
158
165
|
"example": "journey_HouseConnectionJourney"
|
|
166
|
+
},
|
|
167
|
+
"isExportingMultipleResources": {
|
|
168
|
+
"type": "boolean",
|
|
169
|
+
"description": "Temporary flag to indicate if multiple resources are being exported"
|
|
159
170
|
}
|
|
160
171
|
}
|
|
161
172
|
}
|