@eide/foir-cli 0.40.0 → 0.41.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/cli.js CHANGED
@@ -2841,8 +2841,7 @@ function createOperationsMethods(client) {
2841
2841
  cacheControl: params.cacheControl,
2842
2842
  secretBindings: params.secretBindings ?? [],
2843
2843
  requestTemplate: params.requestTemplate,
2844
- responseTransform: params.responseTransform,
2845
- allowInternalEndpoint: params.allowInternalEndpoint
2844
+ responseTransform: params.responseTransform
2846
2845
  })
2847
2846
  );
2848
2847
  return resp.operation ?? null;
@@ -2871,8 +2870,7 @@ function createOperationsMethods(client) {
2871
2870
  cacheControl: params.cacheControl,
2872
2871
  secretBindings: params.secretBindings ?? [],
2873
2872
  requestTemplate: params.requestTemplate,
2874
- responseTransform: params.responseTransform,
2875
- allowInternalEndpoint: params.allowInternalEndpoint
2873
+ responseTransform: params.responseTransform
2876
2874
  })
2877
2875
  );
2878
2876
  return resp.operation ?? null;
@@ -5369,8 +5367,7 @@ async function reconcileOperations(client, configId, operations, operationBaseUr
5369
5367
  cacheControl: op.cacheControl,
5370
5368
  secretBindings: op.secretBindings,
5371
5369
  requestTemplate: op.requestTemplate,
5372
- responseTransform: op.responseTransform,
5373
- allowInternalEndpoint: op.allowInternalEndpoint
5370
+ responseTransform: op.responseTransform
5374
5371
  });
5375
5372
  summary.operations.updated++;
5376
5373
  summary.updatedOperationIds.push(ex.id);
@@ -5401,8 +5398,7 @@ async function reconcileOperations(client, configId, operations, operationBaseUr
5401
5398
  cacheControl: op.cacheControl,
5402
5399
  secretBindings: op.secretBindings,
5403
5400
  requestTemplate: op.requestTemplate,
5404
- responseTransform: op.responseTransform,
5405
- allowInternalEndpoint: op.allowInternalEndpoint
5401
+ responseTransform: op.responseTransform
5406
5402
  });
5407
5403
  summary.operations.created++;
5408
5404
  }
@@ -269,11 +269,6 @@ interface ApplyConfigOperationInput {
269
269
  * returned to the caller. QUERY / FIELD only.
270
270
  */
271
271
  responseTransform?: string;
272
- /**
273
- * Allow the resolver to call an internal (private-network) endpoint.
274
- * Off by default; only meaningful for QUERY / FIELD operations.
275
- */
276
- allowInternalEndpoint?: boolean;
277
272
  }
278
273
  interface ApplyConfigSegmentInput {
279
274
  key: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eide/foir-cli",
3
- "version": "0.40.0",
3
+ "version": "0.41.0",
4
4
  "description": "Universal platform CLI for Foir platform",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -50,7 +50,7 @@
50
50
  "@bufbuild/protovalidate": "^1.1.1",
51
51
  "@connectrpc/connect": "^2.0.0",
52
52
  "@connectrpc/connect-node": "^2.0.0",
53
- "@eide/foir-proto-ts": "^0.91.0",
53
+ "@eide/foir-proto-ts": "^0.92.0",
54
54
  "chalk": "^5.3.0",
55
55
  "commander": "^12.1.0",
56
56
  "dotenv": "^16.4.5",