@sphereon/ssi-sdk.data-store 0.36.1-next.149 → 0.36.1-next.150
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.cjs +199 -97
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +199 -97
- package/dist/index.js.map +1 -1
- package/package.json +8 -8
- package/src/entities/contact/OpenIdConfigEntity.ts +2 -2
- package/src/migrations/generic/16-MakeOpenIdClientSecretNullable.ts +62 -0
- package/src/migrations/generic/index.ts +2 -0
- package/src/migrations/postgres/1767000000001-MakeOpenIdClientSecretNullable.ts +32 -0
- package/src/migrations/sqlite/1767000000002-MakeOpenIdClientSecretNullable.ts +22 -0
package/dist/index.d.cts
CHANGED
|
@@ -170,7 +170,7 @@ declare class DidAuthConfigEntity extends BaseConfigEntity {
|
|
|
170
170
|
|
|
171
171
|
declare class OpenIdConfigEntity extends BaseConfigEntity {
|
|
172
172
|
clientId: string;
|
|
173
|
-
clientSecret
|
|
173
|
+
clientSecret?: string;
|
|
174
174
|
scopes: Array<string>;
|
|
175
175
|
issuer: string;
|
|
176
176
|
redirectUrl: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -170,7 +170,7 @@ declare class DidAuthConfigEntity extends BaseConfigEntity {
|
|
|
170
170
|
|
|
171
171
|
declare class OpenIdConfigEntity extends BaseConfigEntity {
|
|
172
172
|
clientId: string;
|
|
173
|
-
clientSecret
|
|
173
|
+
clientSecret?: string;
|
|
174
174
|
scopes: Array<string>;
|
|
175
175
|
issuer: string;
|
|
176
176
|
redirectUrl: string;
|