initial commit

This commit is contained in:
Luke Hagar
2025-09-26 02:33:10 +00:00
commit f7b542efbf
928 changed files with 113882 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
# GithubUpdateRequest
## Example Usage
```typescript
import { GithubUpdateRequest } from "dokploy/models/operations";
let value: GithubUpdateRequest = {
githubId: "<id>",
gitProviderId: "<id>",
name: "<value>",
};
```
## Fields
| Field | Type | Required | Description |
| ---------------------- | ---------------------- | ---------------------- | ---------------------- |
| `githubId` | *string* | :heavy_check_mark: | N/A |
| `githubAppName` | *string* | :heavy_minus_sign: | N/A |
| `githubAppId` | *number* | :heavy_minus_sign: | N/A |
| `githubClientId` | *string* | :heavy_minus_sign: | N/A |
| `githubClientSecret` | *string* | :heavy_minus_sign: | N/A |
| `githubInstallationId` | *string* | :heavy_minus_sign: | N/A |
| `githubPrivateKey` | *string* | :heavy_minus_sign: | N/A |
| `githubWebhookSecret` | *string* | :heavy_minus_sign: | N/A |
| `gitProviderId` | *string* | :heavy_check_mark: | N/A |
| `name` | *string* | :heavy_check_mark: | N/A |