@flowio/api-factories 0.0.22 → 0.0.23

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 CHANGED
@@ -401,7 +401,7 @@ var factories = {
401
401
  key: factories.string(),
402
402
  namespace: factories.string(),
403
403
  value: factories.string(),
404
- value_type: factories['io.flow.shopify.external.v0.enums.value_type'](),
404
+ type: factories['io.flow.shopify.external.v0.enums.value_type'](),
405
405
  description: factories.string(),
406
406
  owner_id: factories.long(),
407
407
  owner_resource: factories.string(),
@@ -410,7 +410,7 @@ var factories = {
410
410
  key: factories.string(),
411
411
  namespace: factories.string(),
412
412
  value: factories.string(),
413
- value_type: factories['io.flow.shopify.external.v0.enums.value_type'](),
413
+ type: factories['io.flow.shopify.external.v0.enums.value_type'](),
414
414
  description: factories.string(),
415
415
  }); },
416
416
  'io.flow.shopify.external.v0.models.option': function () { return ({
@@ -9897,6 +9897,7 @@ var factories = {
9897
9897
  'io.flow.v0.models.statement': function () { return ({
9898
9898
  id: factories.string(),
9899
9899
  account: factories['io.flow.v0.models.account_reference'](),
9900
+ ending_balance: factories.decimal(),
9900
9901
  payout: factories['io.flow.v0.models.payout'](),
9901
9902
  attachments: arrayOf(function () { return factories['io.flow.v0.models.attachment'](); }),
9902
9903
  }); },
package/dist/esm/api.js CHANGED
@@ -364,7 +364,7 @@ var factories = {
364
364
  key: factories.string(),
365
365
  namespace: factories.string(),
366
366
  value: factories.string(),
367
- value_type: factories['io.flow.shopify.external.v0.enums.value_type'](),
367
+ type: factories['io.flow.shopify.external.v0.enums.value_type'](),
368
368
  description: factories.string(),
369
369
  owner_id: factories.long(),
370
370
  owner_resource: factories.string(),
@@ -373,7 +373,7 @@ var factories = {
373
373
  key: factories.string(),
374
374
  namespace: factories.string(),
375
375
  value: factories.string(),
376
- value_type: factories['io.flow.shopify.external.v0.enums.value_type'](),
376
+ type: factories['io.flow.shopify.external.v0.enums.value_type'](),
377
377
  description: factories.string(),
378
378
  }); },
379
379
  'io.flow.shopify.external.v0.models.option': function () { return ({
@@ -9860,6 +9860,7 @@ var factories = {
9860
9860
  'io.flow.v0.models.statement': function () { return ({
9861
9861
  id: factories.string(),
9862
9862
  account: factories['io.flow.v0.models.account_reference'](),
9863
+ ending_balance: factories.decimal(),
9863
9864
  payout: factories['io.flow.v0.models.payout'](),
9864
9865
  attachments: arrayOf(function () { return factories['io.flow.v0.models.attachment'](); }),
9865
9866
  }); },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowio/api-factories",
3
- "version": "0.0.22",
3
+ "version": "0.0.23",
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": "7b2e429840b21cd751e228d0cea9c2845fbedb25"
39
+ "gitHead": "e7da36bb5224093f0c1d597038887a4ecf7d820e"
40
40
  }
package/src/api.ts CHANGED
@@ -420,7 +420,7 @@ const factories = {
420
420
  key: factories.string(),
421
421
  namespace: factories.string(),
422
422
  value: factories.string(),
423
- value_type: factories['io.flow.shopify.external.v0.enums.value_type'](),
423
+ type: factories['io.flow.shopify.external.v0.enums.value_type'](),
424
424
  description: factories.string(),
425
425
  owner_id: factories.long(),
426
426
  owner_resource: factories.string(),
@@ -430,7 +430,7 @@ const factories = {
430
430
  key: factories.string(),
431
431
  namespace: factories.string(),
432
432
  value: factories.string(),
433
- value_type: factories['io.flow.shopify.external.v0.enums.value_type'](),
433
+ type: factories['io.flow.shopify.external.v0.enums.value_type'](),
434
434
  description: factories.string(),
435
435
  }),
436
436
 
@@ -11390,6 +11390,7 @@ const factories = {
11390
11390
  'io.flow.v0.models.statement': (): io.flow.v0.models.Statement => ({
11391
11391
  id: factories.string(),
11392
11392
  account: factories['io.flow.v0.models.account_reference'](),
11393
+ ending_balance: factories.decimal(),
11393
11394
  payout: factories['io.flow.v0.models.payout'](),
11394
11395
  attachments: arrayOf(() => factories['io.flow.v0.models.attachment']()),
11395
11396
  }),