skedyul 1.2.35 → 1.2.37

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/index.js CHANGED
@@ -3444,6 +3444,12 @@ function handleConfigRoute(ctx) {
3444
3444
  console.log(
3445
3445
  `[/config] Loaded config from file: tools=${fileConfig.tools?.length ?? 0}, webhooks=${fileConfig.webhooks?.length ?? 0}`
3446
3446
  );
3447
+ console.log(
3448
+ `[/config] SENDING config with keys: ${Object.keys(fileConfig).join(", ")}`
3449
+ );
3450
+ console.log(
3451
+ `[/config] SENDING full config: ${JSON.stringify(fileConfig).substring(0, 2e3)}...`
3452
+ );
3447
3453
  return { status: 200, body: fileConfig };
3448
3454
  }
3449
3455
  console.log("[/config] Config file not found, falling back to runtime serialization");
@@ -3454,6 +3460,12 @@ function handleConfigRoute(ctx) {
3454
3460
  console.log(
3455
3461
  `[/config] Runtime serialization: tools=${serialized.tools?.length ?? 0}, webhooks=${serialized.webhooks?.length ?? 0}`
3456
3462
  );
3463
+ console.log(
3464
+ `[/config] SENDING serialized config with keys: ${Object.keys(serialized).join(", ")}`
3465
+ );
3466
+ console.log(
3467
+ `[/config] SENDING full serialized config: ${JSON.stringify(serialized).substring(0, 2e3)}...`
3468
+ );
3457
3469
  return { status: 200, body: serialized };
3458
3470
  }
