@studyportals/domain-client 8.5.1-beta.19 → 8.5.1-beta.22
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/package.json
CHANGED
package/src/clients/index.d.ts
CHANGED
|
@@ -7,3 +7,6 @@ export * from "./organisation-page-client.js";
|
|
|
7
7
|
export * from "./programme-card-v2-client.js";
|
|
8
8
|
export * from "./protobuf-client.js";
|
|
9
9
|
export * from "./public-mini-programme-card-client.js";
|
|
10
|
+
export * from "./partner-api-organisation-client.js";
|
|
11
|
+
export * from "./partner-api-programme-client.js";
|
|
12
|
+
export * from "./partner-api-scholarship-client.js";
|
package/src/clients/index.js
CHANGED
|
@@ -7,3 +7,6 @@ export * from "./organisation-page-client.js";
|
|
|
7
7
|
export * from "./programme-card-v2-client.js";
|
|
8
8
|
export * from "./protobuf-client.js";
|
|
9
9
|
export * from "./public-mini-programme-card-client.js";
|
|
10
|
+
export * from "./partner-api-organisation-client.js";
|
|
11
|
+
export * from "./partner-api-programme-client.js";
|
|
12
|
+
export * from "./partner-api-scholarship-client.js";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PartnerApiProgramme } from "../../protobuf/PartnerApi/PartnerApiProgramme.js";
|
|
2
2
|
import { ProtobufClient } from "./protobuf-client.js";
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class PartnerApiProgrammeClient extends ProtobufClient<PartnerApiProgramme> {
|
|
4
4
|
protected constructModel(data: Record<string, any>): PartnerApiProgramme;
|
|
5
5
|
protected getModelName(): string;
|
|
6
6
|
protected getVersion(): string;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { PartnerApiProgramme } from "../../protobuf/PartnerApi/PartnerApiProgramme.js";
|
|
2
2
|
import { ProtobufClient } from "./protobuf-client.js";
|
|
3
|
-
export class
|
|
3
|
+
export class PartnerApiProgrammeClient extends ProtobufClient {
|
|
4
4
|
constructModel(data) {
|
|
5
5
|
return PartnerApiProgramme.fromJSON(data);
|
|
6
6
|
}
|
|
7
7
|
getModelName() {
|
|
8
|
-
return 'partner-api-
|
|
8
|
+
return 'partner-api-programme';
|
|
9
9
|
}
|
|
10
10
|
getVersion() {
|
|
11
11
|
return 'v1';
|