@flowio/api-factories 0.0.20 → 0.0.22
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 +112 -675
- package/dist/esm/api.js +77 -646
- package/dist/types/api.d.ts +7 -1
- package/package.json +2 -2
- package/src/api.ts +88 -778
package/dist/types/api.d.ts
CHANGED
|
@@ -206,8 +206,11 @@ export declare const makeCenterSummary: () => io.flow.v0.models.CenterSummary;
|
|
|
206
206
|
export declare const makeCenterUpserted: () => io.flow.v0.models.CenterUpserted;
|
|
207
207
|
export declare const makeCenterVersion: () => io.flow.v0.models.CenterVersion;
|
|
208
208
|
export declare const makeChangeType: () => io.flow.v0.enums.ChangeType;
|
|
209
|
+
export declare const makeChannel: () => io.flow.v0.models.Channel;
|
|
209
210
|
export declare const makeChannelAuthorization: () => io.flow.v0.models.ChannelAuthorization;
|
|
210
211
|
export declare const makeChannelAuthorizationForm: () => io.flow.v0.models.ChannelAuthorizationForm;
|
|
212
|
+
export declare const makeChannelCurrency: () => io.flow.v0.models.ChannelCurrency;
|
|
213
|
+
export declare const makeChannelCurrencyCapability: () => io.flow.v0.enums.ChannelCurrencyCapability;
|
|
211
214
|
export declare const makeChannelCurrencyDeleted: () => io.flow.v0.models.ChannelCurrencyDeleted;
|
|
212
215
|
export declare const makeChannelCurrencyUpserted: () => io.flow.v0.models.ChannelCurrencyUpserted;
|
|
213
216
|
export declare const makeChannelDeleted: () => io.flow.v0.models.ChannelDeleted;
|
|
@@ -761,6 +764,7 @@ export declare const makeMerchantOfRecordAuthorizationForm: () => io.flow.v0.mod
|
|
|
761
764
|
export declare const makeMerchantOfRecordEntity: () => io.flow.v0.models.MerchantOfRecordEntity;
|
|
762
765
|
export declare const makeMerchantOfRecordEntityRegistration: () => io.flow.v0.models.MerchantOfRecordEntityRegistration;
|
|
763
766
|
export declare const makeMerchantOfRecordPaymentForm: () => io.flow.v0.models.MerchantOfRecordPaymentForm;
|
|
767
|
+
export declare const makeMerchantOnboardingAddress: () => io.flow.v0.models.MerchantOnboardingAddress;
|
|
764
768
|
export declare const makeMethod: () => "post";
|
|
765
769
|
export declare const makeMoney: () => io.flow.v0.models.Money;
|
|
766
770
|
export declare const makeMoneyWithBase: () => io.flow.v0.models.MoneyWithBase;
|
|
@@ -774,6 +778,9 @@ export declare const makeNoInventoryReservationErrorItem: () => io.flow.v0.model
|
|
|
774
778
|
export declare const makeNotificationDeletedV2: () => io.flow.v0.models.NotificationDeletedV2;
|
|
775
779
|
export declare const makeNotificationUpsertedV2: () => io.flow.v0.models.NotificationUpsertedV2;
|
|
776
780
|
export declare const makeNumberRange: () => io.flow.v0.models.NumberRange;
|
|
781
|
+
export declare const makeOnboardingMerchantPickupWindow: () => io.flow.v0.models.OnboardingMerchantPickupWindow;
|
|
782
|
+
export declare const makeOnboardingMerchantScheduledPickup: () => io.flow.v0.models.OnboardingMerchantScheduledPickup;
|
|
783
|
+
export declare const makeOnboardingMerchantTime: () => io.flow.v0.models.OnboardingMerchantTime;
|
|
777
784
|
export declare const makeOnboardingTradeSector: () => io.flow.v0.enums.OnboardingTradeSector;
|
|
778
785
|
export declare const makeOnlineAuthorization: () => io.flow.v0.models.OnlineAuthorization;
|
|
779
786
|
export declare const makeOnlineAuthorizationDeletedV2: () => io.flow.v0.models.OnlineAuthorizationDeletedV2;
|
|
@@ -1454,7 +1461,6 @@ export declare const makeTaxVerificationResult: () => io.flow.v0.enums.TaxVerifi
|
|
|
1454
1461
|
export declare const makeTaxabilityType: () => "tax_rule";
|
|
1455
1462
|
export declare const makeTaxabilityValue: () => "exempt";
|
|
1456
1463
|
export declare const makeThirdPartyLogisticsPartner: () => io.flow.v0.models.ThirdPartyLogisticsPartner;
|
|
1457
|
-
export declare const makeThirdPartyLogisticsPickUpTimeWindow: () => io.flow.v0.models.ThirdPartyLogisticsPickUpTimeWindow;
|
|
1458
1464
|
export declare const makeThreeDSecure: () => io.flow.v0.models.ThreeDSecure;
|
|
1459
1465
|
export declare const makeThreeDSecureCode: () => io.flow.v0.enums.ThreeDSecureCode;
|
|
1460
1466
|
export declare const makeThreedsChallengeAction: () => io.flow.v0.models.ThreedsTwoChallengeRequest;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-factories",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.22",
|
|
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": "file:../api-types"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "7b2e429840b21cd751e228d0cea9c2845fbedb25"
|
|
40
40
|
}
|