@flowio/api-factories 0.0.100 → 0.0.101
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 +396 -86
- package/dist/esm/api.js +349 -51
- package/dist/types/api.d.ts +16 -4
- package/package.json +2 -2
- package/src/api.ts +402 -55
package/dist/types/api.d.ts
CHANGED
|
@@ -204,19 +204,16 @@ export declare const makeCardVersion: () => io.flow.v0.models.CardVersion;
|
|
|
204
204
|
export declare const makeCarrier: () => io.flow.v0.models.Carrier;
|
|
205
205
|
export declare const makeCarrierChargeReason: () => io.flow.v0.enums.CarrierChargeReason;
|
|
206
206
|
export declare const makeCarrierReference: () => io.flow.v0.models.CarrierReference;
|
|
207
|
+
export declare const makeCarrierRestrictions: () => io.flow.v0.models.CarrierRestrictions;
|
|
207
208
|
export declare const makeCarrierService: () => io.flow.v0.models.CarrierService;
|
|
208
209
|
export declare const makeCartReference: () => io.flow.v0.models.CartReference;
|
|
209
210
|
export declare const makeCatalog: () => io.flow.v0.models.Catalog;
|
|
210
211
|
export declare const makeCatalogDeleted: () => io.flow.v0.models.CatalogDeleted;
|
|
211
|
-
export declare const makeCatalogItemDeleted: () => io.flow.v0.models.CatalogItemDeleted;
|
|
212
|
-
export declare const makeCatalogItemDeletedV2: () => io.flow.v0.models.CatalogItemDeletedV2;
|
|
213
212
|
export declare const makeCatalogItemDocument: () => io.flow.v0.models.CatalogItemDocument;
|
|
214
213
|
export declare const makeCatalogItemDocumentImages: () => io.flow.v0.models.CatalogItemDocumentImages;
|
|
215
214
|
export declare const makeCatalogItemExportType: () => io.flow.v0.models.CatalogItemExportType;
|
|
216
215
|
export declare const makeCatalogItemReference: () => io.flow.v0.models.CatalogItemReference;
|
|
217
216
|
export declare const makeCatalogItemSummary: () => io.flow.v0.models.CatalogItemSummary;
|
|
218
|
-
export declare const makeCatalogItemUpserted: () => io.flow.v0.models.CatalogItemUpserted;
|
|
219
|
-
export declare const makeCatalogItemUpsertedV2: () => io.flow.v0.models.CatalogItemUpsertedV2;
|
|
220
217
|
export declare const makeCatalogPriceBookItemDocument: () => io.flow.v0.models.CatalogPriceBookItemDocument;
|
|
221
218
|
export declare const makeCatalogReference: () => io.flow.v0.models.CatalogReference;
|
|
222
219
|
export declare const makeCatalogStatistics: () => io.flow.v0.models.CatalogStatistics;
|
|
@@ -262,6 +259,12 @@ export declare const makeChannelPendingPayoutTransactionDeleted: () => io.flow.v
|
|
|
262
259
|
export declare const makeChannelPendingPayoutTransactionUpserted: () => io.flow.v0.models.ChannelPendingPayoutTransactionUpserted;
|
|
263
260
|
export declare const makeChannelRate: () => io.flow.v0.models.ChannelRate;
|
|
264
261
|
export declare const makeChannelReference: () => io.flow.v0.models.ChannelReference;
|
|
262
|
+
export declare const makeChannelShopifyOrderState: () => io.flow.v0.models.ChannelShopifyOrderState;
|
|
263
|
+
export declare const makeChannelShopifyOrderStateDeleted: () => io.flow.v0.models.ChannelShopifyOrderStateDeleted;
|
|
264
|
+
export declare const makeChannelShopifyOrderStateReason: () => io.flow.v0.models.ChannelShopifyOrderStateReason;
|
|
265
|
+
export declare const makeChannelShopifyOrderStateReasonCode: () => "placeholder_reason_code";
|
|
266
|
+
export declare const makeChannelShopifyOrderStateUpserted: () => io.flow.v0.models.ChannelShopifyOrderStateUpserted;
|
|
267
|
+
export declare const makeChannelShopifyOrderSummary: () => io.flow.v0.models.ChannelShopifyOrderSummary;
|
|
265
268
|
export declare const makeChannelStatement: () => io.flow.v0.models.ChannelStatement;
|
|
266
269
|
export declare const makeChannelStatementDeleted: () => io.flow.v0.models.ChannelStatementDeleted;
|
|
267
270
|
export declare const makeChannelStatementUpserted: () => io.flow.v0.models.ChannelStatementUpserted;
|
|
@@ -1250,12 +1253,18 @@ export declare const makePricingUpserted: () => io.flow.v0.models.PricingUpserte
|
|
|
1250
1253
|
export declare const makePricingVersion: () => io.flow.v0.models.PricingVersion;
|
|
1251
1254
|
export declare const makeProcessingEstimate: () => io.flow.v0.models.ProcessingEstimate;
|
|
1252
1255
|
export declare const makeProduct: () => io.flow.v0.models.Product;
|
|
1256
|
+
export declare const makeProductDeleted: () => io.flow.v0.models.ProductDeleted;
|
|
1257
|
+
export declare const makeProductInserted: () => io.flow.v0.models.ProductInserted;
|
|
1253
1258
|
export declare const makeProductRestrictionResult: () => io.flow.v0.models.ProductRestrictionResult;
|
|
1254
1259
|
export declare const makeProductRestrictionResultDeleted: () => io.flow.v0.models.ProductRestrictionResultDeleted;
|
|
1255
1260
|
export declare const makeProductRestrictionResultUpserted: () => io.flow.v0.models.ProductRestrictionResultUpserted;
|
|
1256
1261
|
export declare const makeProductRestrictionRule: () => io.flow.v0.enums.ProductRestrictionRule;
|
|
1262
|
+
export declare const makeProductSellability: () => io.flow.v0.models.ProductSellability;
|
|
1263
|
+
export declare const makeProductSellabilityForm: () => io.flow.v0.models.ProductSellabilityForm;
|
|
1264
|
+
export declare const makeProductSellabilityPrice: () => io.flow.v0.models.ProductSellabilityPrice;
|
|
1257
1265
|
export declare const makeProductTaxonomyCategory: () => io.flow.v0.models.ProductTaxonomyCategory;
|
|
1258
1266
|
export declare const makeProductTaxonomyData: () => io.flow.v0.models.ProductTaxonomyData;
|
|
1267
|
+
export declare const makeProductUpdated: () => io.flow.v0.models.ProductUpdated;
|
|
1259
1268
|
export declare const makePromotion: () => io.flow.v0.unions.Promotion;
|
|
1260
1269
|
export declare const makePromotionTrigger: () => io.flow.v0.models.PromotionTrigger;
|
|
1261
1270
|
export declare const makePromotionTriggerForm: () => io.flow.v0.models.PromotionTriggerForm;
|
|
@@ -1400,6 +1409,7 @@ export declare const makeRounding: () => io.flow.v0.models.Rounding;
|
|
|
1400
1409
|
export declare const makeRoundingMethod: () => io.flow.v0.enums.RoundingMethod;
|
|
1401
1410
|
export declare const makeRoundingType: () => io.flow.v0.enums.RoundingType;
|
|
1402
1411
|
export declare const makeRouteAudit: () => io.flow.v0.models.RouteAudit;
|
|
1412
|
+
export declare const makeRuleEffectType: () => io.flow.v0.enums.RuleEffectType;
|
|
1403
1413
|
export declare const makeSchedule: () => io.flow.v0.models.Schedule;
|
|
1404
1414
|
export declare const makeScheduleExceptionStatus: () => io.flow.v0.enums.ScheduleExceptionStatus;
|
|
1405
1415
|
export declare const makeScheduledExport: () => io.flow.v0.models.ScheduledExport;
|
|
@@ -1409,6 +1419,7 @@ export declare const makeSdkAdyenV3AuthenticationToken: () => io.flow.v0.unions.
|
|
|
1409
1419
|
export declare const makeSecurityRatecardFee: () => io.flow.v0.models.SecurityRatecardFee;
|
|
1410
1420
|
export declare const makeSecurityServiceFee: () => io.flow.v0.models.SecurityServiceFee;
|
|
1411
1421
|
export declare const makeSelectIssuerOptionActionDetails: () => io.flow.v0.models.SelectIssuerOptionActionDetails;
|
|
1422
|
+
export declare const makeSellablilityRegionResult: () => io.flow.v0.models.SellablilityRegionResult;
|
|
1412
1423
|
export declare const makeServiceDescription: () => io.flow.v0.unions.ServiceDescription;
|
|
1413
1424
|
export declare const makeServiceFee: () => io.flow.v0.unions.ServiceFee;
|
|
1414
1425
|
export declare const makeServiceReference: () => io.flow.v0.models.ServiceReference;
|
|
@@ -1550,6 +1561,7 @@ export declare const makeSubcatalogSettingsForm: () => io.flow.v0.models.Subcata
|
|
|
1550
1561
|
export declare const makeSubcatalogStatistics: () => io.flow.v0.models.SubcatalogStatistics;
|
|
1551
1562
|
export declare const makeSubcatalogUpserted: () => io.flow.v0.models.SubcatalogUpserted;
|
|
1552
1563
|
export declare const makeSubcatalogVersion: () => io.flow.v0.models.SubcatalogVersion;
|
|
1564
|
+
export declare const makeSubstatusCode: () => io.flow.v0.enums.SubstatusCode;
|
|
1553
1565
|
export declare const makeSuggestion: () => io.flow.v0.models.Suggestion;
|
|
1554
1566
|
export declare const makeSummaryShippingLabelForm: () => io.flow.v0.models.SummaryShippingLabelForm;
|
|
1555
1567
|
export declare const makeSummaryShippingNotificationForm: () => io.flow.v0.models.SummaryShippingNotificationForm;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-factories",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.101",
|
|
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": "b6c2f519293efcf70e56cc356ba0b60292295b25"
|
|
40
40
|
}
|