@narrative.io/data-collaboration-sdk-ts 0.17.0 → 0.17.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -49,7 +49,7 @@ export interface GetSystemAccessTokenResponse {
|
|
|
49
49
|
export interface CreateSystemAccessTokenRequest {
|
|
50
50
|
name: string;
|
|
51
51
|
permissions?: Permission[];
|
|
52
|
-
|
|
52
|
+
expires_at: string;
|
|
53
53
|
}
|
|
54
54
|
export interface CreateSystemAccessTokenResponse {
|
|
55
55
|
id: string;
|
|
@@ -59,6 +59,7 @@ export interface CreateSystemAccessTokenResponse {
|
|
|
59
59
|
access_token: string;
|
|
60
60
|
}
|
|
61
61
|
export interface UpdateSystemAccessTokenRequest {
|
|
62
|
+
name?: string;
|
|
62
63
|
permissions?: Permission[];
|
|
63
|
-
|
|
64
|
+
expires_at?: string;
|
|
64
65
|
}
|