@dailydotdev/schema 0.2.30 → 0.2.31
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/daily-api/pubsub/candidate-preference-updated_pb.cjs +1 -0
- package/dist/daily-api/pubsub/candidate-preference-updated_pb.d.cts +30 -0
- package/dist/daily-api/pubsub/candidate-preference-updated_pb.d.ts +30 -0
- package/dist/daily-api/pubsub/candidate-preference-updated_pb.js +1 -0
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var e,r=Object.defineProperty,t=Object.getOwnPropertyDescriptor,a=Object.getOwnPropertyNames,n=Object.prototype.hasOwnProperty,o={};((e,t)=>{for(var a in t)r(e,a,{get:t[a],enumerable:!0})})(o,{CandidatePreferenceUpdated:()=>d}),module.exports=(e=o,((e,o,i,s)=>{if(o&&"object"==typeof o||"function"==typeof o)for(let d of a(o))n.call(e,d)||d===i||r(e,d,{get:()=>o[d],enumerable:!(s=t(o,d))||s.enumerable});return e})(r({},"__esModule",{value:!0}),e));var i=require("@bufbuild/protobuf"),s=require("../user-candidate-preference_pb.cjs");class d extends i.Message{userId="";payload;constructor(e){super(),i.proto3.util.initPartial(e,this)}static runtime=i.proto3;static typeName="dailydotdev.api.pubsub.candidatepreferenceupdated.CandidatePreferenceUpdated";static fields=i.proto3.util.newFieldList((()=>[{no:1,name:"user_id",kind:"scalar",T:9},{no:2,name:"payload",kind:"message",T:s.UserCandidatePreference}]));static fromBinary(e,r){return(new d).fromBinary(e,r)}static fromJson(e,r){return(new d).fromJson(e,r)}static fromJsonString(e,r){return(new d).fromJsonString(e,r)}static equals(e,r){return i.proto3.util.equals(d,e,r)}}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { Message, PartialMessage, proto3, FieldList, BinaryReadOptions, JsonValue, JsonReadOptions, PlainMessage } from '@bufbuild/protobuf';
|
|
2
|
+
import { UserCandidatePreference } from '../user-candidate-preference_pb.cjs';
|
|
3
|
+
import '../user_pb.cjs';
|
|
4
|
+
import '../opportunity_pb.cjs';
|
|
5
|
+
import '../util_pb.cjs';
|
|
6
|
+
import '../organization_pb.cjs';
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* @generated from message dailydotdev.api.pubsub.candidatepreferenceupdated.CandidatePreferenceUpdated
|
|
10
|
+
*/
|
|
11
|
+
declare class CandidatePreferenceUpdated extends Message<CandidatePreferenceUpdated> {
|
|
12
|
+
/**
|
|
13
|
+
* @generated from field: string user_id = 1;
|
|
14
|
+
*/
|
|
15
|
+
userId: string;
|
|
16
|
+
/**
|
|
17
|
+
* @generated from field: dailydotdev.api.usercandidatepreference.UserCandidatePreference payload = 2;
|
|
18
|
+
*/
|
|
19
|
+
payload?: UserCandidatePreference;
|
|
20
|
+
constructor(data?: PartialMessage<CandidatePreferenceUpdated>);
|
|
21
|
+
static readonly runtime: typeof proto3;
|
|
22
|
+
static readonly typeName = "dailydotdev.api.pubsub.candidatepreferenceupdated.CandidatePreferenceUpdated";
|
|
23
|
+
static readonly fields: FieldList;
|
|
24
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CandidatePreferenceUpdated;
|
|
25
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CandidatePreferenceUpdated;
|
|
26
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CandidatePreferenceUpdated;
|
|
27
|
+
static equals(a: CandidatePreferenceUpdated | PlainMessage<CandidatePreferenceUpdated> | undefined, b: CandidatePreferenceUpdated | PlainMessage<CandidatePreferenceUpdated> | undefined): boolean;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export { CandidatePreferenceUpdated };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { Message, PartialMessage, proto3, FieldList, BinaryReadOptions, JsonValue, JsonReadOptions, PlainMessage } from '@bufbuild/protobuf';
|
|
2
|
+
import { UserCandidatePreference } from '../user-candidate-preference_pb.js';
|
|
3
|
+
import '../user_pb.js';
|
|
4
|
+
import '../opportunity_pb.js';
|
|
5
|
+
import '../util_pb.js';
|
|
6
|
+
import '../organization_pb.js';
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* @generated from message dailydotdev.api.pubsub.candidatepreferenceupdated.CandidatePreferenceUpdated
|
|
10
|
+
*/
|
|
11
|
+
declare class CandidatePreferenceUpdated extends Message<CandidatePreferenceUpdated> {
|
|
12
|
+
/**
|
|
13
|
+
* @generated from field: string user_id = 1;
|
|
14
|
+
*/
|
|
15
|
+
userId: string;
|
|
16
|
+
/**
|
|
17
|
+
* @generated from field: dailydotdev.api.usercandidatepreference.UserCandidatePreference payload = 2;
|
|
18
|
+
*/
|
|
19
|
+
payload?: UserCandidatePreference;
|
|
20
|
+
constructor(data?: PartialMessage<CandidatePreferenceUpdated>);
|
|
21
|
+
static readonly runtime: typeof proto3;
|
|
22
|
+
static readonly typeName = "dailydotdev.api.pubsub.candidatepreferenceupdated.CandidatePreferenceUpdated";
|
|
23
|
+
static readonly fields: FieldList;
|
|
24
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CandidatePreferenceUpdated;
|
|
25
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CandidatePreferenceUpdated;
|
|
26
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CandidatePreferenceUpdated;
|
|
27
|
+
static equals(a: CandidatePreferenceUpdated | PlainMessage<CandidatePreferenceUpdated> | undefined, b: CandidatePreferenceUpdated | PlainMessage<CandidatePreferenceUpdated> | undefined): boolean;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export { CandidatePreferenceUpdated };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{Message as e,proto3 as t}from"@bufbuild/protobuf";import{UserCandidatePreference as r}from"../user-candidate-preference_pb.ts";class a extends e{userId="";payload;constructor(e){super(),t.util.initPartial(e,this)}static runtime=t;static typeName="dailydotdev.api.pubsub.candidatepreferenceupdated.CandidatePreferenceUpdated";static fields=t.util.newFieldList((()=>[{no:1,name:"user_id",kind:"scalar",T:9},{no:2,name:"payload",kind:"message",T:r}]));static fromBinary(e,t){return(new a).fromBinary(e,t)}static fromJson(e,t){return(new a).fromJson(e,t)}static fromJsonString(e,t){return(new a).fromJsonString(e,t)}static equals(e,r){return t.util.equals(a,e,r)}}export{a as CandidatePreferenceUpdated};
|
package/dist/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
var e,r=Object.defineProperty,o=Object.getOwnPropertyDescriptor,p=Object.getOwnPropertyNames,s=Object.prototype.hasOwnProperty,i=(e,i,t,u)=>{if(i&&"object"==typeof i||"function"==typeof i)for(let a of p(i))s.call(e,a)||a===t||r(e,a,{get:()=>i[a],enumerable:!(u=o(i,a))||u.enumerable});return e},t=(e,r,o)=>(i(e,r,"default"),o&&i(o,r,"default")),u={};module.exports=(e=u,i(r({},"__esModule",{value:!0}),e)),t(u,require("./bragi/pipelines_connect.cjs"),module.exports),t(u,require("./bragi/pipelines_pb.cjs"),module.exports),t(u,require("./bragi/proxy_connect.cjs"),module.exports),t(u,require("./bragi/proxy_pb.cjs"),module.exports),t(u,require("./daily-api/opportunity-match_pb.cjs"),module.exports),t(u,require("./daily-api/opportunity_pb.cjs"),module.exports),t(u,require("./daily-api/organization_pb.cjs"),module.exports),t(u,require("./daily-api/posts_connect.cjs"),module.exports),t(u,require("./daily-api/posts_pb.cjs"),module.exports),t(u,require("./daily-api/source-requests_connect.cjs"),module.exports),t(u,require("./daily-api/source-requests_pb.cjs"),module.exports),t(u,require("./daily-api/sources_pb.cjs"),module.exports),t(u,require("./daily-api/user-candidate-preference_pb.cjs"),module.exports),t(u,require("./daily-api/user_pb.cjs"),module.exports),t(u,require("./daily-api/util_pb.cjs"),module.exports),t(u,require("./daily-api/pubsub/candidate-accepted-opportunity_pb.cjs"),module.exports),t(u,require("./daily-api/pubsub/content-updated_pb.cjs"),module.exports),t(u,require("./daily-api/pubsub/opportunity_pb.cjs"),module.exports),t(u,require("./feed/briefing/briefing_pb.cjs"),module.exports),t(u,require("./feed/personalised/personalised_pb.cjs"),module.exports),t(u,require("./feed/server_side_event/server_side_event_pb.cjs"),module.exports),t(u,require("./gondul/candidates_pb.cjs"),module.exports),t(u,require("./mimir/search/search_pb.cjs"),module.exports),t(u,require("./njord/transactions_connect.cjs"),module.exports),t(u,require("./njord/transactions_pb.cjs"),module.exports),t(u,require("./snotra/engagement/engagement_pb.cjs"),module.exports),t(u,require("./snotra/personalisation/personalisation_pb.cjs"),module.exports),t(u,require("./util/error_pb.cjs"),module.exports);
|
|
1
|
+
var e,r=Object.defineProperty,o=Object.getOwnPropertyDescriptor,p=Object.getOwnPropertyNames,s=Object.prototype.hasOwnProperty,i=(e,i,t,u)=>{if(i&&"object"==typeof i||"function"==typeof i)for(let a of p(i))s.call(e,a)||a===t||r(e,a,{get:()=>i[a],enumerable:!(u=o(i,a))||u.enumerable});return e},t=(e,r,o)=>(i(e,r,"default"),o&&i(o,r,"default")),u={};module.exports=(e=u,i(r({},"__esModule",{value:!0}),e)),t(u,require("./bragi/pipelines_connect.cjs"),module.exports),t(u,require("./bragi/pipelines_pb.cjs"),module.exports),t(u,require("./bragi/proxy_connect.cjs"),module.exports),t(u,require("./bragi/proxy_pb.cjs"),module.exports),t(u,require("./daily-api/opportunity-match_pb.cjs"),module.exports),t(u,require("./daily-api/opportunity_pb.cjs"),module.exports),t(u,require("./daily-api/organization_pb.cjs"),module.exports),t(u,require("./daily-api/posts_connect.cjs"),module.exports),t(u,require("./daily-api/posts_pb.cjs"),module.exports),t(u,require("./daily-api/source-requests_connect.cjs"),module.exports),t(u,require("./daily-api/source-requests_pb.cjs"),module.exports),t(u,require("./daily-api/sources_pb.cjs"),module.exports),t(u,require("./daily-api/user-candidate-preference_pb.cjs"),module.exports),t(u,require("./daily-api/user_pb.cjs"),module.exports),t(u,require("./daily-api/util_pb.cjs"),module.exports),t(u,require("./daily-api/pubsub/candidate-accepted-opportunity_pb.cjs"),module.exports),t(u,require("./daily-api/pubsub/candidate-preference-updated_pb.cjs"),module.exports),t(u,require("./daily-api/pubsub/content-updated_pb.cjs"),module.exports),t(u,require("./daily-api/pubsub/opportunity_pb.cjs"),module.exports),t(u,require("./feed/briefing/briefing_pb.cjs"),module.exports),t(u,require("./feed/personalised/personalised_pb.cjs"),module.exports),t(u,require("./feed/server_side_event/server_side_event_pb.cjs"),module.exports),t(u,require("./gondul/candidates_pb.cjs"),module.exports),t(u,require("./mimir/search/search_pb.cjs"),module.exports),t(u,require("./njord/transactions_connect.cjs"),module.exports),t(u,require("./njord/transactions_pb.cjs"),module.exports),t(u,require("./snotra/engagement/engagement_pb.cjs"),module.exports),t(u,require("./snotra/personalisation/personalisation_pb.cjs"),module.exports),t(u,require("./util/error_pb.cjs"),module.exports);
|
package/dist/index.d.cts
CHANGED
|
@@ -14,6 +14,7 @@ export { CandidateStatus, UserCandidatePreference } from './daily-api/user-candi
|
|
|
14
14
|
export { UserCV } from './daily-api/user_pb.cjs';
|
|
15
15
|
export { Location, LocationType } from './daily-api/util_pb.cjs';
|
|
16
16
|
export { CandidateAcceptedOpportunityMessage } from './daily-api/pubsub/candidate-accepted-opportunity_pb.cjs';
|
|
17
|
+
export { CandidatePreferenceUpdated } from './daily-api/pubsub/candidate-preference-updated_pb.cjs';
|
|
17
18
|
export { ContentUpdatedMessage } from './daily-api/pubsub/content-updated_pb.cjs';
|
|
18
19
|
export { OpportunityMessage } from './daily-api/pubsub/opportunity_pb.cjs';
|
|
19
20
|
export { Briefing, BriefingItem, BriefingSection, BriefingStatistics, UserBriefingRequest } from './feed/briefing/briefing_pb.cjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ export { CandidateStatus, UserCandidatePreference } from './daily-api/user-candi
|
|
|
14
14
|
export { UserCV } from './daily-api/user_pb.js';
|
|
15
15
|
export { Location, LocationType } from './daily-api/util_pb.js';
|
|
16
16
|
export { CandidateAcceptedOpportunityMessage } from './daily-api/pubsub/candidate-accepted-opportunity_pb.js';
|
|
17
|
+
export { CandidatePreferenceUpdated } from './daily-api/pubsub/candidate-preference-updated_pb.js';
|
|
17
18
|
export { ContentUpdatedMessage } from './daily-api/pubsub/content-updated_pb.js';
|
|
18
19
|
export { OpportunityMessage } from './daily-api/pubsub/opportunity_pb.js';
|
|
19
20
|
export { Briefing, BriefingItem, BriefingSection, BriefingStatistics, UserBriefingRequest } from './feed/briefing/briefing_pb.js';
|
package/dist/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export*from"./bragi/pipelines_connect";export*from"./bragi/pipelines_pb";export*from"./bragi/proxy_connect";export*from"./bragi/proxy_pb";export*from"./daily-api/opportunity-match_pb";export*from"./daily-api/opportunity_pb";export*from"./daily-api/organization_pb";export*from"./daily-api/posts_connect";export*from"./daily-api/posts_pb";export*from"./daily-api/source-requests_connect";export*from"./daily-api/source-requests_pb";export*from"./daily-api/sources_pb";export*from"./daily-api/user-candidate-preference_pb";export*from"./daily-api/user_pb";export*from"./daily-api/util_pb";export*from"./daily-api/pubsub/candidate-accepted-opportunity_pb";export*from"./daily-api/pubsub/content-updated_pb";export*from"./daily-api/pubsub/opportunity_pb";export*from"./feed/briefing/briefing_pb";export*from"./feed/personalised/personalised_pb";export*from"./feed/server_side_event/server_side_event_pb";export*from"./gondul/candidates_pb";export*from"./mimir/search/search_pb";export*from"./njord/transactions_connect";export*from"./njord/transactions_pb";export*from"./snotra/engagement/engagement_pb";export*from"./snotra/personalisation/personalisation_pb";export*from"./util/error_pb";
|
|
1
|
+
export*from"./bragi/pipelines_connect";export*from"./bragi/pipelines_pb";export*from"./bragi/proxy_connect";export*from"./bragi/proxy_pb";export*from"./daily-api/opportunity-match_pb";export*from"./daily-api/opportunity_pb";export*from"./daily-api/organization_pb";export*from"./daily-api/posts_connect";export*from"./daily-api/posts_pb";export*from"./daily-api/source-requests_connect";export*from"./daily-api/source-requests_pb";export*from"./daily-api/sources_pb";export*from"./daily-api/user-candidate-preference_pb";export*from"./daily-api/user_pb";export*from"./daily-api/util_pb";export*from"./daily-api/pubsub/candidate-accepted-opportunity_pb";export*from"./daily-api/pubsub/candidate-preference-updated_pb";export*from"./daily-api/pubsub/content-updated_pb";export*from"./daily-api/pubsub/opportunity_pb";export*from"./feed/briefing/briefing_pb";export*from"./feed/personalised/personalised_pb";export*from"./feed/server_side_event/server_side_event_pb";export*from"./gondul/candidates_pb";export*from"./mimir/search/search_pb";export*from"./njord/transactions_connect";export*from"./njord/transactions_pb";export*from"./snotra/engagement/engagement_pb";export*from"./snotra/personalisation/personalisation_pb";export*from"./util/error_pb";
|