New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@trinsic/api

Package Overview
Dependencies
Maintainers
0
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@trinsic/api - npm Package Compare versions

Comparing version

to
2.0.0-alpha3

dist/esm/models/IndonesiaNikInput.d.ts

8

dist/apis/NetworkApi.d.ts

@@ -38,3 +38,3 @@ /**

/**
* Generate provider recommendations based on the given signals (phone number, countries, states). This is an experimental feature and may not be accurate
* Generate provider recommendations based on the given signals (phone number, countries, states).
* @summary Recommend Providers

@@ -48,3 +48,3 @@ * @param {RecommendRequest} [recommendRequest]

/**
* Generate provider recommendations based on the given signals (phone number, countries, states). This is an experimental feature and may not be accurate
* Generate provider recommendations based on the given signals (phone number, countries, states).
* Recommend Providers

@@ -69,3 +69,3 @@ */

/**
* Generate provider recommendations based on the given signals (phone number, countries, states). This is an experimental feature and may not be accurate
* Generate provider recommendations based on the given signals (phone number, countries, states).
* Recommend Providers

@@ -75,3 +75,3 @@ */

/**
* Generate provider recommendations based on the given signals (phone number, countries, states). This is an experimental feature and may not be accurate
* Generate provider recommendations based on the given signals (phone number, countries, states).
* Recommend Providers

@@ -78,0 +78,0 @@ */

@@ -67,3 +67,3 @@ "use strict";

/**
* Generate provider recommendations based on the given signals (phone number, countries, states). This is an experimental feature and may not be accurate
* Generate provider recommendations based on the given signals (phone number, countries, states).
* Recommend Providers

@@ -94,3 +94,3 @@ */

/**
* Generate provider recommendations based on the given signals (phone number, countries, states). This is an experimental feature and may not be accurate
* Generate provider recommendations based on the given signals (phone number, countries, states).
* Recommend Providers

@@ -97,0 +97,0 @@ */

@@ -38,3 +38,3 @@ /**

/**
* Generate provider recommendations based on the given signals (phone number, countries, states). This is an experimental feature and may not be accurate
* Generate provider recommendations based on the given signals (phone number, countries, states).
* @summary Recommend Providers

@@ -48,3 +48,3 @@ * @param {RecommendRequest} [recommendRequest]

/**
* Generate provider recommendations based on the given signals (phone number, countries, states). This is an experimental feature and may not be accurate
* Generate provider recommendations based on the given signals (phone number, countries, states).
* Recommend Providers

@@ -69,3 +69,3 @@ */

/**
* Generate provider recommendations based on the given signals (phone number, countries, states). This is an experimental feature and may not be accurate
* Generate provider recommendations based on the given signals (phone number, countries, states).
* Recommend Providers

@@ -75,3 +75,3 @@ */

/**
* Generate provider recommendations based on the given signals (phone number, countries, states). This is an experimental feature and may not be accurate
* Generate provider recommendations based on the given signals (phone number, countries, states).
* Recommend Providers

@@ -78,0 +78,0 @@ */

@@ -64,3 +64,3 @@ /* tslint:disable */

/**
* Generate provider recommendations based on the given signals (phone number, countries, states). This is an experimental feature and may not be accurate
* Generate provider recommendations based on the given signals (phone number, countries, states).
* Recommend Providers

@@ -91,3 +91,3 @@ */

/**
* Generate provider recommendations based on the given signals (phone number, countries, states). This is an experimental feature and may not be accurate
* Generate provider recommendations based on the given signals (phone number, countries, states).
* Recommend Providers

@@ -94,0 +94,0 @@ */

@@ -23,3 +23,3 @@ /**

*/
fullName?: string;
fullName?: string | null;
/**

@@ -30,3 +30,3 @@ * The user's date of birth, in `YYYY-MM-DD` format

*/
dateOfBirth?: Date;
dateOfBirth?: Date | null;
}

@@ -33,0 +33,0 @@ /**

@@ -38,4 +38,4 @@ /* tslint:disable */

'fullName': value['fullName'],
'dateOfBirth': value['dateOfBirth'] == null ? undefined : ((value['dateOfBirth']).toISOString().substring(0, 10)),
'dateOfBirth': value['dateOfBirth'] == null ? undefined : (value['dateOfBirth'].toISOString().substring(0, 10)),
};
}

@@ -23,3 +23,3 @@ /**

*/
line1?: string;
line1?: string | null;
/**

@@ -30,3 +30,3 @@ *

*/
line2?: string;
line2?: string | null;
/**

@@ -37,3 +37,3 @@ *

*/
line3?: string;
line3?: string | null;
/**

@@ -44,3 +44,3 @@ *

*/
city?: string;
city?: string | null;
/**

@@ -51,3 +51,3 @@ *

*/
subdivision?: string;
subdivision?: string | null;
/**

@@ -58,3 +58,3 @@ *

*/
postalCode?: string;
postalCode?: string | null;
/**

@@ -65,3 +65,3 @@ *

*/
country?: string;
country?: string | null;
/**

@@ -72,3 +72,3 @@ *

*/
fullAddress?: string;
fullAddress?: string | null;
}

@@ -75,0 +75,0 @@ /**

@@ -24,3 +24,3 @@ /**

*/
selfie?: string;
selfie?: string | null;
/**

@@ -31,3 +31,3 @@ *

*/
documentFront?: string;
documentFront?: string | null;
/**

@@ -38,3 +38,3 @@ *

*/
documentBack?: string;
documentBack?: string | null;
/**

@@ -45,3 +45,3 @@ *

*/
documentPortrait?: string;
documentPortrait?: string | null;
/**

@@ -48,0 +48,0 @@ *

@@ -23,3 +23,3 @@ /**

*/
nationalIdNumber?: string;
nationalIdNumber?: string | null;
/**

@@ -30,3 +30,3 @@ * The user's date of birth, in `YYYY-MM-DD` format

*/
dateOfBirth?: Date;
dateOfBirth?: Date | null;
/**

@@ -37,3 +37,3 @@ * The user's full name

*/
name?: string;
name?: string | null;
/**

@@ -44,3 +44,3 @@ * The base64-encoded bytes of the photo collected from the user

*/
photoBase64?: string;
photoBase64?: string | null;
}

@@ -47,0 +47,0 @@ /**

@@ -40,3 +40,3 @@ /* tslint:disable */

'nationalIdNumber': value['nationalIdNumber'],
'dateOfBirth': value['dateOfBirth'] == null ? undefined : ((value['dateOfBirth']).toISOString().substring(0, 10)),
'dateOfBirth': value['dateOfBirth'] == null ? undefined : (value['dateOfBirth'].toISOString().substring(0, 10)),
'name': value['name'],

@@ -43,0 +43,0 @@ 'photoBase64': value['photoBase64'],

@@ -35,3 +35,3 @@ /**

*/
digitalCnhFile?: string;
digitalCnhFile?: string | null;
/**

@@ -44,3 +44,3 @@ * The MIME Type of the file contained in `DigitalCnhFile`.

*/
digitalCnhFileContentType?: string;
digitalCnhFileContentType?: string | null;
/**

@@ -51,3 +51,3 @@ * The raw bytes of the image of the user's face, collected for biometric comparison.

*/
facialBiometryPhoto?: string;
facialBiometryPhoto?: string | null;
}

@@ -54,0 +54,0 @@ /**

@@ -31,3 +31,3 @@ /**

*/
providerInput?: ProviderInput;
providerInput?: ProviderInput | null;
/**

@@ -40,3 +40,3 @@ * The Redirect URL to which the user should be sent after the session is complete.

*/
redirectUrl?: string;
redirectUrl?: string | null;
/**

@@ -77,3 +77,3 @@ * The list of capabilities your integration supports. Capabilities are the core of Trinsic's whitelabel-with-optional-fallback offering.

*/
fallbackToHostedUI?: boolean;
fallbackToHostedUI?: boolean | null;
}

@@ -80,0 +80,0 @@ /**

@@ -36,3 +36,3 @@ /**

*/
providerInput?: ProviderInput;
providerInput?: ProviderInput | null;
}

@@ -39,0 +39,0 @@ /**

@@ -35,3 +35,3 @@ /**

*/
launchUrl?: string;
launchUrl?: string | null;
}

@@ -38,0 +38,0 @@ /**

@@ -27,3 +27,3 @@ /**

*/
redirectUrl?: string;
redirectUrl?: string | null;
/**

@@ -34,3 +34,3 @@ * The list of allowed identity providers. If not specified, all available providers will be allowed.

*/
providers?: Array<string>;
providers?: Array<string> | null;
/**

@@ -43,3 +43,3 @@ * Known identity data of an individual being verified.

*/
knownIdentityData?: KnownIdentityData;
knownIdentityData?: KnownIdentityData | null;
}

@@ -46,0 +46,0 @@ /**

@@ -33,3 +33,3 @@ /**

*/
launchUrl?: string;
launchUrl?: string | null;
}

@@ -36,0 +36,0 @@ /**

@@ -24,3 +24,3 @@ /**

*/
type?: DocumentType;
type?: DocumentType | null;
/**

@@ -31,3 +31,3 @@ *

*/
number?: string;
number?: string | null;
/**

@@ -38,3 +38,3 @@ *

*/
issueDate?: Date;
issueDate?: Date | null;
/**

@@ -45,3 +45,3 @@ *

*/
expirationDate?: Date;
expirationDate?: Date | null;
/**

@@ -52,3 +52,3 @@ *

*/
issuingCountry?: string;
issuingCountry?: string | null;
/**

@@ -59,3 +59,3 @@ *

*/
issuingAuthority?: string;
issuingAuthority?: string | null;
}

