@flowio/api-factories 0.0.39 → 0.0.41
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/cjs/api.js +454 -409
- package/dist/esm/api.js +414 -376
- package/dist/types/api.d.ts +7 -0
- package/package.json +2 -2
- package/src/api.ts +426 -383
package/dist/types/api.d.ts
CHANGED
|
@@ -25,6 +25,7 @@ export declare const makeActionUseSdkKlarnaV1: () => io.flow.v0.models.ActionUse
|
|
|
25
25
|
export declare const makeActionUseSdkPaypal: () => io.flow.v0.models.ActionUseSdkPaypal;
|
|
26
26
|
export declare const makeActionUseSdkStripeV3: () => io.flow.v0.models.ActionUseSdkStripeV3;
|
|
27
27
|
export declare const makeActionWait: () => io.flow.v0.models.ActionWait;
|
|
28
|
+
export declare const makeActivationPutForm: () => io.flow.v0.models.ActivationPutForm;
|
|
28
29
|
export declare const makeAddress: () => io.flow.v0.models.Address;
|
|
29
30
|
export declare const makeAddressConfiguration: () => io.flow.v0.models.AddressConfiguration;
|
|
30
31
|
export declare const makeAddressConfigurationFieldPlacement: () => io.flow.v0.models.AddressConfigurationFieldPlacement;
|
|
@@ -36,6 +37,8 @@ export declare const makeAddressFieldName: () => io.flow.v0.enums.AddressFieldNa
|
|
|
36
37
|
export declare const makeAddressFieldValidation: () => io.flow.v0.models.AddressFieldValidation;
|
|
37
38
|
export declare const makeAddressSuggestion: () => io.flow.v0.models.AddressSuggestion;
|
|
38
39
|
export declare const makeAddressVerification: () => io.flow.v0.models.AddressVerification;
|
|
40
|
+
export declare const makeAddressVerificationResult: () => io.flow.v0.models.AddressVerificationResult;
|
|
41
|
+
export declare const makeAddressVerificationResultFieldCode: () => io.flow.v0.enums.AddressVerificationResultFieldCode;
|
|
39
42
|
export declare const makeAdjustmentReason: () => io.flow.v0.models.AdjustmentReason;
|
|
40
43
|
export declare const makeAdjustmentReasonKey: () => io.flow.v0.enums.AdjustmentReasonKey;
|
|
41
44
|
export declare const makeAdyenChallengeShopperData: () => io.flow.v0.models.AdyenChallengeShopperData;
|
|
@@ -349,6 +352,8 @@ export declare const makeCustomerToken: () => io.flow.v0.models.CustomerToken;
|
|
|
349
352
|
export declare const makeCustomerUpserted: () => io.flow.v0.models.CustomerUpserted;
|
|
350
353
|
export declare const makeCvv: () => io.flow.v0.models.Cvv;
|
|
351
354
|
export declare const makeCvvCode: () => io.flow.v0.enums.CvvCode;
|
|
355
|
+
export declare const makeCvvResult: () => io.flow.v0.models.CvvResult;
|
|
356
|
+
export declare const makeCvvResultCode: () => io.flow.v0.enums.CvvResultCode;
|
|
352
357
|
export declare const makeDatetimeRange: () => io.flow.v0.models.DatetimeRange;
|
|
353
358
|
export declare const makeDatetimeWithTimezone: () => io.flow.v0.models.DatetimeWithTimezone;
|
|
354
359
|
export declare const makeDayOfWeek: () => io.flow.v0.enums.DayOfWeek;
|
|
@@ -1577,6 +1582,8 @@ export declare const makeTradeAgreementDuty: () => io.flow.v0.models.TradeAgreem
|
|
|
1577
1582
|
export declare const makeTradeAgreementName: () => io.flow.v0.enums.TradeAgreementName;
|
|
1578
1583
|
export declare const makeTradeAgreementStatus: () => io.flow.v0.enums.TradeAgreementStatus;
|
|
1579
1584
|
export declare const makeTransaction: () => io.flow.v0.models.Transaction;
|
|
1585
|
+
export declare const makeTransactionDetailsCard: () => io.flow.v0.models.TransactionDetailsCard;
|
|
1586
|
+
export declare const makeTransactionNetworkDetailsCard: () => io.flow.v0.models.TransactionNetworkDetailsCard;
|
|
1580
1587
|
export declare const makeTransactionSource: () => io.flow.v0.enums.TransactionSource;
|
|
1581
1588
|
export declare const makeTransactionUpserted: () => io.flow.v0.models.TransactionUpserted;
|
|
1582
1589
|
export declare const makeTransitEstimate: () => io.flow.v0.models.TransitEstimate;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-factories",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.41",
|
|
4
4
|
"description": "Flow API mock data factories",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"flow",
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"@faker-js/faker": "^6.2.0",
|
|
37
37
|
"@flowio/api-types": "*"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "539fb4a2334830dc0411d081303bb70eef89bdd0"
|
|
40
40
|
}
|