3459
3471
  async function handleCoreRoute(req, ctx) {
@@ -1236,6 +1236,12 @@ function handleConfigRoute(ctx) {
1236
1236
  console.log(
1237
1237
  `[/config] Loaded config from file: tools=${fileConfig.tools?.length ?? 0}, webhooks=${fileConfig.webhooks?.length ?? 0}`
1238
1238
  );
1239
+ console.log(
1240
+ `[/config] SENDING config with keys: ${Object.keys(fileConfig).join(", ")}`
1241
+ );
1242
+ console.log(
1243
+ `[/config] SENDING full config: ${JSON.stringify(fileConfig).substring(0, 2e3)}...`
1244
+ );
1239
1245
  return { status: 200, body: fileConfig };
1240
1246
  }
1241
1247
  console.log("[/config] Config file not found, falling back to runtime serialization");
@@ -1246,6 +1252,12 @@ function handleConfigRoute(ctx) {
1246
1252
  console.log(
1247
1253
  `[/config] Runtime serialization: tools=${serialized.tools?.length ?? 0}, webhooks=${serialized.webhooks?.length ?? 0}`
1248
1254
  );
1255
+ console.log(
1256
+ `[/config] SENDING serialized config with keys: ${Object.keys(serialized).join(", ")}`
1257
+ );
1258
+ console.log(
1259
+ `[/config] SENDING full serialized config: ${JSON.stringify(serialized).substring(0, 2e3)}...`
1260
+ );
1249
1261
  return { status: 200, body: serialized };
1250
1262
  }
1251
1263
  async function handleCoreRoute(req, ctx) {
@@ -2948,6 +2948,12 @@ function handleConfigRoute(ctx) {
2948
2948
  console.log(
2949
2949
  `[/config] Loaded config from file: tools=${fileConfig.tools?.length ?? 0}, webhooks=${fileConfig.webhooks?.length ?? 0}`
2950
2950
  );
2951
+ console.log(
2952
+ `[/config] SENDING config with keys: ${Object.keys(fileConfig).join(", ")}`
2953
+ );
2954
+ console.log(
2955
+ `[/config] SENDING full config: ${JSON.stringify(fileConfig).substring(0, 2e3)}...`
2956
+ );
2951
2957
  return { status: 200, body: fileConfig };
2952
2958
  }
2953
2959
  console.log("[/config] Config file not found, falling back to runtime serialization");
@@ -2958,6 +2964,12 @@ function handleConfigRoute(ctx) {
2958
2964
  console.log(
2959
2965
  `[/config] Runtime serialization: tools=${serialized.tools?.length ?? 0}, webhooks=${serialized.webhooks?.length ?? 0}`
2960
2966
  );
2967
+ console.log(
2968
+ `[/config] SENDING serialized config with keys: ${Object.keys(serialized).join(", ")}`
2969
+ );
2970
+ console.log(
2971
+ `[/config] SENDING full serialized config: ${JSON.stringify(serialized).substring(0, 2e3)}...`
2972
+ );
2961
2973
  return { status: 200, body: serialized };
2962
2974
  }
2963
2975
  async function handleCoreRoute(req, ctx) {
package/dist/index.js CHANGED
@@ -3114,6 +3114,12 @@ function handleConfigRoute(ctx) {
3114
3114
  console.log(
3115
3115
  `[/config] Loaded config from file: tools=${fileConfig.tools?.length ?? 0}, webhooks=${fileConfig.webhooks?.length ?? 0}`
3116
3116
  );
3117
+ console.log(
3118
+ `[/config] SENDING config with keys: ${Object.keys(fileConfig).join(", ")}`
3119
+ );
3120
+ console.log(
3121
+ `[/config] SENDING full config: ${JSON.stringify(fileConfig).substring(0, 2e3)}...`
3122
+ );
3117
3123
  return { status: 200, body: fileConfig };
3118
3124
  }
3119
3125
  console.log("[/config] Config file not found, falling back to runtime serialization");
@@ -3124,6 +3130,12 @@ function handleConfigRoute(ctx) {
3124
3130
  console.log(
3125
3131
  `[/config] Runtime serialization: tools=${serialized.tools?.length ?? 0}, webhooks=${serialized.webhooks?.length ?? 0}`
3126
3132
  );
3133
+ console.log(
3134
+ `[/config] SENDING serialized config with keys: ${Object.keys(serialized).join(", ")}`
3135
+ );
3136
+ console.log(
3137
+ `[/config] SENDING full serialized config: ${JSON.stringify(serialized).substring(0, 2e3)}...`
3138
+ );
3127
3139
  return { status: 200, body: serialized };
3128
3140
  }
3129
3141
  async function handleCoreRoute(req, ctx) {
package/dist/server.js CHANGED
@@ -1236,6 +1236,12 @@ function handleConfigRoute(ctx) {
1236
1236
  console.log(
1237
1237
  `[/config] Loaded config from file: tools=${fileConfig.tools?.length ?? 0}, webhooks=${fileConfig.webhooks?.length ?? 0}`
1238
1238
  );
1239
+ console.log(
1240
+ `[/config] SENDING config with keys: ${Object.keys(fileConfig).join(", ")}`
1241
+ );
1242
+ console.log(
1243
+ `[/config] SENDING full config: ${JSON.stringify(fileConfig).substring(0, 2e3)}...`
1244
+ );
1239
1245
  return { status: 200, body: fileConfig };
1240
1246
  }
1241
1247
  console.log("[/config] Config file not found, falling back to runtime serialization");
@@ -1246,6 +1252,12 @@ function handleConfigRoute(ctx) {
1246
1252
  console.log(
1247
1253
  `[/config] Runtime serialization: tools=${serialized.tools?.length ?? 0}, webhooks=${serialized.webhooks?.length ?? 0}`
1248
1254
  );
1255
+ console.log(
1256
+ `[/config] SENDING serialized config with keys: ${Object.keys(serialized).join(", ")}`
1257
+ );
1258
+ console.log(
1259
+ `[/config] SENDING full serialized config: ${JSON.stringify(serialized).substring(0, 2e3)}...`
1260
+ );
1249
1261
  return { status: 200, body: serialized };
1250
1262
  }
1251
1263
  async function handleCoreRoute(req, ctx) {
@@ -1197,6 +1197,12 @@ function handleConfigRoute(ctx) {
1197
1197
  console.log(
1198
1198
  `[/config] Loaded config from file: tools=${fileConfig.tools?.length ?? 0}, webhooks=${fileConfig.webhooks?.length ?? 0}`
1199
1199
  );
1200
+ console.log(
1201
+ `[/config] SENDING config with keys: ${Object.keys(fileConfig).join(", ")}`
1202
+ );
1203
+ console.log(
1204
+ `[/config] SENDING full config: ${JSON.stringify(fileConfig).substring(0, 2e3)}...`
1205
+ );
1200
1206
  return { status: 200, body: fileConfig };
1201
1207
  }
1202
1208
  console.log("[/config] Config file not found, falling back to runtime serialization");
@@ -1207,6 +1213,12 @@ function handleConfigRoute(ctx) {
1207
1213
  console.log(
1208
1214
  `[/config] Runtime serialization: tools=${serialized.tools?.length ?? 0}, webhooks=${serialized.webhooks?.length ?? 0}`
1209
1215
  );
1216
+ console.log(
1217
+ `[/config] SENDING serialized config with keys: ${Object.keys(serialized).join(", ")}`
1218
+ );
1219
+ console.log(
1220
+ `[/config] SENDING full serialized config: ${JSON.stringify(serialized).substring(0, 2e3)}...`
1221
+ );
1210
1222
  return { status: 200, body: serialized };
1211
1223
  }
1212
1224
  async function handleCoreRoute(req, ctx) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skedyul",
3
- "version": "1.2.35",
3
+ "version": "1.2.37",
4
4
  "description": "The Skedyul SDK for Node.js",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",