@@ -62,0 +62,0 @@ /**

@@ -44,4 +44,4 @@ /* tslint:disable */

'number': value['number'],
'issueDate': value['issueDate'] == null ? undefined : ((value['issueDate']).toISOString().substring(0, 10)),
'expirationDate': value['expirationDate'] == null ? undefined : ((value['expirationDate']).toISOString().substring(0, 10)),
'issueDate': value['issueDate'] == null ? undefined : (value['issueDate'].toISOString().substring(0, 10)),
'expirationDate': value['expirationDate'] == null ? undefined : (value['expirationDate'].toISOString().substring(0, 10)),
'issuingCountry': value['issuingCountry'],

@@ -48,0 +48,0 @@ 'issuingAuthority': value['issuingAuthority'],

@@ -23,3 +23,3 @@ /**

*/
report?: string;
report?: string | null;
}

@@ -26,0 +26,0 @@ /**

@@ -31,3 +31,3 @@ /**

*/
identityData?: IdentityData;
identityData?: IdentityData | null;
}

@@ -34,0 +34,0 @@ /**

@@ -23,3 +23,3 @@ /**

*/
type?: string;
type?: string | null;
/**

@@ -30,3 +30,3 @@ *

*/
title?: string;
title?: string | null;
/**

@@ -37,3 +37,3 @@ *

*/
status?: number;
status?: number | null;
/**

@@ -44,3 +44,3 @@ *

*/
detail?: string;
detail?: string | null;
/**

@@ -51,3 +51,3 @@ *

*/
instance?: string;
instance?: string | null;
/**

@@ -54,0 +54,0 @@ *

@@ -26,3 +26,3 @@ /**

*/
originatingProviderId?: string;
originatingProviderId?: string | null;
/**

@@ -33,3 +33,3 @@ *

*/
person?: PersonData;
person?: PersonData | null;
/**

@@ -40,3 +40,3 @@ *

*/
document?: DocumentData;
document?: DocumentData | null;
/**

@@ -47,3 +47,3 @@ *

*/
attachmentAccessKeys?: AttachmentAccessKeys;
attachmentAccessKeys?: AttachmentAccessKeys | null;
}

@@ -50,0 +50,0 @@ /**

@@ -24,5 +24,7 @@ export * from './AadhaarInput';

export * from './IdentityData';
export * from './IndonesiaNikInput';
export * from './IntegrationCapability';
export * from './IntegrationLaunchMethod';
export * from './IntegrationStep';
export * from './KenyaNidInput';
export * from './KnownAddress';

@@ -33,2 +35,4 @@ export * from './KnownIdentityData';

export * from './ListSessionsResponse';
export * from './MexicoCurpInput';
export * from './NigeriaNinInput';
export * from './OrderDirection';

@@ -53,2 +57,3 @@ export * from './PersonData';

export * from './Sex';
export * from './SouthAfricaNidInput';
export * from './StepRefreshInfo';

@@ -26,5 +26,7 @@ /* tslint:disable */

export * from './IdentityData';
export * from './IndonesiaNikInput';
export * from './IntegrationCapability';
export * from './IntegrationLaunchMethod';
export * from './IntegrationStep';
export * from './KenyaNidInput';
export * from './KnownAddress';

@@ -35,2 +37,4 @@ export * from './KnownIdentityData';

export * from './ListSessionsResponse';
export * from './MexicoCurpInput';
export * from './NigeriaNinInput';
export * from './OrderDirection';

@@ -55,2 +59,3 @@ export * from './PersonData';

export * from './Sex';
export * from './SouthAfricaNidInput';
export * from './StepRefreshInfo';

@@ -37,3 +37,3 @@ /**

*/
refresh: StepRefreshInfo;
refresh: StepRefreshInfo | null;
}

@@ -40,0 +40,0 @@ /**

@@ -23,3 +23,3 @@ /**

*/
line1?: string;
line1?: string | null;
/**

@@ -30,3 +30,3 @@ *

*/
line2?: string;
line2?: string | null;
/**

@@ -37,3 +37,3 @@ *

*/
line3?: string;
line3?: string | null;
/**

@@ -44,3 +44,3 @@ *

*/
city?: string;
city?: string | null;
/**

@@ -51,3 +51,3 @@ *

*/
subdivision?: string;
subdivision?: string | null;
/**

@@ -59,3 +59,3 @@ * Deprecated. Use `Subdivision` instead.

*/
state?: string;
state?: string | null;
/**

@@ -66,3 +66,3 @@ *

*/
postalCode?: string;
postalCode?: string | null;
/**

@@ -73,3 +73,3 @@ *

*/
country?: string;
country?: string | null;
}

@@ -76,0 +76,0 @@ /**

@@ -26,3 +26,3 @@ /**

*/
person?: KnownPersonData;
person?: KnownPersonData | null;
}

@@ -29,0 +29,0 @@ /**

@@ -24,3 +24,3 @@ /**

*/
givenName?: string;
givenName?: string | null;
/**

@@ -31,3 +31,3 @@ * Family (last) name of the individual

*/
familyName?: string;
familyName?: string | null;
/**

@@ -38,3 +38,3 @@ * Middle name of the individual

*/
middleName?: string;
middleName?: string | null;
/**

@@ -45,3 +45,3 @@ * Full name of the individual.

*/
fullName?: string;
fullName?: string | null;
/**

@@ -52,3 +52,3 @@ * Suffix of the individual

*/
suffix?: string;
suffix?: string | null;
/**

@@ -59,3 +59,3 @@ * The phone number (with preceding + character and country code) of the individual being verified

*/
phoneNumber?: string;
phoneNumber?: string | null;
/**

@@ -66,3 +66,3 @@ * The address of the individual being verified

*/
address?: KnownAddress;
address?: KnownAddress | null;
/**

@@ -73,3 +73,3 @@ * Date of birth of the individual, in the format "YYYY-MM-DD"

*/
dateOfBirth?: string;
dateOfBirth?: string | null;
}

@@ -76,0 +76,0 @@ /**

@@ -25,3 +25,3 @@ /**

*/
givenName?: string;
givenName?: string | null;
/**

@@ -32,3 +32,3 @@ *

*/
familyName?: string;
familyName?: string | null;
/**

@@ -39,3 +39,3 @@ *

*/
middleName?: string;
middleName?: string | null;
/**

@@ -46,3 +46,3 @@ *

*/
fullName?: string;
fullName?: string | null;
/**

@@ -53,3 +53,3 @@ *

*/
suffix?: string;
suffix?: string | null;
/**

@@ -60,3 +60,3 @@ *

*/
nationality?: string;
nationality?: string | null;
/**

@@ -67,3 +67,3 @@ *

*/
sex?: Sex;
sex?: Sex | null;
/**

@@ -74,3 +74,3 @@ *

*/
phoneNumber?: string;
phoneNumber?: string | null;
/**

@@ -81,3 +81,3 @@ *

*/
address?: Address;
address?: Address | null;
/**

@@ -88,3 +88,3 @@ *

*/
dateOfBirth?: Date;
dateOfBirth?: Date | null;
}

@@ -91,0 +91,0 @@ /**

@@ -56,4 +56,4 @@ /* tslint:disable */

'address': AddressToJSON(value['address']),
'dateOfBirth': value['dateOfBirth'] == null ? undefined : ((value['dateOfBirth']).toISOString().substring(0, 10)),
'dateOfBirth': value['dateOfBirth'] == null ? undefined : (value['dateOfBirth'].toISOString().substring(0, 10)),
};
}

@@ -23,3 +23,3 @@ /**

*/
givenName?: string;
givenName?: string | null;
/**

@@ -30,3 +30,3 @@ * The user's middle name

*/
middleName?: string;
middleName?: string | null;
/**

@@ -37,3 +37,3 @@ * The user's family / last name

*/
familyName?: string;
familyName?: string | null;
/**

@@ -44,3 +44,3 @@ * The user's name suffix

*/
suffix?: string;
suffix?: string | null;
/**

@@ -51,3 +51,3 @@ * The user's date of birth, in `YYYY-MM-DD` format

*/
dateOfBirth?: Date;
dateOfBirth?: Date | null;
}

@@ -54,0 +54,0 @@ /**

@@ -44,4 +44,4 @@ /* tslint:disable */

'suffix': value['suffix'],
'dateOfBirth': value['dateOfBirth'] == null ? undefined : ((value['dateOfBirth']).toISOString().substring(0, 10)),
'dateOfBirth': value['dateOfBirth'] == null ? undefined : (value['dateOfBirth'].toISOString().substring(0, 10)),
};
}

@@ -23,3 +23,3 @@ /**

*/
qrCodeText?: string;
qrCodeText?: string | null;
/**

@@ -30,3 +30,3 @@ * The raw bytes of the image containing the user's QR code.

*/
qrCodeImage?: string;
qrCodeImage?: string | null;
}

@@ -33,0 +33,0 @@ /**

@@ -24,3 +24,3 @@ /**

*/
type?: string;
type?: string | null;
/**

@@ -31,3 +31,3 @@ *

*/
title?: string;
title?: string | null;
/**

@@ -38,3 +38,3 @@ *

*/
status?: number;
status?: number | null;
/**

@@ -45,3 +45,3 @@ *

*/
detail?: string;
detail?: string | null;
/**

@@ -52,3 +52,3 @@ *

*/
instance?: string;
instance?: string | null;
}

@@ -55,0 +55,0 @@ /**

@@ -24,3 +24,3 @@ /**

*/
documentScan?: DocumentScanAttachments;
documentScan?: DocumentScanAttachments | null;
}

