@playcademy/sdk 0.1.13 → 0.1.15
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 +38 -1
- package/dist/index.d.ts +1363 -607
- package/dist/index.js +506 -155
- package/dist/server.d.ts +3 -1
- package/dist/types.d.ts +466 -108
- package/package.json +4 -5
package/dist/server.d.ts
CHANGED
|
@@ -54,6 +54,8 @@ interface IntegrationsConfig {
|
|
|
54
54
|
kv?: boolean;
|
|
55
55
|
/** Bucket storage (optional) */
|
|
56
56
|
bucket?: boolean;
|
|
57
|
+
/** Authentication (optional) */
|
|
58
|
+
auth?: boolean;
|
|
57
59
|
}
|
|
58
60
|
/**
|
|
59
61
|
* Unified Playcademy configuration
|
|
@@ -371,4 +373,4 @@ declare function verifyGameToken(gameToken: string, options?: {
|
|
|
371
373
|
}>;
|
|
372
374
|
|
|
373
375
|
export { PlaycademyClient, verifyGameToken };
|
|
374
|
-
export type { BackendDeploymentBundle, BackendResourceBindings, IntegrationsConfig, PlaycademyConfig, PlaycademyServerClientConfig, PlaycademyServerClientState, TimebackIntegrationConfig };
|
|
376
|
+
export type { BackendDeploymentBundle, BackendResourceBindings, IntegrationsConfig, PlaycademyConfig, PlaycademyServerClientConfig, PlaycademyServerClientState, TimebackIntegrationConfig, UserInfo };
|