@remixhq/core 0.1.22 → 0.1.23

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
@@ -1,6 +1,6 @@
1
1
  import { CoreConfig } from './config.js';
2
2
  import { T as TokenProvider } from './tokenProvider-BWTusyj4.js';
3
- import { T as TurnUsage } from './contracts-CuTwLa6w.js';
3
+ import { T as TurnUsage } from './contracts-S3cbsIUV.js';
4
4
  import 'zod';
5
5
 
6
6
  type HistoryImportProvider = "claude_code" | "cursor";
@@ -383,7 +383,7 @@ type TriggerEventMetadata = {
383
383
  };
384
384
  type TriggerMode = "blocking" | "async";
385
385
  type TriggerStepType = "shell" | "runtime_target";
386
- type TriggerEventSource = "backend" | "cli" | "cursor_plugin" | "claude_plugin" | "dashboard" | "mcp";
386
+ type TriggerEventSource = "backend" | "cli" | "cursor_plugin" | "claude_plugin" | "dashboard" | "remix_desktop" | "mcp";
387
387
  type ProjectTriggerScope = {
388
388
  repoFingerprint: string;
389
389
  environment?: string;
@@ -419,6 +419,22 @@ type RunAppTriggerEventPayload = RunAppTriggerPayload & {
419
419
  eventType: string;
420
420
  environment?: string;
421
421
  };
422
+ type OpenAppPayload = {
423
+ source?: "dashboard" | "remix_desktop";
424
+ url?: string;
425
+ correlationId?: string | null;
426
+ };
427
+ type AppProfileInput = {
428
+ primaryCategory?: string;
429
+ capabilities?: string[];
430
+ primaryPath?: string | null;
431
+ frameworks?: string[];
432
+ languages?: string[];
433
+ components?: Record<string, unknown>[];
434
+ source?: "manual" | "cli" | "cursor_plugin" | "claude_plugin" | "deterministic" | "llm" | "legacy_platform";
435
+ confidence?: "manual" | "high" | "medium" | "low";
436
+ evidence?: Record<string, unknown>[];
437
+ };
422
438
  type ProjectTriggerStep = {
423
439
  id: string;
424
440
  triggerId: string;
@@ -688,6 +704,7 @@ type ApiClient = {
688
704
  offset?: number;
689
705
  }): Promise<Json>;
690
706
  getApp(appId: string): Promise<Json>;
707
+ openApp(appId: string, payload?: OpenAppPayload): Promise<Json>;
691
708
  getAppContext(appId: string): Promise<Json>;
692
709
  getAppOverview(appId: string): Promise<Json>;
693
710
  listAppTimeline(appId: string, params?: {
@@ -720,6 +737,7 @@ type ApiClient = {
720
737
  threadId?: string;
721
738
  path?: string;
722
739
  platform?: string;
740
+ profile?: AppProfileInput;
723
741
  }): Promise<Json>;
724
742
  presignImportUploadFirstParty(payload: {
725
743
  file: {
@@ -736,6 +754,7 @@ type ApiClient = {
736
754
  branch?: string;
737
755
  path?: string;
738
756
  platform?: string;
757
+ profile?: AppProfileInput;
739
758
  isPublic?: boolean;
740
759
  remoteUrl?: string;
741
760
  defaultBranch?: string;
@@ -751,6 +770,7 @@ type ApiClient = {
751
770
  threadId?: string;
752
771
  appId?: string;
753
772
  platform?: string;
773
+ profile?: AppProfileInput;
754
774
  isPublic?: boolean;
755
775
  remoteUrl?: string;
756
776
  defaultBranch?: string;
@@ -1039,4 +1059,4 @@ declare function createApiClient(config: CoreConfig, opts?: {
1039
1059
  defaultRequestTimeoutMs?: number;
1040
1060
  }): ApiClient;
1041
1061
 
1042
- export { type AgentMemoryItem, type AgentMemoryKind, type AgentMemorySearchItem, type AgentMemorySearchResponse, type AgentMemorySummary, type AgentMemoryTimelineResponse, type ApiClient, type AppContext, type AppContextAccessPath, type AppReconcileResponse, type AppSandboxCommandRun, type Bundle, type BundlePlatform, type BundleStatus, type ChangeStepDiffResponse, type DetectProjectRuntimeTargetsPayload, type HistoricalTurnRecord, type HistoryImportCaptureSource, type HistoryImportProvider, type HistoryImportRecordMetadata, type HistoryImportWorkspaceMetadata, type ImportHistoryRecordOutcome, type ImportHistoryRequest, type ImportHistoryResponse, type ImportProjectRuntimeEnvPayload, type InitiateBundleRequest, type InvitationRecord, type MergeRequest, type MergeRequestReview, type MergeRequestStatus, type ProjectRuntimeEnvMetadata, type ProjectRuntimeEnvScope, type ProjectRuntimeTargetMetadata, type ProjectRuntimeTargetScope, type ProjectTrigger, type ProjectTriggerPayload, type ProjectTriggerScope, type ProjectTriggerStep, type ProjectTriggerStepPayload, type ReconcilePreflightResponse, type ResolveProjectRuntimeEnvForLocalPullResponse, type RunAppRuntimeTargetPayload, type RunAppSandboxCommandPayload, type RunAppTriggerEventPayload, type RunAppTriggerPayload, type RuntimeCommandKind, type RuntimeTargetKind, type SetProjectRuntimeEnvPayload, type SetProjectRuntimeTargetPayload, type SyncLocalResponse, type SyncUpstreamResponse, type TriggerEventMetadata, type TriggerEventSource, type TriggerIntegrationStatus, type TriggerMode, type TriggerRun, type TriggerStepRun, type TriggerStepType, type UpdateProjectTriggerPayload, createApiClient };
1062
+ export { type AgentMemoryItem, type AgentMemoryKind, type AgentMemorySearchItem, type AgentMemorySearchResponse, type AgentMemorySummary, type AgentMemoryTimelineResponse, type ApiClient, type AppContext, type AppContextAccessPath, type AppProfileInput, type AppReconcileResponse, type AppSandboxCommandRun, type Bundle, type BundlePlatform, type BundleStatus, type ChangeStepDiffResponse, type DetectProjectRuntimeTargetsPayload, type HistoricalTurnRecord, type HistoryImportCaptureSource, type HistoryImportProvider, type HistoryImportRecordMetadata, type HistoryImportWorkspaceMetadata, type ImportHistoryRecordOutcome, type ImportHistoryRequest, type ImportHistoryResponse, type ImportProjectRuntimeEnvPayload, type InitiateBundleRequest, type InvitationRecord, type MergeRequest, type MergeRequestReview, type MergeRequestStatus, type ProjectRuntimeEnvMetadata, type ProjectRuntimeEnvScope, type ProjectRuntimeTargetMetadata, type ProjectRuntimeTargetScope, type ProjectTrigger, type ProjectTriggerPayload, type ProjectTriggerScope, type ProjectTriggerStep, type ProjectTriggerStepPayload, type ReconcilePreflightResponse, type ResolveProjectRuntimeEnvForLocalPullResponse, type RunAppRuntimeTargetPayload, type RunAppSandboxCommandPayload, type RunAppTriggerEventPayload, type RunAppTriggerPayload, type RuntimeCommandKind, type RuntimeTargetKind, type SetProjectRuntimeEnvPayload, type SetProjectRuntimeTargetPayload, type SyncLocalResponse, type SyncUpstreamResponse, type TriggerEventMetadata, type TriggerEventSource, type TriggerIntegrationStatus, type TriggerMode, type TriggerRun, type TriggerStepRun, type TriggerStepType, type UpdateProjectTriggerPayload, createApiClient };
package/dist/api.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  createApiClient
3
- } from "./chunk-DZRFUAOL.js";
3
+ } from "./chunk-BNY4BVH6.js";
4
4
  import "./chunk-7XJGOKEO.js";
5
5
  export {
6
6
  createApiClient
@@ -7,11 +7,14 @@ import { z } from "zod";
7
7
  var DEFAULT_API_URL = "https://api.remix.one";
8
8
  var DEFAULT_SUPABASE_URL = "https://iheivdccexqigeoiekvc.supabase.co";
9
9
  var DEFAULT_SUPABASE_ANON_KEY = "sb_publishable_YipyrVON-lwzW3ugjE3T1g_cE2do_JW";
10
- var defaultConfigRaw = {
11
- apiUrl: DEFAULT_API_URL,
12
- supabaseUrl: DEFAULT_SUPABASE_URL,
13
- supabaseAnonKey: DEFAULT_SUPABASE_ANON_KEY
14
- };
10
+ function createDefaultConfigRaw() {
11
+ return {
12
+ apiUrl: process.env.REMIX_API_URL ?? DEFAULT_API_URL,
13
+ supabaseUrl: DEFAULT_SUPABASE_URL,
14
+ supabaseAnonKey: DEFAULT_SUPABASE_ANON_KEY
15
+ };
16
+ }
17
+ var defaultConfigRaw = createDefaultConfigRaw();
15
18
  function isValidUrl(value) {
16
19
  try {
17
20
  new URL(value);
@@ -290,6 +290,7 @@ function createApiClient(config, opts) {
290
290
  return request(`/v1/apps${suffix}`, { method: "GET" });
291
291
  },
292
292
  getApp: (appId) => request(`/v1/apps/${encodeURIComponent(appId)}`, { method: "GET" }),
293
+ openApp: (appId, payload) => request(`/v1/apps/${encodeURIComponent(appId)}/open`, { method: "POST", body: JSON.stringify(payload ?? {}) }),
293
294
  getAppContext: (appId) => request(`/v1/apps/${encodeURIComponent(appId)}/context`, { method: "GET" }),
294
295
  getAppOverview: (appId) => request(`/v1/apps/${encodeURIComponent(appId)}/overview`, { method: "GET" }),
295
296
  listAppTimeline: (appId, params) => {
package/dist/collab.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { C as CollabApiClient, a as TurnUsagePayload, b as CollabFinalizeTurnResult, c as CollabRecordingPreflight, d as CollabApproveMode, e as CollabApproveResult, M as MergeRequestQueue, f as MergeRequest, I as InvitationScopeType, g as CollabMember, J as JsonObject, A as AppDeltaResponse, h as CollabStatus, i as MergeRequestReview } from './contracts-CuTwLa6w.js';
2
- export { j as AppHeadResponse, k as AppMember, l as AppMemberRole, m as AppReconcileResponse, n as CollabFinalizeTurnAutoSync, o as CollabFinalizeTurnMode, p as CollabPendingFinalizeState, q as CollabPendingFinalizeSummary, r as CollabRecordingPreflightStatus, s as CollabRepoStateKind, t as CollabStatusBlockedReason, u as CollabStatusRecommendedAction, v as CollabTurn, w as MembershipScopeType, x as MergeRequestStatus, y as ModelCall, O as OrganizationMember, z as OrganizationMemberRole, P as ProjectMember, B as ProjectMemberRole, R as ReconcilePreflightResponse, S as ServerToolUsage, D as SyncLocalResponse, E as SyncUpstreamResponse, T as TurnUsage, F as TurnUsageCaptureSource, G as TurnUsageConfidence, H as TurnUsagePreviousPatch } from './contracts-CuTwLa6w.js';
1
+ import { C as CollabApiClient, a as TurnUsagePayload, b as CollabFinalizeTurnResult, c as CollabRecordingPreflight, d as CollabApproveMode, e as CollabApproveResult, M as MergeRequestQueue, f as MergeRequest, I as InvitationScopeType, g as CollabMember, A as AppProfileInput, J as JsonObject, h as AppDeltaResponse, i as CollabStatus, j as MergeRequestReview } from './contracts-S3cbsIUV.js';
2
+ export { k as AppHeadResponse, l as AppMember, m as AppMemberRole, n as AppReconcileResponse, o as CollabFinalizeTurnAutoSync, p as CollabFinalizeTurnMode, q as CollabPendingFinalizeState, r as CollabPendingFinalizeSummary, s as CollabRecordingPreflightStatus, t as CollabRepoStateKind, u as CollabStatusBlockedReason, v as CollabStatusRecommendedAction, w as CollabTurn, x as MembershipScopeType, y as MergeRequestStatus, z as ModelCall, O as OrganizationMember, B as OrganizationMemberRole, P as ProjectMember, D as ProjectMemberRole, R as ReconcilePreflightResponse, S as ServerToolUsage, E as SyncLocalResponse, F as SyncUpstreamResponse, T as TurnUsage, G as TurnUsageCaptureSource, H as TurnUsageConfidence, K as TurnUsagePreviousPatch } from './contracts-S3cbsIUV.js';
3
3
  import { B as BranchBindingMode } from './binding-WiIRI2fl.js';
4
4
 
5
5
  declare function collabFinalizeTurn(params: {
@@ -154,6 +154,7 @@ declare function collabInit(params: {
154
154
  path?: string | null;
155
155
  forceNew?: boolean;
156
156
  asyncSubmit?: boolean;
157
+ profile?: AppProfileInput | null;
157
158
  }): Promise<{
158
159
  warnings?: string[] | undefined;
159
160
  queued: true;
@@ -204,6 +205,7 @@ declare function collabInitSubmit(params: {
204
205
  appName?: string | null;
205
206
  path?: string | null;
206
207
  forceNew?: boolean;
208
+ profile?: AppProfileInput | null;
207
209
  }): Promise<{
208
210
  warnings?: string[] | undefined;
209
211
  queued: true;
@@ -605,4 +607,4 @@ declare function drainerLogPath(): string;
605
607
  declare function getDrainerLogPath(): string;
606
608
  declare function getDrainerPidPath(): string;
607
609
 
608
- export { AppDeltaResponse, type AsyncJob, type AsyncJobBase, type AsyncJobKind, type AsyncJobStatus, type AsyncJobSummary, type AwaitAsyncJobResult, CollabApiClient, CollabApproveMode, CollabApproveResult, CollabFinalizeTurnResult, type CollabInitQueuedResult, CollabMember, CollabRecordingPreflight, CollabStatus, type DrainerLogEvent, FINALIZE_JOB_LOCK_STALE_MS, FINALIZE_PREFLIGHT_FAILURE_CODES, type FinalizePreflightFailureCode, type InitJobPayload, InvitationScopeType, JsonObject, type LocalSnapshotRecord, MergeRequest, MergeRequestQueue, MergeRequestReview, type PendingFinalizeJob, type ReAnchorJobPayload, TurnUsagePayload, awaitAsyncJob, cleanStaleFinalizeJobLocks, collabApprove, collabCheckout, collabFinalizeTurn, collabInit, collabInitProcess, collabInitSubmit, collabInvite, collabList, collabListMembers, collabListMergeRequests, collabReconcile, collabRecordingPreflight, collabReject, collabRemix, collabRequestMerge, collabStatus, collabSync, collabSyncUpstream, collabUpdateMemberRole, collabView, deleteAsyncJob, drainAsyncJobs, drainPendingFinalizeQueue, drainerLogPath, findFailedAsyncJob, findPendingAsyncJob, forgetPendingFinalizeJob, getDrainerLogPath, getDrainerPidPath, getMemberRolesForScope, isFinalizePreflightFailureCode, listAsyncJobs, listAsyncJobsForRepo, listPendingFinalizeJobs, processPendingFinalizeJob, pruneTerminalAsyncJobs, readAsyncJob, readLocalSnapshot, readPendingFinalizeJob, requeuePendingFinalizeJob, summarizeAsyncJobs, updatePendingFinalizeJob, validateMemberRole };
610
+ export { AppDeltaResponse, AppProfileInput, type AsyncJob, type AsyncJobBase, type AsyncJobKind, type AsyncJobStatus, type AsyncJobSummary, type AwaitAsyncJobResult, CollabApiClient, CollabApproveMode, CollabApproveResult, CollabFinalizeTurnResult, type CollabInitQueuedResult, CollabMember, CollabRecordingPreflight, CollabStatus, type DrainerLogEvent, FINALIZE_JOB_LOCK_STALE_MS, FINALIZE_PREFLIGHT_FAILURE_CODES, type FinalizePreflightFailureCode, type InitJobPayload, InvitationScopeType, JsonObject, type LocalSnapshotRecord, MergeRequest, MergeRequestQueue, MergeRequestReview, type PendingFinalizeJob, type ReAnchorJobPayload, TurnUsagePayload, awaitAsyncJob, cleanStaleFinalizeJobLocks, collabApprove, collabCheckout, collabFinalizeTurn, collabInit, collabInitProcess, collabInitSubmit, collabInvite, collabList, collabListMembers, collabListMergeRequests, collabReconcile, collabRecordingPreflight, collabReject, collabRemix, collabRequestMerge, collabStatus, collabSync, collabSyncUpstream, collabUpdateMemberRole, collabView, deleteAsyncJob, drainAsyncJobs, drainPendingFinalizeQueue, drainerLogPath, findFailedAsyncJob, findPendingAsyncJob, forgetPendingFinalizeJob, getDrainerLogPath, getDrainerPidPath, getMemberRolesForScope, isFinalizePreflightFailureCode, listAsyncJobs, listAsyncJobsForRepo, listPendingFinalizeJobs, processPendingFinalizeJob, pruneTerminalAsyncJobs, readAsyncJob, readLocalSnapshot, readPendingFinalizeJob, requeuePendingFinalizeJob, summarizeAsyncJobs, updatePendingFinalizeJob, validateMemberRole };
package/dist/collab.js CHANGED
@@ -4915,6 +4915,7 @@ async function collabInit(params) {
4915
4915
  uploadId: String(presign2.uploadId),
4916
4916
  appName: params.appName?.trim() || path9.basename(repoRoot),
4917
4917
  platform: "generic",
4918
+ profile: params.profile ?? void 0,
4918
4919
  isPublic: false,
4919
4920
  branch: defaultBranch && branchName && branchName !== defaultBranch ? defaultBranch : currentBranch ?? void 0,
4920
4921
  remoteUrl: remoteUrl ?? void 0,
@@ -5113,6 +5114,7 @@ async function collabInit(params) {
5113
5114
  appName: params.appName?.trim() || path9.basename(repoRoot),
5114
5115
  path: params.path?.trim() || void 0,
5115
5116
  platform: "generic",
5117
+ profile: params.profile ?? void 0,
5116
5118
  isPublic: false,
5117
5119
  branch: defaultBranch && branchName && branchName !== defaultBranch ? defaultBranch : currentBranch ?? void 0,
5118
5120
  remoteUrl: remoteUrl ?? void 0,
package/dist/config.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  configSchema,
3
3
  resolveConfig
4
- } from "./chunk-LGOQVGBB.js";
4
+ } from "./chunk-62JBEMJH.js";
5
5
  import "./chunk-7XJGOKEO.js";
6
6
  export {
7
7
  configSchema,
@@ -1,4 +1,15 @@
1
1
  type JsonObject = Record<string, any>;
2
+ type AppProfileInput = {
3
+ primaryCategory?: string;
4
+ capabilities?: string[];
5
+ primaryPath?: string | null;
6
+ frameworks?: string[];
7
+ languages?: string[];
8
+ components?: Record<string, unknown>[];
9
+ source?: "manual" | "cli" | "cursor_plugin" | "claude_plugin" | "deterministic" | "llm" | "legacy_platform";
10
+ confidence?: "manual" | "high" | "medium" | "low";
11
+ evidence?: Record<string, unknown>[];
12
+ };
2
13
 
3
14
  type TurnUsageCaptureSource = "agent_supplied" | "hook" | "proxy" | "historical_import" | "unknown";
4
15
  type TurnUsageConfidence = "exact" | "partial" | "unknown";
@@ -497,6 +508,7 @@ type CollabApiClient = {
497
508
  branch?: string;
498
509
  path?: string;
499
510
  platform?: string;
511
+ profile?: AppProfileInput;
500
512
  isPublic?: boolean;
501
513
  remoteUrl?: string;
502
514
  defaultBranch?: string;
@@ -713,4 +725,4 @@ type CollabApiClient = {
713
725
  }): Promise<unknown>;
714
726
  };
715
727
 
716
- export type { AppDeltaResponse as A, ProjectMemberRole as B, CollabApiClient as C, SyncLocalResponse as D, SyncUpstreamResponse as E, TurnUsageCaptureSource as F, TurnUsageConfidence as G, TurnUsagePreviousPatch as H, InvitationScopeType as I, JsonObject as J, MergeRequestQueue as M, OrganizationMember as O, ProjectMember as P, ReconcilePreflightResponse as R, ServerToolUsage as S, TurnUsage as T, TurnUsagePayload as a, CollabFinalizeTurnResult as b, CollabRecordingPreflight as c, CollabApproveMode as d, CollabApproveResult as e, MergeRequest as f, CollabMember as g, CollabStatus as h, MergeRequestReview as i, AppHeadResponse as j, AppMember as k, AppMemberRole as l, AppReconcileResponse as m, CollabFinalizeTurnAutoSync as n, CollabFinalizeTurnMode as o, CollabPendingFinalizeState as p, CollabPendingFinalizeSummary as q, CollabRecordingPreflightStatus as r, CollabRepoStateKind as s, CollabStatusBlockedReason as t, CollabStatusRecommendedAction as u, CollabTurn as v, MembershipScopeType as w, MergeRequestStatus as x, ModelCall as y, OrganizationMemberRole as z };
728
+ export type { AppProfileInput as A, OrganizationMemberRole as B, CollabApiClient as C, ProjectMemberRole as D, SyncLocalResponse as E, SyncUpstreamResponse as F, TurnUsageCaptureSource as G, TurnUsageConfidence as H, InvitationScopeType as I, JsonObject as J, TurnUsagePreviousPatch as K, MergeRequestQueue as M, OrganizationMember as O, ProjectMember as P, ReconcilePreflightResponse as R, ServerToolUsage as S, TurnUsage as T, TurnUsagePayload as a, CollabFinalizeTurnResult as b, CollabRecordingPreflight as c, CollabApproveMode as d, CollabApproveResult as e, MergeRequest as f, CollabMember as g, AppDeltaResponse as h, CollabStatus as i, MergeRequestReview as j, AppHeadResponse as k, AppMember as l, AppMemberRole as m, AppReconcileResponse as n, CollabFinalizeTurnAutoSync as o, CollabFinalizeTurnMode as p, CollabPendingFinalizeState as q, CollabPendingFinalizeSummary as r, CollabRecordingPreflightStatus as s, CollabRepoStateKind as t, CollabStatusBlockedReason as u, CollabStatusRecommendedAction as v, CollabTurn as w, MembershipScopeType as x, MergeRequestStatus as y, ModelCall as z };
package/dist/history.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { T as TurnUsage } from './contracts-CuTwLa6w.js';
1
+ import { T as TurnUsage } from './contracts-S3cbsIUV.js';
2
2
 
3
3
  type TranscriptEvent = Record<string, unknown>;
4
4
  type ReadTranscriptResult = {
package/dist/index.d.ts CHANGED
@@ -4,4 +4,4 @@ export { S as SessionStore, a as StoredSession, c as createStoredSessionTokenPro
4
4
  export { createLocalSessionStore, createSupabaseAuthHelpers } from './auth.js';
5
5
  export { AgentMemoryItem, AgentMemoryKind, AgentMemorySearchItem, AgentMemorySearchResponse, AgentMemorySummary, AgentMemoryTimelineResponse, ApiClient, AppContext, AppContextAccessPath, AppReconcileResponse, AppSandboxCommandRun, Bundle, BundlePlatform, BundleStatus, ChangeStepDiffResponse, DetectProjectRuntimeTargetsPayload, ImportProjectRuntimeEnvPayload, InitiateBundleRequest, InvitationRecord, MergeRequest, MergeRequestReview, MergeRequestStatus, ProjectRuntimeEnvMetadata, ProjectRuntimeEnvScope, ProjectRuntimeTargetMetadata, ProjectRuntimeTargetScope, ProjectTrigger, ProjectTriggerPayload, ProjectTriggerScope, ProjectTriggerStep, ProjectTriggerStepPayload, ReconcilePreflightResponse, ResolveProjectRuntimeEnvForLocalPullResponse, RunAppRuntimeTargetPayload, RunAppSandboxCommandPayload, RunAppTriggerEventPayload, RunAppTriggerPayload, RuntimeCommandKind, RuntimeTargetKind, SetProjectRuntimeEnvPayload, SetProjectRuntimeTargetPayload, SyncLocalResponse, SyncUpstreamResponse, TriggerEventMetadata, TriggerEventSource, TriggerIntegrationStatus, TriggerMode, TriggerRun, TriggerStepRun, TriggerStepType, UpdateProjectTriggerPayload, createApiClient } from './api.js';
6
6
  import 'zod';
7
- import './contracts-CuTwLa6w.js';
7
+ import './contracts-S3cbsIUV.js';
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  createApiClient
3
- } from "./chunk-DZRFUAOL.js";
3
+ } from "./chunk-BNY4BVH6.js";
4
4
  import {
5
5
  createLocalSessionStore,
6
6
  createStoredSessionTokenProvider,
@@ -11,7 +11,7 @@ import {
11
11
  import {
12
12
  configSchema,
13
13
  resolveConfig
14
- } from "./chunk-LGOQVGBB.js";
14
+ } from "./chunk-62JBEMJH.js";
15
15
  import "./chunk-4OCNZHHR.js";
16
16
  import {
17
17
  REMIX_ERROR_CODES
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remixhq/core",
3
- "version": "0.1.22",
3
+ "version": "0.1.23",
4
4
  "description": "Remix core library",
5
5
  "homepage": "https://github.com/RemixDotOne/remix-core",
6
6
  "license": "MIT",