@pulumi/github 5.14.0 → 5.14.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/github",
3
- "version": "v5.14.0",
3
+ "version": "v5.14.1",
4
4
  "description": "A Pulumi package for creating and managing github cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -11,7 +11,7 @@
11
11
  "license": "Apache-2.0",
12
12
  "scripts": {
13
13
  "build": "tsc",
14
- "install": "node scripts/install-pulumi-plugin.js resource github v5.14.0"
14
+ "install": "node scripts/install-pulumi-plugin.js resource github v5.14.1"
15
15
  },
16
16
  "dependencies": {
17
17
  "@pulumi/pulumi": "^3.0.0"
package/types/input.d.ts CHANGED
@@ -178,6 +178,9 @@ export interface RepositoryCollaboratorsTeam {
178
178
  * Must be `push` for personal repositories. Defaults to `push`.
179
179
  */
180
180
  permission?: pulumi.Input<string>;
181
+ /**
182
+ * The GitHub team id or the GitHub team slug
183
+ */
181
184
  teamId: pulumi.Input<string>;
182
185
  }
183
186
  export interface RepositoryCollaboratorsUser {
package/types/output.d.ts CHANGED
@@ -801,6 +801,9 @@ export interface RepositoryCollaboratorsTeam {
801
801
  * Must be `push` for personal repositories. Defaults to `push`.
802
802
  */
803
803
  permission?: string;
804
+ /**
805
+ * The GitHub team id or the GitHub team slug
806
+ */
804
807
  teamId: string;
805
808
  }
806
809
  export interface RepositoryCollaboratorsUser {