@spiffcommerce/core 33.8.3 → 33.8.4-beta.ca264159-d680-5f73-a327-2eef32dff950
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +2 -2
- package/dist/index.js +190 -190
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2537 -2531
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -6062,7 +6062,7 @@ interface AddressValidationJob {
|
|
|
6062
6062
|
* @param workflowExperiences The Workflow Experiences to fetch jobs for.
|
|
6063
6063
|
* @returns The associated Address Validation Jobs for the requested Workflow Experiences.
|
|
6064
6064
|
*/
|
|
6065
|
-
declare const getValidationJobsForWorkflowExperiences: (workflowExperiences: WorkflowExperience[]) => Promise<(AddressValidationJob | undefined)[]
|
|
6065
|
+
declare const getValidationJobsForWorkflowExperiences: (workflowExperiences: WorkflowExperience[]) => Promise<(AddressValidationJob | undefined)[]>;
|
|
6066
6066
|
/**
|
|
6067
6067
|
* Retrieves an up-to-date version of the requested Address Validation Jobs.
|
|
6068
6068
|
* If a Job has been completed, the validation result will be present on the object.
|
|
@@ -6083,7 +6083,7 @@ declare const validateWorkflowExperienceRecipient: (workflowExperience: Workflow
|
|
|
6083
6083
|
* If an input Workflow Experience does not have a recipient, the associated Job will be `undefined`.
|
|
6084
6084
|
* The Jobs will likely be incomplete; consider polling `getAddressValidationJobs` with the ids of the Jobs you get from this function.
|
|
6085
6085
|
*/
|
|
6086
|
-
declare const validateWorkflowExperienceRecipients: (workflowExperiences: WorkflowExperience[]) => Promise<(AddressValidationJob | undefined)[]
|
|
6086
|
+
declare const validateWorkflowExperienceRecipients: (workflowExperiences: WorkflowExperience[]) => Promise<(AddressValidationJob | undefined)[]>;
|
|
6087
6087
|
/**
|
|
6088
6088
|
* Override the address of a specific workflow experience recipient
|
|
6089
6089
|
* @param workflowExperience The Workflow Experience to override. If this does not have a recipient attached, the function will immediately resolve.
|