gdc-common-utils-ts 2.9.12 → 2.9.13
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.
|
@@ -224,6 +224,14 @@ export type IndividualOnboardingDraftInput = Readonly<{
|
|
|
224
224
|
}>;
|
|
225
225
|
export type IndividualOnboardingDraftResult = Readonly<{
|
|
226
226
|
formFields: IndividualFormTemplateFields;
|
|
227
|
+
/**
|
|
228
|
+
* Original provider KYC payload retained for the gateway audit boundary.
|
|
229
|
+
*
|
|
230
|
+
* Normalized Schema.org claims do not prove when or by whom KYC was
|
|
231
|
+
* verified. Consumers must keep this payload separate from those claims and
|
|
232
|
+
* must not describe it as equivalent to certificate-signed PDF evidence.
|
|
233
|
+
*/
|
|
234
|
+
kyc?: IndividualOrganizationKycPayload;
|
|
227
235
|
claims?: Record<string, unknown>;
|
|
228
236
|
template?: IndividualOnboardingPdfTemplateInput;
|
|
229
237
|
documentReference?: IndividualOnboardingPdfDocumentReferenceEntry;
|
|
@@ -349,6 +349,7 @@ export function createIndividualOnboardingFacade() {
|
|
|
349
349
|
: undefined;
|
|
350
350
|
return {
|
|
351
351
|
formFields,
|
|
352
|
+
...(input.kyc ? { kyc: input.kyc } : {}),
|
|
352
353
|
...(input.template ? { template: input.template } : {}),
|
|
353
354
|
...(claims ? { claims } : {}),
|
|
354
355
|
...(documentReference ? { documentReference } : {}),
|