@ogcio/building-blocks-sdk 0.2.58 → 0.2.60
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/.gitleaksignore +21 -1
- package/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +14 -0
- package/dist/client/clients/payments/index.d.ts +8 -0
- package/dist/client/clients/payments/index.d.ts.map +1 -1
- package/dist/client/clients/payments/schema.d.ts +3626 -3168
- package/dist/client/clients/payments/schema.d.ts.map +1 -1
- package/dist/client/clients/profile/index.d.ts +2 -0
- package/dist/client/clients/profile/index.d.ts.map +1 -1
- package/dist/client/clients/profile/index.js.map +1 -1
- package/dist/client/clients/profile/schema.d.ts +2 -0
- package/dist/client/clients/profile/schema.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/client/clients/payments/open-api-definition.json +4036 -68
- package/src/client/clients/payments/schema.ts +3626 -3168
- package/src/client/clients/profile/index.ts +1 -0
- package/src/client/clients/profile/open-api-definition.json +4 -0
- package/src/client/clients/profile/schema.ts +2 -0
|
@@ -14,6 +14,7 @@ import {
|
|
|
14
14
|
import { ProfileCitizen } from "./citizen.js";
|
|
15
15
|
import { ProfileOrganisation } from "./organisation.js";
|
|
16
16
|
import type { paths } from "./schema.js";
|
|
17
|
+
|
|
17
18
|
export class Profile extends BaseClient<paths> {
|
|
18
19
|
protected declare client: ReturnType<typeof createClient<paths>>;
|
|
19
20
|
protected serviceName = PROFILE;
|
|
@@ -6090,6 +6090,10 @@
|
|
|
6090
6090
|
},
|
|
6091
6091
|
"organizationId": {
|
|
6092
6092
|
"type": "string"
|
|
6093
|
+
},
|
|
6094
|
+
"consentSubjects": {
|
|
6095
|
+
"description": "Write subjects split by comma, if set will return consent statuses for those subjects, otherwise consent statuses will be null",
|
|
6096
|
+
"type": "string"
|
|
6093
6097
|
}
|
|
6094
6098
|
},
|
|
6095
6099
|
"required": [
|
|
@@ -2514,6 +2514,8 @@ export interface operations {
|
|
|
2514
2514
|
"application/json": {
|
|
2515
2515
|
ppsns: string[];
|
|
2516
2516
|
organizationId?: string;
|
|
2517
|
+
/** @description Write subjects split by comma, if set will return consent statuses for those subjects, otherwise consent statuses will be null */
|
|
2518
|
+
consentSubjects?: string;
|
|
2517
2519
|
};
|
|
2518
2520
|
};
|
|
2519
2521
|
};
|