- 
                Notifications
    You must be signed in to change notification settings 
- Fork 9
[DAS 362] - Added new endpoints to Acc Issues SDK #145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[DAS 362] - Added new endpoints to Acc Issues SDK #145
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR adds new attachment-related endpoints to the Autodesk Construction Issues SDK. It introduces functionality for managing issue attachments including adding, retrieving, and deleting attachments.
- Added four new model interfaces for handling attachment data structures
- Implemented three new API endpoints for attachment management operations
- Extended the model exports to include the new attachment interfaces
Reviewed Changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 7 comments.
Show a summary per file
| File | Description | 
|---|---|
| construction/issues/source/model/index.ts | Exports new attachment-related model interfaces | 
| construction/issues/source/model/attachmentsPayload.ts | Defines payload structure for adding attachments to issues | 
| construction/issues/source/model/attachments.ts | Defines structure for attachment collections | 
| construction/issues/source/model/attachmentObject.ts | Defines attachment object structure for creating attachments | 
| construction/issues/source/model/attachment.ts | Defines full attachment structure with metadata | 
| construction/issues/source/api/issue-attachments-api.ts | Implements API endpoints for attachment operations | 
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
1a84d59    to
    e8f4d6d      
    Compare
  
    There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
Copilot reviewed 6 out of 6 changed files in this pull request and generated 13 comments.
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
|  | ||
| /** | ||
| * Deletes a specific attachment from an issue in a project. | ||
| * @summary Your DELETE endpoint | 
    
      
    
      Copilot
AI
    
    
    
      Oct 21, 2025 
    
  
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The summary 'Your DELETE endpoint' is a placeholder and should be replaced with a meaningful description like 'Delete issue attachment'.
| * @summary Your DELETE endpoint | |
| * @summary Delete issue attachment | 
| * For details about retrieving metadata for a specific attachment, see the Retrieve Issue Attachment tutorial. | ||
| * | ||
| * For details about downloading an attachment, see the Download Issue Attachment tutorial. | ||
| * @summary Your GET endpoint | 
    
      
    
      Copilot
AI
    
    
    
      Oct 21, 2025 
    
  
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The summary 'Your GET endpoint' is a placeholder and should be replaced with a meaningful description like 'Retrieve issue attachments'.
| * @summary Your GET endpoint | |
| * @summary Retrieve issue attachments | 
Co-authored-by: Copilot <[email protected]>
d9862cd    to
    73b90a9      
    Compare
  
    
No description provided.