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
22 lines
871 B
JavaScript
22 lines
871 B
JavaScript
"use strict";
|
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.Content = void 0;
|
|
const resource_1 = require("../../core/resource.js");
|
|
const headers_1 = require("../../internal/headers.js");
|
|
const path_1 = require("../../internal/utils/path.js");
|
|
class Content extends resource_1.APIResource {
|
|
/**
|
|
* Download a skill zip bundle by its ID.
|
|
*/
|
|
retrieve(skillID, options) {
|
|
return this._client.get((0, path_1.path) `/skills/${skillID}/content`, {
|
|
...options,
|
|
headers: (0, headers_1.buildHeaders)([{ Accept: 'application/binary' }, options?.headers]),
|
|
__security: { bearerAuth: true },
|
|
__binaryResponse: true,
|
|
});
|
|
}
|
|
}
|
|
exports.Content = Content;
|
|
//# sourceMappingURL=content.js.map
|