Skip to content

Commit 31366f1

Browse files
janpieterzmewmbagithub-actions[bot]
authored
feature: Add wallet deletion and lookup of wallet by all methods for all calls (#1267)
Co-authored-by: Mewmba <mewmba@trinsic.id> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 9e294c1 commit 31366f1

File tree

73 files changed

+5820
-817
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+5820
-817
lines changed

dart/lib/src/file_management_service.dart

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,39 +12,49 @@ class FileManagementService extends ServiceBase {
1212
client = FileManagementClient(super.channel);
1313
}
1414
// BEGIN Code generated by protoc-gen-trinsic. DO NOT EDIT.
15-
// target: D:\trinsic\sdk\dart\lib\src\file_management_service.dart
15+
// target: /home/runner/work/sdk/sdk/dart/lib/src/file_management_service.dart
1616

17+
@Deprecated('This method is experimental')
1718
Future<UploadFileResponse> uploadFile(UploadFileRequest request) async {
18-
/// Upload a file to Trinsic's CDN
19+
/// This method is experimental
20+
/// Upload a file to Trinsic's CDN
1921
2022
return client.uploadFile(request,
2123
options: await buildMetadata(request: request));
2224
}
2325

26+
@Deprecated('This method is experimental')
2427
Future<GetFileResponse> getFile(GetFileRequest request) async {
25-
/// Fetch information about a file by its ID
28+
/// This method is experimental
29+
/// Fetch information about a file by its ID
2630
2731
return client.getFile(request,
2832
options: await buildMetadata(request: request));
2933
}
3034

35+
@Deprecated('This method is experimental')
3136
Future<DeleteFileResponse> deleteFile(DeleteFileRequest request) async {
32-
/// Delete a file by its ID
37+
/// This method is experimental
38+
/// Delete a file by its ID
3339
3440
return client.deleteFile(request,
3541
options: await buildMetadata(request: request));
3642
}
3743

44+
@Deprecated('This method is experimental')
3845
Future<ListFilesResponse> listFiles(ListFilesRequest request) async {
39-
/// List files the calling account has uploaded
46+
/// This method is experimental
47+
/// List files the calling account has uploaded
4048
4149
return client.listFiles(request,
4250
options: await buildMetadata(request: request));
4351
}
4452

53+
@Deprecated('This method is experimental')
4554
Future<GetStorageStatsResponse> getStorageStats(
4655
GetStorageStatsRequest request) async {
47-
/// Get statistics about files uploaded by the calling account
56+
/// This method is experimental
57+
/// Get statistics about files uploaded by the calling account
4858
4959
return client.getStorageStats(request,
5060
options: await buildMetadata(request: request));

dart/lib/src/proto/services/provider/v1/access-management.pb.dart

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

dart/lib/src/proto/services/provider/v1/access-management.pbjson.dart

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

0 commit comments

Comments
 (0)