@vess-id/ai-identity 0.0.2 → 0.0.3
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.
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +10 -10
package/dist/index.d.mts
CHANGED
|
@@ -481,7 +481,7 @@ declare class OrganizationManager {
|
|
|
481
481
|
interface GrantSuggestion {
|
|
482
482
|
id: string;
|
|
483
483
|
oauthTokenId: string;
|
|
484
|
-
|
|
484
|
+
userId?: string;
|
|
485
485
|
projectId: string;
|
|
486
486
|
provider: string;
|
|
487
487
|
suggestedActions: string[];
|
|
@@ -533,13 +533,13 @@ declare class GrantManager {
|
|
|
533
533
|
* Grant提案を取得
|
|
534
534
|
* @param options - 提案オプション
|
|
535
535
|
* @param options.oauthTokenId - OAuthトークンID
|
|
536
|
-
* @param options.
|
|
536
|
+
* @param options.userId - 対象ユーザーID
|
|
537
537
|
* @param options.projectId - プロジェクトID
|
|
538
538
|
* @param authOptions - 認証オプション(VP or issuerDid)
|
|
539
539
|
*/
|
|
540
540
|
suggest(options: {
|
|
541
541
|
oauthTokenId: string;
|
|
542
|
-
|
|
542
|
+
userId: string;
|
|
543
543
|
projectId: string;
|
|
544
544
|
}, authOptions: {
|
|
545
545
|
vpJwt?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -481,7 +481,7 @@ declare class OrganizationManager {
|
|
|
481
481
|
interface GrantSuggestion {
|
|
482
482
|
id: string;
|
|
483
483
|
oauthTokenId: string;
|
|
484
|
-
|
|
484
|
+
userId?: string;
|
|
485
485
|
projectId: string;
|
|
486
486
|
provider: string;
|
|
487
487
|
suggestedActions: string[];
|
|
@@ -533,13 +533,13 @@ declare class GrantManager {
|
|
|
533
533
|
* Grant提案を取得
|
|
534
534
|
* @param options - 提案オプション
|
|
535
535
|
* @param options.oauthTokenId - OAuthトークンID
|
|
536
|
-
* @param options.
|
|
536
|
+
* @param options.userId - 対象ユーザーID
|
|
537
537
|
* @param options.projectId - プロジェクトID
|
|
538
538
|
* @param authOptions - 認証オプション(VP or issuerDid)
|
|
539
539
|
*/
|
|
540
540
|
suggest(options: {
|
|
541
541
|
oauthTokenId: string;
|
|
542
|
-
|
|
542
|
+
userId: string;
|
|
543
543
|
projectId: string;
|
|
544
544
|
}, authOptions: {
|
|
545
545
|
vpJwt?: string;
|
package/dist/index.js
CHANGED
|
@@ -2439,7 +2439,7 @@ var GrantManager = class {
|
|
|
2439
2439
|
* Grant提案を取得
|
|
2440
2440
|
* @param options - 提案オプション
|
|
2441
2441
|
* @param options.oauthTokenId - OAuthトークンID
|
|
2442
|
-
* @param options.
|
|
2442
|
+
* @param options.userId - 対象ユーザーID
|
|
2443
2443
|
* @param options.projectId - プロジェクトID
|
|
2444
2444
|
* @param authOptions - 認証オプション(VP or issuerDid)
|
|
2445
2445
|
*/
|