@teambit/objects 0.0.0-98dcc682b432dd4e6c690245c57930fbba41bf6d → 0.0.0-9a3fd4f417527fea6681bbd5c544a9297bec564f
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
CHANGED
|
@@ -56,7 +56,7 @@ export default class Lane extends BitObject {
|
|
|
56
56
|
changeScope(scope: string): void;
|
|
57
57
|
refs(): Ref[];
|
|
58
58
|
validateBeforePersisting(str: string): void;
|
|
59
|
-
toObject(): import("lodash").Dictionary<string | boolean | string[] |
|
|
59
|
+
toObject(): import("lodash").Dictionary<string | boolean | string[] | {
|
|
60
60
|
scope: string;
|
|
61
61
|
name: string;
|
|
62
62
|
} | {
|
|
@@ -66,7 +66,7 @@ export default class Lane extends BitObject {
|
|
|
66
66
|
name: string;
|
|
67
67
|
};
|
|
68
68
|
head: string;
|
|
69
|
-
}[] | {
|
|
69
|
+
}[] | Log | {
|
|
70
70
|
id: {
|
|
71
71
|
scope: string;
|
|
72
72
|
name: string;
|
package/dist/models/version.d.ts
CHANGED
|
@@ -187,12 +187,12 @@ export default class Version extends BitObject {
|
|
|
187
187
|
static depEdgeFromArray(depEdgeArr: string[]): DepEdge;
|
|
188
188
|
static flattenedEdgeToSource(flattenedEdges?: DepEdge[]): Source | undefined;
|
|
189
189
|
static dependenciesGraphToSource(dependenciesGraph?: DependenciesGraph): Source | undefined;
|
|
190
|
-
toObject(): import("lodash").Dictionary<string | boolean |
|
|
190
|
+
toObject(): import("lodash").Dictionary<string | boolean | string[] | Record<string, any> | {
|
|
191
191
|
file: any;
|
|
192
192
|
relativePath: any;
|
|
193
193
|
name: any;
|
|
194
194
|
test: any;
|
|
195
|
-
}[] | import("@teambit/component-id").ComponentIdObj[] | {
|
|
195
|
+
}[] | Doclet[] | Record<string, any>[] | import("@teambit/component-id").ComponentIdObj[] | {
|
|
196
196
|
extensionId: ComponentID | import("@teambit/component-id").ComponentIdObj | undefined;
|
|
197
197
|
config: {
|
|
198
198
|
[key: string]: any;
|
package/package.json
CHANGED
|
@@ -1,61 +1,61 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/objects",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-9a3fd4f417527fea6681bbd5c544a9297bec564f",
|
|
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": "
|
|
9
|
+
"version": "9a3fd4f417527fea6681bbd5c544a9297bec564f"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"lodash": "4.17.21",
|
|
13
|
-
"tar-stream": "2.2.0",
|
|
14
|
-
"p-map-series": "2.1.0",
|
|
15
|
-
"async-mutex": "0.3.1",
|
|
16
|
-
"fs-extra": "10.0.0",
|
|
17
|
-
"uid-number": "0.0.6",
|
|
18
12
|
"@pnpm/dependency-path": "1001.1.0",
|
|
19
13
|
"@pnpm/lockfile.types": "^1002.0.0",
|
|
20
14
|
"semver": "7.7.1",
|
|
15
|
+
"lodash": "4.17.21",
|
|
21
16
|
"uuid": "8.3.2",
|
|
17
|
+
"async-mutex": "0.3.1",
|
|
18
|
+
"p-map-series": "2.1.0",
|
|
19
|
+
"tar-stream": "2.2.0",
|
|
20
|
+
"fs-extra": "10.0.0",
|
|
21
|
+
"uid-number": "0.0.6",
|
|
22
22
|
"@teambit/harmony": "0.4.7",
|
|
23
|
-
"@teambit/cli": "0.0.1272",
|
|
24
23
|
"@teambit/component-id": "1.2.4",
|
|
25
|
-
"@teambit/component.snap-distance": "0.0.74",
|
|
26
|
-
"@teambit/graph.cleargraph": "0.0.11",
|
|
27
|
-
"@teambit/harmony.modules.concurrency": "0.0.18",
|
|
28
|
-
"@teambit/legacy.logger": "0.0.27",
|
|
29
|
-
"@teambit/legacy.scope": "0.0.73",
|
|
30
|
-
"@teambit/toolbox.promise.map-pool": "0.0.8",
|
|
31
|
-
"@teambit/legacy.constants": "0.0.17",
|
|
32
|
-
"@teambit/legacy.utils": "0.0.26",
|
|
33
|
-
"@teambit/toolbox.crypto.sha1": "0.0.9",
|
|
34
24
|
"@teambit/bit-error": "0.0.404",
|
|
35
25
|
"@teambit/component-version": "1.0.4",
|
|
36
|
-
"@teambit/harmony.modules.in-memory-cache": "0.0.20",
|
|
37
|
-
"@teambit/toolbox.fs.remove-empty-dir": "0.0.7",
|
|
38
26
|
"@teambit/lane-id": "0.0.312",
|
|
39
|
-
"@teambit/
|
|
40
|
-
"@teambit/config-store": "0.0.152",
|
|
41
|
-
"@teambit/legacy.cli.error": "0.0.27",
|
|
42
|
-
"@teambit/component.sources": "0.0.125",
|
|
27
|
+
"@teambit/toolbox.crypto.sha1": "0.0.9",
|
|
43
28
|
"@teambit/legacy-bit-id": "1.1.3",
|
|
44
|
-
"@teambit/legacy-component-log": "0.0.410",
|
|
45
|
-
"@teambit/legacy.consumer-component": "0.0.74",
|
|
46
|
-
"@teambit/legacy.consumer-config": "0.0.73",
|
|
47
|
-
"@teambit/legacy.extension-data": "0.0.75",
|
|
48
|
-
"@teambit/pkg.modules.semver-helper": "0.0.15",
|
|
49
29
|
"@teambit/toolbox.array.duplications-finder": "0.0.3",
|
|
50
|
-
"@teambit/
|
|
51
|
-
"@teambit/
|
|
52
|
-
"@teambit/
|
|
30
|
+
"@teambit/graph.cleargraph": "0.0.11",
|
|
31
|
+
"@teambit/toolbox.promise.map-pool": "0.0.8",
|
|
32
|
+
"@teambit/toolbox.fs.remove-empty-dir": "0.0.7",
|
|
33
|
+
"@teambit/cli": "0.0.0-82d1be08257ab13f0111a174cd725faf22ebb6b5",
|
|
34
|
+
"@teambit/legacy.utils": "0.0.0-e500a0c46370d33ea760399deae7707cd3c0b5f2",
|
|
35
|
+
"@teambit/harmony.modules.get-basic-log": "0.0.0-22a220ddfca344ddd7e03e69359a8cd3356a3994",
|
|
36
|
+
"@teambit/component.snap-distance": "0.0.0-ed6fcbd56192f4d4669973486c365ee55e862b8f",
|
|
37
|
+
"@teambit/config-store": "0.0.0-fe927613e47105dd28a8cf2cdd4fb4484a000f5a",
|
|
38
|
+
"@teambit/legacy.cli.error": "0.0.0-f42c178e1f545b98fb3d1fc3a9b388a82eaa3f07",
|
|
39
|
+
"@teambit/legacy.constants": "0.0.0-81b3462f897c832cd0e9460bbe7085ddfe8c55cb",
|
|
40
|
+
"@teambit/legacy.logger": "0.0.0-fe9b35cd4f04dbeacbc351e41747db269cd3b99d",
|
|
41
|
+
"@teambit/legacy.scope": "0.0.0-665598b585e8f8a40bdd2aa7d604f49f674f3f59",
|
|
42
|
+
"@teambit/component.sources": "0.0.0-b8d45fdab46abbd534961f84ae0e2c63415db0da",
|
|
43
|
+
"@teambit/legacy-component-log": "0.0.0-1e65d8d36053b29542eb09f6a1cb613888aa57e2",
|
|
44
|
+
"@teambit/legacy.consumer-component": "0.0.0-99e163593804180decaccbf83376731df8e1ea6c",
|
|
45
|
+
"@teambit/legacy.consumer-config": "0.0.0-9a5d32157618d8a909642f6bddaa4d2dd26ede8f",
|
|
46
|
+
"@teambit/legacy.extension-data": "0.0.0-4d6ed66f13b205b0e69ddbfa04ccda84a0cb94bb",
|
|
47
|
+
"@teambit/pkg.modules.semver-helper": "0.0.0-1bdf8c5cd9c728cd8c3db8e88de2750c8879a4c5",
|
|
48
|
+
"@teambit/bit.get-bit-version": "0.0.0-c73420bf7db1a570d728f6a05417ea568d00dc96",
|
|
49
|
+
"@teambit/semantics.doc-parser": "0.0.0-264f1331fa568a551f93d7d45160b5930c32cd8a",
|
|
50
|
+
"@teambit/graph": "0.0.0-6ef3ea346608e89f00d112497330d777f19751a6",
|
|
51
|
+
"@teambit/harmony.modules.concurrency": "0.0.0-ed8a8439e0128d248aeaf947550ea7e029427ffc",
|
|
52
|
+
"@teambit/harmony.modules.in-memory-cache": "0.0.0-afb22ecffeb5c771f6b49899ad591433c5070500"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@types/lodash": "4.14.165",
|
|
56
|
-
"@types/fs-extra": "9.0.7",
|
|
57
55
|
"@types/semver": "7.5.8",
|
|
56
|
+
"@types/lodash": "4.14.165",
|
|
58
57
|
"@types/uuid": "8.3.4",
|
|
58
|
+
"@types/fs-extra": "9.0.7",
|
|
59
59
|
"@teambit/harmony.envs.core-aspect-env": "0.0.78"
|
|
60
60
|
},
|
|
61
61
|
"peerDependencies": {
|
|
File without changes
|