@@ -27,0 +27,0 @@ /**

@@ -41,3 +41,3 @@ /**

*/
childProviderIds?: Array<string>;
childProviderIds?: Array<string> | null;
}

@@ -44,0 +44,0 @@ /**

@@ -15,4 +15,9 @@ /**

import type { AadhaarInput } from './AadhaarInput';
import type { KenyaNidInput } from './KenyaNidInput';
import type { NigeriaNinInput } from './NigeriaNinInput';
import type { BrazilCpfCheckInput } from './BrazilCpfCheckInput';
import type { MexicoCurpInput } from './MexicoCurpInput';
import type { BrazilDigitalCnhInput } from './BrazilDigitalCnhInput';
import type { IndonesiaNikInput } from './IndonesiaNikInput';
import type { SouthAfricaNidInput } from './SouthAfricaNidInput';
import type { PhilippineMatchInput } from './PhilippineMatchInput';

@@ -26,2 +31,32 @@ /**

/**
* Input for the `f-indonesia-nik` integration
* @type {IndonesiaNikInput}
* @memberof ProviderInput
*/
indonesiaNik?: IndonesiaNikInput | null;
/**
* Input for the `f-mexico-curp` integration
* @type {MexicoCurpInput}
* @memberof ProviderInput
*/
mexicoCurp?: MexicoCurpInput | null;
/**
* Input for the `f-south-africa-nid` integration
* @type {SouthAfricaNidInput}
* @memberof ProviderInput
*/
southAfricaNid?: SouthAfricaNidInput | null;
/**
* Input for the `f-kenya-nid` integration
* @type {KenyaNidInput}
* @memberof ProviderInput
*/
kenyaNid?: KenyaNidInput | null;
/**
* Input for the `f-nigeria-nin` integration
* @type {NigeriaNinInput}
* @memberof ProviderInput
*/
nigeriaNin?: NigeriaNinInput | null;
/**
* Input for the `f-india-aadhaar-match` integration

@@ -31,3 +66,3 @@ * @type {AadhaarInput}

*/
aadhaar?: AadhaarInput;
aadhaar?: AadhaarInput | null;
/**

@@ -38,3 +73,3 @@ * Input for the `bangladesh-nid` integration

*/
bangladeshNationalId?: BangladeshNationalIdInput;
bangladeshNationalId?: BangladeshNationalIdInput | null;
/**

@@ -45,3 +80,3 @@ * Input for the `g-brazil-cpf` integration

*/
brazilCpfCheck?: BrazilCpfCheckInput;
brazilCpfCheck?: BrazilCpfCheckInput | null;
/**

@@ -52,3 +87,3 @@ * Input for the `g-brazil-digital-cnh` integration

*/
brazilDigitalCnh?: BrazilDigitalCnhInput;
brazilDigitalCnh?: BrazilDigitalCnhInput | null;
/**

@@ -59,3 +94,3 @@ * Input for the `b-philsys-biometric` integration

*/
philippineMatch?: PhilippineMatchInput;
philippineMatch?: PhilippineMatchInput | null;
/**

@@ -66,3 +101,3 @@ * Input for the `b-philippine-qr-digital-national-id` and `b-philippine-qr-ephill-id` integrations

*/
philippineQR?: PhilippineQRInput;
philippineQR?: PhilippineQRInput | null;
}

@@ -69,0 +104,0 @@ /**

@@ -17,4 +17,9 @@ /* tslint:disable */

import { AadhaarInputFromJSON, AadhaarInputToJSON, } from './AadhaarInput';
import { KenyaNidInputFromJSON, KenyaNidInputToJSON, } from './KenyaNidInput';
import { NigeriaNinInputFromJSON, NigeriaNinInputToJSON, } from './NigeriaNinInput';
import { BrazilCpfCheckInputFromJSON, BrazilCpfCheckInputToJSON, } from './BrazilCpfCheckInput';
import { MexicoCurpInputFromJSON, MexicoCurpInputToJSON, } from './MexicoCurpInput';
import { BrazilDigitalCnhInputFromJSON, BrazilDigitalCnhInputToJSON, } from './BrazilDigitalCnhInput';
import { IndonesiaNikInputFromJSON, IndonesiaNikInputToJSON, } from './IndonesiaNikInput';
import { SouthAfricaNidInputFromJSON, SouthAfricaNidInputToJSON, } from './SouthAfricaNidInput';
import { PhilippineMatchInputFromJSON, PhilippineMatchInputToJSON, } from './PhilippineMatchInput';

@@ -35,2 +40,7 @@ /**

return {
'indonesiaNik': json['indonesiaNik'] == null ? undefined : IndonesiaNikInputFromJSON(json['indonesiaNik']),
'mexicoCurp': json['mexicoCurp'] == null ? undefined : MexicoCurpInputFromJSON(json['mexicoCurp']),
'southAfricaNid': json['southAfricaNid'] == null ? undefined : SouthAfricaNidInputFromJSON(json['southAfricaNid']),
'kenyaNid': json['kenyaNid'] == null ? undefined : KenyaNidInputFromJSON(json['kenyaNid']),
'nigeriaNin': json['nigeriaNin'] == null ? undefined : NigeriaNinInputFromJSON(json['nigeriaNin']),
'aadhaar': json['aadhaar'] == null ? undefined : AadhaarInputFromJSON(json['aadhaar']),

@@ -49,2 +59,7 @@ 'bangladeshNationalId': json['bangladeshNationalId'] == null ? undefined : BangladeshNationalIdInputFromJSON(json['bangladeshNationalId']),

return {
'indonesiaNik': IndonesiaNikInputToJSON(value['indonesiaNik']),
'mexicoCurp': MexicoCurpInputToJSON(value['mexicoCurp']),
'southAfricaNid': SouthAfricaNidInputToJSON(value['southAfricaNid']),
'kenyaNid': KenyaNidInputToJSON(value['kenyaNid']),
'nigeriaNin': NigeriaNinInputToJSON(value['nigeriaNin']),
'aadhaar': AadhaarInputToJSON(value['aadhaar']),

@@ -51,0 +66,0 @@ 'bangladeshNationalId': BangladeshNationalIdInputToJSON(value['bangladeshNationalId']),

@@ -23,3 +23,3 @@ /**

*/
phoneNumber?: string;
phoneNumber?: string | null;
/**

@@ -30,3 +30,3 @@ * A list of countries, in alpha-2 ISO 3166 format, you wish to specify for the recommendation, this can include the user's country of residence, nationality, etc.

*/
countries?: Array<string>;
countries?: Array<string> | null;
/**

@@ -37,4 +37,10 @@ * If one of the countries has subdivisions, for example the US states, you can specify a list of these to further refine the recommendation (e.g., CA, UT, NY)

*/
subdivisions?: Array<string>;
subdivisions?: Array<string> | null;
/**
* Provide the IP addresses of the user you wish to generate a recommendation for. Will be used to look up the user's geographic location.
* @type {Array<string>}
* @memberof RecommendRequest
*/
ipAddresses?: Array<string> | null;
/**
* If true, the recommendation will include providers that are disabled for the app

@@ -44,3 +50,3 @@ * @type {boolean}

*/
includeDisabledProviders?: boolean;
includeDisabledProviders?: boolean | null;
}

@@ -47,0 +53,0 @@ /**

@@ -31,2 +31,3 @@ /* tslint:disable */

'subdivisions': json['subdivisions'] == null ? undefined : json['subdivisions'],
'ipAddresses': json['ipAddresses'] == null ? undefined : json['ipAddresses'],
'includeDisabledProviders': json['includeDisabledProviders'] == null ? undefined : json['includeDisabledProviders'],

@@ -43,4 +44,5 @@ };

'subdivisions': value['subdivisions'],
'ipAddresses': value['ipAddresses'],
'includeDisabledProviders': value['includeDisabledProviders'],
};
}

@@ -23,3 +23,3 @@ /**

*/
resultsAccessKey?: string;
resultsAccessKey?: string | null;
}

@@ -26,0 +26,0 @@ /**

@@ -30,3 +30,3 @@ /**

*/
resultsAccessKey?: string;
resultsAccessKey?: string | null;
}

@@ -33,0 +33,0 @@ /**

@@ -49,3 +49,3 @@ /**

*/
errorCode?: SessionErrorCode;
errorCode?: SessionErrorCode | null;
/**

@@ -52,0 +52,0 @@ * The unix timestamp, in seconds, when this session was created

@@ -23,3 +23,3 @@ /**

*/
fullName?: string;
fullName?: string | null;
/**

@@ -30,3 +30,3 @@ * The user's date of birth, in `YYYY-MM-DD` format

*/
dateOfBirth?: Date;
dateOfBirth?: Date | null;
}

@@ -33,0 +33,0 @@ /**

@@ -44,4 +44,4 @@ "use strict";

'fullName': value['fullName'],
'dateOfBirth': value['dateOfBirth'] == null ? undefined : ((value['dateOfBirth']).toISOString().substring(0, 10)),
'dateOfBirth': value['dateOfBirth'] == null ? undefined : (value['dateOfBirth'].toISOString().substring(0, 10)),
};
}

@@ -23,3 +23,3 @@ /**

*/
line1?: string;
line1?: string | null;
/**

@@ -30,3 +30,3 @@ *

*/
line2?: string;
line2?: string | null;
/**

@@ -37,3 +37,3 @@ *

*/
line3?: string;
line3?: string | null;
/**

@@ -44,3 +44,3 @@ *

*/
city?: string;
city?: string | null;
/**

@@ -51,3 +51,3 @@ *

*/
subdivision?: string;
subdivision?: string | null;
/**

@@ -58,3 +58,3 @@ *

*/
postalCode?: string;
postalCode?: string | null;
/**

@@ -65,3 +65,3 @@ *

*/
country?: string;
country?: string | null;
/**

@@ -72,3 +72,3 @@ *

*/
fullAddress?: string;
fullAddress?: string | null;
}

