@teambit/objects 0.0.201 → 0.0.202
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/models/lane.d.ts +1 -1
- package/dist/models/model-component.d.ts +1 -1
- package/dist/models/source.d.ts +2 -2
- package/dist/models/symlink.d.ts +1 -1
- package/dist/objects/raw-object.d.ts +1 -1
- package/package.json +6 -6
- /package/dist/{preview-1754937762268.js → preview-1754947525247.js} +0 -0
package/dist/models/lane.d.ts
CHANGED
@@ -80,7 +80,7 @@ export default class Lane extends BitObject {
|
|
80
80
|
profileImage?: string;
|
81
81
|
}): Lane;
|
82
82
|
static parse(contents: string, hash: string): Lane;
|
83
|
-
toBuffer(pretty?: boolean): Buffer
|
83
|
+
toBuffer(pretty?: boolean): Buffer<ArrayBuffer>;
|
84
84
|
addComponent(component: LaneComponent): void;
|
85
85
|
removeComponentFromUpdateDependentsIfExist(componentId: ComponentID): void;
|
86
86
|
addComponentToUpdateDependents(componentId: ComponentID): void;
|
@@ -268,7 +268,7 @@ export default class Component extends BitObject {
|
|
268
268
|
private addDepsInfoFromDepsResolver;
|
269
269
|
refs(): Ref[];
|
270
270
|
validateBeforePersisting(componentStr: string): void;
|
271
|
-
toBuffer(pretty: boolean): Buffer
|
271
|
+
toBuffer(pretty: boolean): Buffer<ArrayBuffer>;
|
272
272
|
/**
|
273
273
|
* Clear data that is relevant only for the local scope and should not be moved to the remote scope
|
274
274
|
*/
|
package/dist/models/source.d.ts
CHANGED
@@ -2,8 +2,8 @@ import { BitObject } from '../objects';
|
|
2
2
|
export default class Source extends BitObject {
|
3
3
|
contents: Buffer;
|
4
4
|
constructor(contents: Buffer);
|
5
|
-
id(): Buffer
|
6
|
-
toBuffer(): Buffer
|
5
|
+
id(): Buffer<ArrayBufferLike>;
|
6
|
+
toBuffer(): Buffer<ArrayBufferLike>;
|
7
7
|
toString(): string;
|
8
8
|
static parse(contents: Buffer): Source;
|
9
9
|
static from(buffer: Buffer): Source;
|
package/dist/models/symlink.d.ts
CHANGED
@@ -7,7 +7,7 @@ export default class BitRawObject {
|
|
7
7
|
_ref: string;
|
8
8
|
constructor(buffer: Buffer, ref: string | null | undefined, type: string | null | undefined, content: Buffer | null | undefined, parsedContent: any | null | undefined);
|
9
9
|
getParsedContent(): any;
|
10
|
-
getString(pretty: boolean): string | Buffer
|
10
|
+
getString(pretty: boolean): string | Buffer<ArrayBufferLike>;
|
11
11
|
set ref(ref: string);
|
12
12
|
get ref(): string;
|
13
13
|
get id(): string;
|
package/package.json
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "@teambit/objects",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.202",
|
4
4
|
"homepage": "https://bit.cloud/teambit/scope/objects",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"componentId": {
|
7
7
|
"scope": "teambit.scope",
|
8
8
|
"name": "objects",
|
9
|
-
"version": "0.0.
|
9
|
+
"version": "0.0.202"
|
10
10
|
},
|
11
11
|
"dependencies": {
|
12
12
|
"lodash": "4.17.21",
|
@@ -48,16 +48,16 @@
|
|
48
48
|
"@teambit/toolbox.array.duplications-finder": "0.0.3",
|
49
49
|
"@teambit/bit.get-bit-version": "0.0.6",
|
50
50
|
"@teambit/semantics.doc-parser": "0.0.73",
|
51
|
-
"@teambit/cli": "0.0.
|
52
|
-
"@teambit/graph": "1.0.
|
53
|
-
"@teambit/config-store": "0.0.
|
51
|
+
"@teambit/cli": "0.0.1258",
|
52
|
+
"@teambit/graph": "1.0.695",
|
53
|
+
"@teambit/config-store": "0.0.138"
|
54
54
|
},
|
55
55
|
"devDependencies": {
|
56
56
|
"@types/lodash": "4.14.165",
|
57
57
|
"@types/fs-extra": "9.0.7",
|
58
58
|
"@types/semver": "7.5.8",
|
59
59
|
"@types/uuid": "8.3.4",
|
60
|
-
"@teambit/harmony.envs.core-aspect-env": "0.0.
|
60
|
+
"@teambit/harmony.envs.core-aspect-env": "0.0.75"
|
61
61
|
},
|
62
62
|
"peerDependencies": {
|
63
63
|
"chai": "5.2.1",
|
File without changes
|