Skip to content

Commit c1c462b

Browse files
authored
[GitHubEnterpriseCloud] Update to 1.1.4 (hash: 9053e518301d1dea37ac4430156f57d5) from 1.1.4 (hash: f9e4e5e66cbc0692cff6ed0af8650af4)
Detected Schema changes: ERROR: error: Error thrown when comparing: local lookups are not permitted, please set AllowFileLookup to true in the configuration component 'server-statistics-actions.yaml' does not exist in the specification local lookups are not permitted, please set AllowFileLookup to true in the configuration component 'server-statistics-packages.yaml' does not exist in the specification cannot resolve reference `server-statistics-actions.yaml`, it's missing: [209328:11] cannot resolve reference `server-statistics-packages.yaml`, it's missing: [209330:11] local lookups are not permitted, please set AllowFileLookup to true in the configuration component 'server-statistics-actions.yaml' does not exist in the specification local lookups are not permitted, please set AllowFileLookup to true in the configuration component 'server-statistics-packages.yaml' does not exist in the specification cannot resolve reference `server-statistics-actions.yaml`, it's missing: [209468:11] cannot resolve reference `server-statistics-packages.yaml`, it's missing: [209470:11] ERROR: local lookups are not permitted, please set AllowFileLookup to true in the configuration ERROR: component 'server-statistics-actions.yaml' does not exist in the specification ERROR: local lookups are not permitted, please set AllowFileLookup to true in the configuration ERROR: component 'server-statistics-packages.yaml' does not exist in the specification ERROR: cannot resolve reference `server-statistics-actions.yaml`, it's missing: [209328:11] ERROR: cannot resolve reference `server-statistics-packages.yaml`, it's missing: [209330:11] ERROR: local lookups are not permitted, please set AllowFileLookup to true in the configuration ERROR: component 'server-statistics-actions.yaml' does not exist in the specification ERROR: local lookups are not permitted, please set AllowFileLookup to true in the configuration ERROR: component 'server-statistics-packages.yaml' does not exist in the specification ERROR: cannot resolve reference `server-statistics-actions.yaml`, it's missing: [209468:11] ERROR: cannot resolve reference `server-statistics-packages.yaml`, it's missing: [209470:11]
1 parent 51e15ee commit c1c462b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+318
-405
lines changed

README.md

Lines changed: 198 additions & 198 deletions
Large diffs are not rendered by default.

etc/openapi-client-generator.state

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/Client.php

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

src/ClientInterface.php

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

src/Operation/Activity/ListNotificationsForAuthenticatedUser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ final class ListNotificationsForAuthenticatedUser
2424
public const OPERATION_MATCH = 'GET /notifications';
2525
private const METHOD = 'GET';
2626
private const PATH = '/notifications';
27-
/**Only show notifications updated after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`. **/
27+
/**Only show results that were last updated after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`. **/
2828
private string $since;
2929
/**Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`. **/
3030
private string $before;

src/Operation/Activity/ListRepoNotificationsForAuthenticatedUser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ final class ListRepoNotificationsForAuthenticatedUser
2020
private string $owner;
2121
/**The name of the repository without the `.git` extension. The name is not case sensitive. **/
2222
private string $repo;
23-
/**Only show notifications updated after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`. **/
23+
/**Only show results that were last updated after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`. **/
2424
private string $since;
2525
/**Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`. **/
2626
private string $before;

src/Operation/Apps/ListInstallations.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ final class ListInstallations
1616
public const OPERATION_MATCH = 'GET /app/installations';
1717
private const METHOD = 'GET';
1818
private const PATH = '/app/installations';
19-
/**Only show notifications updated after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`. **/
19+
/**Only show results that were last updated after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`. **/
2020
private string $since;
2121
/**The number of results per page (max 100). **/
2222
private int $perPage;

src/Operation/Gists/ListForUser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ final class ListForUser
2626
private const PATH = '/users/{username}/gists';
2727
/**The handle for the GitHub user account. **/
2828
private string $username;
29-
/**Only show notifications updated after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`. **/
29+
/**Only show results that were last updated after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`. **/
3030
private string $since;
3131
/**The number of results per page (max 100). **/
3232
private int $perPage;

src/Operation/Gists/ListPublic.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ final class ListPublic
2424
public const OPERATION_MATCH = 'GET /gists/public';
2525
private const METHOD = 'GET';
2626
private const PATH = '/gists/public';
27-
/**Only show notifications updated after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`. **/
27+
/**Only show results that were last updated after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`. **/
2828
private string $since;
2929
/**The number of results per page (max 100). **/
3030
private int $perPage;

src/Operation/Gists/ListStarred.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ final class ListStarred
2424
public const OPERATION_MATCH = 'GET /gists/starred';
2525
private const METHOD = 'GET';
2626
private const PATH = '/gists/starred';
27-
/**Only show notifications updated after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`. **/
27+
/**Only show results that were last updated after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`. **/
2828
private string $since;
2929
/**The number of results per page (max 100). **/
3030
private int $perPage;

0 commit comments

Comments
 (0)