@originator-profile/opvc 0.4.0-beta.5 → 0.5.0-beta.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.
package/README.md CHANGED
@@ -122,7 +122,7 @@ FLAG DESCRIPTIONS
122
122
  }
123
123
  ```
124
124
 
125
- _See code: [src/commands/ca/sign.ts](https://github.com/originator-profile/originator-profile/blob/v0.4.0-beta.5/packages/opvc/src/commands/ca/sign.ts)_
125
+ _See code: [src/commands/ca/sign.ts](https://github.com/originator-profile/originator-profile/blob/v0.5.0-beta.1/packages/opvc/src/commands/ca/sign.ts)_
126
126
 
127
127
  ## `opvc ca:unsigned`
128
128
 
@@ -207,7 +207,7 @@ FLAG DESCRIPTIONS
207
207
  }
208
208
  ```
209
209
 
210
- _See code: [src/commands/ca/unsigned.ts](https://github.com/originator-profile/originator-profile/blob/v0.4.0-beta.5/packages/opvc/src/commands/ca/unsigned.ts)_
210
+ _See code: [src/commands/ca/unsigned.ts](https://github.com/originator-profile/originator-profile/blob/v0.5.0-beta.1/packages/opvc/src/commands/ca/unsigned.ts)_
211
211
 
212
212
  ## `opvc help [COMMAND]`
213
213
 
@@ -245,7 +245,7 @@ DESCRIPTION
245
245
  鍵ペアの生成
246
246
  ```
247
247
 
248
- _See code: [src/commands/key-gen/index.ts](https://github.com/originator-profile/originator-profile/blob/v0.4.0-beta.5/packages/opvc/src/commands/key-gen/index.ts)_
248
+ _See code: [src/commands/key-gen/index.ts](https://github.com/originator-profile/originator-profile/blob/v0.5.0-beta.1/packages/opvc/src/commands/key-gen/index.ts)_
249
249
 
250
250
  ## `opvc sign`
251
251
 
@@ -371,7 +371,12 @@ FLAG DESCRIPTIONS
371
371
  "id": "https://wmp-holder.example.jp/privacy",
372
372
  "name": "プライバシーポリシー"
373
373
  },
374
- "description": "この文章はこの Web メディアに関する補足情報です。"
374
+ "description": [
375
+ {
376
+ "encodingFormat": "text/plain",
377
+ "text": "この文章はこの Web メディアに関する補足情報です。"
378
+ }
379
+ ]
375
380
  }
376
381
  }
377
382
 
@@ -407,7 +412,7 @@ FLAG DESCRIPTIONS
407
412
  }
408
413
  ```
409
414
 
410
- _See code: [src/commands/sign.ts](https://github.com/originator-profile/originator-profile/blob/v0.4.0-beta.5/packages/opvc/src/commands/sign.ts)_
415
+ _See code: [src/commands/sign.ts](https://github.com/originator-profile/originator-profile/blob/v0.5.0-beta.1/packages/opvc/src/commands/sign.ts)_
411
416
 
412
417
  ## `opvc wsp:unsigned`
413
418
 
@@ -472,7 +477,7 @@ FLAG DESCRIPTIONS
472
477
  }
473
478
  ```
474
479
 
475
- _See code: [src/commands/wsp/unsigned.ts](https://github.com/originator-profile/originator-profile/blob/v0.4.0-beta.5/packages/opvc/src/commands/wsp/unsigned.ts)_
480
+ _See code: [src/commands/wsp/unsigned.ts](https://github.com/originator-profile/originator-profile/blob/v0.5.0-beta.1/packages/opvc/src/commands/wsp/unsigned.ts)_
476
481
  <!-- commandsstop -->
477
482
  <!-- prettier-ignore-end -->
478
483
 
@@ -1,12 +1,12 @@
1
1
  import { Command } from "@oclif/core";
2
- import * as _oclif_core_interfaces21 from "@oclif/core/interfaces";
2
+ import * as _oclif_core_interfaces0 from "@oclif/core/interfaces";
3
3
 
4
4
  //#region src/commands/ca/sign.d.ts
5
5
  declare class CaSign extends Command {
6
6
  static summary: string;
7
7
  static description: string;
8
8
  static flags: {
9
- identity: _oclif_core_interfaces21.OptionFlag<{
9
+ identity: _oclif_core_interfaces0.OptionFlag<{
10
10
  [x: string]: unknown;
11
11
  use?: string | undefined;
12
12
  key_ops?: string[] | undefined;
@@ -17,10 +17,10 @@ declare class CaSign extends Command {
17
17
  "x5t#S256"?: string | undefined;
18
18
  kty: string;
19
19
  kid: string;
20
- }, _oclif_core_interfaces21.CustomOptions>;
21
- input: _oclif_core_interfaces21.OptionFlag<string, _oclif_core_interfaces21.CustomOptions>;
22
- "issued-at": _oclif_core_interfaces21.OptionFlag<string | undefined, _oclif_core_interfaces21.CustomOptions>;
23
- "expired-at": _oclif_core_interfaces21.OptionFlag<Date | undefined, _oclif_core_interfaces21.CustomOptions>;
20
+ }, _oclif_core_interfaces0.CustomOptions>;
21
+ input: _oclif_core_interfaces0.OptionFlag<string, _oclif_core_interfaces0.CustomOptions>;
22
+ "issued-at": _oclif_core_interfaces0.OptionFlag<string | undefined, _oclif_core_interfaces0.CustomOptions>;
23
+ "expired-at": _oclif_core_interfaces0.OptionFlag<Date | undefined, _oclif_core_interfaces0.CustomOptions>;
24
24
  };
25
25
  static examples: string[];
26
26
  run(): Promise<void>;
@@ -1,14 +1,14 @@
1
1
  import { Command } from "@oclif/core";
2
- import * as _oclif_core_interfaces0 from "@oclif/core/interfaces";
2
+ import * as _oclif_core_interfaces17 from "@oclif/core/interfaces";
3
3
 
4
4
  //#region src/commands/ca/unsigned.d.ts
5
5
  declare class CaUnsigned extends Command {
6
6
  static summary: string;
7
7
  static description: string;
8
8
  static flags: {
9
- input: _oclif_core_interfaces0.OptionFlag<string, _oclif_core_interfaces0.CustomOptions>;
10
- "issued-at": _oclif_core_interfaces0.OptionFlag<string | undefined, _oclif_core_interfaces0.CustomOptions>;
11
- "expired-at": _oclif_core_interfaces0.OptionFlag<Date | undefined, _oclif_core_interfaces0.CustomOptions>;
9
+ input: _oclif_core_interfaces17.OptionFlag<string, _oclif_core_interfaces17.CustomOptions>;
10
+ "issued-at": _oclif_core_interfaces17.OptionFlag<string | undefined, _oclif_core_interfaces17.CustomOptions>;
11
+ "expired-at": _oclif_core_interfaces17.OptionFlag<Date | undefined, _oclif_core_interfaces17.CustomOptions>;
12
12
  };
13
13
  static examples: string[];
14
14
  run(): Promise<void>;
@@ -1,12 +1,12 @@
1
1
  import { Command } from "@oclif/core";
2
- import * as _oclif_core_interfaces5 from "@oclif/core/interfaces";
2
+ import * as _oclif_core_interfaces7 from "@oclif/core/interfaces";
3
3
 
4
4
  //#region src/commands/sign.d.ts
5
5
  declare class VcSign extends Command {
6
6
  static summary: string;
7
7
  static description: string;
8
8
  static flags: {
9
- identity: _oclif_core_interfaces5.OptionFlag<{
9
+ identity: _oclif_core_interfaces7.OptionFlag<{
10
10
  [x: string]: unknown;
11
11
  use?: string | undefined;
12
12
  key_ops?: string[] | undefined;
@@ -17,11 +17,11 @@ declare class VcSign extends Command {
17
17
  "x5t#S256"?: string | undefined;
18
18
  kty: string;
19
19
  kid: string;
20
- }, _oclif_core_interfaces5.CustomOptions>;
21
- id: _oclif_core_interfaces5.OptionFlag<string | undefined, _oclif_core_interfaces5.CustomOptions>;
22
- input: _oclif_core_interfaces5.OptionFlag<string, _oclif_core_interfaces5.CustomOptions>;
23
- "issued-at": _oclif_core_interfaces5.OptionFlag<string | undefined, _oclif_core_interfaces5.CustomOptions>;
24
- "expired-at": _oclif_core_interfaces5.OptionFlag<Date | undefined, _oclif_core_interfaces5.CustomOptions>;
20
+ }, _oclif_core_interfaces7.CustomOptions>;
21
+ id: _oclif_core_interfaces7.OptionFlag<string | undefined, _oclif_core_interfaces7.CustomOptions>;
22
+ input: _oclif_core_interfaces7.OptionFlag<string, _oclif_core_interfaces7.CustomOptions>;
23
+ "issued-at": _oclif_core_interfaces7.OptionFlag<string | undefined, _oclif_core_interfaces7.CustomOptions>;
24
+ "expired-at": _oclif_core_interfaces7.OptionFlag<Date | undefined, _oclif_core_interfaces7.CustomOptions>;
25
25
  };
26
26
  static examples: string[];
27
27
  run(): Promise<void>;
@@ -68,7 +68,10 @@ const exampleWebMediaProfile = {
68
68
  id: "https://wmp-holder.example.jp/privacy",
69
69
  name: "プライバシーポリシー"
70
70
  },
71
- description: "この文章はこの Web メディアに関する補足情報です。"
71
+ description: [{
72
+ encodingFormat: "text/plain",
73
+ text: "この文章はこの Web メディアに関する補足情報です。"
74
+ }]
72
75
  }
73
76
  };
74
77
  const exampleWebsiteProfile = {
@@ -1,14 +1,14 @@
1
1
  import { Command } from "@oclif/core";
2
- import * as _oclif_core_interfaces15 from "@oclif/core/interfaces";
2
+ import * as _oclif_core_interfaces23 from "@oclif/core/interfaces";
3
3
 
4
4
  //#region src/commands/wsp/unsigned.d.ts
5
5
  declare class WspUnsigned extends Command {
6
6
  static summary: string;
7
7
  static description: string;
8
8
  static flags: {
9
- input: _oclif_core_interfaces15.OptionFlag<string, _oclif_core_interfaces15.CustomOptions>;
10
- "issued-at": _oclif_core_interfaces15.OptionFlag<string | undefined, _oclif_core_interfaces15.CustomOptions>;
11
- "expired-at": _oclif_core_interfaces15.OptionFlag<Date | undefined, _oclif_core_interfaces15.CustomOptions>;
9
+ input: _oclif_core_interfaces23.OptionFlag<string, _oclif_core_interfaces23.CustomOptions>;
10
+ "issued-at": _oclif_core_interfaces23.OptionFlag<string | undefined, _oclif_core_interfaces23.CustomOptions>;
11
+ "expired-at": _oclif_core_interfaces23.OptionFlag<Date | undefined, _oclif_core_interfaces23.CustomOptions>;
12
12
  };
13
13
  static examples: string[];
14
14
  run(): Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@originator-profile/opvc",
3
- "version": "0.4.0-beta.5",
3
+ "version": "0.5.0-beta.1",
4
4
  "license": "Apache-2.0",
5
5
  "homepage": "https://docs.originator-profile.org",
6
6
  "repository": {
@@ -39,11 +39,11 @@
39
39
  "http-errors-enhanced": "^4.0.0",
40
40
  "jose": "^6.0.11",
41
41
  "jsdom": "^27.0.0",
42
- "@originator-profile/model": "0.4.0-beta.5",
43
- "@originator-profile/core": "0.4.0-beta.5",
44
- "@originator-profile/securing-mechanism": "0.4.0-beta.5",
45
- "@originator-profile/cryptography": "0.4.0-beta.5",
46
- "@originator-profile/sign": "0.4.0-beta.5"
42
+ "@originator-profile/core": "0.5.0-beta.1",
43
+ "@originator-profile/cryptography": "0.5.0-beta.1",
44
+ "@originator-profile/model": "0.5.0-beta.1",
45
+ "@originator-profile/sign": "0.5.0-beta.1",
46
+ "@originator-profile/securing-mechanism": "0.5.0-beta.1"
47
47
  },
48
48
  "devDependencies": {
49
49
  "@types/node": "^24.3.1",
@@ -52,8 +52,8 @@
52
52
  "tsdown": "^0.16.7",
53
53
  "typescript": "^5.8.3",
54
54
  "websri": "^1.0.1",
55
- "@originator-profile/tsconfig": "0.4.0-beta.5",
56
- "eslint-config-originator-profile": "0.4.0-beta.5"
55
+ "@originator-profile/tsconfig": "0.5.0-beta.1",
56
+ "eslint-config-originator-profile": "0.5.0-beta.1"
57
57
  },
58
58
  "scripts": {
59
59
  "build": "tsdown && oclif manifest && oclif readme",