@tinyrack/issuary-server 0.32.1 → 0.32.2

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.
@@ -84,12 +84,9 @@ export declare function createApp(options: CreateAppOptions, runtimeOptions?: Cr
84
84
  }, "/"> | import("hono/types").MergeSchemaPath<{
85
85
  "/end_session": {
86
86
  $get: {
87
- output: {
88
- error: string;
89
- error_description: string;
90
- };
91
- outputFormat: "json";
92
- status: 400;
87
+ output: undefined;
88
+ outputFormat: "redirect";
89
+ status: 302;
93
90
  input: {
94
91
  query: {
95
92
  client_id?: string | undefined;
@@ -99,9 +96,12 @@ export declare function createApp(options: CreateAppOptions, runtimeOptions?: Cr
99
96
  };
100
97
  };
101
98
  } | {
102
- output: undefined;
103
- outputFormat: "redirect";
104
- status: 302;
99
+ output: {
100
+ error: string;
101
+ error_description: string;
102
+ };
103
+ outputFormat: "json";
104
+ status: 400;
105
105
  input: {
106
106
  query: {
107
107
  client_id?: string | undefined;
@@ -268,12 +268,9 @@ export declare function createApp(options: CreateAppOptions, runtimeOptions?: Cr
268
268
  } & {
269
269
  "/device": {
270
270
  $post: {
271
- output: {
272
- status: string;
273
- client_id: string;
274
- };
275
- outputFormat: "json";
276
- status: import("hono/utils/http-status").ContentfulStatusCode;
271
+ output: undefined;
272
+ outputFormat: "redirect";
273
+ status: 303;
277
274
  input: {
278
275
  form: {
279
276
  user_code: import("hono/types").ParsedFormValue[] | import("hono/types").ParsedFormValue;
@@ -281,9 +278,12 @@ export declare function createApp(options: CreateAppOptions, runtimeOptions?: Cr
281
278
  };
282
279
  };
283
280
  } | {
284
- output: undefined;
285
- outputFormat: "redirect";
286
- status: 303;
281
+ output: {
282
+ status: string;
283
+ client_id: string;
284
+ };
285
+ outputFormat: "json";
286
+ status: import("hono/utils/http-status").ContentfulStatusCode;
287
287
  input: {
288
288
  form: {
289
289
  user_code: import("hono/types").ParsedFormValue[] | import("hono/types").ParsedFormValue;
@@ -923,12 +923,9 @@ export declare function createApp(options: CreateAppOptions, runtimeOptions?: Cr
923
923
  }, "/">, "/"> | import("hono/types").MergeSchemaPath<import("hono/types").MergeSchemaPath<{
924
924
  "/oauth/:provider/callback": {
925
925
  $post: {
926
- output: {
927
- code: any;
928
- message: any;
929
- };
930
- outputFormat: "json";
931
- status: any;
926
+ output: undefined;
927
+ outputFormat: "redirect";
928
+ status: 302;
932
929
  input: {
933
930
  param: {
934
931
  provider: string;
@@ -942,9 +939,12 @@ export declare function createApp(options: CreateAppOptions, runtimeOptions?: Cr
942
939
  };
943
940
  };
944
941
  } | {
945
- output: undefined;
946
- outputFormat: "redirect";
947
- status: 302;
942
+ output: {
943
+ code: any;
944
+ message: any;
945
+ };
946
+ outputFormat: "json";
947
+ status: any;
948
948
  input: {
949
949
  param: {
950
950
  provider: string;
@@ -1651,12 +1651,9 @@ export declare function createApp(options: CreateAppOptions, runtimeOptions?: Cr
1651
1651
  }, "/">, "/"> | import("hono/types").MergeSchemaPath<import("hono/types").MergeSchemaPath<{
1652
1652
  "/oauth/:provider/callback": {
1653
1653
  $get: {
1654
- output: {
1655
- code: any;
1656
- message: any;
1657
- };
1658
- outputFormat: "json";
1659
- status: any;
1654
+ output: undefined;
1655
+ outputFormat: "redirect";
1656
+ status: 302;
1660
1657
  input: {
1661
1658
  param: {
1662
1659
  provider: string;
@@ -1670,9 +1667,12 @@ export declare function createApp(options: CreateAppOptions, runtimeOptions?: Cr
1670
1667
  };
1671
1668
  };
1672
1669
  } | {
1673
- output: undefined;
1674
- outputFormat: "redirect";
1675
- status: 302;
1670
+ output: {
1671
+ code: any;
1672
+ message: any;
1673
+ };
1674
+ outputFormat: "json";
1675
+ status: any;
1676
1676
  input: {
1677
1677
  param: {
1678
1678
  provider: string;
@@ -3,11 +3,11 @@ export declare const authAccountsSelectPost: import("hono/hono-base").HonoBase<A
3
3
  "/auth/accounts/select": {
4
4
  $post: {
5
5
  output: {
6
- ok: true;
7
- active_sub: string;
6
+ code: string;
7
+ message: string;
8
8
  };
9
9
  outputFormat: "json";
10
- status: 200;
10
+ status: 400;
11
11
  input: {
12
12
  json: {
13
13
  sub: string;
@@ -15,11 +15,11 @@ export declare const authAccountsSelectPost: import("hono/hono-base").HonoBase<A
15
15
  };
16
16
  } | {
17
17
  output: {
18
- code: string;
19
- message: string;
18
+ ok: true;
19
+ active_sub: string;
20
20
  };
21
21
  outputFormat: "json";
22
- status: 400;
22
+ status: 200;
23
23
  input: {
24
24
  json: {
25
25
  sub: string;
@@ -1616,12 +1616,9 @@ export declare const apiRoutes: import("hono/hono-base").HonoBase<AppEnv, import
1616
1616
  }, "/">, "/"> | import("hono/types").MergeSchemaPath<import("hono/types").BlankSchema | import("hono/types").MergeSchemaPath<{
1617
1617
  "/oauth/:provider/callback": {
1618
1618
  $post: {
1619
- output: {
1620
- code: any;
1621
- message: any;
1622
- };
1623
- outputFormat: "json";
1624
- status: any;
1619
+ output: undefined;
1620
+ outputFormat: "redirect";
1621
+ status: 302;
1625
1622
  input: {
1626
1623
  param: {
1627
1624
  provider: string;
@@ -1635,9 +1632,12 @@ export declare const apiRoutes: import("hono/hono-base").HonoBase<AppEnv, import
1635
1632
  };
1636
1633
  };
1637
1634
  } | {
1638
- output: undefined;
1639
- outputFormat: "redirect";
1640
- status: 302;
1635
+ output: {
1636
+ code: any;
1637
+ message: any;
1638
+ };
1639
+ outputFormat: "json";
1640
+ status: any;
1641
1641
  input: {
1642
1642
  param: {
1643
1643
  provider: string;
@@ -1701,12 +1701,9 @@ export declare const apiRoutes: import("hono/hono-base").HonoBase<AppEnv, import
1701
1701
  }, "/"> | import("hono/types").MergeSchemaPath<{
1702
1702
  "/oauth/:provider/callback": {
1703
1703
  $get: {
1704
- output: {
1705
- code: any;
1706
- message: any;
1707
- };
1708
- outputFormat: "json";
1709
- status: any;
1704
+ output: undefined;
1705
+ outputFormat: "redirect";
1706
+ status: 302;
1710
1707
  input: {
1711
1708
  param: {
1712
1709
  provider: string;
@@ -1720,9 +1717,12 @@ export declare const apiRoutes: import("hono/hono-base").HonoBase<AppEnv, import
1720
1717
  };
1721
1718
  };
1722
1719
  } | {
1723
- output: undefined;
1724
- outputFormat: "redirect";
1725
- status: 302;
1720
+ output: {
1721
+ code: any;
1722
+ message: any;
1723
+ };
1724
+ outputFormat: "json";
1725
+ status: any;
1726
1726
  input: {
1727
1727
  param: {
1728
1728
  provider: string;
@@ -2,12 +2,9 @@ import type { AppEnv } from '../../../../../lib/app-env.ts';
2
2
  export declare const oauthProviderCallbackGet: import("hono/hono-base").HonoBase<AppEnv, {
3
3
  "/oauth/:provider/callback": {
4
4
  $get: {
5
- output: {
6
- code: any;
7
- message: any;
8
- };
9
- outputFormat: "json";
10
- status: any;
5
+ output: undefined;
6
+ outputFormat: "redirect";
7
+ status: 302;
11
8
  input: {
12
9
  param: {
13
10
  provider: string;
@@ -21,9 +18,12 @@ export declare const oauthProviderCallbackGet: import("hono/hono-base").HonoBase
21
18
  };
22
19
  };
23
20
  } | {
24
- output: undefined;
25
- outputFormat: "redirect";
26
- status: 302;
21
+ output: {
22
+ code: any;
23
+ message: any;
24
+ };
25
+ outputFormat: "json";
26
+ status: any;
27
27
  input: {
28
28
  param: {
29
29
  provider: string;
@@ -2,12 +2,9 @@ import type { AppEnv } from '../../../../../lib/app-env.ts';
2
2
  export declare const oauthProviderCallbackPost: import("hono/hono-base").HonoBase<AppEnv, {
3
3
  "/oauth/:provider/callback": {
4
4
  $post: {
5
- output: {
6
- code: any;
7
- message: any;
8
- };
9
- outputFormat: "json";
10
- status: any;
5
+ output: undefined;
6
+ outputFormat: "redirect";
7
+ status: 302;
11
8
  input: {
12
9
  param: {
13
10
  provider: string;
@@ -21,9 +18,12 @@ export declare const oauthProviderCallbackPost: import("hono/hono-base").HonoBas
21
18
  };
22
19
  };
23
20
  } | {
24
- output: undefined;
25
- outputFormat: "redirect";
26
- status: 302;
21
+ output: {
22
+ code: any;
23
+ message: any;
24
+ };
25
+ outputFormat: "json";
26
+ status: any;
27
27
  input: {
28
28
  param: {
29
29
  provider: string;
@@ -2,12 +2,9 @@ import type { AppEnv } from '../../../lib/app-env.ts';
2
2
  export declare const oauthRoutes: import("hono/hono-base").HonoBase<AppEnv, import("hono/types").BlankSchema | import("hono/types").MergeSchemaPath<{
3
3
  "/oauth/:provider/callback": {
4
4
  $get: {
5
- output: {
6
- code: any;
7
- message: any;
8
- };
9
- outputFormat: "json";
10
- status: any;
5
+ output: undefined;
6
+ outputFormat: "redirect";
7
+ status: 302;
11
8
  input: {
12
9
  param: {
13
10
  provider: string;
@@ -21,9 +18,12 @@ export declare const oauthRoutes: import("hono/hono-base").HonoBase<AppEnv, impo
21
18
  };
22
19
  };
23
20
  } | {
24
- output: undefined;
25
- outputFormat: "redirect";
26
- status: 302;
21
+ output: {
22
+ code: any;
23
+ message: any;
24
+ };
25
+ outputFormat: "json";
26
+ status: any;
27
27
  input: {
28
28
  param: {
29
29
  provider: string;
@@ -87,12 +87,9 @@ export declare const oauthRoutes: import("hono/hono-base").HonoBase<AppEnv, impo
87
87
  }, "/"> | import("hono/types").MergeSchemaPath<{
88
88
  "/oauth/:provider/callback": {
89
89
  $post: {
90
- output: {
91
- code: any;
92
- message: any;
93
- };
94
- outputFormat: "json";
95
- status: any;
90
+ output: undefined;
91
+ outputFormat: "redirect";
92
+ status: 302;
96
93
  input: {
97
94
  param: {
98
95
  provider: string;
@@ -106,9 +103,12 @@ export declare const oauthRoutes: import("hono/hono-base").HonoBase<AppEnv, impo
106
103
  };
107
104
  };
108
105
  } | {
109
- output: undefined;
110
- outputFormat: "redirect";
111
- status: 302;
106
+ output: {
107
+ code: any;
108
+ message: any;
109
+ };
110
+ outputFormat: "json";
111
+ status: any;
112
112
  input: {
113
113
  param: {
114
114
  provider: string;
@@ -341,11 +341,11 @@ export declare const routes: import("hono/hono-base").HonoBase<AppEnv, import("h
341
341
  "/auth/accounts/select": {
342
342
  $post: {
343
343
  output: {
344
- ok: true;
345
- active_sub: string;
344
+ code: string;
345
+ message: string;
346
346
  };
347
347
  outputFormat: "json";
348
- status: 200;
348
+ status: 400;
349
349
  input: {
350
350
  json: {
351
351
  sub: string;
@@ -353,11 +353,11 @@ export declare const routes: import("hono/hono-base").HonoBase<AppEnv, import("h
353
353
  };
354
354
  } | {
355
355
  output: {
356
- code: string;
357
- message: string;
356
+ ok: true;
357
+ active_sub: string;
358
358
  };
359
359
  outputFormat: "json";
360
- status: 400;
360
+ status: 200;
361
361
  input: {
362
362
  json: {
363
363
  sub: string;
@@ -456,12 +456,9 @@ export declare const routes: import("hono/hono-base").HonoBase<AppEnv, import("h
456
456
  }, "/">, "/"> | import("hono/types").MergeSchemaPath<import("hono/types").MergeSchemaPath<{
457
457
  "/oauth/:provider/callback": {
458
458
  $get: {
459
- output: {
460
- code: any;
461
- message: any;
462
- };
463
- outputFormat: "json";
464
- status: any;
459
+ output: undefined;
460
+ outputFormat: "redirect";
461
+ status: 302;
465
462
  input: {
466
463
  param: {
467
464
  provider: string;
@@ -475,9 +472,12 @@ export declare const routes: import("hono/hono-base").HonoBase<AppEnv, import("h
475
472
  };
476
473
  };
477
474
  } | {
478
- output: undefined;
479
- outputFormat: "redirect";
480
- status: 302;
475
+ output: {
476
+ code: any;
477
+ message: any;
478
+ };
479
+ outputFormat: "json";
480
+ status: any;
481
481
  input: {
482
482
  param: {
483
483
  provider: string;
@@ -541,12 +541,9 @@ export declare const routes: import("hono/hono-base").HonoBase<AppEnv, import("h
541
541
  }, "/">, "/"> | import("hono/types").MergeSchemaPath<import("hono/types").MergeSchemaPath<{
542
542
  "/oauth/:provider/callback": {
543
543
  $post: {
544
- output: {
545
- code: any;
546
- message: any;
547
- };
548
- outputFormat: "json";
549
- status: any;
544
+ output: undefined;
545
+ outputFormat: "redirect";
546
+ status: 302;
550
547
  input: {
551
548
  param: {
552
549
  provider: string;
@@ -560,9 +557,12 @@ export declare const routes: import("hono/hono-base").HonoBase<AppEnv, import("h
560
557
  };
561
558
  };
562
559
  } | {
563
- output: undefined;
564
- outputFormat: "redirect";
565
- status: 302;
560
+ output: {
561
+ code: any;
562
+ message: any;
563
+ };
564
+ outputFormat: "json";
565
+ status: any;
566
566
  input: {
567
567
  param: {
568
568
  provider: string;
@@ -1079,10 +1079,11 @@ export declare const routes: import("hono/hono-base").HonoBase<AppEnv, import("h
1079
1079
  "/auth/accounts/remove": {
1080
1080
  $post: {
1081
1081
  output: {
1082
- ok: true;
1082
+ code: string;
1083
+ message: string;
1083
1084
  };
1084
1085
  outputFormat: "json";
1085
- status: 200;
1086
+ status: 400;
1086
1087
  input: {
1087
1088
  json: {
1088
1089
  sub: string;
@@ -1090,11 +1091,10 @@ export declare const routes: import("hono/hono-base").HonoBase<AppEnv, import("h
1090
1091
  };
1091
1092
  } | {
1092
1093
  output: {
1093
- code: string;
1094
- message: string;
1094
+ ok: true;
1095
1095
  };
1096
1096
  outputFormat: "json";
1097
- status: 400;
1097
+ status: 200;
1098
1098
  input: {
1099
1099
  json: {
1100
1100
  sub: string;
@@ -2,12 +2,9 @@ import type { AppEnv } from '../../../lib/app-env.js';
2
2
  export declare const endSessionGet: import("hono/hono-base").HonoBase<AppEnv, {
3
3
  "/end_session": {
4
4
  $get: {
5
- output: {
6
- error: string;
7
- error_description: string;
8
- };
9
- outputFormat: "json";
10
- status: 400;
5
+ output: undefined;
6
+ outputFormat: "redirect";
7
+ status: 302;
11
8
  input: {
12
9
  query: {
13
10
  client_id?: string | undefined;
@@ -17,9 +14,12 @@ export declare const endSessionGet: import("hono/hono-base").HonoBase<AppEnv, {
17
14
  };
18
15
  };
19
16
  } | {
20
- output: undefined;
21
- outputFormat: "redirect";
22
- status: 302;
17
+ output: {
18
+ error: string;
19
+ error_description: string;
20
+ };
21
+ outputFormat: "json";
22
+ status: 400;
23
23
  input: {
24
24
  query: {
25
25
  client_id?: string | undefined;
@@ -15,7 +15,7 @@ export async function completeBrowserAuthorization(c, proof, operation) {
15
15
  if (!client ||
16
16
  client.deletedAt ||
17
17
  !client.enabled ||
18
- client.tokenEpoch !== proof.clientEpoch)
18
+ (client.tokenEpoch ?? '') !== proof.clientEpoch)
19
19
  throw new e.Unauthorized.Error();
20
20
  const current = await oauthClientService.findByClientId(client.clientId);
21
21
  oauthClientService.validateRedirectUri(current, proof.redirectUri);
@@ -1 +1 @@
1
- {"version":3,"file":"authorization-browser.service.js","sourceRoot":"","sources":["../../src/services/authorization-browser.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,4BAA4B,CAAC;AAExD,OAAO,EAAE,CAAC,EAAE,MAAM,qBAAqB,CAAC;AACxC,OAAO,EAAE,mBAAmB,EAAE,MAAM,+BAA+B,CAAC;AACpE,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAavD,MAAM,CAAC,KAAK,UAAU,4BAA4B,CAChD,CAAsD,EACtD,KAAyB,EACzB,SAAyC;IAEzC,OAAO,mBAAmB,CACxB,CAAC,EACD,KAAK,IAAI,EAAE;QACT,MAAM,EAAE,KAAK,EAAE,kBAAkB,EAAE,GAAG,CAAC,CAAC,GAAG,CAAC,QAAQ,CAAC;QACrD,MAAM,IAAI,GAAG,MAAM,KAAK,CAAC,EAAE,CAAC,aAAa,CACvC,UAAU,EACV,EAAE,GAAG,EAAE,KAAK,CAAC,OAAO,EAAE,EACtB,EAAE,OAAO,EAAE,IAAI,EAAE,CAClB,CAAC;QACF,IACE,IAAI,CAAC,UAAU;YACf,IAAI,CAAC,WAAW,KAAK,KAAK,CAAC,SAAS;YACpC,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC,aAAa,CAAC,QAAQ,EAAE,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC;gBACzD,KAAK,CAAC,SAAS;YAEjB,MAAM,IAAI,CAAC,CAAC,YAAY,CAAC,KAAK,EAAE,CAAC;QACnC,MAAM,MAAM,GAAG,MAAM,eAAe,CAAC,KAAK,CAAC,EAAE,EAAE,KAAK,CAAC,QAAQ,CAAC,CAAC;QAC/D,IACE,CAAC,MAAM;YACP,MAAM,CAAC,SAAS;YAChB,CAAC,MAAM,CAAC,OAAO;YACf,MAAM,CAAC,UAAU,KAAK,KAAK,CAAC,WAAW;YAEvC,MAAM,IAAI,CAAC,CAAC,YAAY,CAAC,KAAK,EAAE,CAAC;QACnC,MAAM,OAAO,GAAG,MAAM,kBAAkB,CAAC,cAAc,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;QACzE,kBAAkB,CAAC,mBAAmB,CAAC,OAAO,EAAE,KAAK,CAAC,WAAW,CAAC,CAAC;QACnE,kBAAkB,CAAC,oBAAoB,CAAC,OAAO,EAAE,KAAK,CAAC,YAAY,CAAC,CAAC;QACrE,kBAAkB,CAAC,iBAAiB,CAClC,OAAO,EACP,KAAK,CAAC,YAAY,KAAK,MAAM,CAAC,CAAC,CAAC,oBAAoB,CAAC,CAAC,CAAC,UAAU,CAClE,CAAC;QACF,kBAAkB,CAAC,cAAc,CAAC,OAAO,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;QACzD,OAAO,SAAS,EAAE,CAAC;IACrB,CAAC,EACD,EAAE,OAAO,EAAE,CAAC,KAAK,CAAC,OAAO,CAAC,EAAE,WAAW,EAAE,MAAM,EAAE,CAClD,CAAC;AACJ,CAAC"}
1
+ {"version":3,"file":"authorization-browser.service.js","sourceRoot":"","sources":["../../src/services/authorization-browser.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,4BAA4B,CAAC;AAExD,OAAO,EAAE,CAAC,EAAE,MAAM,qBAAqB,CAAC;AACxC,OAAO,EAAE,mBAAmB,EAAE,MAAM,+BAA+B,CAAC;AACpE,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAavD,MAAM,CAAC,KAAK,UAAU,4BAA4B,CAChD,CAAsD,EACtD,KAAyB,EACzB,SAAyC;IAEzC,OAAO,mBAAmB,CACxB,CAAC,EACD,KAAK,IAAI,EAAE;QACT,MAAM,EAAE,KAAK,EAAE,kBAAkB,EAAE,GAAG,CAAC,CAAC,GAAG,CAAC,QAAQ,CAAC;QACrD,MAAM,IAAI,GAAG,MAAM,KAAK,CAAC,EAAE,CAAC,aAAa,CACvC,UAAU,EACV,EAAE,GAAG,EAAE,KAAK,CAAC,OAAO,EAAE,EACtB,EAAE,OAAO,EAAE,IAAI,EAAE,CAClB,CAAC;QACF,IACE,IAAI,CAAC,UAAU;YACf,IAAI,CAAC,WAAW,KAAK,KAAK,CAAC,SAAS;YACpC,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC,aAAa,CAAC,QAAQ,EAAE,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC;gBACzD,KAAK,CAAC,SAAS;YAEjB,MAAM,IAAI,CAAC,CAAC,YAAY,CAAC,KAAK,EAAE,CAAC;QACnC,MAAM,MAAM,GAAG,MAAM,eAAe,CAAC,KAAK,CAAC,EAAE,EAAE,KAAK,CAAC,QAAQ,CAAC,CAAC;QAC/D,IACE,CAAC,MAAM;YACP,MAAM,CAAC,SAAS;YAChB,CAAC,MAAM,CAAC,OAAO;YACf,CAAC,MAAM,CAAC,UAAU,IAAI,EAAE,CAAC,KAAK,KAAK,CAAC,WAAW;YAE/C,MAAM,IAAI,CAAC,CAAC,YAAY,CAAC,KAAK,EAAE,CAAC;QACnC,MAAM,OAAO,GAAG,MAAM,kBAAkB,CAAC,cAAc,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;QACzE,kBAAkB,CAAC,mBAAmB,CAAC,OAAO,EAAE,KAAK,CAAC,WAAW,CAAC,CAAC;QACnE,kBAAkB,CAAC,oBAAoB,CAAC,OAAO,EAAE,KAAK,CAAC,YAAY,CAAC,CAAC;QACrE,kBAAkB,CAAC,iBAAiB,CAClC,OAAO,EACP,KAAK,CAAC,YAAY,KAAK,MAAM,CAAC,CAAC,CAAC,oBAAoB,CAAC,CAAC,CAAC,UAAU,CAClE,CAAC;QACF,kBAAkB,CAAC,cAAc,CAAC,OAAO,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;QACzD,OAAO,SAAS,EAAE,CAAC;IACrB,CAAC,EACD,EAAE,OAAO,EAAE,CAAC,KAAK,CAAC,OAAO,CAAC,EAAE,WAAW,EAAE,MAAM,EAAE,CAClD,CAAC;AACJ,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tinyrack/issuary-server",
3
- "version": "0.32.1",
3
+ "version": "0.32.2",
4
4
  "type": "module",
5
5
  "description": "OpenID Connect Provider with OAuth2 support",
6
6
  "license": "MIT",