Spaces:
				
			
			
	
			
			
					
		Running
		
	
	
	
			
			
	
	
	
	
		
		
					
		Running
		
	
		luanpoppe
		
	commited on
		
		
					Commit 
							
							·
						
						4b8fa81
	
1
								Parent(s):
							
							98bf9ef
								
feat: mudando url do bubble
Browse files
    	
        _utils/bubble_integrations/enviar_resposta_final.py
    CHANGED
    
    | 
         @@ -10,10 +10,10 @@ def enviar_resposta_final( 
     | 
|
| 10 | 
         
             
                error: bool = False,
         
     | 
| 11 | 
         
             
                titulo_do_documento: str = "Erro ao gerar documento",
         
     | 
| 12 | 
         
             
            ):
         
     | 
| 13 | 
         
            -
                 
     | 
| 14 | 
         
            -
                url = (
         
     | 
| 15 | 
         
            -
             
     | 
| 16 | 
         
            -
                )
         
     | 
| 17 | 
         
             
                headers = {"Authorization": f"Bearer {os.environ.get("BUBBLE_TOKEN")}"}
         
     | 
| 18 | 
         | 
| 19 | 
         
             
                body = {
         
     | 
| 
         | 
|
| 10 | 
         
             
                error: bool = False,
         
     | 
| 11 | 
         
             
                titulo_do_documento: str = "Erro ao gerar documento",
         
     | 
| 12 | 
         
             
            ):
         
     | 
| 13 | 
         
            +
                url = f"https://vella.app.br/version-{version}/api/1.1/wf/texto_completo"
         
     | 
| 14 | 
         
            +
                # url = (
         
     | 
| 15 | 
         
            +
                #     f"https://vella-main.bubbleapps.io/version-{version}/api/1.1/wf/texto_completo"
         
     | 
| 16 | 
         
            +
                # )
         
     | 
| 17 | 
         
             
                headers = {"Authorization": f"Bearer {os.environ.get("BUBBLE_TOKEN")}"}
         
     | 
| 18 | 
         | 
| 19 | 
         
             
                body = {
         
     |