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
49 lines
1.8 KiB
JavaScript
49 lines
1.8 KiB
JavaScript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
import { APIResource } from "../../core/resource.mjs";
|
|
import { ConversationCursorPage, } from "../../core/pagination.mjs";
|
|
import { path } from "../../internal/utils/path.mjs";
|
|
/**
|
|
* Manage conversations and conversation items.
|
|
*/
|
|
export class Items extends APIResource {
|
|
/**
|
|
* Create items in a conversation with the given ID.
|
|
*/
|
|
create(conversationID, params, options) {
|
|
const { include, ...body } = params;
|
|
return this._client.post(path `/conversations/${conversationID}/items`, {
|
|
query: { include },
|
|
body,
|
|
...options,
|
|
__security: { bearerAuth: true },
|
|
});
|
|
}
|
|
/**
|
|
* Get a single item from a conversation with the given IDs.
|
|
*/
|
|
retrieve(itemID, params, options) {
|
|
const { conversation_id, ...query } = params;
|
|
return this._client.get(path `/conversations/${conversation_id}/items/${itemID}`, {
|
|
query,
|
|
...options,
|
|
__security: { bearerAuth: true },
|
|
});
|
|
}
|
|
/**
|
|
* List all items for a conversation with the given ID.
|
|
*/
|
|
list(conversationID, query = {}, options) {
|
|
return this._client.getAPIList(path `/conversations/${conversationID}/items`, (ConversationCursorPage), { query, ...options, __security: { bearerAuth: true } });
|
|
}
|
|
/**
|
|
* Delete an item from a conversation with the given IDs.
|
|
*/
|
|
delete(itemID, params, options) {
|
|
const { conversation_id } = params;
|
|
return this._client.delete(path `/conversations/${conversation_id}/items/${itemID}`, {
|
|
...options,
|
|
__security: { bearerAuth: true },
|
|
});
|
|
}
|
|
}
|
|
//# sourceMappingURL=items.mjs.map
|