@arcgis/components-build-utils 4.34.0-next.128 → 4.34.0-next.129
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/commands/compare-rss.d.cts +8 -0
- package/dist/commands/compare-rss.d.ts +8 -0
- package/dist/commands/generate-builddate.d.cts +1 -1
- package/dist/commands/generate-builddate.d.ts +1 -1
- package/dist/commands/migrate-repo-issues/zentopia.d.cts +8 -0
- package/dist/commands/migrate-repo-issues/zentopia.d.ts +8 -0
- package/package.json +2 -1
|
@@ -1,2 +1,10 @@
|
|
|
1
1
|
import { Command } from 'commander';
|
|
2
|
+
/**
|
|
3
|
+
* !important
|
|
4
|
+
* The class makes a TLS request to qawebgis
|
|
5
|
+
* You need to make sure node trusts the certificate authority that signed the certificate used by qawebgis.esri.com
|
|
6
|
+
*
|
|
7
|
+
* Include your certificate authority in the NODE_EXTRA_CA_CERTS environment variable
|
|
8
|
+
* Reference: https://qawebgis.esri.com/components/devops/troubleshoot#certificate-verification-failure
|
|
9
|
+
*/
|
|
2
10
|
export declare const registerCommand: (command: Command) => undefined;
|
|
@@ -1,2 +1,10 @@
|
|
|
1
1
|
import { Command } from 'commander';
|
|
2
|
+
/**
|
|
3
|
+
* !important
|
|
4
|
+
* The class makes a TLS request to qawebgis
|
|
5
|
+
* You need to make sure node trusts the certificate authority that signed the certificate used by qawebgis.esri.com
|
|
6
|
+
*
|
|
7
|
+
* Include your certificate authority in the NODE_EXTRA_CA_CERTS environment variable
|
|
8
|
+
* Reference: https://qawebgis.esri.com/components/devops/troubleshoot#certificate-verification-failure
|
|
9
|
+
*/
|
|
2
10
|
export declare const registerCommand: (command: Command) => undefined;
|
|
@@ -24,6 +24,14 @@ export type IssueWithZenhub = {
|
|
|
24
24
|
name: string;
|
|
25
25
|
};
|
|
26
26
|
};
|
|
27
|
+
/**
|
|
28
|
+
* !important
|
|
29
|
+
* The class makes a TLS request to Zenhub's GraphQL endpoint, 'https://zentopia.esri.com/public/graphql'
|
|
30
|
+
* You need to make sure node trusts the certificate authority that signed the certificate used by zentopia.esri.com
|
|
31
|
+
*
|
|
32
|
+
* Include your certificate authority in the NODE_EXTRA_CA_CERTS environment variable
|
|
33
|
+
* Reference: https://qawebgis.esri.com/components/devops/troubleshoot#certificate-verification-failure
|
|
34
|
+
*/
|
|
27
35
|
declare class Zentopia {
|
|
28
36
|
readonly repoId: number;
|
|
29
37
|
readonly workspaceId: string;
|
|
@@ -24,6 +24,14 @@ export type IssueWithZenhub = {
|
|
|
24
24
|
name: string;
|
|
25
25
|
};
|
|
26
26
|
};
|
|
27
|
+
/**
|
|
28
|
+
* !important
|
|
29
|
+
* The class makes a TLS request to Zenhub's GraphQL endpoint, 'https://zentopia.esri.com/public/graphql'
|
|
30
|
+
* You need to make sure node trusts the certificate authority that signed the certificate used by zentopia.esri.com
|
|
31
|
+
*
|
|
32
|
+
* Include your certificate authority in the NODE_EXTRA_CA_CERTS environment variable
|
|
33
|
+
* Reference: https://qawebgis.esri.com/components/devops/troubleshoot#certificate-verification-failure
|
|
34
|
+
*/
|
|
27
35
|
declare class Zentopia {
|
|
28
36
|
readonly repoId: number;
|
|
29
37
|
readonly workspaceId: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcgis/components-build-utils",
|
|
3
|
-
"version": "4.34.0-next.
|
|
3
|
+
"version": "4.34.0-next.129",
|
|
4
4
|
"description": "Collection of common internal build-time patterns and utilities for ArcGIS Maps SDK for JavaScript components.",
|
|
5
5
|
"homepage": "https://developers.arcgis.com/javascript/latest/",
|
|
6
6
|
"type": "module",
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
"@commander-js/extra-typings": "^14.0.0",
|
|
26
26
|
"chalk": "^5.4.1",
|
|
27
27
|
"commander": "^14.0.0",
|
|
28
|
+
"fast-glob": "^3.3.3",
|
|
28
29
|
"fast-xml-parser": "^5.2.5",
|
|
29
30
|
"glob": "^11.0.3",
|
|
30
31
|
"ora": "^8.2.0",
|