[{"data":1,"prerenderedAt":1029},["ShallowReactive",2],{"footer-compare":3,"dynamicForm-newsletter":24,"mdc-yxx4ax-key":55,"\u002Fuse-cases\u002Forder-sync":75,"mdc-qbipk3-key":108,"mdc--fu1lsl-key":122,"mdc--wzlsaf-key":136},[4,8,12,16,20],{"path":5,"competitorName":6,"title":7},"\u002Fcompare\u002Fmake","Make","dataflows vs Make",{"path":9,"competitorName":10,"title":11},"\u002Fcompare\u002Fpipedream","Pipedream","dataflows vs Pipedream",{"path":13,"competitorName":14,"title":15},"\u002Fcompare\u002Fpower-automate","Power Automate","dataflows vs Power Automate",{"path":17,"competitorName":18,"title":19},"\u002Fcompare\u002Fzapier","Zapier","dataflows vs Zapier",{"path":21,"competitorName":22,"title":23},"\u002Fcompare\u002Fn8n","n8n","dataflows vs n8n",{"id":25,"title":26,"apiEndpoint":27,"body":28,"description":28,"extension":29,"fields":30,"mail":43,"meta":46,"navigation":35,"path":47,"seo":48,"stem":49,"submitButtonLabel":50,"successMsg":51,"__hash__":54},"forms\u002Fforms\u002Fnewsletter.yml","Newsletter","\u002Fapi\u002FdynamicFormsInbox",null,"yml",[31,38],{"name":32,"type":32,"label":33,"placeholder":34,"required":35,"validationError":36,"width":37},"email","Email","your@email.com",true,"Please enter a valid email address","full",{"name":39,"type":40,"label":41,"required":35,"validationError":42,"width":37},"privacy","checkbox","I agree to the [Privacy Policy](\u002Fprivacy)","You must agree to the privacy policy",{"to":44,"subject":45},"info@nbrx.com","New Newsletter Subscription",{},"\u002Fforms\u002Fnewsletter",{"title":26},"forms\u002Fnewsletter","Subscribe",{"title":52,"description":53},"Successfully subscribed","You will receive a confirmation email shortly.","9jNbCbi3ukyzmYA4p66npxcPS6f5NJ1U0M7vJ9PtbBM",{"data":56,"body":57},{},{"type":58,"children":59},"root",[60],{"type":61,"tag":62,"props":63,"children":64},"element","p",{},[65,68],{"type":66,"value":67},"text","I agree to the ",{"type":61,"tag":69,"props":70,"children":72},"a",{"href":71},"\u002Fprivacy",[73],{"type":66,"value":74},"Privacy Policy",{"id":76,"title":77,"body":28,"code":78,"description":79,"extension":29,"highlights":80,"industry":93,"meta":94,"navigation":35,"path":95,"problem":96,"seo":97,"solution":100,"stem":101,"systems":102,"__hash__":107},"useCases\u002Fuse-cases\u002Forder-sync.yml","Order Synchronization","\u002F\u002F Order sync workflow\nexport const orderSync = defineWorkflow({\n  id: 'order-sync',\n  trigger: shop.onOrderCreated(),\n\n  async run({ event, step }) {\n    const order = event.payload\n\n    const isNew = await step.run('persist', () =>\n      db.orders.insertIfMissing(order)\n    )\n    if (!isNew) return { status: 'skipped' }\n\n    await step.run('sync-erp', {\n      retries: 5,\n      backoff: 'exponential'\n    }, () =>\n      erp.createSalesOrder(order)\n    )\n\n    await step.run('sync-warehouse', () =>\n      warehouse.reserveStock(order)\n    )\n\n    await step.run('mark-synced', () =>\n      db.orders.update(order.id, { status: 'synced' })\n    )\n\n    return { status: 'synced' }\n  }\n})\n","Shop orders flow into ERP and warehouse in real time, even on peak days. With idempotency, retries and a full audit trail of every order.",[81,85,89],{"title":82,"description":83,"icon":84},"Never lose an order","Every order is saved in your own database first. Even if every external system fails.","i-lucide-database",{"title":86,"description":87,"icon":88},"Exactly once","Built in idempotency. Duplicate webhooks from the shop do not create duplicate orders.","i-lucide-refresh-cw",{"title":90,"description":91,"icon":92},"Survives peak load","Smart retries and backoff. Black Friday volume does not break the pipeline.","i-lucide-trending-up","E-Commerce & Retail",{},"\u002Fuse-cases\u002Forder-sync","Online orders need to land in the ERP for invoicing and in the warehouse for fulfillment. On a\nnormal day this is fine. On a campaign day, it is thousands of orders per minute, and any of\nthem can fail because the ERP is slow, the warehouse API is down, or the connection drops.\n\nLosing an order means losing money and losing trust. Processing the same order twice is just as\nbad. And once volume picks up, the simple \"send and pray\" integration that worked last year\nstarts dropping things silently.\n",{"title":98,"description":99},"Order Synchronization Automation","Reliable real time order sync from shop to ERP and warehouse, even at peak load.","dataflows handles every order as a durable workflow. The order is first saved in your own\ndatabase, so it is never lost. Then it is pushed to the ERP and the warehouse, with retries\nif either system is busy.\n\nEvery order is processed exactly once, even if the shop sends the webhook twice. If the ERP is\ndown, the workflow waits and retries instead of failing. If something is permanently broken, it\nshows up in the dashboard so the team can fix it without losing the order.\n","use-cases\u002Forder-sync",[103,104,105,106],"Shop","ERP","Warehouse","Database","-6i4fjVXV6SVpjZLIaXrJwNU_FqPo9nEv7vHRPWnw1A",{"data":109,"body":110},{},{"type":58,"children":111},[112,117],{"type":61,"tag":62,"props":113,"children":114},{},[115],{"type":66,"value":116},"Online orders need to land in the ERP for invoicing and in the warehouse for fulfillment. On a\nnormal day this is fine. On a campaign day, it is thousands of orders per minute, and any of\nthem can fail because the ERP is slow, the warehouse API is down, or the connection drops.",{"type":61,"tag":62,"props":118,"children":119},{},[120],{"type":66,"value":121},"Losing an order means losing money and losing trust. Processing the same order twice is just as\nbad. And once volume picks up, the simple \"send and pray\" integration that worked last year\nstarts dropping things silently.",{"data":123,"body":124},{},{"type":58,"children":125},[126,131],{"type":61,"tag":62,"props":127,"children":128},{},[129],{"type":66,"value":130},"dataflows handles every order as a durable workflow. The order is first saved in your own\ndatabase, so it is never lost. Then it is pushed to the ERP and the warehouse, with retries\nif either system is busy.",{"type":61,"tag":62,"props":132,"children":133},{},[134],{"type":66,"value":135},"Every order is processed exactly once, even if the shop sends the webhook twice. If the ERP is\ndown, the workflow waits and retries instead of failing. If something is permanently broken, it\nshows up in the dashboard so the team can fix it without losing the order.",{"data":137,"body":138},{},{"type":58,"children":139},[140,1023],{"type":61,"tag":141,"props":142,"children":147},"pre",{"className":143,"code":144,"language":145,"meta":146,"style":146},"language-typescript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u002F\u002F Order sync workflow\nexport const orderSync = defineWorkflow({\n  id: 'order-sync',\n  trigger: shop.onOrderCreated(),\n\n  async run({ event, step }) {\n    const order = event.payload\n\n    const isNew = await step.run('persist', () =>\n      db.orders.insertIfMissing(order)\n    )\n    if (!isNew) return { status: 'skipped' }\n\n    await step.run('sync-erp', {\n      retries: 5,\n      backoff: 'exponential'\n    }, () =>\n      erp.createSalesOrder(order)\n    )\n\n    await step.run('sync-warehouse', () =>\n      warehouse.reserveStock(order)\n    )\n\n    await step.run('mark-synced', () =>\n      db.orders.update(order.id, { status: 'synced' })\n    )\n\n    return { status: 'synced' }\n  }\n})\n\n","typescript","",[148],{"type":61,"tag":149,"props":150,"children":151},"code",{"__ignoreMap":146},[152,164,208,244,281,290,335,367,375,441,482,491,557,565,611,634,661,678,708,716,724,773,803,811,819,868,948,956,964,1001,1010],{"type":61,"tag":153,"props":154,"children":157},"span",{"class":155,"line":156},"line",1,[158],{"type":61,"tag":153,"props":159,"children":161},{"style":160},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[162],{"type":66,"value":163},"\u002F\u002F Order sync workflow\n",{"type":61,"tag":153,"props":165,"children":167},{"class":155,"line":166},2,[168,174,180,186,192,198,203],{"type":61,"tag":153,"props":169,"children":171},{"style":170},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[172],{"type":66,"value":173},"export",{"type":61,"tag":153,"props":175,"children":177},{"style":176},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[178],{"type":66,"value":179}," const",{"type":61,"tag":153,"props":181,"children":183},{"style":182},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[184],{"type":66,"value":185}," orderSync ",{"type":61,"tag":153,"props":187,"children":189},{"style":188},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[190],{"type":66,"value":191},"=",{"type":61,"tag":153,"props":193,"children":195},{"style":194},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[196],{"type":66,"value":197}," defineWorkflow",{"type":61,"tag":153,"props":199,"children":200},{"style":182},[201],{"type":66,"value":202},"(",{"type":61,"tag":153,"props":204,"children":205},{"style":188},[206],{"type":66,"value":207},"{\n",{"type":61,"tag":153,"props":209,"children":211},{"class":155,"line":210},3,[212,218,223,228,234,239],{"type":61,"tag":153,"props":213,"children":215},{"style":214},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[216],{"type":66,"value":217},"  id",{"type":61,"tag":153,"props":219,"children":220},{"style":188},[221],{"type":66,"value":222},":",{"type":61,"tag":153,"props":224,"children":225},{"style":188},[226],{"type":66,"value":227}," '",{"type":61,"tag":153,"props":229,"children":231},{"style":230},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[232],{"type":66,"value":233},"order-sync",{"type":61,"tag":153,"props":235,"children":236},{"style":188},[237],{"type":66,"value":238},"'",{"type":61,"tag":153,"props":240,"children":241},{"style":188},[242],{"type":66,"value":243},",\n",{"type":61,"tag":153,"props":245,"children":247},{"class":155,"line":246},4,[248,253,257,262,267,272,277],{"type":61,"tag":153,"props":249,"children":250},{"style":214},[251],{"type":66,"value":252},"  trigger",{"type":61,"tag":153,"props":254,"children":255},{"style":188},[256],{"type":66,"value":222},{"type":61,"tag":153,"props":258,"children":259},{"style":182},[260],{"type":66,"value":261}," shop",{"type":61,"tag":153,"props":263,"children":264},{"style":188},[265],{"type":66,"value":266},".",{"type":61,"tag":153,"props":268,"children":269},{"style":194},[270],{"type":66,"value":271},"onOrderCreated",{"type":61,"tag":153,"props":273,"children":274},{"style":182},[275],{"type":66,"value":276},"()",{"type":61,"tag":153,"props":278,"children":279},{"style":188},[280],{"type":66,"value":243},{"type":61,"tag":153,"props":282,"children":284},{"class":155,"line":283},5,[285],{"type":61,"tag":153,"props":286,"children":287},{"emptyLinePlaceholder":35},[288],{"type":66,"value":289},"\n",{"type":61,"tag":153,"props":291,"children":293},{"class":155,"line":292},6,[294,299,304,309,315,320,325,330],{"type":61,"tag":153,"props":295,"children":296},{"style":176},[297],{"type":66,"value":298},"  async",{"type":61,"tag":153,"props":300,"children":301},{"style":214},[302],{"type":66,"value":303}," run",{"type":61,"tag":153,"props":305,"children":306},{"style":188},[307],{"type":66,"value":308},"({",{"type":61,"tag":153,"props":310,"children":312},{"style":311},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[313],{"type":66,"value":314}," event",{"type":61,"tag":153,"props":316,"children":317},{"style":188},[318],{"type":66,"value":319},",",{"type":61,"tag":153,"props":321,"children":322},{"style":311},[323],{"type":66,"value":324}," step",{"type":61,"tag":153,"props":326,"children":327},{"style":188},[328],{"type":66,"value":329}," })",{"type":61,"tag":153,"props":331,"children":332},{"style":188},[333],{"type":66,"value":334}," {\n",{"type":61,"tag":153,"props":336,"children":338},{"class":155,"line":337},7,[339,344,349,354,358,362],{"type":61,"tag":153,"props":340,"children":341},{"style":176},[342],{"type":66,"value":343},"    const",{"type":61,"tag":153,"props":345,"children":346},{"style":182},[347],{"type":66,"value":348}," order",{"type":61,"tag":153,"props":350,"children":351},{"style":188},[352],{"type":66,"value":353}," =",{"type":61,"tag":153,"props":355,"children":356},{"style":182},[357],{"type":66,"value":314},{"type":61,"tag":153,"props":359,"children":360},{"style":188},[361],{"type":66,"value":266},{"type":61,"tag":153,"props":363,"children":364},{"style":182},[365],{"type":66,"value":366},"payload\n",{"type":61,"tag":153,"props":368,"children":370},{"class":155,"line":369},8,[371],{"type":61,"tag":153,"props":372,"children":373},{"emptyLinePlaceholder":35},[374],{"type":66,"value":289},{"type":61,"tag":153,"props":376,"children":378},{"class":155,"line":377},9,[379,383,388,392,397,401,405,410,414,418,423,427,431,436],{"type":61,"tag":153,"props":380,"children":381},{"style":176},[382],{"type":66,"value":343},{"type":61,"tag":153,"props":384,"children":385},{"style":182},[386],{"type":66,"value":387}," isNew",{"type":61,"tag":153,"props":389,"children":390},{"style":188},[391],{"type":66,"value":353},{"type":61,"tag":153,"props":393,"children":394},{"style":170},[395],{"type":66,"value":396}," await",{"type":61,"tag":153,"props":398,"children":399},{"style":182},[400],{"type":66,"value":324},{"type":61,"tag":153,"props":402,"children":403},{"style":188},[404],{"type":66,"value":266},{"type":61,"tag":153,"props":406,"children":407},{"style":194},[408],{"type":66,"value":409},"run",{"type":61,"tag":153,"props":411,"children":412},{"style":214},[413],{"type":66,"value":202},{"type":61,"tag":153,"props":415,"children":416},{"style":188},[417],{"type":66,"value":238},{"type":61,"tag":153,"props":419,"children":420},{"style":230},[421],{"type":66,"value":422},"persist",{"type":61,"tag":153,"props":424,"children":425},{"style":188},[426],{"type":66,"value":238},{"type":61,"tag":153,"props":428,"children":429},{"style":188},[430],{"type":66,"value":319},{"type":61,"tag":153,"props":432,"children":433},{"style":188},[434],{"type":66,"value":435}," ()",{"type":61,"tag":153,"props":437,"children":438},{"style":176},[439],{"type":66,"value":440}," =>\n",{"type":61,"tag":153,"props":442,"children":444},{"class":155,"line":443},10,[445,450,454,459,463,468,472,477],{"type":61,"tag":153,"props":446,"children":447},{"style":182},[448],{"type":66,"value":449},"      db",{"type":61,"tag":153,"props":451,"children":452},{"style":188},[453],{"type":66,"value":266},{"type":61,"tag":153,"props":455,"children":456},{"style":182},[457],{"type":66,"value":458},"orders",{"type":61,"tag":153,"props":460,"children":461},{"style":188},[462],{"type":66,"value":266},{"type":61,"tag":153,"props":464,"children":465},{"style":194},[466],{"type":66,"value":467},"insertIfMissing",{"type":61,"tag":153,"props":469,"children":470},{"style":214},[471],{"type":66,"value":202},{"type":61,"tag":153,"props":473,"children":474},{"style":182},[475],{"type":66,"value":476},"order",{"type":61,"tag":153,"props":478,"children":479},{"style":214},[480],{"type":66,"value":481},")\n",{"type":61,"tag":153,"props":483,"children":485},{"class":155,"line":484},11,[486],{"type":61,"tag":153,"props":487,"children":488},{"style":214},[489],{"type":66,"value":490},"    )\n",{"type":61,"tag":153,"props":492,"children":494},{"class":155,"line":493},12,[495,500,505,510,515,520,525,530,535,539,543,548,552],{"type":61,"tag":153,"props":496,"children":497},{"style":170},[498],{"type":66,"value":499},"    if",{"type":61,"tag":153,"props":501,"children":502},{"style":214},[503],{"type":66,"value":504}," (",{"type":61,"tag":153,"props":506,"children":507},{"style":188},[508],{"type":66,"value":509},"!",{"type":61,"tag":153,"props":511,"children":512},{"style":182},[513],{"type":66,"value":514},"isNew",{"type":61,"tag":153,"props":516,"children":517},{"style":214},[518],{"type":66,"value":519},") ",{"type":61,"tag":153,"props":521,"children":522},{"style":170},[523],{"type":66,"value":524},"return",{"type":61,"tag":153,"props":526,"children":527},{"style":188},[528],{"type":66,"value":529}," {",{"type":61,"tag":153,"props":531,"children":532},{"style":214},[533],{"type":66,"value":534}," status",{"type":61,"tag":153,"props":536,"children":537},{"style":188},[538],{"type":66,"value":222},{"type":61,"tag":153,"props":540,"children":541},{"style":188},[542],{"type":66,"value":227},{"type":61,"tag":153,"props":544,"children":545},{"style":230},[546],{"type":66,"value":547},"skipped",{"type":61,"tag":153,"props":549,"children":550},{"style":188},[551],{"type":66,"value":238},{"type":61,"tag":153,"props":553,"children":554},{"style":188},[555],{"type":66,"value":556}," }\n",{"type":61,"tag":153,"props":558,"children":560},{"class":155,"line":559},13,[561],{"type":61,"tag":153,"props":562,"children":563},{"emptyLinePlaceholder":35},[564],{"type":66,"value":289},{"type":61,"tag":153,"props":566,"children":568},{"class":155,"line":567},14,[569,574,578,582,586,590,594,599,603,607],{"type":61,"tag":153,"props":570,"children":571},{"style":170},[572],{"type":66,"value":573},"    await",{"type":61,"tag":153,"props":575,"children":576},{"style":182},[577],{"type":66,"value":324},{"type":61,"tag":153,"props":579,"children":580},{"style":188},[581],{"type":66,"value":266},{"type":61,"tag":153,"props":583,"children":584},{"style":194},[585],{"type":66,"value":409},{"type":61,"tag":153,"props":587,"children":588},{"style":214},[589],{"type":66,"value":202},{"type":61,"tag":153,"props":591,"children":592},{"style":188},[593],{"type":66,"value":238},{"type":61,"tag":153,"props":595,"children":596},{"style":230},[597],{"type":66,"value":598},"sync-erp",{"type":61,"tag":153,"props":600,"children":601},{"style":188},[602],{"type":66,"value":238},{"type":61,"tag":153,"props":604,"children":605},{"style":188},[606],{"type":66,"value":319},{"type":61,"tag":153,"props":608,"children":609},{"style":188},[610],{"type":66,"value":334},{"type":61,"tag":153,"props":612,"children":614},{"class":155,"line":613},15,[615,620,624,630],{"type":61,"tag":153,"props":616,"children":617},{"style":214},[618],{"type":66,"value":619},"      retries",{"type":61,"tag":153,"props":621,"children":622},{"style":188},[623],{"type":66,"value":222},{"type":61,"tag":153,"props":625,"children":627},{"style":626},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[628],{"type":66,"value":629}," 5",{"type":61,"tag":153,"props":631,"children":632},{"style":188},[633],{"type":66,"value":243},{"type":61,"tag":153,"props":635,"children":637},{"class":155,"line":636},16,[638,643,647,651,656],{"type":61,"tag":153,"props":639,"children":640},{"style":214},[641],{"type":66,"value":642},"      backoff",{"type":61,"tag":153,"props":644,"children":645},{"style":188},[646],{"type":66,"value":222},{"type":61,"tag":153,"props":648,"children":649},{"style":188},[650],{"type":66,"value":227},{"type":61,"tag":153,"props":652,"children":653},{"style":230},[654],{"type":66,"value":655},"exponential",{"type":61,"tag":153,"props":657,"children":658},{"style":188},[659],{"type":66,"value":660},"'\n",{"type":61,"tag":153,"props":662,"children":664},{"class":155,"line":663},17,[665,670,674],{"type":61,"tag":153,"props":666,"children":667},{"style":188},[668],{"type":66,"value":669},"    },",{"type":61,"tag":153,"props":671,"children":672},{"style":188},[673],{"type":66,"value":435},{"type":61,"tag":153,"props":675,"children":676},{"style":176},[677],{"type":66,"value":440},{"type":61,"tag":153,"props":679,"children":681},{"class":155,"line":680},18,[682,687,691,696,700,704],{"type":61,"tag":153,"props":683,"children":684},{"style":182},[685],{"type":66,"value":686},"      erp",{"type":61,"tag":153,"props":688,"children":689},{"style":188},[690],{"type":66,"value":266},{"type":61,"tag":153,"props":692,"children":693},{"style":194},[694],{"type":66,"value":695},"createSalesOrder",{"type":61,"tag":153,"props":697,"children":698},{"style":214},[699],{"type":66,"value":202},{"type":61,"tag":153,"props":701,"children":702},{"style":182},[703],{"type":66,"value":476},{"type":61,"tag":153,"props":705,"children":706},{"style":214},[707],{"type":66,"value":481},{"type":61,"tag":153,"props":709,"children":711},{"class":155,"line":710},19,[712],{"type":61,"tag":153,"props":713,"children":714},{"style":214},[715],{"type":66,"value":490},{"type":61,"tag":153,"props":717,"children":719},{"class":155,"line":718},20,[720],{"type":61,"tag":153,"props":721,"children":722},{"emptyLinePlaceholder":35},[723],{"type":66,"value":289},{"type":61,"tag":153,"props":725,"children":727},{"class":155,"line":726},21,[728,732,736,740,744,748,752,757,761,765,769],{"type":61,"tag":153,"props":729,"children":730},{"style":170},[731],{"type":66,"value":573},{"type":61,"tag":153,"props":733,"children":734},{"style":182},[735],{"type":66,"value":324},{"type":61,"tag":153,"props":737,"children":738},{"style":188},[739],{"type":66,"value":266},{"type":61,"tag":153,"props":741,"children":742},{"style":194},[743],{"type":66,"value":409},{"type":61,"tag":153,"props":745,"children":746},{"style":214},[747],{"type":66,"value":202},{"type":61,"tag":153,"props":749,"children":750},{"style":188},[751],{"type":66,"value":238},{"type":61,"tag":153,"props":753,"children":754},{"style":230},[755],{"type":66,"value":756},"sync-warehouse",{"type":61,"tag":153,"props":758,"children":759},{"style":188},[760],{"type":66,"value":238},{"type":61,"tag":153,"props":762,"children":763},{"style":188},[764],{"type":66,"value":319},{"type":61,"tag":153,"props":766,"children":767},{"style":188},[768],{"type":66,"value":435},{"type":61,"tag":153,"props":770,"children":771},{"style":176},[772],{"type":66,"value":440},{"type":61,"tag":153,"props":774,"children":776},{"class":155,"line":775},22,[777,782,786,791,795,799],{"type":61,"tag":153,"props":778,"children":779},{"style":182},[780],{"type":66,"value":781},"      warehouse",{"type":61,"tag":153,"props":783,"children":784},{"style":188},[785],{"type":66,"value":266},{"type":61,"tag":153,"props":787,"children":788},{"style":194},[789],{"type":66,"value":790},"reserveStock",{"type":61,"tag":153,"props":792,"children":793},{"style":214},[794],{"type":66,"value":202},{"type":61,"tag":153,"props":796,"children":797},{"style":182},[798],{"type":66,"value":476},{"type":61,"tag":153,"props":800,"children":801},{"style":214},[802],{"type":66,"value":481},{"type":61,"tag":153,"props":804,"children":806},{"class":155,"line":805},23,[807],{"type":61,"tag":153,"props":808,"children":809},{"style":214},[810],{"type":66,"value":490},{"type":61,"tag":153,"props":812,"children":814},{"class":155,"line":813},24,[815],{"type":61,"tag":153,"props":816,"children":817},{"emptyLinePlaceholder":35},[818],{"type":66,"value":289},{"type":61,"tag":153,"props":820,"children":822},{"class":155,"line":821},25,[823,827,831,835,839,843,847,852,856,860,864],{"type":61,"tag":153,"props":824,"children":825},{"style":170},[826],{"type":66,"value":573},{"type":61,"tag":153,"props":828,"children":829},{"style":182},[830],{"type":66,"value":324},{"type":61,"tag":153,"props":832,"children":833},{"style":188},[834],{"type":66,"value":266},{"type":61,"tag":153,"props":836,"children":837},{"style":194},[838],{"type":66,"value":409},{"type":61,"tag":153,"props":840,"children":841},{"style":214},[842],{"type":66,"value":202},{"type":61,"tag":153,"props":844,"children":845},{"style":188},[846],{"type":66,"value":238},{"type":61,"tag":153,"props":848,"children":849},{"style":230},[850],{"type":66,"value":851},"mark-synced",{"type":61,"tag":153,"props":853,"children":854},{"style":188},[855],{"type":66,"value":238},{"type":61,"tag":153,"props":857,"children":858},{"style":188},[859],{"type":66,"value":319},{"type":61,"tag":153,"props":861,"children":862},{"style":188},[863],{"type":66,"value":435},{"type":61,"tag":153,"props":865,"children":866},{"style":176},[867],{"type":66,"value":440},{"type":61,"tag":153,"props":869,"children":871},{"class":155,"line":870},26,[872,876,880,884,888,893,897,901,905,910,914,918,922,926,930,935,939,944],{"type":61,"tag":153,"props":873,"children":874},{"style":182},[875],{"type":66,"value":449},{"type":61,"tag":153,"props":877,"children":878},{"style":188},[879],{"type":66,"value":266},{"type":61,"tag":153,"props":881,"children":882},{"style":182},[883],{"type":66,"value":458},{"type":61,"tag":153,"props":885,"children":886},{"style":188},[887],{"type":66,"value":266},{"type":61,"tag":153,"props":889,"children":890},{"style":194},[891],{"type":66,"value":892},"update",{"type":61,"tag":153,"props":894,"children":895},{"style":214},[896],{"type":66,"value":202},{"type":61,"tag":153,"props":898,"children":899},{"style":182},[900],{"type":66,"value":476},{"type":61,"tag":153,"props":902,"children":903},{"style":188},[904],{"type":66,"value":266},{"type":61,"tag":153,"props":906,"children":907},{"style":182},[908],{"type":66,"value":909},"id",{"type":61,"tag":153,"props":911,"children":912},{"style":188},[913],{"type":66,"value":319},{"type":61,"tag":153,"props":915,"children":916},{"style":188},[917],{"type":66,"value":529},{"type":61,"tag":153,"props":919,"children":920},{"style":214},[921],{"type":66,"value":534},{"type":61,"tag":153,"props":923,"children":924},{"style":188},[925],{"type":66,"value":222},{"type":61,"tag":153,"props":927,"children":928},{"style":188},[929],{"type":66,"value":227},{"type":61,"tag":153,"props":931,"children":932},{"style":230},[933],{"type":66,"value":934},"synced",{"type":61,"tag":153,"props":936,"children":937},{"style":188},[938],{"type":66,"value":238},{"type":61,"tag":153,"props":940,"children":941},{"style":188},[942],{"type":66,"value":943}," }",{"type":61,"tag":153,"props":945,"children":946},{"style":214},[947],{"type":66,"value":481},{"type":61,"tag":153,"props":949,"children":951},{"class":155,"line":950},27,[952],{"type":61,"tag":153,"props":953,"children":954},{"style":214},[955],{"type":66,"value":490},{"type":61,"tag":153,"props":957,"children":959},{"class":155,"line":958},28,[960],{"type":61,"tag":153,"props":961,"children":962},{"emptyLinePlaceholder":35},[963],{"type":66,"value":289},{"type":61,"tag":153,"props":965,"children":967},{"class":155,"line":966},29,[968,973,977,981,985,989,993,997],{"type":61,"tag":153,"props":969,"children":970},{"style":170},[971],{"type":66,"value":972},"    return",{"type":61,"tag":153,"props":974,"children":975},{"style":188},[976],{"type":66,"value":529},{"type":61,"tag":153,"props":978,"children":979},{"style":214},[980],{"type":66,"value":534},{"type":61,"tag":153,"props":982,"children":983},{"style":188},[984],{"type":66,"value":222},{"type":61,"tag":153,"props":986,"children":987},{"style":188},[988],{"type":66,"value":227},{"type":61,"tag":153,"props":990,"children":991},{"style":230},[992],{"type":66,"value":934},{"type":61,"tag":153,"props":994,"children":995},{"style":188},[996],{"type":66,"value":238},{"type":61,"tag":153,"props":998,"children":999},{"style":188},[1000],{"type":66,"value":556},{"type":61,"tag":153,"props":1002,"children":1004},{"class":155,"line":1003},30,[1005],{"type":61,"tag":153,"props":1006,"children":1007},{"style":188},[1008],{"type":66,"value":1009},"  }\n",{"type":61,"tag":153,"props":1011,"children":1013},{"class":155,"line":1012},31,[1014,1019],{"type":61,"tag":153,"props":1015,"children":1016},{"style":188},[1017],{"type":66,"value":1018},"}",{"type":61,"tag":153,"props":1020,"children":1021},{"style":182},[1022],{"type":66,"value":481},{"type":61,"tag":1024,"props":1025,"children":1026},"style",{},[1027],{"type":66,"value":1028},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",1776512576302]