@@ -75,0 +75,0 @@ /**

@@ -24,3 +24,3 @@ /**

*/
selfie?: string;
selfie?: string | null;
/**

@@ -31,3 +31,3 @@ *

*/
documentFront?: string;
documentFront?: string | null;
/**

@@ -38,3 +38,3 @@ *

*/
documentBack?: string;
documentBack?: string | null;
/**

@@ -45,3 +45,3 @@ *

*/
documentPortrait?: string;
documentPortrait?: string | null;
/**

@@ -48,0 +48,0 @@ *

@@ -23,3 +23,3 @@ /**

*/
nationalIdNumber?: string;
nationalIdNumber?: string | null;
/**

@@ -30,3 +30,3 @@ * The user's date of birth, in `YYYY-MM-DD` format

*/
dateOfBirth?: Date;
dateOfBirth?: Date | null;
/**

@@ -37,3 +37,3 @@ * The user's full name

*/
name?: string;
name?: string | null;
/**

@@ -44,3 +44,3 @@ * The base64-encoded bytes of the photo collected from the user

*/
photoBase64?: string;
photoBase64?: string | null;
}

@@ -47,0 +47,0 @@ /**

@@ -46,3 +46,3 @@ "use strict";

'nationalIdNumber': value['nationalIdNumber'],
'dateOfBirth': value['dateOfBirth'] == null ? undefined : ((value['dateOfBirth']).toISOString().substring(0, 10)),
'dateOfBirth': value['dateOfBirth'] == null ? undefined : (value['dateOfBirth'].toISOString().substring(0, 10)),
'name': value['name'],

@@ -49,0 +49,0 @@ 'photoBase64': value['photoBase64'],

@@ -35,3 +35,3 @@ /**

*/
digitalCnhFile?: string;
digitalCnhFile?: string | null;
/**

@@ -44,3 +44,3 @@ * The MIME Type of the file contained in `DigitalCnhFile`.

*/
digitalCnhFileContentType?: string;
digitalCnhFileContentType?: string | null;
/**

@@ -51,3 +51,3 @@ * The raw bytes of the image of the user's face, collected for biometric comparison.

*/
facialBiometryPhoto?: string;
facialBiometryPhoto?: string | null;
}

@@ -54,0 +54,0 @@ /**

@@ -31,3 +31,3 @@ /**

*/
providerInput?: ProviderInput;
providerInput?: ProviderInput | null;
/**

@@ -40,3 +40,3 @@ * The Redirect URL to which the user should be sent after the session is complete.

*/
redirectUrl?: string;
redirectUrl?: string | null;
/**

@@ -77,3 +77,3 @@ * The list of capabilities your integration supports. Capabilities are the core of Trinsic's whitelabel-with-optional-fallback offering.

*/
fallbackToHostedUI?: boolean;
fallbackToHostedUI?: boolean | null;
}

@@ -80,0 +80,0 @@ /**

@@ -36,3 +36,3 @@ /**

*/
providerInput?: ProviderInput;
providerInput?: ProviderInput | null;
}

@@ -39,0 +39,0 @@ /**

@@ -35,3 +35,3 @@ /**

*/
launchUrl?: string;
launchUrl?: string | null;
}

@@ -38,0 +38,0 @@ /**

@@ -27,3 +27,3 @@ /**

*/
redirectUrl?: string;
redirectUrl?: string | null;
/**

@@ -34,3 +34,3 @@ * The list of allowed identity providers. If not specified, all available providers will be allowed.

*/
providers?: Array<string>;
providers?: Array<string> | null;
/**

@@ -43,3 +43,3 @@ * Known identity data of an individual being verified.

*/
knownIdentityData?: KnownIdentityData;
knownIdentityData?: KnownIdentityData | null;
}

@@ -46,0 +46,0 @@ /**

@@ -33,3 +33,3 @@ /**

*/
launchUrl?: string;
launchUrl?: string | null;
}

@@ -36,0 +36,0 @@ /**

@@ -24,3 +24,3 @@ /**

*/
type?: DocumentType;
type?: DocumentType | null;
/**

@@ -31,3 +31,3 @@ *

*/
number?: string;
number?: string | null;
/**

@@ -38,3 +38,3 @@ *

*/
issueDate?: Date;
issueDate?: Date | null;
/**

@@ -45,3 +45,3 @@ *

*/
expirationDate?: Date;
expirationDate?: Date | null;
/**

@@ -52,3 +52,3 @@ *

*/
issuingCountry?: string;
issuingCountry?: string | null;
/**

@@ -59,3 +59,3 @@ *

*/
issuingAuthority?: string;
issuingAuthority?: string | null;
}

@@ -62,0 +62,0 @@ /**

@@ -50,4 +50,4 @@ "use strict";

'number': value['number'],
'issueDate': value['issueDate'] == null ? undefined : ((value['issueDate']).toISOString().substring(0, 10)),
'expirationDate': value['expirationDate'] == null ? undefined : ((value['expirationDate']).toISOString().substring(0, 10)),
'issueDate': value['issueDate'] == null ? undefined : (value['issueDate'].toISOString().substring(0, 10)),
'expirationDate': value['expirationDate'] == null ? undefined : (value['expirationDate'].toISOString().substring(0, 10)),
'issuingCountry': value['issuingCountry'],

@@ -54,0 +54,0 @@ 'issuingAuthority': value['issuingAuthority'],

@@ -23,3 +23,3 @@ /**

*/
report?: string;
report?: string | null;
}

@@ -26,0 +26,0 @@ /**

@@ -31,3 +31,3 @@ /**

*/
identityData?: IdentityData;
identityData?: IdentityData | null;
}

@@ -34,0 +34,0 @@ /**

@@ -23,3 +23,3 @@ /**

*/
type?: string;
type?: string | null;
/**

@@ -30,3 +30,3 @@ *

*/
title?: string;
title?: string | null;
/**

@@ -37,3 +37,3 @@ *

*/
status?: number;
status?: number | null;
/**

@@ -44,3 +44,3 @@ *

*/
detail?: string;
detail?: string | null;
/**

@@ -51,3 +51,3 @@ *

*/
instance?: string;
instance?: string | null;
/**

@@ -54,0 +54,0 @@ *

@@ -26,3 +26,3 @@ /**

*/
originatingProviderId?: string;
originatingProviderId?: string | null;
/**

@@ -33,3 +33,3 @@ *

*/
person?: PersonData;
person?: PersonData | null;
/**

@@ -40,3 +40,3 @@ *

*/
document?: DocumentData;
document?: DocumentData | null;
/**

@@ -47,3 +47,3 @@ *

*/
attachmentAccessKeys?: AttachmentAccessKeys;
attachmentAccessKeys?: AttachmentAccessKeys | null;
}

@@ -50,0 +50,0 @@ /**

@@ -24,5 +24,7 @@ export * from './AadhaarInput';

export * from './IdentityData';
export * from './IndonesiaNikInput';
export * from './IntegrationCapability';
export * from './IntegrationLaunchMethod';
export * from './IntegrationStep';
export * from './KenyaNidInput';
export * from './KnownAddress';

@@ -33,2 +35,4 @@ export * from './KnownIdentityData';

export * from './ListSessionsResponse';
export * from './MexicoCurpInput';
export * from './NigeriaNinInput';
export * from './OrderDirection';

@@ -53,2 +57,3 @@ export * from './PersonData';

export * from './Sex';
export * from './SouthAfricaNidInput';
export * from './StepRefreshInfo';

@@ -42,5 +42,7 @@ "use strict";

__exportStar(require("./IdentityData"), exports);
__exportStar(require("./IndonesiaNikInput"), exports);
__exportStar(require("./IntegrationCapability"), exports);
__exportStar(require("./IntegrationLaunchMethod"), exports);
__exportStar(require("./IntegrationStep"), exports);
__exportStar(require("./KenyaNidInput"), exports);
__exportStar(require("./KnownAddress"), exports);

@@ -51,2 +53,4 @@ __exportStar(require("./KnownIdentityData"), exports);

__exportStar(require("./ListSessionsResponse"), exports);
__exportStar(require("./MexicoCurpInput"), exports);
__exportStar(require("./NigeriaNinInput"), exports);
__exportStar(require("./OrderDirection"), exports);

@@ -71,2 +75,3 @@ __exportStar(require("./PersonData"), exports);

__exportStar(require("./Sex"), exports);
__exportStar(require("./SouthAfricaNidInput"), exports);
__exportStar(require("./StepRefreshInfo"), exports);

@@ -37,3 +37,3 @@ /**

*/
refresh: StepRefreshInfo;
refresh: StepRefreshInfo | null;
}

@@ -40,0 +40,0 @@ /**

@@ -23,3 +23,3 @@ /**

*/
line1?: string;
line1?: string | null;
/**

@@ -30,3 +30,3 @@ *

*/
line2?: string;
line2?: string | null;
/**

@@ -37,3 +37,3 @@ *

*/
line3?: string;
line3?: string | null;
/**

@@ -44,3 +44,3 @@ *

*/
city?: string;
city?: string | null;
/**

@@ -51,3 +51,3 @@ *

*/
subdivision?: string;
subdivision?: string | null;
/**

@@ -59,3 +59,3 @@ * Deprecated. Use `Subdivision` instead.

*/
state?: string;
state?: string | null;
/**

@@ -66,3 +66,3 @@ *

*/
postalCode?: string;
postalCode?: string | null;
/**

@@ -73,3 +73,3 @@ *

*/
country?: string;
country?: string | null;
}

