6989a98d75
- Arkitektur: docs/auth/passwordless-architecture.md - Backend: iom/quixzoom-auth-service/ (FastAPI + Redis) - Webb: quixzoom-market-pages/se/login/ (QR-kod + polling) - App: iom/quixzoom-app/src/features/auth/ (push + deep links) Flöde: QR-kod → app-godkännande → webb-inloggad
16 lines
615 B
TypeScript
16 lines
615 B
TypeScript
import { APIResource } from "../../../core/resource.js";
|
|
import { APIPromise } from "../../../core/api-promise.js";
|
|
import { RequestOptions } from "../../../internal/request-options.js";
|
|
export declare class Content extends APIResource {
|
|
/**
|
|
* Retrieve Container File Content
|
|
*/
|
|
retrieve(fileID: string, params: ContentRetrieveParams, options?: RequestOptions): APIPromise<Response>;
|
|
}
|
|
export interface ContentRetrieveParams {
|
|
container_id: string;
|
|
}
|
|
export declare namespace Content {
|
|
export { type ContentRetrieveParams as ContentRetrieveParams };
|
|
}
|
|
//# sourceMappingURL=content.d.ts.map
|