Skip to content

Commit 3bbfc0d

Browse files
mark TemplateService.List as an experimental endpoint (#630)
1 parent fa0d4a1 commit 3bbfc0d

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/build-typescript.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,11 @@ on:
2323
jobs:
2424
build_test:
2525
name: Test
26-
runs-on: ubuntu-latest
26+
runs-on: ${{ matrix.os }}
2727
strategy:
2828
fail-fast: false
2929
matrix:
30+
os: [ ubuntu-latest, windows-latest, macos-latest ]
3031
target: [ "web" ]
3132
node-version: [ 14, 16 ]
3233
node-http-protocol: ["true", "false"]

dotnet/Trinsic/TemplateService.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,12 @@ public GetCredentialTemplateResponse Get(GetCredentialTemplateRequest request) {
6868
/// <returns>
6969
/// The search response and continuation token, if available
7070
/// </returns>
71+
[Experimental]
7172
public async Task<ListCredentialTemplatesResponse> ListAsync(ListCredentialTemplatesRequest request) {
7273
return await Client.ListAsync(request, await BuildMetadataAsync(request));
7374
}
7475

76+
[Experimental]
7577
public ListCredentialTemplatesResponse List(ListCredentialTemplatesRequest request) {
7678
return Client.List(request, BuildMetadata(request));
7779
}

web/test/env.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ServiceOptions } from "../src";
2-
import ServiceBase from "../lib/ServiceBase";
2+
import ServiceBase from "../src/ServiceBase";
33

44
function isNode(): boolean {
55
// TODO - Refactor this into one location, utility class?

0 commit comments

Comments
 (0)