glitch-javascript-sdk 3.10.8 → 4.0.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.
@@ -110,3 +110,5 @@ export { MarketResearch };
110
110
  export { GameAdvertising };
111
111
  export { Hosting };
112
112
  export { GameDesign };
113
+ export { default as FestivalNetworking } from './FestivalNetworking';
114
+ export { default as Microtransactions } from './Microtransactions';
@@ -25,6 +25,8 @@ import { Influencers } from "./api";
25
25
  import { Games } from "./api";
26
26
  import { Publications } from "./api";
27
27
  import { GameShows } from "./api";
28
+ import FestivalNetworking from './api/FestivalNetworking';
29
+ export * from './api/FestivalNetworking';
28
30
  import { Newsletters } from "./api";
29
31
  import { PlayTests } from "./api";
30
32
  import { Media } from "./api";
@@ -54,6 +56,10 @@ import { MarketResearch } from './api';
54
56
  import { GameAdvertising } from './api';
55
57
  import { Hosting } from './api';
56
58
  import { GameDesign } from './api';
59
+ import { Microtransactions } from './api';
60
+ export * from './api/Microtransactions';
61
+ export * from './util/MicrotransactionBridge';
62
+ export * from './util/MicrotransactionOverlay';
57
63
  import Requests from "./util/Requests";
58
64
  import Parser from "./util/Parser";
59
65
  import Session from "./util/Session";
@@ -104,6 +110,7 @@ declare class Glitch {
104
110
  Newsletters: typeof Newsletters;
105
111
  PlayTests: typeof PlayTests;
106
112
  Media: typeof Media;
113
+ FestivalNetworking: typeof FestivalNetworking;
107
114
  Scheduler: typeof Scheduler;
108
115
  RedditSubreddits: typeof RedditSubreddits;
109
116
  Funnel: typeof Funnel;
@@ -129,6 +136,7 @@ declare class Glitch {
129
136
  GameAdvertising: typeof GameAdvertising;
130
137
  Hosting: typeof Hosting;
131
138
  GameDesign: typeof GameDesign;
139
+ Microtransactions: typeof Microtransactions;
132
140
  };
133
141
  static util: {
134
142
  Requests: typeof Requests;