@remixhq/core 0.1.25 → 0.1.26
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 +33 -7
- package/dist/api.js +1 -1
- package/dist/binding.js +2 -2
- package/dist/{chunk-CQXJZ5EP.js → chunk-DOMO3LNV.js} +171 -187
- package/dist/{chunk-S4ECO35X.js → chunk-FA6PTZQI.js} +46 -6
- package/dist/{chunk-P4XIICU3.js → chunk-GNW6FA4J.js} +1 -1
- package/dist/collab.d.ts +96 -134
- package/dist/collab.js +1134 -755
- package/dist/{contracts-S3cbsIUV.d.ts → contracts-BV67NVwV.d.ts} +7 -0
- package/dist/history.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/repo.js +1 -1
- package/package.json +1 -1
|
@@ -449,6 +449,8 @@ type CollabApiClient = {
|
|
|
449
449
|
remoteUrl?: string;
|
|
450
450
|
defaultBranch?: string;
|
|
451
451
|
branchName: string;
|
|
452
|
+
currentAppId?: string;
|
|
453
|
+
upstreamAppId?: string;
|
|
452
454
|
}): Promise<unknown>;
|
|
453
455
|
ensureProjectLaneBinding(payload: {
|
|
454
456
|
projectId?: string;
|
|
@@ -456,6 +458,8 @@ type CollabApiClient = {
|
|
|
456
458
|
remoteUrl?: string;
|
|
457
459
|
defaultBranch?: string;
|
|
458
460
|
branchName: string;
|
|
461
|
+
currentAppId?: string;
|
|
462
|
+
upstreamAppId?: string;
|
|
459
463
|
seedAppId?: string;
|
|
460
464
|
seedHeadCommitHash?: string;
|
|
461
465
|
}): Promise<unknown>;
|
|
@@ -688,6 +692,9 @@ type CollabApiClient = {
|
|
|
688
692
|
revokeOrganizationInvite(orgId: string, inviteId: string): Promise<unknown>;
|
|
689
693
|
revokeProjectInvite(projectId: string, inviteId: string): Promise<unknown>;
|
|
690
694
|
revokeAppInvite(appId: string, inviteId: string): Promise<unknown>;
|
|
695
|
+
listMyInvitations(): Promise<unknown>;
|
|
696
|
+
acceptMyInvitation(scope: "organization" | "project" | "app", inviteId: string): Promise<unknown>;
|
|
697
|
+
declineMyInvitation(scope: "organization" | "project" | "app", inviteId: string): Promise<unknown>;
|
|
691
698
|
syncUpstreamApp(appId: string): Promise<unknown>;
|
|
692
699
|
preflightAppReconcile(appId: string, payload: {
|
|
693
700
|
localHeadCommitHash: string;
|
package/dist/history.d.ts
CHANGED
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, AppPreviewExpectedKind, AppPreviewProcessStatus, AppPreviewQuery, AppPreviewResponse, 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-
|
|
7
|
+
import './contracts-BV67NVwV.js';
|
package/dist/index.js
CHANGED
package/dist/repo.js
CHANGED