@victoria-company/agora-client 1.0.202504281042 → 1.0.202504291018
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/models/index.d.ts +4 -0
 - package/dist/models/index.js +2 -0
 - package/package.json +1 -1
 
    
        package/dist/models/index.d.ts
    CHANGED
    
    | 
         @@ -158,6 +158,10 @@ export interface BecomingDelegateRequest extends Parsable { 
     | 
|
| 
       158 
158 
     | 
    
         
             
                 * The questionHasACar property
         
     | 
| 
       159 
159 
     | 
    
         
             
                 */
         
     | 
| 
       160 
160 
     | 
    
         
             
                questionHasACar?: boolean | null;
         
     | 
| 
      
 161 
     | 
    
         
            +
                /**
         
     | 
| 
      
 162 
     | 
    
         
            +
                 * The questionHasCarAccess property
         
     | 
| 
      
 163 
     | 
    
         
            +
                 */
         
     | 
| 
      
 164 
     | 
    
         
            +
                questionHasCarAccess?: number | null;
         
     | 
| 
       161 
165 
     | 
    
         
             
                /**
         
     | 
| 
       162 
166 
     | 
    
         
             
                 * The questionHowYouKnowVictoria property
         
     | 
| 
       163 
167 
     | 
    
         
             
                 */
         
     | 
    
        package/dist/models/index.js
    CHANGED
    
    | 
         @@ -2264,6 +2264,7 @@ function deserializeIntoBecomingDelegateRequest(becomingDelegateRequest = {}) { 
     | 
|
| 
       2264 
2264 
     | 
    
         
             
                    "phone": n => { becomingDelegateRequest.phone = n.getStringValue(); },
         
     | 
| 
       2265 
2265 
     | 
    
         
             
                    "questionContactTimeFrame": n => { becomingDelegateRequest.questionContactTimeFrame = n.getNumberValue(); },
         
     | 
| 
       2266 
2266 
     | 
    
         
             
                    "questionHasACar": n => { becomingDelegateRequest.questionHasACar = n.getBooleanValue(); },
         
     | 
| 
      
 2267 
     | 
    
         
            +
                    "questionHasCarAccess": n => { becomingDelegateRequest.questionHasCarAccess = n.getNumberValue(); },
         
     | 
| 
       2267 
2268 
     | 
    
         
             
                    "questionHowYouKnowVictoria": n => { becomingDelegateRequest.questionHowYouKnowVictoria = n.getNumberValue(); },
         
     | 
| 
       2268 
2269 
     | 
    
         
             
                    "questionIsAdult": n => { becomingDelegateRequest.questionIsAdult = n.getNumberValue(); },
         
     | 
| 
       2269 
2270 
     | 
    
         
             
                    "questionProfessionalActivity": n => { becomingDelegateRequest.questionProfessionalActivity = n.getNumberValue(); },
         
     | 
| 
         @@ -5336,6 +5337,7 @@ function serializeBecomingDelegateRequest(writer, becomingDelegateRequest = {}) 
     | 
|
| 
       5336 
5337 
     | 
    
         
             
                    writer.writeStringValue("phone", becomingDelegateRequest.phone);
         
     | 
| 
       5337 
5338 
     | 
    
         
             
                    writer.writeNumberValue("questionContactTimeFrame", becomingDelegateRequest.questionContactTimeFrame);
         
     | 
| 
       5338 
5339 
     | 
    
         
             
                    writer.writeBooleanValue("questionHasACar", becomingDelegateRequest.questionHasACar);
         
     | 
| 
      
 5340 
     | 
    
         
            +
                    writer.writeNumberValue("questionHasCarAccess", becomingDelegateRequest.questionHasCarAccess);
         
     | 
| 
       5339 
5341 
     | 
    
         
             
                    writer.writeNumberValue("questionHowYouKnowVictoria", becomingDelegateRequest.questionHowYouKnowVictoria);
         
     | 
| 
       5340 
5342 
     | 
    
         
             
                    writer.writeNumberValue("questionIsAdult", becomingDelegateRequest.questionIsAdult);
         
     | 
| 
       5341 
5343 
     | 
    
         
             
                    writer.writeNumberValue("questionProfessionalActivity", becomingDelegateRequest.questionProfessionalActivity);
         
     |