Skip to content

Commit

Permalink
chore(deps): upgrade dependencies (#145)
Browse files Browse the repository at this point in the history
Upgrades project dependencies. See details in [workflow run].

[Workflow Run]: https://github.com/GoodNotes/ts-interface-generator/actions/runs/7807875600

------

*Automatically created by projen via the "upgrade" workflow*
  • Loading branch information
gn-devops-ci authored Feb 7, 2024
1 parent 3d89eb6 commit 1dabeb3
Show file tree
Hide file tree
Showing 4 changed files with 91 additions and 77 deletions.
8 changes: 5 additions & 3 deletions API.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 10 additions & 2 deletions src/Dashboard.generated.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ export interface Dashboard {
readonly "description"?: string;
/** ID of the dashboard. */
readonly "id"?: string;
/** Whether this dashboard is read-only. If True, only the author and admins can make changes to it. Prefer using `restricted_roles` to manage write authorization. */
/**
* Whether this dashboard is read-only. If True, only the author and admins can make changes to it.
*
* This property is deprecated; please use the [Restriction Policies API](https://docs.datadoghq.com/api/latest/restriction-policies/) instead to manage write authorization for individual dashboards.
*/
readonly "isReadOnly"?: boolean;
/** Layout type of the dashboard. */
readonly "layoutType": "ordered" | "free" | UnparsedObject;
Expand All @@ -23,7 +27,11 @@ export interface Dashboard {
* widgets should not have layouts.
*/
readonly "reflowType"?: "auto" | "fixed" | UnparsedObject;
/** A list of role identifiers. Only the author and users associated with at least one of these roles can edit this dashboard. */
/**
* A list of role identifiers. Only the author and users associated with at least one of these roles can edit this dashboard.
*
* This property is deprecated; please use the [Restriction Policies API](https://docs.datadoghq.com/api/latest/restriction-policies/) instead to manage write authorization for individual dashboards.
*/
readonly "restrictedRoles"?: string[];
/** List of team names representing ownership of a dashboard. */
readonly "tags"?: string[];
Expand Down
146 changes: 75 additions & 71 deletions yarn.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 1dabeb3

Please sign in to comment.