@flowio/api-prop-types 10.16.51 → 10.16.53
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/lib/api.d.ts +5 -1
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +5 -1
- package/src/api.js +7 -3
package/lib/api.d.ts
CHANGED
|
@@ -4539,6 +4539,7 @@ declare namespace io.flow.v0.models {
|
|
|
4539
4539
|
readonly 'cookie_created_at'?: number;
|
|
4540
4540
|
readonly 'session_duration'?: number;
|
|
4541
4541
|
readonly 'fingerprint'?: string;
|
|
4542
|
+
readonly 'fraud_references'?: Record<string, string>;
|
|
4542
4543
|
}
|
|
4543
4544
|
|
|
4544
4545
|
interface DeviceFingerprintDetailsBrowser {
|
|
@@ -7229,6 +7230,7 @@ declare namespace io.flow.v0.models {
|
|
|
7229
7230
|
readonly 'attributes'?: Record<string, string>;
|
|
7230
7231
|
readonly 'authorization_keys'?: string[];
|
|
7231
7232
|
readonly 'options'?: io.flow.v0.models.OrderOptions;
|
|
7233
|
+
readonly 'device_details'?: io.flow.v0.unions.DeviceDetails;
|
|
7232
7234
|
}
|
|
7233
7235
|
|
|
7234
7236
|
interface OrderFraudStatus {
|
|
@@ -7447,6 +7449,7 @@ declare namespace io.flow.v0.models {
|
|
|
7447
7449
|
readonly 'attributes'?: Record<string, string>;
|
|
7448
7450
|
readonly 'authorization_keys'?: string[];
|
|
7449
7451
|
readonly 'options'?: io.flow.v0.models.OrderOptions;
|
|
7452
|
+
readonly 'device_details'?: io.flow.v0.unions.DeviceDetails;
|
|
7450
7453
|
}
|
|
7451
7454
|
|
|
7452
7455
|
interface OrderQuote {
|
|
@@ -10537,6 +10540,7 @@ declare namespace io.flow.v0.models {
|
|
|
10537
10540
|
readonly 'order_identifier'?: string;
|
|
10538
10541
|
readonly 'fulfillment_key'?: string;
|
|
10539
10542
|
readonly 'shipment_recipient'?: io.flow.v0.enums.ShipmentRecipient;
|
|
10543
|
+
readonly 'created_at'?: string;
|
|
10540
10544
|
readonly 'updated_at'?: string;
|
|
10541
10545
|
}
|
|
10542
10546
|
|
|
@@ -13721,4 +13725,4 @@ export const tierRuleOutcome: PropTypes.Requireable<io.flow.v0.unions.TierRuleOu
|
|
|
13721
13725
|
export const tierRuleOutcomeForm: PropTypes.Requireable<io.flow.v0.unions.TierRuleOutcomeForm>;
|
|
13722
13726
|
export const token: PropTypes.Requireable<io.flow.v0.unions.Token>;
|
|
13723
13727
|
export const tokenReference: PropTypes.Requireable<io.flow.v0.unions.TokenReference>;
|
|
13724
|
-
export const transactionDetails: PropTypes.Requireable<io.flow.v0.unions.TransactionDetails>;
|
|
13728
|
+
export const transactionDetails: PropTypes.Requireable<io.flow.v0.unions.TransactionDetails>;
|