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.
- package/README.md +7 -1
- package/dist/browser/hosting-runtime.js +13 -3
- package/dist/browser/hosting-runtime.js.map +1 -1
- package/dist/cjs/index.js +8348 -8
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/api/FestivalNetworking.d.ts +286 -0
- package/dist/esm/api/Messages.d.ts +4 -1
- package/dist/esm/api/Microtransactions.d.ts +776 -0
- package/dist/esm/api/index.d.ts +2 -0
- package/dist/esm/index.d.ts +8 -0
- package/dist/esm/index.js +8272 -6
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/routes/FestivalNetworkingRoute.d.ts +7 -0
- package/dist/esm/routes/MicrotransactionsRoute.d.ts +8 -0
- package/dist/esm/util/MicrotransactionBridge.d.ts +93 -0
- package/dist/esm/util/MicrotransactionOverlay.d.ts +59 -0
- package/dist/esm/util/Requests.d.ts +7 -3
- package/dist/index.d.ts +1227 -5
- package/guides/commerce-delivery-receiver.mjs +117 -0
- package/guides/microtransactions.md +466 -0
- package/package.json +7 -4
- package/src/api/FestivalNetworking.ts +216 -0
- package/src/api/Messages.ts +4 -1
- package/src/api/Microtransactions.ts +699 -0
- package/src/api/index.ts +2 -0
- package/src/index.ts +8 -0
- package/src/routes/FestivalNetworkingRoute.ts +33 -0
- package/src/routes/MicrotransactionsRoute.ts +57 -0
- package/src/util/MicrotransactionBridge.ts +193 -0
- package/src/util/MicrotransactionOverlay.ts +302 -0
- package/src/util/Requests.ts +15 -3
- package/src/util/Session.ts +3 -2
package/dist/esm/api/index.d.ts
CHANGED
package/dist/esm/index.d.ts
CHANGED
|
@@ -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;
|