@openvcs/sdk 0.4.1-nightly.20260613.126 → 0.4.2-beta.130
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/lib/types/vcs.d.ts +0 -7
- package/package.json +1 -1
- package/src/lib/types/vcs.ts +1 -8
package/lib/types/vcs.d.ts
CHANGED
|
@@ -94,19 +94,12 @@ export interface VcsRemoveRemoteParams extends VcsSessionParams {
|
|
|
94
94
|
/** Stores the remote name to remove. */
|
|
95
95
|
name: string;
|
|
96
96
|
}
|
|
97
|
-
/** Describes optional fetch flags. */
|
|
98
|
-
export interface VcsFetchOptions {
|
|
99
|
-
/** Indicates whether stale remote references should be pruned. */
|
|
100
|
-
prune?: boolean;
|
|
101
|
-
}
|
|
102
97
|
/** Describes params for fetch methods. */
|
|
103
98
|
export interface VcsFetchParams extends VcsSessionParams {
|
|
104
99
|
/** Stores the remote to fetch when one is supplied. */
|
|
105
100
|
remote?: string;
|
|
106
101
|
/** Stores the refspec to fetch when one is supplied. */
|
|
107
102
|
refspec?: string;
|
|
108
|
-
/** Stores optional fetch flags. */
|
|
109
|
-
opts?: VcsFetchOptions;
|
|
110
103
|
}
|
|
111
104
|
/** Describes params for push. */
|
|
112
105
|
export interface VcsPushParams extends VcsSessionParams {
|
package/package.json
CHANGED
package/src/lib/types/vcs.ts
CHANGED
|
@@ -112,20 +112,13 @@ export interface VcsRemoveRemoteParams extends VcsSessionParams {
|
|
|
112
112
|
name: string;
|
|
113
113
|
}
|
|
114
114
|
|
|
115
|
-
/** Describes optional fetch flags. */
|
|
116
|
-
export interface VcsFetchOptions {
|
|
117
|
-
/** Indicates whether stale remote references should be pruned. */
|
|
118
|
-
prune?: boolean;
|
|
119
|
-
}
|
|
120
|
-
|
|
121
115
|
/** Describes params for fetch methods. */
|
|
116
|
+
|
|
122
117
|
export interface VcsFetchParams extends VcsSessionParams {
|
|
123
118
|
/** Stores the remote to fetch when one is supplied. */
|
|
124
119
|
remote?: string;
|
|
125
120
|
/** Stores the refspec to fetch when one is supplied. */
|
|
126
121
|
refspec?: string;
|
|
127
|
-
/** Stores optional fetch flags. */
|
|
128
|
-
opts?: VcsFetchOptions;
|
|
129
122
|
}
|
|
130
123
|
|
|
131
124
|
/** Describes params for push. */
|