@stardeck-customer-apps/testing 0.3.1 → 0.4.0

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.
@@ -46,7 +46,16 @@ var state = globalSingleton("state", () => ({
46
46
  emailCounter: 0,
47
47
  identities: /* @__PURE__ */ new Map(),
48
48
  identityLinks: [],
49
- identityMemory: [],
49
+ checkouts: [],
50
+ checkoutCounter: 0,
51
+ sessionStatuses: /* @__PURE__ */ new Map(),
52
+ paymentLinks: /* @__PURE__ */ new Map(),
53
+ products: [],
54
+ uploads: [],
55
+ uploadCounter: 0,
56
+ storageFiles: /* @__PURE__ */ new Map(),
57
+ presignPending: /* @__PURE__ */ new Map(),
58
+ messages: [],
50
59
  allowNetwork: false
51
60
  }));
52
61
 
@@ -19,7 +19,16 @@ var state = globalSingleton("state", () => ({
19
19
  emailCounter: 0,
20
20
  identities: /* @__PURE__ */ new Map(),
21
21
  identityLinks: [],
22
- identityMemory: [],
22
+ checkouts: [],
23
+ checkoutCounter: 0,
24
+ sessionStatuses: /* @__PURE__ */ new Map(),
25
+ paymentLinks: /* @__PURE__ */ new Map(),
26
+ products: [],
27
+ uploads: [],
28
+ uploadCounter: 0,
29
+ storageFiles: /* @__PURE__ */ new Map(),
30
+ presignPending: /* @__PURE__ */ new Map(),
31
+ messages: [],
23
32
  allowNetwork: false
24
33
  }));
25
34