glitch-javascript-sdk 0.0.9 → 0.1.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/dist/cjs/index.js +1 -1
- package/dist/esm/index.d.ts +2 -2
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
- package/src/index.ts +2 -2
package/dist/cjs/index.js
CHANGED
package/dist/esm/index.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ declare class Glitch {
|
|
|
10
10
|
Config: Config;
|
|
11
11
|
};
|
|
12
12
|
static api: {
|
|
13
|
-
Auth: Auth;
|
|
13
|
+
Auth: typeof Auth;
|
|
14
14
|
Competitions: Competitions;
|
|
15
15
|
Users: Users;
|
|
16
16
|
Events: Events;
|
|
@@ -18,4 +18,4 @@ declare class Glitch {
|
|
|
18
18
|
Waitlists: Waitlists;
|
|
19
19
|
};
|
|
20
20
|
}
|
|
21
|
-
export
|
|
21
|
+
export default Glitch;
|
package/dist/esm/index.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1134,7 +1134,7 @@ declare class Glitch {
|
|
|
1134
1134
|
Config: Config;
|
|
1135
1135
|
};
|
|
1136
1136
|
static api: {
|
|
1137
|
-
Auth: Auth;
|
|
1137
|
+
Auth: typeof Auth;
|
|
1138
1138
|
Competitions: Competitions;
|
|
1139
1139
|
Users: Users;
|
|
1140
1140
|
Events: Events;
|
|
@@ -1143,4 +1143,4 @@ declare class Glitch {
|
|
|
1143
1143
|
};
|
|
1144
1144
|
}
|
|
1145
1145
|
|
|
1146
|
-
export { Glitch };
|
|
1146
|
+
export { Glitch as default };
|
package/package.json
CHANGED
package/src/index.ts
CHANGED