@@ -76,0 +76,0 @@ /**

@@ -26,3 +26,3 @@ /**

*/
person?: KnownPersonData;
person?: KnownPersonData | null;
}

@@ -29,0 +29,0 @@ /**

@@ -24,3 +24,3 @@ /**

*/
givenName?: string;
givenName?: string | null;
/**

@@ -31,3 +31,3 @@ * Family (last) name of the individual

*/
familyName?: string;
familyName?: string | null;
/**

@@ -38,3 +38,3 @@ * Middle name of the individual

*/
middleName?: string;
middleName?: string | null;
/**

@@ -45,3 +45,3 @@ * Full name of the individual.

*/
fullName?: string;
fullName?: string | null;
/**

@@ -52,3 +52,3 @@ * Suffix of the individual

*/
suffix?: string;
suffix?: string | null;
/**

@@ -59,3 +59,3 @@ * The phone number (with preceding + character and country code) of the individual being verified

*/
phoneNumber?: string;
phoneNumber?: string | null;
/**

@@ -66,3 +66,3 @@ * The address of the individual being verified

*/
address?: KnownAddress;
address?: KnownAddress | null;
/**

@@ -73,3 +73,3 @@ * Date of birth of the individual, in the format "YYYY-MM-DD"

*/
dateOfBirth?: string;
dateOfBirth?: string | null;
}

@@ -76,0 +76,0 @@ /**

@@ -25,3 +25,3 @@ /**

*/
givenName?: string;
givenName?: string | null;
/**

@@ -32,3 +32,3 @@ *

*/
familyName?: string;
familyName?: string | null;
/**

@@ -39,3 +39,3 @@ *

*/
middleName?: string;
middleName?: string | null;
/**

@@ -46,3 +46,3 @@ *

*/
fullName?: string;
fullName?: string | null;
/**

@@ -53,3 +53,3 @@ *

*/
suffix?: string;
suffix?: string | null;
/**

@@ -60,3 +60,3 @@ *

*/
nationality?: string;
nationality?: string | null;
/**

@@ -67,3 +67,3 @@ *

*/
sex?: Sex;
sex?: Sex | null;
/**

@@ -74,3 +74,3 @@ *

*/
phoneNumber?: string;
phoneNumber?: string | null;
/**

@@ -81,3 +81,3 @@ *

*/
address?: Address;
address?: Address | null;
/**

@@ -88,3 +88,3 @@ *

*/
dateOfBirth?: Date;
dateOfBirth?: Date | null;
}

@@ -91,0 +91,0 @@ /**

@@ -62,4 +62,4 @@ "use strict";

'address': (0, Address_1.AddressToJSON)(value['address']),
'dateOfBirth': value['dateOfBirth'] == null ? undefined : ((value['dateOfBirth']).toISOString().substring(0, 10)),
'dateOfBirth': value['dateOfBirth'] == null ? undefined : (value['dateOfBirth'].toISOString().substring(0, 10)),
};
}

@@ -23,3 +23,3 @@ /**

*/
givenName?: string;
givenName?: string | null;
/**

@@ -30,3 +30,3 @@ * The user's middle name

*/
middleName?: string;
middleName?: string | null;
/**

@@ -37,3 +37,3 @@ * The user's family / last name

*/
familyName?: string;
familyName?: string | null;
/**

@@ -44,3 +44,3 @@ * The user's name suffix

*/
suffix?: string;
suffix?: string | null;
/**

@@ -51,3 +51,3 @@ * The user's date of birth, in `YYYY-MM-DD` format

*/
dateOfBirth?: Date;
dateOfBirth?: Date | null;
}

@@ -54,0 +54,0 @@ /**

@@ -50,4 +50,4 @@ "use strict";

'suffix': value['suffix'],
'dateOfBirth': value['dateOfBirth'] == null ? undefined : ((value['dateOfBirth']).toISOString().substring(0, 10)),
'dateOfBirth': value['dateOfBirth'] == null ? undefined : (value['dateOfBirth'].toISOString().substring(0, 10)),
};
}

@@ -23,3 +23,3 @@ /**

*/
qrCodeText?: string;
qrCodeText?: string | null;
/**

@@ -30,3 +30,3 @@ * The raw bytes of the image containing the user's QR code.

*/
qrCodeImage?: string;
qrCodeImage?: string | null;
}

@@ -33,0 +33,0 @@ /**

@@ -24,3 +24,3 @@ /**

*/
type?: string;
type?: string | null;
/**

@@ -31,3 +31,3 @@ *

*/
title?: string;
title?: string | null;
/**

@@ -38,3 +38,3 @@ *

*/
status?: number;
status?: number | null;
/**

@@ -45,3 +45,3 @@ *

*/
detail?: string;
detail?: string | null;
/**

@@ -52,3 +52,3 @@ *

*/
instance?: string;
instance?: string | null;
}

@@ -55,0 +55,0 @@ /**

@@ -24,3 +24,3 @@ /**

*/
documentScan?: DocumentScanAttachments;
documentScan?: DocumentScanAttachments | null;
}

@@ -27,0 +27,0 @@ /**

@@ -41,3 +41,3 @@ /**

*/
childProviderIds?: Array<string>;
childProviderIds?: Array<string> | null;
}

@@ -44,0 +44,0 @@ /**

@@ -15,4 +15,9 @@ /**

import type { AadhaarInput } from './AadhaarInput';
import type { KenyaNidInput } from './KenyaNidInput';
import type { NigeriaNinInput } from './NigeriaNinInput';
import type { BrazilCpfCheckInput } from './BrazilCpfCheckInput';
import type { MexicoCurpInput } from './MexicoCurpInput';
import type { BrazilDigitalCnhInput } from './BrazilDigitalCnhInput';
import type { IndonesiaNikInput } from './IndonesiaNikInput';
import type { SouthAfricaNidInput } from './SouthAfricaNidInput';
import type { PhilippineMatchInput } from './PhilippineMatchInput';

@@ -26,2 +31,32 @@ /**

/**
* Input for the `f-indonesia-nik` integration
* @type {IndonesiaNikInput}
* @memberof ProviderInput
*/
indonesiaNik?: IndonesiaNikInput | null;
/**
* Input for the `f-mexico-curp` integration
* @type {MexicoCurpInput}
* @memberof ProviderInput
*/
mexicoCurp?: MexicoCurpInput | null;
/**
* Input for the `f-south-africa-nid` integration
* @type {SouthAfricaNidInput}
* @memberof ProviderInput
*/
southAfricaNid?: SouthAfricaNidInput | null;
/**
* Input for the `f-kenya-nid` integration
* @type {KenyaNidInput}
* @memberof ProviderInput
*/
kenyaNid?: KenyaNidInput | null;
/**
* Input for the `f-nigeria-nin` integration
* @type {NigeriaNinInput}
* @memberof ProviderInput
*/
nigeriaNin?: NigeriaNinInput | null;
/**
* Input for the `f-india-aadhaar-match` integration

@@ -31,3 +66,3 @@ * @type {AadhaarInput}

*/
aadhaar?: AadhaarInput;
aadhaar?: AadhaarInput | null;
/**

@@ -38,3 +73,3 @@ * Input for the `bangladesh-nid` integration

*/
bangladeshNationalId?: BangladeshNationalIdInput;
bangladeshNationalId?: BangladeshNationalIdInput | null;
/**

@@ -45,3 +80,3 @@ * Input for the `g-brazil-cpf` integration

*/
brazilCpfCheck?: BrazilCpfCheckInput;
brazilCpfCheck?: BrazilCpfCheckInput | null;
/**

@@ -52,3 +87,3 @@ * Input for the `g-brazil-digital-cnh` integration

*/
brazilDigitalCnh?: BrazilDigitalCnhInput;
brazilDigitalCnh?: BrazilDigitalCnhInput | null;
/**

@@ -59,3 +94,3 @@ * Input for the `b-philsys-biometric` integration

*/
philippineMatch?: PhilippineMatchInput;
philippineMatch?: PhilippineMatchInput | null;
/**

@@ -66,3 +101,3 @@ * Input for the `b-philippine-qr-digital-national-id` and `b-philippine-qr-ephill-id` integrations

*/
philippineQR?: PhilippineQRInput;
philippineQR?: PhilippineQRInput | null;
}

