Skip to content

Commit

Permalink
[Snyk] Security upgrade @octokit/rest from 16.43.2 to 17.0.0 (#10249)
Browse files Browse the repository at this point in the history
* fix: packages/ts-scripts/package.json to reduce vulnerabilities

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-LODASHSET-1320032

* chore: update deps

---------

Co-authored-by: snyk-bot <[email protected]>
Co-authored-by: Will McVay <[email protected]>
3 people authored Nov 29, 2023
1 parent 58e036f commit fd5704c
Showing 21 changed files with 118 additions and 277 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
13 changes: 13 additions & 0 deletions packages/foundations-ts-definitions/types/organisations-schema.ts
Original file line number Diff line number Diff line change
@@ -240,6 +240,10 @@ export interface CreateOrganisationModel {
* Any claims to associate with this organisation
*/
claims?: CreateOrganisationClaimModel[]
/**
* Identifies the type of instance to which this organisation belongs (dev/prod/test/uat)
*/
instanceType?: string
}
/**
* Model to create a new product
@@ -905,6 +909,10 @@ export interface OrganisationModel {
* A collection of claims associated to the organisation, which are optionally included in tokens generated by the identity provider for users belonging to the organisation
*/
claims?: ClaimModel[]
/**
* Identifies the type of instance to which this organisation belongs (dev/prod/test/uat)
*/
instanceType?: string
}
export interface OrganisationModelPagedResult {
_embedded?: OrganisationModel[]
@@ -925,6 +933,7 @@ export interface Organisations {
claim?: string[]
marketplaceId?: string[]
name?: string
instanceType?: ('dev' | 'prod' | 'test' | 'uat')[]
includeUserData?: boolean
}
export interface PagingLinkModel {
@@ -1171,6 +1180,10 @@ export interface UpdateOrganisationModel {
*/
product?: string
address?: UpdateOrganisationAddressModel
/**
* Identifies the type of instance to which this organisation belongs (dev/prod/test/uat)
*/
instanceType?: string
}
/**
* Model to update platform configuration
Loading

0 comments on commit fd5704c

Please sign in to comment.