@contextecf/guardian-cli 0.1.5 → 0.1.6
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.
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
var __defProp = Object.defineProperty;
|
|
3
3
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
-
var __esm = (fn, res) => function __init() {
|
|
5
|
-
|
|
4
|
+
var __esm = (fn, res, err) => function __init() {
|
|
5
|
+
if (err) throw err[0];
|
|
6
|
+
try {
|
|
7
|
+
return fn && (res = (0, fn[__getOwnPropNames(fn)[0]])(fn = 0)), res;
|
|
8
|
+
} catch (e) {
|
|
9
|
+
throw err = [e], e;
|
|
10
|
+
}
|
|
6
11
|
};
|
|
7
12
|
var __export = (target, all) => {
|
|
8
13
|
for (var name in all)
|
|
@@ -73,7 +78,7 @@ var init_core = __esm({
|
|
|
73
78
|
NEVER = /* @__PURE__ */ Object.freeze({
|
|
74
79
|
status: "aborted"
|
|
75
80
|
});
|
|
76
|
-
$brand = Symbol("zod_brand");
|
|
81
|
+
$brand = /* @__PURE__ */ Symbol("zod_brand");
|
|
77
82
|
$ZodAsyncError = class extends Error {
|
|
78
83
|
constructor() {
|
|
79
84
|
super(`Encountered Promise during synchronous parse. Use .parseAsync() instead.`);
|
|
@@ -10242,8 +10247,8 @@ function registry() {
|
|
|
10242
10247
|
var _a2, $output, $input, $ZodRegistry, globalRegistry;
|
|
10243
10248
|
var init_registries = __esm({
|
|
10244
10249
|
"node_modules/zod/v4/core/registries.js"() {
|
|
10245
|
-
$output = Symbol("ZodOutput");
|
|
10246
|
-
$input = Symbol("ZodInput");
|
|
10250
|
+
$output = /* @__PURE__ */ Symbol("ZodOutput");
|
|
10251
|
+
$input = /* @__PURE__ */ Symbol("ZodInput");
|
|
10247
10252
|
$ZodRegistry = class {
|
|
10248
10253
|
constructor() {
|
|
10249
10254
|
this._map = /* @__PURE__ */ new WeakMap();
|
|
@@ -23167,7 +23172,7 @@ var init_runtime = __esm({
|
|
|
23167
23172
|
"use strict";
|
|
23168
23173
|
init_src();
|
|
23169
23174
|
init_src2();
|
|
23170
|
-
GUARDIAN_CLI_VERSION = "0.1.
|
|
23175
|
+
GUARDIAN_CLI_VERSION = "0.1.6";
|
|
23171
23176
|
GUARDIAN_PROFILE_SCHEMA_VERSION = "contextecf/project-guardian-profile/v1";
|
|
23172
23177
|
GUARDIAN_NPM_PACKAGE_NAME = "@contextecf/guardian-cli";
|
|
23173
23178
|
GUARDIAN_NPM_REGISTRY = "https://registry.npmjs.org/";
|
|
@@ -593,7 +593,7 @@ function $constructor(name, initializer3, params) {
|
|
|
593
593
|
Object.defineProperty(_, "name", { value: name });
|
|
594
594
|
return _;
|
|
595
595
|
}
|
|
596
|
-
var $brand = Symbol("zod_brand");
|
|
596
|
+
var $brand = /* @__PURE__ */ Symbol("zod_brand");
|
|
597
597
|
var $ZodAsyncError = class extends Error {
|
|
598
598
|
constructor() {
|
|
599
599
|
super(`Encountered Promise during synchronous parse. Use .parseAsync() instead.`);
|
|
@@ -10336,8 +10336,8 @@ function yo_default() {
|
|
|
10336
10336
|
|
|
10337
10337
|
// node_modules/zod/v4/core/registries.js
|
|
10338
10338
|
var _a2;
|
|
10339
|
-
var $output = Symbol("ZodOutput");
|
|
10340
|
-
var $input = Symbol("ZodInput");
|
|
10339
|
+
var $output = /* @__PURE__ */ Symbol("ZodOutput");
|
|
10340
|
+
var $input = /* @__PURE__ */ Symbol("ZodInput");
|
|
10341
10341
|
var $ZodRegistry = class {
|
|
10342
10342
|
constructor() {
|
|
10343
10343
|
this._map = /* @__PURE__ */ new WeakMap();
|
|
@@ -16275,7 +16275,7 @@ function cloneList(values) {
|
|
|
16275
16275
|
}
|
|
16276
16276
|
|
|
16277
16277
|
// packages/guardian-cli/src/runtime.ts
|
|
16278
|
-
var GUARDIAN_CLI_VERSION = "0.1.
|
|
16278
|
+
var GUARDIAN_CLI_VERSION = "0.1.6";
|
|
16279
16279
|
var GUARDIAN_PROFILE_SCHEMA_VERSION = "contextecf/project-guardian-profile/v1";
|
|
16280
16280
|
var GUARDIAN_NPM_PACKAGE_NAME = "@contextecf/guardian-cli";
|
|
16281
16281
|
var GUARDIAN_NPM_REGISTRY = "https://registry.npmjs.org/";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { Writable } from 'node:stream';
|
|
2
2
|
import { type PolicyPackMarketplaceManifest } from '@contextecf/personal-fabric-contracts';
|
|
3
3
|
import { SQLitePersonalFabricStore, type PersonalFabricDataImportResult, type PersonalFabricMutableDataDeleteResult, type SQLitePersonalFabricBackupResult } from '@contextecf/personal-fabric-store';
|
|
4
|
-
export declare const GUARDIAN_CLI_VERSION = "0.1.
|
|
4
|
+
export declare const GUARDIAN_CLI_VERSION = "0.1.6";
|
|
5
5
|
export declare const GUARDIAN_PROFILE_SCHEMA_VERSION = "contextecf/project-guardian-profile/v1";
|
|
6
6
|
export declare const GUARDIAN_NPM_PACKAGE_NAME = "@contextecf/guardian-cli";
|
|
7
7
|
export declare const GUARDIAN_NPM_REGISTRY = "https://registry.npmjs.org/";
|