@@ -69,0 +104,0 @@ /**

@@ -23,4 +23,9 @@ "use strict";

const AadhaarInput_1 = require("./AadhaarInput");
const KenyaNidInput_1 = require("./KenyaNidInput");
const NigeriaNinInput_1 = require("./NigeriaNinInput");
const BrazilCpfCheckInput_1 = require("./BrazilCpfCheckInput");
const MexicoCurpInput_1 = require("./MexicoCurpInput");
const BrazilDigitalCnhInput_1 = require("./BrazilDigitalCnhInput");
const IndonesiaNikInput_1 = require("./IndonesiaNikInput");
const SouthAfricaNidInput_1 = require("./SouthAfricaNidInput");
const PhilippineMatchInput_1 = require("./PhilippineMatchInput");

@@ -41,2 +46,7 @@ /**

return {
'indonesiaNik': json['indonesiaNik'] == null ? undefined : (0, IndonesiaNikInput_1.IndonesiaNikInputFromJSON)(json['indonesiaNik']),
'mexicoCurp': json['mexicoCurp'] == null ? undefined : (0, MexicoCurpInput_1.MexicoCurpInputFromJSON)(json['mexicoCurp']),
'southAfricaNid': json['southAfricaNid'] == null ? undefined : (0, SouthAfricaNidInput_1.SouthAfricaNidInputFromJSON)(json['southAfricaNid']),
'kenyaNid': json['kenyaNid'] == null ? undefined : (0, KenyaNidInput_1.KenyaNidInputFromJSON)(json['kenyaNid']),
'nigeriaNin': json['nigeriaNin'] == null ? undefined : (0, NigeriaNinInput_1.NigeriaNinInputFromJSON)(json['nigeriaNin']),
'aadhaar': json['aadhaar'] == null ? undefined : (0, AadhaarInput_1.AadhaarInputFromJSON)(json['aadhaar']),

@@ -55,2 +65,7 @@ 'bangladeshNationalId': json['bangladeshNationalId'] == null ? undefined : (0, BangladeshNationalIdInput_1.BangladeshNationalIdInputFromJSON)(json['bangladeshNationalId']),

return {
'indonesiaNik': (0, IndonesiaNikInput_1.IndonesiaNikInputToJSON)(value['indonesiaNik']),
'mexicoCurp': (0, MexicoCurpInput_1.MexicoCurpInputToJSON)(value['mexicoCurp']),
'southAfricaNid': (0, SouthAfricaNidInput_1.SouthAfricaNidInputToJSON)(value['southAfricaNid']),
'kenyaNid': (0, KenyaNidInput_1.KenyaNidInputToJSON)(value['kenyaNid']),
'nigeriaNin': (0, NigeriaNinInput_1.NigeriaNinInputToJSON)(value['nigeriaNin']),
'aadhaar': (0, AadhaarInput_1.AadhaarInputToJSON)(value['aadhaar']),

@@ -57,0 +72,0 @@ 'bangladeshNationalId': (0, BangladeshNationalIdInput_1.BangladeshNationalIdInputToJSON)(value['bangladeshNationalId']),

@@ -23,3 +23,3 @@ /**

*/
phoneNumber?: string;
phoneNumber?: string | null;
/**

@@ -30,3 +30,3 @@ * A list of countries, in alpha-2 ISO 3166 format, you wish to specify for the recommendation, this can include the user's country of residence, nationality, etc.

*/
countries?: Array<string>;
countries?: Array<string> | null;
/**

@@ -37,4 +37,10 @@ * If one of the countries has subdivisions, for example the US states, you can specify a list of these to further refine the recommendation (e.g., CA, UT, NY)

*/
subdivisions?: Array<string>;
subdivisions?: Array<string> | null;
/**
* Provide the IP addresses of the user you wish to generate a recommendation for. Will be used to look up the user's geographic location.
* @type {Array<string>}
* @memberof RecommendRequest
*/
ipAddresses?: Array<string> | null;
/**
* If true, the recommendation will include providers that are disabled for the app

@@ -44,3 +50,3 @@ * @type {boolean}

*/
includeDisabledProviders?: boolean;
includeDisabledProviders?: boolean | null;
}

@@ -47,0 +53,0 @@ /**

@@ -37,2 +37,3 @@ "use strict";

'subdivisions': json['subdivisions'] == null ? undefined : json['subdivisions'],
'ipAddresses': json['ipAddresses'] == null ? undefined : json['ipAddresses'],
'includeDisabledProviders': json['includeDisabledProviders'] == null ? undefined : json['includeDisabledProviders'],

@@ -49,4 +50,5 @@ };

'subdivisions': value['subdivisions'],
'ipAddresses': value['ipAddresses'],
'includeDisabledProviders': value['includeDisabledProviders'],
};
}

@@ -23,3 +23,3 @@ /**

*/
resultsAccessKey?: string;
resultsAccessKey?: string | null;
}

@@ -26,0 +26,0 @@ /**

@@ -30,3 +30,3 @@ /**

*/
resultsAccessKey?: string;
resultsAccessKey?: string | null;
}

@@ -33,0 +33,0 @@ /**

@@ -49,3 +49,3 @@ /**

*/
errorCode?: SessionErrorCode;
errorCode?: SessionErrorCode | null;
/**

@@ -52,0 +52,0 @@ * The unix timestamp, in seconds, when this session was created

{
"name": "@trinsic/api",
"version": "2.0.0-alpha2",
"version": "2.0.0-alpha3",
"description": "Trinsic API TypeScript library.",

@@ -5,0 +5,0 @@ "author": "Trinsic",

@@ -61,3 +61,3 @@ /* tslint:disable */

/**
* Generate provider recommendations based on the given signals (phone number, countries, states). This is an experimental feature and may not be accurate
* Generate provider recommendations based on the given signals (phone number, countries, states).
* @summary Recommend Providers

@@ -72,3 +72,3 @@ * @param {RecommendRequest} [recommendRequest]

/**
* Generate provider recommendations based on the given signals (phone number, countries, states). This is an experimental feature and may not be accurate
* Generate provider recommendations based on the given signals (phone number, countries, states).
* Recommend Providers

@@ -122,3 +122,3 @@ */

/**
* Generate provider recommendations based on the given signals (phone number, countries, states). This is an experimental feature and may not be accurate
* Generate provider recommendations based on the given signals (phone number, countries, states).
* Recommend Providers

@@ -153,3 +153,3 @@ */

/**
* Generate provider recommendations based on the given signals (phone number, countries, states). This is an experimental feature and may not be accurate
* Generate provider recommendations based on the given signals (phone number, countries, states).
* Recommend Providers

@@ -156,0 +156,0 @@ */

@@ -27,3 +27,3 @@ /* tslint:disable */

*/
fullName?: string;
fullName?: string | null;
/**

@@ -34,3 +34,3 @@ * The user's date of birth, in `YYYY-MM-DD` format

*/
dateOfBirth?: Date;
dateOfBirth?: Date | null;
}

@@ -67,5 +67,5 @@

'fullName': value['fullName'],
'dateOfBirth': value['dateOfBirth'] == null ? undefined : ((value['dateOfBirth']).toISOString().substring(0,10)),
'dateOfBirth': value['dateOfBirth'] == null ? undefined : ((value['dateOfBirth'] as any).toISOString().substring(0,10)),
};
}

@@ -27,3 +27,3 @@ /* tslint:disable */

*/
line1?: string;
line1?: string | null;
/**

@@ -34,3 +34,3 @@ *

*/
line2?: string;
line2?: string | null;
/**

@@ -41,3 +41,3 @@ *

*/
line3?: string;
line3?: string | null;
/**

@@ -48,3 +48,3 @@ *

*/
city?: string;
city?: string | null;
/**

@@ -55,3 +55,3 @@ *

*/
subdivision?: string;
subdivision?: string | null;
/**

@@ -62,3 +62,3 @@ *

*/
postalCode?: string;
postalCode?: string | null;
/**

@@ -69,3 +69,3 @@ *

*/
country?: string;
country?: string | null;
/**

@@ -76,3 +76,3 @@ *

*/
fullAddress?: string;
fullAddress?: string | null;
}

@@ -79,0 +79,0 @@

@@ -34,3 +34,3 @@ /* tslint:disable */

*/
selfie?: string;
selfie?: string | null;
/**

@@ -41,3 +41,3 @@ *

*/
documentFront?: string;
documentFront?: string | null;
/**

@@ -48,3 +48,3 @@ *

*/
documentBack?: string;
documentBack?: string | null;
/**

@@ -55,3 +55,3 @@ *

*/
documentPortrait?: string;
documentPortrait?: string | null;
/**

@@ -58,0 +58,0 @@ *

@@ -27,3 +27,3 @@ /* tslint:disable */

*/
nationalIdNumber?: string;
nationalIdNumber?: string | null;
/**

@@ -34,3 +34,3 @@ * The user's date of birth, in `YYYY-MM-DD` format

*/
dateOfBirth?: Date;
dateOfBirth?: Date | null;
/**

@@ -41,3 +41,3 @@ * The user's full name

*/
name?: string;
name?: string | null;
/**

@@ -48,3 +48,3 @@ * The base64-encoded bytes of the photo collected from the user

*/
photoBase64?: string;
photoBase64?: string | null;
}

@@ -83,3 +83,3 @@

'nationalIdNumber': value['nationalIdNumber'],
'dateOfBirth': value['dateOfBirth'] == null ? undefined : ((value['dateOfBirth']).toISOString().substring(0,10)),
'dateOfBirth': value['dateOfBirth'] == null ? undefined : ((value['dateOfBirth'] as any).toISOString().substring(0,10)),
'name': value['name'],

@@ -86,0 +86,0 @@ 'photoBase64': value['photoBase64'],

@@ -39,3 +39,3 @@ /* tslint:disable */

*/
digitalCnhFile?: string;
digitalCnhFile?: string | null;
/**

@@ -48,3 +48,3 @@ * The MIME Type of the file contained in `DigitalCnhFile`.

*/
digitalCnhFileContentType?: string;
digitalCnhFileContentType?: string | null;
/**

@@ -55,3 +55,3 @@ * The raw bytes of the image of the user's face, collected for biometric comparison.

*/
facialBiometryPhoto?: string;
facialBiometryPhoto?: string | null;
}

@@ -58,0 +58,0 @@

@@ -46,3 +46,3 @@ /* tslint:disable */

*/
providerInput?: ProviderInput;
providerInput?: ProviderInput | null;
/**

@@ -55,3 +55,3 @@ * The Redirect URL to which the user should be sent after the session is complete.

*/
redirectUrl?: string;
redirectUrl?: string | null;
/**

@@ -92,3 +92,3 @@ * The list of capabilities your integration supports. Capabilities are the core of Trinsic's whitelabel-with-optional-fallback offering.

*/
fallbackToHostedUI?: boolean;
fallbackToHostedUI?: boolean | null;
}

