@epilot/blueprint-manifest-client 4.7.0 → 4.7.1

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 CHANGED
@@ -3164,6 +3164,10 @@ declare namespace Paths {
3164
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
3165
  */
3166
3166
  source_auth_token?: string;
3167
+ /**
3168
+ * 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.
3169
+ */
3170
+ destination_auth_token?: string;
3167
3171
  }
3168
3172
  namespace Responses {
3169
3173
  export interface $202 {
package/dist/openapi.json CHANGED
@@ -1184,6 +1184,10 @@
1184
1184
  "source_auth_token": {
1185
1185
  "type": "string",
1186
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."
1187
1191
  }
1188
1192
  }
1189
1193
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/blueprint-manifest-client",
3
- "version": "4.7.0",
3
+ "version": "4.7.1",
4
4
  "description": "Client for epilot Terraform Blueprint Manifest API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",