@@ -16,7 +16,7 @@ const EMPTY_BADGES_COUNT = {
1616
1717const getAllQuestions = async ( ) => {
1818 const request = await fetch (
19- "https://tickets.pycon.it/api/v1/organizers/python-italia/events/pyconit2024 /questions/" ,
19+ "https://tickets.pycon.it/api/v1/organizers/python-italia/events/pyconit2025 /questions/" ,
2020 {
2121 headers : {
2222 Authorization : `Token ${ process . env . PRETIX_API_TOKEN } ` ,
@@ -46,7 +46,7 @@ const getConferenceRoleForTicketData = async (orderPosition) => {
4646 }` ,
4747 variables : {
4848 ticketData : JSON . stringify ( orderPosition ) ,
49- conferenceCode : "pycon2024 " ,
49+ conferenceCode : "pycon2025 " ,
5050 } ,
5151 } ) ,
5252 } ) ;
@@ -56,7 +56,7 @@ const getConferenceRoleForTicketData = async (orderPosition) => {
5656
5757const getAllOrderPositions = async ( ) => {
5858 let next =
59- "https://tickets.pycon.it/api/v1/organizers/python-italia/events/pyconit2024 /checkinlists/44 /positions/" ;
59+ "https://tickets.pycon.it/api/v1/organizers/python-italia/events/pyconit2025 /checkinlists/59 /positions/" ;
6060 const positions = [ ] ;
6161 while ( next ) {
6262 const request = await fetch ( next , {
@@ -210,7 +210,7 @@ const createEmptyBadgeOrderPositions = () => {
210210 width : "23cm" ,
211211 height : "33cm" ,
212212 } ) ;
213- archive . append ( buffer , { name : filename } ) ;
213+ archive . append ( Buffer . from ( buffer ) , { name : filename } ) ;
214214 }
215215
216216 counter = counter + 1 ;
0 commit comments