@epilot/journey-client 0.5.0 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2025 epilot GmbH
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -1 +1 @@
1
- (()=>{"use strict";var e={799:function(e,t,r){var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var i=n(r(871));t.default=i.default},871:e=>{e.exports=JSON.parse('{"openapi":"3.0.0","info":{"title":"Journey API","description":"API to configure journeys","version":"1.1.0"},"security":[{"EpilotAuth":[]}],"tags":[{"name":"Journeys","description":"Journey operations"},{"name":"Journeys V2","description":"Journey V2 operations"},{"name":"journey_schema","x-displayName":"Journey","description":"<SchemaDefinition schemaRef=\\"#/components/schemas/Journey\\" />\\n"}],"x-tagGroups":[{"name":"APIs","tags":["Journeys","Journeys V2"]},{"name":"Schemas","tags":["journey_schema"]}],"paths":{"/v1/journey/organization/{id}":{"get":{"operationId":"getJourneysByOrgId","summary":"getJourneysByOrgId","description":"Get all journeys by organization id","tags":["Journeys"],"parameters":[{"name":"id","in":"path","description":"Organization ID","required":true,"schema":{"type":"string","example":"123"}},{"name":"hydrate","in":"query","description":"Hydrate","required":false,"schema":{"type":"string","example":"true"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"$ref":"#/components/schemas/GetJourneysResponse"}}}}}}},"/v1/journey/configuration/{id}":{"get":{"operationId":"getJourney","summary":"getJourney","description":"Get journey by id. Private journeys requires valid private token to be passed","security":[{},{"EpilotAuth":[]}],"tags":["Journeys"],"parameters":[{"name":"id","in":"path","description":"Journey ID","required":true,"schema":{"type":"string","format":"uuid","example":"509cdffe-424f-457a-95c2-9708c304ce77"}},{"name":"source","in":"query","description":"What source ID. Journey or Entity ID","required":false,"schema":{"type":"string"}},{"name":"orgId","in":"query","description":"Organization ID","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Journey"}}}}}},"delete":{"operationId":"removeJourney","summary":"removeJourney","description":"Remove journey by id","tags":["Journeys"],"parameters":[{"name":"id","in":"path","description":"Journey ID","required":true,"schema":{"type":"string","format":"uuid","example":"509cdffe-424f-457a-95c2-9708c304ce77"}}],"responses":{"200":{"description":"Success","content":{}},"404":{"description":"Journey not found","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","example":"journey not found"}}}}}}}}},"/v1/journey/products/{id}":{"get":{"operationId":"getJourneyProducts","summary":"getJourneyProducts","description":"Get products available in the journey by id. requires public journey token to be passed.","security":[{"EpilotAuth":[]}],"tags":["Journeys"],"parameters":[{"name":"id","in":"path","description":"Journey ID","required":true,"schema":{"type":"string","format":"uuid","example":"509cdffe-424f-457a-95c2-9708c304ce77"}},{"name":"source","in":"query","description":"What source ID. Journey or Entity ID","required":false,"schema":{"type":"string"}},{"name":"postal_code","in":"query","description":"Zip Code for availibility","required":false,"schema":{"type":"string"}},{"name":"city","in":"query","description":"city for availibility","required":false,"schema":{"type":"string"}},{"name":"street","in":"query","description":"street name for availibility","required":false,"schema":{"type":"string"}},{"name":"street_number","in":"query","description":"street number for availibility","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"$ref":"#/components/schemas/JourneyProductsResponse"}}}}}}},"/v1/journey/configuration":{"post":{"operationId":"createJourney","summary":"createJourney","description":"Create a Journey","tags":["Journeys"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/JourneyCreationRequest"}}},"description":"Payload"},"parameters":[{"name":"skipAutomation","in":"query","description":"skip creating an Automation (it takes Yn format \\"true, yes, 1, y\\")","required":false,"schema":{"type":"string","format":"Yn","example":true}}],"responses":{"201":{"description":"Success","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Journey"}}}}}},"put":{"operationId":"updateJourney","summary":"updateJourney","description":"Update a Journey","tags":["Journeys"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/JourneyCreationRequest"}}},"description":"Payload"},"parameters":[],"responses":{"204":{"description":"Success","headers":{"X-Resource-Revisions":{"schema":{"type":"integer","minimum":0},"description":"Last revisions number of the updated resource"}}},"409":{"description":"The Journey has been modified since your last read, please refresh it and try again"}}},"patch":{"operationId":"patchUpdateJourney","summary":"patchUpdateJourney","description":"Update a Journey (partially / patch). Support for nested properties updates (e.g. \\"property[0].name\\").","tags":["Journeys"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PatchUpdateJourneyRequest"},"example":{"journeyId":"509cdffe-424f-457a-95c2-9708c304ce77","name":"New Journey Name","steps[0].uischema.elements[0].products":["123456","654321"]}}},"description":"Payload"},"parameters":[],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"$ref":"#/components/schemas/JourneyResponse"}}}},"404":{"description":"Journey or associated entity not found","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","example":"journey not found"}}}}}}}}},"/v1/journey/configuration/search":{"post":{"operationId":"searchJourneys","summary":"searchJourneys","description":"Search Journeys","tags":["Journeys"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SearchJourneysQueryRequest"}}},"description":"Payload"},"parameters":[],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SearchJourneysResponse"}}}}}}},"/v1/journey/document:generate":{"post":{"operationId":"generateDocument","summary":"generateDocument","description":"Builds document generated from a template with journey values.\\"\\n\\nSupported input document types:\\n- .docx\\n\\nSupported output document types:\\n- .pdf\\n- .docx but limited to only text based variables\\n\\nUses [Document API](https://gitlab.com/e-pilot/product/file-management/document-api) to generate the document.\\nUses [Template Variables API](https://docs.epilot.io/api/template-variables) to replace variables in the document.\\n","security":[{},{"EpilotAuth":[]}],"tags":["Journeys"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GenerateDocumentRequest"}}}},"responses":{"200":{"description":"Generated document output","content":{"application/json":{"schema":{"$ref":"#/components/schemas/GenerateDocumentResponse"}}}}}}},"/v2/journey/configuration":{"post":{"operationId":"createJourneyV2","summary":"createJourneyV2","description":"Create a Journey","tags":["Journeys V2"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/JourneyCreationRequestV2"}}},"description":"Payload"},"parameters":[{"name":"skipAutomation","in":"query","description":"skip creating an Automation (it takes Yn format \\"true, yes, 1, y\\")","required":false,"schema":{"type":"string","format":"Yn","example":true}}],"responses":{"201":{"description":"Success","content":{"application/json":{"schema":{"$ref":"#/components/schemas/JourneyCreationRequestV2"}}}}}},"put":{"operationId":"updateJourneyV2","summary":"updateJourneyV2","description":"Update a Journey","tags":["Journeys V2"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/JourneyCreationRequestV2"}}},"description":"Payload"},"parameters":[],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"$ref":"#/components/schemas/JourneyCreationRequestV2"}}}},"404":{"description":"Journey or associated entity not found","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","example":"journey not found"}}}}}}}},"patch":{"operationId":"patchUpdateJourneyV2","summary":"patchUpdateJourneyV2","description":"Update a Journey (partially / patch). Support for nested properties updates (e.g. \\"property[0].name\\").","tags":["Journeys V2"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PatchUpdateJourneyRequest"},"example":{"journeyId":"509cdffe-424f-457a-95c2-9708c304ce77","name":"New Journey Name","steps[0].uischema.elements[0].products":["123456","654321"]}}},"description":"Payload"},"parameters":[],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"$ref":"#/components/schemas/JourneyCreationRequestV2"}}}},"404":{"description":"Journey or associated entity not found","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","example":"journey not found"}}}}}}}}},"/v2/journey/configuration/{id}":{"get":{"operationId":"getJourneyV2","summary":"getJourneyV2","description":"Get journey by id","security":[],"tags":["Journeys V2"],"parameters":[{"name":"id","in":"path","description":"Journey ID","required":true,"schema":{"type":"string","format":"uuid","example":"509cdffe-424f-457a-95c2-9708c304ce77"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"$ref":"#/components/schemas/JourneyCreationRequestV2"}}}}}},"delete":{"operationId":"removeJourneyV2","summary":"removeJourneyV2","description":"Remove journey by id","tags":["Journeys V2"],"parameters":[{"name":"id","in":"path","description":"Journey ID","required":true,"schema":{"type":"string","format":"uuid","example":"509cdffe-424f-457a-95c2-9708c304ce77"}}],"responses":{"200":{"description":"Success","content":{}}}}},"/v1/journey/{id}/settings":{"get":{"operationId":"getSettingsForJourney","summary":"getSettingsForJourney","description":"Get settings related to the journey using journey ID.","tags":["Journeys"],"security":[{}],"parameters":[{"name":"id","in":"path","description":"Journey ID","required":true,"schema":{"type":"string","format":"uuid","example":"509cdffe-424f-457a-95c2-9708c304ce77"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"$ref":"#/components/schemas/GetSettingsForJourney"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","example":"journey not found"}}}}}},"500":{"description":"Internal Server Error","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","example":"Unknown API Error"}}}}}}}}},"/v1/journey/button-options":{"get":{"operationId":"getButtonOptions","summary":"getButtonOptions","description":"Get button options from a csv file.","security":[{"EpilotAuth":[]}],"tags":["Journeys"],"parameters":[{"in":"query","name":"fileId","required":true,"description":"file id to get button options from","schema":{"type":"string","example":"535ef74a-dd66-4d01-94a9-725016e70d1c"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ButtonOption"}}}}},"400":{"description":"Bad Request - Invalid file or content","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","example":"UTF-8 encoding error while processing CSV content"},"details":{"type":"string","example":"Please ensure your CSV file is properly encoded in UTF-8 format"}}}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","example":"File with ID 535ef74a-dd66-4d01-94a9-725016e70d1c not found."}}}}}},"500":{"description":"Internal Server Error","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","example":"Unknown API Error"}}}}}}}}}},"components":{"schemas":{"GetJourneysResponse":{"type":"object"},"JourneyResponse":{"type":"object","properties":{"createdJourney":{"$ref":"#/components/schemas/Journey"}}},"JourneyProductsResponse":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string"},"_schema":{"type":"string"},"_title":{"type":"string"},"name":{"type":"string"},"_id":{"type":"string"},"_org":{"type":"string"},"code":{"type":"string"},"description":{"type":"string"},"feature":{"type":"array"},"product_images":{"type":"array"},"legal_footnote":{"type":"string"},"product_downloads":{"type":"array"},"price":{"type":"object"}}}},"PatchUpdateJourneyRequest":{"type":"object","properties":{"journeyId":{"type":"string","format":"uuid","example":"509cdffe-424f-457a-95c2-9708c304ce77"},"__lastModifiedAt":{"type":"string","description":"If passed with value of null, the API won\'t modify the lastModifiedAt field on updating the journey","nullable":true}},"additionalProperties":true,"description":"Patch request to update a journey (journey id is required) Support for nested properties (e.g. steps[0].uischema.elements[0].products) is supported.\\n","required":["journeyId"]},"JourneyCreationRequest":{"type":"object","properties":{"journeyId":{"type":"string"},"organizationId":{"type":"string"},"brandId":{"type":"string"},"name":{"type":"string"},"steps":{"type":"array","items":{"type":"object","additionalProperties":false,"properties":{"showStepName":{"type":"boolean","nullable":true},"title":{"type":"string","nullable":true},"subTitle":{"type":"string","nullable":true},"showStepSubtitle":{"type":"boolean","nullable":true},"showStepper":{"type":"boolean","nullable":true},"showStepperLabels":{"type":"boolean","nullable":true},"hideNextButton":{"type":"boolean","nullable":true},"name":{"type":"string"},"stepId":{"type":"string"},"schema":{},"uischema":{},"maxWidth":{"type":"string","enum":["small","medium","large","extra large"]}},"required":["name","schema","uischema"]}},"design":{"type":"object","properties":{"logoUrl":{"type":"string","nullable":true},"theme":{"type":"object","additionalProperties":{}},"designTokens":{"type":"object"}},"additionalProperties":false},"rules":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","enum":["inject","injectWithKey"]},"sourceType":{"type":"string","enum":["journey","step","block"]},"source":{"type":"string"},"target":{"type":"string"}},"required":["type","sourceType","source","target"],"additionalProperties":false}},"logics":{"type":"array","items":{"type":"object","properties":{"autoGeneratedId":{"type":"string"},"conditions":{"type":"array","items":{"type":"string"}},"actions":{"type":"array","items":{"type":"string"}}},"required":["conditions","actions"],"additionalProperties":false}},"logicsV4":{"type":"object","additionalProperties":{"type":"object","properties":{"id":{"type":"string","format":"uuid","description":"Unique identifier for logic. Use uuidv7"},"protected":{"type":"boolean","description":"If true, logic can\'t be manipulated by the configuring user"},"action":{"type":"string","description":"Indicates which action to take in case logic evaluates to true"},"triggeredOn":{"type":"string","description":"Indicates when the logic should be evaluated"},"conditions":{"type":"array","items":{"type":"array","items":{"type":"object","properties":{"operator":{"type":"string","description":"Operator to be applied between the fact value and the value"},"functionName":{"type":"string","description":"If operator is a custom function, this needs to be provided"},"fact":{"type":"object","properties":{"id":{"type":"string","format":"uuid","description":"Unique identifier for a fact"},"referenceType":{"type":"string","description":"Indicates reference type (block or context parameter)"},"referenceId":{"type":"string","description":"Id of the reference"},"path":{"type":"string","description":"Path to a property. Used if only part of the value is needed"},"meaning":{"type":"string","description":"If path is a reference, indicates the intention of it"}}},"value":{"oneOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"object"},{"type":"array"}]},"args":{"type":"object"}}}}},"settings":{"type":"object","description":"Logic specific settings. Will vary by type of logic"}}}},"contextSchema":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","format":"uuid","description":"Unique identifier for the context schema item"},"type":{"type":"string","description":"Type of the parameter. It could be either an entity slug, or a text"},"paramKey":{"type":"string","description":"Expected key to be received in the context"},"isRequired":{"type":"boolean","description":"Indicates if a value is expected to be provided"},"shouldLoadEntity":{"type":"boolean","description":"If type is not text, we can instruct the journey to fetch the entity id we receive as value"}},"required":["paramKey","type"],"additionalProperties":false}},"journey_type":{"type":"string","description":"Journey Template","example":"Sales template (Premium)"},"settings":{"type":"object","properties":{"embedOptions":{"type":"object","properties":{"mode":{"type":"string","enum":["full-screen","inline"]},"lang":{"type":"string","enum":["de","en","fr"]},"width":{"type":"string"},"topBar":{"type":"boolean"},"scrollToTop":{"type":"boolean"},"button":{"type":"object","properties":{"text":{"type":"string","nullable":true},"align":{"type":"string","enum":["left","center","right"]}}}}},"safeModeAutomation":{"type":"boolean"},"canary":{"deprecated":true,"description":"DEPRECATED - This API will return hardcoded value of false. Please note that this field is internal to epilot and should not be used by external clients. If you wish to get the canary flag, please use the /v1/journey/{id}/settings API.","type":"boolean"},"designId":{"type":"string"},"templateId":{"type":"string"},"entityId":{"type":"string","nullable":true},"mappingsAutomationId":{"type":"string"},"targetedCustomer":{"type":"string"},"description":{"type":"string","nullable":true},"organizationSettings":{"type":"object","additionalProperties":{"type":"boolean"},"nullable":true},"publicToken":{"type":"string","nullable":true},"runtimeEntities":{"type":"array","items":{"type":"string","enum":["ORDER","OPPORTUNITY"]}},"filePurposes":{"type":"array","items":{"type":"string"}},"entityTags":{"type":"array","items":{"type":"string"}},"addressSuggestionsFileUrl":{"type":"string","nullable":true,"deprecated":true,"description":"@deprecated Use addressSuggestionsFileId instead"},"addressSuggestionsFileId":{"type":"string","nullable":true},"useNewDesign":{"type":"boolean","deprecated":true,"description":"This property is deprecated and will be removed in a future version"},"useAustrianLabels":{"type":"boolean","description":"If true, some journey input labels are in Austrian format"},"enableDarkMode":{"type":"boolean","description":"If true, the journey shows an icon to toggle dark mode"},"accessMode":{"type":"string","enum":["PUBLIC","PRIVATE"]},"isPublished":{"type":"boolean"},"status":{"type":"string"},"isActive":{"type":"boolean"},"savingProgress":{"type":"object","properties":{"savingMode":{"type":"string","enum":["auto","local","remote","none"]},"supportedVersion":{"type":"number"}}},"thirdPartyCookies":{"type":"boolean","description":"If false, third-party cookies are disabled to comply with GDPR regulations without asking for consent."}},"required":["designId"],"additionalProperties":false},"validationRules":{"$ref":"#/components/schemas/ValidationRuleRef"},"createdBy":{"type":"string"},"__lastModifiedAt":{"type":"string","description":"If passed with value of null, the API won\'t modify the lastModifiedAt field on updating the journey","nullable":true}},"required":["organizationId","name","steps"],"additionalProperties":true},"JourneyCreationRequestV2":{"type":"object","properties":{"journeyId":{"type":"string"},"brandId":{"type":"string"},"name":{"type":"string"},"steps":{"type":"array","items":{"type":"object","additionalProperties":false,"properties":{"showStepName":{"type":"boolean","nullable":true},"title":{"type":"string","nullable":true},"subTitle":{"type":"string","nullable":true},"showStepSubtitle":{"type":"boolean","nullable":true},"showStepper":{"type":"boolean","nullable":true},"showStepperLabels":{"type":"boolean","nullable":true},"hideNextButton":{"type":"boolean","nullable":true},"name":{"type":"string"},"stepId":{"type":"string"},"schema":{},"uischema":{},"maxWidth":{"type":"string","enum":["small","medium","large","extra large"]}},"required":["name","schema","uischema"]}},"design":{"type":"object","properties":{"logoUrl":{"type":"string","nullable":true},"theme":{"type":"object","additionalProperties":{}},"designTokens":{"type":"object"}},"additionalProperties":false},"rules":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","enum":["inject","injectWithKey"]},"sourceType":{"type":"string","enum":["journey","step","block"]},"source":{"type":"string"},"target":{"type":"string"}},"required":["type","sourceType","source","target"],"additionalProperties":false}},"logics":{"type":"array","items":{"type":"object","properties":{"autoGeneratedId":{"type":"string"},"conditions":{"type":"array","items":{"type":"string"}},"actions":{"type":"array","items":{"type":"string"}}},"required":["conditions","actions"],"additionalProperties":false}},"logicsV4":{"type":"object","additionalProperties":{"type":"object","properties":{"id":{"type":"string","format":"uuid","description":"Unique identifier for logic. Use uuidv7"},"protected":{"type":"boolean","description":"If true, logic can\'t be manipulated by the configuring user"},"action":{"type":"string","description":"Indicates which action to take in case logic evaluates to true"},"triggeredOn":{"type":"string","description":"Indicates when the logic should be evaluated"},"conditions":{"type":"array","items":{"type":"array","items":{"type":"object","properties":{"operator":{"type":"string","description":"Operator to be applied between the fact value and the value"},"functionName":{"type":"string","description":"If operator is a custom function, this needs to be provided"},"fact":{"type":"object","properties":{"id":{"type":"string","format":"uuid","description":"Unique identifier for a fact"},"referenceType":{"type":"string","description":"Indicates reference type (block or context parameter)"},"referenceId":{"type":"string","description":"Id of the reference"},"path":{"type":"string","description":"Path to a property. Used if only part of the value is needed"},"meaning":{"type":"string","description":"If path is a reference, indicates the intention of it"}}},"value":{"oneOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"object"},{"type":"array"}]},"args":{"type":"object"}}}}},"settings":{"type":"object","description":"Logic specific settings. Will vary by type of logic"}}}},"contextSchema":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","format":"uuid","description":"Unique identifier for the context schema item"},"type":{"type":"string","description":"Type of the parameter. It could be either an entity slug, or a text"},"paramKey":{"type":"string","description":"Expected key to be received in the context"},"isRequired":{"type":"boolean","description":"Indicates if a value is expected to be provided"},"shouldLoadEntity":{"type":"boolean","description":"If type is not text, we can instruct the journey to fetch the entity id we receive as value"}},"required":["paramKey","type"],"additionalProperties":false}},"journey_type":{"type":"string","description":"Journey Template","example":"Sales template (Premium)"},"settings":{"type":"object","properties":{"embedOptions":{"type":"object","properties":{"mode":{"type":"string","enum":["full-screen","inline"]},"lang":{"type":"string","enum":["de","en","fr"]},"width":{"type":"string"},"topBar":{"type":"boolean"},"scrollToTop":{"type":"boolean"},"button":{"type":"object","properties":{"text":{"type":"string","nullable":true},"align":{"type":"string","enum":["left","center","right"]}}}}},"safeModeAutomation":{"type":"boolean"},"designId":{"type":"string"},"entityId":{"type":"string","nullable":true},"mappingsAutomationId":{"type":"string"},"templateId":{"type":"string"},"targetedCustomer":{"type":"string"},"description":{"type":"string","nullable":true},"publicToken":{"type":"string","nullable":true},"runtimeEntities":{"type":"array","items":{"type":"string","enum":["ORDER","OPPORTUNITY"]}},"filePurposes":{"type":"array","items":{"type":"string"}},"entityTags":{"type":"array","items":{"type":"string"}},"addressSuggestionsFileUrl":{"type":"string","nullable":true,"deprecated":true,"description":"@deprecated Use addressSuggestionsFileId instead"},"addressSuggestionsFileId":{"type":"string","nullable":true},"useNewDesign":{"type":"boolean","deprecated":true,"description":"This property is deprecated and will be removed in a future version"},"thirdPartyCookies":{"type":"boolean","description":"If false, third-party cookies are disabled to comply with GDPR regulations without asking for consent."},"accessMode":{"type":"string","enum":["PUBLIC","PRIVATE"]},"enableDarkMode":{"type":"boolean","description":"If true, the journey shows an icon to toggle dark mode"}},"additionalProperties":false},"validationRules":{"$ref":"#/components/schemas/ValidationRuleRef"},"_manifest":{"type":"array","description":"Manifest/Blueprint ID used to create/update the entity","items":{"type":"string","format":"uuid","example":"123e4567-e89b-12d3-a456-426614174000"}}},"required":["name","steps"]},"SearchJourneysQueryRequest":{"type":"object","properties":{"q":{"type":"string","description":"Lucene query syntax\\nSee https://lucene.apache.org/core/2_9_4/queryparsersyntax.html ; https://www.elastic.co/guide/en/kibana/current/lucene-query.html\\n","example":"_tags:*Flex*","default":"*"},"from":{"type":"integer","description":"The offset of the first result to return.\\nSee https://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-from-size.html\\n","example":0,"default":0},"size":{"type":"integer","description":"The maximum number of results to return.\\nSee https://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-from-size.html\\n","example":25,"default":25},"sort":{"type":"string","description":"The sort order. Follows Lucene syntax.\\n","example":"_created_at:desc","default":"_created_at:desc"}}},"SearchJourneysResponse":{"type":"object","properties":{"hits":{"type":"number","description":"The total number of hits.\\n","example":1},"results":{"type":"array","description":"The results.\\n","items":{"type":"object","properties":{"_id":{"type":"string","description":"Journey Entity ID","format":"uuid","example":"e0f8f8f8-f8f8-f8f8-f8f8-f8f8f8f8f8f8"},"_schema":{"type":"string","description":"Entity Schema (journey always in this case)","example":"journey"},"_title":{"type":"string","description":"Journey Entity Title","example":"Journey Entity Title"},"_org":{"type":"string","description":"Organization ID","example":"739224"},"_created_at":{"type":"string","format":"date-time","example":"2020-01-01T00:00:00.000Z"},"_updated_at":{"type":"string","format":"date-time","example":"2020-01-01T00:00:00.000Z"},"_tags":{"type":"array","items":{"type":"string","example":"Flex"}},"_manifest":{"type":"array","description":"Manifest ID used to create/update the entity","items":{"type":"string","format":"uuid","example":"123e4567-e89b-12d3-a456-426614174000"}},"journey_name":{"type":"string","description":"Journey Name","example":"Journey Name"},"journey_id":{"type":"string","format":"uuid","description":"Journey config ID","example":"de7df470-253e-11ed-9174-116b8a718c0a"},"journey_type":{"type":"string","description":"Journey Template","example":"Sales template"},"design":{"type":"string","description":"Journey Design Name","example":"Design EPILOT"},"created_by":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"User ID","example":"12345"}}}},"journey_version":{"type":"string","description":"Journey Version","enum":["Flex"]}}}}}},"Journey":{"allOf":[{"$ref":"#/components/schemas/JourneyCreationRequest"},{"$ref":"#/components/schemas/JourneyAuditInfo"},{"$ref":"#/components/schemas/JourneyFeatureFlags"}]},"JourneyFeatureFlags":{"type":"object","properties":{"featureFlags":{"type":"object","additionalProperties":true}}},"JourneyAuditInfo":{"type":"object","properties":{"createdAt":{"type":"string"},"lastModifiedAt":{"type":"string"},"deletedAt":{"type":"string"},"version":{"type":"number"},"revisions":{"type":"number"}},"required":["createdAt","lastModifiedAt","version","revisions"]},"S3Reference":{"type":"object","properties":{"bucket":{"type":"string","example":"document-api-prod"},"key":{"type":"string","example":"uploads/my-template.pdf"}},"required":["bucket","key"]},"TemplateSettings":{"type":"object","description":"Template Settings for document generation","properties":{"custom_margins":{"description":"Custom margins for the document","type":"object","properties":{"top":{"description":"Top margin in cm","type":"number","example":2.54},"bottom":{"description":"Bottom margin in cm","type":"number","example":2.54}}},"suggested_margins":{"description":"Suggested margins for the document","type":"object","properties":{"top":{"description":"Top margin in cm","type":"number","example":2.54},"bottom":{"description":"Bottom margin in cm","type":"number","example":2.54}}},"display_margin_guidelines":{"description":"Display margin guidelines (applicable to partial generation only)","type":"boolean","example":true},"enable_data_table_margin_autofix":{"description":"Enable data table margin autofix","type":"boolean","example":false},"template_with_datatable":{"description":"A flag that indicates whether the template has 1 or more data tables in it","type":"boolean","example":false},"enabled_template_settings_persistence":{"description":"Enables the persistance of template settings","type":"boolean","example":false},"misconfigured_margins":{"description":"An indication that the page margins are misconfigured","type":"boolean","example":false},"file_entity_id":{"description":"The file entity id, used when persisting a new template version with updated settings","type":"string","format":"uuid","example":"1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p"}}},"GenerateDocumentResponse":{"type":"object","properties":{"job_id":{"type":"string","format":"uuid"},"job_status":{"description":"Status of the job","type":"string","enum":["STARTED","PROCESSING","SUCCESS","FAILED"]},"message":{"description":"A message explaining the progress","type":"string"},"pdf_output":{"type":"object","properties":{"preview_url":{"description":"Pre-signed S3 GET URL for PDF preview","type":"string","example":"https://document-api-prod.s3.eu-central-1.amazonaws.com/preview/my-template-OR-001.pdf"},"output_document":{"type":"object","properties":{"filename":{"description":"Generated document filename for PDF","type":"string","example":"my-template-OR-001.pdf"},"s3ref":{"$ref":"#/components/schemas/S3Reference"}},"example":{"s3ref":{"bucket":"document-api-preview-prod","key":"preview/my-template.pdf"}}}}},"docx_output":{"type":"object","properties":{"preview_url":{"description":"Pre-signed S3 GET URL for DOCX preview","type":"string","example":"https://document-api-prod.s3.eu-central-1.amazonaws.com/preview/my-template-OR-001.docx"},"output_document":{"type":"object","properties":{"filename":{"description":"Generated document filename for DOCX","type":"string","example":"my-template-OR-001.docx"},"s3ref":{"$ref":"#/components/schemas/S3Reference"}},"example":{"s3ref":{"bucket":"document-api-preview-prod","key":"preview/my-template.docx"}}}}},"variable_payload":{"description":"List of variables and its corresponding replaced values from the document template","type":"object","properties":{"additionalProperties":{"type":"string"}}},"template_settings":{"$ref":"#/components/schemas/TemplateSettings"}}},"GenerateDocumentRequest":{"type":"object","properties":{"file_id":{"description":"Entity id for the template being used","type":"string","example":"1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p"},"context_data":{"description":"Custom values for variables in the template. Takes the higher precedence than others.","type":"object","properties":{"additionalProperties":{"type":"string"}}},"language":{"description":"Language code for the document","type":"string","example":"de"}},"required":["file_id","context_data"]},"GetSettingsForJourney":{"type":"object","properties":{"organizationId":{"type":"string","description":"ID of an organization in epilot platform","example":"739224"},"canary":{"type":"boolean","description":"The canary flag controls update frequency of epilot application: when true, customers receive continuous updates; when false, they only get updates with new version releases.","example":true},"thirdPartyCookies":{"type":"boolean","description":"When set to false, third-party cookies and resources should be completely disabled to comply with GDPR regulations.","example":true}}},"ButtonOption":{"type":"object","description":"A single button option data","properties":{"value":{"type":"string","example":"Button Hidden Value","description":"The value of the button"},"label":{"type":"string","example":"Button Label","description":"The label of the button"}}},"ValidationRuleRef":{"type":"object","description":"References to validation rules organized by blocks and fields.\\nMaps block IDs to either rule IDs (for block-level rules) or rule references (for field-level rules).\\n","additionalProperties":{"oneOf":[{"type":"string","description":"Rule ID for block-level validation"},{"$ref":"#/components/schemas/RuleRef"}]},"example":{"block1":"rule123","block2":{"field1":"rule456","field2":"rule789"}}},"RuleRef":{"type":"object","description":"Field-level rule references within a block.\\nMaps field names to rule IDs.\\n","additionalProperties":{"type":"string","description":"Rule ID for field-level validation"},"example":{"firstName":"rule123","lastName":"rule456","email":"rule789"}}},"securitySchemes":{"EpilotAuth":{"type":"http","scheme":"bearer","description":"Epilot Authorization Bearer Token - public access token / user token","bearerFormat":"JWT"}}},"servers":[{"url":"https://journey-config.sls.epilot.io"},{"url":"https://journey-config.sls.epilot.io"}]}')}},t={},r=function r(n){var i=t[n];if(void 0!==i)return i.exports;var o=t[n]={exports:{}};return e[n].call(o.exports,o,o.exports,r),o.exports}(799),n=exports;for(var i in r)n[i]=r[i];r.__esModule&&Object.defineProperty(n,"__esModule",{value:!0})})();
1
+ (()=>{"use strict";var e={799:function(e,t,r){var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var o=i(r(871));t.default=o.default},871:e=>{e.exports=JSON.parse('{"openapi":"3.0.0","info":{"title":"Journey API","description":"API to configure journeys","version":"1.4.0"},"security":[{"EpilotAuth":[]}],"tags":[{"name":"Journeys","description":"Journey operations"},{"name":"Journeys V2","description":"Journey V2 operations"},{"name":"journey_schema","x-displayName":"Journey","description":"<SchemaDefinition schemaRef=\\"#/components/schemas/Journey\\" />\\n"}],"x-tagGroups":[{"name":"APIs","tags":["Journeys","Journeys V2"]},{"name":"Schemas","tags":["journey_schema"]}],"paths":{"/v1/journey/organization/{id}":{"get":{"operationId":"getJourneysByOrgId","summary":"getJourneysByOrgId","description":"Get all journeys by organization id","tags":["Journeys"],"parameters":[{"name":"id","in":"path","description":"Organization ID","required":true,"schema":{"type":"string","example":"123"}},{"name":"hydrate","in":"query","description":"Hydrate","required":false,"schema":{"type":"string","example":"true"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"$ref":"#/components/schemas/GetJourneysResponse"}}}}}}},"/v1/journey/configuration/{id}":{"get":{"operationId":"getJourney","summary":"getJourney","description":"Get journey by id. Private journeys requires valid private token to be passed","security":[{},{"EpilotAuth":[]},{"PortalAuth":[]}],"tags":["Journeys"],"parameters":[{"name":"id","in":"path","description":"Journey ID","required":true,"schema":{"type":"string","format":"uuid","example":"509cdffe-424f-457a-95c2-9708c304ce77"}},{"name":"source","in":"query","description":"What source ID. Journey or Entity ID","required":false,"schema":{"type":"string"}},{"name":"orgId","in":"query","description":"Organization ID","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Journey"}}}}}},"delete":{"operationId":"removeJourney","summary":"removeJourney","description":"Remove journey by id","tags":["Journeys"],"parameters":[{"name":"id","in":"path","description":"Journey ID","required":true,"schema":{"type":"string","format":"uuid","example":"509cdffe-424f-457a-95c2-9708c304ce77"}}],"responses":{"200":{"description":"Success","content":{}},"404":{"description":"Journey not found","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","example":"journey not found"}}}}}}}}},"/v1/journey/products/{id}":{"get":{"operationId":"getJourneyProducts","summary":"getJourneyProducts","description":"Get products available in the journey by id. requires public journey token to be passed.","security":[{"EpilotAuth":[]}],"tags":["Journeys"],"parameters":[{"name":"id","in":"path","description":"Journey ID","required":true,"schema":{"type":"string","format":"uuid","example":"509cdffe-424f-457a-95c2-9708c304ce77"}},{"name":"source","in":"query","description":"What source ID. Journey or Entity ID","required":false,"schema":{"type":"string"}},{"name":"postal_code","in":"query","description":"Zip Code for availibility","required":false,"schema":{"type":"string"}},{"name":"city","in":"query","description":"city for availibility","required":false,"schema":{"type":"string"}},{"name":"street","in":"query","description":"street name for availibility","required":false,"schema":{"type":"string"}},{"name":"street_number","in":"query","description":"street number for availibility","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"$ref":"#/components/schemas/JourneyProductsResponse"}}}}}}},"/v1/journey/configuration":{"post":{"operationId":"createJourney","summary":"createJourney","description":"Create a Journey","tags":["Journeys"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/JourneyCreationRequest"}}},"description":"Payload"},"parameters":[{"name":"skipAutomation","in":"query","description":"skip creating an Automation (it takes Yn format \\"true, yes, 1, y\\")","required":false,"schema":{"type":"string","format":"Yn","example":"true"}}],"responses":{"201":{"description":"Success","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Journey"}}}},"400":{"description":"Validation failed (when validation mode is STRICT)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/JourneyValidationError"}}}}}},"put":{"operationId":"updateJourney","summary":"updateJourney","description":"Update a Journey","tags":["Journeys"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/JourneyCreationRequest"}}},"description":"Payload"},"parameters":[],"responses":{"204":{"description":"Success","headers":{"X-Resource-Revisions":{"schema":{"type":"integer","minimum":0},"description":"Last revisions number of the updated resource"}}},"400":{"description":"Validation failed (when validation mode is STRICT)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/JourneyValidationError"}}}},"409":{"description":"The Journey has been modified since your last read, please refresh it and try again"}}},"patch":{"operationId":"patchUpdateJourney","summary":"patchUpdateJourney","description":"Update a Journey (partially / patch). Support for nested properties updates (e.g. \\"property[0].name\\").","tags":["Journeys"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PatchUpdateJourneyRequest"},"example":{"journeyId":"509cdffe-424f-457a-95c2-9708c304ce77","name":"New Journey Name","steps[0].uischema.elements[0].products":["123456","654321"]}}},"description":"Payload"},"parameters":[],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"$ref":"#/components/schemas/JourneyResponse"}}}},"400":{"description":"Validation failed (when validation mode is STRICT)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/JourneyValidationError"}}}},"404":{"description":"Journey or associated entity not found","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","example":"journey not found"}}}}}}}}},"/v1/journey/configuration/search":{"post":{"operationId":"searchJourneys","summary":"searchJourneys","description":"Search Journeys","tags":["Journeys"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SearchJourneysQueryRequest"}}},"description":"Payload"},"parameters":[],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SearchJourneysResponse"}}}}}}},"/v1/journey/document:generate":{"post":{"operationId":"generateDocument","summary":"generateDocument","description":"Builds document generated from a template with journey values.\\"\\n\\nSupported input document types:\\n- .docx\\n\\nSupported output document types:\\n- .pdf\\n- .docx but limited to only text based variables\\n\\nUses [Document API](https://gitlab.com/e-pilot/product/file-management/document-api) to generate the document.\\nUses [Template Variables API](https://docs.epilot.io/api/template-variables) to replace variables in the document.\\n","security":[{},{"EpilotAuth":[]}],"tags":["Journeys"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GenerateDocumentRequest"}}}},"responses":{"200":{"description":"Generated document output","content":{"application/json":{"schema":{"$ref":"#/components/schemas/GenerateDocumentResponse"}}}}}}},"/v2/journey/configuration":{"post":{"operationId":"createJourneyV2","summary":"createJourneyV2","description":"Create a Journey","tags":["Journeys V2"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/JourneyCreationRequestV2"}}},"description":"Payload"},"parameters":[{"name":"skipAutomation","in":"query","description":"skip creating an Automation (it takes Yn format \\"true, yes, 1, y\\")","required":false,"schema":{"type":"string","format":"Yn","example":"true"}}],"responses":{"201":{"description":"Success","content":{"application/json":{"schema":{"$ref":"#/components/schemas/JourneyCreationRequestV2"}}}},"400":{"description":"Validation failed (when validation mode is STRICT)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/JourneyValidationError"}}}}}},"put":{"operationId":"updateJourneyV2","summary":"updateJourneyV2","description":"Update a Journey","tags":["Journeys V2"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/JourneyCreationRequestV2"}}},"description":"Payload"},"parameters":[],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"$ref":"#/components/schemas/JourneyCreationRequestV2"}}}},"400":{"description":"Validation failed (when validation mode is STRICT)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/JourneyValidationError"}}}},"404":{"description":"Journey or associated entity not found","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","example":"journey not found"}}}}}}}},"patch":{"operationId":"patchUpdateJourneyV2","summary":"patchUpdateJourneyV2","description":"Update a Journey (partially / patch). Support for nested properties updates (e.g. \\"property[0].name\\").","tags":["Journeys V2"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PatchUpdateJourneyRequest"},"example":{"journeyId":"509cdffe-424f-457a-95c2-9708c304ce77","name":"New Journey Name","steps[0].uischema.elements[0].products":["123456","654321"]}}},"description":"Payload"},"parameters":[],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"$ref":"#/components/schemas/JourneyCreationRequestV2"}}}},"400":{"description":"Validation failed (when validation mode is STRICT)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/JourneyValidationError"}}}},"404":{"description":"Journey or associated entity not found","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","example":"journey not found"}}}}}}}}},"/v2/journey/configuration/{id}":{"get":{"operationId":"getJourneyV2","summary":"getJourneyV2","description":"Get journey by id","security":[],"tags":["Journeys V2"],"parameters":[{"name":"id","in":"path","description":"Journey ID","required":true,"schema":{"type":"string","format":"uuid","example":"509cdffe-424f-457a-95c2-9708c304ce77"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"$ref":"#/components/schemas/JourneyCreationRequestV2"}}}}}},"delete":{"operationId":"removeJourneyV2","summary":"removeJourneyV2","description":"Remove journey by id","tags":["Journeys V2"],"parameters":[{"name":"id","in":"path","description":"Journey ID","required":true,"schema":{"type":"string","format":"uuid","example":"509cdffe-424f-457a-95c2-9708c304ce77"}}],"responses":{"200":{"description":"Success","content":{}}}}},"/v1/journey/{id}/settings":{"get":{"operationId":"getSettingsForJourney","summary":"getSettingsForJourney","description":"Get settings related to the journey using journey ID.","tags":["Journeys"],"security":[{}],"parameters":[{"name":"id","in":"path","description":"Journey ID","required":true,"schema":{"type":"string","format":"uuid","example":"509cdffe-424f-457a-95c2-9708c304ce77"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"$ref":"#/components/schemas/GetSettingsForJourney"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","example":"journey not found"}}}}}},"500":{"description":"Internal Server Error","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","example":"Unknown API Error"}}}}}}}}},"/v1/journey/button-options":{"get":{"operationId":"getButtonOptions","summary":"getButtonOptions","description":"Get button options from a csv file.","security":[{"EpilotAuth":[]}],"tags":["Journeys"],"parameters":[{"in":"query","name":"fileId","required":true,"description":"file id to get button options from","schema":{"type":"string","example":"535ef74a-dd66-4d01-94a9-725016e70d1c"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ButtonOption"}}}}},"400":{"description":"Bad Request - Invalid file or content","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","example":"UTF-8 encoding error while processing CSV content"},"details":{"type":"string","example":"Please ensure your CSV file is properly encoded in UTF-8 format"}}}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","example":"File with ID 535ef74a-dd66-4d01-94a9-725016e70d1c not found."}}}}}},"500":{"description":"Internal Server Error","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","example":"Unknown API Error"}}}}}}}}}},"components":{"schemas":{"GetJourneysResponse":{"type":"object"},"JourneyResponse":{"type":"object","properties":{"createdJourney":{"$ref":"#/components/schemas/Journey"}}},"JourneyProductsResponse":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string"},"_schema":{"type":"string"},"_title":{"type":"string"},"name":{"type":"string"},"_id":{"type":"string"},"_org":{"type":"string"},"code":{"type":"string"},"description":{"type":"string"},"feature":{"type":"array","items":{}},"product_images":{"type":"array","items":{}},"legal_footnote":{"type":"string"},"product_downloads":{"type":"array","items":{}},"price":{"type":"object"}}}},"PatchUpdateJourneyRequest":{"type":"object","properties":{"journeyId":{"type":"string","format":"uuid","example":"509cdffe-424f-457a-95c2-9708c304ce77"},"__lastModifiedAt":{"type":"string","description":"If passed with value of null, the API won\'t modify the lastModifiedAt field on updating the journey","nullable":true}},"additionalProperties":true,"description":"Patch request to update a journey (journey id is required) Support for nested properties (e.g. steps[0].uischema.elements[0].products) is supported.\\n","required":["journeyId"]},"JourneyCreationRequest":{"type":"object","properties":{"journeyId":{"type":"string"},"organizationId":{"type":"string"},"brandId":{"type":"string"},"name":{"type":"string"},"steps":{"type":"array","items":{"type":"object","additionalProperties":false,"properties":{"showStepName":{"type":"boolean","nullable":true},"title":{"type":"string","nullable":true},"subTitle":{"type":"string","nullable":true},"showStepSubtitle":{"type":"boolean","nullable":true},"showStepper":{"type":"boolean","nullable":true},"showStepperLabels":{"type":"boolean","nullable":true},"hideNextButton":{"type":"boolean","nullable":true},"name":{"type":"string"},"stepId":{"type":"string"},"schema":{},"uischema":{},"maxWidth":{"type":"string","enum":["small","medium","large","extra large"]}},"required":["name","schema","uischema"]}},"design":{"type":"object","properties":{"logoUrl":{"type":"string","nullable":true},"theme":{"type":"object","additionalProperties":{}},"designTokens":{"type":"object"}},"additionalProperties":false},"rules":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","enum":["inject","injectWithKey"]},"sourceType":{"type":"string","enum":["journey","step","block"]},"source":{"type":"string"},"target":{"type":"string"}},"required":["type","sourceType","source","target"],"additionalProperties":false}},"logics":{"type":"array","items":{"type":"object","properties":{"autoGeneratedId":{"type":"string"},"conditions":{"type":"array","items":{"type":"string"}},"actions":{"type":"array","items":{"type":"string"}}},"required":["conditions","actions"],"additionalProperties":false}},"logicsV4":{"type":"object","additionalProperties":{"type":"object","properties":{"id":{"type":"string","format":"uuid","description":"Unique identifier for logic. Use uuidv7"},"protected":{"type":"boolean","description":"If true, logic can\'t be manipulated by the configuring user"},"action":{"type":"string","description":"Indicates which action to take in case logic evaluates to true"},"triggeredOn":{"type":"string","description":"Indicates when the logic should be evaluated"},"conditions":{"type":"array","items":{"type":"array","items":{"type":"object","properties":{"operator":{"type":"string","description":"Operator to be applied between the fact value and the value"},"functionName":{"type":"string","description":"If operator is a custom function, this needs to be provided"},"fact":{"type":"object","properties":{"id":{"type":"string","format":"uuid","description":"Unique identifier for a fact"},"referenceType":{"type":"string","description":"Indicates reference type (block or context parameter)"},"referenceId":{"type":"string","description":"Id of the reference"},"path":{"type":"string","description":"Path to a property. Used if only part of the value is needed"},"meaning":{"type":"string","description":"If path is a reference, indicates the intention of it"}}},"value":{"oneOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"object"},{"type":"array","items":{}}]},"args":{"type":"object"}}}}},"settings":{"type":"object","description":"Logic specific settings. Will vary by type of logic"}}}},"contextSchema":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","format":"uuid","description":"Unique identifier for the context schema item"},"type":{"type":"string","description":"Type of the parameter. It could be either an entity slug, or a text"},"paramKey":{"type":"string","description":"Expected key to be received in the context"},"isRequired":{"type":"boolean","description":"Indicates if a value is expected to be provided"},"shouldLoadEntity":{"type":"boolean","description":"If type is not text, we can instruct the journey to fetch the entity id we receive as value"}},"required":["paramKey","type"],"additionalProperties":false}},"journey_type":{"type":"string","description":"Journey Template","example":"Sales template (Premium)"},"settings":{"type":"object","properties":{"embedOptions":{"type":"object","properties":{"mode":{"type":"string","enum":["full-screen","inline"]},"lang":{"type":"string","enum":["de","en","fr"]},"width":{"type":"string"},"topBar":{"type":"boolean"},"scrollToTop":{"type":"boolean"},"button":{"type":"object","properties":{"text":{"type":"string","nullable":true},"align":{"type":"string","enum":["left","center","right"]}}}}},"safeModeAutomation":{"type":"boolean"},"canary":{"deprecated":true,"description":"DEPRECATED - This API will return hardcoded value of false. Please note that this field is internal to epilot and should not be used by external clients. If you wish to get the canary flag, please use the /v1/journey/{id}/settings API.","type":"boolean"},"designId":{"type":"string"},"templateId":{"type":"string"},"entityId":{"type":"string","nullable":true},"mappingsAutomationId":{"type":"string"},"targetedCustomer":{"type":"string"},"description":{"type":"string","nullable":true},"organizationSettings":{"type":"object","additionalProperties":{"type":"boolean"},"nullable":true},"publicToken":{"type":"string","nullable":true},"runtimeEntities":{"type":"array","items":{"type":"string","enum":["ORDER","OPPORTUNITY"]}},"filePurposes":{"type":"array","items":{"type":"string"}},"entityTags":{"type":"array","items":{"type":"string"}},"addressSuggestionsFileUrl":{"type":"string","nullable":true,"deprecated":true,"description":"@deprecated Use addressSuggestionsFileId instead"},"addressSuggestionsFileId":{"type":"string","nullable":true},"addressSuggestionsCountryCode":{"type":"string","nullable":true,"description":"Country code for address format (e.g. DE, AT, CH, LU)"},"addressSuggestionsEnableAutoComplete":{"type":"boolean","description":"Whether address auto-complete is enabled"},"addressSuggestionsSource":{"type":"array","items":{"type":"string"},"description":"Sources for address auto-complete (e.g. deutschePostService, customAddressesFile)"},"addressSuggestionsEnableFreeText":{"type":"boolean","description":"Whether free text input is allowed when auto-complete is on"},"useNewDesign":{"type":"boolean","deprecated":true,"description":"This property is deprecated and will be removed in a future version"},"useAustrianLabels":{"type":"boolean","description":"If true, some journey input labels are in Austrian format"},"enableDarkMode":{"type":"boolean","description":"If true, the journey shows an icon to toggle dark mode"},"accessMode":{"type":"string","enum":["PUBLIC","PRIVATE"]},"isPublished":{"type":"boolean"},"status":{"type":"string"},"isActive":{"type":"boolean"},"savingProgress":{"type":"object","properties":{"savingMode":{"type":"string","enum":["auto","local","remote","none"]},"supportedVersion":{"type":"number"}}},"thirdPartyCookies":{"type":"boolean","description":"If false, third-party cookies are disabled to comply with GDPR regulations without asking for consent."}},"required":["designId"],"additionalProperties":false},"validationRules":{"$ref":"#/components/schemas/ValidationRuleRef"},"createdBy":{"type":"string"},"updatedBy":{"type":"string","nullable":true},"__lastModifiedAt":{"type":"string","description":"If passed with value of null, the API won\'t modify the lastModifiedAt field on updating the journey","nullable":true}},"required":["organizationId","name","steps"],"additionalProperties":true},"JourneyCreationRequestV2":{"type":"object","properties":{"journeyId":{"type":"string"},"brandId":{"type":"string"},"name":{"type":"string"},"steps":{"type":"array","items":{"type":"object","additionalProperties":false,"properties":{"showStepName":{"type":"boolean","nullable":true},"title":{"type":"string","nullable":true},"subTitle":{"type":"string","nullable":true},"showStepSubtitle":{"type":"boolean","nullable":true},"showStepper":{"type":"boolean","nullable":true},"showStepperLabels":{"type":"boolean","nullable":true},"hideNextButton":{"type":"boolean","nullable":true},"name":{"type":"string"},"stepId":{"type":"string"},"schema":{},"uischema":{},"maxWidth":{"type":"string","enum":["small","medium","large","extra large"]}},"required":["name","schema","uischema"]}},"design":{"type":"object","properties":{"logoUrl":{"type":"string","nullable":true},"theme":{"type":"object","additionalProperties":{}},"designTokens":{"type":"object"}},"additionalProperties":false},"rules":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","enum":["inject","injectWithKey"]},"sourceType":{"type":"string","enum":["journey","step","block"]},"source":{"type":"string"},"target":{"type":"string"}},"required":["type","sourceType","source","target"],"additionalProperties":false}},"logics":{"type":"array","items":{"type":"object","properties":{"autoGeneratedId":{"type":"string"},"conditions":{"type":"array","items":{"type":"string"}},"actions":{"type":"array","items":{"type":"string"}}},"required":["conditions","actions"],"additionalProperties":false}},"logicsV4":{"type":"object","additionalProperties":{"type":"object","properties":{"id":{"type":"string","format":"uuid","description":"Unique identifier for logic. Use uuidv7"},"protected":{"type":"boolean","description":"If true, logic can\'t be manipulated by the configuring user"},"action":{"type":"string","description":"Indicates which action to take in case logic evaluates to true"},"triggeredOn":{"type":"string","description":"Indicates when the logic should be evaluated"},"conditions":{"type":"array","items":{"type":"array","items":{"type":"object","properties":{"operator":{"type":"string","description":"Operator to be applied between the fact value and the value"},"functionName":{"type":"string","description":"If operator is a custom function, this needs to be provided"},"fact":{"type":"object","properties":{"id":{"type":"string","format":"uuid","description":"Unique identifier for a fact"},"referenceType":{"type":"string","description":"Indicates reference type (block or context parameter)"},"referenceId":{"type":"string","description":"Id of the reference"},"path":{"type":"string","description":"Path to a property. Used if only part of the value is needed"},"meaning":{"type":"string","description":"If path is a reference, indicates the intention of it"}}},"value":{"oneOf":[{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"object"},{"type":"array","items":{}}]},"args":{"type":"object"}}}}},"settings":{"type":"object","description":"Logic specific settings. Will vary by type of logic"}}}},"contextSchema":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","format":"uuid","description":"Unique identifier for the context schema item"},"type":{"type":"string","description":"Type of the parameter. It could be either an entity slug, or a text"},"paramKey":{"type":"string","description":"Expected key to be received in the context"},"isRequired":{"type":"boolean","description":"Indicates if a value is expected to be provided"},"shouldLoadEntity":{"type":"boolean","description":"If type is not text, we can instruct the journey to fetch the entity id we receive as value"}},"required":["paramKey","type"],"additionalProperties":false}},"journey_type":{"type":"string","description":"Journey Template","example":"Sales template (Premium)"},"settings":{"type":"object","properties":{"embedOptions":{"type":"object","properties":{"mode":{"type":"string","enum":["full-screen","inline"]},"lang":{"type":"string","enum":["de","en","fr"]},"width":{"type":"string"},"topBar":{"type":"boolean"},"scrollToTop":{"type":"boolean"},"button":{"type":"object","properties":{"text":{"type":"string","nullable":true},"align":{"type":"string","enum":["left","center","right"]}}}}},"safeModeAutomation":{"type":"boolean"},"designId":{"type":"string"},"entityId":{"type":"string","nullable":true},"mappingsAutomationId":{"type":"string"},"templateId":{"type":"string"},"targetedCustomer":{"type":"string"},"description":{"type":"string","nullable":true},"publicToken":{"type":"string","nullable":true},"runtimeEntities":{"type":"array","items":{"type":"string","enum":["ORDER","OPPORTUNITY"]}},"filePurposes":{"type":"array","items":{"type":"string"}},"entityTags":{"type":"array","items":{"type":"string"}},"addressSuggestionsFileUrl":{"type":"string","nullable":true,"deprecated":true,"description":"@deprecated Use addressSuggestionsFileId instead"},"addressSuggestionsFileId":{"type":"string","nullable":true},"addressSuggestionsCountryCode":{"type":"string","nullable":true,"description":"Country code for address format (e.g. DE, AT, CH, LU)"},"addressSuggestionsEnableAutoComplete":{"type":"boolean","description":"Whether address auto-complete is enabled"},"addressSuggestionsSource":{"type":"array","items":{"type":"string"},"description":"Sources for address auto-complete (e.g. deutschePostService, customAddressesFile)"},"addressSuggestionsEnableFreeText":{"type":"boolean","description":"Whether free text input is allowed when auto-complete is on"},"useNewDesign":{"type":"boolean","deprecated":true,"description":"This property is deprecated and will be removed in a future version"},"thirdPartyCookies":{"type":"boolean","description":"If false, third-party cookies are disabled to comply with GDPR regulations without asking for consent."},"accessMode":{"type":"string","enum":["PUBLIC","PRIVATE"]},"enableDarkMode":{"type":"boolean","description":"If true, the journey shows an icon to toggle dark mode"}},"additionalProperties":false},"validationRules":{"$ref":"#/components/schemas/ValidationRuleRef"},"_manifest":{"type":"array","description":"Manifest/Blueprint ID used to create/update the entity","items":{"type":"string","format":"uuid","example":"123e4567-e89b-12d3-a456-426614174000"}}},"required":["name","steps"]},"SearchJourneysQueryRequest":{"type":"object","properties":{"q":{"type":"string","description":"Lucene query syntax\\nSee https://lucene.apache.org/core/2_9_4/queryparsersyntax.html ; https://www.elastic.co/guide/en/kibana/current/lucene-query.html\\n","example":"_tags:*Flex*","default":"*"},"from":{"type":"integer","description":"The offset of the first result to return.\\nSee https://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-from-size.html\\n","example":0,"default":0},"size":{"type":"integer","description":"The maximum number of results to return.\\nSee https://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-from-size.html\\n","example":25,"default":25},"sort":{"type":"string","description":"The sort order. Follows Lucene syntax.\\n","example":"_created_at:desc","default":"_created_at:desc"}}},"SearchJourneysResponse":{"type":"object","properties":{"hits":{"type":"number","description":"The total number of hits.\\n","example":1},"results":{"type":"array","description":"The results.\\n","items":{"type":"object","properties":{"_id":{"type":"string","description":"Journey Entity ID","format":"uuid","example":"e0f8f8f8-f8f8-f8f8-f8f8-f8f8f8f8f8f8"},"_schema":{"type":"string","description":"Entity Schema (journey always in this case)","example":"journey"},"_title":{"type":"string","description":"Journey Entity Title","example":"Journey Entity Title"},"_org":{"type":"string","description":"Organization ID","example":"739224"},"_created_at":{"type":"string","format":"date-time","example":"2020-01-01T00:00:00.000Z"},"_updated_at":{"type":"string","format":"date-time","example":"2020-01-01T00:00:00.000Z"},"_tags":{"type":"array","items":{"type":"string","example":"Flex"}},"_manifest":{"type":"array","description":"Manifest ID used to create/update the entity","items":{"type":"string","format":"uuid","example":"123e4567-e89b-12d3-a456-426614174000"}},"journey_name":{"type":"string","description":"Journey Name","example":"Journey Name"},"journey_id":{"type":"string","format":"uuid","description":"Journey config ID","example":"de7df470-253e-11ed-9174-116b8a718c0a"},"journey_type":{"type":"string","description":"Journey Template","example":"Sales template"},"design":{"type":"string","description":"Journey Design Name","example":"Design EPILOT"},"created_by":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"User ID","example":"12345"}}}},"journey_version":{"type":"string","description":"Journey Version","enum":["Flex"]}}}}}},"Journey":{"allOf":[{"$ref":"#/components/schemas/JourneyCreationRequest"},{"$ref":"#/components/schemas/JourneyAuditInfo"},{"$ref":"#/components/schemas/JourneyFeatureFlags"}]},"JourneyFeatureFlags":{"type":"object","properties":{"featureFlags":{"type":"object","additionalProperties":true}}},"JourneyAuditInfo":{"type":"object","properties":{"createdAt":{"type":"string"},"lastModifiedAt":{"type":"string"},"deletedAt":{"type":"string"},"version":{"type":"number"},"revisions":{"type":"number"}},"required":["createdAt","lastModifiedAt","version","revisions"]},"JourneyValidationResponse":{"type":"object","properties":{"valid":{"type":"boolean","description":"Whether the journey configuration is valid"},"errors":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","description":"Pattern type (e.g. PatternA_DotsInStepId)"},"severity":{"type":"string","enum":["critical","high","medium","low"]},"message":{"type":"string"},"affectedStepIds":{"type":"array","items":{"type":"string"}},"count":{"type":"integer"},"autoFix":{"type":"object","properties":{"feasible":{"type":"boolean"},"confidence":{"type":"string","enum":["high","medium","low"]},"reason":{"type":"string"},"details":{"type":"string"}}}}},"description":"List of detected validation errors"},"warnings":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string"},"message":{"type":"string"}}},"description":"List of warnings (non-critical issues)"}},"required":["valid","errors"]},"JourneyValidationError":{"type":"object","properties":{"error":{"type":"string","example":"ValidationError","description":"Error type identifier"},"message":{"type":"string","example":"Journey configuration validation failed","description":"High-level error message"},"details":{"type":"array","items":{"type":"object","properties":{"pattern":{"type":"string","description":"Validation pattern that failed"},"severity":{"type":"string","enum":["critical","high","medium","low"]},"message":{"type":"string","description":"Detailed error message"},"count":{"type":"integer","description":"Number of issues found"}}},"description":"Detailed validation errors for each pattern that failed"}},"required":["error","message","details"]},"S3Reference":{"type":"object","properties":{"bucket":{"type":"string","example":"document-api-prod"},"key":{"type":"string","example":"uploads/my-template.pdf"}},"required":["bucket","key"]},"TemplateSettings":{"type":"object","description":"Template Settings for document generation","properties":{"custom_margins":{"description":"Custom margins for the document","type":"object","properties":{"top":{"description":"Top margin in cm","type":"number","example":2.54},"bottom":{"description":"Bottom margin in cm","type":"number","example":2.54}}},"suggested_margins":{"description":"Suggested margins for the document","type":"object","properties":{"top":{"description":"Top margin in cm","type":"number","example":2.54},"bottom":{"description":"Bottom margin in cm","type":"number","example":2.54}}},"display_margin_guidelines":{"description":"Display margin guidelines (applicable to partial generation only)","type":"boolean","example":true},"enable_data_table_margin_autofix":{"description":"Enable data table margin autofix","type":"boolean","example":false},"template_with_datatable":{"description":"A flag that indicates whether the template has 1 or more data tables in it","type":"boolean","example":false},"enabled_template_settings_persistence":{"description":"Enables the persistance of template settings","type":"boolean","example":false},"misconfigured_margins":{"description":"An indication that the page margins are misconfigured","type":"boolean","example":false},"file_entity_id":{"description":"The file entity id, used when persisting a new template version with updated settings","type":"string","format":"uuid","example":"1a2b3c4d-5e6f-7a8b-9c0d-1e2f3a4b5c6d"}}},"GenerateDocumentResponse":{"type":"object","properties":{"job_id":{"type":"string","format":"uuid"},"job_status":{"description":"Status of the job","type":"string","enum":["STARTED","PROCESSING","SUCCESS","FAILED"]},"message":{"description":"A message explaining the progress","type":"string"},"pdf_output":{"type":"object","properties":{"preview_url":{"description":"Pre-signed S3 GET URL for PDF preview","type":"string","example":"https://document-api-prod.s3.eu-central-1.amazonaws.com/preview/my-template-OR-001.pdf"},"output_document":{"type":"object","properties":{"filename":{"description":"Generated document filename for PDF","type":"string","example":"my-template-OR-001.pdf"},"s3ref":{"$ref":"#/components/schemas/S3Reference"}},"example":{"s3ref":{"bucket":"document-api-preview-prod","key":"preview/my-template.pdf"}}}}},"docx_output":{"type":"object","properties":{"preview_url":{"description":"Pre-signed S3 GET URL for DOCX preview","type":"string","example":"https://document-api-prod.s3.eu-central-1.amazonaws.com/preview/my-template-OR-001.docx"},"output_document":{"type":"object","properties":{"filename":{"description":"Generated document filename for DOCX","type":"string","example":"my-template-OR-001.docx"},"s3ref":{"$ref":"#/components/schemas/S3Reference"}},"example":{"s3ref":{"bucket":"document-api-preview-prod","key":"preview/my-template.docx"}}}}},"variable_payload":{"description":"List of variables and its corresponding replaced values from the document template","type":"object","properties":{"additionalProperties":{"type":"string"}}},"template_settings":{"$ref":"#/components/schemas/TemplateSettings"}}},"GenerateDocumentRequest":{"type":"object","properties":{"file_id":{"description":"Entity id for the template being used","type":"string","example":"1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p"},"context_data":{"description":"Custom values for variables in the template. Takes the higher precedence than others.","type":"object","properties":{"additionalProperties":{"type":"string"}}},"language":{"description":"Language code for the document","type":"string","example":"de"}},"required":["file_id","context_data"]},"GetSettingsForJourney":{"type":"object","properties":{"organizationId":{"type":"string","description":"ID of an organization in epilot platform","example":"739224"},"canary":{"type":"boolean","description":"The canary flag controls update frequency of epilot application: when true, customers receive continuous updates; when false, they only get updates with new version releases.","example":true},"thirdPartyCookies":{"type":"boolean","description":"When set to false, third-party cookies and resources should be completely disabled to comply with GDPR regulations.","example":true}}},"ButtonOption":{"type":"object","description":"A single button option data","properties":{"value":{"type":"string","example":"Button Hidden Value","description":"The value of the button"},"label":{"type":"string","example":"Button Label","description":"The label of the button"}}},"ValidationRuleRef":{"type":"object","description":"References to validation rules organized by blocks and fields.\\nMaps block IDs to either rule IDs (for block-level rules) or rule references (for field-level rules).\\n","additionalProperties":{"oneOf":[{"type":"string","description":"Rule ID for block-level validation"},{"$ref":"#/components/schemas/RuleRef"}]},"example":{"block1":"rule123","block2":{"field1":"rule456","field2":"rule789"}}},"RuleRef":{"type":"object","description":"Field-level rule references within a block.\\nMaps field names to rule IDs.\\n","additionalProperties":{"type":"string","description":"Rule ID for field-level validation"},"example":{"firstName":"rule123","lastName":"rule456","email":"rule789"}}},"securitySchemes":{"EpilotAuth":{"type":"http","scheme":"bearer","description":"Epilot Authorization Bearer Token - public access token / user token","bearerFormat":"JWT"},"PortalAuth":{"type":"http","scheme":"bearer","description":"Portal Authorization Bearer Token","bearerFormat":"JWT"}}},"servers":[{"url":"https://journey-config.sls.epilot.io"}]}')}},t={},r=function r(i){var o=t[i];if(void 0!==o)return o.exports;var n=t[i]={exports:{}};return e[i].call(n.exports,n,n.exports,r),n.exports}(799),i=exports;for(var o in r)i[o]=r[o];r.__esModule&&Object.defineProperty(i,"__esModule",{value:!0})})();
package/dist/openapi.d.ts CHANGED
@@ -306,6 +306,22 @@ declare namespace Components {
306
306
  */
307
307
  addressSuggestionsFileUrl?: string | null;
308
308
  addressSuggestionsFileId?: string | null;
309
+ /**
310
+ * Country code for address format (e.g. DE, AT, CH, LU)
311
+ */
312
+ addressSuggestionsCountryCode?: string | null;
313
+ /**
314
+ * Whether address auto-complete is enabled
315
+ */
316
+ addressSuggestionsEnableAutoComplete?: boolean;
317
+ /**
318
+ * Sources for address auto-complete (e.g. deutschePostService, customAddressesFile)
319
+ */
320
+ addressSuggestionsSource?: string[];
321
+ /**
322
+ * Whether free text input is allowed when auto-complete is on
323
+ */
324
+ addressSuggestionsEnableFreeText?: boolean;
309
325
  /**
310
326
  * This property is deprecated and will be removed in a future version
311
327
  */
@@ -346,6 +362,7 @@ declare namespace Components {
346
362
  */
347
363
  ValidationRuleRef;
348
364
  createdBy?: string;
365
+ updatedBy?: string | null;
349
366
  /**
350
367
  * If passed with value of null, the API won't modify the lastModifiedAt field on updating the journey
351
368
  */
@@ -533,6 +550,22 @@ declare namespace Components {
533
550
  */
534
551
  addressSuggestionsFileUrl?: string | null;
535
552
  addressSuggestionsFileId?: string | null;
553
+ /**
554
+ * Country code for address format (e.g. DE, AT, CH, LU)
555
+ */
556
+ addressSuggestionsCountryCode?: string | null;
557
+ /**
558
+ * Whether address auto-complete is enabled
559
+ */
560
+ addressSuggestionsEnableAutoComplete?: boolean;
561
+ /**
562
+ * Sources for address auto-complete (e.g. deutschePostService, customAddressesFile)
563
+ */
564
+ addressSuggestionsSource?: string[];
565
+ /**
566
+ * Whether free text input is allowed when auto-complete is on
567
+ */
568
+ addressSuggestionsEnableFreeText?: boolean;
536
569
  /**
537
570
  * This property is deprecated and will be removed in a future version
538
571
  */
@@ -573,6 +606,7 @@ declare namespace Components {
573
606
  */
574
607
  ValidationRuleRef;
575
608
  createdBy?: string;
609
+ updatedBy?: string | null;
576
610
  /**
577
611
  * If passed with value of null, the API won't modify the lastModifiedAt field on updating the journey
578
612
  */
@@ -736,6 +770,22 @@ declare namespace Components {
736
770
  */
737
771
  addressSuggestionsFileUrl?: string | null;
738
772
  addressSuggestionsFileId?: string | null;
773
+ /**
774
+ * Country code for address format (e.g. DE, AT, CH, LU)
775
+ */
776
+ addressSuggestionsCountryCode?: string | null;
777
+ /**
778
+ * Whether address auto-complete is enabled
779
+ */
780
+ addressSuggestionsEnableAutoComplete?: boolean;
781
+ /**
782
+ * Sources for address auto-complete (e.g. deutschePostService, customAddressesFile)
783
+ */
784
+ addressSuggestionsSource?: string[];
785
+ /**
786
+ * Whether free text input is allowed when auto-complete is on
787
+ */
788
+ addressSuggestionsEnableFreeText?: boolean;
739
789
  /**
740
790
  * This property is deprecated and will be removed in a future version
741
791
  */
@@ -794,6 +844,70 @@ declare namespace Components {
794
844
  export interface JourneyResponse {
795
845
  createdJourney?: Journey;
796
846
  }
847
+ export interface JourneyValidationError {
848
+ /**
849
+ * Error type identifier
850
+ * example:
851
+ * ValidationError
852
+ */
853
+ error: string;
854
+ /**
855
+ * High-level error message
856
+ * example:
857
+ * Journey configuration validation failed
858
+ */
859
+ message: string;
860
+ /**
861
+ * Detailed validation errors for each pattern that failed
862
+ */
863
+ details: {
864
+ /**
865
+ * Validation pattern that failed
866
+ */
867
+ pattern?: string;
868
+ severity?: "critical" | "high" | "medium" | "low";
869
+ /**
870
+ * Detailed error message
871
+ */
872
+ message?: string;
873
+ /**
874
+ * Number of issues found
875
+ */
876
+ count?: number;
877
+ }[];
878
+ }
879
+ export interface JourneyValidationResponse {
880
+ /**
881
+ * Whether the journey configuration is valid
882
+ */
883
+ valid: boolean;
884
+ /**
885
+ * List of detected validation errors
886
+ */
887
+ errors: {
888
+ /**
889
+ * Pattern type (e.g. PatternA_DotsInStepId)
890
+ */
891
+ type?: string;
892
+ severity?: "critical" | "high" | "medium" | "low";
893
+ message?: string;
894
+ affectedStepIds?: string[];
895
+ count?: number;
896
+ autoFix?: {
897
+ feasible?: boolean;
898
+ confidence?: "high" | "medium" | "low";
899
+ reason?: string;
900
+ details?: string;
901
+ };
902
+ }[];
903
+ /**
904
+ * List of warnings (non-critical issues)
905
+ */
906
+ warnings?: {
907
+ type?: string;
908
+ message?: string;
909
+ }[];
910
+ }
797
911
  /**
798
912
  * Patch request to update a journey (journey id is required) Support for nested properties (e.g. steps[0].uischema.elements[0].products) is supported.
799
913
  *
@@ -1030,7 +1144,7 @@ declare namespace Components {
1030
1144
  /**
1031
1145
  * The file entity id, used when persisting a new template version with updated settings
1032
1146
  * example:
1033
- * 1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p
1147
+ * 1a2b3c4d-5e6f-7a8b-9c0d-1e2f3a4b5c6d
1034
1148
  */
1035
1149
  file_entity_id?: string; // uuid
1036
1150
  }
@@ -1082,6 +1196,7 @@ declare namespace Paths {
1082
1196
  export type RequestBody = Components.Schemas.JourneyCreationRequest;
1083
1197
  namespace Responses {
1084
1198
  export type $201 = Components.Schemas.Journey;
1199
+ export type $400 = Components.Schemas.JourneyValidationError;
1085
1200
  }
1086
1201
  }
1087
1202
  namespace CreateJourneyV2 {
@@ -1102,6 +1217,7 @@ declare namespace Paths {
1102
1217
  export type RequestBody = Components.Schemas.JourneyCreationRequestV2;
1103
1218
  namespace Responses {
1104
1219
  export type $201 = Components.Schemas.JourneyCreationRequestV2;
1220
+ export type $400 = Components.Schemas.JourneyValidationError;
1105
1221
  }
1106
1222
  }
1107
1223
  namespace GenerateDocument {
@@ -1302,6 +1418,7 @@ declare namespace Paths {
1302
1418
  Components.Schemas.PatchUpdateJourneyRequest;
1303
1419
  namespace Responses {
1304
1420
  export type $200 = Components.Schemas.JourneyResponse;
1421
+ export type $400 = Components.Schemas.JourneyValidationError;
1305
1422
  export interface $404 {
1306
1423
  /**
1307
1424
  * example:
@@ -1319,6 +1436,7 @@ declare namespace Paths {
1319
1436
  Components.Schemas.PatchUpdateJourneyRequest;
1320
1437
  namespace Responses {
1321
1438
  export type $200 = Components.Schemas.JourneyCreationRequestV2;
1439
+ export type $400 = Components.Schemas.JourneyValidationError;
1322
1440
  export interface $404 {
1323
1441
  /**
1324
1442
  * example:
@@ -1380,6 +1498,7 @@ declare namespace Paths {
1380
1498
  namespace Responses {
1381
1499
  export interface $204 {
1382
1500
  }
1501
+ export type $400 = Components.Schemas.JourneyValidationError;
1383
1502
  export interface $409 {
1384
1503
  }
1385
1504
  }
@@ -1388,6 +1507,7 @@ declare namespace Paths {
1388
1507
  export type RequestBody = Components.Schemas.JourneyCreationRequestV2;
1389
1508
  namespace Responses {
1390
1509
  export type $200 = Components.Schemas.JourneyCreationRequestV2;
1510
+ export type $400 = Components.Schemas.JourneyValidationError;
1391
1511
  export interface $404 {
1392
1512
  /**
1393
1513
  * example:
@@ -1783,6 +1903,8 @@ export type JourneyCreationRequestV2 = Components.Schemas.JourneyCreationRequest
1783
1903
  export type JourneyFeatureFlags = Components.Schemas.JourneyFeatureFlags;
1784
1904
  export type JourneyProductsResponse = Components.Schemas.JourneyProductsResponse;
1785
1905
  export type JourneyResponse = Components.Schemas.JourneyResponse;
1906
+ export type JourneyValidationError = Components.Schemas.JourneyValidationError;
1907
+ export type JourneyValidationResponse = Components.Schemas.JourneyValidationResponse;
1786
1908
  export type PatchUpdateJourneyRequest = Components.Schemas.PatchUpdateJourneyRequest;
1787
1909
  export type RuleRef = Components.Schemas.RuleRef;
1788
1910
  export type S3Reference = Components.Schemas.S3Reference;
package/package.json CHANGED
@@ -1,19 +1,9 @@
1
1
  {
2
2
  "name": "@epilot/journey-client",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "API Client for epilot Journey API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
- "scripts": {
8
- "test": "vitest",
9
- "typescript": "tsc",
10
- "bundle-definition": "webpack",
11
- "openapi": "node ../../scripts/update-openapi.js https://docs.api.epilot.io/journey-config.yaml",
12
- "typegen": "openapi typegen src/openapi.json --client -b '/* eslint-disable */' > src/openapi.d.ts",
13
- "build": "npm run openapi && npm run typegen && npm run typescript && npm run bundle-definition",
14
- "eslint": "../node_modules/.bin/eslint -c ../.eslintrc.yml",
15
- "prepublishOnly": "npm run build"
16
- },
17
7
  "files": [
18
8
  "*.js",
19
9
  "*.d.ts",
@@ -51,10 +41,20 @@
51
41
  "copy-webpack-plugin": "^7.0.0",
52
42
  "json-loader": "^0.5.7",
53
43
  "openapi-client-axios-typegen": "^7.5.1",
44
+ "openapicmd": "^2.7.0",
54
45
  "ts-loader": "^8.3.0",
55
46
  "typescript": "^5.4.5",
56
47
  "vitest": "^1.6.0",
57
48
  "webpack": "^5.91.0",
58
49
  "webpack-cli": "^5.1.4"
50
+ },
51
+ "scripts": {
52
+ "test": "vitest",
53
+ "typescript": "tsc",
54
+ "bundle-definition": "webpack",
55
+ "openapi": "node ../../scripts/update-openapi.js https://docs.api.epilot.io/journey-config.yaml",
56
+ "typegen": "openapi typegen src/openapi.json --client -b '/* eslint-disable */' > src/openapi.d.ts",
57
+ "build": "npm run openapi && npm run typegen && npm run typescript && npm run bundle-definition",
58
+ "eslint": "../node_modules/.bin/eslint -c ../.eslintrc.yml"
59
59
  }
60
60
  }