@cinerino/sdk 10.21.0-alpha.35 → 10.21.0-alpha.37
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.
|
@@ -20,9 +20,19 @@ interface ISearchConditions {
|
|
|
20
20
|
}
|
|
21
21
|
interface IIssuer {
|
|
22
22
|
id: string;
|
|
23
|
+
/**
|
|
24
|
+
* 管理者定義の識別子
|
|
25
|
+
*/
|
|
23
26
|
identifier: string;
|
|
27
|
+
name: {
|
|
28
|
+
ja: string;
|
|
29
|
+
};
|
|
24
30
|
project: Pick<factory.project.IProject, 'id' | 'typeOf'>;
|
|
25
31
|
tokenSecret?: string;
|
|
32
|
+
/**
|
|
33
|
+
* トークンのiss
|
|
34
|
+
*/
|
|
35
|
+
url: string;
|
|
26
36
|
}
|
|
27
37
|
/**
|
|
28
38
|
* 発行者サービス
|
|
@@ -38,11 +48,11 @@ export declare class IssuerService extends Service {
|
|
|
38
48
|
* 検索
|
|
39
49
|
* secretは含まれない
|
|
40
50
|
*/
|
|
41
|
-
projectPublicFields(params: Omit<ISearchConditions, 'project'>): Promise<Pick<IIssuer, 'id' | 'identifier' | 'project'>[]>;
|
|
51
|
+
projectPublicFields(params: Omit<ISearchConditions, 'project'>): Promise<Pick<IIssuer, 'id' | 'identifier' | 'project' | 'name' | 'url'>[]>;
|
|
42
52
|
findById(params: {
|
|
43
53
|
id: string;
|
|
44
54
|
}): Promise<IIssuer>;
|
|
45
|
-
updateById(params: Pick<IIssuer, 'id' | 'identifier' | 'tokenSecret'>): Promise<void>;
|
|
55
|
+
updateById(params: Pick<IIssuer, 'id' | 'identifier' | 'tokenSecret' | 'name' | 'url'>): Promise<void>;
|
|
46
56
|
deleteById(params: {
|
|
47
57
|
id: string;
|
|
48
58
|
}): Promise<void>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cinerino/sdk",
|
|
3
|
-
"version": "10.21.0-alpha.
|
|
3
|
+
"version": "10.21.0-alpha.37",
|
|
4
4
|
"description": "Cinerino SDK",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"browser": {
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"watchify": "^3.11.1"
|
|
93
93
|
},
|
|
94
94
|
"dependencies": {
|
|
95
|
-
"@chevre/factory": "4.393.0
|
|
95
|
+
"@chevre/factory": "4.393.0",
|
|
96
96
|
"debug": "3.2.7",
|
|
97
97
|
"http-status": "1.7.4",
|
|
98
98
|
"idtoken-verifier": "2.0.3",
|