Skip to content

Commit

Permalink
Azure Quantum SDK for Azure SDK for JS (Azure#13345)
Browse files Browse the repository at this point in the history
This is the initial version of Quantum Data Plane SDK. 

@ramya-rao-a  Please review and approve

@vxfield FYI....
  • Loading branch information
sarangan12 authored Jan 23, 2021
1 parent 10f5c9f commit 9ee918e
Show file tree
Hide file tree
Showing 21 changed files with 2,504 additions and 311 deletions.
597 changes: 286 additions & 311 deletions common/config/rush/pnpm-lock.yaml

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions rush.json
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,11 @@
"projectFolder": "sdk/attestation/attestation",
"versionPolicyName": "client"
},
{
"packageName": "@azure/quantum",
"projectFolder": "sdk/quantum/quantum",
"versionPolicyName": "client"
},
{
"packageName": "@azure/communication-administration",
"projectFolder": "sdk/communication/communication-administration",
Expand Down
21 changes: 21 additions & 0 deletions sdk/quantum/quantum/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2021 Microsoft

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
41 changes: 41 additions & 0 deletions sdk/quantum/quantum/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
## Azure QuantumClient client library for JavaScript

This package contains an isomorphic SDK for QuantumClient.

## Getting started

### Install the package

```bash
npm install @azure/quantum
```

### Prerequisites

- Node.js version 8.x.x or higher

## Key concepts

**TO BE FILLED**

## Examples

**TO BE FILLED**

## Next steps

**TO BE FILLED**

## Contributing

**TO BE FILLED**

## Related projects

**TO BE FILLED**

## Troubleshooting

**TO BE FILLED**

![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-js%2Fsdk%2Fappconfiguration%2Fapp-configuration%2FREADME.png)
18 changes: 18 additions & 0 deletions sdk/quantum/quantum/api-extractor.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
"mainEntryPointFilePath": "./types/index.d.ts",
"docModel": { "enabled": true },
"apiReport": { "enabled": true, "reportFolder": "./review" },
"dtsRollup": {
"enabled": true,
"untrimmedFilePath": "",
"publicTrimmedFilePath": "./esm/index.d.ts"
},
"messages": {
"tsdocMessageReporting": { "default": { "logLevel": "none" } },
"extractorMessageReporting": {
"ae-missing-release-tag": { "logLevel": "none" },
"ae-unresolved-link": { "logLevel": "none" }
}
}
}
84 changes: 84 additions & 0 deletions sdk/quantum/quantum/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
{
"name": "@azure/quantum",
"author": "Microsoft Corporation",
"description": "Azure Quantum REST API client",
"version": "1.0.0-beta.1",
"dependencies": {
"@azure/core-paging": "^1.1.1",
"@azure/core-http": "^1.2.0",
"tslib": "^2.0.0"
},
"keywords": [
"node",
"azure",
"typescript",
"browser",
"isomorphic"
],
"license": "MIT",
"main": "./dist/quantum.js",
"module": "./esm/index.js",
"types": "./esm/index.d.ts",
"devDependencies": {
"typescript": "4.1.2",
"rollup": "^1.16.3",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"uglify-js": "^3.4.9",
"@microsoft/api-extractor": "7.7.11",
"mkdirp": "^1.0.4"
},
"homepage": "https://github.com/Azure/azure-sdk-for-js",
"repository": {
"type": "git",
"url": "https://github.com/Azure/azure-sdk-for-js.git"
},
"bugs": {
"url": "https://github.com/Azure/azure-sdk-for-js/issues"
},
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts",
"dist/**/*.d.ts.map",
"esm/**/*.js",
"esm/**/*.js.map",
"esm/**/*.d.ts",
"esm/**/*.d.ts.map",
"./src//**/*.ts",
"README.md",
"rollup.config.js",
"tsconfig.json"
],
"scripts": {
"build": "tsc && rollup -c rollup.config.js && mkdirp ./review && npm run extract-api",
"clean": "rimraf dist dist-esm dist-browser test-dist test-browser types *.tgz *.log",
"extract-api": "api-extractor run --local",
"build:samples": "echo skip",
"build:node": "echo skip",
"build:browser": "echo skip",
"build:test": "echo skip",
"build:test:node": "echo skip",
"build:test:browser": "echo skip",
"check-format": "echo skip",
"coverage": "echo skip",
"execute:samples": "echo skip",
"format": "echo skip",
"lint:fix": "echo skip",
"lint": "echo skip",
"prebuild": "echo skip",
"pack": "echo skip",
"swagger": "echo skip",
"integration-test": "echo skip",
"integration-test:browser": "echo skip",
"integration-test:node": "echo skip",
"test": "echo skip",
"test:browser": "echo skip",
"test:node": "echo skip",
"unit-test": "echo skip",
"unit-test:browser": "echo skip",
"unit-test:node": "echo skip",
"docs": "echo skip"
},
"sideEffects": false
}
Loading

0 comments on commit 9ee918e

Please sign in to comment.