@kya-os/consent 0.1.39 → 0.1.41
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/bundle/index.d.ts +2 -0
- package/dist/bundle/index.d.ts.map +1 -1
- package/dist/bundle/index.js +2 -0
- package/dist/bundle/index.js.map +1 -1
- package/dist/bundle/inline.d.ts.map +1 -1
- package/dist/bundle/inline.js +2 -2
- package/dist/bundle/inline.js.map +1 -1
- package/dist/cjs/bundle/index.js +4 -1
- package/dist/cjs/bundle/index.js.map +1 -1
- package/dist/cjs/bundle/inline.js +2 -2
- package/dist/cjs/bundle/inline.js.map +1 -1
- package/dist/cjs/components/consent-capabilities-screen.js +39 -2
- package/dist/cjs/components/consent-capabilities-screen.js.map +1 -1
- package/dist/cjs/components/consent-capability-card.js +62 -3
- package/dist/cjs/components/consent-capability-card.js.map +1 -1
- package/dist/cjs/components/consent-connector-header.js +247 -0
- package/dist/cjs/components/consent-connector-header.js.map +1 -0
- package/dist/cjs/components/index.js +3 -1
- package/dist/cjs/components/index.js.map +1 -1
- package/dist/cjs/components/mcp-consent.js +18 -1
- package/dist/cjs/components/mcp-consent.js.map +1 -1
- package/dist/cjs/mcp-app/inline.js +2 -2
- package/dist/cjs/mcp-app/inline.js.map +1 -1
- package/dist/components/consent-capabilities-screen.d.ts +13 -0
- package/dist/components/consent-capabilities-screen.d.ts.map +1 -1
- package/dist/components/consent-capabilities-screen.js +39 -2
- package/dist/components/consent-capabilities-screen.js.map +1 -1
- package/dist/components/consent-capability-card.d.ts +8 -0
- package/dist/components/consent-capability-card.d.ts.map +1 -1
- package/dist/components/consent-capability-card.js +62 -3
- package/dist/components/consent-capability-card.js.map +1 -1
- package/dist/components/consent-connector-header.d.ts +64 -0
- package/dist/components/consent-connector-header.d.ts.map +1 -0
- package/dist/components/consent-connector-header.js +244 -0
- package/dist/components/consent-connector-header.js.map +1 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/components/index.js +1 -0
- package/dist/components/index.js.map +1 -1
- package/dist/components/mcp-consent.d.ts.map +1 -1
- package/dist/components/mcp-consent.js +18 -1
- package/dist/components/mcp-consent.js.map +1 -1
- package/dist/consent.js +273 -5
- package/dist/consent.min.js +246 -108
- package/dist/mcp-app/inline.d.ts.map +1 -1
- package/dist/mcp-app/inline.js +2 -2
- package/dist/mcp-app/inline.js.map +1 -1
- package/dist/schemas/api.schemas.d.ts +30 -30
- package/dist/schemas/capabilities.schemas.d.ts +8 -8
- package/dist/schemas/config.schemas.d.ts +52 -52
- package/dist/schemas/modes.schemas.d.ts +6 -6
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inline.js","sourceRoot":"","sources":["../../src/bundle/inline.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH;;;GAGG;AACH,MAAM,CAAC,MAAM,cAAc,GAAW,
|
|
1
|
+
{"version":3,"file":"inline.js","sourceRoot":"","sources":["../../src/bundle/inline.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH;;;GAGG;AACH,MAAM,CAAC,MAAM,cAAc,GAAW,ohpQAAohpQ,CAAC;AAE3jpQ;;GAEG;AACH,MAAM,CAAC,MAAM,mBAAmB,GAAW,MAAM,CAAC"}
|
package/dist/cjs/bundle/index.js
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
* @module @kya-os/consent/bundle
|
|
24
24
|
*/
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.ConsentCapabilitiesScreen = exports.ConsentRevocationNotice = exports.ConsentFooter = exports.ConsentActionBar = exports.ConsentCapabilityCard = exports.ConsentAgentHeader = exports.ConsentOTPInput = exports.ConsentOAuthButton = exports.ConsentTerms = exports.ConsentPermissions = exports.ConsentShell = exports.ConsentInput = exports.ConsentCheckbox = exports.ConsentButton = exports.McpConsent = void 0;
|
|
26
|
+
exports.ConsentCapabilitiesScreen = exports.ConsentConnectorHeader = exports.ConsentRevocationNotice = exports.ConsentFooter = exports.ConsentActionBar = exports.ConsentCapabilityCard = exports.ConsentAgentHeader = exports.ConsentOTPInput = exports.ConsentOAuthButton = exports.ConsentTerms = exports.ConsentPermissions = exports.ConsentShell = exports.ConsentInput = exports.ConsentCheckbox = exports.ConsentButton = exports.McpConsent = void 0;
|
|
27
27
|
// Import all components - this registers them as custom elements
|
|
28
28
|
require("../components/consent-button.js");
|
|
29
29
|
require("../components/consent-checkbox.js");
|
|
@@ -38,6 +38,7 @@ require("../components/consent-capability-card.js");
|
|
|
38
38
|
require("../components/consent-action-bar.js");
|
|
39
39
|
require("../components/consent-footer.js");
|
|
40
40
|
require("../components/consent-revocation-notice.js");
|
|
41
|
+
require("../components/consent-connector-header.js");
|
|
41
42
|
require("../components/consent-capabilities-screen.js");
|
|
42
43
|
require("../components/mcp-consent.js");
|
|
43
44
|
// Re-export the main composite component for programmatic use
|
|
@@ -70,6 +71,8 @@ var consent_footer_js_1 = require("../components/consent-footer.js");
|
|
|
70
71
|
Object.defineProperty(exports, "ConsentFooter", { enumerable: true, get: function () { return consent_footer_js_1.ConsentFooter; } });
|
|
71
72
|
var consent_revocation_notice_js_1 = require("../components/consent-revocation-notice.js");
|
|
72
73
|
Object.defineProperty(exports, "ConsentRevocationNotice", { enumerable: true, get: function () { return consent_revocation_notice_js_1.ConsentRevocationNotice; } });
|
|
74
|
+
var consent_connector_header_js_1 = require("../components/consent-connector-header.js");
|
|
75
|
+
Object.defineProperty(exports, "ConsentConnectorHeader", { enumerable: true, get: function () { return consent_connector_header_js_1.ConsentConnectorHeader; } });
|
|
73
76
|
var consent_capabilities_screen_js_1 = require("../components/consent-capabilities-screen.js");
|
|
74
77
|
Object.defineProperty(exports, "ConsentCapabilitiesScreen", { enumerable: true, get: function () { return consent_capabilities_screen_js_1.ConsentCapabilitiesScreen; } });
|
|
75
78
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/bundle/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;;GAsBG;;;AAEH,iEAAiE;AACjE,2CAAyC;AACzC,6CAA2C;AAC3C,0CAAwC;AACxC,0CAAwC;AACxC,gDAA8C;AAC9C,0CAAwC;AACxC,iDAA+C;AAC/C,8CAA4C;AAC5C,iDAA+C;AAC/C,oDAAkD;AAClD,+CAA6C;AAC7C,2CAAyC;AACzC,sDAAoD;AACpD,wDAAsD;AACtD,wCAAsC;AAEtC,8DAA8D;AAC9D,+DAA0D;AAAjD,4GAAA,UAAU,OAAA;AAEnB,qDAAqD;AACrD,qEAAgE;AAAvD,kHAAA,aAAa,OAAA;AACtB,yEAAoE;AAA3D,sHAAA,eAAe,OAAA;AACxB,mEAA8D;AAArD,gHAAA,YAAY,OAAA;AACrB,mEAA8D;AAArD,gHAAA,YAAY,OAAA;AACrB,+EAA0E;AAAjE,4HAAA,kBAAkB,OAAA;AAC3B,mEAA8D;AAArD,gHAAA,YAAY,OAAA;AACrB,iFAA2E;AAAlE,6HAAA,kBAAkB,OAAA;AAC3B,2EAAqE;AAA5D,uHAAA,eAAe,OAAA;AACxB,iFAA2E;AAAlE,6HAAA,kBAAkB,OAAA;AAC3B,uFAAiF;AAAxE,mIAAA,qBAAqB,OAAA;AAC9B,6EAAuE;AAA9D,yHAAA,gBAAgB,OAAA;AACzB,qEAAgE;AAAvD,kHAAA,aAAa,OAAA;AACtB,2FAAqF;AAA5E,uIAAA,uBAAuB,OAAA;AAChC,+FAAyF;AAAhF,2IAAA,yBAAyB,OAAA"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/bundle/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;;GAsBG;;;AAEH,iEAAiE;AACjE,2CAAyC;AACzC,6CAA2C;AAC3C,0CAAwC;AACxC,0CAAwC;AACxC,gDAA8C;AAC9C,0CAAwC;AACxC,iDAA+C;AAC/C,8CAA4C;AAC5C,iDAA+C;AAC/C,oDAAkD;AAClD,+CAA6C;AAC7C,2CAAyC;AACzC,sDAAoD;AACpD,qDAAmD;AACnD,wDAAsD;AACtD,wCAAsC;AAEtC,8DAA8D;AAC9D,+DAA0D;AAAjD,4GAAA,UAAU,OAAA;AAEnB,qDAAqD;AACrD,qEAAgE;AAAvD,kHAAA,aAAa,OAAA;AACtB,yEAAoE;AAA3D,sHAAA,eAAe,OAAA;AACxB,mEAA8D;AAArD,gHAAA,YAAY,OAAA;AACrB,mEAA8D;AAArD,gHAAA,YAAY,OAAA;AACrB,+EAA0E;AAAjE,4HAAA,kBAAkB,OAAA;AAC3B,mEAA8D;AAArD,gHAAA,YAAY,OAAA;AACrB,iFAA2E;AAAlE,6HAAA,kBAAkB,OAAA;AAC3B,2EAAqE;AAA5D,uHAAA,eAAe,OAAA;AACxB,iFAA2E;AAAlE,6HAAA,kBAAkB,OAAA;AAC3B,uFAAiF;AAAxE,mIAAA,qBAAqB,OAAA;AAC9B,6EAAuE;AAA9D,yHAAA,gBAAgB,OAAA;AACzB,qEAAgE;AAAvD,kHAAA,aAAa,OAAA;AACtB,2FAAqF;AAA5E,uIAAA,uBAAuB,OAAA;AAChC,yFAAmF;AAA1E,qIAAA,sBAAsB,OAAA;AAC/B,+FAAyF;AAAhF,2IAAA,yBAAyB,OAAA"}
|