@@ -95,0 +95,0 @@

@@ -46,3 +46,3 @@ /* tslint:disable */

*/
providerInput?: ProviderInput;
providerInput?: ProviderInput | null;
}

@@ -49,0 +49,0 @@

@@ -39,3 +39,3 @@ /* tslint:disable */

*/
launchUrl?: string;
launchUrl?: string | null;
}

@@ -42,0 +42,0 @@

@@ -37,3 +37,3 @@ /* tslint:disable */

*/
redirectUrl?: string;
redirectUrl?: string | null;
/**

@@ -44,3 +44,3 @@ * The list of allowed identity providers. If not specified, all available providers will be allowed.

*/
providers?: Array<string>;
providers?: Array<string> | null;
/**

@@ -53,3 +53,3 @@ * Known identity data of an individual being verified.

*/
knownIdentityData?: KnownIdentityData;
knownIdentityData?: KnownIdentityData | null;
}

@@ -56,0 +56,0 @@

@@ -37,3 +37,3 @@ /* tslint:disable */

*/
launchUrl?: string;
launchUrl?: string | null;
}

@@ -40,0 +40,0 @@

@@ -34,3 +34,3 @@ /* tslint:disable */

*/
type?: DocumentType;
type?: DocumentType | null;
/**

@@ -41,3 +41,3 @@ *

*/
number?: string;
number?: string | null;
/**

@@ -48,3 +48,3 @@ *

*/
issueDate?: Date;
issueDate?: Date | null;
/**

@@ -55,3 +55,3 @@ *

*/
expirationDate?: Date;
expirationDate?: Date | null;
/**

@@ -62,3 +62,3 @@ *

*/
issuingCountry?: string;
issuingCountry?: string | null;
/**

@@ -69,3 +69,3 @@ *

*/
issuingAuthority?: string;
issuingAuthority?: string | null;
}

@@ -109,4 +109,4 @@

'number': value['number'],
'issueDate': value['issueDate'] == null ? undefined : ((value['issueDate']).toISOString().substring(0,10)),
'expirationDate': value['expirationDate'] == null ? undefined : ((value['expirationDate']).toISOString().substring(0,10)),
'issueDate': value['issueDate'] == null ? undefined : ((value['issueDate'] as any).toISOString().substring(0,10)),
'expirationDate': value['expirationDate'] == null ? undefined : ((value['expirationDate'] as any).toISOString().substring(0,10)),
'issuingCountry': value['issuingCountry'],

@@ -113,0 +113,0 @@ 'issuingAuthority': value['issuingAuthority'],

@@ -27,3 +27,3 @@ /* tslint:disable */

*/
report?: string;
report?: string | null;
}

@@ -30,0 +30,0 @@

@@ -46,3 +46,3 @@ /* tslint:disable */

*/
identityData?: IdentityData;
identityData?: IdentityData | null;
}

@@ -49,0 +49,0 @@

@@ -27,3 +27,3 @@ /* tslint:disable */

*/
type?: string;
type?: string | null;
/**

@@ -34,3 +34,3 @@ *

*/
title?: string;
title?: string | null;
/**

@@ -41,3 +41,3 @@ *

*/
status?: number;
status?: number | null;
/**

@@ -48,3 +48,3 @@ *

*/
detail?: string;
detail?: string | null;
/**

@@ -55,3 +55,3 @@ *

*/
instance?: string;
instance?: string | null;
/**

@@ -58,0 +58,0 @@ *

@@ -46,3 +46,3 @@ /* tslint:disable */

*/
originatingProviderId?: string;
originatingProviderId?: string | null;
/**

@@ -53,3 +53,3 @@ *

*/
person?: PersonData;
person?: PersonData | null;
/**

@@ -60,3 +60,3 @@ *

*/
document?: DocumentData;
document?: DocumentData | null;
/**

@@ -67,3 +67,3 @@ *

*/
attachmentAccessKeys?: AttachmentAccessKeys;
attachmentAccessKeys?: AttachmentAccessKeys | null;
}

@@ -70,0 +70,0 @@

@@ -26,5 +26,7 @@ /* tslint:disable */

export * from './IdentityData';
export * from './IndonesiaNikInput';
export * from './IntegrationCapability';
export * from './IntegrationLaunchMethod';
export * from './IntegrationStep';
export * from './KenyaNidInput';
export * from './KnownAddress';

@@ -35,2 +37,4 @@ export * from './KnownIdentityData';

export * from './ListSessionsResponse';
export * from './MexicoCurpInput';
export * from './NigeriaNinInput';
export * from './OrderDirection';

@@ -55,2 +59,3 @@ export * from './PersonData';

export * from './Sex';
export * from './SouthAfricaNidInput';
export * from './StepRefreshInfo';

@@ -52,3 +52,3 @@ /* tslint:disable */

*/
refresh: StepRefreshInfo;
refresh: StepRefreshInfo | null;
}

@@ -55,0 +55,0 @@

@@ -27,3 +27,3 @@ /* tslint:disable */

*/
line1?: string;
line1?: string | null;
/**

@@ -34,3 +34,3 @@ *

*/
line2?: string;
line2?: string | null;
/**

@@ -41,3 +41,3 @@ *

*/
line3?: string;
line3?: string | null;
/**

@@ -48,3 +48,3 @@ *

*/
city?: string;
city?: string | null;
/**

@@ -55,3 +55,3 @@ *

*/
subdivision?: string;
subdivision?: string | null;
/**

@@ -63,3 +63,3 @@ * Deprecated. Use `Subdivision` instead.

*/
state?: string;
state?: string | null;
/**

@@ -70,3 +70,3 @@ *

*/
postalCode?: string;
postalCode?: string | null;
/**

@@ -77,3 +77,3 @@ *

*/
country?: string;
country?: string | null;
}

@@ -80,0 +80,0 @@

@@ -36,3 +36,3 @@ /* tslint:disable */

*/
person?: KnownPersonData;
person?: KnownPersonData | null;
}

@@ -39,0 +39,0 @@

@@ -34,3 +34,3 @@ /* tslint:disable */

*/
givenName?: string;
givenName?: string | null;
/**

@@ -41,3 +41,3 @@ * Family (last) name of the individual

*/
familyName?: string;
familyName?: string | null;
/**

@@ -48,3 +48,3 @@ * Middle name of the individual

*/
middleName?: string;
middleName?: string | null;
/**

@@ -55,3 +55,3 @@ * Full name of the individual.

*/
fullName?: string;
fullName?: string | null;
/**

@@ -62,3 +62,3 @@ * Suffix of the individual

*/
suffix?: string;
suffix?: string | null;
/**

@@ -69,3 +69,3 @@ * The phone number (with preceding + character and country code) of the individual being verified

*/
phoneNumber?: string;
phoneNumber?: string | null;
/**

@@ -76,3 +76,3 @@ * The address of the individual being verified

*/
address?: KnownAddress;
address?: KnownAddress | null;
/**

@@ -83,3 +83,3 @@ * Date of birth of the individual, in the format "YYYY-MM-DD"

*/
dateOfBirth?: string;
dateOfBirth?: string | null;
}

@@ -86,0 +86,0 @@

@@ -40,3 +40,3 @@ /* tslint:disable */

*/
givenName?: string;
givenName?: string | null;
/**

@@ -47,3 +47,3 @@ *

*/
familyName?: string;
familyName?: string | null;
/**

@@ -54,3 +54,3 @@ *

*/
middleName?: string;
middleName?: string | null;
/**

@@ -61,3 +61,3 @@ *

*/
fullName?: string;
fullName?: string | null;
/**

@@ -68,3 +68,3 @@ *

*/
suffix?: string;
suffix?: string | null;
/**

@@ -75,3 +75,3 @@ *

*/
nationality?: string;
nationality?: string | null;
/**

@@ -82,3 +82,3 @@ *

*/
sex?: Sex;
sex?: Sex | null;
/**

@@ -89,3 +89,3 @@ *

*/
phoneNumber?: string;
phoneNumber?: string | null;
/**

@@ -96,3 +96,3 @@ *

*/
address?: Address;
address?: Address | null;
/**

@@ -103,3 +103,3 @@ *

*/
dateOfBirth?: Date;
dateOfBirth?: Date | null;
}

@@ -154,5 +154,5 @@

'address': AddressToJSON(value['address']),
'dateOfBirth': value['dateOfBirth'] == null ? undefined : ((value['dateOfBirth']).toISOString().substring(0,10)),
'dateOfBirth': value['dateOfBirth'] == null ? undefined : ((value['dateOfBirth'] as any).toISOString().substring(0,10)),
};
}

@@ -27,3 +27,3 @@ /* tslint:disable */

*/
givenName?: string;
givenName?: string | null;
/**

@@ -34,3 +34,3 @@ * The user's middle name

*/
middleName?: string;
middleName?: string | null;
/**

@@ -41,3 +41,3 @@ * The user's family / last name

*/
familyName?: string;
familyName?: string | null;
/**

@@ -48,3 +48,3 @@ * The user's name suffix

*/
suffix?: string;
suffix?: string | null;
/**

@@ -55,3 +55,3 @@ * The user's date of birth, in `YYYY-MM-DD` format

*/
dateOfBirth?: Date;
dateOfBirth?: Date | null;
}

@@ -94,5 +94,5 @@

