{"openapi":"3.1.0","info":{"title":"Inklura Platform API","version":"1.0.0","description":"The Inklura Platform API is tRPC. Each operation is a procedure called at `/api/trpc/<router>.<procedure>` with the superjson wire format: mutations are POST with body `{\"json\": <input>}`, queries are GET with `?input=<url-encoded {\"json\": <input>}>`. The request body shown is that `json` payload; responses are superjson-wrapped as `{\"result\":{\"data\":{\"json\": <result>}}}` (the response schema shown, when present, is that `json` result). All requests authenticate with a Bearer JWT. Generated from the live routers' schemas. See https://docs.inklura.fr/api-reference/trpc."},"servers":[{"url":"https://manage.inklura.fr","description":"Production"}],"security":[{"bearerAuth":[]}],"components":{"securitySchemes":{"bearerAuth":{"type":"http","scheme":"bearer","bearerFormat":"JWT","description":"Session JWT (see /api-reference/authentication)."}}},"tags":[{"name":"accounting"},{"name":"articles"},{"name":"auth"},{"name":"billing"},{"name":"campaignPerformance"},{"name":"campaigns"},{"name":"chat"},{"name":"classifiedAds"},{"name":"clickCollect"},{"name":"clients"},{"name":"cms"},{"name":"communications"},{"name":"coupons"},{"name":"delivery"},{"name":"emailAnalytics"},{"name":"emailTemplates"},{"name":"emails"},{"name":"feedApiKeys"},{"name":"floorPlans"},{"name":"forms"},{"name":"helpdeskKb"},{"name":"inventory"},{"name":"invoices"},{"name":"liveChat"},{"name":"magazinePublications"},{"name":"magazineSubscriptions"},{"name":"marketingCampaigns"},{"name":"medias"},{"name":"newsletter"},{"name":"onboarding"},{"name":"orders"},{"name":"payments"},{"name":"posLoyalty"},{"name":"posManagement"},{"name":"posOrders"},{"name":"posts"},{"name":"products"},{"name":"profile"},{"name":"recurringInvoices"},{"name":"saasAddons"},{"name":"saasPlans"},{"name":"sections"},{"name":"segments"},{"name":"settings"},{"name":"shipping"},{"name":"site"},{"name":"slider"},{"name":"stockActions"},{"name":"stripe"},{"name":"subscriptions"},{"name":"support"},{"name":"tablePayment"},{"name":"tableReservations"},{"name":"taxRates"},{"name":"tiers"},{"name":"users"},{"name":"vendors"},{"name":"vouchers"}],"paths":{"/api/trpc/auth.getSession":{"get":{"operationId":"auth_getSession","summary":"Get Session","tags":["auth"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema"}},"required":["json"]}}}}}},"/api/trpc/auth.getProfile":{"get":{"operationId":"auth_getProfile","summary":"Get Profile","tags":["auth"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema"}},"required":["json"]}}}}}},"/api/trpc/auth.canAccessManage":{"get":{"operationId":"auth_canAccessManage","summary":"Can Access Manage","tags":["auth"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"allowed":{"type":"boolean"}},"required":["allowed"],"additionalProperties":false}}}}}}},"/api/trpc/auth.login":{"post":{"operationId":"auth_login","summary":"Login","tags":["auth"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"password":{"type":"string","minLength":1},"site":{"type":"string"}},"required":["email","password"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/auth.register":{"post":{"operationId":"auth_register","summary":"Register","tags":["auth"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"password":{"type":"string","minLength":8,"allOf":[{"pattern":"[A-Z]"},{"pattern":"[a-z]"},{"pattern":"[0-9]"},{"pattern":"[^A-Za-z0-9]"}]},"confirmPassword":{"type":"string","minLength":1},"firstName":{"type":"string","minLength":2},"lastName":{"type":"string","minLength":2},"isArchitect":{"type":"boolean"}},"required":["email","password","confirmPassword","firstName","lastName"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/auth.getUserInfo":{"get":{"operationId":"auth_getUserInfo","summary":"Get User Info","tags":["auth"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"input":{"type":"string"},"ok":{"type":"boolean"},"user":{}},"required":["input","ok","user"],"additionalProperties":false}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"email":{"type":"string"}},"required":["email"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/auth.requestPasswordReset":{"post":{"operationId":"auth_requestPasswordReset","summary":"Request Password Reset","tags":["auth"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"success":{"type":"boolean"},"message":{"type":"string"}},"required":["success","message"],"additionalProperties":false}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"}},"required":["email"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/auth.signup":{"post":{"operationId":"auth_signup","summary":"Signup","tags":["auth"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"password":{"type":"string","minLength":8},"firstName":{"type":"string","minLength":1},"lastName":{"type":"string","minLength":1}},"required":["email","password","firstName","lastName"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/auth.verifyEmail":{"post":{"operationId":"auth_verifyEmail","summary":"Verify Email","tags":["auth"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"token":{"type":"string","minLength":32}},"required":["token"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/auth.resendVerificationEmail":{"post":{"operationId":"auth_resendVerificationEmail","summary":"Resend Verification Email","tags":["auth"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/auth.getSecretMessage":{"get":{"operationId":"auth_getSecretMessage","summary":"Get Secret Message","tags":["auth"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"string"}}}}}}},"/api/trpc/auth.bridgeOidc":{"post":{"operationId":"auth_bridgeOidc","summary":"Bridge Oidc","tags":["auth"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"userId":{"type":"string"},"email":{"type":"string"},"firstName":{"type":"string"},"lastName":{"type":"string"},"name":{"type":"string"},"role":{"type":"string","enum":["particulier","pro"]},"proStatus":{"type":"string","enum":["pending","active","refused"]},"tenantId":{"type":"string"},"siteId":{"type":"string"}},"required":["userId","email","firstName","lastName","name","role","tenantId","siteId"],"additionalProperties":false}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"sub":{"type":"string","minLength":1},"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"firstName":{"anyOf":[{"type":"string"},{"type":"null"}]},"lastName":{"anyOf":[{"type":"string"},{"type":"null"}]},"name":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["sub","email"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/profile.getProfile":{"get":{"operationId":"profile_getProfile","summary":"Get Profile","tags":["profile"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/profile.updateProfile":{"post":{"operationId":"profile_updateProfile","summary":"Update Profile","tags":["profile"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string"},"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"firstName":{"type":"string"},"lastName":{"type":"string"},"title":{"type":"string"},"phone":{"type":"string"},"image":{"type":"string"},"data":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/profile.updatePassword":{"post":{"operationId":"profile_updatePassword","summary":"Update Password","tags":["profile"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"currentPassword":{"type":"string","minLength":1},"newPassword":{"type":"string","minLength":8},"confirmPassword":{"type":"string","minLength":8}},"required":["currentPassword","newPassword","confirmPassword"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/profile.updatePreferences":{"post":{"operationId":"profile_updatePreferences","summary":"Update Preferences","tags":["profile"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"theme":{"type":"string","enum":["light","dark","system"]},"language":{"type":"string"},"notifications":{"type":"object","properties":{"email":{"type":"boolean"},"browser":{"type":"boolean"},"app":{"type":"boolean"}},"additionalProperties":false},"dashboard":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}},"sidebar":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/profile.getPreferences":{"get":{"operationId":"profile_getPreferences","summary":"Get Preferences","tags":["profile"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/profile.getActivityHistory":{"get":{"operationId":"profile_getActivityHistory","summary":"Get Activity History","tags":["profile"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/profile.getEntityManagerPreferences":{"get":{"operationId":"profile_getEntityManagerPreferences","summary":"Get Entity Manager Preferences","tags":["profile"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/profile.updateEntityManagerPreferences":{"post":{"operationId":"profile_updateEntityManagerPreferences","summary":"Update Entity Manager Preferences","tags":["profile"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"global":{"type":"object","properties":{"fontSize":{"type":"string","enum":["small","medium","large"]},"density":{"type":"string","enum":["compact","comfortable","spacious"]},"theme":{"type":"string","enum":["light","dark","system"]},"animations":{"type":"boolean"},"defaultPageSize":{"type":"number"},"defaultViewMode":{"type":"string","enum":["list","card"]},"buttonSize":{"type":"string","enum":["xs","sm","md","lg"]},"inputSize":{"type":"string","enum":["sm","md","lg"]},"iconSize":{"type":"string","enum":["sm","md","lg"]},"borderRadius":{"type":"string","enum":["none","sm","md","lg","full"]},"spacingScale":{"type":"string","enum":["compact","default","relaxed"]},"detailPanelWidth":{"type":"string","enum":["narrow","medium","wide","full"]},"detailPanelPosition":{"type":"string","enum":["right","bottom","modal"]},"detailPanelShowSidebar":{"type":"boolean"}},"additionalProperties":false},"screens":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"object","properties":{"viewMode":{"type":"string","enum":["list","card"]},"columnWidths":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"number"}},"hiddenColumns":{"type":"array","items":{"type":"string"}},"rowHeight":{"type":"string","enum":["compact","default","relaxed"]},"pageSize":{"type":"number"},"sortColumn":{"type":"string"},"sortDirection":{"type":"string","enum":["asc","desc"]}},"additionalProperties":false}}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/profile.resetEntityManagerPreferences":{"post":{"operationId":"profile_resetEntityManagerPreferences","summary":"Reset Entity Manager Preferences","tags":["profile"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/profile.getNewsletterPreferences":{"get":{"operationId":"profile_getNewsletterPreferences","summary":"Get Newsletter Preferences","tags":["profile"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/profile.updateNewsletterPreferences":{"post":{"operationId":"profile_updateNewsletterPreferences","summary":"Update Newsletter Preferences","tags":["profile"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"pressNewsletterOptIn":{"type":"boolean"},"preferredMagazineTypes":{"type":"array","items":{"type":"string"}},"subscribedNewsletters":{"type":"array","items":{"type":"string"}},"emailFrequency":{"type":"string","enum":["immediate","daily","weekly"]}},"required":["pressNewsletterOptIn","preferredMagazineTypes","subscribedNewsletters","emailFrequency"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/accounting.getAccounts":{"get":{"operationId":"accounting_getAccounts","summary":"Get Accounts","tags":["accounting"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"accounts":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"code":{"type":"string"},"name":{"type":"string"},"accountType":{"type":"string"},"accountCategory":{},"parentId":{},"isActive":{"type":"boolean"},"isReconcilable":{"type":"boolean"},"isTaxAccount":{"type":"boolean"},"allowManualEntry":{"type":"boolean"},"description":{},"debitBalance":{"type":"string"},"creditBalance":{"type":"string"},"currentBalance":{"type":"string"},"tenantId":{"type":"string"},"siteId":{},"createdById":{"type":"string"},"updatedById":{},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"taxConfigId":{},"parent":{},"children":{"type":"array","items":{}},"taxConfig":{}}}},"total":{"type":"integer"},"page":{"type":"integer"},"limit":{"type":"integer"},"hasMore":{"type":"boolean"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"number","minimum":1},"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"search":{"type":"string"},"accountType":{"type":"string","enum":["ASSET","LIABILITY","EQUITY","INCOME","EXPENSE"]},"parentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"includeInactive":{"default":false,"type":"boolean"}},"required":["page","limit","includeInactive"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/accounting.createAccount":{"post":{"operationId":"accounting_createAccount","summary":"Create Account","tags":["accounting"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"code":{"type":"string","minLength":1,"maxLength":20},"name":{"type":"string","minLength":1,"maxLength":100},"accountType":{"type":"string","enum":["ASSET","LIABILITY","EQUITY","INCOME","EXPENSE"]},"accountCategory":{"type":"string","enum":["CURRENT_ASSETS","NON_CURRENT_ASSETS","CASH_AND_BANK","ACCOUNTS_RECEIVABLE","INVENTORY","PREPAID_EXPENSES","CURRENT_LIABILITIES","NON_CURRENT_LIABILITIES","ACCOUNTS_PAYABLE","ACCRUED_EXPENSES","SHARE_CAPITAL","RETAINED_EARNINGS","SALES_REVENUE","OTHER_INCOME","COST_OF_GOODS_SOLD","OPERATING_EXPENSES","ADMINISTRATIVE_EXPENSES","FINANCIAL_EXPENSES"]},"parentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"isReconcilable":{"default":false,"type":"boolean"},"isTaxAccount":{"default":false,"type":"boolean"},"allowManualEntry":{"default":true,"type":"boolean"},"description":{"type":"string"}},"required":["code","name","accountType","accountCategory","isReconcilable","isTaxAccount","allowManualEntry"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/accounting.updateAccount":{"post":{"operationId":"accounting_updateAccount","summary":"Update Account","tags":["accounting"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"code":{"type":"string","minLength":1,"maxLength":20},"name":{"type":"string","minLength":1,"maxLength":100},"accountType":{"type":"string","enum":["ASSET","LIABILITY","EQUITY","INCOME","EXPENSE"]},"accountCategory":{"type":"string","enum":["CURRENT_ASSETS","NON_CURRENT_ASSETS","CASH_AND_BANK","ACCOUNTS_RECEIVABLE","INVENTORY","PREPAID_EXPENSES","CURRENT_LIABILITIES","NON_CURRENT_LIABILITIES","ACCOUNTS_PAYABLE","ACCRUED_EXPENSES","SHARE_CAPITAL","RETAINED_EARNINGS","SALES_REVENUE","OTHER_INCOME","COST_OF_GOODS_SOLD","OPERATING_EXPENSES","ADMINISTRATIVE_EXPENSES","FINANCIAL_EXPENSES"]},"parentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"isReconcilable":{"default":false,"type":"boolean"},"isTaxAccount":{"default":false,"type":"boolean"},"allowManualEntry":{"default":true,"type":"boolean"},"description":{"type":"string"},"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/accounting.deleteAccount":{"post":{"operationId":"accounting_deleteAccount","summary":"Delete Account","tags":["accounting"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/accounting.bulkDeleteAccounts":{"post":{"operationId":"accounting_bulkDeleteAccounts","summary":"Bulk Delete Accounts","tags":["accounting"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"ids":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}}},"required":["ids"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/accounting.getAccountHierarchy":{"get":{"operationId":"accounting_getAccountHierarchy","summary":"Get Account Hierarchy","tags":["accounting"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/accounting.getJournals":{"get":{"operationId":"accounting_getJournals","summary":"Get Journals","tags":["accounting"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"journals":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"code":{"type":"string"},"type":{"type":"string"},"isActive":{"type":"boolean"},"tenantId":{"type":"string"},"createdBy":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"_count":{"type":"object","properties":{"entries":{"type":"integer"}}},"entryCount":{"type":"integer"}}}},"total":{"type":"integer"}}}}}}}}},"/api/trpc/accounting.createJournal":{"post":{"operationId":"accounting_createJournal","summary":"Create Journal","tags":["accounting"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1,"maxLength":100},"code":{"type":"string","minLength":1,"maxLength":10},"type":{"type":"string","enum":["SALE","PURCHASE","CASH","BANK","GENERAL","MISCELLANEOUS"]},"defaultDebitAccountId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"defaultCreditAccountId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["name","code","type"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/accounting.updateJournal":{"post":{"operationId":"accounting_updateJournal","summary":"Update Journal","tags":["accounting"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1,"maxLength":100},"code":{"type":"string","minLength":1,"maxLength":10},"type":{"type":"string","enum":["SALE","PURCHASE","CASH","BANK","GENERAL","MISCELLANEOUS"]},"defaultDebitAccountId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"defaultCreditAccountId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/accounting.deleteJournal":{"post":{"operationId":"accounting_deleteJournal","summary":"Delete Journal","tags":["accounting"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/accounting.getJournalEntries":{"get":{"operationId":"accounting_getJournalEntries","summary":"Get Journal Entries","tags":["accounting"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"entries":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"reference":{"type":"string"},"name":{"type":"string"},"date":{"type":"string"},"state":{"type":"string"},"journalId":{"type":"string"},"totalDebit":{"type":"string"},"totalCredit":{"type":"string"},"sourceModel":{},"sourceId":{},"tenantId":{"type":"string"},"createdBy":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"lines":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{},"entryId":{"type":"string"},"accountId":{"type":"string"},"debit":{"type":"string"},"credit":{"type":"string"},"partnerId":{},"taxId":{},"reconciled":{"type":"boolean"},"reconcileId":{},"bankTransactionId":{},"tenantId":{"type":"string"},"account":{"type":"object","properties":{"id":{"type":"string"},"code":{"type":"string"},"name":{"type":"string"},"accountType":{"type":"string"},"accountCategory":{},"parentId":{},"isActive":{"type":"boolean"},"isReconcilable":{"type":"boolean"},"isTaxAccount":{"type":"boolean"},"allowManualEntry":{"type":"boolean"},"description":{},"debitBalance":{"type":"string"},"creditBalance":{"type":"string"},"currentBalance":{"type":"string"},"tenantId":{"type":"string"},"siteId":{},"createdById":{"type":"string"},"updatedById":{},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"taxConfigId":{}}}}}},"journal":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"code":{"type":"string"},"type":{"type":"string"},"isActive":{"type":"boolean"},"tenantId":{"type":"string"},"createdBy":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}}}}}},"total":{"type":"integer"},"page":{"type":"integer"},"limit":{"type":"integer"},"hasMore":{"type":"boolean"},"summary":{"type":"object","properties":{"totalDebit":{"type":"integer"},"totalCredit":{"type":"integer"},"entryCount":{"type":"integer"}}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"number","minimum":1},"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"dateFrom":{},"dateTo":{},"journalId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"state":{"type":"string","enum":["DRAFT","POSTED","CANCELLED"]},"accountId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"partnerId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["page","limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/accounting.createJournalEntry":{"post":{"operationId":"accounting_createJournalEntry","summary":"Create Journal Entry","tags":["accounting"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"reference":{"type":"string","minLength":1},"name":{"type":"string"},"date":{"default":"2026-07-04T08:32:13.722Z"},"journalId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"lines":{"minItems":2,"type":"array","items":{"type":"object","properties":{"accountId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"name":{"type":"string"},"debit":{"default":0,"type":"number","minimum":0},"credit":{"default":0,"type":"number","minimum":0},"partnerId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"taxId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["accountId","debit","credit"],"additionalProperties":false}},"sourceModel":{"type":"string"},"sourceId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["reference","date","journalId","lines"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/accounting.postJournalEntry":{"post":{"operationId":"accounting_postJournalEntry","summary":"Post Journal Entry","tags":["accounting"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/accounting.bulkPostJournalEntries":{"post":{"operationId":"accounting_bulkPostJournalEntries","summary":"Bulk Post Journal Entries","tags":["accounting"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"ids":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}}},"required":["ids"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/accounting.bulkDeleteJournalEntries":{"post":{"operationId":"accounting_bulkDeleteJournalEntries","summary":"Bulk Delete Journal Entries","tags":["accounting"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"ids":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}}},"required":["ids"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/accounting.getTaxConfigurations":{"get":{"operationId":"accounting_getTaxConfigurations","summary":"Get Tax Configurations","tags":["accounting"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"taxConfigs":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"code":{"type":"string"},"rate":{"type":"string"},"type":{"type":"string"},"isActive":{"type":"boolean"},"tenantId":{"type":"string"},"createdBy":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"accounts":{"type":"array","items":{}}}}},"total":{"type":"integer"}}}}}}}}},"/api/trpc/accounting.createTaxConfiguration":{"post":{"operationId":"accounting_createTaxConfiguration","summary":"Create Tax Configuration","tags":["accounting"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1,"maxLength":100},"code":{"type":"string","minLength":1,"maxLength":10},"rate":{"type":"number","minimum":0,"maximum":1},"type":{"type":"string","enum":["SALES","PURCHASE"]},"accountId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["name","code","rate","type"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/accounting.updateTaxConfiguration":{"post":{"operationId":"accounting_updateTaxConfiguration","summary":"Update Tax Configuration","tags":["accounting"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1,"maxLength":100},"code":{"type":"string","minLength":1,"maxLength":10},"rate":{"type":"number","minimum":0,"maximum":1},"type":{"type":"string","enum":["SALES","PURCHASE"]},"accountId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/accounting.deleteTaxConfiguration":{"post":{"operationId":"accounting_deleteTaxConfiguration","summary":"Delete Tax Configuration","tags":["accounting"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/accounting.getTrialBalance":{"get":{"operationId":"accounting_getTrialBalance","summary":"Get Trial Balance","tags":["accounting"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"dateFrom":{},"dateTo":{},"accountIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"includeZeroBalance":{"default":false,"type":"boolean"}},"required":["dateFrom","dateTo","includeZeroBalance"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/accounting.getBalanceSheet":{"get":{"operationId":"accounting_getBalanceSheet","summary":"Get Balance Sheet","tags":["accounting"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"asOfDate":{},"includeComparative":{"default":false,"type":"boolean"}},"required":["asOfDate","includeComparative"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/accounting.getProfitLoss":{"get":{"operationId":"accounting_getProfitLoss","summary":"Get Profit Loss","tags":["accounting"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"dateFrom":{},"dateTo":{},"includeComparative":{"default":false,"type":"boolean"}},"required":["dateFrom","dateTo","includeComparative"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/accounting.reconcileAccount":{"post":{"operationId":"accounting_reconcileAccount","summary":"Reconcile Account","tags":["accounting"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"accountId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"statementDate":{},"statementBalance":{"type":"number"},"reconciledTransactionIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}}},"required":["accountId","statementDate","statementBalance","reconciledTransactionIds"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/accounting.importJournalEntries":{"post":{"operationId":"accounting_importJournalEntries","summary":"Import Journal Entries","tags":["accounting"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"entries":{"type":"array","items":{"type":"object","properties":{"reference":{"type":"string","minLength":1},"name":{"type":"string"},"date":{"default":"2026-07-04T08:32:13.722Z"},"journalId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"lines":{"minItems":2,"type":"array","items":{"type":"object","properties":{"accountId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"name":{"type":"string"},"debit":{"default":0,"type":"number","minimum":0},"credit":{"default":0,"type":"number","minimum":0},"partnerId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"taxId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["accountId","debit","credit"],"additionalProperties":false}},"sourceModel":{"type":"string"},"sourceId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["reference","date","journalId","lines"],"additionalProperties":false}},"journalId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"validateOnly":{"default":false,"type":"boolean"}},"required":["entries","journalId","validateOnly"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/accounting.exportJournalEntries":{"post":{"operationId":"accounting_exportJournalEntries","summary":"Export Journal Entries","tags":["accounting"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"dateFrom":{},"dateTo":{},"journalId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"accountId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"format":{"default":"CSV","type":"string","enum":["CSV","XLSX","PDF"]}},"required":["dateFrom","format"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/accounting.generateReport":{"post":{"operationId":"accounting_generateReport","summary":"Generate Report","tags":["accounting"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"reportType":{"type":"string","enum":["TRIAL_BALANCE","BALANCE_SHEET","PROFIT_LOSS","CASH_FLOW","ACCOUNT_LEDGER","AGING_REPORT"]},"dateFrom":{},"dateTo":{},"accountIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"format":{"default":"PDF","type":"string","enum":["PDF","XLSX","CSV"]},"includeComparative":{"default":false,"type":"boolean"},"comparativeDateFrom":{},"comparativeDateTo":{}},"required":["reportType","dateFrom","format","includeComparative"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/accounting.getAuditTrail":{"get":{"operationId":"accounting_getAuditTrail","summary":"Get Audit Trail","tags":["accounting"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"entityType":{"type":"string","enum":["ACCOUNT","JOURNAL_ENTRY","TRANSACTION"]},"entityId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"page":{"default":1,"type":"number","minimum":1},"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"dateFrom":{},"dateTo":{},"userId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["entityType","entityId","page","limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/billing.setupBilling":{"post":{"operationId":"billing_setupBilling","summary":"Setup Billing","tags":["billing"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"planId":{"type":"string","minLength":1},"billingCycle":{"type":"string","enum":["monthly","yearly"]},"paymentMethod":{"type":"object","properties":{"type":{"type":"string","enum":["card","sepa","invoice"]},"cardNumber":{"type":"string"},"cardExpiry":{"type":"string"},"cardCvc":{"type":"string"},"cardName":{"type":"string"},"iban":{"type":"string"},"accountHolder":{"type":"string"},"isDefault":{"default":false,"type":"boolean"}},"required":["type","isDefault"],"additionalProperties":false},"billingAddress":{"type":"object","properties":{"street":{"type":"string","minLength":1},"city":{"type":"string","minLength":1},"postalCode":{"type":"string","minLength":1},"country":{"type":"string","minLength":1},"state":{"type":"string"}},"required":["street","city","postalCode","country"],"additionalProperties":false},"companyName":{"type":"string","minLength":1},"vatNumber":{"type":"string"},"acceptTerms":{"type":"boolean"}},"required":["tenantId","planId","billingCycle","paymentMethod","billingAddress","companyName","acceptTerms"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/billing.getBillingInfo":{"get":{"operationId":"billing_getBillingInfo","summary":"Get Billing Info","tags":["billing"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["tenantId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/billing.getPaymentMethods":{"get":{"operationId":"billing_getPaymentMethods","summary":"Get Payment Methods","tags":["billing"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["tenantId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/billing.updatePaymentMethod":{"post":{"operationId":"billing_updatePaymentMethod","summary":"Update Payment Method","tags":["billing"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"paymentMethodId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"paymentMethod":{"type":"object","properties":{"type":{"type":"string","enum":["card","sepa","invoice"]},"cardNumber":{"type":"string"},"cardExpiry":{"type":"string"},"cardCvc":{"type":"string"},"cardName":{"type":"string"},"iban":{"type":"string"},"accountHolder":{"type":"string"},"isDefault":{"default":false,"type":"boolean"}},"required":["type","isDefault"],"additionalProperties":false}},"required":["tenantId","paymentMethodId","paymentMethod"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/billing.createSubscription":{"post":{"operationId":"billing_createSubscription","summary":"Create Subscription","tags":["billing"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"planId":{"type":"string","minLength":1},"billingCycle":{"type":"string","enum":["monthly","yearly"]},"paymentMethodId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["tenantId","planId","billingCycle","paymentMethodId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/billing.cancelSubscription":{"post":{"operationId":"billing_cancelSubscription","summary":"Cancel Subscription","tags":["billing"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"subscriptionId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"reason":{"type":"string"}},"required":["tenantId","subscriptionId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/billing.getBillingHistory":{"get":{"operationId":"billing_getBillingHistory","summary":"Get Billing History","tags":["billing"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["tenantId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/products.byPackagingType":{"get":{"operationId":"products_byPackagingType","summary":"By Packaging Type","tags":["products"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"packagingTypeId":{"type":"string"},"page":{"default":0,"type":"number"},"limit":{"default":50,"type":"number"}},"required":["packagingTypeId","page","limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/products.list":{"get":{"operationId":"products_list","summary":"List","tags":["products"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"reference":{"type":"string"},"plenigoOfferId":{},"plenigoAccessRightUniqueId":{},"name":{"type":"string"},"description":{"type":"string"},"price":{"type":"number"},"salePrice":{"type":"integer"},"proPrice":{},"purchasePrice":{"type":"integer"},"stock":{"type":"integer"},"stockLedger":{"type":"integer"},"isBuyable":{"type":"boolean"},"sku":{"type":"string"},"isGeneric":{"type":"boolean"},"magazineEditionId":{},"siteId":{"type":"string"},"productType":{"type":"string"},"manageStock":{"type":"boolean"},"lowStockThreshold":{},"soldIndividually":{"type":"boolean"},"weight":{},"length":{},"width":{},"height":{},"purchaseNote":{},"menuOrder":{},"data":{"type":"object","properties":{"lastSync":{"type":"string"},"prestashop_id":{"type":"string"},"referenceUnit":{"type":"string"},"prestashop_data":{"type":"object","properties":{"mpn":{"type":"string"},"upc":{"type":"string"},"isbn":{},"name":{"type":"string"},"rate":{"type":"integer"},"depth":{"type":"string"},"ean13":{"type":"string"},"price":{"type":"string"},"state":{"type":"string"},"unity":{"type":"string"},"width":{"type":"string"},"active":{"type":"string"},"ecotax":{"type":"string"},"height":{"type":"string"},"weight":{"type":"string"},"id_lang":{"type":"string"},"id_shop":{"type":"string"},"indexed":{"type":"string"},"on_sale":{"type":"string"},"date_add":{"type":"string"},"date_upd":{"type":"string"},"location":{"type":"string"},"quantity":{"type":"string"},"tax_name":{"type":"string"},"condition":{"type":"string"},"reference":{"type":"string"},"id_product":{"type":"string"},"is_virtual":{"type":"string"},"meta_title":{"type":"string"},"show_price":{"type":"string"},"visibility":{"type":"string"},"description":{"type":"string"},"final_price":{"type":"string"},"id_supplier":{"type":"string"},"online_only":{"type":"string"},"text_fields":{"type":"string"},"customizable":{"type":"string"},"link_rewrite":{"type":"string"},"out_of_stock":{"type":"string"},"product_type":{"type":"string"},"available_now":{"type":"string"},"cache_is_pack":{"type":"string"},"meta_keywords":{"type":"string"},"redirect_type":{"type":"string"},"supplier_name":{},"available_date":{"type":"string"},"show_condition":{"type":"string"},"available_later":{"type":"string"},"id_manufacturer":{"type":"string"},"id_shop_default":{"type":"string"},"low_stock_alert":{"type":"string"},"pack_stock_type":{"type":"string"},"wholesale_price":{"type":"string"},"meta_description":{"type":"string"},"minimal_quantity":{"type":"string"},"unit_price_ratio":{"type":"string"},"uploadable_files":{"type":"string"},"bundle_components":{"type":"array","items":{}},"delivery_in_stock":{},"description_short":{"type":"string"},"linked_categories":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"slug":{"type":"string"},"position":{"type":"integer"},"id_category":{"type":"integer"}}}},"manufacturer_name":{},"quantity_discount":{"type":"string"},"delivery_out_stock":{},"id_tax_rules_group":{"type":"string"},"id_type_redirected":{"type":"string"},"supplier_reference":{"type":"string"},"available_for_order":{"type":"string"},"id_category_default":{"type":"string"},"low_stock_threshold":{},"cache_has_attachments":{"type":"string"},"cache_default_attribute":{"type":"string"},"additional_shipping_cost":{"type":"string"},"additional_delivery_times":{"type":"string"},"advanced_stock_management":{"type":"string"}}},"referenceSaleQuantity":{"type":"integer"},"referencePurchaseQuantity":{"type":"integer"}}},"manufacturer":{"type":"string"},"taxRate":{"type":"number"},"active":{"type":"boolean"},"defaultVendorId":{"type":"string"},"packagingTypeId":{"type":"string"},"packagingQuantity":{"type":"integer"},"packagingUnit":{"type":"string"},"saleDetail":{"type":"string"},"saleQuantity":{"type":"integer"},"saleUnit":{"type":"string"},"saleType":{"type":"string"},"defaultTemplateId":{},"approvisionnement":{"type":"integer"},"weightUnit":{},"requiresLotNumber":{"type":"boolean"},"showOrderDetails":{"type":"boolean"},"isPerishable":{"type":"boolean"},"perishabilityDays":{},"deliveryDays":{},"specificOveragePercent":{},"createdById":{"type":"string"},"warehouseId":{},"externalId":{"type":"string"},"syncedAt":{"type":"string"},"lastSyncedAt":{},"source":{"type":"string"},"mainImageId":{},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"tenantId":{"type":"string"},"tagsId":{},"isMaterial":{"type":"boolean"},"isFinishedProduct":{"type":"boolean"},"manufacturingLeadTime":{},"safetyStock":{},"reorderPoint":{},"moq":{},"manufacturingCost":{},"subscriptionEnabled":{"type":"boolean"},"subscriptionDurationDays":{},"stripeProductId":{},"stripePriceId":{},"stripeRecurringPriceId":{},"mainImage":{},"packagingType":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"size":{"type":"string"},"orderByQuantity":{},"description":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"tenantId":{"type":"string"}}},"defaultVendor":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"}}},"assignedSubCategories":{"type":"array","items":{}},"variants":{"type":"array","items":{}},"effectivePrice":{"type":"number"},"priceLabel":{"type":"string"}}}},"total":{"type":"integer"},"page":{"type":"integer"},"limit":{"type":"integer"},"pages":{"type":"integer"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":0,"type":"number"},"limit":{"default":10,"type":"number"},"search":{"type":"string"},"active":{"type":"boolean"},"isBuyable":{"type":"boolean"},"categoryId":{"type":"string"},"vendorId":{"type":"string"},"packagingTypeId":{"type":"string"},"sortBy":{"default":"createdAt","type":"string"},"sortOrder":{"default":"desc","type":"string","enum":["asc","desc"]}},"required":["page","limit","sortBy","sortOrder"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/products.getProducts":{"get":{"operationId":"products_getProducts","summary":"Get Products","tags":["products"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"reference":{"type":"string"},"plenigoOfferId":{},"plenigoAccessRightUniqueId":{},"name":{"type":"string"},"description":{"type":"string"},"price":{"type":"number"},"salePrice":{},"proPrice":{},"purchasePrice":{"type":"number"},"stock":{"type":"integer"},"stockLedger":{"type":"integer"},"isBuyable":{"type":"boolean"},"sku":{"type":"string"},"isGeneric":{"type":"boolean"},"magazineEditionId":{},"siteId":{"type":"string"},"productType":{"type":"string"},"manageStock":{"type":"boolean"},"lowStockThreshold":{"type":"integer"},"soldIndividually":{"type":"boolean"},"weight":{},"length":{},"width":{},"height":{},"purchaseNote":{},"menuOrder":{},"data":{"type":"object","properties":{"lastSync":{"type":"string"},"prestashop_id":{"type":"string"},"prestashop_data":{"type":"object","properties":{"mpn":{"type":"string"},"upc":{"type":"string"},"isbn":{"type":"string"},"name":{"type":"string"},"rate":{"type":"number"},"depth":{"type":"integer"},"ean13":{"type":"string"},"price":{"type":"number"},"unity":{"type":"string"},"width":{"type":"integer"},"active":{"type":"string"},"height":{"type":"integer"},"weight":{"type":"integer"},"date_add":{"type":"string"},"date_upd":{"type":"string"},"quantity":{"type":"integer"},"price_ttc":{"type":"number"},"reference":{"type":"string"},"id_product":{"type":"string"},"description":{"type":"string"},"id_supplier":{"type":"string"},"link_rewrite":{"type":"string"},"supplier_name":{"type":"string"},"id_manufacturer":{"type":"string"},"wholesale_price":{"type":"number"},"bundle_components":{"type":"array","items":{}},"description_short":{"type":"string"},"linked_categories":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"slug":{"type":"string"},"position":{"type":"integer"},"id_category":{"type":"integer"}}}},"manufacturer_name":{"type":"string"},"id_tax_rules_group":{"type":"integer"},"available_for_order":{"type":"string"},"id_category_default":{"type":"string"}}}}},"manufacturer":{"type":"string"},"taxRate":{"type":"number"},"active":{"type":"boolean"},"defaultVendorId":{"type":"string"},"packagingTypeId":{"type":"string"},"packagingQuantity":{"type":"integer"},"packagingUnit":{"type":"string"},"saleDetail":{},"saleQuantity":{"type":"number"},"saleUnit":{"type":"string"},"saleType":{"type":"string"},"defaultTemplateId":{},"approvisionnement":{"type":"integer"},"weightUnit":{},"requiresLotNumber":{"type":"boolean"},"showOrderDetails":{"type":"boolean"},"isPerishable":{"type":"boolean"},"perishabilityDays":{},"deliveryDays":{},"specificOveragePercent":{},"createdById":{"type":"string"},"warehouseId":{},"externalId":{"type":"string"},"syncedAt":{},"lastSyncedAt":{},"source":{"type":"string"},"mainImageId":{},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"tenantId":{"type":"string"},"tagsId":{},"isMaterial":{"type":"boolean"},"isFinishedProduct":{"type":"boolean"},"manufacturingLeadTime":{},"safetyStock":{},"reorderPoint":{},"moq":{},"manufacturingCost":{},"subscriptionEnabled":{"type":"boolean"},"subscriptionDurationDays":{},"stripeProductId":{},"stripePriceId":{},"stripeRecurringPriceId":{},"mainImage":{},"packagingType":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"size":{"type":"string"},"orderByQuantity":{},"description":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"tenantId":{"type":"string"}}},"defaultVendor":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"useStockLedger":{"type":"boolean"}}},"stockAvailability":{"type":"array","items":{}},"magazineEdition":{},"assignedSubCategories":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"productId":{"type":"string"},"subCategoryId":{"type":"string"},"assignedAt":{"type":"string"},"assignedBy":{"type":"string"},"tenantId":{"type":"string"},"siteId":{"type":"string"},"subCategory":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"mainCategory":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"}}}}}}}},"_count":{"type":"object","properties":{"bundleComponents":{"type":"integer"}}},"prestashopActive":{"type":"boolean"}}}},"total":{"type":"integer"},"page":{"type":"integer"},"per_page":{"type":"integer"},"pages":{"type":"integer"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"defaultVendorId":{"type":"string"},"page":{"default":0,"type":"number"},"per_page":{"default":10,"type":"number"},"search":{"type":"string"},"stockFilter":{"type":"string"},"categoryFilter":{"type":"string"},"activeFilter":{"type":"string"},"buyableFilter":{"type":"string"},"priceRangeFilter":{"type":"string"},"genericFilter":{"type":"string"},"bundleFilter":{"type":"string"},"productTypeFilter":{"type":"string","enum":["SIMPLE","VARIABLE","COMPOSITE","FORMULE","MENU"]},"subscriptionFilter":{"type":"string","enum":["true","false"]},"publicationId":{"type":"string"},"bundleId":{"type":"string"},"sortOrder":{"default":"createdAt:desc","type":"string"},"sortMultiple":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string"},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"],"additionalProperties":false}},"excludeIds":{"type":"array","items":{"type":"string"}}},"required":["page","per_page","sortOrder"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/products.getProductsByIds":{"get":{"operationId":"products_getProductsByIds","summary":"Get Products By Ids","tags":["products"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"ids":{"type":"array","items":{"type":"string"}}},"required":["ids"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/products.syncProducts":{"post":{"operationId":"products_syncProducts","summary":"Sync Products","tags":["products"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"offset":{"default":0,"type":"number"},"limit":{"default":100,"type":"number"}},"required":["offset","limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/products.create":{"post":{"operationId":"products_create","summary":"Create","tags":["products"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":2},"description":{"type":"string"},"price":{"type":"number","minimum":0},"proPrice":{"anyOf":[{"type":"number","minimum":0},{"type":"null"}]},"reference":{"type":"string"},"manufacturer":{"type":"string"},"taxRate":{"default":20,"type":"number","minimum":0,"maximum":100},"defaultVendorId":{"type":"string"},"packagingTypeId":{"type":"string"},"packagingQuantity":{"type":"number","exclusiveMinimum":0},"packagingUnit":{"type":"string"},"saleDetail":{"type":"string"},"saleQuantity":{"type":"number","exclusiveMinimum":0},"saleUnit":{"type":"string"},"saleType":{"type":"string"},"defaultTemplateId":{"type":"string"},"isBuyable":{"default":true,"type":"boolean"},"active":{"default":true,"type":"boolean"},"mainImageId":{"anyOf":[{"type":"string"},{"type":"null"}]},"images":{"default":[],"type":"array","items":{"type":"string"}},"productType":{"default":"SIMPLE","type":"string","enum":["SIMPLE","VARIABLE","COMPOSITE","FORMULE","MENU"]},"manageStock":{"default":false,"type":"boolean"},"stock":{"type":"integer","minimum":0,"maximum":9007199254740991},"lowStockThreshold":{"type":"integer","minimum":0,"maximum":9007199254740991},"soldIndividually":{"default":false,"type":"boolean"},"weightUnit":{"type":"string"},"requiresLotNumber":{"default":false,"type":"boolean"},"showOrderDetails":{"default":false,"type":"boolean"},"isPerishable":{"default":false,"type":"boolean"},"perishabilityDays":{"type":"integer","minimum":1,"maximum":365},"deliveryDays":{"type":"integer","minimum":1,"maximum":30},"specificOveragePercent":{"type":"integer","minimum":0,"maximum":100},"weight":{"type":"number","minimum":0},"length":{"type":"number","exclusiveMinimum":0},"width":{"type":"number","exclusiveMinimum":0},"height":{"type":"number","exclusiveMinimum":0},"purchaseNote":{"type":"string"},"menuOrder":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},"isGeneric":{"default":false,"type":"boolean"}},"required":["name","price","taxRate","isBuyable","active","images"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/products.update":{"post":{"operationId":"products_update","summary":"Update","tags":["products"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":2},"description":{"type":"string"},"price":{"type":"number","minimum":0},"proPrice":{"anyOf":[{"type":"number","minimum":0},{"type":"null"}]},"reference":{"type":"string"},"manufacturer":{"type":"string"},"taxRate":{"type":"number","minimum":0,"maximum":100},"defaultVendorId":{"type":"string"},"packagingTypeId":{"type":"string"},"packagingQuantity":{"type":"number","exclusiveMinimum":0},"packagingUnit":{"type":"string"},"saleDetail":{"type":"string"},"saleQuantity":{"type":"number","exclusiveMinimum":0},"saleUnit":{"type":"string"},"saleType":{"type":"string"},"defaultTemplateId":{"type":"string"},"isBuyable":{"type":"boolean"},"active":{"type":"boolean"},"mainImageId":{"anyOf":[{"type":"string"},{"type":"null"}]},"productType":{"type":"string","enum":["SIMPLE","VARIABLE","COMPOSITE","FORMULE","MENU"]},"manageStock":{"type":"boolean"},"stock":{"type":"integer","minimum":0,"maximum":9007199254740991},"lowStockThreshold":{"type":"integer","minimum":0,"maximum":9007199254740991},"soldIndividually":{"type":"boolean"},"weightUnit":{"type":"string"},"requiresLotNumber":{"type":"boolean"},"showOrderDetails":{"type":"boolean"},"isPerishable":{"type":"boolean"},"perishabilityDays":{"type":"integer","minimum":1,"maximum":365},"deliveryDays":{"type":"integer","minimum":1,"maximum":30},"specificOveragePercent":{"type":"integer","minimum":0,"maximum":100},"weight":{"type":"number","minimum":0},"length":{"type":"number","exclusiveMinimum":0},"width":{"type":"number","exclusiveMinimum":0},"height":{"type":"number","exclusiveMinimum":0},"purchaseNote":{"type":"string"},"menuOrder":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},"isGeneric":{"type":"boolean"},"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"skipIndexing":{"default":false,"type":"boolean"},"images":{"type":"array","items":{"type":"string"}}},"required":["id","skipIndexing"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/products.getById":{"get":{"operationId":"products_getById","summary":"Get By Id","tags":["products"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"reference":{"type":"string"},"plenigoOfferId":{},"plenigoAccessRightUniqueId":{},"name":{"type":"string"},"description":{"type":"string"},"price":{"type":"number"},"salePrice":{},"proPrice":{},"purchasePrice":{"type":"number"},"stock":{"type":"integer"},"stockLedger":{"type":"integer"},"isBuyable":{"type":"boolean"},"sku":{"type":"string"},"isGeneric":{"type":"boolean"},"magazineEditionId":{},"siteId":{"type":"string"},"productType":{"type":"string"},"manageStock":{"type":"boolean"},"lowStockThreshold":{},"soldIndividually":{"type":"boolean"},"weight":{},"length":{},"width":{},"height":{},"purchaseNote":{},"menuOrder":{},"data":{"type":"object","properties":{"lastSync":{"type":"string"},"prestashop_id":{"type":"string"},"prestashop_data":{"type":"object","properties":{"mpn":{"type":"string"},"upc":{"type":"string"},"isbn":{"type":"string"},"name":{"type":"string"},"rate":{"type":"number"},"depth":{"type":"integer"},"ean13":{"type":"string"},"price":{"type":"number"},"unity":{"type":"string"},"width":{"type":"integer"},"active":{"type":"string"},"height":{"type":"integer"},"weight":{"type":"integer"},"date_add":{"type":"string"},"date_upd":{"type":"string"},"quantity":{"type":"integer"},"price_ttc":{"type":"number"},"reference":{"type":"string"},"id_product":{"type":"string"},"description":{"type":"string"},"id_supplier":{"type":"string"},"link_rewrite":{"type":"string"},"supplier_name":{"type":"string"},"id_manufacturer":{"type":"string"},"wholesale_price":{"type":"number"},"bundle_components":{"type":"array","items":{}},"description_short":{"type":"string"},"linked_categories":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"slug":{"type":"string"},"position":{"type":"integer"},"id_category":{"type":"integer"}}}},"manufacturer_name":{"type":"string"},"id_tax_rules_group":{"type":"integer"},"available_for_order":{"type":"string"},"id_category_default":{"type":"string"}}}}},"manufacturer":{"type":"string"},"taxRate":{"type":"number"},"active":{"type":"boolean"},"defaultVendorId":{"type":"string"},"packagingTypeId":{},"packagingQuantity":{},"packagingUnit":{},"saleDetail":{},"saleQuantity":{},"saleUnit":{},"saleType":{},"defaultTemplateId":{},"approvisionnement":{"type":"integer"},"weightUnit":{},"requiresLotNumber":{"type":"boolean"},"showOrderDetails":{"type":"boolean"},"isPerishable":{"type":"boolean"},"perishabilityDays":{},"deliveryDays":{},"specificOveragePercent":{},"createdById":{"type":"string"},"warehouseId":{},"externalId":{"type":"string"},"syncedAt":{},"lastSyncedAt":{},"source":{"type":"string"},"mainImageId":{},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"tenantId":{"type":"string"},"tagsId":{},"isMaterial":{"type":"boolean"},"isFinishedProduct":{"type":"boolean"},"manufacturingLeadTime":{},"safetyStock":{},"reorderPoint":{},"moq":{},"manufacturingCost":{},"subscriptionEnabled":{"type":"boolean"},"subscriptionDurationDays":{},"stripeProductId":{},"stripePriceId":{},"stripeRecurringPriceId":{},"images":{"type":"array","items":{}},"mainImage":{},"defaultVendor":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"email":{"type":"string"},"address":{"type":"string"},"description":{"type":"string"},"defaultTemplateId":{},"externalId":{"type":"string"},"contact":{"type":"string"},"sendEmail":{"type":"array","items":{"type":"string"}},"sendSchedules":{"type":"array","items":{"type":"object","properties":{"day":{"type":"string"},"time":{"type":"string"}}}},"sendType":{"type":"string"},"sendChannel":{"type":"string"},"sendAuthorized":{"type":"boolean"},"groupedOrder":{"type":"boolean"},"autoSend":{"type":"boolean"},"orderSettings":{},"approvisionnement":{"type":"integer"},"useStockLedger":{"type":"boolean"},"defaultOveragePercent":{"type":"integer"},"specificOveragePercent":{},"deliveryDays":{"type":"integer"},"defaultPackagingTypeId":{},"data":{"type":"object","properties":{"city":{"type":"string"},"name":{"type":"string"},"phone":{"type":"string"},"active":{"type":"boolean"},"country":{"type":"string"},"address1":{"type":"string"},"address2":{"type":"string"},"date_add":{"type":"string"},"date_upd":{"type":"string"},"logo_url":{"type":"string"},"postcode":{"type":"string"},"meta_title":{"type":"string"},"vat_number":{"type":"string"},"description":{"type":"string"},"has_address":{"type":"boolean"},"has_contact":{"type":"boolean"},"id_supplier":{"type":"string"},"vendor_type":{"type":"string"},"contact_name":{"type":"string"},"has_products":{"type":"boolean"},"phone_mobile":{"type":"string"},"meta_keywords":{"type":"string"},"product_count":{"type":"integer"},"address_company":{"type":"string"},"contact_lastname":{"type":"string"},"meta_description":{"type":"string"},"contact_firstname":{"type":"string"},"supplier_references":{"type":"string"}}},"mainImageId":{},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"userId":{},"tenantId":{"type":"string"},"siteId":{"type":"string"},"parentVendorId":{},"csvConfig":{}}},"defaultTemplate":{},"packagingType":{},"assignedSubCategories":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"productId":{"type":"string"},"subCategoryId":{"type":"string"},"assignedAt":{"type":"string"},"assignedBy":{"type":"string"},"tenantId":{"type":"string"},"siteId":{"type":"string"},"subCategory":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"slug":{"type":"string"},"description":{"type":"string"},"imageId":{},"order":{},"externalId":{"type":"string"},"data":{"type":"object","properties":{"prestashop_data":{"type":"object","properties":{"active":{"type":"string"},"date_add":{"type":"string"},"date_upd":{"type":"string"},"position":{"type":"string"},"id_parent":{"type":"string"},"meta_title":{"type":"string"},"id_category":{"type":"string"},"level_depth":{"type":"string"},"link_rewrite":{"type":"string"},"meta_keywords":{"type":"string"},"meta_description":{"type":"string"},"nb_products_recursive":{"type":"string"}}}}},"parentCategoryId":{"type":"string"},"mainCategoryId":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"tenantId":{"type":"string"},"siteId":{"type":"string"}}}}}},"tags":{"type":"array","items":{}},"assignedAttributes":{"type":"array","items":{}},"assignedOptionLists":{"type":"array","items":{}},"variations":{"type":"array","items":{}},"variants":{"type":"array","items":{}},"upsells":{"type":"array","items":{}},"crossSells":{"type":"array","items":{}},"bundleComponents":{"type":"array","items":{}},"genericLinks":{"type":"array","items":{}},"parentGenericLinks":{"type":"array","items":{}},"effectivePrice":{"type":"number"},"priceLabel":{"type":"string"},"prestashopActive":{"type":"boolean"},"isbn":{},"ean13":{},"upc":{},"mpn":{},"ppom":{},"ppomNormalized":{}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/products.getBySlug":{"get":{"operationId":"products_getBySlug","summary":"Get By Slug","tags":["products"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"slug":{"type":"string"}},"required":["slug"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/products.getOrdersByProductId":{"get":{"operationId":"products_getOrdersByProductId","summary":"Get Orders By Product Id","tags":["products"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"productId":{"type":"string"},"page":{"default":1,"type":"number"},"limit":{"default":20,"type":"number"},"sort":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["productId","page","limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/products.getVendorOrdersByProductId":{"get":{"operationId":"products_getVendorOrdersByProductId","summary":"Get Vendor Orders By Product Id","tags":["products"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"productId":{"type":"string"},"page":{"default":1,"type":"number"},"limit":{"default":20,"type":"number"}},"required":["productId","page","limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/products.deleteProduct":{"post":{"operationId":"products_deleteProduct","summary":"Delete Product","tags":["products"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/products.deleteAllProducts":{"post":{"operationId":"products_deleteAllProducts","summary":"Delete All Products","tags":["products"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"confirmationId":{"type":"string"}},"required":["confirmationId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/products.syncProductsStock":{"post":{"operationId":"products_syncProductsStock","summary":"Sync Products Stock","tags":["products"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/products.clearProductsCache":{"post":{"operationId":"products_clearProductsCache","summary":"Clear Products Cache","tags":["products"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/products.getCacheStatus":{"get":{"operationId":"products_getCacheStatus","summary":"Get Cache Status","tags":["products"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/products.syncSingleProductStock":{"post":{"operationId":"products_syncSingleProductStock","summary":"Sync Single Product Stock","tags":["products"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"productId":{"type":"string"},"externalId":{"type":"string"}},"required":["productId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/products.assignSubCategoryToProduct":{"post":{"operationId":"products_assignSubCategoryToProduct","summary":"Assign Sub Category To Product","tags":["products"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"productId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"subCategoryId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["productId","subCategoryId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/products.removeSubCategoryFromProduct":{"post":{"operationId":"products_removeSubCategoryFromProduct","summary":"Remove Sub Category From Product","tags":["products"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"productId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"subCategoryId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["productId","subCategoryId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/products.createWithAllNeeds":{"post":{"operationId":"products_createWithAllNeeds","summary":"Create With All Needs","tags":["products"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema"}},"required":["json"]}}}}}},"/api/trpc/products.updateWithAllNeeds":{"post":{"operationId":"products_updateWithAllNeeds","summary":"Update With All Needs","tags":["products"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema"}},"required":["json"]}}}}}},"/api/trpc/products.syncIndividualProduct":{"post":{"operationId":"products_syncIndividualProduct","summary":"Sync Individual Product","tags":["products"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"productId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["productId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/products.listGenericLinks":{"get":{"operationId":"products_listGenericLinks","summary":"List Generic Links","tags":["products"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/products.upsertGenericLink":{"post":{"operationId":"products_upsertGenericLink","summary":"Upsert Generic Link","tags":["products"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"genericProductId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"externalProductId":{"type":"string","minLength":1},"conversionFactor":{"type":"number","exclusiveMinimum":0},"conversionUnit":{"default":"kg","type":"string","minLength":1},"notes":{"type":"string"}},"required":["genericProductId","externalProductId","conversionFactor"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/products.deleteGenericLink":{"post":{"operationId":"products_deleteGenericLink","summary":"Delete Generic Link","tags":["products"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/products.bulkUpdate":{"post":{"operationId":"products_bulkUpdate","summary":"Bulk Update","tags":["products"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"updates":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"name":{"type":"string","minLength":1},"description":{"type":"string"},"reference":{"type":"string"},"manufacturer":{"type":"string"},"active":{"type":"boolean"},"price":{"type":"number","minimum":0},"proPrice":{"anyOf":[{"type":"number","minimum":0},{"type":"null"}]},"taxRate":{"type":"number","minimum":0,"maximum":100},"isBuyable":{"type":"boolean"},"packagingQuantity":{"type":"number","exclusiveMinimum":0},"packagingUnit":{"type":"string"},"saleDetail":{"type":"string"},"saleQuantity":{"type":"number","exclusiveMinimum":0},"saleUnit":{"type":"string"},"saleType":{"type":"string"},"stock":{"type":"integer","minimum":0,"maximum":9007199254740991},"defaultVendorId":{"type":"string"},"packagingTypeId":{"type":"string"},"dataPatch":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}}},"required":["id"],"additionalProperties":false}}},"required":["updates"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/products.updateStripeLink":{"post":{"operationId":"products_updateStripeLink","summary":"Update Stripe Link","tags":["products"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"stripeProductId":{"anyOf":[{"type":"string"},{"type":"null"}]},"stripePriceId":{"anyOf":[{"type":"string"},{"type":"null"}]},"stripeRecurringPriceId":{"anyOf":[{"type":"string"},{"type":"null"}]},"subscriptionEnabled":{"type":"boolean"},"subscriptionDurationDays":{"anyOf":[{"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991},{"type":"null"}]}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.verifyExternalId":{"post":{"operationId":"vendors_verifyExternalId","summary":"Verify External Id","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"vendorId":{"type":"string"},"externalId":{"type":"string","minLength":1}},"required":["vendorId","externalId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.getVendors":{"get":{"operationId":"vendors_getVendors","summary":"Get Vendors","tags":["vendors"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"email":{"type":"string"},"address":{"type":"string"},"description":{"type":"string"},"defaultTemplateId":{"type":"string"},"externalId":{"type":"string"},"contact":{"type":"string"},"sendEmail":{"type":"array","items":{"type":"string"}},"sendSchedules":{"type":"array","items":{"type":"object","properties":{"day":{"type":"string"},"time":{"type":"string"}}}},"sendType":{"type":"string"},"sendChannel":{"type":"string"},"sendAuthorized":{"type":"boolean"},"groupedOrder":{"type":"boolean"},"autoSend":{"type":"boolean"},"orderSettings":{},"approvisionnement":{"type":"integer"},"useStockLedger":{"type":"boolean"},"defaultOveragePercent":{"type":"integer"},"specificOveragePercent":{},"deliveryDays":{"type":"integer"},"defaultPackagingTypeId":{},"data":{"type":"object","properties":{"city":{"type":"string"},"name":{"type":"string"},"phone":{"type":"string"},"active":{"type":"boolean"},"country":{"type":"string"},"address1":{"type":"string"},"address2":{"type":"string"},"date_add":{"type":"string"},"date_upd":{"type":"string"},"logo_url":{"type":"string"},"postcode":{"type":"string"},"meta_title":{"type":"string"},"vat_number":{"type":"string"},"description":{"type":"string"},"has_address":{"type":"boolean"},"has_contact":{"type":"boolean"},"id_supplier":{"type":"string"},"vendor_type":{"type":"string"},"contact_name":{"type":"string"},"has_products":{"type":"boolean"},"phone_mobile":{"type":"string"},"meta_keywords":{"type":"string"},"product_count":{"type":"integer"},"address_company":{"type":"string"},"contact_lastname":{"type":"string"},"meta_description":{"type":"string"},"contact_firstname":{"type":"string"},"supplier_references":{"type":"string"}}},"mainImageId":{},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"userId":{},"tenantId":{"type":"string"},"siteId":{"type":"string"},"parentVendorId":{},"csvConfig":{},"_count":{"type":"object","properties":{"products":{"type":"integer"},"orders":{"type":"integer"}}},"mainImage":{},"attachedDocuments":{"type":"array","items":{}},"vendorLinks":{"type":"array","items":{}},"products":{"type":"integer"},"orders":{"type":"integer"}}}},"columns":{"type":"object","properties":{"name":{"type":"object","properties":{"type":{"type":"string"},"label":{"type":"string"},"required":{"type":"boolean"},"sortable":{"type":"boolean"},"filterable":{"type":"boolean"}}},"externalId":{"type":"object","properties":{"type":{"type":"string"},"label":{"type":"string"},"required":{"type":"boolean"},"sortable":{"type":"boolean"},"filterable":{"type":"boolean"}}},"email":{"type":"object","properties":{"type":{"type":"string"},"label":{"type":"string"},"required":{"type":"boolean"},"sortable":{"type":"boolean"},"filterable":{"type":"boolean"}}},"address":{"type":"object","properties":{"type":{"type":"string"},"label":{"type":"string"},"required":{"type":"boolean"},"sortable":{"type":"boolean"},"filterable":{"type":"boolean"}}},"contact":{"type":"object","properties":{"type":{"type":"string"},"label":{"type":"string"},"required":{"type":"boolean"},"sortable":{"type":"boolean"},"filterable":{"type":"boolean"}}},"products":{"type":"object","properties":{"type":{"type":"string"},"label":{"type":"string"},"required":{"type":"boolean"},"sortable":{"type":"boolean"},"filterable":{"type":"boolean"}}},"orders":{"type":"object","properties":{"type":{"type":"string"},"label":{"type":"string"},"required":{"type":"boolean"},"sortable":{"type":"boolean"},"filterable":{"type":"boolean"}}},"autoSend":{"type":"object","properties":{"type":{"type":"string"},"label":{"type":"string"},"required":{"type":"boolean"},"sortable":{"type":"boolean"},"filterable":{"type":"boolean"}}},"sendType":{"type":"object","properties":{"type":{"type":"string"},"label":{"type":"string"},"required":{"type":"boolean"},"sortable":{"type":"boolean"},"filterable":{"type":"boolean"}}},"createdAt":{"type":"object","properties":{"type":{"type":"string"},"label":{"type":"string"},"required":{"type":"boolean"},"sortable":{"type":"boolean"},"filterable":{"type":"boolean"}}}}},"total":{"type":"integer"},"page":{"type":"integer"},"pageSize":{"type":"integer"},"pageCount":{"type":"integer"},"filters":{},"sort":{},"hiddenColumns":{}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"number"},"per_page":{"default":12,"type":"number"},"search":{"type":"string"},"sort":{"type":"string"},"hidden_columns":{"type":"string"},"include":{"type":"array","items":{"type":"string"}},"filters":{}},"required":["page","per_page"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.getVendorsStocks":{"get":{"operationId":"vendors_getVendorsStocks","summary":"Get Vendors Stocks","tags":["vendors"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"description":{"type":"string"},"price":{"type":"number"},"salePrice":{"type":"number"},"purchasePrice":{"type":"number"},"active":{"type":"boolean"},"stock":{"type":"integer"},"approvisionnement":{"type":"integer"},"reference":{"type":"string"},"manufacturer":{"type":"string"},"taxRate":{"type":"number"},"specificOveragePercent":{},"defaultVendor":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"}}},"onOrderUnits":{"type":"integer"},"onOrderUnitsDraft":{"type":"integer"}}}},"total":{"type":"integer"},"page":{"type":"integer"},"limit":{"type":"integer"},"pageCount":{"type":"integer"},"valuation":{"type":"object","properties":{"stockValue":{"type":"number"},"valuedCount":{"type":"integer"},"missingPriceCount":{"type":"integer"}}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"vendorId":{"type":"string"},"page":{"default":1,"type":"number","minimum":1},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"search":{"type":"string"},"hasOrders":{"default":false,"type":"boolean"},"hasDraftOrders":{"default":false,"type":"boolean"}},"required":["page","limit","hasOrders","hasDraftOrders"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.createStockSnapshot":{"post":{"operationId":"vendors_createStockSnapshot","summary":"Create Stock Snapshot","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"label":{"type":"string","minLength":1,"maxLength":120},"note":{"type":"string","maxLength":1000},"vendorId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["label"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.listStockSnapshots":{"get":{"operationId":"vendors_listStockSnapshots","summary":"List Stock Snapshots","tags":["vendors"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"label":{"type":"string"},"note":{"type":"string"},"takenAt":{"type":"string"},"vendorId":{},"vendorName":{},"totalValue":{"type":"number"},"totalProducts":{"type":"integer"},"valuedProducts":{"type":"integer"},"missingPriceProducts":{"type":"integer"},"createdAt":{"type":"string"}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"vendorId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.getStockSnapshot":{"get":{"operationId":"vendors_getStockSnapshot","summary":"Get Stock Snapshot","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.deleteStockSnapshot":{"post":{"operationId":"vendors_deleteStockSnapshot","summary":"Delete Stock Snapshot","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.getProductSupplierOrders":{"get":{"operationId":"vendors_getProductSupplierOrders","summary":"Get Product Supplier Orders","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"productId":{"type":"string"},"vendorId":{"type":"string"}},"required":["productId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.getProductsForStocksPreview":{"get":{"operationId":"vendors_getProductsForStocksPreview","summary":"Get Products For Stocks Preview","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"productIds":{"default":[],"type":"array","items":{"type":"string"}},"references":{"default":[],"type":"array","items":{"type":"string"}}},"required":["productIds","references"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.updateVendorProductOverage":{"post":{"operationId":"vendors_updateVendorProductOverage","summary":"Update Vendor Product Overage","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"productId":{"type":"string"},"specificOveragePercent":{"type":"integer","minimum":0,"maximum":100}},"required":["productId","specificOveragePercent"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.createVendor":{"post":{"operationId":"vendors_createVendor","summary":"Create Vendor","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string"},"email":{"anyOf":[{"anyOf":[{"type":"string","const":""},{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"}]},{"type":"null"}]},"externalId":{"anyOf":[{"type":"string"},{"type":"null"}]},"address":{"anyOf":[{"type":"string"},{"type":"null"}]},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"defaultTemplateId":{"anyOf":[{"type":"string"},{"type":"null"}]},"contact":{"anyOf":[{"type":"string"},{"type":"null"}]},"sendEmail":{"anyOf":[{"type":"array","items":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"}},{"type":"null"}]},"sendSchedules":{"anyOf":[{"type":"array","items":{"type":"object","properties":{"day":{"type":"string","minLength":1},"time":{"type":"string","minLength":1}},"required":["day","time"],"additionalProperties":false}},{"type":"null"}]},"sendType":{"anyOf":[{"type":"string","enum":["both","csv","none","pdf"]},{"type":"null"}]},"sendChannel":{"anyOf":[{"type":"string","enum":["email","sms","both"]},{"type":"null"}]},"sendAuthorized":{"type":"boolean"},"groupedOrder":{"type":"boolean"},"autoSend":{"type":"boolean"},"useStockLedger":{"type":"boolean"},"approvisionnement":{"anyOf":[{"type":"integer","minimum":0,"maximum":9007199254740991},{"type":"null"}]},"defaultOveragePercent":{"type":"integer","minimum":0,"maximum":100},"specificOveragePercent":{"anyOf":[{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"integer","minimum":0,"maximum":100}},{"type":"null"}]},"deliveryDays":{"type":"integer","minimum":1,"maximum":365},"orderTypeText":{"anyOf":[{"type":"string"},{"type":"null"}]},"orderLocationText":{"anyOf":[{"type":"string"},{"type":"null"}]},"mainImageId":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]},"attachedDocumentIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"vendorLinks":{"type":"array","items":{"type":"object","properties":{"id":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]},"url":{"type":"string","format":"uri"},"label":{"anyOf":[{"type":"string"},{"type":"null"}]},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"type":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["url"],"additionalProperties":false}},"csvConfig":{"anyOf":[{"type":"object","properties":{"columns":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"type":{"type":"string","enum":["static_text","static_number","order_date","client_name","product_code","quantity","product_name","unit_type","unit_price_ht","entity_field"]},"value":{"type":"string"},"order":{"type":"number"},"entityType":{"type":"string"},"entityField":{"type":"string"}},"required":["id","name","type"],"additionalProperties":false}}},"required":["columns"],"additionalProperties":false},{"type":"null"}]},"childVendorIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"parentVendorId":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]}},"required":["name"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.updateVendor":{"post":{"operationId":"vendors_updateVendor","summary":"Update Vendor","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string"},"email":{"anyOf":[{"anyOf":[{"type":"string","const":""},{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"}]},{"type":"null"}]},"externalId":{"anyOf":[{"type":"string"},{"type":"null"}]},"address":{"anyOf":[{"type":"string"},{"type":"null"}]},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"defaultTemplateId":{"anyOf":[{"type":"string"},{"type":"null"}]},"contact":{"anyOf":[{"type":"string"},{"type":"null"}]},"sendEmail":{"anyOf":[{"type":"array","items":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"}},{"type":"null"}]},"sendSchedules":{"anyOf":[{"type":"array","items":{"type":"object","properties":{"day":{"type":"string","minLength":1},"time":{"type":"string","minLength":1}},"required":["day","time"],"additionalProperties":false}},{"type":"null"}]},"sendType":{"anyOf":[{"type":"string","enum":["both","csv","none","pdf"]},{"type":"null"}]},"sendChannel":{"anyOf":[{"type":"string","enum":["email","sms","both"]},{"type":"null"}]},"sendAuthorized":{"type":"boolean"},"groupedOrder":{"type":"boolean"},"autoSend":{"type":"boolean"},"useStockLedger":{"type":"boolean"},"approvisionnement":{"anyOf":[{"type":"integer","minimum":0,"maximum":9007199254740991},{"type":"null"}]},"defaultOveragePercent":{"type":"integer","minimum":0,"maximum":100},"specificOveragePercent":{"anyOf":[{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"integer","minimum":0,"maximum":100}},{"type":"null"}]},"deliveryDays":{"type":"integer","minimum":1,"maximum":365},"orderTypeText":{"anyOf":[{"type":"string"},{"type":"null"}]},"orderLocationText":{"anyOf":[{"type":"string"},{"type":"null"}]},"mainImageId":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]},"attachedDocumentIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"vendorLinks":{"type":"array","items":{"type":"object","properties":{"id":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]},"url":{"type":"string","format":"uri"},"label":{"anyOf":[{"type":"string"},{"type":"null"}]},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"type":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["url"],"additionalProperties":false}},"csvConfig":{"anyOf":[{"type":"object","properties":{"columns":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"type":{"type":"string","enum":["static_text","static_number","order_date","client_name","product_code","quantity","product_name","unit_type","unit_price_ht","entity_field"]},"value":{"type":"string"},"order":{"type":"number"},"entityType":{"type":"string"},"entityField":{"type":"string"}},"required":["id","name","type"],"additionalProperties":false}}},"required":["columns"],"additionalProperties":false},{"type":"null"}]},"childVendorIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"parentVendorId":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]},"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.deleteVendor":{"post":{"operationId":"vendors_deleteVendor","summary":"Delete Vendor","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.getVendor":{"get":{"operationId":"vendors_getVendor","summary":"Get Vendor","tags":["vendors"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"email":{"type":"string"},"address":{"type":"string"},"description":{"type":"string"},"defaultTemplateId":{"type":"string"},"externalId":{"type":"string"},"contact":{"type":"string"},"sendEmail":{"type":"array","items":{"type":"string"}},"sendSchedules":{"type":"array","items":{"type":"object","properties":{"day":{"type":"string"},"time":{"type":"string"}}}},"sendType":{"type":"string"},"sendChannel":{"type":"string"},"sendAuthorized":{"type":"boolean"},"groupedOrder":{"type":"boolean"},"autoSend":{"type":"boolean"},"orderSettings":{},"approvisionnement":{"type":"integer"},"useStockLedger":{"type":"boolean"},"defaultOveragePercent":{"type":"integer"},"specificOveragePercent":{},"deliveryDays":{"type":"integer"},"defaultPackagingTypeId":{},"data":{"type":"object","properties":{"city":{"type":"string"},"name":{"type":"string"},"phone":{"type":"string"},"active":{"type":"boolean"},"country":{"type":"string"},"address1":{"type":"string"},"address2":{"type":"string"},"date_add":{"type":"string"},"date_upd":{"type":"string"},"logo_url":{"type":"string"},"postcode":{"type":"string"},"meta_title":{"type":"string"},"vat_number":{"type":"string"},"description":{"type":"string"},"has_address":{"type":"boolean"},"has_contact":{"type":"boolean"},"id_supplier":{"type":"string"},"vendor_type":{"type":"string"},"contact_name":{"type":"string"},"has_products":{"type":"boolean"},"phone_mobile":{"type":"string"},"meta_keywords":{"type":"string"},"product_count":{"type":"integer"},"address_company":{"type":"string"},"contact_lastname":{"type":"string"},"meta_description":{"type":"string"},"contact_firstname":{"type":"string"},"supplier_references":{"type":"string"}}},"mainImageId":{},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"userId":{},"tenantId":{"type":"string"},"siteId":{"type":"string"},"parentVendorId":{},"csvConfig":{},"mainImage":{},"attachedDocuments":{"type":"array","items":{}},"vendorLinks":{"type":"array","items":{}},"childVendors":{"type":"array","items":{}},"parentVendor":{},"defaultTemplate":{"type":"object","properties":{"id":{"type":"string"},"tenantId":{"type":"string"},"userId":{"type":"string"},"updatedAt":{"type":"string"},"createdAt":{"type":"string"},"mjml":{"type":"string"},"html":{"type":"string"},"name":{"type":"string"},"type":{"type":"string"},"description":{"type":"string"},"data":{"type":"object","properties":{"html":{"type":"string"},"mjml":{"type":"string"},"schema":{"type":"object","properties":{"products":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"reference":{"type":"string"},"threshold":{"type":"integer"},"package_size":{"type":"integer"},"current_stock":{"type":"integer"},"order_quantity":{"type":"integer"},"package_quantity":{"type":"integer"}}}},"order_date":{"type":"string"},"order_link":{"type":"string"},"order_time":{"type":"string"},"order_type":{"type":"string"},"vendor_name":{"type":"string"},"company_logo":{"type":"string"},"company_name":{"type":"string"},"current_year":{"type":"integer"},"contact_email":{"type":"string"},"delivery_date":{"type":"string"},"email_preview":{"type":"string"},"settings_link":{"type":"string"},"footer_message":{"type":"string"},"order_location":{"type":"string"},"products_count":{"type":"integer"},"company_address":{"type":"string"},"company_website":{"type":"string"},"daily_breakdown":{"type":"array","items":{"type":"object","properties":{"orders_count":{"type":"integer"},"delivery_date":{"type":"string"},"total_quantity":{"type":"integer"},"clients_details":{"type":"array","items":{"type":"object","properties":{"quantity":{},"client_name":{},"is_professional":{}}}},"professional_clients":{"type":"array","items":{"type":"object","properties":{"quantity":{},"client_name":{}}}},"professional_clients_count":{"type":"integer"}}}},"delivery_period":{"type":"string"},"generation_date":{"type":"string"},"generation_time":{"type":"string"},"is_manager_email":{"type":"boolean"},"unsubscribe_link":{"type":"string"},"vendor_portal_url":{"type":"string"},"total_orders_count":{"type":"integer"},"company_contact_name":{"type":"string"},"company_contact_email":{"type":"string"},"company_contact_phone":{"type":"string"},"professional_clients_count":{"type":"integer"},"vendor_special_requirements":{"type":"object","properties":{"packaging_notes":{"type":"string"},"requires_lot_numbers":{"type":"boolean"},"requires_daily_breakdown":{"type":"boolean"},"requires_customer_details":{"type":"boolean"}}},"professional_clients_details":{"type":"array","items":{"type":"string"}}}},"subject":{"type":"string"},"plaintext":{},"plaintextOnly":{"type":"boolean"}}},"forDomainId":{},"siteId":{"type":"string"},"plaintext":{},"plaintextOnly":{"type":"boolean"}}},"_count":{"type":"object","properties":{"products":{"type":"integer"},"orders":{"type":"integer"}}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.getVendorsAutocomplete":{"get":{"operationId":"vendors_getVendorsAutocomplete","summary":"Get Vendors Autocomplete","tags":["vendors"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"email":{"type":"string"},"sendEmail":{"type":"array","items":{"type":"string"}},"sendSchedules":{"type":"array","items":{"type":"object","properties":{"day":{"type":"string"},"time":{"type":"string"}}}},"productsCount":{"type":"integer"}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"search":{"type":"string"},"limit":{"default":10,"type":"number"}},"required":["limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.getVendorsByUserId":{"get":{"operationId":"vendors_getVendorsByUserId","summary":"Get Vendors By User Id","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema"}},"required":["json"]}}}}}},"/api/trpc/vendors.getVendorsForNavigation":{"get":{"operationId":"vendors_getVendorsForNavigation","summary":"Get Vendors For Navigation","tags":["vendors"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"}}}}}}}}}},"/api/trpc/vendors.getEntityColumns":{"get":{"operationId":"vendors_getEntityColumns","summary":"Get Entity Columns","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"entityType":{"type":"string","enum":["SupplierOrder","PrestashopProduct"]}},"required":["entityType"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.createSupplierOrder":{"post":{"operationId":"vendors_createSupplierOrder","summary":"Create Supplier Order","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"vendorId":{"type":"string"},"useProjected":{"default":false,"type":"boolean"},"overagePercent":{"default":0,"type":"number"},"considerStock":{"default":true,"type":"boolean"},"orderType":{"default":"delivery","type":"string","enum":["delivery","pickup"]},"scheduledSendDate":{},"scheduledSendTime":{"type":"string"},"deliveryPeriodStart":{},"deliveryPeriodEnd":{},"groupByPeriod":{"default":true,"type":"boolean"},"items":{"type":"array","items":{"type":"object","properties":{"productId":{"type":"string"},"quantity":{"type":"number"},"quantitySuggested":{"default":0,"type":"number"},"quantityInOrders":{"default":0,"type":"number"},"quantityAdded":{"default":0,"type":"number"},"currentStock":{"default":0,"type":"number"},"packageSize":{"type":"number"},"marginPercent":{"type":"number"},"calculationDetails":{}},"required":["productId","quantity","quantitySuggested","quantityInOrders","quantityAdded","currentStock"],"additionalProperties":false}}},"required":["vendorId","useProjected","overagePercent","considerStock","orderType","groupByPeriod","items"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.getSupplierOrders":{"get":{"operationId":"vendors_getSupplierOrders","summary":"Get Supplier Orders","tags":["vendors"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"vendorId":{"type":"string"},"status":{"type":"string"},"orderType":{"type":"string"},"useProjected":{"type":"boolean"},"overagePercent":{"type":"integer"},"considerStock":{"type":"boolean"},"scheduledSendDate":{"type":"string"},"calculationData":{"type":"object","properties":{"formula":{"type":"string"},"parameters":{"type":"object","properties":{"useProjected":{"type":"boolean"},"considerStock":{"type":"boolean"},"overagePercent":{"type":"integer"}}}}},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"emailSentAt":{},"emailSentBy":{},"emailSentTo":{},"emailSubject":{},"tenantId":{"type":"string"},"siteId":{"type":"string"},"actionId":{},"expectedDeliveryDate":{"type":"string"},"actualDeliveryDate":{},"receivedAt":{},"receivedById":{},"deliveryNotes":{},"deliveryDiscrepancies":{},"supplierDeliveryStatus":{"type":"string"},"vendor":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"email":{"type":"string"},"address":{"type":"string"},"contact":{"type":"string"},"sendSchedules":{"type":"array","items":{"type":"object","properties":{"day":{"type":"string"},"time":{"type":"string"}}}},"sendType":{"type":"string"},"sendChannel":{"type":"string"},"sendEmail":{"type":"array","items":{"type":"string"}},"deliveryDays":{"type":"integer"},"externalId":{"type":"string"},"defaultOveragePercent":{"type":"integer"}}},"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"orderId":{"type":"string"},"productId":{"type":"string"},"quantity":{"type":"integer"},"quantitySuggested":{"type":"integer"},"quantityInOrders":{"type":"integer"},"quantityAdded":{"type":"integer"},"currentStock":{"type":"integer"},"packageSize":{"type":"integer"},"marginPercent":{"type":"integer"},"calculationDetails":{"type":"object","properties":{"demand":{"type":"integer"},"toOrder":{"type":"integer"},"rawStock":{"type":"integer"},"suggested":{"type":"integer"},"threshold":{"type":"integer"},"overageQty":{"type":"integer"},"packageSize":{"type":"integer"},"scheduleKey":{"type":"string"},"clientOrders":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"deliveryDate":{"type":"string"}}}},"isPerishable":{"type":"boolean"},"deliveryDelay":{"type":"integer"},"marginPercent":{"type":"integer"},"basePourCalcul":{"type":"integer"},"effectiveStock":{"type":"integer"},"inclusionReason":{"type":"string"},"seuilStockFaible":{"type":"integer"},"sourceOrderCount":{"type":"integer"},"perishabilityDays":{},"supplierOrderDate":{"type":"string"},"supplierOrderTime":{"type":"string"},"deliveryDelaySource":{"type":"string"},"dueUnvalidatedSortie":{"type":"integer"},"approvisionnementBase":{"type":"integer"},"netPendingSortieEnabled":{"type":"boolean"}}},"sourceOrderIds":{"type":"array","items":{"type":"string"}},"originalBundleId":{},"bundleComponentId":{},"scheduledSendDate":{"type":"string"},"scheduledSendTime":{"type":"string"},"actualSendDate":{},"sendStatus":{"type":"string"},"sendReason":{"type":"string"},"hasBeenMoved":{"type":"boolean"},"intent":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"product":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"externalId":{"type":"string"},"reference":{"type":"string"},"sku":{"type":"string"},"defaultVendorId":{"type":"string"},"specificOveragePercent":{},"isGeneric":{"type":"boolean"},"packagingType":{"type":"object","properties":{"name":{"type":"string"},"orderByQuantity":{}}},"stock":{"type":"integer"},"stockLedger":{"type":"integer"},"manageStock":{"type":"boolean"},"defaultVendor":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"useStockLedger":{"type":"boolean"}}},"stockAvailability":{"type":"array","items":{"type":"object","properties":{"quantity":{"type":"integer"},"physicalQuantity":{"type":"integer"},"reservedQuantity":{"type":"integer"}}}}}}}}},"_count":{"type":"object","properties":{"items":{"type":"integer"}}}}}},"total":{"type":"integer"},"page":{"type":"integer"},"pageSize":{"type":"integer"},"pageCount":{"type":"integer"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"vendorId":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}]},"status":{"anyOf":[{"type":"string","enum":["DRAFT","SENT","CONFIRMED","CANCELLED"]},{"type":"array","items":{"type":"string","enum":["DRAFT","SENT","CONFIRMED","CANCELLED"]}}]},"fromDate":{},"toDate":{},"timeSlot":{"type":"string"},"fromPeriodDate":{},"toPeriodDate":{},"search":{"type":"string"},"sort":{"type":"string"},"page":{"type":"number"},"per_page":{"type":"number"}},"required":["page","per_page"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.getDraftOrderForSlot":{"get":{"operationId":"vendors_getDraftOrderForSlot","summary":"Get Draft Order For Slot","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"vendorId":{"type":"string","minLength":1},"date":{"type":"string","minLength":8}},"required":["vendorId","date"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.getFutureDraftOrders":{"get":{"operationId":"vendors_getFutureDraftOrders","summary":"Get Future Draft Orders","tags":["vendors"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"orderId":{"type":"string"},"vendorId":{"type":"string"},"scheduledSendDate":{"type":"string"},"items":{"type":"array","items":{"type":"object","properties":{"productId":{"type":"string"},"productName":{"type":"string"},"quantity":{"type":"integer"},"stock":{"type":"integer"},"isGeneric":{"type":"boolean"},"clientOrders":{"type":"array","items":{"type":"object","properties":{"ref":{"type":"string"},"clientName":{"type":"string"},"deliveryDate":{"type":"string"}}}}}}}}}}}}}}}},"/api/trpc/vendors.getSupplierOrdersStats":{"get":{"operationId":"vendors_getSupplierOrdersStats","summary":"Get Supplier Orders Stats","tags":["vendors"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"totalOrders":{"type":"integer"},"draftOrders":{"type":"integer"},"sentOrders":{"type":"integer"},"confirmedOrders":{"type":"integer"},"totalItems":{"type":"integer"},"activeVendors":{"type":"integer"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"status":{"type":"array","items":{"type":"string","enum":["DRAFT","SENT","CONFIRMED","CANCELLED"]}}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.getUncoveredSupplierDemand":{"get":{"operationId":"vendors_getUncoveredSupplierDemand","summary":"Get Uncovered Supplier Demand","tags":["vendors"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"draftOrderId":{"type":"string"},"draftItemId":{"type":"string"},"productId":{"type":"string"},"productName":{"type":"string"},"productReference":{"type":"string"},"vendorId":{"type":"string"},"vendorName":{"type":"string"},"scheduledSendDate":{"type":"string"},"uncoveredClientOrders":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"label":{"type":"string"},"quantity":{"type":"integer"}}}},"uncoveredQuantity":{"type":"integer"}}}},"summary":{"type":"object","properties":{"items":{"type":"integer"},"products":{"type":"integer"},"clientOrders":{"type":"integer"},"vendors":{"type":"integer"}}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"vendorId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"fromDate":{},"toDate":{}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.getVendorOrdersNearSlot":{"get":{"operationId":"vendors_getVendorOrdersNearSlot","summary":"Get Vendor Orders Near Slot","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"vendorId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"around":{},"windowDays":{"type":"integer","minimum":1,"maximum":60},"excludeOrderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["vendorId","around"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.getSupplierOrder":{"get":{"operationId":"vendors_getSupplierOrder","summary":"Get Supplier Order","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.deleteSupplierOrder":{"post":{"operationId":"vendors_deleteSupplierOrder","summary":"Delete Supplier Order","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.deleteMultipleSupplierOrders":{"post":{"operationId":"vendors_deleteMultipleSupplierOrders","summary":"Delete Multiple Supplier Orders","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"ids":{"minItems":1,"type":"array","items":{"type":"string"}}},"required":["ids"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.deleteAllSupplierOrdersByVendor":{"post":{"operationId":"vendors_deleteAllSupplierOrdersByVendor","summary":"Delete All Supplier Orders By Vendor","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"vendorId":{"type":"string"},"status":{"type":"array","items":{"type":"string","enum":["DRAFT","SENT","CONFIRMED","CANCELLED"]}}},"required":["vendorId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.deleteAllCurrentSupplierOrders":{"post":{"operationId":"vendors_deleteAllCurrentSupplierOrders","summary":"Delete All Current Supplier Orders","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"status":{"type":"array","items":{"type":"string","enum":["DRAFT","SENT","CONFIRMED","CANCELLED"]}}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.updateSupplierOrderItemScheduling":{"post":{"operationId":"vendors_updateSupplierOrderItemScheduling","summary":"Update Supplier Order Item Scheduling","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"sourceOrderId":{"type":"string"},"targetOrderId":{"type":"string"},"targetSlotId":{"type":"string"},"targetScheduledSendDate":{"type":"string"},"items":{"minItems":1,"type":"array","items":{"type":"object","properties":{"itemId":{"type":"string"},"scheduledSendDate":{"anyOf":[{"type":"string"},{"type":"null"}]},"mergeWithItemIds":{"type":"array","items":{"type":"string"}}},"required":["itemId"],"additionalProperties":false}}},"required":["sourceOrderId","items"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.autoRepositionProblematicItem":{"post":{"operationId":"vendors_autoRepositionProblematicItem","summary":"Auto Reposition Problematic Item","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"itemId":{"type":"string"}},"required":["itemId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.recalculateSingleItem":{"post":{"operationId":"vendors_recalculateSingleItem","summary":"Recalculate Single Item","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"itemId":{"type":"string"}},"required":["itemId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.recalculateSupplierOrder":{"post":{"operationId":"vendors_recalculateSupplierOrder","summary":"Recalculate Supplier Order","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string"},"dryRun":{"default":false,"type":"boolean"}},"required":["orderId","dryRun"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.getItemCoverage":{"get":{"operationId":"vendors_getItemCoverage","summary":"Get Item Coverage","tags":["vendors"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"overlaps":{"type":"array","items":{}},"overlappingClientOrderCount":{"type":"integer"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"productId":{"type":"string"},"sourceOrderIds":{"type":"array","items":{"type":"string"}},"excludeOrderId":{"type":"string"}},"required":["productId","sourceOrderIds","excludeOrderId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.resetSupplierOrderItemHasBeenMoved":{"post":{"operationId":"vendors_resetSupplierOrderItemHasBeenMoved","summary":"Reset Supplier Order Item Has Been Moved","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"itemId":{"type":"string"}},"required":["itemId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.recalculateVendorOrdersUnified":{"post":{"operationId":"vendors_recalculateVendorOrdersUnified","summary":"Recalculate Vendor Orders Unified","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"vendorIds":{"minItems":1,"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"fromDate":{"description":"ISO date string","type":"string"},"toDate":{"description":"ISO date string","type":"string"},"force":{"default":false,"description":"If true, recalculate all from scratch","type":"boolean"},"preserveStatuses":{"default":false,"description":"If true with force=true, preserve SENT statuses after regeneration","type":"boolean"},"dryRun":{"default":false,"description":"If true, preview only","type":"boolean"},"verbose":{"default":false,"description":"Enable detailed logging","type":"boolean"},"background":{"default":false,"description":"If true, run calculation in background","type":"boolean"}},"required":["vendorIds","force","preserveStatuses","dryRun","verbose","background"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.getForceRecalcEnabled":{"get":{"operationId":"vendors_getForceRecalcEnabled","summary":"Get Force Recalc Enabled","tags":["vendors"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"enabled":{"type":"boolean"}}}}}}}}},"/api/trpc/vendors.setForceRecalcEnabled":{"post":{"operationId":"vendors_setForceRecalcEnabled","summary":"Set Force Recalc Enabled","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"enabled":{"type":"boolean"}},"required":["enabled"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.getStockCoverage":{"get":{"operationId":"vendors_getStockCoverage","summary":"Get Stock Coverage","tags":["vendors"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"productId":{"type":"string"},"name":{"type":"string"},"reference":{"type":"string"},"vendorName":{"type":"string"},"stock":{"type":"integer"},"weeklyConsumption":{"type":"integer"},"coverWeeks":{},"suspect":{"type":"boolean"},"pinned":{"type":"boolean"},"trusted":{"type":"integer"},"stockTrusted":{"type":"boolean"}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"productIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"vendorId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"suspectsOnly":{"type":"boolean"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.setProductStock":{"post":{"operationId":"vendors_setProductStock","summary":"Set Product Stock","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"productId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"newStock":{"type":"number","minimum":0},"reason":{"type":"string","maxLength":500}},"required":["productId","newStock"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.setProductStockTrusted":{"post":{"operationId":"vendors_setProductStockTrusted","summary":"Set Product Stock Trusted","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"productId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"trusted":{"type":"boolean"}},"required":["productId","trusted"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.setProductNoReorder":{"post":{"operationId":"vendors_setProductNoReorder","summary":"Set Product No Reorder","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"productId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"noReorder":{"type":"boolean"}},"required":["productId","noReorder"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.listEmailedOrdersForReconcile":{"get":{"operationId":"vendors_listEmailedOrdersForReconcile","summary":"List Emailed Orders For Reconcile","tags":["vendors"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"emailLogId":{"type":"string"},"sentAt":{"type":"string"},"subject":{"type":"string"},"recipients":{"type":"string"},"vendorId":{"type":"string"},"vendorName":{"type":"string"},"supplierOrderId":{"type":"string"},"scheduledSendDate":{"type":"string"},"orderStatus":{"type":"string"},"orderExists":{"type":"boolean"},"inSync":{"type":"boolean"},"lines":{"type":"array","items":{"type":"object","properties":{"productId":{"type":"string"},"name":{"type":"string"},"reference":{"type":"string"},"emailedQty":{"type":"integer"},"currentQty":{"type":"integer"},"delta":{"type":"integer"},"status":{"type":"string"}}}}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"vendorId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"limit":{"type":"number","minimum":1,"maximum":200}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.reconcileVendorOrders":{"post":{"operationId":"vendors_reconcileVendorOrders","summary":"Reconcile Vendor Orders","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"vendorIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"fromDate":{"type":"string"},"toDate":{"type":"string"},"dryRun":{"default":true,"type":"boolean"},"removeOrphans":{"default":false,"type":"boolean"}},"required":["fromDate","toDate","dryRun","removeOrphans"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.analyzeTimeSlots":{"get":{"operationId":"vendors_analyzeTimeSlots","summary":"Analyze Time Slots","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["orderId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.sendOrderEmail":{"post":{"operationId":"vendors_sendOrderEmail","summary":"Send Order Email","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string"},"recipients":{"default":[],"type":"array","items":{"type":"string"}},"message":{"type":"string"},"ccEmails":{"default":[],"type":"array","items":{"type":"string"}},"replyTo":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"timeSlot":{"type":"string"},"sendDate":{"type":"string"},"products":{"type":"array","items":{"type":"string"}},"currentItems":{"type":"array","items":{"type":"object","properties":{"itemId":{"type":"string"},"quantity":{"type":"number"},"packageSize":{"type":"number"}},"required":["itemId","quantity"],"additionalProperties":false}},"attachments":{"default":[],"type":"array","items":{"type":"object","properties":{"filename":{"type":"string"},"content":{"type":"string"},"contentType":{"type":"string"}},"required":["filename","content"],"additionalProperties":false}}},"required":["orderId","recipients","ccEmails","attachments"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.sendDraftOrderEmail":{"post":{"operationId":"vendors_sendDraftOrderEmail","summary":"Send Draft Order Email","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"recipients":{"minItems":1,"type":"array","items":{"type":"string"}},"subject":{"type":"string"},"html":{"type":"string"}},"required":["recipients","subject","html"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.getOrderRecap":{"get":{"operationId":"vendors_getOrderRecap","summary":"Get Order Recap","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"vendorId":{"type":"string"},"overagePercent":{"default":5,"type":"number"},"enableOverage":{"default":false,"type":"boolean"},"useProjected":{"default":false,"type":"boolean"},"considerStock":{"default":true,"type":"boolean"},"showAllProducts":{"default":false,"type":"boolean"},"deliveryPeriodStart":{},"deliveryPeriodEnd":{},"groupByPeriod":{"default":true,"type":"boolean"}},"required":["overagePercent","enableOverage","useProjected","considerStock","showAllProducts","deliveryPeriodStart","deliveryPeriodEnd","groupByPeriod"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.getClientOrderDetails":{"get":{"operationId":"vendors_getClientOrderDetails","summary":"Get Client Order Details","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"supplierOrderItemId":{"type":"string"}},"required":["supplierOrderItemId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.getBatchClientOrderDetails":{"get":{"operationId":"vendors_getBatchClientOrderDetails","summary":"Get Batch Client Order Details","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"supplierOrderItemIds":{"type":"array","items":{"type":"string"}}},"required":["supplierOrderItemIds"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.sendMagicLink":{"post":{"operationId":"vendors_sendMagicLink","summary":"Send Magic Link","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"}},"required":["email"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.validateMagicLinkToken":{"post":{"operationId":"vendors_validateMagicLinkToken","summary":"Validate Magic Link Token","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"token":{"type":"string"}},"required":["token"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.search":{"get":{"operationId":"vendors_search","summary":"Search","tags":["vendors"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"email":{"type":"string"},"productsCount":{"type":"integer"},"ordersCount":{"type":"integer"}}}},"nextCursor":{"type":"string"},"hasMore":{"type":"boolean"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"search":{"type":"string"},"limit":{"default":25,"type":"number","minimum":1,"maximum":100},"initial":{"default":false,"type":"boolean"},"includeIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"cursor":{"type":"string"},"direction":{"default":"forward","type":"string","enum":["forward","backward"]}},"required":["limit","initial","direction"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.getVendorProducts":{"get":{"operationId":"vendors_getVendorProducts","summary":"Get Vendor Products","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"vendorId":{"type":"string"},"page":{"default":1,"type":"number","minimum":1},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"search":{"type":"string"}},"required":["vendorId","page","limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.getVendorEmailLogs":{"get":{"operationId":"vendors_getVendorEmailLogs","summary":"Get Vendor Email Logs","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"vendorId":{"type":"string"}},"required":["vendorId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.sendVendorEmail":{"post":{"operationId":"vendors_sendVendorEmail","summary":"Send Vendor Email","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"vendorId":{"type":"string"},"templateId":{"type":"string"},"message":{"type":"string"},"productIds":{"type":"array","items":{"type":"string"}},"ccEmails":{"type":"array","items":{"type":"string"}},"recipientEmail":{"type":"string"}},"required":["vendorId","templateId","message","productIds","ccEmails"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.detectDuplicateProductsAcrossVendors":{"get":{"operationId":"vendors_detectDuplicateProductsAcrossVendors","summary":"Detect Duplicate Products Across Vendors","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"clientOrderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.detectVendorsWithoutSchedules":{"get":{"operationId":"vendors_detectVendorsWithoutSchedules","summary":"Detect Vendors Without Schedules","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/vendors.setVendorParent":{"post":{"operationId":"vendors_setVendorParent","summary":"Set Vendor Parent","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"vendorId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"parentVendorId":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]}},"required":["vendorId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.getVendorHierarchy":{"get":{"operationId":"vendors_getVendorHierarchy","summary":"Get Vendor Hierarchy","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"vendorId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["vendorId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.getAvailableParents":{"get":{"operationId":"vendors_getAvailableParents","summary":"Get Available Parents","tags":["vendors"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"parentVendorId":{"type":"string"}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"excludeVendorId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"search":{"type":"string"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.getVendorsByIds":{"get":{"operationId":"vendors_getVendorsByIds","summary":"Get Vendors By Ids","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"ids":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}}},"required":["ids"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.getChildVendorProducts":{"get":{"operationId":"vendors_getChildVendorProducts","summary":"Get Child Vendor Products","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"parentVendorId":{"type":"string"},"scheduledSendDate":{"type":"string"}},"required":["parentVendorId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.updateProductStock":{"post":{"operationId":"vendors_updateProductStock","summary":"Update Product Stock","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"productId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"newStock":{"type":"integer","minimum":0,"maximum":9007199254740991},"reason":{"type":"string","minLength":1},"notes":{"type":"string"}},"required":["productId","reason"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.bulkUpdateProductStock":{"post":{"operationId":"vendors_bulkUpdateProductStock","summary":"Bulk Update Product Stock","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"updates":{"type":"array","items":{"type":"object","properties":{"productId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"newStock":{"type":"integer","minimum":0,"maximum":9007199254740991},"reason":{"type":"string","minLength":1},"notes":{"type":"string"}},"required":["productId","reason"],"additionalProperties":false}}},"required":["updates"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.updateSupplierOrderItems":{"post":{"operationId":"vendors_updateSupplierOrderItems","summary":"Update Supplier Order Items","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"items":{"type":"array","items":{"type":"object","properties":{"itemId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"quantity":{"type":"number","minimum":0},"packageSize":{"type":"number","minimum":0}},"required":["itemId","quantity"],"additionalProperties":false}}},"required":["orderId","items"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.addSupplierOrderItems":{"post":{"operationId":"vendors_addSupplierOrderItems","summary":"Add Supplier Order Items","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"items":{"type":"array","items":{"type":"object","properties":{"productId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"quantity":{"type":"number","minimum":0},"packageSize":{"type":"number","minimum":0},"scheduledSendDate":{"type":"string"},"scheduledSendTime":{"type":"string"}},"required":["productId","quantity"],"additionalProperties":false}}},"required":["orderId","items"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.removeSupplierOrderItems":{"post":{"operationId":"vendors_removeSupplierOrderItems","summary":"Remove Supplier Order Items","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"itemIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}}},"required":["orderId","itemIds"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.getSupplierOrderEmailConsistency":{"get":{"operationId":"vendors_getSupplierOrderEmailConsistency","summary":"Get Supplier Order Email Consistency","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["orderId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.updateSupplierOrderStatus":{"post":{"operationId":"vendors_updateSupplierOrderStatus","summary":"Update Supplier Order Status","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"status":{"type":"string","enum":["DRAFT","SENT","CONFIRMED","CANCELLED"]}},"required":["id","status"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.sendSupplierOrder":{"post":{"operationId":"vendors_sendSupplierOrder","summary":"Send Supplier Order","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"message":{"type":"string"},"recipients":{"type":"array","items":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"}},"ccEmails":{"type":"array","items":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"}}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.duplicateSupplierOrder":{"post":{"operationId":"vendors_duplicateSupplierOrder","summary":"Duplicate Supplier Order","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.previewMerge":{"get":{"operationId":"vendors_previewMerge","summary":"Preview Merge","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"ids":{"minItems":2,"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"mergeIntoId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["ids","mergeIntoId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.confirmDelivery":{"post":{"operationId":"vendors_confirmDelivery","summary":"Confirm Delivery","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"deliveredAt":{"default":"2026-07-04T08:32:13.729Z"},"items":{"type":"array","items":{"type":"object","properties":{"itemId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"quantityReceived":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["itemId","quantityReceived"],"additionalProperties":false}},"notes":{"type":"string"}},"required":["orderId","deliveredAt","items"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.undoSupplierOrderDelivery":{"post":{"operationId":"vendors_undoSupplierOrderDelivery","summary":"Undo Supplier Order Delivery","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"deliveryId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["deliveryId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.listStagedSupplierOrders":{"get":{"operationId":"vendors_listStagedSupplierOrders","summary":"List Staged Supplier Orders","tags":["vendors"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"vendorId":{"type":"string"},"vendorName":{"type":"string"},"vendorEmail":{"type":"string"},"scheduledSendDate":{"type":"string"},"itemCount":{"type":"integer"},"totalUnits":{"type":"integer"},"emailPreview":{"type":"object","properties":{"subject":{"type":"string"},"recipients":{"type":"array","items":{"type":"string"}},"renderedAt":{"type":"string"},"deferUntil":{},"overrides":{"type":"object","properties":{}}}},"hasEmailChanged":{"type":"boolean"}}}},"total":{"type":"integer"},"pages":{"type":"integer"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":0,"type":"number","minimum":0},"pageSize":{"default":50,"type":"number","minimum":1,"maximum":200},"vendorId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"dateFrom":{"anyOf":[{},{"type":"null"}]},"dateTo":{"anyOf":[{},{"type":"null"}]},"onlyToday":{"default":false,"type":"boolean"},"onlyDeferred":{"default":false,"type":"boolean"},"onlyModified":{"default":false,"type":"boolean"}},"required":["page","pageSize","onlyToday","onlyDeferred","onlyModified"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.getStagedSupplierOrderEmail":{"get":{"operationId":"vendors_getStagedSupplierOrderEmail","summary":"Get Staged Supplier Order Email","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["orderId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.stageSupplierOrderEmail":{"post":{"operationId":"vendors_stageSupplierOrderEmail","summary":"Stage Supplier Order Email","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"force":{"type":"boolean"}},"required":["orderId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.deferSupplierOrderEmail":{"post":{"operationId":"vendors_deferSupplierOrderEmail","summary":"Defer Supplier Order Email","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"until":{"type":"string","format":"date-time","pattern":"^(?:(?:\\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])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$"}},"required":["orderId","until"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.editStagedSupplierOrderEmail":{"post":{"operationId":"vendors_editStagedSupplierOrderEmail","summary":"Edit Staged Supplier Order Email","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"subject":{"type":"string"},"recipients":{"type":"array","items":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"}}},"required":["orderId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.sendStagedSupplierOrderEmail":{"post":{"operationId":"vendors_sendStagedSupplierOrderEmail","summary":"Send Staged Supplier Order Email","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["orderId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.cancelSupplierOrderFromReview":{"post":{"operationId":"vendors_cancelSupplierOrderFromReview","summary":"Cancel Supplier Order From Review","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["orderId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.setExpectedDeliveryDate":{"post":{"operationId":"vendors_setExpectedDeliveryDate","summary":"Set Expected Delivery Date","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"expectedDate":{}},"required":["orderId","expectedDate"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.addDeliveryNote":{"post":{"operationId":"vendors_addDeliveryNote","summary":"Add Delivery Note","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"note":{"type":"string","minLength":1}},"required":["orderId","note"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.getOrderTimeline":{"get":{"operationId":"vendors_getOrderTimeline","summary":"Get Order Timeline","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["orderId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.getProductHints":{"get":{"operationId":"vendors_getProductHints","summary":"Get Product Hints","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"vendorId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"includeAllVendors":{"default":true,"type":"boolean"}},"required":["includeAllVendors"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.checkOrderConflicts":{"get":{"operationId":"vendors_checkOrderConflicts","summary":"Check Order Conflicts","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"vendorId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"items":{"type":"array","items":{"type":"object","properties":{"productId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"quantity":{"type":"number"}},"required":["productId","quantity"],"additionalProperties":false}},"scheduledSendDate":{},"excludeOrderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["vendorId","items"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.getVendorSlotsForCalendar":{"get":{"operationId":"vendors_getVendorSlotsForCalendar","summary":"Get Vendor Slots For Calendar","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"startDate":{},"endDate":{},"vendorIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}}},"required":["startDate","endDate"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vendors.healDuplicateProductsAcrossVendors":{"post":{"operationId":"vendors_healDuplicateProductsAcrossVendors","summary":"Heal Duplicate Products Across Vendors","tags":["vendors"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"dryRun":{"default":true,"type":"boolean"}},"required":["dryRun"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/users.getUsers":{"get":{"operationId":"users_getUsers","summary":"Get Users","tags":["users"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"updatedAt":{"type":"string"},"createdAt":{"type":"string"},"emailVerified":{"type":"string"},"blocked":{"type":"boolean"},"name":{"type":"string"},"email":{"type":"string"},"firstName":{"type":"string"},"lastName":{"type":"string"},"title":{},"password":{"type":"string"},"phone":{},"image":{},"data":{"type":"object","properties":{"menuAllowlist":{"type":"array","items":{"type":"string"}}}},"resetToken":{},"resetTokenExpiry":{},"emailVerificationToken":{},"emailVerificationTokenExpiry":{},"superiorId":{},"siteId":{"type":"string"},"tenantId":{"type":"string"},"canAccessReports":{"type":"boolean"},"canManageCash":{"type":"boolean"},"canSupervisorOverride":{"type":"boolean"},"canVoidTransactions":{"type":"boolean"},"currentShiftStart":{},"employeeNumber":{},"isClockedIn":{"type":"boolean"},"maxDiscountPercent":{"type":"integer"},"posPermissions":{},"posPin":{},"posRole":{"type":"string"},"tenant":{"type":"object","properties":{"name":{"type":"string"},"code":{"type":"string"},"status":{"type":"string"}}},"site":{"type":"object","properties":{"name":{"type":"string"},"slug":{"type":"string"},"status":{"type":"string"}}},"roles":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"label":{"type":"string"}}}},"fullName":{"type":"string"},"roleNames":{"type":"string"},"status":{"type":"string"},"isAdmin":{"type":"boolean"},"primaryRole":{"type":"string"}}}},"pagination":{"type":"object","properties":{"page":{"type":"integer"},"per_page":{"type":"integer"},"total":{"type":"integer"},"total_pages":{"type":"integer"}}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":0,"type":"number"},"per_page":{"default":10,"type":"number"},"search":{"type":"string"},"sort":{"type":"string"},"advancedSorts":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string"},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"],"additionalProperties":false}},"advancedFilters":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"object","properties":{"value":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{"type":"null"}]},"operator":{"default":"equals","type":"string","enum":["equals","contains","gt","lt","gte","lte","in","notIn"]}},"required":["value","operator"],"additionalProperties":false}},"filters":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"object","properties":{"value":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{"type":"null"}]},"operator":{"default":"equals","type":"string","enum":["equals","contains","gt","lt","gte","lte","in","notIn"]}},"required":["value","operator"],"additionalProperties":false}},"hidden_columns":{"type":"array","items":{"type":"string"}},"tenantId":{"type":"string"},"siteId":{"type":"string"}},"required":["page","per_page"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/users.listMyUsers":{"get":{"operationId":"users_listMyUsers","summary":"List My Users","tags":["users"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"updatedAt":{"type":"string"},"createdAt":{"type":"string"},"emailVerified":{"type":"string"},"blocked":{"type":"boolean"},"name":{"type":"string"},"email":{"type":"string"},"firstName":{"type":"string"},"lastName":{"type":"string"},"title":{},"password":{"type":"string"},"phone":{},"image":{},"data":{"type":"object","properties":{"menuAllowlist":{"type":"array","items":{"type":"string"}}}},"resetToken":{},"resetTokenExpiry":{},"emailVerificationToken":{},"emailVerificationTokenExpiry":{},"superiorId":{},"siteId":{"type":"string"},"tenantId":{"type":"string"},"canAccessReports":{"type":"boolean"},"canManageCash":{"type":"boolean"},"canSupervisorOverride":{"type":"boolean"},"canVoidTransactions":{"type":"boolean"},"currentShiftStart":{},"employeeNumber":{},"isClockedIn":{"type":"boolean"},"maxDiscountPercent":{"type":"integer"},"posPermissions":{},"posPin":{},"posRole":{"type":"string"},"tenant":{"type":"object","properties":{"name":{"type":"string"},"code":{"type":"string"},"status":{"type":"string"}}},"site":{"type":"object","properties":{"name":{"type":"string"},"slug":{"type":"string"},"status":{"type":"string"}}},"roles":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"label":{"type":"string"}}}},"fullName":{"type":"string"},"roleNames":{"type":"string"},"status":{"type":"string"},"isAdmin":{"type":"boolean"},"primaryRole":{"type":"string"}}}},"pagination":{"type":"object","properties":{"page":{"type":"integer"},"per_page":{"type":"integer"},"total":{"type":"integer"},"total_pages":{"type":"integer"}}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":0,"type":"number"},"per_page":{"default":10,"type":"number"},"search":{"type":"string"},"sort":{"type":"string"},"advancedSorts":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string"},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"],"additionalProperties":false}},"advancedFilters":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"object","properties":{"value":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{"type":"null"}]},"operator":{"default":"equals","type":"string","enum":["equals","contains","gt","lt","gte","lte","in","notIn"]}},"required":["value","operator"],"additionalProperties":false}},"filters":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"object","properties":{"value":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{"type":"null"}]},"operator":{"default":"equals","type":"string","enum":["equals","contains","gt","lt","gte","lte","in","notIn"]}},"required":["value","operator"],"additionalProperties":false}},"hidden_columns":{"type":"array","items":{"type":"string"}}},"required":["page","per_page"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/users.list":{"get":{"operationId":"users_list","summary":"List","tags":["users"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"email":{"type":"string"},"image":{}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"search":{"type":"string"},"limit":{"default":50,"type":"number"},"tenantId":{"type":"string"},"siteId":{"type":"string"},"onlyAuthors":{"type":"boolean"}},"required":["limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/users.forgotPassword":{"post":{"operationId":"users_forgotPassword","summary":"Forgot Password","tags":["users"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"}},"required":["email"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/users.resetPasswordWithToken":{"post":{"operationId":"users_resetPasswordWithToken","summary":"Reset Password With Token","tags":["users"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"token":{"type":"string","minLength":1},"password":{"type":"string","minLength":8}},"required":["token","password"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/users.getServerUsers":{"get":{"operationId":"users_getServerUsers","summary":"Get Server Users","tags":["users"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","default":{},"type":"object","properties":{"tenantId":{"type":"string"},"siteId":{"type":"string"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/users.getUserDetails":{"get":{"operationId":"users_getUserDetails","summary":"Get User Details","tags":["users"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"userId":{"type":"string"}},"required":["userId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/users.getUser":{"get":{"operationId":"users_getUser","summary":"Get User","tags":["users"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"updatedAt":{"type":"string"},"createdAt":{"type":"string"},"emailVerified":{"type":"string"},"blocked":{"type":"boolean"},"name":{"type":"string"},"email":{"type":"string"},"firstName":{},"lastName":{},"title":{},"password":{"type":"string"},"phone":{},"image":{},"data":{"type":"object","properties":{"menuAllowlist":{"type":"array","items":{"type":"string"}}}},"resetToken":{},"resetTokenExpiry":{},"emailVerificationToken":{},"emailVerificationTokenExpiry":{},"superiorId":{},"siteId":{"type":"string"},"tenantId":{"type":"string"},"canAccessReports":{"type":"boolean"},"canManageCash":{"type":"boolean"},"canSupervisorOverride":{"type":"boolean"},"canVoidTransactions":{"type":"boolean"},"currentShiftStart":{},"employeeNumber":{},"isClockedIn":{"type":"boolean"},"maxDiscountPercent":{"type":"integer"},"posPermissions":{},"posPin":{},"posRole":{"type":"string"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/users.getUserProfile":{"get":{"operationId":"users_getUserProfile","summary":"Get User Profile","tags":["users"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"userId":{"type":"string"}},"required":["userId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/users.getUserRoles":{"get":{"operationId":"users_getUserRoles","summary":"Get User Roles","tags":["users"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"userId":{"type":"string"}},"required":["userId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/users.createUser":{"post":{"operationId":"users_createUser","summary":"Create User","tags":["users"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"firstName":{"type":"string","minLength":1},"lastName":{"type":"string","minLength":1},"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"roles":{"type":"array","items":{"type":"string"}},"phone":{"type":"string"},"title":{"type":"string"},"tenantId":{"type":"string"},"siteId":{"type":"string"}},"required":["firstName","lastName","email","roles"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/users.createUserForSite":{"post":{"operationId":"users_createUserForSite","summary":"Create User For Site","tags":["users"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"firstName":{"type":"string","minLength":1},"lastName":{"type":"string","minLength":1},"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"roles":{"type":"array","items":{"type":"string"}},"phone":{"type":"string"},"title":{"type":"string"},"tenantId":{"type":"string"},"siteId":{"type":"string"}},"required":["firstName","lastName","email","roles","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/users.updateUser":{"post":{"operationId":"users_updateUser","summary":"Update User","tags":["users"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"firstName":{"type":"string"},"lastName":{"type":"string"},"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"title":{"type":"string"},"phone":{"type":"string"},"image":{"type":"string"},"blocked":{"type":"boolean"},"emailVerified":{},"roleIds":{"type":"array","items":{"type":"string"}},"data":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/users.updateUserProfile":{"post":{"operationId":"users_updateUserProfile","summary":"Update User Profile","tags":["users"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"firstName":{"type":"string"},"lastName":{"type":"string"},"phone":{"type":"string"},"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"companyName":{"type":"string"},"address":{"type":"string"},"bio":{"type":"string"},"twitterUrl":{"type":"string"},"linkedinUrl":{"type":"string"},"website":{"type":"string"},"userId":{"type":"string"}},"required":["firstName","lastName","email"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/users.deleteUser":{"post":{"operationId":"users_deleteUser","summary":"Delete User","tags":["users"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"userId":{"type":"string"}},"required":["userId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/users.deleteUsers":{"post":{"operationId":"users_deleteUsers","summary":"Delete Users","tags":["users"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"userIds":{"type":"array","items":{"type":"string"}}},"required":["userIds"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/users.checkUserSiteAccess":{"get":{"operationId":"users_checkUserSiteAccess","summary":"Check User Site Access","tags":["users"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"hasAccess":{"type":"boolean"},"userSiteId":{"type":"string"},"requestedSiteId":{"type":"string"},"isSuperAdmin":{"type":"boolean"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"siteId":{"type":"string"}},"required":["siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/users.getAuthoredArticles":{"get":{"operationId":"users_getAuthoredArticles","summary":"Get Authored Articles","tags":["users"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"userId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["userId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/users.getAnonymousMeilisearchCredentials":{"get":{"operationId":"users_getAnonymousMeilisearchCredentials","summary":"Get Anonymous Meilisearch Credentials","tags":["users"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/users.sendPasswordResetEmail":{"post":{"operationId":"users_sendPasswordResetEmail","summary":"Send Password Reset Email","tags":["users"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["email"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tiers.deleteTiers":{"post":{"operationId":"tiers_deleteTiers","summary":"Delete Tiers","tags":["tiers"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tiers.createTiers":{"post":{"operationId":"tiers_createTiers","summary":"Create Tiers","tags":["tiers"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"phone":{"type":"string"},"siret":{"type":"string"},"siren":{"type":"string"},"tva":{"type":"string"},"type":{"default":"CLIENT","type":"string","enum":["CLIENT","FOURNISSEUR","PROSPECT","PARTENAIRE"]},"status":{"default":"ACTIVE","type":"string","enum":["ACTIVE","INACTIVE","ARCHIVED"]},"industry":{"type":"string"},"companySize":{"type":"string"},"annualRevenue":{"type":"string"},"website":{"type":"string","format":"uri"},"description":{"type":"string"},"creditLimit":{"type":"number","minimum":0},"creditUsed":{"type":"number","minimum":0},"paymentTerms":{"type":"string"},"preferredCurrency":{"default":"EUR","type":"string","enum":["EUR","USD","GBP"]},"taxExempt":{"default":false,"type":"boolean"},"creditScore":{"type":"number","minimum":0,"maximum":1000},"riskLevel":{"type":"string","enum":["LOW","MEDIUM","HIGH"]},"tags":{"type":"array","items":{"type":"string"}},"metadata":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}}},"required":["name","type","status","preferredCurrency","taxExempt"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tiers.updateTiers":{"post":{"operationId":"tiers_updateTiers","summary":"Update Tiers","tags":["tiers"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"updates":{"type":"object","properties":{"name":{"type":"string","minLength":1},"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"phone":{"type":"string"},"siret":{"type":"string"},"siren":{"type":"string"},"tva":{"type":"string"},"type":{"type":"string","enum":["CLIENT","FOURNISSEUR","PROSPECT","PARTENAIRE"]},"status":{"type":"string","enum":["ACTIVE","INACTIVE","ARCHIVED"]},"industry":{"type":"string"},"companySize":{"type":"string"},"annualRevenue":{"type":"string"},"website":{"type":"string","format":"uri"},"description":{"type":"string"},"creditLimit":{"type":"number","minimum":0},"creditUsed":{"type":"number","minimum":0},"paymentTerms":{"type":"string"},"preferredCurrency":{"type":"string","enum":["EUR","USD","GBP"]},"taxExempt":{"type":"boolean"},"creditScore":{"type":"number","minimum":0,"maximum":1000},"riskLevel":{"type":"string","enum":["LOW","MEDIUM","HIGH"]},"tags":{"type":"array","items":{"type":"string"}},"metadata":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}}},"additionalProperties":false}},"required":["id","updates"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tiers.getTiersFilesById":{"get":{"operationId":"tiers_getTiersFilesById","summary":"Get Tiers Files By Id","tags":["tiers"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tiers.getTiersContactsById":{"get":{"operationId":"tiers_getTiersContactsById","summary":"Get Tiers Contacts By Id","tags":["tiers"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tiers.getTiersById":{"get":{"operationId":"tiers_getTiersById","summary":"Get Tiers By Id","tags":["tiers"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tiers.getTiersActivitiesById":{"get":{"operationId":"tiers_getTiersActivitiesById","summary":"Get Tiers Activities By Id","tags":["tiers"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"page":{"default":1,"type":"number","minimum":1},"limit":{"default":20,"type":"number","minimum":1,"maximum":50}},"required":["id","page","limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tiers.getTiersByIds":{"get":{"operationId":"tiers_getTiersByIds","summary":"Get Tiers By Ids","tags":["tiers"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"tiers":{"type":"array","items":{}},"total":{"type":"integer"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"ids":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}}},"required":["ids"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tiers.getFinancialsByTiersExternalIds":{"get":{"operationId":"tiers_getFinancialsByTiersExternalIds","summary":"Get Financials By Tiers External Ids","tags":["tiers"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"externalIds":{"type":"array","items":{"type":"string"}}},"required":["externalIds"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tiers.getTiersByRef":{"get":{"operationId":"tiers_getTiersByRef","summary":"Get Tiers By Ref","tags":["tiers"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"updatedAt":{"type":"string"},"createdAt":{"type":"string"},"syncedAt":{"type":"string"},"superiorId":{},"ref":{"type":"string"},"externalId":{"type":"string"},"externalRef":{"type":"string"},"externalRefComptable":{},"description":{"type":"string"},"numSiren":{},"numSiret":{"type":"string"},"numTva":{"type":"string"},"codeNaf":{},"commercial":{},"statut":{"type":"string"},"source":{"type":"string"},"echeance":{},"modeDePaiement":{"type":"string"},"mainActivity":{"type":"string"},"paymentConditionId":{},"deliveryComments":{"type":"string"},"date_creation":{"type":"string"},"date_dernier_appelTelepro":{},"date_dernier_appelCommercial":{},"date_dernier_rdv":{},"date_prochain_rdv":{},"rdvPris":{},"rib":{},"extraData":{"type":"object","properties":{"email":{"type":"string"},"optin":{"type":"boolean"},"active":{"type":"boolean"},"id_lang":{"type":"integer"},"id_shop":{"type":"integer"},"date_add":{"type":"string"},"date_upd":{"type":"string"},"lastSync":{"type":"string"},"lastname":{"type":"string"},"addresses":{"type":"array","items":{"type":"object","properties":{"city":{"type":"string"},"phone":{"type":"string"},"address":{"type":"string"},"country":{"type":"string"},"address2":{"type":"string"},"postcode":{"type":"string"},"phone_mobile":{"type":"string"}}}},"firstname":{"type":"string"},"newsletter":{"type":"boolean"},"id_customer":{"type":"integer"},"id_shop_group":{"type":"integer"}}},"geocode":{},"addressL1":{"type":"string"},"addressL2":{"type":"string"},"addressCP":{"type":"string"},"addressCommune":{"type":"string"},"addressDepartement":{"type":"string"},"latitude":{},"longitude":{},"userId":{"type":"string"},"createdById":{"type":"string"},"assignedToId":{},"tenantId":{"type":"string"},"siteId":{"type":"string"},"lastSyncedAt":{},"accountManagerId":{},"annualRevenue":{},"averageOrderValue":{"type":"string"},"companySize":{},"creditCheckDate":{},"creditLimit":{},"creditScore":{},"creditUsed":{"type":"string"},"firstOrderDate":{},"industry":{},"language":{"type":"string"},"lastOrderDate":{},"lastQualificationDate":{},"leadScore":{"type":"integer"},"lifetimeValue":{"type":"string"},"outstandingBalance":{"type":"string"},"parentCompanyId":{},"partnerType":{},"paymentTerms":{},"preferredContactMethod":{"type":"string"},"preferredCurrency":{"type":"string"},"qualificationNotes":{},"qualificationStatus":{},"socialMediaUrls":{},"taxExempt":{"type":"boolean"},"timezone":{},"totalRevenue":{"type":"string"},"website":{},"contacts":{"type":"array","items":{}},"Activities":{"type":"array","items":{}},"Opportunities":{"type":"array","items":{}},"financial":{"type":"array","items":{}},"Documents":{"type":"array","items":{}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"ref":{"type":"string"}},"required":["ref"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tiers.searchAndExportTiers":{"get":{"operationId":"tiers_searchAndExportTiers","summary":"Search And Export Tiers","tags":["tiers"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"search":{"type":"string"},"filters":{"type":"object","properties":{"type":{"type":"array","items":{"type":"string","enum":["CLIENT","FOURNISSEUR","PROSPECT","PARTENAIRE"]}},"status":{"type":"array","items":{"type":"string","enum":["ACTIVE","INACTIVE","ARCHIVED"]}},"industry":{"type":"array","items":{"type":"string"}},"tags":{"type":"array","items":{"type":"string"}},"creditScoreMin":{"type":"number"},"creditScoreMax":{"type":"number"},"createdFrom":{},"createdTo":{}},"additionalProperties":false},"sortBy":{"default":"name","type":"string","enum":["name","createdAt","updatedAt","creditScore"]},"sortOrder":{"default":"asc","type":"string","enum":["asc","desc"]},"page":{"default":1,"type":"number","minimum":1},"limit":{"default":50,"type":"number","minimum":1,"maximum":1000},"export":{"default":false,"type":"boolean"},"exportFormat":{"default":"CSV","type":"string","enum":["CSV","EXCEL"]}},"required":["sortBy","sortOrder","page","limit","export","exportFormat"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tiers.getAllTiers":{"get":{"operationId":"tiers_getAllTiers","summary":"Get All Tiers","tags":["tiers"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"tiers":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"updatedAt":{"type":"string"},"createdAt":{"type":"string"},"syncedAt":{"type":"string"},"superiorId":{},"ref":{"type":"string"},"externalId":{"type":"string"},"externalRef":{"type":"string"},"externalRefComptable":{},"description":{"type":"string"},"numSiren":{},"numSiret":{},"numTva":{},"codeNaf":{},"commercial":{},"statut":{"type":"string"},"source":{"type":"string"},"echeance":{},"modeDePaiement":{},"mainActivity":{},"paymentConditionId":{},"deliveryComments":{},"date_creation":{"type":"string"},"date_dernier_appelTelepro":{},"date_dernier_appelCommercial":{},"date_dernier_rdv":{},"date_prochain_rdv":{},"rdvPris":{},"rib":{},"extraData":{"type":"object","properties":{"email":{"type":"string"},"optin":{"type":"boolean"},"active":{"type":"boolean"},"id_lang":{"type":"integer"},"id_shop":{"type":"integer"},"date_add":{"type":"string"},"date_upd":{"type":"string"},"lastSync":{"type":"string"},"lastname":{"type":"string"},"addresses":{"type":"array","items":{}},"firstname":{"type":"string"},"newsletter":{"type":"boolean"},"id_customer":{"type":"integer"},"id_shop_group":{"type":"integer"}}},"geocode":{},"addressL1":{},"addressL2":{},"addressCP":{},"addressCommune":{},"addressDepartement":{},"latitude":{},"longitude":{},"userId":{"type":"string"},"createdById":{"type":"string"},"assignedToId":{},"tenantId":{"type":"string"},"siteId":{"type":"string"},"lastSyncedAt":{},"accountManagerId":{},"annualRevenue":{},"averageOrderValue":{"type":"string"},"companySize":{},"creditCheckDate":{},"creditLimit":{},"creditScore":{},"creditUsed":{"type":"string"},"firstOrderDate":{},"industry":{},"language":{"type":"string"},"lastOrderDate":{},"lastQualificationDate":{},"leadScore":{"type":"integer"},"lifetimeValue":{"type":"string"},"outstandingBalance":{"type":"string"},"parentCompanyId":{},"partnerType":{},"paymentTerms":{},"preferredContactMethod":{"type":"string"},"preferredCurrency":{"type":"string"},"qualificationNotes":{},"qualificationStatus":{},"socialMediaUrls":{},"taxExempt":{"type":"boolean"},"timezone":{},"totalRevenue":{"type":"string"},"website":{},"contacts":{"type":"array","items":{}},"financial":{"type":"array","items":{}}}}},"total":{"type":"integer"},"page":{"type":"integer"},"limit":{"type":"integer"},"hasMore":{"type":"boolean"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"number","minimum":1},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"search":{"type":"string"},"type":{"type":"string","enum":["CLIENT","FOURNISSEUR","PROSPECT","PARTENAIRE"]},"status":{"type":"string","enum":["ACTIVE","INACTIVE","ARCHIVED"]},"sortBy":{"default":"name","type":"string","enum":["name","createdAt","updatedAt"]},"sortOrder":{"default":"asc","type":"string","enum":["asc","desc"]}},"required":["page","limit","sortBy","sortOrder"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tiers.checkTiersExistence":{"get":{"operationId":"tiers_checkTiersExistence","summary":"Check Tiers Existence","tags":["tiers"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"exists":{"type":"boolean"},"tiers":{},"matches":{"type":"array","items":{}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"criteria":{"type":"object","properties":{"siret":{"type":"string"},"siren":{"type":"string"},"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"name":{"type":"string"}},"additionalProperties":false}},"required":["criteria"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tiers.toggleTiersStatus":{"post":{"operationId":"tiers_toggleTiersStatus","summary":"Toggle Tiers Status","tags":["tiers"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"status":{"type":"string","enum":["ACTIVE","INACTIVE","ARCHIVED"]}},"required":["id","status"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tiers.getTiers":{"get":{"operationId":"tiers_getTiers","summary":"Get Tiers","tags":["tiers"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"tiers":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"updatedAt":{"type":"string"},"createdAt":{"type":"string"},"syncedAt":{"type":"string"},"superiorId":{},"ref":{"type":"string"},"externalId":{"type":"string"},"externalRef":{"type":"string"},"externalRefComptable":{},"description":{"type":"string"},"numSiren":{},"numSiret":{},"numTva":{},"codeNaf":{},"commercial":{},"statut":{"type":"string"},"source":{"type":"string"},"echeance":{},"modeDePaiement":{},"mainActivity":{},"paymentConditionId":{},"deliveryComments":{},"date_creation":{"type":"string"},"date_dernier_appelTelepro":{},"date_dernier_appelCommercial":{},"date_dernier_rdv":{},"date_prochain_rdv":{},"rdvPris":{},"rib":{},"extraData":{"type":"object","properties":{"email":{"type":"string"},"optin":{"type":"boolean"},"active":{"type":"boolean"},"id_lang":{"type":"integer"},"id_shop":{"type":"integer"},"date_add":{"type":"string"},"date_upd":{"type":"string"},"lastSync":{"type":"string"},"lastname":{"type":"string"},"addresses":{"type":"array","items":{}},"firstname":{"type":"string"},"newsletter":{"type":"boolean"},"id_customer":{"type":"integer"},"id_shop_group":{"type":"integer"}}},"geocode":{},"addressL1":{},"addressL2":{},"addressCP":{},"addressCommune":{},"addressDepartement":{},"latitude":{},"longitude":{},"userId":{"type":"string"},"createdById":{"type":"string"},"assignedToId":{},"tenantId":{"type":"string"},"siteId":{"type":"string"},"lastSyncedAt":{},"accountManagerId":{},"annualRevenue":{},"averageOrderValue":{"type":"string"},"companySize":{},"creditCheckDate":{},"creditLimit":{},"creditScore":{},"creditUsed":{"type":"string"},"firstOrderDate":{},"industry":{},"language":{"type":"string"},"lastOrderDate":{},"lastQualificationDate":{},"leadScore":{"type":"integer"},"lifetimeValue":{"type":"string"},"outstandingBalance":{"type":"string"},"parentCompanyId":{},"partnerType":{},"paymentTerms":{},"preferredContactMethod":{"type":"string"},"preferredCurrency":{"type":"string"},"qualificationNotes":{},"qualificationStatus":{},"socialMediaUrls":{},"taxExempt":{"type":"boolean"},"timezone":{},"totalRevenue":{"type":"string"},"website":{},"contacts":{"type":"array","items":{}},"financial":{"type":"array","items":{}}}}},"total":{"type":"integer"},"page":{"type":"integer"},"limit":{"type":"integer"},"hasMore":{"type":"boolean"},"summary":{}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"number","minimum":1},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"search":{"type":"string"},"filters":{"type":"object","properties":{"type":{"type":"array","items":{"type":"string","enum":["CLIENT","FOURNISSEUR","PROSPECT","PARTENAIRE"]}},"status":{"type":"array","items":{"type":"string","enum":["ACTIVE","INACTIVE","ARCHIVED"]}},"industry":{"type":"array","items":{"type":"string"}},"tags":{"type":"array","items":{"type":"string"}},"hasCredit":{"type":"boolean"},"creditRisk":{"type":"string","enum":["LOW","MEDIUM","HIGH"]}},"additionalProperties":false},"sortBy":{"default":"name","type":"string","enum":["name","createdAt","updatedAt","creditScore","totalRevenue"]},"sortOrder":{"default":"asc","type":"string","enum":["asc","desc"]},"includeContacts":{"default":false,"type":"boolean"},"includeFinancials":{"default":false,"type":"boolean"}},"required":["page","limit","sortBy","sortOrder","includeContacts","includeFinancials"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tiers.createContact":{"post":{"operationId":"tiers_createContact","summary":"Create Contact","tags":["tiers"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tiersId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"firstName":{"type":"string","minLength":1},"lastName":{"type":"string","minLength":1},"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"phone":{"type":"string"},"mobile":{"type":"string"},"role":{"type":"string"},"title":{"type":"string"},"department":{"type":"string"},"isPrimary":{"default":false,"type":"boolean"},"tags":{"type":"array","items":{"type":"string"}},"metadata":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}}},"required":["tiersId","firstName","lastName","isPrimary"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tiers.linkContact":{"post":{"operationId":"tiers_linkContact","summary":"Link Contact","tags":["tiers"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tiersId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"contactId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"role":{"type":"string"},"isPrimary":{"default":false,"type":"boolean"}},"required":["tiersId","contactId","isPrimary"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tiers.unlinkContact":{"post":{"operationId":"tiers_unlinkContact","summary":"Unlink Contact","tags":["tiers"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tiersId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"contactId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["tiersId","contactId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tiers.getTiersBySiret":{"get":{"operationId":"tiers_getTiersBySiret","summary":"Get Tiers By Siret","tags":["tiers"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"updatedAt":{"type":"string"},"createdAt":{"type":"string"},"syncedAt":{"type":"string"},"superiorId":{},"ref":{"type":"string"},"externalId":{"type":"string"},"externalRef":{"type":"string"},"externalRefComptable":{},"description":{"type":"string"},"numSiren":{},"numSiret":{"type":"string"},"numTva":{"type":"string"},"codeNaf":{},"commercial":{},"statut":{"type":"string"},"source":{"type":"string"},"echeance":{},"modeDePaiement":{"type":"string"},"mainActivity":{"type":"string"},"paymentConditionId":{},"deliveryComments":{"type":"string"},"date_creation":{"type":"string"},"date_dernier_appelTelepro":{},"date_dernier_appelCommercial":{},"date_dernier_rdv":{},"date_prochain_rdv":{},"rdvPris":{},"rib":{},"extraData":{"type":"object","properties":{"email":{"type":"string"},"optin":{"type":"boolean"},"active":{"type":"boolean"},"id_lang":{"type":"integer"},"id_shop":{"type":"integer"},"date_add":{"type":"string"},"date_upd":{"type":"string"},"lastSync":{"type":"string"},"lastname":{"type":"string"},"addresses":{"type":"array","items":{"type":"object","properties":{"city":{"type":"string"},"phone":{"type":"string"},"address":{"type":"string"},"country":{"type":"string"},"address2":{"type":"string"},"postcode":{"type":"string"},"phone_mobile":{"type":"string"}}}},"firstname":{"type":"string"},"newsletter":{"type":"boolean"},"id_customer":{"type":"integer"},"id_shop_group":{"type":"integer"}}},"geocode":{},"addressL1":{"type":"string"},"addressL2":{"type":"string"},"addressCP":{"type":"string"},"addressCommune":{"type":"string"},"addressDepartement":{"type":"string"},"latitude":{},"longitude":{},"userId":{"type":"string"},"createdById":{"type":"string"},"assignedToId":{},"tenantId":{"type":"string"},"siteId":{"type":"string"},"lastSyncedAt":{},"accountManagerId":{},"annualRevenue":{},"averageOrderValue":{"type":"string"},"companySize":{},"creditCheckDate":{},"creditLimit":{},"creditScore":{},"creditUsed":{"type":"string"},"firstOrderDate":{},"industry":{},"language":{"type":"string"},"lastOrderDate":{},"lastQualificationDate":{},"leadScore":{"type":"integer"},"lifetimeValue":{"type":"string"},"outstandingBalance":{"type":"string"},"parentCompanyId":{},"partnerType":{},"paymentTerms":{},"preferredContactMethod":{"type":"string"},"preferredCurrency":{"type":"string"},"qualificationNotes":{},"qualificationStatus":{},"socialMediaUrls":{},"taxExempt":{"type":"boolean"},"timezone":{},"totalRevenue":{"type":"string"},"website":{}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"siret":{"type":"string"}},"required":["siret"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tiers.createAddress":{"post":{"operationId":"tiers_createAddress","summary":"Create Address","tags":["tiers"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tiersId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"type":{"default":"BILLING","type":"string","enum":["BILLING","SHIPPING","HEADQUARTERS","BRANCH"]},"name":{"type":"string"},"street":{"type":"string","minLength":1},"street2":{"type":"string"},"city":{"type":"string","minLength":1},"postalCode":{"type":"string","minLength":1},"country":{"default":"FR","type":"string","minLength":2,"maxLength":2},"region":{"type":"string"},"latitude":{"type":"number"},"longitude":{"type":"number"},"isDefault":{"default":false,"type":"boolean"},"isActive":{"default":true,"type":"boolean"},"metadata":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}}},"required":["tiersId","type","street","city","postalCode","country","isDefault","isActive"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tiers.createActivity":{"post":{"operationId":"tiers_createActivity","summary":"Create Activity","tags":["tiers"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tiersId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"type":{"type":"string","enum":["CALL","EMAIL","MEETING","TASK","NOTE","DOCUMENT_SHARED","QUOTE_SENT","PROPOSAL_SENT","CONTRACT_SIGNED","PAYMENT_RECEIVED","FOLLOW_UP","OTHER"]},"subject":{"type":"string","minLength":1},"description":{"type":"string"},"scheduledAt":{},"contactId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"opportunityId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"eventId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"priority":{"default":"MEDIUM","type":"string","enum":["LOW","MEDIUM","HIGH","URGENT"]},"metadata":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}}},"required":["tiersId","type","subject","priority"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tiers.updateActivity":{"post":{"operationId":"tiers_updateActivity","summary":"Update Activity","tags":["tiers"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tiersId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"type":{"type":"string","enum":["CALL","EMAIL","MEETING","TASK","NOTE","DOCUMENT_SHARED","QUOTE_SENT","PROPOSAL_SENT","CONTRACT_SIGNED","PAYMENT_RECEIVED","FOLLOW_UP","OTHER"]},"subject":{"type":"string","minLength":1},"description":{"type":"string"},"scheduledAt":{},"contactId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"opportunityId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"eventId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"priority":{"default":"MEDIUM","type":"string","enum":["LOW","MEDIUM","HIGH","URGENT"]},"metadata":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"status":{"type":"string","enum":["PENDING","COMPLETED","CANCELLED"]},"outcome":{"type":"string"},"notes":{"type":"string"},"completedAt":{},"duration":{"type":"number","exclusiveMinimum":0}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tiers.getActivities":{"get":{"operationId":"tiers_getActivities","summary":"Get Activities","tags":["tiers"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tiersId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"contactId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"type":{"type":"array","items":{"type":"string","enum":["CALL","EMAIL","MEETING","TASK","NOTE","DOCUMENT_SHARED","QUOTE_SENT","PROPOSAL_SENT","CONTRACT_SIGNED","PAYMENT_RECEIVED","FOLLOW_UP","OTHER"]}},"status":{"type":"array","items":{"type":"string","enum":["PENDING","COMPLETED","CANCELLED"]}},"priority":{"type":"array","items":{"type":"string","enum":["LOW","MEDIUM","HIGH","URGENT"]}},"dateFrom":{},"dateTo":{},"assignedToId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"page":{"default":1,"type":"number","minimum":1},"limit":{"default":20,"type":"number","minimum":1,"maximum":50},"sortBy":{"default":"createdAt","type":"string","enum":["createdAt","scheduledAt","priority","type"]},"sortOrder":{"default":"desc","type":"string","enum":["asc","desc"]}},"required":["page","limit","sortBy","sortOrder"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tiers.createOpportunity":{"post":{"operationId":"tiers_createOpportunity","summary":"Create Opportunity","tags":["tiers"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tiersId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"name":{"type":"string","minLength":1},"description":{"type":"string"},"status":{"type":"string","enum":["LEAD","QUALIFIED","PROPOSAL","NEGOTIATION","CLOSED_WON","CLOSED_LOST"]},"source":{"type":"string","enum":["WEBSITE","REFERRAL","COLD_CALL","EMAIL_CAMPAIGN","SOCIAL_MEDIA","TRADE_SHOW","PARTNER","OTHER"]},"stage":{"type":"string"},"value":{"type":"number","exclusiveMinimum":0},"probability":{"default":0,"type":"number","minimum":0,"maximum":100},"expectedCloseDate":{},"primaryContactId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"assignedToId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"lostReason":{"type":"string"},"competitorInfo":{"type":"string"},"nextAction":{"type":"string"},"nextActionDate":{},"metadata":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}}},"required":["tiersId","name","probability","assignedToId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tiers.updateOpportunity":{"post":{"operationId":"tiers_updateOpportunity","summary":"Update Opportunity","tags":["tiers"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tiersId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"name":{"type":"string","minLength":1},"description":{"type":"string"},"status":{"type":"string","enum":["LEAD","QUALIFIED","PROPOSAL","NEGOTIATION","CLOSED_WON","CLOSED_LOST"]},"source":{"type":"string","enum":["WEBSITE","REFERRAL","COLD_CALL","EMAIL_CAMPAIGN","SOCIAL_MEDIA","TRADE_SHOW","PARTNER","OTHER"]},"stage":{"type":"string"},"value":{"type":"number","exclusiveMinimum":0},"probability":{"default":0,"type":"number","minimum":0,"maximum":100},"expectedCloseDate":{},"primaryContactId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"assignedToId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"lostReason":{"type":"string"},"competitorInfo":{"type":"string"},"nextAction":{"type":"string"},"nextActionDate":{},"metadata":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"actualCloseDate":{}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tiers.getOpportunities":{"get":{"operationId":"tiers_getOpportunities","summary":"Get Opportunities","tags":["tiers"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"opportunities":{"type":"array","items":{}},"total":{"type":"integer"},"page":{"type":"integer"},"limit":{"type":"integer"},"hasMore":{"type":"boolean"},"summary":{}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tiersId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"status":{"type":"array","items":{"type":"string","enum":["LEAD","QUALIFIED","PROPOSAL","NEGOTIATION","CLOSED_WON","CLOSED_LOST"]}},"stage":{"type":"array","items":{"type":"string"}},"assignedToId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"valueMin":{"type":"number"},"valueMax":{"type":"number"},"probabilityMin":{"type":"number"},"probabilityMax":{"type":"number"},"expectedCloseFrom":{},"expectedCloseTo":{},"page":{"default":1,"type":"number","minimum":1},"limit":{"default":20,"type":"number","minimum":1,"maximum":50},"sortBy":{"default":"createdAt","type":"string","enum":["createdAt","expectedCloseDate","value","probability"]},"sortOrder":{"default":"desc","type":"string","enum":["asc","desc"]}},"required":["page","limit","sortBy","sortOrder"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tiers.createCustomField":{"post":{"operationId":"tiers_createCustomField","summary":"Create Custom Field","tags":["tiers"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"type":"object"}},"required":["json"]}}}}}},"/api/trpc/tiers.updateFinancialInfo":{"post":{"operationId":"tiers_updateFinancialInfo","summary":"Update Financial Info","tags":["tiers"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tiersId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"financialData":{"type":"object","properties":{"totalRevenue":{"type":"number","minimum":0},"outstandingBalance":{"type":"number","minimum":0},"averageOrderValue":{"type":"number","minimum":0},"lifetimeValue":{"type":"number","minimum":0},"creditLimit":{"type":"number","minimum":0},"creditUsed":{"type":"number","minimum":0},"paymentTerms":{"type":"string"},"creditScore":{"type":"number","minimum":0,"maximum":1000},"riskLevel":{"type":"string","enum":["LOW","MEDIUM","HIGH"]},"lastPaymentDate":{},"firstOrderDate":{},"lastOrderDate":{},"paymentCondition":{}},"additionalProperties":false}},"required":["tiersId","financialData"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tiers.getTiersEnhanced":{"get":{"operationId":"tiers_getTiersEnhanced","summary":"Get Tiers Enhanced","tags":["tiers"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"includeContacts":{"default":true,"type":"boolean"},"includeAddresses":{"default":true,"type":"boolean"},"includeActivities":{"default":false,"type":"boolean"},"includeOpportunities":{"default":false,"type":"boolean"},"includeFinancials":{"default":true,"type":"boolean"},"includeFiles":{"default":false,"type":"boolean"},"activityLimit":{"default":5,"type":"number","minimum":1,"maximum":20},"opportunityLimit":{"default":5,"type":"number","minimum":1,"maximum":10}},"required":["id","includeContacts","includeAddresses","includeActivities","includeOpportunities","includeFinancials","includeFiles","activityLimit","opportunityLimit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.getOrders":{"get":{"operationId":"orders_getOrders","summary":"Get Orders","tags":["orders"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"invoiceNumber":{"type":"string"},"invoiceDate":{"type":"string"},"invoiceStatus":{"type":"string"},"totalAmount":{"type":"number"},"currency":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"paymentMethod":{},"expiresAt":{},"deliveryDate":{"type":"string"},"customInputs":{"type":"object","properties":{"note":{"type":"string"},"valid":{"type":"string"},"status":{"type":"string"},"customer":{"type":"object","properties":{"email":{"type":"string"},"lastName":{"type":"string"},"firstName":{"type":"string"}}},"reference":{"type":"string"},"pickup_slot":{},"delivery_date":{"type":"string"},"delivery_slot":{"type":"object","properties":{"day":{"type":"string"},"hour":{"type":"string"},"cause":{},"manual":{"type":"boolean"},"hour_end":{"type":"string"},"reminded":{"type":"boolean"},"manual_comment":{},"store_informed":{"type":"boolean"}}},"prestashop_id":{"type":"string"},"invoice_number":{"type":"string"},"payment_method":{"type":"string"},"invoice_address":{"type":"object","properties":{"city":{"type":"string"},"address":{"type":"string"},"country":{"type":"string"},"address2":{"type":"string"},"lastName":{"type":"string"},"postcode":{"type":"string"},"firstName":{"type":"string"}}},"delivery_address":{"type":"object","properties":{"city":{"type":"string"},"address":{"type":"string"},"country":{"type":"string"},"address2":{"type":"string"},"lastName":{"type":"string"},"postcode":{"type":"string"},"firstName":{"type":"string"}}},"deliveryDataHistory":{"type":"object","properties":{"entries":{"type":"array","items":{"type":"object","properties":{"reason":{"type":"string"},"source":{"type":"string"},"newDate":{"type":"string"},"oldDate":{},"metadata":{"type":"object","properties":{"reference":{},"isNewOrder":{}}},"timestamp":{"type":"string"}}}},"createdAt":{"type":"string"},"lastUpdated":{"type":"string"}}}}},"source":{},"receiver":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"email":{"type":"string"}}},"sender":{"type":"object","properties":{"id":{"type":"string"},"name":{},"email":{"type":"string"}}},"client":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"email":{"type":"string"}}},"vendors":{"type":"array","items":{}},"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"description":{"type":"string"},"quantity":{"type":"integer"},"unitPrice":{"type":"number"},"product":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"reference":{"type":"string"},"sku":{},"price":{"type":"integer"},"salePrice":{},"mainImageId":{}}}}}}}}},"total":{"type":"integer"},"page":{"type":"integer"},"pageSize":{"type":"integer"},"pageCount":{"type":"integer"},"hasNextPage":{"type":"boolean"},"hasPrevPage":{"type":"boolean"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{},"per_page":{},"search":{"anyOf":[{"type":"string"},{"type":"null"}]},"sort":{"anyOf":[{"type":"string"},{"type":"null"}]},"filters":{"default":{},"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"object","properties":{"value":{"type":"string"},"operator":{"type":"string"}},"required":["value","operator"],"additionalProperties":false}},"advancedFilters":{"default":[],"type":"array","items":{}},"advancedSorts":{"default":[],"type":"array","items":{"type":"object","properties":{"field":{"type":"string"},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"],"additionalProperties":false}},"fields":{"default":"detailed","anyOf":[{"type":"string","enum":["minimal","basic","detailed"]},{"type":"array","items":{"type":"string"}}]},"paymentLinkFilter":{"default":"all","type":"string","enum":["all","exclude","only"]},"offlinePaymentFilter":{"default":"all","type":"string","enum":["all","only"]}},"required":["page","per_page","filters","advancedFilters","advancedSorts"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.getInvoices":{"get":{"operationId":"orders_getInvoices","summary":"Get Invoices","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{},"per_page":{},"search":{"type":"string"},"sort":{"type":"string"},"filters":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"object","properties":{"value":{"type":"string"},"operator":{"type":"string"}},"required":["value","operator"],"additionalProperties":false}}},"required":["page","per_page"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.getOrderById":{"get":{"operationId":"orders_getOrderById","summary":"Get Order By Id","tags":["orders"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"invoiceNumber":{"type":"string"},"reference":{},"invoiceDate":{"type":"string"},"deliveryDate":{"type":"string"},"orderType":{"type":"string"},"invoiceStatus":{"type":"string"},"totalAmount":{"type":"number"},"currency":{"type":"string"},"source":{},"paymentIntentId":{},"stripeSessionId":{},"stripeInvoiceId":{},"plenigoOrderId":{},"expiresAt":{},"paymentMethod":{},"senderId":{"type":"string"},"receiverId":{"type":"string"},"clientId":{"type":"string"},"customInputs":{"type":"object","properties":{"note":{"type":"string"},"valid":{"type":"string"},"status":{"type":"string"},"customer":{"type":"object","properties":{"email":{"type":"string"},"lastName":{"type":"string"},"firstName":{"type":"string"}}},"reference":{"type":"string"},"pickup_slot":{},"delivery_date":{"type":"string"},"delivery_slot":{"type":"object","properties":{"day":{"type":"string"},"hour":{"type":"string"},"cause":{},"manual":{"type":"boolean"},"hour_end":{"type":"string"},"reminded":{"type":"boolean"},"manual_comment":{},"store_informed":{"type":"boolean"}}},"prestashop_id":{"type":"string"},"invoice_number":{"type":"string"},"payment_method":{"type":"string"},"invoice_address":{"type":"object","properties":{"city":{"type":"string"},"address":{"type":"string"},"country":{"type":"string"},"address2":{"type":"string"},"lastName":{"type":"string"},"postcode":{"type":"string"},"firstName":{"type":"string"}}},"delivery_address":{"type":"object","properties":{"city":{"type":"string"},"address":{"type":"string"},"country":{"type":"string"},"address2":{"type":"string"},"lastName":{"type":"string"},"postcode":{"type":"string"},"firstName":{"type":"string"}}},"deliveryDataHistory":{"type":"object","properties":{"entries":{"type":"array","items":{"type":"object","properties":{"reason":{"type":"string"},"source":{"type":"string"},"newDate":{"type":"string"},"oldDate":{},"metadata":{"type":"object","properties":{"reference":{"type":"string"},"isNewOrder":{"type":"boolean"}}},"timestamp":{"type":"string"}}}},"createdAt":{"type":"string"},"lastUpdated":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"},"appliedVoucherId":{},"subscriptionId":{},"isRenewalOrder":{"type":"boolean"},"requiresValidation":{"type":"boolean"},"validatedAt":{},"validatedBy":{},"processedAt":{},"processedBy":{},"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"name":{"type":"string"},"description":{"type":"string"},"quantity":{"type":"integer"},"unitPrice":{"type":"number"},"data":{"type":"object","properties":{"genericMapping":{"type":"object","properties":{"mappedQuantity":{"type":"integer"},"conversionFactor":{"type":"number"},"genericProductId":{"type":"string"},"originalQuantity":{"type":"integer"},"externalProductId":{"type":"string"}}}}},"externalOrderId":{"type":"string"},"externalProductId":{"type":"string"},"externalVendorId":{},"externalItemId":{"type":"string"},"orderId":{"type":"string"},"productId":{"type":"string"},"productVariationId":{},"vendorId":{"type":"string"},"voucherDiscountAmount":{},"siteId":{"type":"string"},"product":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"reference":{"type":"string"},"sku":{},"price":{"type":"integer"},"salePrice":{},"mainImageId":{},"_count":{"type":"object","properties":{"bundleComponents":{"type":"integer"}}}}},"vendor":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"email":{"type":"string"}}}}}},"client":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"email":{"type":"string"},"phone":{"type":"string"},"address":{"type":"string"},"zipCode":{"type":"string"},"city":{"type":"string"},"country":{"type":"string"},"siret":{},"isProfessional":{"type":"boolean"}}},"sender":{"type":"object","properties":{"id":{"type":"string"},"name":{},"email":{"type":"string"}}},"receiver":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"email":{"type":"string"}}},"vendors":{"type":"array","items":{}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.getOrdersByIds":{"get":{"operationId":"orders_getOrdersByIds","summary":"Get Orders By Ids","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"ids":{"minItems":1,"maxItems":50,"type":"array","items":{"type":"string"}},"productId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"includeItems":{"type":"boolean"}},"required":["ids"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.getOrdersByIdsForProducts":{"get":{"operationId":"orders_getOrdersByIdsForProducts","summary":"Get Orders By Ids For Products","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"ids":{"minItems":1,"maxItems":200,"type":"array","items":{"type":"string"}},"productIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"includeItems":{"type":"boolean"}},"required":["ids"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.getOrderItems":{"get":{"operationId":"orders_getOrderItems","summary":"Get Order Items","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string"}},"required":["orderId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.getOrderSubscriptionContext":{"get":{"operationId":"orders_getOrderSubscriptionContext","summary":"Get Order Subscription Context","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string"}},"required":["orderId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.getRelatedSupplierOrders":{"get":{"operationId":"orders_getRelatedSupplierOrders","summary":"Get Related Supplier Orders","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["orderId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.deleteOrder":{"post":{"operationId":"orders_deleteOrder","summary":"Delete Order","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.deleteOrders":{"post":{"operationId":"orders_deleteOrders","summary":"Delete Orders","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"ids":{"type":"array","items":{"type":"string"}}},"required":["ids"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.updateStatus":{"post":{"operationId":"orders_updateStatus","summary":"Update Status","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"status":{"type":"string","enum":["DRAFT","SENT","PAID","OVERDUE","CANCELED"]}},"required":["id","status"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.markPaid":{"post":{"operationId":"orders_markPaid","summary":"Mark Paid","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"paymentIntentId":{"type":"string"},"paymentMethod":{"type":"string"}},"required":["orderId","paymentIntentId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.markProcessed":{"post":{"operationId":"orders_markProcessed","summary":"Mark Processed","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"processed":{"default":true,"type":"boolean"}},"required":["orderId","processed"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.validateOrder":{"post":{"operationId":"orders_validateOrder","summary":"Validate Order","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["orderId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.createOrder":{"post":{"operationId":"orders_createOrder","summary":"Create Order","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"invoiceNumber":{},"invoiceDate":{},"deliveryDate":{"anyOf":[{},{"type":"null"}]},"invoiceStatus":{"default":"DRAFT","type":"string","enum":["DRAFT","SENT","PAID","OVERDUE","CANCELED"]},"receiverId":{"type":"string"},"senderId":{"type":"string"},"clientId":{"type":"string"},"currency":{"default":"EUR","type":"string"},"totalAmount":{"default":0,"type":"number"},"additionalNotes":{"type":"string"},"items":{"default":[],"type":"array","items":{"type":"object","properties":{"productId":{"type":"string"},"name":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"quantity":{"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991},"unitPrice":{"type":"number","minimum":0}},"required":["name","quantity","unitPrice"],"additionalProperties":false}},"recalculateVendors":{"type":"boolean"}},"required":["invoiceNumber","invoiceDate","invoiceStatus","currency","totalAmount","items"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.updateOrder":{"post":{"operationId":"orders_updateOrder","summary":"Update Order","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"invoiceNumber":{},"invoiceDate":{},"deliveryDate":{"anyOf":[{},{"type":"null"}]},"invoiceStatus":{"type":"string","enum":["DRAFT","SENT","PAID","OVERDUE","CANCELED"]},"receiverId":{"anyOf":[{"type":"string"},{"type":"null"}]},"senderId":{"anyOf":[{"type":"string"},{"type":"null"}]},"clientId":{"anyOf":[{"type":"string"},{"type":"null"}]},"vendorIds":{"type":"array","items":{"type":"string"}},"currency":{"type":"string"},"totalAmount":{"type":"number"},"additionalNotes":{"type":"string"},"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"productId":{"type":"string"},"name":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"quantity":{"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991},"unitPrice":{"type":"number","minimum":0}},"required":["name","quantity","unitPrice"],"additionalProperties":false}},"recalculateVendors":{"type":"boolean"}},"required":["id","invoiceNumber"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.fetchOrders":{"post":{"operationId":"orders_fetchOrders","summary":"Fetch Orders","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/orders.exportOrders":{"post":{"operationId":"orders_exportOrders","summary":"Export Orders","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"format":{"type":"string","enum":["csv","xlsx","json"]},"filters":{"type":"object","properties":{"search":{"type":"string"},"sort":{"type":"string"},"advancedFilters":{"type":"array","items":{}},"advancedSorts":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string"},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"],"additionalProperties":false}}},"additionalProperties":false},"columns":{"type":"array","items":{"type":"string"}}},"required":["format"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.syncOrder":{"post":{"operationId":"orders_syncOrder","summary":"Sync Order","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["orderId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.createOrderItem":{"post":{"operationId":"orders_createOrderItem","summary":"Create Order Item","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"name":{"type":"string","minLength":1},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"quantity":{"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991},"unitPrice":{"type":"number","minimum":0},"productId":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]},"vendorId":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]}},"required":["orderId","name","quantity","unitPrice"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.updateOrderItem":{"post":{"operationId":"orders_updateOrderItem","summary":"Update Order Item","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"type":"object"}},"required":["json"]}}}}}},"/api/trpc/orders.deleteOrderItem":{"post":{"operationId":"orders_deleteOrderItem","summary":"Delete Order Item","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.getLiveOrders":{"get":{"operationId":"orders_getLiveOrders","summary":"Get Live Orders","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"statuses":{"type":"array","items":{"type":"string","enum":["DRAFT","SENT","PAID","OVERDUE","CANCELED"]}},"limit":{"default":50,"type":"number"},"sortBy":{"default":"invoiceDate","type":"string","enum":["invoiceDate","createdAt","updatedAt"]},"sortOrder":{"default":"asc","type":"string","enum":["asc","desc"]}},"required":["limit","sortBy","sortOrder"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.updateKitchenStatus":{"post":{"operationId":"orders_updateKitchenStatus","summary":"Update Kitchen Status","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"kitchenStatus":{"type":"string","enum":["received","preparing","ready","completed"]},"notes":{"type":"string"}},"required":["id","kitchenStatus"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.getOrderTimers":{"get":{"operationId":"orders_getOrderTimers","summary":"Get Order Timers","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderIds":{"type":"array","items":{"type":"string"}},"activeOnly":{"default":true,"type":"boolean"}},"required":["activeOnly"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.getOrdersByProduct":{"get":{"operationId":"orders_getOrdersByProduct","summary":"Get Orders By Product","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"productId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"page":{},"per_page":{},"search":{"anyOf":[{"type":"string"},{"type":"null"}]},"status":{"anyOf":[{"type":"string","enum":["DRAFT","SENT","PAID","OVERDUE","CANCELED"]},{"type":"null"}]},"sort":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["productId","page","per_page"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.getProductsByOrder":{"get":{"operationId":"orders_getProductsByOrder","summary":"Get Products By Order","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"page":{},"per_page":{},"search":{"anyOf":[{"type":"string"},{"type":"null"}]},"sort":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["orderId","page","per_page"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.getOrdersByVendor":{"get":{"operationId":"orders_getOrdersByVendor","summary":"Get Orders By Vendor","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"vendorId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"page":{"default":0,"type":"number"},"per_page":{"default":50,"type":"number"},"search":{"type":"string"},"status":{"type":"string","enum":["DRAFT","SENT","PAID","OVERDUE","CANCELED"]},"statuses":{"type":"array","items":{"type":"string","enum":["DRAFT","SENT","PAID","OVERDUE","CANCELED"]}},"deliveryDateFrom":{"type":"string"},"deliveryDateTo":{"type":"string"},"sort":{"type":"string"}},"required":["vendorId","page","per_page"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.getMyOrders":{"get":{"operationId":"orders_getMyOrders","summary":"Get My Orders","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":20,"type":"number","minimum":1,"maximum":200},"cursor":{"type":"string"},"status":{"type":"string"}},"required":["limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.getUnfulfilledOrders":{"get":{"operationId":"orders_getUnfulfilledOrders","summary":"Get Unfulfilled Orders","tags":["orders"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"orders":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"number":{"type":"string"},"status":{"type":"string"},"customerName":{"type":"string"},"customer":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"email":{"type":"string"}}},"createdAt":{"type":"string"},"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"productId":{"type":"string"},"productName":{"type":"string"},"quantity":{"type":"integer"},"product":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"defaultVendorId":{"type":"string"},"defaultVendor":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"}}},"stock":{"type":"integer"},"stockAvailability":{}}}}}}}}},"total":{"type":"integer"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"search":{"type":"string"},"limit":{"default":50,"type":"number"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.lifecycle.getDashboardData":{"get":{"operationId":"orders_lifecycle_getDashboardData","summary":"Lifecycle.get Dashboard Data","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"timeRange":{"default":"7d","type":"string","enum":["today","7d","30d"]},"alertsLimit":{"default":10,"type":"integer","minimum":1,"maximum":50}},"required":["timeRange","alertsLimit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.lifecycle.getLifecycleStats":{"get":{"operationId":"orders_lifecycle_getLifecycleStats","summary":"Lifecycle.get Lifecycle Stats","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"timeRange":{"default":"7d","type":"string","enum":["today","7d","30d"]}},"required":["timeRange"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.lifecycle.getLifecycleAlerts":{"get":{"operationId":"orders_lifecycle_getLifecycleAlerts","summary":"Lifecycle.get Lifecycle Alerts","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":10,"type":"integer","minimum":1,"maximum":50}},"required":["limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.lifecycle.expireDraftOrders":{"post":{"operationId":"orders_lifecycle_expireDraftOrders","summary":"Lifecycle.expire Draft Orders","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.lifecycle.getOrdersExpiringSoon":{"get":{"operationId":"orders_lifecycle_getOrdersExpiringSoon","summary":"Lifecycle.get Orders Expiring Soon","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"minutesUntilExpiry":{"default":15,"type":"integer","minimum":1,"maximum":60},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["minutesUntilExpiry"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.lifecycle.cancelOrder":{"post":{"operationId":"orders_lifecycle_cancelOrder","summary":"Lifecycle.cancel Order","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"releaseStock":{"default":true,"type":"boolean"}},"required":["orderId","releaseStock"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.lifecycle.confirmOrderPayment":{"post":{"operationId":"orders_lifecycle_confirmOrderPayment","summary":"Lifecycle.confirm Order Payment","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"paymentIntentId":{"type":"string"}},"required":["orderId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.fulfillment.create":{"post":{"operationId":"orders_fulfillment_create","summary":"Fulfillment.create","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"method":{"type":"string","enum":["SHIPPING","PICKUP","DIGITAL","LOCAL_DELIVERY"]},"items":{"minItems":1,"type":"array","items":{"type":"object","properties":{"orderItemId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"quantity":{"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991}},"required":["orderItemId","quantity"],"additionalProperties":false}},"carrier":{"type":"string"},"trackingNumber":{"type":"string"},"trackingUrl":{"type":"string","format":"uri"},"estimatedDelivery":{},"shippingAddress":{"type":"object","properties":{"firstName":{"type":"string","minLength":1},"lastName":{"type":"string","minLength":1},"company":{"type":"string"},"address":{"type":"string","minLength":1},"city":{"type":"string","minLength":1},"postalCode":{"type":"string","minLength":1},"country":{"type":"string","minLength":1},"phone":{"type":"string"},"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"instructions":{"type":"string"}},"required":["firstName","lastName","address","city","postalCode","country"],"additionalProperties":false},"shipmentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"notes":{"type":"string"}},"required":["orderId","method","items"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.fulfillment.updateStatus":{"post":{"operationId":"orders_fulfillment_updateStatus","summary":"Fulfillment.update Status","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"fulfillmentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"status":{"type":"string","enum":["PENDING","PROCESSING","READY_TO_SHIP","SHIPPED","IN_TRANSIT","OUT_FOR_DELIVERY","DELIVERED","FAILED_DELIVERY","RETURNED","CANCELLED"]},"trackingNumber":{"type":"string"},"trackingUrl":{"type":"string","format":"uri"},"actualDelivery":{},"notes":{"type":"string"}},"required":["fulfillmentId","status"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.fulfillment.track":{"get":{"operationId":"orders_fulfillment_track","summary":"Fulfillment.track","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"fulfillmentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["fulfillmentId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.fulfillment.listByOrder":{"get":{"operationId":"orders_fulfillment_listByOrder","summary":"Fulfillment.list By Order","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["orderId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.fulfillment.cancel":{"post":{"operationId":"orders_fulfillment_cancel","summary":"Fulfillment.cancel","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"fulfillmentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"reason":{"type":"string"}},"required":["fulfillmentId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.refund.create":{"post":{"operationId":"orders_refund_create","summary":"Refund.create","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"items":{"type":"array","items":{"type":"object","properties":{"orderItemId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"quantity":{"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991}},"required":["orderItemId","quantity"],"additionalProperties":false}},"amount":{"type":"number","exclusiveMinimum":0},"reason":{"type":"string","enum":["CUSTOMER_REQUEST","DEFECTIVE_PRODUCT","WRONG_ITEM","NOT_AS_DESCRIBED","DAMAGED_SHIPPING","DUPLICATE_PAYMENT","FRAUDULENT_TRANSACTION","CANCELLED_ORDER","RETURN_POLICY","GOODWILL","TECHNICAL_ERROR","CHARGEBACK","OTHER"]},"reasonDescription":{"type":"string"},"notes":{"type":"string"},"autoApprove":{"default":false,"type":"boolean"}},"required":["orderId","reason","autoApprove"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.refund.process":{"post":{"operationId":"orders_refund_process","summary":"Refund.process","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"refundId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"approve":{"type":"boolean"},"notes":{"type":"string"}},"required":["refundId","approve"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.refund.execute":{"post":{"operationId":"orders_refund_execute","summary":"Refund.execute","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"refundId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["refundId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.refund.calculate":{"get":{"operationId":"orders_refund_calculate","summary":"Refund.calculate","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"items":{"type":"array","items":{"type":"object","properties":{"orderItemId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"quantity":{"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991}},"required":["orderItemId","quantity"],"additionalProperties":false}}},"required":["orderId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.refund.listByOrder":{"get":{"operationId":"orders_refund_listByOrder","summary":"Refund.list By Order","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["orderId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/orders.getCheckoutEvents":{"get":{"operationId":"orders_getCheckoutEvents","summary":"Get Checkout Events","tags":["orders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["orderId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clients.requestProSignup":{"post":{"operationId":"clients_requestProSignup","summary":"Request Pro Signup","tags":["clients"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"companyName":{"type":"string","minLength":1},"siret":{"type":"string","pattern":"^[0-9]{14}$"},"codeNaf":{"anyOf":[{"type":"string"},{"type":"null"}]},"address":{"type":"string","minLength":1},"zipCode":{"type":"string","minLength":1},"city":{"type":"string","minLength":1},"firstName":{"type":"string","minLength":1},"lastName":{"type":"string","minLength":1},"role":{"anyOf":[{"type":"string"},{"type":"null"}]},"phone":{"type":"string","minLength":1},"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"password":{"type":"string","minLength":8},"filiere":{"type":"string","minLength":1},"volumeEstimate":{"anyOf":[{"type":"string"},{"type":"null"}]},"message":{"anyOf":[{"type":"string"},{"type":"null"}]},"newsletter":{"default":false,"type":"boolean"}},"required":["companyName","siret","address","zipCode","city","firstName","lastName","phone","email","password","filiere","newsletter"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clients.listPendingPro":{"get":{"operationId":"clients_listPendingPro","summary":"List Pending Pro","tags":["clients"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"number","minimum":1},"perPage":{"default":20,"type":"number","minimum":1,"maximum":100}},"required":["page","perPage"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clients.approvePro":{"post":{"operationId":"clients_approvePro","summary":"Approve Pro","tags":["clients"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"clientId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["clientId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clients.refusePro":{"post":{"operationId":"clients_refusePro","summary":"Refuse Pro","tags":["clients"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"clientId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"reason":{"type":"string","minLength":3,"maxLength":2000}},"required":["clientId","reason"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clients.getClientById":{"get":{"operationId":"clients_getClientById","summary":"Get Client By Id","tags":["clients"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"address":{},"zipCode":{},"city":{},"country":{},"email":{"type":"string"},"phone":{},"siret":{},"codeNaf":{},"customInputs":{"type":"object","properties":{"lastName":{"type":"string"},"firstName":{"type":"string"},"lastUpdated":{"type":"string"},"prestashop_id":{"type":"string"}}},"externalId":{},"archived":{"type":"boolean"},"isProfessional":{"type":"boolean"},"tenantId":{"type":"string"},"siteId":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"isMainRecord":{"type":"boolean"},"mainRecordId":{},"typeId":{},"tiersId":{},"territoryId":{},"data":{},"type":{},"Tiers":{},"sentInvoices":{"type":"array","items":{}},"receivedInvoices":{"type":"array","items":{}},"receivedOrders":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"invoiceNumber":{"type":"string"},"invoiceStatus":{"type":"string"},"totalAmount":{"type":"number"},"createdAt":{"type":"string"},"invoiceDate":{"type":"string"},"deliveryDate":{"type":"string"}}}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clients.getClients":{"get":{"operationId":"clients_getClients","summary":"Get Clients","tags":["clients"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"email":{"type":"string"},"phone":{},"address":{},"zipCode":{},"city":{},"country":{},"siret":{},"codeNaf":{},"archived":{"type":"boolean"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"isMainRecord":{"type":"boolean"},"isProfessional":{"type":"boolean"},"externalId":{},"mainRecordId":{},"typeId":{},"tiersId":{},"customInputs":{"type":"object","properties":{"lastName":{"type":"string"},"firstName":{"type":"string"},"lastUpdated":{"type":"string"},"prestashop_id":{"type":"string"}}},"type":{},"Tiers":{},"sentInvoices":{"type":"array","items":{}},"receivedInvoices":{"type":"array","items":{}},"receivedOrders":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"invoiceNumber":{"type":"string"},"invoiceStatus":{"type":"string"},"totalAmount":{"type":"number"},"createdAt":{"type":"string"},"invoiceDate":{"type":"string"},"deliveryDate":{"type":"string"}}}}}}},"total":{"type":"integer"},"pageCount":{"type":"integer"},"columns":{"type":"object","properties":{"name":{"type":"object","properties":{"type":{"type":"string"},"label":{"type":"string"},"required":{"type":"boolean"},"sortable":{"type":"boolean"},"filterable":{"type":"boolean"}}},"type":{"type":"object","properties":{"type":{"type":"string"},"label":{"type":"string"},"required":{"type":"boolean"},"sortable":{"type":"boolean"},"filterable":{"type":"boolean"},"relationTable":{"type":"string"},"relationLabelField":{"type":"string"},"relationColorField":{"type":"string"},"relationIconField":{"type":"string"}}},"email":{"type":"object","properties":{"type":{"type":"string"},"label":{"type":"string"},"required":{"type":"boolean"},"sortable":{"type":"boolean"},"filterable":{"type":"boolean"}}},"phone":{"type":"object","properties":{"type":{"type":"string"},"label":{"type":"string"},"required":{"type":"boolean"},"sortable":{"type":"boolean"},"filterable":{"type":"boolean"}}},"address":{"type":"object","properties":{"type":{"type":"string"},"label":{"type":"string"},"required":{"type":"boolean"},"sortable":{"type":"boolean"},"filterable":{"type":"boolean"}}},"zipCode":{"type":"object","properties":{"type":{"type":"string"},"label":{"type":"string"},"required":{"type":"boolean"},"sortable":{"type":"boolean"},"filterable":{"type":"boolean"}}},"city":{"type":"object","properties":{"type":{"type":"string"},"label":{"type":"string"},"required":{"type":"boolean"},"sortable":{"type":"boolean"},"filterable":{"type":"boolean"}}},"country":{"type":"object","properties":{"type":{"type":"string"},"label":{"type":"string"},"required":{"type":"boolean"},"sortable":{"type":"boolean"},"filterable":{"type":"boolean"}}},"siret":{"type":"object","properties":{"type":{"type":"string"},"label":{"type":"string"},"required":{"type":"boolean"},"sortable":{"type":"boolean"},"filterable":{"type":"boolean"}}},"codeNaf":{"type":"object","properties":{"type":{"type":"string"},"label":{"type":"string"},"required":{"type":"boolean"},"sortable":{"type":"boolean"},"filterable":{"type":"boolean"}}},"archived":{"type":"object","properties":{"type":{"type":"string"},"label":{"type":"string"},"required":{"type":"boolean"},"sortable":{"type":"boolean"},"filterable":{"type":"boolean"},"options":{"type":"array","items":{"type":"object","properties":{"label":{"type":"string"},"value":{"type":"string"}}}}}},"isProfessional":{"type":"object","properties":{"type":{"type":"string"},"label":{"type":"string"},"required":{"type":"boolean"},"sortable":{"type":"boolean"},"filterable":{"type":"boolean"},"options":{"type":"array","items":{"type":"object","properties":{"label":{"type":"string"},"value":{"type":"string"}}}}}},"isMainRecord":{"type":"object","properties":{"type":{"type":"string"},"label":{"type":"string"},"required":{"type":"boolean"},"sortable":{"type":"boolean"},"filterable":{"type":"boolean"},"options":{"type":"array","items":{"type":"object","properties":{"label":{"type":"string"},"value":{"type":"string"}}}}}},"createdAt":{"type":"object","properties":{"type":{"type":"string"},"label":{"type":"string"},"required":{"type":"boolean"},"sortable":{"type":"boolean"},"filterable":{"type":"boolean"}}},"updatedAt":{"type":"object","properties":{"type":{"type":"string"},"label":{"type":"string"},"required":{"type":"boolean"},"sortable":{"type":"boolean"},"filterable":{"type":"boolean"}}}}},"nextCursor":{"type":"integer"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"number"},"per_page":{"default":20,"type":"number"},"sort":{"type":"string"},"search":{"anyOf":[{"type":"string"},{"type":"null"}]},"cursor":{"anyOf":[{"type":"number"},{"type":"null"}]},"filters":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"object","properties":{"value":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{"type":"null"}]},"operator":{"type":"string"},"field":{"type":"string"}},"required":["value","operator"],"additionalProperties":false}},"advancedFilters":{"type":"array","items":{}},"advancedSorts":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string"},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"],"additionalProperties":false}}},"required":["page","per_page"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clients.create":{"post":{"operationId":"clients_create","summary":"Create","tags":["clients"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"phone":{"type":"string"},"address":{"type":"string"},"zipCode":{"type":"string"},"city":{"type":"string"},"country":{"type":"string"},"siret":{"type":"string"},"codeNaf":{"type":"string"},"typeId":{"type":"string"},"archived":{"default":false,"type":"boolean"},"isMainRecord":{"default":true,"type":"boolean"},"isProfessional":{"default":false,"type":"boolean"},"externalId":{"type":"string"},"mainRecordId":{"type":"string"},"tiersId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["name","archived","isMainRecord","isProfessional"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clients.updateClient":{"post":{"operationId":"clients_updateClient","summary":"Update Client","tags":["clients"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"name":{"type":"string","minLength":1},"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"phone":{"type":"string"},"address":{"type":"string"},"zipCode":{"type":"string"},"city":{"type":"string"},"country":{"type":"string"},"siret":{"type":"string"},"codeNaf":{"type":"string"},"typeId":{"type":"string"},"archived":{"type":"boolean"},"isMainRecord":{"type":"boolean"},"isProfessional":{"type":"boolean"},"externalId":{"type":"string"},"mainRecordId":{"type":"string"},"tiersId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clients.unlinkTiers":{"post":{"operationId":"clients_unlinkTiers","summary":"Unlink Tiers","tags":["clients"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clients.deleteClient":{"post":{"operationId":"clients_deleteClient","summary":"Delete Client","tags":["clients"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clients.deleteClients":{"post":{"operationId":"clients_deleteClients","summary":"Delete Clients","tags":["clients"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"ids":{"type":"array","items":{"type":"string"}}},"required":["ids"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clients.deleteAllClients":{"post":{"operationId":"clients_deleteAllClients","summary":"Delete All Clients","tags":["clients"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"confirmationId":{"type":"string"}},"required":["confirmationId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clients.syncClients":{"post":{"operationId":"clients_syncClients","summary":"Sync Clients","tags":["clients"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"offset":{"type":"number"},"limit":{"type":"number"}},"required":["offset","limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clients.getClientContacts":{"get":{"operationId":"clients_getClientContacts","summary":"Get Client Contacts","tags":["clients"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"clientId":{"type":"string"},"page":{"default":1,"type":"number"},"per_page":{"default":10,"type":"number"},"search":{"type":"string"},"sort":{"type":"string"}},"required":["clientId","page","per_page"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clients.linkContact":{"post":{"operationId":"clients_linkContact","summary":"Link Contact","tags":["clients"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"clientId":{"type":"string"},"contactId":{"type":"string"}},"required":["clientId","contactId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clients.unlinkContact":{"post":{"operationId":"clients_unlinkContact","summary":"Unlink Contact","tags":["clients"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"clientId":{"type":"string"},"contactId":{"type":"string"}},"required":["clientId","contactId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clients.searchContactsToLink":{"get":{"operationId":"clients_searchContactsToLink","summary":"Search Contacts To Link","tags":["clients"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"search":{"type":"string"},"page":{"default":1,"type":"number"},"per_page":{"default":10,"type":"number"}},"required":["page","per_page"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clients.getClientsByTiers":{"get":{"operationId":"clients_getClientsByTiers","summary":"Get Clients By Tiers","tags":["clients"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tiersId":{"type":"string"},"page":{"default":1,"type":"number"},"per_page":{"default":20,"type":"number"},"search":{"type":"string"},"sort":{"type":"string"}},"required":["tiersId","page","per_page"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/helpdeskKb.getArticles":{"get":{"operationId":"helpdeskKb_getArticles","summary":"Get Articles","tags":["helpdeskKb"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"search":{"type":"string"},"status":{"type":"string"},"visibility":{"type":"string"},"categoryId":{"type":"string"},"includeArchived":{"default":false,"type":"boolean"}},"required":["includeArchived"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/helpdeskKb.getArticleById":{"get":{"operationId":"helpdeskKb_getArticleById","summary":"Get Article By Id","tags":["helpdeskKb"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/helpdeskKb.createArticle":{"post":{"operationId":"helpdeskKb_createArticle","summary":"Create Article","tags":["helpdeskKb"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"title":{"type":"string","minLength":1},"slug":{"type":"string"},"excerpt":{"type":"string"},"body":{"type":"string"},"status":{"type":"string"},"visibility":{"type":"string"},"categoryId":{"anyOf":[{"type":"string"},{"type":"null"}]},"tags":{"type":"array","items":{"type":"string"}},"seoTitle":{"type":"string"},"seoDescription":{"type":"string"},"order":{"type":"number"}},"required":["title"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/helpdeskKb.updateArticle":{"post":{"operationId":"helpdeskKb_updateArticle","summary":"Update Article","tags":["helpdeskKb"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"title":{"type":"string","minLength":1},"slug":{"type":"string"},"excerpt":{"type":"string"},"body":{"type":"string"},"status":{"type":"string"},"visibility":{"type":"string"},"categoryId":{"anyOf":[{"type":"string"},{"type":"null"}]},"tags":{"type":"array","items":{"type":"string"}},"seoTitle":{"type":"string"},"seoDescription":{"type":"string"},"order":{"type":"number"},"id":{"type":"string"},"archived":{"type":"boolean"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/helpdeskKb.deleteArticle":{"post":{"operationId":"helpdeskKb_deleteArticle","summary":"Delete Article","tags":["helpdeskKb"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/helpdeskKb.getCategories":{"get":{"operationId":"helpdeskKb_getCategories","summary":"Get Categories","tags":["helpdeskKb"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/helpdeskKb.getCategoryById":{"get":{"operationId":"helpdeskKb_getCategoryById","summary":"Get Category By Id","tags":["helpdeskKb"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/helpdeskKb.createCategory":{"post":{"operationId":"helpdeskKb_createCategory","summary":"Create Category","tags":["helpdeskKb"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"slug":{"type":"string"},"description":{"type":"string"},"icon":{"type":"string"},"parentId":{"anyOf":[{"type":"string"},{"type":"null"}]},"order":{"type":"number"}},"required":["name"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/helpdeskKb.updateCategory":{"post":{"operationId":"helpdeskKb_updateCategory","summary":"Update Category","tags":["helpdeskKb"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"slug":{"type":"string"},"description":{"type":"string"},"icon":{"type":"string"},"parentId":{"anyOf":[{"type":"string"},{"type":"null"}]},"order":{"type":"number"},"id":{"type":"string"},"archived":{"type":"boolean"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/helpdeskKb.deleteCategory":{"post":{"operationId":"helpdeskKb_deleteCategory","summary":"Delete Category","tags":["helpdeskKb"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/saasAddons.list":{"get":{"operationId":"saasAddons_list","summary":"List","tags":["saasAddons"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/saasAddons.listActive":{"get":{"operationId":"saasAddons_listActive","summary":"List Active","tags":["saasAddons"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/saasAddons.create":{"post":{"operationId":"saasAddons_create","summary":"Create","tags":["saasAddons"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"key":{"type":"string","minLength":1},"name":{"type":"string","minLength":1},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"priceMonth":{"type":"integer","minimum":0,"maximum":9007199254740991},"priceYear":{"type":"integer","minimum":0,"maximum":9007199254740991},"sections":{"default":[],"type":"array","items":{"type":"string"}},"isActive":{"default":true,"type":"boolean"},"stripePriceIdMonth":{"anyOf":[{"type":"string"},{"type":"null"}]},"stripePriceIdYear":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["key","name","priceMonth","priceYear","sections","isActive"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/saasAddons.update":{"post":{"operationId":"saasAddons_update","summary":"Update","tags":["saasAddons"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"key":{"type":"string","minLength":1},"name":{"type":"string","minLength":1},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"priceMonth":{"type":"integer","minimum":0,"maximum":9007199254740991},"priceYear":{"type":"integer","minimum":0,"maximum":9007199254740991},"sections":{"type":"array","items":{"type":"string"}},"isActive":{"type":"boolean"},"stripePriceIdMonth":{"anyOf":[{"type":"string"},{"type":"null"}]},"stripePriceIdYear":{"anyOf":[{"type":"string"},{"type":"null"}]},"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/saasAddons.archive":{"post":{"operationId":"saasAddons_archive","summary":"Archive","tags":["saasAddons"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.getDashboardMetrics":{"get":{"operationId":"stripe_getDashboardMetrics","summary":"Get Dashboard Metrics","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/stripe.getBalance":{"get":{"operationId":"stripe_getBalance","summary":"Get Balance","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/stripe.testConnection":{"get":{"operationId":"stripe_testConnection","summary":"Test Connection","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/stripe.getStripeConfig":{"get":{"operationId":"stripe_getStripeConfig","summary":"Get Stripe Config","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/stripe.updateStripeConfig":{"post":{"operationId":"stripe_updateStripeConfig","summary":"Update Stripe Config","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"secretKey":{"type":"string"},"publishableKey":{"type":"string"},"webhookSecret":{"type":"string"},"testMode":{"type":"boolean"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.listCustomers":{"get":{"operationId":"stripe_listCustomers","summary":"List Customers","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"type":"number","minimum":1,"maximum":100},"startingAfter":{"type":"string"},"endingBefore":{"type":"string"},"email":{"type":"string"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.getLocalCustomers":{"get":{"operationId":"stripe_getLocalCustomers","summary":"Get Local Customers","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"type":"number","minimum":1},"perPage":{"type":"number","minimum":1,"maximum":100},"search":{"type":"string"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.getCustomer":{"get":{"operationId":"stripe_getCustomer","summary":"Get Customer","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"stripeCustomerId":{"type":"string"}},"required":["stripeCustomerId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.createCustomer":{"post":{"operationId":"stripe_createCustomer","summary":"Create Customer","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"type":"object"}},"required":["json"]}}}}}},"/api/trpc/stripe.updateCustomer":{"post":{"operationId":"stripe_updateCustomer","summary":"Update Customer","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"type":"object"}},"required":["json"]}}}}}},"/api/trpc/stripe.deleteCustomer":{"post":{"operationId":"stripe_deleteCustomer","summary":"Delete Customer","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"stripeCustomerId":{"type":"string"}},"required":["stripeCustomerId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.syncCustomersFromStripe":{"post":{"operationId":"stripe_syncCustomersFromStripe","summary":"Sync Customers From Stripe","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"type":"number","minimum":1,"maximum":1000}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.listPaymentIntents":{"get":{"operationId":"stripe_listPaymentIntents","summary":"List Payment Intents","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"type":"number","minimum":1,"maximum":100},"startingAfter":{"type":"string"},"endingBefore":{"type":"string"},"customer":{"type":"string"},"created":{"type":"object","properties":{"gte":{"type":"number"},"lte":{"type":"number"}},"additionalProperties":false}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.getPaymentIntent":{"get":{"operationId":"stripe_getPaymentIntent","summary":"Get Payment Intent","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"paymentIntentId":{"type":"string"}},"required":["paymentIntentId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.createPaymentIntent":{"post":{"operationId":"stripe_createPaymentIntent","summary":"Create Payment Intent","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"type":"object"}},"required":["json"]}}}}}},"/api/trpc/stripe.confirmPaymentIntent":{"post":{"operationId":"stripe_confirmPaymentIntent","summary":"Confirm Payment Intent","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"paymentIntentId":{"type":"string"}},"required":["paymentIntentId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.capturePaymentIntent":{"post":{"operationId":"stripe_capturePaymentIntent","summary":"Capture Payment Intent","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"paymentIntentId":{"type":"string"},"amount":{"type":"number","exclusiveMinimum":0}},"required":["paymentIntentId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.cancelPaymentIntent":{"post":{"operationId":"stripe_cancelPaymentIntent","summary":"Cancel Payment Intent","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"paymentIntentId":{"type":"string"}},"required":["paymentIntentId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.listCheckoutSessions":{"get":{"operationId":"stripe_listCheckoutSessions","summary":"List Checkout Sessions","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"type":"number","minimum":1,"maximum":100},"startingAfter":{"type":"string"},"endingBefore":{"type":"string"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.getCheckoutSession":{"get":{"operationId":"stripe_getCheckoutSession","summary":"Get Checkout Session","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"sessionId":{"type":"string"}},"required":["sessionId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.createCheckoutSession":{"post":{"operationId":"stripe_createCheckoutSession","summary":"Create Checkout Session","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"type":"object"}},"required":["json"]}}}}}},"/api/trpc/stripe.listSubscriptions":{"get":{"operationId":"stripe_listSubscriptions","summary":"List Subscriptions","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"type":"number","minimum":1,"maximum":100},"startingAfter":{"type":"string"},"endingBefore":{"type":"string"},"customer":{"type":"string"},"status":{"type":"string","enum":["active","past_due","unpaid","canceled","incomplete","incomplete_expired","trialing","paused","all"]}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.getSubscription":{"get":{"operationId":"stripe_getSubscription","summary":"Get Subscription","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"subscriptionId":{"type":"string"}},"required":["subscriptionId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.createSubscription":{"post":{"operationId":"stripe_createSubscription","summary":"Create Subscription","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"type":"object"}},"required":["json"]}}}}}},"/api/trpc/stripe.updateSubscription":{"post":{"operationId":"stripe_updateSubscription","summary":"Update Subscription","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"type":"object"}},"required":["json"]}}}}}},"/api/trpc/stripe.pauseSubscription":{"post":{"operationId":"stripe_pauseSubscription","summary":"Pause Subscription","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"subscriptionId":{"type":"string"}},"required":["subscriptionId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.resumeSubscription":{"post":{"operationId":"stripe_resumeSubscription","summary":"Resume Subscription","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"subscriptionId":{"type":"string"}},"required":["subscriptionId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.cancelSubscription":{"post":{"operationId":"stripe_cancelSubscription","summary":"Cancel Subscription","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"subscriptionId":{"type":"string"},"cancelAtPeriodEnd":{"type":"boolean"}},"required":["subscriptionId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.listProducts":{"get":{"operationId":"stripe_listProducts","summary":"List Products","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"type":"number","minimum":1,"maximum":100},"startingAfter":{"type":"string"},"endingBefore":{"type":"string"},"active":{"type":"boolean"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.getProduct":{"get":{"operationId":"stripe_getProduct","summary":"Get Product","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"productId":{"type":"string"}},"required":["productId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.createProduct":{"post":{"operationId":"stripe_createProduct","summary":"Create Product","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"type":"object"}},"required":["json"]}}}}}},"/api/trpc/stripe.updateProduct":{"post":{"operationId":"stripe_updateProduct","summary":"Update Product","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"type":"object"}},"required":["json"]}}}}}},"/api/trpc/stripe.archiveProduct":{"post":{"operationId":"stripe_archiveProduct","summary":"Archive Product","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"productId":{"type":"string"}},"required":["productId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.listPrices":{"get":{"operationId":"stripe_listPrices","summary":"List Prices","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"type":"number","minimum":1,"maximum":100},"startingAfter":{"type":"string"},"endingBefore":{"type":"string"},"product":{"type":"string"},"active":{"type":"boolean"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.createPrice":{"post":{"operationId":"stripe_createPrice","summary":"Create Price","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"type":"object"}},"required":["json"]}}}}}},"/api/trpc/stripe.listInvoices":{"get":{"operationId":"stripe_listInvoices","summary":"List Invoices","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"type":"number","minimum":1,"maximum":100},"startingAfter":{"type":"string"},"endingBefore":{"type":"string"},"customer":{"type":"string"},"subscription":{"type":"string"},"status":{"type":"string","enum":["draft","open","paid","uncollectible","void"]}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.getInvoice":{"get":{"operationId":"stripe_getInvoice","summary":"Get Invoice","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"invoiceId":{"type":"string"}},"required":["invoiceId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.voidInvoice":{"post":{"operationId":"stripe_voidInvoice","summary":"Void Invoice","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"invoiceId":{"type":"string"}},"required":["invoiceId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.markInvoiceAsPaid":{"post":{"operationId":"stripe_markInvoiceAsPaid","summary":"Mark Invoice As Paid","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"invoiceId":{"type":"string"}},"required":["invoiceId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.sendInvoice":{"post":{"operationId":"stripe_sendInvoice","summary":"Send Invoice","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"invoiceId":{"type":"string"}},"required":["invoiceId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.finalizeInvoice":{"post":{"operationId":"stripe_finalizeInvoice","summary":"Finalize Invoice","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"invoiceId":{"type":"string"}},"required":["invoiceId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.listRefunds":{"get":{"operationId":"stripe_listRefunds","summary":"List Refunds","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"type":"number","minimum":1,"maximum":100},"startingAfter":{"type":"string"},"endingBefore":{"type":"string"},"paymentIntent":{"type":"string"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.getRefund":{"get":{"operationId":"stripe_getRefund","summary":"Get Refund","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"refundId":{"type":"string"}},"required":["refundId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.createRefund":{"post":{"operationId":"stripe_createRefund","summary":"Create Refund","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"type":"object"}},"required":["json"]}}}}}},"/api/trpc/stripe.listPaymentLinks":{"get":{"operationId":"stripe_listPaymentLinks","summary":"List Payment Links","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"type":"number","minimum":1,"maximum":100},"startingAfter":{"type":"string"},"endingBefore":{"type":"string"},"active":{"type":"boolean"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.getLocalPaymentLinks":{"get":{"operationId":"stripe_getLocalPaymentLinks","summary":"Get Local Payment Links","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"type":"number","minimum":1},"perPage":{"type":"number","minimum":1,"maximum":100},"active":{"type":"boolean"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.createPaymentLink":{"post":{"operationId":"stripe_createPaymentLink","summary":"Create Payment Link","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"type":"object"}},"required":["json"]}}}}}},"/api/trpc/stripe.updatePaymentLink":{"post":{"operationId":"stripe_updatePaymentLink","summary":"Update Payment Link","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"type":"object"}},"required":["json"]}}}}}},"/api/trpc/stripe.listBalanceTransactions":{"get":{"operationId":"stripe_listBalanceTransactions","summary":"List Balance Transactions","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"type":"number","minimum":1,"maximum":100},"startingAfter":{"type":"string"},"endingBefore":{"type":"string"},"created":{"type":"object","properties":{"gte":{"type":"number"},"lte":{"type":"number"}},"additionalProperties":false},"type":{"type":"string"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.syncProduct":{"post":{"operationId":"stripe_syncProduct","summary":"Sync Product","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"productId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"createIfNotExists":{"default":true,"type":"boolean"},"updateStripe":{"default":false,"type":"boolean"}},"required":["productId","createIfNotExists","updateStripe"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.syncProductForSubscription":{"post":{"operationId":"stripe_syncProductForSubscription","summary":"Sync Product For Subscription","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"productId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"interval":{"default":"month","type":"string","enum":["day","week","month","year"]},"intervalCount":{"default":1,"type":"number"}},"required":["productId","interval","intervalCount"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.syncCustomer":{"post":{"operationId":"stripe_syncCustomer","summary":"Sync Customer","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"contactId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"createIfNotExists":{"default":true,"type":"boolean"}},"required":["contactId","createIfNotExists"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.runFullSync":{"post":{"operationId":"stripe_runFullSync","summary":"Run Full Sync","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"dryRun":{"default":false,"type":"boolean"},"syncProducts":{"default":true,"type":"boolean"},"syncCustomers":{"default":true,"type":"boolean"},"syncSubscriptions":{"default":true,"type":"boolean"},"forceUpdate":{"default":false,"type":"boolean"}},"required":["dryRun","syncProducts","syncCustomers","syncSubscriptions","forceUpdate"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.createOrderCheckout":{"post":{"operationId":"stripe_createOrderCheckout","summary":"Create Order Checkout","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"successUrl":{"type":"string","format":"uri"},"cancelUrl":{"type":"string","format":"uri"}},"required":["orderId","successUrl","cancelUrl"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.createSubscriptionCheckout":{"post":{"operationId":"stripe_createSubscriptionCheckout","summary":"Create Subscription Checkout","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"contactId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"planId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"successUrl":{"type":"string","format":"uri"},"cancelUrl":{"type":"string","format":"uri"},"trialDays":{"type":"number"},"quantity":{"default":1,"type":"number"}},"required":["contactId","planId","successUrl","cancelUrl","quantity"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.createMagazineSubscriptionCheckout":{"post":{"operationId":"stripe_createMagazineSubscriptionCheckout","summary":"Create Magazine Subscription Checkout","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"contactId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"magazinePlanId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"successUrl":{"type":"string","format":"uri"},"cancelUrl":{"type":"string","format":"uri"},"includesPrint":{"default":false,"type":"boolean"}},"required":["contactId","magazinePlanId","successUrl","cancelUrl","includesPrint"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.importProductsFromStripe":{"post":{"operationId":"stripe_importProductsFromStripe","summary":"Import Products From Stripe","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/stripe.importSubscriptionPlansFromStripe":{"post":{"operationId":"stripe_importSubscriptionPlansFromStripe","summary":"Import Subscription Plans From Stripe","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/stripe.listSubscriptionsLinkage":{"get":{"operationId":"stripe_listSubscriptionsLinkage","summary":"List Subscriptions Linkage","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"type":"number","minimum":1,"maximum":100},"startingAfter":{"type":"string"},"endingBefore":{"type":"string"},"customer":{"type":"string"},"status":{"type":"string","enum":["active","past_due","unpaid","canceled","incomplete","incomplete_expired","trialing","paused","all"]}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.analytics.getRevenueOverview":{"get":{"operationId":"stripe_analytics_getRevenueOverview","summary":"Analytics.get Revenue Overview","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/stripe.analytics.getRevenueMetrics":{"get":{"operationId":"stripe_analytics_getRevenueMetrics","summary":"Analytics.get Revenue Metrics","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"period":{"type":"string","enum":["day","week","month","year"]}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.analytics.getRevenueByPeriod":{"get":{"operationId":"stripe_analytics_getRevenueByPeriod","summary":"Analytics.get Revenue By Period","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"period":{"type":"string","enum":["day","week","month","year"]},"startDate":{},"endDate":{}},"required":["period","startDate","endDate"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.analytics.getMRRMetrics":{"get":{"operationId":"stripe_analytics_getMRRMetrics","summary":"Analytics.get MRRMetrics","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/stripe.analytics.getChurnMetrics":{"get":{"operationId":"stripe_analytics_getChurnMetrics","summary":"Analytics.get Churn Metrics","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"period":{"type":"string","enum":["day","week","month","year"]}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.analytics.getPaymentSuccessRate":{"get":{"operationId":"stripe_analytics_getPaymentSuccessRate","summary":"Analytics.get Payment Success Rate","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"period":{"type":"string","enum":["day","week","month","year"]}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.analytics.getRefundMetrics":{"get":{"operationId":"stripe_analytics_getRefundMetrics","summary":"Analytics.get Refund Metrics","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"period":{"type":"string","enum":["day","week","month","year"]}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.analytics.getTopProducts":{"get":{"operationId":"stripe_analytics_getTopProducts","summary":"Analytics.get Top Products","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"type":"number","minimum":1,"maximum":50}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.analytics.getCustomerMetrics":{"get":{"operationId":"stripe_analytics_getCustomerMetrics","summary":"Analytics.get Customer Metrics","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"period":{"type":"string","enum":["day","week","month","year"]}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.analytics.exportRevenueReport":{"get":{"operationId":"stripe_analytics_exportRevenueReport","summary":"Analytics.export Revenue Report","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"startDate":{},"endDate":{},"format":{"type":"string","enum":["csv","json"]}},"required":["startDate","endDate"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.webhooks.listEvents":{"get":{"operationId":"stripe_webhooks_listEvents","summary":"Webhooks.list Events","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"type":"number","minimum":1},"perPage":{"type":"number","minimum":1,"maximum":100},"filter":{"type":"object","properties":{"type":{"type":"string"},"status":{"type":"string","enum":["PENDING","PROCESSING","PROCESSED","FAILED","SKIPPED"]},"startDate":{},"endDate":{},"search":{"type":"string"}},"additionalProperties":false}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.webhooks.getEvent":{"get":{"operationId":"stripe_webhooks_getEvent","summary":"Webhooks.get Event","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.webhooks.getEventByStripeId":{"get":{"operationId":"stripe_webhooks_getEventByStripeId","summary":"Webhooks.get Event By Stripe Id","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"stripeEventId":{"type":"string"}},"required":["stripeEventId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.webhooks.getStats":{"get":{"operationId":"stripe_webhooks_getStats","summary":"Webhooks.get Stats","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/stripe.webhooks.replayEvent":{"post":{"operationId":"stripe_webhooks_replayEvent","summary":"Webhooks.replay Event","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.webhooks.retryFailedEvents":{"post":{"operationId":"stripe_webhooks_retryFailedEvents","summary":"Webhooks.retry Failed Events","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"maxRetries":{"type":"number","minimum":1,"maximum":10}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.webhooks.getFailedEventsForRetry":{"get":{"operationId":"stripe_webhooks_getFailedEventsForRetry","summary":"Webhooks.get Failed Events For Retry","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"maxRetries":{"type":"number","minimum":1,"maximum":10}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stripe.webhooks.cleanupOldEvents":{"post":{"operationId":"stripe_webhooks_cleanupOldEvents","summary":"Webhooks.cleanup Old Events","tags":["stripe"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"daysToKeep":{"type":"number","minimum":30,"maximum":365}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/saasPlans.list":{"get":{"operationId":"saasPlans_list","summary":"List","tags":["saasPlans"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/saasPlans.listActive":{"get":{"operationId":"saasPlans_listActive","summary":"List Active","tags":["saasPlans"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/saasPlans.create":{"post":{"operationId":"saasPlans_create","summary":"Create","tags":["saasPlans"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"key":{"type":"string","minLength":1},"name":{"type":"string","minLength":1},"priceMonth":{"type":"integer","minimum":0,"maximum":9007199254740991},"priceYear":{"type":"integer","minimum":0,"maximum":9007199254740991},"sections":{"default":[],"type":"array","items":{"type":"string"}},"isActive":{"default":true,"type":"boolean"},"stripePriceIdMonth":{"anyOf":[{"type":"string"},{"type":"null"}]},"stripePriceIdYear":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["key","name","priceMonth","priceYear","sections","isActive"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/saasPlans.update":{"post":{"operationId":"saasPlans_update","summary":"Update","tags":["saasPlans"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"key":{"type":"string","minLength":1},"name":{"type":"string","minLength":1},"priceMonth":{"type":"integer","minimum":0,"maximum":9007199254740991},"priceYear":{"type":"integer","minimum":0,"maximum":9007199254740991},"sections":{"type":"array","items":{"type":"string"}},"isActive":{"type":"boolean"},"stripePriceIdMonth":{"anyOf":[{"type":"string"},{"type":"null"}]},"stripePriceIdYear":{"anyOf":[{"type":"string"},{"type":"null"}]},"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/saasPlans.archive":{"post":{"operationId":"saasPlans_archive","summary":"Archive","tags":["saasPlans"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/saasPlans.assignTenantPlan":{"post":{"operationId":"saasPlans_assignTenantPlan","summary":"Assign Tenant Plan","tags":["saasPlans"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"planKey":{"type":"string","minLength":1},"status":{"default":"active","type":"string","enum":["trialing","active","past_due","canceled"]},"currentPeriodEnd":{"anyOf":[{},{"type":"null"}]}},"required":["tenantId","planKey","status"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/saasPlans.getTenantSubscription":{"get":{"operationId":"saasPlans_getTenantSubscription","summary":"Get Tenant Subscription","tags":["saasPlans"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["tenantId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/saasPlans.adminOverview":{"get":{"operationId":"saasPlans_adminOverview","summary":"Admin Overview","tags":["saasPlans"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"integer","minimum":1,"maximum":9007199254740991},"pageSize":{"default":20,"type":"integer","minimum":1,"maximum":100},"search":{"type":"string"},"planKey":{"type":"string"},"status":{"type":"string"}},"required":["page","pageSize"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/saasPlans.subscribeCurrentTenant":{"post":{"operationId":"saasPlans_subscribeCurrentTenant","summary":"Subscribe Current Tenant","tags":["saasPlans"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"planKey":{"type":"string","minLength":1},"addonKeys":{"default":[],"type":"array","items":{"type":"string"}}},"required":["planKey","addonKeys"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/saasPlans.getCurrentSubscription":{"get":{"operationId":"saasPlans_getCurrentSubscription","summary":"Get Current Subscription","tags":["saasPlans"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/saasPlans.getPlatformStripeConfig":{"get":{"operationId":"saasPlans_getPlatformStripeConfig","summary":"Get Platform Stripe Config","tags":["saasPlans"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/saasPlans.updatePlatformStripeConfig":{"post":{"operationId":"saasPlans_updatePlatformStripeConfig","summary":"Update Platform Stripe Config","tags":["saasPlans"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"secretKey":{"type":"string"},"webhookSecret":{"type":"string"},"publishableKey":{"type":"string"},"appUrl":{"type":"string"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/payments.getTransactions":{"get":{"operationId":"payments_getTransactions","summary":"Get Transactions","tags":["payments"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"transactions":{"type":"array","items":{}},"total":{"type":"integer"},"page":{"type":"integer"},"per_page":{"type":"integer"},"totalPages":{"type":"integer"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"integer","minimum":1,"maximum":9007199254740991},"per_page":{"default":20,"type":"integer","minimum":1,"maximum":100},"dateFrom":{},"dateTo":{},"status":{"type":"string","enum":["PENDING","PROCESSING","COMPLETED","FAILED","CANCELLED"]},"paymentMethod":{"type":"string"},"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"customerId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["page","per_page"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/payments.getTransactionById":{"get":{"operationId":"payments_getTransactionById","summary":"Get Transaction By Id","tags":["payments"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/payments.getPaymentMethods":{"get":{"operationId":"payments_getPaymentMethods","summary":"Get Payment Methods","tags":["payments"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"type":{"type":"string"},"isActive":{"type":"boolean"}}}}}}}}}},"/api/trpc/payments.getPaymentStats":{"get":{"operationId":"payments_getPaymentStats","summary":"Get Payment Stats","tags":["payments"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"totalTransactions":{"type":"integer"},"totalAmount":{"type":"number"},"completedTransactions":{"type":"integer"},"failedTransactions":{"type":"integer"},"pendingTransactions":{"type":"integer"},"processingTransactions":{"type":"integer"},"cancelledTransactions":{"type":"integer"},"totalProcessingFees":{"type":"number"},"averageTransactionAmount":{"type":"number"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"dateFrom":{},"dateTo":{}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/payments.createMagazineCheckoutSession":{"post":{"operationId":"payments_createMagazineCheckoutSession","summary":"Create Magazine Checkout Session","tags":["payments"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"subscriptionPlanId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"successUrl":{"type":"string"},"cancelUrl":{"type":"string"},"previousSubId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["subscriptionPlanId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/payments.createEditionCheckoutSession":{"post":{"operationId":"payments_createEditionCheckoutSession","summary":"Create Edition Checkout Session","tags":["payments"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"editionId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"successUrl":{"type":"string"},"cancelUrl":{"type":"string"}},"required":["editionId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/payments.createVisitCheckoutSession":{"post":{"operationId":"payments_createVisitCheckoutSession","summary":"Create Visit Checkout Session","tags":["payments"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"reservationId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"successUrl":{"type":"string"},"cancelUrl":{"type":"string"}},"required":["reservationId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/payments.createMagazinePurchaseCheckoutSession":{"post":{"operationId":"payments_createMagazinePurchaseCheckoutSession","summary":"Create Magazine Purchase Checkout Session","tags":["payments"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"items":{"minItems":1,"maxItems":50,"type":"array","items":{"type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"title":{"type":"string"},"price":{"type":"number"},"quantity":{"type":"integer","minimum":1,"maximum":100},"format":{"type":"string","enum":["numerique","papier","combo"]},"kind":{"type":"string","enum":["subscription","magazine"]},"durationYears":{"anyOf":[{"type":"number","const":1},{"type":"number","const":2}]},"isMonthly":{"type":"boolean"},"isGift":{"type":"boolean"},"giftRecipient":{"type":"object","properties":{"firstName":{"type":"string","minLength":1},"lastName":{"type":"string","minLength":1},"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"address":{"type":"string","minLength":1},"postalCode":{"type":"string","minLength":1},"city":{"type":"string","minLength":1},"country":{"type":"string","minLength":1},"message":{"type":"string"}},"required":["firstName","lastName","email","address","postalCode","city","country"],"additionalProperties":false}},"required":["id","title","quantity"],"additionalProperties":false}},"country":{"default":"FR","type":"string","enum":["FR","WORLD"]},"customerInfo":{"type":"object","properties":{"civility":{"type":"string"},"firstName":{"type":"string"},"lastName":{"type":"string"},"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"phone":{"type":"string"},"company":{"type":"string"},"address":{"type":"string"},"address2":{"type":"string"},"city":{"type":"string"},"postalCode":{"type":"string"},"country":{"type":"string"},"notes":{"type":"string"}},"required":["firstName","lastName","email","phone","address","city","postalCode","country"],"additionalProperties":false},"billingInfo":{"type":"object","properties":{"address":{"type":"string"},"address2":{"type":"string"},"city":{"type":"string"},"postalCode":{"type":"string"},"country":{"type":"string"}},"required":["address","city","postalCode","country"],"additionalProperties":false},"deliveryOption":{"type":"string"},"paymentMethod":{"type":"string"},"totals":{"type":"object","properties":{"subtotal":{"type":"number"},"delivery":{"type":"number"},"total":{"type":"number"}},"required":["subtotal","delivery","total"],"additionalProperties":false},"successUrl":{"type":"string"},"cancelUrl":{"type":"string"}},"required":["items","country"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/payments.getMagazineCartPricing":{"get":{"operationId":"payments_getMagazineCartPricing","summary":"Get Magazine Cart Pricing","tags":["payments"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"items":{"minItems":1,"maxItems":100,"type":"array","items":{"type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"format":{"type":"string","enum":["numerique","papier","combo"]}},"required":["id"],"additionalProperties":false}}},"required":["items"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/payments.createOfflineMagazineSubscriptionCheckout":{"post":{"operationId":"payments_createOfflineMagazineSubscriptionCheckout","summary":"Create Offline Magazine Subscription Checkout","tags":["payments"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"magazineSubscriptionPlanId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"isMonthly":{"type":"boolean","const":true},"country":{"default":"FR","type":"string","enum":["FR","WORLD"]},"paymentMethod":{"type":"string","enum":["BANK_TRANSFER","CHEQUE"]},"customerInfo":{"type":"object","properties":{"civility":{"type":"string"},"firstName":{"type":"string","minLength":1},"lastName":{"type":"string","minLength":1},"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"phone":{"type":"string","minLength":1},"company":{"type":"string"},"address":{"type":"string","minLength":1},"address2":{"type":"string"},"city":{"type":"string","minLength":1},"postalCode":{"type":"string","minLength":1},"country":{"type":"string","minLength":1},"notes":{"type":"string"}},"required":["firstName","lastName","email","phone","address","city","postalCode","country"],"additionalProperties":false},"billingInfo":{"type":"object","properties":{"address":{"type":"string"},"address2":{"type":"string"},"city":{"type":"string"},"postalCode":{"type":"string"},"country":{"type":"string"}},"required":["address","city","postalCode","country"],"additionalProperties":false}},"required":["magazineSubscriptionPlanId","isMonthly","country","paymentMethod","customerInfo"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/payments.createOfflineMagazineCheckout":{"post":{"operationId":"payments_createOfflineMagazineCheckout","summary":"Create Offline Magazine Checkout","tags":["payments"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"items":{"minItems":1,"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"title":{"type":"string"},"price":{"type":"number"},"quantity":{"default":1,"type":"integer","minimum":1,"maximum":100},"format":{"type":"string","enum":["numerique","papier","combo"]},"kind":{"type":"string","enum":["subscription","magazine"]},"durationYears":{"anyOf":[{"type":"number","const":1},{"type":"number","const":2}]},"isMonthly":{"type":"boolean"},"isGift":{"type":"boolean"}},"required":["id","quantity"],"additionalProperties":false}},"country":{"default":"FR","type":"string","enum":["FR","WORLD"]},"paymentMethod":{"type":"string","enum":["BANK_TRANSFER","CHEQUE"]},"customerInfo":{"type":"object","properties":{"civility":{"type":"string"},"firstName":{"type":"string","minLength":1},"lastName":{"type":"string","minLength":1},"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"phone":{"type":"string","minLength":1},"company":{"type":"string"},"address":{"type":"string","minLength":1},"address2":{"type":"string"},"city":{"type":"string","minLength":1},"postalCode":{"type":"string","minLength":1},"country":{"type":"string","minLength":1},"notes":{"type":"string"}},"required":["firstName","lastName","email","phone","address","city","postalCode","country"],"additionalProperties":false},"billingInfo":{"type":"object","properties":{"address":{"type":"string"},"address2":{"type":"string"},"city":{"type":"string"},"postalCode":{"type":"string"},"country":{"type":"string"}},"required":["address","city","postalCode","country"],"additionalProperties":false},"totals":{"type":"object","properties":{"subtotal":{"type":"number"},"delivery":{"type":"number"},"total":{"type":"number"}},"required":["total"],"additionalProperties":false}},"required":["items","country","paymentMethod","customerInfo"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/payments.createPerIssueCardSetupCheckout":{"post":{"operationId":"payments_createPerIssueCardSetupCheckout","summary":"Create Per Issue Card Setup Checkout","tags":["payments"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"magazineSubscriptionPlanId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"country":{"default":"FR","type":"string","enum":["FR","WORLD"]},"customerEmail":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"customerFirstName":{"type":"string","minLength":1},"customerLastName":{"type":"string","minLength":1},"successUrl":{"type":"string","format":"uri"},"cancelUrl":{"type":"string","format":"uri"}},"required":["magazineSubscriptionPlanId","country","customerEmail","customerFirstName","customerLastName","successUrl","cancelUrl"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/payments.createMyUpdateCardSetupIntent":{"post":{"operationId":"payments_createMyUpdateCardSetupIntent","summary":"Create My Update Card Setup Intent","tags":["payments"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"printSubscriptionId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["printSubscriptionId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/payments.applyMyUpdatedCard":{"post":{"operationId":"payments_applyMyUpdatedCard","summary":"Apply My Updated Card","tags":["payments"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"printSubscriptionId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"paymentMethodId":{"type":"string","minLength":1}},"required":["printSubscriptionId","paymentMethodId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/payments.createOperatorSetupIntent":{"post":{"operationId":"payments_createOperatorSetupIntent","summary":"Create Operator Setup Intent","tags":["payments"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"targetContactId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["targetContactId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/payments.createOperatorCardSubscription":{"post":{"operationId":"payments_createOperatorCardSubscription","summary":"Create Operator Card Subscription","tags":["payments"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"targetContactId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"magazineSubscriptionPlanId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"country":{"default":"FR","type":"string","enum":["FR","WORLD"]},"mode":{"type":"string","enum":["RECURRING_MONTHLY","RECURRING_QUARTERLY","PER_ISSUE"]},"stripeCustomerId":{"type":"string","minLength":1},"paymentMethodId":{"type":"string","minLength":1}},"required":["targetContactId","magazineSubscriptionPlanId","country","mode","stripeCustomerId","paymentMethodId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/payments.createRecurringMagazineSubscriptionLinkForCustomer":{"post":{"operationId":"payments_createRecurringMagazineSubscriptionLinkForCustomer","summary":"Create Recurring Magazine Subscription Link For Customer","tags":["payments"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"magazineSubscriptionPlanId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"targetContactId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"country":{"default":"FR","type":"string","enum":["FR","WORLD"]},"interval":{"default":"month","type":"string","const":"month"},"intervalCount":{"default":1,"anyOf":[{"type":"number","const":1},{"type":"number","const":3}]},"successUrl":{"type":"string","format":"uri"},"cancelUrl":{"type":"string","format":"uri"}},"required":["magazineSubscriptionPlanId","targetContactId","country","interval","intervalCount","successUrl","cancelUrl"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/payments.createRecurringMagazineSubscriptionCheckout":{"post":{"operationId":"payments_createRecurringMagazineSubscriptionCheckout","summary":"Create Recurring Magazine Subscription Checkout","tags":["payments"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"magazineSubscriptionPlanId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"country":{"default":"FR","type":"string","enum":["FR","WORLD"]},"interval":{"default":"month","type":"string","const":"month"},"intervalCount":{"default":1,"anyOf":[{"type":"number","const":1},{"type":"number","const":3}]},"successUrl":{"type":"string","format":"uri"},"cancelUrl":{"type":"string","format":"uri"}},"required":["magazineSubscriptionPlanId","country","interval","intervalCount","successUrl","cancelUrl"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/payments.createPaymentIntent":{"post":{"operationId":"payments_createPaymentIntent","summary":"Create Payment Intent","tags":["payments"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["orderId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/payments.getStripeConfiguration":{"get":{"operationId":"payments_getStripeConfiguration","summary":"Get Stripe Configuration","tags":["payments"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"secretKey":{},"publishableKey":{},"isConfigured":{"type":"boolean"}}}}}}}}},"/api/trpc/payments.updateStripeConfiguration":{"post":{"operationId":"payments_updateStripeConfiguration","summary":"Update Stripe Configuration","tags":["payments"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"secretKey":{"type":"string","minLength":1},"publishableKey":{"type":"string","minLength":1}},"required":["secretKey","publishableKey"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/payments.checkStripeConfiguration":{"get":{"operationId":"payments_checkStripeConfiguration","summary":"Check Stripe Configuration","tags":["payments"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"isConfigured":{"type":"boolean"}}}}}}}}},"/api/trpc/payments.getCheckoutFunnel":{"get":{"operationId":"payments_getCheckoutFunnel","summary":"Get Checkout Funnel","tags":["payments"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"window":{"type":"object","properties":{"from":{"type":"string"},"to":{"type":"string"}}},"funnel":{"type":"object","properties":{"reachedCheckout":{"type":"integer"},"payClicked":{"type":"integer"},"sessionCreated":{"type":"integer"},"completed":{"type":"integer"},"processing":{"type":"integer"},"mintedEvents":{"type":"integer"},"expired":{"type":"integer"},"abandonedFrontend":{"type":"integer"},"errors":{"type":"integer"}}},"revenue":{"type":"object","properties":{"paidCount":{"type":"integer"},"paidAmount":{"type":"integer"},"currency":{"type":"string"}}},"pending":{"type":"object","properties":{"inflight":{"type":"integer"},"abandoned":{"type":"integer"}}},"eventsByKind":{"type":"array","items":{}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"from":{"type":"string"},"to":{"type":"string"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/payments.listAbandonedCheckouts":{"get":{"operationId":"payments_listAbandonedCheckouts","summary":"List Abandoned Checkouts","tags":["payments"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"state":{"default":"abandoned","type":"string","enum":["abandoned","inflight","all"]},"limit":{"default":50,"type":"number","minimum":1,"maximum":200}},"required":["state","limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/subscriptions.create":{"post":{"operationId":"subscriptions_create","summary":"Create","tags":["subscriptions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/subscriptions.cancel":{"get":{"operationId":"subscriptions_cancel","summary":"Cancel","tags":["subscriptions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"subscriptionId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"newAmount":{"type":"number","exclusiveMinimum":0}},"required":["subscriptionId","newAmount"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/coupons.validate":{"get":{"operationId":"coupons_validate","summary":"Validate","tags":["coupons"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"code":{"type":"string","minLength":1,"maxLength":64},"country":{"default":"FR","type":"string","enum":["FR","WORLD"]},"items":{"default":[],"type":"array","items":{"type":"object","properties":{"planId":{"type":"string"},"kind":{"default":"magazine","type":"string","enum":["subscription","magazine"]},"durationYears":{"type":"integer","minimum":1,"maximum":2},"lineTotal":{"type":"number","minimum":0}},"required":["planId","kind","lineTotal"],"additionalProperties":false}}},"required":["code","country","items"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/coupons.list":{"get":{"operationId":"coupons_list","summary":"List","tags":["coupons"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"activeOnly":{"default":false,"type":"boolean"}},"required":["activeOnly"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/coupons.get":{"get":{"operationId":"coupons_get","summary":"Get","tags":["coupons"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/coupons.create":{"post":{"operationId":"coupons_create","summary":"Create","tags":["coupons"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"code":{"type":"string","minLength":1,"maxLength":64},"type":{"type":"string","enum":["PERCENT","FLAT"]},"value":{"type":"integer","minimum":0,"maximum":9007199254740991},"appliesToPlanIds":{"default":[],"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"appliesToCountry":{"anyOf":[{"type":"string","enum":["FR","WORLD"]},{"type":"null"}]},"appliesToDurationYears":{"anyOf":[{"type":"integer","minimum":1,"maximum":2},{"type":"null"}]},"validFrom":{"anyOf":[{},{"type":"null"}]},"validTo":{"anyOf":[{},{"type":"null"}]},"maxRedemptions":{"anyOf":[{"type":"integer","minimum":1,"maximum":9007199254740991},{"type":"null"}]},"description":{"anyOf":[{"type":"string","maxLength":500},{"type":"null"}]},"active":{"default":true,"type":"boolean"}},"required":["code","type","value","appliesToPlanIds","active"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/coupons.update":{"post":{"operationId":"coupons_update","summary":"Update","tags":["coupons"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"code":{"type":"string","minLength":1,"maxLength":64},"type":{"type":"string","enum":["PERCENT","FLAT"]},"value":{"type":"integer","minimum":0,"maximum":9007199254740991},"appliesToPlanIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"appliesToCountry":{"anyOf":[{"type":"string","enum":["FR","WORLD"]},{"type":"null"}]},"appliesToDurationYears":{"anyOf":[{"type":"integer","minimum":1,"maximum":2},{"type":"null"}]},"validFrom":{"anyOf":[{},{"type":"null"}]},"validTo":{"anyOf":[{},{"type":"null"}]},"maxRedemptions":{"anyOf":[{"type":"integer","minimum":1,"maximum":9007199254740991},{"type":"null"}]},"description":{"anyOf":[{"type":"string","maxLength":500},{"type":"null"}]},"active":{"type":"boolean"},"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/coupons.delete":{"post":{"operationId":"coupons_delete","summary":"Delete","tags":["coupons"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/taxRates.list":{"get":{"operationId":"taxRates_list","summary":"List","tags":["taxRates"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"integer","minimum":1,"maximum":9007199254740991},"limit":{"default":20,"type":"integer","minimum":1,"maximum":100},"search":{"type":"string"},"isActive":{"type":"boolean"},"siteId":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]}},"required":["page","limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/taxRates.get":{"get":{"operationId":"taxRates_get","summary":"Get","tags":["taxRates"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/taxRates.getDefault":{"get":{"operationId":"taxRates_getDefault","summary":"Get Default","tags":["taxRates"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"siteId":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/taxRates.create":{"post":{"operationId":"taxRates_create","summary":"Create","tags":["taxRates"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"code":{"type":"string","minLength":1,"maxLength":64,"pattern":"^[A-Z0-9_-]+$"},"label":{"type":"string","minLength":1,"maxLength":120},"rate":{"type":"number","minimum":0,"maximum":1},"siteId":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]},"country":{"anyOf":[{"type":"string","minLength":2,"maxLength":2},{"type":"null"}]},"region":{"anyOf":[{"type":"string","maxLength":64},{"type":"null"}]},"category":{"type":"string","enum":["STANDARD","REDUCED","INTERMEDIATE","SUPER_REDUCED","ZERO","EXEMPT","PRESS","CUSTOM"]},"isDefault":{"type":"boolean"},"isActive":{"type":"boolean"},"notes":{"anyOf":[{"type":"string","maxLength":500},{"type":"null"}]}},"required":["code","label","rate"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/taxRates.update":{"post":{"operationId":"taxRates_update","summary":"Update","tags":["taxRates"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"code":{"type":"string","minLength":1,"maxLength":64,"pattern":"^[A-Z0-9_-]+$"},"label":{"type":"string","minLength":1,"maxLength":120},"rate":{"type":"number","minimum":0,"maximum":1},"siteId":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]},"country":{"anyOf":[{"type":"string","minLength":2,"maxLength":2},{"type":"null"}]},"region":{"anyOf":[{"type":"string","maxLength":64},{"type":"null"}]},"category":{"type":"string","enum":["STANDARD","REDUCED","INTERMEDIATE","SUPER_REDUCED","ZERO","EXEMPT","PRESS","CUSTOM"]},"isDefault":{"type":"boolean"},"isActive":{"type":"boolean"},"notes":{"anyOf":[{"type":"string","maxLength":500},{"type":"null"}]},"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/taxRates.delete":{"post":{"operationId":"taxRates_delete","summary":"Delete","tags":["taxRates"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/taxRates.seedPresets":{"post":{"operationId":"taxRates_seedPresets","summary":"Seed Presets","tags":["taxRates"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/inventory.getInventoryItems":{"get":{"operationId":"inventory_getInventoryItems","summary":"Get Inventory Items","tags":["inventory"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"search":{"type":"string"},"category":{"type":"string"},"status":{"type":"string","enum":["in_stock","low_stock","out_of_stock","overstocked"]},"supplier":{"type":"string"},"location":{"type":"string"},"sortBy":{"default":"name","type":"string","enum":["name","stock","status","lastRestock","value"]},"sortOrder":{"default":"asc","type":"string","enum":["asc","desc"]},"page":{"default":0,"type":"number","minimum":0},"limit":{"default":50,"type":"number","minimum":1,"maximum":100}},"required":["sortBy","sortOrder","page","limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/inventory.getInventoryStats":{"get":{"operationId":"inventory_getInventoryStats","summary":"Get Inventory Stats","tags":["inventory"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/inventory.adjustStock":{"post":{"operationId":"inventory_adjustStock","summary":"Adjust Stock","tags":["inventory"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"productId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"adjustment":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},"reason":{"type":"string","minLength":1},"reference":{"type":"string"},"notes":{"type":"string"}},"required":["productId","adjustment","reason"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/inventory.bulkAdjustStock":{"post":{"operationId":"inventory_bulkAdjustStock","summary":"Bulk Adjust Stock","tags":["inventory"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"adjustments":{"type":"array","items":{"type":"object","properties":{"productId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"adjustment":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},"reason":{"type":"string","minLength":1},"reference":{"type":"string"},"notes":{"type":"string"}},"required":["productId","adjustment","reason"],"additionalProperties":false}}},"required":["adjustments"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/inventory.restockProduct":{"post":{"operationId":"inventory_restockProduct","summary":"Restock Product","tags":["inventory"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"productId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"quantity":{"type":"integer","minimum":1,"maximum":9007199254740991},"cost":{"type":"number","minimum":0},"supplier":{"type":"string"},"reference":{"type":"string"},"notes":{"type":"string"}},"required":["productId","quantity"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/inventory.bulkReorder":{"post":{"operationId":"inventory_bulkReorder","summary":"Bulk Reorder","tags":["inventory"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"productIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"forceReorder":{"default":false,"type":"boolean"}},"required":["forceReorder"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/inventory.updateInventorySettings":{"post":{"operationId":"inventory_updateInventorySettings","summary":"Update Inventory Settings","tags":["inventory"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"productId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"minStock":{"type":"integer","minimum":0,"maximum":9007199254740991},"maxStock":{"type":"integer","minimum":0,"maximum":9007199254740991},"reorderPoint":{"type":"integer","minimum":0,"maximum":9007199254740991},"reorderQuantity":{"type":"integer","minimum":1,"maximum":9007199254740991},"lowStockThreshold":{"type":"integer","minimum":0,"maximum":9007199254740991},"manageStock":{"type":"boolean"}},"required":["productId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/inventory.getLowStockProducts":{"get":{"operationId":"inventory_getLowStockProducts","summary":"Get Low Stock Products","tags":["inventory"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/shipping.getShippingConfiguration":{"get":{"operationId":"shipping_getShippingConfiguration","summary":"Get Shipping Configuration","tags":["shipping"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"tenantId":{"type":"string"},"siteId":{"type":"string"},"name":{"type":"string"},"code":{"type":"string"},"description":{"type":"string"},"logoUrl":{},"websiteUrl":{},"status":{"type":"string"},"priority":{"type":"integer"},"apiEndpoint":{},"apiKey":{},"apiSecret":{},"testMode":{"type":"boolean"},"countryCode":{"type":"string"},"euCoverage":{"type":"boolean"},"internationalCoverage":{"type":"boolean"},"pickupPointsSupported":{"type":"boolean"},"trackingSupported":{"type":"boolean"},"labelGenerationSupported":{"type":"boolean"},"corsicaSupported":{"type":"boolean"},"domTomSupported":{"type":"boolean"},"appointmentDelivery":{"type":"boolean"},"maxWeight":{"type":"string"},"maxLength":{},"maxWidth":{},"maxHeight":{},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"services":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"type":{"type":"string"}}}}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"includeInactive":{"default":false,"type":"boolean"}},"required":["includeInactive"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.getCarrier":{"get":{"operationId":"shipping_getCarrier","summary":"Get Carrier","tags":["shipping"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"carrierId":{"type":"string"},"tenantId":{"type":"string"},"siteId":{"type":"string"},"name":{"type":"string"},"code":{"type":"string"},"type":{"type":"string"},"description":{"type":"string"},"estimatedDaysMin":{"type":"integer"},"estimatedDaysMax":{"type":"integer"},"trackingIncluded":{"type":"boolean"},"insuranceIncluded":{"type":"boolean"},"signatureRequired":{"type":"boolean"},"isActive":{"type":"boolean"},"availableZones":{"type":"array","items":{"type":"string"}},"pickupPointService":{"type":"boolean"},"appointmentRequired":{"type":"boolean"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"carrier":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"code":{"type":"string"}}},"rates":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"tenantId":{"type":"string"},"siteId":{"type":"string"},"carrierId":{"type":"string"},"serviceId":{"type":"string"},"zoneId":{"type":"string"},"name":{"type":"string"},"type":{"type":"string"},"weightMin":{"type":"string"},"weightMax":{"type":"string"},"baseRate":{"type":"string"},"perKgRate":{"type":"string"},"volumeMin":{},"volumeMax":{},"perVolumeRate":{},"handlingFee":{"type":"string"},"fuelSurcharge":{"type":"string"},"insuranceFee":{"type":"string"},"corsicaSurcharge":{"type":"string"},"domTomSurcharge":{"type":"string"},"ruralSurcharge":{"type":"string"},"pickupPointDiscount":{"type":"string"},"vatRate":{"type":"string"},"vatIncluded":{"type":"boolean"},"isActive":{"type":"boolean"},"validFrom":{"type":"string"},"validTo":{},"minOrderValue":{"type":"string"},"maxOrderValue":{},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"zone":{"type":"object","properties":{"id":{"type":"string"},"tenantId":{"type":"string"},"siteId":{"type":"string"},"name":{"type":"string"},"code":{"type":"string"},"type":{"type":"string"},"description":{"type":"string"},"countries":{"type":"array","items":{"type":"string"}},"regions":{"type":"array","items":{}},"postalCodeRanges":{},"includesCorsica":{"type":"boolean"},"includesDomTom":{"type":"boolean"},"ruralDeliveryHandling":{"type":"boolean"},"isActive":{"type":"boolean"},"priority":{"type":"integer"},"freeShippingThreshold":{"type":"string"},"maxWeight":{"type":"string"},"maxDimensions":{},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}}}}}}}}}}}}}}},"/api/trpc/shipping.getShippingCarriers":{"get":{"operationId":"shipping_getShippingCarriers","summary":"Get Shipping Carriers","tags":["shipping"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"tenantId":{"type":"string"},"siteId":{"type":"string"},"name":{"type":"string"},"code":{"type":"string"},"description":{"type":"string"},"logoUrl":{},"websiteUrl":{},"status":{"type":"string"},"priority":{"type":"integer"},"apiEndpoint":{},"apiKey":{},"apiSecret":{},"testMode":{"type":"boolean"},"countryCode":{"type":"string"},"euCoverage":{"type":"boolean"},"internationalCoverage":{"type":"boolean"},"pickupPointsSupported":{"type":"boolean"},"trackingSupported":{"type":"boolean"},"labelGenerationSupported":{"type":"boolean"},"corsicaSupported":{"type":"boolean"},"domTomSupported":{"type":"boolean"},"appointmentDelivery":{"type":"boolean"},"maxWeight":{"type":"string"},"maxLength":{},"maxWidth":{},"maxHeight":{},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"services":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"type":{"type":"string"}}}}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"includeInactive":{"default":false,"type":"boolean"}},"required":["includeInactive"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.createShippingCarrier":{"post":{"operationId":"shipping_createShippingCarrier","summary":"Create Shipping Carrier","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"code":{"type":"string","minLength":1},"description":{"type":"string"},"logoUrl":{"type":"string","format":"uri"},"websiteUrl":{"type":"string","format":"uri"},"status":{"type":"string","enum":["ACTIVE","INACTIVE","TESTING","SUSPENDED"]},"priority":{"type":"integer","minimum":0,"maximum":9007199254740991},"apiEndpoint":{"type":"string","format":"uri"},"apiKey":{"type":"string"},"apiSecret":{"type":"string"},"testMode":{"type":"boolean"},"countryCode":{"type":"string","minLength":2,"maxLength":2},"euCoverage":{"type":"boolean"},"internationalCoverage":{"type":"boolean"},"pickupPointsSupported":{"type":"boolean"},"trackingSupported":{"type":"boolean"},"labelGenerationSupported":{"type":"boolean"},"corsicaSupported":{"type":"boolean"},"domTomSupported":{"type":"boolean"},"appointmentDelivery":{"type":"boolean"},"maxWeight":{"type":"number","exclusiveMinimum":0},"maxLength":{"type":"number","exclusiveMinimum":0},"maxWidth":{"type":"number","exclusiveMinimum":0},"maxHeight":{"type":"number","exclusiveMinimum":0}},"required":["name","code","status","priority","testMode","countryCode","euCoverage","internationalCoverage","pickupPointsSupported","trackingSupported","labelGenerationSupported","corsicaSupported","domTomSupported","appointmentDelivery"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.updateShippingCarrier":{"post":{"operationId":"shipping_updateShippingCarrier","summary":"Update Shipping Carrier","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"code":{"type":"string","minLength":1},"description":{"type":"string"},"logoUrl":{"type":"string","format":"uri"},"websiteUrl":{"type":"string","format":"uri"},"status":{"type":"string","enum":["ACTIVE","INACTIVE","TESTING","SUSPENDED"]},"priority":{"type":"integer","minimum":0,"maximum":9007199254740991},"apiEndpoint":{"type":"string","format":"uri"},"apiKey":{"type":"string"},"apiSecret":{"type":"string"},"testMode":{"type":"boolean"},"countryCode":{"type":"string","minLength":2,"maxLength":2},"euCoverage":{"type":"boolean"},"internationalCoverage":{"type":"boolean"},"pickupPointsSupported":{"type":"boolean"},"trackingSupported":{"type":"boolean"},"labelGenerationSupported":{"type":"boolean"},"corsicaSupported":{"type":"boolean"},"domTomSupported":{"type":"boolean"},"appointmentDelivery":{"type":"boolean"},"maxWeight":{"type":"number","exclusiveMinimum":0},"maxLength":{"type":"number","exclusiveMinimum":0},"maxWidth":{"type":"number","exclusiveMinimum":0},"maxHeight":{"type":"number","exclusiveMinimum":0},"carrierId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["carrierId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.deleteShippingCarrier":{"post":{"operationId":"shipping_deleteShippingCarrier","summary":"Delete Shipping Carrier","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"carrierId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["carrierId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.createService":{"post":{"operationId":"shipping_createService","summary":"Create Service","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"carrierId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"name":{"type":"string","minLength":1},"code":{"type":"string","minLength":1},"type":{"type":"string","enum":["STANDARD","EXPRESS","ECONOMY","PICKUP_POINT","SAME_DAY","APPOINTMENT"]},"description":{"type":"string"},"estimatedDaysMin":{"type":"integer","minimum":1,"maximum":9007199254740991},"estimatedDaysMax":{"type":"integer","minimum":1,"maximum":9007199254740991},"trackingIncluded":{"type":"boolean"},"insuranceIncluded":{"type":"boolean"},"signatureRequired":{"type":"boolean"},"isActive":{"type":"boolean"},"availableZones":{"type":"array","items":{"type":"string"}},"pickupPointService":{"type":"boolean"},"appointmentRequired":{"type":"boolean"}},"required":["carrierId","name","code","type","estimatedDaysMin","estimatedDaysMax","trackingIncluded","insuranceIncluded","signatureRequired","isActive","availableZones","pickupPointService","appointmentRequired"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.updateService":{"post":{"operationId":"shipping_updateService","summary":"Update Service","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"carrierId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"name":{"type":"string","minLength":1},"code":{"type":"string","minLength":1},"type":{"type":"string","enum":["STANDARD","EXPRESS","ECONOMY","PICKUP_POINT","SAME_DAY","APPOINTMENT"]},"description":{"type":"string"},"estimatedDaysMin":{"type":"integer","minimum":1,"maximum":9007199254740991},"estimatedDaysMax":{"type":"integer","minimum":1,"maximum":9007199254740991},"trackingIncluded":{"type":"boolean"},"insuranceIncluded":{"type":"boolean"},"signatureRequired":{"type":"boolean"},"isActive":{"type":"boolean"},"availableZones":{"type":"array","items":{"type":"string"}},"pickupPointService":{"type":"boolean"},"appointmentRequired":{"type":"boolean"},"serviceId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["serviceId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.deleteService":{"post":{"operationId":"shipping_deleteService","summary":"Delete Service","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"serviceId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["serviceId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.getZones":{"get":{"operationId":"shipping_getZones","summary":"Get Zones","tags":["shipping"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"tenantId":{"type":"string"},"siteId":{"type":"string"},"name":{"type":"string"},"code":{"type":"string"},"type":{"type":"string"},"description":{"type":"string"},"countries":{"type":"array","items":{"type":"string"}},"regions":{"type":"array","items":{}},"postalCodeRanges":{},"includesCorsica":{"type":"boolean"},"includesDomTom":{"type":"boolean"},"ruralDeliveryHandling":{"type":"boolean"},"isActive":{"type":"boolean"},"priority":{"type":"integer"},"freeShippingThreshold":{"type":"string"},"maxWeight":{"type":"string"},"maxDimensions":{},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"_count":{"type":"object","properties":{"rates":{"type":"integer"}}}}}}}}}}}},"/api/trpc/shipping.createZone":{"post":{"operationId":"shipping_createZone","summary":"Create Zone","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"code":{"type":"string","minLength":1},"type":{"type":"string","enum":["DOMESTIC","CORSICA","DOM_TOM","EU","EUROPE_NON_EU","INTERNATIONAL"]},"description":{"type":"string"},"countries":{"type":"array","items":{"type":"string","minLength":2,"maxLength":2}},"regions":{"type":"array","items":{"type":"string"}},"postalCodeRanges":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"includesCorsica":{"type":"boolean"},"includesDomTom":{"type":"boolean"},"ruralDeliveryHandling":{"type":"boolean"},"isActive":{"type":"boolean"},"priority":{"type":"integer","minimum":0,"maximum":9007199254740991},"freeShippingThreshold":{"type":"number","minimum":0},"maxWeight":{"type":"number","exclusiveMinimum":0},"maxDimensions":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"number"}}},"required":["name","code","type","countries","regions","includesCorsica","includesDomTom","ruralDeliveryHandling","isActive","priority"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.updateZone":{"post":{"operationId":"shipping_updateZone","summary":"Update Zone","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"code":{"type":"string","minLength":1},"type":{"type":"string","enum":["DOMESTIC","CORSICA","DOM_TOM","EU","EUROPE_NON_EU","INTERNATIONAL"]},"description":{"type":"string"},"countries":{"type":"array","items":{"type":"string","minLength":2,"maxLength":2}},"regions":{"type":"array","items":{"type":"string"}},"postalCodeRanges":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"includesCorsica":{"type":"boolean"},"includesDomTom":{"type":"boolean"},"ruralDeliveryHandling":{"type":"boolean"},"isActive":{"type":"boolean"},"priority":{"type":"integer","minimum":0,"maximum":9007199254740991},"freeShippingThreshold":{"type":"number","minimum":0},"maxWeight":{"type":"number","exclusiveMinimum":0},"maxDimensions":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"number"}},"zoneId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["zoneId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.deleteZone":{"post":{"operationId":"shipping_deleteZone","summary":"Delete Zone","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"zoneId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["zoneId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.getRates":{"get":{"operationId":"shipping_getRates","summary":"Get Rates","tags":["shipping"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"tenantId":{"type":"string"},"siteId":{"type":"string"},"carrierId":{"type":"string"},"serviceId":{"type":"string"},"zoneId":{"type":"string"},"name":{"type":"string"},"type":{"type":"string"},"weightMin":{"type":"string"},"weightMax":{"type":"string"},"baseRate":{"type":"string"},"perKgRate":{"type":"string"},"volumeMin":{},"volumeMax":{},"perVolumeRate":{},"handlingFee":{"type":"string"},"fuelSurcharge":{"type":"string"},"insuranceFee":{"type":"string"},"corsicaSurcharge":{"type":"string"},"domTomSurcharge":{"type":"string"},"ruralSurcharge":{"type":"string"},"pickupPointDiscount":{"type":"string"},"vatRate":{"type":"string"},"vatIncluded":{"type":"boolean"},"isActive":{"type":"boolean"},"validFrom":{"type":"string"},"validTo":{},"minOrderValue":{"type":"string"},"maxOrderValue":{},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"zone":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"countries":{"type":"array","items":{"type":"string"}}}},"service":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"type":{"type":"string"},"carrier":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"}}}}}}}}}}}}}},"/api/trpc/shipping.createRate":{"post":{"operationId":"shipping_createRate","summary":"Create Rate","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"carrierId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"serviceId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"zoneId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"name":{"type":"string"},"type":{"type":"string","enum":["FLAT_RATE","WEIGHT_BASED","VOLUME_BASED","DISTANCE_BASED","HYBRID"]},"weightMin":{"type":"number","minimum":0},"weightMax":{"type":"number","exclusiveMinimum":0},"baseRate":{"type":"number","minimum":0},"perKgRate":{"type":"number","minimum":0},"volumeMin":{"type":"number","minimum":0},"volumeMax":{"type":"number","exclusiveMinimum":0},"perVolumeRate":{"type":"number","minimum":0},"handlingFee":{"type":"number","minimum":0},"fuelSurcharge":{"type":"number","minimum":0,"maximum":100},"insuranceFee":{"type":"number","minimum":0},"corsicaSurcharge":{"type":"number","minimum":0},"domTomSurcharge":{"type":"number","minimum":0},"ruralSurcharge":{"type":"number","minimum":0},"pickupPointDiscount":{"type":"number","minimum":0},"vatRate":{"type":"number","minimum":0,"maximum":100},"vatIncluded":{"type":"boolean"},"isActive":{"type":"boolean"},"validFrom":{},"validTo":{},"minOrderValue":{"type":"number","minimum":0},"maxOrderValue":{"type":"number","exclusiveMinimum":0}},"required":["carrierId","serviceId","zoneId","type","weightMin","weightMax","baseRate","vatRate","vatIncluded","isActive"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.updateRate":{"post":{"operationId":"shipping_updateRate","summary":"Update Rate","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"carrierId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"serviceId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"zoneId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"name":{"type":"string"},"type":{"type":"string","enum":["FLAT_RATE","WEIGHT_BASED","VOLUME_BASED","DISTANCE_BASED","HYBRID"]},"weightMin":{"type":"number","minimum":0},"weightMax":{"type":"number","exclusiveMinimum":0},"baseRate":{"type":"number","minimum":0},"perKgRate":{"type":"number","minimum":0},"volumeMin":{"type":"number","minimum":0},"volumeMax":{"type":"number","exclusiveMinimum":0},"perVolumeRate":{"type":"number","minimum":0},"handlingFee":{"type":"number","minimum":0},"fuelSurcharge":{"type":"number","minimum":0,"maximum":100},"insuranceFee":{"type":"number","minimum":0},"corsicaSurcharge":{"type":"number","minimum":0},"domTomSurcharge":{"type":"number","minimum":0},"ruralSurcharge":{"type":"number","minimum":0},"pickupPointDiscount":{"type":"number","minimum":0},"vatRate":{"type":"number","minimum":0,"maximum":100},"vatIncluded":{"type":"boolean"},"isActive":{"type":"boolean"},"validFrom":{},"validTo":{},"minOrderValue":{"type":"number","minimum":0},"maxOrderValue":{"type":"number","exclusiveMinimum":0},"rateId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["rateId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.deleteRate":{"post":{"operationId":"shipping_deleteRate","summary":"Delete Rate","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"rateId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["rateId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.getPickupPoints":{"get":{"operationId":"shipping_getPickupPoints","summary":"Get Pickup Points","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"carrierId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"address":{"type":"string"},"postalCode":{"type":"string"},"city":{"type":"string"},"country":{"type":"string","minLength":2,"maxLength":2}},"required":["carrierId","address","postalCode","city","country"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.getShipments":{"get":{"operationId":"shipping_getShipments","summary":"Get Shipments","tags":["shipping"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"shipments":{"type":"array","items":{}},"total":{"type":"integer"},"page":{"type":"integer"},"limit":{"type":"integer"},"hasMore":{"type":"boolean"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"integer","minimum":1,"maximum":9007199254740991},"limit":{"default":20,"type":"integer","minimum":1,"maximum":100},"status":{"type":"string"},"carrierId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"dateFrom":{},"dateTo":{},"search":{"type":"string"}},"required":["page","limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.getPrintJobs":{"get":{"operationId":"shipping_getPrintJobs","summary":"Get Print Jobs","tags":["shipping"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean"},"printJobs":{"type":"array","items":{}},"total":{"type":"integer"},"hasMore":{"type":"boolean"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"integer","minimum":1,"maximum":9007199254740991},"limit":{"default":50,"type":"integer","minimum":1,"maximum":100}},"required":["page","limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.getShipment":{"get":{"operationId":"shipping_getShipment","summary":"Get Shipment","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"shipmentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["shipmentId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.createShipment":{"post":{"operationId":"shipping_createShipment","summary":"Create Shipment","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"carrierId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"serviceId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"pickupPointId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"packages":{"type":"array","items":{"type":"object","properties":{"weight":{"type":"number","exclusiveMinimum":0},"length":{"type":"number","exclusiveMinimum":0},"width":{"type":"number","exclusiveMinimum":0},"height":{"type":"number","exclusiveMinimum":0}},"required":["weight"],"additionalProperties":false}},"senderAddress":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}},"recipientAddress":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}},"currency":{"type":"string","minLength":3,"maxLength":3},"instructions":{"type":"string"},"requiresSignature":{"default":false,"type":"boolean"},"insuranceValue":{"type":"number","minimum":0}},"required":["orderId","carrierId","serviceId","packages","senderAddress","recipientAddress","currency","requiresSignature"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.calculateShippingRates":{"get":{"operationId":"shipping_calculateShippingRates","summary":"Calculate Shipping Rates","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"origin":{"type":"object","properties":{"postalCode":{"type":"string"},"country":{"type":"string","minLength":2,"maxLength":2}},"required":["postalCode","country"],"additionalProperties":false},"destination":{"type":"object","properties":{"postalCode":{"type":"string"},"country":{"type":"string","minLength":2,"maxLength":2}},"required":["postalCode","country"],"additionalProperties":false},"packages":{"type":"array","items":{"type":"object","properties":{"weight":{"type":"number","exclusiveMinimum":0},"length":{"type":"number","exclusiveMinimum":0},"width":{"type":"number","exclusiveMinimum":0},"height":{"type":"number","exclusiveMinimum":0}},"required":["weight"],"additionalProperties":false}},"currency":{"type":"string","minLength":3,"maxLength":3},"carrierIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}}},"required":["origin","destination","packages","currency"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.validateAddress":{"get":{"operationId":"shipping_validateAddress","summary":"Validate Address","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"address":{"type":"object","properties":{"street":{"type":"string"},"city":{"type":"string"},"postalCode":{"type":"string"},"country":{"type":"string","minLength":2,"maxLength":2}},"required":["street","city","postalCode","country"],"additionalProperties":false}},"required":["address"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.getShippingZones":{"get":{"operationId":"shipping_getShippingZones","summary":"Get Shipping Zones","tags":["shipping"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"tenantId":{"type":"string"},"siteId":{"type":"string"},"name":{"type":"string"},"code":{"type":"string"},"type":{"type":"string"},"description":{"type":"string"},"countries":{"type":"array","items":{"type":"string"}},"regions":{"type":"array","items":{}},"postalCodeRanges":{},"includesCorsica":{"type":"boolean"},"includesDomTom":{"type":"boolean"},"ruralDeliveryHandling":{"type":"boolean"},"isActive":{"type":"boolean"},"priority":{"type":"integer"},"freeShippingThreshold":{"type":"string"},"maxWeight":{"type":"string"},"maxDimensions":{},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"_count":{"type":"object","properties":{"rates":{"type":"integer"}}}}}}}}}}}},"/api/trpc/shipping.generateLabel":{"post":{"operationId":"shipping_generateLabel","summary":"Generate Label","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"shipmentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["shipmentId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.generateBulkLabels":{"post":{"operationId":"shipping_generateBulkLabels","summary":"Generate Bulk Labels","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"shipmentIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}}},"required":["shipmentIds"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.getShippingAnalytics":{"get":{"operationId":"shipping_getShippingAnalytics","summary":"Get Shipping Analytics","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"startDate":{},"endDate":{},"carrierId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["startDate","endDate"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.getCostAnalysis":{"get":{"operationId":"shipping_getCostAnalysis","summary":"Get Cost Analysis","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"startDate":{},"endDate":{}},"required":["startDate","endDate"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.getDeliveryPerformance":{"get":{"operationId":"shipping_getDeliveryPerformance","summary":"Get Delivery Performance","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"startDate":{},"endDate":{}},"required":["startDate","endDate"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.updateCarrierRates":{"post":{"operationId":"shipping_updateCarrierRates","summary":"Update Carrier Rates","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"carrierId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"rates":{"type":"array","items":{"type":"object","properties":{"carrierId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"serviceId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"zoneId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"name":{"type":"string"},"type":{"type":"string","enum":["FLAT_RATE","WEIGHT_BASED","VOLUME_BASED","DISTANCE_BASED","HYBRID"]},"weightMin":{"type":"number","minimum":0},"weightMax":{"type":"number","exclusiveMinimum":0},"baseRate":{"type":"number","minimum":0},"perKgRate":{"type":"number","minimum":0},"volumeMin":{"type":"number","minimum":0},"volumeMax":{"type":"number","exclusiveMinimum":0},"perVolumeRate":{"type":"number","minimum":0},"handlingFee":{"type":"number","minimum":0},"fuelSurcharge":{"type":"number","minimum":0,"maximum":100},"insuranceFee":{"type":"number","minimum":0},"corsicaSurcharge":{"type":"number","minimum":0},"domTomSurcharge":{"type":"number","minimum":0},"ruralSurcharge":{"type":"number","minimum":0},"pickupPointDiscount":{"type":"number","minimum":0},"vatRate":{"type":"number","minimum":0,"maximum":100},"vatIncluded":{"type":"boolean"},"isActive":{"type":"boolean"},"validFrom":{},"validTo":{},"minOrderValue":{"type":"number","minimum":0},"maxOrderValue":{"type":"number","exclusiveMinimum":0}},"required":["carrierId","serviceId","zoneId","type","weightMin","weightMax","baseRate","vatRate","vatIncluded","isActive"],"additionalProperties":false}}},"required":["carrierId","rates"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.validateCarrierAPI":{"get":{"operationId":"shipping_validateCarrierAPI","summary":"Validate Carrier API","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"carrierId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["carrierId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.getQuickEstimate":{"get":{"operationId":"shipping_getQuickEstimate","summary":"Get Quick Estimate","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"weight":{"type":"number","exclusiveMinimum":0},"carrierId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["weight"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.sendShippingNotification":{"post":{"operationId":"shipping_sendShippingNotification","summary":"Send Shipping Notification","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"shipmentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"type":{"type":"string","enum":["CREATED","SHIPPED","IN_TRANSIT","DELIVERED","EXCEPTION"]}},"required":["shipmentId","type"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.processBulkOrders":{"post":{"operationId":"shipping_processBulkOrders","summary":"Process Bulk Orders","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}}},"required":["orderIds"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.getPerformanceDashboard":{"get":{"operationId":"shipping_getPerformanceDashboard","summary":"Get Performance Dashboard","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"startDate":{},"endDate":{}},"required":["startDate","endDate"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.performComplianceCheck":{"get":{"operationId":"shipping_performComplianceCheck","summary":"Perform Compliance Check","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"shipmentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["shipmentId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.calculateEUVAT":{"get":{"operationId":"shipping_calculateEUVAT","summary":"Calculate EUVAT","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"amount":{"type":"number","minimum":0},"fromCountry":{"type":"string","minLength":2,"maxLength":2},"toCountry":{"type":"string","minLength":2,"maxLength":2}},"required":["amount","fromCountry","toCountry"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.colissimoGetRates":{"get":{"operationId":"shipping_colissimoGetRates","summary":"Colissimo Get Rates","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"origin":{"type":"object","properties":{"postalCode":{"type":"string"},"country":{"type":"string","minLength":2,"maxLength":2}},"required":["postalCode","country"],"additionalProperties":false},"destination":{"type":"object","properties":{"postalCode":{"type":"string"},"country":{"type":"string","minLength":2,"maxLength":2}},"required":["postalCode","country"],"additionalProperties":false},"weight":{"type":"number","exclusiveMinimum":0}},"required":["origin","destination","weight"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.colissimoCreateLabel":{"post":{"operationId":"shipping_colissimoCreateLabel","summary":"Colissimo Create Label","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"shipmentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["shipmentId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.colissimoTrackShipment":{"get":{"operationId":"shipping_colissimoTrackShipment","summary":"Colissimo Track Shipment","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"trackingNumber":{"type":"string"}},"required":["trackingNumber"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.colissimoSearchPickupPoints":{"get":{"operationId":"shipping_colissimoSearchPickupPoints","summary":"Colissimo Search Pickup Points","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"address":{"type":"string"},"postalCode":{"type":"string"},"city":{"type":"string"}},"required":["address","postalCode","city"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/shipping.searchPickupPoints":{"post":{"operationId":"shipping_searchPickupPoints","summary":"Search Pickup Points","tags":["shipping"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"siteSlug":{"type":"string"},"address":{"type":"string"},"maxResults":{"default":10,"type":"integer","minimum":1,"maximum":20}},"required":["siteSlug","address","maxResults"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vouchers.get":{"get":{"operationId":"vouchers_get","summary":"Get","tags":["vouchers"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vouchers.update":{"post":{"operationId":"vouchers_update","summary":"Update","tags":["vouchers"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"data":{"type":"object","properties":{"code":{"type":"string","minLength":1,"maxLength":50},"discountAmount":{"anyOf":[{"type":"number","minimum":0},{"type":"null"}]},"discountPercent":{"anyOf":[{"type":"number","minimum":0,"maximum":100},{"type":"null"}]},"minPurchaseAmount":{"anyOf":[{"type":"number","minimum":0},{"type":"null"}]},"maxUses":{"anyOf":[{"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991},{"type":"null"}]},"maxUsesPerUser":{"anyOf":[{"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991},{"type":"null"}]},"validFrom":{"anyOf":[{},{"type":"null"}]},"validUntil":{"anyOf":[{},{"type":"null"}]},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"notes":{"anyOf":[{"type":"string"},{"type":"null"}]},"status":{"type":"string","enum":["ACTIVE","USED","EXPIRED","DISABLED"]}},"additionalProperties":false}},"required":["id","data"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vouchers.create":{"post":{"operationId":"vouchers_create","summary":"Create","tags":["vouchers"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"type":{"type":"string","enum":["GIFT_CARD","PERCENTAGE","FIXED_AMOUNT","FREE_SHIPPING","RESTAURANT_VOUCHER"]},"code":{"type":"string","minLength":1,"maxLength":50},"discountAmount":{"type":"number","minimum":0},"discountPercent":{"type":"number","minimum":0,"maximum":100},"minPurchaseAmount":{"type":"number","minimum":0},"maxUses":{"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991},"maxUsesPerUser":{"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991},"validFrom":{},"validUntil":{},"applicableProducts":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"applicableCategories":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"applicableUsers":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"description":{"type":"string"},"notes":{"type":"string"},"initialBalance":{"type":"number","minimum":0},"provider":{"type":"string","enum":["SWILE","PLUXEE","TICKET_RESTAURANT","UPDÉJEUNER","BIMPLI"]},"providerConfig":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}}},"required":["type"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vouchers.validate":{"post":{"operationId":"vouchers_validate","summary":"Validate","tags":["vouchers"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"code":{"type":"string","minLength":1},"orderAmount":{"type":"number","minimum":0},"productIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"userId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["code","orderAmount"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vouchers.applyVoucher":{"post":{"operationId":"vouchers_applyVoucher","summary":"Apply Voucher","tags":["vouchers"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"voucherCode":{"type":"string","minLength":1}},"required":["orderId","voucherCode"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vouchers.remove":{"post":{"operationId":"vouchers_remove","summary":"Remove","tags":["vouchers"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["orderId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vouchers.list":{"get":{"operationId":"vouchers_list","summary":"List","tags":["vouchers"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"status":{"type":"string","enum":["ACTIVE","USED","EXPIRED","DISABLED"]},"type":{"type":"string","enum":["GIFT_CARD","PERCENTAGE","FIXED_AMOUNT","FREE_SHIPPING","RESTAURANT_VOUCHER"]},"page":{"default":1,"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991},"per_page":{"default":20,"type":"integer","exclusiveMinimum":0,"maximum":100}},"required":["page","per_page"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vouchers.generateBulk":{"post":{"operationId":"vouchers_generateBulk","summary":"Generate Bulk","tags":["vouchers"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"count":{"type":"integer","exclusiveMinimum":0,"maximum":1000},"template":{"type":"object","properties":{"type":{"type":"string","enum":["GIFT_CARD","PERCENTAGE","FIXED_AMOUNT","FREE_SHIPPING","RESTAURANT_VOUCHER"]},"code":{"type":"string","minLength":1,"maxLength":50},"discountAmount":{"type":"number","minimum":0},"discountPercent":{"type":"number","minimum":0,"maximum":100},"minPurchaseAmount":{"type":"number","minimum":0},"maxUses":{"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991},"maxUsesPerUser":{"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991},"validFrom":{},"validUntil":{},"applicableProducts":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"applicableCategories":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"applicableUsers":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"description":{"type":"string"},"notes":{"type":"string"},"initialBalance":{"type":"number","minimum":0},"provider":{"type":"string","enum":["SWILE","PLUXEE","TICKET_RESTAURANT","UPDÉJEUNER","BIMPLI"]},"providerConfig":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}}},"required":["type"],"additionalProperties":false}},"required":["count","template"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vouchers.getUsageHistory":{"get":{"operationId":"vouchers_getUsageHistory","summary":"Get Usage History","tags":["vouchers"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"voucherId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["voucherId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vouchers.getByCode":{"get":{"operationId":"vouchers_getByCode","summary":"Get By Code","tags":["vouchers"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"code":{"type":"string"}},"required":["code"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/vouchers.checkBalance":{"get":{"operationId":"vouchers_checkBalance","summary":"Check Balance","tags":["vouchers"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"voucherId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["voucherId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/recurringInvoices.list":{"get":{"operationId":"recurringInvoices_list","summary":"List","tags":["recurringInvoices"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{}},"total":{"type":"integer"},"page":{"type":"integer"},"limit":{"type":"integer"},"totalPages":{"type":"integer"},"hasMore":{"type":"boolean"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"number","minimum":1},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"status":{"type":"string","enum":["ACTIVE","PAUSED","CANCELLED","COMPLETED"]},"clientId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"search":{"type":"string"}},"required":["page","limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/recurringInvoices.get":{"get":{"operationId":"recurringInvoices_get","summary":"Get","tags":["recurringInvoices"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/recurringInvoices.create":{"post":{"operationId":"recurringInvoices_create","summary":"Create","tags":["recurringInvoices"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"clientId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"frequency":{"type":"string","enum":["WEEKLY","BIWEEKLY","MONTHLY","QUARTERLY","YEARLY"]},"startDate":{},"endDate":{"anyOf":[{},{"type":"null"}]},"items":{"minItems":1,"type":"array","items":{"type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"quantity":{"type":"number","minimum":1},"unitPrice":{"type":"number","minimum":0},"taxRate":{"type":"number","minimum":0,"maximum":1}},"required":["name","quantity","unitPrice"],"additionalProperties":false}},"currency":{"default":"EUR","type":"string","minLength":3,"maxLength":3},"language":{"default":"fr","type":"string","minLength":2,"maxLength":2},"notes":{"type":"string"},"footer":{"type":"string"},"paymentTerms":{"type":"string"},"paymentMethod":{"type":"string"},"autoSend":{"default":false,"type":"boolean"},"autoReminder":{"default":false,"type":"boolean"},"pdfTemplate":{"default":3,"type":"number","minimum":1,"maximum":5},"pdfFormat":{"type":"string"},"taxDetails":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}},"discountDetails":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}}},"required":["clientId","frequency","startDate","items","currency","language","autoSend","autoReminder","pdfTemplate"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/recurringInvoices.update":{"post":{"operationId":"recurringInvoices_update","summary":"Update","tags":["recurringInvoices"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"clientId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"frequency":{"type":"string","enum":["WEEKLY","BIWEEKLY","MONTHLY","QUARTERLY","YEARLY"]},"startDate":{},"endDate":{"anyOf":[{},{"type":"null"}]},"items":{"minItems":1,"type":"array","items":{"type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"quantity":{"type":"number","minimum":1},"unitPrice":{"type":"number","minimum":0},"taxRate":{"type":"number","minimum":0,"maximum":1}},"required":["name","quantity","unitPrice"],"additionalProperties":false}},"currency":{"type":"string","minLength":3,"maxLength":3},"language":{"type":"string","minLength":2,"maxLength":2},"notes":{"type":"string"},"footer":{"type":"string"},"paymentTerms":{"type":"string"},"paymentMethod":{"type":"string"},"autoSend":{"type":"boolean"},"autoReminder":{"type":"boolean"},"pdfTemplate":{"type":"number","minimum":1,"maximum":5},"pdfFormat":{"type":"string"},"taxDetails":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}},"discountDetails":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}},"status":{"type":"string","enum":["ACTIVE","PAUSED","CANCELLED","COMPLETED"]},"isActive":{"type":"boolean"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/recurringInvoices.delete":{"post":{"operationId":"recurringInvoices_delete","summary":"Delete","tags":["recurringInvoices"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/recurringInvoices.pause":{"post":{"operationId":"recurringInvoices_pause","summary":"Pause","tags":["recurringInvoices"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/recurringInvoices.resume":{"post":{"operationId":"recurringInvoices_resume","summary":"Resume","tags":["recurringInvoices"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/recurringInvoices.cancel":{"post":{"operationId":"recurringInvoices_cancel","summary":"Cancel","tags":["recurringInvoices"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/recurringInvoices.getUpcoming":{"get":{"operationId":"recurringInvoices_getUpcoming","summary":"Get Upcoming","tags":["recurringInvoices"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"daysAhead":{"default":30,"type":"number","minimum":1,"maximum":365}},"required":["daysAhead"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/recurringInvoices.getStats":{"get":{"operationId":"recurringInvoices_getStats","summary":"Get Stats","tags":["recurringInvoices"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer"},"active":{"type":"integer"},"paused":{"type":"integer"},"cancelled":{"type":"integer"}}}}}}}}},"/api/trpc/articles.getHomeArticles":{"get":{"operationId":"articles_getHomeArticles","summary":"Get Home Articles","tags":["articles"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":8,"type":"number","minimum":1,"maximum":20},"source":{"default":"both","type":"string","enum":["mysql","postgres","both"]},"codeMagazine":{"type":"string"}},"required":["limit","source"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/articles.getArticles":{"get":{"operationId":"articles_getArticles","summary":"Get Articles","tags":["articles"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"articles":{"type":"array","items":{}},"pagination":{"type":"object","properties":{"total":{"type":"integer"},"limit":{"type":"integer"},"offset":{"type":"integer"},"hasMore":{"type":"boolean"}}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0},"source":{"default":"both","type":"string","enum":["mysql","postgres","both"]}},"required":["limit","offset","source"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/articles.getArticleBySlug":{"get":{"operationId":"articles_getArticleBySlug","summary":"Get Article By Slug","tags":["articles"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"slug":{"type":"string"}},"required":["slug"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/articles.searchArticles":{"get":{"operationId":"articles_searchArticles","summary":"Search Articles","tags":["articles"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"query":{"type":"string","minLength":1},"limit":{"default":20,"type":"number","minimum":1,"maximum":50},"source":{"default":"both","type":"string","enum":["mysql","postgres","both"]}},"required":["query","limit","source"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/articles.getArticlesByCategory":{"get":{"operationId":"articles_getArticlesByCategory","summary":"Get Articles By Category","tags":["articles"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"category":{"type":"string"},"limit":{"default":20,"type":"number","minimum":1,"maximum":50},"source":{"default":"both","type":"string","enum":["mysql","postgres","both"]}},"required":["category","limit","source"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/forms.list":{"get":{"operationId":"forms_list","summary":"List","tags":["forms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"forms":{"type":"array","items":{}},"items":{"type":"array","items":{}},"total":{"type":"integer"},"page":{"type":"integer"},"perPage":{"type":"integer"},"totalPages":{"type":"integer"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"number","minimum":1},"perPage":{"default":10,"type":"number","minimum":1},"sort":{"default":"createdAt","type":"string"},"order":{"default":"desc","type":"string","enum":["asc","desc"]},"search":{"type":"string"},"status":{"type":"string","enum":["DRAFT","PUBLISHED","ARCHIVED","EXPIRED"]},"siteScoped":{"type":"boolean"}},"required":["page","perPage","sort","order"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/forms.create":{"post":{"operationId":"forms_create","summary":"Create","tags":["forms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"fields":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"type":{"type":"string"},"label":{"type":"string"},"required":{"type":"boolean"},"placeholder":{"type":"string"},"step":{"type":"number"},"maxLength":{"type":"number"},"options":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"string"},{"type":"array","items":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}}}]}},"required":["id","type","label","required"],"additionalProperties":false}},"steps":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"title":{"type":"string"},"description":{"type":"string"},"order":{"type":"number"}},"required":["id","title","order"],"additionalProperties":false}},"enableSteps":{"type":"boolean"},"status":{"type":"string","enum":["DRAFT","PUBLISHED","ARCHIVED","EXPIRED"]},"expiresAt":{},"settings":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}}},"required":["name","fields","status"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/forms.update":{"post":{"operationId":"forms_update","summary":"Update","tags":["forms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"name":{"type":"string","minLength":1},"description":{"type":"string"},"fields":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"type":{"type":"string"},"label":{"type":"string"},"required":{"type":"boolean"},"placeholder":{"type":"string"},"step":{"type":"number"},"maxLength":{"type":"number"},"options":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"string"},{"type":"array","items":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}}}]}},"required":["id","type","label","required"],"additionalProperties":false}},"steps":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"title":{"type":"string"},"description":{"type":"string"},"order":{"type":"number"}},"required":["id","title","order"],"additionalProperties":false}},"enableSteps":{"type":"boolean"},"status":{"type":"string","enum":["DRAFT","PUBLISHED","ARCHIVED","EXPIRED"]},"expiresAt":{},"settings":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}}},"required":["id","name"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/forms.submit":{"post":{"operationId":"forms_submit","summary":"Submit","tags":["forms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"formId":{"type":"string"},"data":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}},"stepId":{"type":"string"},"isDraft":{"default":false,"type":"boolean"}},"required":["formId","data","isDraft"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/forms.getSubmissions":{"get":{"operationId":"forms_getSubmissions","summary":"Get Submissions","tags":["forms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"formId":{"type":"string"},"page":{"default":1,"type":"number","minimum":1},"perPage":{"default":10,"type":"number","minimum":1},"sort":{"default":"createdAt","type":"string"},"order":{"default":"desc","type":"string","enum":["asc","desc"]}},"required":["formId","page","perPage","sort","order"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/forms.getSubmission":{"get":{"operationId":"forms_getSubmission","summary":"Get Submission","tags":["forms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"submissionId":{"type":"string"}},"required":["submissionId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/forms.updateSubmissionStatus":{"post":{"operationId":"forms_updateSubmissionStatus","summary":"Update Submission Status","tags":["forms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"submissionId":{"type":"string"},"status":{"type":"string","enum":["PENDING","APPROVED","REJECTED","ARCHIVED"]},"comments":{"type":"string"}},"required":["submissionId","status"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/forms.exportData":{"get":{"operationId":"forms_exportData","summary":"Export Data","tags":["forms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"formId":{"type":"string"},"format":{"default":"CSV","type":"string","enum":["CSV","JSON","PDF"]},"includeSubmissions":{"default":true,"type":"boolean"},"dateFrom":{},"dateTo":{}},"required":["formId","format","includeSubmissions"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/forms.getStats":{"get":{"operationId":"forms_getStats","summary":"Get Stats","tags":["forms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"formId":{"type":"string"},"period":{"default":"30d","type":"string","enum":["7d","30d","90d","1y"]}},"required":["formId","period"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/forms.duplicate":{"post":{"operationId":"forms_duplicate","summary":"Duplicate","tags":["forms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"formId":{"type":"string"},"name":{"type":"string","minLength":1}},"required":["formId","name"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/forms.configureEmails":{"post":{"operationId":"forms_configureEmails","summary":"Configure Emails","tags":["forms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"formId":{"type":"string"},"emailConfig":{"type":"object","properties":{"sendToSubscribers":{"default":false,"type":"boolean"},"customRecipients":{"default":[],"type":"array","items":{"type":"string"}},"emailTemplate":{"type":"string"},"confirmationEmail":{"default":true,"type":"boolean"},"notificationEmail":{"default":false,"type":"boolean"}},"required":["sendToSubscribers","customRecipients","confirmationEmail","notificationEmail"],"additionalProperties":false}},"required":["formId","emailConfig"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/forms.getEmailConfig":{"get":{"operationId":"forms_getEmailConfig","summary":"Get Email Config","tags":["forms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"config":{"type":"object","properties":{"sendToSubscribers":{"type":"boolean"},"customRecipients":{"type":"array","items":{}},"emailTemplate":{},"confirmationEmail":{"type":"boolean"},"notificationEmail":{"type":"boolean"}}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"formId":{"type":"string"}},"required":["formId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/forms.getPublicDirectoryConfig":{"get":{"operationId":"forms_getPublicDirectoryConfig","summary":"Get Public Directory Config","tags":["forms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/forms.getDirectoryConfig":{"get":{"operationId":"forms_getDirectoryConfig","summary":"Get Directory Config","tags":["forms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"id":{},"enabled":{"type":"boolean"},"formId":{},"builtInFormId":{},"formType":{},"data":{},"form":{},"emailConfig":{"type":"object","properties":{"emailFrom":{"type":"string"},"emailFromAddress":{"type":"string"},"annuaireSubTitle":{"type":"string"},"annuaireTitle":{"type":"string"},"annuaireBanner":{"type":"string"},"annuaireSurvey":{"type":"string"},"annuaireEmailTplPrefix":{"type":"string"},"emailSignature":{"type":"string"},"emailSubject":{"type":"string"},"testRecipientEmail":{"type":"string"},"bccEmails":{"type":"array","items":{}},"useEnvVarsIfEmpty":{"type":"boolean"},"enableEmailSending":{"type":"boolean"}}}}}}}}}}},"/api/trpc/forms.updateDirectoryConfig":{"post":{"operationId":"forms_updateDirectoryConfig","summary":"Update Directory Config","tags":["forms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"enabled":{"type":"boolean"},"formId":{"type":"string"},"formType":{"type":"string","enum":["BUILTIN","CUSTOM"]},"builtInFormId":{"type":"string"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/forms.updateDirectoryEmailConfig":{"post":{"operationId":"forms_updateDirectoryEmailConfig","summary":"Update Directory Email Config","tags":["forms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"emailFrom":{"type":"string"},"emailFromAddress":{"anyOf":[{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},{"type":"string","const":""}]},"annuaireSubTitle":{"type":"string"},"annuaireTitle":{"type":"string"},"annuaireBanner":{"type":"string"},"annuaireSurvey":{"type":"string"},"annuaireEmailTplPrefix":{"type":"string"},"emailSignature":{"type":"string"},"emailSubject":{"type":"string"},"testRecipientEmail":{"anyOf":[{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},{"type":"string","const":""}]},"bccEmails":{"type":"array","items":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"}},"useEnvVarsIfEmpty":{"type":"boolean"},"enableEmailSending":{"type":"boolean"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/forms.resetDirectoryEmailConfig":{"post":{"operationId":"forms_resetDirectoryEmailConfig","summary":"Reset Directory Email Config","tags":["forms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/forms.getForm":{"get":{"operationId":"forms_getForm","summary":"Get Form","tags":["forms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/forms.updateForm":{"post":{"operationId":"forms_updateForm","summary":"Update Form","tags":["forms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"name":{"type":"string","minLength":1},"description":{"type":"string"},"fields":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"type":{"type":"string"},"label":{"type":"string"},"required":{"type":"boolean"},"placeholder":{"type":"string"},"step":{"type":"number"},"maxLength":{"type":"number"},"options":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"string"},{"type":"array","items":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}}}]}},"required":["id","type","label","required"],"additionalProperties":false}},"steps":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"title":{"type":"string"},"description":{"type":"string"},"order":{"type":"number"}},"required":["id","title","order"],"additionalProperties":false}},"enableSteps":{"type":"boolean"},"status":{"type":"string","enum":["DRAFT","PUBLISHED","ARCHIVED","EXPIRED"]},"expiresAt":{},"settings":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}}},"required":["id","name"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/forms.getBuiltInForms":{"get":{"operationId":"forms_getBuiltInForms","summary":"Get Built In Forms","tags":["forms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"}}}}}}}}}},"/api/trpc/forms.getBuiltInFormIds":{"get":{"operationId":"forms_getBuiltInFormIds","summary":"Get Built In Form Ids","tags":["forms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"array","items":{"type":"string"}}}}}}}},"/api/trpc/forms.getBuiltInFormDefinition":{"get":{"operationId":"forms_getBuiltInFormDefinition","summary":"Get Built In Form Definition","tags":["forms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"formId":{"type":"string"}},"required":["formId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/forms.getBuiltInFormWithCategories":{"get":{"operationId":"forms_getBuiltInFormWithCategories","summary":"Get Built In Form With Categories","tags":["forms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"formId":{"type":"string"}},"required":["formId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/forms.builtInFormExists":{"get":{"operationId":"forms_builtInFormExists","summary":"Built In Form Exists","tags":["forms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"boolean"}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"formId":{"type":"string"}},"required":["formId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/forms.getPublicForm":{"get":{"operationId":"forms_getPublicForm","summary":"Get Public Form","tags":["forms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","minLength":1}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/medias.getMedias":{"get":{"operationId":"medias_getMedias","summary":"Get Medias","tags":["medias"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"status":{"type":"string"},"message":{"type":"string"},"data":{"type":"object","properties":{"files":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"isDirectory":{"type":"boolean"},"createdAt":{"type":"string"},"relatedId":{},"mimeType":{},"fileSize":{},"filePath":{},"relatedModel":{},"parentId":{},"storageSource":{"type":"string"}}}},"breadcrumb":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"}}}},"metadata":{"type":"object","properties":{"total":{"type":"integer"},"totalFiles":{"type":"integer"},"totalFolders":{"type":"integer"},"page":{"type":"integer"},"limit":{"type":"integer"},"totalPages":{"type":"integer"},"currentLevel":{"type":"integer"}}}}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"number"},"limit":{"default":20,"type":"number"},"search":{"type":"string"},"parentId":{"anyOf":[{"type":"string"},{"type":"null"}]},"models":{"type":"array","items":{"type":"string","enum":["declaration_of_exchange","accounting_report","opportunity","partner","invoice","project","sale_order","indicator_generator","i_calendar","message","unknown"]}}},"required":["page","limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/medias.deleteFile":{"post":{"operationId":"medias_deleteFile","summary":"Delete File","tags":["medias"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"fileId":{"type":"string"},"force":{"default":false,"type":"boolean"}},"required":["fileId","force"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/medias.createFolder":{"post":{"operationId":"medias_createFolder","summary":"Create Folder","tags":["medias"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string"},"parentId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["name"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/medias.uploadFile":{"post":{"operationId":"medias_uploadFile","summary":"Upload File","tags":["medias"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"file":{"type":"object","properties":{"name":{"type":"string"},"type":{"type":"string"},"size":{"type":"number"},"base64":{"type":"string"}},"required":["name","type","size","base64"],"additionalProperties":false},"parentId":{"anyOf":[{"type":"string"},{"type":"null"}]},"type":{"type":"string","enum":["declaration_of_exchange","accounting_report","opportunity","partner","invoice","project","sale_order","indicator_generator","i_calendar","message","unknown"]},"societeId":{"type":"string"}},"required":["file"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/medias.renameFile":{"post":{"operationId":"medias_renameFile","summary":"Rename File","tags":["medias"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"fileId":{"type":"string"},"newName":{"type":"string"}},"required":["fileId","newName"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/medias.setFileTitle":{"post":{"operationId":"medias_setFileTitle","summary":"Set File Title","tags":["medias"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"fileId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"title":{"anyOf":[{"type":"string","maxLength":255},{"type":"null"}]}},"required":["fileId","title"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/medias.moveFile":{"post":{"operationId":"medias_moveFile","summary":"Move File","tags":["medias"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"fileId":{"type":"string"},"targetFolderId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["fileId","targetFolderId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/medias.getFolderContents":{"get":{"operationId":"medias_getFolderContents","summary":"Get Folder Contents","tags":["medias"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"status":{"type":"string"},"message":{"type":"string"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"parentId":{"default":"root","type":"string"}},"required":["parentId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/medias.findByPathOrUrl":{"get":{"operationId":"medias_findByPathOrUrl","summary":"Find By Path Or Url","tags":["medias"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"pathOrUrl":{"type":"string","minLength":1}},"required":["pathOrUrl"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/medias.syncToObjectStorage":{"post":{"operationId":"medias_syncToObjectStorage","summary":"Sync To Object Storage","tags":["medias"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"fileId":{"type":"string"}},"required":["fileId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/invoices.deleteAllInvoices":{"post":{"operationId":"invoices_deleteAllInvoices","summary":"Delete All Invoices","tags":["invoices"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"confirmationId":{"type":"string"}},"required":["confirmationId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/invoices.getInvoices":{"get":{"operationId":"invoices_getInvoices","summary":"Get Invoices","tags":["invoices"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"senderId":{"type":"string"},"receiverId":{"type":"string"},"invoiceLogo":{},"invoiceNumber":{"type":"string"},"invoiceDate":{"type":"string"},"invoiceType":{},"invoiceStatus":{"type":"string"},"dueDate":{},"purchaseOrderNumber":{},"currency":{"type":"string"},"language":{"type":"string"},"paymentInformation":{"type":"object","properties":{}},"taxDetails":{"type":"object","properties":{}},"discountDetails":{"type":"object","properties":{}},"shippingDetails":{"type":"object","properties":{}},"subTotal":{},"totalAmount":{"type":"integer"},"totalAmountInWords":{"type":"string"},"additionalNotes":{},"paymentTerms":{"type":"string"},"paymentMethod":{},"signature":{"type":"object","properties":{}},"startedAt":{},"endedAt":{},"location":{},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"pdfTemplate":{"type":"integer"},"pdfFormat":{},"customInputs":{},"footer":{},"source":{},"emplacementId":{},"tenantId":{"type":"string"},"userId":{},"siteId":{"type":"string"},"recurringInvoiceId":{},"domainId":{},"issuerProfileId":{},"sequenceKey":{},"issuedAt":{},"locked":{"type":"boolean"},"receiver":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"address":{},"zipCode":{},"city":{},"country":{},"email":{},"phone":{},"siret":{},"codeNaf":{},"customInputs":{"type":"object","properties":{}},"externalId":{},"archived":{"type":"boolean"},"isProfessional":{"type":"boolean"},"tenantId":{"type":"string"},"siteId":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"isMainRecord":{"type":"boolean"},"mainRecordId":{},"typeId":{},"tiersId":{},"territoryId":{},"data":{}}},"pdfUrl":{}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0},"status":{"type":"string"},"type":{"type":"string","enum":["INVOICE","QUOTE","CREDIT_NOTE"]}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/invoices.getInvoice":{"get":{"operationId":"invoices_getInvoice","summary":"Get Invoice","tags":["invoices"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"senderId":{"type":"string"},"receiverId":{"type":"string"},"invoiceLogo":{},"invoiceNumber":{"type":"string"},"invoiceDate":{"type":"string"},"invoiceType":{},"invoiceStatus":{"type":"string"},"dueDate":{},"purchaseOrderNumber":{},"currency":{"type":"string"},"language":{"type":"string"},"paymentInformation":{"type":"object","properties":{}},"taxDetails":{"type":"object","properties":{}},"discountDetails":{"type":"object","properties":{}},"shippingDetails":{"type":"object","properties":{}},"subTotal":{},"totalAmount":{"type":"integer"},"totalAmountInWords":{"type":"string"},"additionalNotes":{},"paymentTerms":{"type":"string"},"paymentMethod":{},"signature":{"type":"object","properties":{}},"startedAt":{},"endedAt":{},"location":{},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"pdfTemplate":{"type":"integer"},"pdfFormat":{},"customInputs":{},"footer":{},"source":{},"emplacementId":{},"tenantId":{"type":"string"},"userId":{},"siteId":{"type":"string"},"recurringInvoiceId":{},"domainId":{},"issuerProfileId":{},"sequenceKey":{},"issuedAt":{},"locked":{"type":"boolean"},"items":{"type":"array","items":{}},"receiver":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"address":{},"zipCode":{},"city":{},"country":{},"email":{},"phone":{},"siret":{},"codeNaf":{},"customInputs":{"type":"object","properties":{}},"externalId":{},"archived":{"type":"boolean"},"isProfessional":{"type":"boolean"},"tenantId":{"type":"string"},"siteId":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"isMainRecord":{"type":"boolean"},"mainRecordId":{},"typeId":{},"tiersId":{},"territoryId":{},"data":{}}},"sender":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"address":{},"zipCode":{},"city":{},"country":{},"email":{},"phone":{},"siret":{},"codeNaf":{},"customInputs":{"type":"object","properties":{}},"externalId":{},"archived":{"type":"boolean"},"isProfessional":{"type":"boolean"},"tenantId":{"type":"string"},"siteId":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"isMainRecord":{"type":"boolean"},"mainRecordId":{},"typeId":{},"tiersId":{},"territoryId":{},"data":{}}},"pdfUrl":{}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/invoices.createInvoice":{"post":{"operationId":"invoices_createInvoice","summary":"Create Invoice","tags":["invoices"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"number":{"type":"string"},"clientId":{"type":"string"},"total":{"type":"number"},"items":{"type":"array","items":{"type":"object","properties":{"description":{"type":"string"},"quantity":{"type":"number"},"unitPrice":{"type":"number"}},"required":["description","quantity","unitPrice"],"additionalProperties":false}}},"required":["number","clientId","total","items"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/invoices.updateInvoiceStatus":{"post":{"operationId":"invoices_updateInvoiceStatus","summary":"Update Invoice Status","tags":["invoices"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"status":{"type":"string"}},"required":["id","status"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/invoices.getCrossTenantOverview":{"get":{"operationId":"invoices_getCrossTenantOverview","summary":"Get Cross Tenant Overview","tags":["invoices"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/invoices.getCrossTenantPaymentStatus":{"get":{"operationId":"invoices_getCrossTenantPaymentStatus","summary":"Get Cross Tenant Payment Status","tags":["invoices"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/invoices.getDashboardMetrics":{"get":{"operationId":"invoices_getDashboardMetrics","summary":"Get Dashboard Metrics","tags":["invoices"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"monthly":{"type":"array","items":{"type":"object","properties":{"label":{"type":"string"},"facture":{"type":"integer"},"encaisse":{"type":"integer"}}}},"byStatus":{"type":"array","items":{}}}}}}}}}},"/api/trpc/invoices.getClientsForSelect":{"get":{"operationId":"invoices_getClientsForSelect","summary":"Get Clients For Select","tags":["invoices"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"email":{"type":"string"}}}}}}}}}},"/api/trpc/invoices.searchProducts":{"get":{"operationId":"invoices_searchProducts","summary":"Search Products","tags":["invoices"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"q":{"type":"string"}},"required":["q"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/invoices.createDraft":{"post":{"operationId":"invoices_createDraft","summary":"Create Draft","tags":["invoices"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"receiverId":{"type":"string"},"invoiceType":{"type":"string","enum":["INVOICE","QUOTE","PURCHASE_ORDER"]},"invoiceDate":{"type":"string"},"dueDate":{"type":"string"},"notes":{"type":"string"},"currency":{"type":"string"},"templateId":{"type":"integer","minimum":1,"maximum":5},"items":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"quantity":{"type":"number"},"unitPrice":{"type":"number"},"taxRate":{"default":20,"type":"number"},"productId":{"type":"string"},"productSku":{"type":"string"}},"required":["name","quantity","unitPrice","taxRate"],"additionalProperties":false}},"discount":{"type":"object","properties":{"type":{"type":"string","enum":["PERCENT","FIXED"]},"value":{"type":"number"}},"required":["type","value"],"additionalProperties":false}},"required":["receiverId","items"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/invoices.getIssuerProfile":{"get":{"operationId":"invoices_getIssuerProfile","summary":"Get Issuer Profile","tags":["invoices"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"scope":{"type":"object","properties":{"level":{"default":"site","type":"string","enum":["tenant","site","domain"]},"domainId":{"type":"string"}},"required":["level"],"additionalProperties":false}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/invoices.getEffectiveIssuerProfile":{"get":{"operationId":"invoices_getEffectiveIssuerProfile","summary":"Get Effective Issuer Profile","tags":["invoices"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/invoices.listIssuerScopes":{"get":{"operationId":"invoices_listIssuerScopes","summary":"List Issuer Scopes","tags":["invoices"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/invoices.saveIssuerProfile":{"post":{"operationId":"invoices_saveIssuerProfile","summary":"Save Issuer Profile","tags":["invoices"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"scope":{"type":"object","properties":{"level":{"default":"site","type":"string","enum":["tenant","site","domain"]},"domainId":{"type":"string"}},"required":["level"],"additionalProperties":false},"legalName":{"type":"string","minLength":1},"email":{"type":"string"},"phone":{"type":"string"},"siret":{"type":"string"},"siren":{"type":"string"},"vatNumber":{"type":"string"},"iban":{"type":"string"},"bic":{"type":"string"},"logoUrl":{"type":"string"},"currency":{"type":"string"},"editorLayout":{"type":"string","enum":["form","split","document","wizard","catalog"]},"pdfTemplate":{"type":"integer","minimum":1,"maximum":4},"invoicePrefix":{"type":"string"},"quotePrefix":{"type":"string"},"creditNotePrefix":{"type":"string"},"legalMentions":{"type":"string"},"address":{"type":"object","properties":{"street":{"type":"string"},"city":{"type":"string"},"postalCode":{"type":"string"},"country":{"type":"string"}},"additionalProperties":false}},"required":["legalName"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/invoices.deleteIssuerProfile":{"post":{"operationId":"invoices_deleteIssuerProfile","summary":"Delete Issuer Profile","tags":["invoices"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"scope":{"type":"object","properties":{"level":{"default":"site","type":"string","enum":["tenant","site","domain"]},"domainId":{"type":"string"}},"required":["level"],"additionalProperties":false}},"required":["scope"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/invoices.convertQuote":{"post":{"operationId":"invoices_convertQuote","summary":"Convert Quote","tags":["invoices"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/invoices.getPublicInvoice":{"get":{"operationId":"invoices_getPublicInvoice","summary":"Get Public Invoice","tags":["invoices"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"token":{"type":"string"}},"required":["token"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/invoices.createCreditNote":{"post":{"operationId":"invoices_createCreditNote","summary":"Create Credit Note","tags":["invoices"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/invoices.updateDraft":{"post":{"operationId":"invoices_updateDraft","summary":"Update Draft","tags":["invoices"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"receiverId":{"type":"string"},"invoiceType":{"type":"string","enum":["INVOICE","QUOTE","PURCHASE_ORDER"]},"invoiceDate":{"type":"string"},"dueDate":{"type":"string"},"notes":{"type":"string"},"currency":{"type":"string"},"templateId":{"type":"integer","minimum":1,"maximum":5},"items":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"quantity":{"type":"number"},"unitPrice":{"type":"number"},"taxRate":{"default":20,"type":"number"},"productId":{"type":"string"},"productSku":{"type":"string"}},"required":["name","quantity","unitPrice","taxRate"],"additionalProperties":false}},"discount":{"type":"object","properties":{"type":{"type":"string","enum":["PERCENT","FIXED"]},"value":{"type":"number"}},"required":["type","value"],"additionalProperties":false}},"required":["id","items"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/invoices.deleteInvoice":{"post":{"operationId":"invoices_deleteInvoice","summary":"Delete Invoice","tags":["invoices"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/invoices.getPaymentSettings":{"get":{"operationId":"invoices_getPaymentSettings","summary":"Get Payment Settings","tags":["invoices"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/invoices.createStripeConnectAccount":{"post":{"operationId":"invoices_createStripeConnectAccount","summary":"Create Stripe Connect Account","tags":["invoices"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"refreshUrl":{"type":"string","format":"uri"},"returnUrl":{"type":"string","format":"uri"}},"required":["refreshUrl","returnUrl"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/invoices.createStripeConnectLink":{"post":{"operationId":"invoices_createStripeConnectLink","summary":"Create Stripe Connect Link","tags":["invoices"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"refreshUrl":{"type":"string","format":"uri"},"returnUrl":{"type":"string","format":"uri"}},"required":["refreshUrl","returnUrl"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/invoices.disconnectStripe":{"post":{"operationId":"invoices_disconnectStripe","summary":"Disconnect Stripe","tags":["invoices"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/invoices.savePaymentKeys":{"post":{"operationId":"invoices_savePaymentKeys","summary":"Save Payment Keys","tags":["invoices"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"secretKey":{"type":"string"},"publishableKey":{"type":"string"},"enabled":{"type":"boolean"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.posts.getMany":{"get":{"operationId":"cms_posts_getMany","summary":"Posts.get Many","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"title":{"type":"string"},"slug":{"type":"string"},"content":{"type":"string"},"excerpt":{},"featuredImageUrl":{},"editMode":{},"builderData":{},"postStatus":{"type":"string"},"postVisibility":{"type":"string"},"password":{},"publishedAt":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"author":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"email":{"type":"string"},"avatarUrl":{"type":"string"}}},"postType":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"slug":{"type":"string"}}},"tags":{"type":"array","items":{}},"categories":{"type":"array","items":{}},"images":{"type":"array","items":{}},"productCategories":{"type":"array","items":{}},"categoryIds":{"type":"array","items":{}},"cmsCategoryIds":{"type":"array","items":{}},"cmsCategories":{"type":"array","items":{}},"architectProfiles":{"type":"array","items":{}},"commentCount":{"type":"integer"},"imageCount":{"type":"integer"},"firstImageUrl":{},"seoTitle":{},"seoDescription":{},"seoKeywords":{},"customFields":{},"metadata":{},"isProject":{"type":"boolean"},"isVisitable":{"type":"boolean"},"autoExcerpt":{"type":"boolean"},"bookableProjectId":{},"bookableProject":{},"surface":{},"regionId":{},"region":{},"projectTypes":{"type":"array","items":{}},"projectMaterials":{"type":"array","items":{}},"projectDistinctions":{"type":"array","items":{}},"vendorId":{},"vendor":{}}}},"pagination":{"type":"object","properties":{"page":{"type":"integer"},"perPage":{"type":"integer"},"total":{"type":"integer"},"totalPages":{"type":"integer"},"hasMore":{"type":"boolean"}}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"number"},"per_page":{"default":20,"type":"number"},"sort":{"type":"string"},"search":{"type":"string"},"post_status":{"type":"string"},"post_type":{"type":"string"},"post_type_slug":{"type":"string"},"exclude_post_type_slug":{"type":"string"},"author":{"type":"string"},"published_year":{"type":"string"},"includeArchived":{"default":false,"type":"boolean"},"advancedFilters":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"object","properties":{"value":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{"type":"null"}]},"operator":{"default":"equals","type":"string","enum":["equals","contains","gt","lt","gte","lte","in","notIn"]}},"required":["value","operator"],"additionalProperties":false}}},"required":["page","per_page","includeArchived"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.posts.getById":{"get":{"operationId":"cms_posts_getById","summary":"Posts.get By Id","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"title":{"type":"string"},"slug":{"type":"string"},"content":{"type":"string"},"excerpt":{},"featuredImageUrl":{},"editMode":{},"builderData":{},"postStatus":{"type":"string"},"postVisibility":{"type":"string"},"password":{},"publishedAt":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"author":{"type":"object","properties":{"id":{"type":"string"},"name":{},"email":{"type":"string"}}},"postType":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"slug":{"type":"string"}}},"tags":{"type":"array","items":{}},"categories":{"type":"array","items":{}},"images":{"type":"array","items":{}},"productCategories":{"type":"array","items":{}},"categoryIds":{"type":"array","items":{}},"cmsCategoryIds":{"type":"array","items":{}},"cmsCategories":{"type":"array","items":{}},"architectProfiles":{"type":"array","items":{}},"commentCount":{"type":"integer"},"imageCount":{"type":"integer"},"firstImageUrl":{},"seoTitle":{},"seoDescription":{},"seoKeywords":{},"customFields":{},"metadata":{},"isProject":{"type":"boolean"},"isVisitable":{"type":"boolean"},"autoExcerpt":{"type":"boolean"},"bookableProjectId":{},"bookableProject":{},"surface":{},"regionId":{},"region":{},"projectTypes":{"type":"array","items":{}},"projectMaterials":{"type":"array","items":{}},"projectDistinctions":{"type":"array","items":{}},"vendorId":{},"vendor":{}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"include":{"type":"object","properties":{"author":{"type":"boolean"},"tags":{"type":"boolean"},"taxonomies":{"type":"boolean"},"comments":{"type":"boolean"},"postType":{"type":"boolean"},"bookableProject":{"type":"boolean"}},"additionalProperties":false}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.posts.create":{"post":{"operationId":"cms_posts_create","summary":"Posts.create","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"post_title":{"type":"string","minLength":1},"post_content":{"default":"","type":"string"},"post_name":{"type":"string"},"post_status":{"default":"DRAFT","type":"string","enum":["DRAFT","PENDING_REVIEW","PUBLISHED","SCHEDULED","ARCHIVED"]},"post_type":{"default":"post","type":"string"},"post_date":{},"post_author":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"authorName":{"type":"string"},"infoPractical":{"type":"string"},"rubrique":{"type":"string"},"postTypeId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"tagIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"meta_title":{"type":"string"},"meta_description":{"type":"string"},"canonical_url":{"anyOf":[{"type":"string","format":"uri"},{"type":"string","const":""}]},"post_excerpt":{"type":"string"},"autoExcerpt":{"default":true,"type":"boolean"},"featured_image":{"type":"string"},"edit_mode":{"anyOf":[{"type":"string","enum":["classic","gutenberg","elementor"]},{"type":"null"}]},"builder_data":{"anyOf":[{},{"type":"null"}]},"isProject":{"default":false,"type":"boolean"},"isVisitable":{"default":false,"type":"boolean"},"bookableProjectId":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"string","const":""}]},"surface":{"anyOf":[{"type":"number"},{"type":"null"}]},"regionId":{"anyOf":[{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]},{"type":"string","const":""}]},"projectTypeIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"projectMaterialIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"projectDistinctionIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"architectProfileIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"productCategoryIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"categoryIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"cmsCategoryIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"vendorId":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]},"socialTitle":{"type":"string"},"socialDescription":{"type":"string"},"socialImage":{"type":"string"},"images":{"type":"array","items":{"type":"object","properties":{"imageUrl":{"type":"string","minLength":1},"altText":{"type":"string"},"caption":{"type":"string"},"credit":{"type":"string"},"order":{"default":0,"type":"number"},"isFeatured":{"default":false,"type":"boolean"}},"required":["imageUrl","order","isFeatured"],"additionalProperties":false}}},"required":["post_title","post_content","post_status","post_type","autoExcerpt","isProject","isVisitable"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.posts.update":{"post":{"operationId":"cms_posts_update","summary":"Posts.update","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"post_title":{"type":"string","minLength":1},"post_content":{"type":"string"},"post_name":{"type":"string"},"post_status":{"type":"string","enum":["DRAFT","PENDING_REVIEW","PUBLISHED","SCHEDULED","ARCHIVED"]},"post_type":{"type":"string"},"post_date":{},"postTypeId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"authorName":{"type":"string"},"infoPractical":{"type":"string"},"rubrique":{"type":"string"},"tagIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"meta_title":{"type":"string"},"meta_description":{"type":"string"},"canonical_url":{"anyOf":[{"type":"string","format":"uri"},{"type":"string","const":""}]},"post_excerpt":{"type":"string"},"autoExcerpt":{"type":"boolean"},"featured_image":{"type":"string"},"edit_mode":{"anyOf":[{"type":"string","enum":["classic","gutenberg","elementor"]},{"type":"null"}]},"builder_data":{"anyOf":[{},{"type":"null"}]},"isProject":{"type":"boolean"},"isVisitable":{"type":"boolean"},"bookableProjectId":{"anyOf":[{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]},{"type":"string","const":""}]},"surface":{"anyOf":[{"type":"number"},{"type":"null"}]},"regionId":{"anyOf":[{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]},{"type":"string","const":""}]},"projectTypeIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"projectMaterialIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"projectDistinctionIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"architectProfileIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"productCategoryIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"categoryIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"cmsCategoryIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"vendorId":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]},"socialTitle":{"type":"string"},"socialDescription":{"type":"string"},"socialImage":{"type":"string"},"images":{"type":"array","items":{"type":"object","properties":{"imageUrl":{"type":"string","minLength":1},"altText":{"type":"string"},"caption":{"type":"string"},"credit":{"type":"string"},"order":{"default":0,"type":"number"},"isFeatured":{"default":false,"type":"boolean"}},"required":["imageUrl","order","isFeatured"],"additionalProperties":false}},"brand":{"anyOf":[{"type":"string"},{"type":"null"}]},"designer":{"anyOf":[{"type":"string"},{"type":"null"}]},"material":{"anyOf":[{"type":"string"},{"type":"null"}]},"dimensions":{"anyOf":[{"type":"string"},{"type":"null"}]},"category":{"anyOf":[{"type":"string"},{"type":"null"}]},"price":{"anyOf":[{"type":"number"},{"type":"null"}]},"colors":{"type":"array","items":{"type":"string"}},"sizes":{"type":"array","items":{"type":"string"}}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.posts.delete":{"post":{"operationId":"cms_posts_delete","summary":"Posts.delete","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"soft":{"default":true,"type":"boolean"}},"required":["id","soft"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.posts.bulkOperation":{"post":{"operationId":"cms_posts_bulkOperation","summary":"Posts.bulk Operation","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"ids":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"operation":{"type":"string","enum":["publish","unpublish","archive","delete"]},"soft":{"default":true,"type":"boolean"}},"required":["ids","operation","soft"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.posts.getStats":{"get":{"operationId":"cms_posts_getStats","summary":"Posts.get Stats","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer"},"published":{"type":"integer"},"draft":{"type":"integer"},"archived":{"type":"integer"},"recent":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"post_title":{"type":"string"},"post_status":{"type":"string"},"createdAt":{"type":"string"},"author":{"type":"object","properties":{"name":{}}}}}}}}}}}}}},"/api/trpc/cms.posts.getRecentDrafts":{"get":{"operationId":"cms_posts_getRecentDrafts","summary":"Posts.get Recent Drafts","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/cms.posts.getDashboardActivity":{"get":{"operationId":"cms_posts_getDashboardActivity","summary":"Posts.get Dashboard Activity","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/cms.posts.getPublishingCalendar":{"get":{"operationId":"cms_posts_getPublishingCalendar","summary":"Posts.get Publishing Calendar","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/cms.posts.createQuickDraft":{"post":{"operationId":"cms_posts_createQuickDraft","summary":"Posts.create Quick Draft","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"title":{"type":"string","minLength":1},"content":{"default":"","type":"string"}},"required":["title","content"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.posts.getPostTypes":{"get":{"operationId":"cms_posts_getPostTypes","summary":"Posts.get Post Types","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{}},"pagination":{"type":"object","properties":{"page":{"type":"integer"},"per_page":{"type":"integer"},"total":{"type":"integer"},"total_pages":{"type":"integer"},"has_more":{"type":"boolean"}}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"number"},"per_page":{"default":20,"type":"number"},"sort":{"type":"string"},"search":{"type":"string"}},"required":["page","per_page"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.posts.checkSlugConflict":{"get":{"operationId":"cms_posts_checkSlugConflict","summary":"Posts.check Slug Conflict","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"slug":{"type":"string","minLength":1},"excludePostId":{"type":"string"}},"required":["slug"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.posts.createPostType":{"post":{"operationId":"cms_posts_createPostType","summary":"Posts.create Post Type","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"slug":{"type":"string","minLength":1}},"required":["name","slug"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.posts.updatePostType":{"post":{"operationId":"cms_posts_updatePostType","summary":"Posts.update Post Type","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"name":{"type":"string","minLength":1},"slug":{"type":"string","minLength":1}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.posts.deletePostType":{"post":{"operationId":"cms_posts_deletePostType","summary":"Posts.delete Post Type","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.posts.getPostTypeStats":{"get":{"operationId":"cms_posts_getPostTypeStats","summary":"Posts.get Post Type Stats","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer"},"used":{"type":"integer"},"unused":{"type":"integer"},"postTypes":{"type":"array","items":{}}}}}}}}}},"/api/trpc/cms.posts.inlineUpdate":{"post":{"operationId":"cms_posts_inlineUpdate","summary":"Posts.inline Update","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"field":{"type":"string","enum":["post_title","post_content","post_excerpt","post_status","featured_image","meta_title","meta_description"]},"value":{}},"required":["id","field","value"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.posts.getBySlug":{"get":{"operationId":"cms_posts_getBySlug","summary":"Posts.get By Slug","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"slug":{"type":"string"}},"required":["slug"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.posts.generatePreviewUrl":{"post":{"operationId":"cms_posts_generatePreviewUrl","summary":"Posts.generate Preview Url","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"postId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["postId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.productCategories.getMany":{"get":{"operationId":"cms_productCategories_getMany","summary":"Product Categories.get Many","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"slug":{"type":"string"},"description":{"type":"string"},"imageId":{},"order":{},"externalId":{"type":"string"},"data":{"type":"object","properties":{"prestashop_data":{"type":"object","properties":{"active":{"type":"string"},"date_add":{"type":"string"},"date_upd":{"type":"string"},"position":{"type":"string"},"id_parent":{"type":"string"},"meta_title":{"type":"string"},"id_category":{"type":"string"},"level_depth":{"type":"string"},"link_rewrite":{"type":"string"},"meta_keywords":{"type":"string"},"meta_description":{"type":"string"},"nb_products_recursive":{"type":"string"}}}}},"siteId":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"tenantId":{"type":"string"},"postCount":{"type":"integer"}}}},"pagination":{"type":"object","properties":{"page":{"type":"integer"},"per_page":{"type":"integer"},"total":{"type":"integer"},"total_pages":{"type":"integer"},"has_more":{"type":"boolean"}}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"number"},"per_page":{"default":20,"type":"number"},"sort":{"type":"string"},"search":{"type":"string"},"includePostCount":{"default":false,"type":"boolean"}},"required":["page","per_page","includePostCount"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.productCategories.getById":{"get":{"operationId":"cms_productCategories_getById","summary":"Product Categories.get By Id","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.productCategories.create":{"post":{"operationId":"cms_productCategories_create","summary":"Product Categories.create","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"slug":{"type":"string"},"description":{"type":"string"}},"required":["name"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.productCategories.update":{"post":{"operationId":"cms_productCategories_update","summary":"Product Categories.update","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"name":{"type":"string"},"slug":{"type":"string"},"description":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.productCategories.delete":{"post":{"operationId":"cms_productCategories_delete","summary":"Product Categories.delete","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.productCategories.getOptions":{"get":{"operationId":"cms_productCategories_getOptions","summary":"Product Categories.get Options","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"value":{"type":"string"},"label":{"type":"string"}}}}}}}}}},"/api/trpc/cms.categories.list":{"get":{"operationId":"cms_categories_list","summary":"Categories.list","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":100,"type":"number"}},"required":["limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.categories.getMany":{"get":{"operationId":"cms_categories_getMany","summary":"Categories.get Many","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"categories":{"type":"array","items":{}},"pagination":{"type":"object","properties":{"page":{"type":"integer"},"per_page":{"type":"integer"},"total":{"type":"integer"},"totalPages":{"type":"integer"}}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"number"},"per_page":{"default":20,"type":"number"},"sort":{"type":"string"},"search":{"type":"string"},"parentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"includeChildren":{"default":true,"type":"boolean"},"crossSite":{"default":false,"type":"boolean"},"advancedFilters":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"object","properties":{"value":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{"type":"null"}]},"operator":{"default":"equals","type":"string","enum":["equals","contains","gt","lt","gte","lte","in","notIn"]}},"required":["value","operator"],"additionalProperties":false}}},"required":["page","per_page","includeChildren","crossSite"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.categories.getById":{"get":{"operationId":"cms_categories_getById","summary":"Categories.get By Id","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"include":{"type":"object","properties":{"parent":{"type":"boolean"},"children":{"type":"boolean"},"createdBy":{"type":"boolean"},"tiersCategory":{"type":"boolean"}},"additionalProperties":false}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.categories.create":{"post":{"operationId":"cms_categories_create","summary":"Categories.create","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"slug":{"type":"string"},"label":{"type":"string"},"description":{"type":"string"},"color":{"type":"string"},"parentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["name"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.categories.update":{"post":{"operationId":"cms_categories_update","summary":"Categories.update","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"name":{"type":"string","minLength":1},"slug":{"anyOf":[{"type":"string"},{"type":"null"}]},"label":{"type":"string"},"description":{"type":"string"},"color":{"type":"string"},"parentId":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.categories.delete":{"post":{"operationId":"cms_categories_delete","summary":"Categories.delete","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"force":{"default":false,"type":"boolean"}},"required":["id","force"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.categories.restore":{"post":{"operationId":"cms_categories_restore","summary":"Categories.restore","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.categories.listDeleted":{"get":{"operationId":"cms_categories_listDeleted","summary":"Categories.list Deleted","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":100,"type":"integer","minimum":1,"maximum":200}},"required":["limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.categories.bulkOperation":{"post":{"operationId":"cms_categories_bulkOperation","summary":"Categories.bulk Operation","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"ids":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"operation":{"type":"string","enum":["delete"]}},"required":["ids","operation"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.categories.reorder":{"post":{"operationId":"cms_categories_reorder","summary":"Categories.reorder","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"sortOrder":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991}},"required":["id","sortOrder"],"additionalProperties":false}}},"required":["items"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.categories.getHierarchy":{"get":{"operationId":"cms_categories_getHierarchy","summary":"Categories.get Hierarchy","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"maxDepth":{"default":5,"type":"number"},"tenantWide":{"default":false,"type":"boolean"}},"required":["maxDepth","tenantWide"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.categories.getPublicHierarchy":{"get":{"operationId":"cms_categories_getPublicHierarchy","summary":"Categories.get Public Hierarchy","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"maxDepth":{"default":3,"type":"number"},"crossSite":{"default":false,"type":"boolean"}},"required":["maxDepth","crossSite"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.categories.getStats":{"get":{"operationId":"cms_categories_getStats","summary":"Categories.get Stats","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer"},"root":{"type":"integer"},"withChildren":{"type":"integer"},"leaf":{"type":"integer"},"recent":{"type":"array","items":{}}}}}}}}}},"/api/trpc/cms.tags.getMany":{"get":{"operationId":"cms_tags_getMany","summary":"Tags.get Many","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"tenantId":{"type":"string"},"userId":{"type":"string"},"updatedAt":{"type":"string"},"createdAt":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"data":{"type":"object","properties":{}},"type":{"type":"string"},"siteId":{},"_count":{"type":"object","properties":{"tiers":{"type":"integer"},"contact":{"type":"integer"},"post":{"type":"integer"},"event_details":{"type":"integer"},"products":{"type":"integer"}}}}}},"total":{"type":"integer"},"page":{"type":"integer"},"per_page":{"type":"integer"},"pages":{"type":"integer"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"number"},"per_page":{"default":20,"type":"number"},"sort":{"type":"string"},"search":{"type":"string"},"type":{"type":"string"},"advancedFilters":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"object","properties":{"value":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{"type":"null"}]},"operator":{"default":"equals","type":"string","enum":["equals","contains","gt","lt","gte","lte","in","notIn"]}},"required":["value","operator"],"additionalProperties":false}}},"required":["page","per_page"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.tags.getById":{"get":{"operationId":"cms_tags_getById","summary":"Tags.get By Id","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"include":{"type":"object","properties":{"createdBy":{"type":"boolean"},"tiers":{"type":"boolean"},"contact":{"type":"boolean"},"post":{"type":"boolean"},"event_details":{"type":"boolean"},"products":{"type":"boolean"}},"additionalProperties":false}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.tags.create":{"post":{"operationId":"cms_tags_create","summary":"Tags.create","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"label":{"type":"string"},"type":{"default":"&","type":"string"},"data":{}},"required":["name","type"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.tags.update":{"post":{"operationId":"cms_tags_update","summary":"Tags.update","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"name":{"type":"string","minLength":1},"label":{"type":"string"},"type":{"type":"string"},"data":{}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.tags.delete":{"post":{"operationId":"cms_tags_delete","summary":"Tags.delete","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.tags.bulkOperation":{"post":{"operationId":"cms_tags_bulkOperation","summary":"Tags.bulk Operation","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"ids":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"operation":{"type":"string","enum":["delete","merge"]},"mergeIntoId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["ids","operation"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.tags.getStats":{"get":{"operationId":"cms_tags_getStats","summary":"Tags.get Stats","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"totalTags":{"type":"integer"},"totalUsage":{"type":"integer"},"avgUsage":{"type":"integer"},"unusedTags":{"type":"integer"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"type":{"default":"&","type":"string"}},"required":["type"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.taxonomies.getMany":{"get":{"operationId":"cms_taxonomies_getMany","summary":"Taxonomies.get Many","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{}},"total":{"type":"integer"},"page":{"type":"integer"},"per_page":{"type":"integer"},"pages":{"type":"integer"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"number"},"per_page":{"default":20,"type":"number"},"sort":{"type":"string"},"search":{"type":"string"},"termGroup":{"type":"number"},"hasPost":{"type":"boolean"},"advancedFilters":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"object","properties":{"value":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{"type":"null"}]},"operator":{"default":"equals","type":"string","enum":["equals","contains","gt","lt","gte","lte","in","notIn"]}},"required":["value","operator"],"additionalProperties":false}}},"required":["page","per_page"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.taxonomies.getById":{"get":{"operationId":"cms_taxonomies_getById","summary":"Taxonomies.get By Id","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"include":{"type":"object","properties":{"createdBy":{"type":"boolean"},"post":{"type":"boolean"}},"additionalProperties":false}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.taxonomies.create":{"post":{"operationId":"cms_taxonomies_create","summary":"Taxonomies.create","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"slug":{"type":"string","minLength":1},"term_group":{"type":"integer","minimum":0,"maximum":9007199254740991},"postId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["name","slug","term_group"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.taxonomies.update":{"post":{"operationId":"cms_taxonomies_update","summary":"Taxonomies.update","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"name":{"type":"string","minLength":1},"slug":{"type":"string","minLength":1},"term_group":{"type":"integer","minimum":0,"maximum":9007199254740991},"postId":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.taxonomies.delete":{"post":{"operationId":"cms_taxonomies_delete","summary":"Taxonomies.delete","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.taxonomies.bulkOperation":{"post":{"operationId":"cms_taxonomies_bulkOperation","summary":"Taxonomies.bulk Operation","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"ids":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"operation":{"type":"string","enum":["delete","updateTermGroup"]},"termGroup":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["ids","operation"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.taxonomies.getTermGroups":{"get":{"operationId":"cms_taxonomies_getTermGroups","summary":"Taxonomies.get Term Groups","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"includeCount":{"default":true,"type":"boolean"}},"required":["includeCount"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.taxonomies.getStats":{"get":{"operationId":"cms_taxonomies_getStats","summary":"Taxonomies.get Stats","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"totalTaxonomies":{"type":"integer"},"taxonomiesWithPosts":{"type":"integer"},"taxonomiesWithoutPosts":{"type":"integer"},"totalTermGroups":{"type":"integer"},"termGroups":{"type":"array","items":{}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"termGroup":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.taxonomies.generateSlug":{"post":{"operationId":"cms_taxonomies_generateSlug","summary":"Taxonomies.generate Slug","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1}},"required":["name"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.media.getMany":{"get":{"operationId":"cms_media_getMany","summary":"Media.get Many","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"description":{},"path":{"type":"string"},"mime":{"type":"string"},"size":{"type":"integer"},"type":{},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"userId":{"type":"string"},"documentFolderId":{"type":"string"}}}},"total":{"type":"integer"},"page":{"type":"integer"},"per_page":{"type":"integer"},"pages":{"type":"integer"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"number"},"per_page":{"default":20,"type":"number"},"sort":{"type":"string"},"search":{"type":"string"},"type":{"type":"string","enum":["image","video","audio","document","archive","other"]},"folderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"mime":{"type":"string"},"minSize":{"type":"number"},"maxSize":{"type":"number"},"advancedFilters":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"object","properties":{"value":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{"type":"null"}]},"operator":{"default":"equals","type":"string","enum":["equals","contains","gt","lt","gte","lte","in","notIn"]}},"required":["value","operator"],"additionalProperties":false}}},"required":["page","per_page"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.media.getById":{"get":{"operationId":"cms_media_getById","summary":"Media.get By Id","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"include":{"type":"object","properties":{"folder":{"type":"boolean"},"relations":{"type":"boolean"}},"additionalProperties":false}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.media.upload":{"post":{"operationId":"cms_media_upload","summary":"Media.upload","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"path":{"type":"string","minLength":1},"mime":{"type":"string","minLength":1},"size":{"type":"number","minimum":0},"type":{"type":"string","enum":["image","video","audio","document","archive","other"]},"description":{"type":"string"},"folderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"metadata":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}}},"required":["name","path","mime","size"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.media.update":{"post":{"operationId":"cms_media_update","summary":"Media.update","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"name":{"type":"string","minLength":1},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"folderId":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]},"type":{"type":"string","enum":["image","video","audio","document","archive","other"]},"metadata":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.media.delete":{"post":{"operationId":"cms_media_delete","summary":"Media.delete","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.media.bulkOperation":{"post":{"operationId":"cms_media_bulkOperation","summary":"Media.bulk Operation","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"ids":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"operation":{"type":"string","enum":["delete","move","archive","unarchive"]},"folderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["ids","operation"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.media.createFolder":{"post":{"operationId":"cms_media_createFolder","summary":"Media.create Folder","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"parentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["name"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.media.updateFolder":{"post":{"operationId":"cms_media_updateFolder","summary":"Media.update Folder","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"name":{"type":"string","minLength":1},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"parentId":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.media.deleteFolder":{"post":{"operationId":"cms_media_deleteFolder","summary":"Media.delete Folder","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"force":{"default":false,"type":"boolean"}},"required":["id","force"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.media.getFolders":{"get":{"operationId":"cms_media_getFolders","summary":"Media.get Folders","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"description":{},"userId":{},"parentId":{},"externalId":{},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"tenantId":{"type":"string"},"siteId":{"type":"string"},"parent":{}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"includeCount":{"default":true,"type":"boolean"},"parentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"all":{"default":false,"type":"boolean"}},"required":["includeCount","all"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.media.getStats":{"get":{"operationId":"cms_media_getStats","summary":"Media.get Stats","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"totalFiles":{"type":"integer"},"totalSize":{"type":"integer"},"typeStats":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string"},"count":{"type":"integer"},"size":{"type":"integer"}}}},"recentFiles":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"type":{},"size":{"type":"integer"},"createdAt":{"type":"string"}}}},"folderStats":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"count":{"type":"integer"}}}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"type":{"type":"string","enum":["image","video","audio","document","archive","other"]},"folderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.media.optimizeForSocial":{"post":{"operationId":"cms_media_optimizeForSocial","summary":"Media.optimize For Social","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"documentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"platform":{"type":"string","enum":["facebook","instagram","twitter","linkedin","tiktok","youtube"]},"postType":{"type":"string"},"quality":{"type":"number","minimum":1,"maximum":100},"preserveAspectRatio":{"type":"boolean"},"backgroundColor":{"type":"string"}},"required":["documentId","platform","postType"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.media.generatePreviews":{"post":{"operationId":"cms_media_generatePreviews","summary":"Media.generate Previews","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"documentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["documentId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.media.getPlatformRecommendations":{"get":{"operationId":"cms_media_getPlatformRecommendations","summary":"Media.get Platform Recommendations","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"documentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["documentId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.media.bulkOptimize":{"post":{"operationId":"cms_media_bulkOptimize","summary":"Media.bulk Optimize","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"documentIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"platforms":{"type":"array","items":{"type":"object","properties":{"platform":{"type":"string","enum":["facebook","instagram","twitter","linkedin","tiktok","youtube"]},"postType":{"type":"string"},"quality":{"type":"number","minimum":1,"maximum":100}},"required":["platform","postType"],"additionalProperties":false}}},"required":["documentIds","platforms"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.media.getBulkOptimizationStatus":{"get":{"operationId":"cms_media_getBulkOptimizationStatus","summary":"Media.get Bulk Optimization Status","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"jobId":{"type":"string"}},"required":["jobId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.media.getSocialPlatformSpecs":{"get":{"operationId":"cms_media_getSocialPlatformSpecs","summary":"Media.get Social Platform Specs","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"facebook":{"type":"object","properties":{"image":{"type":"object","properties":{"post":{"type":"object","properties":{"width":{"type":"integer"},"height":{"type":"integer"},"ratio":{"type":"number"}}},"cover":{"type":"object","properties":{"width":{"type":"integer"},"height":{"type":"integer"},"ratio":{"type":"number"}}},"profile":{"type":"object","properties":{"width":{"type":"integer"},"height":{"type":"integer"},"ratio":{"type":"integer"}}},"story":{"type":"object","properties":{"width":{"type":"integer"},"height":{"type":"integer"},"ratio":{"type":"number"}}}}},"video":{"type":"object","properties":{"post":{"type":"object","properties":{"width":{"type":"integer"},"height":{"type":"integer"},"maxSize":{"type":"integer"},"maxDuration":{"type":"integer"}}},"story":{"type":"object","properties":{"width":{"type":"integer"},"height":{"type":"integer"},"maxSize":{"type":"integer"},"maxDuration":{"type":"integer"}}}}},"formats":{"type":"array","items":{"type":"string"}}}},"instagram":{"type":"object","properties":{"image":{"type":"object","properties":{"post":{"type":"object","properties":{"width":{"type":"integer"},"height":{"type":"integer"},"ratio":{"type":"integer"}}},"story":{"type":"object","properties":{"width":{"type":"integer"},"height":{"type":"integer"},"ratio":{"type":"number"}}},"reel":{"type":"object","properties":{"width":{"type":"integer"},"height":{"type":"integer"},"ratio":{"type":"number"}}}}},"video":{"type":"object","properties":{"post":{"type":"object","properties":{"width":{"type":"integer"},"height":{"type":"integer"},"maxSize":{"type":"integer"},"maxDuration":{"type":"integer"}}},"story":{"type":"object","properties":{"width":{"type":"integer"},"height":{"type":"integer"},"maxSize":{"type":"integer"},"maxDuration":{"type":"integer"}}},"reel":{"type":"object","properties":{"width":{"type":"integer"},"height":{"type":"integer"},"maxSize":{"type":"integer"},"maxDuration":{"type":"integer"}}}}},"formats":{"type":"array","items":{"type":"string"}}}},"twitter":{"type":"object","properties":{"image":{"type":"object","properties":{"post":{"type":"object","properties":{"width":{"type":"integer"},"height":{"type":"integer"},"ratio":{"type":"number"}}},"header":{"type":"object","properties":{"width":{"type":"integer"},"height":{"type":"integer"},"ratio":{"type":"integer"}}},"profile":{"type":"object","properties":{"width":{"type":"integer"},"height":{"type":"integer"},"ratio":{"type":"integer"}}}}},"video":{"type":"object","properties":{"post":{"type":"object","properties":{"width":{"type":"integer"},"height":{"type":"integer"},"maxSize":{"type":"integer"},"maxDuration":{"type":"integer"}}}}},"formats":{"type":"array","items":{"type":"string"}}}},"linkedin":{"type":"object","properties":{"image":{"type":"object","properties":{"post":{"type":"object","properties":{"width":{"type":"integer"},"height":{"type":"integer"},"ratio":{"type":"number"}}},"cover":{"type":"object","properties":{"width":{"type":"integer"},"height":{"type":"integer"},"ratio":{"type":"integer"}}},"profile":{"type":"object","properties":{"width":{"type":"integer"},"height":{"type":"integer"},"ratio":{"type":"integer"}}},"logo":{"type":"object","properties":{"width":{"type":"integer"},"height":{"type":"integer"},"ratio":{"type":"integer"}}}}},"video":{"type":"object","properties":{"post":{"type":"object","properties":{"width":{"type":"integer"},"height":{"type":"integer"},"maxSize":{"type":"integer"},"maxDuration":{"type":"integer"}}}}},"formats":{"type":"array","items":{"type":"string"}}}},"tiktok":{"type":"object","properties":{"video":{"type":"object","properties":{"post":{"type":"object","properties":{"width":{"type":"integer"},"height":{"type":"integer"},"maxSize":{"type":"integer"},"maxDuration":{"type":"integer"}}},"duet":{"type":"object","properties":{"width":{"type":"integer"},"height":{"type":"integer"},"maxSize":{"type":"integer"},"maxDuration":{"type":"integer"}}}}},"formats":{"type":"array","items":{"type":"string"}}}},"youtube":{"type":"object","properties":{"image":{"type":"object","properties":{"thumbnail":{"type":"object","properties":{"width":{"type":"integer"},"height":{"type":"integer"},"ratio":{"type":"number"}}}}},"video":{"type":"object","properties":{"standard":{"type":"object","properties":{"width":{"type":"integer"},"height":{"type":"integer"},"maxSize":{"type":"integer"},"maxDuration":{"type":"integer"}}},"shorts":{"type":"object","properties":{"width":{"type":"integer"},"height":{"type":"integer"},"maxSize":{"type":"integer"},"maxDuration":{"type":"integer"}}}}},"formats":{"type":"array","items":{"type":"string"}}}},"pinterest":{"type":"object","properties":{"image":{"type":"object","properties":{"pin":{"type":"object","properties":{"width":{"type":"integer"},"height":{"type":"integer"},"ratio":{"type":"number"}}},"profile":{"type":"object","properties":{"width":{"type":"integer"},"height":{"type":"integer"},"ratio":{"type":"integer"}}},"board":{"type":"object","properties":{"width":{"type":"integer"},"height":{"type":"integer"},"ratio":{"type":"number"}}}}},"formats":{"type":"array","items":{"type":"string"}}}}}}}}}}}},"/api/trpc/cms.mediaFocalPoint.get":{"get":{"operationId":"cms_mediaFocalPoint_get","summary":"Media Focal Point.get","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"documentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["documentId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.mediaFocalPoint.setFocalPoint":{"post":{"operationId":"cms_mediaFocalPoint_setFocalPoint","summary":"Media Focal Point.set Focal Point","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"documentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"focalX":{"type":"number","minimum":0,"maximum":1},"focalY":{"type":"number","minimum":0,"maximum":1}},"required":["documentId","focalX","focalY"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.mediaFocalPoint.getCropSettings":{"get":{"operationId":"cms_mediaFocalPoint_getCropSettings","summary":"Media Focal Point.get Crop Settings","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"documentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"format":{"type":"string","enum":["thumbnail","medium","medium_large","large","full"]}},"required":["documentId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.mediaFocalPoint.updateCropSettings":{"post":{"operationId":"cms_mediaFocalPoint_updateCropSettings","summary":"Media Focal Point.update Crop Settings","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"documentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"format":{"type":"string","enum":["thumbnail","medium","medium_large","large","full","custom"]},"cropConfig":{"type":"object","properties":{"x":{"type":"number","minimum":0,"maximum":1},"y":{"type":"number","minimum":0,"maximum":1},"width":{"type":"number","minimum":0,"maximum":1},"height":{"type":"number","minimum":0,"maximum":1},"focusPoint":{"type":"object","properties":{"x":{"type":"number","minimum":0,"maximum":1},"y":{"type":"number","minimum":0,"maximum":1}},"required":["x","y"],"additionalProperties":false},"mode":{"type":"string","enum":["focal","center","smart","custom"]},"aspectRatio":{"type":"number","exclusiveMinimum":0},"quality":{"type":"number","minimum":1,"maximum":100},"format":{"type":"string","enum":["jpg","png","webp","original"]},"generatedPath":{"type":"string"},"generatedAt":{"type":"string"}},"required":["x","y","width","height","mode"],"additionalProperties":false},"customFormatName":{"type":"string"}},"required":["documentId","format","cropConfig"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.mediaFocalPoint.generateCrop":{"post":{"operationId":"cms_mediaFocalPoint_generateCrop","summary":"Media Focal Point.generate Crop","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"documentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"format":{"type":"string","enum":["thumbnail","medium","medium_large","large","full"]},"regenerate":{"default":false,"type":"boolean"}},"required":["documentId","format","regenerate"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.mediaFocalPoint.previewCrop":{"get":{"operationId":"cms_mediaFocalPoint_previewCrop","summary":"Media Focal Point.preview Crop","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"documentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"format":{"type":"string","enum":["thumbnail","medium","medium_large","large","full"]},"cropConfig":{"type":"object","properties":{"x":{"type":"number","minimum":0,"maximum":1},"y":{"type":"number","minimum":0,"maximum":1},"width":{"type":"number","minimum":0,"maximum":1},"height":{"type":"number","minimum":0,"maximum":1},"focusPoint":{"type":"object","properties":{"x":{"type":"number","minimum":0,"maximum":1},"y":{"type":"number","minimum":0,"maximum":1}},"required":["x","y"],"additionalProperties":false},"mode":{"type":"string","enum":["focal","center","smart","custom"]},"aspectRatio":{"type":"number","exclusiveMinimum":0},"quality":{"type":"number","minimum":1,"maximum":100},"format":{"type":"string","enum":["jpg","png","webp","original"]},"generatedPath":{"type":"string"},"generatedAt":{"type":"string"}},"required":["x","y","width","height","mode"],"additionalProperties":false}},"required":["documentId","format"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.mediaFocalPoint.getAllCropSettings":{"get":{"operationId":"cms_mediaFocalPoint_getAllCropSettings","summary":"Media Focal Point.get All Crop Settings","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"documentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["documentId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.mediaFocalPoint.resetCrop":{"post":{"operationId":"cms_mediaFocalPoint_resetCrop","summary":"Media Focal Point.reset Crop","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"documentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"format":{"type":"string","enum":["thumbnail","medium","medium_large","large","full"]}},"required":["documentId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.mediaFocalPoint.batchSetFocalPoint":{"post":{"operationId":"cms_mediaFocalPoint_batchSetFocalPoint","summary":"Media Focal Point.batch Set Focal Point","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"documentIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"focalX":{"type":"number","minimum":0,"maximum":1},"focalY":{"type":"number","minimum":0,"maximum":1}},"required":["documentIds","focalX","focalY"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.mediaFocalPoint.batchGenerateCrops":{"post":{"operationId":"cms_mediaFocalPoint_batchGenerateCrops","summary":"Media Focal Point.batch Generate Crops","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"documentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"formats":{"type":"array","items":{"type":"string","enum":["thumbnail","medium","medium_large","large","full"]}},"regenerate":{"default":false,"type":"boolean"}},"required":["documentId","formats","regenerate"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.mediaFocalPoint.batchDetectFocalPoints":{"post":{"operationId":"cms_mediaFocalPoint_batchDetectFocalPoints","summary":"Media Focal Point.batch Detect Focal Points","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"documentIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}}},"required":["documentIds"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.mediaFocalPoint.migrateExistingImages":{"post":{"operationId":"cms_mediaFocalPoint_migrateExistingImages","summary":"Media Focal Point.migrate Existing Images","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":100,"type":"number","minimum":1,"maximum":1000},"useAIDetection":{"default":false,"type":"boolean"}},"required":["limit","useAIDetection"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.mediaFocalPoint.getCropTemplates":{"get":{"operationId":"cms_mediaFocalPoint_getCropTemplates","summary":"Media Focal Point.get Crop Templates","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"all":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"description":{"type":"string"},"category":{"type":"string"},"cropConfig":{"type":"object","properties":{"x":{"type":"integer"},"y":{"type":"integer"},"width":{"type":"integer"},"height":{"type":"integer"},"mode":{"type":"string"},"aspectRatio":{"type":"integer"}}}}}},"byCategory":{"type":"object","properties":{"social":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"description":{"type":"string"},"category":{"type":"string"},"cropConfig":{"type":"object","properties":{"x":{"type":"integer"},"y":{"type":"integer"},"width":{"type":"integer"},"height":{"type":"integer"},"mode":{"type":"string"},"aspectRatio":{"type":"integer"}}}}}},"print":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"description":{"type":"string"},"category":{"type":"string"},"cropConfig":{"type":"object","properties":{"x":{"type":"integer"},"y":{"type":"integer"},"width":{"type":"integer"},"height":{"type":"integer"},"mode":{"type":"string"},"aspectRatio":{"type":"number"}}}}}},"web":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"description":{"type":"string"},"category":{"type":"string"},"cropConfig":{"type":"object","properties":{"x":{"type":"integer"},"y":{"type":"integer"},"width":{"type":"integer"},"height":{"type":"integer"},"mode":{"type":"string"},"aspectRatio":{"type":"number"}}}}}}}}}}}}}}}},"/api/trpc/cms.mediaFocalPoint.applyCropTemplate":{"post":{"operationId":"cms_mediaFocalPoint_applyCropTemplate","summary":"Media Focal Point.apply Crop Template","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"documentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"format":{"type":"string","enum":["thumbnail","medium","medium_large","large","full"]},"templateId":{"type":"string"}},"required":["documentId","format","templateId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.projects.create":{"post":{"operationId":"cms_canvas_projects_create","summary":"Canvas.projects.create","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"title":{"type":"string","minLength":1},"usage":{"type":"string","enum":["SLIDER","PRESENTATION","PRINT","WEB_SECTION"]},"description":{"type":"string"}},"required":["title","usage"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.projects.get":{"get":{"operationId":"cms_canvas_projects_get","summary":"Canvas.projects.get","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.projects.list":{"get":{"operationId":"cms_canvas_projects_list","summary":"Canvas.projects.list","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{}},"total":{"type":"integer"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"usage":{"type":"string","enum":["SLIDER","PRESENTATION","PRINT","WEB_SECTION"]},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0},"search":{"type":"string"}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.projects.update":{"post":{"operationId":"cms_canvas_projects_update","summary":"Canvas.projects.update","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"title":{"type":"string","minLength":1},"description":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.projects.delete":{"post":{"operationId":"cms_canvas_projects_delete","summary":"Canvas.projects.delete","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.versions.createFromDraft":{"post":{"operationId":"cms_canvas_versions_createFromDraft","summary":"Canvas.versions.create From Draft","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"projectId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"name":{"type":"string","minLength":1},"documentJson":{"type":"string","minLength":1}},"required":["projectId","name","documentJson"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.versions.get":{"get":{"operationId":"cms_canvas_versions_get","summary":"Canvas.versions.get","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.versions.list":{"get":{"operationId":"cms_canvas_versions_list","summary":"Canvas.versions.list","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"projectId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0},"includeUnpublished":{"default":true,"type":"boolean"}},"required":["projectId","limit","offset","includeUnpublished"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.versions.publish":{"post":{"operationId":"cms_canvas_versions_publish","summary":"Canvas.versions.publish","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"versionId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["versionId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.versions.revertTo":{"post":{"operationId":"cms_canvas_versions_revertTo","summary":"Canvas.versions.revert To","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"versionId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["versionId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.versions.delete":{"post":{"operationId":"cms_canvas_versions_delete","summary":"Canvas.versions.delete","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.templates.create":{"post":{"operationId":"cms_canvas_templates_create","summary":"Canvas.templates.create","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"title":{"type":"string","minLength":1},"usage":{"type":"string","enum":["SLIDER","PRESENTATION","PRINT","WEB_SECTION"]},"documentJson":{"type":"string","minLength":1},"description":{"type":"string"},"isGlobal":{"default":false,"type":"boolean"}},"required":["title","usage","documentJson","isGlobal"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.templates.get":{"get":{"operationId":"cms_canvas_templates_get","summary":"Canvas.templates.get","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.templates.list":{"get":{"operationId":"cms_canvas_templates_list","summary":"Canvas.templates.list","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{}},"total":{"type":"integer"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"usage":{"type":"string","enum":["SLIDER","PRESENTATION","PRINT","WEB_SECTION"]},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0},"search":{"type":"string"},"includeGlobal":{"default":true,"type":"boolean"}},"required":["limit","offset","includeGlobal"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.templates.applyTemplate":{"post":{"operationId":"cms_canvas_templates_applyTemplate","summary":"Canvas.templates.apply Template","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.templates.update":{"post":{"operationId":"cms_canvas_templates_update","summary":"Canvas.templates.update","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"title":{"type":"string","minLength":1},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"documentJson":{"type":"string","minLength":1},"isGlobal":{"type":"boolean"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.templates.delete":{"post":{"operationId":"cms_canvas_templates_delete","summary":"Canvas.templates.delete","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.pages.create":{"post":{"operationId":"cms_canvas_pages_create","summary":"Canvas.pages.create","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"projectId":{"type":"string"},"versionId":{"type":"string"},"pageNumber":{"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991},"name":{"type":"string"},"documentJson":{}},"required":["projectId","pageNumber","documentJson"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.pages.getPages":{"get":{"operationId":"cms_canvas_pages_getPages","summary":"Canvas.pages.get Pages","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"projectId":{"type":"string"},"versionId":{"type":"string"}},"required":["projectId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.pages.getPage":{"get":{"operationId":"cms_canvas_pages_getPage","summary":"Canvas.pages.get Page","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.pages.update":{"post":{"operationId":"cms_canvas_pages_update","summary":"Canvas.pages.update","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"documentJson":{}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.pages.delete":{"post":{"operationId":"cms_canvas_pages_delete","summary":"Canvas.pages.delete","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.pages.reorder":{"post":{"operationId":"cms_canvas_pages_reorder","summary":"Canvas.pages.reorder","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"projectId":{"type":"string"},"versionId":{"type":"string"},"pageOrders":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"pageNumber":{"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991}},"required":["id","pageNumber"],"additionalProperties":false}}},"required":["projectId","pageOrders"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.pages.duplicate":{"post":{"operationId":"cms_canvas_pages_duplicate","summary":"Canvas.pages.duplicate","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.pages.generateThumbnail":{"post":{"operationId":"cms_canvas_pages_generateThumbnail","summary":"Canvas.pages.generate Thumbnail","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"pageId":{"type":"string"},"thumbnailUrl":{"type":"string"}},"required":["pageId","thumbnailUrl"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.components.create":{"post":{"operationId":"cms_canvas_components_create","summary":"Canvas.components.create","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"type":{"type":"string","enum":["BUTTON","CARD","HEADER","FOOTER","ICON","BADGE","AVATAR","FORM","NAVIGATION","CUSTOM"]},"description":{"type":"string"},"documentJson":{"type":"object","properties":{"elements":{"type":"array","items":{"$ref":"#/$defs/__schema0"}},"canvasState":{"type":"object","properties":{"elements":{"type":"array","items":{"$ref":"#/$defs/__schema0"}},"selectedElements":{"type":"array","items":{"type":"string"}},"canvasSize":{"type":"object","properties":{"width":{"type":"number","exclusiveMinimum":0},"height":{"type":"number","exclusiveMinimum":0}},"required":["width","height"],"additionalProperties":false},"backgroundColor":{"type":"string"},"backgroundImage":{"type":"string"},"zoom":{"type":"number","exclusiveMinimum":0},"pan":{"type":"object","properties":{"x":{"type":"number"},"y":{"type":"number"}},"required":["x","y"],"additionalProperties":false},"gridVisible":{"type":"boolean"},"snapToGrid":{"type":"boolean"},"gridSize":{"type":"number","exclusiveMinimum":0}},"required":["elements","selectedElements","canvasSize","backgroundColor","zoom","pan","gridVisible","snapToGrid","gridSize"],"additionalProperties":false},"preset":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"width":{"type":"number","exclusiveMinimum":0},"height":{"type":"number","exclusiveMinimum":0},"unit":{"type":"string","enum":["px","mm","in"]},"category":{"type":"string","enum":["web","print","social","video"]}},"required":["id","name","width","height","unit","category"],"additionalProperties":false}},"required":["elements","canvasState"],"additionalProperties":false},"tags":{"type":"array","items":{"type":"string"}},"isGlobal":{"type":"boolean"},"tenantId":{"type":"string"},"siteId":{"type":"string"}},"required":["name","type","documentJson","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.components.list":{"get":{"operationId":"cms_canvas_components_list","summary":"Canvas.components.list","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"type":{"type":"string","enum":["BUTTON","CARD","HEADER","FOOTER","ICON","BADGE","AVATAR","FORM","NAVIGATION","CUSTOM"]},"search":{"type":"string"},"tags":{"type":"array","items":{"type":"string"}},"isGlobal":{"type":"boolean"},"limit":{"type":"number","minimum":1,"maximum":100},"offset":{"type":"number","minimum":0},"tenantId":{"type":"string"},"siteId":{"type":"string"}},"required":["tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.components.getById":{"get":{"operationId":"cms_canvas_components_getById","summary":"Canvas.components.get By Id","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"tenantId":{"type":"string"},"siteId":{"type":"string"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.components.update":{"post":{"operationId":"cms_canvas_components_update","summary":"Canvas.components.update","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"name":{"type":"string","minLength":1},"description":{"type":"string"},"documentJson":{},"tags":{"type":"array","items":{"type":"string"}},"isGlobal":{"type":"boolean"},"tenantId":{"type":"string"},"siteId":{"type":"string"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.components.delete":{"post":{"operationId":"cms_canvas_components_delete","summary":"Canvas.components.delete","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"tenantId":{"type":"string"},"siteId":{"type":"string"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.components.duplicate":{"post":{"operationId":"cms_canvas_components_duplicate","summary":"Canvas.components.duplicate","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"tenantId":{"type":"string"},"siteId":{"type":"string"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.components.getUsage":{"get":{"operationId":"cms_canvas_components_getUsage","summary":"Canvas.components.get Usage","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"tenantId":{"type":"string"},"siteId":{"type":"string"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.componentInstances.create":{"post":{"operationId":"cms_canvas_componentInstances_create","summary":"Canvas.component Instances.create","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"componentId":{"type":"string"},"projectId":{"type":"string"},"pageId":{"type":"string"},"position":{"type":"object","properties":{"x":{"type":"number"},"y":{"type":"number"}},"required":["x","y"],"additionalProperties":false},"size":{"type":"object","properties":{"width":{"type":"number"},"height":{"type":"number"}},"required":["width","height"],"additionalProperties":false},"overrides":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}},"zIndex":{"type":"number"},"tenantId":{"type":"string"},"siteId":{"type":"string"}},"required":["componentId","projectId","position","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.componentInstances.getForProject":{"get":{"operationId":"cms_canvas_componentInstances_getForProject","summary":"Canvas.component Instances.get For Project","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"projectId":{"type":"string"},"pageId":{"type":"string"},"tenantId":{"type":"string"},"siteId":{"type":"string"}},"required":["projectId","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.componentInstances.getById":{"get":{"operationId":"cms_canvas_componentInstances_getById","summary":"Canvas.component Instances.get By Id","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"tenantId":{"type":"string"},"siteId":{"type":"string"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.componentInstances.update":{"post":{"operationId":"cms_canvas_componentInstances_update","summary":"Canvas.component Instances.update","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"position":{"type":"object","properties":{"x":{"type":"number"},"y":{"type":"number"}},"required":["x","y"],"additionalProperties":false},"size":{"type":"object","properties":{"width":{"type":"number"},"height":{"type":"number"}},"required":["width","height"],"additionalProperties":false},"overrides":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}},"isVisible":{"type":"boolean"},"zIndex":{"type":"number"},"tenantId":{"type":"string"},"siteId":{"type":"string"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.componentInstances.delete":{"post":{"operationId":"cms_canvas_componentInstances_delete","summary":"Canvas.component Instances.delete","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"tenantId":{"type":"string"},"siteId":{"type":"string"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.componentInstances.duplicate":{"post":{"operationId":"cms_canvas_componentInstances_duplicate","summary":"Canvas.component Instances.duplicate","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"offset":{"type":"object","properties":{"x":{"type":"number"},"y":{"type":"number"}},"required":["x","y"],"additionalProperties":false},"tenantId":{"type":"string"},"siteId":{"type":"string"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.componentInstances.resetOverrides":{"post":{"operationId":"cms_canvas_componentInstances_resetOverrides","summary":"Canvas.component Instances.reset Overrides","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"tenantId":{"type":"string"},"siteId":{"type":"string"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.componentInstances.updateOrder":{"post":{"operationId":"cms_canvas_componentInstances_updateOrder","summary":"Canvas.component Instances.update Order","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"instanceIds":{"type":"array","items":{"type":"string"}},"tenantId":{"type":"string"},"siteId":{"type":"string"}},"required":["instanceIds","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.componentInstances.getAllForProject":{"get":{"operationId":"cms_canvas_componentInstances_getAllForProject","summary":"Canvas.component Instances.get All For Project","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"projectId":{"type":"string"},"tenantId":{"type":"string"},"siteId":{"type":"string"}},"required":["projectId","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.brandKits.create":{"post":{"operationId":"cms_canvas_brandKits_create","summary":"Canvas.brand Kits.create","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"isDefault":{"type":"boolean"},"isGlobal":{"type":"boolean"}},"required":["name"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.brandKits.list":{"get":{"operationId":"cms_canvas_brandKits_list","summary":"Canvas.brand Kits.list","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"search":{"type":"string"},"isGlobal":{"type":"boolean"},"limit":{"type":"number","minimum":1,"maximum":100},"offset":{"type":"number","minimum":0}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.brandKits.getById":{"get":{"operationId":"cms_canvas_brandKits_getById","summary":"Canvas.brand Kits.get By Id","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.brandKits.update":{"post":{"operationId":"cms_canvas_brandKits_update","summary":"Canvas.brand Kits.update","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"name":{"type":"string","minLength":1},"description":{"type":"string"},"isDefault":{"type":"boolean"},"isGlobal":{"type":"boolean"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.brandKits.delete":{"post":{"operationId":"cms_canvas_brandKits_delete","summary":"Canvas.brand Kits.delete","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.brandKits.duplicate":{"post":{"operationId":"cms_canvas_brandKits_duplicate","summary":"Canvas.brand Kits.duplicate","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.brandKits.getDefault":{"get":{"operationId":"cms_canvas_brandKits_getDefault","summary":"Canvas.brand Kits.get Default","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.brandKits.setProjectBrandKit":{"post":{"operationId":"cms_canvas_brandKits_setProjectBrandKit","summary":"Canvas.brand Kits.set Project Brand Kit","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"projectId":{"type":"string"},"brandKitId":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["projectId","brandKitId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.brandAssets.create":{"post":{"operationId":"cms_canvas_brandAssets_create","summary":"Canvas.brand Assets.create","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"brandKitId":{"type":"string"},"name":{"type":"string","minLength":1},"type":{"type":"string","enum":["COLOR_PALETTE","FONT_FAMILY","LOGO","ICON_SET","PATTERN","BRAND_GUIDELINES"]},"data":{},"metadata":{},"isPrimary":{"type":"boolean"},"sortOrder":{"type":"number"}},"required":["brandKitId","name","type","data"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.brandAssets.getForBrandKit":{"get":{"operationId":"cms_canvas_brandAssets_getForBrandKit","summary":"Canvas.brand Assets.get For Brand Kit","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"brandKitId":{"type":"string"},"type":{"type":"string","enum":["COLOR_PALETTE","FONT_FAMILY","LOGO","ICON_SET","PATTERN","BRAND_GUIDELINES"]}},"required":["brandKitId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.brandAssets.getById":{"get":{"operationId":"cms_canvas_brandAssets_getById","summary":"Canvas.brand Assets.get By Id","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.brandAssets.update":{"post":{"operationId":"cms_canvas_brandAssets_update","summary":"Canvas.brand Assets.update","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"name":{"type":"string","minLength":1},"data":{},"metadata":{},"isPrimary":{"type":"boolean"},"sortOrder":{"type":"number"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.brandAssets.delete":{"post":{"operationId":"cms_canvas_brandAssets_delete","summary":"Canvas.brand Assets.delete","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.brandAssets.reorder":{"post":{"operationId":"cms_canvas_brandAssets_reorder","summary":"Canvas.brand Assets.reorder","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"brandKitId":{"type":"string"},"assetIds":{"type":"array","items":{"type":"string"}}},"required":["brandKitId","assetIds"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.brandAssets.getByType":{"get":{"operationId":"cms_canvas_brandAssets_getByType","summary":"Canvas.brand Assets.get By Type","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"brandKitId":{"type":"string"},"type":{"type":"string","enum":["COLOR_PALETTE","FONT_FAMILY","LOGO","ICON_SET","PATTERN","BRAND_GUIDELINES"]}},"required":["brandKitId","type"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.brandAssets.getPrimary":{"get":{"operationId":"cms_canvas_brandAssets_getPrimary","summary":"Canvas.brand Assets.get Primary","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"brandKitId":{"type":"string"},"type":{"type":"string","enum":["COLOR_PALETTE","FONT_FAMILY","LOGO","ICON_SET","PATTERN","BRAND_GUIDELINES"]}},"required":["brandKitId","type"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.ai.generate":{"post":{"operationId":"cms_canvas_ai_generate","summary":"Canvas.ai.generate","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"featureType":{"type":"string","enum":["TEXT_GENERATION","IMAGE_GENERATION","DESIGN_SUGGESTIONS","LAYOUT_OPTIMIZATION","COLOR_PALETTE_GENERATION","STYLE_ANALYSIS","CONTENT_ENHANCEMENT"]},"prompt":{"type":"string"},"input":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}},"projectId":{"type":"string"},"pageId":{"type":"string"},"elementId":{"type":"string"},"tenantId":{"type":"string"},"siteId":{"type":"string"}},"required":["featureType","prompt","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.ai.getSuggestions":{"get":{"operationId":"cms_canvas_ai_getSuggestions","summary":"Canvas.ai.get Suggestions","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"projectId":{"type":"string"},"applied":{"type":"boolean"},"tenantId":{"type":"string"},"siteId":{"type":"string"}},"required":["projectId","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.ai.analyzeDesign":{"post":{"operationId":"cms_canvas_ai_analyzeDesign","summary":"Canvas.ai.analyze Design","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"projectId":{"type":"string"},"pageId":{"type":"string"},"elementId":{"type":"string"},"canvasData":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}},"tenantId":{"type":"string"},"siteId":{"type":"string"}},"required":["projectId","canvasData","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.ai.applySuggestion":{"post":{"operationId":"cms_canvas_ai_applySuggestion","summary":"Canvas.ai.apply Suggestion","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"suggestionId":{"type":"string"},"tenantId":{"type":"string"},"siteId":{"type":"string"}},"required":["suggestionId","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.ai.getGenerations":{"get":{"operationId":"cms_canvas_ai_getGenerations","summary":"Canvas.ai.get Generations","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"projectId":{"type":"string"},"featureType":{"type":"string","enum":["TEXT_GENERATION","IMAGE_GENERATION","DESIGN_SUGGESTIONS","LAYOUT_OPTIMIZATION","COLOR_PALETTE_GENERATION","STYLE_ANALYSIS","CONTENT_ENHANCEMENT"]},"limit":{"type":"number","minimum":1,"maximum":100},"tenantId":{"type":"string"},"siteId":{"type":"string"}},"required":["tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.aiConfig.create":{"post":{"operationId":"cms_canvas_aiConfig_create","summary":"Canvas.ai Config.create","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"provider":{"type":"string","enum":["OPENAI","ANTHROPIC","GOOGLE","STABILITY_AI","MIDJOURNEY","CUSTOM"]},"apiKey":{"type":"string","minLength":1},"baseUrl":{"type":"string"},"model":{"type":"string"},"settings":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}},"tenantId":{"type":"string"},"siteId":{"type":"string"}},"required":["name","provider","apiKey","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.aiConfig.update":{"post":{"operationId":"cms_canvas_aiConfig_update","summary":"Canvas.ai Config.update","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"name":{"type":"string","minLength":1},"provider":{"type":"string","enum":["OPENAI","ANTHROPIC","GOOGLE","STABILITY_AI","MIDJOURNEY","CUSTOM"]},"apiKey":{"type":"string","minLength":1},"baseUrl":{"type":"string"},"model":{"type":"string"},"settings":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}},"isActive":{"type":"boolean"},"tenantId":{"type":"string"},"siteId":{"type":"string"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.aiConfig.getConfigurations":{"get":{"operationId":"cms_canvas_aiConfig_getConfigurations","summary":"Canvas.ai Config.get Configurations","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string"},"siteId":{"type":"string"}},"required":["tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.aiConfig.updateFeatureConfig":{"post":{"operationId":"cms_canvas_aiConfig_updateFeatureConfig","summary":"Canvas.ai Config.update Feature Config","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"aiConfigId":{"type":"string"},"featureType":{"type":"string","enum":["TEXT_GENERATION","IMAGE_GENERATION","DESIGN_SUGGESTIONS","LAYOUT_OPTIMIZATION","COLOR_PALETTE_GENERATION","STYLE_ANALYSIS","CONTENT_ENHANCEMENT"]},"isEnabled":{"type":"boolean"},"settings":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}},"promptTemplate":{"type":"string"},"rateLimit":{"type":"number"},"costLimit":{"type":"number"},"tenantId":{"type":"string"},"siteId":{"type":"string"}},"required":["aiConfigId","featureType","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.exports.requestExportPNG":{"post":{"operationId":"cms_canvas_exports_requestExportPNG","summary":"Canvas.exports.request Export PNG","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"projectId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"versionId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"canvasElement":{},"options":{"type":"object","properties":{"pixelRatio":{"default":2,"type":"number","minimum":1,"maximum":4},"quality":{"default":0.95,"type":"number","minimum":0.1,"maximum":1}},"required":["pixelRatio","quality"],"additionalProperties":false}},"required":["projectId","versionId","canvasElement"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.exports.requestExportPDF":{"post":{"operationId":"cms_canvas_exports_requestExportPDF","summary":"Canvas.exports.request Export PDF","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"projectId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"versionId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"pageIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"priority":{"default":"NORMAL","type":"string","enum":["LOW","NORMAL","HIGH","URGENT"]},"options":{"type":"object","properties":{"bleed":{"default":0,"type":"number","minimum":0},"cropMarks":{"default":false,"type":"boolean"},"colorProfile":{"type":"string"}},"required":["bleed","cropMarks"],"additionalProperties":false}},"required":["projectId","versionId","priority"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.exports.requestVideoExport":{"post":{"operationId":"cms_canvas_exports_requestVideoExport","summary":"Canvas.exports.request Video Export","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"projectId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"versionId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"pageIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"priority":{"default":"NORMAL","type":"string","enum":["LOW","NORMAL","HIGH","URGENT"]},"options":{"type":"object","properties":{"format":{"type":"string","enum":["mp4","webm"]},"duration":{"default":5,"type":"number","minimum":1,"maximum":300},"fps":{"default":30,"type":"number","minimum":1,"maximum":60},"width":{"default":1920,"type":"number","minimum":320,"maximum":4096},"height":{"default":1080,"type":"number","minimum":240,"maximum":4096},"quality":{"default":"high","type":"string","enum":["low","medium","high"]},"generateGif":{"default":false,"type":"boolean"},"gifDuration":{"type":"number","minimum":1,"maximum":30}},"required":["format","duration","fps","width","height","quality","generateGif","gifDuration"],"additionalProperties":false}},"required":["projectId","versionId","priority","options"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.exports.get":{"get":{"operationId":"cms_canvas_exports_get","summary":"Canvas.exports.get","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.exports.getQueueStats":{"get":{"operationId":"cms_canvas_exports_getQueueStats","summary":"Canvas.exports.get Queue Stats","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"pending":{"type":"integer"},"processing":{"type":"integer"},"completed":{"type":"integer"},"failed":{"type":"integer"},"averageProcessingTime":{"type":"integer"},"queueLength":{"type":"integer"}}}}}}}}},"/api/trpc/cms.canvas.exports.getUserExports":{"get":{"operationId":"cms_canvas_exports_getUserExports","summary":"Canvas.exports.get User Exports","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.exports.cancelExport":{"post":{"operationId":"cms_canvas_exports_cancelExport","summary":"Canvas.exports.cancel Export","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.exports.retryExport":{"post":{"operationId":"cms_canvas_exports_retryExport","summary":"Canvas.exports.retry Export","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvas.exports.list":{"get":{"operationId":"cms_canvas_exports_list","summary":"Canvas.exports.list","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"projectId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0}},"required":["projectId","limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvasAssets.requestUpload":{"post":{"operationId":"cms_canvasAssets_requestUpload","summary":"Canvas Assets.request Upload","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"projectId":{"type":"string"},"type":{"type":"string","enum":["IMAGE","ICON","FONT","AUDIO","VIDEO"]},"name":{"type":"string","minLength":1},"size":{"type":"number","exclusiveMinimum":0},"mimeType":{"type":"string"},"tags":{"type":"array","items":{"type":"string"}}},"required":["type","name","size","mimeType"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvasAssets.completeUpload":{"post":{"operationId":"cms_canvasAssets_completeUpload","summary":"Canvas Assets.complete Upload","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"assetId":{"type":"string"},"finalUrl":{"type":"string"}},"required":["assetId","finalUrl"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvasAssets.getAssets":{"get":{"operationId":"cms_canvasAssets_getAssets","summary":"Canvas Assets.get Assets","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{}},"total":{"type":"integer"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"type":{"type":"string","enum":["IMAGE","ICON","FONT","AUDIO","VIDEO"]},"projectId":{"type":"string"},"search":{"type":"string"},"tags":{"type":"array","items":{"type":"string"}},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvasAssets.getAsset":{"get":{"operationId":"cms_canvasAssets_getAsset","summary":"Canvas Assets.get Asset","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvasAssets.updateTags":{"post":{"operationId":"cms_canvasAssets_updateTags","summary":"Canvas Assets.update Tags","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"tags":{"type":"array","items":{"type":"string"}}},"required":["id","tags"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvasAssets.deleteAsset":{"post":{"operationId":"cms_canvasAssets_deleteAsset","summary":"Canvas Assets.delete Asset","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.canvasAssets.getSupportedTypes":{"get":{"operationId":"cms_canvasAssets_getSupportedTypes","summary":"Canvas Assets.get Supported Types","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"IMAGE":{"type":"object","properties":{"label":{"type":"string"},"mimeTypes":{"type":"array","items":{"type":"string"}},"maxSize":{"type":"integer"}}},"ICON":{"type":"object","properties":{"label":{"type":"string"},"mimeTypes":{"type":"array","items":{"type":"string"}},"maxSize":{"type":"integer"}}},"FONT":{"type":"object","properties":{"label":{"type":"string"},"mimeTypes":{"type":"array","items":{"type":"string"}},"maxSize":{"type":"integer"}}},"AUDIO":{"type":"object","properties":{"label":{"type":"string"},"mimeTypes":{"type":"array","items":{"type":"string"}},"maxSize":{"type":"integer"}}},"VIDEO":{"type":"object","properties":{"label":{"type":"string"},"mimeTypes":{"type":"array","items":{"type":"string"}},"maxSize":{"type":"integer"}}}}}}}}}}},"/api/trpc/cms.pages.list":{"get":{"operationId":"cms_pages_list","summary":"Pages.list","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":100,"type":"number"}},"required":["limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.pages.getMany":{"get":{"operationId":"cms_pages_getMany","summary":"Pages.get Many","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{}},"total":{"type":"integer"},"page":{"type":"integer"},"per_page":{"type":"integer"},"pages":{"type":"integer"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"number"},"per_page":{"default":20,"type":"number"},"sort":{"type":"string"},"search":{"type":"string"},"status":{"type":"string","enum":["draft","published","private","scheduled","trash"]},"template":{"type":"string"},"parentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"hasParent":{"type":"boolean"},"advancedFilters":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"object","properties":{"value":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{"type":"null"}]},"operator":{"default":"equals","type":"string","enum":["equals","contains","gt","lt","gte","lte","in","notIn"]}},"required":["value","operator"],"additionalProperties":false}}},"required":["page","per_page"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.pages.getById":{"get":{"operationId":"cms_pages_getById","summary":"Pages.get By Id","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"include":{"type":"object","properties":{"author":{"type":"boolean"},"parent":{"type":"boolean"},"children":{"type":"boolean"},"metadata":{"type":"boolean"}},"additionalProperties":false}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.pages.create":{"post":{"operationId":"cms_pages_create","summary":"Pages.create","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"post_title":{"type":"string","minLength":1},"post_name":{"type":"string","minLength":1},"post_content":{"default":"","type":"string"},"post_excerpt":{"anyOf":[{"type":"string"},{"type":"null"}]},"post_status":{"default":"draft","type":"string","enum":["draft","published","private","scheduled"]},"post_date":{},"parentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"template":{"default":"default","type":"string"},"metadata":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}},"menuOrder":{"default":0,"type":"number"},"meta_title":{"anyOf":[{"type":"string"},{"type":"null"}]},"meta_description":{"anyOf":[{"type":"string"},{"type":"null"}]},"featured_image":{"anyOf":[{"type":"string"},{"type":"null"}]},"edit_mode":{"anyOf":[{"type":"string","enum":["classic","gutenberg","elementor"]},{"type":"null"}]},"builder_data":{"anyOf":[{},{"type":"null"}]}},"required":["post_title","post_name","post_content","post_status","template","menuOrder"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.pages.update":{"post":{"operationId":"cms_pages_update","summary":"Pages.update","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"post_title":{"type":"string","minLength":1},"post_name":{"type":"string","minLength":1},"post_content":{"type":"string"},"post_excerpt":{"anyOf":[{"type":"string"},{"type":"null"}]},"post_status":{"type":"string","enum":["draft","published","private","scheduled","trash"]},"post_date":{},"parentId":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]},"template":{"type":"string"},"metadata":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}},"menuOrder":{"type":"number"},"meta_title":{"anyOf":[{"type":"string"},{"type":"null"}]},"meta_description":{"anyOf":[{"type":"string"},{"type":"null"}]},"featured_image":{"anyOf":[{"type":"string"},{"type":"null"}]},"edit_mode":{"anyOf":[{"type":"string","enum":["classic","gutenberg","elementor"]},{"type":"null"}]},"builder_data":{"anyOf":[{},{"type":"null"}]}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.pages.delete":{"post":{"operationId":"cms_pages_delete","summary":"Pages.delete","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"force":{"default":false,"type":"boolean"}},"required":["id","force"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.pages.bulkOperation":{"post":{"operationId":"cms_pages_bulkOperation","summary":"Pages.bulk Operation","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"ids":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"operation":{"type":"string","enum":["delete","publish","draft","private","trash","restore"]},"force":{"default":false,"type":"boolean"}},"required":["ids","operation","force"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.pages.getHierarchy":{"get":{"operationId":"cms_pages_getHierarchy","summary":"Pages.get Hierarchy","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"includeMetadata":{"default":false,"type":"boolean"},"status":{"type":"string","enum":["draft","published","private","scheduled","trash"]}},"required":["includeMetadata"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.pages.getTemplates":{"get":{"operationId":"cms_pages_getTemplates","summary":"Pages.get Templates","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"key":{"type":"string"},"value":{"type":"string"},"name":{"type":"string"}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"includeUsageCount":{"default":true,"type":"boolean"}},"required":["includeUsageCount"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.pages.duplicate":{"post":{"operationId":"cms_pages_duplicate","summary":"Pages.duplicate","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"newTitle":{"type":"string"},"newSlug":{"type":"string"},"copyChildren":{"default":false,"type":"boolean"}},"required":["id","copyChildren"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.pages.generateSlug":{"post":{"operationId":"cms_pages_generateSlug","summary":"Pages.generate Slug","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"title":{"type":"string","minLength":1}},"required":["title"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.pages.getStats":{"get":{"operationId":"cms_pages_getStats","summary":"Pages.get Stats","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"totalPages":{"type":"integer"},"statusStats":{"type":"array","items":{}},"recentPages":{"type":"array","items":{}}}}}}}}}},"/api/trpc/cms.pages.saveShopCmsPage":{"post":{"operationId":"cms_pages_saveShopCmsPage","summary":"Pages.save Shop Cms Page","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"pageData":{"type":"object","properties":{"id":{"type":"string"},"title":{"type":"string"},"elements":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"type":{"type":"string"},"content":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}},"styles":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}},"position":{"type":"object","properties":{"x":{"type":"number"},"y":{"type":"number"}},"required":["x","y"],"additionalProperties":false},"size":{"type":"object","properties":{"width":{"type":"number"},"height":{"type":"number"}},"required":["width","height"],"additionalProperties":false}},"required":["id","type"],"additionalProperties":false}},"metadata":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}}},"required":["id","title","elements"],"additionalProperties":false}},"required":["pageData"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.pages.loadShopCmsPage":{"get":{"operationId":"cms_pages_loadShopCmsPage","summary":"Pages.load Shop Cms Page","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"pageId":{"type":"string"}},"required":["pageId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.comments.getMany":{"get":{"operationId":"cms_comments_getMany","summary":"Comments.get Many","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"status":{"type":"string","enum":["pending","approved","spam","trash","all"]},"contentType":{"type":"string","enum":["post","contact","tiers","event","document","all"]},"authorId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"search":{"type":"string"},"dateFrom":{},"dateTo":{},"page":{"default":1,"type":"number","minimum":1},"limit":{"default":10,"type":"number","minimum":1,"maximum":100}},"required":["tenantId","siteId","page","limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.comments.getById":{"get":{"operationId":"cms_comments_getById","summary":"Comments.get By Id","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.comments.create":{"post":{"operationId":"cms_comments_create","summary":"Comments.create","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"content":{"type":"string","minLength":1,"maxLength":5000},"type":{"type":"string"},"postId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"contactId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"tiersId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"eventId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"documentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["content","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.comments.update":{"post":{"operationId":"cms_comments_update","summary":"Comments.update","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"content":{"type":"string","minLength":1,"maxLength":5000},"type":{"type":"string"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.comments.delete":{"post":{"operationId":"cms_comments_delete","summary":"Comments.delete","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.comments.approve":{"post":{"operationId":"cms_comments_approve","summary":"Comments.approve","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.comments.reject":{"post":{"operationId":"cms_comments_reject","summary":"Comments.reject","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.comments.markSpam":{"post":{"operationId":"cms_comments_markSpam","summary":"Comments.mark Spam","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.comments.bulkOperation":{"post":{"operationId":"cms_comments_bulkOperation","summary":"Comments.bulk Operation","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"ids":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"action":{"type":"string","enum":["approve","reject","markSpam","restore","delete"]},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["ids","action","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.comments.getStats":{"get":{"operationId":"cms_comments_getStats","summary":"Comments.get Stats","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.analytics.getStats":{"get":{"operationId":"cms_analytics_getStats","summary":"Analytics.get Stats","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"media":{"type":"object","properties":{"total":{"type":"integer"},"used":{"type":"integer"},"unused":{"type":"integer"},"usageRate":{"type":"integer"}}},"publications":{"type":"object","properties":{"total":{"type":"integer"},"published":{"type":"integer"},"drafts":{"type":"integer"},"scheduled":{"type":"integer"}}},"seo":{"type":"object","properties":{"score":{"type":"integer"},"status":{"type":"string"},"optimizedArticles":{"type":"integer"},"totalArticles":{"type":"integer"}}},"contentFreshness":{"type":"object","properties":{"score":{"type":"integer"},"status":{"type":"string"},"recentPublications":{"type":"integer"},"outdatedContent":{"type":"integer"}}},"engagement":{"type":"object","properties":{"score":{"type":"integer"},"status":{"type":"string"},"totalViews":{"type":"integer"},"totalInteractions":{"type":"integer"},"avgEngagementRate":{"type":"integer"}}},"performance":{"type":"object","properties":{"loadTime":{"type":"number"},"status":{"type":"string"},"uptime":{"type":"number"}}}}}}}}}}},"/api/trpc/cms.analytics.getOverview":{"get":{"operationId":"cms_analytics_getOverview","summary":"Analytics.get Overview","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"dateFrom":{"default":"2026-06-04T08:32:13.760Z"},"dateTo":{"default":"2026-07-04T08:32:13.760Z"},"contentType":{"default":"all","type":"string","enum":["all","post","page","media"]},"period":{"default":"day","type":"string","enum":["day","week","month","year"]}},"required":["tenantId","siteId","dateFrom","dateTo","contentType","period"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.analytics.getContentPerformance":{"get":{"operationId":"cms_analytics_getContentPerformance","summary":"Analytics.get Content Performance","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"dateFrom":{},"dateTo":{},"limit":{"default":10,"type":"number","minimum":1,"maximum":100},"sortBy":{"default":"views","type":"string","enum":["views","engagement","recent","popular"]}},"required":["tenantId","siteId","limit","sortBy"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.analytics.getTrafficSources":{"get":{"operationId":"cms_analytics_getTrafficSources","summary":"Analytics.get Traffic Sources","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"dateFrom":{"default":"2026-06-04T08:32:13.760Z"},"dateTo":{"default":"2026-07-04T08:32:13.760Z"}},"required":["tenantId","siteId","dateFrom","dateTo"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.analytics.getPopularContent":{"get":{"operationId":"cms_analytics_getPopularContent","summary":"Analytics.get Popular Content","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"period":{"default":"month","type":"string","enum":["day","week","month"]},"limit":{"default":10,"type":"number","minimum":1,"maximum":20}},"required":["tenantId","siteId","period","limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.analytics.getTrends":{"get":{"operationId":"cms_analytics_getTrends","summary":"Analytics.get Trends","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"dateFrom":{"default":"2026-06-04T08:32:13.761Z"},"dateTo":{"default":"2026-07-04T08:32:13.761Z"},"contentType":{"default":"all","type":"string","enum":["all","post","page","media"]},"period":{"default":"day","type":"string","enum":["day","week","month","year"]}},"required":["tenantId","siteId","dateFrom","dateTo","contentType","period"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.analytics.exportData":{"post":{"operationId":"cms_analytics_exportData","summary":"Analytics.export Data","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"dateFrom":{},"dateTo":{},"format":{"default":"csv","type":"string","enum":["csv","json","xlsx"]},"includeTraffic":{"default":true,"type":"boolean"},"includeContent":{"default":true,"type":"boolean"},"includeEngagement":{"default":true,"type":"boolean"}},"required":["tenantId","siteId","dateFrom","dateTo","format","includeTraffic","includeContent","includeEngagement"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.calendar.getCalendarData":{"get":{"operationId":"cms_calendar_getCalendarData","summary":"Calendar.get Calendar Data","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"view":{"default":"month","type":"string","enum":["month","week","day"]},"date":{"default":"2026-07-04T08:32:13.761Z"},"contentType":{"default":"all","type":"string","enum":["all","post","page"]},"status":{"default":"all","type":"string","enum":["all","draft","published","scheduled","private"]}},"required":["tenantId","siteId","view","date","contentType","status"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.calendar.schedulePost":{"post":{"operationId":"cms_calendar_schedulePost","summary":"Calendar.schedule Post","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"postId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"scheduledDate":{},"publishImmediately":{"default":false,"type":"boolean"},"recurringType":{"default":"none","type":"string","enum":["none","daily","weekly","monthly"]},"recurringEndDate":{},"recurringCount":{"type":"number","minimum":1,"maximum":52},"notifyAuthor":{"default":true,"type":"boolean"}},"required":["tenantId","siteId","postId","scheduledDate","publishImmediately","recurringType","notifyAuthor"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.calendar.updateSchedule":{"post":{"operationId":"cms_calendar_updateSchedule","summary":"Calendar.update Schedule","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"postId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"newScheduledDate":{},"updateRecurring":{"default":false,"type":"boolean"}},"required":["tenantId","siteId","postId","newScheduledDate","updateRecurring"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.calendar.bulkSchedule":{"post":{"operationId":"cms_calendar_bulkSchedule","summary":"Calendar.bulk Schedule","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"posts":{"type":"array","items":{"type":"object","properties":{"postId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"scheduledDate":{}},"required":["postId","scheduledDate"],"additionalProperties":false}},"publishImmediately":{"default":false,"type":"boolean"}},"required":["tenantId","siteId","posts","publishImmediately"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.calendar.getEditorialCalendar":{"get":{"operationId":"cms_calendar_getEditorialCalendar","summary":"Calendar.get Editorial Calendar","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"dateFrom":{},"dateTo":{},"includeStats":{"default":true,"type":"boolean"}},"required":["tenantId","siteId","dateFrom","dateTo","includeStats"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.calendar.deleteScheduledPost":{"post":{"operationId":"cms_calendar_deleteScheduledPost","summary":"Calendar.delete Scheduled Post","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"postId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"deleteRecurring":{"default":false,"type":"boolean"}},"required":["tenantId","siteId","postId","deleteRecurring"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.settings.getSettings":{"get":{"operationId":"cms_settings_getSettings","summary":"Settings.get Settings","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"site_title":{"type":"string"},"tagline":{"type":"string"},"site_url":{"type":"string"},"admin_email":{"type":"string"},"language":{"type":"string"},"timezone":{"type":"string"},"date_format":{"type":"string"},"time_format":{"type":"string"},"week_starts_on":{"type":"string"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"category":{"type":"string","enum":["general","writing","reading","discussion","media","permalinks","feed"]}},"required":["category"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.settings.updateSettings":{"post":{"operationId":"cms_settings_updateSettings","summary":"Settings.update Settings","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"category":{"type":"string","enum":["general","writing","reading","discussion","media","permalinks","feed"]},"settings":{"type":"object","properties":{"site_title":{"type":"string"},"tagline":{"type":"string"},"site_url":{"type":"string","format":"uri"},"admin_email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"language":{"type":"string"},"timezone":{"type":"string"},"date_format":{"type":"string"},"time_format":{"type":"string"},"week_starts_on":{"type":"string","enum":["0","1","2","3","4","5","6"]},"default_post_category":{"type":"string"},"default_post_format":{"type":"string","enum":["standard","aside","gallery","link","image","quote","status","video","audio","chat"]},"default_post_status":{"type":"string","enum":["publish","pending","draft","private"]},"default_ping_status":{"type":"string","enum":["open","closed"]},"default_comment_status":{"type":"string","enum":["open","closed"]},"auto_save_interval":{"type":"number","minimum":1,"maximum":300},"revision_limit":{"type":"number","minimum":0,"maximum":100},"image_default_link_type":{"type":"string","enum":["none","file","page","custom"]},"image_default_size":{"type":"string","enum":["thumbnail","medium","large","full"]},"enable_emojis":{"type":"boolean"},"homepage_display":{"type":"string","enum":["posts","page"]},"homepage_page_id":{"type":"string"},"posts_page_id":{"type":"string"},"posts_per_page":{"type":"number","minimum":1,"maximum":100},"posts_per_rss":{"type":"number","minimum":1,"maximum":100},"rss_use_excerpt":{"type":"boolean"},"search_engine_visibility":{"type":"boolean"},"show_excerpts":{"type":"boolean"},"excerpt_length":{"type":"number","minimum":1,"maximum":1000},"show_avatars":{"type":"boolean"},"comment_registration":{"type":"boolean"},"close_comments_for_old_posts":{"type":"boolean"},"close_comments_days_old":{"type":"number","minimum":1,"maximum":365},"thread_comments":{"type":"boolean"},"thread_comments_depth":{"type":"number","minimum":2,"maximum":10},"page_comments":{"type":"boolean"},"comments_per_page":{"type":"number","minimum":1,"maximum":100},"default_comments_page":{"type":"string","enum":["newest","oldest"]},"comment_order":{"type":"string","enum":["asc","desc"]},"comments_notify":{"type":"boolean"},"moderation_notify":{"type":"boolean"},"comment_moderation":{"type":"boolean"},"comment_whitelist":{"type":"boolean"},"comment_max_links":{"type":"number","minimum":0,"maximum":50},"moderation_keys":{"type":"string"},"blacklist_keys":{"type":"string"},"show_comments_cookies_opt_in":{"type":"boolean"},"avatar_rating":{"type":"string","enum":["G","PG","R","X"]},"avatar_default":{"type":"string","enum":["mystery","blank","gravatar_default","identicon","wavatar","monsterid","retro","robohash"]},"thumbnail_size_w":{"type":"number","minimum":1,"maximum":2000},"thumbnail_size_h":{"type":"number","minimum":1,"maximum":2000},"thumbnail_crop":{"type":"boolean"},"medium_size_w":{"type":"number","minimum":1,"maximum":2000},"medium_size_h":{"type":"number","minimum":1,"maximum":2000},"medium_large_size_w":{"type":"number","minimum":1,"maximum":2000},"medium_large_size_h":{"type":"number","minimum":1,"maximum":2000},"large_size_w":{"type":"number","minimum":1,"maximum":2000},"large_size_h":{"type":"number","minimum":1,"maximum":2000},"uploads_use_yearmonth_folders":{"type":"boolean"},"upload_max_filesize":{"type":"number","minimum":1,"maximum":100},"allowed_file_types":{"type":"string"},"image_default_align":{"type":"string","enum":["left","center","right","none"]},"enable_image_optimization":{"type":"boolean"},"image_quality":{"type":"number","minimum":1,"maximum":100},"enable_webp_conversion":{"type":"boolean"},"enable_lazy_loading":{"type":"boolean"},"permalink_structure":{"type":"string","enum":["plain","day_and_name","month_and_name","numeric","post_name","custom"]},"category_base":{"type":"string"},"tag_base":{"type":"string"},"author_base":{"type":"string"},"search_base":{"type":"string"},"page_base":{"type":"string"},"attachment_base":{"type":"string"},"custom_structure":{"type":"string"},"use_trailing_slash":{"type":"boolean"},"redirect_old_urls":{"type":"boolean"},"canonical_urls":{"type":"boolean"},"enabled":{"type":"boolean"},"defaultFormat":{"type":"string","enum":["rss","atom","json"]},"itemsCount":{"type":"number","minimum":5,"maximum":100},"cacheDurationMinutes":{"type":"number","minimum":5,"maximum":1440},"includeFullContent":{"type":"boolean"},"excerptMaxLength":{"type":"number","minimum":100,"maximum":1000},"excerptStripHtml":{"type":"boolean"},"authEnabled":{"type":"boolean"},"fullContentRequiresAuth":{"type":"boolean"},"allowedOrigins":{"type":"string"},"includeFeaturedImage":{"type":"boolean"},"includeCategories":{"type":"boolean"},"includeTags":{"type":"boolean"},"includeAuthor":{"type":"boolean"},"customTitle":{"type":"string"},"customDescription":{"type":"string"},"customCopyright":{"type":"string"}},"additionalProperties":false}},"required":["category","settings"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.settings.getAllSettings":{"get":{"operationId":"cms_settings_getAllSettings","summary":"Settings.get All Settings","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"general":{"type":"object","properties":{"site_title":{"type":"string"},"tagline":{"type":"string"},"site_url":{"type":"string"},"admin_email":{"type":"string"},"language":{"type":"string"},"timezone":{"type":"string"},"date_format":{"type":"string"},"time_format":{"type":"string"},"week_starts_on":{"type":"string"}}},"writing":{"type":"object","properties":{"default_post_category":{"type":"string"},"default_post_format":{"type":"string"},"default_post_status":{"type":"string"},"default_ping_status":{"type":"string"},"default_comment_status":{"type":"string"},"auto_save_interval":{"type":"integer"},"revision_limit":{"type":"integer"},"image_default_link_type":{"type":"string"},"image_default_size":{"type":"string"},"enable_emojis":{"type":"boolean"}}},"reading":{"type":"object","properties":{"homepage_display":{"type":"string"},"homepage_page_id":{"type":"string"},"posts_page_id":{"type":"string"},"posts_per_page":{"type":"integer"},"posts_per_rss":{"type":"integer"},"rss_use_excerpt":{"type":"boolean"},"search_engine_visibility":{"type":"boolean"},"show_excerpts":{"type":"boolean"},"excerpt_length":{"type":"integer"},"show_avatars":{"type":"boolean"}}},"discussion":{"type":"object","properties":{"default_comment_status":{"type":"string"},"default_ping_status":{"type":"string"},"comment_registration":{"type":"boolean"},"close_comments_for_old_posts":{"type":"boolean"},"close_comments_days_old":{"type":"integer"},"thread_comments":{"type":"boolean"},"thread_comments_depth":{"type":"integer"},"page_comments":{"type":"boolean"},"comments_per_page":{"type":"integer"},"default_comments_page":{"type":"string"},"comment_order":{"type":"string"},"comments_notify":{"type":"boolean"},"moderation_notify":{"type":"boolean"},"comment_moderation":{"type":"boolean"},"comment_whitelist":{"type":"boolean"},"comment_max_links":{"type":"integer"},"moderation_keys":{"type":"string"},"blacklist_keys":{"type":"string"},"show_comments_cookies_opt_in":{"type":"boolean"},"show_avatars":{"type":"boolean"},"avatar_rating":{"type":"string"},"avatar_default":{"type":"string"}}},"media":{"type":"object","properties":{"thumbnail_size_w":{"type":"integer"},"thumbnail_size_h":{"type":"integer"},"thumbnail_crop":{"type":"boolean"},"medium_size_w":{"type":"integer"},"medium_size_h":{"type":"integer"},"medium_large_size_w":{"type":"integer"},"medium_large_size_h":{"type":"integer"},"large_size_w":{"type":"integer"},"large_size_h":{"type":"integer"},"uploads_use_yearmonth_folders":{"type":"boolean"},"upload_max_filesize":{"type":"integer"},"allowed_file_types":{"type":"string"},"image_default_link_type":{"type":"string"},"image_default_size":{"type":"string"},"image_default_align":{"type":"string"},"enable_image_optimization":{"type":"boolean"},"image_quality":{"type":"integer"},"enable_webp_conversion":{"type":"boolean"},"enable_lazy_loading":{"type":"boolean"}}},"permalinks":{"type":"object","properties":{"permalink_structure":{"type":"string"},"category_base":{"type":"string"},"tag_base":{"type":"string"},"author_base":{"type":"string"},"search_base":{"type":"string"},"page_base":{"type":"string"},"attachment_base":{"type":"string"},"custom_structure":{"type":"string"},"use_trailing_slash":{"type":"boolean"},"redirect_old_urls":{"type":"boolean"},"canonical_urls":{"type":"boolean"}}}}}}}}}}},"/api/trpc/cms.settings.resetSettings":{"post":{"operationId":"cms_settings_resetSettings","summary":"Settings.reset Settings","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"category":{"type":"string","enum":["general","writing","reading","discussion","media","permalinks","feed"]}},"required":["category"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.settings.exportSettings":{"get":{"operationId":"cms_settings_exportSettings","summary":"Settings.export Settings","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"exportedAt":{"type":"string"},"siteId":{"type":"string"},"tenantId":{"type":"string"},"categories":{"type":"array","items":{"type":"string"}},"settings":{"type":"object","properties":{}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"categories":{"type":"array","items":{"type":"string","enum":["general","writing","reading","discussion","media","permalinks","feed"]}}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.settings.importSettings":{"post":{"operationId":"cms_settings_importSettings","summary":"Settings.import Settings","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"settings":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"object","properties":{"value":{"type":"string"},"createdAt":{},"updatedAt":{}},"required":["value"],"additionalProperties":false}},"overwrite":{"default":false,"type":"boolean"}},"required":["settings","overwrite"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.settings.getSettingCategories":{"get":{"operationId":"cms_settings_getSettingCategories","summary":"Settings.get Setting Categories","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"categories":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"description":{"type":"string"},"icon":{"type":"string"},"settingCount":{"type":"integer"}}}}}}}}}}}},"/api/trpc/cms.site.getStats":{"get":{"operationId":"cms_site_getStats","summary":"Site.get Stats","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"totalSites":{"type":"integer"},"activeSites":{"type":"integer"},"publishedSites":{"type":"integer"},"draftSites":{"type":"integer"}}}}}}}}},"/api/trpc/cms.socialIntegration.createPlatform":{"post":{"operationId":"cms_socialIntegration_createPlatform","summary":"Social Integration.create Platform","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1,"maxLength":100},"displayName":{"type":"string","minLength":1,"maxLength":100},"platformType":{"type":"string","enum":["FACEBOOK","INSTAGRAM","TWITTER","LINKEDIN","YOUTUBE","TIKTOK","PINTEREST","SNAPCHAT","DISCORD","TELEGRAM","WHATSAPP","CUSTOM"]},"baseUrl":{"type":"string","format":"uri"},"apiVersion":{"type":"string"},"supportsPosting":{"type":"boolean"},"supportsScheduling":{"type":"boolean"},"supportsAnalytics":{"type":"boolean"},"apiEndpoint":{"type":"string","format":"uri"},"webhookUrl":{"type":"string","format":"uri"},"maxPostLength":{"type":"integer","minimum":1,"maximum":9007199254740991},"maxImageSize":{"type":"integer","minimum":1,"maximum":9007199254740991},"maxVideoSize":{"type":"integer","minimum":1,"maximum":9007199254740991},"maxImagesPerPost":{"type":"integer","minimum":1,"maximum":9007199254740991},"supportedFormats":{"type":"array","items":{"type":"string"}}},"required":["name","displayName","platformType","baseUrl"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.socialIntegration.updatePlatform":{"post":{"operationId":"cms_socialIntegration_updatePlatform","summary":"Social Integration.update Platform","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"data":{"type":"object","properties":{"name":{"type":"string","minLength":1,"maxLength":100},"displayName":{"type":"string","minLength":1,"maxLength":100},"platformType":{"type":"string","enum":["FACEBOOK","INSTAGRAM","TWITTER","LINKEDIN","YOUTUBE","TIKTOK","PINTEREST","SNAPCHAT","DISCORD","TELEGRAM","WHATSAPP","CUSTOM"]},"baseUrl":{"type":"string","format":"uri"},"apiVersion":{"type":"string"},"supportsPosting":{"type":"boolean"},"supportsScheduling":{"type":"boolean"},"supportsAnalytics":{"type":"boolean"},"apiEndpoint":{"type":"string","format":"uri"},"webhookUrl":{"type":"string","format":"uri"},"maxPostLength":{"type":"integer","minimum":1,"maximum":9007199254740991},"maxImageSize":{"type":"integer","minimum":1,"maximum":9007199254740991},"maxVideoSize":{"type":"integer","minimum":1,"maximum":9007199254740991},"maxImagesPerPost":{"type":"integer","minimum":1,"maximum":9007199254740991},"supportedFormats":{"type":"array","items":{"type":"string"}}},"additionalProperties":false}},"required":["id","data"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.socialIntegration.deletePlatform":{"post":{"operationId":"cms_socialIntegration_deletePlatform","summary":"Social Integration.delete Platform","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.socialIntegration.listPlatforms":{"get":{"operationId":"cms_socialIntegration_listPlatforms","summary":"Social Integration.list Platforms","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"platformType":{"type":"string","enum":["FACEBOOK","INSTAGRAM","TWITTER","LINKEDIN","YOUTUBE","TIKTOK","PINTEREST","SNAPCHAT","DISCORD","TELEGRAM","WHATSAPP","CUSTOM"]},"isActive":{"type":"boolean"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.socialIntegration.connectAccount":{"post":{"operationId":"cms_socialIntegration_connectAccount","summary":"Social Integration.connect Account","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"platformId":{"type":"string"},"accountId":{"type":"string"},"username":{"type":"string","minLength":1,"maxLength":100},"displayName":{"type":"string"},"profileUrl":{"type":"string","format":"uri"},"profileImageUrl":{"type":"string","format":"uri"},"accessToken":{"type":"string"},"refreshToken":{"type":"string"},"tokenExpiresAt":{},"autoPost":{"type":"boolean"},"autoSchedule":{"type":"boolean"},"defaultHashtags":{"type":"array","items":{"type":"string"}},"followersCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"followingCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"postsCount":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["platformId","accountId","username"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.socialIntegration.updateAccount":{"post":{"operationId":"cms_socialIntegration_updateAccount","summary":"Social Integration.update Account","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"data":{"type":"object","properties":{"platformId":{"type":"string"},"accountId":{"type":"string"},"username":{"type":"string","minLength":1,"maxLength":100},"displayName":{"type":"string"},"profileUrl":{"type":"string","format":"uri"},"profileImageUrl":{"type":"string","format":"uri"},"accessToken":{"type":"string"},"refreshToken":{"type":"string"},"tokenExpiresAt":{},"autoPost":{"type":"boolean"},"autoSchedule":{"type":"boolean"},"defaultHashtags":{"type":"array","items":{"type":"string"}},"followersCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"followingCount":{"type":"integer","minimum":0,"maximum":9007199254740991},"postsCount":{"type":"integer","minimum":0,"maximum":9007199254740991}},"additionalProperties":false}},"required":["id","data"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.socialIntegration.disconnectAccount":{"post":{"operationId":"cms_socialIntegration_disconnectAccount","summary":"Social Integration.disconnect Account","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.socialIntegration.listAccounts":{"get":{"operationId":"cms_socialIntegration_listAccounts","summary":"Social Integration.list Accounts","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"platformId":{"type":"string"},"isActive":{"type":"boolean"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.socialIntegration.syncAccount":{"post":{"operationId":"cms_socialIntegration_syncAccount","summary":"Social Integration.sync Account","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.socialIntegration.createPost":{"post":{"operationId":"cms_socialIntegration_createPost","summary":"Social Integration.create Post","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"platformId":{"type":"string"},"accountId":{"type":"string"},"contentId":{"type":"string"},"contentType":{"type":"string","enum":["POST","PAGE","ARTICLE","PRODUCT","EVENT","DOCUMENT","MEDIA","CUSTOM"]},"title":{"type":"string"},"content":{"type":"string","minLength":1},"excerpt":{"type":"string"},"url":{"type":"string","format":"uri"},"imageUrls":{"type":"array","items":{"type":"string","format":"uri"}},"videoUrls":{"type":"array","items":{"type":"string","format":"uri"}},"hashtags":{"type":"array","items":{"type":"string"}},"mentions":{"type":"array","items":{"type":"string"}},"location":{"type":"string"},"postType":{"type":"string","enum":["STANDARD","PHOTO","VIDEO","CAROUSEL","STORY","REEL","LIVE","POLL","EVENT"]},"visibility":{"type":"string","enum":["PUBLIC","PRIVATE","FRIENDS","FOLLOWERS","CUSTOM"]},"scheduledAt":{},"campaignId":{"type":"string"}},"required":["platformId","accountId","content"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.socialIntegration.updatePost":{"post":{"operationId":"cms_socialIntegration_updatePost","summary":"Social Integration.update Post","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"data":{"type":"object","properties":{"platformId":{"type":"string"},"accountId":{"type":"string"},"contentId":{"type":"string"},"contentType":{"type":"string","enum":["POST","PAGE","ARTICLE","PRODUCT","EVENT","DOCUMENT","MEDIA","CUSTOM"]},"title":{"type":"string"},"content":{"type":"string","minLength":1},"excerpt":{"type":"string"},"url":{"type":"string","format":"uri"},"imageUrls":{"type":"array","items":{"type":"string","format":"uri"}},"videoUrls":{"type":"array","items":{"type":"string","format":"uri"}},"hashtags":{"type":"array","items":{"type":"string"}},"mentions":{"type":"array","items":{"type":"string"}},"location":{"type":"string"},"postType":{"type":"string","enum":["STANDARD","PHOTO","VIDEO","CAROUSEL","STORY","REEL","LIVE","POLL","EVENT"]},"visibility":{"type":"string","enum":["PUBLIC","PRIVATE","FRIENDS","FOLLOWERS","CUSTOM"]},"scheduledAt":{},"campaignId":{"type":"string"}},"additionalProperties":false}},"required":["id","data"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.socialIntegration.deletePost":{"post":{"operationId":"cms_socialIntegration_deletePost","summary":"Social Integration.delete Post","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.socialIntegration.publishPost":{"post":{"operationId":"cms_socialIntegration_publishPost","summary":"Social Integration.publish Post","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.socialIntegration.listPosts":{"get":{"operationId":"cms_socialIntegration_listPosts","summary":"Social Integration.list Posts","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"posts":{"type":"array","items":{}},"pagination":{"type":"object","properties":{"page":{"type":"integer"},"limit":{"type":"integer"},"total":{"type":"integer"},"totalPages":{"type":"integer"}}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"integer","minimum":1,"maximum":9007199254740991},"limit":{"default":20,"type":"integer","minimum":1,"maximum":100},"platformId":{"type":"string"},"accountId":{"type":"string"},"status":{"type":"string","enum":["DRAFT","SCHEDULED","PUBLISHED","FAILED","DELETED"]},"campaignId":{"type":"string"}},"required":["page","limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.socialIntegration.createSchedule":{"post":{"operationId":"cms_socialIntegration_createSchedule","summary":"Social Integration.create Schedule","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"accountId":{"type":"string"},"name":{"type":"string","minLength":1,"maxLength":255},"description":{"type":"string"},"contentTemplate":{"type":"string","minLength":1},"hashtagTemplate":{"type":"string"},"frequency":{"type":"string","enum":["ONCE","DAILY","WEEKLY","MONTHLY","CUSTOM"]},"timeSlots":{"type":"array","items":{"type":"string","pattern":"^([0-1]?[0-9]|2[0-3]):[0-5][0-9]$"}},"weekdays":{"type":"array","items":{"type":"integer","minimum":0,"maximum":6}},"timezone":{"type":"string"},"contentTypes":{"type":"array","items":{"type":"string","enum":["POST","PAGE","ARTICLE","PRODUCT","EVENT","DOCUMENT","MEDIA","CUSTOM"]}},"categories":{"type":"array","items":{"type":"string"}},"tags":{"type":"array","items":{"type":"string"}},"autoGenerate":{"type":"boolean"},"requireApproval":{"type":"boolean"}},"required":["accountId","name","contentTemplate","frequency","timeSlots"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.socialIntegration.updateSchedule":{"post":{"operationId":"cms_socialIntegration_updateSchedule","summary":"Social Integration.update Schedule","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"data":{"type":"object","properties":{"accountId":{"type":"string"},"name":{"type":"string","minLength":1,"maxLength":255},"description":{"type":"string"},"contentTemplate":{"type":"string","minLength":1},"hashtagTemplate":{"type":"string"},"frequency":{"type":"string","enum":["ONCE","DAILY","WEEKLY","MONTHLY","CUSTOM"]},"timeSlots":{"type":"array","items":{"type":"string","pattern":"^([0-1]?[0-9]|2[0-3]):[0-5][0-9]$"}},"weekdays":{"type":"array","items":{"type":"integer","minimum":0,"maximum":6}},"timezone":{"type":"string"},"contentTypes":{"type":"array","items":{"type":"string","enum":["POST","PAGE","ARTICLE","PRODUCT","EVENT","DOCUMENT","MEDIA","CUSTOM"]}},"categories":{"type":"array","items":{"type":"string"}},"tags":{"type":"array","items":{"type":"string"}},"autoGenerate":{"type":"boolean"},"requireApproval":{"type":"boolean"}},"additionalProperties":false}},"required":["id","data"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.socialIntegration.deleteSchedule":{"post":{"operationId":"cms_socialIntegration_deleteSchedule","summary":"Social Integration.delete Schedule","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.socialIntegration.listSchedules":{"get":{"operationId":"cms_socialIntegration_listSchedules","summary":"Social Integration.list Schedules","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"accountId":{"type":"string"},"isActive":{"type":"boolean"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.socialIntegration.createCampaign":{"post":{"operationId":"cms_socialIntegration_createCampaign","summary":"Social Integration.create Campaign","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"type":"object"}},"required":["json"]}}}}}},"/api/trpc/cms.socialIntegration.updateCampaign":{"post":{"operationId":"cms_socialIntegration_updateCampaign","summary":"Social Integration.update Campaign","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"type":"object"}},"required":["json"]}}}}}},"/api/trpc/cms.socialIntegration.deleteCampaign":{"post":{"operationId":"cms_socialIntegration_deleteCampaign","summary":"Social Integration.delete Campaign","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.socialIntegration.listCampaigns":{"get":{"operationId":"cms_socialIntegration_listCampaigns","summary":"Social Integration.list Campaigns","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"campaigns":{"type":"array","items":{}},"pagination":{"type":"object","properties":{"page":{"type":"integer"},"limit":{"type":"integer"},"total":{"type":"integer"},"totalPages":{"type":"integer"}}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"integer","minimum":1,"maximum":9007199254740991},"limit":{"default":20,"type":"integer","minimum":1,"maximum":100},"status":{"type":"string","enum":["DRAFT","SCHEDULED","ACTIVE","PAUSED","COMPLETED","CANCELLED"]},"objective":{"type":"string","enum":["AWARENESS","ENGAGEMENT","TRAFFIC","LEADS","SALES","APP_INSTALLS","VIDEO_VIEWS","BRAND_CONSIDERATION"]}},"required":["page","limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.socialIntegration.createSharingConfig":{"post":{"operationId":"cms_socialIntegration_createSharingConfig","summary":"Social Integration.create Sharing Config","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"type":"object"}},"required":["json"]}}}}}},"/api/trpc/cms.socialIntegration.updateSharingConfig":{"post":{"operationId":"cms_socialIntegration_updateSharingConfig","summary":"Social Integration.update Sharing Config","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"type":"object"}},"required":["json"]}}}}}},"/api/trpc/cms.socialIntegration.listSharingConfigs":{"get":{"operationId":"cms_socialIntegration_listSharingConfigs","summary":"Social Integration.list Sharing Configs","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"contentType":{"type":"string","enum":["POST","PAGE","ARTICLE","PRODUCT","EVENT","DOCUMENT","MEDIA","CUSTOM"]}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.socialIntegration.createIntegration":{"post":{"operationId":"cms_socialIntegration_createIntegration","summary":"Social Integration.create Integration","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"type":"object"}},"required":["json"]}}}}}},"/api/trpc/cms.socialIntegration.updateIntegration":{"post":{"operationId":"cms_socialIntegration_updateIntegration","summary":"Social Integration.update Integration","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"type":"object"}},"required":["json"]}}}}}},"/api/trpc/cms.socialIntegration.deleteIntegration":{"post":{"operationId":"cms_socialIntegration_deleteIntegration","summary":"Social Integration.delete Integration","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.socialIntegration.listIntegrations":{"get":{"operationId":"cms_socialIntegration_listIntegrations","summary":"Social Integration.list Integrations","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"integrationType":{"type":"string","enum":["ZAPIER","IFTTT","WEBHOOK","API","RSS","CUSTOM"]},"isActive":{"type":"boolean"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.socialIntegration.getAnalytics":{"get":{"operationId":"cms_socialIntegration_getAnalytics","summary":"Social Integration.get Analytics","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"platformId":{"type":"string"},"accountId":{"type":"string"},"startDate":{},"endDate":{},"period":{"default":"DAILY","type":"string","enum":["HOURLY","DAILY","WEEKLY","MONTHLY","QUARTERLY","YEARLY"]}},"required":["startDate","endDate","period"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.socialIntegration.getStatistics":{"get":{"operationId":"cms_socialIntegration_getStatistics","summary":"Social Integration.get Statistics","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"totalAccounts":{"type":"integer"},"totalPosts":{"type":"integer"},"scheduledPosts":{"type":"integer"},"activeCampaigns":{"type":"integer"},"totalEngagement":{"type":"object","properties":{"likes":{"type":"integer"},"shares":{"type":"integer"},"comments":{"type":"integer"}}},"recentPosts":{"type":"array","items":{}},"topPlatforms":{"type":"array","items":{}}}}}}}}}},"/api/trpc/cms.socialIntegration.trackShare":{"post":{"operationId":"cms_socialIntegration_trackShare","summary":"Social Integration.track Share","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"contentId":{"type":"string"},"contentType":{"type":"string","enum":["POST","PAGE","ARTICLE","PRODUCT","EVENT","DOCUMENT","MEDIA","CUSTOM"]},"contentUrl":{"type":"string","format":"uri"},"platform":{"type":"string"},"sharedBy":{"type":"string"},"userAgent":{"type":"string"},"referrer":{"type":"string"},"ipAddress":{"type":"string"},"country":{"type":"string"},"city":{"type":"string"}},"required":["contentId","contentType","contentUrl","platform"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.socialIntegration.getSharingStats":{"get":{"operationId":"cms_socialIntegration_getSharingStats","summary":"Social Integration.get Sharing Stats","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"contentId":{"type":"string"},"contentType":{"type":"string","enum":["POST","PAGE","ARTICLE","PRODUCT","EVENT","DOCUMENT","MEDIA","CUSTOM"]},"platform":{"type":"string"},"startDate":{},"endDate":{}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.suggestionMode.createSuggestion":{"post":{"operationId":"cms_suggestionMode_createSuggestion","summary":"Suggestion Mode.create Suggestion","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"contentId":{"type":"string"},"contentType":{"type":"string"},"changeType":{"type":"string","enum":["INSERT","DELETE","REPLACE","FORMAT","STRUCTURE","ATTRIBUTE","MEDIA","LINK","STYLE","METADATA"]},"originalText":{"type":"string"},"suggestedText":{"type":"string"},"changeReason":{"type":"string"},"description":{"type":"string"},"fieldName":{"type":"string"},"startPosition":{"type":"number"},"endPosition":{"type":"number"},"lineNumber":{"type":"number"},"columnNumber":{"type":"number"},"scope":{"default":"CHARACTER","type":"string","enum":["CHARACTER","WORD","SENTENCE","PARAGRAPH","SECTION","DOCUMENT","METADATA","STRUCTURE"]},"metadata":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}}},"required":["contentId","contentType","changeType","scope"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.suggestionMode.getSuggestions":{"get":{"operationId":"cms_suggestionMode_getSuggestions","summary":"Suggestion Mode.get Suggestions","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"contentId":{"type":"string"},"contentType":{"type":"string"},"status":{"type":"string","enum":["PENDING","ACCEPTED","REJECTED","CONFLICTED","SUPERSEDED","WITHDRAWN","EXPIRED"]},"authorId":{"type":"string"},"limit":{"default":50,"type":"number"},"offset":{"default":0,"type":"number"}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.suggestionMode.reviewSuggestion":{"post":{"operationId":"cms_suggestionMode_reviewSuggestion","summary":"Suggestion Mode.review Suggestion","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"suggestionId":{"type":"string"},"status":{"type":"string","enum":["PENDING","ACCEPTED","REJECTED","CONFLICTED","SUPERSEDED","WITHDRAWN","EXPIRED"]},"comment":{"type":"string"},"rating":{"type":"number","minimum":1,"maximum":5},"reviewTime":{"type":"number"},"complexity":{"type":"string","enum":["LOW","MEDIUM","HIGH"]}},"required":["suggestionId","status"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.suggestionMode.createBatchOperation":{"post":{"operationId":"cms_suggestionMode_createBatchOperation","summary":"Suggestion Mode.create Batch Operation","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string"},"description":{"type":"string"},"operation":{"type":"string","enum":["accept_all","reject_all","review_batch"]},"suggestionIds":{"type":"array","items":{"type":"string"}}},"required":["name","operation","suggestionIds"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.suggestionMode.executeBatchOperation":{"post":{"operationId":"cms_suggestionMode_executeBatchOperation","summary":"Suggestion Mode.execute Batch Operation","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"batchId":{"type":"string"}},"required":["batchId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.suggestionMode.getTrackingSettings":{"get":{"operationId":"cms_suggestionMode_getTrackingSettings","summary":"Suggestion Mode.get Tracking Settings","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"contentId":{"type":"string"},"contentType":{"type":"string"}},"required":["contentId","contentType"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.suggestionMode.updateTrackingSettings":{"post":{"operationId":"cms_suggestionMode_updateTrackingSettings","summary":"Suggestion Mode.update Tracking Settings","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"contentId":{"type":"string"},"contentType":{"type":"string"},"trackingLevel":{"default":"NONE","type":"string","enum":["NONE","BASIC","DETAILED","COMPREHENSIVE","GRANULAR"]},"suggestionMode":{"default":"EDITING","type":"string","enum":["SUGGESTING","EDITING","VIEWING","REVIEWING","DISABLED"]},"autoAcceptMinor":{"default":false,"type":"boolean"},"requireApproval":{"default":true,"type":"boolean"},"reviewDeadline":{},"maxReviewers":{"default":3,"type":"number"},"minApprovals":{"default":1,"type":"number"},"notifyOnSuggestion":{"default":true,"type":"boolean"},"notifyOnConflict":{"default":true,"type":"boolean"},"notifyOnApproval":{"default":false,"type":"boolean"},"allowedReviewers":{"type":"array","items":{"type":"string"}},"restrictedUsers":{"type":"array","items":{"type":"string"}}},"required":["contentId","contentType","trackingLevel","suggestionMode","autoAcceptMinor","requireApproval","maxReviewers","minApprovals","notifyOnSuggestion","notifyOnConflict","notifyOnApproval"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.suggestionMode.createCollaborativeSession":{"post":{"operationId":"cms_suggestionMode_createCollaborativeSession","summary":"Suggestion Mode.create Collaborative Session","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"contentId":{"type":"string"},"contentType":{"type":"string"},"maxParticipants":{"default":10,"type":"number"},"allowAnonymous":{"default":false,"type":"boolean"},"lockOnEdit":{"default":false,"type":"boolean"}},"required":["contentId","contentType","maxParticipants","allowAnonymous","lockOnEdit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.suggestionMode.joinCollaborativeSession":{"post":{"operationId":"cms_suggestionMode_joinCollaborativeSession","summary":"Suggestion Mode.join Collaborative Session","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"sessionId":{"type":"string"},"role":{"default":"&","type":"string","enum":["AUTHOR","EDITOR","REVIEWER","APPROVER","ADMIN","COLLABORATOR","OBSERVER"]}},"required":["sessionId","role"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.suggestionMode.getSuggestionStats":{"get":{"operationId":"cms_suggestionMode_getSuggestionStats","summary":"Suggestion Mode.get Suggestion Stats","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"contentId":{"type":"string"},"contentType":{"type":"string"},"timeframe":{"default":"&","type":"string","enum":["day","week","month","year"]}},"required":["timeframe"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.suggestionMode.getNotifications":{"get":{"operationId":"cms_suggestionMode_getNotifications","summary":"Suggestion Mode.get Notifications","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"isRead":{"type":"boolean"},"limit":{"default":20,"type":"number"},"offset":{"default":0,"type":"number"}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.suggestionMode.markNotificationAsRead":{"post":{"operationId":"cms_suggestionMode_markNotificationAsRead","summary":"Suggestion Mode.mark Notification As Read","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"notificationId":{"type":"string"}},"required":["notificationId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.system.getStats":{"get":{"operationId":"cms_system_getStats","summary":"System.get Stats","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"totalTenants":{"type":"integer"},"activeTenants":{"type":"integer"},"totalUsers":{"type":"integer"},"totalPosts":{"type":"integer"},"systemHealth":{"type":"object","properties":{"database":{"type":"string"},"cache":{"type":"string"},"storage":{"type":"string"},"uptime":{"type":"string"}}},"lastBackup":{"type":"string"}}}}}}}}},"/api/trpc/cms.system.getContentHubCounts":{"get":{"operationId":"cms_system_getContentHubCounts","summary":"System.get Content Hub Counts","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"posts":{"type":"integer"},"pages":{"type":"integer"},"media":{"type":"integer"},"categories":{"type":"integer"},"tags":{"type":"integer"},"taxonomies":{"type":"integer"},"postTypes":{"type":"integer"},"customContentTypes":{"type":"integer"},"sliders":{"type":"integer"}}}}}}}}},"/api/trpc/cms.users.getStats":{"get":{"operationId":"cms_users_getStats","summary":"Users.get Stats","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"totalUsers":{"type":"integer"},"activeUsers":{"type":"integer"},"adminUsers":{"type":"integer"},"inactiveUsers":{"type":"integer"}}}}}}}}},"/api/trpc/cms.workflow.getWorkflows":{"get":{"operationId":"cms_workflow_getWorkflows","summary":"Workflow.get Workflows","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"number"},"per_page":{"default":20,"type":"number"},"sort":{"type":"string"},"search":{"type":"string"},"state":{"type":"string","enum":["DRAFT","SUBMITTED","UNDER_REVIEW","NEEDS_REVISION","APPROVED","PUBLISHED","SCHEDULED","ARCHIVED","REJECTED"]},"assignedToId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"priority":{"type":"number"},"includeCompleted":{"default":false,"type":"boolean"}},"required":["page","per_page","includeCompleted"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.workflow.getWorkflowById":{"get":{"operationId":"cms_workflow_getWorkflowById","summary":"Workflow.get Workflow By Id","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"include":{"type":"object","properties":{"post":{"type":"boolean"},"assignedTo":{"type":"boolean"},"workflowTemplate":{"type":"boolean"},"workflowHistory":{"type":"boolean"}},"additionalProperties":false}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.workflow.createWorkflow":{"post":{"operationId":"cms_workflow_createWorkflow","summary":"Workflow.create Workflow","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"postId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"workflowTemplateId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"assignedToId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"deadline":{},"publishDeadline":{},"priority":{"default":0,"type":"number","minimum":0,"maximum":2},"editorialNotes":{"type":"string"}},"required":["postId","priority"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.workflow.updateWorkflow":{"post":{"operationId":"cms_workflow_updateWorkflow","summary":"Workflow.update Workflow","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"currentState":{"type":"string","enum":["DRAFT","SUBMITTED","UNDER_REVIEW","NEEDS_REVISION","APPROVED","PUBLISHED","SCHEDULED","ARCHIVED","REJECTED"]},"assignedToId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"deadline":{},"publishDeadline":{},"priority":{"type":"number","minimum":0,"maximum":2},"editorialNotes":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.workflow.performWorkflowAction":{"post":{"operationId":"cms_workflow_performWorkflowAction","summary":"Workflow.perform Workflow Action","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"workflowId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"action":{"type":"string","enum":["SUBMIT","APPROVE","REJECT","REQUEST_REVISION","PUBLISH","SCHEDULE","ARCHIVE","RESTORE"]},"assignToId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"comment":{"type":"string"},"notes":{"type":"string"}},"required":["workflowId","action"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.workflow.getWorkflowTemplates":{"get":{"operationId":"cms_workflow_getWorkflowTemplates","summary":"Workflow.get Workflow Templates","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"number"},"per_page":{"default":20,"type":"number"},"search":{"type":"string"},"isActive":{"type":"boolean"}},"required":["page","per_page"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.workflow.createWorkflowTemplate":{"post":{"operationId":"cms_workflow_createWorkflowTemplate","summary":"Workflow.create Workflow Template","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"isDefault":{"default":false,"type":"boolean"},"steps":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"stepOrder":{"type":"number","minimum":0},"fromState":{"type":"string","enum":["DRAFT","SUBMITTED","UNDER_REVIEW","NEEDS_REVISION","APPROVED","PUBLISHED","SCHEDULED","ARCHIVED","REJECTED"]},"toState":{"type":"string","enum":["DRAFT","SUBMITTED","UNDER_REVIEW","NEEDS_REVISION","APPROVED","PUBLISHED","SCHEDULED","ARCHIVED","REJECTED"]},"action":{"type":"string","enum":["SUBMIT","APPROVE","REJECT","REQUEST_REVISION","PUBLISH","SCHEDULE","ARCHIVE","RESTORE"]},"requiredRole":{"type":"string","enum":["AUTHOR","EDITOR","REVIEWER","PUBLISHER","ADMIN"]},"autoAssignRole":{"type":"string","enum":["AUTHOR","EDITOR","REVIEWER","PUBLISHER","ADMIN"]},"autoAssignUserId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"requiresApproval":{"default":false,"type":"boolean"},"minApprovals":{"default":1,"type":"number","minimum":1},"notifyOnEntry":{"default":true,"type":"boolean"},"notifyUserIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}}},"required":["name","stepOrder","fromState","toState","action","requiredRole","requiresApproval","minApprovals","notifyOnEntry"],"additionalProperties":false}}},"required":["name","isDefault","steps"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.workflow.updateWorkflowTemplate":{"post":{"operationId":"cms_workflow_updateWorkflowTemplate","summary":"Workflow.update Workflow Template","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"name":{"type":"string","minLength":1},"description":{"type":"string"},"isDefault":{"type":"boolean"},"isActive":{"type":"boolean"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.workflow.deleteWorkflowTemplate":{"post":{"operationId":"cms_workflow_deleteWorkflowTemplate","summary":"Workflow.delete Workflow Template","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.workflow.getEditorialAssignments":{"get":{"operationId":"cms_workflow_getEditorialAssignments","summary":"Workflow.get Editorial Assignments","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"number"},"per_page":{"default":20,"type":"number"},"assignedToId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"status":{"type":"string","enum":["ACTIVE","COMPLETED","CANCELLED"]},"role":{"type":"string","enum":["AUTHOR","EDITOR","REVIEWER","PUBLISHER","ADMIN"]}},"required":["page","per_page"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.workflow.createEditorialAssignment":{"post":{"operationId":"cms_workflow_createEditorialAssignment","summary":"Workflow.create Editorial Assignment","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"postId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"assignedToId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"role":{"type":"string","enum":["AUTHOR","EDITOR","REVIEWER","PUBLISHER","ADMIN"]},"dueDate":{},"instructions":{"type":"string"},"notes":{"type":"string"}},"required":["postId","assignedToId","role"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.workflow.updateEditorialAssignment":{"post":{"operationId":"cms_workflow_updateEditorialAssignment","summary":"Workflow.update Editorial Assignment","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"status":{"type":"string","enum":["ACTIVE","COMPLETED","CANCELLED"]},"dueDate":{},"completedAt":{},"notes":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.workflow.getEditorialNotifications":{"get":{"operationId":"cms_workflow_getEditorialNotifications","summary":"Workflow.get Editorial Notifications","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"number"},"per_page":{"default":20,"type":"number"},"isRead":{"type":"boolean"},"type":{"type":"string"}},"required":["page","per_page"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.workflow.markNotificationRead":{"post":{"operationId":"cms_workflow_markNotificationRead","summary":"Workflow.mark Notification Read","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.workflow.createContentApproval":{"post":{"operationId":"cms_workflow_createContentApproval","summary":"Workflow.create Content Approval","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"postId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"approverId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"comment":{"type":"string"}},"required":["postId","approverId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.workflow.updateContentApproval":{"post":{"operationId":"cms_workflow_updateContentApproval","summary":"Workflow.update Content Approval","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"status":{"type":"string","enum":["PENDING","APPROVED","REJECTED"]},"decision":{"type":"string","enum":["APPROVE","REJECT","REQUEST_CHANGES"]},"comment":{"type":"string"},"feedback":{"type":"string"}},"required":["id","status"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.workflow.getContentApprovals":{"get":{"operationId":"cms_workflow_getContentApprovals","summary":"Workflow.get Content Approvals","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"number"},"per_page":{"default":20,"type":"number"},"postId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"approverId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"status":{"type":"string","enum":["PENDING","APPROVED","REJECTED"]},"search":{"type":"string"}},"required":["page","per_page"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.workflow.getApprovalChain":{"get":{"operationId":"cms_workflow_getApprovalChain","summary":"Workflow.get Approval Chain","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"postId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["postId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.workflow.getWorkflowStats":{"get":{"operationId":"cms_workflow_getWorkflowStats","summary":"Workflow.get Workflow Stats","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/cms.permissions.getContentPermissions":{"get":{"operationId":"cms_permissions_getContentPermissions","summary":"Permissions.get Content Permissions","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"permissions":{"type":"array","items":{}},"total":{"type":"integer"},"page":{"type":"integer"},"per_page":{"type":"integer"},"pages":{"type":"integer"},"hasMore":{"type":"boolean"},"hasPrev":{"type":"boolean"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{},"per_page":{},"sort":{"type":"string"},"search":{"type":"string"},"contentType":{"type":"string","enum":["POST","PAGE","CATEGORY","TAG","MEDIA","COMMENT","WORKFLOW","TEMPLATE","MENU","WIDGET","FORM","NEWSLETTER","ANALYTICS","SETTINGS"]},"action":{"type":"string","enum":["CREATE","READ","UPDATE","DELETE","PUBLISH","UNPUBLISH","SCHEDULE","ARCHIVE","RESTORE","APPROVE","REJECT","ASSIGN","COMMENT","EXPORT","IMPORT","BULK_EDIT","ANALYTICS"]},"scope":{"type":"string","enum":["OWN_CONTENT","ASSIGNED_CONTENT","CATEGORY_CONTENT","SITE_CONTENT","TENANT_CONTENT","GLOBAL_CONTENT"]}},"required":["page","per_page"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.permissions.createContentPermission":{"post":{"operationId":"cms_permissions_createContentPermission","summary":"Permissions.create Content Permission","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"contentType":{"type":"string","enum":["POST","PAGE","CATEGORY","TAG","MEDIA","COMMENT","WORKFLOW","TEMPLATE","MENU","WIDGET","FORM","NEWSLETTER","ANALYTICS","SETTINGS"]},"action":{"type":"string","enum":["CREATE","READ","UPDATE","DELETE","PUBLISH","UNPUBLISH","SCHEDULE","ARCHIVE","RESTORE","APPROVE","REJECT","ASSIGN","COMMENT","EXPORT","IMPORT","BULK_EDIT","ANALYTICS"]},"scope":{"type":"string","enum":["OWN_CONTENT","ASSIGNED_CONTENT","CATEGORY_CONTENT","SITE_CONTENT","TENANT_CONTENT","GLOBAL_CONTENT"]},"conditions":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"parentPermissionId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["name","contentType","action","scope"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.permissions.updateContentPermission":{"post":{"operationId":"cms_permissions_updateContentPermission","summary":"Permissions.update Content Permission","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"data":{"type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"contentType":{"type":"string","enum":["POST","PAGE","CATEGORY","TAG","MEDIA","COMMENT","WORKFLOW","TEMPLATE","MENU","WIDGET","FORM","NEWSLETTER","ANALYTICS","SETTINGS"]},"action":{"type":"string","enum":["CREATE","READ","UPDATE","DELETE","PUBLISH","UNPUBLISH","SCHEDULE","ARCHIVE","RESTORE","APPROVE","REJECT","ASSIGN","COMMENT","EXPORT","IMPORT","BULK_EDIT","ANALYTICS"]},"scope":{"type":"string","enum":["OWN_CONTENT","ASSIGNED_CONTENT","CATEGORY_CONTENT","SITE_CONTENT","TENANT_CONTENT","GLOBAL_CONTENT"]},"conditions":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"parentPermissionId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"additionalProperties":false}},"required":["id","data"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.permissions.deleteContentPermission":{"post":{"operationId":"cms_permissions_deleteContentPermission","summary":"Permissions.delete Content Permission","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["json"]}}}}}},"/api/trpc/cms.permissions.getEditorialRoles":{"get":{"operationId":"cms_permissions_getEditorialRoles","summary":"Permissions.get Editorial Roles","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"roles":{"type":"array","items":{}},"total":{"type":"integer"},"page":{"type":"integer"},"per_page":{"type":"integer"},"pages":{"type":"integer"},"hasMore":{"type":"boolean"},"hasPrev":{"type":"boolean"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{},"per_page":{},"sort":{"type":"string"},"search":{"type":"string"},"roleType":{"type":"string","enum":["CONTENT_AUTHOR","CONTENT_EDITOR","CONTENT_REVIEWER","CONTENT_PUBLISHER","CONTENT_ADMIN","CATEGORY_MANAGER","MEDIA_MANAGER","SEO_SPECIALIST","WORKFLOW_MANAGER","ANALYTICS_VIEWER"]},"isActive":{"type":"boolean"}},"required":["page","per_page"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.permissions.createEditorialRole":{"post":{"operationId":"cms_permissions_createEditorialRole","summary":"Permissions.create Editorial Role","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"label":{"type":"string","minLength":1},"description":{"type":"string"},"color":{"type":"string"},"roleType":{"type":"string","enum":["CONTENT_AUTHOR","CONTENT_EDITOR","CONTENT_REVIEWER","CONTENT_PUBLISHER","CONTENT_ADMIN","CATEGORY_MANAGER","MEDIA_MANAGER","SEO_SPECIALIST","WORKFLOW_MANAGER","ANALYTICS_VIEWER"]},"isDefault":{"default":false,"type":"boolean"},"isActive":{"default":true,"type":"boolean"},"priority":{"default":0,"type":"number"},"parentRoleId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["name","label","roleType","isDefault","isActive","priority"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.permissions.updateEditorialRole":{"post":{"operationId":"cms_permissions_updateEditorialRole","summary":"Permissions.update Editorial Role","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"data":{"type":"object","properties":{"name":{"type":"string","minLength":1},"label":{"type":"string","minLength":1},"description":{"type":"string"},"color":{"type":"string"},"roleType":{"type":"string","enum":["CONTENT_AUTHOR","CONTENT_EDITOR","CONTENT_REVIEWER","CONTENT_PUBLISHER","CONTENT_ADMIN","CATEGORY_MANAGER","MEDIA_MANAGER","SEO_SPECIALIST","WORKFLOW_MANAGER","ANALYTICS_VIEWER"]},"isDefault":{"default":false,"type":"boolean"},"isActive":{"default":true,"type":"boolean"},"priority":{"default":0,"type":"number"},"parentRoleId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"additionalProperties":false}},"required":["id","data"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.permissions.deleteEditorialRole":{"post":{"operationId":"cms_permissions_deleteEditorialRole","summary":"Permissions.delete Editorial Role","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["json"]}}}}}},"/api/trpc/cms.permissions.updateRolePermissions":{"post":{"operationId":"cms_permissions_updateRolePermissions","summary":"Permissions.update Role Permissions","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"editorialRoleId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"permissions":{"type":"array","items":{"type":"object","properties":{"contentPermissionId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"allowed":{"default":true,"type":"boolean"},"denied":{"default":false,"type":"boolean"},"conditions":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"validFrom":{},"validTo":{}},"required":["contentPermissionId","allowed","denied"],"additionalProperties":false}}},"required":["editorialRoleId","permissions"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.permissions.assignUserRole":{"post":{"operationId":"cms_permissions_assignUserRole","summary":"Permissions.assign User Role","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"userId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"editorialRoleId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"isPrimary":{"default":false,"type":"boolean"},"validFrom":{},"validTo":{},"assignmentReason":{"type":"string"},"assignmentNotes":{"type":"string"}},"required":["userId","editorialRoleId","isPrimary"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.permissions.getUserRoleAssignments":{"get":{"operationId":"cms_permissions_getUserRoleAssignments","summary":"Permissions.get User Role Assignments","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"assignments":{"type":"array","items":{}},"total":{"type":"integer"},"page":{"type":"integer"},"per_page":{"type":"integer"},"pages":{"type":"integer"},"hasMore":{"type":"boolean"},"hasPrev":{"type":"boolean"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{},"per_page":{},"sort":{"type":"string"},"search":{"type":"string"},"userId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"editorialRoleId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"isActive":{"type":"boolean"},"isPrimary":{"type":"boolean"}},"required":["page","per_page"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.permissions.revokeUserRole":{"post":{"operationId":"cms_permissions_revokeUserRole","summary":"Permissions.revoke User Role","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"userId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"editorialRoleId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"reason":{"type":"string"}},"required":["userId","editorialRoleId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.permissions.getContentOwnership":{"get":{"operationId":"cms_permissions_getContentOwnership","summary":"Permissions.get Content Ownership","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"ownerships":{"type":"array","items":{}},"total":{"type":"integer"},"page":{"type":"integer"},"per_page":{"type":"integer"},"pages":{"type":"integer"},"hasMore":{"type":"boolean"},"hasPrev":{"type":"boolean"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{},"per_page":{},"sort":{"type":"string"},"search":{"type":"string"},"ownerId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"ownershipType":{"type":"string"},"postId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["page","per_page"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.permissions.assignContentOwnership":{"post":{"operationId":"cms_permissions_assignContentOwnership","summary":"Permissions.assign Content Ownership","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"postId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"ownerId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"editorialRoleId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"ownershipType":{"default":"&","type":"string"},"canDelegate":{"default":false,"type":"boolean"},"canRevoke":{"default":false,"type":"boolean"},"validFrom":{},"validTo":{},"assignmentReason":{"type":"string"},"assignmentNotes":{"type":"string"}},"required":["postId","ownerId","ownershipType","canDelegate","canRevoke"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.permissions.revokeContentOwnership":{"post":{"operationId":"cms_permissions_revokeContentOwnership","summary":"Permissions.revoke Content Ownership","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"reason":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.permissions.getUserPermissions":{"get":{"operationId":"cms_permissions_getUserPermissions","summary":"Permissions.get User Permissions","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"userId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"contentType":{"type":"string","enum":["POST","PAGE","CATEGORY","TAG","MEDIA","COMMENT","WORKFLOW","TEMPLATE","MENU","WIDGET","FORM","NEWSLETTER","ANALYTICS","SETTINGS"]},"includeInherited":{"default":true,"type":"boolean"},"includeExpired":{"default":false,"type":"boolean"}},"required":["userId","includeInherited","includeExpired"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.permissions.getPermissionAuditLog":{"get":{"operationId":"cms_permissions_getPermissionAuditLog","summary":"Permissions.get Permission Audit Log","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"auditLogs":{"type":"array","items":{}},"total":{"type":"integer"},"page":{"type":"integer"},"per_page":{"type":"integer"},"pages":{"type":"integer"},"hasMore":{"type":"boolean"},"hasPrev":{"type":"boolean"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{},"per_page":{},"sort":{"type":"string"},"search":{"type":"string"},"entityType":{"type":"string"},"action":{"type":"string"},"performedById":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"targetUserId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"dateFrom":{},"dateTo":{}},"required":["page","per_page"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.permissions.getStats":{"get":{"operationId":"cms_permissions_getStats","summary":"Permissions.get Stats","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"totalPermissions":{"type":"integer"},"activePermissions":{"type":"integer"},"permissionsByContentType":{"type":"array","items":{}},"permissionsByAction":{"type":"array","items":{}},"recentChanges":{"type":"integer"},"permissionsInUse":{"type":"integer"},"permissionsNotInUse":{"type":"integer"}}}}}}}}},"/api/trpc/cms.roles.getStats":{"get":{"operationId":"cms_roles_getStats","summary":"Roles.get Stats","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"totalRoles":{"type":"integer"},"activeRoles":{"type":"integer"},"inactiveRoles":{"type":"integer"},"rolesWithUsers":{"type":"integer"},"rolesWithoutUsers":{"type":"integer"}}}}}}}}},"/api/trpc/cms.versioning.createVersion":{"post":{"operationId":"cms_versioning_createVersion","summary":"Versioning.create Version","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"contentType":{"type":"string","enum":["POST","PAGE","PRODUCT","CATEGORY","TAG","MEDIA","COMMENT","MENU","WIDGET","TEMPLATE"]},"contentId":{"type":"string"},"title":{"type":"string"},"content":{"type":"string"},"excerpt":{"type":"string"},"metadata":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"changeType":{"default":"MINOR","type":"string","enum":["MAJOR","MINOR","PATCH","HOTFIX","CONTENT_UPDATE","METADATA_ONLY"]},"changeDescription":{"type":"string"},"changeSummary":{"type":"string"}},"required":["contentType","contentId","changeType"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.versioning.updateVersion":{"post":{"operationId":"cms_versioning_updateVersion","summary":"Versioning.update Version","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"versionId":{"type":"string"},"title":{"type":"string"},"content":{"type":"string"},"excerpt":{"type":"string"},"metadata":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"changeDescription":{"type":"string"},"changeSummary":{"type":"string"}},"required":["versionId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.versioning.getVersions":{"get":{"operationId":"cms_versioning_getVersions","summary":"Versioning.get Versions","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"contentType":{"type":"string","enum":["POST","PAGE","PRODUCT","CATEGORY","TAG","MEDIA","COMMENT","MENU","WIDGET","TEMPLATE"]},"contentId":{"type":"string"},"status":{},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0}},"required":["status","limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.versioning.getVersion":{"get":{"operationId":"cms_versioning_getVersion","summary":"Versioning.get Version","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"versionId":{"type":"string"}},"required":["versionId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.versioning.createRevision":{"post":{"operationId":"cms_versioning_createRevision","summary":"Versioning.create Revision","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"versionId":{"type":"string"},"title":{"type":"string"},"content":{"type":"string"},"fieldChanges":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"changeType":{"default":"EDIT","type":"string","enum":["CREATE","EDIT","DELETE","RESTORE","MERGE","SPLIT","MOVE","COPY"]},"changedFields":{"default":[],"type":"array","items":{"type":"string"}},"changeDescription":{"type":"string"}},"required":["versionId","changeType","changedFields"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.versioning.approveVersion":{"post":{"operationId":"cms_versioning_approveVersion","summary":"Versioning.approve Version","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"versionId":{"type":"string"},"approved":{"type":"boolean"},"comments":{"type":"string"}},"required":["versionId","approved"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.versioning.publishVersion":{"post":{"operationId":"cms_versioning_publishVersion","summary":"Versioning.publish Version","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"versionId":{"type":"string"},"publishedAt":{}},"required":["versionId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.versioning.rollbackVersion":{"post":{"operationId":"cms_versioning_rollbackVersion","summary":"Versioning.rollback Version","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"versionId":{"type":"string"},"targetVersionId":{"type":"string"},"rollbackReason":{"type":"string"}},"required":["versionId","targetVersionId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.versioning.compareVersions":{"post":{"operationId":"cms_versioning_compareVersions","summary":"Versioning.compare Versions","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"versionAId":{"type":"string"},"versionBId":{"type":"string"},"comparisonType":{"default":"AUTOMATIC","type":"string","enum":["AUTOMATIC","MANUAL","SCHEDULED","CONFLICT_RESOLUTION"]}},"required":["versionAId","versionBId","comparisonType"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.versioning.resolveConflict":{"post":{"operationId":"cms_versioning_resolveConflict","summary":"Versioning.resolve Conflict","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"conflictId":{"type":"string"},"resolution":{"type":"string","enum":["ACCEPT_CURRENT","ACCEPT_INCOMING","MERGE_BOTH","CUSTOM_RESOLUTION","MANUAL_EDIT"]},"resolvedValue":{"type":"string"},"resolutionNotes":{"type":"string"}},"required":["conflictId","resolution"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.versioning.createComment":{"post":{"operationId":"cms_versioning_createComment","summary":"Versioning.create Comment","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"revisionId":{"type":"string"},"content":{"type":"string"},"commentType":{"default":"GENERAL","type":"string","enum":["GENERAL","SUGGESTION","QUESTION","APPROVAL","REJECTION","TECHNICAL","EDITORIAL"]},"lineNumber":{"type":"number"},"fieldName":{"type":"string"},"parentId":{"type":"string"}},"required":["revisionId","content","commentType"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.versioning.getVersioningSettings":{"get":{"operationId":"cms_versioning_getVersioningSettings","summary":"Versioning.get Versioning Settings","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"contentType":{"type":"string","enum":["POST","PAGE","PRODUCT","CATEGORY","TAG","MEDIA","COMMENT","MENU","WIDGET","TEMPLATE"]}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.versioning.updateVersioningSettings":{"post":{"operationId":"cms_versioning_updateVersioningSettings","summary":"Versioning.update Versioning Settings","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"contentType":{"type":"string","enum":["POST","PAGE","PRODUCT","CATEGORY","TAG","MEDIA","COMMENT","MENU","WIDGET","TEMPLATE"]},"maxVersions":{"default":50,"type":"number","minimum":1,"maximum":1000},"autoVersioning":{"default":true,"type":"boolean"},"requireApproval":{"default":false,"type":"boolean"},"retentionDays":{"default":365,"type":"number","minimum":1,"maximum":3650},"archiveOldVersions":{"default":true,"type":"boolean"},"createBackups":{"default":true,"type":"boolean"},"backupFrequency":{"default":"DAILY","type":"string","enum":["HOURLY","DAILY","WEEKLY","MONTHLY","MANUAL"]}},"required":["contentType","maxVersions","autoVersioning","requireApproval","retentionDays","archiveOldVersions","createBackups","backupFrequency"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.versioning.getVersioningStats":{"get":{"operationId":"cms_versioning_getVersioningStats","summary":"Versioning.get Versioning Stats","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"totalVersions":{"type":"integer"},"publishedVersions":{"type":"integer"},"draftVersions":{"type":"integer"},"totalRevisions":{"type":"integer"},"activeConflicts":{"type":"integer"},"versionsByType":{"type":"object","properties":{}}}}}}}}}},"/api/trpc/cms.customContent.getContentTypes":{"get":{"operationId":"cms_customContent_getContentTypes","summary":"Custom Content.get Content Types","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"contentTypes":{"type":"array","items":{}},"total":{"type":"integer"},"hasMore":{"type":"boolean"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0},"search":{"type":"string"},"isActive":{"type":"boolean"},"isPublic":{"type":"boolean"}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.customContent.getContentType":{"get":{"operationId":"cms_customContent_getContentType","summary":"Custom Content.get Content Type","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.customContent.createContentType":{"post":{"operationId":"cms_customContent_createContentType","summary":"Custom Content.create Content Type","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"slug":{"type":"string","minLength":1},"description":{"type":"string"},"icon":{"type":"string"},"displayName":{"type":"string","minLength":1},"pluralName":{"type":"string","minLength":1},"singularName":{"type":"string","minLength":1},"isActive":{"default":true,"type":"boolean"},"isPublic":{"default":true,"type":"boolean"},"hasCategories":{"default":false,"type":"boolean"},"hasTags":{"default":false,"type":"boolean"},"hasComments":{"default":false,"type":"boolean"},"hasRevisions":{"default":true,"type":"boolean"},"hasWorkflow":{"default":false,"type":"boolean"},"canCreate":{"default":true,"type":"boolean"},"canRead":{"default":true,"type":"boolean"},"canUpdate":{"default":true,"type":"boolean"},"canDelete":{"default":true,"type":"boolean"},"canPublish":{"default":true,"type":"boolean"},"listLayout":{"default":"TABLE","type":"string","enum":["TABLE","GRID","CARDS","LIST"]},"detailLayout":{"default":"FORM","type":"string","enum":["FORM","TABS","ACCORDION","SIDEBAR"]},"embedTemplate":{"type":"string"},"embedSettings":{"type":"string"},"hasSubscriptionPlans":{"default":false,"type":"boolean"},"subscriptionPlanIds":{"default":[],"type":"array","items":{"type":"string"}},"defaultSubscriptionPlan":{"type":"string"},"allowPlanSelection":{"default":true,"type":"boolean"},"subscriptionMode":{"default":"REQUIRED","type":"string","enum":["REQUIRED","OPTIONAL","UPGRADE_ONLY"]},"redirectAfterSubscription":{"type":"string"},"showPricingTable":{"default":true,"type":"boolean"},"enableTrialAccess":{"default":false,"type":"boolean"},"gatedContent":{"default":false,"type":"boolean"}},"required":["name","slug","displayName","pluralName","singularName","isActive","isPublic","hasCategories","hasTags","hasComments","hasRevisions","hasWorkflow","canCreate","canRead","canUpdate","canDelete","canPublish","listLayout","detailLayout","hasSubscriptionPlans","subscriptionPlanIds","allowPlanSelection","subscriptionMode","showPricingTable","enableTrialAccess","gatedContent"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.customContent.updateContentType":{"post":{"operationId":"cms_customContent_updateContentType","summary":"Custom Content.update Content Type","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"slug":{"type":"string","minLength":1},"description":{"type":"string"},"icon":{"type":"string"},"displayName":{"type":"string","minLength":1},"pluralName":{"type":"string","minLength":1},"singularName":{"type":"string","minLength":1},"isActive":{"default":true,"type":"boolean"},"isPublic":{"default":true,"type":"boolean"},"hasCategories":{"default":false,"type":"boolean"},"hasTags":{"default":false,"type":"boolean"},"hasComments":{"default":false,"type":"boolean"},"hasRevisions":{"default":true,"type":"boolean"},"hasWorkflow":{"default":false,"type":"boolean"},"canCreate":{"default":true,"type":"boolean"},"canRead":{"default":true,"type":"boolean"},"canUpdate":{"default":true,"type":"boolean"},"canDelete":{"default":true,"type":"boolean"},"canPublish":{"default":true,"type":"boolean"},"listLayout":{"default":"TABLE","type":"string","enum":["TABLE","GRID","CARDS","LIST"]},"detailLayout":{"default":"FORM","type":"string","enum":["FORM","TABS","ACCORDION","SIDEBAR"]},"embedTemplate":{"type":"string"},"embedSettings":{"type":"string"},"hasSubscriptionPlans":{"default":false,"type":"boolean"},"subscriptionPlanIds":{"default":[],"type":"array","items":{"type":"string"}},"defaultSubscriptionPlan":{"type":"string"},"allowPlanSelection":{"default":true,"type":"boolean"},"subscriptionMode":{"default":"REQUIRED","type":"string","enum":["REQUIRED","OPTIONAL","UPGRADE_ONLY"]},"redirectAfterSubscription":{"type":"string"},"showPricingTable":{"default":true,"type":"boolean"},"enableTrialAccess":{"default":false,"type":"boolean"},"gatedContent":{"default":false,"type":"boolean"},"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.customContent.deleteContentType":{"post":{"operationId":"cms_customContent_deleteContentType","summary":"Custom Content.delete Content Type","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.customContent.getFields":{"get":{"operationId":"cms_customContent_getFields","summary":"Custom Content.get Fields","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"contentTypeId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"fieldGroupId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"}},"required":["contentTypeId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.customContent.createField":{"post":{"operationId":"cms_customContent_createField","summary":"Custom Content.create Field","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"slug":{"type":"string","minLength":1},"label":{"type":"string","minLength":1},"description":{"type":"string"},"placeholder":{"type":"string"},"helpText":{"type":"string"},"fieldType":{"type":"string","enum":["TEXT","TEXTAREA","RICH_TEXT","NUMBER","EMAIL","URL","PASSWORD","DATE","DATETIME","TIME","BOOLEAN","SELECT","MULTI_SELECT","RADIO","CHECKBOX","FILE","IMAGE","GALLERY","RELATION","JSON","CODE","COLOR","RANGE","RATING","LOCATION","EMBED","SUBSCRIPTION_PLAN","SUBSCRIPTION_PRICING_TABLE","SUBSCRIPTION_CHECKOUT_BUTTON","SUBSCRIPTION_TRIAL_SIGNUP"]},"dataType":{"type":"string","enum":["STRING","TEXT","INTEGER","FLOAT","BOOLEAN","DATE","DATETIME","JSON","ARRAY","OBJECT"]},"inputType":{"type":"string","enum":["TEXT","TEXTAREA","RICH_TEXT","NUMBER","EMAIL","URL","PASSWORD","DATE","DATETIME_LOCAL","TIME","CHECKBOX","RADIO","SELECT","MULTI_SELECT","FILE","IMAGE","COLOR","RANGE","HIDDEN","CUSTOM"]},"contentTypeId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"fieldGroupId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"isRequired":{"default":false,"type":"boolean"},"isUnique":{"default":false,"type":"boolean"},"isIndexed":{"default":false,"type":"boolean"},"isSearchable":{"default":true,"type":"boolean"},"isSortable":{"default":true,"type":"boolean"},"isFilterable":{"default":true,"type":"boolean"},"minLength":{"type":"number"},"maxLength":{"type":"number"},"minValue":{"type":"number"},"maxValue":{"type":"number"},"pattern":{"type":"string"},"options":{"type":"array","items":{"type":"object","properties":{"value":{"type":"string"},"label":{"type":"string"},"description":{"type":"string"}},"required":["value","label"],"additionalProperties":false}},"defaultValue":{},"displayOrder":{"default":0,"type":"number"},"width":{"default":"FULL","type":"string","enum":["QUARTER","THIRD","HALF","TWO_THIRDS","THREE_QUARTERS","FULL"]},"isVisible":{"default":true,"type":"boolean"},"isEditable":{"default":true,"type":"boolean"},"conditionalLogic":{"type":"object","properties":{"conditions":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string"},"operator":{"type":"string","enum":["equals","not_equals","contains","not_contains","greater_than","less_than"]},"value":{}},"required":["field","operator","value"],"additionalProperties":false}},"action":{"type":"string","enum":["show","hide","require","disable"]}},"required":["conditions","action"],"additionalProperties":false}},"required":["name","slug","label","fieldType","dataType","inputType","contentTypeId","isRequired","isUnique","isIndexed","isSearchable","isSortable","isFilterable","displayOrder","width","isVisible","isEditable"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.customContent.updateField":{"post":{"operationId":"cms_customContent_updateField","summary":"Custom Content.update Field","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"slug":{"type":"string","minLength":1},"label":{"type":"string","minLength":1},"description":{"type":"string"},"placeholder":{"type":"string"},"helpText":{"type":"string"},"fieldType":{"type":"string","enum":["TEXT","TEXTAREA","RICH_TEXT","NUMBER","EMAIL","URL","PASSWORD","DATE","DATETIME","TIME","BOOLEAN","SELECT","MULTI_SELECT","RADIO","CHECKBOX","FILE","IMAGE","GALLERY","RELATION","JSON","CODE","COLOR","RANGE","RATING","LOCATION","EMBED","SUBSCRIPTION_PLAN","SUBSCRIPTION_PRICING_TABLE","SUBSCRIPTION_CHECKOUT_BUTTON","SUBSCRIPTION_TRIAL_SIGNUP"]},"dataType":{"type":"string","enum":["STRING","TEXT","INTEGER","FLOAT","BOOLEAN","DATE","DATETIME","JSON","ARRAY","OBJECT"]},"inputType":{"type":"string","enum":["TEXT","TEXTAREA","RICH_TEXT","NUMBER","EMAIL","URL","PASSWORD","DATE","DATETIME_LOCAL","TIME","CHECKBOX","RADIO","SELECT","MULTI_SELECT","FILE","IMAGE","COLOR","RANGE","HIDDEN","CUSTOM"]},"contentTypeId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"fieldGroupId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"isRequired":{"default":false,"type":"boolean"},"isUnique":{"default":false,"type":"boolean"},"isIndexed":{"default":false,"type":"boolean"},"isSearchable":{"default":true,"type":"boolean"},"isSortable":{"default":true,"type":"boolean"},"isFilterable":{"default":true,"type":"boolean"},"minLength":{"type":"number"},"maxLength":{"type":"number"},"minValue":{"type":"number"},"maxValue":{"type":"number"},"pattern":{"type":"string"},"options":{"type":"array","items":{"type":"object","properties":{"value":{"type":"string"},"label":{"type":"string"},"description":{"type":"string"}},"required":["value","label"],"additionalProperties":false}},"defaultValue":{},"displayOrder":{"default":0,"type":"number"},"width":{"default":"FULL","type":"string","enum":["QUARTER","THIRD","HALF","TWO_THIRDS","THREE_QUARTERS","FULL"]},"isVisible":{"default":true,"type":"boolean"},"isEditable":{"default":true,"type":"boolean"},"conditionalLogic":{"type":"object","properties":{"conditions":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string"},"operator":{"type":"string","enum":["equals","not_equals","contains","not_contains","greater_than","less_than"]},"value":{}},"required":["field","operator","value"],"additionalProperties":false}},"action":{"type":"string","enum":["show","hide","require","disable"]}},"required":["conditions","action"],"additionalProperties":false},"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.customContent.deleteField":{"post":{"operationId":"cms_customContent_deleteField","summary":"Custom Content.delete Field","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.customContent.reorderFields":{"post":{"operationId":"cms_customContent_reorderFields","summary":"Custom Content.reorder Fields","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"fieldIds":{"type":"array","items":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"}}},"required":["fieldIds"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.customContent.getFieldGroups":{"get":{"operationId":"cms_customContent_getFieldGroups","summary":"Custom Content.get Field Groups","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"contentTypeId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"}},"required":["contentTypeId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.customContent.createFieldGroup":{"post":{"operationId":"cms_customContent_createFieldGroup","summary":"Custom Content.create Field Group","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"slug":{"type":"string","minLength":1},"description":{"type":"string"},"contentTypeId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"displayOrder":{"default":0,"type":"number"},"isCollapsible":{"default":false,"type":"boolean"},"isCollapsed":{"default":false,"type":"boolean"},"conditionalLogic":{"type":"object","properties":{"conditions":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string"},"operator":{"type":"string","enum":["equals","not_equals","contains","not_contains","greater_than","less_than"]},"value":{}},"required":["field","operator","value"],"additionalProperties":false}},"action":{"type":"string","enum":["show","hide","require","disable"]}},"required":["conditions","action"],"additionalProperties":false}},"required":["name","slug","contentTypeId","displayOrder","isCollapsible","isCollapsed"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.customContent.updateFieldGroup":{"post":{"operationId":"cms_customContent_updateFieldGroup","summary":"Custom Content.update Field Group","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"slug":{"type":"string","minLength":1},"description":{"type":"string"},"contentTypeId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"displayOrder":{"default":0,"type":"number"},"isCollapsible":{"default":false,"type":"boolean"},"isCollapsed":{"default":false,"type":"boolean"},"conditionalLogic":{"type":"object","properties":{"conditions":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string"},"operator":{"type":"string","enum":["equals","not_equals","contains","not_contains","greater_than","less_than"]},"value":{}},"required":["field","operator","value"],"additionalProperties":false}},"action":{"type":"string","enum":["show","hide","require","disable"]}},"required":["conditions","action"],"additionalProperties":false},"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.customContent.deleteFieldGroup":{"post":{"operationId":"cms_customContent_deleteFieldGroup","summary":"Custom Content.delete Field Group","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.customContent.getTemplates":{"get":{"operationId":"cms_customContent_getTemplates","summary":"Custom Content.get Templates","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"contentTypeId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"category":{"type":"string"},"difficulty":{"type":"string","enum":["BEGINNER","INTERMEDIATE","ADVANCED","EXPERT"]},"tags":{"type":"array","items":{"type":"string"}},"isActive":{"type":"boolean"},"isPublic":{"type":"boolean"},"search":{"type":"string"},"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.customContent.createTemplate":{"post":{"operationId":"cms_customContent_createTemplate","summary":"Custom Content.create Template","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"slug":{"type":"string","minLength":1},"description":{"type":"string"},"contentTypeId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"category":{"default":"general","type":"string"},"previewImage":{"type":"string"},"tags":{"default":[],"type":"array","items":{"type":"string"}},"difficulty":{"default":"BEGINNER","type":"string","enum":["BEGINNER","INTERMEDIATE","ADVANCED","EXPERT"]},"templateData":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}},"fieldStructure":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}},"layoutConfig":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}},"styleConfig":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}},"isDefault":{"default":false,"type":"boolean"},"isActive":{"default":true,"type":"boolean"},"isPublic":{"default":true,"type":"boolean"},"isPremium":{"default":false,"type":"boolean"},"version":{"default":"1.0.0","type":"string"},"changelog":{"type":"string"}},"required":["name","slug","contentTypeId","category","tags","difficulty","templateData","isDefault","isActive","isPublic","isPremium","version"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.customContent.updateTemplate":{"post":{"operationId":"cms_customContent_updateTemplate","summary":"Custom Content.update Template","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"slug":{"type":"string","minLength":1},"description":{"type":"string"},"contentTypeId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"category":{"default":"general","type":"string"},"previewImage":{"type":"string"},"tags":{"default":[],"type":"array","items":{"type":"string"}},"difficulty":{"default":"BEGINNER","type":"string","enum":["BEGINNER","INTERMEDIATE","ADVANCED","EXPERT"]},"templateData":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}},"fieldStructure":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}},"layoutConfig":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}},"styleConfig":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}},"isDefault":{"default":false,"type":"boolean"},"isActive":{"default":true,"type":"boolean"},"isPublic":{"default":true,"type":"boolean"},"isPremium":{"default":false,"type":"boolean"},"version":{"default":"1.0.0","type":"string"},"changelog":{"type":"string"},"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.customContent.deleteTemplate":{"post":{"operationId":"cms_customContent_deleteTemplate","summary":"Custom Content.delete Template","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.customContent.getTemplate":{"get":{"operationId":"cms_customContent_getTemplate","summary":"Custom Content.get Template","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.customContent.useTemplate":{"post":{"operationId":"cms_customContent_useTemplate","summary":"Custom Content.use Template","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"templateId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"title":{"type":"string","minLength":1},"slug":{"type":"string","minLength":1},"customData":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}}},"required":["templateId","title","slug"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.customContent.getTemplateCategories":{"get":{"operationId":"cms_customContent_getTemplateCategories","summary":"Custom Content.get Template Categories","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/cms.customContent.getPredefinedTemplates":{"get":{"operationId":"cms_customContent_getPredefinedTemplates","summary":"Custom Content.get Predefined Templates","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"description":{"type":"string"},"category":{"type":"string"},"difficulty":{"type":"string"},"tags":{"type":"array","items":{"type":"string"}},"templateData":{"type":"object","properties":{"title":{"type":"string"},"introduction":{"type":"string"},"content":{"type":"string"},"conclusion":{"type":"string"},"tags":{"type":"array","items":{"type":"string"}},"featured":{"type":"boolean"}}},"fieldStructure":{"type":"object","properties":{"title":{"type":"object","properties":{"type":{"type":"string"},"required":{"type":"boolean"}}},"introduction":{"type":"object","properties":{"type":{"type":"string"},"required":{"type":"boolean"}}},"content":{"type":"object","properties":{"type":{"type":"string"},"required":{"type":"boolean"}}},"conclusion":{"type":"object","properties":{"type":{"type":"string"},"required":{"type":"boolean"}}},"tags":{"type":"object","properties":{"type":{"type":"string"},"required":{"type":"boolean"}}},"featured":{"type":"object","properties":{"type":{"type":"string"},"required":{"type":"boolean"}}}}},"previewImage":{"type":"string"}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"contentTypeId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.customContent.getContentInstances":{"get":{"operationId":"cms_customContent_getContentInstances","summary":"Custom Content.get Content Instances","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"contentTypeId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0},"search":{"type":"string"},"status":{"type":"string","enum":["DRAFT","PUBLISHED","ARCHIVED","SCHEDULED","PRIVATE"]}},"required":["contentTypeId","limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.customContent.getContentInstance":{"get":{"operationId":"cms_customContent_getContentInstance","summary":"Custom Content.get Content Instance","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.customContent.createContentInstance":{"post":{"operationId":"cms_customContent_createContentInstance","summary":"Custom Content.create Content Instance","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"title":{"type":"string","minLength":1},"slug":{"type":"string","minLength":1},"contentTypeId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"status":{"default":"DRAFT","type":"string","enum":["DRAFT","PUBLISHED","ARCHIVED","SCHEDULED","PRIVATE"]},"publishedAt":{},"expiresAt":{},"metaTitle":{"type":"string"},"metaDescription":{"type":"string"},"fieldValues":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}},"categoryIds":{"type":"array","items":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"}},"tagIds":{"type":"array","items":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"}}},"required":["title","slug","contentTypeId","status"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.customContent.updateContentInstance":{"post":{"operationId":"cms_customContent_updateContentInstance","summary":"Custom Content.update Content Instance","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"title":{"type":"string","minLength":1},"slug":{"type":"string","minLength":1},"contentTypeId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"status":{"default":"DRAFT","type":"string","enum":["DRAFT","PUBLISHED","ARCHIVED","SCHEDULED","PRIVATE"]},"publishedAt":{},"expiresAt":{},"metaTitle":{"type":"string"},"metaDescription":{"type":"string"},"fieldValues":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}},"categoryIds":{"type":"array","items":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"}},"tagIds":{"type":"array","items":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"}},"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.customContent.deleteContentInstance":{"post":{"operationId":"cms_customContent_deleteContentInstance","summary":"Custom Content.delete Content Instance","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.customContent.getCategories":{"get":{"operationId":"cms_customContent_getCategories","summary":"Custom Content.get Categories","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"search":{"type":"string"},"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.customContent.createCategory":{"post":{"operationId":"cms_customContent_createCategory","summary":"Custom Content.create Category","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"slug":{"type":"string","minLength":1},"description":{"type":"string"}},"required":["name","slug"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.customContent.getTags":{"get":{"operationId":"cms_customContent_getTags","summary":"Custom Content.get Tags","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"search":{"type":"string"},"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.customContent.createTag":{"post":{"operationId":"cms_customContent_createTag","summary":"Custom Content.create Tag","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"slug":{"type":"string","minLength":1}},"required":["name","slug"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.customContent.getStatistics":{"get":{"operationId":"cms_customContent_getStatistics","summary":"Custom Content.get Statistics","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"contentTypes":{"type":"integer"},"instances":{"type":"integer"},"fields":{"type":"integer"},"templates":{"type":"integer"},"published":{"type":"integer"},"draft":{"type":"integer"}}}}}}}}},"/api/trpc/cms.customContent.getEmbeddableContentTypes":{"get":{"operationId":"cms_customContent_getEmbeddableContentTypes","summary":"Custom Content.get Embeddable Content Types","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/cms.customContent.getEmbeddableContent":{"get":{"operationId":"cms_customContent_getEmbeddableContent","summary":"Custom Content.get Embeddable Content","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"instances":{"type":"array","items":{}},"totalCount":{"type":"integer"},"hasMore":{"type":"boolean"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"search":{"type":"string"},"contentTypeId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.dynamicContent.getContentRelationships":{"get":{"operationId":"cms_dynamicContent_getContentRelationships","summary":"Dynamic Content.get Content Relationships","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"relationships":{"type":"array","items":{}},"total":{"type":"integer"},"hasMore":{"type":"boolean"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0},"search":{"type":"string"},"relationshipType":{"type":"string","enum":["ONE_TO_ONE","ONE_TO_MANY","MANY_TO_MANY","HIERARCHICAL","REFERENCE","EMBED","LINK"]},"sourceContentType":{"type":"string"},"targetContentType":{"type":"string"}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.dynamicContent.createContentRelationship":{"post":{"operationId":"cms_dynamicContent_createContentRelationship","summary":"Dynamic Content.create Content Relationship","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"slug":{"type":"string","minLength":1},"description":{"type":"string"},"relationshipType":{"type":"string","enum":["ONE_TO_ONE","ONE_TO_MANY","MANY_TO_MANY","HIERARCHICAL","REFERENCE","EMBED","LINK"]},"sourceContentType":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"sourceContentId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"targetContentType":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"targetContentId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"cardinality":{"default":"ONE_TO_MANY","type":"string","enum":["ONE_TO_ONE","ONE_TO_MANY","MANY_TO_ONE","MANY_TO_MANY"]},"isRequired":{"default":false,"type":"boolean"},"isReciprocal":{"default":false,"type":"boolean"},"sortOrder":{"default":0,"type":"number"},"maxItems":{"type":"number"},"minItems":{"type":"number"},"metadata":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"conditions":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}}},"required":["name","slug","relationshipType","sourceContentType","targetContentType","cardinality","isRequired","isReciprocal","sortOrder"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.dynamicContent.getRelationshipInstances":{"get":{"operationId":"cms_dynamicContent_getRelationshipInstances","summary":"Dynamic Content.get Relationship Instances","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"relationshipId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0},"sourceInstanceId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"targetInstanceId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"}},"required":["relationshipId","limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.dynamicContent.createRelationshipInstance":{"post":{"operationId":"cms_dynamicContent_createRelationshipInstance","summary":"Dynamic Content.create Relationship Instance","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"relationshipId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"sourceInstanceId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"sourceInstanceType":{"type":"string"},"targetInstanceId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"targetInstanceType":{"type":"string"},"metadata":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"weight":{"default":0,"type":"number"}},"required":["relationshipId","sourceInstanceId","sourceInstanceType","targetInstanceId","targetInstanceType","weight"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.dynamicContent.getDynamicQueries":{"get":{"operationId":"cms_dynamicContent_getDynamicQueries","summary":"Dynamic Content.get Dynamic Queries","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"queries":{"type":"array","items":{}},"total":{"type":"integer"},"hasMore":{"type":"boolean"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0},"search":{"type":"string"},"queryType":{"type":"string","enum":["SIMPLE","COMPLEX","AGGREGATION","RELATIONSHIP","SEARCH","RECOMMENDATION"]},"isActive":{"type":"boolean"}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.dynamicContent.createDynamicQuery":{"post":{"operationId":"cms_dynamicContent_createDynamicQuery","summary":"Dynamic Content.create Dynamic Query","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"slug":{"type":"string","minLength":1},"description":{"type":"string"},"queryType":{"type":"string","enum":["SIMPLE","COMPLEX","AGGREGATION","RELATIONSHIP","SEARCH","RECOMMENDATION"]},"contentTypes":{"type":"array","items":{"type":"string"}},"conditions":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"sorting":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"pagination":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"includeRelated":{"default":false,"type":"boolean"},"cacheEnabled":{"default":true,"type":"boolean"},"cacheTtl":{"default":300,"type":"number"},"isActive":{"default":true,"type":"boolean"},"executeOnSchedule":{"default":false,"type":"boolean"},"scheduleExpression":{"type":"string"},"resultLimit":{"default":50,"type":"number"},"resultFormat":{"default":"JSON","type":"string","enum":["JSON","XML","CSV","HTML","RSS"]}},"required":["name","slug","queryType","contentTypes","includeRelated","cacheEnabled","cacheTtl","isActive","executeOnSchedule","resultLimit","resultFormat"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.dynamicContent.executeDynamicQuery":{"post":{"operationId":"cms_dynamicContent_executeDynamicQuery","summary":"Dynamic Content.execute Dynamic Query","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"queryId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"forceRefresh":{"default":false,"type":"boolean"}},"required":["queryId","forceRefresh"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.dynamicContent.getContentGenerators":{"get":{"operationId":"cms_dynamicContent_getContentGenerators","summary":"Dynamic Content.get Content Generators","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"generators":{"type":"array","items":{}},"total":{"type":"integer"},"hasMore":{"type":"boolean"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0},"search":{"type":"string"},"generatorType":{"type":"string","enum":["TEMPLATE_BASED","RULE_BASED","AI_GENERATED","AGGREGATION","SYNDICATION","WEBHOOK"]},"isActive":{"type":"boolean"}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.dynamicContent.createContentGenerator":{"post":{"operationId":"cms_dynamicContent_createContentGenerator","summary":"Dynamic Content.create Content Generator","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"slug":{"type":"string","minLength":1},"description":{"type":"string"},"generatorType":{"type":"string","enum":["TEMPLATE_BASED","RULE_BASED","AI_GENERATED","AGGREGATION","SYNDICATION","WEBHOOK"]},"sourceQueryId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"targetContentType":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"generationRules":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"templateData":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"isActive":{"default":true,"type":"boolean"},"executeOnSchedule":{"default":false,"type":"boolean"},"scheduleExpression":{"type":"string"},"triggerEvents":{"default":[],"type":"array","items":{"type":"string","enum":["CONTENT_CREATED","CONTENT_UPDATED","CONTENT_DELETED","CONTENT_PUBLISHED","RELATIONSHIP_CREATED","RELATIONSHIP_UPDATED","SCHEDULED","MANUAL"]}},"executeOnTrigger":{"default":false,"type":"boolean"},"maxGenerations":{"type":"number"},"generationInterval":{"type":"number"}},"required":["name","slug","generatorType","targetContentType","isActive","executeOnSchedule","triggerEvents","executeOnTrigger"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.dynamicContent.getContentAggregations":{"get":{"operationId":"cms_dynamicContent_getContentAggregations","summary":"Dynamic Content.get Content Aggregations","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"aggregations":{"type":"array","items":{}},"total":{"type":"integer"},"hasMore":{"type":"boolean"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0},"search":{"type":"string"},"aggregationType":{"type":"string","enum":["COUNT","SUM","AVERAGE","MIN","MAX","GROUP_BY","CUSTOM"]}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.dynamicContent.createContentAggregation":{"post":{"operationId":"cms_dynamicContent_createContentAggregation","summary":"Dynamic Content.create Content Aggregation","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"slug":{"type":"string","minLength":1},"description":{"type":"string"},"aggregationType":{"type":"string","enum":["COUNT","SUM","AVERAGE","MIN","MAX","GROUP_BY","CUSTOM"]},"sourceContentTypes":{"type":"array","items":{"type":"string"}},"aggregationRules":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"computedFields":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"cacheEnabled":{"default":true,"type":"boolean"},"cacheTtl":{"default":600,"type":"number"},"autoUpdate":{"default":true,"type":"boolean"},"updateTriggers":{"default":[],"type":"array","items":{"type":"string","enum":["CONTENT_CHANGE","RELATIONSHIP_CHANGE","SCHEDULED","MANUAL"]}}},"required":["name","slug","aggregationType","sourceContentTypes","cacheEnabled","cacheTtl","autoUpdate","updateTriggers"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.dynamicContent.getContentHooks":{"get":{"operationId":"cms_dynamicContent_getContentHooks","summary":"Dynamic Content.get Content Hooks","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"hooks":{"type":"array","items":{}},"total":{"type":"integer"},"hasMore":{"type":"boolean"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0},"search":{"type":"string"},"hookType":{"type":"string","enum":["PRE_CREATE","POST_CREATE","PRE_UPDATE","POST_UPDATE","PRE_DELETE","POST_DELETE","PRE_PUBLISH","POST_PUBLISH","CUSTOM"]},"isActive":{"type":"boolean"}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.dynamicContent.createContentHook":{"post":{"operationId":"cms_dynamicContent_createContentHook","summary":"Dynamic Content.create Content Hook","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"slug":{"type":"string","minLength":1},"description":{"type":"string"},"hookType":{"type":"string","enum":["PRE_CREATE","POST_CREATE","PRE_UPDATE","POST_UPDATE","PRE_DELETE","POST_DELETE","PRE_PUBLISH","POST_PUBLISH","CUSTOM"]},"eventTypes":{"type":"array","items":{"type":"string","enum":["CONTENT_CREATED","CONTENT_UPDATED","CONTENT_DELETED","CONTENT_PUBLISHED","CONTENT_UNPUBLISHED","RELATIONSHIP_CREATED","RELATIONSHIP_UPDATED","RELATIONSHIP_DELETED","FIELD_UPDATED","STATUS_CHANGED"]}},"contentTypes":{"type":"array","items":{"type":"string"}},"conditions":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"actions":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"isActive":{"default":true,"type":"boolean"},"priority":{"default":0,"type":"number"},"maxRetries":{"default":3,"type":"number"},"retryDelay":{"default":1000,"type":"number"}},"required":["name","slug","hookType","eventTypes","contentTypes","isActive","priority","maxRetries","retryDelay"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.dynamicContent.getDynamicContentStats":{"get":{"operationId":"cms_dynamicContent_getDynamicContentStats","summary":"Dynamic Content.get Dynamic Content Stats","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"relationshipsCount":{"type":"integer"},"relationshipInstancesCount":{"type":"integer"},"dynamicQueriesCount":{"type":"integer"},"contentGeneratorsCount":{"type":"integer"},"aggregationsCount":{"type":"integer"},"hooksCount":{"type":"integer"},"recentExecutions":{"type":"array","items":{}}}}}}}}}},"/api/trpc/cms.publishingAutomation.getScheduleRules":{"get":{"operationId":"cms_publishingAutomation_getScheduleRules","summary":"Publishing Automation.get Schedule Rules","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"rules":{"type":"array","items":{}},"total":{"type":"integer"},"hasMore":{"type":"boolean"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0},"search":{"type":"string"},"ruleType":{"type":"string","enum":["TIME_BASED","CONTENT_BASED","EVENT_BASED","RECURRING","CONDITIONAL"]},"isActive":{"type":"boolean"}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.publishingAutomation.createScheduleRule":{"post":{"operationId":"cms_publishingAutomation_createScheduleRule","summary":"Publishing Automation.create Schedule Rule","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"slug":{"type":"string","minLength":1},"description":{"type":"string"},"ruleType":{"type":"string","enum":["TIME_BASED","CONTENT_BASED","EVENT_BASED","RECURRING","CONDITIONAL"]},"isActive":{"default":true,"type":"boolean"},"priority":{"default":0,"type":"number"},"contentTypes":{"type":"array","items":{"type":"string"}},"categoryFilters":{"default":[],"type":"array","items":{"type":"string"}},"tagFilters":{"default":[],"type":"array","items":{"type":"string"}},"authorFilters":{"default":[],"type":"array","items":{"type":"string"}},"scheduleConditions":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"timeZone":{"default":"&","type":"string"},"publishingRules":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"autoPublish":{"default":true,"type":"boolean"},"requireApproval":{"default":false,"type":"boolean"},"maxExecutions":{"type":"number"},"executionPeriod":{"type":"string","enum":["MINUTE","HOUR","DAY","WEEK","MONTH","YEAR"]}},"required":["name","slug","ruleType","isActive","priority","contentTypes","categoryFilters","tagFilters","authorFilters","timeZone","autoPublish","requireApproval"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.publishingAutomation.getBulkOperations":{"get":{"operationId":"cms_publishingAutomation_getBulkOperations","summary":"Publishing Automation.get Bulk Operations","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"operations":{"type":"array","items":{}},"total":{"type":"integer"},"hasMore":{"type":"boolean"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0},"search":{"type":"string"},"operationType":{"type":"string","enum":["PUBLISH","UNPUBLISH","SCHEDULE","ARCHIVE","DELETE","UPDATE_STATUS","UPDATE_METADATA","APPLY_TEMPLATE"]},"status":{"type":"string","enum":["PENDING","RUNNING","COMPLETED","FAILED","CANCELLED","PARTIALLY_COMPLETED"]}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.publishingAutomation.createBulkOperation":{"post":{"operationId":"cms_publishingAutomation_createBulkOperation","summary":"Publishing Automation.create Bulk Operation","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"operationType":{"type":"string","enum":["PUBLISH","UNPUBLISH","SCHEDULE","ARCHIVE","DELETE","UPDATE_STATUS","UPDATE_METADATA","APPLY_TEMPLATE"]},"contentSelection":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"contentIds":{"default":[],"type":"array","items":{"type":"string"}},"operationConfig":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"scheduleRuleId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"isScheduled":{"default":false,"type":"boolean"},"scheduledFor":{},"batchSize":{"default":10,"type":"number"},"delayBetweenBatches":{"default":1000,"type":"number"}},"required":["name","operationType","contentIds","isScheduled","batchSize","delayBetweenBatches"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.publishingAutomation.executeBulkOperation":{"post":{"operationId":"cms_publishingAutomation_executeBulkOperation","summary":"Publishing Automation.execute Bulk Operation","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"operationId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"}},"required":["operationId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.publishingAutomation.getPipelines":{"get":{"operationId":"cms_publishingAutomation_getPipelines","summary":"Publishing Automation.get Pipelines","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"pipelines":{"type":"array","items":{}},"total":{"type":"integer"},"hasMore":{"type":"boolean"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0},"search":{"type":"string"},"pipelineType":{"type":"string","enum":["PUBLISHING","APPROVAL","DISTRIBUTION","OPTIMIZATION","INTEGRATION","CUSTOM"]},"isActive":{"type":"boolean"}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.publishingAutomation.createPipeline":{"post":{"operationId":"cms_publishingAutomation_createPipeline","summary":"Publishing Automation.create Pipeline","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"slug":{"type":"string","minLength":1},"description":{"type":"string"},"pipelineType":{"type":"string","enum":["PUBLISHING","APPROVAL","DISTRIBUTION","OPTIMIZATION","INTEGRATION","CUSTOM"]},"isActive":{"default":true,"type":"boolean"},"contentTypes":{"type":"array","items":{"type":"string"}},"triggers":{"type":"array","items":{"type":"string","enum":["CONTENT_CREATED","CONTENT_UPDATED","CONTENT_PUBLISHED","CONTENT_SCHEDULED","APPROVAL_RECEIVED","DEADLINE_APPROACHING","MANUAL","SCHEDULED"]}},"stages":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"autoExecute":{"default":true,"type":"boolean"},"requireApproval":{"default":false,"type":"boolean"},"parallelExecution":{"default":false,"type":"boolean"}},"required":["name","slug","pipelineType","isActive","contentTypes","triggers","autoExecute","requireApproval","parallelExecution"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.publishingAutomation.getExpirationRules":{"get":{"operationId":"cms_publishingAutomation_getExpirationRules","summary":"Publishing Automation.get Expiration Rules","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"rules":{"type":"array","items":{}},"total":{"type":"integer"},"hasMore":{"type":"boolean"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0},"search":{"type":"string"},"isActive":{"type":"boolean"}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.publishingAutomation.createExpirationRule":{"post":{"operationId":"cms_publishingAutomation_createExpirationRule","summary":"Publishing Automation.create Expiration Rule","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"slug":{"type":"string","minLength":1},"description":{"type":"string"},"isActive":{"default":true,"type":"boolean"},"contentTypes":{"type":"array","items":{"type":"string"}},"categoryFilters":{"default":[],"type":"array","items":{"type":"string"}},"tagFilters":{"default":[],"type":"array","items":{"type":"string"}},"expirationConditions":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"expirationAction":{"type":"string","enum":["ARCHIVE","UNPUBLISH","DELETE","NOTIFY_ONLY","EXTEND","TRANSFER_OWNERSHIP"]},"sendWarnings":{"default":true,"type":"boolean"},"warningDays":{"default":[7,3,1],"type":"array","items":{"type":"number"}}},"required":["name","slug","isActive","contentTypes","categoryFilters","tagFilters","expirationAction","sendWarnings","warningDays"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.publishingAutomation.getIntegrationHooks":{"get":{"operationId":"cms_publishingAutomation_getIntegrationHooks","summary":"Publishing Automation.get Integration Hooks","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"hooks":{"type":"array","items":{}},"total":{"type":"integer"},"hasMore":{"type":"boolean"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0},"search":{"type":"string"},"hookType":{"type":"string","enum":["WEBHOOK","API_CALL","EMAIL","SLACK","DISCORD","SOCIAL_MEDIA","CDN","SEARCH_INDEX","ANALYTICS","CUSTOM"]},"isActive":{"type":"boolean"}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.publishingAutomation.createIntegrationHook":{"post":{"operationId":"cms_publishingAutomation_createIntegrationHook","summary":"Publishing Automation.create Integration Hook","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"slug":{"type":"string","minLength":1},"description":{"type":"string"},"hookType":{"type":"string","enum":["WEBHOOK","API_CALL","EMAIL","SLACK","DISCORD","SOCIAL_MEDIA","CDN","SEARCH_INDEX","ANALYTICS","CUSTOM"]},"isActive":{"default":true,"type":"boolean"},"triggerEvents":{"type":"array","items":{"type":"string","enum":["CONTENT_PUBLISHED","CONTENT_UNPUBLISHED","CONTENT_SCHEDULED","CONTENT_EXPIRED","CONTENT_ARCHIVED","BULK_OPERATION_COMPLETED","PIPELINE_COMPLETED","APPROVAL_RECEIVED","DEADLINE_MISSED"]}},"contentTypes":{"type":"array","items":{"type":"string"}},"integrationConfig":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"priority":{"default":0,"type":"number"},"maxRetries":{"default":3,"type":"number"},"retryDelay":{"default":1000,"type":"number"},"timeout":{"default":30000,"type":"number"}},"required":["name","slug","hookType","isActive","triggerEvents","contentTypes","priority","maxRetries","retryDelay","timeout"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.publishingAutomation.getPublishingAnalytics":{"get":{"operationId":"cms_publishingAutomation_getPublishingAnalytics","summary":"Publishing Automation.get Publishing Analytics","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"period":{"default":"HOUR","type":"string","enum":["HOUR","DAY","WEEK","MONTH","QUARTER","YEAR"]},"startDate":{},"endDate":{},"contentType":{"type":"string"}},"required":["period","startDate","endDate"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.publishingAutomation.getPublishingStats":{"get":{"operationId":"cms_publishingAutomation_getPublishingStats","summary":"Publishing Automation.get Publishing Stats","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"scheduleRulesCount":{"type":"integer"},"activeScheduleRulesCount":{"type":"integer"},"bulkOperationsCount":{"type":"integer"},"runningOperationsCount":{"type":"integer"},"pipelinesCount":{"type":"integer"},"activePipelinesCount":{"type":"integer"},"expirationRulesCount":{"type":"integer"},"integrationHooksCount":{"type":"integer"},"recentExecutions":{"type":"array","items":{}}}}}}}}}},"/api/trpc/cms.scheduledPublishing.getSchedules":{"get":{"operationId":"cms_scheduledPublishing_getSchedules","summary":"Scheduled Publishing.get Schedules","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0},"search":{"type":"string"},"contentType":{"type":"string"},"status":{"type":"string","enum":["PENDING","APPROVED","ACTIVE","PAUSED","COMPLETED","FAILED","CANCELLED"]},"recurringOnly":{"type":"boolean"}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.scheduledPublishing.getScheduleById":{"get":{"operationId":"cms_scheduledPublishing_getScheduleById","summary":"Scheduled Publishing.get Schedule By Id","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.scheduledPublishing.createSchedule":{"post":{"operationId":"cms_scheduledPublishing_createSchedule","summary":"Scheduled Publishing.create Schedule","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"contentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"contentType":{"type":"string","minLength":1},"title":{"type":"string","minLength":1},"description":{"type":"string"},"publishAt":{},"unpublishAt":{},"isRecurring":{"default":false,"type":"boolean"},"recurringType":{"type":"string","enum":["DAILY","WEEKLY","MONTHLY","YEARLY","CUSTOM"]},"recurringInterval":{"type":"number","minimum":1},"recurringDays":{"type":"array","items":{"type":"number","minimum":0,"maximum":6}},"recurringEndDate":{},"recurringCount":{"type":"number","minimum":1},"timeZone":{"default":"&","type":"string"},"respectBusinessHours":{"default":false,"type":"boolean"},"businessHoursStart":{"type":"string"},"businessHoursEnd":{"type":"string"},"excludeWeekends":{"default":false,"type":"boolean"},"excludeHolidays":{"default":false,"type":"boolean"},"holidayCalendar":{"type":"string"},"autoGenerateContent":{"default":false,"type":"boolean"},"contentTemplate":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"contentVariables":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"requireApproval":{"default":false,"type":"boolean"},"approvalDeadline":{},"notifyOnPublish":{"default":true,"type":"boolean"},"notifyOnUnpublish":{"default":false,"type":"boolean"},"notifyOnFailure":{"default":true,"type":"boolean"},"notificationEmails":{"default":[],"type":"array","items":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"}},"notificationSlack":{"type":"string"}},"required":["contentId","contentType","title","publishAt","isRecurring","timeZone","respectBusinessHours","excludeWeekends","excludeHolidays","autoGenerateContent","requireApproval","notifyOnPublish","notifyOnUnpublish","notifyOnFailure","notificationEmails"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.scheduledPublishing.updateSchedule":{"post":{"operationId":"cms_scheduledPublishing_updateSchedule","summary":"Scheduled Publishing.update Schedule","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"title":{"type":"string","minLength":1},"description":{"type":"string"},"publishAt":{},"unpublishAt":{},"isRecurring":{"type":"boolean"},"recurringType":{"type":"string","enum":["DAILY","WEEKLY","MONTHLY","YEARLY","CUSTOM"]},"recurringInterval":{"type":"number","minimum":1},"recurringDays":{"type":"array","items":{"type":"number","minimum":0,"maximum":6}},"recurringEndDate":{},"recurringCount":{"type":"number","minimum":1},"timeZone":{"type":"string"},"respectBusinessHours":{"type":"boolean"},"businessHoursStart":{"type":"string"},"businessHoursEnd":{"type":"string"},"excludeWeekends":{"type":"boolean"},"excludeHolidays":{"type":"boolean"},"holidayCalendar":{"type":"string"},"autoGenerateContent":{"type":"boolean"},"contentTemplate":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"contentVariables":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"requireApproval":{"type":"boolean"},"approvalDeadline":{},"notifyOnPublish":{"type":"boolean"},"notifyOnUnpublish":{"type":"boolean"},"notifyOnFailure":{"type":"boolean"},"notificationEmails":{"type":"array","items":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"}},"notificationSlack":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.scheduledPublishing.deleteSchedule":{"post":{"operationId":"cms_scheduledPublishing_deleteSchedule","summary":"Scheduled Publishing.delete Schedule","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.scheduledPublishing.approveSchedule":{"post":{"operationId":"cms_scheduledPublishing_approveSchedule","summary":"Scheduled Publishing.approve Schedule","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.scheduledPublishing.pauseSchedule":{"post":{"operationId":"cms_scheduledPublishing_pauseSchedule","summary":"Scheduled Publishing.pause Schedule","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.scheduledPublishing.resumeSchedule":{"post":{"operationId":"cms_scheduledPublishing_resumeSchedule","summary":"Scheduled Publishing.resume Schedule","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.scheduledPublishing.getExpirationSchedules":{"get":{"operationId":"cms_scheduledPublishing_getExpirationSchedules","summary":"Scheduled Publishing.get Expiration Schedules","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0},"search":{"type":"string"},"contentType":{"type":"string"},"status":{"type":"string","enum":["ACTIVE","WARNING_SENT","EXPIRED","RENEWED","CANCELLED"]},"expiringWithin":{"type":"number"}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.scheduledPublishing.createExpirationSchedule":{"post":{"operationId":"cms_scheduledPublishing_createExpirationSchedule","summary":"Scheduled Publishing.create Expiration Schedule","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"contentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"contentType":{"type":"string","minLength":1},"title":{"type":"string","minLength":1},"description":{"type":"string"},"expiresAt":{},"warningDates":{"default":[],"type":"array","items":{}},"expirationAction":{"default":"CUSTOM","type":"string","enum":["UNPUBLISH","ARCHIVE","DELETE","NOTIFY_ONLY","EXTEND","TRANSFER_OWNERSHIP","CUSTOM"]},"customActions":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"autoRenew":{"default":false,"type":"boolean"},"renewalPeriod":{"type":"number","minimum":1},"renewalConditions":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"maxRenewals":{"type":"number","minimum":1},"requireApproval":{"default":false,"type":"boolean"},"approvalDeadline":{},"notifyOnWarning":{"default":true,"type":"boolean"},"notifyOnExpiration":{"default":true,"type":"boolean"},"notificationEmails":{"default":[],"type":"array","items":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"}},"notificationSlack":{"type":"string"},"backupBeforeExpire":{"default":true,"type":"boolean"},"backupLocation":{"type":"string"}},"required":["contentId","contentType","title","expiresAt","warningDates","expirationAction","autoRenew","requireApproval","notifyOnWarning","notifyOnExpiration","notificationEmails","backupBeforeExpire"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.scheduledPublishing.renewContent":{"post":{"operationId":"cms_scheduledPublishing_renewContent","summary":"Scheduled Publishing.renew Content","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"renewalPeriod":{"type":"number","minimum":1}},"required":["id","renewalPeriod"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.scheduledPublishing.getLifecycleRules":{"get":{"operationId":"cms_scheduledPublishing_getLifecycleRules","summary":"Scheduled Publishing.get Lifecycle Rules","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0},"search":{"type":"string"},"isActive":{"type":"boolean"},"frequency":{"type":"string","enum":["HOURLY","DAILY","WEEKLY","MONTHLY","CUSTOM"]}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.scheduledPublishing.createLifecycleRule":{"post":{"operationId":"cms_scheduledPublishing_createLifecycleRule","summary":"Scheduled Publishing.create Lifecycle Rule","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"slug":{"type":"string","minLength":1},"description":{"type":"string"},"isActive":{"default":true,"type":"boolean"},"priority":{"default":0,"type":"number"},"contentTypes":{"type":"array","items":{"type":"string"}},"categoryFilters":{"default":[],"type":"array","items":{"type":"string"}},"tagFilters":{"default":[],"type":"array","items":{"type":"string"}},"authorFilters":{"default":[],"type":"array","items":{"type":"string"}},"statusFilters":{"default":[],"type":"array","items":{"type":"string"}},"ageConditions":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"performanceConditions":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"customConditions":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"actions":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"actionDelay":{"default":0,"type":"number","minimum":0},"executionFrequency":{"default":"DAILY","type":"string","enum":["HOURLY","DAILY","WEEKLY","MONTHLY","CUSTOM"]}},"required":["name","slug","isActive","priority","contentTypes","categoryFilters","tagFilters","authorFilters","statusFilters","actionDelay","executionFrequency"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.scheduledPublishing.getPublishingQueue":{"get":{"operationId":"cms_scheduledPublishing_getPublishingQueue","summary":"Scheduled Publishing.get Publishing Queue","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0},"queueType":{"type":"string","enum":["PUBLISH","UNPUBLISH","UPDATE","ARCHIVE","DELETE","BULK_OPERATION","LIFECYCLE_ACTION"]},"status":{"type":"string","enum":["QUEUED","PROCESSING","COMPLETED","FAILED","CANCELLED","RETRYING"]}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.scheduledPublishing.addToQueue":{"post":{"operationId":"cms_scheduledPublishing_addToQueue","summary":"Scheduled Publishing.add To Queue","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"title":{"type":"string","minLength":1},"description":{"type":"string"},"contentId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"contentType":{"type":"string","minLength":1},"queueType":{"type":"string","enum":["PUBLISH","UNPUBLISH","UPDATE","ARCHIVE","DELETE","BULK_OPERATION","LIFECYCLE_ACTION"]},"priority":{"default":0,"type":"number"},"scheduledFor":{},"dependsOnQueue":{"default":[],"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"maxRetries":{"default":3,"type":"number","minimum":0},"retryDelay":{"default":60000,"type":"number","minimum":0}},"required":["title","contentId","contentType","queueType","priority","scheduledFor","dependsOnQueue","maxRetries","retryDelay"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.scheduledPublishing.retryQueueItem":{"post":{"operationId":"cms_scheduledPublishing_retryQueueItem","summary":"Scheduled Publishing.retry Queue Item","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.scheduledPublishing.getPublishingMetrics":{"get":{"operationId":"cms_scheduledPublishing_getPublishingMetrics","summary":"Scheduled Publishing.get Publishing Metrics","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"metrics":{"type":"array","items":{}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"metricType":{"type":"string","enum":["SCHEDULE_EXECUTION","QUEUE_PERFORMANCE","CONTENT_LIFECYCLE","EXPIRATION_TRACKING","PUBLISHING_LATENCY","ERROR_RATE","THROUGHPUT"]},"periodStart":{},"periodEnd":{},"aggregationLevel":{"type":"string","enum":["CONTENT","CATEGORY","AUTHOR","SITE","TENANT","GLOBAL"]}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.scheduledPublishing.getSchedulingStats":{"get":{"operationId":"cms_scheduledPublishing_getSchedulingStats","summary":"Scheduled Publishing.get Scheduling Stats","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"schedules":{"type":"object","properties":{"total":{"type":"integer"},"active":{"type":"integer"},"pending":{"type":"integer"},"completed":{"type":"integer"},"failed":{"type":"integer"}}},"expirations":{"type":"object","properties":{"total":{"type":"integer"},"active":{"type":"integer"},"expiringSoon":{"type":"integer"}}},"lifecycle":{"type":"object","properties":{"total":{"type":"integer"},"active":{"type":"integer"}}},"queue":{"type":"object","properties":{"queued":{"type":"integer"},"processing":{"type":"integer"},"completed":{"type":"integer"},"failed":{"type":"integer"},"retrying":{"type":"integer"}}}}}}}}}}},"/api/trpc/cms.bulkOperations.getTemplates":{"get":{"operationId":"cms_bulkOperations_getTemplates","summary":"Bulk Operations.get Templates","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0},"search":{"type":"string"},"category":{"type":"string"},"operationType":{"type":"string","enum":["PUBLISH","UNPUBLISH","SCHEDULE","ARCHIVE","DELETE","RESTORE","UPDATE_STATUS","UPDATE_METADATA","UPDATE_CATEGORIES","UPDATE_TAGS","UPDATE_AUTHORS","APPLY_TEMPLATE","TRANSFORM_CONTENT","MIGRATE_FORMAT","UPDATE_SEO","GENERATE_SITEMAP","UPDATE_REDIRECTS","OPTIMIZE_IMAGES","UPDATE_ALT_TEXT","COMPRESS_MEDIA","SYNC_EXTERNAL","EXPORT_DATA","IMPORT_DATA","CUSTOM_SCRIPT","WEBHOOK_CALL","EMAIL_NOTIFICATION"]},"isActive":{"type":"boolean"},"includePublic":{"default":true,"type":"boolean"}},"required":["limit","offset","includePublic"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.bulkOperations.createTemplate":{"post":{"operationId":"cms_bulkOperations_createTemplate","summary":"Bulk Operations.create Template","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"slug":{"type":"string","minLength":1},"description":{"type":"string"},"category":{"type":"string"},"operationType":{"type":"string","enum":["PUBLISH","UNPUBLISH","SCHEDULE","ARCHIVE","DELETE","RESTORE","UPDATE_STATUS","UPDATE_METADATA","UPDATE_CATEGORIES","UPDATE_TAGS","UPDATE_AUTHORS","APPLY_TEMPLATE","TRANSFORM_CONTENT","MIGRATE_FORMAT","UPDATE_SEO","GENERATE_SITEMAP","UPDATE_REDIRECTS","OPTIMIZE_IMAGES","UPDATE_ALT_TEXT","COMPRESS_MEDIA","SYNC_EXTERNAL","EXPORT_DATA","IMPORT_DATA","CUSTOM_SCRIPT","WEBHOOK_CALL","EMAIL_NOTIFICATION"]},"isActive":{"default":true,"type":"boolean"},"isPublic":{"default":false,"type":"boolean"},"configurationSchema":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"defaultConfiguration":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"validationRules":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"supportedContentTypes":{"type":"array","items":{"type":"string"}},"requiredPermissions":{"default":[],"type":"array","items":{"type":"string"}},"defaultBatchSize":{"default":10,"type":"number","minimum":1},"defaultDelay":{"default":1000,"type":"number","minimum":0},"maxRetries":{"default":3,"type":"number","minimum":0},"timeoutMinutes":{"default":60,"type":"number","minimum":1}},"required":["name","slug","operationType","isActive","isPublic","supportedContentTypes","requiredPermissions","defaultBatchSize","defaultDelay","maxRetries","timeoutMinutes"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.bulkOperations.getOperations":{"get":{"operationId":"cms_bulkOperations_getOperations","summary":"Bulk Operations.get Operations","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0},"search":{"type":"string"},"operationType":{"type":"string","enum":["PUBLISH","UNPUBLISH","SCHEDULE","ARCHIVE","DELETE","RESTORE","UPDATE_STATUS","UPDATE_METADATA","UPDATE_CATEGORIES","UPDATE_TAGS","UPDATE_AUTHORS","APPLY_TEMPLATE","TRANSFORM_CONTENT","MIGRATE_FORMAT","UPDATE_SEO","GENERATE_SITEMAP","UPDATE_REDIRECTS","OPTIMIZE_IMAGES","UPDATE_ALT_TEXT","COMPRESS_MEDIA","SYNC_EXTERNAL","EXPORT_DATA","IMPORT_DATA","CUSTOM_SCRIPT","WEBHOOK_CALL","EMAIL_NOTIFICATION"]},"status":{"type":"string","enum":["PENDING","RUNNING","COMPLETED","FAILED","CANCELLED","PARTIALLY_COMPLETED"]},"approvalStatus":{"type":"string","enum":["NOT_REQUIRED","PENDING","APPROVED","REJECTED","EXPIRED"]}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.bulkOperations.getOperationById":{"get":{"operationId":"cms_bulkOperations_getOperationById","summary":"Bulk Operations.get Operation By Id","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.bulkOperations.createOperation":{"post":{"operationId":"cms_bulkOperations_createOperation","summary":"Bulk Operations.create Operation","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"operationType":{"type":"string","enum":["PUBLISH","UNPUBLISH","SCHEDULE","ARCHIVE","DELETE","RESTORE","UPDATE_STATUS","UPDATE_METADATA","UPDATE_CATEGORIES","UPDATE_TAGS","UPDATE_AUTHORS","APPLY_TEMPLATE","TRANSFORM_CONTENT","MIGRATE_FORMAT","UPDATE_SEO","GENERATE_SITEMAP","UPDATE_REDIRECTS","OPTIMIZE_IMAGES","UPDATE_ALT_TEXT","COMPRESS_MEDIA","SYNC_EXTERNAL","EXPORT_DATA","IMPORT_DATA","CUSTOM_SCRIPT","WEBHOOK_CALL","EMAIL_NOTIFICATION"]},"templateId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"selectionType":{"type":"string","enum":["MANUAL","CRITERIA","QUERY","TEMPLATE"]},"selectionCriteria":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"contentIds":{"default":[],"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"operationConfig":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"transformationRules":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"batchSize":{"default":10,"type":"number","minimum":1},"delayBetweenBatches":{"default":1000,"type":"number","minimum":0},"maxRetries":{"default":3,"type":"number","minimum":0},"timeoutMinutes":{"default":60,"type":"number","minimum":1},"isScheduled":{"default":false,"type":"boolean"},"scheduledFor":{},"executionMode":{"default":"IMMEDIATE","type":"string","enum":["IMMEDIATE","SCHEDULED","TRIGGERED","MANUAL"]},"supportsRollback":{"default":false,"type":"boolean"},"requiresApproval":{"default":false,"type":"boolean"},"notifyOnCompletion":{"default":true,"type":"boolean"},"notifyOnFailure":{"default":true,"type":"boolean"},"notificationEmails":{"default":[],"type":"array","items":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"}},"notificationSlack":{"type":"string"}},"required":["name","operationType","selectionType","contentIds","batchSize","delayBetweenBatches","maxRetries","timeoutMinutes","isScheduled","executionMode","supportsRollback","requiresApproval","notifyOnCompletion","notifyOnFailure","notificationEmails"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.bulkOperations.executeOperation":{"post":{"operationId":"cms_bulkOperations_executeOperation","summary":"Bulk Operations.execute Operation","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.bulkOperations.approveOperation":{"post":{"operationId":"cms_bulkOperations_approveOperation","summary":"Bulk Operations.approve Operation","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.bulkOperations.rollbackOperation":{"post":{"operationId":"cms_bulkOperations_rollbackOperation","summary":"Bulk Operations.rollback Operation","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.bulkOperations.getRules":{"get":{"operationId":"cms_bulkOperations_getRules","summary":"Bulk Operations.get Rules","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0},"search":{"type":"string"},"triggerType":{"type":"string","enum":["SCHEDULED","EVENT","CONTENT","MANUAL","WEBHOOK"]},"isActive":{"type":"boolean"}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.bulkOperations.createRule":{"post":{"operationId":"cms_bulkOperations_createRule","summary":"Bulk Operations.create Rule","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"slug":{"type":"string","minLength":1},"description":{"type":"string"},"isActive":{"default":true,"type":"boolean"},"priority":{"default":0,"type":"number"},"triggerType":{"type":"string","enum":["SCHEDULED","EVENT","CONTENT","MANUAL","WEBHOOK"]},"triggerConditions":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"operationType":{"type":"string","enum":["PUBLISH","UNPUBLISH","SCHEDULE","ARCHIVE","DELETE","RESTORE","UPDATE_STATUS","UPDATE_METADATA","UPDATE_CATEGORIES","UPDATE_TAGS","UPDATE_AUTHORS","APPLY_TEMPLATE","TRANSFORM_CONTENT","MIGRATE_FORMAT","UPDATE_SEO","GENERATE_SITEMAP","UPDATE_REDIRECTS","OPTIMIZE_IMAGES","UPDATE_ALT_TEXT","COMPRESS_MEDIA","SYNC_EXTERNAL","EXPORT_DATA","IMPORT_DATA","CUSTOM_SCRIPT","WEBHOOK_CALL","EMAIL_NOTIFICATION"]},"operationConfig":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"contentTypes":{"type":"array","items":{"type":"string"}},"selectionCriteria":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"batchSize":{"default":10,"type":"number","minimum":1},"delayBetweenBatches":{"default":1000,"type":"number","minimum":0},"maxRetries":{"default":3,"type":"number","minimum":0},"schedule":{"type":"string"},"timeZone":{"default":"&","type":"string"},"maxExecutionsPerDay":{"type":"number","minimum":1},"maxItemsPerExecution":{"type":"number","minimum":1}},"required":["name","slug","isActive","priority","triggerType","operationType","contentTypes","batchSize","delayBetweenBatches","maxRetries","timeZone"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.bulkOperations.getMonitoring":{"get":{"operationId":"cms_bulkOperations_getMonitoring","summary":"Bulk Operations.get Monitoring","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0},"isActive":{"type":"boolean"}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.bulkOperations.getAlerts":{"get":{"operationId":"cms_bulkOperations_getAlerts","summary":"Bulk Operations.get Alerts","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0},"severity":{"type":"string","enum":["LOW","MEDIUM","HIGH","CRITICAL"]},"status":{"type":"string","enum":["ACTIVE","ACKNOWLEDGED","RESOLVED","DISMISSED"]}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.bulkOperations.getBulkOperationStats":{"get":{"operationId":"cms_bulkOperations_getBulkOperationStats","summary":"Bulk Operations.get Bulk Operation Stats","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"operations":{"type":"object","properties":{"total":{"type":"integer"},"running":{"type":"integer"},"completed":{"type":"integer"},"failed":{"type":"integer"},"pendingApproval":{"type":"integer"}}},"templates":{"type":"object","properties":{"total":{"type":"integer"}}},"rules":{"type":"object","properties":{"active":{"type":"integer"}}},"monitoring":{"type":"object","properties":{"active":{"type":"integer"},"alerts":{"type":"integer"}}},"metrics":{"type":"array","items":{}}}}}}}}}},"/api/trpc/cms.integrationHooks.getIntegrationConfigs":{"get":{"operationId":"cms_integrationHooks_getIntegrationConfigs","summary":"Integration Hooks.get Integration Configs","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"type":{"type":"string","enum":["WEBHOOK","API_INTEGRATION","RSS_FEED","SOCIAL_MEDIA","EMAIL_MARKETING","ANALYTICS","CDN","SEARCH_ENGINE","BACKUP_SERVICE","NOTIFICATION_SERVICE","CUSTOM"]},"status":{"type":"string","enum":["ACTIVE","INACTIVE","PENDING","ERROR","MAINTENANCE"]},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0}},"required":["tenantId","siteId","limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.integrationHooks.getIntegrationConfig":{"get":{"operationId":"cms_integrationHooks_getIntegrationConfig","summary":"Integration Hooks.get Integration Config","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.integrationHooks.createIntegrationConfig":{"post":{"operationId":"cms_integrationHooks_createIntegrationConfig","summary":"Integration Hooks.create Integration Config","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"type":{"type":"string","enum":["WEBHOOK","API_INTEGRATION","RSS_FEED","SOCIAL_MEDIA","EMAIL_MARKETING","ANALYTICS","CDN","SEARCH_ENGINE","BACKUP_SERVICE","NOTIFICATION_SERVICE","CUSTOM"]},"status":{"default":"ACTIVE","type":"string","enum":["ACTIVE","INACTIVE","PENDING","ERROR","MAINTENANCE"]},"direction":{"default":"OUTBOUND","type":"string","enum":["OUTBOUND","INBOUND","BIDIRECTIONAL"]},"endpoint":{"type":"string","format":"uri"},"apiVersion":{"type":"string"},"timeout":{"default":30000,"type":"number","minimum":1000,"maximum":300000},"retryCount":{"default":3,"type":"number","minimum":0,"maximum":10},"retryDelay":{"default":1000,"type":"number","minimum":100,"maximum":60000},"authenticationType":{"default":"NONE","type":"string","enum":["NONE","API_KEY","BEARER_TOKEN","BASIC_AUTH","OAUTH2","JWT","CUSTOM_HEADER"]},"authConfig":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"settings":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"metadata":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["name","type","status","direction","timeout","retryCount","retryDelay","authenticationType","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.integrationHooks.updateIntegrationConfig":{"post":{"operationId":"cms_integrationHooks_updateIntegrationConfig","summary":"Integration Hooks.update Integration Config","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"type":{"type":"string","enum":["WEBHOOK","API_INTEGRATION","RSS_FEED","SOCIAL_MEDIA","EMAIL_MARKETING","ANALYTICS","CDN","SEARCH_ENGINE","BACKUP_SERVICE","NOTIFICATION_SERVICE","CUSTOM"]},"status":{"default":"ACTIVE","type":"string","enum":["ACTIVE","INACTIVE","PENDING","ERROR","MAINTENANCE"]},"direction":{"default":"OUTBOUND","type":"string","enum":["OUTBOUND","INBOUND","BIDIRECTIONAL"]},"endpoint":{"type":"string","format":"uri"},"apiVersion":{"type":"string"},"timeout":{"default":30000,"type":"number","minimum":1000,"maximum":300000},"retryCount":{"default":3,"type":"number","minimum":0,"maximum":10},"retryDelay":{"default":1000,"type":"number","minimum":100,"maximum":60000},"authenticationType":{"default":"NONE","type":"string","enum":["NONE","API_KEY","BEARER_TOKEN","BASIC_AUTH","OAUTH2","JWT","CUSTOM_HEADER"]},"authConfig":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"settings":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"metadata":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.integrationHooks.deleteIntegrationConfig":{"post":{"operationId":"cms_integrationHooks_deleteIntegrationConfig","summary":"Integration Hooks.delete Integration Config","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.integrationHooks.getIntegrationHooks":{"get":{"operationId":"cms_integrationHooks_getIntegrationHooks","summary":"Integration Hooks.get Integration Hooks","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"integrationId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"trigger":{"type":"string","enum":["CONTENT_CREATED","CONTENT_UPDATED","CONTENT_DELETED","CONTENT_PUBLISHED","CONTENT_UNPUBLISHED","CONTENT_SCHEDULED","USER_CREATED","USER_UPDATED","WORKFLOW_STARTED","WORKFLOW_COMPLETED","APPROVAL_REQUESTED","APPROVAL_GRANTED","APPROVAL_DENIED","BULK_OPERATION_STARTED","BULK_OPERATION_COMPLETED","CUSTOM_EVENT"]},"isActive":{"type":"boolean"},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0}},"required":["tenantId","siteId","limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.integrationHooks.createIntegrationHook":{"post":{"operationId":"cms_integrationHooks_createIntegrationHook","summary":"Integration Hooks.create Integration Hook","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"trigger":{"type":"string","enum":["CONTENT_CREATED","CONTENT_UPDATED","CONTENT_DELETED","CONTENT_PUBLISHED","CONTENT_UNPUBLISHED","CONTENT_SCHEDULED","USER_CREATED","USER_UPDATED","WORKFLOW_STARTED","WORKFLOW_COMPLETED","APPROVAL_REQUESTED","APPROVAL_GRANTED","APPROVAL_DENIED","BULK_OPERATION_STARTED","BULK_OPERATION_COMPLETED","CUSTOM_EVENT"]},"isActive":{"default":true,"type":"boolean"},"method":{"default":"POST","type":"string","enum":["GET","POST","PUT","PATCH","DELETE"]},"headers":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"string"}},"payload":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"conditions":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"filters":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"maxRetries":{"default":3,"type":"number","minimum":0,"maximum":10},"retryDelay":{"default":1000,"type":"number","minimum":100,"maximum":60000},"integrationId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["name","trigger","isActive","method","maxRetries","retryDelay","integrationId","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.integrationHooks.updateIntegrationHook":{"post":{"operationId":"cms_integrationHooks_updateIntegrationHook","summary":"Integration Hooks.update Integration Hook","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"trigger":{"type":"string","enum":["CONTENT_CREATED","CONTENT_UPDATED","CONTENT_DELETED","CONTENT_PUBLISHED","CONTENT_UNPUBLISHED","CONTENT_SCHEDULED","USER_CREATED","USER_UPDATED","WORKFLOW_STARTED","WORKFLOW_COMPLETED","APPROVAL_REQUESTED","APPROVAL_GRANTED","APPROVAL_DENIED","BULK_OPERATION_STARTED","BULK_OPERATION_COMPLETED","CUSTOM_EVENT"]},"isActive":{"default":true,"type":"boolean"},"method":{"default":"POST","type":"string","enum":["GET","POST","PUT","PATCH","DELETE"]},"headers":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"string"}},"payload":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"conditions":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"filters":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"maxRetries":{"default":3,"type":"number","minimum":0,"maximum":10},"retryDelay":{"default":1000,"type":"number","minimum":100,"maximum":60000},"integrationId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.integrationHooks.deleteIntegrationHook":{"post":{"operationId":"cms_integrationHooks_deleteIntegrationHook","summary":"Integration Hooks.delete Integration Hook","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.integrationHooks.getHookExecutions":{"get":{"operationId":"cms_integrationHooks_getHookExecutions","summary":"Integration Hooks.get Hook Executions","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"hookId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"status":{"type":"string","enum":["PENDING","RUNNING","SUCCESS","FAILED","TIMEOUT","CANCELLED"]},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0}},"required":["tenantId","siteId","limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.integrationHooks.retryHookExecution":{"post":{"operationId":"cms_integrationHooks_retryHookExecution","summary":"Integration Hooks.retry Hook Execution","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.integrationHooks.getExternalSystemConnectors":{"get":{"operationId":"cms_integrationHooks_getExternalSystemConnectors","summary":"Integration Hooks.get External System Connectors","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"systemType":{"type":"string"},"status":{"type":"string","enum":["ACTIVE","INACTIVE","PENDING","ERROR","MAINTENANCE"]},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0}},"required":["tenantId","siteId","limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.integrationHooks.createExternalSystemConnector":{"post":{"operationId":"cms_integrationHooks_createExternalSystemConnector","summary":"Integration Hooks.create External System Connector","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"systemType":{"type":"string","minLength":1},"version":{"type":"string"},"baseUrl":{"type":"string","format":"uri"},"apiKey":{"type":"string"},"credentials":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"config":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"capabilities":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"status":{"default":"ACTIVE","type":"string","enum":["ACTIVE","INACTIVE","PENDING","ERROR","MAINTENANCE"]},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["name","systemType","baseUrl","status","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.integrationHooks.updateExternalSystemConnector":{"post":{"operationId":"cms_integrationHooks_updateExternalSystemConnector","summary":"Integration Hooks.update External System Connector","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"systemType":{"type":"string","minLength":1},"version":{"type":"string"},"baseUrl":{"type":"string","format":"uri"},"apiKey":{"type":"string"},"credentials":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"config":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"capabilities":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"status":{"default":"ACTIVE","type":"string","enum":["ACTIVE","INACTIVE","PENDING","ERROR","MAINTENANCE"]},"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.integrationHooks.deleteExternalSystemConnector":{"post":{"operationId":"cms_integrationHooks_deleteExternalSystemConnector","summary":"Integration Hooks.delete External System Connector","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.integrationHooks.getSyncJobs":{"get":{"operationId":"cms_integrationHooks_getSyncJobs","summary":"Integration Hooks.get Sync Jobs","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"connectorId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"status":{"type":"string","enum":["PENDING","RUNNING","SUCCESS","FAILED","TIMEOUT","CANCELLED"]},"isActive":{"type":"boolean"},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0}},"required":["tenantId","siteId","limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.integrationHooks.createSyncJob":{"post":{"operationId":"cms_integrationHooks_createSyncJob","summary":"Integration Hooks.create Sync Job","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"type":{"type":"string","minLength":1},"schedule":{"type":"string"},"isActive":{"default":true,"type":"boolean"},"config":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"mapping":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"filters":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"connectorId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["name","type","isActive","connectorId","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.integrationHooks.updateSyncJob":{"post":{"operationId":"cms_integrationHooks_updateSyncJob","summary":"Integration Hooks.update Sync Job","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"type":{"type":"string","minLength":1},"schedule":{"type":"string"},"isActive":{"default":true,"type":"boolean"},"config":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"mapping":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"filters":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"connectorId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.integrationHooks.deleteSyncJob":{"post":{"operationId":"cms_integrationHooks_deleteSyncJob","summary":"Integration Hooks.delete Sync Job","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.integrationHooks.getDataMappings":{"get":{"operationId":"cms_integrationHooks_getDataMappings","summary":"Integration Hooks.get Data Mappings","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"integrationId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"type":{"type":"string","enum":["DIRECT","TRANSFORMED","FILTERED","AGGREGATED","CUSTOM"]},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0}},"required":["tenantId","siteId","limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.integrationHooks.createDataMapping":{"post":{"operationId":"cms_integrationHooks_createDataMapping","summary":"Integration Hooks.create Data Mapping","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"type":{"default":"DIRECT","type":"string","enum":["DIRECT","TRANSFORMED","FILTERED","AGGREGATED","CUSTOM"]},"sourceField":{"type":"string","minLength":1},"sourceType":{"type":"string"},"sourceFormat":{"type":"string"},"targetField":{"type":"string","minLength":1},"targetType":{"type":"string"},"targetFormat":{"type":"string"},"transformation":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"defaultValue":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{"type":"null"}]},"required":{"default":false,"type":"boolean"},"validation":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"integrationId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["name","type","sourceField","targetField","required","integrationId","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.integrationHooks.updateDataMapping":{"post":{"operationId":"cms_integrationHooks_updateDataMapping","summary":"Integration Hooks.update Data Mapping","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"type":{"default":"DIRECT","type":"string","enum":["DIRECT","TRANSFORMED","FILTERED","AGGREGATED","CUSTOM"]},"sourceField":{"type":"string","minLength":1},"sourceType":{"type":"string"},"sourceFormat":{"type":"string"},"targetField":{"type":"string","minLength":1},"targetType":{"type":"string"},"targetFormat":{"type":"string"},"transformation":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"defaultValue":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{"type":"null"}]},"required":{"default":false,"type":"boolean"},"validation":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"integrationId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.integrationHooks.deleteDataMapping":{"post":{"operationId":"cms_integrationHooks_deleteDataMapping","summary":"Integration Hooks.delete Data Mapping","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.integrationHooks.getIntegrationStats":{"get":{"operationId":"cms_integrationHooks_getIntegrationStats","summary":"Integration Hooks.get Integration Stats","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"days":{"default":30,"type":"number","minimum":1,"maximum":365}},"required":["tenantId","siteId","days"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.integrationHooks.testIntegration":{"post":{"operationId":"cms_integrationHooks_testIntegration","summary":"Integration Hooks.test Integration","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"testData":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoPerformance.getSeoAnalysisConfigs":{"get":{"operationId":"cms_seoPerformance_getSeoAnalysisConfigs","summary":"Seo Performance.get Seo Analysis Configs","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"type":{"type":"string","enum":["CONTENT_ANALYSIS","TECHNICAL_SEO","KEYWORD_ANALYSIS","COMPETITOR_ANALYSIS","LINK_ANALYSIS","PERFORMANCE_AUDIT","ACCESSIBILITY_AUDIT","MOBILE_OPTIMIZATION","SCHEMA_MARKUP","SITE_STRUCTURE"]},"isActive":{"type":"boolean"},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0}},"required":["tenantId","siteId","limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoPerformance.createSeoAnalysisConfig":{"post":{"operationId":"cms_seoPerformance_createSeoAnalysisConfig","summary":"Seo Performance.create Seo Analysis Config","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"type":{"type":"string","enum":["CONTENT_ANALYSIS","TECHNICAL_SEO","KEYWORD_ANALYSIS","COMPETITOR_ANALYSIS","LINK_ANALYSIS","PERFORMANCE_AUDIT","ACCESSIBILITY_AUDIT","MOBILE_OPTIMIZATION","SCHEMA_MARKUP","SITE_STRUCTURE"]},"isActive":{"default":true,"type":"boolean"},"settings":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"schedule":{"type":"string"},"scoreThresholds":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"criteria":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["name","type","isActive","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoPerformance.updateSeoAnalysisConfig":{"post":{"operationId":"cms_seoPerformance_updateSeoAnalysisConfig","summary":"Seo Performance.update Seo Analysis Config","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"type":{"type":"string","enum":["CONTENT_ANALYSIS","TECHNICAL_SEO","KEYWORD_ANALYSIS","COMPETITOR_ANALYSIS","LINK_ANALYSIS","PERFORMANCE_AUDIT","ACCESSIBILITY_AUDIT","MOBILE_OPTIMIZATION","SCHEMA_MARKUP","SITE_STRUCTURE"]},"isActive":{"default":true,"type":"boolean"},"settings":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"schedule":{"type":"string"},"scoreThresholds":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"criteria":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoPerformance.deleteSeoAnalysisConfig":{"post":{"operationId":"cms_seoPerformance_deleteSeoAnalysisConfig","summary":"Seo Performance.delete Seo Analysis Config","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoPerformance.getSeoAnalyses":{"get":{"operationId":"cms_seoPerformance_getSeoAnalyses","summary":"Seo Performance.get Seo Analyses","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"analyses":{"type":"array","items":{}},"total":{"type":"integer"},"hasMore":{"type":"boolean"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"type":{"type":"string","enum":["CONTENT_ANALYSIS","TECHNICAL_SEO","KEYWORD_ANALYSIS","COMPETITOR_ANALYSIS","LINK_ANALYSIS","PERFORMANCE_AUDIT","ACCESSIBILITY_AUDIT","MOBILE_OPTIMIZATION","SCHEMA_MARKUP","SITE_STRUCTURE"]},"contentId":{"type":"string"},"contentType":{"type":"string"},"minScore":{"type":"number","minimum":0,"maximum":100},"maxScore":{"type":"number","minimum":0,"maximum":100},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoPerformance.getSeoAnalysis":{"get":{"operationId":"cms_seoPerformance_getSeoAnalysis","summary":"Seo Performance.get Seo Analysis","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoPerformance.createSeoAnalysis":{"post":{"operationId":"cms_seoPerformance_createSeoAnalysis","summary":"Seo Performance.create Seo Analysis","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"type":{"type":"string","enum":["CONTENT_ANALYSIS","TECHNICAL_SEO","KEYWORD_ANALYSIS","COMPETITOR_ANALYSIS","LINK_ANALYSIS","PERFORMANCE_AUDIT","ACCESSIBILITY_AUDIT","MOBILE_OPTIMIZATION","SCHEMA_MARKUP","SITE_STRUCTURE"]},"url":{"type":"string","format":"uri"},"title":{"type":"string"},"overallScore":{"default":0,"type":"number","minimum":0,"maximum":100},"overallGrade":{"default":"CRITICAL","type":"string","enum":["EXCELLENT","GOOD","FAIR","POOR","CRITICAL"]},"contentScore":{"type":"number","minimum":0,"maximum":100},"technicalScore":{"type":"number","minimum":0,"maximum":100},"keywordScore":{"type":"number","minimum":0,"maximum":100},"performanceScore":{"type":"number","minimum":0,"maximum":100},"accessibilityScore":{"type":"number","minimum":0,"maximum":100},"results":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"recommendations":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"issues":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"contentId":{"type":"string"},"contentType":{"type":"string"},"configId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["type","overallScore","overallGrade","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoPerformance.updateSeoAnalysis":{"post":{"operationId":"cms_seoPerformance_updateSeoAnalysis","summary":"Seo Performance.update Seo Analysis","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"type":{"type":"string","enum":["CONTENT_ANALYSIS","TECHNICAL_SEO","KEYWORD_ANALYSIS","COMPETITOR_ANALYSIS","LINK_ANALYSIS","PERFORMANCE_AUDIT","ACCESSIBILITY_AUDIT","MOBILE_OPTIMIZATION","SCHEMA_MARKUP","SITE_STRUCTURE"]},"url":{"type":"string","format":"uri"},"title":{"type":"string"},"overallScore":{"default":0,"type":"number","minimum":0,"maximum":100},"overallGrade":{"default":"CRITICAL","type":"string","enum":["EXCELLENT","GOOD","FAIR","POOR","CRITICAL"]},"contentScore":{"type":"number","minimum":0,"maximum":100},"technicalScore":{"type":"number","minimum":0,"maximum":100},"keywordScore":{"type":"number","minimum":0,"maximum":100},"performanceScore":{"type":"number","minimum":0,"maximum":100},"accessibilityScore":{"type":"number","minimum":0,"maximum":100},"results":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"recommendations":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"issues":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"contentId":{"type":"string"},"contentType":{"type":"string"},"configId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoPerformance.deleteSeoAnalysis":{"post":{"operationId":"cms_seoPerformance_deleteSeoAnalysis","summary":"Seo Performance.delete Seo Analysis","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoPerformance.getSeoKeywords":{"get":{"operationId":"cms_seoPerformance_getSeoKeywords","summary":"Seo Performance.get Seo Keywords","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"keywords":{"type":"array","items":{}},"total":{"type":"integer"},"hasMore":{"type":"boolean"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"keyword":{"type":"string"},"difficulty":{"type":"string","enum":["VERY_EASY","EASY","MEDIUM","HARD","VERY_HARD"]},"intent":{"type":"string","enum":["INFORMATIONAL","NAVIGATIONAL","TRANSACTIONAL","COMMERCIAL"]},"isTracked":{"type":"boolean"},"isTarget":{"type":"boolean"},"contentId":{"type":"string"},"contentType":{"type":"string"},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoPerformance.createSeoKeyword":{"post":{"operationId":"cms_seoPerformance_createSeoKeyword","summary":"Seo Performance.create Seo Keyword","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"keyword":{"type":"string","minLength":1},"searchVolume":{"type":"number","minimum":0},"difficulty":{"default":"VERY_EASY","type":"string","enum":["VERY_EASY","EASY","MEDIUM","HARD","VERY_HARD"]},"intent":{"default":"INFORMATIONAL","type":"string","enum":["INFORMATIONAL","NAVIGATIONAL","TRANSACTIONAL","COMMERCIAL"]},"cpc":{"type":"number","minimum":0},"currentPosition":{"type":"number","minimum":1},"targetPosition":{"type":"number","minimum":1},"bestPosition":{"type":"number","minimum":1},"impressions":{"type":"number","minimum":0},"clicks":{"type":"number","minimum":0},"ctr":{"type":"number","minimum":0,"maximum":100},"isTracked":{"default":true,"type":"boolean"},"isTarget":{"default":false,"type":"boolean"},"contentId":{"type":"string"},"contentType":{"type":"string"},"analysisId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["keyword","difficulty","intent","isTracked","isTarget","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoPerformance.updateSeoKeyword":{"post":{"operationId":"cms_seoPerformance_updateSeoKeyword","summary":"Seo Performance.update Seo Keyword","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"keyword":{"type":"string","minLength":1},"searchVolume":{"type":"number","minimum":0},"difficulty":{"default":"VERY_EASY","type":"string","enum":["VERY_EASY","EASY","MEDIUM","HARD","VERY_HARD"]},"intent":{"default":"INFORMATIONAL","type":"string","enum":["INFORMATIONAL","NAVIGATIONAL","TRANSACTIONAL","COMMERCIAL"]},"cpc":{"type":"number","minimum":0},"currentPosition":{"type":"number","minimum":1},"targetPosition":{"type":"number","minimum":1},"bestPosition":{"type":"number","minimum":1},"impressions":{"type":"number","minimum":0},"clicks":{"type":"number","minimum":0},"ctr":{"type":"number","minimum":0,"maximum":100},"isTracked":{"default":true,"type":"boolean"},"isTarget":{"default":false,"type":"boolean"},"contentId":{"type":"string"},"contentType":{"type":"string"},"analysisId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoPerformance.deleteSeoKeyword":{"post":{"operationId":"cms_seoPerformance_deleteSeoKeyword","summary":"Seo Performance.delete Seo Keyword","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoPerformance.getContentPerformance":{"get":{"operationId":"cms_seoPerformance_getContentPerformance","summary":"Seo Performance.get Content Performance","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"contentId":{"type":"string"},"contentType":{"type":"string"},"period":{"default":"daily","type":"string","enum":["daily","weekly","monthly"]},"startDate":{},"endDate":{},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0}},"required":["tenantId","siteId","period","limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoPerformance.getSeoOptimizations":{"get":{"operationId":"cms_seoPerformance_getSeoOptimizations","summary":"Seo Performance.get Seo Optimizations","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"optimizations":{"type":"array","items":{}},"total":{"type":"integer"},"hasMore":{"type":"boolean"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"type":{"type":"string"},"category":{"type":"string"},"priority":{"type":"string","enum":["HIGH","MEDIUM","LOW"]},"status":{"type":"string","enum":["pending","implemented","dismissed"]},"contentId":{"type":"string"},"contentType":{"type":"string"},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoPerformance.createSeoOptimization":{"post":{"operationId":"cms_seoPerformance_createSeoOptimization","summary":"Seo Performance.create Seo Optimization","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"type":{"type":"string","minLength":1},"category":{"type":"string","minLength":1},"title":{"type":"string","minLength":1},"description":{"type":"string","minLength":1},"priority":{"type":"string","enum":["HIGH","MEDIUM","LOW"]},"implementation":{"type":"string"},"expectedImpact":{"type":"string"},"effort":{"type":"string"},"contentId":{"type":"string"},"contentType":{"type":"string"},"status":{"default":"pending","type":"string","enum":["pending","implemented","dismissed"]},"notes":{"type":"string"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["type","category","title","description","priority","status","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoPerformance.updateSeoOptimization":{"post":{"operationId":"cms_seoPerformance_updateSeoOptimization","summary":"Seo Performance.update Seo Optimization","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"type":{"type":"string","minLength":1},"category":{"type":"string","minLength":1},"title":{"type":"string","minLength":1},"description":{"type":"string","minLength":1},"priority":{"type":"string","enum":["HIGH","MEDIUM","LOW"]},"implementation":{"type":"string"},"expectedImpact":{"type":"string"},"effort":{"type":"string"},"contentId":{"type":"string"},"contentType":{"type":"string"},"status":{"default":"pending","type":"string","enum":["pending","implemented","dismissed"]},"notes":{"type":"string"},"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoPerformance.deleteSeoOptimization":{"post":{"operationId":"cms_seoPerformance_deleteSeoOptimization","summary":"Seo Performance.delete Seo Optimization","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoPerformance.getSeoMonitoring":{"get":{"operationId":"cms_seoPerformance_getSeoMonitoring","summary":"Seo Performance.get Seo Monitoring","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"type":{"type":"string"},"isActive":{"type":"boolean"},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0}},"required":["tenantId","siteId","limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoPerformance.createSeoMonitoring":{"post":{"operationId":"cms_seoPerformance_createSeoMonitoring","summary":"Seo Performance.create Seo Monitoring","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"type":{"type":"string","minLength":1},"target":{"type":"string","minLength":1},"threshold":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"alertEnabled":{"default":true,"type":"boolean"},"alertEmail":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"alertWebhook":{"type":"string","format":"uri"},"isActive":{"default":true,"type":"boolean"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["name","type","target","alertEnabled","isActive","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoPerformance.updateSeoMonitoring":{"post":{"operationId":"cms_seoPerformance_updateSeoMonitoring","summary":"Seo Performance.update Seo Monitoring","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"type":{"type":"string","minLength":1},"target":{"type":"string","minLength":1},"threshold":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"alertEnabled":{"default":true,"type":"boolean"},"alertEmail":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"alertWebhook":{"type":"string","format":"uri"},"isActive":{"default":true,"type":"boolean"},"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoPerformance.deleteSeoMonitoring":{"post":{"operationId":"cms_seoPerformance_deleteSeoMonitoring","summary":"Seo Performance.delete Seo Monitoring","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoPerformance.getSeoStats":{"get":{"operationId":"cms_seoPerformance_getSeoStats","summary":"Seo Performance.get Seo Stats","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"overview":{"type":"object","properties":{"totalAnalyses":{"type":"integer"},"totalKeywords":{"type":"integer"},"totalOptimizations":{"type":"integer"},"pendingOptimizations":{"type":"integer"},"totalIssues":{"type":"integer"},"fixedIssues":{"type":"integer"},"activeMonitoring":{"type":"integer"},"unreadAlerts":{"type":"integer"}}},"analytics":{"type":"array","items":{}},"topKeywords":{"type":"array","items":{}},"criticalIssues":{"type":"array","items":{}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"days":{"default":30,"type":"number","minimum":1,"maximum":365}},"required":["days"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoPerformance.runSeoAnalysis":{"post":{"operationId":"cms_seoPerformance_runSeoAnalysis","summary":"Seo Performance.run Seo Analysis","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"type":{"type":"string","enum":["CONTENT_ANALYSIS","TECHNICAL_SEO","KEYWORD_ANALYSIS","COMPETITOR_ANALYSIS","LINK_ANALYSIS","PERFORMANCE_AUDIT","ACCESSIBILITY_AUDIT","MOBILE_OPTIMIZATION","SCHEMA_MARKUP","SITE_STRUCTURE"]},"url":{"type":"string","format":"uri"},"contentId":{"type":"string"},"contentType":{"type":"string"},"configId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"}},"required":["tenantId","siteId","type"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoPerformance.bulkUpdateOptimizations":{"post":{"operationId":"cms_seoPerformance_bulkUpdateOptimizations","summary":"Seo Performance.bulk Update Optimizations","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"optimizationIds":{"type":"array","items":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"}},"status":{"type":"string","enum":["pending","implemented","dismissed"]},"notes":{"type":"string"}},"required":["tenantId","siteId","optimizationIds","status"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoAnalysis.getSeoAnalysisTemplates":{"get":{"operationId":"cms_seoAnalysis_getSeoAnalysisTemplates","summary":"Seo Analysis.get Seo Analysis Templates","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"templates":{"type":"array","items":{}},"total":{"type":"integer"},"hasMore":{"type":"boolean"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"isActive":{"type":"boolean"},"isDefault":{"type":"boolean"},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoAnalysis.createSeoAnalysisTemplate":{"post":{"operationId":"cms_seoAnalysis_createSeoAnalysisTemplate","summary":"Seo Analysis.create Seo Analysis Template","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"analysisTypes":{"type":"array","items":{"type":"string","enum":["READABILITY_ANALYSIS","KEYWORD_DENSITY_ANALYSIS","CONTENT_STRUCTURE_ANALYSIS","SEMANTIC_ANALYSIS","COMPETITOR_CONTENT_ANALYSIS","CONTENT_FRESHNESS_ANALYSIS","TOPIC_RELEVANCE_ANALYSIS","USER_INTENT_ANALYSIS","CONTENT_DEPTH_ANALYSIS","CONTENT_UNIQUENESS_ANALYSIS"]}},"weightings":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"number","minimum":0,"maximum":100}},"thresholds":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"number","minimum":0,"maximum":100}},"contentTypes":{"type":"array","items":{"type":"string"}},"categories":{"type":"array","items":{"type":"string"}},"frequency":{"default":"MANUAL","type":"string","enum":["MANUAL","DAILY","WEEKLY","MONTHLY","ON_CONTENT_UPDATE","ON_PUBLISH"]},"autoApprove":{"default":false,"type":"boolean"},"autoImplement":{"default":false,"type":"boolean"},"isDefault":{"default":false,"type":"boolean"},"isActive":{"default":true,"type":"boolean"}},"required":["name","analysisTypes","weightings","thresholds","frequency","autoApprove","autoImplement","isDefault","isActive"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoAnalysis.updateSeoAnalysisTemplate":{"post":{"operationId":"cms_seoAnalysis_updateSeoAnalysisTemplate","summary":"Seo Analysis.update Seo Analysis Template","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"analysisTypes":{"type":"array","items":{"type":"string","enum":["READABILITY_ANALYSIS","KEYWORD_DENSITY_ANALYSIS","CONTENT_STRUCTURE_ANALYSIS","SEMANTIC_ANALYSIS","COMPETITOR_CONTENT_ANALYSIS","CONTENT_FRESHNESS_ANALYSIS","TOPIC_RELEVANCE_ANALYSIS","USER_INTENT_ANALYSIS","CONTENT_DEPTH_ANALYSIS","CONTENT_UNIQUENESS_ANALYSIS"]}},"weightings":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"number","minimum":0,"maximum":100}},"thresholds":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"number","minimum":0,"maximum":100}},"contentTypes":{"type":"array","items":{"type":"string"}},"categories":{"type":"array","items":{"type":"string"}},"frequency":{"default":"MANUAL","type":"string","enum":["MANUAL","DAILY","WEEKLY","MONTHLY","ON_CONTENT_UPDATE","ON_PUBLISH"]},"autoApprove":{"default":false,"type":"boolean"},"autoImplement":{"default":false,"type":"boolean"},"isDefault":{"default":false,"type":"boolean"},"isActive":{"default":true,"type":"boolean"},"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoAnalysis.deleteSeoAnalysisTemplate":{"post":{"operationId":"cms_seoAnalysis_deleteSeoAnalysisTemplate","summary":"Seo Analysis.delete Seo Analysis Template","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoAnalysis.getContentAnalyses":{"get":{"operationId":"cms_seoAnalysis_getContentAnalyses","summary":"Seo Analysis.get Content Analyses","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"analyses":{"type":"array","items":{}},"total":{"type":"integer"},"hasMore":{"type":"boolean"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"contentId":{"type":"string"},"contentType":{"type":"string"},"qualityGrade":{"type":"string","enum":["EXCELLENT","GOOD","AVERAGE","POOR","VERY_POOR"]},"minScore":{"type":"number","minimum":0,"maximum":100},"maxScore":{"type":"number","minimum":0,"maximum":100},"status":{"type":"string"},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoAnalysis.getContentAnalysis":{"get":{"operationId":"cms_seoAnalysis_getContentAnalysis","summary":"Seo Analysis.get Content Analysis","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoAnalysis.createContentAnalysis":{"post":{"operationId":"cms_seoAnalysis_createContentAnalysis","summary":"Seo Analysis.create Content Analysis","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"contentId":{"type":"string","minLength":1},"contentType":{"type":"string","minLength":1},"contentTitle":{"type":"string"},"contentUrl":{"type":"string","format":"uri"},"templateId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"analysisTypes":{"type":"array","items":{"type":"string"}},"overallScore":{"default":0,"type":"number","minimum":0,"maximum":100},"qualityGrade":{"default":"AVERAGE","type":"string","enum":["EXCELLENT","GOOD","AVERAGE","POOR","VERY_POOR"]},"readabilityScore":{"type":"number","minimum":0,"maximum":100},"keywordScore":{"type":"number","minimum":0,"maximum":100},"structureScore":{"type":"number","minimum":0,"maximum":100},"semanticScore":{"type":"number","minimum":0,"maximum":100},"freshnessScore":{"type":"number","minimum":0,"maximum":100},"uniquenessScore":{"type":"number","minimum":0,"maximum":100},"analysisResults":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"issues":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"strengths":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"wordCount":{"type":"number","minimum":0},"readingTime":{"type":"number","minimum":0},"keywordDensity":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["contentId","contentType","analysisTypes","overallScore","qualityGrade","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoAnalysis.updateContentAnalysis":{"post":{"operationId":"cms_seoAnalysis_updateContentAnalysis","summary":"Seo Analysis.update Content Analysis","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"contentId":{"type":"string","minLength":1},"contentType":{"type":"string","minLength":1},"contentTitle":{"type":"string"},"contentUrl":{"type":"string","format":"uri"},"templateId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"analysisTypes":{"type":"array","items":{"type":"string"}},"overallScore":{"default":0,"type":"number","minimum":0,"maximum":100},"qualityGrade":{"default":"AVERAGE","type":"string","enum":["EXCELLENT","GOOD","AVERAGE","POOR","VERY_POOR"]},"readabilityScore":{"type":"number","minimum":0,"maximum":100},"keywordScore":{"type":"number","minimum":0,"maximum":100},"structureScore":{"type":"number","minimum":0,"maximum":100},"semanticScore":{"type":"number","minimum":0,"maximum":100},"freshnessScore":{"type":"number","minimum":0,"maximum":100},"uniquenessScore":{"type":"number","minimum":0,"maximum":100},"analysisResults":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"issues":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"strengths":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"wordCount":{"type":"number","minimum":0},"readingTime":{"type":"number","minimum":0},"keywordDensity":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoAnalysis.deleteContentAnalysis":{"post":{"operationId":"cms_seoAnalysis_deleteContentAnalysis","summary":"Seo Analysis.delete Content Analysis","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoAnalysis.getOptimizationSuggestions":{"get":{"operationId":"cms_seoAnalysis_getOptimizationSuggestions","summary":"Seo Analysis.get Optimization Suggestions","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"suggestions":{"type":"array","items":{}},"total":{"type":"integer"},"hasMore":{"type":"boolean"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"analysisId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"type":{"type":"string","enum":["TITLE_OPTIMIZATION","META_DESCRIPTION_OPTIMIZATION","HEADING_STRUCTURE_OPTIMIZATION","KEYWORD_OPTIMIZATION","CONTENT_LENGTH_OPTIMIZATION","READABILITY_IMPROVEMENT","INTERNAL_LINKING_OPTIMIZATION","IMAGE_OPTIMIZATION","SCHEMA_MARKUP_SUGGESTION","CONTENT_FRESHNESS_UPDATE","SEMANTIC_IMPROVEMENT","USER_EXPERIENCE_OPTIMIZATION"]},"status":{"type":"string","enum":["PENDING","APPROVED","IMPLEMENTED","REJECTED","NEEDS_REVIEW"]},"priority":{"type":"number","minimum":1,"maximum":100},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoAnalysis.createOptimizationSuggestion":{"post":{"operationId":"cms_seoAnalysis_createOptimizationSuggestion","summary":"Seo Analysis.create Optimization Suggestion","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"type":{"type":"string","enum":["TITLE_OPTIMIZATION","META_DESCRIPTION_OPTIMIZATION","HEADING_STRUCTURE_OPTIMIZATION","KEYWORD_OPTIMIZATION","CONTENT_LENGTH_OPTIMIZATION","READABILITY_IMPROVEMENT","INTERNAL_LINKING_OPTIMIZATION","IMAGE_OPTIMIZATION","SCHEMA_MARKUP_SUGGESTION","CONTENT_FRESHNESS_UPDATE","SEMANTIC_IMPROVEMENT","USER_EXPERIENCE_OPTIMIZATION"]},"title":{"type":"string","minLength":1},"description":{"type":"string","minLength":1},"priority":{"default":50,"type":"number","minimum":1,"maximum":100},"currentValue":{"type":"string"},"suggestedValue":{"type":"string"},"implementation":{"type":"string"},"expectedImpact":{"type":"string"},"difficulty":{"type":"string","enum":["easy","medium","hard"]},"timeEstimate":{"type":"string"},"isValid":{"default":true,"type":"boolean"},"validationReason":{"type":"string"},"status":{"default":"PENDING","type":"string","enum":["PENDING","APPROVED","IMPLEMENTED","REJECTED","NEEDS_REVIEW"]},"notes":{"type":"string"},"implementationNotes":{"type":"string"},"analysisId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"approvedAt":{},"implementedAt":{},"rejectedAt":{},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["type","title","description","priority","isValid","status","analysisId","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoAnalysis.updateOptimizationSuggestion":{"post":{"operationId":"cms_seoAnalysis_updateOptimizationSuggestion","summary":"Seo Analysis.update Optimization Suggestion","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"type":{"type":"string","enum":["TITLE_OPTIMIZATION","META_DESCRIPTION_OPTIMIZATION","HEADING_STRUCTURE_OPTIMIZATION","KEYWORD_OPTIMIZATION","CONTENT_LENGTH_OPTIMIZATION","READABILITY_IMPROVEMENT","INTERNAL_LINKING_OPTIMIZATION","IMAGE_OPTIMIZATION","SCHEMA_MARKUP_SUGGESTION","CONTENT_FRESHNESS_UPDATE","SEMANTIC_IMPROVEMENT","USER_EXPERIENCE_OPTIMIZATION"]},"title":{"type":"string","minLength":1},"description":{"type":"string","minLength":1},"priority":{"default":50,"type":"number","minimum":1,"maximum":100},"currentValue":{"type":"string"},"suggestedValue":{"type":"string"},"implementation":{"type":"string"},"expectedImpact":{"type":"string"},"difficulty":{"type":"string","enum":["easy","medium","hard"]},"timeEstimate":{"type":"string"},"isValid":{"default":true,"type":"boolean"},"validationReason":{"type":"string"},"status":{"default":"PENDING","type":"string","enum":["PENDING","APPROVED","IMPLEMENTED","REJECTED","NEEDS_REVIEW"]},"notes":{"type":"string"},"implementationNotes":{"type":"string"},"analysisId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"approvedAt":{},"implementedAt":{},"rejectedAt":{},"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoAnalysis.deleteOptimizationSuggestion":{"post":{"operationId":"cms_seoAnalysis_deleteOptimizationSuggestion","summary":"Seo Analysis.delete Optimization Suggestion","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoAnalysis.getContentOptimizationRules":{"get":{"operationId":"cms_seoAnalysis_getContentOptimizationRules","summary":"Seo Analysis.get Content Optimization Rules","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"rules":{"type":"array","items":{}},"total":{"type":"integer"},"hasMore":{"type":"boolean"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"ruleType":{"type":"string"},"isActive":{"type":"boolean"},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoAnalysis.createContentOptimizationRule":{"post":{"operationId":"cms_seoAnalysis_createContentOptimizationRule","summary":"Seo Analysis.create Content Optimization Rule","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"ruleType":{"type":"string","minLength":1},"conditions":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"actions":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"contentTypes":{"type":"array","items":{"type":"string"}},"categories":{"type":"array","items":{"type":"string"}},"tags":{"type":"array","items":{"type":"string"}},"isActive":{"default":true,"type":"boolean"},"priority":{"default":50,"type":"number","minimum":1,"maximum":100},"autoApply":{"default":false,"type":"boolean"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["name","ruleType","conditions","actions","isActive","priority","autoApply","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoAnalysis.updateContentOptimizationRule":{"post":{"operationId":"cms_seoAnalysis_updateContentOptimizationRule","summary":"Seo Analysis.update Content Optimization Rule","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"ruleType":{"type":"string","minLength":1},"conditions":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"actions":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"contentTypes":{"type":"array","items":{"type":"string"}},"categories":{"type":"array","items":{"type":"string"}},"tags":{"type":"array","items":{"type":"string"}},"isActive":{"default":true,"type":"boolean"},"priority":{"default":50,"type":"number","minimum":1,"maximum":100},"autoApply":{"default":false,"type":"boolean"},"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoAnalysis.deleteContentOptimizationRule":{"post":{"operationId":"cms_seoAnalysis_deleteContentOptimizationRule","summary":"Seo Analysis.delete Content Optimization Rule","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoAnalysis.getContentSeoAudits":{"get":{"operationId":"cms_seoAnalysis_getContentSeoAudits","summary":"Seo Analysis.get Content Seo Audits","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"audits":{"type":"array","items":{}},"total":{"type":"integer"},"hasMore":{"type":"boolean"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"auditType":{"type":"string","enum":["full","quick","specific"]},"status":{"type":"string"},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoAnalysis.createContentSeoAudit":{"post":{"operationId":"cms_seoAnalysis_createContentSeoAudit","summary":"Seo Analysis.create Content Seo Audit","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"auditType":{"type":"string","enum":["full","quick","specific"]},"scope":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"criteria":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["name","auditType","scope","criteria","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoAnalysis.getSeoContentTemplates":{"get":{"operationId":"cms_seoAnalysis_getSeoContentTemplates","summary":"Seo Analysis.get Seo Content Templates","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"contentType":{"type":"string"},"isActive":{"type":"boolean"}},"required":["tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoAnalysis.createSeoContentTemplate":{"post":{"operationId":"cms_seoAnalysis_createSeoContentTemplate","summary":"Seo Analysis.create Seo Content Template","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"contentType":{"type":"string","minLength":1},"templateStructure":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"seoGuidelines":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"titleTemplate":{"type":"string"},"metaTemplate":{"type":"string"},"headingStructure":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"keywordGuidelines":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"minWordCount":{"type":"number","minimum":0},"maxWordCount":{"type":"number","minimum":0},"requiredSections":{"type":"array","items":{"type":"string"}},"isActive":{"default":true,"type":"boolean"},"isDefault":{"default":false,"type":"boolean"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["name","contentType","templateStructure","seoGuidelines","isActive","isDefault","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoAnalysis.updateSeoContentTemplate":{"post":{"operationId":"cms_seoAnalysis_updateSeoContentTemplate","summary":"Seo Analysis.update Seo Content Template","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"contentType":{"type":"string","minLength":1},"templateStructure":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"seoGuidelines":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"titleTemplate":{"type":"string"},"metaTemplate":{"type":"string"},"headingStructure":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"keywordGuidelines":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"minWordCount":{"type":"number","minimum":0},"maxWordCount":{"type":"number","minimum":0},"requiredSections":{"type":"array","items":{"type":"string"}},"isActive":{"default":true,"type":"boolean"},"isDefault":{"default":false,"type":"boolean"},"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoAnalysis.deleteSeoContentTemplate":{"post":{"operationId":"cms_seoAnalysis_deleteSeoContentTemplate","summary":"Seo Analysis.delete Seo Content Template","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id","tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoAnalysis.runContentAnalysis":{"post":{"operationId":"cms_seoAnalysis_runContentAnalysis","summary":"Seo Analysis.run Content Analysis","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"contentId":{"type":"string"},"contentType":{"type":"string"},"contentTitle":{"type":"string"},"contentUrl":{"type":"string"},"templateId":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"},"analysisTypes":{"type":"array","items":{"type":"string"}}},"required":["tenantId","siteId","contentId","contentType"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoAnalysis.bulkUpdateSuggestions":{"post":{"operationId":"cms_seoAnalysis_bulkUpdateSuggestions","summary":"Seo Analysis.bulk Update Suggestions","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"suggestionIds":{"type":"array","items":{"type":"string","format":"cuid","pattern":"^[cC][^\\s-]{8,}$"}},"status":{"type":"string","enum":["PENDING","APPROVED","IMPLEMENTED","REJECTED","NEEDS_REVIEW"]},"notes":{"type":"string"}},"required":["tenantId","siteId","suggestionIds","status"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.seoAnalysis.getAnalysisStats":{"get":{"operationId":"cms_seoAnalysis_getAnalysisStats","summary":"Seo Analysis.get Analysis Stats","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"overview":{"type":"object","properties":{"totalAnalyses":{"type":"integer"},"totalSuggestions":{"type":"integer"},"pendingSuggestions":{"type":"integer"},"implementedSuggestions":{"type":"integer"},"totalTemplates":{"type":"integer"},"activeTemplates":{"type":"integer"},"totalRules":{"type":"integer"},"activeRules":{"type":"integer"},"totalAudits":{"type":"integer"}}},"recent":{"type":"object","properties":{"analyses":{"type":"array","items":{}}}},"insights":{"type":"object","properties":{"topSuggestionTypes":{"type":"array","items":{}}}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"days":{"default":30,"type":"number","minimum":1,"maximum":365}},"required":["days"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.performanceTracking.createMetrics":{"post":{"operationId":"cms_performanceTracking_createMetrics","summary":"Performance Tracking.create Metrics","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"contentId":{"type":"string"},"contentType":{"type":"string","enum":["POST","PAGE","ARTICLE","PRODUCT","EVENT","DOCUMENT","MEDIA","CUSTOM"]},"views":{"type":"integer","minimum":0,"maximum":9007199254740991},"uniqueViews":{"type":"integer","minimum":0,"maximum":9007199254740991},"avgTimeOnPage":{"type":"integer","minimum":0,"maximum":9007199254740991},"bounceRate":{"type":"number","minimum":0,"maximum":100},"exitRate":{"type":"number","minimum":0,"maximum":100},"conversionRate":{"type":"number","minimum":0,"maximum":100},"likes":{"type":"integer","minimum":0,"maximum":9007199254740991},"shares":{"type":"integer","minimum":0,"maximum":9007199254740991},"comments":{"type":"integer","minimum":0,"maximum":9007199254740991},"downloads":{"type":"integer","minimum":0,"maximum":9007199254740991},"bookmarks":{"type":"integer","minimum":0,"maximum":9007199254740991},"organicTraffic":{"type":"integer","minimum":0,"maximum":9007199254740991},"searchImpressions":{"type":"integer","minimum":0,"maximum":9007199254740991},"searchClicks":{"type":"integer","minimum":0,"maximum":9007199254740991},"avgSearchPosition":{"type":"number","minimum":0},"socialShares":{"type":"integer","minimum":0,"maximum":9007199254740991},"socialClicks":{"type":"integer","minimum":0,"maximum":9007199254740991},"socialReach":{"type":"integer","minimum":0,"maximum":9007199254740991},"socialEngagement":{"type":"number","minimum":0},"calculationMethod":{"type":"string","enum":["AUTOMATIC","MANUAL","SCHEDULED","TRIGGERED"]}},"required":["contentId","contentType"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.performanceTracking.updateMetrics":{"post":{"operationId":"cms_performanceTracking_updateMetrics","summary":"Performance Tracking.update Metrics","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"data":{"type":"object","properties":{"contentId":{"type":"string"},"contentType":{"type":"string","enum":["POST","PAGE","ARTICLE","PRODUCT","EVENT","DOCUMENT","MEDIA","CUSTOM"]},"views":{"type":"integer","minimum":0,"maximum":9007199254740991},"uniqueViews":{"type":"integer","minimum":0,"maximum":9007199254740991},"avgTimeOnPage":{"type":"integer","minimum":0,"maximum":9007199254740991},"bounceRate":{"type":"number","minimum":0,"maximum":100},"exitRate":{"type":"number","minimum":0,"maximum":100},"conversionRate":{"type":"number","minimum":0,"maximum":100},"likes":{"type":"integer","minimum":0,"maximum":9007199254740991},"shares":{"type":"integer","minimum":0,"maximum":9007199254740991},"comments":{"type":"integer","minimum":0,"maximum":9007199254740991},"downloads":{"type":"integer","minimum":0,"maximum":9007199254740991},"bookmarks":{"type":"integer","minimum":0,"maximum":9007199254740991},"organicTraffic":{"type":"integer","minimum":0,"maximum":9007199254740991},"searchImpressions":{"type":"integer","minimum":0,"maximum":9007199254740991},"searchClicks":{"type":"integer","minimum":0,"maximum":9007199254740991},"avgSearchPosition":{"type":"number","minimum":0},"socialShares":{"type":"integer","minimum":0,"maximum":9007199254740991},"socialClicks":{"type":"integer","minimum":0,"maximum":9007199254740991},"socialReach":{"type":"integer","minimum":0,"maximum":9007199254740991},"socialEngagement":{"type":"number","minimum":0},"calculationMethod":{"type":"string","enum":["AUTOMATIC","MANUAL","SCHEDULED","TRIGGERED"]}},"additionalProperties":false}},"required":["id","data"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.performanceTracking.getMetrics":{"get":{"operationId":"cms_performanceTracking_getMetrics","summary":"Performance Tracking.get Metrics","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.performanceTracking.getMetricsByContent":{"get":{"operationId":"cms_performanceTracking_getMetricsByContent","summary":"Performance Tracking.get Metrics By Content","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"contentId":{"type":"string"},"contentType":{"type":"string","enum":["POST","PAGE","ARTICLE","PRODUCT","EVENT","DOCUMENT","MEDIA","CUSTOM"]}},"required":["contentId","contentType"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.performanceTracking.listMetrics":{"get":{"operationId":"cms_performanceTracking_listMetrics","summary":"Performance Tracking.list Metrics","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"metrics":{"type":"array","items":{}},"pagination":{"type":"object","properties":{"page":{"type":"integer"},"limit":{"type":"integer"},"total":{"type":"integer"},"totalPages":{"type":"integer"}}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"integer","minimum":1,"maximum":9007199254740991},"limit":{"default":20,"type":"integer","minimum":1,"maximum":100},"contentType":{"type":"string","enum":["POST","PAGE","ARTICLE","PRODUCT","EVENT","DOCUMENT","MEDIA","CUSTOM"]},"sortBy":{"default":"overallScore","type":"string","enum":["overallScore","views","engagementScore","seoScore","socialScore","lastCalculated"]},"sortOrder":{"default":"desc","type":"string","enum":["asc","desc"]},"minScore":{"type":"number","minimum":0,"maximum":100},"maxScore":{"type":"number","minimum":0,"maximum":100}},"required":["page","limit","sortBy","sortOrder"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.performanceTracking.addDailyMetrics":{"post":{"operationId":"cms_performanceTracking_addDailyMetrics","summary":"Performance Tracking.add Daily Metrics","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"metricsId":{"type":"string"},"date":{},"views":{"type":"integer","minimum":0,"maximum":9007199254740991},"uniqueViews":{"type":"integer","minimum":0,"maximum":9007199254740991},"avgTimeOnPage":{"type":"integer","minimum":0,"maximum":9007199254740991},"bounceRate":{"type":"number","minimum":0,"maximum":100},"exitRate":{"type":"number","minimum":0,"maximum":100},"likes":{"type":"integer","minimum":0,"maximum":9007199254740991},"shares":{"type":"integer","minimum":0,"maximum":9007199254740991},"comments":{"type":"integer","minimum":0,"maximum":9007199254740991},"downloads":{"type":"integer","minimum":0,"maximum":9007199254740991},"organicTraffic":{"type":"integer","minimum":0,"maximum":9007199254740991},"searchImpressions":{"type":"integer","minimum":0,"maximum":9007199254740991},"searchClicks":{"type":"integer","minimum":0,"maximum":9007199254740991},"avgSearchPosition":{"type":"number","minimum":0},"socialShares":{"type":"integer","minimum":0,"maximum":9007199254740991},"socialClicks":{"type":"integer","minimum":0,"maximum":9007199254740991},"socialReach":{"type":"integer","minimum":0,"maximum":9007199254740991},"directTraffic":{"type":"integer","minimum":0,"maximum":9007199254740991},"referralTraffic":{"type":"integer","minimum":0,"maximum":9007199254740991},"socialTraffic":{"type":"integer","minimum":0,"maximum":9007199254740991},"emailTraffic":{"type":"integer","minimum":0,"maximum":9007199254740991}},"required":["metricsId","date"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.performanceTracking.getDailyMetrics":{"get":{"operationId":"cms_performanceTracking_getDailyMetrics","summary":"Performance Tracking.get Daily Metrics","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"metricsId":{"type":"string"},"startDate":{},"endDate":{}},"required":["metricsId","startDate","endDate"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.performanceTracking.addAudienceData":{"post":{"operationId":"cms_performanceTracking_addAudienceData","summary":"Performance Tracking.add Audience Data","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"metricsId":{"type":"string"},"segmentType":{"type":"string","enum":["AGE_GROUP","GENDER","LOCATION","DEVICE","BROWSER","REFERRER","TRAFFIC_SOURCE","USER_TYPE","INTEREST","BEHAVIOR"]},"segmentValue":{"type":"string"},"views":{"type":"integer","minimum":0,"maximum":9007199254740991},"uniqueViews":{"type":"integer","minimum":0,"maximum":9007199254740991},"avgTimeOnPage":{"type":"integer","minimum":0,"maximum":9007199254740991},"bounceRate":{"type":"number","minimum":0,"maximum":100},"conversionRate":{"type":"number","minimum":0,"maximum":100},"engagementRate":{"type":"number","minimum":0,"maximum":100},"shareRate":{"type":"number","minimum":0,"maximum":100},"commentRate":{"type":"number","minimum":0,"maximum":100},"percentage":{"type":"number","minimum":0,"maximum":100}},"required":["metricsId","segmentType","segmentValue"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.performanceTracking.getAudienceData":{"get":{"operationId":"cms_performanceTracking_getAudienceData","summary":"Performance Tracking.get Audience Data","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"metricsId":{"type":"string"},"segmentType":{"type":"string","enum":["AGE_GROUP","GENDER","LOCATION","DEVICE","BROWSER","REFERRER","TRAFFIC_SOURCE","USER_TYPE","INTEREST","BEHAVIOR"]}},"required":["metricsId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.performanceTracking.createGoal":{"post":{"operationId":"cms_performanceTracking_createGoal","summary":"Performance Tracking.create Goal","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"metricsId":{"type":"string"},"name":{"type":"string","minLength":1,"maxLength":255},"description":{"type":"string"},"metricType":{"type":"string","enum":["VIEWS","UNIQUE_VIEWS","TIME_ON_PAGE","BOUNCE_RATE","EXIT_RATE","CONVERSION_RATE","ENGAGEMENT_RATE","SOCIAL_SHARES","COMMENTS","LIKES","DOWNLOADS","ORGANIC_TRAFFIC","SEARCH_CLICKS","OVERALL_SCORE"]},"targetValue":{"type":"number","minimum":0},"timeframe":{"type":"string","enum":["DAILY","WEEKLY","MONTHLY","QUARTERLY","YEARLY","CUSTOM"]},"priority":{"type":"string","enum":["LOW","MEDIUM","HIGH","CRITICAL"]},"notifyOnProgress":{"type":"boolean"},"notifyOnAchievement":{"type":"boolean"},"progressThreshold":{"type":"number","minimum":0,"maximum":100}},"required":["metricsId","name","metricType","targetValue","timeframe"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.performanceTracking.updateGoal":{"post":{"operationId":"cms_performanceTracking_updateGoal","summary":"Performance Tracking.update Goal","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"data":{"type":"object","properties":{"metricsId":{"type":"string"},"name":{"type":"string","minLength":1,"maxLength":255},"description":{"type":"string"},"metricType":{"type":"string","enum":["VIEWS","UNIQUE_VIEWS","TIME_ON_PAGE","BOUNCE_RATE","EXIT_RATE","CONVERSION_RATE","ENGAGEMENT_RATE","SOCIAL_SHARES","COMMENTS","LIKES","DOWNLOADS","ORGANIC_TRAFFIC","SEARCH_CLICKS","OVERALL_SCORE"]},"targetValue":{"type":"number","minimum":0},"timeframe":{"type":"string","enum":["DAILY","WEEKLY","MONTHLY","QUARTERLY","YEARLY","CUSTOM"]},"priority":{"type":"string","enum":["LOW","MEDIUM","HIGH","CRITICAL"]},"notifyOnProgress":{"type":"boolean"},"notifyOnAchievement":{"type":"boolean"},"progressThreshold":{"type":"number","minimum":0,"maximum":100}},"additionalProperties":false}},"required":["id","data"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.performanceTracking.deleteGoal":{"post":{"operationId":"cms_performanceTracking_deleteGoal","summary":"Performance Tracking.delete Goal","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.performanceTracking.listGoals":{"get":{"operationId":"cms_performanceTracking_listGoals","summary":"Performance Tracking.list Goals","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"metricsId":{"type":"string"},"status":{"type":"string","enum":["ACTIVE","PAUSED","COMPLETED","CANCELLED"]},"priority":{"type":"string","enum":["LOW","MEDIUM","HIGH","CRITICAL"]}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.performanceTracking.createAlert":{"post":{"operationId":"cms_performanceTracking_createAlert","summary":"Performance Tracking.create Alert","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"metricsId":{"type":"string"},"alertType":{"type":"string","enum":["PERFORMANCE_DROP","TRAFFIC_SPIKE","ENGAGEMENT_LOW","CONVERSION_DROP","ERROR_RATE_HIGH","GOAL_ACHIEVED","THRESHOLD_REACHED","ANOMALY_DETECTED"]},"severity":{"type":"string","enum":["INFO","WARNING","ERROR","CRITICAL"]},"message":{"type":"string","minLength":1},"description":{"type":"string"},"metricType":{"type":"string","enum":["VIEWS","UNIQUE_VIEWS","TIME_ON_PAGE","BOUNCE_RATE","EXIT_RATE","CONVERSION_RATE","ENGAGEMENT_RATE","SOCIAL_SHARES","COMMENTS","LIKES","DOWNLOADS","ORGANIC_TRAFFIC","SEARCH_CLICKS","OVERALL_SCORE"]},"threshold":{"type":"number"},"actualValue":{"type":"number"},"comparisonType":{"type":"string","enum":["GREATER_THAN","LESS_THAN","EQUAL_TO","GREATER_THAN_OR_EQUAL","LESS_THAN_OR_EQUAL","PERCENTAGE_CHANGE"]}},"required":["metricsId","alertType","severity","message","metricType","threshold","actualValue","comparisonType"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.performanceTracking.acknowledgeAlert":{"post":{"operationId":"cms_performanceTracking_acknowledgeAlert","summary":"Performance Tracking.acknowledge Alert","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.performanceTracking.resolveAlert":{"post":{"operationId":"cms_performanceTracking_resolveAlert","summary":"Performance Tracking.resolve Alert","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"resolution":{"type":"string"}},"required":["id","resolution"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.performanceTracking.listAlerts":{"get":{"operationId":"cms_performanceTracking_listAlerts","summary":"Performance Tracking.list Alerts","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"metricsId":{"type":"string"},"alertType":{"type":"string","enum":["PERFORMANCE_DROP","TRAFFIC_SPIKE","ENGAGEMENT_LOW","CONVERSION_DROP","ERROR_RATE_HIGH","GOAL_ACHIEVED","THRESHOLD_REACHED","ANOMALY_DETECTED"]},"severity":{"type":"string","enum":["INFO","WARNING","ERROR","CRITICAL"]},"status":{"type":"string","enum":["ACTIVE","ACKNOWLEDGED","RESOLVED","DISMISSED"]}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.performanceTracking.createReport":{"post":{"operationId":"cms_performanceTracking_createReport","summary":"Performance Tracking.create Report","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1,"maxLength":255},"description":{"type":"string"},"reportType":{"type":"string","enum":["PERFORMANCE_SUMMARY","CONTENT_ANALYSIS","AUDIENCE_INSIGHTS","TREND_ANALYSIS","GOAL_PROGRESS","COMPETITIVE_ANALYSIS","CUSTOM"]},"dateRange":{"type":"string","enum":["LAST_7_DAYS","LAST_30_DAYS","LAST_90_DAYS","LAST_6_MONTHS","LAST_YEAR","CUSTOM"]},"startDate":{},"endDate":{},"contentTypes":{"type":"array","items":{"type":"string","enum":["POST","PAGE","ARTICLE","PRODUCT","EVENT","DOCUMENT","MEDIA","CUSTOM"]}},"categories":{"type":"array","items":{"type":"string"}},"tags":{"type":"array","items":{"type":"string"}},"authors":{"type":"array","items":{"type":"string"}},"isPublic":{"type":"boolean"}},"required":["name","reportType","dateRange","startDate","endDate"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.performanceTracking.generateReport":{"post":{"operationId":"cms_performanceTracking_generateReport","summary":"Performance Tracking.generate Report","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.performanceTracking.listReports":{"get":{"operationId":"cms_performanceTracking_listReports","summary":"Performance Tracking.list Reports","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"reports":{"type":"array","items":{}},"pagination":{"type":"object","properties":{"page":{"type":"integer"},"limit":{"type":"integer"},"total":{"type":"integer"},"totalPages":{"type":"integer"}}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"integer","minimum":1,"maximum":9007199254740991},"limit":{"default":20,"type":"integer","minimum":1,"maximum":100},"reportType":{"type":"string","enum":["PERFORMANCE_SUMMARY","CONTENT_ANALYSIS","AUDIENCE_INSIGHTS","TREND_ANALYSIS","GOAL_PROGRESS","COMPETITIVE_ANALYSIS","CUSTOM"]}},"required":["page","limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.performanceTracking.createSchedule":{"post":{"operationId":"cms_performanceTracking_createSchedule","summary":"Performance Tracking.create Schedule","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"reportId":{"type":"string"},"frequency":{"type":"string","enum":["DAILY","WEEKLY","MONTHLY","QUARTERLY"]},"dayOfWeek":{"type":"integer","minimum":0,"maximum":6},"dayOfMonth":{"type":"integer","minimum":1,"maximum":31},"time":{"type":"string","pattern":"^([0-1]?[0-9]|2[0-3]):[0-5][0-9]$"},"timezone":{"type":"string"},"recipients":{"type":"array","items":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"}}},"required":["reportId","frequency","time","recipients"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.performanceTracking.updateSchedule":{"post":{"operationId":"cms_performanceTracking_updateSchedule","summary":"Performance Tracking.update Schedule","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"data":{"type":"object","properties":{"reportId":{"type":"string"},"frequency":{"type":"string","enum":["DAILY","WEEKLY","MONTHLY","QUARTERLY"]},"dayOfWeek":{"type":"integer","minimum":0,"maximum":6},"dayOfMonth":{"type":"integer","minimum":1,"maximum":31},"time":{"type":"string","pattern":"^([0-1]?[0-9]|2[0-3]):[0-5][0-9]$"},"timezone":{"type":"string"},"recipients":{"type":"array","items":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"}}},"additionalProperties":false}},"required":["id","data"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.performanceTracking.deleteSchedule":{"post":{"operationId":"cms_performanceTracking_deleteSchedule","summary":"Performance Tracking.delete Schedule","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.performanceTracking.getAnalytics":{"get":{"operationId":"cms_performanceTracking_getAnalytics","summary":"Performance Tracking.get Analytics","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"period":{"type":"string","enum":["HOURLY","DAILY","WEEKLY","MONTHLY","QUARTERLY","YEARLY"]},"periodStart":{},"periodEnd":{}},"required":["period","periodStart","periodEnd"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.performanceTracking.getStatistics":{"get":{"operationId":"cms_performanceTracking_getStatistics","summary":"Performance Tracking.get Statistics","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"totalMetrics":{"type":"integer"},"totalGoals":{"type":"integer"},"activeAlerts":{"type":"integer"},"totalReports":{"type":"integer"},"avgPerformanceScore":{"type":"integer"},"topPerformers":{"type":"array","items":{}},"recentAlerts":{"type":"array","items":{}}}}}}}}}},"/api/trpc/cms.migrationTools.createMigrationJob":{"post":{"operationId":"cms_migrationTools_createMigrationJob","summary":"Migration Tools.create Migration Job","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"jobType":{"type":"string","enum":["import","export","migration","sync"]},"source":{"type":"string","enum":["WORDPRESS","DRUPAL","JOOMLA","GHOST","MEDIUM","BLOGGER","SQUARESPACE","WIX","SHOPIFY","MAGENTO","PRESTASHOP","CUSTOM_API","DATABASE","FILE_SYSTEM","FTP","SFTP","S3","GOOGLE_DRIVE","DROPBOX"]},"destination":{"type":"string","enum":["WORDPRESS","DRUPAL","JOOMLA","GHOST","MEDIUM","BLOGGER","SQUARESPACE","WIX","SHOPIFY","MAGENTO","PRESTASHOP","CUSTOM_API","DATABASE","FILE_SYSTEM","FTP","SFTP","S3","GOOGLE_DRIVE","DROPBOX"]},"direction":{"type":"string","enum":["IMPORT","EXPORT","BIDIRECTIONAL"]},"format":{"type":"string","enum":["JSON","CSV","XML","YAML","MARKDOWN","HTML","RSS","ATOM","WORDPRESS_XML","DRUPAL_TAR","JOOMLA_SQL","CUSTOM"]},"configuration":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"mapping":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"filters":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"transformations":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"validationLevel":{"type":"string","enum":["NONE","BASIC","STRICT","COMPREHENSIVE"]},"conflictResolution":{"type":"string","enum":["SKIP","OVERWRITE","MERGE","RENAME","MANUAL_REVIEW","CREATE_VERSION"]},"batchSize":{"type":"number","minimum":1,"maximum":1000},"maxRetries":{"type":"number","minimum":0,"maximum":10}},"required":["name","jobType","source","direction","format"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.migrationTools.getMigrationJobs":{"get":{"operationId":"cms_migrationTools_getMigrationJobs","summary":"Migration Tools.get Migration Jobs","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"status":{"type":"string","enum":["PENDING","PREPARING","IN_PROGRESS","PAUSED","COMPLETED","FAILED","CANCELLED"]},"jobType":{"type":"string"},"source":{"type":"string"},"limit":{"type":"number","minimum":1,"maximum":100},"offset":{"type":"number","minimum":0}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.migrationTools.getMigrationJob":{"get":{"operationId":"cms_migrationTools_getMigrationJob","summary":"Migration Tools.get Migration Job","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"jobId":{"type":"string"}},"required":["jobId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.migrationTools.startMigrationJob":{"post":{"operationId":"cms_migrationTools_startMigrationJob","summary":"Migration Tools.start Migration Job","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"jobId":{"type":"string"}},"required":["jobId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.migrationTools.pauseMigrationJob":{"post":{"operationId":"cms_migrationTools_pauseMigrationJob","summary":"Migration Tools.pause Migration Job","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"jobId":{"type":"string"}},"required":["jobId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.migrationTools.cancelMigrationJob":{"post":{"operationId":"cms_migrationTools_cancelMigrationJob","summary":"Migration Tools.cancel Migration Job","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"jobId":{"type":"string"}},"required":["jobId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.migrationTools.createMigrationTemplate":{"post":{"operationId":"cms_migrationTools_createMigrationTemplate","summary":"Migration Tools.create Migration Template","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"category":{"type":"string"},"source":{"type":"string","enum":["WORDPRESS","DRUPAL","JOOMLA","GHOST","MEDIUM","BLOGGER","SQUARESPACE","WIX","SHOPIFY","MAGENTO","PRESTASHOP","CUSTOM_API","DATABASE","FILE_SYSTEM","FTP","SFTP","S3","GOOGLE_DRIVE","DROPBOX"]},"destination":{"type":"string","enum":["WORDPRESS","DRUPAL","JOOMLA","GHOST","MEDIUM","BLOGGER","SQUARESPACE","WIX","SHOPIFY","MAGENTO","PRESTASHOP","CUSTOM_API","DATABASE","FILE_SYSTEM","FTP","SFTP","S3","GOOGLE_DRIVE","DROPBOX"]},"direction":{"type":"string","enum":["IMPORT","EXPORT","BIDIRECTIONAL"]},"format":{"type":"string","enum":["JSON","CSV","XML","YAML","MARKDOWN","HTML","RSS","ATOM","WORDPRESS_XML","DRUPAL_TAR","JOOMLA_SQL","CUSTOM"]},"configuration":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"mapping":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"transformations":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"isPublic":{"type":"boolean"},"tags":{"type":"array","items":{"type":"string"}}},"required":["name","source","direction","format"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.migrationTools.getMigrationTemplates":{"get":{"operationId":"cms_migrationTools_getMigrationTemplates","summary":"Migration Tools.get Migration Templates","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"category":{"type":"string"},"source":{"type":"string"},"destination":{"type":"string"},"isPublic":{"type":"boolean"},"limit":{"type":"number","minimum":1,"maximum":100},"offset":{"type":"number","minimum":0}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.migrationTools.useMigrationTemplate":{"post":{"operationId":"cms_migrationTools_useMigrationTemplate","summary":"Migration Tools.use Migration Template","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"templateId":{"type":"string"}},"required":["templateId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.migrationTools.createTransformationRule":{"post":{"operationId":"cms_migrationTools_createTransformationRule","summary":"Migration Tools.create Transformation Rule","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"category":{"type":"string"},"sourceField":{"type":"string"},"targetField":{"type":"string"},"transformationType":{"type":"string","enum":["FIELD_MAPPING","VALUE_CONVERSION","FORMAT_CHANGE","VALIDATION","SANITIZATION","ENRICHMENT","FILTERING","AGGREGATION"]},"rule":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"conditions":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"validationRule":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"priority":{"type":"number"}},"required":["name","sourceField","targetField","transformationType"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.migrationTools.getTransformationRules":{"get":{"operationId":"cms_migrationTools_getTransformationRules","summary":"Migration Tools.get Transformation Rules","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"category":{"type":"string"},"transformationType":{"type":"string","enum":["FIELD_MAPPING","VALUE_CONVERSION","FORMAT_CHANGE","VALIDATION","SANITIZATION","ENRICHMENT","FILTERING","AGGREGATION"]},"isActive":{"type":"boolean"},"limit":{"type":"number","minimum":1,"maximum":100},"offset":{"type":"number","minimum":0}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.migrationTools.createImportExportProfile":{"post":{"operationId":"cms_migrationTools_createImportExportProfile","summary":"Migration Tools.create Import Export Profile","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"profileType":{"type":"string","enum":["import","export","both"]},"format":{"type":"string","enum":["JSON","CSV","XML","YAML","MARKDOWN","HTML","RSS","ATOM","WORDPRESS_XML","DRUPAL_TAR","JOOMLA_SQL","CUSTOM"]},"source":{"type":"string","enum":["WORDPRESS","DRUPAL","JOOMLA","GHOST","MEDIUM","BLOGGER","SQUARESPACE","WIX","SHOPIFY","MAGENTO","PRESTASHOP","CUSTOM_API","DATABASE","FILE_SYSTEM","FTP","SFTP","S3","GOOGLE_DRIVE","DROPBOX"]},"destination":{"type":"string","enum":["WORDPRESS","DRUPAL","JOOMLA","GHOST","MEDIUM","BLOGGER","SQUARESPACE","WIX","SHOPIFY","MAGENTO","PRESTASHOP","CUSTOM_API","DATABASE","FILE_SYSTEM","FTP","SFTP","S3","GOOGLE_DRIVE","DROPBOX"]},"settings":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"fieldMappings":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"filters":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"isScheduled":{"type":"boolean"},"schedule":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}}},"required":["name","profileType","format"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.migrationTools.getImportExportProfiles":{"get":{"operationId":"cms_migrationTools_getImportExportProfiles","summary":"Migration Tools.get Import Export Profiles","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"profileType":{"type":"string","enum":["import","export","both"]},"format":{"type":"string"},"isScheduled":{"type":"boolean"},"limit":{"type":"number","minimum":1,"maximum":100},"offset":{"type":"number","minimum":0}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.migrationTools.createApiConnection":{"post":{"operationId":"cms_migrationTools_createApiConnection","summary":"Migration Tools.create Api Connection","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"source":{"type":"string","enum":["WORDPRESS","DRUPAL","JOOMLA","GHOST","MEDIUM","BLOGGER","SQUARESPACE","WIX","SHOPIFY","MAGENTO","PRESTASHOP","CUSTOM_API","DATABASE","FILE_SYSTEM","FTP","SFTP","S3","GOOGLE_DRIVE","DROPBOX"]},"baseUrl":{"type":"string","format":"uri"},"authentication":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"headers":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"timeout":{"type":"number","minimum":1000,"maximum":300000},"retryAttempts":{"type":"number","minimum":0,"maximum":10},"rateLimit":{"type":"number","minimum":1}},"required":["name","source","baseUrl"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.migrationTools.getApiConnections":{"get":{"operationId":"cms_migrationTools_getApiConnections","summary":"Migration Tools.get Api Connections","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"source":{"type":"string"},"isActive":{"type":"boolean"},"limit":{"type":"number","minimum":1,"maximum":100},"offset":{"type":"number","minimum":0}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.migrationTools.testApiConnection":{"post":{"operationId":"cms_migrationTools_testApiConnection","summary":"Migration Tools.test Api Connection","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"connectionId":{"type":"string"}},"required":["connectionId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.migrationTools.getMigrationAnalytics":{"get":{"operationId":"cms_migrationTools_getMigrationAnalytics","summary":"Migration Tools.get Migration Analytics","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"startDate":{},"endDate":{},"groupBy":{"type":"string","enum":["hour","day"]}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.migrationTools.getMigrationStatistics":{"get":{"operationId":"cms_migrationTools_getMigrationStatistics","summary":"Migration Tools.get Migration Statistics","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/cms.migrationTools.getJobLogs":{"get":{"operationId":"cms_migrationTools_getJobLogs","summary":"Migration Tools.get Job Logs","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"jobId":{"type":"string"},"level":{"type":"string","enum":["DEBUG","INFO","WARN","ERROR"]},"phase":{"type":"string"},"limit":{"type":"number","minimum":1,"maximum":1000},"offset":{"type":"number","minimum":0}},"required":["jobId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.backupRestore.createBackupJob":{"post":{"operationId":"cms_backupRestore_createBackupJob","summary":"Backup Restore.create Backup Job","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"backupType":{"type":"string","enum":["FULL","INCREMENTAL","DIFFERENTIAL","SNAPSHOT","CUSTOM"]},"scope":{"type":"string","enum":["CONTENT_ONLY","SETTINGS_ONLY","MEDIA_ONLY","DATABASE_ONLY","FULL_SYSTEM","CUSTOM_SELECTION"]},"format":{"type":"string","enum":["SQL","JSON","XML","TAR_GZ","ZIP","CUSTOM"]},"configuration":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"includedTables":{"type":"array","items":{"type":"string"}},"excludedTables":{"type":"array","items":{"type":"string"}},"includedPaths":{"type":"array","items":{"type":"string"}},"excludedPaths":{"type":"array","items":{"type":"string"}},"trigger":{"type":"string","enum":["MANUAL","SCHEDULED","PRE_UPDATE","PRE_MIGRATION","SYSTEM_EVENT","API_TRIGGERED"]},"schedule":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"isRecurring":{"type":"boolean"},"storageProvider":{"type":"string","enum":["LOCAL","S3","GOOGLE_CLOUD","AZURE_BLOB","DROPBOX","FTP","SFTP","CUSTOM"]},"storageConfig":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"compression":{"type":"string","enum":["NONE","GZIP","BZIP2","LZMA","ZSTD"]},"encryption":{"type":"string","enum":["NONE","AES_256","RSA_2048","CUSTOM"]},"retentionDays":{"type":"number","minimum":1,"maximum":365}},"required":["name","backupType","scope","format","trigger","storageProvider"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.backupRestore.getBackupJobs":{"get":{"operationId":"cms_backupRestore_getBackupJobs","summary":"Backup Restore.get Backup Jobs","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"status":{"type":"string","enum":["PENDING","CREATING","COMPLETED","FAILED","CANCELLED","EXPIRED"]},"backupType":{"type":"string","enum":["FULL","INCREMENTAL","DIFFERENTIAL","SNAPSHOT","CUSTOM"]},"scope":{"type":"string","enum":["CONTENT_ONLY","SETTINGS_ONLY","MEDIA_ONLY","DATABASE_ONLY","FULL_SYSTEM","CUSTOM_SELECTION"]},"limit":{"type":"number","minimum":1,"maximum":100},"offset":{"type":"number","minimum":0}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.backupRestore.getBackupJob":{"get":{"operationId":"cms_backupRestore_getBackupJob","summary":"Backup Restore.get Backup Job","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"jobId":{"type":"string"}},"required":["jobId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.backupRestore.startBackupJob":{"post":{"operationId":"cms_backupRestore_startBackupJob","summary":"Backup Restore.start Backup Job","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"jobId":{"type":"string"}},"required":["jobId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.backupRestore.cancelBackupJob":{"post":{"operationId":"cms_backupRestore_cancelBackupJob","summary":"Backup Restore.cancel Backup Job","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"jobId":{"type":"string"}},"required":["jobId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.backupRestore.deleteBackupJob":{"post":{"operationId":"cms_backupRestore_deleteBackupJob","summary":"Backup Restore.delete Backup Job","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"jobId":{"type":"string"}},"required":["jobId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.backupRestore.createRestoreJob":{"post":{"operationId":"cms_backupRestore_createRestoreJob","summary":"Backup Restore.create Restore Job","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"backupId":{"type":"string"},"strategy":{"type":"string","enum":["FULL_REPLACE","MERGE_CONTENT","SELECTIVE_RESTORE","PREVIEW_ONLY","INCREMENTAL_RESTORE"]},"configuration":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"selectedItems":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"targetLocation":{"type":"string"},"isPreview":{"type":"boolean"}},"required":["name","backupId","strategy"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.backupRestore.getRestoreJobs":{"get":{"operationId":"cms_backupRestore_getRestoreJobs","summary":"Backup Restore.get Restore Jobs","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"status":{"type":"string","enum":["PENDING","PREPARING","RESTORING","COMPLETED","FAILED","CANCELLED","ROLLED_BACK"]},"strategy":{"type":"string","enum":["FULL_REPLACE","MERGE_CONTENT","SELECTIVE_RESTORE","PREVIEW_ONLY","INCREMENTAL_RESTORE"]},"limit":{"type":"number","minimum":1,"maximum":100},"offset":{"type":"number","minimum":0}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.backupRestore.startRestoreJob":{"post":{"operationId":"cms_backupRestore_startRestoreJob","summary":"Backup Restore.start Restore Job","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"jobId":{"type":"string"}},"required":["jobId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.backupRestore.createBackupSchedule":{"post":{"operationId":"cms_backupRestore_createBackupSchedule","summary":"Backup Restore.create Backup Schedule","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"backupId":{"type":"string"},"cronExpression":{"type":"string"},"timezone":{"type":"string"},"maxRetries":{"type":"number","minimum":0,"maximum":10},"retryInterval":{"type":"number","minimum":60,"maximum":3600},"maxBackups":{"type":"number","minimum":1,"maximum":100},"retentionDays":{"type":"number","minimum":1,"maximum":365},"notifyOnSuccess":{"type":"boolean"},"notifyOnFailure":{"type":"boolean"},"notificationEmails":{"type":"array","items":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"}}},"required":["name","cronExpression"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.backupRestore.getBackupSchedules":{"get":{"operationId":"cms_backupRestore_getBackupSchedules","summary":"Backup Restore.get Backup Schedules","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"isActive":{"type":"boolean"},"limit":{"type":"number","minimum":1,"maximum":100},"offset":{"type":"number","minimum":0}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.backupRestore.toggleSchedule":{"post":{"operationId":"cms_backupRestore_toggleSchedule","summary":"Backup Restore.toggle Schedule","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"scheduleId":{"type":"string"}},"required":["scheduleId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.backupRestore.createBackupTemplate":{"post":{"operationId":"cms_backupRestore_createBackupTemplate","summary":"Backup Restore.create Backup Template","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"category":{"type":"string"},"backupType":{"type":"string","enum":["FULL","INCREMENTAL","DIFFERENTIAL","SNAPSHOT","CUSTOM"]},"scope":{"type":"string","enum":["CONTENT_ONLY","SETTINGS_ONLY","MEDIA_ONLY","DATABASE_ONLY","FULL_SYSTEM","CUSTOM_SELECTION"]},"format":{"type":"string","enum":["SQL","JSON","XML","TAR_GZ","ZIP","CUSTOM"]},"configuration":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"defaultSchedule":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"isPublic":{"type":"boolean"},"tags":{"type":"array","items":{"type":"string"}}},"required":["name","backupType","scope","format"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.backupRestore.getBackupTemplates":{"get":{"operationId":"cms_backupRestore_getBackupTemplates","summary":"Backup Restore.get Backup Templates","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"category":{"type":"string"},"backupType":{"type":"string","enum":["FULL","INCREMENTAL","DIFFERENTIAL","SNAPSHOT","CUSTOM"]},"scope":{"type":"string","enum":["CONTENT_ONLY","SETTINGS_ONLY","MEDIA_ONLY","DATABASE_ONLY","FULL_SYSTEM","CUSTOM_SELECTION"]},"isPublic":{"type":"boolean"},"limit":{"type":"number","minimum":1,"maximum":100},"offset":{"type":"number","minimum":0}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.backupRestore.useBackupTemplate":{"post":{"operationId":"cms_backupRestore_useBackupTemplate","summary":"Backup Restore.use Backup Template","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"templateId":{"type":"string"}},"required":["templateId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.backupRestore.createStorageConfig":{"post":{"operationId":"cms_backupRestore_createStorageConfig","summary":"Backup Restore.create Storage Config","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"provider":{"type":"string","enum":["LOCAL","S3","GOOGLE_CLOUD","AZURE_BLOB","DROPBOX","FTP","SFTP","CUSTOM"]},"configuration":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"credentials":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"basePath":{"anyOf":[{"type":"string"},{"type":"null"}]},"maxSize":{"anyOf":[{"type":"number"},{"type":"null"}]},"retentionDays":{"anyOf":[{"type":"number","minimum":1,"maximum":365},{"type":"null"}]},"isDefault":{"anyOf":[{"type":"boolean"},{"type":"null"}]}},"required":["name","provider"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.backupRestore.getStorageConfigs":{"get":{"operationId":"cms_backupRestore_getStorageConfigs","summary":"Backup Restore.get Storage Configs","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"provider":{"type":"string","enum":["LOCAL","S3","GOOGLE_CLOUD","AZURE_BLOB","DROPBOX","FTP","SFTP","CUSTOM"]},"isActive":{"type":"boolean"},"limit":{"type":"number","minimum":1,"maximum":100},"offset":{"type":"number","minimum":0}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.backupRestore.testStorageConfig":{"post":{"operationId":"cms_backupRestore_testStorageConfig","summary":"Backup Restore.test Storage Config","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"configId":{"type":"string"}},"required":["configId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.backupRestore.getBackupAnalytics":{"get":{"operationId":"cms_backupRestore_getBackupAnalytics","summary":"Backup Restore.get Backup Analytics","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"startDate":{},"endDate":{},"groupBy":{"type":"string","enum":["hour","day"]}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.backupRestore.getBackupStatistics":{"get":{"operationId":"cms_backupRestore_getBackupStatistics","summary":"Backup Restore.get Backup Statistics","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"totalBackups":{"type":"integer"},"completedBackups":{"type":"integer"},"failedBackups":{"type":"integer"},"totalSize":{"type":"integer"},"activeSchedules":{"type":"integer"},"totalTemplates":{"type":"integer"},"totalStorageConfigs":{"type":"integer"},"recentBackups":{"type":"array","items":{}},"successRate":{"type":"integer"}}}}}}}}},"/api/trpc/cms.backupRestore.getBackupLogs":{"get":{"operationId":"cms_backupRestore_getBackupLogs","summary":"Backup Restore.get Backup Logs","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"backupId":{"type":"string"},"level":{"type":"string","enum":["DEBUG","INFO","WARN","ERROR"]},"phase":{"type":"string"},"limit":{"type":"number","minimum":1,"maximum":1000},"offset":{"type":"number","minimum":0}},"required":["backupId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.backupRestore.getRestoreLogs":{"get":{"operationId":"cms_backupRestore_getRestoreLogs","summary":"Backup Restore.get Restore Logs","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"restoreId":{"type":"string"},"level":{"type":"string","enum":["DEBUG","INFO","WARN","ERROR"]},"phase":{"type":"string"},"limit":{"type":"number","minimum":1,"maximum":1000},"offset":{"type":"number","minimum":0}},"required":["restoreId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.magazine.getStats":{"get":{"operationId":"cms_magazine_getStats","summary":"Magazine.get Stats","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"totalArticles":{"type":"integer"},"publishedArticles":{"type":"integer"},"draftArticles":{"type":"integer"},"totalMagazines":{"type":"integer"}}}}}}}}},"/api/trpc/cms.redirections.list":{"get":{"operationId":"cms_redirections_list","summary":"Redirections.list","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{}},"total":{"type":"integer"},"page":{"type":"integer"},"pageSize":{"type":"integer"},"totalPages":{"type":"integer"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"number","minimum":1},"pageSize":{"default":50,"type":"number","minimum":1,"maximum":200},"search":{"type":"string"},"isActive":{"type":"boolean"}},"required":["page","pageSize"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.redirections.get":{"get":{"operationId":"cms_redirections_get","summary":"Redirections.get","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.redirections.create":{"post":{"operationId":"cms_redirections_create","summary":"Redirections.create","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"sourcePath":{"type":"string","minLength":1},"targetPath":{"type":"string","minLength":1},"statusCode":{"default":301,"type":"integer","minimum":300,"maximum":399},"isRegex":{"default":false,"type":"boolean"},"isActive":{"default":true,"type":"boolean"},"priority":{"default":0,"type":"integer","minimum":0,"maximum":9007199254740991},"notes":{"type":"string"}},"required":["sourcePath","targetPath","statusCode","isRegex","isActive","priority"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.redirections.update":{"post":{"operationId":"cms_redirections_update","summary":"Redirections.update","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"sourcePath":{"type":"string","minLength":1},"targetPath":{"type":"string","minLength":1},"statusCode":{"type":"integer","minimum":300,"maximum":399},"isRegex":{"type":"boolean"},"isActive":{"type":"boolean"},"priority":{"type":"integer","minimum":0,"maximum":9007199254740991},"notes":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.redirections.delete":{"post":{"operationId":"cms_redirections_delete","summary":"Redirections.delete","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.redirections.bulkDelete":{"post":{"operationId":"cms_redirections_bulkDelete","summary":"Redirections.bulk Delete","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"ids":{"minItems":1,"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}}},"required":["ids"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.redirections.testRedirect":{"get":{"operationId":"cms_redirections_testRedirect","summary":"Redirections.test Redirect","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"testPath":{"type":"string","minLength":1},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["testPath"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.redirections.importCSV":{"post":{"operationId":"cms_redirections_importCSV","summary":"Redirections.import CSV","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"rows":{"minItems":1,"maxItems":5000,"type":"array","items":{"type":"object","properties":{"sourcePath":{"type":"string","minLength":1},"targetPath":{"type":"string","minLength":1},"statusCode":{"type":"integer","minimum":300,"maximum":399},"isRegex":{"type":"boolean"},"priority":{"type":"integer","minimum":0,"maximum":9007199254740991},"notes":{"type":"string"}},"required":["sourcePath","targetPath"],"additionalProperties":false}},"mode":{"type":"string","enum":["merge","replace"]}},"required":["rows","mode"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.redirections.getStats":{"get":{"operationId":"cms_redirections_getStats","summary":"Redirections.get Stats","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer"},"active":{"type":"integer"},"inactive":{"type":"integer"},"totalHits":{"type":"integer"}}}}}}}}},"/api/trpc/cms.routes.list":{"get":{"operationId":"cms_routes_list","summary":"Routes.list","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{}},"total":{"type":"integer"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"activeOnly":{"type":"boolean"},"targetType":{"type":"string","enum":["POST","REDIRECT","LEGACY_CODE","PAGE"]},"limit":{"type":"integer","minimum":1,"maximum":500},"offset":{"type":"integer","minimum":0,"maximum":9007199254740991}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.routes.get":{"get":{"operationId":"cms_routes_get","summary":"Routes.get","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.routes.getByPath":{"get":{"operationId":"cms_routes_getByPath","summary":"Routes.get By Path","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"path":{"type":"string","minLength":1}},"required":["path"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.routes.create":{"post":{"operationId":"cms_routes_create","summary":"Routes.create","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"path":{"type":"string","minLength":1},"targetType":{"type":"string","enum":["POST","REDIRECT","LEGACY_CODE","PAGE"]},"postId":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]},"redirectTo":{"anyOf":[{"type":"string","minLength":1},{"type":"null"}]},"redirectCode":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},"isActive":{"type":"boolean"},"notes":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["path","targetType"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.routes.update":{"post":{"operationId":"cms_routes_update","summary":"Routes.update","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"path":{"type":"string","minLength":1},"targetType":{"type":"string","enum":["POST","REDIRECT","LEGACY_CODE","PAGE"]},"postId":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]},"redirectTo":{"anyOf":[{"type":"string","minLength":1},{"type":"null"}]},"redirectCode":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},"isActive":{"type":"boolean"},"notes":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.routes.delete":{"post":{"operationId":"cms_routes_delete","summary":"Routes.delete","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.themes.getStats":{"get":{"operationId":"cms_themes_getStats","summary":"Themes.get Stats","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"activeThemes":{"type":"integer"},"customThemes":{"type":"integer"},"recentChanges":{"type":"integer"}}}}}}}}},"/api/trpc/cms.notifications.getStats":{"get":{"operationId":"cms_notifications_getStats","summary":"Notifications.get Stats","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"totalTemplates":{"type":"integer"},"activeTemplates":{"type":"integer"},"channels":{"type":"array","items":{"type":"string"}}}}}}}}}},"/api/trpc/cms.localization.getStats":{"get":{"operationId":"cms_localization_getStats","summary":"Localization.get Stats","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"availableLanguages":{"type":"integer"},"defaultLanguage":{"type":"string"},"translatedStrings":{"type":"integer"}}}}}}}}},"/api/trpc/cms.content.getStats":{"get":{"operationId":"cms_content_getStats","summary":"Content.get Stats","tags":["cms"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"media":{"type":"object","properties":{"total":{"type":"integer"},"used":{"type":"integer"},"unused":{"type":"integer"},"usageRate":{"type":"integer"}}},"publications":{"type":"object","properties":{"total":{"type":"integer"},"published":{"type":"integer"},"drafts":{"type":"integer"},"scheduled":{"type":"integer"}}},"seo":{"type":"object","properties":{"score":{"type":"integer"},"status":{"type":"string"},"optimizedArticles":{"type":"integer"},"totalArticles":{"type":"integer"}}},"contentFreshness":{"type":"object","properties":{"score":{"type":"integer"},"status":{"type":"string"},"recentPublications":{"type":"integer"},"outdatedContent":{"type":"integer"}}},"engagement":{"type":"object","properties":{"score":{"type":"integer"},"status":{"type":"string"},"totalViews":{"type":"integer"},"totalInteractions":{"type":"integer"},"avgEngagementRate":{"type":"integer"}}},"performance":{"type":"object","properties":{"loadTime":{"type":"number"},"status":{"type":"string"},"uptime":{"type":"number"}}}}}}}}}}},"/api/trpc/cms.content.getOverview":{"get":{"operationId":"cms_content_getOverview","summary":"Content.get Overview","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"dateFrom":{"default":"2026-06-04T08:32:13.784Z"},"dateTo":{"default":"2026-07-04T08:32:13.784Z"},"contentType":{"default":"all","type":"string","enum":["all","post","page","media"]},"period":{"default":"day","type":"string","enum":["day","week","month","year"]}},"required":["tenantId","siteId","dateFrom","dateTo","contentType","period"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.content.getContentPerformance":{"get":{"operationId":"cms_content_getContentPerformance","summary":"Content.get Content Performance","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"dateFrom":{},"dateTo":{},"limit":{"default":10,"type":"number","minimum":1,"maximum":100},"sortBy":{"default":"views","type":"string","enum":["views","engagement","recent","popular"]}},"required":["tenantId","siteId","limit","sortBy"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.content.getTrafficSources":{"get":{"operationId":"cms_content_getTrafficSources","summary":"Content.get Traffic Sources","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"dateFrom":{"default":"2026-06-04T08:32:13.784Z"},"dateTo":{"default":"2026-07-04T08:32:13.784Z"}},"required":["tenantId","siteId","dateFrom","dateTo"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.content.getPopularContent":{"get":{"operationId":"cms_content_getPopularContent","summary":"Content.get Popular Content","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"period":{"default":"month","type":"string","enum":["day","week","month"]},"limit":{"default":10,"type":"number","minimum":1,"maximum":20}},"required":["tenantId","siteId","period","limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.content.getTrends":{"get":{"operationId":"cms_content_getTrends","summary":"Content.get Trends","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"dateFrom":{"default":"2026-06-04T08:32:13.784Z"},"dateTo":{"default":"2026-07-04T08:32:13.784Z"},"contentType":{"default":"all","type":"string","enum":["all","post","page","media"]},"period":{"default":"day","type":"string","enum":["day","week","month","year"]}},"required":["tenantId","siteId","dateFrom","dateTo","contentType","period"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/cms.content.exportData":{"post":{"operationId":"cms_content_exportData","summary":"Content.export Data","tags":["cms"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"dateFrom":{},"dateTo":{},"format":{"default":"csv","type":"string","enum":["csv","json","xlsx"]},"includeTraffic":{"default":true,"type":"boolean"},"includeContent":{"default":true,"type":"boolean"},"includeEngagement":{"default":true,"type":"boolean"}},"required":["tenantId","siteId","dateFrom","dateTo","format","includeTraffic","includeContent","includeEngagement"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posts.listPosts":{"get":{"operationId":"posts_listPosts","summary":"List Posts","tags":["posts"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"posts":{"type":"array","items":{}},"total":{"type":"integer"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"postType":{"type":"string"},"category":{"type":"string"},"limit":{"default":20,"type":"number","minimum":1,"maximum":50},"offset":{"default":0,"type":"number","minimum":0},"featured":{"type":"boolean"},"dataCategory":{"type":"string"},"dataBrand":{"type":"string"},"categoryId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"crossSite":{"type":"boolean"}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posts.getPostBySlug":{"get":{"operationId":"posts_getPostBySlug","summary":"Get Post By Slug","tags":["posts"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"slug":{"type":"string","minLength":1}},"required":["slug"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posts.getDistinctDataValues":{"get":{"operationId":"posts_getDistinctDataValues","summary":"Get Distinct Data Values","tags":["posts"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"postType":{"type":"string"},"field":{"type":"string"},"crossSite":{"type":"boolean"}},"required":["postType","field"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/feedApiKeys.list":{"get":{"operationId":"feedApiKeys_list","summary":"List","tags":["feedApiKeys"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/feedApiKeys.get":{"get":{"operationId":"feedApiKeys_get","summary":"Get","tags":["feedApiKeys"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/feedApiKeys.create":{"post":{"operationId":"feedApiKeys_create","summary":"Create","tags":["feedApiKeys"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1,"maxLength":100},"description":{"type":"string","maxLength":500},"permissions":{"default":["full_content"],"type":"array","items":{"type":"string","enum":["full_content","unlimited_requests","custom_cache"]}},"expiresAt":{"anyOf":[{},{"type":"null"}]},"rateLimit":{"default":1000,"type":"number","minimum":0,"maximum":10000},"allowedIps":{"type":"string"}},"required":["name","permissions","rateLimit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/feedApiKeys.update":{"post":{"operationId":"feedApiKeys_update","summary":"Update","tags":["feedApiKeys"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"name":{"type":"string","minLength":1,"maxLength":100},"description":{"type":"string","maxLength":500},"permissions":{"type":"array","items":{"type":"string","enum":["full_content","unlimited_requests","custom_cache"]}},"expiresAt":{"anyOf":[{},{"type":"null"}]},"rateLimit":{"type":"number","minimum":0,"maximum":10000},"allowedIps":{"anyOf":[{"type":"string"},{"type":"null"}]},"isActive":{"type":"boolean"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/feedApiKeys.regenerate":{"post":{"operationId":"feedApiKeys_regenerate","summary":"Regenerate","tags":["feedApiKeys"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/feedApiKeys.delete":{"post":{"operationId":"feedApiKeys_delete","summary":"Delete","tags":["feedApiKeys"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/feedApiKeys.toggleActive":{"post":{"operationId":"feedApiKeys_toggleActive","summary":"Toggle Active","tags":["feedApiKeys"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/feedApiKeys.getStats":{"get":{"operationId":"feedApiKeys_getStats","summary":"Get Stats","tags":["feedApiKeys"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/magazineSubscriptions.getMySubscriptions":{"get":{"operationId":"magazineSubscriptions_getMySubscriptions","summary":"Get My Subscriptions","tags":["magazineSubscriptions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/magazineSubscriptions.checkMagazineAccess":{"get":{"operationId":"magazineSubscriptions_checkMagazineAccess","summary":"Check Magazine Access","tags":["magazineSubscriptions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"editionId":{"type":"string"}},"required":["editionId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/magazineSubscriptions.checkMagazineAccessBatch":{"get":{"operationId":"magazineSubscriptions_checkMagazineAccessBatch","summary":"Check Magazine Access Batch","tags":["magazineSubscriptions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"editionIds":{"maxItems":500,"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}}},"required":["editionIds"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/magazineSubscriptions.countMyAccessibleEditions":{"get":{"operationId":"magazineSubscriptions_countMyAccessibleEditions","summary":"Count My Accessible Editions","tags":["magazineSubscriptions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"publicationCode":{"type":"string","minLength":1,"maxLength":20},"year":{"type":"integer","minimum":1990,"maximum":2100},"crossSite":{"type":"boolean"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/magazineSubscriptions.listMyAccessibleEditions":{"get":{"operationId":"magazineSubscriptions_listMyAccessibleEditions","summary":"List My Accessible Editions","tags":["magazineSubscriptions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"publicationCode":{"type":"string","minLength":1,"maxLength":20},"year":{"type":"integer","minimum":1990,"maximum":2100},"crossSite":{"type":"boolean"},"purchasesOnly":{"type":"boolean"},"limit":{"default":24,"type":"integer","minimum":1,"maximum":100},"cursor":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/magazineSubscriptions.listPrintSubscriptions":{"get":{"operationId":"magazineSubscriptions_listPrintSubscriptions","summary":"List Print Subscriptions","tags":["magazineSubscriptions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"integer","minimum":1,"maximum":9007199254740991},"pageSize":{"default":50,"type":"integer","minimum":1,"maximum":200},"search":{"type":"string"},"titre":{"type":"string"},"activeOnly":{"default":false,"type":"boolean"}},"required":["page","pageSize","activeOnly"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/magazineSubscriptions.getPlans":{"get":{"operationId":"magazineSubscriptions_getPlans","summary":"Get Plans","tags":["magazineSubscriptions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"includeInactive":{"default":false,"type":"boolean"},"includeSubscriptionPlan":{"default":true,"type":"boolean"}},"required":["includeInactive","includeSubscriptionPlan"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/magazineSubscriptions.listSubscriptionPlans":{"get":{"operationId":"magazineSubscriptions_listSubscriptionPlans","summary":"List Subscription Plans","tags":["magazineSubscriptions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"boutiqueOnly":{"type":"boolean"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/magazineSubscriptions.getPlan":{"get":{"operationId":"magazineSubscriptions_getPlan","summary":"Get Plan","tags":["magazineSubscriptions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/magazineSubscriptions.getPlanDetail":{"get":{"operationId":"magazineSubscriptions_getPlanDetail","summary":"Get Plan Detail","tags":["magazineSubscriptions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"recentLimit":{"type":"integer","minimum":1,"maximum":100}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/magazineSubscriptions.createPlan":{"post":{"operationId":"magazineSubscriptions_createPlan","summary":"Create Plan","tags":["magazineSubscriptions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"subscriptionPlanId":{"type":"string"},"includesPrintEdition":{"default":false,"type":"boolean"},"includesDigitalEdition":{"default":true,"type":"boolean"},"archiveAccessMonths":{"default":12,"type":"number","minimum":1,"maximum":120},"digitalAccessDuration":{"default":30,"type":"number","minimum":1,"maximum":365},"maxDownloadsPerMonth":{"type":"number","minimum":1},"maxConcurrentDevices":{"default":3,"type":"number","minimum":1,"maximum":10},"allowsOfflineReading":{"default":true,"type":"boolean"},"shippingRegions":{"default":[],"type":"array","items":{"type":"string"}},"printDeliveryDays":{"default":7,"type":"number","minimum":1,"maximum":30},"giftSubscriptionEnabled":{"default":true,"type":"boolean"},"autoRenewalEnabled":{"default":true,"type":"boolean"},"monthlySubscriptionPlanId":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]},"metadata":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"parutionPublicationTitleId":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]},"parutionsPerYear":{"anyOf":[{"type":"integer","minimum":1,"maximum":52},{"type":"null"}]},"monthlyVariantPriceFR":{"anyOf":[{"type":"integer","minimum":0,"maximum":9007199254740991},{"type":"null"}]},"monthlyVariantPriceWORLD":{"anyOf":[{"type":"integer","minimum":0,"maximum":9007199254740991},{"type":"null"}]}},"required":["subscriptionPlanId","includesPrintEdition","includesDigitalEdition","archiveAccessMonths","digitalAccessDuration","maxConcurrentDevices","allowsOfflineReading","shippingRegions","printDeliveryDays","giftSubscriptionEnabled","autoRenewalEnabled"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/magazineSubscriptions.updatePlan":{"post":{"operationId":"magazineSubscriptions_updatePlan","summary":"Update Plan","tags":["magazineSubscriptions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"data":{"type":"object","properties":{"subscriptionPlanId":{"type":"string"},"includesPrintEdition":{"default":false,"type":"boolean"},"includesDigitalEdition":{"default":true,"type":"boolean"},"archiveAccessMonths":{"default":12,"type":"number","minimum":1,"maximum":120},"digitalAccessDuration":{"default":30,"type":"number","minimum":1,"maximum":365},"maxDownloadsPerMonth":{"type":"number","minimum":1},"maxConcurrentDevices":{"default":3,"type":"number","minimum":1,"maximum":10},"allowsOfflineReading":{"default":true,"type":"boolean"},"shippingRegions":{"default":[],"type":"array","items":{"type":"string"}},"printDeliveryDays":{"default":7,"type":"number","minimum":1,"maximum":30},"giftSubscriptionEnabled":{"default":true,"type":"boolean"},"autoRenewalEnabled":{"default":true,"type":"boolean"},"monthlySubscriptionPlanId":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]},"metadata":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"parutionPublicationTitleId":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]},"parutionsPerYear":{"anyOf":[{"type":"integer","minimum":1,"maximum":52},{"type":"null"}]},"monthlyVariantPriceFR":{"anyOf":[{"type":"integer","minimum":0,"maximum":9007199254740991},{"type":"null"}]},"monthlyVariantPriceWORLD":{"anyOf":[{"type":"integer","minimum":0,"maximum":9007199254740991},{"type":"null"}]}},"additionalProperties":false}},"required":["id","data"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/magazineSubscriptions.deletePlan":{"post":{"operationId":"magazineSubscriptions_deletePlan","summary":"Delete Plan","tags":["magazineSubscriptions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/magazineSubscriptions.setPlanCadence":{"post":{"operationId":"magazineSubscriptions_setPlanCadence","summary":"Set Plan Cadence","tags":["magazineSubscriptions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"subscriptionPlanId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"cadence":{"type":"string","enum":["ANNUAL","PER_ISSUE","MONTHLY","QUARTERLY"]}},"required":["subscriptionPlanId","cadence"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/magazineSubscriptions.createSubscription":{"post":{"operationId":"magazineSubscriptions_createSubscription","summary":"Create Subscription","tags":["magazineSubscriptions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"customerId":{"type":"string"},"magazineSubscriptionPlanId":{"type":"string"},"quantity":{"default":1,"type":"number","minimum":1},"trialDays":{"type":"number","minimum":0},"shippingAddress":{"type":"object","properties":{"name":{"type":"string"},"line1":{"type":"string"},"line2":{"type":"string"},"city":{"type":"string"},"state":{"type":"string"},"postal_code":{"type":"string"},"country":{"type":"string"}},"required":["name","line1","city","postal_code","country"],"additionalProperties":false},"metadata":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}}},"required":["customerId","magazineSubscriptionPlanId","quantity"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/magazineSubscriptions.grantAccess":{"post":{"operationId":"magazineSubscriptions_grantAccess","summary":"Grant Access","tags":["magazineSubscriptions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"userId":{"type":"string"},"editionId":{"type":"string"},"subscriptionId":{"type":"string"},"accessType":{"type":"string","enum":["FULL_ACCESS","PREVIEW_ONLY","ARCHIVE_ACCESS"]},"expiresAt":{}},"required":["userId","editionId","subscriptionId","accessType"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/magazineSubscriptions.updateAccess":{"post":{"operationId":"magazineSubscriptions_updateAccess","summary":"Update Access","tags":["magazineSubscriptions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"accessId":{"type":"string"},"accessType":{"type":"string","enum":["FULL_ACCESS","PREVIEW_ONLY","ARCHIVE_ACCESS"]},"expiresAt":{},"isActive":{"type":"boolean"}},"required":["accessId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/magazineSubscriptions.getUserAccess":{"get":{"operationId":"magazineSubscriptions_getUserAccess","summary":"Get User Access","tags":["magazineSubscriptions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"userId":{"type":"string"},"editionId":{"type":"string"},"includeExpired":{"default":false,"type":"boolean"}},"required":["userId","includeExpired"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/magazineSubscriptions.getContactMagazineAccess":{"get":{"operationId":"magazineSubscriptions_getContactMagazineAccess","summary":"Get Contact Magazine Access","tags":["magazineSubscriptions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"contactId":{"type":"string"}},"required":["contactId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/magazineSubscriptions.grantContactEditionAccess":{"post":{"operationId":"magazineSubscriptions_grantContactEditionAccess","summary":"Grant Contact Edition Access","tags":["magazineSubscriptions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"contactId":{"type":"string"},"editionId":{"type":"string"},"accessType":{"type":"string","enum":["FULL_ACCESS","PREVIEW_ONLY","ARCHIVE_ACCESS"]},"expiresAt":{"anyOf":[{},{"type":"null"}]}},"required":["contactId","editionId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/magazineSubscriptions.revokeContactAccess":{"post":{"operationId":"magazineSubscriptions_revokeContactAccess","summary":"Revoke Contact Access","tags":["magazineSubscriptions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"accessId":{"type":"string"}},"required":["accessId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/magazineSubscriptions.listPlansForGrant":{"get":{"operationId":"magazineSubscriptions_listPlansForGrant","summary":"List Plans For Grant","tags":["magazineSubscriptions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/magazineSubscriptions.grantManualSubscription":{"post":{"operationId":"magazineSubscriptions_grantManualSubscription","summary":"Grant Manual Subscription","tags":["magazineSubscriptions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"contactId":{"type":"string"},"magazineSubscriptionPlanId":{"type":"string"},"startDate":{},"endDate":{},"note":{"type":"string","maxLength":500}},"required":["contactId","magazineSubscriptionPlanId","startDate","endDate"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/magazineSubscriptions.createReaderAccount":{"post":{"operationId":"magazineSubscriptions_createReaderAccount","summary":"Create Reader Account","tags":["magazineSubscriptions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"contactId":{"type":"string"}},"required":["contactId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/magazineSubscriptions.getUserMagazineAccess":{"get":{"operationId":"magazineSubscriptions_getUserMagazineAccess","summary":"Get User Magazine Access","tags":["magazineSubscriptions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"userId":{"type":"string"}},"required":["userId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/magazineSubscriptions.grantUserEditionAccess":{"post":{"operationId":"magazineSubscriptions_grantUserEditionAccess","summary":"Grant User Edition Access","tags":["magazineSubscriptions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"userId":{"type":"string"},"editionId":{"type":"string"},"accessType":{"type":"string","enum":["FULL_ACCESS","PREVIEW_ONLY","ARCHIVE_ACCESS"]},"expiresAt":{"anyOf":[{},{"type":"null"}]}},"required":["userId","editionId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/magazineSubscriptions.listEditionsForGrant":{"get":{"operationId":"magazineSubscriptions_listEditionsForGrant","summary":"List Editions For Grant","tags":["magazineSubscriptions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"search":{"type":"string"},"limit":{"type":"number"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/magazineSubscriptions.getSubscriptions":{"get":{"operationId":"magazineSubscriptions_getSubscriptions","summary":"Get Subscriptions","tags":["magazineSubscriptions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"customerId":{"type":"string"},"status":{"type":"string","enum":["ACTIVE","CANCELED"]},"includeCustomer":{"default":true,"type":"boolean"},"includePlan":{"default":true,"type":"boolean"}},"required":["includeCustomer","includePlan"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/magazineSubscriptions.getStatistics":{"get":{"operationId":"magazineSubscriptions_getStatistics","summary":"Get Statistics","tags":["magazineSubscriptions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/magazineSubscriptions.listLegacyPlaceholderContacts":{"get":{"operationId":"magazineSubscriptions_listLegacyPlaceholderContacts","summary":"List Legacy Placeholder Contacts","tags":["magazineSubscriptions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/communications.getChannels":{"get":{"operationId":"communications_getChannels","summary":"Get Channels","tags":["communications"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"channels":{"type":"array","items":{}},"pagination":{"type":"object","properties":{"page":{"type":"integer"},"limit":{"type":"integer"},"total":{"type":"integer"},"pages":{"type":"integer"}}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"number","minimum":1},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"search":{"type":"string"},"channelType":{"type":"string","enum":["PUBLIC","PRIVATE","RESTRICTED"]},"category":{"type":"string"},"projectId":{"type":"string"}},"required":["page","limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/communications.createChannel":{"post":{"operationId":"communications_createChannel","summary":"Create Channel","tags":["communications"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"channelType":{"default":"PUBLIC","type":"string","enum":["PUBLIC","PRIVATE","RESTRICTED"]},"conversationType":{"default":"CHANNEL","type":"string","enum":["DIRECT_MESSAGE","GROUP_CHAT","CHANNEL","PROJECT_DISCUSSION","DEPARTMENT_CHANNEL","ANNOUNCEMENT"]},"allowFileUpload":{"default":true,"type":"boolean"},"allowVoiceCall":{"default":true,"type":"boolean"},"allowVideoCall":{"default":true,"type":"boolean"},"category":{"type":"string"},"topic":{"type":"string"},"tags":{"default":[],"type":"array","items":{"type":"string"}},"requireApproval":{"default":false,"type":"boolean"},"projectId":{"type":"string"},"departmentId":{"type":"string"}},"required":["name","channelType","conversationType","allowFileUpload","allowVoiceCall","allowVideoCall","tags","requireApproval"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/communications.joinChannel":{"post":{"operationId":"communications_joinChannel","summary":"Join Channel","tags":["communications"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"channelId":{"type":"string"}},"required":["channelId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/communications.getMessages":{"get":{"operationId":"communications_getMessages","summary":"Get Messages","tags":["communications"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"channelId":{"type":"string"},"conversationId":{"type":"string"},"page":{"default":1,"type":"number","minimum":1},"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"before":{}},"required":["page","limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/communications.sendMessage":{"post":{"operationId":"communications_sendMessage","summary":"Send Message","tags":["communications"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"content":{"type":"string"},"messageType":{"default":"TEXT","type":"string","enum":["TEXT","IMAGE","FILE","VOICE","VIDEO","SYSTEM","NOTIFICATION"]},"channelId":{"type":"string"},"conversationId":{"type":"string"},"parentMessageId":{"type":"string"},"mentions":{"default":[],"type":"array","items":{"type":"string"}},"metadata":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}}},"required":["messageType","mentions"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/communications.getNotifications":{"get":{"operationId":"communications_getNotifications","summary":"Get Notifications","tags":["communications"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"number","minimum":1},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"status":{"type":"string","enum":["UNREAD","READ","DISMISSED","ARCHIVED"]},"notificationType":{"type":"string","enum":["MESSAGE","MENTION","SYSTEM_ALERT","PROJECT_UPDATE","TASK_ASSIGNMENT","DOCUMENT_APPROVAL","LEAVE_REQUEST","MEETING_REMINDER","DEADLINE_WARNING"]}},"required":["page","limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/communications.createNotification":{"post":{"operationId":"communications_createNotification","summary":"Create Notification","tags":["communications"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"title":{"type":"string","minLength":1},"content":{"type":"string"},"notificationType":{"type":"string","enum":["MESSAGE","MENTION","SYSTEM_ALERT","PROJECT_UPDATE","TASK_ASSIGNMENT","DOCUMENT_APPROVAL","LEAVE_REQUEST","MEETING_REMINDER","DEADLINE_WARNING"]},"priority":{"default":"NORMAL","type":"string","enum":["LOW","NORMAL","HIGH","URGENT","CRITICAL"]},"recipientIds":{"type":"array","items":{"type":"string"}},"entityType":{"type":"string"},"entityId":{"type":"string"},"actionUrl":{"type":"string"},"groupKey":{"type":"string"},"metadata":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"imageUrl":{"type":"string"}},"required":["title","content","notificationType","priority","recipientIds"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/communications.markNotificationRead":{"post":{"operationId":"communications_markNotificationRead","summary":"Mark Notification Read","tags":["communications"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"notificationId":{"type":"string"}},"required":["notificationId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/communications.updatePresence":{"post":{"operationId":"communications_updatePresence","summary":"Update Presence","tags":["communications"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"status":{"type":"string","enum":["ONLINE","AWAY","BUSY","DO_NOT_DISTURB","OFFLINE"]},"customMessage":{"type":"string"},"isTyping":{"default":false,"type":"boolean"},"typingInChannel":{"type":"string"}},"required":["status","isTyping"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/communications.getTeamPresence":{"get":{"operationId":"communications_getTeamPresence","summary":"Get Team Presence","tags":["communications"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/communications.getCommunicationStats":{"get":{"operationId":"communications_getCommunicationStats","summary":"Get Communication Stats","tags":["communications"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"totalChannels":{"type":"integer"},"myChannels":{"type":"integer"},"unreadNotifications":{"type":"integer"},"totalMessages":{"type":"integer"},"activeUsers":{"type":"integer"}}}}}}}}},"/api/trpc/sections.getAll":{"get":{"operationId":"sections_getAll","summary":"Get All","tags":["sections"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"floorPlanId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"status":{"type":"string","enum":["ACTIVE","INACTIVE","CLOSED"]}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/sections.list":{"get":{"operationId":"sections_list","summary":"List","tags":["sections"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":0,"type":"number"},"per_page":{"default":10,"type":"number"},"search":{"type":"string"},"sort":{"type":"string"},"floorPlanId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"status":{"type":"string","enum":["ACTIVE","INACTIVE","CLOSED"]},"advancedFilters":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"object","properties":{"value":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{"type":"null"}]},"operator":{"default":"equals","type":"string","enum":["equals","contains","gt","lt","gte","lte","in","notIn"]}},"required":["value","operator"],"additionalProperties":false}}},"required":["page","per_page"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/sections.getById":{"get":{"operationId":"sections_getById","summary":"Get By Id","tags":["sections"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/sections.create":{"post":{"operationId":"sections_create","summary":"Create","tags":["sections"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"floorPlanId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"name":{"type":"string","minLength":1},"description":{"type":"string"},"color":{"default":"#3b82f6","type":"string"},"capacity":{"type":"number","minimum":1},"area":{"type":"array","items":{"type":"object","properties":{"x":{"type":"number"},"y":{"type":"number"}},"required":["x","y"],"additionalProperties":false}}},"required":["floorPlanId","name","color"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/sections.update":{"post":{"operationId":"sections_update","summary":"Update","tags":["sections"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"name":{"type":"string","minLength":1},"description":{"type":"string"},"color":{"type":"string"},"status":{"type":"string","enum":["ACTIVE","INACTIVE","CLOSED"]},"capacity":{"type":"number","minimum":1},"area":{"type":"array","items":{"type":"object","properties":{"x":{"type":"number"},"y":{"type":"number"}},"required":["x","y"],"additionalProperties":false}},"isActive":{"type":"boolean"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/sections.delete":{"post":{"operationId":"sections_delete","summary":"Delete","tags":["sections"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/sections.assignServer":{"post":{"operationId":"sections_assignServer","summary":"Assign Server","tags":["sections"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"sectionId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"serverId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"startTime":{},"endTime":{}},"required":["sectionId","serverId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/sections.removeServer":{"post":{"operationId":"sections_removeServer","summary":"Remove Server","tags":["sections"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"sectionId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"serverId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["sectionId","serverId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/sections.getPerformance":{"get":{"operationId":"sections_getPerformance","summary":"Get Performance","tags":["sections"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"sectionId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"startDate":{},"endDate":{}},"required":["sectionId","startDate","endDate"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/sections.getAvailableServers":{"get":{"operationId":"sections_getAvailableServers","summary":"Get Available Servers","tags":["sections"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"floorPlanId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"excludeSectionId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["floorPlanId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/sections.getWorkloadSummary":{"get":{"operationId":"sections_getWorkloadSummary","summary":"Get Workload Summary","tags":["sections"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"floorPlanId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["floorPlanId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/sections.getServerAnalytics":{"get":{"operationId":"sections_getServerAnalytics","summary":"Get Server Analytics","tags":["sections"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"siteId":{"type":"string"},"sectionId":{"type":"string"},"serverId":{"type":"string"},"startDate":{},"endDate":{}},"required":["siteId","startDate","endDate"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/sections.getTopPerformers":{"get":{"operationId":"sections_getTopPerformers","summary":"Get Top Performers","tags":["sections"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"siteId":{"type":"string"},"sectionId":{"type":"string"},"startDate":{},"endDate":{},"limit":{"default":5,"type":"number"}},"required":["siteId","startDate","endDate","limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/sections.getPerformanceComparison":{"get":{"operationId":"sections_getPerformanceComparison","summary":"Get Performance Comparison","tags":["sections"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"siteId":{"type":"string"},"sectionId":{"type":"string"},"startDate":{},"endDate":{}},"required":["siteId","startDate","endDate"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/sections.getShifts":{"get":{"operationId":"sections_getShifts","summary":"Get Shifts","tags":["sections"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"siteId":{"type":"string"},"floorPlanId":{"type":"string"},"startDate":{},"endDate":{}},"required":["siteId","startDate","endDate"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/sections.getShiftConflicts":{"get":{"operationId":"sections_getShiftConflicts","summary":"Get Shift Conflicts","tags":["sections"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"siteId":{"type":"string"},"startDate":{},"endDate":{}},"required":["siteId","startDate","endDate"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/sections.createShift":{"post":{"operationId":"sections_createShift","summary":"Create Shift","tags":["sections"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"siteId":{"type":"string"},"floorPlanId":{"type":"string"},"serverId":{"type":"string"},"sectionId":{"type":"string"},"date":{},"startTime":{"type":"string"},"endTime":{"type":"string"},"notes":{"type":"string"}},"required":["siteId","serverId","sectionId","date","startTime"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/sections.updateShift":{"post":{"operationId":"sections_updateShift","summary":"Update Shift","tags":["sections"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"serverId":{"type":"string"},"sectionId":{"type":"string"},"date":{},"startTime":{"type":"string"},"endTime":{"type":"string"},"status":{"type":"string","enum":["SCHEDULED","ACTIVE","COMPLETED","CANCELLED","NO_SHOW"]},"notes":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/sections.deleteShift":{"post":{"operationId":"sections_deleteShift","summary":"Delete Shift","tags":["sections"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/sections.duplicateShift":{"post":{"operationId":"sections_duplicateShift","summary":"Duplicate Shift","tags":["sections"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"newDate":{}},"required":["id","newDate"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emails.sendTest":{"post":{"operationId":"emails_sendTest","summary":"Send Test","tags":["emails"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"to":{},"subject":{"type":"string"},"html":{"type":"string"}},"required":["to","subject","html"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emails.getSettings":{"get":{"operationId":"emails_getSettings","summary":"Get Settings","tags":["emails"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/emails.getSelectedConfig":{"get":{"operationId":"emails_getSelectedConfig","summary":"Get Selected Config","tags":["emails"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/emails.clearCache":{"post":{"operationId":"emails_clearCache","summary":"Clear Cache","tags":["emails"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/emails.updateSettings":{"post":{"operationId":"emails_updateSettings","summary":"Update Settings","tags":["emails"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"config":{"type":"object","properties":{"adapter":{"default":"smtp","type":"string","enum":["smtp","aws_ses"]},"host":{"type":"string"},"port":{"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991},"username":{"type":"string"},"password":{"type":"string"},"secure":{"type":"boolean"},"awsRegion":{"type":"string"},"awsAccessKeyId":{"type":"string"},"awsSecretAccessKey":{"type":"string"},"fromEmail":{"anyOf":[{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},{"type":"string","const":""}]},"fromName":{"type":"string"},"replyTo":{"anyOf":[{"anyOf":[{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},{"type":"string","const":""}]},{"type":"null"}]},"testRecipient":{"type":"string"},"customHeaders":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"string"}}},"additionalProperties":false},"configId":{"type":"string"},"name":{"type":"string"}},"required":["config"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emails.selectConfig":{"post":{"operationId":"emails_selectConfig","summary":"Select Config","tags":["emails"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"configId":{"type":"string"}},"required":["configId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emails.deleteConfig":{"post":{"operationId":"emails_deleteConfig","summary":"Delete Config","tags":["emails"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"configId":{"type":"string"}},"required":["configId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emails.resetSettings":{"post":{"operationId":"emails_resetSettings","summary":"Reset Settings","tags":["emails"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/emails.copyConfigToSite":{"post":{"operationId":"emails_copyConfigToSite","summary":"Copy Config To Site","tags":["emails"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"configId":{"type":"string"},"targetSiteId":{"type":"string"},"newConfigName":{"type":"string"}},"required":["configId","targetSiteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emails.sendTestWithSettings":{"post":{"operationId":"emails_sendTestWithSettings","summary":"Send Test With Settings","tags":["emails"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"to":{},"subject":{"type":"string"},"html":{"type":"string"},"text":{"type":"string"},"useDefaultTest":{"default":true,"type":"boolean"},"configId":{"type":"string"},"orderId":{"type":"string"},"emailLogId":{"type":"string"}},"required":["to","useDefaultTest"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emails.sendContactEmail":{"post":{"operationId":"emails_sendContactEmail","summary":"Send Contact Email","tags":["emails"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"fullName":{"type":"string"},"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"phone":{"type":"string"},"message":{"type":"string"},"vendorId":{"type":"string"},"productId":{"type":"string"},"honeypot":{"type":"string"}},"required":["fullName","email","phone","message"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emails.getLogs":{"get":{"operationId":"emails_getLogs","summary":"Get Logs","tags":["emails"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":0,"type":"number"},"per_page":{"default":20,"type":"number"},"search":{"anyOf":[{"type":"string"},{"type":"null"}]},"sort":{"type":"string"},"filters":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}},"advancedFilters":{"type":"array","items":{}},"advancedSorts":{"type":"array","items":{}},"fields":{"type":"array","items":{"type":"string"}}},"required":["page","per_page"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emails.deleteLogs":{"post":{"operationId":"emails_deleteLogs","summary":"Delete Logs","tags":["emails"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"ids":{"type":"array","items":{"type":"string"}}},"required":["ids"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emails.deleteAllLogs":{"post":{"operationId":"emails_deleteAllLogs","summary":"Delete All Logs","tags":["emails"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/emails.getLogBody":{"get":{"operationId":"emails_getLogBody","summary":"Get Log Body","tags":["emails"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emails.getLinkAnalytics":{"get":{"operationId":"emails_getLinkAnalytics","summary":"Get Link Analytics","tags":["emails"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"emailLogId":{"type":"string"}},"required":["emailLogId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emails.getDashboardSummary":{"get":{"operationId":"emails_getDashboardSummary","summary":"Get Dashboard Summary","tags":["emails"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","default":{"period":"30d"},"type":"object","properties":{"period":{"default":"30d","type":"string","enum":["7d","30d","90d"]}},"required":["period"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emails.queueMauticPublish":{"post":{"operationId":"emails_queueMauticPublish","summary":"Queue Mautic Publish","tags":["emails"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"templateId":{"type":"string"},"html":{"type":"string"},"subject":{"type":"string","minLength":1},"tag":{"type":"string","minLength":1,"pattern":"^[A-Za-z0-9:_-]+$"},"slugs":{"minItems":1,"type":"array","items":{"type":"string","minLength":1}}},"required":["subject","tag","slugs"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emailTemplates.getEmailTemplate":{"get":{"operationId":"emailTemplates_getEmailTemplate","summary":"Get Email Template","tags":["emailTemplates"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"tenantId":{"type":"string"},"siteId":{"type":"string"},"name":{"type":"string"},"subject":{"type":"string"},"htmlContent":{"type":"string"},"textContent":{},"mjmlContent":{"type":"string"},"html":{"type":"string"},"plaintext":{},"mjml":{"type":"string"},"plaintextOnly":{"type":"boolean"},"data":{"type":"object","properties":{"html":{"type":"string"},"mjml":{"type":"string"},"schema":{"type":"object","properties":{"products":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"reference":{"type":"string"},"threshold":{"type":"integer"},"package_size":{"type":"integer"},"current_stock":{"type":"integer"},"order_quantity":{"type":"integer"},"package_quantity":{"type":"integer"}}}},"order_date":{"type":"string"},"order_link":{"type":"string"},"order_time":{"type":"string"},"order_type":{"type":"string"},"vendor_name":{"type":"string"},"company_logo":{"type":"string"},"company_name":{"type":"string"},"current_year":{"type":"integer"},"contact_email":{"type":"string"},"delivery_date":{"type":"string"},"email_preview":{"type":"string"},"settings_link":{"type":"string"},"footer_message":{"type":"string"},"order_location":{"type":"string"},"products_count":{"type":"integer"},"company_address":{"type":"string"},"company_website":{"type":"string"},"daily_breakdown":{"type":"array","items":{"type":"object","properties":{"orders_count":{"type":"integer"},"delivery_date":{"type":"string"},"total_quantity":{"type":"integer"},"clients_details":{"type":"array","items":{"type":"object","properties":{"quantity":{"type":"integer"},"client_name":{"type":"string"},"is_professional":{"type":"boolean"}}}},"professional_clients":{"type":"array","items":{"type":"object","properties":{"quantity":{"type":"integer"},"client_name":{"type":"string"}}}},"professional_clients_count":{"type":"integer"}}}},"delivery_period":{"type":"string"},"generation_date":{"type":"string"},"generation_time":{"type":"string"},"is_manager_email":{"type":"boolean"},"unsubscribe_link":{"type":"string"},"vendor_portal_url":{"type":"string"},"total_orders_count":{"type":"integer"},"company_contact_name":{"type":"string"},"company_contact_email":{"type":"string"},"company_contact_phone":{"type":"string"},"professional_clients_count":{"type":"integer"},"vendor_special_requirements":{"type":"object","properties":{"packaging_notes":{"type":"string"},"requires_lot_numbers":{"type":"boolean"},"requires_daily_breakdown":{"type":"boolean"},"requires_customer_details":{"type":"boolean"}}},"professional_clients_details":{"type":"array","items":{"type":"string"}}}},"subject":{"type":"string"},"plaintext":{},"plaintextOnly":{"type":"boolean"}}},"description":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"type":{"type":"string"},"isActive":{"type":"boolean"},"variables":{},"metadata":{"type":"object","properties":{"html":{"type":"string"},"mjml":{"type":"string"},"schema":{"type":"object","properties":{"products":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"reference":{"type":"string"},"threshold":{"type":"integer"},"package_size":{"type":"integer"},"current_stock":{"type":"integer"},"order_quantity":{"type":"integer"},"package_quantity":{"type":"integer"}}}},"order_date":{"type":"string"},"order_link":{"type":"string"},"order_time":{"type":"string"},"order_type":{"type":"string"},"vendor_name":{"type":"string"},"company_logo":{"type":"string"},"company_name":{"type":"string"},"current_year":{"type":"integer"},"contact_email":{"type":"string"},"delivery_date":{"type":"string"},"email_preview":{"type":"string"},"settings_link":{"type":"string"},"footer_message":{"type":"string"},"order_location":{"type":"string"},"products_count":{"type":"integer"},"company_address":{"type":"string"},"company_website":{"type":"string"},"daily_breakdown":{"type":"array","items":{"type":"object","properties":{"orders_count":{"type":"integer"},"delivery_date":{"type":"string"},"total_quantity":{"type":"integer"},"clients_details":{"type":"array","items":{"type":"object","properties":{"quantity":{"type":"integer"},"client_name":{"type":"string"},"is_professional":{"type":"boolean"}}}},"professional_clients":{"type":"array","items":{"type":"object","properties":{"quantity":{"type":"integer"},"client_name":{"type":"string"}}}},"professional_clients_count":{"type":"integer"}}}},"delivery_period":{"type":"string"},"generation_date":{"type":"string"},"generation_time":{"type":"string"},"is_manager_email":{"type":"boolean"},"unsubscribe_link":{"type":"string"},"vendor_portal_url":{"type":"string"},"total_orders_count":{"type":"integer"},"company_contact_name":{"type":"string"},"company_contact_email":{"type":"string"},"company_contact_phone":{"type":"string"},"professional_clients_count":{"type":"integer"},"vendor_special_requirements":{"type":"object","properties":{"packaging_notes":{"type":"string"},"requires_lot_numbers":{"type":"boolean"},"requires_daily_breakdown":{"type":"boolean"},"requires_customer_details":{"type":"boolean"}}},"professional_clients_details":{"type":"array","items":{"type":"string"}}}},"subject":{"type":"string"},"plaintext":{},"plaintextOnly":{"type":"boolean"}}},"createdById":{},"updatedById":{}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emailTemplates.getEmailTemplateById":{"get":{"operationId":"emailTemplates_getEmailTemplateById","summary":"Get Email Template By Id","tags":["emailTemplates"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"tenantId":{"type":"string"},"siteId":{"type":"string"},"name":{"type":"string"},"subject":{"type":"string"},"htmlContent":{"type":"string"},"textContent":{"type":"string"},"plaintextContent":{"type":"string"},"mjmlContent":{"type":"string"},"html":{"type":"string"},"plaintext":{},"mjml":{"type":"string"},"type":{"type":"string"},"metadata":{"type":"object","properties":{"html":{"type":"string"},"mjml":{"type":"string"},"schema":{"type":"object","properties":{"products":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"reference":{"type":"string"},"threshold":{"type":"integer"},"package_size":{"type":"integer"},"current_stock":{"type":"integer"},"order_quantity":{"type":"integer"},"package_quantity":{"type":"integer"}}}},"order_date":{"type":"string"},"order_link":{"type":"string"},"order_time":{"type":"string"},"order_type":{"type":"string"},"vendor_name":{"type":"string"},"company_logo":{"type":"string"},"company_name":{"type":"string"},"current_year":{"type":"integer"},"contact_email":{"type":"string"},"delivery_date":{"type":"string"},"email_preview":{"type":"string"},"settings_link":{"type":"string"},"footer_message":{"type":"string"},"order_location":{"type":"string"},"products_count":{"type":"integer"},"company_address":{"type":"string"},"company_website":{"type":"string"},"daily_breakdown":{"type":"array","items":{"type":"object","properties":{"orders_count":{"type":"integer"},"delivery_date":{"type":"string"},"total_quantity":{"type":"integer"},"clients_details":{"type":"array","items":{"type":"object","properties":{"quantity":{"type":"integer"},"client_name":{"type":"string"},"is_professional":{"type":"boolean"}}}},"professional_clients":{"type":"array","items":{"type":"object","properties":{"quantity":{"type":"integer"},"client_name":{"type":"string"}}}},"professional_clients_count":{"type":"integer"}}}},"delivery_period":{"type":"string"},"generation_date":{"type":"string"},"generation_time":{"type":"string"},"is_manager_email":{"type":"boolean"},"unsubscribe_link":{"type":"string"},"vendor_portal_url":{"type":"string"},"total_orders_count":{"type":"integer"},"company_contact_name":{"type":"string"},"company_contact_email":{"type":"string"},"company_contact_phone":{"type":"string"},"professional_clients_count":{"type":"integer"},"vendor_special_requirements":{"type":"object","properties":{"packaging_notes":{"type":"string"},"requires_lot_numbers":{"type":"boolean"},"requires_daily_breakdown":{"type":"boolean"},"requires_customer_details":{"type":"boolean"}}},"professional_clients_details":{"type":"array","items":{"type":"string"}}}},"subject":{"type":"string"},"plaintext":{},"plaintextOnly":{"type":"boolean"}}},"plaintextOnly":{"type":"boolean"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"tenant":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"}}},"site":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"}}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"tenantId":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emailTemplates.getEmailTemplates":{"get":{"operationId":"emailTemplates_getEmailTemplates","summary":"Get Email Templates","tags":["emailTemplates"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"tenantId":{"type":"string"},"siteId":{"type":"string"},"name":{"type":"string"},"subject":{"type":"string"},"htmlContent":{"type":"string"},"textContent":{},"mjmlContent":{"type":"string"},"html":{"type":"string"},"plaintext":{},"mjml":{"type":"string"},"plaintextOnly":{"type":"boolean"},"data":{"type":"object","properties":{"html":{"type":"string"},"mjml":{"type":"string"},"schema":{"type":"object","properties":{"products":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"reference":{"type":"string"},"threshold":{"type":"integer"},"package_size":{"type":"integer"},"current_stock":{"type":"integer"},"order_quantity":{"type":"integer"},"package_quantity":{"type":"integer"}}}},"order_date":{"type":"string"},"order_link":{"type":"string"},"order_time":{"type":"string"},"order_type":{"type":"string"},"vendor_name":{"type":"string"},"company_logo":{"type":"string"},"company_name":{"type":"string"},"current_year":{"type":"integer"},"contact_email":{"type":"string"},"delivery_date":{"type":"string"},"email_preview":{"type":"string"},"settings_link":{"type":"string"},"footer_message":{"type":"string"},"order_location":{"type":"string"},"products_count":{"type":"integer"},"company_address":{"type":"string"},"company_website":{"type":"string"},"daily_breakdown":{"type":"array","items":{"type":"object","properties":{"orders_count":{"type":"integer"},"delivery_date":{"type":"string"},"total_quantity":{"type":"integer"},"clients_details":{"type":"array","items":{"type":"object","properties":{"quantity":{"type":"integer"},"client_name":{"type":"string"},"is_professional":{"type":"boolean"}}}},"professional_clients":{"type":"array","items":{"type":"object","properties":{"quantity":{"type":"integer"},"client_name":{"type":"string"}}}},"professional_clients_count":{"type":"integer"}}}},"delivery_period":{"type":"string"},"generation_date":{"type":"string"},"generation_time":{"type":"string"},"is_manager_email":{"type":"boolean"},"unsubscribe_link":{"type":"string"},"vendor_portal_url":{"type":"string"},"total_orders_count":{"type":"integer"},"company_contact_name":{"type":"string"},"company_contact_email":{"type":"string"},"company_contact_phone":{"type":"string"},"professional_clients_count":{"type":"integer"},"vendor_special_requirements":{"type":"object","properties":{"packaging_notes":{"type":"string"},"requires_lot_numbers":{"type":"boolean"},"requires_daily_breakdown":{"type":"boolean"},"requires_customer_details":{"type":"boolean"}}},"professional_clients_details":{"type":"array","items":{"type":"string"}}}},"subject":{"type":"string"},"plaintext":{},"plaintextOnly":{"type":"boolean"}}},"description":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"type":{"type":"string"},"isActive":{"type":"boolean"},"variables":{},"metadata":{"type":"object","properties":{"html":{"type":"string"},"mjml":{"type":"string"},"schema":{"type":"object","properties":{"products":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"reference":{"type":"string"},"threshold":{"type":"integer"},"package_size":{"type":"integer"},"current_stock":{"type":"integer"},"order_quantity":{"type":"integer"},"package_quantity":{"type":"integer"}}}},"order_date":{"type":"string"},"order_link":{"type":"string"},"order_time":{"type":"string"},"order_type":{"type":"string"},"vendor_name":{"type":"string"},"company_logo":{"type":"string"},"company_name":{"type":"string"},"current_year":{"type":"integer"},"contact_email":{"type":"string"},"delivery_date":{"type":"string"},"email_preview":{"type":"string"},"settings_link":{"type":"string"},"footer_message":{"type":"string"},"order_location":{"type":"string"},"products_count":{"type":"integer"},"company_address":{"type":"string"},"company_website":{"type":"string"},"daily_breakdown":{"type":"array","items":{"type":"object","properties":{"orders_count":{"type":"integer"},"delivery_date":{"type":"string"},"total_quantity":{"type":"integer"},"clients_details":{"type":"array","items":{"type":"object","properties":{"quantity":{"type":"integer"},"client_name":{"type":"string"},"is_professional":{"type":"boolean"}}}},"professional_clients":{"type":"array","items":{"type":"object","properties":{"quantity":{"type":"integer"},"client_name":{"type":"string"}}}},"professional_clients_count":{"type":"integer"}}}},"delivery_period":{"type":"string"},"generation_date":{"type":"string"},"generation_time":{"type":"string"},"is_manager_email":{"type":"boolean"},"unsubscribe_link":{"type":"string"},"vendor_portal_url":{"type":"string"},"total_orders_count":{"type":"integer"},"company_contact_name":{"type":"string"},"company_contact_email":{"type":"string"},"company_contact_phone":{"type":"string"},"professional_clients_count":{"type":"integer"},"vendor_special_requirements":{"type":"object","properties":{"packaging_notes":{"type":"string"},"requires_lot_numbers":{"type":"boolean"},"requires_daily_breakdown":{"type":"boolean"},"requires_customer_details":{"type":"boolean"}}},"professional_clients_details":{"type":"array","items":{"type":"string"}}}},"subject":{"type":"string"},"plaintext":{},"plaintextOnly":{"type":"boolean"}}},"createdById":{},"updatedById":{},"_count":{"type":"object","properties":{"sentEmails":{"type":"integer"}}}}}}}}}}}},"/api/trpc/emailTemplates.createEmailTemplate":{"post":{"operationId":"emailTemplates_createEmailTemplate","summary":"Create Email Template","tags":["emailTemplates"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string"},"subject":{"type":"string"},"mjml":{"type":"string"},"plaintext":{"type":"string"},"plaintextOnly":{"type":"boolean"},"dataSchema":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}}},"required":["name","subject"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emailTemplates.updateEmailTemplate":{"post":{"operationId":"emailTemplates_updateEmailTemplate","summary":"Update Email Template","tags":["emailTemplates"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"subject":{"type":"string"},"mjml":{"type":"string"},"plaintext":{"type":"string"},"plaintextOnly":{"type":"boolean"},"dataSchema":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}}},"required":["id","name","subject"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emailTemplates.deleteEmailTemplate":{"post":{"operationId":"emailTemplates_deleteEmailTemplate","summary":"Delete Email Template","tags":["emailTemplates"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emailTemplates.getAllTenantsTemplates":{"get":{"operationId":"emailTemplates_getAllTenantsTemplates","summary":"Get All Tenants Templates","tags":["emailTemplates"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"templates":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"type":{"type":"string"},"mjml":{"type":"string"},"tenantId":{"type":"string"},"siteId":{"type":"string"},"createdAt":{"type":"string"},"tenant":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"}}},"site":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"}}}}}},"byTenant":{"type":"array","items":{"type":"object","properties":{"tenantId":{"type":"string"},"tenantName":{"type":"string"},"templates":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"type":{"type":"string"},"mjml":{"type":"string"},"tenantId":{"type":"string"},"siteId":{"type":"string"},"createdAt":{"type":"string"},"tenant":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"}}},"site":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"}}}}}}}}},"total":{"type":"integer"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","default":{},"type":"object","properties":{"search":{"type":"string"},"limit":{"default":100,"type":"number"},"offset":{"default":0,"type":"number"}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emailTemplates.getTemplatesByTenant":{"get":{"operationId":"emailTemplates_getTemplatesByTenant","summary":"Get Templates By Tenant","tags":["emailTemplates"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string"},"siteId":{"type":"string"},"search":{"type":"string"}},"required":["tenantId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emailTemplates.getAllTenants":{"get":{"operationId":"emailTemplates_getAllTenants","summary":"Get All Tenants","tags":["emailTemplates"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/emailTemplates.duplicateToTenant":{"post":{"operationId":"emailTemplates_duplicateToTenant","summary":"Duplicate To Tenant","tags":["emailTemplates"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"templateId":{"type":"string"},"targetTenantId":{"type":"string"},"targetSiteId":{"type":"string"},"newName":{"type":"string"}},"required":["templateId","targetTenantId","targetSiteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emailTemplates.getUserSitesTemplates":{"get":{"operationId":"emailTemplates_getUserSitesTemplates","summary":"Get User Sites Templates","tags":["emailTemplates"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"templates":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"type":{"type":"string"},"mjml":{"type":"string"},"tenantId":{"type":"string"},"siteId":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"site":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"}}}}}},"bySite":{"type":"array","items":{"type":"object","properties":{"siteId":{"type":"string"},"siteName":{"type":"string"},"templates":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"type":{"type":"string"},"mjml":{"type":"string"},"tenantId":{"type":"string"},"siteId":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"site":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"}}}}}}}}},"total":{"type":"integer"},"hasMore":{"type":"boolean"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","default":{},"type":"object","properties":{"search":{"type":"string"},"filterSiteId":{"type":"string"},"filterTenantId":{"type":"string"},"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0},"sortBy":{"default":"updatedAt","type":"string","enum":["updatedAt","createdAt","name"]},"sortOrder":{"default":"desc","type":"string","enum":["asc","desc"]}},"required":["limit","offset","sortBy","sortOrder"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emailTemplates.getUserSites":{"get":{"operationId":"emailTemplates_getUserSites","summary":"Get User Sites","tags":["emailTemplates"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/emailTemplates.duplicateToSite":{"post":{"operationId":"emailTemplates_duplicateToSite","summary":"Duplicate To Site","tags":["emailTemplates"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"templateId":{"type":"string"},"targetSiteId":{"type":"string"},"newName":{"type":"string"}},"required":["templateId","targetSiteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emailTemplates.updateTemplateInSite":{"post":{"operationId":"emailTemplates_updateTemplateInSite","summary":"Update Template In Site","tags":["emailTemplates"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"siteId":{"type":"string"},"name":{"type":"string"},"subject":{"type":"string"},"mjml":{"type":"string"},"plaintext":{"type":"string"},"plaintextOnly":{"type":"boolean"},"dataSchema":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}}},"required":["id","siteId","name","subject"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emailTemplates.previewTemplate":{"post":{"operationId":"emailTemplates_previewTemplate","summary":"Preview Template","tags":["emailTemplates"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"mjml":{"type":"string"},"plaintext":{"type":"string"},"data":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"templateId":{"type":"string"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posManagement.getOverview":{"get":{"operationId":"posManagement_getOverview","summary":"Get Overview","tags":["posManagement"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/posManagement.getTerminals":{"get":{"operationId":"posManagement_getTerminals","summary":"Get Terminals","tags":["posManagement"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/posManagement.createTerminal":{"post":{"operationId":"posManagement_createTerminal","summary":"Create Terminal","tags":["posManagement"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string"},"printerName":{"type":"string"},"cashDrawer":{"type":"boolean"}},"required":["name"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posManagement.updateTerminal":{"post":{"operationId":"posManagement_updateTerminal","summary":"Update Terminal","tags":["posManagement"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"printerName":{"type":"string"},"cashDrawer":{"type":"boolean"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posManagement.deleteTerminal":{"post":{"operationId":"posManagement_deleteTerminal","summary":"Delete Terminal","tags":["posManagement"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posManagement.getEmployees":{"get":{"operationId":"posManagement_getEmployees","summary":"Get Employees","tags":["posManagement"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/posManagement.createEmployee":{"post":{"operationId":"posManagement_createEmployee","summary":"Create Employee","tags":["posManagement"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string"},"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"role":{"type":"string"}},"required":["name","email","role"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posManagement.updateEmployee":{"post":{"operationId":"posManagement_updateEmployee","summary":"Update Employee","tags":["posManagement"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"role":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posManagement.deleteEmployee":{"post":{"operationId":"posManagement_deleteEmployee","summary":"Delete Employee","tags":["posManagement"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posManagement.getActiveShifts":{"get":{"operationId":"posManagement_getActiveShifts","summary":"Get Active Shifts","tags":["posManagement"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/posManagement.getShiftHistory":{"get":{"operationId":"posManagement_getShiftHistory","summary":"Get Shift History","tags":["posManagement"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":20,"type":"number"}},"required":["limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posManagement.startShift":{"post":{"operationId":"posManagement_startShift","summary":"Start Shift","tags":["posManagement"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"employeeId":{"type":"string"},"terminalId":{"type":"string"}},"required":["employeeId","terminalId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posManagement.endShift":{"post":{"operationId":"posManagement_endShift","summary":"End Shift","tags":["posManagement"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"shiftId":{"type":"string"}},"required":["shiftId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posManagement.getGlobalSettings":{"get":{"operationId":"posManagement_getGlobalSettings","summary":"Get Global Settings","tags":["posManagement"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/posManagement.getTerminalSettings":{"get":{"operationId":"posManagement_getTerminalSettings","summary":"Get Terminal Settings","tags":["posManagement"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"terminalId":{"type":"string"}},"required":["terminalId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posManagement.updateGlobalSettings":{"post":{"operationId":"posManagement_updateGlobalSettings","summary":"Update Global Settings","tags":["posManagement"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"currency":{"type":"string"},"taxRate":{"type":"number"},"receiptFooter":{"type":"string"},"autoLogoutTime":{"type":"number"},"requireManagerApproval":{"type":"boolean"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posManagement.updateTerminalSettings":{"post":{"operationId":"posManagement_updateTerminalSettings","summary":"Update Terminal Settings","tags":["posManagement"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"terminalId":{"type":"string"},"settings":{"type":"object","properties":{"name":{"type":"string"},"printerName":{"type":"string"},"cashDrawer":{"type":"boolean"}},"additionalProperties":false}},"required":["terminalId","settings"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posManagement.resetGlobalSettings":{"post":{"operationId":"posManagement_resetGlobalSettings","summary":"Reset Global Settings","tags":["posManagement"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/posManagement.getAllHardware":{"get":{"operationId":"posManagement_getAllHardware","summary":"Get All Hardware","tags":["posManagement"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/posManagement.testHardware":{"post":{"operationId":"posManagement_testHardware","summary":"Test Hardware","tags":["posManagement"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"hardwareId":{"type":"string"},"testType":{"type":"string"}},"required":["hardwareId","testType"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posManagement.updateHardware":{"post":{"operationId":"posManagement_updateHardware","summary":"Update Hardware","tags":["posManagement"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"hardwareId":{"type":"string"},"settings":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}}},"required":["hardwareId","settings"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posManagement.resetHardware":{"post":{"operationId":"posManagement_resetHardware","summary":"Reset Hardware","tags":["posManagement"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"hardwareId":{"type":"string"}},"required":["hardwareId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/campaigns.getCampaigns":{"get":{"operationId":"campaigns_getCampaigns","summary":"Get Campaigns","tags":["campaigns"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{}},"total":{"type":"integer"},"page":{"type":"integer"},"per_page":{"type":"integer"},"totalPages":{"type":"integer"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":0,"type":"number"},"per_page":{"default":10,"type":"number"},"search":{"default":"","type":"string"},"status":{"type":"string"}},"required":["page","per_page","search"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/campaigns.getCampaignById":{"get":{"operationId":"campaigns_getCampaignById","summary":"Get Campaign By Id","tags":["campaigns"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/campaigns.createCampaign":{"post":{"operationId":"campaigns_createCampaign","summary":"Create Campaign","tags":["campaigns"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":3},"type":{"type":"string"},"subject":{"type":"string"},"content":{"type":"string"},"scheduled":{"default":false,"type":"boolean"},"scheduledDate":{},"testMode":{"default":false,"type":"boolean"},"testEmail":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"templateId":{"type":"string"},"segmentId":{"type":"string"},"marketingCampaignId":{"type":"string"},"channelType":{"type":"string"}},"required":["name","type","scheduled","testMode"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/campaigns.createCampaignWizard":{"post":{"operationId":"campaigns_createCampaignWizard","summary":"Create Campaign Wizard","tags":["campaigns"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"channelType":{"type":"object","properties":{"channelType":{"type":"string","minLength":1}},"required":["channelType"],"additionalProperties":false},"campaign":{"type":"object","properties":{"marketingCampaignId":{"type":"string"}},"additionalProperties":false},"details":{"type":"object","properties":{"name":{"type":"string"},"typeId":{"type":"string"},"status":{"type":"string","enum":["draft","scheduled","active","completed","cancelled"]},"startDate":{},"endDate":{},"description":{"type":"string"}},"required":["name","status","startDate"],"additionalProperties":false},"template":{"type":"object","properties":{"templateId":{"type":"string"},"subject":{"type":"string"},"content":{"type":"string"},"mjml":{"type":"string"},"previewText":{"type":"string"},"dataSchema":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}}},"required":["subject","content","mjml"],"additionalProperties":false},"audience":{"type":"object","properties":{"segments":{"type":"array","items":{"type":"string"}},"filters":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"excludedSegments":{"type":"array","items":{"type":"string"}}},"required":["segments"],"additionalProperties":false},"schedule":{"type":"object","properties":{"sendTime":{"type":"string","enum":["immediate","scheduled"]},"scheduledDate":{},"timezone":{"type":"string"},"throttling":{"type":"object","properties":{"enabled":{"type":"boolean"},"rate":{"type":"number"},"interval":{"type":"string","enum":["minute","hour"]}},"required":["enabled"],"additionalProperties":false}},"required":["sendTime","timezone"],"additionalProperties":false}},"required":["channelType","details","template","audience","schedule"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/campaigns.updateCampaign":{"post":{"operationId":"campaigns_updateCampaign","summary":"Update Campaign","tags":["campaigns"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":3},"type":{"type":"string"},"subject":{"type":"string"},"content":{"type":"string"},"scheduled":{"default":false,"type":"boolean"},"scheduledDate":{},"testMode":{"default":false,"type":"boolean"},"testEmail":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"templateId":{"type":"string"},"segmentId":{"type":"string"},"marketingCampaignId":{"type":"string"},"channelType":{"type":"string"},"id":{"type":"string"},"status":{"type":"string","enum":["draft","scheduled","active","paused","completed","error"]}},"required":["name","type","scheduled","testMode","id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/campaigns.deleteCampaign":{"post":{"operationId":"campaigns_deleteCampaign","summary":"Delete Campaign","tags":["campaigns"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/campaigns.sendCampaign":{"post":{"operationId":"campaigns_sendCampaign","summary":"Send Campaign","tags":["campaigns"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/campaigns.pauseCampaign":{"post":{"operationId":"campaigns_pauseCampaign","summary":"Pause Campaign","tags":["campaigns"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/campaigns.resumeCampaign":{"post":{"operationId":"campaigns_resumeCampaign","summary":"Resume Campaign","tags":["campaigns"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/campaigns.duplicateCampaign":{"post":{"operationId":"campaigns_duplicateCampaign","summary":"Duplicate Campaign","tags":["campaigns"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/campaigns.simulateActivity":{"post":{"operationId":"campaigns_simulateActivity","summary":"Simulate Activity","tags":["campaigns"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/campaigns.getCampaignActivity":{"get":{"operationId":"campaigns_getCampaignActivity","summary":"Get Campaign Activity","tags":["campaigns"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"page":{"default":0,"type":"number"},"per_page":{"default":10,"type":"number"}},"required":["id","page","per_page"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/campaigns.getCampaignTags":{"get":{"operationId":"campaigns_getCampaignTags","summary":"Get Campaign Tags","tags":["campaigns"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"description":{},"tenantId":{"type":"string"},"siteId":{"type":"string"}}}}}}}}}},"/api/trpc/campaigns.createCampaignTag":{"post":{"operationId":"campaigns_createCampaignTag","summary":"Create Campaign Tag","tags":["campaigns"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1}},"required":["name"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posLoyalty.getProgram":{"get":{"operationId":"posLoyalty_getProgram","summary":"Get Program","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/posLoyalty.createProgram":{"post":{"operationId":"posLoyalty_createProgram","summary":"Create Program","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"type":"object"}},"required":["json"]}}}}}},"/api/trpc/posLoyalty.updateProgram":{"post":{"operationId":"posLoyalty_updateProgram","summary":"Update Program","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"type":"object"}},"required":["json"]}}}}}},"/api/trpc/posLoyalty.listTiers":{"get":{"operationId":"posLoyalty_listTiers","summary":"List Tiers","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"programId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["programId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posLoyalty.createTier":{"post":{"operationId":"posLoyalty_createTier","summary":"Create Tier","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"type":"object"}},"required":["json"]}}}}}},"/api/trpc/posLoyalty.updateTier":{"post":{"operationId":"posLoyalty_updateTier","summary":"Update Tier","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"type":"object"}},"required":["json"]}}}}}},"/api/trpc/posLoyalty.deleteTier":{"post":{"operationId":"posLoyalty_deleteTier","summary":"Delete Tier","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posLoyalty.getTier":{"get":{"operationId":"posLoyalty_getTier","summary":"Get Tier","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posLoyalty.listRewards":{"get":{"operationId":"posLoyalty_listRewards","summary":"List Rewards","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"isActive":{"type":"boolean"},"isFeatured":{"type":"boolean"},"minTierId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"maxPointsCost":{"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posLoyalty.getReward":{"get":{"operationId":"posLoyalty_getReward","summary":"Get Reward","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posLoyalty.createReward":{"post":{"operationId":"posLoyalty_createReward","summary":"Create Reward","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"type":"object"}},"required":["json"]}}}}}},"/api/trpc/posLoyalty.updateReward":{"post":{"operationId":"posLoyalty_updateReward","summary":"Update Reward","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"type":"object"}},"required":["json"]}}}}}},"/api/trpc/posLoyalty.deleteReward":{"post":{"operationId":"posLoyalty_deleteReward","summary":"Delete Reward","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posLoyalty.listEarningRules":{"get":{"operationId":"posLoyalty_listEarningRules","summary":"List Earning Rules","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"programId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["programId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posLoyalty.createEarningRule":{"post":{"operationId":"posLoyalty_createEarningRule","summary":"Create Earning Rule","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"type":"object"}},"required":["json"]}}}}}},"/api/trpc/posLoyalty.updateEarningRule":{"post":{"operationId":"posLoyalty_updateEarningRule","summary":"Update Earning Rule","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"type":"object"}},"required":["json"]}}}}}},"/api/trpc/posLoyalty.deleteEarningRule":{"post":{"operationId":"posLoyalty_deleteEarningRule","summary":"Delete Earning Rule","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posLoyalty.getMember":{"get":{"operationId":"posLoyalty_getMember","summary":"Get Member","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"contactId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["contactId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posLoyalty.getMemberById":{"get":{"operationId":"posLoyalty_getMemberById","summary":"Get Member By Id","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posLoyalty.listMembers":{"get":{"operationId":"posLoyalty_listMembers","summary":"List Members","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":1,"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991},"pageSize":{"default":20,"type":"integer","minimum":1,"maximum":100},"search":{"type":"string"},"tierId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"isActive":{"type":"boolean"},"minPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"maxPoints":{"type":"integer","minimum":0,"maximum":9007199254740991},"sortBy":{"default":"memberSince","type":"string","enum":["points","spend","visits","memberSince"]},"sortOrder":{"default":"desc","type":"string","enum":["asc","desc"]}},"required":["page","pageSize","sortBy","sortOrder"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posLoyalty.enrollMember":{"post":{"operationId":"posLoyalty_enrollMember","summary":"Enroll Member","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"contactId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"cardNumber":{"type":"string"},"referredByCode":{"type":"string"},"birthdayMonth":{"type":"integer","minimum":1,"maximum":12},"birthdayDay":{"type":"integer","minimum":1,"maximum":31},"emailNotifications":{"default":true,"type":"boolean"},"smsNotifications":{"default":false,"type":"boolean"}},"required":["contactId","emailNotifications","smsNotifications"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posLoyalty.updateMember":{"post":{"operationId":"posLoyalty_updateMember","summary":"Update Member","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"cardNumber":{"type":"string"},"isActive":{"type":"boolean"},"isSuspended":{"type":"boolean"},"suspendedReason":{"type":"string"},"birthdayMonth":{"type":"integer","minimum":1,"maximum":12},"birthdayDay":{"type":"integer","minimum":1,"maximum":31},"emailNotifications":{"type":"boolean"},"smsNotifications":{"type":"boolean"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posLoyalty.earnPoints":{"post":{"operationId":"posLoyalty_earnPoints","summary":"Earn Points","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"memberId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"amount":{"type":"number","exclusiveMinimum":0},"description":{"type":"string"},"ruleId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["memberId","amount"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posLoyalty.adjustPoints":{"post":{"operationId":"posLoyalty_adjustPoints","summary":"Adjust Points","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"memberId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"points":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},"description":{"type":"string","minLength":1},"staffNote":{"type":"string"}},"required":["memberId","points","description"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posLoyalty.getAvailableRewards":{"get":{"operationId":"posLoyalty_getAvailableRewards","summary":"Get Available Rewards","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"memberId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["memberId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posLoyalty.redeemReward":{"post":{"operationId":"posLoyalty_redeemReward","summary":"Redeem Reward","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"memberId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"rewardId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["memberId","rewardId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posLoyalty.completeRedemption":{"post":{"operationId":"posLoyalty_completeRedemption","summary":"Complete Redemption","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"redemptionId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"discountApplied":{"type":"number","exclusiveMinimum":0}},"required":["redemptionId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posLoyalty.cancelRedemption":{"post":{"operationId":"posLoyalty_cancelRedemption","summary":"Cancel Redemption","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"redemptionId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["redemptionId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posLoyalty.listRedemptions":{"get":{"operationId":"posLoyalty_listRedemptions","summary":"List Redemptions","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"memberId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"status":{"type":"string","enum":["PENDING","APPLIED","COMPLETED","CANCELLED","EXPIRED"]},"startDate":{},"endDate":{},"page":{"default":1,"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991},"pageSize":{"default":20,"type":"integer","minimum":1,"maximum":100}},"required":["page","pageSize"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posLoyalty.getProgramAnalytics":{"get":{"operationId":"posLoyalty_getProgramAnalytics","summary":"Get Program Analytics","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"startDate":{},"endDate":{}},"required":["startDate","endDate"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posLoyalty.getMemberAnalytics":{"get":{"operationId":"posLoyalty_getMemberAnalytics","summary":"Get Member Analytics","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"memberId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["memberId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posLoyalty.listPointsLog":{"get":{"operationId":"posLoyalty_listPointsLog","summary":"List Points Log","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"memberId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"page":{"default":1,"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991},"pageSize":{"default":20,"type":"integer","minimum":1,"maximum":100}},"required":["memberId","page","pageSize"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posLoyalty.getPublicProgram":{"get":{"operationId":"posLoyalty_getPublicProgram","summary":"Get Public Program","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/posLoyalty.getPublicRewards":{"get":{"operationId":"posLoyalty_getPublicRewards","summary":"Get Public Rewards","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/posLoyalty.lookupMemberByCard":{"get":{"operationId":"posLoyalty_lookupMemberByCard","summary":"Lookup Member By Card","tags":["posLoyalty"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"cardNumber":{"type":"string"}},"required":["cardNumber"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posOrders.getPOSOrders":{"get":{"operationId":"posOrders_getPOSOrders","summary":"Get POSOrders","tags":["posOrders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"status":{"type":"string","enum":["pending","preparing","ready","completed","cancelled"]},"search":{"type":"string"},"paymentStatus":{"type":"string","enum":["pending","paid","refunded"]},"page":{"default":1,"type":"number","minimum":1},"per_page":{"default":50,"type":"number","minimum":1,"maximum":100},"sortBy":{"default":"createdAt","type":"string","enum":["createdAt","totalAmount","status"]},"sortOrder":{"default":"desc","type":"string","enum":["asc","desc"]}},"required":["page","per_page","sortBy","sortOrder"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posOrders.updateOrderStatus":{"post":{"operationId":"posOrders_updateOrderStatus","summary":"Update Order Status","tags":["posOrders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"status":{"type":"string","enum":["pending","preparing","ready","completed","cancelled"]},"notes":{"type":"string"}},"required":["orderId","status"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posOrders.printReceipt":{"post":{"operationId":"posOrders_printReceipt","summary":"Print Receipt","tags":["posOrders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"includeCustomerCopy":{"default":true,"type":"boolean"},"includeMerchantCopy":{"default":false,"type":"boolean"}},"required":["orderId","includeCustomerCopy","includeMerchantCopy"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posOrders.printKitchenTicket":{"post":{"operationId":"posOrders_printKitchenTicket","summary":"Print Kitchen Ticket","tags":["posOrders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"priority":{"default":"normal","type":"string","enum":["normal","high","urgent"]},"specialInstructions":{"type":"string"}},"required":["orderId","priority"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posOrders.getOrderStatistics":{"get":{"operationId":"posOrders_getOrderStatistics","summary":"Get Order Statistics","tags":["posOrders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"period":{"default":"today","type":"string","enum":["today","week","month"]}},"required":["period"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posOrders.processRefund":{"post":{"operationId":"posOrders_processRefund","summary":"Process Refund","tags":["posOrders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"refundAmount":{"type":"number","minimum":0},"reason":{"type":"string","minLength":1}},"required":["orderId","refundAmount","reason"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posOrders.voidOrder":{"post":{"operationId":"posOrders_voidOrder","summary":"Void Order","tags":["posOrders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"reason":{"type":"string","minLength":1}},"required":["orderId","reason"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/posOrders.applyDiscount":{"post":{"operationId":"posOrders_applyDiscount","summary":"Apply Discount","tags":["posOrders"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"discountType":{"type":"string","enum":["percentage","fixed"]},"discountValue":{"type":"number","minimum":0},"reason":{"type":"string","minLength":1}},"required":["orderId","discountType","discountValue","reason"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tablePayment.createSession":{"post":{"operationId":"tablePayment_createSession","summary":"Create Session","tags":["tablePayment"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"tableId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"splitType":{"type":"string","enum":["EQUAL","BY_ITEM","BY_SEAT","CUSTOM_AMOUNT"]},"participantCount":{"type":"integer","minimum":1,"maximum":50},"expirationMinutes":{"type":"integer","minimum":15,"maximum":480}},"required":["orderId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tablePayment.getSession":{"get":{"operationId":"tablePayment_getSession","summary":"Get Session","tags":["tablePayment"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"sessionId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["sessionId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tablePayment.getSessionByQRCode":{"get":{"operationId":"tablePayment_getSessionByQRCode","summary":"Get Session By QRCode","tags":["tablePayment"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"qrCode":{"type":"string","minLength":1}},"required":["qrCode"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tablePayment.listSessions":{"get":{"operationId":"tablePayment_listSessions","summary":"List Sessions","tags":["tablePayment"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"filters":{"type":"object","properties":{"status":{"type":"string","enum":["ACTIVE","PARTIALLY_PAID","COMPLETED","EXPIRED","CANCELLED"]},"tableId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"fromDate":{},"toDate":{}},"additionalProperties":false},"options":{"type":"object","properties":{"page":{"type":"integer","minimum":1,"maximum":9007199254740991},"pageSize":{"type":"integer","minimum":1,"maximum":100},"sortBy":{"type":"string"},"sortOrder":{"type":"string","enum":["asc","desc"]}},"additionalProperties":false}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tablePayment.cancelSession":{"post":{"operationId":"tablePayment_cancelSession","summary":"Cancel Session","tags":["tablePayment"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"sessionId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["sessionId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tablePayment.addParticipant":{"post":{"operationId":"tablePayment_addParticipant","summary":"Add Participant","tags":["tablePayment"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"sessionId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"name":{"type":"string","minLength":1,"maxLength":100},"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"phone":{"type":"string","minLength":5,"maxLength":20},"assignedAmount":{"type":"number","exclusiveMinimum":0},"assignedItems":{"type":"array","items":{"type":"object","properties":{"orderItemId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"quantity":{"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991},"amount":{"type":"number","exclusiveMinimum":0}},"required":["orderItemId","quantity","amount"],"additionalProperties":false}}},"required":["sessionId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tablePayment.assignItemsToParticipant":{"post":{"operationId":"tablePayment_assignItemsToParticipant","summary":"Assign Items To Participant","tags":["tablePayment"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"sessionId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"participantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"items":{"type":"array","items":{"type":"object","properties":{"orderItemId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"quantity":{"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991},"amount":{"type":"number","exclusiveMinimum":0}},"required":["orderItemId","quantity","amount"],"additionalProperties":false}}},"required":["sessionId","participantId","items"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tablePayment.recalculateSplit":{"post":{"operationId":"tablePayment_recalculateSplit","summary":"Recalculate Split","tags":["tablePayment"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"sessionId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["sessionId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tablePayment.processPayment":{"post":{"operationId":"tablePayment_processPayment","summary":"Process Payment","tags":["tablePayment"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"participantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"paymentMethod":{"type":"string","enum":["card","cash","apple_pay","google_pay"]},"tipAmount":{"type":"number","minimum":0},"paymentIntentId":{"type":"string"},"paymentMethodId":{"type":"string"}},"required":["participantId","paymentMethod"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tablePayment.recordCashPayment":{"post":{"operationId":"tablePayment_recordCashPayment","summary":"Record Cash Payment","tags":["tablePayment"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"sessionId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"participantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"amount":{"type":"number","exclusiveMinimum":0},"tipAmount":{"type":"number","minimum":0}},"required":["sessionId","amount"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tablePayment.refundTransaction":{"post":{"operationId":"tablePayment_refundTransaction","summary":"Refund Transaction","tags":["tablePayment"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"transactionId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"amount":{"type":"number","exclusiveMinimum":0},"reason":{"type":"string","maxLength":500}},"required":["transactionId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tablePayment.getTipConfiguration":{"get":{"operationId":"tablePayment_getTipConfiguration","summary":"Get Tip Configuration","tags":["tablePayment"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/tablePayment.updateTipConfiguration":{"post":{"operationId":"tablePayment_updateTipConfiguration","summary":"Update Tip Configuration","tags":["tablePayment"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tipOptions":{"minItems":1,"maxItems":5,"type":"array","items":{"type":"integer","minimum":0,"maximum":100}},"allowCustomTip":{"type":"boolean"},"minTipPercent":{"type":"integer","minimum":0,"maximum":100},"maxTipPercent":{"type":"integer","minimum":0,"maximum":100},"defaultTipIndex":{"type":"integer","minimum":0,"maximum":9007199254740991},"showSuggested":{"type":"boolean"},"tipMessage":{"type":"string","maxLength":500}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tablePayment.getSessionStats":{"get":{"operationId":"tablePayment_getSessionStats","summary":"Get Session Stats","tags":["tablePayment"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"fromDate":{},"toDate":{}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tablePayment.generateQRCodeData":{"get":{"operationId":"tablePayment_generateQRCodeData","summary":"Generate QRCode Data","tags":["tablePayment"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"sessionId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"baseUrl":{"type":"string","format":"uri"}},"required":["sessionId","baseUrl"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tableReservations.getByDate":{"get":{"operationId":"tableReservations_getByDate","summary":"Get By Date","tags":["tableReservations"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"siteId":{"type":"string"},"floorPlanId":{"type":"string"},"date":{}},"required":["siteId","floorPlanId","date"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tableReservations.getStats":{"get":{"operationId":"tableReservations_getStats","summary":"Get Stats","tags":["tableReservations"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"siteId":{"type":"string"},"floorPlanId":{"type":"string"},"startDate":{},"endDate":{}},"required":["siteId","floorPlanId","startDate","endDate"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tableReservations.getAvailableTimeSlots":{"get":{"operationId":"tableReservations_getAvailableTimeSlots","summary":"Get Available Time Slots","tags":["tableReservations"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"siteId":{"type":"string"},"floorPlanId":{"type":"string"},"date":{},"partySize":{"type":"number"},"duration":{"default":90,"type":"number"}},"required":["siteId","floorPlanId","date","partySize","duration"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tableReservations.create":{"post":{"operationId":"tableReservations_create","summary":"Create","tags":["tableReservations"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"siteId":{"type":"string"},"floorPlanId":{"type":"string"},"customerName":{"type":"string"},"customerEmail":{"type":"string"},"customerPhone":{"type":"string"},"partySize":{"type":"number"},"reservationDate":{},"reservationTime":{"type":"string"},"duration":{"type":"number"},"tableId":{"type":"string"},"sectionId":{"type":"string"},"specialRequests":{"type":"string"},"notes":{"type":"string"}},"required":["siteId","floorPlanId","customerName","customerPhone","partySize","reservationDate","reservationTime","duration"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tableReservations.update":{"post":{"operationId":"tableReservations_update","summary":"Update","tags":["tableReservations"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"customerName":{"type":"string"},"customerEmail":{"type":"string"},"customerPhone":{"type":"string"},"partySize":{"type":"number"},"reservationDate":{},"reservationTime":{"type":"string"},"duration":{"type":"number"},"tableId":{"type":"string"},"sectionId":{"type":"string"},"specialRequests":{"type":"string"},"notes":{"type":"string"},"status":{"type":"string","enum":["pending","confirmed","seated","completed","cancelled","no_show"]}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tableReservations.cancel":{"post":{"operationId":"tableReservations_cancel","summary":"Cancel","tags":["tableReservations"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"reason":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tableReservations.seat":{"post":{"operationId":"tableReservations_seat","summary":"Seat","tags":["tableReservations"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"tableId":{"type":"string"}},"required":["id","tableId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tableReservations.noShow":{"post":{"operationId":"tableReservations_noShow","summary":"No Show","tags":["tableReservations"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tableReservations.complete":{"post":{"operationId":"tableReservations_complete","summary":"Complete","tags":["tableReservations"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"tableId":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tableReservations.getByConfirmationCode":{"get":{"operationId":"tableReservations_getByConfirmationCode","summary":"Get By Confirmation Code","tags":["tableReservations"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"confirmationCode":{"type":"string"},"siteId":{"type":"string"}},"required":["confirmationCode","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tableReservations.getUpcoming":{"get":{"operationId":"tableReservations_getUpcoming","summary":"Get Upcoming","tags":["tableReservations"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"siteId":{"type":"string"},"floorPlanId":{"type":"string"},"hours":{"default":2,"type":"number"}},"required":["siteId","floorPlanId","hours"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/tableReservations.delete":{"post":{"operationId":"tableReservations_delete","summary":"Delete","tags":["tableReservations"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/delivery.getOrders":{"get":{"operationId":"delivery_getOrders","summary":"Get Orders","tags":["delivery"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"status":{"type":"string","enum":["PENDING","CONFIRMED","IN_PREPARATION","READY","SERVED","COMPLETED","CANCELLED"]},"platform":{"type":"string","enum":["ubereats","deliveroo","justeat","glovo"]},"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/delivery.getStats":{"get":{"operationId":"delivery_getStats","summary":"Get Stats","tags":["delivery"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"startDate":{},"endDate":{}},"required":["startDate","endDate"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/delivery.updateOrderStatus":{"post":{"operationId":"delivery_updateOrderStatus","summary":"Update Order Status","tags":["delivery"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"status":{"type":"string","enum":["PENDING","CONFIRMED","PREPARING","READY","OUT_FOR_DELIVERY","DELIVERED","CANCELLED","REFUNDED"]},"notes":{"type":"string"}},"required":["orderId","status"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/delivery.getSettings":{"get":{"operationId":"delivery_getSettings","summary":"Get Settings","tags":["delivery"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/delivery.updateSettings":{"post":{"operationId":"delivery_updateSettings","summary":"Update Settings","tags":["delivery"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"platform":{"type":"string","enum":["ubereats","deliveroo","justeat","glovo"]},"settings":{"type":"object","properties":{"enabled":{"type":"boolean"},"apiKey":{"type":"string"},"storeId":{"type":"string"},"webhookUrl":{"type":"string"}},"required":["enabled"],"additionalProperties":false}},"required":["platform","settings"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/delivery.syncProducts":{"post":{"operationId":"delivery_syncProducts","summary":"Sync Products","tags":["delivery"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"platform":{"type":"string","enum":["UBEREATS","DELIVEROO","JUSTEAT","GLOVO"]}},"required":["platform"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/delivery.updateStoreAvailability":{"post":{"operationId":"delivery_updateStoreAvailability","summary":"Update Store Availability","tags":["delivery"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"platform":{"type":"string","enum":["UBEREATS","DELIVEROO","JUSTEAT","GLOVO"]},"isOpen":{"type":"boolean"}},"required":["platform","isOpen"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/floorPlans.getAll":{"get":{"operationId":"floorPlans_getAll","summary":"Get All","tags":["floorPlans"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"search":{"type":"string"},"sort":{"type":"string"},"status":{"type":"string","enum":["ACTIVE","INACTIVE","DRAFT","ARCHIVED"]},"advancedFilters":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"object","properties":{"value":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{"type":"null"}]},"operator":{"default":"equals","type":"string","enum":["equals","contains","gt","lt","gte","lte","in","notIn"]}},"required":["value","operator"],"additionalProperties":false}}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/floorPlans.list":{"get":{"operationId":"floorPlans_list","summary":"List","tags":["floorPlans"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":0,"type":"number"},"per_page":{"default":10,"type":"number"},"search":{"type":"string"},"sort":{"type":"string"},"status":{"type":"string","enum":["ACTIVE","INACTIVE","DRAFT","ARCHIVED"]},"advancedFilters":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"object","properties":{"value":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{"type":"null"}]},"operator":{"default":"equals","type":"string","enum":["equals","contains","gt","lt","gte","lte","in","notIn"]}},"required":["value","operator"],"additionalProperties":false}}},"required":["page","per_page"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/floorPlans.getById":{"get":{"operationId":"floorPlans_getById","summary":"Get By Id","tags":["floorPlans"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/floorPlans.create":{"post":{"operationId":"floorPlans_create","summary":"Create","tags":["floorPlans"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"description":{"type":"string"},"status":{"default":"DRAFT","type":"string","enum":["ACTIVE","INACTIVE","DRAFT","ARCHIVED"]},"layout":{"type":"object","properties":{"elements":{"default":[],"type":"array","items":{}},"width":{"default":800,"type":"number"},"height":{"default":600,"type":"number"},"scale":{"default":1,"type":"number"}},"required":["elements","width","height","scale"],"additionalProperties":false},"dimensions":{"type":"object","properties":{"width":{"default":800,"type":"number"},"height":{"default":600,"type":"number"},"scale":{"default":1,"type":"number"}},"required":["width","height","scale"],"additionalProperties":false},"backgroundColor":{"default":"#ffffff","type":"string"},"gridSize":{"default":20,"type":"number"},"snapToGrid":{"default":true,"type":"boolean"},"isDefault":{"default":false,"type":"boolean"}},"required":["name","status","layout","dimensions","backgroundColor","gridSize","snapToGrid","isDefault"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/floorPlans.update":{"post":{"operationId":"floorPlans_update","summary":"Update","tags":["floorPlans"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"name":{"type":"string","minLength":1},"description":{"type":"string"},"status":{"type":"string","enum":["ACTIVE","INACTIVE","DRAFT","ARCHIVED"]},"layout":{"type":"object","properties":{"elements":{"default":[],"type":"array","items":{}},"width":{"default":800,"type":"number"},"height":{"default":600,"type":"number"},"scale":{"default":1,"type":"number"}},"required":["elements","width","height","scale"],"additionalProperties":false},"dimensions":{"type":"object","properties":{"width":{"default":800,"type":"number"},"height":{"default":600,"type":"number"},"scale":{"default":1,"type":"number"}},"required":["width","height","scale"],"additionalProperties":false},"backgroundColor":{"type":"string"},"gridSize":{"type":"number"},"snapToGrid":{"type":"boolean"},"isDefault":{"type":"boolean"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/floorPlans.delete":{"post":{"operationId":"floorPlans_delete","summary":"Delete","tags":["floorPlans"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/floorPlans.duplicate":{"post":{"operationId":"floorPlans_duplicate","summary":"Duplicate","tags":["floorPlans"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"name":{"type":"string","minLength":1}},"required":["id","name"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/floorPlans.setDefault":{"post":{"operationId":"floorPlans_setDefault","summary":"Set Default","tags":["floorPlans"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/floorPlans.getDefault":{"get":{"operationId":"floorPlans_getDefault","summary":"Get Default","tags":["floorPlans"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/floorPlans.updateLayout":{"post":{"operationId":"floorPlans_updateLayout","summary":"Update Layout","tags":["floorPlans"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"tables":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"position":{"type":"object","properties":{"x":{"type":"number"},"y":{"type":"number"},"rotation":{"default":0,"type":"number"}},"required":["x","y","rotation"],"additionalProperties":false},"dimensions":{"type":"object","properties":{"width":{"type":"number"},"height":{"type":"number"}},"required":["width","height"],"additionalProperties":false}},"required":["id","position"],"additionalProperties":false}}},"required":["id","tables"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clickCollect.getSettings":{"get":{"operationId":"clickCollect_getSettings","summary":"Get Settings","tags":["clickCollect"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/clickCollect.updateSettings":{"post":{"operationId":"clickCollect_updateSettings","summary":"Update Settings","tags":["clickCollect"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"isEnabled":{"type":"boolean"},"minLeadTime":{"type":"number","minimum":0},"maxLeadTime":{"type":"number","minimum":0},"slotDuration":{"type":"number","minimum":5},"ordersPerSlot":{"type":"number","minimum":1},"businessHours":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"object","properties":{"open":{"type":"string"},"close":{"type":"string"},"closed":{"type":"boolean"}},"required":["open","close"],"additionalProperties":false}},"closedDates":{"type":"array","items":{"type":"string"}},"preparationTime":{"type":"number","minimum":0},"autoConfirm":{"type":"boolean"},"requirePayment":{"type":"boolean"},"allowNotes":{"type":"boolean"},"notifyBySms":{"type":"boolean"},"notifyByEmail":{"type":"boolean"},"reminderMinutes":{"anyOf":[{"type":"number"},{"type":"null"}]},"noShowMinutes":{"type":"number","minimum":0},"customMessage":{"anyOf":[{"type":"string"},{"type":"null"}]},"termsUrl":{"anyOf":[{"type":"string","format":"uri"},{"type":"null"}]}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clickCollect.listSlots":{"get":{"operationId":"clickCollect_listSlots","summary":"List Slots","tags":["clickCollect"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"date":{}},"required":["date"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clickCollect.getAvailableSlots":{"get":{"operationId":"clickCollect_getAvailableSlots","summary":"Get Available Slots","tags":["clickCollect"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"date":{},"days":{"type":"number","minimum":1,"maximum":30}},"required":["date"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clickCollect.createSlot":{"post":{"operationId":"clickCollect_createSlot","summary":"Create Slot","tags":["clickCollect"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"date":{},"startTime":{"type":"string","pattern":"^\\d{2}:\\d{2}$"},"endTime":{"type":"string","pattern":"^\\d{2}:\\d{2}$"},"maxOrders":{"type":"number","minimum":1}},"required":["date","startTime","endTime"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clickCollect.blockSlot":{"post":{"operationId":"clickCollect_blockSlot","summary":"Block Slot","tags":["clickCollect"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"slotId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"reason":{"type":"string"}},"required":["slotId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clickCollect.unblockSlot":{"post":{"operationId":"clickCollect_unblockSlot","summary":"Unblock Slot","tags":["clickCollect"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"slotId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["slotId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clickCollect.createOrder":{"post":{"operationId":"clickCollect_createOrder","summary":"Create Order","tags":["clickCollect"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"slotId":{"type":"string"},"customerName":{"type":"string","minLength":1},"customerPhone":{"type":"string","minLength":1},"customerEmail":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"notes":{"type":"string"},"items":{"minItems":1,"type":"array","items":{"type":"object","properties":{"productId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"productName":{"type":"string","minLength":1},"quantity":{"type":"number","minimum":1},"unitPrice":{"type":"number","minimum":0},"notes":{"type":"string"},"modifiers":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"price":{"type":"number"}},"required":["name","price"],"additionalProperties":false}}},"required":["productId","productName","quantity","unitPrice"],"additionalProperties":false}}},"required":["slotId","customerName","customerPhone","items"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clickCollect.getOrder":{"get":{"operationId":"clickCollect_getOrder","summary":"Get Order","tags":["clickCollect"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clickCollect.getOrderByPickupCode":{"get":{"operationId":"clickCollect_getOrderByPickupCode","summary":"Get Order By Pickup Code","tags":["clickCollect"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"pickupCode":{"type":"string","minLength":4,"maxLength":6}},"required":["pickupCode"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clickCollect.listOrders":{"get":{"operationId":"clickCollect_listOrders","summary":"List Orders","tags":["clickCollect"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"status":{"anyOf":[{"type":"string","enum":["PENDING","CONFIRMED","PREPARING","READY","PICKED_UP","CANCELLED","NO_SHOW"]},{"type":"array","items":{"type":"string","enum":["PENDING","CONFIRMED","PREPARING","READY","PICKED_UP","CANCELLED","NO_SHOW"]}}]},"date":{},"dateFrom":{},"dateTo":{},"search":{"type":"string"},"page":{"type":"number","minimum":1},"pageSize":{"type":"number","minimum":1,"maximum":100}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clickCollect.updateOrderStatus":{"post":{"operationId":"clickCollect_updateOrderStatus","summary":"Update Order Status","tags":["clickCollect"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"status":{"type":"string","enum":["PENDING","CONFIRMED","PREPARING","READY","PICKED_UP","CANCELLED","NO_SHOW"]},"reason":{"type":"string"}},"required":["orderId","status"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clickCollect.verifyPickup":{"post":{"operationId":"clickCollect_verifyPickup","summary":"Verify Pickup","tags":["clickCollect"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"pickupCode":{"type":"string","minLength":4,"maxLength":6}},"required":["orderId","pickupCode"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clickCollect.getPickupQueue":{"get":{"operationId":"clickCollect_getPickupQueue","summary":"Get Pickup Queue","tags":["clickCollect"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/clickCollect.sendNotification":{"post":{"operationId":"clickCollect_sendNotification","summary":"Send Notification","tags":["clickCollect"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"type":{"type":"string","enum":["ORDER_CONFIRMED","PREPARING","READY_FOR_PICKUP","REMINDER","CANCELLED","NO_SHOW"]},"channel":{"type":"string","enum":["SMS","EMAIL","BOTH"]}},"required":["orderId","type"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clickCollect.listNotifications":{"get":{"operationId":"clickCollect_listNotifications","summary":"List Notifications","tags":["clickCollect"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["orderId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clickCollect.getAnalytics":{"get":{"operationId":"clickCollect_getAnalytics","summary":"Get Analytics","tags":["clickCollect"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"dateRange":{"type":"string","enum":["24h","7d","30d","90d"]},"startDate":{},"endDate":{}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clickCollect.getPublicSettings":{"get":{"operationId":"clickCollect_getPublicSettings","summary":"Get Public Settings","tags":["clickCollect"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"siteSlug":{"type":"string","minLength":1}},"required":["siteSlug"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clickCollect.getPublicSlots":{"get":{"operationId":"clickCollect_getPublicSlots","summary":"Get Public Slots","tags":["clickCollect"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"siteSlug":{"type":"string","minLength":1},"date":{}},"required":["siteSlug","date"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clickCollect.getPublicOrderStatus":{"get":{"operationId":"clickCollect_getPublicOrderStatus","summary":"Get Public Order Status","tags":["clickCollect"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"pickupCode":{"type":"string","minLength":4,"maxLength":6}},"required":["pickupCode"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/clickCollect.createPublicOrder":{"post":{"operationId":"clickCollect_createPublicOrder","summary":"Create Public Order","tags":["clickCollect"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"siteSlug":{"type":"string","minLength":1},"slotId":{"type":"string"},"customerName":{"type":"string","minLength":1},"customerPhone":{"type":"string","minLength":1},"customerEmail":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"notes":{"type":"string"},"items":{"minItems":1,"type":"array","items":{"type":"object","properties":{"productId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"productName":{"type":"string","minLength":1},"quantity":{"type":"number","minimum":1},"unitPrice":{"type":"number","minimum":0},"notes":{"type":"string"},"modifiers":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"price":{"type":"number"}},"required":["name","price"],"additionalProperties":false}}},"required":["productId","productName","quantity","unitPrice"],"additionalProperties":false}}},"required":["siteSlug","slotId","customerName","customerPhone","items"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/settings.getSettings":{"get":{"operationId":"settings_getSettings","summary":"Get Settings","tags":["settings"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/settings.getPublicCheckoutConfig":{"get":{"operationId":"settings_getPublicCheckoutConfig","summary":"Get Public Checkout Config","tags":["settings"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/settings.updateSettings":{"post":{"operationId":"settings_updateSettings","summary":"Update Settings","tags":["settings"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"ecommerce.enabled":{"type":"string","enum":["enabled","disabled"]},"ecommerce.general.manageProductQuantities":{"type":"string","enum":["true","false"]},"ecommerce.general.lowStockEnabled":{"type":"string","enum":["true","false"]},"ecommerce.general.lowStockThreshold":{"type":"string"},"ecommerce.general.lowStockNotifications":{"type":"string","enum":["true","false"]},"ecommerce.general.lowStockEmailNotifications":{"type":"string","enum":["true","false"]},"ecommerce.general.lowStockNotificationRecipients":{"type":"string"},"ecommerce.general.lowStockManagerEmailNotifications":{"type":"string","enum":["true","false"]},"ecommerce.general.lowStockManagerNotificationRecipients":{"type":"string"},"ecommerce.cache.enabled":{"type":"string","enum":["true","false"]},"ecommerce.general.defaultDeliveryDays":{"type":"string"},"ecommerce.general.defaultSendSchedules":{"type":"string"},"remote_sites":{"type":"string"},"ecommerce.templates.default":{"type":"string"},"shipping.enabled":{"type":"string","enum":["enabled","disabled"]},"shipping.defaultCarrier":{"type":"string"},"shipping.defaultCurrency":{"type":"string","enum":["EUR","USD","GBP"]},"shipping.freeShippingThreshold":{"type":"string"},"shipping.eu.vatIncluded":{"type":"string","enum":["true","false"]},"shipping.eu.crossBorderEnabled":{"type":"string","enum":["true","false"]},"shipping.eu.vatCalculationEnabled":{"type":"string","enum":["true","false"]},"shipping.eu.gdprCompliant":{"type":"string","enum":["true","false"]},"shipping.france.pickupPointsEnabled":{"type":"string","enum":["true","false"]},"shipping.france.expressDeliveryEnabled":{"type":"string","enum":["true","false"]},"shipping.france.corsicaHandling":{"type":"string","enum":["standard","surcharge","disabled"]},"shipping.france.domTomHandling":{"type":"string","enum":["standard","surcharge","disabled"]},"shipping.carriers.colissimo.apiKey":{"type":"string"},"shipping.carriers.colissimo.testMode":{"type":"string","enum":["true","false"]},"shipping.carriers.chronopost.apiKey":{"type":"string"},"shipping.carriers.chronopost.testMode":{"type":"string","enum":["true","false"]},"shipping.carriers.dpd.apiKey":{"type":"string"},"shipping.carriers.dpd.testMode":{"type":"string","enum":["true","false"]},"shipping.carriers.mondialRelay.apiKey":{"type":"string"},"shipping.carriers.mondialRelay.testMode":{"type":"string","enum":["true","false"]},"shipping.legal.maxDeliveryDays":{"type":"string"},"shipping.legal.returnPolicyDays":{"type":"string"},"shipping.legal.displayDeliveryDates":{"type":"string","enum":["true","false"]},"shipping.legal.transparentPricing":{"type":"string","enum":["true","false"]},"shipping.rates.weightBased":{"type":"string","enum":["true","false"]},"shipping.rates.volumeBased":{"type":"string","enum":["true","false"]},"shipping.rates.distanceBased":{"type":"string","enum":["true","false"]},"shipping.rates.fuelSurchargeEnabled":{"type":"string","enum":["true","false"]},"shipping.rates.pickupPointDiscount":{"type":"string"},"shipping.notifications.trackingUpdates":{"type":"string","enum":["true","false"]},"shipping.notifications.deliveryConfirmation":{"type":"string","enum":["true","false"]},"shipping.notifications.adminAlerts":{"type":"string","enum":["true","false"]},"shipping.notifications.customerUpdates":{"type":"string","enum":["true","false"]},"boutique.sections.order":{"type":"string"},"boutique.sections.choices.visible":{"type":"string","enum":["true","false"]},"boutique.sections.editions.visible":{"type":"string","enum":["true","false"]},"boutique.sections.offers.visible":{"type":"string","enum":["true","false"]},"boutique.sections.cta.visible":{"type":"string","enum":["true","false"]},"boutique.sections.choices.title":{"type":"string"},"boutique.sections.choices.subtitle":{"type":"string"},"boutique.sections.editions.title":{"type":"string"},"boutique.sections.editions.subtitle":{"type":"string"},"boutique.sections.editions.editionIds":{"type":"string"},"boutique.sections.editions.maxItems":{"type":"string"},"boutique.sections.editions.showArchivesLink":{"type":"string","enum":["true","false"]},"boutique.sections.offers.title":{"type":"string"},"boutique.sections.offers.subtitle":{"type":"string"},"boutique.sections.offers.data":{"type":"string"},"boutique.sections.cta.features":{"type":"string"},"boutique.general.enabled":{"type":"string","enum":["true","false"]},"boutique.general.editModeEnabled":{"type":"string","enum":["true","false"]},"amisdelaferme.frontend_disabled":{"type":"string","enum":["true","false"]},"checkout.paymentMethods.card.enabled":{"type":"string","enum":["true","false"]},"checkout.paymentMethods.card.name":{"type":"string"},"checkout.paymentMethods.card.description":{"type":"string"},"checkout.paymentMethods.sepa.enabled":{"type":"string","enum":["true","false"]},"checkout.paymentMethods.sepa.name":{"type":"string"},"checkout.paymentMethods.sepa.description":{"type":"string"},"checkout.paymentMethods.bank_transfer.enabled":{"type":"string","enum":["true","false"]},"checkout.paymentMethods.bank_transfer.name":{"type":"string"},"checkout.paymentMethods.bank_transfer.description":{"type":"string"},"checkout.paymentMethods.cheque.enabled":{"type":"string","enum":["true","false"]},"checkout.paymentMethods.cheque.name":{"type":"string"},"checkout.paymentMethods.cheque.description":{"type":"string"},"checkout.notices.offline.title":{"type":"string"},"checkout.notices.offline.body":{"type":"string"},"checkout.notices.sepa.title":{"type":"string"},"checkout.notices.sepa.body":{"type":"string"}},"additionalProperties":{"type":"string"}}},"required":["json"]}}}}}},"/api/trpc/settings.getInvoiceSettings":{"get":{"operationId":"settings_getInvoiceSettings","summary":"Get Invoice Settings","tags":["settings"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/settings.updateInvoiceSettings":{"post":{"operationId":"settings_updateInvoiceSettings","summary":"Update Invoice Settings","tags":["settings"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"general":{"type":"object","properties":{"defaultInvoicePrefix":{"type":"string"},"nextInvoiceNumber":{"type":"number","minimum":1},"dateFormatInInvoiceNumber":{"type":"string","enum":["none","YYYY","YYYYMM","YYYYMMDD"]},"defaultCurrency":{"type":"string"},"defaultPaymentTerms":{"type":"string"},"defaultTaxRate":{"type":"number","minimum":0,"maximum":100},"legalName":{"type":"string"}},"required":["defaultInvoicePrefix","nextInvoiceNumber","dateFormatInInvoiceNumber","defaultCurrency","defaultPaymentTerms","defaultTaxRate"],"additionalProperties":false},"automation":{"type":"object","properties":{"autoGenerateInvoiceNumber":{"type":"boolean"},"autoSendInvoices":{"type":"boolean"},"autoSendReminders":{"type":"boolean"},"reminderDays":{"type":"array","items":{"type":"number"}}},"required":["autoGenerateInvoiceNumber","autoSendInvoices","autoSendReminders","reminderDays"],"additionalProperties":false},"templates":{"type":"object","properties":{"defaultTemplate":{"type":"string"},"defaultEmailTemplate":{"type":"string"},"customHeader":{"type":"string"},"customFooter":{"type":"string"}},"required":["defaultTemplate","defaultEmailTemplate"],"additionalProperties":false},"printing":{"type":"object","properties":{"defaultPrinter":{"type":"string"},"printCopies":{"type":"number","minimum":1},"automaticPrinting":{"type":"boolean"}},"required":["defaultPrinter","printCopies","automaticPrinting"],"additionalProperties":false}},"required":["general","automation","templates","printing"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/settings.getCRMSettings":{"get":{"operationId":"settings_getCRMSettings","summary":"Get CRMSettings","tags":["settings"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/settings.updateCRMSettings":{"post":{"operationId":"settings_updateCRMSettings","summary":"Update CRMSettings","tags":["settings"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"general":{"type":"object","properties":{"companyName":{"type":"string"},"defaultCurrency":{"type":"string"},"defaultLanguage":{"type":"string"},"timezone":{"type":"string"}},"required":["companyName","defaultCurrency","defaultLanguage","timezone"],"additionalProperties":false},"contacts":{"type":"object","properties":{"autoAssignLeads":{"type":"boolean"},"leadExpirationDays":{"type":"number","minimum":1},"duplicateDetection":{"type":"boolean"},"requiredFields":{"type":"array","items":{"type":"string"}}},"required":["autoAssignLeads","leadExpirationDays","duplicateDetection","requiredFields"],"additionalProperties":false},"organization":{"type":"object","properties":{"departmentEnabled":{"type":"boolean"},"hierarchyEnabled":{"type":"boolean"},"territoryManagement":{"type":"boolean"},"customHierarchyLevels":{"type":"number","minimum":1,"maximum":5}},"required":["departmentEnabled","hierarchyEnabled","territoryManagement","customHierarchyLevels"],"additionalProperties":false},"notifications":{"type":"object","properties":{"emailNotifications":{"type":"boolean"},"leadAssignmentNotification":{"type":"boolean"},"taskDueNotification":{"type":"boolean"},"dailyDigest":{"type":"boolean"}},"required":["emailNotifications","leadAssignmentNotification","taskDueNotification","dailyDigest"],"additionalProperties":false}},"required":["general","contacts","organization","notifications"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/settings.getSuperAdminSettings":{"get":{"operationId":"settings_getSuperAdminSettings","summary":"Get Super Admin Settings","tags":["settings"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/settings.updateSuperAdminSettings":{"post":{"operationId":"settings_updateSuperAdminSettings","summary":"Update Super Admin Settings","tags":["settings"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"general":{"type":"object","properties":{"systemName":{"type":"string"},"defaultLanguage":{"type":"string"},"timezone":{"type":"string"},"maintenanceMode":{"type":"boolean"},"maintenanceMessage":{"type":"string"}},"required":["systemName","defaultLanguage","timezone","maintenanceMode"],"additionalProperties":false},"security":{"type":"object","properties":{"passwordPolicy":{"type":"object","properties":{"minLength":{"type":"number","minimum":8,"maximum":128},"requireUppercase":{"type":"boolean"},"requireLowercase":{"type":"boolean"},"requireNumbers":{"type":"boolean"},"requireSpecialChars":{"type":"boolean"},"passwordExpiryDays":{"type":"number","minimum":0}},"required":["minLength","requireUppercase","requireLowercase","requireNumbers","requireSpecialChars","passwordExpiryDays"],"additionalProperties":false},"sessionTimeout":{"type":"number","minimum":5},"maxLoginAttempts":{"type":"number","minimum":1},"twoFactorAuth":{"type":"object","properties":{"required":{"type":"boolean"},"allowedMethods":{"type":"array","items":{"type":"string","enum":["email","authenticator"]}}},"required":["required","allowedMethods"],"additionalProperties":false}},"required":["passwordPolicy","sessionTimeout","maxLoginAttempts","twoFactorAuth"],"additionalProperties":false},"tenants":{"type":"object","properties":{"multiTenancy":{"type":"boolean"},"isolationLevel":{"type":"string","enum":["database","schema","shared"]},"allowCustomDomains":{"type":"boolean"},"maxUsersPerTenant":{"type":"number","minimum":1},"defaultPlan":{"type":"string"}},"required":["multiTenancy","isolationLevel","allowCustomDomains","maxUsersPerTenant","defaultPlan"],"additionalProperties":false},"users":{"type":"object","properties":{"allowRegistration":{"type":"boolean"},"requireEmailVerification":{"type":"boolean"},"defaultRole":{"type":"string"},"allowMultipleRoles":{"type":"boolean"},"sessionConcurrency":{"type":"number","minimum":1}},"required":["allowRegistration","requireEmailVerification","defaultRole","allowMultipleRoles","sessionConcurrency"],"additionalProperties":false},"permissions":{"type":"object","properties":{"strictMode":{"type":"boolean"},"inheritanceEnabled":{"type":"boolean"},"auditLogging":{"type":"boolean"},"automaticRevocation":{"type":"boolean"}},"required":["strictMode","inheritanceEnabled","auditLogging","automaticRevocation"],"additionalProperties":false}},"required":["general","security","tenants","users","permissions"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/settings.getFormSettings":{"get":{"operationId":"settings_getFormSettings","summary":"Get Form Settings","tags":["settings"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/settings.updateFormSettings":{"post":{"operationId":"settings_updateFormSettings","summary":"Update Form Settings","tags":["settings"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"general":{"type":"object","properties":{"siteName":{"type":"string"},"siteDescription":{"type":"string"},"logoUrl":{"type":"string"},"thankYouMessage":{"type":"string"},"contactEmail":{"type":"string"},"footerText":{"type":"string"},"defaultFromName":{"type":"string"},"defaultFromEmail":{"type":"string"},"defaultReplyToEmail":{"type":"string"}},"required":["siteName","thankYouMessage"],"additionalProperties":false},"appearance":{"type":"object","properties":{"primaryColor":{"type":"string"},"secondaryColor":{"type":"string"},"customCss":{"type":"string"}},"additionalProperties":false},"behavior":{"type":"object","properties":{"allowAnonymousSubmissions":{"type":"boolean"},"requireEmailVerification":{"type":"boolean"},"enableRecaptcha":{"type":"boolean"},"recaptchaSiteKey":{"type":"string"},"recaptchaSecretKey":{"type":"string"},"showProgressBar":{"type":"boolean"},"enableAutoResponse":{"type":"boolean"},"enableAdminNotifications":{"type":"boolean"}},"required":["allowAnonymousSubmissions","requireEmailVerification","enableRecaptcha","showProgressBar"],"additionalProperties":false},"smtpProviders":{"type":"object","properties":{"postmark":{"type":"string"},"sendgrid":{"type":"string"},"mailgun":{"type":"string"}},"additionalProperties":false}},"required":["general","appearance","behavior"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/settings.testRemoteSiteConnection":{"post":{"operationId":"settings_testRemoteSiteConnection","summary":"Test Remote Site Connection","tags":["settings"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"url":{"type":"string","format":"uri"},"apiKey":{"type":"string","minLength":1},"apiSecret":{"type":"string"},"prestashopConnectionType":{"type":"string","enum":["native","company_manager"]},"timeout":{"default":10000,"type":"number","minimum":1000,"maximum":30000},"testEndpoints":{"minItems":1,"type":"array","items":{"type":"string"}}},"required":["url","apiKey","prestashopConnectionType","timeout","testEndpoints"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/settings.getConvexSettings":{"get":{"operationId":"settings_getConvexSettings","summary":"Get Convex Settings","tags":["settings"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/settings.updateConvexSettings":{"post":{"operationId":"settings_updateConvexSettings","summary":"Update Convex Settings","tags":["settings"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"convexUrl":{"type":"string","format":"uri"},"deployKey":{"type":"string","minLength":1},"accessToken":{"type":"string","minLength":1},"environment":{"type":"string","enum":["production","staging","development"]},"databaseSchema":{"type":"string"}},"required":["convexUrl","deployKey","accessToken","environment"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/settings.getPublicRecaptchaKey":{"get":{"operationId":"settings_getPublicRecaptchaKey","summary":"Get Public Recaptcha Key","tags":["settings"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/support.health":{"get":{"operationId":"support_health","summary":"Health","tags":["support"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/support.getTickets":{"get":{"operationId":"support_getTickets","summary":"Get Tickets","tags":["support"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{},"per_page":{},"search":{"anyOf":[{"type":"string"},{"type":"null"}]},"status":{"type":"string","enum":["OPEN","IN_PROGRESS","WAITING_FOR_CUSTOMER","WAITING_FOR_AGENT","RESOLVED","CLOSED","CANCELED"]},"priority":{"type":"string","enum":["LOW","NORMAL","HIGH","URGENT"]},"assignedToId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["page","per_page"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/support.createTicket":{"post":{"operationId":"support_createTicket","summary":"Create Ticket","tags":["support"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"title":{"type":"string","minLength":1},"description":{"type":"string"},"priority":{"default":"NORMAL","type":"string","enum":["LOW","NORMAL","HIGH","URGENT"]},"type":{"default":"QUESTION","type":"string","enum":["QUESTION","BUG_REPORT","FEATURE_REQUEST","ORDER_ISSUE","PAYMENT_ISSUE","TECHNICAL_SUPPORT","ACCOUNT_ISSUE","OTHER"]},"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"tags":{"default":[],"type":"array","items":{"type":"string"}}},"required":["title","priority","type","tags"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/support.getTicketById":{"get":{"operationId":"support_getTicketById","summary":"Get Ticket By Id","tags":["support"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/support.createMessage":{"post":{"operationId":"support_createMessage","summary":"Create Message","tags":["support"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"ticketId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"content":{"type":"string","minLength":1},"isInternal":{"default":false,"type":"boolean"}},"required":["ticketId","content","isInternal"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/support.updateTicket":{"post":{"operationId":"support_updateTicket","summary":"Update Ticket","tags":["support"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"title":{"type":"string","minLength":1},"description":{"type":"string"},"status":{"type":"string","enum":["OPEN","IN_PROGRESS","WAITING_FOR_CUSTOMER","WAITING_FOR_AGENT","RESOLVED","CLOSED","CANCELED"]},"priority":{"type":"string","enum":["LOW","NORMAL","HIGH","URGENT"]},"type":{"type":"string","enum":["QUESTION","BUG_REPORT","FEATURE_REQUEST","ORDER_ISSUE","PAYMENT_ISSUE","TECHNICAL_SUPPORT","ACCOUNT_ISSUE","OTHER"]},"assignedToId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"tags":{"type":"array","items":{"type":"string"}},"resolutionNotes":{"type":"string"},"customerSatisfactionRating":{"type":"number","minimum":1,"maximum":5},"customerFeedback":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/support.getStats":{"get":{"operationId":"support_getStats","summary":"Get Stats","tags":["support"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/support.deleteTicket":{"post":{"operationId":"support_deleteTicket","summary":"Delete Ticket","tags":["support"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/support.bulkUpdateTickets":{"post":{"operationId":"support_bulkUpdateTickets","summary":"Bulk Update Tickets","tags":["support"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"ticketIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"action":{"type":"string","enum":["ASSIGN","UPDATE_STATUS","UPDATE_PRIORITY","DELETE"]},"assignedToId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"status":{"type":"string","enum":["OPEN","IN_PROGRESS","WAITING_FOR_CUSTOMER","WAITING_FOR_AGENT","RESOLVED","CLOSED","CANCELED"]},"priority":{"type":"string","enum":["LOW","NORMAL","HIGH","URGENT"]}},"required":["ticketIds","action"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/onboarding.saveBusinessInfoDraft":{"post":{"operationId":"onboarding_saveBusinessInfoDraft","summary":"Save Business Info Draft","tags":["onboarding"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"companyName":{"type":"string","minLength":1},"companyLogo":{"type":"string"},"legalName":{"type":"string","minLength":1},"legalForm":{"type":"string","minLength":1},"siret":{"type":"string"},"vatNumber":{"type":"string"},"registrationNumber":{"type":"string"},"industry":{"type":"string","minLength":1},"businessModel":{"minItems":1,"type":"array","items":{"type":"string"}},"companySize":{"type":"string","minLength":1},"productsServices":{"type":"array","items":{"type":"string"}},"address":{"type":"object","properties":{"street":{"type":"string","minLength":1},"city":{"type":"string","minLength":1},"zipCode":{"type":"string","minLength":1},"country":{"type":"string","minLength":1},"region":{"type":"string"}},"required":["street","city","zipCode","country"],"additionalProperties":false},"contactInfo":{"type":"object","properties":{"phone":{"type":"string","minLength":1},"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"website":{"type":"string","format":"uri"}},"required":["phone","email"],"additionalProperties":false},"timezone":{"type":"string"},"operatingHours":{"type":"object","properties":{"monday":{"type":"object","properties":{"open":{"type":"string"},"close":{"type":"string"}},"required":["open","close"],"additionalProperties":false},"tuesday":{"type":"object","properties":{"open":{"type":"string"},"close":{"type":"string"}},"required":["open","close"],"additionalProperties":false},"wednesday":{"type":"object","properties":{"open":{"type":"string"},"close":{"type":"string"}},"required":["open","close"],"additionalProperties":false},"thursday":{"type":"object","properties":{"open":{"type":"string"},"close":{"type":"string"}},"required":["open","close"],"additionalProperties":false},"friday":{"type":"object","properties":{"open":{"type":"string"},"close":{"type":"string"}},"required":["open","close"],"additionalProperties":false},"saturday":{"type":"object","properties":{"open":{"type":"string"},"close":{"type":"string"}},"required":["open","close"],"additionalProperties":false},"sunday":{"type":"object","properties":{"open":{"type":"string"},"close":{"type":"string"}},"required":["open","close"],"additionalProperties":false}},"additionalProperties":false},"documents":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"},"uploadedAt":{}},"required":["type","name","url","uploadedAt"],"additionalProperties":false}},"complianceRequirements":{"type":"array","items":{"type":"string"}},"legalPolicies":{"type":"object","properties":{"termsOfService":{"default":false,"type":"boolean"},"privacyPolicy":{"default":false,"type":"boolean"},"gdprCompliance":{"default":false,"type":"boolean"}},"required":["termsOfService","privacyPolicy","gdprCompliance"],"additionalProperties":false}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/onboarding.submitBusinessInfo":{"post":{"operationId":"onboarding_submitBusinessInfo","summary":"Submit Business Info","tags":["onboarding"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"companyName":{"type":"string","minLength":1},"companyLogo":{"type":"string"},"legalName":{"type":"string","minLength":1},"legalForm":{"type":"string","minLength":1},"siret":{"type":"string"},"vatNumber":{"type":"string"},"registrationNumber":{"type":"string"},"industry":{"type":"string","minLength":1},"businessModel":{"minItems":1,"type":"array","items":{"type":"string"}},"companySize":{"type":"string","minLength":1},"productsServices":{"type":"array","items":{"type":"string"}},"address":{"type":"object","properties":{"street":{"type":"string","minLength":1},"city":{"type":"string","minLength":1},"zipCode":{"type":"string","minLength":1},"country":{"type":"string","minLength":1},"region":{"type":"string"}},"required":["street","city","zipCode","country"],"additionalProperties":false},"contactInfo":{"type":"object","properties":{"phone":{"type":"string","minLength":1},"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"website":{"type":"string","format":"uri"}},"required":["phone","email"],"additionalProperties":false},"timezone":{"type":"string"},"operatingHours":{"type":"object","properties":{"monday":{"type":"object","properties":{"open":{"type":"string"},"close":{"type":"string"}},"required":["open","close"],"additionalProperties":false},"tuesday":{"type":"object","properties":{"open":{"type":"string"},"close":{"type":"string"}},"required":["open","close"],"additionalProperties":false},"wednesday":{"type":"object","properties":{"open":{"type":"string"},"close":{"type":"string"}},"required":["open","close"],"additionalProperties":false},"thursday":{"type":"object","properties":{"open":{"type":"string"},"close":{"type":"string"}},"required":["open","close"],"additionalProperties":false},"friday":{"type":"object","properties":{"open":{"type":"string"},"close":{"type":"string"}},"required":["open","close"],"additionalProperties":false},"saturday":{"type":"object","properties":{"open":{"type":"string"},"close":{"type":"string"}},"required":["open","close"],"additionalProperties":false},"sunday":{"type":"object","properties":{"open":{"type":"string"},"close":{"type":"string"}},"required":["open","close"],"additionalProperties":false}},"additionalProperties":false},"documents":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"},"uploadedAt":{}},"required":["type","name","url","uploadedAt"],"additionalProperties":false}},"complianceRequirements":{"type":"array","items":{"type":"string"}},"legalPolicies":{"type":"object","properties":{"termsOfService":{"default":false,"type":"boolean"},"privacyPolicy":{"default":false,"type":"boolean"},"gdprCompliance":{"default":false,"type":"boolean"}},"required":["termsOfService","privacyPolicy","gdprCompliance"],"additionalProperties":false}},"required":["companyName","legalName","legalForm","industry","businessModel","companySize","address","contactInfo"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/onboarding.sendTeamInvitations":{"post":{"operationId":"onboarding_sendTeamInvitations","summary":"Send Team Invitations","tags":["onboarding"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"teamMembers":{"minItems":1,"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"firstName":{"type":"string","minLength":1},"lastName":{"type":"string","minLength":1},"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"role":{"type":"string","minLength":1},"department":{"type":"string"},"phone":{"type":"string"},"title":{"type":"string"},"permissions":{"type":"array","items":{"type":"string"}}},"required":["id","firstName","lastName","email","role"],"additionalProperties":false}},"invitationSettings":{"type":"object","properties":{"template":{"default":"standard","type":"string"},"customMessage":{"type":"string"},"expirationDays":{"default":7,"type":"number"},"requirePasswordReset":{"default":true,"type":"boolean"},"sendWelcomeEmail":{"default":true,"type":"boolean"},"notifyAdmin":{"default":true,"type":"boolean"}},"required":["template","expirationDays","requirePasswordReset","sendWelcomeEmail","notifyAdmin"],"additionalProperties":false},"bulkInvitation":{"type":"object","properties":{"enabled":{"default":false,"type":"boolean"},"csvData":{"type":"string"}},"required":["enabled"],"additionalProperties":false}},"required":["teamMembers","invitationSettings"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/onboarding.createTenant":{"post":{"operationId":"onboarding_createTenant","summary":"Create Tenant","tags":["onboarding"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"companyName":{"type":"string","minLength":1},"industry":{"type":"string","minLength":1},"companySize":{"type":"string","minLength":1},"adminUser":{"type":"object","properties":{"firstName":{"type":"string","minLength":1},"lastName":{"type":"string","minLength":1},"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"password":{"type":"string","minLength":8},"phone":{"type":"string"},"title":{"type":"string"}},"required":["firstName","lastName","email","password"],"additionalProperties":false},"domainSetup":{"type":"object","properties":{"subdomain":{"type":"string","minLength":1},"customDomain":{"type":"string"},"domainType":{"default":"subdomain","type":"string","enum":["subdomain","custom"]}},"required":["subdomain","domainType"],"additionalProperties":false},"planSelection":{"type":"object","properties":{"planId":{"type":"string","minLength":1},"billingCycle":{"default":"monthly","type":"string","enum":["monthly","yearly"]},"addons":{"type":"array","items":{"type":"string"}}},"required":["planId","billingCycle"],"additionalProperties":false}},"required":["companyName","industry","companySize","adminUser","domainSetup","planSelection"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/onboarding.getOnboardingStatus":{"get":{"operationId":"onboarding_getOnboardingStatus","summary":"Get Onboarding Status","tags":["onboarding"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"tenant":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"code":{"type":"string"},"status":{"type":"string"}}},"steps":{"type":"object","properties":{"tenantCreation":{"type":"object","properties":{"completed":{"type":"boolean"},"completedAt":{}}},"businessInfo":{"type":"object","properties":{"completed":{"type":"boolean"},"completedAt":{},"draft":{}}},"siteSetup":{"type":"object","properties":{"completed":{"type":"boolean"},"completedAt":{"type":"string"}}},"domainSetup":{"type":"object","properties":{"completed":{"type":"boolean"},"completedAt":{"type":"string"}}},"teamInvitation":{"type":"object","properties":{"completed":{"type":"boolean"},"completedAt":{}}},"packageSelection":{"type":"object","properties":{"completed":{"type":"boolean"},"completedAt":{}}},"billingSetup":{"type":"object","properties":{"completed":{"type":"boolean"},"completedAt":{}}}}},"stats":{"type":"object","properties":{"totalUsers":{"type":"integer"},"totalSites":{"type":"integer"},"totalDomains":{"type":"integer"}}}}}}}}}}},"/api/trpc/onboarding.getClientReadiness":{"get":{"operationId":"onboarding_getClientReadiness","summary":"Get Client Readiness","tags":["onboarding"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","minLength":1}},"required":["tenantId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/onboarding.checkSubdomainAvailability":{"post":{"operationId":"onboarding_checkSubdomainAvailability","summary":"Check Subdomain Availability","tags":["onboarding"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"subdomain":{"type":"string","minLength":1}},"required":["subdomain"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/onboarding.saveInitialSetup":{"post":{"operationId":"onboarding_saveInitialSetup","summary":"Save Initial Setup","tags":["onboarding"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"settings":{"type":"object","properties":{"general":{"type":"object","properties":{"organizationName":{"type":"string"},"description":{"type":"string"},"website":{"type":"string"},"workingDays":{"type":"array","items":{"type":"string"}},"workingHours":{"type":"object","properties":{"start":{"type":"string"},"end":{"type":"string"}},"additionalProperties":false}},"additionalProperties":false},"localization":{"type":"object","properties":{"language":{"type":"string"},"timezone":{"type":"string"},"dateFormat":{"type":"string"},"currency":{"type":"string"},"numberFormat":{"type":"string"}},"additionalProperties":false},"notifications":{"type":"object","properties":{"email":{"type":"object","properties":{"enabled":{"type":"boolean"},"frequency":{"type":"string"},"types":{"type":"array","items":{"type":"string"}}},"additionalProperties":false},"browser":{"type":"object","properties":{"enabled":{"type":"boolean"},"types":{"type":"array","items":{"type":"string"}}},"additionalProperties":false},"mobile":{"type":"object","properties":{"enabled":{"type":"boolean"},"types":{"type":"array","items":{"type":"string"}}},"additionalProperties":false}},"additionalProperties":false},"workflow":{"type":"object","properties":{"approvalRequired":{"type":"boolean"},"autoAssignment":{"type":"boolean"},"escalationTime":{"type":"number"},"reminderFrequency":{"type":"string"}},"additionalProperties":false}},"additionalProperties":false}},"required":["tenantId","siteId","settings"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/onboarding.getCompletionStats":{"get":{"operationId":"onboarding_getCompletionStats","summary":"Get Completion Stats","tags":["onboarding"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"stepsCompleted":{"type":"integer"},"totalSteps":{"type":"integer"},"timeSpent":{"type":"integer"},"dataImported":{"type":"integer"}}}}}}}}},"/api/trpc/onboarding.createTenantForCurrentUser":{"post":{"operationId":"onboarding_createTenantForCurrentUser","summary":"Create Tenant For Current User","tags":["onboarding"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"companyName":{"type":"string","minLength":1},"subdomain":{"type":"string","minLength":1,"pattern":"^[a-z0-9-]+$"},"industry":{"type":"string"},"companySize":{"type":"string"},"useCase":{"type":"string"},"features":{"type":"array","items":{"type":"string"}},"siteModule":{"type":"string"},"plan":{"type":"string"},"billingCycle":{"type":"string"}},"required":["companyName","subdomain"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/onboarding.configureOnboardingSite":{"post":{"operationId":"onboarding_configureOnboardingSite","summary":"Configure Onboarding Site","tags":["onboarding"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteModule":{"type":"string","minLength":1},"siteName":{"type":"string"},"siteSlug":{"type":"string"},"description":{"type":"string"},"domainType":{"type":"string"},"sslEnabled":{"type":"boolean"},"sslProvider":{"type":"string"}},"required":["tenantId","siteModule"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/onboarding.getOnboardingSite":{"get":{"operationId":"onboarding_getOnboardingSite","summary":"Get Onboarding Site","tags":["onboarding"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["tenantId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/onboarding.checkOnboardingComplete":{"get":{"operationId":"onboarding_checkOnboardingComplete","summary":"Check Onboarding Complete","tags":["onboarding"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"completed":{"type":"boolean"},"hasTenant":{"type":"boolean"},"tenant":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"code":{"type":"string"},"status":{"type":"string"}}},"siteId":{"type":"string"},"steps":{"type":"object","properties":{"tenantCreation":{"type":"object","properties":{"completed":{"type":"boolean"},"completedAt":{}}},"businessInfo":{"type":"object","properties":{"completed":{"type":"boolean"},"completedAt":{},"draft":{}}},"siteSetup":{"type":"object","properties":{"completed":{"type":"boolean"},"completedAt":{"type":"string"}}},"domainSetup":{"type":"object","properties":{"completed":{"type":"boolean"},"completedAt":{"type":"string"}}},"teamInvitation":{"type":"object","properties":{"completed":{"type":"boolean"},"completedAt":{}}},"packageSelection":{"type":"object","properties":{"completed":{"type":"boolean"},"completedAt":{}}},"billingSetup":{"type":"object","properties":{"completed":{"type":"boolean"},"completedAt":{}}}}}}}}}}}}},"/api/trpc/onboarding.getStoredBusinessInfo":{"get":{"operationId":"onboarding_getStoredBusinessInfo","summary":"Get Stored Business Info","tags":["onboarding"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/onboarding.completeBusinessInfo":{"post":{"operationId":"onboarding_completeBusinessInfo","summary":"Complete Business Info","tags":["onboarding"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/site.getHosts":{"get":{"operationId":"site_getHosts","summary":"Get Hosts","tags":["site"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"2125254.inklura.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"compare-robots.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fr":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/fr/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"www.compare-robots.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fr":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/fr/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"compare-robots.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fr":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/fr/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"www.compare-robots.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fr":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/fr/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"qr.cocktail-express.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/invoice/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/kiosk/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"amisdelaferme.stock.activ-click.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/producteurs":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/a-propos":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/livraison":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/contact":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/boutique":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/boutique/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/produit/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/panier":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/checkout":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/checkout/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/commande/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/order/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/compte":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/compte/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/suivi-commande":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"amisdelaferme.activ-click.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/producteurs":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/a-propos":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/livraison":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/contact":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/boutique":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/boutique/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/produit/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/panier":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/checkout":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/checkout/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/commande/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/order/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/compte":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/compte/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/suivi-commande":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"staging.amisdelaferme.activ-click.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/producteurs":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/a-propos":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/livraison":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/contact":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/boutique":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/boutique/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/produit/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/panier":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/checkout":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/checkout/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/commande/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/order/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/compte":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/compte/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/suivi-commande":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"shop.activ-click.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"activ-print.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"activ-communication.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"eco-studio.inklura.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/boutique":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/boutique/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/produit/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/panier":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/checkout":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/checkout/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/commande/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/order/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/compte":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/compte/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/suivi-commande":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"immobilier.activ-communication.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/immobilier/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"pos.activ-push.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"crm.activ-push.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"immo.activ-push.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/immobilier/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"activ-click.bext.dev":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"pos.activ-click.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"kitchen.activ-click.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/kitchen":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/kitchen/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"manager.activ-click.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"crm.activ-click.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"dashboard.activ-push.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"annonces.activ-push.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/annonces/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"fournisseur.activ-push.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"support.activ-push.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"annuaire.activ-click.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/operateur":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/operateur/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/operateur/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/operateur/list":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/operateur/list/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/preview/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/directory":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/og":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"support.activ-click.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"infra.wd29.net":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"inklura.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"www.inklura.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"guide.activ-push.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/guide/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"hr.activ-push.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/hr/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"calendar.activ-push.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/calendar/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"dufournaud.bext.dev":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"regalterre.bext.dev":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"rapports.activ-push.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/rapports/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"ad.activ-push.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/ad-portal/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"embed.activ-push.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/embed/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"shop.activ-push.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"kitchen.activ-push.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/kitchen":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/kitchen/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"annuaire.activ-push.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/operateur":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/operateur/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/operateur/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/operateur/list":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/operateur/list/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/preview/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/directory":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/og":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"cms.activ-push.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"manage.activ-push.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"mail.activ-push.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/mail/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"invoice.activ-push.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/factures":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/factures/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/devis":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/devis/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/clients":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/clients/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/reglages":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/reglages/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"app.1clic.pro":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"ma-vie-numerique.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/evenements":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/evenements/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/annonces":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/annonces/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/locations":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/locations/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/immobilier":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/immobilier/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/commerces":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/commerces/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/lieux":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/lieux/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/actualites":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/actualites/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/associations":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/association":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/association/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mon-compte":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mon-compte/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"ma-vie-numerique.local":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/evenements":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/evenements/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/annonces":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/annonces/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/locations":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/locations/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/immobilier":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/immobilier/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/commerces":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/commerces/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/lieux":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/lieux/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/actualites":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/actualites/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/associations":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/association":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/association/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mon-compte":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mon-compte/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"ma-vie-numerique.test":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/evenements":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/evenements/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/annonces":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/annonces/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/locations":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/locations/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/immobilier":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/immobilier/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/commerces":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/commerces/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/lieux":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/lieux/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/actualites":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/actualites/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/associations":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/association":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/association/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mon-compte":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mon-compte/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"totololo.inklura.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"mesures.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"boutique.mesures.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"mesures.biz":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"boutique.mesures.biz":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"annuaire-2025.revue-alimentation-animale.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"referencecarrelage.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"boutique.referencecarrelage.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"revue-alimentation-animale.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"boutique.revue-alimentation-animale.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"guide.pdm-seafoodmag.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"pdm-seafoodmag.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"boutique.pdm-seafoodmag.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"lejournaldesfluides.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"boutique.lejournaldesfluides.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"lejournalduvrac.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/invoice/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/kiosk/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"boutique.lejournalduvrac.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/invoice/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/kiosk/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"electroniques.biz":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"boutique.electroniques.biz":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"tolerie-mag.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"boutique.tolerie-mag.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"vitisbio.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"boutique.vitisbio.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"culturesmarines.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"boutique.culturesmarines.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"lembarque.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"boutique.lembarque.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"lembarque.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"boutique.lembarque.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"lembarque.net":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"boutique.lembarque.net":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"l-embarque.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"boutique.l-embarque.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"l-embarque.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"boutique.l-embarque.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"l-embarqué.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"boutique.l-embarqué.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"lembarqué.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"boutique.lembarqué.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"m.emb.wd29.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"boutique.m.emb.wd29.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"salon-soins-nature.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"boutique.salon-soins-nature.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"edt-magazine.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"boutique.edt-magazine.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"edt-magazine.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"boutique.edt-magazine.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"ria.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"boutique.ria.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"riafoodtech.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"boutique.riafoodtech.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"riafoodtech.eu":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"boutique.riafoodtech.eu":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"riafoodtech.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"boutique.riafoodtech.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"latribunedesboulangerspatissiers.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"boutique.latribunedesboulangerspatissiers.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"annuaire.pdm-seafoodmag.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/operateur":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/operateur/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/operateur/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/operateur/list":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/operateur/list/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/preview/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/directory":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/og":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"boutique.annuaire.pdm-seafoodmag.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/operateur":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/operateur/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/operateur/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/operateur/list":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/operateur/list/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/preview/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/directory":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/og":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"avivre.wd29.net":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/rss":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/atom":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/json-feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/news-sitemap":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/sitemap-index":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"dev.avivre.wd29.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/rss":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/atom":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/json-feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/news-sitemap":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/sitemap-index":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"avivre.wd29.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/rss":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/atom":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/json-feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/news-sitemap":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/sitemap-index":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"avivremagazine.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/rss":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/atom":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/json-feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/news-sitemap":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/sitemap-index":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"boutique.avivremagazine.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/rss":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/atom":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/json-feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/news-sitemap":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/sitemap-index":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"boutique.avivre.wd29.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/rss":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/atom":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/json-feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/news-sitemap":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/sitemap-index":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"staging.avivre.wd29.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/rss":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/atom":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/json-feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/news-sitemap":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/sitemap-index":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"avivre.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/rss":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/atom":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/json-feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/news-sitemap":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/sitemap-index":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"prod.avivre.wd29.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/rss":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/atom":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/json-feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/news-sitemap":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/sitemap-index":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"avivre.prod.wd29.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/rss":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/atom":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/json-feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/news-sitemap":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/sitemap-index":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"avivre.staging.wd29.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/rss":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/atom":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/json-feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/news-sitemap":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/sitemap-index":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"www.avivremagazine.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/rss":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/atom":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/json-feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/news-sitemap":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/sitemap-index":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"staging.infra.wd29.net":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/rss":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/atom":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/json-feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/news-sitemap":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/sitemap-index":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"www.boutiqueavivre.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/rss":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/atom":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/json-feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/news-sitemap":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/sitemap-index":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"boutiqueavivre.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/rss":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/atom":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/json-feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/news-sitemap":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/sitemap-index":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"biofil.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"biofil.manage.wd29.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"boutique.biofil.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"exemagazine.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/rss":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/atom":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/json-feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/news-sitemap":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/sitemap-index":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"www.exemagazine.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/rss":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/atom":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/json-feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/news-sitemap":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/sitemap-index":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"exemagazine.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/rss":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/atom":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/json-feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/news-sitemap":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/sitemap-index":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"www.exemagazine.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/rss":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/atom":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/json-feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/news-sitemap":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/sitemap-index":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"exe.prod.wd29.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/rss":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/atom":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/json-feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/news-sitemap":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/sitemap-index":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"exe.staging.wd29.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/rss":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/atom":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/json-feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/news-sitemap":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/sitemap-index":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"ecologikmagazine.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/rss":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/atom":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/json-feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/news-sitemap":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/sitemap-index":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"www.ecologikmagazine.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/rss":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/atom":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/json-feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/news-sitemap":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/sitemap-index":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"ecologikmagazine.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/rss":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/atom":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/json-feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/news-sitemap":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/sitemap-index":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"www.ecologikmagazine.com":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/rss":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/atom":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/json-feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/news-sitemap":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/sitemap-index":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"ecologik.prod.wd29.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/rss":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/atom":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/json-feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/news-sitemap":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/sitemap-index":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"ecologik.staging.wd29.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/rss":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/atom":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/json-feed":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/news-sitemap":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/sitemap-index":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"stervat.bext.dev":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"morlaix.bdd.agence-bergame.bzh":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/operateur":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/operateur/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/operateur/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/operateur/list":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/operateur/list/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/preview/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/directory":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/og":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"amf.bdd.agence-bergame.bzh":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/operateur":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/operateur/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/operateur/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/operateur/list":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/operateur/list/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/preview/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/directory":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/og":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"dashboard.inklura.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/[...notfound]":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"webdesign29-demo.inklura.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"rytry.inklura.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"sdq.inklura.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"test-entreprise-de-fou.inklura.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"fsd.inklura.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"ffds.inklura.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/faq":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/portail":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/portail/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/factures":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/factures/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/devis":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/devis/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/avoirs":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/avoirs/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/clients":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/clients/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/reglages":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/reglages/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/relances":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/relances/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/recurrentes":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/recurrentes/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/paiements":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/paiements/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/modeles":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/modeles/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"dqdqss.inklura.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"dfssfd.inklura.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/unsubscribe":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/meal-manager/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/crm/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/fournisseur/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}},"fghfg.inklura.fr":{"type":"object","properties":{"host":{"type":"string"},"module":{"type":"string"},"mapping":{"type":"object","properties":{"/":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/login":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/faq":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/portail":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/portail/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/dashboard":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/dashboard/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/factures":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/factures/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/devis":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/devis/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/avoirs":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/avoirs/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/clients":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/clients/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/reglages":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/reglages/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/relances":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/relances/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/recurrentes":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/recurrentes/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/paiements":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/paiements/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/modeles":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/modeles/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/support/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/super-admin":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/super-admin/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/register":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/inscription":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-oublie":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/mot-de-passe-reinitialisation":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/debug/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/config":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/config/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/manage":{"type":"object","properties":{"module":{"type":"string"},"path":{"type":"string"},"matchedKey":{"type":"string"}}},"/manage/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}},"/pos/*":{"type":"object","properties":{"module":{"type":"string"},"path":{},"matchedKey":{"type":"string"}}}}},"tenantId":{"type":"string"},"siteId":{"type":"string"}}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/site.getSitesByTenant":{"get":{"operationId":"site_getSitesByTenant","summary":"Get Sites By Tenant","tags":["site"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"domain":{"type":"string"},"module":{"type":"string"},"tenantId":{"type":"string"}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/site.list":{"get":{"operationId":"site_list","summary":"List","tags":["site"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"Membership":{"type":"array","items":{}},"status":{"type":"string"}}}}}}}}}},"/api/trpc/site.getCurrentContext":{"get":{"operationId":"site_getCurrentContext","summary":"Get Current Context","tags":["site"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","default":{},"type":"object","properties":{"sessionTenant":{"type":"string"},"sessionSite":{"type":"string"},"userRole":{"type":"string"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/site.getCurrentSite":{"get":{"operationId":"site_getCurrentSite","summary":"Get Current Site","tags":["site"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"status":{"type":"string"},"tenant":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"}}}}}}}}}}},"/api/trpc/site.getConfig":{"get":{"operationId":"site_getConfig","summary":"Get Config","tags":["site"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"siteConfig":{"type":"object","properties":{"site":{"type":"object","properties":{"name":{"type":"string"},"app":{"type":"string"},"brand":{"type":"string"},"tagLine":{"type":"string"},"altTagLine":{"type":"string"},"title":{"type":"string"},"description":{"type":"string"},"keywords":{"type":"string"},"logo":{"type":"string"},"mainPhone":{"type":"string"},"mainEmail":{"type":"string"},"modulesExcluded":{"type":"array","items":{}},"version":{"type":"string"},"environment":{"type":"string"},"maintenanceMode":{},"debugMode":{}}},"appearance":{"type":"object","properties":{"theme":{"type":"string"},"borderRadius":{"type":"string"},"fontFamily":{"type":"string"},"themes":{"type":"object","properties":{"light":{"type":"object","properties":{}},"dark":{"type":"object","properties":{}}}},"sidebarType":{"type":"string"},"sidebarCollapsible":{"type":"string"}}},"localization":{"type":"object","properties":{"defaultLanguage":{"type":"string"},"defaultCurrency":{"type":"string"},"timezone":{"type":"string"},"dateFormat":{"type":"string"},"timeFormat":{"type":"string"}}},"headers":{"type":"string"},"host":{"type":"string"}}}}}}}}}}},"/api/trpc/site.getSites":{"get":{"operationId":"site_getSites","summary":"Get Sites","tags":["site"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"deleted":{"type":"boolean"},"updatedAt":{"type":"string"},"createdAt":{"type":"string"},"status":{"type":"string"},"name":{"type":"string"},"slug":{"type":"string"},"description":{"type":"string"},"data":{"type":"object","properties":{"module":{"type":"string"}}},"configuratorSlug":{},"userId":{},"tenantId":{"type":"string"},"tenant":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"code":{"type":"string"},"data":{},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"userId":{"type":"string"},"status":{"type":"string"},"deleted":{"type":"boolean"},"siteDomainId":{},"description":{},"settings":{},"metadata":{"type":"object","properties":{"billing":{"type":"object","properties":{"plan":{},"billingCycle":{}}},"businessInfo":{"type":"object","properties":{"features":{"type":"array","items":{}},"industry":{"type":"string"},"subdomain":{"type":"string"},"companyName":{"type":"string"},"companySize":{"type":"string"}}},"onboardingCompleted":{"type":"object","properties":{"completedAt":{"type":"string"},"tenantCreation":{"type":"boolean"}}}}}}},"domains":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"siteId":{"type":"string"},"deleted":{"type":"boolean"},"status":{"type":"string"},"name":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"userId":{"type":"string"},"tenantId":{"type":"string"},"plolSiteId":{},"plolAliasId":{},"plolSyncStatus":{"type":"string"},"plolSyncError":{}}}}}}},"total":{"type":"integer"},"page":{"type":"integer"},"size":{"type":"integer"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":0,"type":"number","minimum":0},"size":{"default":10,"type":"number","minimum":1,"maximum":1000},"search":{"type":"string"},"sort":{"type":"string"},"tenantId":{"type":"string"},"filters":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"object","properties":{"value":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{"type":"null"}]},"operator":{"default":"equals","type":"string","enum":["equals","contains","gt","lt","gte","lte","in","notIn"]}},"required":["value","operator"],"additionalProperties":false}},"advancedFilters":{"default":[],"type":"array","items":{"type":"object","properties":{"field":{"type":"string"},"values":{"type":"array","items":{"type":"string"}},"operator":{"type":"string","enum":["equals","contains","in","between","gt","lt","gte","lte"]}},"required":["field","values","operator"],"additionalProperties":false}},"advancedSorts":{"default":[],"type":"array","items":{"type":"object","properties":{"field":{"type":"string"},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"],"additionalProperties":false}},"include":{"type":"object","properties":{"tenant":{"anyOf":[{"type":"boolean"},{"type":"object","properties":{"select":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"boolean"}}},"additionalProperties":false}]},"domains":{"type":"boolean"},"users":{"type":"boolean"}},"additionalProperties":false}},"required":["page","size","advancedFilters","advancedSorts"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/site.getSiteById":{"get":{"operationId":"site_getSiteById","summary":"Get Site By Id","tags":["site"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","anyOf":[{"type":"string"},{"type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}]}},"required":["json"]}}}}}},"/api/trpc/site.createSite":{"post":{"operationId":"site_createSite","summary":"Create Site","tags":["site"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"slug":{"type":"string"},"description":{"type":"string"},"data":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"tenantId":{"type":"string"},"status":{"default":"PENDING","type":"string","enum":["ACTIVE","INACTIVE","PENDING"]}},"required":["name","tenantId","status"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/site.updateSite":{"post":{"operationId":"site_updateSite","summary":"Update Site","tags":["site"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"slug":{"type":"string"},"description":{"type":"string"},"status":{"default":"PENDING","type":"string","enum":["ACTIVE","INACTIVE","PENDING"]},"data":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"null"},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{}]}},"tenantId":{"type":"string"},"id":{"type":"string"},"teamIds":{"type":"array","items":{"type":"string"}}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/site.deleteSite":{"post":{"operationId":"site_deleteSite","summary":"Delete Site","tags":["site"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/site.restoreSite":{"post":{"operationId":"site_restoreSite","summary":"Restore Site","tags":["site"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/site.updateSiteModules":{"post":{"operationId":"site_updateSiteModules","summary":"Update Site Modules","tags":["site"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"modules":{"type":"object","properties":{"module":{"type":"string"},"routingConfig":{}},"required":["module","routingConfig"],"additionalProperties":false}},"required":["id","modules"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/site.assignUserToSite":{"post":{"operationId":"site_assignUserToSite","summary":"Assign User To Site","tags":["site"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"siteId":{"type":"string"},"userId":{"type":"string"}},"required":["siteId","userId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/site.removeUserFromSite":{"post":{"operationId":"site_removeUserFromSite","summary":"Remove User From Site","tags":["site"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"siteId":{"type":"string"},"userId":{"type":"string"}},"required":["siteId","userId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/site.getSiteMetadata":{"get":{"operationId":"site_getSiteMetadata","summary":"Get Site Metadata","tags":["site"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"siteId":{"type":"string"},"host":{"type":"string"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/site.getSiteMetadataByHost":{"get":{"operationId":"site_getSiteMetadataByHost","summary":"Get Site Metadata By Host","tags":["site"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"host":{"type":"string"},"app":{"type":"string"}},"required":["host"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/site.getSwitchableSites":{"get":{"operationId":"site_getSwitchableSites","summary":"Get Switchable Sites","tags":["site"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"hostname":{"type":"string"},"domains":{"type":"array","items":{"type":"string"}},"module":{"type":"string"},"tenantId":{"type":"string"}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/site.getPrimaryDomain":{"get":{"operationId":"site_getPrimaryDomain","summary":"Get Primary Domain","tags":["site"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"string"}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"siteId":{"type":"string"}},"required":["siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/slider.getSliders":{"get":{"operationId":"slider_getSliders","summary":"Get Sliders","tags":["slider"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"siteId":{"type":"string"},"isActive":{"type":"boolean"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/slider.getSlider":{"get":{"operationId":"slider_getSlider","summary":"Get Slider","tags":["slider"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/slider.createSlider":{"post":{"operationId":"slider_createSlider","summary":"Create Slider","tags":["slider"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"title":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"backgroundImage":{"type":"string"},"projectImage":{"anyOf":[{"type":"string"},{"type":"null"}]},"author":{"anyOf":[{"type":"string"},{"type":"null"}]},"textColor":{"anyOf":[{"type":"string"},{"type":"null"}]},"bgColor":{"anyOf":[{"type":"string"},{"type":"null"}]},"link":{"anyOf":[{"type":"string"},{"type":"null"}]},"linkTarget":{"anyOf":[{"type":"string"},{"type":"null"}]},"linkedEntityType":{"anyOf":[{"type":"string"},{"type":"null"}]},"linkedEntityId":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]},"badgeLabel":{"anyOf":[{"type":"string"},{"type":"null"}]},"badgeText":{"anyOf":[{"type":"string"},{"type":"null"}]},"badgeLink":{"anyOf":[{"type":"string"},{"type":"null"}]},"isActive":{"default":true,"type":"boolean"},"showMagazineCard":{"type":"boolean"},"siteId":{"type":"string"}},"required":["title","backgroundImage","isActive","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/slider.updateSlider":{"post":{"operationId":"slider_updateSlider","summary":"Update Slider","tags":["slider"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"title":{"type":"string"},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"backgroundImage":{"type":"string"},"projectImage":{"anyOf":[{"type":"string"},{"type":"null"}]},"author":{"anyOf":[{"type":"string"},{"type":"null"}]},"textColor":{"anyOf":[{"type":"string"},{"type":"null"}]},"bgColor":{"anyOf":[{"type":"string"},{"type":"null"}]},"link":{"anyOf":[{"type":"string"},{"type":"null"}]},"linkTarget":{"anyOf":[{"type":"string"},{"type":"null"}]},"linkedEntityType":{"anyOf":[{"type":"string"},{"type":"null"}]},"linkedEntityId":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]},"badgeLabel":{"anyOf":[{"type":"string"},{"type":"null"}]},"badgeText":{"anyOf":[{"type":"string"},{"type":"null"}]},"badgeLink":{"anyOf":[{"type":"string"},{"type":"null"}]},"isActive":{"type":"boolean"},"showMagazineCard":{"type":"boolean"},"sortOrder":{"type":"number"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/slider.deleteSlider":{"post":{"operationId":"slider_deleteSlider","summary":"Delete Slider","tags":["slider"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/slider.reorderSliders":{"post":{"operationId":"slider_reorderSliders","summary":"Reorder Sliders","tags":["slider"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"sliders":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"sortOrder":{"type":"number"}},"required":["id","sortOrder"],"additionalProperties":false}},"siteId":{"type":"string"}},"required":["sliders","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/slider.getActiveSliders":{"get":{"operationId":"slider_getActiveSliders","summary":"Get Active Sliders","tags":["slider"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/slider.getMagazineCardOverlay":{"get":{"operationId":"slider_getMagazineCardOverlay","summary":"Get Magazine Card Overlay","tags":["slider"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/slider.setMagazineCardConfig":{"post":{"operationId":"slider_setMagazineCardConfig","summary":"Set Magazine Card Config","tags":["slider"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"config":{"type":"object","properties":{"mode":{"default":"linked","type":"string","enum":["linked","manual"]},"linkedEditionId":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]},"overrides":{"default":{},"type":"object","properties":{"coverImageUrl":{"anyOf":[{"type":"string"},{"type":"null"}]},"title":{"anyOf":[{"type":"string"},{"type":"null"}]},"issueNumber":{"anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"issueDate":{"anyOf":[{"type":"string"},{"type":"null"}]},"description":{"anyOf":[{"type":"string"},{"type":"null"}]},"buyLabel":{"anyOf":[{"type":"string"},{"type":"null"}]},"readLabel":{"anyOf":[{"type":"string"},{"type":"null"}]},"buyUrl":{"anyOf":[{"type":"string"},{"type":"null"}]},"readUrl":{"anyOf":[{"type":"string"},{"type":"null"}]}},"additionalProperties":false}},"required":["mode","overrides"],"additionalProperties":false}},"required":["siteId","config"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stockActions.getAll":{"get":{"operationId":"stockActions_getAll","summary":"Get All","tags":["stockActions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0},"actionType":{"type":"string","enum":["DECREMENT","INCREMENT","ADJUSTMENT","RESERVATION","RELEASE","TRANSFER","DAMAGED","EXPIRED","LOST","FOUND"]},"source":{"type":"string","enum":["MANUAL","PRESTASHOP_SYNC","ORDER_CREATION","ORDER_UPDATE","INVENTORY_ADJUSTMENT","SUPPLIER_DELIVERY","SYSTEM","API","OPENING_BALANCE"]},"status":{"type":"string","enum":["PENDING","PROCESSING","COMPLETED","FAILED","CANCELLED","PARTIAL","VALIDATED","REJECTED"]},"productId":{"type":"string"},"dateFrom":{"anyOf":[{},{"type":"null"}]},"dateTo":{"anyOf":[{},{"type":"null"}]},"search":{"anyOf":[{"type":"string"},{"type":"null"}]},"sort":{"type":"string"},"filters":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"object","properties":{"value":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{"type":"null"}]},"operator":{"default":"equals","type":"string","enum":["equals","contains","gt","lt","gte","lte","in","notIn"]}},"required":["value","operator"],"additionalProperties":false}},"enrichReferences":{"type":"boolean"}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stockActions.getById":{"get":{"operationId":"stockActions_getById","summary":"Get By Id","tags":["stockActions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stockActions.delete":{"post":{"operationId":"stockActions_delete","summary":"Delete","tags":["stockActions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stockActions.deleteWithOptionalStockEffect":{"post":{"operationId":"stockActions_deleteWithOptionalStockEffect","summary":"Delete With Optional Stock Effect","tags":["stockActions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"affectStock":{"default":false,"type":"boolean"}},"required":["id","affectStock"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stockActions.deleteLedgerMovement":{"post":{"operationId":"stockActions_deleteLedgerMovement","summary":"Delete Ledger Movement","tags":["stockActions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stockActions.previewLedgerReconciliation":{"get":{"operationId":"stockActions_previewLedgerReconciliation","summary":"Preview Ledger Reconciliation","tags":["stockActions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/stockActions.applyLedgerReconciliation":{"post":{"operationId":"stockActions_applyLedgerReconciliation","summary":"Apply Ledger Reconciliation","tags":["stockActions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"productIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stockActions.getStats":{"get":{"operationId":"stockActions_getStats","summary":"Get Stats","tags":["stockActions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"dateFrom":{},"dateTo":{}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stockActions.getStockLedger":{"get":{"operationId":"stockActions_getStockLedger","summary":"Get Stock Ledger","tags":["stockActions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"productId":{"type":"string"},"productVariationId":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]},"dateFrom":{"anyOf":[{},{"type":"null"}]},"dateTo":{"anyOf":[{},{"type":"null"}]},"dateMode":{"default":"created","type":"string","enum":["created","business"]},"sourceFilter":{"type":"array","items":{"type":"string","enum":["MANUAL","PRESTASHOP_SYNC","ORDER_CREATION","ORDER_UPDATE","INVENTORY_ADJUSTMENT","SUPPLIER_DELIVERY","SYSTEM","API","OPENING_BALANCE"]}},"statusFilter":{"type":"array","items":{"type":"string","enum":["PENDING","PROCESSING","COMPLETED","FAILED","CANCELLED","PARTIAL","VALIDATED","REJECTED"]}},"page":{"default":1,"type":"number","minimum":1},"limit":{"default":50,"type":"number","minimum":1,"maximum":100}},"required":["productId","dateMode","page","limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stockActions.getStockSummary":{"get":{"operationId":"stockActions_getStockSummary","summary":"Get Stock Summary","tags":["stockActions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"productId":{"type":"string"}},"required":["productId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stockActions.getProductStockOverview":{"get":{"operationId":"stockActions_getProductStockOverview","summary":"Get Product Stock Overview","tags":["stockActions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"search":{"type":"string"},"productId":{"type":"string"},"page":{"default":0,"type":"number","minimum":0},"pageSize":{"default":20,"type":"number","minimum":1,"maximum":1000},"dateFrom":{"anyOf":[{},{"type":"null"}]},"dateTo":{"anyOf":[{},{"type":"null"}]},"categoryId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"vendorId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"criticalOnly":{"default":false,"type":"boolean"},"healthFilter":{"default":[],"type":"array","items":{"type":"string","enum":["rupture","critical","low","healthy"]}},"divergenceOnly":{"default":false,"type":"boolean"},"mappedOnly":{"default":false,"type":"boolean"},"includeUntracked":{"default":false,"type":"boolean"},"includeLowStock":{"default":true,"type":"boolean"},"sortBy":{"default":"lastMovement","type":"string","enum":["lastMovement","name","stock","stockProjete"]}},"required":["page","pageSize","criticalOnly","healthFilter","divergenceOnly","mappedOnly","includeUntracked","includeLowStock","sortBy"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stockActions.getPendingForProduct":{"get":{"operationId":"stockActions_getPendingForProduct","summary":"Get Pending For Product","tags":["stockActions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"productId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"actionType":{"type":"string","enum":["DECREMENT","INCREMENT","ADJUSTMENT","RESERVATION","RELEASE","TRANSFER","DAMAGED","EXPIRED","LOST","FOUND"]},"dateFrom":{"anyOf":[{},{"type":"null"}]},"dateTo":{"anyOf":[{},{"type":"null"}]}},"required":["productId","actionType"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stockActions.getCompletedForProduct":{"get":{"operationId":"stockActions_getCompletedForProduct","summary":"Get Completed For Product","tags":["stockActions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"productId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"actionType":{"type":"string","enum":["DECREMENT","INCREMENT","ADJUSTMENT","RESERVATION","RELEASE","TRANSFER","DAMAGED","EXPIRED","LOST","FOUND"]},"dateFrom":{"anyOf":[{},{"type":"null"}]},"dateTo":{"anyOf":[{},{"type":"null"}]}},"required":["productId","actionType"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stockActions.confirmStockAction":{"post":{"operationId":"stockActions_confirmStockAction","summary":"Confirm Stock Action","tags":["stockActions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"stockActionId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"adjustedQuantity":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991}},"required":["stockActionId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/stockActions.createManualStockMovement":{"post":{"operationId":"stockActions_createManualStockMovement","summary":"Create Manual Stock Movement","tags":["stockActions"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"productId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"direction":{"type":"string","enum":["INCREMENT","DECREMENT"]},"quantity":{"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991},"reason":{"type":"string","minLength":1,"maxLength":255},"notes":{"type":"string","maxLength":1000},"movementDate":{}},"required":["productId","direction","quantity","reason"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/campaignPerformance.getPerformanceReport":{"get":{"operationId":"campaignPerformance_getPerformanceReport","summary":"Get Performance Report","tags":["campaignPerformance"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"campaignIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"segmentIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"dateFrom":{},"dateTo":{},"metrics":{"type":"array","items":{"type":"string","enum":["sent","delivered","opened","clicked","bounced","unsubscribed","complained","revenue","conversions"]}},"groupBy":{"type":"string","enum":["day","week","month","campaign","segment"]},"includeComparison":{"default":false,"type":"boolean"},"comparisonPeriod":{"type":"string","enum":["previous_period","previous_year","custom"]},"comparisonDateFrom":{},"comparisonDateTo":{}},"required":["includeComparison"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/campaignPerformance.compareCampaigns":{"get":{"operationId":"campaignPerformance_compareCampaigns","summary":"Compare Campaigns","tags":["campaignPerformance"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"campaignIds":{"minItems":2,"maxItems":10,"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"dateFrom":{},"dateTo":{},"metrics":{"type":"array","items":{"type":"string","enum":["open_rate","click_rate","bounce_rate","unsubscribe_rate","delivery_rate","engagement_rate","conversion_rate"]}}},"required":["campaignIds"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/campaignPerformance.getPerformanceTrends":{"get":{"operationId":"campaignPerformance_getPerformanceTrends","summary":"Get Performance Trends","tags":["campaignPerformance"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"campaignId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"period":{"default":"30d","type":"string","enum":["7d","30d","90d","1y"]},"metric":{"default":"open_rate","type":"string","enum":["open_rate","click_rate","bounce_rate","unsubscribe_rate"]}},"required":["period","metric"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/campaignPerformance.exportReport":{"post":{"operationId":"campaignPerformance_exportReport","summary":"Export Report","tags":["campaignPerformance"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"campaignIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"dateFrom":{},"dateTo":{},"format":{"default":"csv","type":"string","enum":["csv","excel","pdf"]},"includeCharts":{"default":false,"type":"boolean"},"includeDetails":{"default":true,"type":"boolean"}},"required":["format","includeCharts","includeDetails"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/campaignPerformance.getPerformanceAlerts":{"get":{"operationId":"campaignPerformance_getPerformanceAlerts","summary":"Get Performance Alerts","tags":["campaignPerformance"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"campaignId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"alertType":{"type":"string","enum":["low_open_rate","high_bounce_rate","low_delivery_rate","high_unsubscribe_rate"]},"isActive":{"type":"boolean"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emailAnalytics.getDashboardMetrics":{"get":{"operationId":"emailAnalytics_getDashboardMetrics","summary":"Get Dashboard Metrics","tags":["emailAnalytics"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"period":{"default":"30d","type":"string","enum":["today","yesterday","7d","30d","90d","1y","custom"]},"startDate":{},"endDate":{},"campaignId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"emailAddress":{"type":"string"},"eventType":{"default":"all","type":"string","enum":["sent","open","click","bounce","unsubscribe","all"]},"includeComparison":{"default":true,"type":"boolean"}},"required":["period","eventType","includeComparison"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emailAnalytics.getCampaignAnalytics":{"get":{"operationId":"emailAnalytics_getCampaignAnalytics","summary":"Get Campaign Analytics","tags":["emailAnalytics"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"campaignId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"includeTimeSeries":{"default":true,"type":"boolean"},"timeSeriesInterval":{"default":"hour","type":"string","enum":["hour","day","week","month"]}},"required":["campaignId","includeTimeSeries","timeSeriesInterval"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emailAnalytics.getCampaignRevenue":{"get":{"operationId":"emailAnalytics_getCampaignRevenue","summary":"Get Campaign Revenue","tags":["emailAnalytics"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"campaignId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"period":{"default":"1y","type":"string","enum":["today","yesterday","7d","30d","90d","1y","custom"]},"startDate":{},"endDate":{}},"required":["campaignId","period"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emailAnalytics.getTopCampaigns":{"get":{"operationId":"emailAnalytics_getTopCampaigns","summary":"Get Top Campaigns","tags":["emailAnalytics"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"campaignIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"limit":{"default":10,"type":"number","minimum":1,"maximum":100},"sortBy":{"default":"openRate","type":"string","enum":["openRate","clickRate","bounceRate","totalEmails"]},"sortOrder":{"default":"desc","type":"string","enum":["asc","desc"]},"period":{"default":"30d","type":"string","enum":["today","yesterday","7d","30d","90d","1y","custom"]},"startDate":{},"endDate":{}},"required":["limit","sortBy","sortOrder","period"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emailAnalytics.getEngagementTrends":{"get":{"operationId":"emailAnalytics_getEngagementTrends","summary":"Get Engagement Trends","tags":["emailAnalytics"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"period":{"default":"30d","type":"string","enum":["today","yesterday","7d","30d","90d","1y","custom"]},"startDate":{},"endDate":{},"campaignId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"emailAddress":{"type":"string"},"eventType":{"default":"all","type":"string","enum":["sent","open","click","bounce","unsubscribe","all"]},"includeComparison":{"default":true,"type":"boolean"},"granularity":{"default":"day","type":"string","enum":["hour","day","week","month"]}},"required":["period","eventType","includeComparison","granularity"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emailAnalytics.getProviderPerformance":{"get":{"operationId":"emailAnalytics_getProviderPerformance","summary":"Get Provider Performance","tags":["emailAnalytics"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"period":{"default":"30d","type":"string","enum":["today","yesterday","7d","30d","90d","1y","custom"]},"startDate":{},"endDate":{},"campaignId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"emailAddress":{"type":"string"},"eventType":{"default":"all","type":"string","enum":["sent","open","click","bounce","unsubscribe","all"]},"includeComparison":{"default":true,"type":"boolean"}},"required":["period","eventType","includeComparison"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emailAnalytics.exportAnalytics":{"post":{"operationId":"emailAnalytics_exportAnalytics","summary":"Export Analytics","tags":["emailAnalytics"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"format":{"default":"csv","type":"string","enum":["csv","xlsx","json"]},"includeSummary":{"default":true,"type":"boolean"},"includeTimeSeries":{"default":true,"type":"boolean"},"period":{"default":"30d","type":"string","enum":["today","yesterday","7d","30d","90d","1y","custom"]},"startDate":{},"endDate":{},"campaignId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"emailAddress":{"type":"string"},"eventType":{"default":"all","type":"string","enum":["sent","open","click","bounce","unsubscribe","all"]},"includeComparison":{"default":true,"type":"boolean"}},"required":["format","includeSummary","includeTimeSeries","period","eventType","includeComparison"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emailAnalytics.getUnsubscribeAnalytics":{"get":{"operationId":"emailAnalytics_getUnsubscribeAnalytics","summary":"Get Unsubscribe Analytics","tags":["emailAnalytics"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"period":{"default":"30d","type":"string","enum":["today","yesterday","7d","30d","90d","1y","custom"]},"startDate":{},"endDate":{},"campaignId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"emailAddress":{"type":"string"},"eventType":{"default":"all","type":"string","enum":["sent","open","click","bounce","unsubscribe","all"]},"includeComparison":{"default":true,"type":"boolean"}},"required":["period","eventType","includeComparison"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emailAnalytics.getUnsubscribeFunnel":{"get":{"operationId":"emailAnalytics_getUnsubscribeFunnel","summary":"Get Unsubscribe Funnel","tags":["emailAnalytics"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"period":{"default":"30d","type":"string","enum":["7d","30d","90d"]},"campaignId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["period"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/emailAnalytics.getHealthStatus":{"get":{"operationId":"emailAnalytics_getHealthStatus","summary":"Get Health Status","tags":["emailAnalytics"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/marketingCampaigns.getMarketingCampaigns":{"get":{"operationId":"marketingCampaigns_getMarketingCampaigns","summary":"Get Marketing Campaigns","tags":["marketingCampaigns"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"tenantId":{"type":"string"},"userId":{"type":"string"},"updatedAt":{"type":"string"},"createdAt":{"type":"string"},"name":{"type":"string"},"description":{"type":"string"},"startDate":{"type":"string"},"endDate":{"type":"string"},"status":{"type":"string"},"siteId":{"type":"string"},"_count":{"type":"object","properties":{"campaigns":{"type":"integer"},"emailSequences":{"type":"integer"}}}}}},"total":{"type":"integer"},"page":{"type":"integer"},"per_page":{"type":"integer"},"totalPages":{"type":"integer"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":0,"type":"number"},"per_page":{"default":10,"type":"number"},"search":{"default":"","type":"string"},"status":{"type":"string"}},"required":["page","per_page","search"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/marketingCampaigns.getMarketingCampaignById":{"get":{"operationId":"marketingCampaigns_getMarketingCampaignById","summary":"Get Marketing Campaign By Id","tags":["marketingCampaigns"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"tenantId":{"type":"string"},"userId":{"type":"string"},"updatedAt":{"type":"string"},"createdAt":{"type":"string"},"name":{"type":"string"},"description":{"type":"string"},"startDate":{"type":"string"},"endDate":{"type":"string"},"status":{"type":"string"},"siteId":{"type":"string"},"campaigns":{"type":"array","items":{}},"emailSequences":{"type":"array","items":{}},"_count":{"type":"object","properties":{"campaigns":{"type":"integer"},"emailSequences":{"type":"integer"}}}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/marketingCampaigns.createMarketingCampaign":{"post":{"operationId":"marketingCampaigns_createMarketingCampaign","summary":"Create Marketing Campaign","tags":["marketingCampaigns"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":3},"description":{"type":"string"},"startDate":{},"endDate":{}},"required":["name"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/marketingCampaigns.updateMarketingCampaign":{"post":{"operationId":"marketingCampaigns_updateMarketingCampaign","summary":"Update Marketing Campaign","tags":["marketingCampaigns"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"name":{"type":"string","minLength":3},"description":{"type":"string"},"startDate":{},"endDate":{},"status":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/marketingCampaigns.deleteMarketingCampaign":{"post":{"operationId":"marketingCampaigns_deleteMarketingCampaign","summary":"Delete Marketing Campaign","tags":["marketingCampaigns"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/marketingCampaigns.getAll":{"get":{"operationId":"marketingCampaigns_getAll","summary":"Get All","tags":["marketingCampaigns"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"tenantId":{"type":"string"},"userId":{"type":"string"},"updatedAt":{"type":"string"},"createdAt":{"type":"string"},"name":{"type":"string"},"description":{"type":"string"},"startDate":{"type":"string"},"endDate":{"type":"string"},"status":{"type":"string"},"siteId":{"type":"string"},"_count":{"type":"object","properties":{"campaigns":{"type":"integer"},"emailSequences":{"type":"integer"}}}}}},"nextCursor":{"type":"string"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":10,"type":"number","minimum":1,"maximum":100},"cursor":{"type":"string"},"search":{"type":"string"},"status":{"type":"string"}},"required":["limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/marketingCampaigns.duplicate":{"post":{"operationId":"marketingCampaigns_duplicate","summary":"Duplicate","tags":["marketingCampaigns"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/marketingCampaigns.delete":{"post":{"operationId":"marketingCampaigns_delete","summary":"Delete","tags":["marketingCampaigns"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/segments.getSegments":{"get":{"operationId":"segments_getSegments","summary":"Get Segments","tags":["segments"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{}},"total":{"type":"integer"},"page":{"type":"integer"},"per_page":{"type":"integer"},"totalPages":{"type":"integer"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":0,"type":"number"},"per_page":{"default":10,"type":"number"},"search":{"default":"","type":"string"}},"required":["page","per_page","search"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/segments.getSegmentById":{"get":{"operationId":"segments_getSegmentById","summary":"Get Segment By Id","tags":["segments"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/segments.createSegment":{"post":{"operationId":"segments_createSegment","summary":"Create Segment","tags":["segments"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":3},"description":{"type":"string"},"label":{"type":"string"},"type":{"default":"default","type":"string"},"public":{"default":false,"type":"boolean"},"filters":{"default":[],"type":"array","items":{"type":"object","properties":{"field":{"type":"string"},"operator":{"type":"string","enum":["eq","neq","contains","startsWith","endsWith","gt","gte","lt","lte","in","notIn"]},"value":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{"type":"null"}]}},"required":["field","operator","value"],"additionalProperties":false}}},"required":["name","type","public","filters"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/segments.updateSegment":{"post":{"operationId":"segments_updateSegment","summary":"Update Segment","tags":["segments"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":3},"description":{"type":"string"},"label":{"type":"string"},"type":{"default":"default","type":"string"},"public":{"default":false,"type":"boolean"},"filters":{"default":[],"type":"array","items":{"type":"object","properties":{"field":{"type":"string"},"operator":{"type":"string","enum":["eq","neq","contains","startsWith","endsWith","gt","gte","lt","lte","in","notIn"]},"value":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{"type":"null"}]}},"required":["field","operator","value"],"additionalProperties":false}},"id":{"type":"string"}},"required":["name","type","public","filters","id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/segments.deleteSegment":{"post":{"operationId":"segments_deleteSegment","summary":"Delete Segment","tags":["segments"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/segments.getSegmentContacts":{"get":{"operationId":"segments_getSegmentContacts","summary":"Get Segment Contacts","tags":["segments"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"},"page":{"default":0,"type":"number"},"per_page":{"default":10,"type":"number"}},"required":["id","page","per_page"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/segments.aiBuildRules":{"post":{"operationId":"segments_aiBuildRules","summary":"Ai Build Rules","tags":["segments"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"prompt":{"type":"string","minLength":1}},"required":["prompt"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/segments.countByFilters":{"get":{"operationId":"segments_countByFilters","summary":"Count By Filters","tags":["segments"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"count":{"type":"integer"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"filters":{"default":[],"maxItems":50,"type":"array","items":{"type":"object","properties":{"field":{"type":"string"},"operator":{"type":"string"},"value":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"number"}},{"type":"null"}]}},"required":["field","operator"],"additionalProperties":false}}},"required":["filters"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/chat.health":{"get":{"operationId":"chat_health","summary":"Health","tags":["chat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/chat.createConversation":{"post":{"operationId":"chat_createConversation","summary":"Create Conversation","tags":["chat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"title":{"type":"string"},"initialMessage":{"type":"string","minLength":1},"priority":{"default":"NORMAL","type":"string","enum":["LOW","NORMAL","HIGH","URGENT"]},"category":{"type":"string"},"tags":{"default":[],"type":"array","items":{"type":"string"}}},"required":["initialMessage","priority","tags"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/chat.getConversations":{"get":{"operationId":"chat_getConversations","summary":"Get Conversations","tags":["chat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"status":{"type":"string","enum":["ACTIVE","WAITING","CLOSED","ARCHIVED"]},"limit":{"default":20,"type":"number","minimum":1,"maximum":50},"offset":{"default":0,"type":"number","minimum":0}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/chat.getConversation":{"get":{"operationId":"chat_getConversation","summary":"Get Conversation","tags":["chat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/chat.getMessages":{"get":{"operationId":"chat_getMessages","summary":"Get Messages","tags":["chat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"conversationId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"before":{}},"required":["conversationId","limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/chat.sendMessage":{"post":{"operationId":"chat_sendMessage","summary":"Send Message","tags":["chat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"conversationId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"content":{"type":"string","minLength":1},"messageType":{"default":"TEXT","type":"string","enum":["TEXT","IMAGE","FILE","SYSTEM"]},"attachments":{"default":[],"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"url":{"type":"string"},"type":{"type":"string"},"size":{"type":"number"}},"required":["name","url","type"],"additionalProperties":false}}},"required":["conversationId","content","messageType","attachments"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/chat.updateConversation":{"post":{"operationId":"chat_updateConversation","summary":"Update Conversation","tags":["chat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"title":{"type":"string"},"status":{"type":"string","enum":["ACTIVE","WAITING","CLOSED","ARCHIVED"]},"priority":{"type":"string","enum":["LOW","NORMAL","HIGH","URGENT"]},"assignedToId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"tags":{"type":"array","items":{"type":"string"}}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/chat.setTyping":{"post":{"operationId":"chat_setTyping","summary":"Set Typing","tags":["chat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"conversationId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"isTyping":{"type":"boolean"}},"required":["conversationId","isTyping"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/chat.getOnlineAgents":{"get":{"operationId":"chat_getOnlineAgents","summary":"Get Online Agents","tags":["chat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["tenantId","siteId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/chat.getTypingIndicators":{"get":{"operationId":"chat_getTypingIndicators","summary":"Get Typing Indicators","tags":["chat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"conversationId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["conversationId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/chat.getAllConversations":{"get":{"operationId":"chat_getAllConversations","summary":"Get All Conversations","tags":["chat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"status":{"type":"string","enum":["ACTIVE","WAITING","CLOSED","ARCHIVED"]},"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0},"assignedToId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/chat.assignConversation":{"post":{"operationId":"chat_assignConversation","summary":"Assign Conversation","tags":["chat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"conversationId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"assignedToId":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]}},"required":["conversationId","assignedToId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/chat.closeConversation":{"post":{"operationId":"chat_closeConversation","summary":"Close Conversation","tags":["chat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"conversationId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"reason":{"type":"string"}},"required":["conversationId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/chat.getChatStatistics":{"get":{"operationId":"chat_getChatStatistics","summary":"Get Chat Statistics","tags":["chat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"siteId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"dateFrom":{},"dateTo":{}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/chat.convertToTicket":{"post":{"operationId":"chat_convertToTicket","summary":"Convert To Ticket","tags":["chat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"conversationId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"title":{"type":"string","minLength":1},"description":{"type":"string"},"priority":{"type":"string","enum":["LOW","NORMAL","HIGH","URGENT"]},"type":{"type":"string","enum":["QUESTION","BUG_REPORT","FEATURE_REQUEST","ORDER_ISSUE","PAYMENT_ISSUE","TECHNICAL_SUPPORT","ACCOUNT_ISSUE","OTHER"]},"orderId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["conversationId","title"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/chat.getAgentConversations":{"get":{"operationId":"chat_getAgentConversations","summary":"Get Agent Conversations","tags":["chat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"status":{"type":"string","enum":["ACTIVE","WAITING","CLOSED","ARCHIVED"]},"assignedToMe":{"default":false,"type":"boolean"},"limit":{"default":20,"type":"number","minimum":1,"maximum":50},"offset":{"default":0,"type":"number","minimum":0}},"required":["assignedToMe","limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/chat.sendAgentMessage":{"post":{"operationId":"chat_sendAgentMessage","summary":"Send Agent Message","tags":["chat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"conversationId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"content":{"type":"string","minLength":1},"messageType":{"default":"TEXT","type":"string","enum":["TEXT","IMAGE","FILE","SYSTEM"]},"attachments":{"default":[],"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"url":{"type":"string"},"type":{"type":"string"},"size":{"type":"number"}},"required":["name","url","type"],"additionalProperties":false}}},"required":["conversationId","content","messageType","attachments"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/chat.getChatStats":{"get":{"operationId":"chat_getChatStats","summary":"Get Chat Stats","tags":["chat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/chat.getStreamAccess":{"get":{"operationId":"chat_getStreamAccess","summary":"Get Stream Access","tags":["chat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"conversationId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["conversationId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/liveChat.health":{"get":{"operationId":"liveChat_health","summary":"Health","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/liveChat.createChannel":{"post":{"operationId":"liveChat_createChannel","summary":"Create Channel","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1,"maxLength":100},"description":{"type":"string","maxLength":500},"channelType":{"default":"PUBLIC","type":"string","enum":["PUBLIC","PRIVATE","RESTRICTED","ARCHIVED"]},"scope":{"default":"SITE","type":"string","enum":["SITE","TENANT"]},"allowFileUpload":{"default":true,"type":"boolean"},"topic":{"type":"string","maxLength":200},"tags":{"default":[],"type":"array","items":{"type":"string"}},"memberIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}}},"required":["name","channelType","scope","allowFileUpload","tags"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/liveChat.getChannels":{"get":{"operationId":"liveChat_getChannels","summary":"Get Channels","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"scope":{"type":"string","enum":["SITE","TENANT"]},"channelType":{"type":"string","enum":["PUBLIC","PRIVATE","RESTRICTED","ARCHIVED"]},"includeArchived":{"default":false,"type":"boolean"},"search":{"type":"string"},"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0}},"required":["includeArchived","limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/liveChat.getChannel":{"get":{"operationId":"liveChat_getChannel","summary":"Get Channel","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"channelId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["channelId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/liveChat.updateChannel":{"post":{"operationId":"liveChat_updateChannel","summary":"Update Channel","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"channelId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"name":{"type":"string","minLength":1,"maxLength":100},"description":{"type":"string","maxLength":500},"topic":{"type":"string","maxLength":200},"tags":{"type":"array","items":{"type":"string"}},"allowFileUpload":{"type":"boolean"},"isArchived":{"type":"boolean"}},"required":["channelId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/liveChat.joinChannel":{"post":{"operationId":"liveChat_joinChannel","summary":"Join Channel","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"channelId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["channelId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/liveChat.leaveChannel":{"post":{"operationId":"liveChat_leaveChannel","summary":"Leave Channel","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"channelId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["channelId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/liveChat.addMember":{"post":{"operationId":"liveChat_addMember","summary":"Add Member","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"channelId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"userId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"role":{"default":"member","type":"string","enum":["owner","admin","moderator","member"]}},"required":["channelId","userId","role"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/liveChat.removeMember":{"post":{"operationId":"liveChat_removeMember","summary":"Remove Member","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"channelId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"userId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["channelId","userId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/liveChat.getChannelMembers":{"get":{"operationId":"liveChat_getChannelMembers","summary":"Get Channel Members","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"channelId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["channelId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/liveChat.sendMessage":{"post":{"operationId":"liveChat_sendMessage","summary":"Send Message","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"channelId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"content":{"type":"string","minLength":1,"maxLength":10000},"messageType":{"default":"TEXT","type":"string","enum":["TEXT","IMAGE","FILE","VOICE","VIDEO","SYSTEM","NOTIFICATION"]},"parentMessageId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"metadata":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}}},"required":["channelId","content","messageType"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/liveChat.getMessages":{"get":{"operationId":"liveChat_getMessages","summary":"Get Messages","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"channelId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"before":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"after":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"search":{"type":"string"}},"required":["channelId","limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/liveChat.getThreadReplies":{"get":{"operationId":"liveChat_getThreadReplies","summary":"Get Thread Replies","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"parentMessageId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"before":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["parentMessageId","limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/liveChat.editMessage":{"post":{"operationId":"liveChat_editMessage","summary":"Edit Message","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"messageId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"content":{"type":"string","minLength":1,"maxLength":10000}},"required":["messageId","content"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/liveChat.deleteMessage":{"post":{"operationId":"liveChat_deleteMessage","summary":"Delete Message","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"messageId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["messageId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/liveChat.searchMessages":{"get":{"operationId":"liveChat_searchMessages","summary":"Search Messages","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"query":{"type":"string","minLength":2},"channelId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0}},"required":["query","limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/liveChat.addReaction":{"post":{"operationId":"liveChat_addReaction","summary":"Add Reaction","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"messageId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"emoji":{"type":"string","minLength":1,"maxLength":50}},"required":["messageId","emoji"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/liveChat.removeReaction":{"post":{"operationId":"liveChat_removeReaction","summary":"Remove Reaction","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"messageId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"emoji":{"type":"string","minLength":1,"maxLength":50}},"required":["messageId","emoji"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/liveChat.pinMessage":{"post":{"operationId":"liveChat_pinMessage","summary":"Pin Message","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"channelId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"messageId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["channelId","messageId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/liveChat.unpinMessage":{"post":{"operationId":"liveChat_unpinMessage","summary":"Unpin Message","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"channelId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"messageId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["channelId","messageId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/liveChat.getPinnedMessages":{"get":{"operationId":"liveChat_getPinnedMessages","summary":"Get Pinned Messages","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"channelId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["channelId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/liveChat.updatePresence":{"post":{"operationId":"liveChat_updatePresence","summary":"Update Presence","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"status":{"type":"string","enum":["ONLINE","AWAY","BUSY","DO_NOT_DISTURB","OFFLINE"]},"customMessage":{"type":"string","maxLength":100}},"required":["status"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/liveChat.getChannelPresence":{"get":{"operationId":"liveChat_getChannelPresence","summary":"Get Channel Presence","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"channelId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["channelId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/liveChat.setTyping":{"post":{"operationId":"liveChat_setTyping","summary":"Set Typing","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"channelId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"isTyping":{"type":"boolean"}},"required":["channelId","isTyping"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/liveChat.getTypingUsers":{"get":{"operationId":"liveChat_getTypingUsers","summary":"Get Typing Users","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"channelId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["channelId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/liveChat.markAsRead":{"post":{"operationId":"liveChat_markAsRead","summary":"Mark As Read","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"channelId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"messageId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["channelId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/liveChat.getUnreadCounts":{"get":{"operationId":"liveChat_getUnreadCounts","summary":"Get Unread Counts","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"channelIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/liveChat.getOrCreateDirectConversation":{"post":{"operationId":"liveChat_getOrCreateDirectConversation","summary":"Get Or Create Direct Conversation","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"participantId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["participantId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/liveChat.getDirectConversations":{"get":{"operationId":"liveChat_getDirectConversations","summary":"Get Direct Conversations","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/liveChat.getNotificationPreferences":{"get":{"operationId":"liveChat_getNotificationPreferences","summary":"Get Notification Preferences","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/liveChat.updateNotificationPreferences":{"post":{"operationId":"liveChat_updateNotificationPreferences","summary":"Update Notification Preferences","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"enableWebNotifications":{"type":"boolean"},"enableEmailNotifications":{"type":"boolean"},"enablePushNotifications":{"type":"boolean"},"enableSoundNotifications":{"type":"boolean"},"notifyOnDirectMessage":{"type":"boolean"},"notifyOnChannelMessage":{"type":"boolean"},"notifyOnMention":{"type":"boolean"},"notifyOnKeywords":{"type":"array","items":{"type":"string"}},"quietHoursEnabled":{"type":"boolean"},"quietHoursStart":{"type":"string","pattern":"^\\d{2}:\\d{2}$"},"quietHoursEnd":{"type":"string","pattern":"^\\d{2}:\\d{2}$"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/liveChat.updateMemberSettings":{"post":{"operationId":"liveChat_updateMemberSettings","summary":"Update Member Settings","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"channelId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"isMuted":{"type":"boolean"},"isFavorite":{"type":"boolean"},"notifyOnMessage":{"type":"boolean"},"notifyOnMention":{"type":"boolean"}},"required":["channelId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/liveChat.getChatToken":{"get":{"operationId":"liveChat_getChatToken","summary":"Get Chat Token","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/liveChat.archiveChannel":{"post":{"operationId":"liveChat_archiveChannel","summary":"Archive Channel","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"channelId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["channelId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/liveChat.unarchiveChannel":{"post":{"operationId":"liveChat_unarchiveChannel","summary":"Unarchive Channel","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"channelId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["channelId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/liveChat.deleteChannel":{"post":{"operationId":"liveChat_deleteChannel","summary":"Delete Channel","tags":["liveChat"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"channelId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["channelId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/newsletter.listSubscribers":{"get":{"operationId":"newsletter_listSubscribers","summary":"List Subscribers","tags":["newsletter"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"firstName":{},"lastName":{},"name":{"type":"string"},"email":{"type":"string"},"marketingOptIn":{"type":"boolean"},"emailOptIn":{"type":"boolean"},"smsOptIn":{"type":"boolean"},"segment":{},"source":{},"subscribedAt":{"type":"string"},"lastActivity":{}}}},"total":{"type":"integer"},"page":{"type":"integer"},"limit":{"type":"integer"},"pages":{"type":"integer"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"page":{"default":0,"type":"number"},"limit":{"default":25,"type":"number"},"search":{"type":"string"},"subscribed":{"type":"boolean"},"sortBy":{"default":"createdAt","type":"string","enum":["createdAt","email","name"]},"sortOrder":{"default":"desc","type":"string","enum":["asc","desc"]}},"required":["page","limit","sortBy","sortOrder"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/newsletter.getSubscriber":{"get":{"operationId":"newsletter_getSubscriber","summary":"Get Subscriber","tags":["newsletter"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"firstName":{},"lastName":{},"name":{"type":"string"},"email":{"type":"string"},"phone":{},"marketingOptIn":{"type":"boolean"},"emailOptIn":{"type":"boolean"},"smsOptIn":{"type":"boolean"},"segment":{},"source":{},"createdAt":{"type":"string"},"lastActivity":{}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/newsletter.getStats":{"get":{"operationId":"newsletter_getStats","summary":"Get Stats","tags":["newsletter"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer"},"subscribed":{"type":"integer"},"unsubscribed":{"type":"integer"},"thisMonth":{"type":"integer"},"lastMonth":{"type":"integer"},"growthPercent":{"type":"integer"}}}}}}}}},"/api/trpc/newsletter.addSubscriber":{"post":{"operationId":"newsletter_addSubscriber","summary":"Add Subscriber","tags":["newsletter"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"email":{"type":"string"},"firstName":{"type":"string"},"lastName":{"type":"string"},"tags":{"type":"array","items":{"type":"string"}}},"required":["email"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/newsletter.updateSubscriber":{"post":{"operationId":"newsletter_updateSubscriber","summary":"Update Subscriber","tags":["newsletter"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"marketingOptIn":{"type":"boolean"},"emailOptIn":{"type":"boolean"},"smsOptIn":{"type":"boolean"},"firstName":{"type":"string"},"lastName":{"type":"string"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/newsletter.exportSubscribers":{"get":{"operationId":"newsletter_exportSubscribers","summary":"Export Subscribers","tags":["newsletter"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"string"},"format":{"type":"string"}}}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"format":{"default":"csv","type":"string","enum":["csv","json"]},"subscribedOnly":{"default":true,"type":"boolean"}},"required":["format","subscribedOnly"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/newsletter.subscribe":{"post":{"operationId":"newsletter_subscribe","summary":"Subscribe","tags":["newsletter"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"email":{"type":"string"},"firstName":{"type":"string"},"lastName":{"type":"string"},"tenantId":{"type":"string"},"siteId":{"type":"string"},"honeypot":{"type":"string"}},"required":["email"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/newsletter.unsubscribe":{"post":{"operationId":"newsletter_unsubscribe","summary":"Unsubscribe","tags":["newsletter"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"email":{"type":"string"},"token":{"type":"string"}},"required":["email"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/newsletter.bulkUpdateStatus":{"post":{"operationId":"newsletter_bulkUpdateStatus","summary":"Bulk Update Status","tags":["newsletter"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"ids":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"status":{"type":"string","enum":["subscribed","unsubscribed"]}},"required":["ids","status"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/newsletter.bulkDelete":{"post":{"operationId":"newsletter_bulkDelete","summary":"Bulk Delete","tags":["newsletter"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"ids":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}}},"required":["ids"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/newsletter.importSubscribers":{"post":{"operationId":"newsletter_importSubscribers","summary":"Import Subscribers","tags":["newsletter"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"subscribers":{"type":"array","items":{"type":"object","properties":{"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"firstName":{"type":"string"},"lastName":{"type":"string"},"phone":{"type":"string"}},"required":["email"],"additionalProperties":false}},"duplicateHandling":{"default":"update","type":"string","enum":["update","skip"]}},"required":["subscribers","duplicateHandling"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/newsletter.getGrowthData":{"get":{"operationId":"newsletter_getGrowthData","summary":"Get Growth Data","tags":["newsletter"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"days":{"default":90,"type":"number","minimum":7,"maximum":365}},"required":["days"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/newsletter.getSubscriptionStatus":{"get":{"operationId":"newsletter_getSubscriptionStatus","summary":"Get Subscription Status","tags":["newsletter"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"email":{"type":"string"}},"required":["email"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/newsletter.getSettings":{"get":{"operationId":"newsletter_getSettings","summary":"Get Settings","tags":["newsletter"],"responses":{"200":{"description":"Successful response — the `json` result (superjson-wrapped). Schema derived from a real response.","content":{"application/json":{"schema":{"type":"object","properties":{"doubleOptIn":{"type":"boolean"},"confirmationEmailTemplateId":{},"confirmationTokenExpiry":{"type":"integer"},"welcomeEmailEnabled":{"type":"boolean"},"welcomeEmailTemplateId":{},"welcomeEmailDelay":{"type":"integer"},"unsubscribeConfirmationEnabled":{"type":"boolean"},"unsubscribeConfirmationTemplateId":{},"adminNotificationEnabled":{"type":"boolean"},"adminNotificationEmail":{"type":"string"},"adminDigestEnabled":{"type":"boolean"},"adminDigestFrequency":{"type":"string"},"defaultFromName":{"type":"string"},"defaultFromEmail":{"type":"string"},"defaultReplyTo":{"type":"string"},"autoArchiveEnabled":{"type":"boolean"},"archiveVisibility":{"type":"string"},"brandColor":{"type":"string"},"headerLogoUrl":{"type":"string"},"footerText":{"type":"string"}}}}}}}}},"/api/trpc/newsletter.updateSettings":{"post":{"operationId":"newsletter_updateSettings","summary":"Update Settings","tags":["newsletter"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"doubleOptIn":{"default":false,"type":"boolean"},"confirmationEmailTemplateId":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]},"confirmationTokenExpiry":{"default":24,"type":"number","minimum":1,"maximum":168},"welcomeEmailEnabled":{"default":true,"type":"boolean"},"welcomeEmailTemplateId":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]},"welcomeEmailDelay":{"default":0,"type":"number","minimum":0,"maximum":10080},"unsubscribeConfirmationEnabled":{"default":true,"type":"boolean"},"unsubscribeConfirmationTemplateId":{"anyOf":[{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},{"type":"null"}]},"adminNotificationEnabled":{"default":false,"type":"boolean"},"adminNotificationEmail":{"anyOf":[{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},{"type":"string","const":""}]},"adminDigestEnabled":{"default":false,"type":"boolean"},"adminDigestFrequency":{"default":"daily","type":"string","enum":["daily","weekly"]},"defaultFromName":{"type":"string"},"defaultFromEmail":{"anyOf":[{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},{"type":"string","const":""}]},"defaultReplyTo":{"anyOf":[{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},{"type":"string","const":""}]},"autoArchiveEnabled":{"default":false,"type":"boolean"},"archiveVisibility":{"default":"private","type":"string","enum":["public","private"]},"brandColor":{"default":"#146BFF","type":"string"},"headerLogoUrl":{"anyOf":[{"type":"string","format":"uri"},{"type":"string","const":""}]},"footerText":{"type":"string"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/newsletter.getAvailableTemplates":{"get":{"operationId":"newsletter_getAvailableTemplates","summary":"Get Available Templates","tags":["newsletter"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"type":{"default":"all","type":"string","enum":["welcome","confirmation","unsubscribe","all"]}},"required":["type"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/newsletter.testWelcomeEmail":{"post":{"operationId":"newsletter_testWelcomeEmail","summary":"Test Welcome Email","tags":["newsletter"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"}},"required":["email"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/newsletter.testConfirmationEmail":{"post":{"operationId":"newsletter_testConfirmationEmail","summary":"Test Confirmation Email","tags":["newsletter"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"email":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"}},"required":["email"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/magazinePublications.list":{"get":{"operationId":"magazinePublications_list","summary":"List","tags":["magazinePublications"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"activeOnly":{"default":false,"type":"boolean"},"crossSite":{"default":true,"type":"boolean"}},"required":["activeOnly","crossSite"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/magazinePublications.get":{"get":{"operationId":"magazinePublications_get","summary":"Get","tags":["magazinePublications"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/magazinePublications.create":{"post":{"operationId":"magazinePublications_create","summary":"Create","tags":["magazinePublications"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"name":{"type":"string","minLength":1},"slug":{"type":"string","minLength":1},"code":{"type":"string","minLength":1},"description":{"type":"string"},"coverColor":{"type":"string"},"ftpSubdirectory":{"default":"","type":"string"},"volumeNumber":{"type":"number"},"isActive":{"default":true,"type":"boolean"},"sortOrder":{"default":0,"type":"number"}},"required":["name","slug","code","ftpSubdirectory","isActive","sortOrder"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/magazinePublications.update":{"post":{"operationId":"magazinePublications_update","summary":"Update","tags":["magazinePublications"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"data":{"type":"object","properties":{"name":{"type":"string","minLength":1},"slug":{"type":"string","minLength":1},"code":{"type":"string","minLength":1},"description":{"type":"string"},"coverColor":{"type":"string"},"ftpSubdirectory":{"default":"","type":"string"},"volumeNumber":{"type":"number"},"isActive":{"default":true,"type":"boolean"},"sortOrder":{"default":0,"type":"number"}},"additionalProperties":false}},"required":["id","data"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/magazinePublications.delete":{"post":{"operationId":"magazinePublications_delete","summary":"Delete","tags":["magazinePublications"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/magazinePublications.reorder":{"post":{"operationId":"magazinePublications_reorder","summary":"Reorder","tags":["magazinePublications"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"sortOrder":{"type":"number"}},"required":["id","sortOrder"],"additionalProperties":false}}},"required":["items"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/classifiedAds.create":{"post":{"operationId":"classifiedAds_create","summary":"Create","tags":["classifiedAds"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"title":{"type":"string","minLength":1,"maxLength":255},"description":{"type":"string","minLength":1,"maxLength":5000},"price":{"type":"number","minimum":0},"currency":{"type":"string","minLength":3,"maxLength":3},"adType":{"type":"string","enum":["SELL","BUY","RENT","SERVICE","JOB","HOUSING","VEHICLE","ELECTRONICS","FURNITURE","CLOTHING","BOOKS","SPORTS","PETS","OTHER"]},"categoryId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"location":{"type":"string","maxLength":255},"contactEmail":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"contactPhone":{"type":"string","maxLength":20},"contactPreference":{"default":"ALL","type":"string","enum":["EMAIL","PHONE","MESSAGE","ALL"]},"isNegotiable":{"default":false,"type":"boolean"},"condition":{"type":"string","enum":["NEW","LIKE_NEW","GOOD","FAIR","POOR"]},"tags":{"type":"array","items":{"type":"string"}},"customFields":{},"autoRenew":{"default":false,"type":"boolean"},"expiresAt":{}},"required":["title","description","adType","categoryId","contactPreference","isNegotiable","autoRenew"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/classifiedAds.getById":{"get":{"operationId":"classifiedAds_getById","summary":"Get By Id","tags":["classifiedAds"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/classifiedAds.update":{"post":{"operationId":"classifiedAds_update","summary":"Update","tags":["classifiedAds"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"title":{"type":"string","minLength":1,"maxLength":255},"description":{"type":"string","minLength":1,"maxLength":5000},"price":{"type":"number","minimum":0},"currency":{"type":"string","minLength":3,"maxLength":3},"adType":{"type":"string","enum":["SELL","BUY","RENT","SERVICE","JOB","HOUSING","VEHICLE","ELECTRONICS","FURNITURE","CLOTHING","BOOKS","SPORTS","PETS","OTHER"]},"categoryId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"location":{"type":"string","maxLength":255},"contactEmail":{"type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"contactPhone":{"type":"string","maxLength":20},"contactPreference":{"type":"string","enum":["EMAIL","PHONE","MESSAGE","ALL"]},"isNegotiable":{"type":"boolean"},"condition":{"type":"string","enum":["NEW","LIKE_NEW","GOOD","FAIR","POOR"]},"tags":{"type":"array","items":{"type":"string"}},"customFields":{},"autoRenew":{"type":"boolean"},"expiresAt":{}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/classifiedAds.delete":{"post":{"operationId":"classifiedAds_delete","summary":"Delete","tags":["classifiedAds"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/classifiedAds.publish":{"post":{"operationId":"classifiedAds_publish","summary":"Publish","tags":["classifiedAds"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"id":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["id"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/classifiedAds.search":{"get":{"operationId":"classifiedAds_search","summary":"Search","tags":["classifiedAds"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"query":{"type":"string"},"categoryId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"adType":{"type":"string","enum":["SELL","BUY","RENT","SERVICE","JOB","HOUSING","VEHICLE","ELECTRONICS","FURNITURE","CLOTHING","BOOKS","SPORTS","PETS","OTHER"]},"minPrice":{"type":"number","minimum":0},"maxPrice":{"type":"number","minimum":0},"location":{"type":"string"},"condition":{"type":"string","enum":["NEW","LIKE_NEW","GOOD","FAIR","POOR"]},"isNegotiable":{"type":"boolean"},"tags":{"type":"array","items":{"type":"string"}},"status":{"type":"string","enum":["DRAFT","PENDING_APPROVAL","ACTIVE","EXPIRED","SOLD","SUSPENDED","DELETED"]},"sortBy":{"default":"createdAt","type":"string","enum":["createdAt","price","title","views","favorites"]},"sortOrder":{"default":"desc","type":"string","enum":["asc","desc"]},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0}},"required":["sortBy","sortOrder","limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/classifiedAds.getUserAds":{"get":{"operationId":"classifiedAds_getUserAds","summary":"Get User Ads","tags":["classifiedAds"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"status":{"type":"string","enum":["DRAFT","PENDING_APPROVAL","ACTIVE","EXPIRED","SOLD","SUSPENDED","DELETED"]},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/classifiedAds.addMedia":{"post":{"operationId":"classifiedAds_addMedia","summary":"Add Media","tags":["classifiedAds"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"classifiedAdId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"mediaType":{"type":"string","enum":["IMAGE","VIDEO","DOCUMENT"]},"url":{"type":"string","format":"uri"},"filename":{"type":"string"},"mimeType":{"type":"string"},"size":{"type":"number"},"alt":{"type":"string"},"caption":{"type":"string"},"isPrimary":{"default":false,"type":"boolean"}},"required":["classifiedAdId","mediaType","url","isPrimary"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/classifiedAds.removeMedia":{"post":{"operationId":"classifiedAds_removeMedia","summary":"Remove Media","tags":["classifiedAds"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"mediaId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["mediaId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/classifiedAds.addToFavorites":{"post":{"operationId":"classifiedAds_addToFavorites","summary":"Add To Favorites","tags":["classifiedAds"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"classifiedAdId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["classifiedAdId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/classifiedAds.removeFromFavorites":{"post":{"operationId":"classifiedAds_removeFromFavorites","summary":"Remove From Favorites","tags":["classifiedAds"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"classifiedAdId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["classifiedAdId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/classifiedAds.getFavorites":{"get":{"operationId":"classifiedAds_getFavorites","summary":"Get Favorites","tags":["classifiedAds"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0}},"required":["limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/classifiedAds.sendMessage":{"post":{"operationId":"classifiedAds_sendMessage","summary":"Send Message","tags":["classifiedAds"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"classifiedAdId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"recipientId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"subject":{"type":"string","minLength":1,"maxLength":255},"message":{"type":"string","minLength":1,"maxLength":2000},"contactInfo":{"type":"string"}},"required":["classifiedAdId","recipientId","subject","message"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/classifiedAds.getMessages":{"get":{"operationId":"classifiedAds_getMessages","summary":"Get Messages","tags":["classifiedAds"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"classifiedAdId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0}},"required":["classifiedAdId","limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/classifiedAds.getUserMessages":{"get":{"operationId":"classifiedAds_getUserMessages","summary":"Get User Messages","tags":["classifiedAds"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0},"unreadOnly":{"default":false,"type":"boolean"}},"required":["limit","offset","unreadOnly"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/classifiedAds.getConversation":{"get":{"operationId":"classifiedAds_getConversation","summary":"Get Conversation","tags":["classifiedAds"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"classifiedAdId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"otherUserId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"limit":{"default":50,"type":"number","minimum":1,"maximum":100},"offset":{"default":0,"type":"number","minimum":0}},"required":["classifiedAdId","otherUserId","limit","offset"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/classifiedAds.markMessageAsRead":{"post":{"operationId":"classifiedAds_markMessageAsRead","summary":"Mark Message As Read","tags":["classifiedAds"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"messageId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"required":["messageId"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/classifiedAds.markAllMessagesAsRead":{"post":{"operationId":"classifiedAds_markAllMessagesAsRead","summary":"Mark All Messages As Read","tags":["classifiedAds"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"classifiedAdId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/classifiedAds.getMessageStats":{"get":{"operationId":"classifiedAds_getMessageStats","summary":"Get Message Stats","tags":["classifiedAds"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}}}},"/api/trpc/classifiedAds.addPromotion":{"post":{"operationId":"classifiedAds_addPromotion","summary":"Add Promotion","tags":["classifiedAds"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"classifiedAdId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"promotionType":{"type":"string","enum":["FEATURED","HIGHLIGHTED","TOP_POSITION","URGENT","PREMIUM"]},"startDate":{},"endDate":{},"price":{"type":"number","minimum":0},"currency":{"default":"EUR","type":"string","minLength":3,"maxLength":3}},"required":["classifiedAdId","promotionType","startDate","endDate","price","currency"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/classifiedAds.moderate":{"post":{"operationId":"classifiedAds_moderate","summary":"Moderate","tags":["classifiedAds"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"classifiedAdId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"},"action":{"type":"string","enum":["APPROVE","REJECT","SUSPEND","DELETE"]},"reason":{"type":"string"},"notes":{"type":"string"}},"required":["classifiedAdId","action"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/classifiedAds.getAnalytics":{"get":{"operationId":"classifiedAds_getAnalytics","summary":"Get Analytics","tags":["classifiedAds"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"startDate":{},"endDate":{},"classifiedAdId":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/classifiedAds.getPopularCategories":{"get":{"operationId":"classifiedAds_getPopularCategories","summary":"Get Popular Categories","tags":["classifiedAds"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"limit":{"default":10,"type":"number","minimum":1,"maximum":50}},"required":["limit"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/classifiedAds.getModerationStats":{"get":{"operationId":"classifiedAds_getModerationStats","summary":"Get Moderation Stats","tags":["classifiedAds"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string"},"siteId":{"type":"string"}},"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/classifiedAds.getModerationQueue":{"get":{"operationId":"classifiedAds_getModerationQueue","summary":"Get Moderation Queue","tags":["classifiedAds"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"tenantId":{"type":"string"},"siteId":{"type":"string"},"status":{"type":"string","enum":["ACTIVE","EXPIRED"]},"page":{"default":1,"type":"number","minimum":1},"limit":{"default":20,"type":"number","minimum":1,"maximum":100},"sortBy":{"default":"createdAt","type":"string","enum":["createdAt","updatedAt","title","price"]},"sortOrder":{"default":"desc","type":"string","enum":["asc","desc"]}},"required":["page","limit","sortBy","sortOrder"],"additionalProperties":false}},"required":["json"]}}}}}},"/api/trpc/classifiedAds.bulkModeration":{"post":{"operationId":"classifiedAds_bulkModeration","summary":"Bulk Moderation","tags":["classifiedAds"],"responses":{"200":{"description":"Successful response (superjson-wrapped as { result: { data: { json: … } } }).","content":{"application/json":{"schema":{}}}}},"requestBody":{"required":true,"description":"The `json` payload of the superjson envelope.","content":{"application/json":{"schema":{"type":"object","properties":{"json":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"adIds":{"type":"array","items":{"type":"string","format":"uuid","pattern":"^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"}},"action":{"type":"string","enum":["approve","reject","delete"]},"reason":{"type":"string"}},"required":["adIds","action"],"additionalProperties":false}},"required":["json"]}}}}}}}}