@remixhq/core 0.1.43 → 0.1.44

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/api.d.ts CHANGED
@@ -363,6 +363,14 @@ type ResolveProjectRuntimeEnvForLocalPullResponse = {
363
363
  };
364
364
  type RuntimeTargetKind = "web" | "api" | "cli" | "mobile" | "desktop" | "test" | "worker";
365
365
  type RuntimeCommandKind = "install" | "dev" | "build" | "preview" | "test" | "custom";
366
+ type RuntimeTargetVerificationStatus = "not_attempted" | "pending" | "verified" | "attempted_failed";
367
+ type RuntimeTargetVerification = {
368
+ status: RuntimeTargetVerificationStatus;
369
+ source: string | null;
370
+ runId: string | null;
371
+ updatedAt: string | null;
372
+ details: Record<string, unknown>;
373
+ };
366
374
  type ProjectRuntimeTargetScope = {
367
375
  repoFingerprint: string;
368
376
  environment?: string;
@@ -379,6 +387,7 @@ type ProjectRuntimeTargetMetadata = ProjectRuntimeTargetScope & {
379
387
  readiness: Record<string, unknown>;
380
388
  inheritancePolicy?: "project_family" | "none";
381
389
  enabled: boolean;
390
+ verification?: RuntimeTargetVerification;
382
391
  version?: number;
383
392
  };
384
393
  type SetProjectRuntimeTargetPayload = ProjectRuntimeTargetScope & CascadeToFamilyPayload & {
package/dist/collab.js CHANGED
@@ -1467,7 +1467,7 @@ async function pollAppImported(api, appId, opts) {
1467
1467
  onSlow(elapsed);
1468
1468
  } else {
1469
1469
  console.warn(
1470
- `[remix init] still waiting for app import (>${Math.round(elapsed / 1e3)}s); will time out at ${Math.round(timeoutMs / 1e3)}s`
1470
+ `[remix collab init] still waiting for app import (>${Math.round(elapsed / 1e3)}s); will time out at ${Math.round(timeoutMs / 1e3)}s`
1471
1471
  );
1472
1472
  }
1473
1473
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remixhq/core",
3
- "version": "0.1.43",
3
+ "version": "0.1.44",
4
4
  "description": "Remix core library",
5
5
  "homepage": "https://github.com/RemixDotOne/remix-core",
6
6
  "license": "MIT",