@sesamy/sesamy-js 1.97.0 → 1.99.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/sesamy-js.cjs +5 -5
- package/dist/sesamy-js.d.ts +5 -1
- package/dist/sesamy-js.iife.js +5 -5
- package/dist/sesamy-js.mjs +458 -450
- package/package.json +1 -1
package/dist/sesamy-js.d.ts
CHANGED
|
@@ -930,7 +930,11 @@ declare function registerAPI(config: ApiConfig): {
|
|
|
930
930
|
collect: (fallbackId?: string) => Promise<DiagnosticsPayload>;
|
|
931
931
|
};
|
|
932
932
|
entitlements: {
|
|
933
|
-
access: (id: string) => Promise<
|
|
933
|
+
access: (id: string) => Promise<{
|
|
934
|
+
id: string;
|
|
935
|
+
url: string;
|
|
936
|
+
token: string;
|
|
937
|
+
}>;
|
|
934
938
|
hasAccess: (itemSrc: string | null | undefined, passes?: string[]) => Promise<Entitlement | undefined>;
|
|
935
939
|
list: (params?: GetEntitlementsOptions) => Promise<Entitlement[]>;
|
|
936
940
|
signedLinks: typeof getSignedLinks;
|