@uniformdev/project-map 19.179.1-alpha.1 → 19.180.0
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/index.d.mts +2 -14
- package/dist/index.d.ts +2 -14
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
|
@@ -614,25 +614,13 @@ declare class ProjectMapClient extends ApiClient<ProjectMapClientOptions> {
|
|
|
614
614
|
* Get available project map defintions
|
|
615
615
|
*/
|
|
616
616
|
getProjectMapDefinitions: () => Promise<{
|
|
617
|
-
projectMaps:
|
|
618
|
-
id?: string | undefined;
|
|
619
|
-
name: string;
|
|
620
|
-
description?: string | undefined;
|
|
621
|
-
baseUrl?: string | undefined;
|
|
622
|
-
default?: boolean | undefined;
|
|
623
|
-
}[];
|
|
617
|
+
projectMaps: components$1["schemas"]["ProjectMapDefinition"][];
|
|
624
618
|
}>;
|
|
625
619
|
/**
|
|
626
620
|
* Get specific project map definition
|
|
627
621
|
*/
|
|
628
622
|
getProjectMapDefinition: (options: WithoutProjectId<ProjectMapGetRequest>) => Promise<{
|
|
629
|
-
projectMaps:
|
|
630
|
-
id?: string | undefined;
|
|
631
|
-
name: string;
|
|
632
|
-
description?: string | undefined;
|
|
633
|
-
baseUrl?: string | undefined;
|
|
634
|
-
default?: boolean | undefined;
|
|
635
|
-
}[];
|
|
623
|
+
projectMaps: components$1["schemas"]["ProjectMapDefinition"][];
|
|
636
624
|
}>;
|
|
637
625
|
/**
|
|
638
626
|
* Update or insert a project map definition
|
package/dist/index.d.ts
CHANGED
|
@@ -614,25 +614,13 @@ declare class ProjectMapClient extends ApiClient<ProjectMapClientOptions> {
|
|
|
614
614
|
* Get available project map defintions
|
|
615
615
|
*/
|
|
616
616
|
getProjectMapDefinitions: () => Promise<{
|
|
617
|
-
projectMaps:
|
|
618
|
-
id?: string | undefined;
|
|
619
|
-
name: string;
|
|
620
|
-
description?: string | undefined;
|
|
621
|
-
baseUrl?: string | undefined;
|
|
622
|
-
default?: boolean | undefined;
|
|
623
|
-
}[];
|
|
617
|
+
projectMaps: components$1["schemas"]["ProjectMapDefinition"][];
|
|
624
618
|
}>;
|
|
625
619
|
/**
|
|
626
620
|
* Get specific project map definition
|
|
627
621
|
*/
|
|
628
622
|
getProjectMapDefinition: (options: WithoutProjectId<ProjectMapGetRequest>) => Promise<{
|
|
629
|
-
projectMaps:
|
|
630
|
-
id?: string | undefined;
|
|
631
|
-
name: string;
|
|
632
|
-
description?: string | undefined;
|
|
633
|
-
baseUrl?: string | undefined;
|
|
634
|
-
default?: boolean | undefined;
|
|
635
|
-
}[];
|
|
623
|
+
projectMaps: components$1["schemas"]["ProjectMapDefinition"][];
|
|
636
624
|
}>;
|
|
637
625
|
/**
|
|
638
626
|
* Update or insert a project map definition
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/project-map",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.180.0",
|
|
4
4
|
"description": "Uniform Project Map",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -33,11 +33,11 @@
|
|
|
33
33
|
"/dist"
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@uniformdev/canvas": "19.
|
|
37
|
-
"@uniformdev/context": "19.
|
|
36
|
+
"@uniformdev/canvas": "19.180.0",
|
|
37
|
+
"@uniformdev/context": "19.180.0"
|
|
38
38
|
},
|
|
39
39
|
"publishConfig": {
|
|
40
40
|
"access": "public"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "309600b88571d0ffb2b80d7d2c27b7aa3e5ae72b"
|
|
43
43
|
}
|