@flowio/api-factories 0.0.118 → 0.0.121
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 +302 -42
- package/dist/esm/api.js +246 -7
- package/dist/types/api.d.ts +21 -0
- package/package.json +2 -3
- package/src/api.ts +280 -7
package/dist/types/api.d.ts
CHANGED
|
@@ -66,6 +66,8 @@ export declare const makeAllocationUpsertedV2: () => io.flow.v0.models.Allocatio
|
|
|
66
66
|
export declare const makeAllocationV2: () => io.flow.v0.models.AllocationV2;
|
|
67
67
|
export declare const makeAmountMargin: () => io.flow.v0.models.AmountMargin;
|
|
68
68
|
export declare const makeAmountMarginForm: () => io.flow.v0.models.AmountMarginForm;
|
|
69
|
+
export declare const makeAmruthaItemDeleted: () => io.flow.v0.models.AmruthaItemDeleted;
|
|
70
|
+
export declare const makeAmruthaItemUpserted: () => io.flow.v0.models.AmruthaItemUpserted;
|
|
69
71
|
export declare const makeAnalyticsExportType: () => io.flow.v0.models.AnalyticsExportType;
|
|
70
72
|
export declare const makeApplePayMerchantValidationPayload: () => io.flow.v0.models.ApplePayMerchantValidationPayload;
|
|
71
73
|
export declare const makeApplepaySdkCreateResultActionDetails: () => io.flow.v0.models.ApplepaySdkCreateResultActionDetails;
|
|
@@ -139,6 +141,7 @@ export declare const makeBankAccountInfoCan: () => io.flow.v0.models.BankAccount
|
|
|
139
141
|
export declare const makeBankAccountInfoFra: () => io.flow.v0.models.BankAccountInfoFra;
|
|
140
142
|
export declare const makeBankAccountInfoGbr: () => io.flow.v0.models.BankAccountInfoGbr;
|
|
141
143
|
export declare const makeBankAccountInfoIta: () => io.flow.v0.models.BankAccountInfoIta;
|
|
144
|
+
export declare const makeBankAccountInfoKor: () => io.flow.v0.models.BankAccountInfoKor;
|
|
142
145
|
export declare const makeBankAccountInfoUsa: () => io.flow.v0.models.BankAccountInfoUsa;
|
|
143
146
|
export declare const makeBankAccountReference: () => io.flow.v0.models.BankAccountReference;
|
|
144
147
|
export declare const makeBankAccountSummary: () => io.flow.v0.models.BankAccountSummary;
|
|
@@ -638,6 +641,7 @@ export declare const makeHarmonizationDocument: () => io.flow.v0.models.Harmoniz
|
|
|
638
641
|
export declare const makeHarmonizationHs10ExportType: () => io.flow.v0.models.HarmonizationHs10ExportType;
|
|
639
642
|
export declare const makeHarmonizationHs6ExportType: () => io.flow.v0.models.HarmonizationHs6ExportType;
|
|
640
643
|
export declare const makeHarmonizationOverviewExportType: () => io.flow.v0.models.HarmonizationOverviewExportType;
|
|
644
|
+
export declare const makeHarmonizationTariffCode: () => io.flow.v0.models.HarmonizationTariffCode;
|
|
641
645
|
export declare const makeHarmonizationTariffCodesExportType: () => io.flow.v0.models.HarmonizationTariffCodesExportType;
|
|
642
646
|
export declare const makeHarmonizedCategoryReference: () => io.flow.v0.models.HarmonizedCategoryReference;
|
|
643
647
|
export declare const makeHarmonizedItem: () => io.flow.v0.models.HarmonizedItem;
|
|
@@ -954,6 +958,14 @@ export declare const makeOrderRulesSummary: () => io.flow.v0.models.OrderRulesSu
|
|
|
954
958
|
export declare const makeOrderServiceChange: () => io.flow.v0.models.OrderServiceChange;
|
|
955
959
|
export declare const makeOrderServiceChangeForm: () => io.flow.v0.models.OrderServiceChangeForm;
|
|
956
960
|
export declare const makeOrderServiceChangeRequestData: () => io.flow.v0.models.OrderServiceChangeRequestData;
|
|
961
|
+
export declare const makeOrderState: () => io.flow.v0.models.OrderState;
|
|
962
|
+
export declare const makeOrderStateDeleted: () => io.flow.v0.models.OrderStateDeleted;
|
|
963
|
+
export declare const makeOrderStateRejectionReason: () => io.flow.v0.unions.OrderStateRejectionReason;
|
|
964
|
+
export declare const makeOrderStateRejectionReasonDomesticOrder: () => io.flow.v0.models.OrderStateRejectionReasonDomesticOrder;
|
|
965
|
+
export declare const makeOrderStateRejectionReasonItemsEmpty: () => io.flow.v0.models.OrderStateRejectionReasonItemsEmpty;
|
|
966
|
+
export declare const makeOrderStateRejectionReasonRestrictedItem: () => io.flow.v0.models.OrderStateRejectionReasonRestrictedItem;
|
|
967
|
+
export declare const makeOrderStateStatus: () => io.flow.v0.enums.OrderStateStatus;
|
|
968
|
+
export declare const makeOrderStateUpserted: () => io.flow.v0.models.OrderStateUpserted;
|
|
957
969
|
export declare const makeOrderStatus: () => io.flow.v0.enums.OrderStatus;
|
|
958
970
|
export declare const makeOrderStorage: () => io.flow.v0.enums.OrderStorage;
|
|
959
971
|
export declare const makeOrderSubmissionForm: () => io.flow.v0.models.OrderSubmissionForm;
|
|
@@ -1235,6 +1247,7 @@ export declare const makePriceWithBaseAndDetails: () => io.flow.v0.models.PriceW
|
|
|
1235
1247
|
export declare const makePricing: () => io.flow.v0.models.Pricing;
|
|
1236
1248
|
export declare const makePricingLevySetting: () => io.flow.v0.enums.PricingLevySetting;
|
|
1237
1249
|
export declare const makePricingSettings: () => io.flow.v0.models.PricingSettings;
|
|
1250
|
+
export declare const makePricingType: () => "inclusive_pricing";
|
|
1238
1251
|
export declare const makePricingVersion: () => io.flow.v0.models.PricingVersion;
|
|
1239
1252
|
export declare const makeProcessingEstimate: () => io.flow.v0.models.ProcessingEstimate;
|
|
1240
1253
|
export declare const makeProduct: () => io.flow.v0.models.Product;
|
|
@@ -1288,6 +1301,7 @@ export declare const makeRateUpsertedV3: () => io.flow.v0.models.RateUpsertedV3;
|
|
|
1288
1301
|
export declare const makeRateVersion: () => io.flow.v0.models.RateVersion;
|
|
1289
1302
|
export declare const makeRatecard: () => io.flow.v0.models.Ratecard;
|
|
1290
1303
|
export declare const makeRatecardCarrierSummary: () => io.flow.v0.models.RatecardCarrierSummary;
|
|
1304
|
+
export declare const makeRatecardData: () => io.flow.v0.models.RatecardData;
|
|
1291
1305
|
export declare const makeRatecardDeleted: () => io.flow.v0.models.RatecardDeleted;
|
|
1292
1306
|
export declare const makeRatecardEstimate: () => io.flow.v0.unions.RatecardEstimate;
|
|
1293
1307
|
export declare const makeRatecardEstimateForm: () => io.flow.v0.models.RatecardEstimateForm;
|
|
@@ -1409,11 +1423,13 @@ export declare const makeSelfBillingAgreement: () => io.flow.v0.models.SelfBilli
|
|
|
1409
1423
|
export declare const makeSellabilityError: () => io.flow.v0.models.SellabilityError;
|
|
1410
1424
|
export declare const makeSellabilityErrorCode: () => io.flow.v0.enums.SellabilityErrorCode;
|
|
1411
1425
|
export declare const makeSellabilityNeedsActionAttributes: () => io.flow.v0.models.SellabilityNeedsActionAttributes;
|
|
1426
|
+
export declare const makeSellabilityReasonWithRegions: () => io.flow.v0.models.SellabilityReasonWithRegions;
|
|
1412
1427
|
export declare const makeSellabilityRegionResult: () => io.flow.v0.models.SellabilityRegionResult;
|
|
1413
1428
|
export declare const makeSellabilityRegionWithReasons: () => io.flow.v0.models.SellabilityRegionWithReasons;
|
|
1414
1429
|
export declare const makeSellabilityRequest: () => io.flow.v0.unions.SellabilityRequest;
|
|
1415
1430
|
export declare const makeSellabilityRequestStatus: () => "commit";
|
|
1416
1431
|
export declare const makeSellabilityResponse: () => io.flow.v0.unions.SellabilityResponse;
|
|
1432
|
+
export declare const makeSellabilityRestrictedReason: () => io.flow.v0.models.SellabilityRestrictedReason;
|
|
1417
1433
|
export declare const makeSellabilityRestrictedRegion: () => io.flow.v0.models.SellabilityRestrictedRegion;
|
|
1418
1434
|
export declare const makeSellabilityResultErrorCode: () => io.flow.v0.enums.SellabilityResultErrorCode;
|
|
1419
1435
|
export declare const makeSellabilityResultStatus: () => io.flow.v0.enums.SellabilityResultStatus;
|
|
@@ -1577,6 +1593,9 @@ export declare const makeSurchargeResponsibleParty: () => io.flow.v0.enums.Surch
|
|
|
1577
1593
|
export declare const makeSurchargeResponsiblePartyDisplay: () => io.flow.v0.models.SurchargeResponsiblePartyDisplay;
|
|
1578
1594
|
export declare const makeSurchargeSetting: () => io.flow.v0.models.SurchargeSetting;
|
|
1579
1595
|
export declare const makeSurchargeSettingDisplay: () => io.flow.v0.models.SurchargeSettingDisplay;
|
|
1596
|
+
export declare const makeTariffCodes: () => io.flow.v0.models.TariffCodes;
|
|
1597
|
+
export declare const makeTariffCodesDeleted: () => io.flow.v0.models.TariffCodesDeleted;
|
|
1598
|
+
export declare const makeTariffCodesUpserted: () => io.flow.v0.models.TariffCodesUpserted;
|
|
1580
1599
|
export declare const makeTax: () => io.flow.v0.models.Tax;
|
|
1581
1600
|
export declare const makeTaxApplicability: () => io.flow.v0.enums.TaxApplicability;
|
|
1582
1601
|
export declare const makeTaxBreakdown: () => io.flow.v0.models.TaxBreakdown;
|
|
@@ -1679,6 +1698,8 @@ export declare const makeTransactionMetadataChannelOrganizationTransaction: () =
|
|
|
1679
1698
|
export declare const makeTransactionMetadataFailedPayout: () => io.flow.v0.models.TransactionMetadataFailedPayout;
|
|
1680
1699
|
export declare const makeTransactionMetadataFailedPayoutReference: () => io.flow.v0.models.TransactionMetadataFailedPayoutReference;
|
|
1681
1700
|
export declare const makeTransactionMetadataManual: () => io.flow.v0.models.TransactionMetadataManual;
|
|
1701
|
+
export declare const makeTransactionMetadataMerchantFee: () => io.flow.v0.models.TransactionMetadataMerchantFee;
|
|
1702
|
+
export declare const makeTransactionMetadataMerchantFeeItem: () => io.flow.v0.models.TransactionMetadataMerchantFeeItem;
|
|
1682
1703
|
export declare const makeTransactionMetadataOriginalTransaction: () => io.flow.v0.models.TransactionMetadataOriginalTransaction;
|
|
1683
1704
|
export declare const makeTransactionMetadataOutboundTransaction: () => io.flow.v0.models.TransactionMetadataOutboundTransaction;
|
|
1684
1705
|
export declare const makeTransactionMetadataPaymentTransaction: () => io.flow.v0.models.TransactionMetadataPaymentTransaction;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-factories",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.121",
|
|
4
4
|
"description": "Flow API mock data factories",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"flow",
|
|
@@ -35,6 +35,5 @@
|
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"@faker-js/faker": "^6.2.0",
|
|
37
37
|
"@flowio/api-types": "*"
|
|
38
|
-
}
|
|
39
|
-
"gitHead": "135ffbb6c863d1ed7a34a1f2aecefa6495a9a4d7"
|
|
38
|
+
}
|
|
40
39
|
}
|