@fern-api/fern-api-dev 3.42.1 → 3.42.2
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/cli.cjs +8 -5
- package/package.json +1 -1
package/cli.cjs
CHANGED
|
@@ -1415659,7 +1415659,7 @@ var AccessTokenPosthogManager = class {
|
|
|
1415659
1415659
|
properties: {
|
|
1415660
1415660
|
...event,
|
|
1415661
1415661
|
...event.properties,
|
|
1415662
|
-
version: "3.42.
|
|
1415662
|
+
version: "3.42.2",
|
|
1415663
1415663
|
usingAccessToken: true
|
|
1415664
1415664
|
}
|
|
1415665
1415665
|
});
|
|
@@ -1415758,7 +1415758,7 @@ var UserPosthogManager = class {
|
|
|
1415758
1415758
|
distinctId: this.userId ?? await this.getPersistedDistinctId(),
|
|
1415759
1415759
|
event: "CLI",
|
|
1415760
1415760
|
properties: {
|
|
1415761
|
-
version: "3.42.
|
|
1415761
|
+
version: "3.42.2",
|
|
1415762
1415762
|
...event,
|
|
1415763
1415763
|
...event.properties,
|
|
1415764
1415764
|
usingAccessToken: false,
|
|
@@ -1486098,7 +1486098,10 @@ var AbstractSpecConverter = class extends AbstractConverter {
|
|
|
1486098
1486098
|
service.endpoints = updatedEndpoints;
|
|
1486099
1486099
|
}
|
|
1486100
1486100
|
ir14.websocketChannels = Object.fromEntries(Object.entries(ir14.websocketChannels ?? {}).filter(([channelId]) => filteredChannels.has(channelId)));
|
|
1486101
|
-
ir14.webhookGroups = Object.fromEntries(Object.entries(ir14.webhookGroups).
|
|
1486101
|
+
ir14.webhookGroups = Object.fromEntries(Object.entries(ir14.webhookGroups).map(([webhookGroupId, webhookGroup]) => {
|
|
1486102
|
+
const filteredWebhookGroup = webhookGroup.filter((webhook) => webhook.id != null && filteredWebhooks.has(webhook.id));
|
|
1486103
|
+
return [webhookGroupId, filteredWebhookGroup];
|
|
1486104
|
+
}));
|
|
1486102
1486105
|
return ir14;
|
|
1486103
1486106
|
}
|
|
1486104
1486107
|
async resolveAllExternalRefs({ spec }) {
|
|
@@ -1495949,7 +1495952,7 @@ var CliContext = class {
|
|
|
1495949
1495952
|
if (false) {
|
|
1495950
1495953
|
this.logger.error("CLI_VERSION is not defined");
|
|
1495951
1495954
|
}
|
|
1495952
|
-
return "3.42.
|
|
1495955
|
+
return "3.42.2";
|
|
1495953
1495956
|
}
|
|
1495954
1495957
|
getCliName() {
|
|
1495955
1495958
|
if (false) {
|
|
@@ -1591730,7 +1591733,7 @@ var import_path37 = __toESM(require("path"), 1);
|
|
|
1591730
1591733
|
var LOCAL_STORAGE_FOLDER4 = ".fern-dev";
|
|
1591731
1591734
|
var LOGS_FOLDER_NAME = "logs";
|
|
1591732
1591735
|
function getCliSource() {
|
|
1591733
|
-
const version6 = "3.42.
|
|
1591736
|
+
const version6 = "3.42.2";
|
|
1591734
1591737
|
return `cli@${version6}`;
|
|
1591735
1591738
|
}
|
|
1591736
1591739
|
var DebugLogger = class {
|
package/package.json
CHANGED