@activepieces/piece-qwilr 0.1.4 → 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.
Files changed (32) hide show
  1. package/package.json +7 -22
  2. package/src/index.js +16 -47
  3. package/README.md +0 -7
  4. package/src/index.d.ts +0 -1
  5. package/src/index.js.map +0 -1
  6. package/src/lib/actions/create-page.d.ts +0 -10
  7. package/src/lib/actions/create-page.js +0 -90
  8. package/src/lib/actions/create-page.js.map +0 -1
  9. package/src/lib/common/auth.d.ts +0 -1
  10. package/src/lib/common/auth.js +0 -13
  11. package/src/lib/common/auth.js.map +0 -1
  12. package/src/lib/triggers/page-accepted.d.ts +0 -2
  13. package/src/lib/triggers/page-accepted.js +0 -71
  14. package/src/lib/triggers/page-accepted.js.map +0 -1
  15. package/src/lib/triggers/page-first-viewed.d.ts +0 -2
  16. package/src/lib/triggers/page-first-viewed.js +0 -71
  17. package/src/lib/triggers/page-first-viewed.js.map +0 -1
  18. package/src/lib/triggers/page-partially-accepted.d.ts +0 -2
  19. package/src/lib/triggers/page-partially-accepted.js +0 -71
  20. package/src/lib/triggers/page-partially-accepted.js.map +0 -1
  21. package/src/lib/triggers/page-preview-accepted.d.ts +0 -2
  22. package/src/lib/triggers/page-preview-accepted.js +0 -71
  23. package/src/lib/triggers/page-preview-accepted.js.map +0 -1
  24. package/src/lib/triggers/page-revived-live.d.ts +0 -2
  25. package/src/lib/triggers/page-revived-live.js +0 -71
  26. package/src/lib/triggers/page-revived-live.js.map +0 -1
  27. package/src/lib/triggers/page-set-live.d.ts +0 -2
  28. package/src/lib/triggers/page-set-live.js +0 -71
  29. package/src/lib/triggers/page-set-live.js.map +0 -1
  30. package/src/lib/triggers/page-viewed.d.ts +0 -2
  31. package/src/lib/triggers/page-viewed.js +0 -71
  32. package/src/lib/triggers/page-viewed.js.map +0 -1
package/package.json CHANGED
@@ -1,27 +1,12 @@
1
1
  {
2
2
  "name": "@activepieces/piece-qwilr",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "type": "commonjs",
5
5
  "main": "./src/index.js",
6
- "types": "./src/index.d.ts",
7
- "dependencies": {
8
- "@sinclair/typebox": "0.34.11",
9
- "ai": "^6.0.0",
10
- "axios": "1.13.5",
11
- "axios-retry": "4.4.1",
12
- "deepmerge-ts": "7.1.0",
13
- "form-data": "4.0.4",
14
- "mime-types": "2.1.35",
15
- "nanoid": "3.3.8",
16
- "semver": "7.6.0",
17
- "socket.io-client": "4.8.1",
18
- "tslib": "^2.3.0",
19
- "zod": "4.1.13",
20
- "@activepieces/pieces-common": "0.11.6",
21
- "@activepieces/pieces-framework": "0.25.4",
22
- "@activepieces/shared": "0.37.0"
23
- },
24
- "resolutions": {
25
- "rollup": "npm:@rollup/wasm-node"
26
- }
6
+ "dependencies": {},
7
+ "files": [
8
+ "src/index.js",
9
+ "package.json",
10
+ "src/i18n"
11
+ ]
27
12
  }
