Skip to content

Commit 3437c8e

Browse files
hivyasjeremymeng
andauthored
[Media] LVA SDK addition (Azure#14004)
* initial commit for tutorial * saving progress * initial commit * saving progress * manually replaced type in index.ts * finalized customizations * deleting tutorial files * removing strings * changes based off PR comments * renaming sample file * added js sample * update package dependencies * resolved dependency issues * removing client export * updating pnpm-lock file * resolving karma dependency * fixing import statement * temp connection string * adding azure-iothub dev dependency * adding azure-iothub to devDependency: * saving progress * saving progress before merge * regenerated and renamed to pipeline terminology * saving progress * updated test * updated sample * updating dependencies * moving library to videoanalyzer * removing old library * generated new javascript sample * linking samples * updating correct README * updating readme in javascript samples * saving progress * added createRequest * updated swagger * saving progresS * removing asset sink * change var name * updating api extractor * updating readme * updating readme * fixing links * dropping media from name * removing old terminology * saving progress * addressing pr comments * addressing PR comments * ran rush updatE * addressing pr changes * pr comments * adding ci file * Update sdk/videoanalyzer/video-analyzer-edge/README.md Co-authored-by: Jeremy Meng <yumeng@microsoft.com> * fixing lint issues * fixing formatting Co-authored-by: Jeremy Meng <yumeng@microsoft.com>
1 parent 9052c60 commit 3437c8e

30 files changed

+4884
-5
lines changed

common/config/rush/pnpm-lock.yaml

Lines changed: 126 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rush.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -661,6 +661,11 @@
661661
"projectFolder": "sdk/digitaltwins/digital-twins-core",
662662
"versionPolicyName": "client"
663663
},
664+
{
665+
"packageName": "@azure/video-analyzer-edge",
666+
"projectFolder": "sdk/videoanalyzer/video-analyzer-edge",
667+
"versionPolicyName": "client"
668+
},
664669
{
665670
"packageName": "@azure-tests/perf-ai-form-recognizer",
666671
"projectFolder": "sdk/formrecognizer/perf-tests/ai-form-recognizer",

sdk/videoanalyzer/ci.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# NOTE: Please refer to https://aka.ms/azsdk/engsys/ci-yaml before editing this file.
2+
3+
trigger:
4+
branches:
5+
include:
6+
- master
7+
- main
8+
- release/*
9+
- hotfix/*
10+
paths:
11+
include:
12+
- sdk/videoanalyzer/
13+
14+
pr:
15+
branches:
16+
include:
17+
- master
18+
- main
19+
- feature/*
20+
- release/*
21+
- hotfix/*
22+
paths:
23+
include:
24+
- sdk/videoanalyzer/
25+
26+
extends:
27+
template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml
28+
parameters:
29+
ServiceDirectory: videoanalyzer
30+
Artifacts:
31+
- name: azure-video-analyzer-edge
32+
safeName: azurevideoanalyzeredge
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"include": [
3+
"dist-esm/src/**/*.js"
4+
],
5+
"exclude": [
6+
"**/*.d.ts",
7+
"dist-esm/src/generated/*"
8+
],
9+
"reporter": [
10+
"text-summary",
11+
"html",
12+
"cobertura"
13+
],
14+
"exclude-after-remap": false,
15+
"sourceMap": true,
16+
"produce-source-map": true,
17+
"instrument": true,
18+
"all": true
19+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Release History
2+
3+
---
4+
5+
## 1.0.0-beta.1 (Unreleased)
6+
7+
Initial release
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2020 Microsoft
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)