@firestartr/cli 2.4.0 → 2.5.0-snapshot-2

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.
Files changed (32) hide show
  1. package/README.md +0 -2
  2. package/build/{709.index.js → 351.index.js} +3 -3
  3. package/build/{55.index.js → 540.index.js} +5 -5
  4. package/build/{318.index.js → 594.index.js} +3 -3
  5. package/build/{539.index.js → 647.index.js} +5 -5
  6. package/build/{346.index.js → 857.index.js} +5 -5
  7. package/build/index.js +102101 -109527
  8. package/build/packages/catalog_common/index.d.ts +9 -0
  9. package/build/packages/catalog_common/src/codeowners/index.d.ts +26 -0
  10. package/build/packages/catalog_common/src/types/envvars.d.ts +0 -4
  11. package/build/packages/cdk8s_renderer/imports/firestartr.dev.d.ts +8 -19
  12. package/build/packages/gh_provisioner/src/entities/ghmembership/helpers/index.d.ts +2 -0
  13. package/build/packages/gh_provisioner/src/entities/ghmembership/index.d.ts +1 -0
  14. package/build/packages/github/index.d.ts +1 -1
  15. package/build/packages/github/src/repository.d.ts +2 -2
  16. package/build/packages/importer/src/decanter/gh/github_repo.d.ts +2 -0
  17. package/build/packages/operator/src/ctl.d.ts +8 -2
  18. package/build/packages/operator/src/definitions.d.ts +1 -1
  19. package/build/packages/operator/src/informer.d.ts +2 -2
  20. package/build/packages/operator/src/tfm_mirrors.d.ts +5 -0
  21. package/build/packages/terraform_provisioner/index.d.ts +21 -1
  22. package/build/packages/terraform_provisioner/src/index.d.ts +2 -0
  23. package/build/packages/terraform_provisioner/src/mirror-repos/index.d.ts +41 -0
  24. package/build/packages/terraform_provisioner/src/mirror-repos.d.ts +13 -0
  25. package/build/packages/terraform_provisioner/src/project_tf_remote.d.ts +0 -1
  26. package/build/packages/terraform_provisioner/src/utils.d.ts +19 -1
  27. package/package.json +1 -1
  28. package/build/202.index.js +0 -46
  29. package/build/697.index.js +0 -80
  30. package/build/87.index.js +0 -80
  31. package/build/902.index.js +0 -36
  32. package/build/915.index.js +0 -79
@@ -1,79 +0,0 @@
1
- export const id = 915;
2
- export const ids = [915];
3
- export const modules = {
4
-
5
- /***/ 69192:
6
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
7
-
8
-
9
- /*
10
- * Copyright The OpenTelemetry Authors
11
- *
12
- * Licensed under the Apache License, Version 2.0 (the "License");
13
- * you may not use this file except in compliance with the License.
14
- * You may obtain a copy of the License at
15
- *
16
- * https://www.apache.org/licenses/LICENSE-2.0
17
- *
18
- * Unless required by applicable law or agreed to in writing, software
19
- * distributed under the License is distributed on an "AS IS" BASIS,
20
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21
- * See the License for the specific language governing permissions and
22
- * limitations under the License.
23
- */
24
- Object.defineProperty(exports, "__esModule", ({ value: true }));
25
- exports.execAsync = void 0;
26
- const child_process = __webpack_require__(32081);
27
- const util = __webpack_require__(73837);
28
- exports.execAsync = util.promisify(child_process.exec);
29
- //# sourceMappingURL=execAsync.js.map
30
-
31
- /***/ }),
32
-
33
- /***/ 36915:
34
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
35
-
36
-
37
- /*
38
- * Copyright The OpenTelemetry Authors
39
- *
40
- * Licensed under the Apache License, Version 2.0 (the "License");
41
- * you may not use this file except in compliance with the License.
42
- * You may obtain a copy of the License at
43
- *
44
- * https://www.apache.org/licenses/LICENSE-2.0
45
- *
46
- * Unless required by applicable law or agreed to in writing, software
47
- * distributed under the License is distributed on an "AS IS" BASIS,
48
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
49
- * See the License for the specific language governing permissions and
50
- * limitations under the License.
51
- */
52
- Object.defineProperty(exports, "__esModule", ({ value: true }));
53
- exports.getMachineId = void 0;
54
- const fs_1 = __webpack_require__(57147);
55
- const execAsync_1 = __webpack_require__(69192);
56
- const api_1 = __webpack_require__(78199);
57
- async function getMachineId() {
58
- try {
59
- const result = await fs_1.promises.readFile('/etc/hostid', { encoding: 'utf8' });
60
- return result.trim();
61
- }
62
- catch (e) {
63
- api_1.diag.debug(`error reading machine id: ${e}`);
64
- }
65
- try {
66
- const result = await (0, execAsync_1.execAsync)('kenv -q smbios.system.uuid');
67
- return result.stdout.trim();
68
- }
69
- catch (e) {
70
- api_1.diag.debug(`error reading machine id: ${e}`);
71
- }
72
- return undefined;
73
- }
74
- exports.getMachineId = getMachineId;
75
- //# sourceMappingURL=getMachineId-bsd.js.map
76
-
77
- /***/ })
78
-
79
- };