package/src/index.js CHANGED
@@ -1,47 +1,16 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.qwilr = void 0;
4
- const tslib_1 = require("tslib");
5
- const pieces_framework_1 = require("@activepieces/pieces-framework");
6
- const shared_1 = require("@activepieces/shared");
7
- const auth_1 = require("./lib/common/auth");
8
- const create_page_1 = require("./lib/actions/create-page");
9
- const pieces_common_1 = require("@activepieces/pieces-common");
10
- const page_accepted_1 = require("./lib/triggers/page-accepted");
11
- const page_partially_accepted_1 = require("./lib/triggers/page-partially-accepted");
12
- const page_preview_accepted_1 = require("./lib/triggers/page-preview-accepted");
13
- const page_viewed_1 = require("./lib/triggers/page-viewed");
14
- const page_first_viewed_1 = require("./lib/triggers/page-first-viewed");
15
- const page_set_live_1 = require("./lib/triggers/page-set-live");
16
- const page_revived_live_1 = require("./lib/triggers/page-revived-live");
17
- exports.qwilr = (0, pieces_framework_1.createPiece)({
18
- displayName: "Qwilr",
19
- description: "Create beautiful, interactive sales documents and proposals with Qwilr. Automate page creation, track views, and handle acceptance events.",
20
- auth: auth_1.qwilrAuth,
21
- minimumSupportedRelease: '0.36.1',
22
- logoUrl: "https://cdn.activepieces.com/pieces/qwilr.png",
23
- authors: ["onyedikachi-david"],
24
- categories: [shared_1.PieceCategory.SALES_AND_CRM, shared_1.PieceCategory.CONTENT_AND_FILES],
25
- actions: [
26
- create_page_1.createPageAction,
27
- (0, pieces_common_1.createCustomApiCallAction)({
28
- auth: auth_1.qwilrAuth,
29
- baseUrl: () => 'https://api.qwilr.com/v1',
30
- authMapping: (auth) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
31
- return {
32
- 'Authorization': `Bearer ${auth}`
33
- };
34
- })
35
- })
36
- ],
37
- triggers: [
38
- page_accepted_1.pageAcceptedTrigger,
39
- page_partially_accepted_1.pagePartiallyAcceptedTrigger,
40
- page_preview_accepted_1.pagePreviewAcceptedTrigger,
41
- page_viewed_1.pageViewedTrigger,
42
- page_first_viewed_1.pageFirstViewedTrigger,
43
- page_set_live_1.pageSetLiveTrigger,
44
- page_revived_live_1.pageRevivedLiveTrigger
45
- ],
46
- });
47
- //# sourceMappingURL=index.js.map
1
+ "use strict";var Ls=Object.create;var Je=Object.defineProperty;var Fs=Object.getOwnPropertyDescriptor;var Bs=Object.getOwnPropertyNames;var Zs=Object.getPrototypeOf,Vs=Object.prototype.hasOwnProperty;var o=(e,t)=>Je(e,"name",{value:t,configurable:!0});var I=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),ln=(e,t)=>{for(var r in t)Je(e,r,{get:t[r],enumerable:!0})},dn=(e,t,r,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let i of Bs(t))!Vs.call(e,i)&&i!==r&&Je(e,i,{get:()=>t[i],enumerable:!(n=Fs(t,i))||n.enumerable});return e};var Re=(e,t,r)=>(r=e!=null?Ls(Zs(e)):{},dn(t||!e||!e.__esModule?Je(r,"default",{value:e,enumerable:!0}):r,e)),Hs=e=>dn(Je({},"__esModule",{value:!0}),e);var wo=I((zo,Lt)=>{(function(e){"use strict";let t="(0?\\d+|0x[a-f0-9]+)",r={fourOctet:new RegExp(`^${t}\\.${t}\\.${t}\\.${t}$`,"i"),threeOctet:new RegExp(`^${t}\\.${t}\\.${t}$`,"i"),twoOctet:new RegExp(`^${t}\\.${t}$`,"i"),longValue:new RegExp(`^${t}$`,"i")},n=new RegExp("^0[0-7]+$","i"),i=new RegExp("^0x[a-f0-9]+$","i"),u="%[0-9a-z]{1,}",p="(?:[0-9a-f]+::?)+",d={zoneIndex:new RegExp(u,"i"),native:new RegExp(`^(::)?(${p})?([0-9a-f]+)?(::)?(${u})?$`,"i"),deprecatedTransitional:new RegExp(`^(?:::)(${t}\\.${t}\\.${t}\\.${t}(${u})?)$`,"i"),transitional:new RegExp(`^((?:${p})|(?:::)(?:${p})?)${t}\\.${t}\\.${t}\\.${t}(${u})?$`,"i")};function f(s,l){if(s.indexOf("::")!==s.lastIndexOf("::"))return null;let g=0,m=-1,v=(s.match(d.zoneIndex)||[])[0],P,M;for(v&&(v=v.substring(1),s=s.replace(/%.+$/,""));(m=s.indexOf(":",m+1))>=0;)g++;if(s.substr(0,2)==="::"&&g--,s.substr(-2,2)==="::"&&g--,g>l)return null;for(M=l-g,P=":";M--;)P+="0:";return s=s.replace("::",P),s[0]===":"&&(s=s.slice(1)),s[s.length-1]===":"&&(s=s.slice(0,-1)),l=function(){let ne=s.split(":"),se=[];for(let Ke=0;Ke<ne.length;Ke++)se.push(parseInt(ne[Ke],16));return se}(),{parts:l,zoneId:v}}o(f,"expandIPv6");function h(s,l,g,m){if(s.length!==l.length)throw new Error("ipaddr: cannot match CIDR for objects with different lengths");let v=0,P;for(;m>0;){if(P=g-m,P<0&&(P=0),s[v]>>P!==l[v]>>P)return!1;m-=g,v+=1}return!0}o(h,"matchCIDR");function x(s){if(i.test(s))return parseInt(s,16);if(s[0]==="0"&&!isNaN(parseInt(s[1],10))){if(n.test(s))return parseInt(s,8);throw new Error(`ipaddr: cannot parse ${s} as octal`)}return parseInt(s,10)}o(x,"parseIntAuto");function $(s,l){for(;s.length<l;)s=`0${s}`;return s}o($,"padPart");let _={};_.IPv4=function(){function s(l){if(l.length!==4)throw new Error("ipaddr: ipv4 octet count should be 4");let g,m;for(g=0;g<l.length;g++)if(m=l[g],!(0<=m&&m<=255))throw new Error("ipaddr: ipv4 octet should fit in 8 bits");this.octets=l}return o(s,"IPv4"),s.prototype.SpecialRanges={unspecified:[[new s([0,0,0,0]),8]],broadcast:[[new s([255,255,255,255]),32]],multicast:[[new s([224,0,0,0]),4]],linkLocal:[[new s([169,254,0,0]),16]],loopback:[[new s([127,0,0,0]),8]],carrierGradeNat:[[new s([100,64,0,0]),10]],private:[[new s([10,0,0,0]),8],[new s([172,16,0,0]),12],[new s([192,168,0,0]),16]],reserved:[[new s([192,0,0,0]),24],[new s([192,0,2,0]),24],[new s([192,88,99,0]),24],[new s([198,18,0,0]),15],[new s([198,51,100,0]),24],[new s([203,0,113,0]),24],[new s([240,0,0,0]),4]],as112:[[new s([192,175,48,0]),24],[new s([192,31,196,0]),24]],amt:[[new s([192,52,193,0]),24]]},s.prototype.kind=function(){return"ipv4"},s.prototype.match=function(l,g){let m;if(g===void 0&&(m=l,l=m[0],g=m[1]),l.kind()!=="ipv4")throw new Error("ipaddr: cannot match ipv4 address with non-ipv4 one");return h(this.octets,l.octets,8,g)},s.prototype.prefixLengthFromSubnetMask=function(){let l=0,g=!1,m={0:8,128:7,192:6,224:5,240:4,248:3,252:2,254:1,255:0},v,P,M;for(v=3;v>=0;v-=1)if(P=this.octets[v],P in m){if(M=m[P],g&&M!==0)return null;M!==8&&(g=!0),l+=M}else return null;return 32-l},s.prototype.range=function(){return _.subnetMatch(this,this.SpecialRanges)},s.prototype.toByteArray=function(){return this.octets.slice(0)},s.prototype.toIPv4MappedAddress=function(){return _.IPv6.parse(`::ffff:${this.toString()}`)},s.prototype.toNormalizedString=function(){return this.toString()},s.prototype.toString=function(){return this.octets.join(".")},s}(),_.IPv4.broadcastAddressFromCIDR=function(s){try{let l=this.parseCIDR(s),g=l[0].toByteArray(),m=this.subnetMaskFromPrefixLength(l[1]).toByteArray(),v=[],P=0;for(;P<4;)v.push(parseInt(g[P],10)|parseInt(m[P],10)^255),P++;return new this(v)}catch{throw new Error("ipaddr: the address does not have IPv4 CIDR format")}},_.IPv4.isIPv4=function(s){return this.parser(s)!==null},_.IPv4.isValid=function(s){try{return new this(this.parser(s)),!0}catch{return!1}},_.IPv4.isValidCIDR=function(s){try{return this.parseCIDR(s),!0}catch{return!1}},_.IPv4.isValidFourPartDecimal=function(s){return!!(_.IPv4.isValid(s)&&s.match(/^(0|[1-9]\d*)(\.(0|[1-9]\d*)){3}$/))},_.IPv4.isValidCIDRFourPartDecimal=function(s){let l=s.match(/^(.+)\/(\d+)$/);return!_.IPv4.isValidCIDR(s)||!l?!1:_.IPv4.isValidFourPartDecimal(l[1])},_.IPv4.networkAddressFromCIDR=function(s){let l,g,m,v,P;try{for(l=this.parseCIDR(s),m=l[0].toByteArray(),P=this.subnetMaskFromPrefixLength(l[1]).toByteArray(),v=[],g=0;g<4;)v.push(parseInt(m[g],10)&parseInt(P[g],10)),g++;return new this(v)}catch{throw new Error("ipaddr: the address does not have IPv4 CIDR format")}},_.IPv4.parse=function(s){let l=this.parser(s);if(l===null)throw new Error("ipaddr: string is not formatted like an IPv4 Address");return new this(l)},_.IPv4.parseCIDR=function(s){let l;if(l=s.match(/^(.+)\/(\d+)$/)){let g=parseInt(l[2]);if(g>=0&&g<=32){let m=[this.parse(l[1]),g];return Object.defineProperty(m,"toString",{value:o(function(){return this.join("/")},"value")}),m}}throw new Error("ipaddr: string is not formatted like an IPv4 CIDR range")},_.IPv4.parser=function(s){let l,g,m;if(l=s.match(r.fourOctet))return function(){let v=l.slice(1,6),P=[];for(let M=0;M<v.length;M++)g=v[M],P.push(x(g));return P}();if(l=s.match(r.longValue)){if(m=x(l[1]),m>4294967295||m<0)throw new Error("ipaddr: address outside defined range");return function(){let v=[],P;for(P=0;P<=24;P+=8)v.push(m>>P&255);return v}().reverse()}else return(l=s.match(r.twoOctet))?function(){let v=l.slice(1,4),P=[];if(m=x(v[1]),m>16777215||m<0)throw new Error("ipaddr: address outside defined range");return P.push(x(v[0])),P.push(m>>16&255),P.push(m>>8&255),P.push(m&255),P}():(l=s.match(r.threeOctet))?function(){let v=l.slice(1,5),P=[];if(m=x(v[2]),m>65535||m<0)throw new Error("ipaddr: address outside defined range");return P.push(x(v[0])),P.push(x(v[1])),P.push(m>>8&255),P.push(m&255),P}():null},_.IPv4.subnetMaskFromPrefixLength=function(s){if(s=parseInt(s),s<0||s>32)throw new Error("ipaddr: invalid IPv4 prefix length");let l=[0,0,0,0],g=0,m=Math.floor(s/8);for(;g<m;)l[g]=255,g++;return m<4&&(l[m]=Math.pow(2,s%8)-1<<8-s%8),new this(l)},_.IPv6=function(){function s(l,g){let m,v;if(l.length===16)for(this.parts=[],m=0;m<=14;m+=2)this.parts.push(l[m]<<8|l[m+1]);else if(l.length===8)this.parts=l;else throw new Error("ipaddr: ipv6 part count should be 8 or 16");for(m=0;m<this.parts.length;m++)if(v=this.parts[m],!(0<=v&&v<=65535))throw new Error("ipaddr: ipv6 part should fit in 16 bits");g&&(this.zoneId=g)}return o(s,"IPv6"),s.prototype.SpecialRanges={unspecified:[new s([0,0,0,0,0,0,0,0]),128],linkLocal:[new s([65152,0,0,0,0,0,0,0]),10],multicast:[new s([65280,0,0,0,0,0,0,0]),8],loopback:[new s([0,0,0,0,0,0,0,1]),128],uniqueLocal:[new s([64512,0,0,0,0,0,0,0]),7],ipv4Mapped:[new s([0,0,0,0,0,65535,0,0]),96],discard:[new s([256,0,0,0,0,0,0,0]),64],rfc6145:[new s([0,0,0,0,65535,0,0,0]),96],rfc6052:[new s([100,65435,0,0,0,0,0,0]),96],"6to4":[new s([8194,0,0,0,0,0,0,0]),16],teredo:[new s([8193,0,0,0,0,0,0,0]),32],benchmarking:[new s([8193,2,0,0,0,0,0,0]),48],amt:[new s([8193,3,0,0,0,0,0,0]),32],as112v6:[[new s([8193,4,274,0,0,0,0,0]),48],[new s([9760,79,32768,0,0,0,0,0]),48]],deprecated:[new s([8193,16,0,0,0,0,0,0]),28],orchid2:[new s([8193,32,0,0,0,0,0,0]),28],droneRemoteIdProtocolEntityTags:[new s([8193,48,0,0,0,0,0,0]),28],reserved:[[new s([8193,0,0,0,0,0,0,0]),23],[new s([8193,3512,0,0,0,0,0,0]),32]]},s.prototype.isIPv4MappedAddress=function(){return this.range()==="ipv4Mapped"},s.prototype.kind=function(){return"ipv6"},s.prototype.match=function(l,g){let m;if(g===void 0&&(m=l,l=m[0],g=m[1]),l.kind()!=="ipv6")throw new Error("ipaddr: cannot match ipv6 address with non-ipv6 one");return h(this.parts,l.parts,16,g)},s.prototype.prefixLengthFromSubnetMask=function(){let l=0,g=!1,m={0:16,32768:15,49152:14,57344:13,61440:12,63488:11,64512:10,65024:9,65280:8,65408:7,65472:6,65504:5,65520:4,65528:3,65532:2,65534:1,65535:0},v,P;for(let M=7;M>=0;M-=1)if(v=this.parts[M],v in m){if(P=m[v],g&&P!==0)return null;P!==16&&(g=!0),l+=P}else return null;return 128-l},s.prototype.range=function(){return _.subnetMatch(this,this.SpecialRanges)},s.prototype.toByteArray=function(){let l,g=[],m=this.parts;for(let v=0;v<m.length;v++)l=m[v],g.push(l>>8),g.push(l&255);return g},s.prototype.toFixedLengthString=function(){let l=function(){let m=[];for(let v=0;v<this.parts.length;v++)m.push($(this.parts[v].toString(16),4));return m}.call(this).join(":"),g="";return this.zoneId&&(g=`%${this.zoneId}`),l+g},s.prototype.toIPv4Address=function(){if(!this.isIPv4MappedAddress())throw new Error("ipaddr: trying to convert a generic ipv6 address to ipv4");let l=this.parts.slice(-2),g=l[0],m=l[1];return new _.IPv4([g>>8,g&255,m>>8,m&255])},s.prototype.toNormalizedString=function(){let l=function(){let m=[];for(let v=0;v<this.parts.length;v++)m.push(this.parts[v].toString(16));return m}.call(this).join(":"),g="";return this.zoneId&&(g=`%${this.zoneId}`),l+g},s.prototype.toRFC5952String=function(){let l=/((^|:)(0(:|$)){2,})/g,g=this.toNormalizedString(),m=0,v=-1,P;for(;P=l.exec(g);)P[0].length>v&&(m=P.index,v=P[0].length);return v<0?g:`${g.substring(0,m)}::${g.substring(m+v)}`},s.prototype.toString=function(){return this.toRFC5952String()},s}(),_.IPv6.broadcastAddressFromCIDR=function(s){try{let l=this.parseCIDR(s),g=l[0].toByteArray(),m=this.subnetMaskFromPrefixLength(l[1]).toByteArray(),v=[],P=0;for(;P<16;)v.push(parseInt(g[P],10)|parseInt(m[P],10)^255),P++;return new this(v)}catch(l){throw new Error(`ipaddr: the address does not have IPv6 CIDR format (${l})`)}},_.IPv6.isIPv6=function(s){return this.parser(s)!==null},_.IPv6.isValid=function(s){if(typeof s=="string"&&s.indexOf(":")===-1)return!1;try{let l=this.parser(s);return new this(l.parts,l.zoneId),!0}catch{return!1}},_.IPv6.isValidCIDR=function(s){if(typeof s=="string"&&s.indexOf(":")===-1)return!1;try{return this.parseCIDR(s),!0}catch{return!1}},_.IPv6.networkAddressFromCIDR=function(s){let l,g,m,v,P;try{for(l=this.parseCIDR(s),m=l[0].toByteArray(),P=this.subnetMaskFromPrefixLength(l[1]).toByteArray(),v=[],g=0;g<16;)v.push(parseInt(m[g],10)&parseInt(P[g],10)),g++;return new this(v)}catch(M){throw new Error(`ipaddr: the address does not have IPv6 CIDR format (${M})`)}},_.IPv6.parse=function(s){let l=this.parser(s);if(l.parts===null)throw new Error("ipaddr: string is not formatted like an IPv6 Address");return new this(l.parts,l.zoneId)},_.IPv6.parseCIDR=function(s){let l,g,m;if((g=s.match(/^(.+)\/(\d+)$/))&&(l=parseInt(g[2]),l>=0&&l<=128))return m=[this.parse(g[1]),l],Object.defineProperty(m,"toString",{value:o(function(){return this.join("/")},"value")}),m;throw new Error("ipaddr: string is not formatted like an IPv6 CIDR range")},_.IPv6.parser=function(s){let l,g,m,v,P,M;if(m=s.match(d.deprecatedTransitional))return this.parser(`::ffff:${m[1]}`);if(d.native.test(s))return f(s,8);if((m=s.match(d.transitional))&&(M=m[6]||"",l=m[1],m[1].endsWith("::")||(l=l.slice(0,-1)),l=f(l+M,6),l.parts)){for(P=[parseInt(m[2]),parseInt(m[3]),parseInt(m[4]),parseInt(m[5])],g=0;g<P.length;g++)if(v=P[g],!(0<=v&&v<=255))return null;return l.parts.push(P[0]<<8|P[1]),l.parts.push(P[2]<<8|P[3]),{parts:l.parts,zoneId:l.zoneId}}return null},_.IPv6.subnetMaskFromPrefixLength=function(s){if(s=parseInt(s),s<0||s>128)throw new Error("ipaddr: invalid IPv6 prefix length");let l=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],g=0,m=Math.floor(s/8);for(;g<m;)l[g]=255,g++;return m<16&&(l[m]=Math.pow(2,s%8)-1<<8-s%8),new this(l)},_.fromByteArray=function(s){let l=s.length;if(l===4)return new _.IPv4(s);if(l===16)return new _.IPv6(s);throw new Error("ipaddr: the binary input is neither an IPv6 nor IPv4 address")},_.isValid=function(s){return _.IPv6.isValid(s)||_.IPv4.isValid(s)},_.isValidCIDR=function(s){return _.IPv6.isValidCIDR(s)||_.IPv4.isValidCIDR(s)},_.parse=function(s){if(_.IPv6.isValid(s))return _.IPv6.parse(s);if(_.IPv4.isValid(s))return _.IPv4.parse(s);throw new Error("ipaddr: the address has neither IPv6 nor IPv4 format")},_.parseCIDR=function(s){try{return _.IPv6.parseCIDR(s)}catch{try{return _.IPv4.parseCIDR(s)}catch{throw new Error("ipaddr: the address has neither IPv6 nor IPv4 CIDR format")}}},_.process=function(s){let l=this.parse(s);return l.kind()==="ipv6"&&l.isIPv4MappedAddress()?l.toIPv4Address():l},_.subnetMatch=function(s,l,g){let m,v,P,M;g==null&&(g="unicast");for(v in l)if(Object.prototype.hasOwnProperty.call(l,v)){for(P=l[v],P[0]&&!(P[0]instanceof Array)&&(P=[P]),m=0;m<P.length;m++)if(M=P[m],s.kind()===M[0].kind()&&s.match.apply(s,M))return v}return g},typeof Lt<"u"&&Lt.exports?Lt.exports=_:e.ipaddr=_})(zo)});var Ei=I((sA,$i)=>{var Ii=require("stream").Stream,_p=require("util");$i.exports=le;function le(){this.source=null,this.dataSize=0,this.maxDataSize=1024*1024,this.pauseStream=!0,this._maxDataSizeExceeded=!1,this._released=!1,this._bufferedEvents=[]}o(le,"DelayedStream");_p.inherits(le,Ii);le.create=function(e,t){var r=new this;t=t||{};for(var n in t)r[n]=t[n];r.source=e;var i=e.emit;return e.emit=function(){return r._handleEmit(arguments),i.apply(e,arguments)},e.on("error",function(){}),r.pauseStream&&e.pause(),r};Object.defineProperty(le.prototype,"readable",{configurable:!0,enumerable:!0,get:o(function(){return this.source.readable},"get")});le.prototype.setEncoding=function(){return this.source.setEncoding.apply(this.source,arguments)};le.prototype.resume=function(){this._released||this.release(),this.source.resume()};le.prototype.pause=function(){this.source.pause()};le.prototype.release=function(){this._released=!0,this._bufferedEvents.forEach(function(e){this.emit.apply(this,e)}.bind(this)),this._bufferedEvents=[]};le.prototype.pipe=function(){var e=Ii.prototype.pipe.apply(this,arguments);return this.resume(),e};le.prototype._handleEmit=function(e){if(this._released){this.emit.apply(this,e);return}e[0]==="data"&&(this.dataSize+=e[1].length,this._checkIfMaxDataSizeExceeded()),this._bufferedEvents.push(e)};le.prototype._checkIfMaxDataSizeExceeded=function(){if(!this._maxDataSizeExceeded&&!(this.dataSize<=this.maxDataSize)){this._maxDataSizeExceeded=!0;var e="DelayedStream#maxDataSize of "+this.maxDataSize+" bytes exceeded.";this.emit("error",new Error(e))}}});var wi=I((cA,zi)=>{var Pp=require("util"),Ai=require("stream").Stream,Si=Ei();zi.exports=G;function G(){this.writable=!1,this.readable=!0,this.dataSize=0,this.maxDataSize=2*1024*1024,this.pauseStreams=!0,this._released=!1,this._streams=[],this._currentStream=null,this._insideLoop=!1,this._pendingNext=!1}o(G,"CombinedStream");Pp.inherits(G,Ai);G.create=function(e){var t=new this;e=e||{};for(var r in e)t[r]=e[r];return t};G.isStreamLike=function(e){return typeof e!="function"&&typeof e!="string"&&typeof e!="boolean"&&typeof e!="number"&&!Buffer.isBuffer(e)};G.prototype.append=function(e){var t=G.isStreamLike(e);if(t){if(!(e instanceof Si)){var r=Si.create(e,{maxDataSize:1/0,pauseStream:this.pauseStreams});e.on("data",this._checkDataSize.bind(this)),e=r}this._handleErrors(e),this.pauseStreams&&e.pause()}return this._streams.push(e),this};G.prototype.pipe=function(e,t){return Ai.prototype.pipe.call(this,e,t),this.resume(),e};G.prototype._getNext=function(){if(this._currentStream=null,this._insideLoop){this._pendingNext=!0;return}this._insideLoop=!0;try{do this._pendingNext=!1,this._realGetNext();while(this._pendingNext)}finally{this._insideLoop=!1}};G.prototype._realGetNext=function(){var e=this._streams.shift();if(typeof e>"u"){this.end();return}if(typeof e!="function"){this._pipeNext(e);return}var t=e;t(function(r){var n=G.isStreamLike(r);n&&(r.on("data",this._checkDataSize.bind(this)),this._handleErrors(r)),this._pipeNext(r)}.bind(this))};G.prototype._pipeNext=function(e){this._currentStream=e;var t=G.isStreamLike(e);if(t){e.on("end",this._getNext.bind(this)),e.pipe(this,{end:!1});return}var r=e;this.write(r),this._getNext()};G.prototype._handleErrors=function(e){var t=this;e.on("error",function(r){t._emitError(r)})};G.prototype.write=function(e){this.emit("data",e)};G.prototype.pause=function(){this.pauseStreams&&(this.pauseStreams&&this._currentStream&&typeof this._currentStream.pause=="function"&&this._currentStream.pause(),this.emit("pause"))};G.prototype.resume=function(){this._released||(this._released=!0,this.writable=!0,this._getNext()),this.pauseStreams&&this._currentStream&&typeof this._currentStream.resume=="function"&&this._currentStream.resume(),this.emit("resume")};G.prototype.end=function(){this._reset(),this.emit("end")};G.prototype.destroy=function(){this._reset(),this.emit("close")};G.prototype._reset=function(){this.writable=!1,this._streams=[],this._currentStream=null};G.prototype._checkDataSize=function(){if(this._updateDataSize(),!(this.dataSize<=this.maxDataSize)){var e="DelayedStream#maxDataSize of "+this.maxDataSize+" bytes exceeded.";this._emitError(new Error(e))}};G.prototype._updateDataSize=function(){this.dataSize=0;var e=this;this._streams.forEach(function(t){t.dataSize&&(e.dataSize+=t.dataSize)}),this._currentStream&&this._currentStream.dataSize&&(this.dataSize+=this._currentStream.dataSize)};G.prototype._emitError=function(e){this._reset(),this.emit("error",e)}});var Oi=I((lA,ki)=>{"use strict";ki.exports={"application/json":{source:"iana",charset:"UTF-8",compressible:!0,extensions:["json","map"]},"application/xml":{source:"iana",compressible:!0,extensions:["xml"]},"application/javascript":{source:"iana",charset:"UTF-8",compressible:!0,extensions:["js","mjs"]},"application/pdf":{source:"iana",compressible:!1,extensions:["pdf"]},"application/zip":{source:"iana",compressible:!1,extensions:["zip"]},"application/gzip":{source:"iana",compressible:!1,extensions:["gz"]},"application/octet-stream":{source:"iana",compressible:!1,extensions:["bin","dat"]},"application/msword":{source:"iana",extensions:["doc"]},"application/vnd.openxmlformats-officedocument.wordprocessingml.document":{source:"iana",extensions:["docx"]},"application/vnd.ms-excel":{source:"iana",extensions:["xls"]},"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet":{source:"iana",extensions:["xlsx"]},"application/vnd.ms-powerpoint":{source:"iana",extensions:["ppt"]},"application/vnd.openxmlformats-officedocument.presentationml.presentation":{source:"iana",extensions:["pptx"]},"application/csv":{compressible:!0,extensions:["csv"]},"application/rtf":{source:"iana",compressible:!0,extensions:["rtf"]},"application/x-tar":{source:"apache",compressible:!0,extensions:["tar"]},"application/x-7z-compressed":{source:"apache",compressible:!1,extensions:["7z"]},"application/wasm":{source:"iana",compressible:!0,extensions:["wasm"]},"text/plain":{source:"iana",compressible:!0,charset:"UTF-8",extensions:["txt","text","log"]},"text/html":{source:"iana",compressible:!0,charset:"UTF-8",extensions:["html","htm"]},"text/css":{source:"iana",compressible:!0,charset:"UTF-8",extensions:["css"]},"text/csv":{source:"iana",compressible:!0,charset:"UTF-8",extensions:["csv"]},"text/markdown":{source:"iana",compressible:!0,charset:"UTF-8",extensions:["md","markdown"]},"text/xml":{source:"iana",compressible:!0,extensions:["xml"]},"text/yaml":{compressible:!0,extensions:["yaml","yml"]},"image/png":{source:"iana",compressible:!1,extensions:["png"]},"image/jpeg":{source:"iana",compressible:!1,extensions:["jpeg","jpg","jpe"]},"image/gif":{source:"iana",compressible:!1,extensions:["gif"]},"image/webp":{source:"apache",compressible:!1,extensions:["webp"]},"image/svg+xml":{source:"iana",compressible:!0,extensions:["svg","svgz"]},"image/bmp":{source:"iana",compressible:!0,extensions:["bmp"]},"image/tiff":{source:"iana",compressible:!1,extensions:["tiff","tif"]},"image/x-icon":{source:"apache",compressible:!0,extensions:["ico"]},"image/heic":{source:"iana",compressible:!1,extensions:["heic"]},"image/avif":{source:"iana",compressible:!1,extensions:["avif"]},"audio/mpeg":{source:"iana",compressible:!1,extensions:["mp3","mpga"]},"audio/wav":{compressible:!1,extensions:["wav"]},"audio/ogg":{source:"iana",compressible:!1,extensions:["ogg","oga"]},"audio/webm":{source:"apache",compressible:!1,extensions:["weba"]},"audio/mp4":{source:"iana",compressible:!1,extensions:["m4a"]},"video/mp4":{source:"iana",compressible:!1,extensions:["mp4","m4v"]},"video/mpeg":{source:"iana",compressible:!1,extensions:["mpeg","mpg"]},"video/webm":{source:"iana",compressible:!1,extensions:["webm"]},"video/quicktime":{source:"iana",compressible:!1,extensions:["mov","qt"]},"video/x-msvideo":{source:"iana",compressible:!1,extensions:["avi"]},"font/woff":{source:"iana",compressible:!1,extensions:["woff"]},"font/woff2":{source:"iana",compressible:!1,extensions:["woff2"]},"font/ttf":{source:"iana",compressible:!0,extensions:["ttf"]},"font/otf":{source:"iana",compressible:!0,extensions:["otf"]},"application/ld+json":{source:"iana",compressible:!0,extensions:["jsonld"]},"application/x-www-form-urlencoded":{source:"iana",compressible:!0},"multipart/form-data":{source:"iana"},"application/vnd.api+json":{source:"iana",compressible:!0},"application/manifest+json":{source:"iana",charset:"UTF-8",compressible:!0,extensions:["webmanifest"]},"application/ics":{compressible:!0,extensions:["ics"]},"text/calendar":{source:"iana",compressible:!0,extensions:["ics","ifb"]},"application/x-ndjson":{compressible:!0,extensions:["ndjson"]}}});var Di=I(re=>{"use strict";var Wt=Oi(),bp=require("path").extname,Ri=/^\s*([^;\s]*)(?:;|\s|$)/,Tp=/^text\//i;re.charset=Ni;re.charsets={lookup:Ni};re.contentType=Ip;re.extension=$p;re.extensions=Object.create(null);re.lookup=Ep;re.types=Object.create(null);Sp(re.extensions,re.types);function Ni(e){if(!e||typeof e!="string")return!1;var t=Ri.exec(e),r=t&&Wt[t[1].toLowerCase()];return r&&r.charset?r.charset:t&&Tp.test(t[1])?"UTF-8":!1}o(Ni,"charset");function Ip(e){if(!e||typeof e!="string")return!1;var t=e.indexOf("/")===-1?re.lookup(e):e;if(!t)return!1;if(t.indexOf("charset")===-1){var r=re.charset(t);r&&(t+="; charset="+r.toLowerCase())}return t}o(Ip,"contentType");function $p(e){if(!e||typeof e!="string")return!1;var t=Ri.exec(e),r=t&&re.extensions[t[1].toLowerCase()];return!r||!r.length?!1:r[0]}o($p,"extension");function Ep(e){if(!e||typeof e!="string")return!1;var t=bp("x."+e).toLowerCase().substr(1);return t&&re.types[t]||!1}o(Ep,"lookup");function Sp(e,t){var r=["nginx","apache",void 0,"iana"];Object.keys(Wt).forEach(o(function(i){var u=Wt[i],p=u.extensions;if(!(!p||!p.length)){e[i]=p;for(var d=0;d<p.length;d++){var f=p[d];if(t[f]){var h=r.indexOf(Wt[t[f]].source),x=r.indexOf(u.source);if(t[f]!=="application/octet-stream"&&(h>x||h===x&&t[f].substr(0,12)==="application/"))continue}t[f]=i}}},"forEachMimeType"))}o(Sp,"populateMaps")});var Ui=I((fA,Ci)=>{Ci.exports=Ap;function Ap(e){var t=typeof setImmediate=="function"?setImmediate:typeof process=="object"&&typeof process.nextTick=="function"?process.nextTick:null;t?t(e):setTimeout(e,0)}o(Ap,"defer")});var Fr=I((yA,ji)=>{var Mi=Ui();ji.exports=zp;function zp(e){var t=!1;return Mi(function(){t=!0}),o(function(n,i){t?e(n,i):Mi(o(function(){e(n,i)},"nextTick_callback"))},"async_callback")}o(zp,"async")});var Br=I((vA,Li)=>{Li.exports=wp;function wp(e){Object.keys(e.jobs).forEach(kp.bind(e)),e.jobs={}}o(wp,"abort");function kp(e){typeof this.jobs[e]=="function"&&this.jobs[e]()}o(kp,"clean")});var Zr=I((_A,Bi)=>{var Fi=Fr(),Op=Br();Bi.exports=Rp;function Rp(e,t,r,n){var i=r.keyedList?r.keyedList[r.index]:r.index;r.jobs[i]=Np(t,i,e[i],function(u,p){i in r.jobs&&(delete r.jobs[i],u?Op(r):r.results[i]=p,n(u,r.results))})}o(Rp,"iterate");function Np(e,t,r,n){var i;return e.length==2?i=e(r,Fi(n)):i=e(r,t,Fi(n)),i}o(Np,"runJob")});var Vr=I((bA,Zi)=>{Zi.exports=Dp;function Dp(e,t){var r=!Array.isArray(e),n={index:0,keyedList:r||t?Object.keys(e):null,jobs:{},results:r?{}:[],size:r?Object.keys(e).length:e.length};return t&&n.keyedList.sort(r?t:function(i,u){return t(e[i],e[u])}),n}o(Dp,"state")});var Hr=I((IA,Vi)=>{var Cp=Br(),Up=Fr();Vi.exports=Mp;function Mp(e){Object.keys(this.jobs).length&&(this.index=this.size,Cp(this),Up(e)(null,this.results))}o(Mp,"terminator")});var Wi=I((EA,Hi)=>{var jp=Zr(),Lp=Vr(),Fp=Hr();Hi.exports=Bp;function Bp(e,t,r){for(var n=Lp(e);n.index<(n.keyedList||e).length;)jp(e,t,n,function(i,u){if(i){r(i,u);return}if(Object.keys(n.jobs).length===0){r(null,n.results);return}}),n.index++;return Fp.bind(n,r)}o(Bp,"parallel")});var Wr=I((AA,qt)=>{var qi=Zr(),Zp=Vr(),Vp=Hr();qt.exports=Hp;qt.exports.ascending=Gi;qt.exports.descending=Wp;function Hp(e,t,r,n){var i=Zp(e,r);return qi(e,t,i,o(function u(p,d){if(p){n(p,d);return}if(i.index++,i.index<(i.keyedList||e).length){qi(e,t,i,u);return}n(null,i.results)},"iteratorHandler")),Vp.bind(i,n)}o(Hp,"serialOrdered");function Gi(e,t){return e<t?-1:e>t?1:0}o(Gi,"ascending");function Wp(e,t){return-1*Gi(e,t)}o(Wp,"descending")});var Ji=I((wA,Ki)=>{var qp=Wr();Ki.exports=Gp;function Gp(e,t,r){return qp(e,t,null,r)}o(Gp,"serial")});var Yi=I((OA,Xi)=>{Xi.exports={parallel:Wi(),serial:Ji(),serialOrdered:Wr()}});var qr=I((RA,Qi)=>{"use strict";Qi.exports=Object});var ta=I((NA,ea)=>{"use strict";ea.exports=Error});var na=I((DA,ra)=>{"use strict";ra.exports=EvalError});var ia=I((CA,oa)=>{"use strict";oa.exports=RangeError});var sa=I((UA,aa)=>{"use strict";aa.exports=ReferenceError});var ca=I((MA,ua)=>{"use strict";ua.exports=SyntaxError});var Gt=I((jA,pa)=>{"use strict";pa.exports=TypeError});var da=I((LA,la)=>{"use strict";la.exports=URIError});var fa=I((FA,ma)=>{"use strict";ma.exports=Math.abs});var ya=I((BA,ga)=>{"use strict";ga.exports=Math.floor});var va=I((ZA,ha)=>{"use strict";ha.exports=Math.max});var _a=I((VA,xa)=>{"use strict";xa.exports=Math.min});var ba=I((HA,Pa)=>{"use strict";Pa.exports=Math.pow});var Ia=I((WA,Ta)=>{"use strict";Ta.exports=Math.round});var Ea=I((qA,$a)=>{"use strict";$a.exports=Number.isNaN||o(function(t){return t!==t},"isNaN")});var Aa=I((KA,Sa)=>{"use strict";var Kp=Ea();Sa.exports=o(function(t){return Kp(t)||t===0?t:t<0?-1:1},"sign")});var wa=I((XA,za)=>{"use strict";za.exports=Object.getOwnPropertyDescriptor});var Gr=I((YA,ka)=>{"use strict";var Kt=wa();if(Kt)try{Kt([],"length")}catch{Kt=null}ka.exports=Kt});var Ra=I((QA,Oa)=>{"use strict";var Jt=Object.defineProperty||!1;if(Jt)try{Jt({},"a",{value:1})}catch{Jt=!1}Oa.exports=Jt});var Kr=I((ez,Na)=>{"use strict";Na.exports=o(function(){if(typeof Symbol!="function"||typeof Object.getOwnPropertySymbols!="function")return!1;if(typeof Symbol.iterator=="symbol")return!0;var t={},r=Symbol("test"),n=Object(r);if(typeof r=="string"||Object.prototype.toString.call(r)!=="[object Symbol]"||Object.prototype.toString.call(n)!=="[object Symbol]")return!1;var i=42;t[r]=i;for(var u in t)return!1;if(typeof Object.keys=="function"&&Object.keys(t).length!==0||typeof Object.getOwnPropertyNames=="function"&&Object.getOwnPropertyNames(t).length!==0)return!1;var p=Object.getOwnPropertySymbols(t);if(p.length!==1||p[0]!==r||!Object.prototype.propertyIsEnumerable.call(t,r))return!1;if(typeof Object.getOwnPropertyDescriptor=="function"){var d=Object.getOwnPropertyDescriptor(t,r);if(d.value!==i||d.enumerable!==!0)return!1}return!0},"hasSymbols")});var Ua=I((rz,Ca)=>{"use strict";var Da=typeof Symbol<"u"&&Symbol,Jp=Kr();Ca.exports=o(function(){return typeof Da!="function"||typeof Symbol!="function"||typeof Da("foo")!="symbol"||typeof Symbol("bar")!="symbol"?!1:Jp()},"hasNativeSymbols")});var Jr=I((oz,Ma)=>{"use strict";Ma.exports=typeof Reflect<"u"&&Reflect.getPrototypeOf||null});var Xr=I((iz,ja)=>{"use strict";var Xp=qr();ja.exports=Xp.getPrototypeOf||null});var Ba=I((az,Fa)=>{"use strict";var Yp="Function.prototype.bind called on incompatible ",Qp=Object.prototype.toString,el=Math.max,tl="[object Function]",La=o(function(t,r){for(var n=[],i=0;i<t.length;i+=1)n[i]=t[i];for(var u=0;u<r.length;u+=1)n[u+t.length]=r[u];return n},"concatty"),rl=o(function(t,r){for(var n=[],i=r||0,u=0;i<t.length;i+=1,u+=1)n[u]=t[i];return n},"slicy"),nl=o(function(e,t){for(var r="",n=0;n<e.length;n+=1)r+=e[n],n+1<e.length&&(r+=t);return r},"joiny");Fa.exports=o(function(t){var r=this;if(typeof r!="function"||Qp.apply(r)!==tl)throw new TypeError(Yp+r);for(var n=rl(arguments,1),i,u=o(function(){if(this instanceof i){var x=r.apply(this,La(n,arguments));return Object(x)===x?x:this}return r.apply(t,La(n,arguments))},"binder"),p=el(0,r.length-n.length),d=[],f=0;f<p;f++)d[f]="$"+f;if(i=Function("binder","return function ("+nl(d,",")+"){ return binder.apply(this,arguments); }")(u),r.prototype){var h=o(function(){},"Empty");h.prototype=r.prototype,i.prototype=new h,h.prototype=null}return i},"bind")});var Ve=I((uz,Za)=>{"use strict";var ol=Ba();Za.exports=Function.prototype.bind||ol});var Xt=I((cz,Va)=>{"use strict";Va.exports=Function.prototype.call});var Yr=I((pz,Ha)=>{"use strict";Ha.exports=Function.prototype.apply});var qa=I((lz,Wa)=>{"use strict";Wa.exports=typeof Reflect<"u"&&Reflect&&Reflect.apply});var Ka=I((dz,Ga)=>{"use strict";var il=Ve(),al=Yr(),sl=Xt(),ul=qa();Ga.exports=ul||il.call(sl,al)});var Xa=I((mz,Ja)=>{"use strict";var cl=Ve(),pl=Gt(),ll=Xt(),dl=Ka();Ja.exports=o(function(t){if(t.length<1||typeof t[0]!="function")throw new pl("a function is required");return dl(cl,ll,t)},"callBindBasic")});var ns=I((gz,rs)=>{"use strict";var ml=Xa(),Ya=Gr(),es;try{es=[].__proto__===Array.prototype}catch(e){if(!e||typeof e!="object"||!("code"in e)||e.code!=="ERR_PROTO_ACCESS")throw e}var Qr=!!es&&Ya&&Ya(Object.prototype,"__proto__"),ts=Object,Qa=ts.getPrototypeOf;rs.exports=Qr&&typeof Qr.get=="function"?ml([Qr.get]):typeof Qa=="function"?o(function(t){return Qa(t==null?t:ts(t))},"getDunder"):!1});var us=I((hz,ss)=>{"use strict";var os=Jr(),is=Xr(),as=ns();ss.exports=os?o(function(t){return os(t)},"getProto"):is?o(function(t){if(!t||typeof t!="object"&&typeof t!="function")throw new TypeError("getProto: not an object");return is(t)},"getProto"):as?o(function(t){return as(t)},"getProto"):null});var en=I((xz,cs)=>{"use strict";var fl=Function.prototype.call,gl=Object.prototype.hasOwnProperty,yl=Ve();cs.exports=yl.call(fl,gl)});var ys=I((_z,gs)=>{"use strict";var U,hl=qr(),vl=ta(),xl=na(),_l=ia(),Pl=sa(),Ge=ca(),qe=Gt(),bl=da(),Tl=fa(),Il=ya(),$l=va(),El=_a(),Sl=ba(),Al=Ia(),zl=Aa(),ms=Function,tn=o(function(e){try{return ms('"use strict"; return ('+e+").constructor;")()}catch{}},"getEvalledConstructor"),ht=Gr(),wl=Ra(),rn=o(function(){throw new qe},"throwTypeError"),kl=ht?function(){try{return arguments.callee,rn}catch{try{return ht(arguments,"callee").get}catch{return rn}}}():rn,He=Ua()(),Y=us(),Ol=Xr(),Rl=Jr(),fs=Yr(),vt=Xt(),We={},Nl=typeof Uint8Array>"u"||!Y?U:Y(Uint8Array),Oe={__proto__:null,"%AggregateError%":typeof AggregateError>"u"?U:AggregateError,"%Array%":Array,"%ArrayBuffer%":typeof ArrayBuffer>"u"?U:ArrayBuffer,"%ArrayIteratorPrototype%":He&&Y?Y([][Symbol.iterator]()):U,"%AsyncFromSyncIteratorPrototype%":U,"%AsyncFunction%":We,"%AsyncGenerator%":We,"%AsyncGeneratorFunction%":We,"%AsyncIteratorPrototype%":We,"%Atomics%":typeof Atomics>"u"?U:Atomics,"%BigInt%":typeof BigInt>"u"?U:BigInt,"%BigInt64Array%":typeof BigInt64Array>"u"?U:BigInt64Array,"%BigUint64Array%":typeof BigUint64Array>"u"?U:BigUint64Array,"%Boolean%":Boolean,"%DataView%":typeof DataView>"u"?U:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":vl,"%eval%":eval,"%EvalError%":xl,"%Float16Array%":typeof Float16Array>"u"?U:Float16Array,"%Float32Array%":typeof Float32Array>"u"?U:Float32Array,"%Float64Array%":typeof Float64Array>"u"?U:Float64Array,"%FinalizationRegistry%":typeof FinalizationRegistry>"u"?U:FinalizationRegistry,"%Function%":ms,"%GeneratorFunction%":We,"%Int8Array%":typeof Int8Array>"u"?U:Int8Array,"%Int16Array%":typeof Int16Array>"u"?U:Int16Array,"%Int32Array%":typeof Int32Array>"u"?U:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":He&&Y?Y(Y([][Symbol.iterator]())):U,"%JSON%":typeof JSON=="object"?JSON:U,"%Map%":typeof Map>"u"?U:Map,"%MapIteratorPrototype%":typeof Map>"u"||!He||!Y?U:Y(new Map()[Symbol.iterator]()),"%Math%":Math,"%Number%":Number,"%Object%":hl,"%Object.getOwnPropertyDescriptor%":ht,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":typeof Promise>"u"?U:Promise,"%Proxy%":typeof Proxy>"u"?U:Proxy,"%RangeError%":_l,"%ReferenceError%":Pl,"%Reflect%":typeof Reflect>"u"?U:Reflect,"%RegExp%":RegExp,"%Set%":typeof Set>"u"?U:Set,"%SetIteratorPrototype%":typeof Set>"u"||!He||!Y?U:Y(new Set()[Symbol.iterator]()),"%SharedArrayBuffer%":typeof SharedArrayBuffer>"u"?U:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":He&&Y?Y(""[Symbol.iterator]()):U,"%Symbol%":He?Symbol:U,"%SyntaxError%":Ge,"%ThrowTypeError%":kl,"%TypedArray%":Nl,"%TypeError%":qe,"%Uint8Array%":typeof Uint8Array>"u"?U:Uint8Array,"%Uint8ClampedArray%":typeof Uint8ClampedArray>"u"?U:Uint8ClampedArray,"%Uint16Array%":typeof Uint16Array>"u"?U:Uint16Array,"%Uint32Array%":typeof Uint32Array>"u"?U:Uint32Array,"%URIError%":bl,"%WeakMap%":typeof WeakMap>"u"?U:WeakMap,"%WeakRef%":typeof WeakRef>"u"?U:WeakRef,"%WeakSet%":typeof WeakSet>"u"?U:WeakSet,"%Function.prototype.call%":vt,"%Function.prototype.apply%":fs,"%Object.defineProperty%":wl,"%Object.getPrototypeOf%":Ol,"%Math.abs%":Tl,"%Math.floor%":Il,"%Math.max%":$l,"%Math.min%":El,"%Math.pow%":Sl,"%Math.round%":Al,"%Math.sign%":zl,"%Reflect.getPrototypeOf%":Rl};if(Y)try{null.error}catch(e){ps=Y(Y(e)),Oe["%Error.prototype%"]=ps}var ps,Dl=o(function e(t){var r;if(t==="%AsyncFunction%")r=tn("async function () {}");else if(t==="%GeneratorFunction%")r=tn("function* () {}");else if(t==="%AsyncGeneratorFunction%")r=tn("async function* () {}");else if(t==="%AsyncGenerator%"){var n=e("%AsyncGeneratorFunction%");n&&(r=n.prototype)}else if(t==="%AsyncIteratorPrototype%"){var i=e("%AsyncGenerator%");i&&Y&&(r=Y(i.prototype))}return Oe[t]=r,r},"doEval"),ls={__proto__:null,"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},xt=Ve(),Yt=en(),Cl=xt.call(vt,Array.prototype.concat),Ul=xt.call(fs,Array.prototype.splice),ds=xt.call(vt,String.prototype.replace),Qt=xt.call(vt,String.prototype.slice),Ml=xt.call(vt,RegExp.prototype.exec),jl=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,Ll=/\\(\\)?/g,Fl=o(function(t){var r=Qt(t,0,1),n=Qt(t,-1);if(r==="%"&&n!=="%")throw new Ge("invalid intrinsic syntax, expected closing `%`");if(n==="%"&&r!=="%")throw new Ge("invalid intrinsic syntax, expected opening `%`");var i=[];return ds(t,jl,function(u,p,d,f){i[i.length]=d?ds(f,Ll,"$1"):p||u}),i},"stringToPath"),Bl=o(function(t,r){var n=t,i;if(Yt(ls,n)&&(i=ls[n],n="%"+i[0]+"%"),Yt(Oe,n)){var u=Oe[n];if(u===We&&(u=Dl(n)),typeof u>"u"&&!r)throw new qe("intrinsic "+t+" exists, but is not available. Please file an issue!");return{alias:i,name:n,value:u}}throw new Ge("intrinsic "+t+" does not exist!")},"getBaseIntrinsic");gs.exports=o(function(t,r){if(typeof t!="string"||t.length===0)throw new qe("intrinsic name must be a non-empty string");if(arguments.length>1&&typeof r!="boolean")throw new qe('"allowMissing" argument must be a boolean');if(Ml(/^%?[^%]*%?$/,t)===null)throw new Ge("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var n=Fl(t),i=n.length>0?n[0]:"",u=Bl("%"+i+"%",r),p=u.name,d=u.value,f=!1,h=u.alias;h&&(i=h[0],Ul(n,Cl([0,1],h)));for(var x=1,$=!0;x<n.length;x+=1){var _=n[x],s=Qt(_,0,1),l=Qt(_,-1);if((s==='"'||s==="'"||s==="`"||l==='"'||l==="'"||l==="`")&&s!==l)throw new Ge("property names with quotes must have matching quotes");if((_==="constructor"||!$)&&(f=!0),i+="."+_,p="%"+i+"%",Yt(Oe,p))d=Oe[p];else if(d!=null){if(!(_ in d)){if(!r)throw new qe("base intrinsic for "+t+" exists, but the property is not available.");return}if(ht&&x+1>=n.length){var g=ht(d,_);$=!!g,$&&"get"in g&&!("originalValue"in g.get)?d=g.get:d=d[_]}else $=Yt(d,_),d=d[_];$&&!f&&(Oe[p]=d)}}return d},"GetIntrinsic")});var vs=I((bz,hs)=>{"use strict";var Zl=Kr();hs.exports=o(function(){return Zl()&&!!Symbol.toStringTag},"hasToStringTagShams")});var Ps=I((Iz,_s)=>{"use strict";var Vl=ys(),xs=Vl("%Object.defineProperty%",!0),Hl=vs()(),Wl=en(),ql=Gt(),er=Hl?Symbol.toStringTag:null;_s.exports=o(function(t,r){var n=arguments.length>2&&!!arguments[2]&&arguments[2].force,i=arguments.length>2&&!!arguments[2]&&arguments[2].nonConfigurable;if(typeof n<"u"&&typeof n!="boolean"||typeof i<"u"&&typeof i!="boolean")throw new ql("if provided, the `overrideIfSet` and `nonConfigurable` options must be booleans");er&&(n||!Wl(t,er))&&(xs?xs(t,er,{configurable:!i,enumerable:!1,value:r,writable:!1}):t[er]=r)},"setToStringTag")});var Ts=I((Ez,bs)=>{"use strict";var Gl=Function.prototype.call,Kl=Object.prototype.hasOwnProperty,Jl=Ve();bs.exports=Jl.call(Gl,Kl)});var $s=I((Sz,Is)=>{"use strict";Is.exports=function(e,t){return Object.keys(t).forEach(function(r){e[r]=e[r]||t[r]}),e}});var As=I((Az,Ss)=>{"use strict";var sn=wi(),Xl=require("util"),nn=require("path"),Yl=require("http"),Ql=require("https"),ed=require("url").parse,td=require("fs"),rd=require("stream").Stream,nd=require("crypto"),on=Di(),od=Yi(),id=Ps(),Se=Ts(),an=$s();function Es(e){return String(e).replace(/\r/g,"%0D").replace(/\n/g,"%0A").replace(/"/g,"%22")}o(Es,"escapeHeaderParam");function j(e){if(!(this instanceof j))return new j(e);this._overheadLength=0,this._valueLength=0,this._valuesToMeasure=[],sn.call(this),e=e||{};for(var t in e)this[t]=e[t]}o(j,"FormData");Xl.inherits(j,sn);j.LINE_BREAK=`\r
2
+ `;j.DEFAULT_CONTENT_TYPE="application/octet-stream";j.prototype.append=function(e,t,r){r=r||{},typeof r=="string"&&(r={filename:r});var n=sn.prototype.append.bind(this);if((typeof t=="number"||t==null)&&(t=String(t)),Array.isArray(t)){this._error(new Error("Arrays are not supported."));return}var i=this._multiPartHeader(e,t,r),u=this._multiPartFooter();n(i),n(t),n(u),this._trackLength(i,t,r)};j.prototype._trackLength=function(e,t,r){var n=0;r.knownLength!=null?n+=Number(r.knownLength):Buffer.isBuffer(t)?n=t.length:typeof t=="string"&&(n=Buffer.byteLength(t)),this._valueLength+=n,this._overheadLength+=Buffer.byteLength(e)+j.LINE_BREAK.length,!(!t||!t.path&&!(t.readable&&Se(t,"httpVersion"))&&!(t instanceof rd))&&(r.knownLength||this._valuesToMeasure.push(t))};j.prototype._lengthRetriever=function(e,t){Se(e,"fd")?e.end!=null&&e.end!=1/0&&e.start!=null?t(null,e.end+1-(e.start?e.start:0)):td.stat(e.path,function(r,n){if(r){t(r);return}var i=n.size-(e.start?e.start:0);t(null,i)}):Se(e,"httpVersion")?t(null,Number(e.headers["content-length"])):Se(e,"httpModule")?(e.on("response",function(r){e.pause(),t(null,Number(r.headers["content-length"]))}),e.resume()):t("Unknown stream")};j.prototype._multiPartHeader=function(e,t,r){if(typeof r.header=="string")return r.header;var n=this._getContentDisposition(t,r),i=this._getContentType(t,r),u="",p={"Content-Disposition":["form-data",'name="'+Es(e)+'"'].concat(n||[]),"Content-Type":[].concat(i||[])};typeof r.header=="object"&&an(p,r.header);var d;for(var f in p)if(Se(p,f)){if(d=p[f],d==null)continue;Array.isArray(d)||(d=[d]),d.length&&(u+=f+": "+d.join("; ")+j.LINE_BREAK)}return"--"+this.getBoundary()+j.LINE_BREAK+u+j.LINE_BREAK};j.prototype._getContentDisposition=function(e,t){var r;if(typeof t.filepath=="string"?r=nn.normalize(t.filepath).replace(/\\/g,"/"):t.filename||e&&(e.name||e.path)?r=nn.basename(t.filename||e&&(e.name||e.path)):e&&e.readable&&Se(e,"httpVersion")&&(r=nn.basename(e.client._httpMessage.path||"")),r)return'filename="'+Es(r)+'"'};j.prototype._getContentType=function(e,t){var r=t.contentType;return!r&&e&&e.name&&(r=on.lookup(e.name)),!r&&e&&e.path&&(r=on.lookup(e.path)),!r&&e&&e.readable&&Se(e,"httpVersion")&&(r=e.headers["content-type"]),!r&&(t.filepath||t.filename)&&(r=on.lookup(t.filepath||t.filename)),!r&&e&&typeof e=="object"&&(r=j.DEFAULT_CONTENT_TYPE),r};j.prototype._multiPartFooter=function(){return function(e){var t=j.LINE_BREAK,r=this._streams.length===0;r&&(t+=this._lastBoundary()),e(t)}.bind(this)};j.prototype._lastBoundary=function(){return"--"+this.getBoundary()+"--"+j.LINE_BREAK};j.prototype.getHeaders=function(e){var t,r={"content-type":"multipart/form-data; boundary="+this.getBoundary()};for(t in e)Se(e,t)&&(r[t.toLowerCase()]=e[t]);return r};j.prototype.setBoundary=function(e){if(typeof e!="string")throw new TypeError("FormData boundary must be a string");this._boundary=e};j.prototype.getBoundary=function(){return this._boundary||this._generateBoundary(),this._boundary};j.prototype.getBuffer=function(){for(var e=new Buffer.alloc(0),t=this.getBoundary(),r=0,n=this._streams.length;r<n;r++)typeof this._streams[r]!="function"&&(Buffer.isBuffer(this._streams[r])?e=Buffer.concat([e,this._streams[r]]):e=Buffer.concat([e,Buffer.from(this._streams[r])]),(typeof this._streams[r]!="string"||this._streams[r].substring(2,t.length+2)!==t)&&(e=Buffer.concat([e,Buffer.from(j.LINE_BREAK)])));return Buffer.concat([e,Buffer.from(this._lastBoundary())])};j.prototype._generateBoundary=function(){this._boundary="--------------------------"+nd.randomBytes(12).toString("hex")};j.prototype.getLengthSync=function(){var e=this._overheadLength+this._valueLength;return this._streams.length&&(e+=this._lastBoundary().length),this.hasKnownLength()||this._error(new Error("Cannot calculate proper length in synchronous way.")),e};j.prototype.hasKnownLength=function(){var e=!0;return this._valuesToMeasure.length&&(e=!1),e};j.prototype.getLength=function(e){var t=this._overheadLength+this._valueLength;if(this._streams.length&&(t+=this._lastBoundary().length),!this._valuesToMeasure.length){process.nextTick(e.bind(this,null,t));return}od.parallel(this._valuesToMeasure,this._lengthRetriever,function(r,n){if(r){e(r);return}n.forEach(function(i){t+=i}),e(null,t)})};j.prototype.submit=function(e,t){var r,n,i={method:"post"};return typeof e=="string"?(e=ed(e),n=an({port:e.port,path:e.pathname,host:e.hostname,protocol:e.protocol},i)):(n=an(e,i),n.port||(n.port=n.protocol==="https:"?443:80)),n.headers=this.getHeaders(e.headers),n.protocol==="https:"?r=Ql.request(n):r=Yl.request(n),this.getLength(function(u,p){if(u&&u!=="Unknown stream"){this._error(u);return}if(p&&r.setHeader("Content-Length",p),this.pipe(r),t){var d,f=o(function(h,x){return r.removeListener("error",f),r.removeListener("response",d),t.call(this,h,x)},"callback");d=f.bind(this,null),r.on("error",f),r.on("response",d)}}.bind(this)),r};j.prototype._error=function(e){this.error||(this.error=e,this.pause(),this.emit("error",e))};j.prototype.toString=function(){return"[object FormData]"};id(j.prototype,"FormData");Ss.exports=j});var Ad={};ln(Ad,{qwilr:()=>Sd});module.exports=Hs(Ad);var Ws=Object.freeze({status:"aborted"});function b(e,t,r){function n(d,f){if(d._zod||Object.defineProperty(d,"_zod",{value:{def:f,constr:p,traits:new Set},enumerable:!1}),d._zod.traits.has(e))return;d._zod.traits.add(e),t(d,f);let h=p.prototype,x=Object.keys(h);for(let $=0;$<x.length;$++){let _=x[$];_ in d||(d[_]=h[_].bind(d))}}o(n,"init");let i=r?.Parent??Object;class u extends i{static{o(this,"Definition")}}Object.defineProperty(u,"name",{value:e});function p(d){var f;let h=r?.Parent?new u:this;n(h,d),(f=h._zod).deferred??(f.deferred=[]);for(let x of h._zod.deferred)x();return h}return o(p,"_"),Object.defineProperty(p,"init",{value:n}),Object.defineProperty(p,Symbol.hasInstance,{value:o(d=>r?.Parent&&d instanceof r.Parent?!0:d?._zod?.traits?.has(e),"value")}),Object.defineProperty(p,"name",{value:e}),p}o(b,"$constructor");var qs=Symbol("zod_brand"),de=class extends Error{static{o(this,"$ZodAsyncError")}constructor(){super("Encountered Promise during synchronous parse. Use .parseAsync() instead.")}},Pt=class extends Error{static{o(this,"$ZodEncodeError")}constructor(t){super(`Encountered unidirectional transform during encode: ${t}`),this.name="ZodEncodeError"}},rr={};function ge(e){return e&&Object.assign(rr,e),rr}o(ge,"config");function or(e){let t=Object.values(e).filter(n=>typeof n=="number");return Object.entries(e).filter(([n,i])=>t.indexOf(+n)===-1).map(([n,i])=>i)}o(or,"getEnumValues");function fn(e,t){return typeof t=="bigint"?t.toString():t}o(fn,"jsonStringifyReplacer");function Tt(e){return{get value(){{let r=e();return Object.defineProperty(this,"value",{value:r}),r}throw new Error("cached value already set")}}}o(Tt,"cached");function gn(e){return e==null}o(gn,"nullish");function It(e){let t=e.startsWith("^")?1:0,r=e.endsWith("$")?e.length-1:e.length;return e.slice(t,r)}o(It,"cleanRegex");var mn=Symbol("evaluating");function K(e,t,r){let n;Object.defineProperty(e,t,{get(){if(n!==mn)return n===void 0&&(n=mn,n=r()),n},set(i){Object.defineProperty(e,t,{value:i})},configurable:!0})}o(K,"defineLazy");var ir="captureStackTrace"in Error?Error.captureStackTrace:(...e)=>{};function Xe(e){return typeof e=="object"&&e!==null&&!Array.isArray(e)}o(Xe,"isObject");var Gs=Tt(()=>{if(typeof navigator<"u"&&navigator?.userAgent?.includes("Cloudflare"))return!1;try{let e=Function;return new e(""),!0}catch{return!1}});function yn(e){if(Xe(e)===!1)return!1;let t=e.constructor;if(t===void 0||typeof t!="function")return!0;let r=t.prototype;return!(Xe(r)===!1||Object.prototype.hasOwnProperty.call(r,"isPrototypeOf")===!1)}o(yn,"isPlainObject");var hn=new Set(["string","number","symbol"]);function Ne(e){return e.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}o(Ne,"escapeRegex");function $t(e,t,r){let n=new e._zod.constr(t??e._zod.def);return(!t||r?.parent)&&(n._zod.parent=e),n}o($t,"clone");function H(e){let t=e;if(!t)return{};if(typeof t=="string")return{error:o(()=>t,"error")};if(t?.message!==void 0){if(t?.error!==void 0)throw new Error("Cannot specify both `message` and `error` params");t.error=t.message}return delete t.message,typeof t.error=="string"?{...t,error:o(()=>t.error,"error")}:t}o(H,"normalizeParams");function vn(e){return Object.keys(e).filter(t=>e[t]._zod.optin==="optional"&&e[t]._zod.optout==="optional")}o(vn,"optionalKeys");var Ks={safeint:[Number.MIN_SAFE_INTEGER,Number.MAX_SAFE_INTEGER],int32:[-2147483648,2147483647],uint32:[0,4294967295],float32:[-34028234663852886e22,34028234663852886e22],float64:[-Number.MAX_VALUE,Number.MAX_VALUE]};function De(e,t=0){if(e.aborted===!0)return!0;for(let r=t;r<e.issues.length;r++)if(e.issues[r]?.continue!==!0)return!0;return!1}o(De,"aborted");function Pe(e,t){return t.map(r=>{var n;return(n=r).path??(n.path=[]),r.path.unshift(e),r})}o(Pe,"prefixIssues");function bt(e){return typeof e=="string"?e:e?.message}o(bt,"unwrapMessage");function be(e,t,r){let n={...e,path:e.path??[]};if(!e.message){let i=bt(e.inst?._zod.def?.error?.(e))??bt(t?.error?.(e))??bt(r.customError?.(e))??bt(r.localeError?.(e))??"Invalid input";n.message=i}return delete n.inst,delete n.continue,t?.reportInput||delete n.input,n}o(be,"finalizeIssue");function xn(e){return Array.isArray(e)?"array":typeof e=="string"?"string":"unknown"}o(xn,"getLengthableOrigin");function ar(...e){let[t,r,n]=e;return typeof t=="string"?{message:t,code:"custom",input:r,inst:n}:{...t}}o(ar,"issue");var _n=o((e,t)=>{e.name="$ZodError",Object.defineProperty(e,"_zod",{value:e._zod,enumerable:!1}),Object.defineProperty(e,"issues",{value:t,enumerable:!1}),e.message=JSON.stringify(t,fn,2),Object.defineProperty(e,"toString",{value:o(()=>e.message,"value"),enumerable:!1})},"initializer"),Pn=b("$ZodError",_n),Ye=b("$ZodError",_n,{Parent:Error});var Xs=o(e=>(t,r,n,i)=>{let u=n?Object.assign(n,{async:!1}):{async:!1},p=t._zod.run({value:r,issues:[]},u);if(p instanceof Promise)throw new de;if(p.issues.length){let d=new(i?.Err??e)(p.issues.map(f=>be(f,u,ge())));throw ir(d,i?.callee),d}return p.value},"_parse"),Et=Xs(Ye),Ys=o(e=>async(t,r,n,i)=>{let u=n?Object.assign(n,{async:!0}):{async:!0},p=t._zod.run({value:r,issues:[]},u);if(p instanceof Promise&&(p=await p),p.issues.length){let d=new(i?.Err??e)(p.issues.map(f=>be(f,u,ge())));throw ir(d,i?.callee),d}return p.value},"_parseAsync"),St=Ys(Ye),Qs=o(e=>(t,r,n)=>{let i=n?{...n,async:!1}:{async:!1},u=t._zod.run({value:r,issues:[]},i);if(u instanceof Promise)throw new de;return u.issues.length?{success:!1,error:new(e??Pn)(u.issues.map(p=>be(p,i,ge())))}:{success:!0,data:u.value}},"_safeParse"),Qe=Qs(Ye),eu=o(e=>async(t,r,n)=>{let i=n?Object.assign(n,{async:!0}):{async:!0},u=t._zod.run({value:r,issues:[]},i);return u instanceof Promise&&(u=await u),u.issues.length?{success:!1,error:new e(u.issues.map(p=>be(p,i,ge())))}:{success:!0,data:u.value}},"_safeParseAsync"),et=eu(Ye);var tu="(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))",ru=new RegExp(`^${tu}$`);var bn=o(e=>{let t=e?`[\\s\\S]{${e?.minimum??0},${e?.maximum??""}}`:"[\\s\\S]*";return new RegExp(`^${t}$`)},"string"),Tn=/^-?\d+n?$/;var sr=/^-?\d+(?:\.\d+)?$/,In=/^(?:true|false)$/i;var Ce=b("$ZodCheck",(e,t)=>{var r;e._zod??(e._zod={}),e._zod.def=t,(r=e._zod).onattach??(r.onattach=[])});var $n=b("$ZodCheckMinLength",(e,t)=>{var r;Ce.init(e,t),(r=e._zod.def).when??(r.when=n=>{let i=n.value;return!gn(i)&&i.length!==void 0}),e._zod.onattach.push(n=>{let i=n._zod.bag.minimum??Number.NEGATIVE_INFINITY;t.minimum>i&&(n._zod.bag.minimum=t.minimum)}),e._zod.check=n=>{let i=n.value;if(i.length>=t.minimum)return;let p=xn(i);n.issues.push({origin:p,code:"too_small",minimum:t.minimum,inclusive:!0,input:i,inst:e,continue:!t.abort})}});var ur=b("$ZodCheckStringFormat",(e,t)=>{var r,n;Ce.init(e,t),e._zod.onattach.push(i=>{let u=i._zod.bag;u.format=t.format,t.pattern&&(u.patterns??(u.patterns=new Set),u.patterns.add(t.pattern))}),t.pattern?(r=e._zod).check??(r.check=i=>{t.pattern.lastIndex=0,!t.pattern.test(i.value)&&i.issues.push({origin:"string",code:"invalid_format",format:t.format,input:i.value,...t.pattern?{pattern:t.pattern.toString()}:{},inst:e,continue:!t.abort})}):(n=e._zod).check??(n.check=()=>{})}),En=b("$ZodCheckRegex",(e,t)=>{ur.init(e,t),e._zod.check=r=>{t.pattern.lastIndex=0,!t.pattern.test(r.value)&&r.issues.push({origin:"string",code:"invalid_format",format:"regex",input:r.value,pattern:t.pattern.toString(),inst:e,continue:!t.abort})}});var An={major:4,minor:3,patch:6};var W=b("$ZodType",(e,t)=>{var r;e??(e={}),e._zod.def=t,e._zod.bag=e._zod.bag||{},e._zod.version=An;let n=[...e._zod.def.checks??[]];e._zod.traits.has("$ZodCheck")&&n.unshift(e);for(let i of n)for(let u of i._zod.onattach)u(e);if(n.length===0)(r=e._zod).deferred??(r.deferred=[]),e._zod.deferred?.push(()=>{e._zod.run=e._zod.parse});else{let i=o((p,d,f)=>{let h=De(p),x;for(let $ of d){if($._zod.def.when){if(!$._zod.def.when(p))continue}else if(h)continue;let _=p.issues.length,s=$._zod.check(p);if(s instanceof Promise&&f?.async===!1)throw new de;if(x||s instanceof Promise)x=(x??Promise.resolve()).then(async()=>{await s,p.issues.length!==_&&(h||(h=De(p,_)))});else{if(p.issues.length===_)continue;h||(h=De(p,_))}}return x?x.then(()=>p):p},"runChecks"),u=o((p,d,f)=>{if(De(p))return p.aborted=!0,p;let h=i(d,n,f);if(h instanceof Promise){if(f.async===!1)throw new de;return h.then(x=>e._zod.parse(x,f))}return e._zod.parse(h,f)},"handleCanaryResult");e._zod.run=(p,d)=>{if(d.skipChecks)return e._zod.parse(p,d);if(d.direction==="backward"){let h=e._zod.parse({value:p.value,issues:[]},{...d,skipChecks:!0});return h instanceof Promise?h.then(x=>u(x,p,d)):u(h,p,d)}let f=e._zod.parse(p,d);if(f instanceof Promise){if(d.async===!1)throw new de;return f.then(h=>i(h,n,d))}return i(f,n,d)}}K(e,"~standard",()=>({validate:o(i=>{try{let u=Qe(e,i);return u.success?{value:u.data}:{issues:u.error?.issues}}catch{return et(e,i).then(p=>p.success?{value:p.data}:{issues:p.error?.issues})}},"validate"),vendor:"zod",version:1}))}),wt=b("$ZodString",(e,t)=>{W.init(e,t),e._zod.pattern=[...e?._zod.bag?.patterns??[]].pop()??bn(e._zod.bag),e._zod.parse=(r,n)=>{if(t.coerce)try{r.value=String(r.value)}catch{}return typeof r.value=="string"||r.issues.push({expected:"string",code:"invalid_type",input:r.value,inst:e}),r}}),cr=b("$ZodStringFormat",(e,t)=>{ur.init(e,t),wt.init(e,t)});var Rn=b("$ZodURL",(e,t)=>{cr.init(e,t),e._zod.check=r=>{try{let n=r.value.trim(),i=new URL(n);t.hostname&&(t.hostname.lastIndex=0,t.hostname.test(i.hostname)||r.issues.push({code:"invalid_format",format:"url",note:"Invalid hostname",pattern:t.hostname.source,input:r.value,inst:e,continue:!t.abort})),t.protocol&&(t.protocol.lastIndex=0,t.protocol.test(i.protocol.endsWith(":")?i.protocol.slice(0,-1):i.protocol)||r.issues.push({code:"invalid_format",format:"url",note:"Invalid protocol",pattern:t.protocol.source,input:r.value,inst:e,continue:!t.abort})),t.normalize?r.value=i.href:r.value=n;return}catch{r.issues.push({code:"invalid_format",format:"url",input:r.value,inst:e,continue:!t.abort})}}});var Nn=b("$ZodNumber",(e,t)=>{W.init(e,t),e._zod.pattern=e._zod.bag.pattern??sr,e._zod.parse=(r,n)=>{if(t.coerce)try{r.value=Number(r.value)}catch{}let i=r.value;if(typeof i=="number"&&!Number.isNaN(i)&&Number.isFinite(i))return r;let u=typeof i=="number"?Number.isNaN(i)?"NaN":Number.isFinite(i)?void 0:"Infinity":void 0;return r.issues.push({expected:"number",code:"invalid_type",input:i,inst:e,...u?{received:u}:{}}),r}});var pr=b("$ZodBoolean",(e,t)=>{W.init(e,t),e._zod.pattern=In,e._zod.parse=(r,n)=>{if(t.coerce)try{r.value=!!r.value}catch{}let i=r.value;return typeof i=="boolean"||r.issues.push({expected:"boolean",code:"invalid_type",input:i,inst:e}),r}}),Dn=b("$ZodBigInt",(e,t)=>{W.init(e,t),e._zod.pattern=Tn,e._zod.parse=(r,n)=>{if(t.coerce)try{r.value=BigInt(r.value)}catch{}return typeof r.value=="bigint"||r.issues.push({expected:"bigint",code:"invalid_type",input:r.value,inst:e}),r}});var Cn=b("$ZodAny",(e,t)=>{W.init(e,t),e._zod.parse=r=>r}),Un=b("$ZodUnknown",(e,t)=>{W.init(e,t),e._zod.parse=r=>r});var Mn=b("$ZodVoid",(e,t)=>{W.init(e,t),e._zod.parse=(r,n)=>{let i=r.value;return typeof i>"u"||r.issues.push({expected:"void",code:"invalid_type",input:i,inst:e}),r}}),jn=b("$ZodDate",(e,t)=>{W.init(e,t),e._zod.parse=(r,n)=>{if(t.coerce)try{r.value=new Date(r.value)}catch{}let i=r.value,u=i instanceof Date;return u&&!Number.isNaN(i.getTime())||r.issues.push({expected:"date",code:"invalid_type",input:i,...u?{received:"Invalid Date"}:{},inst:e}),r}});function zn(e,t,r){e.issues.length&&t.issues.push(...Pe(r,e.issues)),t.value[r]=e.value}o(zn,"handleArrayResult");var Ln=b("$ZodArray",(e,t)=>{W.init(e,t),e._zod.parse=(r,n)=>{let i=r.value;if(!Array.isArray(i))return r.issues.push({expected:"array",code:"invalid_type",input:i,inst:e}),r;r.value=Array(i.length);let u=[];for(let p=0;p<i.length;p++){let d=i[p],f=t.element._zod.run({value:d,issues:[]},n);f instanceof Promise?u.push(f.then(h=>zn(h,r,p))):zn(f,r,p)}return u.length?Promise.all(u).then(()=>r):r}});function zt(e,t,r,n,i){if(e.issues.length){if(i&&!(r in n))return;t.issues.push(...Pe(r,e.issues))}e.value===void 0?r in n&&(t.value[r]=void 0):t.value[r]=e.value}o(zt,"handlePropertyResult");function nu(e){let t=Object.keys(e.shape);for(let n of t)if(!e.shape?.[n]?._zod?.traits?.has("$ZodType"))throw new Error(`Invalid element at key "${n}": expected a Zod schema`);let r=vn(e.shape);return{...e,keys:t,keySet:new Set(t),numKeys:t.length,optionalKeys:new Set(r)}}o(nu,"normalizeDef");function ou(e,t,r,n,i,u){let p=[],d=i.keySet,f=i.catchall._zod,h=f.def.type,x=f.optout==="optional";for(let $ in t){if(d.has($))continue;if(h==="never"){p.push($);continue}let _=f.run({value:t[$],issues:[]},n);_ instanceof Promise?e.push(_.then(s=>zt(s,r,$,t,x))):zt(_,r,$,t,x)}return p.length&&r.issues.push({code:"unrecognized_keys",keys:p,input:t,inst:u}),e.length?Promise.all(e).then(()=>r):r}o(ou,"handleCatchall");var Fn=b("$ZodObject",(e,t)=>{if(W.init(e,t),!Object.getOwnPropertyDescriptor(t,"shape")?.get){let d=t.shape;Object.defineProperty(t,"shape",{get:o(()=>{let f={...d};return Object.defineProperty(t,"shape",{value:f}),f},"get")})}let n=Tt(()=>nu(t));K(e._zod,"propValues",()=>{let d=t.shape,f={};for(let h in d){let x=d[h]._zod;if(x.values){f[h]??(f[h]=new Set);for(let $ of x.values)f[h].add($)}}return f});let i=Xe,u=t.catchall,p;e._zod.parse=(d,f)=>{p??(p=n.value);let h=d.value;if(!i(h))return d.issues.push({expected:"object",code:"invalid_type",input:h,inst:e}),d;d.value={};let x=[],$=p.shape;for(let _ of p.keys){let s=$[_],l=s._zod.optout==="optional",g=s._zod.run({value:h[_],issues:[]},f);g instanceof Promise?x.push(g.then(m=>zt(m,d,_,h,l))):zt(g,d,_,h,l)}return u?ou(x,h,d,f,n.value,e):x.length?Promise.all(x).then(()=>d):d}});function wn(e,t,r,n){for(let u of e)if(u.issues.length===0)return t.value=u.value,t;let i=e.filter(u=>!De(u));return i.length===1?(t.value=i[0].value,i[0]):(t.issues.push({code:"invalid_union",input:t.value,inst:r,errors:e.map(u=>u.issues.map(p=>be(p,n,ge())))}),t)}o(wn,"handleUnionResults");var lr=b("$ZodUnion",(e,t)=>{W.init(e,t),K(e._zod,"optin",()=>t.options.some(i=>i._zod.optin==="optional")?"optional":void 0),K(e._zod,"optout",()=>t.options.some(i=>i._zod.optout==="optional")?"optional":void 0),K(e._zod,"values",()=>{if(t.options.every(i=>i._zod.values))return new Set(t.options.flatMap(i=>Array.from(i._zod.values)))}),K(e._zod,"pattern",()=>{if(t.options.every(i=>i._zod.pattern)){let i=t.options.map(u=>u._zod.pattern);return new RegExp(`^(${i.map(u=>It(u.source)).join("|")})$`)}});let r=t.options.length===1,n=t.options[0]._zod.run;e._zod.parse=(i,u)=>{if(r)return n(i,u);let p=!1,d=[];for(let f of t.options){let h=f._zod.run({value:i.value,issues:[]},u);if(h instanceof Promise)d.push(h),p=!0;else{if(h.issues.length===0)return h;d.push(h)}}return p?Promise.all(d).then(f=>wn(f,i,e,u)):wn(d,i,e,u)}});var Bn=b("$ZodDiscriminatedUnion",(e,t)=>{t.inclusive=!1,lr.init(e,t);let r=e._zod.parse;K(e._zod,"propValues",()=>{let i={};for(let u of t.options){let p=u._zod.propValues;if(!p||Object.keys(p).length===0)throw new Error(`Invalid discriminated union option at index "${t.options.indexOf(u)}"`);for(let[d,f]of Object.entries(p)){i[d]||(i[d]=new Set);for(let h of f)i[d].add(h)}}return i});let n=Tt(()=>{let i=t.options,u=new Map;for(let p of i){let d=p._zod.propValues?.[t.discriminator];if(!d||d.size===0)throw new Error(`Invalid discriminated union option at index "${t.options.indexOf(p)}"`);for(let f of d){if(u.has(f))throw new Error(`Duplicate discriminator value "${String(f)}"`);u.set(f,p)}}return u});e._zod.parse=(i,u)=>{let p=i.value;if(!Xe(p))return i.issues.push({code:"invalid_type",expected:"object",input:p,inst:e}),i;let d=n.value.get(p?.[t.discriminator]);return d?d._zod.run(i,u):t.unionFallback?r(i,u):(i.issues.push({code:"invalid_union",errors:[],note:"No matching discriminator",discriminator:t.discriminator,input:p,path:[t.discriminator],inst:e}),i)}});var Zn=b("$ZodRecord",(e,t)=>{W.init(e,t),e._zod.parse=(r,n)=>{let i=r.value;if(!yn(i))return r.issues.push({expected:"record",code:"invalid_type",input:i,inst:e}),r;let u=[],p=t.keyType._zod.values;if(p){r.value={};let d=new Set;for(let h of p)if(typeof h=="string"||typeof h=="number"||typeof h=="symbol"){d.add(typeof h=="number"?h.toString():h);let x=t.valueType._zod.run({value:i[h],issues:[]},n);x instanceof Promise?u.push(x.then($=>{$.issues.length&&r.issues.push(...Pe(h,$.issues)),r.value[h]=$.value})):(x.issues.length&&r.issues.push(...Pe(h,x.issues)),r.value[h]=x.value)}let f;for(let h in i)d.has(h)||(f=f??[],f.push(h));f&&f.length>0&&r.issues.push({code:"unrecognized_keys",input:i,inst:e,keys:f})}else{r.value={};for(let d of Reflect.ownKeys(i)){if(d==="__proto__")continue;let f=t.keyType._zod.run({value:d,issues:[]},n);if(f instanceof Promise)throw new Error("Async schemas not supported in object keys currently");if(typeof d=="string"&&sr.test(d)&&f.issues.length){let $=t.keyType._zod.run({value:Number(d),issues:[]},n);if($ instanceof Promise)throw new Error("Async schemas not supported in object keys currently");$.issues.length===0&&(f=$)}if(f.issues.length){t.mode==="loose"?r.value[d]=i[d]:r.issues.push({code:"invalid_key",origin:"record",issues:f.issues.map($=>be($,n,ge())),input:d,path:[d],inst:e});continue}let x=t.valueType._zod.run({value:i[d],issues:[]},n);x instanceof Promise?u.push(x.then($=>{$.issues.length&&r.issues.push(...Pe(d,$.issues)),r.value[f.value]=$.value})):(x.issues.length&&r.issues.push(...Pe(d,x.issues)),r.value[f.value]=x.value)}}return u.length?Promise.all(u).then(()=>r):r}});var Vn=b("$ZodEnum",(e,t)=>{W.init(e,t);let r=or(t.entries),n=new Set(r);e._zod.values=n,e._zod.pattern=new RegExp(`^(${r.filter(i=>hn.has(typeof i)).map(i=>typeof i=="string"?Ne(i):i.toString()).join("|")})$`),e._zod.parse=(i,u)=>{let p=i.value;return n.has(p)||i.issues.push({code:"invalid_value",values:r,input:p,inst:e}),i}}),Hn=b("$ZodLiteral",(e,t)=>{if(W.init(e,t),t.values.length===0)throw new Error("Cannot create literal schema with no valid values");let r=new Set(t.values);e._zod.values=r,e._zod.pattern=new RegExp(`^(${t.values.map(n=>typeof n=="string"?Ne(n):n?Ne(n.toString()):String(n)).join("|")})$`),e._zod.parse=(n,i)=>{let u=n.value;return r.has(u)||n.issues.push({code:"invalid_value",values:t.values,input:u,inst:e}),n}});var Wn=b("$ZodTransform",(e,t)=>{W.init(e,t),e._zod.parse=(r,n)=>{if(n.direction==="backward")throw new Pt(e.constructor.name);let i=t.transform(r.value,r);if(n.async)return(i instanceof Promise?i:Promise.resolve(i)).then(p=>(r.value=p,r));if(i instanceof Promise)throw new de;return r.value=i,r}});function kn(e,t){return e.issues.length&&t===void 0?{issues:[],value:void 0}:e}o(kn,"handleOptionalResult");var qn=b("$ZodOptional",(e,t)=>{W.init(e,t),e._zod.optin="optional",e._zod.optout="optional",K(e._zod,"values",()=>t.innerType._zod.values?new Set([...t.innerType._zod.values,void 0]):void 0),K(e._zod,"pattern",()=>{let r=t.innerType._zod.pattern;return r?new RegExp(`^(${It(r.source)})?$`):void 0}),e._zod.parse=(r,n)=>{if(t.innerType._zod.optin==="optional"){let i=t.innerType._zod.run(r,n);return i instanceof Promise?i.then(u=>kn(u,r.value)):kn(i,r.value)}return r.value===void 0?r:t.innerType._zod.run(r,n)}});var Gn=b("$ZodNullable",(e,t)=>{W.init(e,t),K(e._zod,"optin",()=>t.innerType._zod.optin),K(e._zod,"optout",()=>t.innerType._zod.optout),K(e._zod,"pattern",()=>{let r=t.innerType._zod.pattern;return r?new RegExp(`^(${It(r.source)}|null)$`):void 0}),K(e._zod,"values",()=>t.innerType._zod.values?new Set([...t.innerType._zod.values,null]):void 0),e._zod.parse=(r,n)=>r.value===null?r:t.innerType._zod.run(r,n)});var Kn=b("$ZodPipe",(e,t)=>{W.init(e,t),K(e._zod,"values",()=>t.in._zod.values),K(e._zod,"optin",()=>t.in._zod.optin),K(e._zod,"optout",()=>t.out._zod.optout),K(e._zod,"propValues",()=>t.in._zod.propValues),e._zod.parse=(r,n)=>{if(n.direction==="backward"){let u=t.out._zod.run(r,n);return u instanceof Promise?u.then(p=>At(p,t.in,n)):At(u,t.in,n)}let i=t.in._zod.run(r,n);return i instanceof Promise?i.then(u=>At(u,t.out,n)):At(i,t.out,n)}});function At(e,t,r){return e.issues.length?(e.aborted=!0,e):t._zod.run({value:e.value,issues:e.issues},r)}o(At,"handlePipeResult");var Jn=b("$ZodCustom",(e,t)=>{Ce.init(e,t),W.init(e,t),e._zod.parse=(r,n)=>r,e._zod.check=r=>{let n=r.value,i=t.fn(n);if(i instanceof Promise)return i.then(u=>On(u,r,n,e));On(i,r,n,e)}});function On(e,t,r,n){if(!e){let i={code:"custom",input:r,inst:n,path:[...n._zod.def.path??[]],continue:!n._zod.def.abort};n._zod.def.params&&(i.params=n._zod.def.params),t.issues.push(ar(i))}}o(On,"handleRefineResult");var Yn,uu=Symbol("ZodOutput"),cu=Symbol("ZodInput"),dr=class{static{o(this,"$ZodRegistry")}constructor(){this._map=new WeakMap,this._idmap=new Map}add(t,...r){let n=r[0];return this._map.set(t,n),n&&typeof n=="object"&&"id"in n&&this._idmap.set(n.id,t),this}clear(){return this._map=new WeakMap,this._idmap=new Map,this}remove(t){let r=this._map.get(t);return r&&typeof r=="object"&&"id"in r&&this._idmap.delete(r.id),this._map.delete(t),this}get(t){let r=t._zod.parent;if(r){let n={...this.get(r)??{}};delete n.id;let i={...n,...this._map.get(t)};return Object.keys(i).length?i:void 0}return this._map.get(t)}has(t){return this._map.has(t)}};function Qn(){return new dr}o(Qn,"registry");(Yn=globalThis).__zod_globalRegistry??(Yn.__zod_globalRegistry=Qn());var mr=globalThis.__zod_globalRegistry;function eo(e,t){return new e({type:"string",...H(t)})}o(eo,"_string");function to(e,t){return new e({type:"string",coerce:!0,...H(t)})}o(to,"_coercedString");function ro(e,t){return new e({type:"string",format:"url",check:"string_format",abort:!1,...H(t)})}o(ro,"_url");function no(e,t){return new e({type:"number",checks:[],...H(t)})}o(no,"_number");function oo(e,t){return new e({type:"number",coerce:!0,checks:[],...H(t)})}o(oo,"_coercedNumber");function io(e,t){return new e({type:"boolean",...H(t)})}o(io,"_boolean");function ao(e,t){return new e({type:"boolean",coerce:!0,...H(t)})}o(ao,"_coercedBoolean");function so(e,t){return new e({type:"bigint",coerce:!0,...H(t)})}o(so,"_coercedBigint");function uo(e){return new e({type:"any"})}o(uo,"_any");function co(e){return new e({type:"unknown"})}o(co,"_unknown");function po(e,t){return new e({type:"void",...H(t)})}o(po,"_void");function lo(e,t){return new e({type:"date",coerce:!0,...H(t)})}o(lo,"_coercedDate");function ue(e,t){return new $n({check:"min_length",...H(t),minimum:e})}o(ue,"_minLength");function Te(e,t){return new En({check:"string_format",format:"regex",...H(t),pattern:e})}o(Te,"_regex");function mo(e,t,r){let n=H(r);return n.abort??(n.abort=!0),new e({type:"custom",check:"custom",fn:t,...n})}o(mo,"_custom");var J=b("ZodMiniType",(e,t)=>{if(!e._zod)throw new Error("Uninitialized schema in ZodMiniType.");W.init(e,t),e.def=t,e.type=t.type,e.parse=(r,n)=>Et(e,r,n,{callee:e.parse}),e.safeParse=(r,n)=>Qe(e,r,n),e.parseAsync=async(r,n)=>St(e,r,n,{callee:e.parseAsync}),e.safeParseAsync=async(r,n)=>et(e,r,n),e.check=(...r)=>e.clone({...t,checks:[...t.checks??[],...r.map(n=>typeof n=="function"?{_zod:{check:n,def:{check:"custom"},onattach:[]}}:n)]},{parent:!0}),e.with=e.check,e.clone=(r,n)=>$t(e,r,n),e.brand=()=>e,e.register=(r,n)=>(r.add(e,n),e),e.apply=r=>r(e)}),Ot=b("ZodMiniString",(e,t)=>{wt.init(e,t),J.init(e,t)});function a(e){return eo(Ot,e)}o(a,"string");var fo=b("ZodMiniStringFormat",(e,t)=>{cr.init(e,t),Ot.init(e,t)});var xu=b("ZodMiniURL",(e,t)=>{Rn.init(e,t),fo.init(e,t)});function go(e){return ro(xu,e)}o(go,"url");var fr=b("ZodMiniNumber",(e,t)=>{Nn.init(e,t),J.init(e,t)});function Q(e){return no(fr,e)}o(Q,"number");var gr=b("ZodMiniBoolean",(e,t)=>{pr.init(e,t),J.init(e,t)});function B(e){return io(gr,e)}o(B,"boolean");var yo=b("ZodMiniBigInt",(e,t)=>{Dn.init(e,t),J.init(e,t)});var _u=b("ZodMiniAny",(e,t)=>{Cn.init(e,t),J.init(e,t)});function rt(){return uo(_u)}o(rt,"any");var Pu=b("ZodMiniUnknown",(e,t)=>{Un.init(e,t),J.init(e,t)});function w(){return co(Pu)}o(w,"unknown");var bu=b("ZodMiniVoid",(e,t)=>{Mn.init(e,t),J.init(e,t)});function ho(e){return po(bu,e)}o(ho,"_void");var vo=b("ZodMiniDate",(e,t)=>{jn.init(e,t),J.init(e,t)});var Tu=b("ZodMiniArray",(e,t)=>{Ln.init(e,t),J.init(e,t)});function R(e,t){return new Tu({type:"array",element:e,...H(t)})}o(R,"array");var Iu=b("ZodMiniObject",(e,t)=>{Fn.init(e,t),J.init(e,t),K(e,"shape",()=>t.shape)});function c(e,t){let r={type:"object",shape:e??{},...H(t)};return new Iu(r)}o(c,"object");var $u=b("ZodMiniUnion",(e,t)=>{lr.init(e,t),J.init(e,t)});function N(e,t){return new $u({type:"union",options:e,...H(t)})}o(N,"union");var Eu=b("ZodMiniDiscriminatedUnion",(e,t)=>{Bn.init(e,t),J.init(e,t)});function Ue(e,t,r){return new Eu({type:"union",options:t,discriminator:e,...H(r)})}o(Ue,"discriminatedUnion");var Su=b("ZodMiniRecord",(e,t)=>{Zn.init(e,t),J.init(e,t)});function k(e,t,r){return new Su({type:"record",keyType:e,valueType:t,...H(r)})}o(k,"record");var Au=b("ZodMiniEnum",(e,t)=>{Vn.init(e,t),J.init(e,t),e.options=Object.values(t.entries)});function C(e,t){let r=Array.isArray(e)?Object.fromEntries(e.map(n=>[n,n])):e;return new Au({type:"enum",entries:r,...H(t)})}o(C,"_enum");var zu=b("ZodMiniLiteral",(e,t)=>{Hn.init(e,t),J.init(e,t)});function E(e,t){return new zu({type:"literal",values:Array.isArray(e)?e:[e],...H(t)})}o(E,"literal");var wu=b("ZodMiniTransform",(e,t)=>{Wn.init(e,t),J.init(e,t)});function Ie(e){return new wu({type:"transform",transform:e})}o(Ie,"transform");var ku=b("ZodMiniOptional",(e,t)=>{qn.init(e,t),J.init(e,t)});function y(e){return new ku({type:"optional",innerType:e})}o(y,"optional");var Ou=b("ZodMiniNullable",(e,t)=>{Gn.init(e,t),J.init(e,t)});function nt(e){return new Ou({type:"nullable",innerType:e})}o(nt,"nullable");var Ru=b("ZodMiniPipe",(e,t)=>{Kn.init(e,t),J.init(e,t)});function $e(e,t){return new Ru({type:"pipe",in:e,out:t})}o($e,"pipe");var Nu=b("ZodMiniCustom",(e,t)=>{Jn.init(e,t),J.init(e,t)});function Rt(e,t){return mo(Nu,e??(()=>!0),t)}o(Rt,"custom");var ot={};ln(ot,{bigint:()=>Fu,boolean:()=>Lu,date:()=>Bu,number:()=>ju,string:()=>Mu});function Mu(e){return to(Ot,e)}o(Mu,"string");function ju(e){return oo(fr,e)}o(ju,"number");function Lu(e){return ao(gr,e)}o(Lu,"boolean");function Fu(e){return so(yo,e)}o(Fu,"bigint");function Bu(e){return lo(vo,e)}o(Bu,"date");var hr=c({retryOnFailure:c({defaultValue:y(B()),hide:y(B())}),continueOnFailure:c({defaultValue:y(B()),hide:y(B())})}),yr=class{constructor(t,r,n,i,u,p,d,f,h,x,$){this.name=t;this.displayName=r;this.description=n;this.props=i;this.run=u;this.test=p;this.requireAuth=d;this.errorHandlingOptions=f;this.outputSchema=h;this.audience=x;this.aiMetadata=$}static{o(this,"IAction")}},Nt=o(e=>new yr(e.name,e.displayName,e.description,e.props,e.run,e.test??e.run,e.requireAuth??!0,e.errorHandlingOptions??{continueOnFailure:{defaultValue:!1},retryOnFailure:{defaultValue:!1}},e.outputSchema,e.audience,e.aiMetadata),"createAction");var L=c({displayName:a(),description:y(a())}),D=o((e,t)=>c({type:E(t),required:B(),defaultValue:y(rt())}),"TPropertyValue");var oe=c({...L.shape,...D(a(),"SHORT_TEXT").shape}),ye=c({...L.shape,...D(a(),"LONG_TEXT").shape});var _o=c({label:a(),value:w()}),Dt=c({disabled:y(B()),placeholder:y(a()),options:R(_o)});var ie=c({...L.shape,options:Dt,...D(w(),"STATIC_DROPDOWN").shape}),he=c({...L.shape,options:Dt,...D(R(w()),"STATIC_MULTI_SELECT_DROPDOWN").shape});var vr=c({...L.shape,...D(w(),"DROPDOWN").shape,refreshers:R(a())}),it=c({...L.shape,...D(R(w()),"MULTI_SELECT_DROPDOWN").shape,refreshers:R(a())});var ve=c({...L.shape,...D(B(),"CHECKBOX").shape});var xe=c({...L.shape,...D(Q(),"NUMBER").shape});var at=c({...L.shape,...D(w(),"FILE").shape});var st=c({...L.shape,...D(a(),"DATE_TIME").shape});var Po=k(a(),N([oe,ye,ie,it,he,ve,xe,at,st])),ut=c({...L.shape,properties:Po,...D(R(w()),"ARRAY").shape});var ct=c({...L.shape,...D(N([k(a(),w())]),"JSON").shape});var bo=N([oe,ie,ct,ut,he]),Vu=k(a(),bo),xr=c({refreshers:R(a()),...L.shape,...D(w(),"DYNAMIC").shape});var Ct=c({...L.shape,...D(ho(),"MARKDOWN").shape});var pt=(r=>(r.ARCHIVE="ARCHIVE",r.REGISTRY="REGISTRY",r))(pt||{}),Me=(r=>(r.CUSTOM="CUSTOM",r.OFFICIAL="OFFICIAL",r))(Me||{}),je=(v=>(v.ARTIFICIAL_INTELLIGENCE="ARTIFICIAL_INTELLIGENCE",v.COMMUNICATION="COMMUNICATION",v.COMMERCE="COMMERCE",v.CORE="CORE",v.UNIVERSAL_AI="UNIVERSAL_AI",v.FLOW_CONTROL="FLOW_CONTROL",v.BUSINESS_INTELLIGENCE="BUSINESS_INTELLIGENCE",v.ACCOUNTING="ACCOUNTING",v.PRODUCTIVITY="PRODUCTIVITY",v.CONTENT_AND_FILES="CONTENT_AND_FILES",v.DEVELOPER_TOOLS="DEVELOPER_TOOLS",v.CUSTOMER_SUPPORT="CUSTOMER_SUPPORT",v.FORMS_AND_SURVEYS="FORMS_AND_SURVEYS",v.HUMAN_RESOURCES="HUMAN_RESOURCES",v.PAYMENT_PROCESSING="PAYMENT_PROCESSING",v.MARKETING="MARKETING",v.SALES_AND_CRM="SALES_AND_CRM",v))(je||{});var lt=(r=>(r.AUTHORIZATION_CODE="authorization_code",r.CLIENT_CREDENTIALS="client_credentials",r))(lt||{}),_r="both_client_credentials_and_authorization_code";var ee=(i=>(i.POLLING="POLLING",i.WEBHOOK="WEBHOOK",i.APP_WEBHOOK="APP_WEBHOOK",i.MANUAL="MANUAL",i))(ee||{}),dt=(u=>(u.NONE="NONE",u.HEADER_PRESENT="HEADER_PRESENT",u.QUERY_PRESENT="QUERY_PRESENT",u.BODY_PARAM_PRESENT="BODY_PARAM_PRESENT",u.HEAD_REQUEST="HEAD_REQUEST",u))(dt||{}),Hu=c({strategy:C(dt),paramName:y(a())}),mt=(r=>(r.SIMULATION="SIMULATION",r.TEST_FUNCTION="TEST_FUNCTION",r))(mt||{});var Ut=(r=>(r.WEBSOCKET="WEBSOCKET",r.NONE="NONE",r))(Ut||{}),To=c({status:y(Q()),body:y(w()),headers:y(k(a(),a()))}),Io=c({type:E("DELAY"),resumeDateTime:a(),requestIdToReply:y(a()),handlerId:y(a()),streamStepProgress:y(C(Ut))}),$o=c({type:E("WEBHOOK"),requestId:a(),requestIdToReply:y(a()),response:To,handlerId:y(a()),streamStepProgress:y(C(Ut))}),Wu=N([Io,$o]);var qu=c({body:w(),rawBody:y(w()),headers:k(a(),a()),queryParams:k(a(),a())});function ce(e){return e==null}o(ce,"isNil");function ft(e){return e==null?!0:typeof e=="string"||Array.isArray(e)?e.length===0:typeof e=="object"?Object.keys(e).length===0:!1}o(ft,"isEmpty");function Mt(e,t){if(e==null)throw new Error(`${t} is null or undefined`)}o(Mt,"assertNotNullOrUndefined");var Pr=Re(require("crypto"),1);var Gu=128,ze,Le,Ku=o(e=>{!ze||ze.length<e?(ze=Buffer.allocUnsafe(e*Gu),Pr.default.randomFillSync(ze),Le=0):Le+e>ze.length&&(Pr.default.randomFillSync(ze),Le=0),Le+=e},"fillPool"),Ju=o(e=>(Ku(e|=0),ze.subarray(Le-e,Le)),"random"),Xu=o((e,t,r)=>{let n=(2<<31-Math.clz32(e.length-1|1))-1,i=Math.ceil(1.6*n*t/e.length);return(u=t)=>{let p="";for(;;){let d=r(i),f=i;for(;f--;)if(p+=e[d[f]&n]||"",p.length===u)return p}}},"customRandom"),So=o((e,t=21)=>Xu(e,t,Ju),"customAlphabet");var Yu="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz",Ao=21,lb=a().check(Te(new RegExp(`^[0-9a-zA-Z]{${Ao}}$`))),Qu=So(Yu,Ao);var Ee=$e(Ie(e=>e instanceof Date?e.toISOString():e),a()),ae={id:a(),created:Ee,updated:Ee},V=o(e=>y(nt(e)),"Nullable");function br(e){return y(nt(C(e)))}o(br,"NullableEnum");var fb=$e(Ie(e=>e==="true"||e===!0?!0:e==="false"||e===!1?!1:void 0),y(B())),jt=o(e=>$e(Ie(t=>Array.isArray(t)?t:t!==void 0?[t]:void 0),y(R(e))),"OptionalArrayFromQuery");var hb=k(a(),w());var gt=(x=>(x.OPENAI="openai",x.OPENROUTER="openrouter",x.ANTHROPIC="anthropic",x.AZURE="azure",x.GOOGLE="google",x.ACTIVEPIECES="activepieces",x.CLOUDFLARE_GATEWAY="cloudflare-gateway",x.CUSTOM="custom",x.BEDROCK="bedrock",x.MISTRAL="mistral",x))(gt||{});var zb=a().check(Te(/^#[0-9A-Fa-f]{6}$/));var kb=c({filename:a(),data:w(),type:E("file"),mimetype:y(a())});var ec=Re(wo());var Mb=c({...ae,name:a(),permissions:R(a()),platformId:V(a()),type:a(),userCount:y(Q())});var ko=(n=>(n.AGENT_DECIDE="agent-decide",n.CHOOSE_YOURSELF="choose-yourself",n.LEAVE_EMPTY="leave-empty",n))(ko||{}),Tr=(r=>(r.FILE="FILE",r.TABLE="TABLE",r))(Tr||{}),Ir=(n=>(n.SSE="sse",n.STREAMABLE_HTTP="streamable-http",n.SIMPLE_HTTP="http",n))(Ir||{});var $r=(n=>(n.TEXT="text",n.NUMBER="number",n.BOOLEAN="boolean",n))($r||{});var Er=(r=>(r.IN_PROGRESS="in-progress",r.COMPLETED="completed",r))(Er||{});var tc=c({mode:C(ko),value:w()}),rc=c({auth:y(a()),fields:k(a(),tc)}),nc=c({pieceName:a(),pieceVersion:a(),actionName:a(),predefinedInput:y(rc)}),oc=c({type:E("PIECE"),toolName:a().check(ue(1)),pieceMetadata:nc}),ic=c({type:E("none")}),ac=c({type:E("access_token"),accessToken:a()}),sc=c({type:E("api_key"),apiKey:a(),apiKeyHeader:a()}),uc=c({type:E("headers"),headers:k(a(),a())}),cc=Ue("type",[ic,ac,sc,uc]),Oo=c({type:E("FLOW"),toolName:a().check(ue(1)),externalFlowId:a(),flowDisplayName:y(a())}),Ro=c({type:E("MCP"),toolName:a().check(ue(1)),serverUrl:go(),protocol:C(Ir),auth:cc}),No=c({type:E("KNOWLEDGE_BASE"),toolName:a().check(ue(1)),sourceType:C(Tr),sourceId:a(),sourceName:a()}),pc=Ue("type",[oc,Oo,Ro,No]),lc=c({displayName:a(),description:y(a()),type:C($r)}),Do=c({type:E("MARKDOWN"),markdown:a()}),Fe={type:E("TOOL_CALL"),input:V(k(a(),w())),output:y(w()),toolName:a(),status:C(Er),toolCallId:a(),startTime:a(),endTime:y(a())},lT=c(Fe),Co=Ue("toolCallType",[c({...Fe,toolCallType:E("PIECE"),pieceName:a(),pieceVersion:a(),actionName:a()}),c({...Fe,toolCallType:E("FLOW"),displayName:a(),externalFlowId:a()}),c({...Fe,toolCallType:E("MCP"),displayName:a(),serverUrl:a()}),c({...Fe,toolCallType:E("KNOWLEDGE_BASE"),displayName:a(),sourceType:a()}),c({...Fe,toolCallType:E("UNKNOWN"),displayName:a()})]),dc=N([Do,Co]);var Sr=(r=>(r.IMAGE="image",r.TEXT="text",r))(Sr||{}),_e=c({apiKey:a()}),mc=_e,fc=c({apiKey:a(),apiKeyHash:a()}),gc=_e,yc=_e,hc=_e,vc=_e,xc=_e,_c=_e,Pc=_e,Uo=c({accessKeyId:a().check(ue(1)),secretAccessKey:a().check(ue(1))}),bc=c({}),Tc=c({}),Ic=c({}),$c=c({}),Ec=c({}),Sc=c({}),Mo=c({modelId:a(),modelName:a(),modelType:C(Sr)}),jo=c({apiKeyHeader:a(),baseUrl:a(),models:R(Mo),defaultHeaders:y(k(a(),a()))}),Lo=c({accountId:a(),gatewayId:a(),models:R(Mo),vertexProject:y(a()),vertexRegion:y(a())}),Fo=c({resourceName:a(),apiVersion:$e(Ie(e=>typeof e=="string"&&e.trim().length===0?void 0:e),y(a()))}),Bo=c({region:a().check(ue(1))}),Ac=N([mc,hc,vc,xc,_c,yc,gc,fc,Uo,Pc]),Zo=N([jo,Lo,Fo,Bo,bc,Ic,$c,Ec,Tc,Sc]),zc=c({id:a(),name:a(),type:C(Sr)}),wc=c({id:a(),name:a(),provider:C(gt),config:Zo,enabledForChat:B()}),kc=c({provider:C(gt),config:Zo,auth:Ac,platformId:a()});var gT={openai:"openai",anthropic:"anthropic","google-ai-studio":"google","google-vertex-ai":"google"};var Oc=c({base64Url:a(),fileName:a(),extension:y(a())}),Rc=c({mimeType:a(),url:a(),fileName:y(a())}),Ar=N([Oc,Rc]);var Nc=N([c({type:E("file"),value:Ar}),c({type:E("markdown"),value:a(),files:y(R(Ar))})]),Dc=c({sessionId:a(),message:a(),files:y(R(a()))});var Ho=(r=>(r.ON_NEW_RECORD="ON_NEW_RECORD",r.ON_UPDATE_RECORD="ON_UPDATE_RECORD",r))(Ho||{}),Wo=(r=>(r.ENABLED="ENABLED",r.DISABLED="DISABLED",r))(Wo||{}),zr=(n=>(n.RECORD_CREATED="RECORD_CREATED",n.RECORD_UPDATED="RECORD_UPDATED",n.RECORD_DELETED="RECORD_DELETED",n))(zr||{});var Cc=N([c({...ae,name:a(),externalId:a(),type:E("STATIC_DROPDOWN"),tableId:a(),projectId:a(),data:c({options:R(c({value:a()}))})}),c({...ae,name:a(),externalId:a(),type:N([E("TEXT"),E("NUMBER"),E("DATE")]),tableId:a(),projectId:a()})]),Uc=c({...ae,name:a(),folderId:V(a()),projectId:a(),externalId:a(),status:br(Wo),trigger:br(Ho)}),Mc=c({...ae,tableId:a(),projectId:a(),cells:k(a(),c({updated:a(),created:a(),value:w(),fieldName:a()}))}),jc=c({events:R(C(zr)),webhookUrl:a(),flowId:a()}),Lc=c({fields:R(c({id:a(),name:a()})),rows:R(k(a(),a())),name:a()}),Fc=c({projectId:a(),limit:y(ot.number()),cursor:y(a()),name:y(a()),externalIds:jt(a()),folderId:y(a()),folderIds:jt(a())}),Bc=c({records:R(R(c({fieldId:a(),value:Go()}))),tableId:a()}),Zc=c({cells:y(R(c({fieldId:a(),value:Go()}))),tableId:a(),agentUpdate:y(B())}),qo=Ue("operator",[we("eq"),we("neq"),we("gt"),we("gte"),we("lt"),we("lte"),we("co"),Vo("exists"),Vo("not_exists")]),Vc=c({tableId:a(),limit:y(ot.number()),cursor:y(a()),filters:jt(qo)});function Go(){return $e(Ie(e=>e==null?e:String(e)),nt(a()))}o(Go,"coerceToString");function we(e){return c({fieldId:a(),operator:E(e),value:a()})}o(we,"valueFilter");function Vo(e){return c({fieldId:a(),operator:E(e)})}o(Vo,"existenceFilter");var Hc=c({status:y(Q()),body:y(w()),headers:y(k(a(),a()))}),Wc=c({...ae,deleted:V(Ee),ownerId:a(),displayName:a(),platformId:a(),externalId:V(a())});var Ko=c({name:a(),description:y(a()),type:a(),required:B()}),qc=c({pieceName:a(),triggerName:a(),input:c({toolName:a(),toolDescription:a(),inputSchema:R(Ko),returnsResponse:B()})});var Jo="^[0-9]+\\.[0-9]+\\.[0-9]+$",NT=new RegExp(Jo),Kc="^([~^])?[0-9]+\\.[0-9]+\\.[0-9]+$",DT=a().check(Te(new RegExp(Jo))),CT=a().check(Te(new RegExp(Kc))),Jc=c({packageType:E("ARCHIVE"),pieceType:C(Me),pieceName:a(),pieceVersion:a(),archiveId:a(),platformId:a()}),Xo=c({packageType:E("REGISTRY"),pieceType:E("OFFICIAL"),pieceName:a(),pieceVersion:a()}),Yo=c({packageType:E("REGISTRY"),pieceType:E("CUSTOM"),pieceName:a(),pieceVersion:a(),platformId:a()}),UT=N([Xo,Yo]),MT=N([Jc,Xo,Yo]),Qo=(t=>(t.CRON_EXPRESSION="CRON_EXPRESSION",t))(Qo||{}),Xc=c({type:C(Qo),cronExpression:a(),timezone:a()}),jT=c({...ae,type:C(ee),projectId:a(),flowId:a(),triggerName:a(),schedule:V(Xc),flowVersionId:a(),pieceName:a(),pieceVersion:a(),deleted:V(a()),simulate:B()}),ei=(m=>(m.UNKNOWN="UNKNOWN",m.FLOW_RUN_LOG="FLOW_RUN_LOG",m.FLOW_RUN_LOG_SLICE="FLOW_RUN_LOG_SLICE",m.PACKAGE_ARCHIVE="PACKAGE_ARCHIVE",m.FLOW_STEP_FILE="FLOW_STEP_FILE",m.SAMPLE_DATA="SAMPLE_DATA",m.TRIGGER_PAYLOAD="TRIGGER_PAYLOAD",m.SAMPLE_DATA_INPUT="SAMPLE_DATA_INPUT",m.TRIGGER_EVENT_FILE="TRIGGER_EVENT_FILE",m.PROJECT_RELEASE="PROJECT_RELEASE",m.FLOW_VERSION_BACKUP="FLOW_VERSION_BACKUP",m.PLATFORM_ASSET="PLATFORM_ASSET",m.USER_PROFILE_PICTURE="USER_PROFILE_PICTURE",m.WEBHOOK_PAYLOAD="WEBHOOK_PAYLOAD",m.KNOWLEDGE_BASE="KNOWLEDGE_BASE",m.FLOW_BUNDLE="FLOW_BUNDLE",m))(ei||{}),ti=(r=>(r.NONE="NONE",r.ZSTD="ZSTD",r))(ti||{}),ri=(r=>(r.S3="S3",r.DB="DB",r))(ri||{}),LT=c({...ae,projectId:V(a()),platformId:V(a()),type:C(ei),compression:C(ti),data:y(w()),location:C(ri),size:V(Q()),fileName:V(a()),s3Key:V(a()),metadata:V(k(a(),a()))}),ni=(n=>(n.ADMIN="ADMIN",n.MEMBER="MEMBER",n.OPERATOR="OPERATOR",n))(ni||{}),oi=(r=>(r.ACTIVE="ACTIVE",r.INACTIVE="INACTIVE",r))(oi||{}),FT=c({id:a(),email:a(),firstName:a(),status:C(oi),externalId:V(a()),platformId:V(a()),platformRole:C(ni),lastName:a(),created:Ee,updated:Ee,lastActiveDate:V(Ee),imageUrl:V(a())});var wr=c({...L.shape,...D(k(a(),w()),"OBJECT").shape});var ui=c({...L.shape,...D(a(),"COLOR").shape});var kr=N([oe,ye,Ct,ve,ie,he,vr,it,xr,xe,ut,wr,ct,st,at,ui]),F={ShortText(e){return{...e,valueSchema:void 0,type:"SHORT_TEXT"}},Checkbox(e){return{...e,valueSchema:void 0,type:"CHECKBOX"}},LongText(e){return{...e,valueSchema:void 0,type:"LONG_TEXT"}},MarkDown(e){return{displayName:"Markdown",required:!1,description:e.value,type:"MARKDOWN",valueSchema:void 0,variant:e.variant??"INFO"}},Number(e){return{...e,valueSchema:void 0,type:"NUMBER"}},Json(e){return{...e,valueSchema:void 0,type:"JSON"}},Array(e){return{...e,valueSchema:void 0,type:"ARRAY"}},Object(e){return{...e,valueSchema:void 0,type:"OBJECT"}},Dropdown(e){return{...e,valueSchema:void 0,type:"DROPDOWN"}},StaticDropdown(e){return{...e,valueSchema:void 0,type:"STATIC_DROPDOWN"}},MultiSelectDropdown(e){return{...e,valueSchema:void 0,type:"MULTI_SELECT_DROPDOWN"}},DynamicProperties(e){return{...e,valueSchema:void 0,type:"DYNAMIC"}},StaticMultiSelectDropdown(e){return{...e,valueSchema:void 0,type:"STATIC_MULTI_SELECT_DROPDOWN"}},DateTime(e){return{...e,valueSchema:void 0,type:"DATE_TIME"}},File(e){return{...e,valueSchema:void 0,type:"FILE"}},Custom(e){let t=e.code.toString();return{...e,code:t,valueSchema:void 0,type:"CUSTOM"}},Color(e){return{...e,valueSchema:void 0,type:"COLOR"}}};var me=c({displayName:a(),description:y(a())});var ci=c({username:a(),password:a()}),Or=c({...me.shape,username:c({displayName:a(),description:y(a())}),password:c({displayName:a(),description:y(a())}),...D(ci,"BASIC_AUTH").shape});var tp=k(a(),N([oe,ye,xe,ve,ie])),Rr=c({...me.shape,props:tp,...D(w(),"CUSTOM_AUTH").shape});var ke=c({...me.shape,...D(c({auth:a()}),"SECRET_TEXT").shape});var rp=k(a(),N([oe,ye,ke,xe,ve,ie,he,Ct])),pi=c({...me.shape,props:rp,...D(w(),"OIDC").shape});var Nr=(r=>(r.HEADER="HEADER",r.BODY="BODY",r))(Nr||{}),li=N([oe,ke,ie]),di=k(a(),li),np=c({props:y(k(a(),li)),authUrl:a(),tokenUrl:a(),scope:R(a()),prompt:y(N([E("none"),E("consent"),E("login"),E("omit")])),pkce:y(B()),pkceMethod:y(N([E("plain"),E("S256")])),authorizationMethod:y(C(Nr)),grantType:y(N([C(lt),E(_r)])),extra:y(k(a(),a()))}),mi=c({access_token:a(),props:y(di),data:k(a(),rt())}),Dr=c({...me.shape,...np.shape,...D(mi,"OAUTH2").shape});var Be=N([Or,Rr,pi,Dr,ke]),yt="Connection",Cr={SecretText(e){return{...e,valueSchema:void 0,type:"SECRET_TEXT"}},OAuth2(e){return{...e,valueSchema:void 0,type:"OAUTH2",displayName:e.displayName||yt}},BasicAuth(e){return{...e,valueSchema:void 0,type:"BASIC_AUTH",displayName:e.displayName||yt,required:!0}},CustomAuth(e){return{...e,valueSchema:void 0,type:"CUSTOM_AUTH",displayName:e.displayName||yt}},OIDC(e){return{...e,valueSchema:void 0,type:"OIDC",displayName:e.displayName||yt}},None(){}};var x$={OAUTH2:"OAUTH2",CLOUD_OAUTH2:"OAUTH2",PLATFORM_OAUTH2:"OAUTH2",BASIC_AUTH:"BASIC_AUTH",CUSTOM_AUTH:"CUSTOM_AUTH",OIDC:"OIDC",SECRET_TEXT:"SECRET_TEXT",NO_AUTH:void 0};var op=c({...L.shape,...D(w(),"CUSTOM").shape,code:a()});var ip=N([kr,Be]),Ur=k(a(),ip),j$=k(a(),kr);var fi=N([c({strategy:E("CRON"),cronExpression:a()}),c({strategy:E("NONE")})]),Ze=class{constructor(t,r,n,i,u,p,d,f,h,x,$,_,s,l,g,m,v,P,M){this.name=t;this.displayName=r;this.description=n;this.requireAuth=i;this.props=u;this.type=p;this.handshakeConfiguration=d;this.onHandshake=f;this.renewConfiguration=h;this.onRenew=x;this.onEnable=$;this.onDisable=_;this.onStart=s;this.run=l;this.test=g;this.sampleData=m;this.testStrategy=v;this.outputSchema=P;this.aiMetadata=M}static{o(this,"ITrigger")}},te=o(e=>{switch(e.type){case"WEBHOOK":return new Ze(e.name,e.displayName,e.description,e.requireAuth??!0,e.props,e.type,e.handshakeConfiguration??{strategy:"NONE"},e.onHandshake??(async()=>({status:200})),e.renewConfiguration??{strategy:"NONE"},e.onRenew??(async()=>Promise.resolve()),e.onEnable,e.onDisable,e.onStart??(async()=>Promise.resolve()),e.run,e.test??(()=>Promise.resolve([e.sampleData])),e.sampleData,e.test?"TEST_FUNCTION":"SIMULATION",e.outputSchema,e.aiMetadata);case"POLLING":return new Ze(e.name,e.displayName,e.description,e.requireAuth??!0,e.props,e.type,{strategy:"NONE"},async()=>({status:200}),{strategy:"NONE"},async()=>Promise.resolve(),e.onEnable,e.onDisable,e.onStart??(async()=>Promise.resolve()),e.run,e.test??(()=>Promise.resolve([e.sampleData])),e.sampleData,"TEST_FUNCTION",e.outputSchema,e.aiMetadata);case"MANUAL":return new Ze(e.name,e.displayName,e.description,e.requireAuth??!0,e.props,e.type,{strategy:"NONE"},async()=>({status:200}),{strategy:"NONE"},async()=>Promise.resolve(),e.onEnable,e.onDisable,e.onStart??(async()=>Promise.resolve()),e.run,e.test??(()=>Promise.resolve([e.sampleData])),e.sampleData,"TEST_FUNCTION",e.outputSchema,e.aiMetadata);case"APP_WEBHOOK":return new Ze(e.name,e.displayName,e.description,e.requireAuth??!0,e.props,e.type,{strategy:"NONE"},async()=>({status:200}),{strategy:"NONE"},async()=>Promise.resolve(),e.onEnable,e.onDisable,e.onStart??(async()=>Promise.resolve()),e.run,e.test??(()=>Promise.resolve([e.sampleData])),e.sampleData,ce(e.sampleData)&&ce(e.test)?"SIMULATION":"TEST_FUNCTION",e.outputSchema,e.aiMetadata)}},"createTrigger");var gi="2",Ft="0.82.0";var Mr=class{constructor(t,r,n,i,u,p,d,f,h=Ft,x,$=""){this.displayName=t;this.logoUrl=r;this.authors=n;this.events=i;this.categories=d;this.auth=f;this.minimumSupportedRelease=h;this.maximumSupportedRelease=x;this.description=$;this._actions={};this._triggers={};this.getContextInfo=o(()=>({version:gi}),"getContextInfo");(!ap(h)||sp(h,Ft))&&(this.minimumSupportedRelease=Ft),u.forEach(_=>this._actions[_.name]=_),p.forEach(_=>this._triggers[_.name]=_)}static{o(this,"Piece")}metadata(){return{displayName:this.displayName,logoUrl:this.logoUrl,actions:this._actions,triggers:this._triggers,categories:this.categories,description:this.description,authors:this.authors,auth:this.auth,minimumSupportedRelease:this.minimumSupportedRelease,maximumSupportedRelease:this.maximumSupportedRelease,contextInfo:this.getContextInfo?.()}}getAction(t){return this._actions[t]}getTrigger(t){return this._triggers[t]}actions(){return this._actions}triggers(){return this._triggers}},yi=o(e=>{if(e.auth&&Array.isArray(e.auth)&&!e.auth.every((r,n,i)=>n===i.findIndex(u=>u.type===r.type)))throw new Error("Auth properties must be unique by type");return new Mr(e.displayName,e.logoUrl,e.authors??[],e.events,e.actions,e.triggers,e.categories??[],e.auth,e.minimumSupportedRelease,e.maximumSupportedRelease,e.description)},"createPiece");function ap(e){return/^\d+\.\d+\.\d+$/.test(e)}o(ap,"isValidSimpleSemver");function sp(e,t){let[r,n,i]=e.split(".").map(Number),[u,p,d]=t.split(".").map(Number);return r!==u?r<u:n!==p?n<p:i<d}o(sp,"isSemverLessThan");var up=y(k(a(),k(a(),a()))),hi=c({id:y(a()),name:a(),displayName:a(),logoUrl:a(),description:a(),authors:R(a()),platformId:y(a()),directoryPath:y(a()),auth:y(N([Be,R(Be)])),version:a(),categories:y(R(C(je))),minimumSupportedRelease:y(a()),maximumSupportedRelease:y(a()),i18n:up}),cp=C(["human","ai","both"]),vi=c({description:y(a()),idempotent:y(B())}),xi=c({name:a(),displayName:a(),description:a(),props:Ur,requireAuth:B(),errorHandlingOptions:y(hr),outputSchema:y(Rt()),audience:y(cp),aiMetadata:y(vi)}),_i=c({name:a(),displayName:a(),description:a(),props:Ur,errorHandlingOptions:y(hr),type:C(ee),sampleData:w(),handshakeConfiguration:y(Rt()),renewConfiguration:y(fi),testStrategy:C(mt),outputSchema:y(Rt()),aiMetadata:y(vi)}),pp=c({...hi.shape,actions:k(a(),xi),triggers:k(a(),_i)}),lp=c({...hi.shape,actions:Q(),triggers:Q(),suggestedActions:y(R(_i)),suggestedTriggers:y(R(xi))}),Pi=c({projectUsage:Q(),tags:y(R(a())),pieceType:C(Me),packageType:C(pt),platformId:y(a()),archiveId:y(a())}),jE=c({...pp.shape,...Pi.shape}),LE=c({...lp.shape,...Pi.shape}),FE=c({name:a(),version:a()});var dp=Re(require("path")),mp=Re(require("fs/promises"));var X=Cr.SecretText({displayName:"API Key",required:!0,description:`
3
+ 1. Go to your Qwilr account settings.
4
+ 2. Navigate to API Settings.
5
+ 3. Copy your access token.`});var Bt=class{constructor(t,r){this.baseUrl=t;this.authenticationConverter=r}static{o(this,"BaseHttpClient")}getUrl(t){let r=new URL(`${this.baseUrl}${t.url}`),n=`${r.origin}${r.pathname}`,i=new URLSearchParams;return r.searchParams.forEach((u,p)=>{i.append(p,u)}),{urlWithoutQueryParams:n,queryParams:i}}getHeaders(t){let r={Accept:"application/json"};if(t.authentication&&this.populateAuthentication(t.authentication,r),t.body)switch(t.headers?.["Content-Type"]){case"text/csv":r["Content-Type"]="text/csv";break;default:r["Content-Type"]="application/json";break}return t.headers&&(r={...r,...t.headers}),r}populateAuthentication(t,r){this.authenticationConverter.convert(t,r)}};var Zt=class{static{o(this,"DelegatingAuthenticationConverter")}constructor(t=new jr,r=new Lr){this.converters={BEARER_TOKEN:t,BASIC:r}}convert(t,r){return this.converters[t.type].convert(t,r)}},jr=class{static{o(this,"BearerTokenAuthenticationConverter")}convert(t,r){return r.Authorization=`Bearer ${t.token}`,r}},Lr=class{static{o(this,"BasicTokenAuthenticationConverter")}convert(t,r){let n=`${t.username}:${t.password}`,i=Buffer.from(n).toString("base64");return r.Authorization=`Basic ${i}`,r}};var Vt=class extends Error{constructor(r,n){let i=n.status||500,u=Buffer.isBuffer(n.responseBody)?n.responseBody.toString():n.responseBody;super(JSON.stringify({response:{status:i,body:u},request:{body:r}}));this.requestBody=r;this.status=i,this.responseBody=u}static{o(this,"HttpError")}errorMessage(){return{response:{status:this.status,body:this.responseBody},request:{body:this.requestBody}}}get response(){return{status:this.status,body:this.responseBody}}get request(){return{body:this.requestBody}}};var Ht=class extends Bt{static{o(this,"FetchHttpClient")}constructor(t="",r=new Zt){super(t,r)}async sendRequest(t,r){process.env.NODE_TLS_REJECT_UNAUTHORIZED="0";let{urlWithoutQueryParams:n,queryParams:i}=this.getUrl(t),u=this.getHeaders(t),p=t.queryParams??{};for(let[M,ne]of Object.entries(p))i.append(M,ne);let d=i.toString(),f=d?`${n}?${d}`:n,h=t.responseType??"json",x=t.followRedirects??!0,$=t.retries??0,{body:_,extraHeaders:s,isStream:l}=fp(t.body,u),g=yp({...u,...s}),m=await gp(async()=>{let M=new AbortController,ne=t.timeout&&t.timeout>0?setTimeout(()=>M.abort(),t.timeout):void 0;try{let se={method:t.method.toString(),headers:g,body:_,redirect:x?"follow":"manual",signal:M.signal};return l&&(se.duplex="half"),r?.dispatcher!==void 0&&(se.dispatcher=r.dispatcher),await fetch(f,se)}finally{ne!==void 0&&clearTimeout(ne)}},$),v=x?300:400;if(m.status<200||m.status>=v){let M=await bi(m,h),ne=new Vt(t.body,{status:m.status,responseBody:M});throw console.error("[HttpClient#(sanitized error message)] Request failed:",ne),ne}let P=await bi(m,h);return{status:m.status,headers:hp(m.headers),body:P}}};function fp(e,t){return xp(e)?{body:void 0,extraHeaders:{},isStream:!1}:vp(e)?{body:e,extraHeaders:e.getHeaders(),isStream:!0}:typeof e=="string"||Buffer.isBuffer(e)||e instanceof URLSearchParams||e instanceof ArrayBuffer||typeof FormData<"u"&&e instanceof FormData||typeof Blob<"u"&&e instanceof Blob?{body:e,extraHeaders:{},isStream:!1}:(t["Content-Type"]??t["content-type"]??"").includes("application/x-www-form-urlencoded")?{body:new URLSearchParams(e).toString(),extraHeaders:{},isStream:!1}:{body:JSON.stringify(e),extraHeaders:{},isStream:!1}}o(fp,"serializeBody");async function bi(e,t){switch(t){case"arraybuffer":return Buffer.from(await e.arrayBuffer());case"blob":return await e.blob();case"text":return await e.text();case"json":default:{let r=await e.text();if(r.length===0)return;try{return JSON.parse(r)}catch{return r}}}}o(bi,"parseResponseBody");async function gp(e,t){let r;for(let n=0;n<=t;n++)try{let i=await e();if(i.status>=500&&n<t){await Ti(n);continue}return i}catch(i){if(r=i,n<t){await Ti(n);continue}throw i}throw r}o(gp,"sendWithRetries");function Ti(e){let t=Math.min(1e3*2**e,3e4);return new Promise(r=>setTimeout(r,t))}o(Ti,"backoff");function yp(e){let t={};for(let[r,n]of Object.entries(e))n!==void 0&&(t[r]=Array.isArray(n)?n.join(", "):n);return t}o(yp,"normalizeHeaders");function hp(e){let t={};return e.forEach((r,n)=>{t[n]=r}),t}o(hp,"toHttpHeaders");function vp(e){return typeof e=="object"&&e!==null&&typeof e.getHeaders=="function"&&typeof e.pipe=="function"}o(vp,"isNodeFormData");function xp(e){return e==null}o(xp,"isNil");var Z=new Ht;var pe=(p=>(p.GET="GET",p.POST="POST",p.PATCH="PATCH",p.PUT="PUT",p.DELETE="DELETE",p.HEAD="HEAD",p))(pe||{});var ad=Re(require("fs")),zs=Re(As());var sd={"application/json":"json","application/pdf":"pdf","application/xml":"xml","text/xml":"xml","application/zip":"zip","application/gzip":"gz","application/x-tar":"tar","application/octet-stream":"bin","application/msword":"doc","application/vnd.openxmlformats-officedocument.wordprocessingml.document":"docx","application/vnd.ms-excel":"xls","application/vnd.openxmlformats-officedocument.spreadsheetml.sheet":"xlsx","application/vnd.ms-powerpoint":"ppt","application/vnd.openxmlformats-officedocument.presentationml.presentation":"pptx","application/rtf":"rtf","application/javascript":"js","application/x-www-form-urlencoded":"bin","text/plain":"txt","text/html":"html","text/css":"css","text/csv":"csv","text/calendar":"ics","text/markdown":"md","image/png":"png","image/jpeg":"jpeg","image/jpg":"jpg","image/gif":"gif","image/webp":"webp","image/svg+xml":"svg","image/bmp":"bmp","image/tiff":"tiff","image/x-icon":"ico","image/vnd.microsoft.icon":"ico","image/heic":"heic","audio/mpeg":"mp3","audio/mp4":"m4a","audio/wav":"wav","audio/x-wav":"wav","audio/ogg":"ogg","audio/webm":"weba","video/mp4":"mp4","video/mpeg":"mpeg","video/webm":"webm","video/quicktime":"mov","video/x-msvideo":"avi","font/woff":"woff","font/woff2":"woff2","font/ttf":"ttf","font/otf":"otf"};function ud(e){let t=e.split(";")[0].trim().toLowerCase();return sd[t]??""}o(ud,"contentTypeToExtension");var cd=o(({baseUrl:e,relativePath:t})=>{let r=e.endsWith("/")?e:`${e}/`,n=t.startsWith("/")?t.slice(1):t;return`${r}${n}`},"joinBaseUrlWithRelativePath"),pd=o((e,t)=>{let r="https://api.example.com";try{let n=t?e(t):void 0;return(n?.endsWith("/")?n.slice(0,-1):n)??r}catch{return r}},"getBaseUrlForDescription");function ws({auth:e,baseUrl:t,authMapping:r,description:n,displayName:i,name:u,props:p,extraProps:d,authLocation:f="headers"}){return Nt({audience:"human",name:u||"custom_api_call",displayName:i||"Custom API Call",description:n||"Make a custom API call to a specific endpoint",auth:e,requireAuth:!!e,props:{url:F.DynamicProperties({auth:e,displayName:"",required:!0,refreshers:[],props:o(async({auth:h})=>({url:F.ShortText({displayName:"URL",description:`You can either use the full URL or the relative path to the base URL
6
+ i.e ${pd(t,h)}/resource or /resource`,required:!0,defaultValue:h?t(h):"",...p?.url??{}})}),"props")}),method:F.StaticDropdown({displayName:"Method",required:!0,options:{options:Object.values(pe).map(h=>({label:h,value:h}))},...p?.method??{}}),headers:F.Object({displayName:"Headers",description:"Authorization headers are injected automatically from your connection.",required:!0,...p?.headers??{}}),queryParams:F.Object({displayName:"Query Parameters",required:!0,...p?.queryParams??{}}),body_type:F.StaticDropdown({displayName:"Body Type",required:!1,defaultValue:"none",options:{disabled:!1,options:[{label:"None",value:"none"},{label:"JSON",value:"json"},{label:"Form Data",value:"form_data"},{label:"Raw",value:"raw"}]}}),body:F.DynamicProperties({auth:e,displayName:"Body",refreshers:["body_type"],required:!1,props:o(async({body_type:h})=>{if(!h)return{};let x=h,$={};switch(x){case"none":break;case"json":$.data=F.Json({displayName:"JSON Body",required:!0,...p?.body??{}});break;case"raw":$.data=F.LongText({displayName:"Raw Body",required:!0});break;case"form_data":$.data=F.Array({displayName:"Form Data",required:!0,properties:{fieldName:F.ShortText({displayName:"Field Name",required:!0}),fieldType:F.StaticDropdown({displayName:"Field Type",required:!0,options:{disabled:!1,options:[{label:"Text",value:"text"},{label:"File",value:"file"}]}}),textFieldValue:F.LongText({displayName:"Text Field Value",required:!1}),fileFieldValue:F.File({displayName:"File Field Value",required:!1})}});break}return $},"props")}),response_is_binary:F.Checkbox({displayName:"Response is Binary ?",description:"Enable for files like PDFs, images, etc.",required:!1,defaultValue:!1}),failsafe:F.Checkbox({displayName:"No Error on Failure",required:!1,...p?.failsafe??{}}),timeout:F.Number({displayName:"Timeout (in seconds)",required:!1,...p?.timeout??{}}),followRedirects:F.Checkbox({displayName:"Follow redirects",required:!1,defaultValue:!1}),...d},run:o(async h=>{let{method:x,url:$,headers:_,queryParams:s,body:l,body_type:g,failsafe:m,timeout:v,response_is_binary:P,followRedirects:M}=h.propsValue;Mt(x,"Method"),Mt($,"URL");let ne=ce(r)?{}:await r(h.auth,h.propsValue),se=$.url,Ke=se.startsWith("http://")||se.startsWith("https://")?se:cd({baseUrl:t(h.auth),relativePath:se}),Ae={method:x,url:Ke,headers:{..._??{},...f==="headers"||!ce(f)?ne:{}},queryParams:{...f==="queryParams"?ne:{},...s??{}},timeout:v?v*1e3:0,followRedirects:M};if(P&&(Ae.responseType="arraybuffer"),l)if(g&&g!=="none"){let fe=l.data;if(g==="form_data"){let js=fe,_t=new zs.default;for(let{fieldName:un,fieldType:cn,textFieldValue:pn,fileFieldValue:tr}of js)cn==="text"&&!ft(pn)?_t.append(un,pn):cn==="file"&&!ft(tr)&&_t.append(un,tr.data,{filename:tr?.filename});Ae.body=_t,Ae.headers={...Ae.headers,..._t.getHeaders()}}else Ae.body=fe}else g||(Ae.body=l);try{let fe=await Z.sendRequest(Ae);return await ld(h.files,fe.body,fe.status,fe.headers,P)}catch(fe){if(m)return fe.errorMessage();throw fe}},"run")})}o(ws,"createCustomApiCallAction");var ld=o(async(e,t,r,n,i)=>{let u;if(i&&dd(t)){let p=Array.isArray(n?.["content-type"])?n["content-type"][0]:n?.["content-type"],d=ud(p??"")||"txt",f;t instanceof ArrayBuffer?f=Buffer.from(new Uint8Array(t)):Buffer.isBuffer(t)?f=t:f=Buffer.from(t),u=await e.write({fileName:`output.${d}`,data:f})}else u=t;return{status:r,headers:n,body:u}},"handleBinaryResponse"),dd=o(e=>e instanceof ArrayBuffer||Buffer.isBuffer(e),"isBinaryBody");var ks=Nt({name:"create_page",displayName:"Create Page",description:"Creates a new Qwilr page from saved blocks or template.",audience:"both",aiMetadata:{description:"Creates a new Qwilr sales/proposal page from an existing template (template ID required), optionally publishing it live or leaving it as a draft, and applying token substitutions, tags, owner, and accept-block settings. Use to programmatically generate a personalized proposal or quote from a template. Not idempotent: each call creates a separate page.",idempotent:!1},auth:X,props:{templateId:F.ShortText({displayName:"Template ID",description:"ID of the template to use for the page",required:!0}),name:F.ShortText({displayName:"Page Name",description:"Title of the page, visible as the browser page title",required:!1}),published:F.Checkbox({displayName:"Publish Page",description:"Whether the page is publicly available; false means the page will be in Draft status",required:!1,defaultValue:!1}),ownerId:F.ShortText({displayName:"Owner ID",description:"ID of the user that should own the page. If not specified, the owner of the access token will be the owner of the page.",required:!1}),tags:F.Array({displayName:"Tags",description:"The tags for your page. Tags are case-sensitive.",required:!1}),metadata:F.Json({displayName:"Metadata",description:"Data you provide, that will be returned as part of all Webhooks.",required:!1}),substitutions:F.Json({displayName:"Substitutions",description:"Mapping of token API reference keys to substitution values used throughout the page.",required:!1}),acceptSettings:F.Object({displayName:"Accept Settings",description:"Configures settings for the accept block in the template being used. Only relevant if you have an accept block.",required:!1})},async run(e){let{templateId:t,name:r,published:n,ownerId:i,tags:u,metadata:p,substitutions:d,acceptSettings:f}=e.propsValue,h=e.auth,x={templateId:t};return r!==void 0&&(x.name=r),n!==void 0&&(x.published=n),i!==void 0&&(x.ownerId=i),u&&u.length>0&&(x.tags=u),p!==void 0&&(x.metadata=p),d!==void 0&&(x.substitutions=d),f!==void 0&&(x.acceptSettings=f),(await Z.sendRequest({method:"POST",url:"https://api.qwilr.com/v1/pages",headers:{Authorization:`Bearer ${h}`,"Content-Type":"application/json"},body:x})).body}});var md=o(async(e,t,r)=>(await Z.sendRequest({method:"POST",url:"https://api.qwilr.com/v1/webhooks",headers:{Authorization:`Bearer ${e}`,"Content-Type":"application/json"},body:{event:t,targetUrl:r}})).body,"subscribeWebhook"),fd=o(async(e,t)=>{await Z.sendRequest({method:"DELETE",url:`https://api.qwilr.com/v1/webhooks/${t}`,headers:{Authorization:`Bearer ${e}`}})},"unsubscribeWebhook"),Os=te({auth:X,name:"page_accepted",displayName:"Page Accepted",description:"Triggers when a Qwilr page is accepted",aiMetadata:{description:"Fires when a recipient fully accepts a Qwilr page (all accept blocks signed off), signaling the proposal or quote has been agreed to. Use to kick off downstream deal-won workflows such as invoicing or CRM updates."},type:"WEBHOOK",props:{},async onEnable(e){let t=await md(e.auth.secret_text,"pageAccepted",e.webhookUrl);await e.store?.put("_page_accepted_trigger",{subscriptionId:t.id})},async onDisable(e){let t=await e.store?.get("_page_accepted_trigger");t!=null&&await fd(e.auth.secret_text,t.subscriptionId)},async run(e){return[e.payload.body]},sampleData:{event:"pageAccepted",idempotencyKey:"b1c51b5b4844a81f7c3745002dbbd871fdda6cabe019961bcc79f972d924a2b0",page:{id:"6ee0f841f3cc8900090d82dc",metadata:{}}}});var gd=o(async(e,t,r)=>(await Z.sendRequest({method:"POST",url:"https://api.qwilr.com/v1/webhooks",headers:{Authorization:`Bearer ${e}`,"Content-Type":"application/json"},body:{event:t,targetUrl:r}})).body,"subscribeWebhook"),yd=o(async(e,t)=>{await Z.sendRequest({method:"DELETE",url:`https://api.qwilr.com/v1/webhooks/${t}`,headers:{Authorization:`Bearer ${e}`}})},"unsubscribeWebhook"),Rs=te({auth:X,name:"page_partially_accepted",displayName:"Page Partially Accepted",description:"Triggers when a Qwilr page is partially accepted",aiMetadata:{description:"Fires when a recipient partially accepts a Qwilr page (some but not all accept blocks completed), indicating partial agreement on a multi-option proposal. Use to track in-progress deals or nudge for full acceptance."},type:"WEBHOOK",props:{},async onEnable(e){let t=await gd(e.auth.secret_text,"pagePartiallyAccepted",e.webhookUrl);await e.store?.put("_page_partially_accepted_trigger",{subscriptionId:t.id})},async onDisable(e){let t=await e.store?.get("_page_partially_accepted_trigger");t!=null&&await yd(e.auth.secret_text,t.subscriptionId)},async run(e){return[e.payload.body]},sampleData:{event:"pagePartiallyAccepted",idempotencyKey:"b1c51b5b4844a81f7c3745002dbbd871fdda6cabe019961bcc79f972d924a2b0",page:{id:"6ee0f841f3cc8900090d82dc",metadata:{}}}});var hd=o(async(e,t,r)=>(await Z.sendRequest({method:"POST",url:"https://api.qwilr.com/v1/webhooks",headers:{Authorization:`Bearer ${e}`,"Content-Type":"application/json"},body:{event:t,targetUrl:r}})).body,"subscribeWebhook"),vd=o(async(e,t)=>{await Z.sendRequest({method:"DELETE",url:`https://api.qwilr.com/v1/webhooks/${t}`,headers:{Authorization:`Bearer ${e}`}})},"unsubscribeWebhook"),Ns=te({auth:X,name:"page_preview_accepted",displayName:"Page Preview Accepted",description:"Triggers when a Qwilr page preview is accepted",aiMetadata:{description:"Fires when a page is accepted while in preview (test) mode rather than as a live recipient acceptance. Use to validate acceptance workflows during testing without reacting to a real signed proposal."},type:"WEBHOOK",props:{},async onEnable(e){let t=await hd(e.auth.secret_text,"pagePreviewAccepted",e.webhookUrl);await e.store?.put("_page_preview_accepted_trigger",{subscriptionId:t.id})},async onDisable(e){let t=await e.store?.get("_page_preview_accepted_trigger");t!=null&&await vd(e.auth.secret_text,t.subscriptionId)},async run(e){return[e.payload.body]},sampleData:{event:"pagePreviewAccepted",idempotencyKey:"b1c51b5b4844a81f7c3745002dbbd871fdda6cabe019961bcc79f972d924a2b0",page:{id:"6ee0f841f3cc8900090d82dc",metadata:{}}}});var xd=o(async(e,t,r)=>(await Z.sendRequest({method:"POST",url:"https://api.qwilr.com/v1/webhooks",headers:{Authorization:`Bearer ${e}`,"Content-Type":"application/json"},body:{event:t,targetUrl:r}})).body,"subscribeWebhook"),_d=o(async(e,t)=>{await Z.sendRequest({method:"DELETE",url:`https://api.qwilr.com/v1/webhooks/${t}`,headers:{Authorization:`Bearer ${e}`}})},"unsubscribeWebhook"),Ds=te({auth:X,name:"page_viewed",displayName:"Page Viewed",description:"Triggers when a Qwilr page is viewed",aiMetadata:{description:"Fires every time a Qwilr page is opened by a viewer, including repeat views. Use to track engagement on a sent proposal; for only the very first open use the Page First Viewed trigger instead."},type:"WEBHOOK",props:{},async onEnable(e){let t=await xd(e.auth.secret_text,"pageViewed",e.webhookUrl);await e.store?.put("_page_viewed_trigger",{subscriptionId:t.id})},async onDisable(e){let t=await e.store?.get("_page_viewed_trigger");t!=null&&await _d(e.auth.secret_text,t.subscriptionId)},async run(e){return[e.payload.body]},sampleData:{event:"pageViewed",idempotencyKey:"b1c51b5b4844a81f7c3745002dbbd871fdda6cabe019961bcc79f972d924a2b0",page:{id:"6ee0f841f3cc8900090d82dc",metadata:{}}}});var Pd=o(async(e,t,r)=>(await Z.sendRequest({method:"POST",url:"https://api.qwilr.com/v1/webhooks",headers:{Authorization:`Bearer ${e}`,"Content-Type":"application/json"},body:{event:t,targetUrl:r}})).body,"subscribeWebhook"),bd=o(async(e,t)=>{await Z.sendRequest({method:"DELETE",url:`https://api.qwilr.com/v1/webhooks/${t}`,headers:{Authorization:`Bearer ${e}`}})},"unsubscribeWebhook"),Cs=te({auth:X,name:"page_first_viewed",displayName:"Page First Viewed",description:"Triggers when a Qwilr page is viewed for the first time",aiMetadata:{description:"Fires only on the first time a Qwilr page is opened by a viewer, marking initial engagement with a sent proposal. Use to react once to a recipient first opening the document; for all subsequent opens use the Page Viewed trigger."},type:"WEBHOOK",props:{},async onEnable(e){let t=await Pd(e.auth.secret_text,"pageFirstViewed",e.webhookUrl);await e.store?.put("_page_first_viewed_trigger",{subscriptionId:t.id})},async onDisable(e){let t=await e.store?.get("_page_first_viewed_trigger");t!=null&&await bd(e.auth.secret_text,t.subscriptionId)},async run(e){return[e.payload.body]},sampleData:{event:"pageFirstViewed",idempotencyKey:"b1c51b5b4844a81f7c3745002dbbd871fdda6cabe019961bcc79f972d924a2b0",page:{id:"6ee0f841f3cc8900090d82dc",metadata:{}}}});var Td=o(async(e,t,r)=>(await Z.sendRequest({method:"POST",url:"https://api.qwilr.com/v1/webhooks",headers:{Authorization:`Bearer ${e}`,"Content-Type":"application/json"},body:{event:t,targetUrl:r}})).body,"subscribeWebhook"),Id=o(async(e,t)=>{await Z.sendRequest({method:"DELETE",url:`https://api.qwilr.com/v1/webhooks/${t}`,headers:{Authorization:`Bearer ${e}`}})},"unsubscribeWebhook"),Us=te({auth:X,name:"page_set_live",displayName:"Page Set Live",description:"Triggers when a Qwilr page is set to live",aiMetadata:{description:"Fires when a Qwilr page is published and set to live (made publicly accessible), transitioning out of draft status. Use to react when a proposal becomes ready to share with a recipient."},type:"WEBHOOK",props:{},async onEnable(e){let t=await Td(e.auth.secret_text,"pageSetLive",e.webhookUrl);await e.store?.put("_page_set_live_trigger",{subscriptionId:t.id})},async onDisable(e){let t=await e.store?.get("_page_set_live_trigger");t!=null&&await Id(e.auth.secret_text,t.subscriptionId)},async run(e){return[e.payload.body]},sampleData:{event:"pageSetLive",idempotencyKey:"b1c51b5b4844a81f7c3745002dbbd871fdda6cabe019961bcc79f972d924a2b0",page:{id:"6ee0f841f3cc8900090d82dc",metadata:{}}}});var $d=o(async(e,t,r)=>(await Z.sendRequest({method:"POST",url:"https://api.qwilr.com/v1/webhooks",headers:{Authorization:`Bearer ${e}`,"Content-Type":"application/json"},body:{event:t,targetUrl:r}})).body,"subscribeWebhook"),Ed=o(async(e,t)=>{await Z.sendRequest({method:"DELETE",url:`https://api.qwilr.com/v1/webhooks/${t}`,headers:{Authorization:`Bearer ${e}`}})},"unsubscribeWebhook"),Ms=te({auth:X,name:"page_revived_live",displayName:"Page Revived Live",description:"Triggers when a Qwilr page is revived to live status",aiMetadata:{description:"Fires when a previously disabled or expired Qwilr page is revived back to live status, making it accessible again. Use to react when an old proposal is reactivated for a recipient."},type:"WEBHOOK",props:{},async onEnable(e){let t=await $d(e.auth.secret_text,"pageRevivedLive",e.webhookUrl);await e.store?.put("_page_revived_live_trigger",{subscriptionId:t.id})},async onDisable(e){let t=await e.store?.get("_page_revived_live_trigger");t!=null&&await Ed(e.auth.secret_text,t.subscriptionId)},async run(e){return[e.payload.body]},sampleData:{event:"pageRevivedLive",idempotencyKey:"b1c51b5b4844a81f7c3745002dbbd871fdda6cabe019961bcc79f972d924a2b0",page:{id:"6ee0f841f3cc8900090d82dc",metadata:{}}}});var Sd=yi({displayName:"Qwilr",description:"Create beautiful, interactive sales documents and proposals with Qwilr. Automate page creation, track views, and handle acceptance events.",auth:X,minimumSupportedRelease:"0.36.1",logoUrl:"https://cdn.activepieces.com/pieces/qwilr.png",authors:["onyedikachi-david"],categories:["SALES_AND_CRM","CONTENT_AND_FILES"],actions:[ks,ws({auth:X,baseUrl:o(()=>"https://api.qwilr.com/v1","baseUrl"),authMapping:o(async e=>({Authorization:`Bearer ${e}`}),"authMapping")})],triggers:[Os,Rs,Ns,Ds,Cs,Us,Ms]});0&&(module.exports={qwilr});
7
+ /*! Bundled license information:
8
+
9
+ mime-types/index.js:
10
+ (*!
11
+ * mime-types
12
+ * Copyright(c) 2014 Jonathan Ong
13
+ * Copyright(c) 2015 Douglas Christopher Wilson
14
+ * MIT Licensed
15
+ *)
16
+ */
package/README.md DELETED
@@ -1,7 +0,0 @@
1
- # pieces-qwilr
2
-
3
- This library was generated with [Nx](https://nx.dev).
4
-
5
- ## Building
6
-
7
- Run `nx build pieces-qwilr` to build the library.
package/src/index.d.ts DELETED
@@ -1 +0,0 @@
1
- export declare const qwilr: import("@activepieces/pieces-framework").Piece<import("@activepieces/pieces-framework").SecretTextProperty<true>>;
package/src/index.js.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../packages/pieces/community/qwilr/src/index.ts"],"names":[],"mappings":";;;;AAAA,qEAA6D;AAC7D,iDAAqD;AACrD,4CAA8C;AAC9C,2DAA6D;AAC7D,+DAAwE;AACxE,gEAAmE;AACnE,oFAAsF;AACtF,gFAAkF;AAClF,4DAA+D;AAC/D,wEAA0E;AAC1E,gEAAkE;AAClE,wEAA0E;AAE7D,QAAA,KAAK,GAAG,IAAA,8BAAW,EAAC;IAC/B,WAAW,EAAE,OAAO;IACpB,WAAW,EAAE,4IAA4I;IACzJ,IAAI,EAAE,gBAAS;IACf,uBAAuB,EAAE,QAAQ;IACjC,OAAO,EAAE,+CAA+C;IACxD,OAAO,EAAE,CAAC,mBAAmB,CAAC;IAC9B,UAAU,EAAE,CAAC,sBAAa,CAAC,aAAa,EAAE,sBAAa,CAAC,iBAAiB,CAAC;IAC1E,OAAO,EAAE;QACP,8BAAgB;QAChB,IAAA,yCAAyB,EAAC;YACxB,IAAI,EAAE,gBAAS;YACf,OAAO,EAAE,GAAG,EAAE,CAAC,0BAA0B;YACzC,WAAW,EAAE,CAAO,IAAI,EAAE,EAAE;gBAC1B,OAAO;oBACL,eAAe,EAAE,UAAU,IAAI,EAAE;iBAClC,CAAA;YACH,CAAC,CAAA;SACF,CAAC;KACH;IACD,QAAQ,EAAE;QACR,mCAAmB;QACnB,sDAA4B;QAC5B,kDAA0B;QAC1B,+BAAiB;QACjB,0CAAsB;QACtB,kCAAkB;QAClB,0CAAsB;KACvB;CACF,CAAC,CAAC"}
@@ -1,10 +0,0 @@
1
- export declare const createPageAction: import("@activepieces/pieces-framework").IAction<import("@activepieces/pieces-framework").SecretTextProperty<true>, {
2
- templateId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
3
- name: import("@activepieces/pieces-framework").ShortTextProperty<false>;
4
- published: import("@activepieces/pieces-framework").CheckboxProperty<false>;
5
- ownerId: import("@activepieces/pieces-framework").ShortTextProperty<false>;
6
- tags: import("@activepieces/pieces-framework").ArrayProperty<false>;
7
- metadata: import("@activepieces/pieces-framework").JsonProperty<false>;
8
- substitutions: import("@activepieces/pieces-framework").JsonProperty<false>;
9
- acceptSettings: import("@activepieces/pieces-framework").ObjectProperty<false>;
10
- }>;
@@ -1,90 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.createPageAction = void 0;
4
- const tslib_1 = require("tslib");
5
- const pieces_framework_1 = require("@activepieces/pieces-framework");
6
- const pieces_common_1 = require("@activepieces/pieces-common");
7
- const auth_1 = require("../common/auth");
8
- exports.createPageAction = (0, pieces_framework_1.createAction)({
9
- name: 'create_page',
10
- displayName: 'Create Page',
11
- description: 'Creates a new Qwilr page from saved blocks or template.',
12
- auth: auth_1.qwilrAuth,
13
- props: {
14
- templateId: pieces_framework_1.Property.ShortText({
15
- displayName: 'Template ID',
16
- description: 'ID of the template to use for the page',
17
- required: true
18
- }),
19
- name: pieces_framework_1.Property.ShortText({
20
- displayName: 'Page Name',
21
- description: 'Title of the page, visible as the browser page title',
22
- required: false
23
- }),
24
- published: pieces_framework_1.Property.Checkbox({
25
- displayName: 'Publish Page',
26
- description: 'Whether the page is publicly available; false means the page will be in Draft status',
27
- required: false,
28
- defaultValue: false
29
- }),
30
- ownerId: pieces_framework_1.Property.ShortText({
31
- displayName: 'Owner ID',
32
- description: 'ID of the user that should own the page. If not specified, the owner of the access token will be the owner of the page.',
33
- required: false
34
- }),
35
- tags: pieces_framework_1.Property.Array({
36
- displayName: 'Tags',
37
- description: 'The tags for your page. Tags are case-sensitive.',
38
- required: false
39
- }),
40
- metadata: pieces_framework_1.Property.Json({
41
- displayName: 'Metadata',
42
- description: 'Data you provide, that will be returned as part of all Webhooks.',
43
- required: false
44
- }),
45
- substitutions: pieces_framework_1.Property.Json({
46
- displayName: 'Substitutions',
47
- description: 'Mapping of token API reference keys to substitution values used throughout the page.',
48
- required: false
49
- }),
50
- acceptSettings: pieces_framework_1.Property.Object({
51
- displayName: 'Accept Settings',
52
- description: 'Configures settings for the accept block in the template being used. Only relevant if you have an accept block.',
53
- required: false
54
- })
55
- },
56
- run(context) {
57
- return tslib_1.__awaiter(this, void 0, void 0, function* () {
58
- const { templateId, name, published, ownerId, tags, metadata, substitutions, acceptSettings } = context.propsValue;
59
- const auth = context.auth;
60
- const requestBody = {
61
- templateId
62
- };
63
- if (name !== undefined)
64
- requestBody.name = name;
65
- if (published !== undefined)
66
- requestBody.published = published;
67
- if (ownerId !== undefined)
68
- requestBody.ownerId = ownerId;
69
- if (tags && tags.length > 0)
70
- requestBody.tags = tags;
71
- if (metadata !== undefined)
72
- requestBody.metadata = metadata;
73
- if (substitutions !== undefined)
74
- requestBody.substitutions = substitutions;
75
- if (acceptSettings !== undefined)
76
- requestBody.acceptSettings = acceptSettings;
77
- const response = yield pieces_common_1.httpClient.sendRequest({
78
- method: pieces_common_1.HttpMethod.POST,
79
- url: 'https://api.qwilr.com/v1/pages',
80
- headers: {
81
- 'Authorization': `Bearer ${auth}`,
82
- 'Content-Type': 'application/json'
83
- },
84
- body: requestBody
85
- });
86
- return response.body;
87
- });
88
- }
89
- });
90
- //# sourceMappingURL=create-page.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"create-page.js","sourceRoot":"","sources":["../../../../../../../../packages/pieces/community/qwilr/src/lib/actions/create-page.ts"],"names":[],"mappings":";;;;AAAA,qEAAwE;AACxE,+DAAqE;AACrE,yCAA2C;AAE9B,QAAA,gBAAgB,GAAG,IAAA,+BAAY,EAAC;IACzC,IAAI,EAAE,aAAa;IACnB,WAAW,EAAE,aAAa;IAC1B,WAAW,EAAE,yDAAyD;IACtE,IAAI,EAAE,gBAAS;IACf,KAAK,EAAE;QACH,UAAU,EAAE,2BAAQ,CAAC,SAAS,CAAC;YAC3B,WAAW,EAAE,aAAa;YAC1B,WAAW,EAAE,wCAAwC;YACrD,QAAQ,EAAE,IAAI;SACjB,CAAC;QACF,IAAI,EAAE,2BAAQ,CAAC,SAAS,CAAC;YACrB,WAAW,EAAE,WAAW;YACxB,WAAW,EAAE,sDAAsD;YACnE,QAAQ,EAAE,KAAK;SAClB,CAAC;QACF,SAAS,EAAE,2BAAQ,CAAC,QAAQ,CAAC;YACzB,WAAW,EAAE,cAAc;YAC3B,WAAW,EAAE,sFAAsF;YACnG,QAAQ,EAAE,KAAK;YACf,YAAY,EAAE,KAAK;SACtB,CAAC;QACF,OAAO,EAAE,2BAAQ,CAAC,SAAS,CAAC;YACxB,WAAW,EAAE,UAAU;YACvB,WAAW,EAAE,yHAAyH;YACtI,QAAQ,EAAE,KAAK;SAClB,CAAC;QACF,IAAI,EAAE,2BAAQ,CAAC,KAAK,CAAC;YACjB,WAAW,EAAE,MAAM;YACnB,WAAW,EAAE,kDAAkD;YAC/D,QAAQ,EAAE,KAAK;SAClB,CAAC;QACF,QAAQ,EAAE,2BAAQ,CAAC,IAAI,CAAC;YACpB,WAAW,EAAE,UAAU;YACvB,WAAW,EAAE,kEAAkE;YAC/E,QAAQ,EAAE,KAAK;SAClB,CAAC;QACF,aAAa,EAAE,2BAAQ,CAAC,IAAI,CAAC;YACzB,WAAW,EAAE,eAAe;YAC5B,WAAW,EAAE,sFAAsF;YACnG,QAAQ,EAAE,KAAK;SAClB,CAAC;QACF,cAAc,EAAE,2BAAQ,CAAC,MAAM,CAAC;YAC5B,WAAW,EAAE,iBAAiB;YAC9B,WAAW,EAAE,iHAAiH;YAC9H,QAAQ,EAAE,KAAK;SAClB,CAAC;KACL;IACK,GAAG,CAAC,OAAO;;YACb,MAAM,EAAE,UAAU,EAAE,IAAI,EAAE,SAAS,EAAE,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,aAAa,EAAE,cAAc,EAAE,GAAG,OAAO,CAAC,UAAU,CAAC;YACnH,MAAM,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;YAE1B,MAAM,WAAW,GAAQ;gBACrB,UAAU;aACb,CAAC;YAEF,IAAI,IAAI,KAAK,SAAS;gBAAE,WAAW,CAAC,IAAI,GAAG,IAAI,CAAC;YAChD,IAAI,SAAS,KAAK,SAAS;gBAAE,WAAW,CAAC,SAAS,GAAG,SAAS,CAAC;YAC/D,IAAI,OAAO,KAAK,SAAS;gBAAE,WAAW,CAAC,OAAO,GAAG,OAAO,CAAC;YACzD,IAAI,IAAI,IAAI,IAAI,CAAC,MAAM,GAAG,CAAC;gBAAE,WAAW,CAAC,IAAI,GAAG,IAAI,CAAC;YACrD,IAAI,QAAQ,KAAK,SAAS;gBAAE,WAAW,CAAC,QAAQ,GAAG,QAAQ,CAAC;YAC5D,IAAI,aAAa,KAAK,SAAS;gBAAE,WAAW,CAAC,aAAa,GAAG,aAAa,CAAC;YAC3E,IAAI,cAAc,KAAK,SAAS;gBAAE,WAAW,CAAC,cAAc,GAAG,cAAc,CAAC;YAE9E,MAAM,QAAQ,GAAG,MAAM,0BAAU,CAAC,WAAW,CAAC;gBAC1C,MAAM,EAAE,0BAAU,CAAC,IAAI;gBACvB,GAAG,EAAE,gCAAgC;gBACrC,OAAO,EAAE;oBACL,eAAe,EAAE,UAAU,IAAI,EAAE;oBACjC,cAAc,EAAE,kBAAkB;iBACrC;gBACD,IAAI,EAAE,WAAW;aACpB,CAAC,CAAC;YAEH,OAAO,QAAQ,CAAC,IAAI,CAAC;QACzB,CAAC;KAAA;CACJ,CAAC,CAAC"}
@@ -1 +0,0 @@
1
- export declare const qwilrAuth: import("@activepieces/pieces-framework").SecretTextProperty<true>;
@@ -1,13 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.qwilrAuth = void 0;
4
- const pieces_framework_1 = require("@activepieces/pieces-framework");
5
- exports.qwilrAuth = pieces_framework_1.PieceAuth.SecretText({
6
- displayName: 'API Key',
7
- required: true,
8
- description: `
9
- 1. Go to your Qwilr account settings.
10
- 2. Navigate to API Settings.
11
- 3. Copy your access token.`,
12
- });
13
- //# sourceMappingURL=auth.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"auth.js","sourceRoot":"","sources":["../../../../../../../../packages/pieces/community/qwilr/src/lib/common/auth.ts"],"names":[],"mappings":";;;AAAA,qEAA2D;AAG9C,QAAA,SAAS,GAAG,4BAAS,CAAC,UAAU,CAAC;IAC1C,WAAW,EAAE,SAAS;IACtB,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE;;;+BAGc;CAC9B,CAAC,CAAA"}
@@ -1,2 +0,0 @@
1
- import { TriggerStrategy } from '@activepieces/pieces-framework';
2
- export declare const pageAcceptedTrigger: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").SecretTextProperty<true>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").SecretTextProperty<true>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").SecretTextProperty<true>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").SecretTextProperty<true>, {}>;
@@ -1,71 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.pageAcceptedTrigger = void 0;
4
- const tslib_1 = require("tslib");
5
- const pieces_framework_1 = require("@activepieces/pieces-framework");
6
- const pieces_common_1 = require("@activepieces/pieces-common");
7
- const auth_1 = require("../../lib/common/auth");
8
- const subscribeWebhook = (auth, event, targetUrl) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
9
- const response = yield pieces_common_1.httpClient.sendRequest({
10
- method: pieces_common_1.HttpMethod.POST,
11
- url: 'https://api.qwilr.com/v1/webhooks',
12
- headers: {
13
- 'Authorization': `Bearer ${auth}`,
14
- 'Content-Type': 'application/json'
15
- },
16
- body: {
17
- event,
18
- targetUrl
19
- }
20
- });
21
- return response.body;
22
- });
23
- const unsubscribeWebhook = (auth, subscriptionId) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
24
- yield pieces_common_1.httpClient.sendRequest({
25
- method: pieces_common_1.HttpMethod.DELETE,
26
- url: `https://api.qwilr.com/v1/webhooks/${subscriptionId}`,
27
- headers: {
28
- 'Authorization': `Bearer ${auth}`
29
- }
30
- });
31
- });
32
- exports.pageAcceptedTrigger = (0, pieces_framework_1.createTrigger)({
33
- auth: auth_1.qwilrAuth,
34
- name: 'page_accepted',
35
- displayName: 'Page Accepted',
36
- description: 'Triggers when a Qwilr page is accepted',
37
- type: pieces_framework_1.TriggerStrategy.WEBHOOK,
38
- props: {},
39
- onEnable(context) {
40
- return tslib_1.__awaiter(this, void 0, void 0, function* () {
41
- var _a;
42
- const webhookData = yield subscribeWebhook(context.auth.secret_text, 'pageAccepted', context.webhookUrl);
43
- yield ((_a = context.store) === null || _a === void 0 ? void 0 : _a.put('_page_accepted_trigger', {
44
- subscriptionId: webhookData.id,
45
- }));
46
- });
47
- },
48
- onDisable(context) {
49
- return tslib_1.__awaiter(this, void 0, void 0, function* () {
50
- var _a;
51
- const response = yield ((_a = context.store) === null || _a === void 0 ? void 0 : _a.get('_page_accepted_trigger'));
52
- if (response !== null && response !== undefined) {
53
- yield unsubscribeWebhook(context.auth.secret_text, response.subscriptionId);
54
- }
55
- });
56
- },
57
- run(context) {
58
- return tslib_1.__awaiter(this, void 0, void 0, function* () {
59
- return [context.payload.body];
60
- });
61
- },
62
- sampleData: {
63
- event: 'pageAccepted',
64
- idempotencyKey: 'b1c51b5b4844a81f7c3745002dbbd871fdda6cabe019961bcc79f972d924a2b0',
65
- page: {
66
- id: '6ee0f841f3cc8900090d82dc',
67
- metadata: {}
68
- }
69
- }
70
- });
71
- //# sourceMappingURL=page-accepted.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"page-accepted.js","sourceRoot":"","sources":["../../../../../../../../packages/pieces/community/qwilr/src/lib/triggers/page-accepted.ts"],"names":[],"mappings":";;;;AAAA,qEAAgF;AAChF,+DAAqE;AACrE,gDAAkD;AAElD,MAAM,gBAAgB,GAAG,CAAO,IAAY,EAAE,KAAa,EAAE,SAAiB,EAAE,EAAE;IAChF,MAAM,QAAQ,GAAG,MAAM,0BAAU,CAAC,WAAW,CAAC;QAC5C,MAAM,EAAE,0BAAU,CAAC,IAAI;QACvB,GAAG,EAAE,mCAAmC;QACxC,OAAO,EAAE;YACP,eAAe,EAAE,UAAU,IAAI,EAAE;YACjC,cAAc,EAAE,kBAAkB;SACnC;QACD,IAAI,EAAE;YACJ,KAAK;YACL,SAAS;SACV;KACF,CAAC,CAAC;IACH,OAAO,QAAQ,CAAC,IAAI,CAAC;AACvB,CAAC,CAAA,CAAC;AAEF,MAAM,kBAAkB,GAAG,CAAO,IAAY,EAAE,cAAsB,EAAE,EAAE;IACxE,MAAM,0BAAU,CAAC,WAAW,CAAC;QAC3B,MAAM,EAAE,0BAAU,CAAC,MAAM;QACzB,GAAG,EAAE,qCAAqC,cAAc,EAAE;QAC1D,OAAO,EAAE;YACP,eAAe,EAAE,UAAU,IAAI,EAAE;SAClC;KACF,CAAC,CAAC;AACL,CAAC,CAAA,CAAC;AAEW,QAAA,mBAAmB,GAAG,IAAA,gCAAa,EAAC;IAC/C,IAAI,EAAE,gBAAS;IACf,IAAI,EAAE,eAAe;IACrB,WAAW,EAAE,eAAe;IAC5B,WAAW,EAAE,wCAAwC;IACrD,IAAI,EAAE,kCAAe,CAAC,OAAO;IAC7B,KAAK,EAAE,EAAE;IACH,QAAQ,CAAC,OAAO;;;YACpB,MAAM,WAAW,GAAG,MAAM,gBAAgB,CACxC,OAAO,CAAC,IAAI,CAAC,WAAW,EACxB,cAAc,EACd,OAAO,CAAC,UAAU,CACnB,CAAC;YAEF,MAAM,CAAA,MAAA,OAAO,CAAC,KAAK,0CAAE,GAAG,CAAC,wBAAwB,EAAE;gBACjD,cAAc,EAAE,WAAW,CAAC,EAAE;aAC/B,CAAC,CAAA,CAAC;QACL,CAAC;KAAA;IACK,SAAS,CAAC,OAAO;;;YACrB,MAAM,QAAQ,GAAsC,MAAM,CAAA,MAAA,OAAO,CAAC,KAAK,0CAAE,GAAG,CAAC,wBAAwB,CAAC,CAAA,CAAC;YAEvG,IAAI,QAAQ,KAAK,IAAI,IAAI,QAAQ,KAAK,SAAS,EAAE,CAAC;gBAChD,MAAM,kBAAkB,CAAC,OAAO,CAAC,IAAI,CAAC,WAAW,EAAE,QAAQ,CAAC,cAAc,CAAC,CAAC;YAC9E,CAAC;QACH,CAAC;KAAA;IACK,GAAG,CAAC,OAAO;;YACf,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;QAChC,CAAC;KAAA;IACD,UAAU,EAAE;QACV,KAAK,EAAE,cAAc;QACrB,cAAc,EAAE,kEAAkE;QAClF,IAAI,EAAE;YACJ,EAAE,EAAE,0BAA0B;YAC9B,QAAQ,EAAE,EAAE;SACb;KACF;CACF,CAAC,CAAC"}
@@ -1,2 +0,0 @@
1
- import { TriggerStrategy } from '@activepieces/pieces-framework';
2
- export declare const pageFirstViewedTrigger: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").SecretTextProperty<true>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").SecretTextProperty<true>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").SecretTextProperty<true>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").SecretTextProperty<true>, {}>;
@@ -1,71 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.pageFirstViewedTrigger = void 0;
4
- const tslib_1 = require("tslib");
5
- const pieces_framework_1 = require("@activepieces/pieces-framework");
6
- const pieces_common_1 = require("@activepieces/pieces-common");
7
- const auth_1 = require("../../lib/common/auth");
8
- const subscribeWebhook = (auth, event, targetUrl) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
9
- const response = yield pieces_common_1.httpClient.sendRequest({
10
- method: pieces_common_1.HttpMethod.POST,
11
- url: 'https://api.qwilr.com/v1/webhooks',
12
- headers: {
13
- 'Authorization': `Bearer ${auth}`,
14
- 'Content-Type': 'application/json'
15
- },
16
- body: {
17
- event,
18
- targetUrl
19
- }
20
- });
21
- return response.body;
22
- });
23
- const unsubscribeWebhook = (auth, subscriptionId) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
24
- yield pieces_common_1.httpClient.sendRequest({
25
- method: pieces_common_1.HttpMethod.DELETE,
26
- url: `https://api.qwilr.com/v1/webhooks/${subscriptionId}`,
27
- headers: {
28
- 'Authorization': `Bearer ${auth}`
29
- }
30
- });
31
- });
32
- exports.pageFirstViewedTrigger = (0, pieces_framework_1.createTrigger)({
33
- auth: auth_1.qwilrAuth,
34
- name: 'page_first_viewed',
35
- displayName: 'Page First Viewed',
36
- description: 'Triggers when a Qwilr page is viewed for the first time',
37
- type: pieces_framework_1.TriggerStrategy.WEBHOOK,
38
- props: {},
39
- onEnable(context) {
40
- return tslib_1.__awaiter(this, void 0, void 0, function* () {
41
- var _a;
42
- const webhookData = yield subscribeWebhook(context.auth.secret_text, 'pageFirstViewed', context.webhookUrl);
43
- yield ((_a = context.store) === null || _a === void 0 ? void 0 : _a.put('_page_first_viewed_trigger', {
44
- subscriptionId: webhookData.id,
45
- }));
46
- });
47
- },
48
- onDisable(context) {
49
- return tslib_1.__awaiter(this, void 0, void 0, function* () {
50
- var _a;
51
- const response = yield ((_a = context.store) === null || _a === void 0 ? void 0 : _a.get('_page_first_viewed_trigger'));
52
- if (response !== null && response !== undefined) {
53
- yield unsubscribeWebhook(context.auth.secret_text, response.subscriptionId);
54
- }
55
- });
56
- },
57
- run(context) {
58
- return tslib_1.__awaiter(this, void 0, void 0, function* () {
59
- return [context.payload.body];
60
- });
61
- },
62
- sampleData: {
63
- event: 'pageFirstViewed',
64
- idempotencyKey: 'b1c51b5b4844a81f7c3745002dbbd871fdda6cabe019961bcc79f972d924a2b0',
65
- page: {
66
- id: '6ee0f841f3cc8900090d82dc',
67
- metadata: {}
68
- }
69
- }
70
- });
71
- //# sourceMappingURL=page-first-viewed.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"page-first-viewed.js","sourceRoot":"","sources":["../../../../../../../../packages/pieces/community/qwilr/src/lib/triggers/page-first-viewed.ts"],"names":[],"mappings":";;;;AAAA,qEAAgF;AAChF,+DAAqE;AACrE,gDAAkD;AAElD,MAAM,gBAAgB,GAAG,CAAO,IAAY,EAAE,KAAa,EAAE,SAAiB,EAAE,EAAE;IAChF,MAAM,QAAQ,GAAG,MAAM,0BAAU,CAAC,WAAW,CAAC;QAC5C,MAAM,EAAE,0BAAU,CAAC,IAAI;QACvB,GAAG,EAAE,mCAAmC;QACxC,OAAO,EAAE;YACP,eAAe,EAAE,UAAU,IAAI,EAAE;YACjC,cAAc,EAAE,kBAAkB;SACnC;QACD,IAAI,EAAE;YACJ,KAAK;YACL,SAAS;SACV;KACF,CAAC,CAAC;IACH,OAAO,QAAQ,CAAC,IAAI,CAAC;AACvB,CAAC,CAAA,CAAC;AAEF,MAAM,kBAAkB,GAAG,CAAO,IAAY,EAAE,cAAsB,EAAE,EAAE;IACxE,MAAM,0BAAU,CAAC,WAAW,CAAC;QAC3B,MAAM,EAAE,0BAAU,CAAC,MAAM;QACzB,GAAG,EAAE,qCAAqC,cAAc,EAAE;QAC1D,OAAO,EAAE;YACP,eAAe,EAAE,UAAU,IAAI,EAAE;SAClC;KACF,CAAC,CAAC;AACL,CAAC,CAAA,CAAC;AAEW,QAAA,sBAAsB,GAAG,IAAA,gCAAa,EAAC;IAClD,IAAI,EAAE,gBAAS;IACf,IAAI,EAAE,mBAAmB;IACzB,WAAW,EAAE,mBAAmB;IAChC,WAAW,EAAE,yDAAyD;IACtE,IAAI,EAAE,kCAAe,CAAC,OAAO;IAC7B,KAAK,EAAE,EAAE;IACH,QAAQ,CAAC,OAAO;;;YACpB,MAAM,WAAW,GAAG,MAAM,gBAAgB,CACxC,OAAO,CAAC,IAAI,CAAC,WAAW,EACxB,iBAAiB,EACjB,OAAO,CAAC,UAAU,CACnB,CAAC;YAEF,MAAM,CAAA,MAAA,OAAO,CAAC,KAAK,0CAAE,GAAG,CAAC,4BAA4B,EAAE;gBACrD,cAAc,EAAE,WAAW,CAAC,EAAE;aAC/B,CAAC,CAAA,CAAC;QACL,CAAC;KAAA;IACK,SAAS,CAAC,OAAO;;;YACrB,MAAM,QAAQ,GAAsC,MAAM,CAAA,MAAA,OAAO,CAAC,KAAK,0CAAE,GAAG,CAAC,4BAA4B,CAAC,CAAA,CAAC;YAE3G,IAAI,QAAQ,KAAK,IAAI,IAAI,QAAQ,KAAK,SAAS,EAAE,CAAC;gBAChD,MAAM,kBAAkB,CAAC,OAAO,CAAC,IAAI,CAAC,WAAW,EAAE,QAAQ,CAAC,cAAc,CAAC,CAAC;YAC9E,CAAC;QACH,CAAC;KAAA;IACK,GAAG,CAAC,OAAO;;YACf,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;QAChC,CAAC;KAAA;IACD,UAAU,EAAE;QACV,KAAK,EAAE,iBAAiB;QACxB,cAAc,EAAE,kEAAkE;QAClF,IAAI,EAAE;YACJ,EAAE,EAAE,0BAA0B;YAC9B,QAAQ,EAAE,EAAE;SACb;KACF;CACF,CAAC,CAAC"}
@@ -1,2 +0,0 @@
1
- import { TriggerStrategy } from '@activepieces/pieces-framework';
2
- export declare const pagePartiallyAcceptedTrigger: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").SecretTextProperty<true>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").SecretTextProperty<true>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").SecretTextProperty<true>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").SecretTextProperty<true>, {}>;
@@ -1,71 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.pagePartiallyAcceptedTrigger = void 0;
4
- const tslib_1 = require("tslib");
5
- const pieces_framework_1 = require("@activepieces/pieces-framework");
6
- const pieces_common_1 = require("@activepieces/pieces-common");
7
- const auth_1 = require("../../lib/common/auth");
8
- const subscribeWebhook = (auth, event, targetUrl) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
9
- const response = yield pieces_common_1.httpClient.sendRequest({
10
- method: pieces_common_1.HttpMethod.POST,
11
- url: 'https://api.qwilr.com/v1/webhooks',
12
- headers: {
13
- 'Authorization': `Bearer ${auth}`,
14
- 'Content-Type': 'application/json'
15
- },
16
- body: {
17
- event,
18
- targetUrl
19
- }
20
- });
21
- return response.body;
22
- });
23
- const unsubscribeWebhook = (auth, subscriptionId) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
24
- yield pieces_common_1.httpClient.sendRequest({
25
- method: pieces_common_1.HttpMethod.DELETE,
26
- url: `https://api.qwilr.com/v1/webhooks/${subscriptionId}`,
27
- headers: {
28
- 'Authorization': `Bearer ${auth}`
29
- }
30
- });
31
- });
32
- exports.pagePartiallyAcceptedTrigger = (0, pieces_framework_1.createTrigger)({
33
- auth: auth_1.qwilrAuth,
34
- name: 'page_partially_accepted',
35
- displayName: 'Page Partially Accepted',
36
- description: 'Triggers when a Qwilr page is partially accepted',
37
- type: pieces_framework_1.TriggerStrategy.WEBHOOK,
38
- props: {},
39
- onEnable(context) {
40
- return tslib_1.__awaiter(this, void 0, void 0, function* () {
41
- var _a;
42
- const webhookData = yield subscribeWebhook(context.auth.secret_text, 'pagePartiallyAccepted', context.webhookUrl);
43
- yield ((_a = context.store) === null || _a === void 0 ? void 0 : _a.put('_page_partially_accepted_trigger', {
44
- subscriptionId: webhookData.id,
45
- }));
46
- });
47
- },
48
- onDisable(context) {
49
- return tslib_1.__awaiter(this, void 0, void 0, function* () {
50
- var _a;
51
- const response = yield ((_a = context.store) === null || _a === void 0 ? void 0 : _a.get('_page_partially_accepted_trigger'));
52
- if (response !== null && response !== undefined) {
53
- yield unsubscribeWebhook(context.auth.secret_text, response.subscriptionId);
54
- }
55
- });
56
- },
57
- run(context) {
58
- return tslib_1.__awaiter(this, void 0, void 0, function* () {
59
- return [context.payload.body];
60
- });
61
- },
62
- sampleData: {
63
- event: 'pagePartiallyAccepted',
64
- idempotencyKey: 'b1c51b5b4844a81f7c3745002dbbd871fdda6cabe019961bcc79f972d924a2b0',
65
- page: {
66
- id: '6ee0f841f3cc8900090d82dc',
67
- metadata: {}
68
- }
69
- }
70
- });
71
- //# sourceMappingURL=page-partially-accepted.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"page-partially-accepted.js","sourceRoot":"","sources":["../../../../../../../../packages/pieces/community/qwilr/src/lib/triggers/page-partially-accepted.ts"],"names":[],"mappings":";;;;AAAA,qEAAgF;AAChF,+DAAqE;AACrE,gDAAkD;AAElD,MAAM,gBAAgB,GAAG,CAAO,IAAY,EAAE,KAAa,EAAE,SAAiB,EAAE,EAAE;IAChF,MAAM,QAAQ,GAAG,MAAM,0BAAU,CAAC,WAAW,CAAC;QAC5C,MAAM,EAAE,0BAAU,CAAC,IAAI;QACvB,GAAG,EAAE,mCAAmC;QACxC,OAAO,EAAE;YACP,eAAe,EAAE,UAAU,IAAI,EAAE;YACjC,cAAc,EAAE,kBAAkB;SACnC;QACD,IAAI,EAAE;YACJ,KAAK;YACL,SAAS;SACV;KACF,CAAC,CAAC;IACH,OAAO,QAAQ,CAAC,IAAI,CAAC;AACvB,CAAC,CAAA,CAAC;AAEF,MAAM,kBAAkB,GAAG,CAAO,IAAY,EAAE,cAAsB,EAAE,EAAE;IACxE,MAAM,0BAAU,CAAC,WAAW,CAAC;QAC3B,MAAM,EAAE,0BAAU,CAAC,MAAM;QACzB,GAAG,EAAE,qCAAqC,cAAc,EAAE;QAC1D,OAAO,EAAE;YACP,eAAe,EAAE,UAAU,IAAI,EAAE;SAClC;KACF,CAAC,CAAC;AACL,CAAC,CAAA,CAAC;AAEW,QAAA,4BAA4B,GAAG,IAAA,gCAAa,EAAC;IACxD,IAAI,EAAE,gBAAS;IACf,IAAI,EAAE,yBAAyB;IAC/B,WAAW,EAAE,yBAAyB;IACtC,WAAW,EAAE,kDAAkD;IAC/D,IAAI,EAAE,kCAAe,CAAC,OAAO;IAC7B,KAAK,EAAE,EAAE;IACH,QAAQ,CAAC,OAAO;;;YACpB,MAAM,WAAW,GAAG,MAAM,gBAAgB,CACxC,OAAO,CAAC,IAAI,CAAC,WAAW,EACxB,uBAAuB,EACvB,OAAO,CAAC,UAAU,CACnB,CAAC;YAEF,MAAM,CAAA,MAAA,OAAO,CAAC,KAAK,0CAAE,GAAG,CAAC,kCAAkC,EAAE;gBAC3D,cAAc,EAAE,WAAW,CAAC,EAAE;aAC/B,CAAC,CAAA,CAAC;QACL,CAAC;KAAA;IACK,SAAS,CAAC,OAAO;;;YACrB,MAAM,QAAQ,GAAsC,MAAM,CAAA,MAAA,OAAO,CAAC,KAAK,0CAAE,GAAG,CAAC,kCAAkC,CAAC,CAAA,CAAC;YAEjH,IAAI,QAAQ,KAAK,IAAI,IAAI,QAAQ,KAAK,SAAS,EAAE,CAAC;gBAChD,MAAM,kBAAkB,CAAC,OAAO,CAAC,IAAI,CAAC,WAAW,EAAE,QAAQ,CAAC,cAAc,CAAC,CAAC;YAC9E,CAAC;QACH,CAAC;KAAA;IACK,GAAG,CAAC,OAAO;;YACf,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;QAChC,CAAC;KAAA;IACD,UAAU,EAAE;QACV,KAAK,EAAE,uBAAuB;QAC9B,cAAc,EAAE,kEAAkE;QAClF,IAAI,EAAE;YACJ,EAAE,EAAE,0BAA0B;YAC9B,QAAQ,EAAE,EAAE;SACb;KACF;CACF,CAAC,CAAC"}
@@ -1,2 +0,0 @@
1
- import { TriggerStrategy } from '@activepieces/pieces-framework';
2
- export declare const pagePreviewAcceptedTrigger: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").SecretTextProperty<true>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").SecretTextProperty<true>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").SecretTextProperty<true>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").SecretTextProperty<true>, {}>;
@@ -1,71 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.pagePreviewAcceptedTrigger = void 0;
4
- const tslib_1 = require("tslib");
5
- const pieces_framework_1 = require("@activepieces/pieces-framework");
6
- const pieces_common_1 = require("@activepieces/pieces-common");
7
- const auth_1 = require("../../lib/common/auth");
8
- const subscribeWebhook = (auth, event, targetUrl) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
9
- const response = yield pieces_common_1.httpClient.sendRequest({
10
- method: pieces_common_1.HttpMethod.POST,
11
- url: 'https://api.qwilr.com/v1/webhooks',
12
- headers: {
13
- 'Authorization': `Bearer ${auth}`,
14
- 'Content-Type': 'application/json'
15
- },
16
- body: {
17
- event,
18
- targetUrl
19
- }
20
- });
21
- return response.body;
22
- });
23
- const unsubscribeWebhook = (auth, subscriptionId) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
24
- yield pieces_common_1.httpClient.sendRequest({
25
- method: pieces_common_1.HttpMethod.DELETE,
26
- url: `https://api.qwilr.com/v1/webhooks/${subscriptionId}`,
27
- headers: {
28
- 'Authorization': `Bearer ${auth}`
29
- }
30
- });
31
- });
32
- exports.pagePreviewAcceptedTrigger = (0, pieces_framework_1.createTrigger)({
33
- auth: auth_1.qwilrAuth,
34
- name: 'page_preview_accepted',
35
- displayName: 'Page Preview Accepted',
36
- description: 'Triggers when a Qwilr page preview is accepted',
37
- type: pieces_framework_1.TriggerStrategy.WEBHOOK,
38
- props: {},
39
- onEnable(context) {
40
- return tslib_1.__awaiter(this, void 0, void 0, function* () {
41
- var _a;
42
- const webhookData = yield subscribeWebhook(context.auth.secret_text, 'pagePreviewAccepted', context.webhookUrl);
43
- yield ((_a = context.store) === null || _a === void 0 ? void 0 : _a.put('_page_preview_accepted_trigger', {
44
- subscriptionId: webhookData.id,
45
- }));
46
- });
47
- },
48
- onDisable(context) {
49
- return tslib_1.__awaiter(this, void 0, void 0, function* () {
50
- var _a;
51
- const response = yield ((_a = context.store) === null || _a === void 0 ? void 0 : _a.get('_page_preview_accepted_trigger'));
52
- if (response !== null && response !== undefined) {
53
- yield unsubscribeWebhook(context.auth.secret_text, response.subscriptionId);
54
- }
55
- });
56
- },
57
- run(context) {
58
- return tslib_1.__awaiter(this, void 0, void 0, function* () {
59
- return [context.payload.body];
60
- });
61
- },
62
- sampleData: {
63
- event: 'pagePreviewAccepted',
64
- idempotencyKey: 'b1c51b5b4844a81f7c3745002dbbd871fdda6cabe019961bcc79f972d924a2b0',
65
- page: {
66
- id: '6ee0f841f3cc8900090d82dc',
67
- metadata: {}
68
- }
69
- }
70
- });
71
- //# sourceMappingURL=page-preview-accepted.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"page-preview-accepted.js","sourceRoot":"","sources":["../../../../../../../../packages/pieces/community/qwilr/src/lib/triggers/page-preview-accepted.ts"],"names":[],"mappings":";;;;AAAA,qEAAgF;AAChF,+DAAqE;AACrE,gDAAkD;AAElD,MAAM,gBAAgB,GAAG,CAAO,IAAY,EAAE,KAAa,EAAE,SAAiB,EAAE,EAAE;IAChF,MAAM,QAAQ,GAAG,MAAM,0BAAU,CAAC,WAAW,CAAC;QAC5C,MAAM,EAAE,0BAAU,CAAC,IAAI;QACvB,GAAG,EAAE,mCAAmC;QACxC,OAAO,EAAE;YACP,eAAe,EAAE,UAAU,IAAI,EAAE;YACjC,cAAc,EAAE,kBAAkB;SACnC;QACD,IAAI,EAAE;YACJ,KAAK;YACL,SAAS;SACV;KACF,CAAC,CAAC;IACH,OAAO,QAAQ,CAAC,IAAI,CAAC;AACvB,CAAC,CAAA,CAAC;AAEF,MAAM,kBAAkB,GAAG,CAAO,IAAY,EAAE,cAAsB,EAAE,EAAE;IACxE,MAAM,0BAAU,CAAC,WAAW,CAAC;QAC3B,MAAM,EAAE,0BAAU,CAAC,MAAM;QACzB,GAAG,EAAE,qCAAqC,cAAc,EAAE;QAC1D,OAAO,EAAE;YACP,eAAe,EAAE,UAAU,IAAI,EAAE;SAClC;KACF,CAAC,CAAC;AACL,CAAC,CAAA,CAAC;AAEW,QAAA,0BAA0B,GAAG,IAAA,gCAAa,EAAC;IACtD,IAAI,EAAE,gBAAS;IACf,IAAI,EAAE,uBAAuB;IAC7B,WAAW,EAAE,uBAAuB;IACpC,WAAW,EAAE,gDAAgD;IAC7D,IAAI,EAAE,kCAAe,CAAC,OAAO;IAC7B,KAAK,EAAE,EAAE;IACH,QAAQ,CAAC,OAAO;;;YACpB,MAAM,WAAW,GAAG,MAAM,gBAAgB,CACxC,OAAO,CAAC,IAAI,CAAC,WAAW,EACxB,qBAAqB,EACrB,OAAO,CAAC,UAAU,CACnB,CAAC;YAEF,MAAM,CAAA,MAAA,OAAO,CAAC,KAAK,0CAAE,GAAG,CAAC,gCAAgC,EAAE;gBACzD,cAAc,EAAE,WAAW,CAAC,EAAE;aAC/B,CAAC,CAAA,CAAC;QACL,CAAC;KAAA;IACK,SAAS,CAAC,OAAO;;;YACrB,MAAM,QAAQ,GAAsC,MAAM,CAAA,MAAA,OAAO,CAAC,KAAK,0CAAE,GAAG,CAAC,gCAAgC,CAAC,CAAA,CAAC;YAE/G,IAAI,QAAQ,KAAK,IAAI,IAAI,QAAQ,KAAK,SAAS,EAAE,CAAC;gBAChD,MAAM,kBAAkB,CAAC,OAAO,CAAC,IAAI,CAAC,WAAW,EAAE,QAAQ,CAAC,cAAc,CAAC,CAAC;YAC9E,CAAC;QACH,CAAC;KAAA;IACK,GAAG,CAAC,OAAO;;YACf,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;QAChC,CAAC;KAAA;IACD,UAAU,EAAE;QACV,KAAK,EAAE,qBAAqB;QAC5B,cAAc,EAAE,kEAAkE;QAClF,IAAI,EAAE;YACJ,EAAE,EAAE,0BAA0B;YAC9B,QAAQ,EAAE,EAAE;SACb;KACF;CACF,CAAC,CAAC"}
@@ -1,2 +0,0 @@
1
- import { TriggerStrategy } from '@activepieces/pieces-framework';
2
- export declare const pageRevivedLiveTrigger: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").SecretTextProperty<true>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").SecretTextProperty<true>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").SecretTextProperty<true>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").SecretTextProperty<true>, {}>;
@@ -1,71 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.pageRevivedLiveTrigger = void 0;
4
- const tslib_1 = require("tslib");
5
- const pieces_framework_1 = require("@activepieces/pieces-framework");
6
- const pieces_common_1 = require("@activepieces/pieces-common");
7
- const auth_1 = require("../../lib/common/auth");
8
- const subscribeWebhook = (auth, event, targetUrl) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
9
- const response = yield pieces_common_1.httpClient.sendRequest({
10
- method: pieces_common_1.HttpMethod.POST,
11
- url: 'https://api.qwilr.com/v1/webhooks',
12
- headers: {
13
- 'Authorization': `Bearer ${auth}`,
14
- 'Content-Type': 'application/json'
15
- },
16
- body: {
17
- event,
18
- targetUrl
19
- }
20
- });
21
- return response.body;
22
- });
23
- const unsubscribeWebhook = (auth, subscriptionId) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
24
- yield pieces_common_1.httpClient.sendRequest({
25
- method: pieces_common_1.HttpMethod.DELETE,
26
- url: `https://api.qwilr.com/v1/webhooks/${subscriptionId}`,
27
- headers: {
28
- 'Authorization': `Bearer ${auth}`
29
- }
30
- });
31
- });
32
- exports.pageRevivedLiveTrigger = (0, pieces_framework_1.createTrigger)({
33
- auth: auth_1.qwilrAuth,
34
- name: 'page_revived_live',
35
- displayName: 'Page Revived Live',
36
- description: 'Triggers when a Qwilr page is revived to live status',
37
- type: pieces_framework_1.TriggerStrategy.WEBHOOK,
38
- props: {},
39
- onEnable(context) {
40
- return tslib_1.__awaiter(this, void 0, void 0, function* () {
41
- var _a;
42
- const webhookData = yield subscribeWebhook(context.auth.secret_text, 'pageRevivedLive', context.webhookUrl);
43
- yield ((_a = context.store) === null || _a === void 0 ? void 0 : _a.put('_page_revived_live_trigger', {
44
- subscriptionId: webhookData.id,
45
- }));
46
- });
47
- },
48
- onDisable(context) {
49
- return tslib_1.__awaiter(this, void 0, void 0, function* () {
50
- var _a;
51
- const response = yield ((_a = context.store) === null || _a === void 0 ? void 0 : _a.get('_page_revived_live_trigger'));
52
- if (response !== null && response !== undefined) {
53
- yield unsubscribeWebhook(context.auth.secret_text, response.subscriptionId);
54
- }
55
- });
56
- },
57
- run(context) {
58
- return tslib_1.__awaiter(this, void 0, void 0, function* () {
59
- return [context.payload.body];
60
- });
61
- },
62
- sampleData: {
63
- event: 'pageRevivedLive',
64
- idempotencyKey: 'b1c51b5b4844a81f7c3745002dbbd871fdda6cabe019961bcc79f972d924a2b0',
65
- page: {
66
- id: '6ee0f841f3cc8900090d82dc',
67
- metadata: {}
68
- }
69
- }
70
- });
71
- //# sourceMappingURL=page-revived-live.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"page-revived-live.js","sourceRoot":"","sources":["../../../../../../../../packages/pieces/community/qwilr/src/lib/triggers/page-revived-live.ts"],"names":[],"mappings":";;;;AAAA,qEAAgF;AAChF,+DAAqE;AACrE,gDAAkD;AAElD,MAAM,gBAAgB,GAAG,CAAO,IAAY,EAAE,KAAa,EAAE,SAAiB,EAAE,EAAE;IAChF,MAAM,QAAQ,GAAG,MAAM,0BAAU,CAAC,WAAW,CAAC;QAC5C,MAAM,EAAE,0BAAU,CAAC,IAAI;QACvB,GAAG,EAAE,mCAAmC;QACxC,OAAO,EAAE;YACP,eAAe,EAAE,UAAU,IAAI,EAAE;YACjC,cAAc,EAAE,kBAAkB;SACnC;QACD,IAAI,EAAE;YACJ,KAAK;YACL,SAAS;SACV;KACF,CAAC,CAAC;IACH,OAAO,QAAQ,CAAC,IAAI,CAAC;AACvB,CAAC,CAAA,CAAC;AAEF,MAAM,kBAAkB,GAAG,CAAO,IAAY,EAAE,cAAsB,EAAE,EAAE;IACxE,MAAM,0BAAU,CAAC,WAAW,CAAC;QAC3B,MAAM,EAAE,0BAAU,CAAC,MAAM;QACzB,GAAG,EAAE,qCAAqC,cAAc,EAAE;QAC1D,OAAO,EAAE;YACP,eAAe,EAAE,UAAU,IAAI,EAAE;SAClC;KACF,CAAC,CAAC;AACL,CAAC,CAAA,CAAC;AAEW,QAAA,sBAAsB,GAAG,IAAA,gCAAa,EAAC;IAClD,IAAI,EAAE,gBAAS;IACf,IAAI,EAAE,mBAAmB;IACzB,WAAW,EAAE,mBAAmB;IAChC,WAAW,EAAE,sDAAsD;IACnE,IAAI,EAAE,kCAAe,CAAC,OAAO;IAC7B,KAAK,EAAE,EAAE;IACH,QAAQ,CAAC,OAAO;;;YACpB,MAAM,WAAW,GAAG,MAAM,gBAAgB,CACxC,OAAO,CAAC,IAAI,CAAC,WAAW,EACxB,iBAAiB,EACjB,OAAO,CAAC,UAAU,CACnB,CAAC;YAEF,MAAM,CAAA,MAAA,OAAO,CAAC,KAAK,0CAAE,GAAG,CAAC,4BAA4B,EAAE;gBACrD,cAAc,EAAE,WAAW,CAAC,EAAE;aAC/B,CAAC,CAAA,CAAC;QACL,CAAC;KAAA;IACK,SAAS,CAAC,OAAO;;;YACrB,MAAM,QAAQ,GAAsC,MAAM,CAAA,MAAA,OAAO,CAAC,KAAK,0CAAE,GAAG,CAAC,4BAA4B,CAAC,CAAA,CAAC;YAE3G,IAAI,QAAQ,KAAK,IAAI,IAAI,QAAQ,KAAK,SAAS,EAAE,CAAC;gBAChD,MAAM,kBAAkB,CAAC,OAAO,CAAC,IAAI,CAAC,WAAW,EAAE,QAAQ,CAAC,cAAc,CAAC,CAAC;YAC9E,CAAC;QACH,CAAC;KAAA;IACK,GAAG,CAAC,OAAO;;YACf,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;QAChC,CAAC;KAAA;IACD,UAAU,EAAE;QACV,KAAK,EAAE,iBAAiB;QACxB,cAAc,EAAE,kEAAkE;QAClF,IAAI,EAAE;YACJ,EAAE,EAAE,0BAA0B;YAC9B,QAAQ,EAAE,EAAE;SACb;KACF;CACF,CAAC,CAAC"}
@@ -1,2 +0,0 @@
1
- import { TriggerStrategy } from '@activepieces/pieces-framework';
2
- export declare const pageSetLiveTrigger: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").SecretTextProperty<true>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").SecretTextProperty<true>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").SecretTextProperty<true>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").SecretTextProperty<true>, {}>;
@@ -1,71 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.pageSetLiveTrigger = void 0;
4
- const tslib_1 = require("tslib");
5
- const pieces_framework_1 = require("@activepieces/pieces-framework");
6
- const pieces_common_1 = require("@activepieces/pieces-common");
7
- const auth_1 = require("../../lib/common/auth");
8
- const subscribeWebhook = (auth, event, targetUrl) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
9
- const response = yield pieces_common_1.httpClient.sendRequest({
10
- method: pieces_common_1.HttpMethod.POST,
11
- url: 'https://api.qwilr.com/v1/webhooks',
12
- headers: {
13
- 'Authorization': `Bearer ${auth}`,
14
- 'Content-Type': 'application/json'
15
- },
16
- body: {
17
- event,
18
- targetUrl
19
- }
20
- });
21
- return response.body;
22
- });
23
- const unsubscribeWebhook = (auth, subscriptionId) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
24
- yield pieces_common_1.httpClient.sendRequest({
25
- method: pieces_common_1.HttpMethod.DELETE,
26
- url: `https://api.qwilr.com/v1/webhooks/${subscriptionId}`,
27
- headers: {
28
- 'Authorization': `Bearer ${auth}`
29
- }
30
- });
31
- });
32
- exports.pageSetLiveTrigger = (0, pieces_framework_1.createTrigger)({
33
- auth: auth_1.qwilrAuth,
34
- name: 'page_set_live',
35
- displayName: 'Page Set Live',
36
- description: 'Triggers when a Qwilr page is set to live',
37
- type: pieces_framework_1.TriggerStrategy.WEBHOOK,
38
- props: {},
39
- onEnable(context) {
40
- return tslib_1.__awaiter(this, void 0, void 0, function* () {
41
- var _a;
42
- const webhookData = yield subscribeWebhook(context.auth.secret_text, 'pageSetLive', context.webhookUrl);
43
- yield ((_a = context.store) === null || _a === void 0 ? void 0 : _a.put('_page_set_live_trigger', {
44
- subscriptionId: webhookData.id,
45
- }));
46
- });
47
- },
48
- onDisable(context) {
49
- return tslib_1.__awaiter(this, void 0, void 0, function* () {
50
- var _a;
51
- const response = yield ((_a = context.store) === null || _a === void 0 ? void 0 : _a.get('_page_set_live_trigger'));
52
- if (response !== null && response !== undefined) {
53
- yield unsubscribeWebhook(context.auth.secret_text, response.subscriptionId);
54
- }
55
- });
56
- },
57
- run(context) {
58
- return tslib_1.__awaiter(this, void 0, void 0, function* () {
59
- return [context.payload.body];
60
- });
61
- },
62
- sampleData: {
63
- event: 'pageSetLive',
64
- idempotencyKey: 'b1c51b5b4844a81f7c3745002dbbd871fdda6cabe019961bcc79f972d924a2b0',
65
- page: {
66
- id: '6ee0f841f3cc8900090d82dc',
67
- metadata: {}
68
- }
69
- }
70
- });
71
- //# sourceMappingURL=page-set-live.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"page-set-live.js","sourceRoot":"","sources":["../../../../../../../../packages/pieces/community/qwilr/src/lib/triggers/page-set-live.ts"],"names":[],"mappings":";;;;AAAA,qEAAgF;AAChF,+DAAqE;AACrE,gDAAkD;AAElD,MAAM,gBAAgB,GAAG,CAAO,IAAY,EAAE,KAAa,EAAE,SAAiB,EAAE,EAAE;IAChF,MAAM,QAAQ,GAAG,MAAM,0BAAU,CAAC,WAAW,CAAC;QAC5C,MAAM,EAAE,0BAAU,CAAC,IAAI;QACvB,GAAG,EAAE,mCAAmC;QACxC,OAAO,EAAE;YACP,eAAe,EAAE,UAAU,IAAI,EAAE;YACjC,cAAc,EAAE,kBAAkB;SACnC;QACD,IAAI,EAAE;YACJ,KAAK;YACL,SAAS;SACV;KACF,CAAC,CAAC;IACH,OAAO,QAAQ,CAAC,IAAI,CAAC;AACvB,CAAC,CAAA,CAAC;AAEF,MAAM,kBAAkB,GAAG,CAAO,IAAY,EAAE,cAAsB,EAAE,EAAE;IACxE,MAAM,0BAAU,CAAC,WAAW,CAAC;QAC3B,MAAM,EAAE,0BAAU,CAAC,MAAM;QACzB,GAAG,EAAE,qCAAqC,cAAc,EAAE;QAC1D,OAAO,EAAE;YACP,eAAe,EAAE,UAAU,IAAI,EAAE;SAClC;KACF,CAAC,CAAC;AACL,CAAC,CAAA,CAAC;AAEW,QAAA,kBAAkB,GAAG,IAAA,gCAAa,EAAC;IAC9C,IAAI,EAAE,gBAAS;IACf,IAAI,EAAE,eAAe;IACrB,WAAW,EAAE,eAAe;IAC5B,WAAW,EAAE,2CAA2C;IACxD,IAAI,EAAE,kCAAe,CAAC,OAAO;IAC7B,KAAK,EAAE,EAAE;IACH,QAAQ,CAAC,OAAO;;;YACpB,MAAM,WAAW,GAAG,MAAM,gBAAgB,CACxC,OAAO,CAAC,IAAI,CAAC,WAAW,EACxB,aAAa,EACb,OAAO,CAAC,UAAU,CACnB,CAAC;YAEF,MAAM,CAAA,MAAA,OAAO,CAAC,KAAK,0CAAE,GAAG,CAAC,wBAAwB,EAAE;gBACjD,cAAc,EAAE,WAAW,CAAC,EAAE;aAC/B,CAAC,CAAA,CAAC;QACL,CAAC;KAAA;IACK,SAAS,CAAC,OAAO;;;YACrB,MAAM,QAAQ,GAAsC,MAAM,CAAA,MAAA,OAAO,CAAC,KAAK,0CAAE,GAAG,CAAC,wBAAwB,CAAC,CAAA,CAAC;YAEvG,IAAI,QAAQ,KAAK,IAAI,IAAI,QAAQ,KAAK,SAAS,EAAE,CAAC;gBAChD,MAAM,kBAAkB,CAAC,OAAO,CAAC,IAAI,CAAC,WAAW,EAAE,QAAQ,CAAC,cAAc,CAAC,CAAC;YAC9E,CAAC;QACH,CAAC;KAAA;IACK,GAAG,CAAC,OAAO;;YACf,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;QAChC,CAAC;KAAA;IACD,UAAU,EAAE;QACV,KAAK,EAAE,aAAa;QACpB,cAAc,EAAE,kEAAkE;QAClF,IAAI,EAAE;YACJ,EAAE,EAAE,0BAA0B;YAC9B,QAAQ,EAAE,EAAE;SACb;KACF;CACF,CAAC,CAAC"}
@@ -1,2 +0,0 @@
1
- import { TriggerStrategy } from '@activepieces/pieces-framework';
2
- export declare const pageViewedTrigger: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").SecretTextProperty<true>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").SecretTextProperty<true>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").SecretTextProperty<true>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").SecretTextProperty<true>, {}>;
@@ -1,71 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.pageViewedTrigger = void 0;
4
- const tslib_1 = require("tslib");
5
- const pieces_framework_1 = require("@activepieces/pieces-framework");
6
- const pieces_common_1 = require("@activepieces/pieces-common");
7
- const auth_1 = require("../../lib/common/auth");
8
- const subscribeWebhook = (auth, event, targetUrl) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
9
- const response = yield pieces_common_1.httpClient.sendRequest({
10
- method: pieces_common_1.HttpMethod.POST,
11
- url: 'https://api.qwilr.com/v1/webhooks',
12
- headers: {
13
- 'Authorization': `Bearer ${auth}`,
14
- 'Content-Type': 'application/json'
15
- },
16
- body: {
17
- event,
18
- targetUrl
19
- }
20
- });
21
- return response.body;
22
- });
23
- const unsubscribeWebhook = (auth, subscriptionId) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
24
- yield pieces_common_1.httpClient.sendRequest({
25
- method: pieces_common_1.HttpMethod.DELETE,
26
- url: `https://api.qwilr.com/v1/webhooks/${subscriptionId}`,
27
- headers: {
28
- 'Authorization': `Bearer ${auth}`
29
- }
30
- });
31
- });
32
- exports.pageViewedTrigger = (0, pieces_framework_1.createTrigger)({
33
- auth: auth_1.qwilrAuth,
34
- name: 'page_viewed',
35
- displayName: 'Page Viewed',
36
- description: 'Triggers when a Qwilr page is viewed',
37
- type: pieces_framework_1.TriggerStrategy.WEBHOOK,
38
- props: {},
39
- onEnable(context) {
40
- return tslib_1.__awaiter(this, void 0, void 0, function* () {
41
- var _a;
42
- const webhookData = yield subscribeWebhook(context.auth.secret_text, 'pageViewed', context.webhookUrl);
43
- yield ((_a = context.store) === null || _a === void 0 ? void 0 : _a.put('_page_viewed_trigger', {
44
- subscriptionId: webhookData.id,
45
- }));
46
- });
47
- },
48
- onDisable(context) {
49
- return tslib_1.__awaiter(this, void 0, void 0, function* () {
50
- var _a;
51
- const response = yield ((_a = context.store) === null || _a === void 0 ? void 0 : _a.get('_page_viewed_trigger'));
52
- if (response !== null && response !== undefined) {
53
- yield unsubscribeWebhook(context.auth.secret_text, response.subscriptionId);
54
- }
55
- });
56
- },
57
- run(context) {
58
- return tslib_1.__awaiter(this, void 0, void 0, function* () {
59
- return [context.payload.body];
60
- });
61
- },
62
- sampleData: {
63
- event: 'pageViewed',
64
- idempotencyKey: 'b1c51b5b4844a81f7c3745002dbbd871fdda6cabe019961bcc79f972d924a2b0',
65
- page: {
66
- id: '6ee0f841f3cc8900090d82dc',
67
- metadata: {}
68
- }
69
- }
70
- });
71
- //# sourceMappingURL=page-viewed.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"page-viewed.js","sourceRoot":"","sources":["../../../../../../../../packages/pieces/community/qwilr/src/lib/triggers/page-viewed.ts"],"names":[],"mappings":";;;;AAAA,qEAAgF;AAChF,+DAAqE;AACrE,gDAAkD;AAElD,MAAM,gBAAgB,GAAG,CAAO,IAAY,EAAE,KAAa,EAAE,SAAiB,EAAE,EAAE;IAChF,MAAM,QAAQ,GAAG,MAAM,0BAAU,CAAC,WAAW,CAAC;QAC5C,MAAM,EAAE,0BAAU,CAAC,IAAI;QACvB,GAAG,EAAE,mCAAmC;QACxC,OAAO,EAAE;YACP,eAAe,EAAE,UAAU,IAAI,EAAE;YACjC,cAAc,EAAE,kBAAkB;SACnC;QACD,IAAI,EAAE;YACJ,KAAK;YACL,SAAS;SACV;KACF,CAAC,CAAC;IACH,OAAO,QAAQ,CAAC,IAAI,CAAC;AACvB,CAAC,CAAA,CAAC;AAEF,MAAM,kBAAkB,GAAG,CAAO,IAAY,EAAE,cAAsB,EAAE,EAAE;IACxE,MAAM,0BAAU,CAAC,WAAW,CAAC;QAC3B,MAAM,EAAE,0BAAU,CAAC,MAAM;QACzB,GAAG,EAAE,qCAAqC,cAAc,EAAE;QAC1D,OAAO,EAAE;YACP,eAAe,EAAE,UAAU,IAAI,EAAE;SAClC;KACF,CAAC,CAAC;AACL,CAAC,CAAA,CAAC;AAEW,QAAA,iBAAiB,GAAG,IAAA,gCAAa,EAAC;IAC7C,IAAI,EAAE,gBAAS;IACf,IAAI,EAAE,aAAa;IACnB,WAAW,EAAE,aAAa;IAC1B,WAAW,EAAE,sCAAsC;IACnD,IAAI,EAAE,kCAAe,CAAC,OAAO;IAC7B,KAAK,EAAE,EAAE;IACH,QAAQ,CAAC,OAAO;;;YACpB,MAAM,WAAW,GAAG,MAAM,gBAAgB,CACxC,OAAO,CAAC,IAAI,CAAC,WAAW,EACxB,YAAY,EACZ,OAAO,CAAC,UAAU,CACnB,CAAC;YAEF,MAAM,CAAA,MAAA,OAAO,CAAC,KAAK,0CAAE,GAAG,CAAC,sBAAsB,EAAE;gBAC/C,cAAc,EAAE,WAAW,CAAC,EAAE;aAC/B,CAAC,CAAA,CAAC;QACL,CAAC;KAAA;IACK,SAAS,CAAC,OAAO;;;YACrB,MAAM,QAAQ,GAAsC,MAAM,CAAA,MAAA,OAAO,CAAC,KAAK,0CAAE,GAAG,CAAC,sBAAsB,CAAC,CAAA,CAAC;YAErG,IAAI,QAAQ,KAAK,IAAI,IAAI,QAAQ,KAAK,SAAS,EAAE,CAAC;gBAChD,MAAM,kBAAkB,CAAC,OAAO,CAAC,IAAI,CAAC,WAAW,EAAE,QAAQ,CAAC,cAAc,CAAC,CAAC;YAC9E,CAAC;QACH,CAAC;KAAA;IACK,GAAG,CAAC,OAAO;;YACf,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;QAChC,CAAC;KAAA;IACD,UAAU,EAAE;QACV,KAAK,EAAE,YAAY;QACnB,cAAc,EAAE,kEAAkE;QAClF,IAAI,EAAE;YACJ,EAAE,EAAE,0BAA0B;YAC9B,QAAQ,EAAE,EAAE;SACb;KACF;CACF,CAAC,CAAC"}