'suffix': value['suffix'],
'dateOfBirth': value['dateOfBirth'] == null ? undefined : ((value['dateOfBirth']).toISOString().substring(0,10)),
'dateOfBirth': value['dateOfBirth'] == null ? undefined : ((value['dateOfBirth'] as any).toISOString().substring(0,10)),
};
}

@@ -27,3 +27,3 @@ /* tslint:disable */

*/
qrCodeText?: string;
qrCodeText?: string | null;
/**

@@ -34,3 +34,3 @@ * The raw bytes of the image containing the user's QR code.

*/
qrCodeImage?: string;
qrCodeImage?: string | null;
}

@@ -37,0 +37,0 @@

@@ -28,3 +28,3 @@ /* tslint:disable */

*/
type?: string;
type?: string | null;
/**

@@ -35,3 +35,3 @@ *

*/
title?: string;
title?: string | null;
/**

@@ -42,3 +42,3 @@ *

*/
status?: number;
status?: number | null;
/**

@@ -49,3 +49,3 @@ *

*/
detail?: string;
detail?: string | null;
/**

@@ -56,3 +56,3 @@ *

*/
instance?: string;
instance?: string | null;
}

@@ -59,0 +59,0 @@

@@ -34,3 +34,3 @@ /* tslint:disable */

*/
documentScan?: DocumentScanAttachments;
documentScan?: DocumentScanAttachments | null;
}

@@ -37,0 +37,0 @@

@@ -45,3 +45,3 @@ /* tslint:disable */

*/
childProviderIds?: Array<string>;
childProviderIds?: Array<string> | null;
}

@@ -48,0 +48,0 @@

@@ -34,2 +34,14 @@ /* tslint:disable */

} from './AadhaarInput';
import type { KenyaNidInput } from './KenyaNidInput';
import {
KenyaNidInputFromJSON,
KenyaNidInputFromJSONTyped,
KenyaNidInputToJSON,
} from './KenyaNidInput';
import type { NigeriaNinInput } from './NigeriaNinInput';
import {
NigeriaNinInputFromJSON,
NigeriaNinInputFromJSONTyped,
NigeriaNinInputToJSON,
} from './NigeriaNinInput';
import type { BrazilCpfCheckInput } from './BrazilCpfCheckInput';

@@ -41,2 +53,8 @@ import {

} from './BrazilCpfCheckInput';
import type { MexicoCurpInput } from './MexicoCurpInput';
import {
MexicoCurpInputFromJSON,
MexicoCurpInputFromJSONTyped,
MexicoCurpInputToJSON,
} from './MexicoCurpInput';
import type { BrazilDigitalCnhInput } from './BrazilDigitalCnhInput';

@@ -48,2 +66,14 @@ import {

} from './BrazilDigitalCnhInput';
import type { IndonesiaNikInput } from './IndonesiaNikInput';
import {
IndonesiaNikInputFromJSON,
IndonesiaNikInputFromJSONTyped,
IndonesiaNikInputToJSON,
} from './IndonesiaNikInput';
import type { SouthAfricaNidInput } from './SouthAfricaNidInput';
import {
SouthAfricaNidInputFromJSON,
SouthAfricaNidInputFromJSONTyped,
SouthAfricaNidInputToJSON,
} from './SouthAfricaNidInput';
import type { PhilippineMatchInput } from './PhilippineMatchInput';

@@ -63,2 +93,32 @@ import {

/**
* Input for the `f-indonesia-nik` integration
* @type {IndonesiaNikInput}
* @memberof ProviderInput
*/
indonesiaNik?: IndonesiaNikInput | null;
/**
* Input for the `f-mexico-curp` integration
* @type {MexicoCurpInput}
* @memberof ProviderInput
*/
mexicoCurp?: MexicoCurpInput | null;
/**
* Input for the `f-south-africa-nid` integration
* @type {SouthAfricaNidInput}
* @memberof ProviderInput
*/
southAfricaNid?: SouthAfricaNidInput | null;
/**
* Input for the `f-kenya-nid` integration
* @type {KenyaNidInput}
* @memberof ProviderInput
*/
kenyaNid?: KenyaNidInput | null;
/**
* Input for the `f-nigeria-nin` integration
* @type {NigeriaNinInput}
* @memberof ProviderInput
*/
nigeriaNin?: NigeriaNinInput | null;
/**
* Input for the `f-india-aadhaar-match` integration

@@ -68,3 +128,3 @@ * @type {AadhaarInput}

*/
aadhaar?: AadhaarInput;
aadhaar?: AadhaarInput | null;
/**

@@ -75,3 +135,3 @@ * Input for the `bangladesh-nid` integration

*/
bangladeshNationalId?: BangladeshNationalIdInput;
bangladeshNationalId?: BangladeshNationalIdInput | null;
/**

@@ -82,3 +142,3 @@ * Input for the `g-brazil-cpf` integration

*/
brazilCpfCheck?: BrazilCpfCheckInput;
brazilCpfCheck?: BrazilCpfCheckInput | null;
/**

@@ -89,3 +149,3 @@ * Input for the `g-brazil-digital-cnh` integration

*/
brazilDigitalCnh?: BrazilDigitalCnhInput;
brazilDigitalCnh?: BrazilDigitalCnhInput | null;
/**

@@ -96,3 +156,3 @@ * Input for the `b-philsys-biometric` integration

*/
philippineMatch?: PhilippineMatchInput;
philippineMatch?: PhilippineMatchInput | null;
/**

@@ -103,3 +163,3 @@ * Input for the `b-philippine-qr-digital-national-id` and `b-philippine-qr-ephill-id` integrations

*/
philippineQR?: PhilippineQRInput;
philippineQR?: PhilippineQRInput | null;
}

@@ -124,2 +184,7 @@

'indonesiaNik': json['indonesiaNik'] == null ? undefined : IndonesiaNikInputFromJSON(json['indonesiaNik']),
'mexicoCurp': json['mexicoCurp'] == null ? undefined : MexicoCurpInputFromJSON(json['mexicoCurp']),
'southAfricaNid': json['southAfricaNid'] == null ? undefined : SouthAfricaNidInputFromJSON(json['southAfricaNid']),
'kenyaNid': json['kenyaNid'] == null ? undefined : KenyaNidInputFromJSON(json['kenyaNid']),
'nigeriaNin': json['nigeriaNin'] == null ? undefined : NigeriaNinInputFromJSON(json['nigeriaNin']),
'aadhaar': json['aadhaar'] == null ? undefined : AadhaarInputFromJSON(json['aadhaar']),

@@ -140,2 +205,7 @@ 'bangladeshNationalId': json['bangladeshNationalId'] == null ? undefined : BangladeshNationalIdInputFromJSON(json['bangladeshNationalId']),

'indonesiaNik': IndonesiaNikInputToJSON(value['indonesiaNik']),
'mexicoCurp': MexicoCurpInputToJSON(value['mexicoCurp']),
'southAfricaNid': SouthAfricaNidInputToJSON(value['southAfricaNid']),
'kenyaNid': KenyaNidInputToJSON(value['kenyaNid']),
'nigeriaNin': NigeriaNinInputToJSON(value['nigeriaNin']),
'aadhaar': AadhaarInputToJSON(value['aadhaar']),

@@ -142,0 +212,0 @@ 'bangladeshNationalId': BangladeshNationalIdInputToJSON(value['bangladeshNationalId']),

@@ -27,3 +27,3 @@ /* tslint:disable */

*/
phoneNumber?: string;
phoneNumber?: string | null;
/**

@@ -34,3 +34,3 @@ * A list of countries, in alpha-2 ISO 3166 format, you wish to specify for the recommendation, this can include the user's country of residence, nationality, etc.

*/
countries?: Array<string>;
countries?: Array<string> | null;
/**

@@ -41,4 +41,10 @@ * If one of the countries has subdivisions, for example the US states, you can specify a list of these to further refine the recommendation (e.g., CA, UT, NY)

*/
subdivisions?: Array<string>;
subdivisions?: Array<string> | null;
/**
* Provide the IP addresses of the user you wish to generate a recommendation for. Will be used to look up the user's geographic location.
* @type {Array<string>}
* @memberof RecommendRequest
*/
ipAddresses?: Array<string> | null;
/**
* If true, the recommendation will include providers that are disabled for the app

@@ -48,3 +54,3 @@ * @type {boolean}

*/
includeDisabledProviders?: boolean;
includeDisabledProviders?: boolean | null;
}

@@ -72,2 +78,3 @@

'subdivisions': json['subdivisions'] == null ? undefined : json['subdivisions'],
'ipAddresses': json['ipAddresses'] == null ? undefined : json['ipAddresses'],
'includeDisabledProviders': json['includeDisabledProviders'] == null ? undefined : json['includeDisabledProviders'],

@@ -86,2 +93,3 @@ };

'subdivisions': value['subdivisions'],
'ipAddresses': value['ipAddresses'],
'includeDisabledProviders': value['includeDisabledProviders'],

@@ -88,0 +96,0 @@ };

@@ -27,3 +27,3 @@ /* tslint:disable */

*/
resultsAccessKey?: string;
resultsAccessKey?: string | null;
}

@@ -30,0 +30,0 @@

@@ -40,3 +40,3 @@ /* tslint:disable */

*/
resultsAccessKey?: string;
resultsAccessKey?: string | null;
}

@@ -43,0 +43,0 @@

@@ -59,3 +59,3 @@ /* tslint:disable */

*/
errorCode?: SessionErrorCode;
errorCode?: SessionErrorCode | null;
/**

@@ -62,0 +62,0 @@ * The unix timestamp, in seconds, when this session was created

Sorry, the diff of this file is not supported yet