Skip to content

Commit

Permalink
cleanup + codeowners
Browse files Browse the repository at this point in the history
  • Loading branch information
jworkmanjc committed Nov 14, 2023
1 parent 354550b commit 8d14f8f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# jcapi-powershell Code Owners

* @TheJumpCloud/solutions-architecture
1 change: 0 additions & 1 deletion .github/workflows/jcapi-powershell-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ jobs:
gh run --repo ${{ github.repository }} download ${RUN_ID} -n ${ARTIFACT_NAME}
# List the artifiact directory/files
ls -lR
#TODO: extract and list
unzip ${{ matrix.SDKName }}.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
1 change: 0 additions & 1 deletion ApiTransform.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,6 @@ $TransformConfig = [Ordered]@{
'"format":"uint32"' = '"format":"int64"' # SI code uses uint32 which is larger than int32 . Swagger 2 doesnt have a concept of uint32 . AutoRest defaults to int32 when it sees a type of integer.
'"produces":\["text\/html"\]' = '' # produces text/html is not valid, just remove
# Filter Customizations (define filter as list)
# '"in":"query","items":{"type":"string"},"name":"filter","type":"array"},"trait:folderId:folderId":' = '"in":"query","items":{"type":"string"},"name":"filter","type":"array","collectionFormat":"multi","x-ms-skip-url-encoding":true},"trait:folderId:folderId":'
# Custom Tweaks
'"operationId":"gsuites_listImportUsers","parameters":\[{"\$ref":"#\/parameters\/trait:limit:limit"},{"\$ref":"#\/parameters\/trait:gsuite:maxResults"},' = '"operationId":"gsuites_listImportUsers","parameters":[{"$ref":"#/parameters/trait:gsuite:maxResults"},' # Get-JCsdkGsuiteUsersToImport does not require a limit parameter
'"responses":{"201":{"description":"","schema":{"\$ref":"#\/definitions\/job-id"}}' = '"responses":{"200":{"description":"OK","schema":{"$ref":"#/definitions/job-id"}}'; # Workaround incorrectly defined 201 response in swagger should be 200; affects New-JcSdkBulkUser
Expand Down
2 changes: 1 addition & 1 deletion JumpCloud.SDK.V1.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Release Date: November 14, 2023
#### RELEASE NOTES
```
This is a rollup release for the DI module, no functional changes were made
This release includes a new funcion `Start-JCSdkCommand` which can be used to ad-hoc invoke commands on a list of systems
```
#### FEATURES:
NA
Expand Down

0 comments on commit 8d14f8f

Please sign in to comment.