Skip to content

Commit

Permalink
mark TemplateService.List as an experimental endpoint (#630)
Browse files Browse the repository at this point in the history
  • Loading branch information
fundthmcalculus authored May 6, 2022
1 parent fa0d4a1 commit 3bbfc0d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build-typescript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@ on:
jobs:
build_test:
name: Test
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
target: [ "web" ]
node-version: [ 14, 16 ]
node-http-protocol: ["true", "false"]
Expand Down
2 changes: 2 additions & 0 deletions dotnet/Trinsic/TemplateService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,12 @@ public GetCredentialTemplateResponse Get(GetCredentialTemplateRequest request) {
/// <returns>
/// The search response and continuation token, if available
/// </returns>
[Experimental]
public async Task<ListCredentialTemplatesResponse> ListAsync(ListCredentialTemplatesRequest request) {
return await Client.ListAsync(request, await BuildMetadataAsync(request));
}

[Experimental]
public ListCredentialTemplatesResponse List(ListCredentialTemplatesRequest request) {
return Client.List(request, BuildMetadata(request));
}
Expand Down
2 changes: 1 addition & 1 deletion web/test/env.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ServiceOptions } from "../src";
import ServiceBase from "../lib/ServiceBase";
import ServiceBase from "../src/ServiceBase";

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

0 comments on commit 3bbfc0d

Please sign in to comment.