rf/modifies bff
ft/adds email_address and phone_number tables ft/adds email and phone endpoints ft/adds account_level query
This commit is contained in:
parent
ebe3426c2c
commit
d021f5db51
Makefile
bff
db
migration
mock
query
sqlc
doc/swagger
gapi
converter.gorpc_add_email.gorpc_create_person.gorpc_delete_email.gorpc_get_account.gorpc_update_person.go
main.gopb
account.pb.goemail_address.pb.goperson.pb.gorpc_add_email.pb.gorpc_add_emails.pb.gorpc_create_person.pb.gorpc_delete_email.pb.gorpc_update_person.pb.goservice_df.pb.goservice_df.pb.gw.goservice_df_grpc.pb.go
proto
account.protoemail_address.protoperson.protorpc_add_email.protorpc_add_emails.protorpc_create_person.protorpc_delete_email.protorpc_update_person.protoservice_df.proto
sqlc.yamlfrontend/app/lib/pb
account.pb.dartaccount.pbjson.dartaccount_info.pb.dartdocument.pb.dartemail_address.pb.dartemail_address.pbenum.dartemail_address.pbjson.dartpayment.pb.dartperson.pb.dartperson.pbjson.dartreturns_log.pb.dartrpc_add_email.pb.dartrpc_add_email.pbenum.dartrpc_add_email.pbjson.dartrpc_add_emails.pb.dartrpc_add_emails.pbenum.dartrpc_add_emails.pbjson.dartrpc_create_account.pb.dartrpc_create_account_info.pb.dartrpc_create_payment.pb.dartrpc_create_person.pb.dartrpc_create_person.pbjson.dartrpc_delete_email.pb.dartrpc_delete_email.pbenum.dartrpc_delete_email.pbjson.dartrpc_get_account.pb.dartrpc_get_account_info.pb.dartrpc_get_payment.pb.dartrpc_get_person.pb.dartrpc_list_account_info.pb.dartrpc_list_accounts.pb.dartrpc_list_payments.pb.dartrpc_list_persons.pb.dartrpc_list_returns_log_by_person_id.pb.dartrpc_list_sessions.pb.dartrpc_login.pb.dartrpc_refresh_token.pb.dartrpc_resend_verification.pb.dartrpc_update_account.pb.dartrpc_update_account_info.pb.dartrpc_update_account_privacy.pb.dartrpc_update_payment.pb.dartrpc_update_person.pb.dartrpc_update_person.pbjson.dartrpc_upload_document.pb.dartservice_df.pbgrpc.dartsession.pb.dart
2
Makefile
2
Makefile
@ -49,7 +49,7 @@ migrateup:
|
|||||||
docker run --name migrateup --privileged=true --rm -v $(PWD)/bff/db/migration:/migrations --network host migrate/migrate -path=/migrations/ -database $(DB_URL) up
|
docker run --name migrateup --privileged=true --rm -v $(PWD)/bff/db/migration:/migrations --network host migrate/migrate -path=/migrations/ -database $(DB_URL) up
|
||||||
|
|
||||||
migratedown:
|
migratedown:
|
||||||
docker run --name migratedown --privileged=true --rm -v $(PWD)/bff/db/migration:/migrations --network host migrate/migrate -path=/migrations/ -database $(DB_URL) down
|
docker run --name migrateup --privileged=true --rm -v $(PWD)/bff/db/migration:/migrations --network host migrate/migrate -path=/migrations/ -database $(DB_URL) down -all
|
||||||
|
|
||||||
createdb:
|
createdb:
|
||||||
docker exec -it df-bff_postgres_1 createdb --username=root --owner=root df
|
docker exec -it df-bff_postgres_1 createdb --username=root --owner=root df
|
||||||
|
@ -3,6 +3,8 @@ DROP TABLE IF EXISTS "returns";
|
|||||||
DROP TABLE IF EXISTS "payments";
|
DROP TABLE IF EXISTS "payments";
|
||||||
DROP TABLE IF EXISTS "documents";
|
DROP TABLE IF EXISTS "documents";
|
||||||
DROP TABLE IF EXISTS "mails";
|
DROP TABLE IF EXISTS "mails";
|
||||||
|
DROP TABLE IF EXISTS "email_addresses";
|
||||||
|
DROP TABLE IF EXISTS "phone_numbers";
|
||||||
DROP TABLE IF EXISTS "persons";
|
DROP TABLE IF EXISTS "persons";
|
||||||
DROP TABLE IF EXISTS "providers";
|
DROP TABLE IF EXISTS "providers";
|
||||||
DROP TABLE IF EXISTS "sessions";
|
DROP TABLE IF EXISTS "sessions";
|
||||||
|
@ -62,12 +62,25 @@ CREATE TABLE "persons" (
|
|||||||
"zip" varchar NOT NULL,
|
"zip" varchar NOT NULL,
|
||||||
"street" varchar NOT NULL,
|
"street" varchar NOT NULL,
|
||||||
"country" varchar NOT NULL,
|
"country" varchar NOT NULL,
|
||||||
|
"relationship" varchar,
|
||||||
"creator" varchar NOT NULL,
|
"creator" varchar NOT NULL,
|
||||||
"created" timestamptz NOT NULL DEFAULT (now()),
|
"created" timestamptz NOT NULL DEFAULT (now()),
|
||||||
"changer" varchar NOT NULL,
|
"changer" varchar NOT NULL,
|
||||||
"changed" timestamptz NOT NULL DEFAULT (now())
|
"changed" timestamptz NOT NULL DEFAULT (now())
|
||||||
);
|
);
|
||||||
|
|
||||||
|
CREATE TABLE "email_addresses" (
|
||||||
|
"id" BIGSERIAL UNIQUE PRIMARY KEY NOT NULL,
|
||||||
|
"email" varchar NOT NULL,
|
||||||
|
"person_id" bigint NOT NULL
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE "phone_numbers" (
|
||||||
|
"id" BIGSERIAL UNIQUE PRIMARY KEY NOT NULL,
|
||||||
|
"phone" varchar NOT NULL,
|
||||||
|
"person_id" bigint NOT NULL
|
||||||
|
);
|
||||||
|
|
||||||
CREATE TABLE "documents" (
|
CREATE TABLE "documents" (
|
||||||
"id" BIGSERIAL UNIQUE PRIMARY KEY NOT NULL,
|
"id" BIGSERIAL UNIQUE PRIMARY KEY NOT NULL,
|
||||||
"person_id" bigint,
|
"person_id" bigint,
|
||||||
@ -147,6 +160,10 @@ ALTER TABLE "sessions" ADD FOREIGN KEY ("account_id") REFERENCES "accounts" ("id
|
|||||||
|
|
||||||
ALTER TABLE "persons" ADD FOREIGN KEY ("account_id") REFERENCES "accounts" ("id");
|
ALTER TABLE "persons" ADD FOREIGN KEY ("account_id") REFERENCES "accounts" ("id");
|
||||||
|
|
||||||
|
ALTER TABLE "email_addresses" ADD FOREIGN KEY ("person_id") REFERENCES "persons" ("id");
|
||||||
|
|
||||||
|
ALTER TABLE "phone_numbers" ADD FOREIGN KEY ("person_id") REFERENCES "persons" ("id");
|
||||||
|
|
||||||
ALTER TABLE "payments" ADD FOREIGN KEY ("account_id") REFERENCES "accounts" ("id");
|
ALTER TABLE "payments" ADD FOREIGN KEY ("account_id") REFERENCES "accounts" ("id");
|
||||||
|
|
||||||
ALTER TABLE "returns" ADD FOREIGN KEY ("person_id") REFERENCES "persons" ("id");
|
ALTER TABLE "returns" ADD FOREIGN KEY ("person_id") REFERENCES "persons" ("id");
|
||||||
|
@ -42,6 +42,36 @@ func (m *MockStore) EXPECT() *MockStoreMockRecorder {
|
|||||||
return m.recorder
|
return m.recorder
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// AddEmailAddress mocks base method.
|
||||||
|
func (m *MockStore) AddEmailAddress(arg0 context.Context, arg1 db.AddEmailAddressParams) (db.EmailAddress, error) {
|
||||||
|
m.ctrl.T.Helper()
|
||||||
|
ret := m.ctrl.Call(m, "AddEmailAddress", arg0, arg1)
|
||||||
|
ret0, _ := ret[0].(db.EmailAddress)
|
||||||
|
ret1, _ := ret[1].(error)
|
||||||
|
return ret0, ret1
|
||||||
|
}
|
||||||
|
|
||||||
|
// AddEmailAddress indicates an expected call of AddEmailAddress.
|
||||||
|
func (mr *MockStoreMockRecorder) AddEmailAddress(arg0, arg1 any) *gomock.Call {
|
||||||
|
mr.mock.ctrl.T.Helper()
|
||||||
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AddEmailAddress", reflect.TypeOf((*MockStore)(nil).AddEmailAddress), arg0, arg1)
|
||||||
|
}
|
||||||
|
|
||||||
|
// AddPhoneNumber mocks base method.
|
||||||
|
func (m *MockStore) AddPhoneNumber(arg0 context.Context, arg1 db.AddPhoneNumberParams) (db.PhoneNumber, error) {
|
||||||
|
m.ctrl.T.Helper()
|
||||||
|
ret := m.ctrl.Call(m, "AddPhoneNumber", arg0, arg1)
|
||||||
|
ret0, _ := ret[0].(db.PhoneNumber)
|
||||||
|
ret1, _ := ret[1].(error)
|
||||||
|
return ret0, ret1
|
||||||
|
}
|
||||||
|
|
||||||
|
// AddPhoneNumber indicates an expected call of AddPhoneNumber.
|
||||||
|
func (mr *MockStoreMockRecorder) AddPhoneNumber(arg0, arg1 any) *gomock.Call {
|
||||||
|
mr.mock.ctrl.T.Helper()
|
||||||
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AddPhoneNumber", reflect.TypeOf((*MockStore)(nil).AddPhoneNumber), arg0, arg1)
|
||||||
|
}
|
||||||
|
|
||||||
// BlockSession mocks base method.
|
// BlockSession mocks base method.
|
||||||
func (m *MockStore) BlockSession(arg0 context.Context, arg1 uuid.UUID) error {
|
func (m *MockStore) BlockSession(arg0 context.Context, arg1 uuid.UUID) error {
|
||||||
m.ctrl.T.Helper()
|
m.ctrl.T.Helper()
|
||||||
@ -324,6 +354,34 @@ func (mr *MockStoreMockRecorder) DeleteAccountInfo(arg0, arg1 any) *gomock.Call
|
|||||||
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteAccountInfo", reflect.TypeOf((*MockStore)(nil).DeleteAccountInfo), arg0, arg1)
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteAccountInfo", reflect.TypeOf((*MockStore)(nil).DeleteAccountInfo), arg0, arg1)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// DeleteAllEmailAddresses mocks base method.
|
||||||
|
func (m *MockStore) DeleteAllEmailAddresses(arg0 context.Context, arg1 uint64) error {
|
||||||
|
m.ctrl.T.Helper()
|
||||||
|
ret := m.ctrl.Call(m, "DeleteAllEmailAddresses", arg0, arg1)
|
||||||
|
ret0, _ := ret[0].(error)
|
||||||
|
return ret0
|
||||||
|
}
|
||||||
|
|
||||||
|
// DeleteAllEmailAddresses indicates an expected call of DeleteAllEmailAddresses.
|
||||||
|
func (mr *MockStoreMockRecorder) DeleteAllEmailAddresses(arg0, arg1 any) *gomock.Call {
|
||||||
|
mr.mock.ctrl.T.Helper()
|
||||||
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteAllEmailAddresses", reflect.TypeOf((*MockStore)(nil).DeleteAllEmailAddresses), arg0, arg1)
|
||||||
|
}
|
||||||
|
|
||||||
|
// DeleteAllPhoneNumbers mocks base method.
|
||||||
|
func (m *MockStore) DeleteAllPhoneNumbers(arg0 context.Context, arg1 uint64) error {
|
||||||
|
m.ctrl.T.Helper()
|
||||||
|
ret := m.ctrl.Call(m, "DeleteAllPhoneNumbers", arg0, arg1)
|
||||||
|
ret0, _ := ret[0].(error)
|
||||||
|
return ret0
|
||||||
|
}
|
||||||
|
|
||||||
|
// DeleteAllPhoneNumbers indicates an expected call of DeleteAllPhoneNumbers.
|
||||||
|
func (mr *MockStoreMockRecorder) DeleteAllPhoneNumbers(arg0, arg1 any) *gomock.Call {
|
||||||
|
mr.mock.ctrl.T.Helper()
|
||||||
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteAllPhoneNumbers", reflect.TypeOf((*MockStore)(nil).DeleteAllPhoneNumbers), arg0, arg1)
|
||||||
|
}
|
||||||
|
|
||||||
// DeleteDocument mocks base method.
|
// DeleteDocument mocks base method.
|
||||||
func (m *MockStore) DeleteDocument(arg0 context.Context, arg1 uint64) error {
|
func (m *MockStore) DeleteDocument(arg0 context.Context, arg1 uint64) error {
|
||||||
m.ctrl.T.Helper()
|
m.ctrl.T.Helper()
|
||||||
@ -367,6 +425,20 @@ func (mr *MockStoreMockRecorder) DeleteDocumentsByPersonID(arg0, arg1 any) *gomo
|
|||||||
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteDocumentsByPersonID", reflect.TypeOf((*MockStore)(nil).DeleteDocumentsByPersonID), arg0, arg1)
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteDocumentsByPersonID", reflect.TypeOf((*MockStore)(nil).DeleteDocumentsByPersonID), arg0, arg1)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// DeleteEmailAddress mocks base method.
|
||||||
|
func (m *MockStore) DeleteEmailAddress(arg0 context.Context, arg1 uint64) error {
|
||||||
|
m.ctrl.T.Helper()
|
||||||
|
ret := m.ctrl.Call(m, "DeleteEmailAddress", arg0, arg1)
|
||||||
|
ret0, _ := ret[0].(error)
|
||||||
|
return ret0
|
||||||
|
}
|
||||||
|
|
||||||
|
// DeleteEmailAddress indicates an expected call of DeleteEmailAddress.
|
||||||
|
func (mr *MockStoreMockRecorder) DeleteEmailAddress(arg0, arg1 any) *gomock.Call {
|
||||||
|
mr.mock.ctrl.T.Helper()
|
||||||
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteEmailAddress", reflect.TypeOf((*MockStore)(nil).DeleteEmailAddress), arg0, arg1)
|
||||||
|
}
|
||||||
|
|
||||||
// DeleteMail mocks base method.
|
// DeleteMail mocks base method.
|
||||||
func (m *MockStore) DeleteMail(arg0 context.Context, arg1 uint64) error {
|
func (m *MockStore) DeleteMail(arg0 context.Context, arg1 uint64) error {
|
||||||
m.ctrl.T.Helper()
|
m.ctrl.T.Helper()
|
||||||
@ -423,6 +495,20 @@ func (mr *MockStoreMockRecorder) DeletePersonTx(arg0, arg1 any) *gomock.Call {
|
|||||||
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeletePersonTx", reflect.TypeOf((*MockStore)(nil).DeletePersonTx), arg0, arg1)
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeletePersonTx", reflect.TypeOf((*MockStore)(nil).DeletePersonTx), arg0, arg1)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// DeletePhoneNumber mocks base method.
|
||||||
|
func (m *MockStore) DeletePhoneNumber(arg0 context.Context, arg1 uint64) error {
|
||||||
|
m.ctrl.T.Helper()
|
||||||
|
ret := m.ctrl.Call(m, "DeletePhoneNumber", arg0, arg1)
|
||||||
|
ret0, _ := ret[0].(error)
|
||||||
|
return ret0
|
||||||
|
}
|
||||||
|
|
||||||
|
// DeletePhoneNumber indicates an expected call of DeletePhoneNumber.
|
||||||
|
func (mr *MockStoreMockRecorder) DeletePhoneNumber(arg0, arg1 any) *gomock.Call {
|
||||||
|
mr.mock.ctrl.T.Helper()
|
||||||
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeletePhoneNumber", reflect.TypeOf((*MockStore)(nil).DeletePhoneNumber), arg0, arg1)
|
||||||
|
}
|
||||||
|
|
||||||
// DeleteProvider mocks base method.
|
// DeleteProvider mocks base method.
|
||||||
func (m *MockStore) DeleteProvider(arg0 context.Context, arg1 uint64) error {
|
func (m *MockStore) DeleteProvider(arg0 context.Context, arg1 uint64) error {
|
||||||
m.ctrl.T.Helper()
|
m.ctrl.T.Helper()
|
||||||
@ -538,6 +624,21 @@ func (mr *MockStoreMockRecorder) GetAccountInfo(arg0, arg1 any) *gomock.Call {
|
|||||||
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetAccountInfo", reflect.TypeOf((*MockStore)(nil).GetAccountInfo), arg0, arg1)
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetAccountInfo", reflect.TypeOf((*MockStore)(nil).GetAccountInfo), arg0, arg1)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetAccountLevel mocks base method.
|
||||||
|
func (m *MockStore) GetAccountLevel(arg0 context.Context, arg1 uint64) (db.GetAccountLevelRow, error) {
|
||||||
|
m.ctrl.T.Helper()
|
||||||
|
ret := m.ctrl.Call(m, "GetAccountLevel", arg0, arg1)
|
||||||
|
ret0, _ := ret[0].(db.GetAccountLevelRow)
|
||||||
|
ret1, _ := ret[1].(error)
|
||||||
|
return ret0, ret1
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetAccountLevel indicates an expected call of GetAccountLevel.
|
||||||
|
func (mr *MockStoreMockRecorder) GetAccountLevel(arg0, arg1 any) *gomock.Call {
|
||||||
|
mr.mock.ctrl.T.Helper()
|
||||||
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetAccountLevel", reflect.TypeOf((*MockStore)(nil).GetAccountLevel), arg0, arg1)
|
||||||
|
}
|
||||||
|
|
||||||
// GetDocument mocks base method.
|
// GetDocument mocks base method.
|
||||||
func (m *MockStore) GetDocument(arg0 context.Context, arg1 uint64) (db.Document, error) {
|
func (m *MockStore) GetDocument(arg0 context.Context, arg1 uint64) (db.Document, error) {
|
||||||
m.ctrl.T.Helper()
|
m.ctrl.T.Helper()
|
||||||
@ -583,6 +684,21 @@ func (mr *MockStoreMockRecorder) GetDocumentByIDWithAccountID(arg0, arg1 any) *g
|
|||||||
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetDocumentByIDWithAccountID", reflect.TypeOf((*MockStore)(nil).GetDocumentByIDWithAccountID), arg0, arg1)
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetDocumentByIDWithAccountID", reflect.TypeOf((*MockStore)(nil).GetDocumentByIDWithAccountID), arg0, arg1)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetEmailAddresses mocks base method.
|
||||||
|
func (m *MockStore) GetEmailAddresses(arg0 context.Context, arg1 uint64) ([]db.EmailAddress, error) {
|
||||||
|
m.ctrl.T.Helper()
|
||||||
|
ret := m.ctrl.Call(m, "GetEmailAddresses", arg0, arg1)
|
||||||
|
ret0, _ := ret[0].([]db.EmailAddress)
|
||||||
|
ret1, _ := ret[1].(error)
|
||||||
|
return ret0, ret1
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetEmailAddresses indicates an expected call of GetEmailAddresses.
|
||||||
|
func (mr *MockStoreMockRecorder) GetEmailAddresses(arg0, arg1 any) *gomock.Call {
|
||||||
|
mr.mock.ctrl.T.Helper()
|
||||||
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetEmailAddresses", reflect.TypeOf((*MockStore)(nil).GetEmailAddresses), arg0, arg1)
|
||||||
|
}
|
||||||
|
|
||||||
// GetMail mocks base method.
|
// GetMail mocks base method.
|
||||||
func (m *MockStore) GetMail(arg0 context.Context, arg1 uint64) (db.Mail, error) {
|
func (m *MockStore) GetMail(arg0 context.Context, arg1 uint64) (db.Mail, error) {
|
||||||
m.ctrl.T.Helper()
|
m.ctrl.T.Helper()
|
||||||
@ -628,6 +744,21 @@ func (mr *MockStoreMockRecorder) GetPerson(arg0, arg1 any) *gomock.Call {
|
|||||||
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetPerson", reflect.TypeOf((*MockStore)(nil).GetPerson), arg0, arg1)
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetPerson", reflect.TypeOf((*MockStore)(nil).GetPerson), arg0, arg1)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetPhoneNumbers mocks base method.
|
||||||
|
func (m *MockStore) GetPhoneNumbers(arg0 context.Context, arg1 uint64) ([]db.PhoneNumber, error) {
|
||||||
|
m.ctrl.T.Helper()
|
||||||
|
ret := m.ctrl.Call(m, "GetPhoneNumbers", arg0, arg1)
|
||||||
|
ret0, _ := ret[0].([]db.PhoneNumber)
|
||||||
|
ret1, _ := ret[1].(error)
|
||||||
|
return ret0, ret1
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetPhoneNumbers indicates an expected call of GetPhoneNumbers.
|
||||||
|
func (mr *MockStoreMockRecorder) GetPhoneNumbers(arg0, arg1 any) *gomock.Call {
|
||||||
|
mr.mock.ctrl.T.Helper()
|
||||||
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetPhoneNumbers", reflect.TypeOf((*MockStore)(nil).GetPhoneNumbers), arg0, arg1)
|
||||||
|
}
|
||||||
|
|
||||||
// GetProvider mocks base method.
|
// GetProvider mocks base method.
|
||||||
func (m *MockStore) GetProvider(arg0 context.Context, arg1 uint64) (db.Provider, error) {
|
func (m *MockStore) GetProvider(arg0 context.Context, arg1 uint64) (db.Provider, error) {
|
||||||
m.ctrl.T.Helper()
|
m.ctrl.T.Helper()
|
||||||
@ -898,6 +1029,51 @@ func (mr *MockStoreMockRecorder) ListSessions(arg0, arg1 any) *gomock.Call {
|
|||||||
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListSessions", reflect.TypeOf((*MockStore)(nil).ListSessions), arg0, arg1)
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListSessions", reflect.TypeOf((*MockStore)(nil).ListSessions), arg0, arg1)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ResendVerification mocks base method.
|
||||||
|
func (m *MockStore) ResendVerification(arg0 context.Context, arg1 db.ResendVerificationParams) (db.Account, error) {
|
||||||
|
m.ctrl.T.Helper()
|
||||||
|
ret := m.ctrl.Call(m, "ResendVerification", arg0, arg1)
|
||||||
|
ret0, _ := ret[0].(db.Account)
|
||||||
|
ret1, _ := ret[1].(error)
|
||||||
|
return ret0, ret1
|
||||||
|
}
|
||||||
|
|
||||||
|
// ResendVerification indicates an expected call of ResendVerification.
|
||||||
|
func (mr *MockStoreMockRecorder) ResendVerification(arg0, arg1 any) *gomock.Call {
|
||||||
|
mr.mock.ctrl.T.Helper()
|
||||||
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ResendVerification", reflect.TypeOf((*MockStore)(nil).ResendVerification), arg0, arg1)
|
||||||
|
}
|
||||||
|
|
||||||
|
// ResendVerificationTx mocks base method.
|
||||||
|
func (m *MockStore) ResendVerificationTx(arg0 context.Context, arg1 db.ResendVerificationTxParams) (db.Account, error) {
|
||||||
|
m.ctrl.T.Helper()
|
||||||
|
ret := m.ctrl.Call(m, "ResendVerificationTx", arg0, arg1)
|
||||||
|
ret0, _ := ret[0].(db.Account)
|
||||||
|
ret1, _ := ret[1].(error)
|
||||||
|
return ret0, ret1
|
||||||
|
}
|
||||||
|
|
||||||
|
// ResendVerificationTx indicates an expected call of ResendVerificationTx.
|
||||||
|
func (mr *MockStoreMockRecorder) ResendVerificationTx(arg0, arg1 any) *gomock.Call {
|
||||||
|
mr.mock.ctrl.T.Helper()
|
||||||
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ResendVerificationTx", reflect.TypeOf((*MockStore)(nil).ResendVerificationTx), arg0, arg1)
|
||||||
|
}
|
||||||
|
|
||||||
|
// UpdateAccount mocks base method.
|
||||||
|
func (m *MockStore) UpdateAccount(arg0 context.Context, arg1 db.UpdateAccountParams) (db.Account, error) {
|
||||||
|
m.ctrl.T.Helper()
|
||||||
|
ret := m.ctrl.Call(m, "UpdateAccount", arg0, arg1)
|
||||||
|
ret0, _ := ret[0].(db.Account)
|
||||||
|
ret1, _ := ret[1].(error)
|
||||||
|
return ret0, ret1
|
||||||
|
}
|
||||||
|
|
||||||
|
// UpdateAccount indicates an expected call of UpdateAccount.
|
||||||
|
func (mr *MockStoreMockRecorder) UpdateAccount(arg0, arg1 any) *gomock.Call {
|
||||||
|
mr.mock.ctrl.T.Helper()
|
||||||
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateAccount", reflect.TypeOf((*MockStore)(nil).UpdateAccount), arg0, arg1)
|
||||||
|
}
|
||||||
|
|
||||||
// UpdateAccountInfo mocks base method.
|
// UpdateAccountInfo mocks base method.
|
||||||
func (m *MockStore) UpdateAccountInfo(arg0 context.Context, arg1 db.UpdateAccountInfoParams) (db.AccountInfo, error) {
|
func (m *MockStore) UpdateAccountInfo(arg0 context.Context, arg1 db.UpdateAccountInfoParams) (db.AccountInfo, error) {
|
||||||
m.ctrl.T.Helper()
|
m.ctrl.T.Helper()
|
||||||
@ -958,6 +1134,21 @@ func (mr *MockStoreMockRecorder) UpdateAccountPrivacyTx(arg0, arg1 any) *gomock.
|
|||||||
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateAccountPrivacyTx", reflect.TypeOf((*MockStore)(nil).UpdateAccountPrivacyTx), arg0, arg1)
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateAccountPrivacyTx", reflect.TypeOf((*MockStore)(nil).UpdateAccountPrivacyTx), arg0, arg1)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// UpdateAccountTx mocks base method.
|
||||||
|
func (m *MockStore) UpdateAccountTx(arg0 context.Context, arg1 db.UpdateAccountTxParams) (db.Account, error) {
|
||||||
|
m.ctrl.T.Helper()
|
||||||
|
ret := m.ctrl.Call(m, "UpdateAccountTx", arg0, arg1)
|
||||||
|
ret0, _ := ret[0].(db.Account)
|
||||||
|
ret1, _ := ret[1].(error)
|
||||||
|
return ret0, ret1
|
||||||
|
}
|
||||||
|
|
||||||
|
// UpdateAccountTx indicates an expected call of UpdateAccountTx.
|
||||||
|
func (mr *MockStoreMockRecorder) UpdateAccountTx(arg0, arg1 any) *gomock.Call {
|
||||||
|
mr.mock.ctrl.T.Helper()
|
||||||
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateAccountTx", reflect.TypeOf((*MockStore)(nil).UpdateAccountTx), arg0, arg1)
|
||||||
|
}
|
||||||
|
|
||||||
// UpdateDocument mocks base method.
|
// UpdateDocument mocks base method.
|
||||||
func (m *MockStore) UpdateDocument(arg0 context.Context, arg1 db.UpdateDocumentParams) (db.Document, error) {
|
func (m *MockStore) UpdateDocument(arg0 context.Context, arg1 db.UpdateDocumentParams) (db.Document, error) {
|
||||||
m.ctrl.T.Helper()
|
m.ctrl.T.Helper()
|
||||||
|
@ -55,3 +55,46 @@ WHERE "id" = sqlc.arg(id);
|
|||||||
-- name: DeleteAccount :exec
|
-- name: DeleteAccount :exec
|
||||||
DELETE FROM accounts
|
DELETE FROM accounts
|
||||||
WHERE "id" = sqlc.arg(id);
|
WHERE "id" = sqlc.arg(id);
|
||||||
|
|
||||||
|
|
||||||
|
-- name: GetAccountLevel :one
|
||||||
|
SELECT
|
||||||
|
accounts.id,
|
||||||
|
CASE
|
||||||
|
WHEN payments.account_id IS NOT NULL THEN 7
|
||||||
|
WHEN persons.relationship IS NOT NULL AND persons.relationship <> '' AND persons.relationship = 'sole_heir' THEN
|
||||||
|
CASE
|
||||||
|
WHEN (
|
||||||
|
SELECT COUNT(*)
|
||||||
|
FROM documents
|
||||||
|
WHERE person_id = persons.id AND name IN ('death_certificate','id_card','notary_inheritance_certificate')
|
||||||
|
) = 3 THEN 6
|
||||||
|
END
|
||||||
|
WHEN persons.relationship IS NOT NULL AND persons.relationship <> '' AND persons.relationship <> 'sole_heir' THEN
|
||||||
|
CASE
|
||||||
|
WHEN (
|
||||||
|
SELECT COUNT(*)
|
||||||
|
FROM documents
|
||||||
|
WHERE person_id = persons.id AND name IN ('death_certificate','id_card')
|
||||||
|
) = 2 THEN 6
|
||||||
|
END
|
||||||
|
WHEN (
|
||||||
|
SELECT COUNT(*)
|
||||||
|
FROM email_addresses
|
||||||
|
WHERE person_id = persons.id
|
||||||
|
) > 0 THEN 5
|
||||||
|
WHEN persons.relationship IS NOT NULL AND persons.relationship <> '' THEN 4
|
||||||
|
WHEN persons.account_id IS NOT NULL THEN 3
|
||||||
|
WHEN account_info.account_id IS NOT NULL THEN 2
|
||||||
|
WHEN accounts.verified = true THEN 1
|
||||||
|
ELSE 0
|
||||||
|
END AS account_level
|
||||||
|
FROM
|
||||||
|
accounts
|
||||||
|
LEFT JOIN account_info ON accounts.id = account_info.account_id
|
||||||
|
LEFT JOIN persons ON accounts.id = persons.account_id
|
||||||
|
LEFT JOIN email_addresses ON persons.id = email_addresses.person_id
|
||||||
|
LEFT JOIN phone_numbers ON persons.id = phone_numbers.person_id
|
||||||
|
LEFT JOIN documents ON persons.id = documents.person_id
|
||||||
|
LEFT JOIN payments ON accounts.id = payments.account_id
|
||||||
|
WHERE accounts.id = sqlc.arg(account_id);
|
||||||
|
@ -11,11 +11,12 @@ INSERT INTO persons (
|
|||||||
"city",
|
"city",
|
||||||
"zip",
|
"zip",
|
||||||
"street",
|
"street",
|
||||||
|
"relationship",
|
||||||
"country",
|
"country",
|
||||||
"creator",
|
"creator",
|
||||||
"changer"
|
"changer"
|
||||||
) VALUES (
|
) VALUES (
|
||||||
$1, $2, $3, $4, $5, $6, $7, $8, $9, $10
|
$1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11
|
||||||
) RETURNING *;
|
) RETURNING *;
|
||||||
|
|
||||||
-- name: ListPersons :many
|
-- name: ListPersons :many
|
||||||
@ -33,6 +34,7 @@ SET
|
|||||||
"zip" = COALESCE(sqlc.narg(zip), "zip"),
|
"zip" = COALESCE(sqlc.narg(zip), "zip"),
|
||||||
"street" = COALESCE(sqlc.narg(street), "street"),
|
"street" = COALESCE(sqlc.narg(street), "street"),
|
||||||
"country" = COALESCE(sqlc.narg(country), "country"),
|
"country" = COALESCE(sqlc.narg(country), "country"),
|
||||||
|
"relationship" = COALESCE(sqlc.narg(relationship), "relationship"),
|
||||||
"changer" = $2,
|
"changer" = $2,
|
||||||
"changed" = now()
|
"changed" = now()
|
||||||
WHERE "id" = $1
|
WHERE "id" = $1
|
||||||
@ -45,3 +47,44 @@ WHERE "id" = sqlc.arg(id);
|
|||||||
-- name: GetReturns :many
|
-- name: GetReturns :many
|
||||||
SELECT * FROM returns
|
SELECT * FROM returns
|
||||||
WHERE "person_id" = sqlc.arg(id);
|
WHERE "person_id" = sqlc.arg(id);
|
||||||
|
|
||||||
|
|
||||||
|
-- name: GetPhoneNumbers :many
|
||||||
|
SELECT * FROM phone_numbers
|
||||||
|
WHERE "person_id" = sqlc.arg(person_id);
|
||||||
|
|
||||||
|
-- name: AddPhoneNumber :one
|
||||||
|
INSERT INTO phone_numbers (
|
||||||
|
"person_id",
|
||||||
|
"phone"
|
||||||
|
) VALUES (
|
||||||
|
sqlc.arg(person_id), sqlc.arg(email)
|
||||||
|
) RETURNING *;
|
||||||
|
|
||||||
|
-- name: DeletePhoneNumber :exec
|
||||||
|
DELETE FROM phone_numbers
|
||||||
|
WHERE "id" = sqlc.arg(id);
|
||||||
|
|
||||||
|
-- name: DeleteAllPhoneNumbers :exec
|
||||||
|
DELETE FROM phone_numbers
|
||||||
|
WHERE "person_id" = sqlc.arg(person_id);
|
||||||
|
|
||||||
|
-- name: GetEmailAddresses :many
|
||||||
|
SELECT * FROM email_addresses
|
||||||
|
WHERE "person_id" = sqlc.arg(person_id);
|
||||||
|
|
||||||
|
-- name: AddEmailAddress :one
|
||||||
|
INSERT INTO email_addresses (
|
||||||
|
"person_id",
|
||||||
|
"email"
|
||||||
|
) VALUES (
|
||||||
|
sqlc.arg(person_id), sqlc.arg(email)
|
||||||
|
) RETURNING *;
|
||||||
|
|
||||||
|
-- name: DeleteEmailAddress :exec
|
||||||
|
DELETE FROM email_addresses
|
||||||
|
WHERE "id" = sqlc.arg(id);
|
||||||
|
|
||||||
|
-- name: DeleteAllEmailAddresses :exec
|
||||||
|
DELETE FROM email_addresses
|
||||||
|
WHERE "person_id" = sqlc.arg(person_id);
|
@ -100,6 +100,61 @@ func (q *Queries) GetAccountByEmail(ctx context.Context, email string) (Account,
|
|||||||
return i, err
|
return i, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const getAccountLevel = `-- name: GetAccountLevel :one
|
||||||
|
SELECT
|
||||||
|
accounts.id,
|
||||||
|
CASE
|
||||||
|
WHEN payments.account_id IS NOT NULL THEN 7
|
||||||
|
WHEN persons.relationship IS NOT NULL AND persons.relationship <> '' AND persons.relationship = 'sole_heir' THEN
|
||||||
|
CASE
|
||||||
|
WHEN (
|
||||||
|
SELECT COUNT(*)
|
||||||
|
FROM documents
|
||||||
|
WHERE person_id = persons.id AND name IN ('death_certificate','id_card','notary_inheritance_certificate')
|
||||||
|
) = 3 THEN 6
|
||||||
|
END
|
||||||
|
WHEN persons.relationship IS NOT NULL AND persons.relationship <> '' AND persons.relationship <> 'sole_heir' THEN
|
||||||
|
CASE
|
||||||
|
WHEN (
|
||||||
|
SELECT COUNT(*)
|
||||||
|
FROM documents
|
||||||
|
WHERE person_id = persons.id AND name IN ('death_certificate','id_card')
|
||||||
|
) = 2 THEN 6
|
||||||
|
END
|
||||||
|
WHEN (
|
||||||
|
SELECT COUNT(*)
|
||||||
|
FROM email_addresses
|
||||||
|
WHERE person_id = persons.id
|
||||||
|
) > 0 THEN 5
|
||||||
|
WHEN persons.relationship IS NOT NULL AND persons.relationship <> '' THEN 4
|
||||||
|
WHEN persons.account_id IS NOT NULL THEN 3
|
||||||
|
WHEN account_info.account_id IS NOT NULL THEN 2
|
||||||
|
WHEN accounts.verified = true THEN 1
|
||||||
|
ELSE 0
|
||||||
|
END AS account_level
|
||||||
|
FROM
|
||||||
|
accounts
|
||||||
|
LEFT JOIN account_info ON accounts.id = account_info.account_id
|
||||||
|
LEFT JOIN persons ON accounts.id = persons.account_id
|
||||||
|
LEFT JOIN email_addresses ON persons.id = email_addresses.person_id
|
||||||
|
LEFT JOIN phone_numbers ON persons.id = phone_numbers.person_id
|
||||||
|
LEFT JOIN documents ON persons.id = documents.person_id
|
||||||
|
LEFT JOIN payments ON accounts.id = payments.account_id
|
||||||
|
WHERE accounts.id = $1
|
||||||
|
`
|
||||||
|
|
||||||
|
type GetAccountLevelRow struct {
|
||||||
|
ID uint64 `json:"id"`
|
||||||
|
AccountLevel int32 `json:"account_level"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (q *Queries) GetAccountLevel(ctx context.Context, accountID uint64) (GetAccountLevelRow, error) {
|
||||||
|
row := q.db.QueryRowContext(ctx, getAccountLevel, accountID)
|
||||||
|
var i GetAccountLevelRow
|
||||||
|
err := row.Scan(&i.ID, &i.AccountLevel)
|
||||||
|
return i, err
|
||||||
|
}
|
||||||
|
|
||||||
const listAccounts = `-- name: ListAccounts :many
|
const listAccounts = `-- name: ListAccounts :many
|
||||||
SELECT id, permission_level, passwordhash, email, secret_key, verification_sent, email_verified, email_verified_time FROM accounts
|
SELECT id, permission_level, passwordhash, email, secret_key, verification_sent, email_verified, email_verified_time FROM accounts
|
||||||
ORDER BY "email"
|
ORDER BY "email"
|
||||||
|
@ -57,6 +57,12 @@ type Document struct {
|
|||||||
Changed time.Time `json:"changed"`
|
Changed time.Time `json:"changed"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type EmailAddress struct {
|
||||||
|
ID uint64 `json:"id"`
|
||||||
|
Email string `json:"email"`
|
||||||
|
PersonID uint64 `json:"person_id"`
|
||||||
|
}
|
||||||
|
|
||||||
type Mail struct {
|
type Mail struct {
|
||||||
ID uint64 `json:"id"`
|
ID uint64 `json:"id"`
|
||||||
From string `json:"from"`
|
From string `json:"from"`
|
||||||
@ -89,19 +95,26 @@ type Payment struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type Person struct {
|
type Person struct {
|
||||||
ID uint64 `json:"id"`
|
ID uint64 `json:"id"`
|
||||||
AccountID uint64 `json:"account_id"`
|
AccountID uint64 `json:"account_id"`
|
||||||
Firstname string `json:"firstname"`
|
Firstname string `json:"firstname"`
|
||||||
Lastname string `json:"lastname"`
|
Lastname string `json:"lastname"`
|
||||||
Birthday time.Time `json:"birthday"`
|
Birthday time.Time `json:"birthday"`
|
||||||
City string `json:"city"`
|
City string `json:"city"`
|
||||||
Zip string `json:"zip"`
|
Zip string `json:"zip"`
|
||||||
Street string `json:"street"`
|
Street string `json:"street"`
|
||||||
Country string `json:"country"`
|
Country string `json:"country"`
|
||||||
Creator string `json:"creator"`
|
Relationship sql.NullString `json:"relationship"`
|
||||||
Created time.Time `json:"created"`
|
Creator string `json:"creator"`
|
||||||
Changer string `json:"changer"`
|
Created time.Time `json:"created"`
|
||||||
Changed time.Time `json:"changed"`
|
Changer string `json:"changer"`
|
||||||
|
Changed time.Time `json:"changed"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type PhoneNumber struct {
|
||||||
|
ID uint64 `json:"id"`
|
||||||
|
Phone string `json:"phone"`
|
||||||
|
PersonID uint64 `json:"person_id"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type Provider struct {
|
type Provider struct {
|
||||||
|
@ -11,6 +11,48 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const addEmailAddress = `-- name: AddEmailAddress :one
|
||||||
|
INSERT INTO email_addresses (
|
||||||
|
"person_id",
|
||||||
|
"email"
|
||||||
|
) VALUES (
|
||||||
|
$1, $2
|
||||||
|
) RETURNING id, email, person_id
|
||||||
|
`
|
||||||
|
|
||||||
|
type AddEmailAddressParams struct {
|
||||||
|
PersonID uint64 `json:"person_id"`
|
||||||
|
Email string `json:"email"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (q *Queries) AddEmailAddress(ctx context.Context, arg AddEmailAddressParams) (EmailAddress, error) {
|
||||||
|
row := q.db.QueryRowContext(ctx, addEmailAddress, arg.PersonID, arg.Email)
|
||||||
|
var i EmailAddress
|
||||||
|
err := row.Scan(&i.ID, &i.Email, &i.PersonID)
|
||||||
|
return i, err
|
||||||
|
}
|
||||||
|
|
||||||
|
const addPhoneNumber = `-- name: AddPhoneNumber :one
|
||||||
|
INSERT INTO phone_numbers (
|
||||||
|
"person_id",
|
||||||
|
"phone"
|
||||||
|
) VALUES (
|
||||||
|
$1, $2
|
||||||
|
) RETURNING id, phone, person_id
|
||||||
|
`
|
||||||
|
|
||||||
|
type AddPhoneNumberParams struct {
|
||||||
|
PersonID uint64 `json:"person_id"`
|
||||||
|
Email string `json:"email"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (q *Queries) AddPhoneNumber(ctx context.Context, arg AddPhoneNumberParams) (PhoneNumber, error) {
|
||||||
|
row := q.db.QueryRowContext(ctx, addPhoneNumber, arg.PersonID, arg.Email)
|
||||||
|
var i PhoneNumber
|
||||||
|
err := row.Scan(&i.ID, &i.Phone, &i.PersonID)
|
||||||
|
return i, err
|
||||||
|
}
|
||||||
|
|
||||||
const createPerson = `-- name: CreatePerson :one
|
const createPerson = `-- name: CreatePerson :one
|
||||||
INSERT INTO persons (
|
INSERT INTO persons (
|
||||||
"account_id",
|
"account_id",
|
||||||
@ -20,25 +62,27 @@ INSERT INTO persons (
|
|||||||
"city",
|
"city",
|
||||||
"zip",
|
"zip",
|
||||||
"street",
|
"street",
|
||||||
|
"relationship",
|
||||||
"country",
|
"country",
|
||||||
"creator",
|
"creator",
|
||||||
"changer"
|
"changer"
|
||||||
) VALUES (
|
) VALUES (
|
||||||
$1, $2, $3, $4, $5, $6, $7, $8, $9, $10
|
$1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11
|
||||||
) RETURNING id, account_id, firstname, lastname, birthday, city, zip, street, country, creator, created, changer, changed
|
) RETURNING id, account_id, firstname, lastname, birthday, city, zip, street, country, relationship, creator, created, changer, changed
|
||||||
`
|
`
|
||||||
|
|
||||||
type CreatePersonParams struct {
|
type CreatePersonParams struct {
|
||||||
AccountID uint64 `json:"account_id"`
|
AccountID uint64 `json:"account_id"`
|
||||||
Firstname string `json:"firstname"`
|
Firstname string `json:"firstname"`
|
||||||
Lastname string `json:"lastname"`
|
Lastname string `json:"lastname"`
|
||||||
Birthday time.Time `json:"birthday"`
|
Birthday time.Time `json:"birthday"`
|
||||||
City string `json:"city"`
|
City string `json:"city"`
|
||||||
Zip string `json:"zip"`
|
Zip string `json:"zip"`
|
||||||
Street string `json:"street"`
|
Street string `json:"street"`
|
||||||
Country string `json:"country"`
|
Relationship sql.NullString `json:"relationship"`
|
||||||
Creator string `json:"creator"`
|
Country string `json:"country"`
|
||||||
Changer string `json:"changer"`
|
Creator string `json:"creator"`
|
||||||
|
Changer string `json:"changer"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (q *Queries) CreatePerson(ctx context.Context, arg CreatePersonParams) (Person, error) {
|
func (q *Queries) CreatePerson(ctx context.Context, arg CreatePersonParams) (Person, error) {
|
||||||
@ -50,6 +94,7 @@ func (q *Queries) CreatePerson(ctx context.Context, arg CreatePersonParams) (Per
|
|||||||
arg.City,
|
arg.City,
|
||||||
arg.Zip,
|
arg.Zip,
|
||||||
arg.Street,
|
arg.Street,
|
||||||
|
arg.Relationship,
|
||||||
arg.Country,
|
arg.Country,
|
||||||
arg.Creator,
|
arg.Creator,
|
||||||
arg.Changer,
|
arg.Changer,
|
||||||
@ -65,6 +110,7 @@ func (q *Queries) CreatePerson(ctx context.Context, arg CreatePersonParams) (Per
|
|||||||
&i.Zip,
|
&i.Zip,
|
||||||
&i.Street,
|
&i.Street,
|
||||||
&i.Country,
|
&i.Country,
|
||||||
|
&i.Relationship,
|
||||||
&i.Creator,
|
&i.Creator,
|
||||||
&i.Created,
|
&i.Created,
|
||||||
&i.Changer,
|
&i.Changer,
|
||||||
@ -73,6 +119,36 @@ func (q *Queries) CreatePerson(ctx context.Context, arg CreatePersonParams) (Per
|
|||||||
return i, err
|
return i, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const deleteAllEmailAddresses = `-- name: DeleteAllEmailAddresses :exec
|
||||||
|
DELETE FROM email_addresses
|
||||||
|
WHERE "person_id" = $1
|
||||||
|
`
|
||||||
|
|
||||||
|
func (q *Queries) DeleteAllEmailAddresses(ctx context.Context, personID uint64) error {
|
||||||
|
_, err := q.db.ExecContext(ctx, deleteAllEmailAddresses, personID)
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
const deleteAllPhoneNumbers = `-- name: DeleteAllPhoneNumbers :exec
|
||||||
|
DELETE FROM phone_numbers
|
||||||
|
WHERE "person_id" = $1
|
||||||
|
`
|
||||||
|
|
||||||
|
func (q *Queries) DeleteAllPhoneNumbers(ctx context.Context, personID uint64) error {
|
||||||
|
_, err := q.db.ExecContext(ctx, deleteAllPhoneNumbers, personID)
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
const deleteEmailAddress = `-- name: DeleteEmailAddress :exec
|
||||||
|
DELETE FROM email_addresses
|
||||||
|
WHERE "id" = $1
|
||||||
|
`
|
||||||
|
|
||||||
|
func (q *Queries) DeleteEmailAddress(ctx context.Context, id uint64) error {
|
||||||
|
_, err := q.db.ExecContext(ctx, deleteEmailAddress, id)
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
const deletePerson = `-- name: DeletePerson :exec
|
const deletePerson = `-- name: DeletePerson :exec
|
||||||
DELETE FROM persons
|
DELETE FROM persons
|
||||||
WHERE "id" = $1
|
WHERE "id" = $1
|
||||||
@ -83,8 +159,46 @@ func (q *Queries) DeletePerson(ctx context.Context, id uint64) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const deletePhoneNumber = `-- name: DeletePhoneNumber :exec
|
||||||
|
DELETE FROM phone_numbers
|
||||||
|
WHERE "id" = $1
|
||||||
|
`
|
||||||
|
|
||||||
|
func (q *Queries) DeletePhoneNumber(ctx context.Context, id uint64) error {
|
||||||
|
_, err := q.db.ExecContext(ctx, deletePhoneNumber, id)
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
const getEmailAddresses = `-- name: GetEmailAddresses :many
|
||||||
|
SELECT id, email, person_id FROM email_addresses
|
||||||
|
WHERE "person_id" = $1
|
||||||
|
`
|
||||||
|
|
||||||
|
func (q *Queries) GetEmailAddresses(ctx context.Context, personID uint64) ([]EmailAddress, error) {
|
||||||
|
rows, err := q.db.QueryContext(ctx, getEmailAddresses, personID)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
defer rows.Close()
|
||||||
|
items := []EmailAddress{}
|
||||||
|
for rows.Next() {
|
||||||
|
var i EmailAddress
|
||||||
|
if err := rows.Scan(&i.ID, &i.Email, &i.PersonID); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
items = append(items, i)
|
||||||
|
}
|
||||||
|
if err := rows.Close(); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if err := rows.Err(); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return items, nil
|
||||||
|
}
|
||||||
|
|
||||||
const getPerson = `-- name: GetPerson :one
|
const getPerson = `-- name: GetPerson :one
|
||||||
SELECT id, account_id, firstname, lastname, birthday, city, zip, street, country, creator, created, changer, changed FROM persons
|
SELECT id, account_id, firstname, lastname, birthday, city, zip, street, country, relationship, creator, created, changer, changed FROM persons
|
||||||
WHERE "id" = $1 LIMIT 1
|
WHERE "id" = $1 LIMIT 1
|
||||||
`
|
`
|
||||||
|
|
||||||
@ -101,6 +215,7 @@ func (q *Queries) GetPerson(ctx context.Context, id uint64) (Person, error) {
|
|||||||
&i.Zip,
|
&i.Zip,
|
||||||
&i.Street,
|
&i.Street,
|
||||||
&i.Country,
|
&i.Country,
|
||||||
|
&i.Relationship,
|
||||||
&i.Creator,
|
&i.Creator,
|
||||||
&i.Created,
|
&i.Created,
|
||||||
&i.Changer,
|
&i.Changer,
|
||||||
@ -109,6 +224,34 @@ func (q *Queries) GetPerson(ctx context.Context, id uint64) (Person, error) {
|
|||||||
return i, err
|
return i, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const getPhoneNumbers = `-- name: GetPhoneNumbers :many
|
||||||
|
SELECT id, phone, person_id FROM phone_numbers
|
||||||
|
WHERE "person_id" = $1
|
||||||
|
`
|
||||||
|
|
||||||
|
func (q *Queries) GetPhoneNumbers(ctx context.Context, personID uint64) ([]PhoneNumber, error) {
|
||||||
|
rows, err := q.db.QueryContext(ctx, getPhoneNumbers, personID)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
defer rows.Close()
|
||||||
|
items := []PhoneNumber{}
|
||||||
|
for rows.Next() {
|
||||||
|
var i PhoneNumber
|
||||||
|
if err := rows.Scan(&i.ID, &i.Phone, &i.PersonID); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
items = append(items, i)
|
||||||
|
}
|
||||||
|
if err := rows.Close(); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if err := rows.Err(); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return items, nil
|
||||||
|
}
|
||||||
|
|
||||||
const getReturns = `-- name: GetReturns :many
|
const getReturns = `-- name: GetReturns :many
|
||||||
SELECT id, person_id, provider_id, name, description, category, email, status, creator, created, changer, changed FROM returns
|
SELECT id, person_id, provider_id, name, description, category, email, status, creator, created, changer, changed FROM returns
|
||||||
WHERE "person_id" = $1
|
WHERE "person_id" = $1
|
||||||
@ -151,7 +294,7 @@ func (q *Queries) GetReturns(ctx context.Context, id uint64) ([]Return, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const listPersons = `-- name: ListPersons :many
|
const listPersons = `-- name: ListPersons :many
|
||||||
SELECT id, account_id, firstname, lastname, birthday, city, zip, street, country, creator, created, changer, changed FROM persons
|
SELECT id, account_id, firstname, lastname, birthday, city, zip, street, country, relationship, creator, created, changer, changed FROM persons
|
||||||
WHERE "account_id" = $1
|
WHERE "account_id" = $1
|
||||||
ORDER BY "lastname", "firstname"
|
ORDER BY "lastname", "firstname"
|
||||||
`
|
`
|
||||||
@ -175,6 +318,7 @@ func (q *Queries) ListPersons(ctx context.Context, accountID uint64) ([]Person,
|
|||||||
&i.Zip,
|
&i.Zip,
|
||||||
&i.Street,
|
&i.Street,
|
||||||
&i.Country,
|
&i.Country,
|
||||||
|
&i.Relationship,
|
||||||
&i.Creator,
|
&i.Creator,
|
||||||
&i.Created,
|
&i.Created,
|
||||||
&i.Changer,
|
&i.Changer,
|
||||||
@ -203,22 +347,24 @@ SET
|
|||||||
"zip" = COALESCE($7, "zip"),
|
"zip" = COALESCE($7, "zip"),
|
||||||
"street" = COALESCE($8, "street"),
|
"street" = COALESCE($8, "street"),
|
||||||
"country" = COALESCE($9, "country"),
|
"country" = COALESCE($9, "country"),
|
||||||
|
"relationship" = COALESCE($10, "relationship"),
|
||||||
"changer" = $2,
|
"changer" = $2,
|
||||||
"changed" = now()
|
"changed" = now()
|
||||||
WHERE "id" = $1
|
WHERE "id" = $1
|
||||||
RETURNING id, account_id, firstname, lastname, birthday, city, zip, street, country, creator, created, changer, changed
|
RETURNING id, account_id, firstname, lastname, birthday, city, zip, street, country, relationship, creator, created, changer, changed
|
||||||
`
|
`
|
||||||
|
|
||||||
type UpdatePersonParams struct {
|
type UpdatePersonParams struct {
|
||||||
ID uint64 `json:"id"`
|
ID uint64 `json:"id"`
|
||||||
Changer string `json:"changer"`
|
Changer string `json:"changer"`
|
||||||
Firstname sql.NullString `json:"firstname"`
|
Firstname sql.NullString `json:"firstname"`
|
||||||
Lastname sql.NullString `json:"lastname"`
|
Lastname sql.NullString `json:"lastname"`
|
||||||
Birthday sql.NullTime `json:"birthday"`
|
Birthday sql.NullTime `json:"birthday"`
|
||||||
City sql.NullString `json:"city"`
|
City sql.NullString `json:"city"`
|
||||||
Zip sql.NullString `json:"zip"`
|
Zip sql.NullString `json:"zip"`
|
||||||
Street sql.NullString `json:"street"`
|
Street sql.NullString `json:"street"`
|
||||||
Country sql.NullString `json:"country"`
|
Country sql.NullString `json:"country"`
|
||||||
|
Relationship sql.NullString `json:"relationship"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (q *Queries) UpdatePerson(ctx context.Context, arg UpdatePersonParams) (Person, error) {
|
func (q *Queries) UpdatePerson(ctx context.Context, arg UpdatePersonParams) (Person, error) {
|
||||||
@ -232,6 +378,7 @@ func (q *Queries) UpdatePerson(ctx context.Context, arg UpdatePersonParams) (Per
|
|||||||
arg.Zip,
|
arg.Zip,
|
||||||
arg.Street,
|
arg.Street,
|
||||||
arg.Country,
|
arg.Country,
|
||||||
|
arg.Relationship,
|
||||||
)
|
)
|
||||||
var i Person
|
var i Person
|
||||||
err := row.Scan(
|
err := row.Scan(
|
||||||
@ -244,6 +391,7 @@ func (q *Queries) UpdatePerson(ctx context.Context, arg UpdatePersonParams) (Per
|
|||||||
&i.Zip,
|
&i.Zip,
|
||||||
&i.Street,
|
&i.Street,
|
||||||
&i.Country,
|
&i.Country,
|
||||||
|
&i.Relationship,
|
||||||
&i.Creator,
|
&i.Creator,
|
||||||
&i.Created,
|
&i.Created,
|
||||||
&i.Changer,
|
&i.Changer,
|
||||||
|
@ -12,6 +12,8 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
type Querier interface {
|
type Querier interface {
|
||||||
|
AddEmailAddress(ctx context.Context, arg AddEmailAddressParams) (EmailAddress, error)
|
||||||
|
AddPhoneNumber(ctx context.Context, arg AddPhoneNumberParams) (PhoneNumber, error)
|
||||||
BlockSession(ctx context.Context, id uuid.UUID) error
|
BlockSession(ctx context.Context, id uuid.UUID) error
|
||||||
CloneProviders(ctx context.Context, arg CloneProvidersParams) error
|
CloneProviders(ctx context.Context, arg CloneProvidersParams) error
|
||||||
CreateAccount(ctx context.Context, arg CreateAccountParams) (Account, error)
|
CreateAccount(ctx context.Context, arg CreateAccountParams) (Account, error)
|
||||||
@ -28,8 +30,11 @@ type Querier interface {
|
|||||||
CreateSession(ctx context.Context, arg CreateSessionParams) (Session, error)
|
CreateSession(ctx context.Context, arg CreateSessionParams) (Session, error)
|
||||||
DeleteAccount(ctx context.Context, id uint64) error
|
DeleteAccount(ctx context.Context, id uint64) error
|
||||||
DeleteAccountInfo(ctx context.Context, accountID uint64) error
|
DeleteAccountInfo(ctx context.Context, accountID uint64) error
|
||||||
|
DeleteAllEmailAddresses(ctx context.Context, personID uint64) error
|
||||||
|
DeleteAllPhoneNumbers(ctx context.Context, personID uint64) error
|
||||||
DeleteDocument(ctx context.Context, id uint64) error
|
DeleteDocument(ctx context.Context, id uint64) error
|
||||||
DeleteDocumentsByPersonID(ctx context.Context, personID sql.NullInt64) error
|
DeleteDocumentsByPersonID(ctx context.Context, personID sql.NullInt64) error
|
||||||
|
DeleteEmailAddress(ctx context.Context, id uint64) error
|
||||||
// -- name: UpdateMail :one
|
// -- name: UpdateMail :one
|
||||||
// UPDATE mails
|
// UPDATE mails
|
||||||
// SET
|
// SET
|
||||||
@ -46,6 +51,7 @@ type Querier interface {
|
|||||||
DeleteMail(ctx context.Context, id uint64) error
|
DeleteMail(ctx context.Context, id uint64) error
|
||||||
DeletePayment(ctx context.Context, id uint64) error
|
DeletePayment(ctx context.Context, id uint64) error
|
||||||
DeletePerson(ctx context.Context, id uint64) error
|
DeletePerson(ctx context.Context, id uint64) error
|
||||||
|
DeletePhoneNumber(ctx context.Context, id uint64) error
|
||||||
DeleteProvider(ctx context.Context, id uint64) error
|
DeleteProvider(ctx context.Context, id uint64) error
|
||||||
DeleteReturn(ctx context.Context, id uint64) error
|
DeleteReturn(ctx context.Context, id uint64) error
|
||||||
DeleteReturnsByPersonID(ctx context.Context, personID uint64) error
|
DeleteReturnsByPersonID(ctx context.Context, personID uint64) error
|
||||||
@ -54,12 +60,15 @@ type Querier interface {
|
|||||||
GetAccount(ctx context.Context, id uint64) (Account, error)
|
GetAccount(ctx context.Context, id uint64) (Account, error)
|
||||||
GetAccountByEmail(ctx context.Context, email string) (Account, error)
|
GetAccountByEmail(ctx context.Context, email string) (Account, error)
|
||||||
GetAccountInfo(ctx context.Context, accountID uint64) (AccountInfo, error)
|
GetAccountInfo(ctx context.Context, accountID uint64) (AccountInfo, error)
|
||||||
|
GetAccountLevel(ctx context.Context, accountID uint64) (GetAccountLevelRow, error)
|
||||||
GetDocument(ctx context.Context, id uint64) (Document, error)
|
GetDocument(ctx context.Context, id uint64) (Document, error)
|
||||||
GetDocumentByHash(ctx context.Context, arg GetDocumentByHashParams) ([]uint64, error)
|
GetDocumentByHash(ctx context.Context, arg GetDocumentByHashParams) ([]uint64, error)
|
||||||
GetDocumentByIDWithAccountID(ctx context.Context, arg GetDocumentByIDWithAccountIDParams) (Document, error)
|
GetDocumentByIDWithAccountID(ctx context.Context, arg GetDocumentByIDWithAccountIDParams) (Document, error)
|
||||||
|
GetEmailAddresses(ctx context.Context, personID uint64) ([]EmailAddress, error)
|
||||||
GetMail(ctx context.Context, id uint64) (Mail, error)
|
GetMail(ctx context.Context, id uint64) (Mail, error)
|
||||||
GetPayment(ctx context.Context, id uint64) (Payment, error)
|
GetPayment(ctx context.Context, id uint64) (Payment, error)
|
||||||
GetPerson(ctx context.Context, id uint64) (Person, error)
|
GetPerson(ctx context.Context, id uint64) (Person, error)
|
||||||
|
GetPhoneNumbers(ctx context.Context, personID uint64) ([]PhoneNumber, error)
|
||||||
GetProvider(ctx context.Context, id uint64) (Provider, error)
|
GetProvider(ctx context.Context, id uint64) (Provider, error)
|
||||||
GetReturn(ctx context.Context, id uint64) (Return, error)
|
GetReturn(ctx context.Context, id uint64) (Return, error)
|
||||||
GetReturnIDsByPersonID(ctx context.Context, personID uint64) ([]uint64, error)
|
GetReturnIDsByPersonID(ctx context.Context, personID uint64) ([]uint64, error)
|
||||||
|
@ -2,20 +2,22 @@ package db
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"database/sql"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
type CreatePersonTxParams struct {
|
type CreatePersonTxParams struct {
|
||||||
AccountID uint64 `json:"account_id"`
|
AccountID uint64 `json:"account_id"`
|
||||||
Firstname string `json:"firstname"`
|
Firstname string `json:"firstname"`
|
||||||
Lastname string `json:"lastname"`
|
Lastname string `json:"lastname"`
|
||||||
Birthday time.Time `json:"birthday"`
|
Birthday time.Time `json:"birthday"`
|
||||||
City string `json:"city"`
|
City string `json:"city"`
|
||||||
Zip string `json:"zip"`
|
Zip string `json:"zip"`
|
||||||
Street string `json:"street"`
|
Street string `json:"street"`
|
||||||
Country string `json:"country"`
|
Relationship sql.NullString `json:"relationship"`
|
||||||
Creator string `json:"creator"`
|
Country string `json:"country"`
|
||||||
Changer string `json:"changer"`
|
Creator string `json:"creator"`
|
||||||
|
Changer string `json:"changer"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type CreatePersonTxResult struct {
|
type CreatePersonTxResult struct {
|
||||||
|
@ -7,15 +7,24 @@ import (
|
|||||||
|
|
||||||
func (store *SQLStore) DeletePersonTx(ctx context.Context, id uint64) error {
|
func (store *SQLStore) DeletePersonTx(ctx context.Context, id uint64) error {
|
||||||
err := store.execTx(ctx, func(q *Queries) error {
|
err := store.execTx(ctx, func(q *Queries) error {
|
||||||
|
|
||||||
err := q.DeleteDocumentsByPersonID(ctx, sql.NullInt64{
|
err := q.DeleteDocumentsByPersonID(ctx, sql.NullInt64{
|
||||||
Valid: true,
|
Valid: id > 0,
|
||||||
Int64: int64(id),
|
Int64: int64(id),
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
err = q.DeleteAllEmailAddresses(ctx, id)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
err = q.DeleteAllPhoneNumbers(ctx, id)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
err = q.DeleteReturnsLogsByPersonID(ctx, id)
|
err = q.DeleteReturnsLogsByPersonID(ctx, id)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
|
@ -677,6 +677,84 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"/v1/persons/add_email": {
|
||||||
|
"post": {
|
||||||
|
"summary": "Add Email Address",
|
||||||
|
"operationId": "df_AddEmailAddress",
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "A successful response.",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/pbAddEmailAddressResponse"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"default": {
|
||||||
|
"description": "An unexpected error response.",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/rpcStatus"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"parameters": [
|
||||||
|
{
|
||||||
|
"name": "body",
|
||||||
|
"description": "Add an EmailAddress",
|
||||||
|
"in": "body",
|
||||||
|
"required": true,
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/pbAddEmailAddressRequest"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"df"
|
||||||
|
],
|
||||||
|
"security": [
|
||||||
|
{
|
||||||
|
"BearerAuth": []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"/v1/persons/add_emails": {
|
||||||
|
"post": {
|
||||||
|
"summary": "Add Email Addresses",
|
||||||
|
"operationId": "df_AddEmailAddresses",
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "A successful response.",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/pbAddEmailAddressesResponse"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"default": {
|
||||||
|
"description": "An unexpected error response.",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/rpcStatus"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"parameters": [
|
||||||
|
{
|
||||||
|
"name": "body",
|
||||||
|
"description": "Add an EmailAddress",
|
||||||
|
"in": "body",
|
||||||
|
"required": true,
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/pbAddEmailAddressesRequest"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"df"
|
||||||
|
],
|
||||||
|
"security": [
|
||||||
|
{
|
||||||
|
"BearerAuth": []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
"/v1/persons/create_person": {
|
"/v1/persons/create_person": {
|
||||||
"post": {
|
"post": {
|
||||||
"summary": "Create Person",
|
"summary": "Create Person",
|
||||||
@ -1120,6 +1198,10 @@
|
|||||||
"secretKey": {
|
"secretKey": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"accountLevel": {
|
||||||
|
"type": "integer",
|
||||||
|
"format": "int64"
|
||||||
|
},
|
||||||
"emailVerifiedTime": {
|
"emailVerifiedTime": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"format": "date-time",
|
"format": "date-time",
|
||||||
@ -1223,6 +1305,69 @@
|
|||||||
},
|
},
|
||||||
"title": "AccountInfo"
|
"title": "AccountInfo"
|
||||||
},
|
},
|
||||||
|
"pbAddEmailAddressRequest": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"personId": {
|
||||||
|
"type": "string",
|
||||||
|
"format": "uint64"
|
||||||
|
},
|
||||||
|
"email": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"description": "Add an EmailAddress",
|
||||||
|
"title": "Add EmailAddress",
|
||||||
|
"required": [
|
||||||
|
"personId",
|
||||||
|
"email"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"pbAddEmailAddressResponse": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"email": {
|
||||||
|
"$ref": "#/definitions/pbEmailAddress"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"description": "Returns the added EmailAddress",
|
||||||
|
"title": "Added EmailAddress"
|
||||||
|
},
|
||||||
|
"pbAddEmailAddressesRequest": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"personId": {
|
||||||
|
"type": "string",
|
||||||
|
"format": "uint64"
|
||||||
|
},
|
||||||
|
"email": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"description": "Add an EmailAddress",
|
||||||
|
"title": "Add EmailAddress",
|
||||||
|
"required": [
|
||||||
|
"personId",
|
||||||
|
"email"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"pbAddEmailAddressesResponse": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"emails": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"type": "object",
|
||||||
|
"$ref": "#/definitions/pbEmailAddress"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"description": "Returns the added EmailAddresses",
|
||||||
|
"title": "Added EmailAddresses"
|
||||||
|
},
|
||||||
"pbBlockSessionRequest": {
|
"pbBlockSessionRequest": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"example": {
|
"example": {
|
||||||
@ -1455,6 +1600,9 @@
|
|||||||
"country": {
|
"country": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"relationship": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
"birthday": {
|
"birthday": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"format": "date-time",
|
"format": "date-time",
|
||||||
@ -1471,6 +1619,7 @@
|
|||||||
"city",
|
"city",
|
||||||
"zip",
|
"zip",
|
||||||
"country",
|
"country",
|
||||||
|
"relationship",
|
||||||
"birthday"
|
"birthday"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -1592,6 +1741,23 @@
|
|||||||
},
|
},
|
||||||
"title": "Document"
|
"title": "Document"
|
||||||
},
|
},
|
||||||
|
"pbEmailAddress": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"id": {
|
||||||
|
"type": "string",
|
||||||
|
"format": "uint64"
|
||||||
|
},
|
||||||
|
"personId": {
|
||||||
|
"type": "string",
|
||||||
|
"format": "uint64"
|
||||||
|
},
|
||||||
|
"email": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"title": "EmailAddress"
|
||||||
|
},
|
||||||
"pbGetAccountInfoResponse": {
|
"pbGetAccountInfoResponse": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
@ -1906,6 +2072,9 @@
|
|||||||
"type": "string",
|
"type": "string",
|
||||||
"format": "date-time",
|
"format": "date-time",
|
||||||
"example": "2023-10-05T00:00:00Z"
|
"example": "2023-10-05T00:00:00Z"
|
||||||
|
},
|
||||||
|
"relationship": {
|
||||||
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"title": "Person"
|
"title": "Person"
|
||||||
@ -2270,6 +2439,9 @@
|
|||||||
"country": {
|
"country": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"relationship": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
"birthday": {
|
"birthday": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"format": "date-time",
|
"format": "date-time",
|
||||||
|
@ -37,6 +37,14 @@ func convertAccountInfo(account_info db.AccountInfo) *pb.AccountInfo {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func convertEmail(email db.EmailAddress) *pb.EmailAddress {
|
||||||
|
return &pb.EmailAddress{
|
||||||
|
Id: email.ID,
|
||||||
|
PersonId: email.PersonID,
|
||||||
|
Email: email.Email,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func convertPerson(person db.Person) *pb.Person {
|
func convertPerson(person db.Person) *pb.Person {
|
||||||
return &pb.Person{
|
return &pb.Person{
|
||||||
Id: person.ID,
|
Id: person.ID,
|
||||||
|
52
bff/gapi/rpc_add_email.go
Normal file
52
bff/gapi/rpc_add_email.go
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
package gapi
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"database/sql"
|
||||||
|
"errors"
|
||||||
|
"log/slog"
|
||||||
|
|
||||||
|
db "github.com/itsscb/df/bff/db/sqlc"
|
||||||
|
"github.com/itsscb/df/bff/pb"
|
||||||
|
"google.golang.org/grpc/codes"
|
||||||
|
"google.golang.org/grpc/status"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (server *Server) AddEmailAddress(ctx context.Context, req *pb.AddEmailAddressRequest) (*pb.AddEmailAddressResponse, error) {
|
||||||
|
authPayload, err := server.authorizeUser(ctx)
|
||||||
|
if err != nil {
|
||||||
|
return nil, unauthenticatedError(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
person, err := server.store.GetPerson(ctx, req.GetPersonId())
|
||||||
|
if err != nil {
|
||||||
|
if errors.Is(err, sql.ErrNoRows) {
|
||||||
|
return nil, status.Errorf(codes.NotFound, "person not found")
|
||||||
|
}
|
||||||
|
slog.Error("add_email (get_person)", slog.Int64("invoked_by", int64(authPayload.AccountID)), slog.Int64("person_id", int64(req.GetPersonId())), slog.String("error", err.Error()))
|
||||||
|
return nil, status.Error(codes.Internal, "failed to get person")
|
||||||
|
}
|
||||||
|
|
||||||
|
if person.AccountID != authPayload.AccountID {
|
||||||
|
if !server.isAdmin(ctx, authPayload) {
|
||||||
|
return nil, status.Error(codes.NotFound, "person not found")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
arg := db.AddEmailAddressParams{
|
||||||
|
PersonID: req.GetPersonId(),
|
||||||
|
Email: req.GetEmail(),
|
||||||
|
}
|
||||||
|
|
||||||
|
email, err := server.store.AddEmailAddress(ctx, arg)
|
||||||
|
if err != nil {
|
||||||
|
slog.Error("add_email (write)", slog.Int64("invoked_by", int64(authPayload.AccountID)), slog.Int64("person_id", int64(req.GetPersonId())), slog.String("error", err.Error()))
|
||||||
|
return nil, status.Error(codes.Internal, "failed to insert email")
|
||||||
|
}
|
||||||
|
|
||||||
|
response := &pb.AddEmailAddressResponse{
|
||||||
|
Email: convertEmail(email),
|
||||||
|
}
|
||||||
|
|
||||||
|
return response, err
|
||||||
|
}
|
@ -49,9 +49,13 @@ func (server *Server) CreatePerson(ctx context.Context, req *pb.CreatePersonRequ
|
|||||||
City: req.GetCity(),
|
City: req.GetCity(),
|
||||||
Street: req.GetStreet(),
|
Street: req.GetStreet(),
|
||||||
Country: req.GetCountry(),
|
Country: req.GetCountry(),
|
||||||
Zip: req.GetZip(),
|
Relationship: sql.NullString{
|
||||||
Creator: account.Email,
|
Valid: req.GetRelationship() != "",
|
||||||
Changer: account.Email,
|
String: req.GetRelationship(),
|
||||||
|
},
|
||||||
|
Zip: req.GetZip(),
|
||||||
|
Creator: account.Email,
|
||||||
|
Changer: account.Email,
|
||||||
}
|
}
|
||||||
|
|
||||||
person, err := server.store.CreatePersonTx(ctx, arg)
|
person, err := server.store.CreatePersonTx(ctx, arg)
|
||||||
@ -96,5 +100,9 @@ func validateCreatePersonRequest(req *pb.CreatePersonRequest) (violations []*err
|
|||||||
violations = append(violations, fieldViolation("zip", errors.New("must be at least 4 characters long")))
|
violations = append(violations, fieldViolation("zip", errors.New("must be at least 4 characters long")))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if req.GetRelationship() != "sole_heir" || req.GetRelationship() != "widow" || req.GetRelationship() != "child" {
|
||||||
|
violations = append(violations, fieldViolation("relationship", errors.New("allowed values are: 'sole_heir', 'widow', 'child'")))
|
||||||
|
}
|
||||||
|
|
||||||
return violations
|
return violations
|
||||||
}
|
}
|
||||||
|
31
bff/gapi/rpc_delete_email.go
Normal file
31
bff/gapi/rpc_delete_email.go
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
package gapi
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"log/slog"
|
||||||
|
|
||||||
|
"github.com/itsscb/df/bff/pb"
|
||||||
|
"google.golang.org/grpc/codes"
|
||||||
|
"google.golang.org/grpc/status"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (server *Server) DeleteEmailAddress(ctx context.Context, req *pb.DeleteEmailAddressRequest) (*pb.DeleteEmailAddressResponse, error) {
|
||||||
|
authPayload, err := server.authorizeUser(ctx)
|
||||||
|
if err != nil {
|
||||||
|
return nil, unauthenticatedError(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO: Check if Person belongs to Account
|
||||||
|
|
||||||
|
err = server.store.DeleteEmailAddress(ctx, req.GetId())
|
||||||
|
if err != nil {
|
||||||
|
slog.Error("remove_email (write)", slog.Int64("invoked_by", int64(authPayload.AccountID)), slog.Int64("email_id", int64(req.GetId())), slog.String("error", err.Error()))
|
||||||
|
return nil, status.Error(codes.Internal, "failed to insert email")
|
||||||
|
}
|
||||||
|
|
||||||
|
response := &pb.DeleteEmailAddressResponse{
|
||||||
|
Id: req.GetId(),
|
||||||
|
}
|
||||||
|
|
||||||
|
return response, err
|
||||||
|
}
|
@ -38,10 +38,18 @@ func (server *Server) GetAccount(ctx context.Context, req *pb.GetAccountRequest)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
accountLevel, err := server.store.GetAccountLevel(ctx, account.ID)
|
||||||
|
if err != nil {
|
||||||
|
slog.Error("get_account_level (db)", slog.Int64("invoked_by", int64(authPayload.AccountID)), slog.Int64("account_id", int64(req.GetId())), slog.String("error", err.Error()))
|
||||||
|
}
|
||||||
|
|
||||||
rsp := &pb.GetAccountResponse{
|
rsp := &pb.GetAccountResponse{
|
||||||
Account: convertAccount(account),
|
Account: convertAccount(account),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
lvl := uint32(accountLevel.AccountLevel)
|
||||||
|
rsp.Account.AccountLevel = &lvl
|
||||||
|
|
||||||
return rsp, nil
|
return rsp, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -105,5 +105,11 @@ func validateUpdatePersonRequest(req *pb.UpdatePersonRequest) (violations []*err
|
|||||||
violations = append(violations, fieldViolation("id", errors.New("must be greater than 0")))
|
violations = append(violations, fieldViolation("id", errors.New("must be greater than 0")))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if req.GetRelationship() != "" {
|
||||||
|
if req.GetRelationship() != "sole_heir" || req.GetRelationship() != "widow" || req.GetRelationship() != "child" {
|
||||||
|
violations = append(violations, fieldViolation("relationship", errors.New("allowed values are: 'sole_heir', 'widow', 'child'")))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return violations
|
return violations
|
||||||
}
|
}
|
||||||
|
@ -78,6 +78,11 @@ func runDBMigration(migrationURL string, dbSource string, retries int) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: Remove in Production!
|
||||||
|
if err = migration.Down(); err != nil && err != migrate.ErrNoChange {
|
||||||
|
log.Fatal("failed to run migrate down")
|
||||||
|
}
|
||||||
|
|
||||||
if err = migration.Up(); err != nil && err != migrate.ErrNoChange {
|
if err = migration.Up(); err != nil && err != migrate.ErrNoChange {
|
||||||
log.Fatal("failed to run migrate up")
|
log.Fatal("failed to run migrate up")
|
||||||
}
|
}
|
||||||
|
@ -30,6 +30,7 @@ type Account struct {
|
|||||||
Id uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
Id uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
||||||
Email string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
|
Email string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
|
||||||
SecretKey *string `protobuf:"bytes,3,opt,name=secret_key,json=secretKey,proto3,oneof" json:"secret_key,omitempty"`
|
SecretKey *string `protobuf:"bytes,3,opt,name=secret_key,json=secretKey,proto3,oneof" json:"secret_key,omitempty"`
|
||||||
|
AccountLevel *uint32 `protobuf:"varint,4,opt,name=account_level,json=accountLevel,proto3,oneof" json:"account_level,omitempty"`
|
||||||
EmailVerifiedTime *timestamppb.Timestamp `protobuf:"bytes,9,opt,name=email_verified_time,json=emailVerifiedTime,proto3" json:"email_verified_time,omitempty"`
|
EmailVerifiedTime *timestamppb.Timestamp `protobuf:"bytes,9,opt,name=email_verified_time,json=emailVerifiedTime,proto3" json:"email_verified_time,omitempty"`
|
||||||
EmailVerified bool `protobuf:"varint,10,opt,name=email_verified,json=emailVerified,proto3" json:"email_verified,omitempty"`
|
EmailVerified bool `protobuf:"varint,10,opt,name=email_verified,json=emailVerified,proto3" json:"email_verified,omitempty"`
|
||||||
PrivacyAcceptedDate *timestamppb.Timestamp `protobuf:"bytes,12,opt,name=privacy_accepted_date,json=privacyAcceptedDate,proto3" json:"privacy_accepted_date,omitempty"`
|
PrivacyAcceptedDate *timestamppb.Timestamp `protobuf:"bytes,12,opt,name=privacy_accepted_date,json=privacyAcceptedDate,proto3" json:"privacy_accepted_date,omitempty"`
|
||||||
@ -89,6 +90,13 @@ func (x *Account) GetSecretKey() string {
|
|||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (x *Account) GetAccountLevel() uint32 {
|
||||||
|
if x != nil && x.AccountLevel != nil {
|
||||||
|
return *x.AccountLevel
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
func (x *Account) GetEmailVerifiedTime() *timestamppb.Timestamp {
|
func (x *Account) GetEmailVerifiedTime() *timestamppb.Timestamp {
|
||||||
if x != nil {
|
if x != nil {
|
||||||
return x.EmailVerifiedTime
|
return x.EmailVerifiedTime
|
||||||
@ -126,64 +134,68 @@ var file_account_proto_rawDesc = []byte{
|
|||||||
0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2d, 0x67, 0x65, 0x6e,
|
0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2d, 0x67, 0x65, 0x6e,
|
||||||
0x2d, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2f, 0x6f, 0x70, 0x74, 0x69, 0x6f,
|
0x2d, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2f, 0x6f, 0x70, 0x74, 0x69, 0x6f,
|
||||||
0x6e, 0x73, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70,
|
0x6e, 0x73, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70,
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x22, 0xef, 0x06, 0x0a, 0x07, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
|
0x72, 0x6f, 0x74, 0x6f, 0x22, 0xab, 0x07, 0x0a, 0x07, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
|
||||||
0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x02, 0x69, 0x64,
|
0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x02, 0x69, 0x64,
|
||||||
0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
|
0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
|
||||||
0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x22, 0x0a, 0x0a, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74,
|
0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x22, 0x0a, 0x0a, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74,
|
||||||
0x5f, 0x6b, 0x65, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x09, 0x73, 0x65,
|
0x5f, 0x6b, 0x65, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x09, 0x73, 0x65,
|
||||||
0x63, 0x72, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x88, 0x01, 0x01, 0x12, 0x67, 0x0a, 0x13, 0x65, 0x6d,
|
0x63, 0x72, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x88, 0x01, 0x01, 0x12, 0x28, 0x0a, 0x0d, 0x61, 0x63,
|
||||||
0x61, 0x69, 0x6c, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x5f, 0x74, 0x69, 0x6d,
|
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28,
|
||||||
0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
|
0x0d, 0x48, 0x01, 0x52, 0x0c, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x65, 0x76, 0x65,
|
||||||
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74,
|
0x6c, 0x88, 0x01, 0x01, 0x12, 0x67, 0x0a, 0x13, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x5f, 0x76, 0x65,
|
||||||
0x61, 0x6d, 0x70, 0x42, 0x1b, 0x92, 0x41, 0x18, 0x4a, 0x16, 0x22, 0x32, 0x30, 0x32, 0x33, 0x2d,
|
0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28,
|
||||||
0x31, 0x30, 0x2d, 0x30, 0x35, 0x54, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x5a, 0x22,
|
0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
||||||
0x52, 0x11, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x54,
|
0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x42, 0x1b, 0x92,
|
||||||
0x69, 0x6d, 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x5f, 0x76, 0x65, 0x72,
|
0x41, 0x18, 0x4a, 0x16, 0x22, 0x32, 0x30, 0x32, 0x33, 0x2d, 0x31, 0x30, 0x2d, 0x30, 0x35, 0x54,
|
||||||
0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, 0x65, 0x6d, 0x61,
|
0x30, 0x30, 0x3a, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x5a, 0x22, 0x52, 0x11, 0x65, 0x6d, 0x61, 0x69,
|
||||||
0x69, 0x6c, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x6b, 0x0a, 0x15, 0x70, 0x72,
|
0x6c, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x25, 0x0a,
|
||||||
0x69, 0x76, 0x61, 0x63, 0x79, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x65, 0x64, 0x5f, 0x64,
|
0x0e, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18,
|
||||||
0x61, 0x74, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
|
0x0a, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x56, 0x65, 0x72, 0x69,
|
||||||
0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65,
|
0x66, 0x69, 0x65, 0x64, 0x12, 0x6b, 0x0a, 0x15, 0x70, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x5f,
|
||||||
0x73, 0x74, 0x61, 0x6d, 0x70, 0x42, 0x1b, 0x92, 0x41, 0x18, 0x4a, 0x16, 0x22, 0x32, 0x30, 0x32,
|
0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x65, 0x64, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x0c, 0x20,
|
||||||
0x33, 0x2d, 0x31, 0x30, 0x2d, 0x30, 0x35, 0x54, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x3a, 0x30, 0x30,
|
0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
|
||||||
0x5a, 0x22, 0x52, 0x13, 0x70, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x41, 0x63, 0x63, 0x65, 0x70,
|
0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x42,
|
||||||
0x74, 0x65, 0x64, 0x44, 0x61, 0x74, 0x65, 0x12, 0x4e, 0x0a, 0x10, 0x70, 0x65, 0x72, 0x6d, 0x69,
|
0x1b, 0x92, 0x41, 0x18, 0x4a, 0x16, 0x22, 0x32, 0x30, 0x32, 0x33, 0x2d, 0x31, 0x30, 0x2d, 0x30,
|
||||||
0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x0d, 0x20, 0x01, 0x28,
|
0x35, 0x54, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x5a, 0x22, 0x52, 0x13, 0x70, 0x72,
|
||||||
0x05, 0x42, 0x23, 0x92, 0x41, 0x20, 0x32, 0x1e, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x20,
|
0x69, 0x76, 0x61, 0x63, 0x79, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x65, 0x64, 0x44, 0x61, 0x74,
|
||||||
0x69, 0x73, 0x20, 0x30, 0x20, 0x28, 0x6e, 0x6f, 0x6e, 0x2d, 0x70, 0x72, 0x69, 0x76, 0x69, 0x6c,
|
0x65, 0x12, 0x4e, 0x0a, 0x10, 0x70, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f,
|
||||||
0x65, 0x64, 0x67, 0x65, 0x64, 0x29, 0x52, 0x0f, 0x70, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69,
|
0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x05, 0x42, 0x23, 0x92, 0x41, 0x20,
|
||||||
0x6f, 0x6e, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x3a, 0xbd, 0x03, 0x92, 0x41, 0xb9, 0x03, 0x0a, 0x09,
|
0x32, 0x1e, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x20, 0x69, 0x73, 0x20, 0x30, 0x20, 0x28,
|
||||||
0x2a, 0x07, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x32, 0xab, 0x03, 0x7b, 0x22, 0x69, 0x64,
|
0x6e, 0x6f, 0x6e, 0x2d, 0x70, 0x72, 0x69, 0x76, 0x69, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x64, 0x29,
|
||||||
0x22, 0x3a, 0x20, 0x22, 0x31, 0x22, 0x2c, 0x22, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x22, 0x3a, 0x20,
|
0x52, 0x0f, 0x70, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x4c, 0x65, 0x76, 0x65,
|
||||||
0x22, 0x6a, 0x6f, 0x68, 0x6e, 0x2e, 0x64, 0x6f, 0x65, 0x40, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c,
|
0x6c, 0x3a, 0xbd, 0x03, 0x92, 0x41, 0xb9, 0x03, 0x0a, 0x09, 0x2a, 0x07, 0x41, 0x63, 0x63, 0x6f,
|
||||||
0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x22, 0x2c, 0x20, 0x22, 0x66, 0x69, 0x72, 0x73, 0x74, 0x6e, 0x61,
|
0x75, 0x6e, 0x74, 0x32, 0xab, 0x03, 0x7b, 0x22, 0x69, 0x64, 0x22, 0x3a, 0x20, 0x22, 0x31, 0x22,
|
||||||
0x6d, 0x65, 0x22, 0x3a, 0x20, 0x22, 0x4a, 0x6f, 0x68, 0x6e, 0x22, 0x2c, 0x20, 0x22, 0x6c, 0x61,
|
0x2c, 0x22, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x22, 0x3a, 0x20, 0x22, 0x6a, 0x6f, 0x68, 0x6e, 0x2e,
|
||||||
0x73, 0x74, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x3a, 0x20, 0x22, 0x44, 0x6f, 0x65, 0x22, 0x2c, 0x20,
|
0x64, 0x6f, 0x65, 0x40, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x22,
|
||||||
0x22, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x22, 0x3a, 0x20, 0x22, 0x22, 0x2c, 0x20, 0x22, 0x73, 0x74,
|
0x2c, 0x20, 0x22, 0x66, 0x69, 0x72, 0x73, 0x74, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x3a, 0x20, 0x22,
|
||||||
0x72, 0x65, 0x65, 0x74, 0x22, 0x3a, 0x20, 0x22, 0x44, 0x65, 0x61, 0x74, 0x68, 0x20, 0x53, 0x74,
|
0x4a, 0x6f, 0x68, 0x6e, 0x22, 0x2c, 0x20, 0x22, 0x6c, 0x61, 0x73, 0x74, 0x6e, 0x61, 0x6d, 0x65,
|
||||||
0x61, 0x72, 0x20, 0x32, 0x22, 0x2c, 0x20, 0x22, 0x7a, 0x69, 0x70, 0x22, 0x3a, 0x20, 0x22, 0x30,
|
0x22, 0x3a, 0x20, 0x22, 0x44, 0x6f, 0x65, 0x22, 0x2c, 0x20, 0x22, 0x70, 0x68, 0x6f, 0x6e, 0x65,
|
||||||
0x38, 0x31, 0x35, 0x22, 0x2c, 0x20, 0x22, 0x63, 0x69, 0x74, 0x79, 0x22, 0x3a, 0x20, 0x22, 0x4e,
|
0x22, 0x3a, 0x20, 0x22, 0x22, 0x2c, 0x20, 0x22, 0x73, 0x74, 0x72, 0x65, 0x65, 0x74, 0x22, 0x3a,
|
||||||
0x65, 0x77, 0x20, 0x59, 0x6f, 0x72, 0x6b, 0x22, 0x2c, 0x20, 0x22, 0x63, 0x6f, 0x75, 0x6e, 0x74,
|
0x20, 0x22, 0x44, 0x65, 0x61, 0x74, 0x68, 0x20, 0x53, 0x74, 0x61, 0x72, 0x20, 0x32, 0x22, 0x2c,
|
||||||
0x72, 0x79, 0x22, 0x3a, 0x20, 0x22, 0x55, 0x53, 0x41, 0x22, 0x2c, 0x20, 0x22, 0x62, 0x69, 0x72,
|
0x20, 0x22, 0x7a, 0x69, 0x70, 0x22, 0x3a, 0x20, 0x22, 0x30, 0x38, 0x31, 0x35, 0x22, 0x2c, 0x20,
|
||||||
0x74, 0x68, 0x64, 0x61, 0x79, 0x22, 0x3a, 0x20, 0x22, 0x31, 0x39, 0x39, 0x30, 0x2d, 0x31, 0x30,
|
0x22, 0x63, 0x69, 0x74, 0x79, 0x22, 0x3a, 0x20, 0x22, 0x4e, 0x65, 0x77, 0x20, 0x59, 0x6f, 0x72,
|
||||||
0x2d, 0x30, 0x35, 0x54, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x5a, 0x22, 0x2c, 0x20,
|
0x6b, 0x22, 0x2c, 0x20, 0x22, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x22, 0x3a, 0x20, 0x22,
|
||||||
0x22, 0x70, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x65,
|
0x55, 0x53, 0x41, 0x22, 0x2c, 0x20, 0x22, 0x62, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x79, 0x22,
|
||||||
0x64, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x20, 0x22, 0x70, 0x72, 0x69, 0x76,
|
0x3a, 0x20, 0x22, 0x31, 0x39, 0x39, 0x30, 0x2d, 0x31, 0x30, 0x2d, 0x30, 0x35, 0x54, 0x30, 0x30,
|
||||||
0x61, 0x63, 0x79, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x65, 0x64, 0x5f, 0x64, 0x61, 0x74,
|
0x3a, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x5a, 0x22, 0x2c, 0x20, 0x22, 0x70, 0x72, 0x69, 0x76, 0x61,
|
||||||
0x65, 0x22, 0x3a, 0x20, 0x22, 0x30, 0x30, 0x30, 0x31, 0x2d, 0x30, 0x31, 0x2d, 0x30, 0x31, 0x54,
|
0x63, 0x79, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x65, 0x64, 0x22, 0x3a, 0x20, 0x66, 0x61,
|
||||||
0x30, 0x30, 0x3a, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x5a, 0x22, 0x2c, 0x20, 0x22, 0x63, 0x72, 0x65,
|
0x6c, 0x73, 0x65, 0x2c, 0x20, 0x22, 0x70, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x5f, 0x61, 0x63,
|
||||||
0x61, 0x74, 0x6f, 0x72, 0x22, 0x3a, 0x20, 0x22, 0x6a, 0x6f, 0x68, 0x6e, 0x2e, 0x64, 0x6f, 0x65,
|
0x63, 0x65, 0x70, 0x74, 0x65, 0x64, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x22, 0x3a, 0x20, 0x22, 0x30,
|
||||||
|
0x30, 0x30, 0x31, 0x2d, 0x30, 0x31, 0x2d, 0x30, 0x31, 0x54, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x3a,
|
||||||
|
0x30, 0x30, 0x5a, 0x22, 0x2c, 0x20, 0x22, 0x63, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 0x22, 0x3a,
|
||||||
|
0x20, 0x22, 0x6a, 0x6f, 0x68, 0x6e, 0x2e, 0x64, 0x6f, 0x65, 0x40, 0x65, 0x78, 0x61, 0x6d, 0x70,
|
||||||
|
0x6c, 0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x22, 0x2c, 0x20, 0x22, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,
|
||||||
|
0x64, 0x22, 0x3a, 0x20, 0x22, 0x32, 0x30, 0x32, 0x33, 0x2d, 0x31, 0x30, 0x2d, 0x30, 0x35, 0x54,
|
||||||
|
0x30, 0x32, 0x3a, 0x33, 0x30, 0x3a, 0x35, 0x33, 0x5a, 0x22, 0x2c, 0x20, 0x22, 0x63, 0x68, 0x61,
|
||||||
|
0x6e, 0x67, 0x65, 0x72, 0x22, 0x3a, 0x20, 0x22, 0x6a, 0x6f, 0x68, 0x6e, 0x2e, 0x64, 0x6f, 0x65,
|
||||||
0x40, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x22, 0x2c, 0x20, 0x22,
|
0x40, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x22, 0x2c, 0x20, 0x22,
|
||||||
0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x22, 0x3a, 0x20, 0x22, 0x32, 0x30, 0x32, 0x33, 0x2d,
|
0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x22, 0x3a, 0x20, 0x22, 0x32, 0x30, 0x32, 0x33, 0x2d,
|
||||||
0x31, 0x30, 0x2d, 0x30, 0x35, 0x54, 0x30, 0x32, 0x3a, 0x33, 0x30, 0x3a, 0x35, 0x33, 0x5a, 0x22,
|
0x31, 0x30, 0x2d, 0x30, 0x35, 0x54, 0x30, 0x32, 0x3a, 0x33, 0x30, 0x3a, 0x35, 0x33, 0x5a, 0x22,
|
||||||
0x2c, 0x20, 0x22, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x72, 0x22, 0x3a, 0x20, 0x22, 0x6a, 0x6f,
|
0x7d, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x5f, 0x6b, 0x65, 0x79,
|
||||||
0x68, 0x6e, 0x2e, 0x64, 0x6f, 0x65, 0x40, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x63,
|
0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6c, 0x65, 0x76,
|
||||||
0x6f, 0x6d, 0x22, 0x2c, 0x20, 0x22, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x22, 0x3a, 0x20,
|
0x65, 0x6c, 0x42, 0x19, 0x5a, 0x17, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d,
|
||||||
0x22, 0x32, 0x30, 0x32, 0x33, 0x2d, 0x31, 0x30, 0x2d, 0x30, 0x35, 0x54, 0x30, 0x32, 0x3a, 0x33,
|
0x2f, 0x69, 0x74, 0x73, 0x73, 0x63, 0x62, 0x2f, 0x64, 0x66, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70,
|
||||||
0x30, 0x3a, 0x35, 0x33, 0x5a, 0x22, 0x7d, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x73, 0x65, 0x63, 0x72,
|
0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||||
0x65, 0x74, 0x5f, 0x6b, 0x65, 0x79, 0x42, 0x19, 0x5a, 0x17, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62,
|
|
||||||
0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x69, 0x74, 0x73, 0x73, 0x63, 0x62, 0x2f, 0x64, 0x66, 0x2f, 0x70,
|
|
||||||
0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
167
bff/pb/email_address.pb.go
Normal file
167
bff/pb/email_address.pb.go
Normal file
@ -0,0 +1,167 @@
|
|||||||
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||||
|
// versions:
|
||||||
|
// protoc-gen-go v1.31.0
|
||||||
|
// protoc v4.24.4
|
||||||
|
// source: email_address.proto
|
||||||
|
|
||||||
|
package pb
|
||||||
|
|
||||||
|
import (
|
||||||
|
_ "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2/options"
|
||||||
|
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
||||||
|
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
||||||
|
reflect "reflect"
|
||||||
|
sync "sync"
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
// Verify that this generated code is sufficiently up-to-date.
|
||||||
|
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
||||||
|
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
||||||
|
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
||||||
|
)
|
||||||
|
|
||||||
|
type EmailAddress struct {
|
||||||
|
state protoimpl.MessageState
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
|
Id uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
||||||
|
PersonId uint64 `protobuf:"varint,2,opt,name=person_id,json=personId,proto3" json:"person_id,omitempty"`
|
||||||
|
Email string `protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *EmailAddress) Reset() {
|
||||||
|
*x = EmailAddress{}
|
||||||
|
if protoimpl.UnsafeEnabled {
|
||||||
|
mi := &file_email_address_proto_msgTypes[0]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *EmailAddress) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*EmailAddress) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *EmailAddress) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_email_address_proto_msgTypes[0]
|
||||||
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
return ms
|
||||||
|
}
|
||||||
|
return mi.MessageOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Deprecated: Use EmailAddress.ProtoReflect.Descriptor instead.
|
||||||
|
func (*EmailAddress) Descriptor() ([]byte, []int) {
|
||||||
|
return file_email_address_proto_rawDescGZIP(), []int{0}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *EmailAddress) GetId() uint64 {
|
||||||
|
if x != nil {
|
||||||
|
return x.Id
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *EmailAddress) GetPersonId() uint64 {
|
||||||
|
if x != nil {
|
||||||
|
return x.PersonId
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *EmailAddress) GetEmail() string {
|
||||||
|
if x != nil {
|
||||||
|
return x.Email
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
var File_email_address_proto protoreflect.FileDescriptor
|
||||||
|
|
||||||
|
var file_email_address_proto_rawDesc = []byte{
|
||||||
|
0x0a, 0x13, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x2e,
|
||||||
|
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x02, 0x70, 0x62, 0x1a, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
||||||
|
0x63, 0x2d, 0x67, 0x65, 0x6e, 0x2d, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2f,
|
||||||
|
0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69,
|
||||||
|
0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x66, 0x0a, 0x0c, 0x45, 0x6d, 0x61,
|
||||||
|
0x69, 0x6c, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
|
||||||
|
0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x65, 0x72,
|
||||||
|
0x73, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x70, 0x65,
|
||||||
|
0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18,
|
||||||
|
0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x3a, 0x13, 0x92, 0x41,
|
||||||
|
0x10, 0x0a, 0x0e, 0x2a, 0x0c, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73,
|
||||||
|
0x73, 0x42, 0x19, 0x5a, 0x17, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f,
|
||||||
|
0x69, 0x74, 0x73, 0x73, 0x63, 0x62, 0x2f, 0x64, 0x66, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72,
|
||||||
|
0x6f, 0x74, 0x6f, 0x33,
|
||||||
|
}
|
||||||
|
|
||||||
|
var (
|
||||||
|
file_email_address_proto_rawDescOnce sync.Once
|
||||||
|
file_email_address_proto_rawDescData = file_email_address_proto_rawDesc
|
||||||
|
)
|
||||||
|
|
||||||
|
func file_email_address_proto_rawDescGZIP() []byte {
|
||||||
|
file_email_address_proto_rawDescOnce.Do(func() {
|
||||||
|
file_email_address_proto_rawDescData = protoimpl.X.CompressGZIP(file_email_address_proto_rawDescData)
|
||||||
|
})
|
||||||
|
return file_email_address_proto_rawDescData
|
||||||
|
}
|
||||||
|
|
||||||
|
var file_email_address_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
||||||
|
var file_email_address_proto_goTypes = []interface{}{
|
||||||
|
(*EmailAddress)(nil), // 0: pb.EmailAddress
|
||||||
|
}
|
||||||
|
var file_email_address_proto_depIdxs = []int32{
|
||||||
|
0, // [0:0] is the sub-list for method output_type
|
||||||
|
0, // [0:0] is the sub-list for method input_type
|
||||||
|
0, // [0:0] is the sub-list for extension type_name
|
||||||
|
0, // [0:0] is the sub-list for extension extendee
|
||||||
|
0, // [0:0] is the sub-list for field type_name
|
||||||
|
}
|
||||||
|
|
||||||
|
func init() { file_email_address_proto_init() }
|
||||||
|
func file_email_address_proto_init() {
|
||||||
|
if File_email_address_proto != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if !protoimpl.UnsafeEnabled {
|
||||||
|
file_email_address_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||||||
|
switch v := v.(*EmailAddress); i {
|
||||||
|
case 0:
|
||||||
|
return &v.state
|
||||||
|
case 1:
|
||||||
|
return &v.sizeCache
|
||||||
|
case 2:
|
||||||
|
return &v.unknownFields
|
||||||
|
default:
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
type x struct{}
|
||||||
|
out := protoimpl.TypeBuilder{
|
||||||
|
File: protoimpl.DescBuilder{
|
||||||
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||||
|
RawDescriptor: file_email_address_proto_rawDesc,
|
||||||
|
NumEnums: 0,
|
||||||
|
NumMessages: 1,
|
||||||
|
NumExtensions: 0,
|
||||||
|
NumServices: 0,
|
||||||
|
},
|
||||||
|
GoTypes: file_email_address_proto_goTypes,
|
||||||
|
DependencyIndexes: file_email_address_proto_depIdxs,
|
||||||
|
MessageInfos: file_email_address_proto_msgTypes,
|
||||||
|
}.Build()
|
||||||
|
File_email_address_proto = out.File
|
||||||
|
file_email_address_proto_rawDesc = nil
|
||||||
|
file_email_address_proto_goTypes = nil
|
||||||
|
file_email_address_proto_depIdxs = nil
|
||||||
|
}
|
@ -27,19 +27,20 @@ type Person struct {
|
|||||||
sizeCache protoimpl.SizeCache
|
sizeCache protoimpl.SizeCache
|
||||||
unknownFields protoimpl.UnknownFields
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
Id uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
Id uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
||||||
AccountId uint64 `protobuf:"varint,2,opt,name=account_id,json=accountId,proto3" json:"account_id,omitempty"`
|
AccountId uint64 `protobuf:"varint,2,opt,name=account_id,json=accountId,proto3" json:"account_id,omitempty"`
|
||||||
Firstname string `protobuf:"bytes,3,opt,name=firstname,proto3" json:"firstname,omitempty"`
|
Firstname string `protobuf:"bytes,3,opt,name=firstname,proto3" json:"firstname,omitempty"`
|
||||||
Lastname string `protobuf:"bytes,4,opt,name=lastname,proto3" json:"lastname,omitempty"`
|
Lastname string `protobuf:"bytes,4,opt,name=lastname,proto3" json:"lastname,omitempty"`
|
||||||
Street string `protobuf:"bytes,5,opt,name=street,proto3" json:"street,omitempty"`
|
Street string `protobuf:"bytes,5,opt,name=street,proto3" json:"street,omitempty"`
|
||||||
City string `protobuf:"bytes,6,opt,name=city,proto3" json:"city,omitempty"`
|
City string `protobuf:"bytes,6,opt,name=city,proto3" json:"city,omitempty"`
|
||||||
Zip string `protobuf:"bytes,7,opt,name=zip,proto3" json:"zip,omitempty"`
|
Zip string `protobuf:"bytes,7,opt,name=zip,proto3" json:"zip,omitempty"`
|
||||||
Country string `protobuf:"bytes,8,opt,name=country,proto3" json:"country,omitempty"`
|
Country string `protobuf:"bytes,8,opt,name=country,proto3" json:"country,omitempty"`
|
||||||
Birthday *timestamppb.Timestamp `protobuf:"bytes,9,opt,name=birthday,proto3" json:"birthday,omitempty"`
|
Birthday *timestamppb.Timestamp `protobuf:"bytes,9,opt,name=birthday,proto3" json:"birthday,omitempty"`
|
||||||
Creator string `protobuf:"bytes,10,opt,name=creator,proto3" json:"creator,omitempty"`
|
Creator string `protobuf:"bytes,10,opt,name=creator,proto3" json:"creator,omitempty"`
|
||||||
Created *timestamppb.Timestamp `protobuf:"bytes,11,opt,name=created,proto3" json:"created,omitempty"`
|
Created *timestamppb.Timestamp `protobuf:"bytes,11,opt,name=created,proto3" json:"created,omitempty"`
|
||||||
Changer string `protobuf:"bytes,12,opt,name=changer,proto3" json:"changer,omitempty"`
|
Changer string `protobuf:"bytes,12,opt,name=changer,proto3" json:"changer,omitempty"`
|
||||||
Changed *timestamppb.Timestamp `protobuf:"bytes,13,opt,name=changed,proto3" json:"changed,omitempty"`
|
Changed *timestamppb.Timestamp `protobuf:"bytes,13,opt,name=changed,proto3" json:"changed,omitempty"`
|
||||||
|
Relationship *string `protobuf:"bytes,14,opt,name=relationship,proto3,oneof" json:"relationship,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *Person) Reset() {
|
func (x *Person) Reset() {
|
||||||
@ -165,6 +166,13 @@ func (x *Person) GetChanged() *timestamppb.Timestamp {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (x *Person) GetRelationship() string {
|
||||||
|
if x != nil && x.Relationship != nil {
|
||||||
|
return *x.Relationship
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
var File_person_proto protoreflect.FileDescriptor
|
var File_person_proto protoreflect.FileDescriptor
|
||||||
|
|
||||||
var file_person_proto_rawDesc = []byte{
|
var file_person_proto_rawDesc = []byte{
|
||||||
@ -174,7 +182,7 @@ var file_person_proto_rawDesc = []byte{
|
|||||||
0x6f, 0x74, 0x6f, 0x1a, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2d, 0x67, 0x65, 0x6e, 0x2d,
|
0x6f, 0x74, 0x6f, 0x1a, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2d, 0x67, 0x65, 0x6e, 0x2d,
|
||||||
0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
|
0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
|
||||||
0x73, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72,
|
0x73, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72,
|
||||||
0x6f, 0x74, 0x6f, 0x22, 0xb7, 0x07, 0x0a, 0x06, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x0e,
|
0x6f, 0x74, 0x6f, 0x22, 0xf1, 0x07, 0x0a, 0x06, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x0e,
|
||||||
0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1d,
|
0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1d,
|
||||||
0x0a, 0x0a, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01,
|
0x0a, 0x0a, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01,
|
||||||
0x28, 0x04, 0x52, 0x09, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x1c, 0x0a,
|
0x28, 0x04, 0x52, 0x09, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x1c, 0x0a,
|
||||||
@ -205,37 +213,41 @@ var file_person_proto_rawDesc = []byte{
|
|||||||
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54,
|
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54,
|
||||||
0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x42, 0x1b, 0x92, 0x41, 0x18, 0x4a, 0x16, 0x22,
|
0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x42, 0x1b, 0x92, 0x41, 0x18, 0x4a, 0x16, 0x22,
|
||||||
0x32, 0x30, 0x32, 0x33, 0x2d, 0x31, 0x30, 0x2d, 0x30, 0x35, 0x54, 0x30, 0x30, 0x3a, 0x30, 0x30,
|
0x32, 0x30, 0x32, 0x33, 0x2d, 0x31, 0x30, 0x2d, 0x30, 0x35, 0x54, 0x30, 0x30, 0x3a, 0x30, 0x30,
|
||||||
0x3a, 0x30, 0x30, 0x5a, 0x22, 0x52, 0x07, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x3a, 0xbc,
|
0x3a, 0x30, 0x30, 0x5a, 0x22, 0x52, 0x07, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x12, 0x27,
|
||||||
0x03, 0x92, 0x41, 0xb8, 0x03, 0x0a, 0x08, 0x2a, 0x06, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x32,
|
0x0a, 0x0c, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x18, 0x0e,
|
||||||
0xab, 0x03, 0x7b, 0x22, 0x69, 0x64, 0x22, 0x3a, 0x20, 0x22, 0x31, 0x22, 0x2c, 0x22, 0x65, 0x6d,
|
0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x0c, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
||||||
0x61, 0x69, 0x6c, 0x22, 0x3a, 0x20, 0x22, 0x6a, 0x6f, 0x68, 0x6e, 0x2e, 0x64, 0x6f, 0x65, 0x40,
|
0x73, 0x68, 0x69, 0x70, 0x88, 0x01, 0x01, 0x3a, 0xbc, 0x03, 0x92, 0x41, 0xb8, 0x03, 0x0a, 0x08,
|
||||||
0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x22, 0x2c, 0x20, 0x22, 0x66,
|
0x2a, 0x06, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x32, 0xab, 0x03, 0x7b, 0x22, 0x69, 0x64, 0x22,
|
||||||
0x69, 0x72, 0x73, 0x74, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x3a, 0x20, 0x22, 0x4a, 0x6f, 0x68, 0x6e,
|
0x3a, 0x20, 0x22, 0x31, 0x22, 0x2c, 0x22, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x22, 0x3a, 0x20, 0x22,
|
||||||
0x22, 0x2c, 0x20, 0x22, 0x6c, 0x61, 0x73, 0x74, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x3a, 0x20, 0x22,
|
0x6a, 0x6f, 0x68, 0x6e, 0x2e, 0x64, 0x6f, 0x65, 0x40, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65,
|
||||||
0x44, 0x6f, 0x65, 0x22, 0x2c, 0x20, 0x22, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x22, 0x3a, 0x20, 0x22,
|
0x2e, 0x63, 0x6f, 0x6d, 0x22, 0x2c, 0x20, 0x22, 0x66, 0x69, 0x72, 0x73, 0x74, 0x6e, 0x61, 0x6d,
|
||||||
0x22, 0x2c, 0x20, 0x22, 0x73, 0x74, 0x72, 0x65, 0x65, 0x74, 0x22, 0x3a, 0x20, 0x22, 0x44, 0x65,
|
0x65, 0x22, 0x3a, 0x20, 0x22, 0x4a, 0x6f, 0x68, 0x6e, 0x22, 0x2c, 0x20, 0x22, 0x6c, 0x61, 0x73,
|
||||||
0x61, 0x74, 0x68, 0x20, 0x53, 0x74, 0x61, 0x72, 0x20, 0x32, 0x22, 0x2c, 0x20, 0x22, 0x7a, 0x69,
|
0x74, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x3a, 0x20, 0x22, 0x44, 0x6f, 0x65, 0x22, 0x2c, 0x20, 0x22,
|
||||||
0x70, 0x22, 0x3a, 0x20, 0x22, 0x30, 0x38, 0x31, 0x35, 0x22, 0x2c, 0x20, 0x22, 0x63, 0x69, 0x74,
|
0x70, 0x68, 0x6f, 0x6e, 0x65, 0x22, 0x3a, 0x20, 0x22, 0x22, 0x2c, 0x20, 0x22, 0x73, 0x74, 0x72,
|
||||||
0x79, 0x22, 0x3a, 0x20, 0x22, 0x4e, 0x65, 0x77, 0x20, 0x59, 0x6f, 0x72, 0x6b, 0x22, 0x2c, 0x20,
|
0x65, 0x65, 0x74, 0x22, 0x3a, 0x20, 0x22, 0x44, 0x65, 0x61, 0x74, 0x68, 0x20, 0x53, 0x74, 0x61,
|
||||||
0x22, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x22, 0x3a, 0x20, 0x22, 0x55, 0x53, 0x41, 0x22,
|
0x72, 0x20, 0x32, 0x22, 0x2c, 0x20, 0x22, 0x7a, 0x69, 0x70, 0x22, 0x3a, 0x20, 0x22, 0x30, 0x38,
|
||||||
0x2c, 0x20, 0x22, 0x62, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x79, 0x22, 0x3a, 0x20, 0x22, 0x31,
|
0x31, 0x35, 0x22, 0x2c, 0x20, 0x22, 0x63, 0x69, 0x74, 0x79, 0x22, 0x3a, 0x20, 0x22, 0x4e, 0x65,
|
||||||
0x39, 0x39, 0x30, 0x2d, 0x31, 0x30, 0x2d, 0x30, 0x35, 0x54, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x3a,
|
0x77, 0x20, 0x59, 0x6f, 0x72, 0x6b, 0x22, 0x2c, 0x20, 0x22, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72,
|
||||||
0x30, 0x30, 0x5a, 0x22, 0x2c, 0x20, 0x22, 0x70, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x5f, 0x61,
|
0x79, 0x22, 0x3a, 0x20, 0x22, 0x55, 0x53, 0x41, 0x22, 0x2c, 0x20, 0x22, 0x62, 0x69, 0x72, 0x74,
|
||||||
0x63, 0x63, 0x65, 0x70, 0x74, 0x65, 0x64, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c,
|
0x68, 0x64, 0x61, 0x79, 0x22, 0x3a, 0x20, 0x22, 0x31, 0x39, 0x39, 0x30, 0x2d, 0x31, 0x30, 0x2d,
|
||||||
0x20, 0x22, 0x70, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x70, 0x74,
|
0x30, 0x35, 0x54, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x5a, 0x22, 0x2c, 0x20, 0x22,
|
||||||
0x65, 0x64, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x22, 0x3a, 0x20, 0x22, 0x30, 0x30, 0x30, 0x31, 0x2d,
|
0x70, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x65, 0x64,
|
||||||
0x30, 0x31, 0x2d, 0x30, 0x31, 0x54, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x5a, 0x22,
|
0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x20, 0x22, 0x70, 0x72, 0x69, 0x76, 0x61,
|
||||||
0x2c, 0x20, 0x22, 0x63, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 0x22, 0x3a, 0x20, 0x22, 0x6a, 0x6f,
|
0x63, 0x79, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x65, 0x64, 0x5f, 0x64, 0x61, 0x74, 0x65,
|
||||||
0x68, 0x6e, 0x2e, 0x64, 0x6f, 0x65, 0x40, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x63,
|
0x22, 0x3a, 0x20, 0x22, 0x30, 0x30, 0x30, 0x31, 0x2d, 0x30, 0x31, 0x2d, 0x30, 0x31, 0x54, 0x30,
|
||||||
0x6f, 0x6d, 0x22, 0x2c, 0x20, 0x22, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x22, 0x3a, 0x20,
|
0x30, 0x3a, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x5a, 0x22, 0x2c, 0x20, 0x22, 0x63, 0x72, 0x65, 0x61,
|
||||||
0x22, 0x32, 0x30, 0x32, 0x33, 0x2d, 0x31, 0x30, 0x2d, 0x30, 0x35, 0x54, 0x30, 0x32, 0x3a, 0x33,
|
0x74, 0x6f, 0x72, 0x22, 0x3a, 0x20, 0x22, 0x6a, 0x6f, 0x68, 0x6e, 0x2e, 0x64, 0x6f, 0x65, 0x40,
|
||||||
0x30, 0x3a, 0x35, 0x33, 0x5a, 0x22, 0x2c, 0x20, 0x22, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x72,
|
0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x22, 0x2c, 0x20, 0x22, 0x63,
|
||||||
0x22, 0x3a, 0x20, 0x22, 0x6a, 0x6f, 0x68, 0x6e, 0x2e, 0x64, 0x6f, 0x65, 0x40, 0x65, 0x78, 0x61,
|
0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x22, 0x3a, 0x20, 0x22, 0x32, 0x30, 0x32, 0x33, 0x2d, 0x31,
|
||||||
0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x22, 0x2c, 0x20, 0x22, 0x63, 0x68, 0x61, 0x6e,
|
0x30, 0x2d, 0x30, 0x35, 0x54, 0x30, 0x32, 0x3a, 0x33, 0x30, 0x3a, 0x35, 0x33, 0x5a, 0x22, 0x2c,
|
||||||
0x67, 0x65, 0x64, 0x22, 0x3a, 0x20, 0x22, 0x32, 0x30, 0x32, 0x33, 0x2d, 0x31, 0x30, 0x2d, 0x30,
|
0x20, 0x22, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x72, 0x22, 0x3a, 0x20, 0x22, 0x6a, 0x6f, 0x68,
|
||||||
0x35, 0x54, 0x30, 0x32, 0x3a, 0x33, 0x30, 0x3a, 0x35, 0x33, 0x5a, 0x22, 0x7d, 0x42, 0x19, 0x5a,
|
0x6e, 0x2e, 0x64, 0x6f, 0x65, 0x40, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x63, 0x6f,
|
||||||
0x17, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x69, 0x74, 0x73, 0x73,
|
0x6d, 0x22, 0x2c, 0x20, 0x22, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x22, 0x3a, 0x20, 0x22,
|
||||||
0x63, 0x62, 0x2f, 0x64, 0x66, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
0x32, 0x30, 0x32, 0x33, 0x2d, 0x31, 0x30, 0x2d, 0x30, 0x35, 0x54, 0x30, 0x32, 0x3a, 0x33, 0x30,
|
||||||
|
0x3a, 0x35, 0x33, 0x5a, 0x22, 0x7d, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x72, 0x65, 0x6c, 0x61, 0x74,
|
||||||
|
0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x42, 0x19, 0x5a, 0x17, 0x67, 0x69, 0x74, 0x68, 0x75,
|
||||||
|
0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x69, 0x74, 0x73, 0x73, 0x63, 0x62, 0x2f, 0x64, 0x66, 0x2f,
|
||||||
|
0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||||
}
|
}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
@ -285,6 +297,7 @@ func file_person_proto_init() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
file_person_proto_msgTypes[0].OneofWrappers = []interface{}{}
|
||||||
type x struct{}
|
type x struct{}
|
||||||
out := protoimpl.TypeBuilder{
|
out := protoimpl.TypeBuilder{
|
||||||
File: protoimpl.DescBuilder{
|
File: protoimpl.DescBuilder{
|
||||||
|
234
bff/pb/rpc_add_email.pb.go
Normal file
234
bff/pb/rpc_add_email.pb.go
Normal file
@ -0,0 +1,234 @@
|
|||||||
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||||
|
// versions:
|
||||||
|
// protoc-gen-go v1.31.0
|
||||||
|
// protoc v4.24.4
|
||||||
|
// source: rpc_add_email.proto
|
||||||
|
|
||||||
|
package pb
|
||||||
|
|
||||||
|
import (
|
||||||
|
_ "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2/options"
|
||||||
|
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
||||||
|
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
||||||
|
reflect "reflect"
|
||||||
|
sync "sync"
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
// Verify that this generated code is sufficiently up-to-date.
|
||||||
|
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
||||||
|
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
||||||
|
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
||||||
|
)
|
||||||
|
|
||||||
|
type AddEmailAddressRequest struct {
|
||||||
|
state protoimpl.MessageState
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
|
PersonId uint64 `protobuf:"varint,1,opt,name=person_id,json=personId,proto3" json:"person_id,omitempty"`
|
||||||
|
Email string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *AddEmailAddressRequest) Reset() {
|
||||||
|
*x = AddEmailAddressRequest{}
|
||||||
|
if protoimpl.UnsafeEnabled {
|
||||||
|
mi := &file_rpc_add_email_proto_msgTypes[0]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *AddEmailAddressRequest) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*AddEmailAddressRequest) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *AddEmailAddressRequest) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_rpc_add_email_proto_msgTypes[0]
|
||||||
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
return ms
|
||||||
|
}
|
||||||
|
return mi.MessageOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Deprecated: Use AddEmailAddressRequest.ProtoReflect.Descriptor instead.
|
||||||
|
func (*AddEmailAddressRequest) Descriptor() ([]byte, []int) {
|
||||||
|
return file_rpc_add_email_proto_rawDescGZIP(), []int{0}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *AddEmailAddressRequest) GetPersonId() uint64 {
|
||||||
|
if x != nil {
|
||||||
|
return x.PersonId
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *AddEmailAddressRequest) GetEmail() string {
|
||||||
|
if x != nil {
|
||||||
|
return x.Email
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
type AddEmailAddressResponse struct {
|
||||||
|
state protoimpl.MessageState
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
|
Email *EmailAddress `protobuf:"bytes,1,opt,name=email,proto3" json:"email,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *AddEmailAddressResponse) Reset() {
|
||||||
|
*x = AddEmailAddressResponse{}
|
||||||
|
if protoimpl.UnsafeEnabled {
|
||||||
|
mi := &file_rpc_add_email_proto_msgTypes[1]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *AddEmailAddressResponse) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*AddEmailAddressResponse) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *AddEmailAddressResponse) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_rpc_add_email_proto_msgTypes[1]
|
||||||
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
return ms
|
||||||
|
}
|
||||||
|
return mi.MessageOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Deprecated: Use AddEmailAddressResponse.ProtoReflect.Descriptor instead.
|
||||||
|
func (*AddEmailAddressResponse) Descriptor() ([]byte, []int) {
|
||||||
|
return file_rpc_add_email_proto_rawDescGZIP(), []int{1}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *AddEmailAddressResponse) GetEmail() *EmailAddress {
|
||||||
|
if x != nil {
|
||||||
|
return x.Email
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
var File_rpc_add_email_proto protoreflect.FileDescriptor
|
||||||
|
|
||||||
|
var file_rpc_add_email_proto_rawDesc = []byte{
|
||||||
|
0x0a, 0x13, 0x72, 0x70, 0x63, 0x5f, 0x61, 0x64, 0x64, 0x5f, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x2e,
|
||||||
|
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x02, 0x70, 0x62, 0x1a, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
||||||
|
0x63, 0x2d, 0x67, 0x65, 0x6e, 0x2d, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2f,
|
||||||
|
0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69,
|
||||||
|
0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x13, 0x65, 0x6d, 0x61, 0x69, 0x6c,
|
||||||
|
0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x8d,
|
||||||
|
0x01, 0x0a, 0x16, 0x41, 0x64, 0x64, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x41, 0x64, 0x64, 0x72, 0x65,
|
||||||
|
0x73, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x65, 0x72,
|
||||||
|
0x73, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x70, 0x65,
|
||||||
|
0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18,
|
||||||
|
0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x3a, 0x40, 0x92, 0x41,
|
||||||
|
0x3d, 0x0a, 0x3b, 0x2a, 0x10, 0x41, 0x64, 0x64, 0x20, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x41, 0x64,
|
||||||
|
0x64, 0x72, 0x65, 0x73, 0x73, 0x32, 0x13, 0x41, 0x64, 0x64, 0x20, 0x61, 0x6e, 0x20, 0x45, 0x6d,
|
||||||
|
0x61, 0x69, 0x6c, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0xd2, 0x01, 0x09, 0x70, 0x65, 0x72,
|
||||||
|
0x73, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0xd2, 0x01, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x22, 0x81,
|
||||||
|
0x01, 0x0a, 0x17, 0x41, 0x64, 0x64, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x41, 0x64, 0x64, 0x72, 0x65,
|
||||||
|
0x73, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2b, 0x0a, 0x05, 0x65, 0x6d,
|
||||||
|
0x61, 0x69, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x70, 0x62, 0x2e, 0x45,
|
||||||
|
0x6d, 0x61, 0x69, 0x6c, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x42, 0x03, 0x92, 0x41, 0x00,
|
||||||
|
0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x3a, 0x39, 0x92, 0x41, 0x36, 0x0a, 0x34, 0x2a, 0x12,
|
||||||
|
0x41, 0x64, 0x64, 0x65, 0x64, 0x20, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x41, 0x64, 0x64, 0x72, 0x65,
|
||||||
|
0x73, 0x73, 0x32, 0x1e, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x73, 0x20, 0x74, 0x68, 0x65, 0x20,
|
||||||
|
0x61, 0x64, 0x64, 0x65, 0x64, 0x20, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x41, 0x64, 0x64, 0x72, 0x65,
|
||||||
|
0x73, 0x73, 0x42, 0x19, 0x5a, 0x17, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d,
|
||||||
|
0x2f, 0x69, 0x74, 0x73, 0x73, 0x63, 0x62, 0x2f, 0x64, 0x66, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70,
|
||||||
|
0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||||
|
}
|
||||||
|
|
||||||
|
var (
|
||||||
|
file_rpc_add_email_proto_rawDescOnce sync.Once
|
||||||
|
file_rpc_add_email_proto_rawDescData = file_rpc_add_email_proto_rawDesc
|
||||||
|
)
|
||||||
|
|
||||||
|
func file_rpc_add_email_proto_rawDescGZIP() []byte {
|
||||||
|
file_rpc_add_email_proto_rawDescOnce.Do(func() {
|
||||||
|
file_rpc_add_email_proto_rawDescData = protoimpl.X.CompressGZIP(file_rpc_add_email_proto_rawDescData)
|
||||||
|
})
|
||||||
|
return file_rpc_add_email_proto_rawDescData
|
||||||
|
}
|
||||||
|
|
||||||
|
var file_rpc_add_email_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
|
||||||
|
var file_rpc_add_email_proto_goTypes = []interface{}{
|
||||||
|
(*AddEmailAddressRequest)(nil), // 0: pb.AddEmailAddressRequest
|
||||||
|
(*AddEmailAddressResponse)(nil), // 1: pb.AddEmailAddressResponse
|
||||||
|
(*EmailAddress)(nil), // 2: pb.EmailAddress
|
||||||
|
}
|
||||||
|
var file_rpc_add_email_proto_depIdxs = []int32{
|
||||||
|
2, // 0: pb.AddEmailAddressResponse.email:type_name -> pb.EmailAddress
|
||||||
|
1, // [1:1] is the sub-list for method output_type
|
||||||
|
1, // [1:1] is the sub-list for method input_type
|
||||||
|
1, // [1:1] is the sub-list for extension type_name
|
||||||
|
1, // [1:1] is the sub-list for extension extendee
|
||||||
|
0, // [0:1] is the sub-list for field type_name
|
||||||
|
}
|
||||||
|
|
||||||
|
func init() { file_rpc_add_email_proto_init() }
|
||||||
|
func file_rpc_add_email_proto_init() {
|
||||||
|
if File_rpc_add_email_proto != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
file_email_address_proto_init()
|
||||||
|
if !protoimpl.UnsafeEnabled {
|
||||||
|
file_rpc_add_email_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||||||
|
switch v := v.(*AddEmailAddressRequest); i {
|
||||||
|
case 0:
|
||||||
|
return &v.state
|
||||||
|
case 1:
|
||||||
|
return &v.sizeCache
|
||||||
|
case 2:
|
||||||
|
return &v.unknownFields
|
||||||
|
default:
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
file_rpc_add_email_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
||||||
|
switch v := v.(*AddEmailAddressResponse); i {
|
||||||
|
case 0:
|
||||||
|
return &v.state
|
||||||
|
case 1:
|
||||||
|
return &v.sizeCache
|
||||||
|
case 2:
|
||||||
|
return &v.unknownFields
|
||||||
|
default:
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
type x struct{}
|
||||||
|
out := protoimpl.TypeBuilder{
|
||||||
|
File: protoimpl.DescBuilder{
|
||||||
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||||
|
RawDescriptor: file_rpc_add_email_proto_rawDesc,
|
||||||
|
NumEnums: 0,
|
||||||
|
NumMessages: 2,
|
||||||
|
NumExtensions: 0,
|
||||||
|
NumServices: 0,
|
||||||
|
},
|
||||||
|
GoTypes: file_rpc_add_email_proto_goTypes,
|
||||||
|
DependencyIndexes: file_rpc_add_email_proto_depIdxs,
|
||||||
|
MessageInfos: file_rpc_add_email_proto_msgTypes,
|
||||||
|
}.Build()
|
||||||
|
File_rpc_add_email_proto = out.File
|
||||||
|
file_rpc_add_email_proto_rawDesc = nil
|
||||||
|
file_rpc_add_email_proto_goTypes = nil
|
||||||
|
file_rpc_add_email_proto_depIdxs = nil
|
||||||
|
}
|
234
bff/pb/rpc_add_emails.pb.go
Normal file
234
bff/pb/rpc_add_emails.pb.go
Normal file
@ -0,0 +1,234 @@
|
|||||||
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||||
|
// versions:
|
||||||
|
// protoc-gen-go v1.31.0
|
||||||
|
// protoc v4.24.4
|
||||||
|
// source: rpc_add_emails.proto
|
||||||
|
|
||||||
|
package pb
|
||||||
|
|
||||||
|
import (
|
||||||
|
_ "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2/options"
|
||||||
|
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
||||||
|
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
||||||
|
reflect "reflect"
|
||||||
|
sync "sync"
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
// Verify that this generated code is sufficiently up-to-date.
|
||||||
|
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
||||||
|
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
||||||
|
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
||||||
|
)
|
||||||
|
|
||||||
|
type AddEmailAddressesRequest struct {
|
||||||
|
state protoimpl.MessageState
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
|
PersonId uint64 `protobuf:"varint,1,opt,name=person_id,json=personId,proto3" json:"person_id,omitempty"`
|
||||||
|
Email []string `protobuf:"bytes,2,rep,name=email,proto3" json:"email,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *AddEmailAddressesRequest) Reset() {
|
||||||
|
*x = AddEmailAddressesRequest{}
|
||||||
|
if protoimpl.UnsafeEnabled {
|
||||||
|
mi := &file_rpc_add_emails_proto_msgTypes[0]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *AddEmailAddressesRequest) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*AddEmailAddressesRequest) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *AddEmailAddressesRequest) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_rpc_add_emails_proto_msgTypes[0]
|
||||||
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
return ms
|
||||||
|
}
|
||||||
|
return mi.MessageOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Deprecated: Use AddEmailAddressesRequest.ProtoReflect.Descriptor instead.
|
||||||
|
func (*AddEmailAddressesRequest) Descriptor() ([]byte, []int) {
|
||||||
|
return file_rpc_add_emails_proto_rawDescGZIP(), []int{0}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *AddEmailAddressesRequest) GetPersonId() uint64 {
|
||||||
|
if x != nil {
|
||||||
|
return x.PersonId
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *AddEmailAddressesRequest) GetEmail() []string {
|
||||||
|
if x != nil {
|
||||||
|
return x.Email
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
type AddEmailAddressesResponse struct {
|
||||||
|
state protoimpl.MessageState
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
|
Emails []*EmailAddress `protobuf:"bytes,1,rep,name=emails,proto3" json:"emails,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *AddEmailAddressesResponse) Reset() {
|
||||||
|
*x = AddEmailAddressesResponse{}
|
||||||
|
if protoimpl.UnsafeEnabled {
|
||||||
|
mi := &file_rpc_add_emails_proto_msgTypes[1]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *AddEmailAddressesResponse) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*AddEmailAddressesResponse) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *AddEmailAddressesResponse) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_rpc_add_emails_proto_msgTypes[1]
|
||||||
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
return ms
|
||||||
|
}
|
||||||
|
return mi.MessageOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Deprecated: Use AddEmailAddressesResponse.ProtoReflect.Descriptor instead.
|
||||||
|
func (*AddEmailAddressesResponse) Descriptor() ([]byte, []int) {
|
||||||
|
return file_rpc_add_emails_proto_rawDescGZIP(), []int{1}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *AddEmailAddressesResponse) GetEmails() []*EmailAddress {
|
||||||
|
if x != nil {
|
||||||
|
return x.Emails
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
var File_rpc_add_emails_proto protoreflect.FileDescriptor
|
||||||
|
|
||||||
|
var file_rpc_add_emails_proto_rawDesc = []byte{
|
||||||
|
0x0a, 0x14, 0x72, 0x70, 0x63, 0x5f, 0x61, 0x64, 0x64, 0x5f, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x73,
|
||||||
|
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x02, 0x70, 0x62, 0x1a, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
||||||
|
0x6f, 0x63, 0x2d, 0x67, 0x65, 0x6e, 0x2d, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32,
|
||||||
|
0x2f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74,
|
||||||
|
0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x13, 0x65, 0x6d, 0x61, 0x69,
|
||||||
|
0x6c, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22,
|
||||||
|
0x8f, 0x01, 0x0a, 0x18, 0x41, 0x64, 0x64, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x41, 0x64, 0x64, 0x72,
|
||||||
|
0x65, 0x73, 0x73, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09,
|
||||||
|
0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52,
|
||||||
|
0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61,
|
||||||
|
0x69, 0x6c, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x3a,
|
||||||
|
0x40, 0x92, 0x41, 0x3d, 0x0a, 0x3b, 0x2a, 0x10, 0x41, 0x64, 0x64, 0x20, 0x45, 0x6d, 0x61, 0x69,
|
||||||
|
0x6c, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x32, 0x13, 0x41, 0x64, 0x64, 0x20, 0x61, 0x6e,
|
||||||
|
0x20, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0xd2, 0x01, 0x09,
|
||||||
|
0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0xd2, 0x01, 0x05, 0x65, 0x6d, 0x61, 0x69,
|
||||||
|
0x6c, 0x22, 0x89, 0x01, 0x0a, 0x19, 0x41, 0x64, 0x64, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x41, 0x64,
|
||||||
|
0x64, 0x72, 0x65, 0x73, 0x73, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
|
||||||
|
0x2d, 0x0a, 0x06, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32,
|
||||||
|
0x10, 0x2e, 0x70, 0x62, 0x2e, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73,
|
||||||
|
0x73, 0x42, 0x03, 0x92, 0x41, 0x00, 0x52, 0x06, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x73, 0x3a, 0x3d,
|
||||||
|
0x92, 0x41, 0x3a, 0x0a, 0x38, 0x2a, 0x14, 0x41, 0x64, 0x64, 0x65, 0x64, 0x20, 0x45, 0x6d, 0x61,
|
||||||
|
0x69, 0x6c, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x65, 0x73, 0x32, 0x20, 0x52, 0x65, 0x74,
|
||||||
|
0x75, 0x72, 0x6e, 0x73, 0x20, 0x74, 0x68, 0x65, 0x20, 0x61, 0x64, 0x64, 0x65, 0x64, 0x20, 0x45,
|
||||||
|
0x6d, 0x61, 0x69, 0x6c, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x65, 0x73, 0x42, 0x19, 0x5a,
|
||||||
|
0x17, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x69, 0x74, 0x73, 0x73,
|
||||||
|
0x63, 0x62, 0x2f, 0x64, 0x66, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||||
|
}
|
||||||
|
|
||||||
|
var (
|
||||||
|
file_rpc_add_emails_proto_rawDescOnce sync.Once
|
||||||
|
file_rpc_add_emails_proto_rawDescData = file_rpc_add_emails_proto_rawDesc
|
||||||
|
)
|
||||||
|
|
||||||
|
func file_rpc_add_emails_proto_rawDescGZIP() []byte {
|
||||||
|
file_rpc_add_emails_proto_rawDescOnce.Do(func() {
|
||||||
|
file_rpc_add_emails_proto_rawDescData = protoimpl.X.CompressGZIP(file_rpc_add_emails_proto_rawDescData)
|
||||||
|
})
|
||||||
|
return file_rpc_add_emails_proto_rawDescData
|
||||||
|
}
|
||||||
|
|
||||||
|
var file_rpc_add_emails_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
|
||||||
|
var file_rpc_add_emails_proto_goTypes = []interface{}{
|
||||||
|
(*AddEmailAddressesRequest)(nil), // 0: pb.AddEmailAddressesRequest
|
||||||
|
(*AddEmailAddressesResponse)(nil), // 1: pb.AddEmailAddressesResponse
|
||||||
|
(*EmailAddress)(nil), // 2: pb.EmailAddress
|
||||||
|
}
|
||||||
|
var file_rpc_add_emails_proto_depIdxs = []int32{
|
||||||
|
2, // 0: pb.AddEmailAddressesResponse.emails:type_name -> pb.EmailAddress
|
||||||
|
1, // [1:1] is the sub-list for method output_type
|
||||||
|
1, // [1:1] is the sub-list for method input_type
|
||||||
|
1, // [1:1] is the sub-list for extension type_name
|
||||||
|
1, // [1:1] is the sub-list for extension extendee
|
||||||
|
0, // [0:1] is the sub-list for field type_name
|
||||||
|
}
|
||||||
|
|
||||||
|
func init() { file_rpc_add_emails_proto_init() }
|
||||||
|
func file_rpc_add_emails_proto_init() {
|
||||||
|
if File_rpc_add_emails_proto != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
file_email_address_proto_init()
|
||||||
|
if !protoimpl.UnsafeEnabled {
|
||||||
|
file_rpc_add_emails_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||||||
|
switch v := v.(*AddEmailAddressesRequest); i {
|
||||||
|
case 0:
|
||||||
|
return &v.state
|
||||||
|
case 1:
|
||||||
|
return &v.sizeCache
|
||||||
|
case 2:
|
||||||
|
return &v.unknownFields
|
||||||
|
default:
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
file_rpc_add_emails_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
||||||
|
switch v := v.(*AddEmailAddressesResponse); i {
|
||||||
|
case 0:
|
||||||
|
return &v.state
|
||||||
|
case 1:
|
||||||
|
return &v.sizeCache
|
||||||
|
case 2:
|
||||||
|
return &v.unknownFields
|
||||||
|
default:
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
type x struct{}
|
||||||
|
out := protoimpl.TypeBuilder{
|
||||||
|
File: protoimpl.DescBuilder{
|
||||||
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||||
|
RawDescriptor: file_rpc_add_emails_proto_rawDesc,
|
||||||
|
NumEnums: 0,
|
||||||
|
NumMessages: 2,
|
||||||
|
NumExtensions: 0,
|
||||||
|
NumServices: 0,
|
||||||
|
},
|
||||||
|
GoTypes: file_rpc_add_emails_proto_goTypes,
|
||||||
|
DependencyIndexes: file_rpc_add_emails_proto_depIdxs,
|
||||||
|
MessageInfos: file_rpc_add_emails_proto_msgTypes,
|
||||||
|
}.Build()
|
||||||
|
File_rpc_add_emails_proto = out.File
|
||||||
|
file_rpc_add_emails_proto_rawDesc = nil
|
||||||
|
file_rpc_add_emails_proto_goTypes = nil
|
||||||
|
file_rpc_add_emails_proto_depIdxs = nil
|
||||||
|
}
|
@ -27,14 +27,15 @@ type CreatePersonRequest struct {
|
|||||||
sizeCache protoimpl.SizeCache
|
sizeCache protoimpl.SizeCache
|
||||||
unknownFields protoimpl.UnknownFields
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
AccountId uint64 `protobuf:"varint,1,opt,name=account_id,json=accountId,proto3" json:"account_id,omitempty"`
|
AccountId uint64 `protobuf:"varint,1,opt,name=account_id,json=accountId,proto3" json:"account_id,omitempty"`
|
||||||
Firstname string `protobuf:"bytes,2,opt,name=firstname,proto3" json:"firstname,omitempty"`
|
Firstname string `protobuf:"bytes,2,opt,name=firstname,proto3" json:"firstname,omitempty"`
|
||||||
Lastname string `protobuf:"bytes,3,opt,name=lastname,proto3" json:"lastname,omitempty"`
|
Lastname string `protobuf:"bytes,3,opt,name=lastname,proto3" json:"lastname,omitempty"`
|
||||||
Street string `protobuf:"bytes,4,opt,name=street,proto3" json:"street,omitempty"`
|
Street string `protobuf:"bytes,4,opt,name=street,proto3" json:"street,omitempty"`
|
||||||
City string `protobuf:"bytes,5,opt,name=city,proto3" json:"city,omitempty"`
|
City string `protobuf:"bytes,5,opt,name=city,proto3" json:"city,omitempty"`
|
||||||
Zip string `protobuf:"bytes,6,opt,name=zip,proto3" json:"zip,omitempty"`
|
Zip string `protobuf:"bytes,6,opt,name=zip,proto3" json:"zip,omitempty"`
|
||||||
Country string `protobuf:"bytes,7,opt,name=country,proto3" json:"country,omitempty"`
|
Country string `protobuf:"bytes,7,opt,name=country,proto3" json:"country,omitempty"`
|
||||||
Birthday *timestamppb.Timestamp `protobuf:"bytes,8,opt,name=birthday,proto3" json:"birthday,omitempty"`
|
Relationship string `protobuf:"bytes,8,opt,name=relationship,proto3" json:"relationship,omitempty"`
|
||||||
|
Birthday *timestamppb.Timestamp `protobuf:"bytes,9,opt,name=birthday,proto3" json:"birthday,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *CreatePersonRequest) Reset() {
|
func (x *CreatePersonRequest) Reset() {
|
||||||
@ -118,6 +119,13 @@ func (x *CreatePersonRequest) GetCountry() string {
|
|||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (x *CreatePersonRequest) GetRelationship() string {
|
||||||
|
if x != nil {
|
||||||
|
return x.Relationship
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
func (x *CreatePersonRequest) GetBirthday() *timestamppb.Timestamp {
|
func (x *CreatePersonRequest) GetBirthday() *timestamppb.Timestamp {
|
||||||
if x != nil {
|
if x != nil {
|
||||||
return x.Birthday
|
return x.Birthday
|
||||||
@ -182,7 +190,7 @@ var file_rpc_create_person_proto_rawDesc = []byte{
|
|||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2d, 0x67, 0x65, 0x6e, 0x2d, 0x6f, 0x70, 0x65, 0x6e, 0x61,
|
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2d, 0x67, 0x65, 0x6e, 0x2d, 0x6f, 0x70, 0x65, 0x6e, 0x61,
|
||||||
0x70, 0x69, 0x76, 0x32, 0x2f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x61, 0x6e, 0x6e,
|
0x70, 0x69, 0x76, 0x32, 0x2f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x61, 0x6e, 0x6e,
|
||||||
0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x0c,
|
0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x0c,
|
||||||
0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xc7, 0x04, 0x0a,
|
0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xfa, 0x04, 0x0a,
|
||||||
0x13, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x71,
|
0x13, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x71,
|
||||||
0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f,
|
0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f,
|
||||||
0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e,
|
0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e,
|
||||||
@ -195,40 +203,43 @@ var file_rpc_create_person_proto_rawDesc = []byte{
|
|||||||
0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x7a, 0x69, 0x70,
|
0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x7a, 0x69, 0x70,
|
||||||
0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x7a, 0x69, 0x70, 0x12, 0x18, 0x0a, 0x07, 0x63,
|
0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x7a, 0x69, 0x70, 0x12, 0x18, 0x0a, 0x07, 0x63,
|
||||||
0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f,
|
0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f,
|
||||||
0x75, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x53, 0x0a, 0x08, 0x62, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61,
|
0x75, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x22, 0x0a, 0x0c, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f,
|
||||||
0x79, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
|
0x6e, 0x73, 0x68, 0x69, 0x70, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x72, 0x65, 0x6c,
|
||||||
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74,
|
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x12, 0x53, 0x0a, 0x08, 0x62, 0x69, 0x72,
|
||||||
0x61, 0x6d, 0x70, 0x42, 0x1b, 0x92, 0x41, 0x18, 0x4a, 0x16, 0x22, 0x31, 0x39, 0x39, 0x30, 0x2d,
|
0x74, 0x68, 0x64, 0x61, 0x79, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f,
|
||||||
0x31, 0x30, 0x2d, 0x30, 0x35, 0x54, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x5a, 0x22,
|
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69,
|
||||||
0x52, 0x08, 0x62, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x79, 0x3a, 0xa9, 0x02, 0x92, 0x41, 0xa5,
|
0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x42, 0x1b, 0x92, 0x41, 0x18, 0x4a, 0x16, 0x22, 0x31,
|
||||||
0x02, 0x0a, 0x70, 0x2a, 0x0d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x20, 0x50, 0x65, 0x72, 0x73,
|
0x39, 0x39, 0x30, 0x2d, 0x31, 0x30, 0x2d, 0x30, 0x35, 0x54, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x3a,
|
||||||
0x6f, 0x6e, 0x32, 0x10, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x20, 0x61, 0x6e, 0x20, 0x50, 0x65,
|
0x30, 0x30, 0x5a, 0x22, 0x52, 0x08, 0x62, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x79, 0x3a, 0xb8,
|
||||||
0x72, 0x73, 0x6f, 0x6e, 0xd2, 0x01, 0x0a, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69,
|
0x02, 0x92, 0x41, 0xb4, 0x02, 0x0a, 0x7f, 0x2a, 0x0d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x20,
|
||||||
0x64, 0xd2, 0x01, 0x09, 0x66, 0x69, 0x72, 0x73, 0x74, 0x6e, 0x61, 0x6d, 0x65, 0xd2, 0x01, 0x08,
|
0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x32, 0x10, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x20, 0x61,
|
||||||
0x6c, 0x61, 0x73, 0x74, 0x6e, 0x61, 0x6d, 0x65, 0xd2, 0x01, 0x06, 0x73, 0x74, 0x72, 0x65, 0x65,
|
0x6e, 0x20, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0xd2, 0x01, 0x0a, 0x61, 0x63, 0x63, 0x6f, 0x75,
|
||||||
0x74, 0xd2, 0x01, 0x04, 0x63, 0x69, 0x74, 0x79, 0xd2, 0x01, 0x03, 0x7a, 0x69, 0x70, 0xd2, 0x01,
|
0x6e, 0x74, 0x5f, 0x69, 0x64, 0xd2, 0x01, 0x09, 0x66, 0x69, 0x72, 0x73, 0x74, 0x6e, 0x61, 0x6d,
|
||||||
0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0xd2, 0x01, 0x08, 0x62, 0x69, 0x72, 0x74, 0x68,
|
0x65, 0xd2, 0x01, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x6e, 0x61, 0x6d, 0x65, 0xd2, 0x01, 0x06, 0x73,
|
||||||
0x64, 0x61, 0x79, 0x32, 0xb0, 0x01, 0x7b, 0x20, 0x22, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
|
0x74, 0x72, 0x65, 0x65, 0x74, 0xd2, 0x01, 0x04, 0x63, 0x69, 0x74, 0x79, 0xd2, 0x01, 0x03, 0x7a,
|
||||||
0x5f, 0x69, 0x64, 0x22, 0x3a, 0x20, 0x22, 0x31, 0x22, 0x2c, 0x20, 0x22, 0x66, 0x69, 0x72, 0x73,
|
0x69, 0x70, 0xd2, 0x01, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0xd2, 0x01, 0x0c, 0x72,
|
||||||
0x74, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x3a, 0x20, 0x22, 0x4a, 0x6f, 0x68, 0x6e, 0x22, 0x2c, 0x20,
|
0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0xd2, 0x01, 0x08, 0x62, 0x69,
|
||||||
0x22, 0x6c, 0x61, 0x73, 0x74, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x3a, 0x20, 0x22, 0x44, 0x6f, 0x65,
|
0x72, 0x74, 0x68, 0x64, 0x61, 0x79, 0x32, 0xb0, 0x01, 0x7b, 0x20, 0x22, 0x61, 0x63, 0x63, 0x6f,
|
||||||
0x22, 0x2c, 0x20, 0x22, 0x73, 0x74, 0x72, 0x65, 0x65, 0x74, 0x22, 0x3a, 0x20, 0x22, 0x4d, 0x61,
|
0x75, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x22, 0x3a, 0x20, 0x22, 0x31, 0x22, 0x2c, 0x20, 0x22, 0x66,
|
||||||
0x69, 0x6e, 0x20, 0x53, 0x74, 0x72, 0x65, 0x65, 0x74, 0x20, 0x31, 0x22, 0x2c, 0x20, 0x22, 0x7a,
|
0x69, 0x72, 0x73, 0x74, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x3a, 0x20, 0x22, 0x4a, 0x6f, 0x68, 0x6e,
|
||||||
0x69, 0x70, 0x22, 0x3a, 0x20, 0x22, 0x30, 0x38, 0x31, 0x35, 0x22, 0x2c, 0x20, 0x22, 0x63, 0x69,
|
0x22, 0x2c, 0x20, 0x22, 0x6c, 0x61, 0x73, 0x74, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x3a, 0x20, 0x22,
|
||||||
0x74, 0x79, 0x22, 0x3a, 0x20, 0x22, 0x4e, 0x65, 0x77, 0x20, 0x59, 0x6f, 0x72, 0x6b, 0x22, 0x2c,
|
0x44, 0x6f, 0x65, 0x22, 0x2c, 0x20, 0x22, 0x73, 0x74, 0x72, 0x65, 0x65, 0x74, 0x22, 0x3a, 0x20,
|
||||||
0x20, 0x22, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x22, 0x3a, 0x20, 0x22, 0x55, 0x53, 0x41,
|
0x22, 0x4d, 0x61, 0x69, 0x6e, 0x20, 0x53, 0x74, 0x72, 0x65, 0x65, 0x74, 0x20, 0x31, 0x22, 0x2c,
|
||||||
0x22, 0x2c, 0x20, 0x22, 0x62, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x79, 0x22, 0x3a, 0x20, 0x22,
|
0x20, 0x22, 0x7a, 0x69, 0x70, 0x22, 0x3a, 0x20, 0x22, 0x30, 0x38, 0x31, 0x35, 0x22, 0x2c, 0x20,
|
||||||
0x31, 0x39, 0x39, 0x30, 0x2d, 0x31, 0x30, 0x2d, 0x30, 0x35, 0x54, 0x30, 0x30, 0x3a, 0x30, 0x30,
|
0x22, 0x63, 0x69, 0x74, 0x79, 0x22, 0x3a, 0x20, 0x22, 0x4e, 0x65, 0x77, 0x20, 0x59, 0x6f, 0x72,
|
||||||
0x3a, 0x30, 0x30, 0x5a, 0x22, 0x7d, 0x22, 0x72, 0x0a, 0x14, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
|
0x6b, 0x22, 0x2c, 0x20, 0x22, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x22, 0x3a, 0x20, 0x22,
|
||||||
0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x27,
|
0x55, 0x53, 0x41, 0x22, 0x2c, 0x20, 0x22, 0x62, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x79, 0x22,
|
||||||
0x0a, 0x06, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0a,
|
0x3a, 0x20, 0x22, 0x31, 0x39, 0x39, 0x30, 0x2d, 0x31, 0x30, 0x2d, 0x30, 0x35, 0x54, 0x30, 0x30,
|
||||||
0x2e, 0x70, 0x62, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x42, 0x03, 0x92, 0x41, 0x00, 0x52,
|
0x3a, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x5a, 0x22, 0x7d, 0x22, 0x72, 0x0a, 0x14, 0x43, 0x72, 0x65,
|
||||||
0x06, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x3a, 0x31, 0x92, 0x41, 0x2e, 0x0a, 0x2c, 0x2a, 0x0e,
|
0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
||||||
0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x20, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x32, 0x1a,
|
0x65, 0x12, 0x27, 0x0a, 0x06, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28,
|
||||||
0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x73, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x72, 0x65, 0x61,
|
0x0b, 0x32, 0x0a, 0x2e, 0x70, 0x62, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x42, 0x03, 0x92,
|
||||||
0x74, 0x65, 0x64, 0x20, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x42, 0x19, 0x5a, 0x17, 0x67, 0x69,
|
0x41, 0x00, 0x52, 0x06, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x3a, 0x31, 0x92, 0x41, 0x2e, 0x0a,
|
||||||
0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x69, 0x74, 0x73, 0x73, 0x63, 0x62, 0x2f,
|
0x2c, 0x2a, 0x0e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x20, 0x50, 0x65, 0x72, 0x73, 0x6f,
|
||||||
0x64, 0x66, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
0x6e, 0x32, 0x1a, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x73, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63,
|
||||||
|
0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x20, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x42, 0x19, 0x5a,
|
||||||
|
0x17, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x69, 0x74, 0x73, 0x73,
|
||||||
|
0x63, 0x62, 0x2f, 0x64, 0x66, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||||
}
|
}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
216
bff/pb/rpc_delete_email.pb.go
Normal file
216
bff/pb/rpc_delete_email.pb.go
Normal file
@ -0,0 +1,216 @@
|
|||||||
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||||
|
// versions:
|
||||||
|
// protoc-gen-go v1.31.0
|
||||||
|
// protoc v4.24.4
|
||||||
|
// source: rpc_delete_email.proto
|
||||||
|
|
||||||
|
package pb
|
||||||
|
|
||||||
|
import (
|
||||||
|
_ "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2/options"
|
||||||
|
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
||||||
|
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
||||||
|
reflect "reflect"
|
||||||
|
sync "sync"
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
// Verify that this generated code is sufficiently up-to-date.
|
||||||
|
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
||||||
|
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
||||||
|
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
||||||
|
)
|
||||||
|
|
||||||
|
type DeleteEmailAddressRequest struct {
|
||||||
|
state protoimpl.MessageState
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
|
Id uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *DeleteEmailAddressRequest) Reset() {
|
||||||
|
*x = DeleteEmailAddressRequest{}
|
||||||
|
if protoimpl.UnsafeEnabled {
|
||||||
|
mi := &file_rpc_delete_email_proto_msgTypes[0]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *DeleteEmailAddressRequest) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*DeleteEmailAddressRequest) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *DeleteEmailAddressRequest) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_rpc_delete_email_proto_msgTypes[0]
|
||||||
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
return ms
|
||||||
|
}
|
||||||
|
return mi.MessageOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Deprecated: Use DeleteEmailAddressRequest.ProtoReflect.Descriptor instead.
|
||||||
|
func (*DeleteEmailAddressRequest) Descriptor() ([]byte, []int) {
|
||||||
|
return file_rpc_delete_email_proto_rawDescGZIP(), []int{0}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *DeleteEmailAddressRequest) GetId() uint64 {
|
||||||
|
if x != nil {
|
||||||
|
return x.Id
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
type DeleteEmailAddressResponse struct {
|
||||||
|
state protoimpl.MessageState
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
|
Id uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *DeleteEmailAddressResponse) Reset() {
|
||||||
|
*x = DeleteEmailAddressResponse{}
|
||||||
|
if protoimpl.UnsafeEnabled {
|
||||||
|
mi := &file_rpc_delete_email_proto_msgTypes[1]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *DeleteEmailAddressResponse) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*DeleteEmailAddressResponse) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *DeleteEmailAddressResponse) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_rpc_delete_email_proto_msgTypes[1]
|
||||||
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
return ms
|
||||||
|
}
|
||||||
|
return mi.MessageOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Deprecated: Use DeleteEmailAddressResponse.ProtoReflect.Descriptor instead.
|
||||||
|
func (*DeleteEmailAddressResponse) Descriptor() ([]byte, []int) {
|
||||||
|
return file_rpc_delete_email_proto_rawDescGZIP(), []int{1}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *DeleteEmailAddressResponse) GetId() uint64 {
|
||||||
|
if x != nil {
|
||||||
|
return x.Id
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
var File_rpc_delete_email_proto protoreflect.FileDescriptor
|
||||||
|
|
||||||
|
var file_rpc_delete_email_proto_rawDesc = []byte{
|
||||||
|
0x0a, 0x16, 0x72, 0x70, 0x63, 0x5f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x5f, 0x65, 0x6d, 0x61,
|
||||||
|
0x69, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x02, 0x70, 0x62, 0x1a, 0x2e, 0x70, 0x72,
|
||||||
|
0x6f, 0x74, 0x6f, 0x63, 0x2d, 0x67, 0x65, 0x6e, 0x2d, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69,
|
||||||
|
0x76, 0x32, 0x2f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74,
|
||||||
|
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x64, 0x0a, 0x19,
|
||||||
|
0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x41, 0x64, 0x64, 0x72, 0x65,
|
||||||
|
0x73, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
|
||||||
|
0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x02, 0x69, 0x64, 0x3a, 0x37, 0x92, 0x41, 0x34, 0x0a, 0x32,
|
||||||
|
0x2a, 0x13, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x20, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x41, 0x64,
|
||||||
|
0x64, 0x72, 0x65, 0x73, 0x73, 0x32, 0x16, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x20, 0x61, 0x6e,
|
||||||
|
0x20, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0xd2, 0x01, 0x02,
|
||||||
|
0x69, 0x64, 0x22, 0x4e, 0x0a, 0x1a, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x45, 0x6d, 0x61, 0x69,
|
||||||
|
0x6c, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
||||||
|
0x12, 0x13, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x42, 0x03, 0x92, 0x41,
|
||||||
|
0x00, 0x52, 0x02, 0x69, 0x64, 0x3a, 0x1b, 0x92, 0x41, 0x18, 0x0a, 0x16, 0x2a, 0x14, 0x44, 0x65,
|
||||||
|
0x6c, 0x65, 0x74, 0x65, 0x64, 0x20, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x41, 0x64, 0x64, 0x72, 0x65,
|
||||||
|
0x73, 0x73, 0x42, 0x19, 0x5a, 0x17, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d,
|
||||||
|
0x2f, 0x69, 0x74, 0x73, 0x73, 0x63, 0x62, 0x2f, 0x64, 0x66, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70,
|
||||||
|
0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||||
|
}
|
||||||
|
|
||||||
|
var (
|
||||||
|
file_rpc_delete_email_proto_rawDescOnce sync.Once
|
||||||
|
file_rpc_delete_email_proto_rawDescData = file_rpc_delete_email_proto_rawDesc
|
||||||
|
)
|
||||||
|
|
||||||
|
func file_rpc_delete_email_proto_rawDescGZIP() []byte {
|
||||||
|
file_rpc_delete_email_proto_rawDescOnce.Do(func() {
|
||||||
|
file_rpc_delete_email_proto_rawDescData = protoimpl.X.CompressGZIP(file_rpc_delete_email_proto_rawDescData)
|
||||||
|
})
|
||||||
|
return file_rpc_delete_email_proto_rawDescData
|
||||||
|
}
|
||||||
|
|
||||||
|
var file_rpc_delete_email_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
|
||||||
|
var file_rpc_delete_email_proto_goTypes = []interface{}{
|
||||||
|
(*DeleteEmailAddressRequest)(nil), // 0: pb.DeleteEmailAddressRequest
|
||||||
|
(*DeleteEmailAddressResponse)(nil), // 1: pb.DeleteEmailAddressResponse
|
||||||
|
}
|
||||||
|
var file_rpc_delete_email_proto_depIdxs = []int32{
|
||||||
|
0, // [0:0] is the sub-list for method output_type
|
||||||
|
0, // [0:0] is the sub-list for method input_type
|
||||||
|
0, // [0:0] is the sub-list for extension type_name
|
||||||
|
0, // [0:0] is the sub-list for extension extendee
|
||||||
|
0, // [0:0] is the sub-list for field type_name
|
||||||
|
}
|
||||||
|
|
||||||
|
func init() { file_rpc_delete_email_proto_init() }
|
||||||
|
func file_rpc_delete_email_proto_init() {
|
||||||
|
if File_rpc_delete_email_proto != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if !protoimpl.UnsafeEnabled {
|
||||||
|
file_rpc_delete_email_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||||||
|
switch v := v.(*DeleteEmailAddressRequest); i {
|
||||||
|
case 0:
|
||||||
|
return &v.state
|
||||||
|
case 1:
|
||||||
|
return &v.sizeCache
|
||||||
|
case 2:
|
||||||
|
return &v.unknownFields
|
||||||
|
default:
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
file_rpc_delete_email_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
||||||
|
switch v := v.(*DeleteEmailAddressResponse); i {
|
||||||
|
case 0:
|
||||||
|
return &v.state
|
||||||
|
case 1:
|
||||||
|
return &v.sizeCache
|
||||||
|
case 2:
|
||||||
|
return &v.unknownFields
|
||||||
|
default:
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
type x struct{}
|
||||||
|
out := protoimpl.TypeBuilder{
|
||||||
|
File: protoimpl.DescBuilder{
|
||||||
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||||
|
RawDescriptor: file_rpc_delete_email_proto_rawDesc,
|
||||||
|
NumEnums: 0,
|
||||||
|
NumMessages: 2,
|
||||||
|
NumExtensions: 0,
|
||||||
|
NumServices: 0,
|
||||||
|
},
|
||||||
|
GoTypes: file_rpc_delete_email_proto_goTypes,
|
||||||
|
DependencyIndexes: file_rpc_delete_email_proto_depIdxs,
|
||||||
|
MessageInfos: file_rpc_delete_email_proto_msgTypes,
|
||||||
|
}.Build()
|
||||||
|
File_rpc_delete_email_proto = out.File
|
||||||
|
file_rpc_delete_email_proto_rawDesc = nil
|
||||||
|
file_rpc_delete_email_proto_goTypes = nil
|
||||||
|
file_rpc_delete_email_proto_depIdxs = nil
|
||||||
|
}
|
@ -27,14 +27,15 @@ type UpdatePersonRequest struct {
|
|||||||
sizeCache protoimpl.SizeCache
|
sizeCache protoimpl.SizeCache
|
||||||
unknownFields protoimpl.UnknownFields
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
Id uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
Id uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
||||||
Firstname *string `protobuf:"bytes,2,opt,name=firstname,proto3,oneof" json:"firstname,omitempty"`
|
Firstname *string `protobuf:"bytes,2,opt,name=firstname,proto3,oneof" json:"firstname,omitempty"`
|
||||||
Lastname *string `protobuf:"bytes,3,opt,name=lastname,proto3,oneof" json:"lastname,omitempty"`
|
Lastname *string `protobuf:"bytes,3,opt,name=lastname,proto3,oneof" json:"lastname,omitempty"`
|
||||||
Street *string `protobuf:"bytes,4,opt,name=street,proto3,oneof" json:"street,omitempty"`
|
Street *string `protobuf:"bytes,4,opt,name=street,proto3,oneof" json:"street,omitempty"`
|
||||||
City *string `protobuf:"bytes,5,opt,name=city,proto3,oneof" json:"city,omitempty"`
|
City *string `protobuf:"bytes,5,opt,name=city,proto3,oneof" json:"city,omitempty"`
|
||||||
Zip *string `protobuf:"bytes,6,opt,name=zip,proto3,oneof" json:"zip,omitempty"`
|
Zip *string `protobuf:"bytes,6,opt,name=zip,proto3,oneof" json:"zip,omitempty"`
|
||||||
Country *string `protobuf:"bytes,7,opt,name=country,proto3,oneof" json:"country,omitempty"`
|
Country *string `protobuf:"bytes,7,opt,name=country,proto3,oneof" json:"country,omitempty"`
|
||||||
Birthday *timestamppb.Timestamp `protobuf:"bytes,8,opt,name=birthday,proto3,oneof" json:"birthday,omitempty"`
|
Relationship *string `protobuf:"bytes,8,opt,name=relationship,proto3,oneof" json:"relationship,omitempty"`
|
||||||
|
Birthday *timestamppb.Timestamp `protobuf:"bytes,9,opt,name=birthday,proto3,oneof" json:"birthday,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *UpdatePersonRequest) Reset() {
|
func (x *UpdatePersonRequest) Reset() {
|
||||||
@ -118,6 +119,13 @@ func (x *UpdatePersonRequest) GetCountry() string {
|
|||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (x *UpdatePersonRequest) GetRelationship() string {
|
||||||
|
if x != nil && x.Relationship != nil {
|
||||||
|
return *x.Relationship
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
func (x *UpdatePersonRequest) GetBirthday() *timestamppb.Timestamp {
|
func (x *UpdatePersonRequest) GetBirthday() *timestamppb.Timestamp {
|
||||||
if x != nil {
|
if x != nil {
|
||||||
return x.Birthday
|
return x.Birthday
|
||||||
@ -182,7 +190,7 @@ var file_rpc_update_person_proto_rawDesc = []byte{
|
|||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2d, 0x67, 0x65, 0x6e, 0x2d, 0x6f, 0x70, 0x65, 0x6e, 0x61,
|
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2d, 0x67, 0x65, 0x6e, 0x2d, 0x6f, 0x70, 0x65, 0x6e, 0x61,
|
||||||
0x70, 0x69, 0x76, 0x32, 0x2f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x61, 0x6e, 0x6e,
|
0x70, 0x69, 0x76, 0x32, 0x2f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x61, 0x6e, 0x6e,
|
||||||
0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x0c,
|
0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x0c,
|
||||||
0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xe7, 0x04, 0x0a,
|
0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xa1, 0x05, 0x0a,
|
||||||
0x13, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x71,
|
0x13, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x71,
|
||||||
0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04,
|
0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04,
|
||||||
0x52, 0x02, 0x69, 0x64, 0x12, 0x21, 0x0a, 0x09, 0x66, 0x69, 0x72, 0x73, 0x74, 0x6e, 0x61, 0x6d,
|
0x52, 0x02, 0x69, 0x64, 0x12, 0x21, 0x0a, 0x09, 0x66, 0x69, 0x72, 0x73, 0x74, 0x6e, 0x61, 0x6d,
|
||||||
@ -196,41 +204,45 @@ var file_rpc_update_person_proto_rawDesc = []byte{
|
|||||||
0x0a, 0x03, 0x7a, 0x69, 0x70, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x48, 0x04, 0x52, 0x03, 0x7a,
|
0x0a, 0x03, 0x7a, 0x69, 0x70, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x48, 0x04, 0x52, 0x03, 0x7a,
|
||||||
0x69, 0x70, 0x88, 0x01, 0x01, 0x12, 0x1d, 0x0a, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79,
|
0x69, 0x70, 0x88, 0x01, 0x01, 0x12, 0x1d, 0x0a, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79,
|
||||||
0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x48, 0x05, 0x52, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72,
|
0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x48, 0x05, 0x52, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72,
|
||||||
0x79, 0x88, 0x01, 0x01, 0x12, 0x58, 0x0a, 0x08, 0x62, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x79,
|
0x79, 0x88, 0x01, 0x01, 0x12, 0x27, 0x0a, 0x0c, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
||||||
0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
|
0x73, 0x68, 0x69, 0x70, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x48, 0x06, 0x52, 0x0c, 0x72, 0x65,
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,
|
0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x88, 0x01, 0x01, 0x12, 0x58, 0x0a,
|
||||||
0x6d, 0x70, 0x42, 0x1b, 0x92, 0x41, 0x18, 0x4a, 0x16, 0x22, 0x31, 0x39, 0x39, 0x30, 0x2d, 0x31,
|
0x08, 0x62, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x79, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32,
|
||||||
0x30, 0x2d, 0x30, 0x35, 0x54, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x5a, 0x22, 0x48,
|
0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
|
||||||
0x06, 0x52, 0x08, 0x62, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x79, 0x88, 0x01, 0x01, 0x3a, 0xe5,
|
0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x42, 0x1b, 0x92, 0x41, 0x18,
|
||||||
0x01, 0x92, 0x41, 0xe1, 0x01, 0x0a, 0x26, 0x2a, 0x0d, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20,
|
0x4a, 0x16, 0x22, 0x31, 0x39, 0x39, 0x30, 0x2d, 0x31, 0x30, 0x2d, 0x30, 0x35, 0x54, 0x30, 0x30,
|
||||||
0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x32, 0x10, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x61,
|
0x3a, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x5a, 0x22, 0x48, 0x07, 0x52, 0x08, 0x62, 0x69, 0x72, 0x74,
|
||||||
0x6e, 0x20, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0xd2, 0x01, 0x02, 0x69, 0x64, 0x32, 0xb6, 0x01,
|
0x68, 0x64, 0x61, 0x79, 0x88, 0x01, 0x01, 0x3a, 0xe5, 0x01, 0x92, 0x41, 0xe1, 0x01, 0x0a, 0x26,
|
||||||
0x7b, 0x22, 0x69, 0x64, 0x22, 0x3a, 0x20, 0x22, 0x31, 0x22, 0x2c, 0x20, 0x22, 0x66, 0x69, 0x72,
|
0x2a, 0x0d, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x32,
|
||||||
0x73, 0x74, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x3a, 0x20, 0x22, 0x4a, 0x6f, 0x68, 0x6e, 0x22, 0x2c,
|
0x10, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x61, 0x6e, 0x20, 0x50, 0x65, 0x72, 0x73, 0x6f,
|
||||||
0x20, 0x22, 0x6c, 0x61, 0x73, 0x74, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x3a, 0x20, 0x22, 0x44, 0x6f,
|
0x6e, 0xd2, 0x01, 0x02, 0x69, 0x64, 0x32, 0xb6, 0x01, 0x7b, 0x22, 0x69, 0x64, 0x22, 0x3a, 0x20,
|
||||||
0x65, 0x22, 0x2c, 0x20, 0x22, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x22, 0x3a, 0x20, 0x22, 0x22, 0x2c,
|
0x22, 0x31, 0x22, 0x2c, 0x20, 0x22, 0x66, 0x69, 0x72, 0x73, 0x74, 0x6e, 0x61, 0x6d, 0x65, 0x22,
|
||||||
0x20, 0x22, 0x73, 0x74, 0x72, 0x65, 0x65, 0x74, 0x22, 0x3a, 0x20, 0x22, 0x44, 0x65, 0x61, 0x74,
|
0x3a, 0x20, 0x22, 0x4a, 0x6f, 0x68, 0x6e, 0x22, 0x2c, 0x20, 0x22, 0x6c, 0x61, 0x73, 0x74, 0x6e,
|
||||||
0x68, 0x20, 0x53, 0x74, 0x61, 0x72, 0x20, 0x33, 0x22, 0x2c, 0x20, 0x22, 0x7a, 0x69, 0x70, 0x22,
|
0x61, 0x6d, 0x65, 0x22, 0x3a, 0x20, 0x22, 0x44, 0x6f, 0x65, 0x22, 0x2c, 0x20, 0x22, 0x70, 0x68,
|
||||||
0x3a, 0x20, 0x22, 0x30, 0x38, 0x31, 0x36, 0x22, 0x2c, 0x20, 0x22, 0x63, 0x69, 0x74, 0x79, 0x22,
|
0x6f, 0x6e, 0x65, 0x22, 0x3a, 0x20, 0x22, 0x22, 0x2c, 0x20, 0x22, 0x73, 0x74, 0x72, 0x65, 0x65,
|
||||||
0x3a, 0x20, 0x22, 0x4d, 0x6f, 0x6e, 0x74, 0x61, 0x6e, 0x61, 0x22, 0x2c, 0x20, 0x22, 0x63, 0x6f,
|
0x74, 0x22, 0x3a, 0x20, 0x22, 0x44, 0x65, 0x61, 0x74, 0x68, 0x20, 0x53, 0x74, 0x61, 0x72, 0x20,
|
||||||
0x75, 0x6e, 0x74, 0x72, 0x79, 0x22, 0x3a, 0x20, 0x22, 0x43, 0x61, 0x6e, 0x61, 0x64, 0x61, 0x22,
|
0x33, 0x22, 0x2c, 0x20, 0x22, 0x7a, 0x69, 0x70, 0x22, 0x3a, 0x20, 0x22, 0x30, 0x38, 0x31, 0x36,
|
||||||
0x2c, 0x20, 0x22, 0x62, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x79, 0x22, 0x3a, 0x20, 0x22, 0x31,
|
0x22, 0x2c, 0x20, 0x22, 0x63, 0x69, 0x74, 0x79, 0x22, 0x3a, 0x20, 0x22, 0x4d, 0x6f, 0x6e, 0x74,
|
||||||
0x39, 0x39, 0x32, 0x2d, 0x31, 0x30, 0x2d, 0x30, 0x35, 0x54, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x3a,
|
0x61, 0x6e, 0x61, 0x22, 0x2c, 0x20, 0x22, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x22, 0x3a,
|
||||||
0x30, 0x30, 0x5a, 0x22, 0x20, 0x7d, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x66, 0x69, 0x72, 0x73, 0x74,
|
0x20, 0x22, 0x43, 0x61, 0x6e, 0x61, 0x64, 0x61, 0x22, 0x2c, 0x20, 0x22, 0x62, 0x69, 0x72, 0x74,
|
||||||
0x6e, 0x61, 0x6d, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x6c, 0x61, 0x73, 0x74, 0x6e, 0x61, 0x6d,
|
0x68, 0x64, 0x61, 0x79, 0x22, 0x3a, 0x20, 0x22, 0x31, 0x39, 0x39, 0x32, 0x2d, 0x31, 0x30, 0x2d,
|
||||||
0x65, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x73, 0x74, 0x72, 0x65, 0x65, 0x74, 0x42, 0x07, 0x0a, 0x05,
|
0x30, 0x35, 0x54, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x5a, 0x22, 0x20, 0x7d, 0x42,
|
||||||
0x5f, 0x63, 0x69, 0x74, 0x79, 0x42, 0x06, 0x0a, 0x04, 0x5f, 0x7a, 0x69, 0x70, 0x42, 0x0a, 0x0a,
|
0x0c, 0x0a, 0x0a, 0x5f, 0x66, 0x69, 0x72, 0x73, 0x74, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x0b, 0x0a,
|
||||||
0x08, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x62, 0x69,
|
0x09, 0x5f, 0x6c, 0x61, 0x73, 0x74, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x73,
|
||||||
0x72, 0x74, 0x68, 0x64, 0x61, 0x79, 0x22, 0x72, 0x0a, 0x14, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
|
0x74, 0x72, 0x65, 0x65, 0x74, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x63, 0x69, 0x74, 0x79, 0x42, 0x06,
|
||||||
0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x27,
|
0x0a, 0x04, 0x5f, 0x7a, 0x69, 0x70, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74,
|
||||||
0x0a, 0x06, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0a,
|
0x72, 0x79, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73,
|
||||||
0x2e, 0x70, 0x62, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x42, 0x03, 0x92, 0x41, 0x00, 0x52,
|
0x68, 0x69, 0x70, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x62, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x79,
|
||||||
0x06, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x3a, 0x31, 0x92, 0x41, 0x2e, 0x0a, 0x2c, 0x2a, 0x0e,
|
0x22, 0x72, 0x0a, 0x14, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
|
||||||
0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x20, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x32, 0x1a,
|
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x27, 0x0a, 0x06, 0x70, 0x65, 0x72, 0x73,
|
||||||
0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x73, 0x20, 0x74, 0x68, 0x65, 0x20, 0x75, 0x70, 0x64, 0x61,
|
0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x70, 0x62, 0x2e, 0x50, 0x65,
|
||||||
0x74, 0x65, 0x64, 0x20, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x42, 0x19, 0x5a, 0x17, 0x67, 0x69,
|
0x72, 0x73, 0x6f, 0x6e, 0x42, 0x03, 0x92, 0x41, 0x00, 0x52, 0x06, 0x70, 0x65, 0x72, 0x73, 0x6f,
|
||||||
0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x69, 0x74, 0x73, 0x73, 0x63, 0x62, 0x2f,
|
0x6e, 0x3a, 0x31, 0x92, 0x41, 0x2e, 0x0a, 0x2c, 0x2a, 0x0e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
|
||||||
0x64, 0x66, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
0x64, 0x20, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x32, 0x1a, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e,
|
||||||
|
0x73, 0x20, 0x74, 0x68, 0x65, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x20, 0x50, 0x65,
|
||||||
|
0x72, 0x73, 0x6f, 0x6e, 0x42, 0x19, 0x5a, 0x17, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63,
|
||||||
|
0x6f, 0x6d, 0x2f, 0x69, 0x74, 0x73, 0x73, 0x63, 0x62, 0x2f, 0x64, 0x66, 0x2f, 0x70, 0x62, 0x62,
|
||||||
|
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||||
}
|
}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
@ -45,329 +45,351 @@ var file_service_df_proto_rawDesc = []byte{
|
|||||||
0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x72, 0x70, 0x63, 0x5f, 0x75,
|
0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x72, 0x70, 0x63, 0x5f, 0x75,
|
||||||
0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f,
|
0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f,
|
||||||
0x74, 0x6f, 0x1a, 0x17, 0x72, 0x70, 0x63, 0x5f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x5f, 0x70,
|
0x74, 0x6f, 0x1a, 0x17, 0x72, 0x70, 0x63, 0x5f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x5f, 0x70,
|
||||||
0x65, 0x72, 0x73, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x18, 0x72, 0x70, 0x63,
|
0x65, 0x72, 0x73, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x13, 0x72, 0x70, 0x63,
|
||||||
0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e,
|
0x5f, 0x61, 0x64, 0x64, 0x5f, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x15, 0x72, 0x70, 0x63, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x61,
|
0x1a, 0x14, 0x72, 0x70, 0x63, 0x5f, 0x61, 0x64, 0x64, 0x5f, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x73,
|
||||||
0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x72, 0x70,
|
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x18, 0x72, 0x70, 0x63, 0x5f, 0x63, 0x72, 0x65, 0x61,
|
||||||
0x63, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x2e,
|
0x74, 0x65, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x18, 0x72, 0x70, 0x63, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74,
|
0x1a, 0x15, 0x72, 0x70, 0x63, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e,
|
||||||
0x65, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
|
0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x72, 0x70, 0x63, 0x5f, 0x6c, 0x69, 0x73,
|
||||||
0x20, 0x72, 0x70, 0x63, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x61, 0x63, 0x63, 0x6f,
|
0x74, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
||||||
0x75, 0x6e, 0x74, 0x5f, 0x70, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
0x1a, 0x18, 0x72, 0x70, 0x63, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x61, 0x63, 0x63,
|
||||||
0x6f, 0x1a, 0x1d, 0x72, 0x70, 0x63, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x61, 0x63,
|
0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x72, 0x70, 0x63, 0x5f,
|
||||||
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x70,
|
||||||
0x1a, 0x1a, 0x72, 0x70, 0x63, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e,
|
0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1d, 0x72, 0x70,
|
||||||
0x74, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x72, 0x70,
|
0x63, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
|
||||||
0x63, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69,
|
0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1a, 0x72, 0x70, 0x63,
|
||||||
0x6e, 0x66, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1d, 0x72, 0x70, 0x63, 0x5f, 0x75,
|
0x5f, 0x67, 0x65, 0x74, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x6e, 0x66,
|
||||||
0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x6e,
|
0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x72, 0x70, 0x63, 0x5f, 0x6c, 0x69, 0x73,
|
||||||
0x66, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x0f, 0x72, 0x70, 0x63, 0x5f, 0x6c, 0x6f,
|
0x74, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x70,
|
||||||
0x67, 0x69, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x72, 0x70, 0x63, 0x5f, 0x6c,
|
0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1d, 0x72, 0x70, 0x63, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
|
||||||
0x69, 0x73, 0x74, 0x5f, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f,
|
0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x70, 0x72,
|
||||||
0x74, 0x6f, 0x1a, 0x17, 0x72, 0x70, 0x63, 0x5f, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x5f,
|
0x6f, 0x74, 0x6f, 0x1a, 0x0f, 0x72, 0x70, 0x63, 0x5f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x2e, 0x70,
|
||||||
0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x72, 0x70, 0x63,
|
0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x72, 0x70, 0x63, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x73,
|
||||||
0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x70,
|
0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x72,
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x27, 0x72, 0x70, 0x63, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x72,
|
0x70, 0x63, 0x5f, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e,
|
||||||
0x65, 0x74, 0x75, 0x72, 0x6e, 0x73, 0x5f, 0x6c, 0x6f, 0x67, 0x5f, 0x62, 0x79, 0x5f, 0x70, 0x65,
|
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x72, 0x70, 0x63, 0x5f, 0x62, 0x6c, 0x6f, 0x63,
|
||||||
0x72, 0x73, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x19, 0x72,
|
0x6b, 0x5f, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
|
||||||
0x70, 0x63, 0x5f, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65,
|
0x27, 0x72, 0x70, 0x63, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e,
|
||||||
0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x19, 0x72, 0x70, 0x63, 0x5f, 0x64, 0x65,
|
0x73, 0x5f, 0x6c, 0x6f, 0x67, 0x5f, 0x62, 0x79, 0x5f, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x5f,
|
||||||
0x6c, 0x65, 0x74, 0x65, 0x5f, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x72,
|
0x69, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x19, 0x72, 0x70, 0x63, 0x5f, 0x75, 0x70,
|
||||||
0x6f, 0x74, 0x6f, 0x1a, 0x16, 0x72, 0x70, 0x63, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x79, 0x5f,
|
0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x72,
|
||||||
0x65, 0x6d, 0x61, 0x69, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1d, 0x72, 0x70, 0x63,
|
0x6f, 0x74, 0x6f, 0x1a, 0x19, 0x72, 0x70, 0x63, 0x5f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x5f,
|
||||||
0x5f, 0x72, 0x65, 0x73, 0x65, 0x6e, 0x64, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61,
|
0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x16,
|
||||||
0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x32, 0xf5, 0x22, 0x0a, 0x02, 0x64,
|
0x72, 0x70, 0x63, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x79, 0x5f, 0x65, 0x6d, 0x61, 0x69, 0x6c,
|
||||||
0x66, 0x12, 0x42, 0x0a, 0x05, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x12, 0x10, 0x2e, 0x70, 0x62, 0x2e,
|
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1d, 0x72, 0x70, 0x63, 0x5f, 0x72, 0x65, 0x73, 0x65,
|
||||||
0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x11, 0x2e, 0x70,
|
0x6e, 0x64, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e,
|
||||||
0x62, 0x2e, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
|
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x32, 0xac, 0x25, 0x0a, 0x02, 0x64, 0x66, 0x12, 0x42, 0x0a, 0x05,
|
||||||
0x14, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x0e, 0x3a, 0x01, 0x2a, 0x22, 0x09, 0x2f, 0x76, 0x31, 0x2f,
|
0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x12, 0x10, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x6f, 0x67, 0x69, 0x6e,
|
||||||
0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x12, 0x68, 0x0a, 0x0c, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68,
|
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x11, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x6f, 0x67,
|
||||||
0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x17, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x66, 0x72, 0x65,
|
0x69, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x14, 0x82, 0xd3, 0xe4, 0x93,
|
||||||
0x73, 0x68, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x18,
|
0x02, 0x0e, 0x3a, 0x01, 0x2a, 0x22, 0x09, 0x2f, 0x76, 0x31, 0x2f, 0x6c, 0x6f, 0x67, 0x69, 0x6e,
|
||||||
0x2e, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x54, 0x6f, 0x6b, 0x65, 0x6e,
|
0x12, 0x68, 0x0a, 0x0c, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x54, 0x6f, 0x6b, 0x65, 0x6e,
|
||||||
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f,
|
0x12, 0x17, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x54, 0x6f, 0x6b,
|
||||||
0x3a, 0x01, 0x2a, 0x22, 0x1a, 0x2f, 0x76, 0x31, 0x2f, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e,
|
0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x18, 0x2e, 0x70, 0x62, 0x2e, 0x52,
|
||||||
0x73, 0x2f, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x12,
|
0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
||||||
0xa4, 0x01, 0x0a, 0x0c, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73,
|
0x6e, 0x73, 0x65, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x3a, 0x01, 0x2a, 0x22, 0x1a,
|
||||||
0x12, 0x17, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f,
|
0x2f, 0x76, 0x31, 0x2f, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x72, 0x65, 0x66,
|
||||||
0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x18, 0x2e, 0x70, 0x62, 0x2e, 0x4c,
|
0x72, 0x65, 0x73, 0x68, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0xa4, 0x01, 0x0a, 0x0c, 0x4c,
|
||||||
0x69, 0x73, 0x74, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
0x69, 0x73, 0x74, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x17, 0x2e, 0x70, 0x62,
|
||||||
0x6e, 0x73, 0x65, 0x22, 0x61, 0x92, 0x41, 0x2f, 0x12, 0x1b, 0x4c, 0x69, 0x73, 0x74, 0x20, 0x53,
|
0x2e, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71,
|
||||||
0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x62, 0x79, 0x20, 0x61, 0x63, 0x63, 0x6f, 0x75,
|
0x75, 0x65, 0x73, 0x74, 0x1a, 0x18, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x65,
|
||||||
0x6e, 0x74, 0x5f, 0x69, 0x64, 0x62, 0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72, 0x65,
|
0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x61,
|
||||||
0x72, 0x41, 0x75, 0x74, 0x68, 0x12, 0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x29, 0x12, 0x27, 0x2f,
|
0x92, 0x41, 0x2f, 0x12, 0x1b, 0x4c, 0x69, 0x73, 0x74, 0x20, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f,
|
||||||
0x76, 0x31, 0x2f, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x6c, 0x69, 0x73, 0x74,
|
0x6e, 0x73, 0x20, 0x62, 0x79, 0x20, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x64,
|
||||||
0x5f, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x7b, 0x61, 0x63, 0x63, 0x6f, 0x75,
|
0x62, 0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68,
|
||||||
0x6e, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x12, 0x92, 0x01, 0x0a, 0x0c, 0x42, 0x6c, 0x6f, 0x63, 0x6b,
|
0x12, 0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x29, 0x12, 0x27, 0x2f, 0x76, 0x31, 0x2f, 0x73, 0x65,
|
||||||
0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x17, 0x2e, 0x70, 0x62, 0x2e, 0x42, 0x6c, 0x6f,
|
0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x73, 0x65, 0x73, 0x73,
|
||||||
0x63, 0x6b, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x7b, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x64,
|
||||||
0x1a, 0x18, 0x2e, 0x70, 0x62, 0x2e, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x53, 0x65, 0x73, 0x73, 0x69,
|
0x7d, 0x12, 0x92, 0x01, 0x0a, 0x0c, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x53, 0x65, 0x73, 0x73, 0x69,
|
||||||
0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x4f, 0x92, 0x41, 0x27, 0x12,
|
0x6f, 0x6e, 0x12, 0x17, 0x2e, 0x70, 0x62, 0x2e, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x53, 0x65, 0x73,
|
||||||
0x13, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x20, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x20, 0x62,
|
0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x18, 0x2e, 0x70, 0x62,
|
||||||
0x79, 0x20, 0x49, 0x44, 0x62, 0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72,
|
0x2e, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73,
|
||||||
0x41, 0x75, 0x74, 0x68, 0x12, 0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x3a, 0x01, 0x2a, 0x32,
|
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x4f, 0x92, 0x41, 0x27, 0x12, 0x13, 0x42, 0x6c, 0x6f, 0x63,
|
||||||
0x1a, 0x2f, 0x76, 0x31, 0x2f, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x62, 0x6c,
|
0x6b, 0x20, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x20, 0x62, 0x79, 0x20, 0x49, 0x44, 0x62,
|
||||||
0x6f, 0x63, 0x6b, 0x5f, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x92, 0x01, 0x0a, 0x0a,
|
0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x12,
|
||||||
0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x15, 0x2e, 0x70, 0x62, 0x2e,
|
0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x3a, 0x01, 0x2a, 0x32, 0x1a, 0x2f, 0x76, 0x31, 0x2f,
|
||||||
0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x73,
|
||||||
0x74, 0x1a, 0x16, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
|
0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x92, 0x01, 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x41, 0x63,
|
||||||
0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x55, 0x92, 0x41, 0x2d, 0x12, 0x19,
|
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x15, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x63,
|
||||||
0x47, 0x65, 0x74, 0x20, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x20, 0x62, 0x79, 0x20, 0x61,
|
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x70,
|
||||||
0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x62, 0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42,
|
0x62, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70,
|
||||||
0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x12, 0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02,
|
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x55, 0x92, 0x41, 0x2d, 0x12, 0x19, 0x47, 0x65, 0x74, 0x20, 0x41,
|
||||||
0x1f, 0x12, 0x1d, 0x2f, 0x76, 0x31, 0x2f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x2f,
|
0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x20, 0x62, 0x79, 0x20, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e,
|
||||||
0x67, 0x65, 0x74, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2f, 0x7b, 0x69, 0x64, 0x7d,
|
0x74, 0x5f, 0x69, 0x64, 0x62, 0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72,
|
||||||
0x12, 0x96, 0x01, 0x0a, 0x0c, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
|
0x41, 0x75, 0x74, 0x68, 0x12, 0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x12, 0x1d, 0x2f, 0x76,
|
||||||
0x73, 0x12, 0x17, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75,
|
0x31, 0x2f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x2f, 0x67, 0x65, 0x74, 0x5f, 0x61,
|
||||||
0x6e, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x18, 0x2e, 0x70, 0x62, 0x2e,
|
0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x12, 0x96, 0x01, 0x0a, 0x0c,
|
||||||
0x4c, 0x69, 0x73, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70,
|
0x4c, 0x69, 0x73, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x12, 0x17, 0x2e, 0x70,
|
||||||
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x53, 0x92, 0x41, 0x2e, 0x12, 0x1a, 0x4c, 0x69, 0x73, 0x74, 0x20,
|
0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x52, 0x65,
|
||||||
0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x20, 0x5b, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x20,
|
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x18, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x41,
|
||||||
0x6f, 0x6e, 0x6c, 0x79, 0x5d, 0x62, 0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72, 0x65,
|
0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
|
||||||
0x72, 0x41, 0x75, 0x74, 0x68, 0x12, 0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x12, 0x1a, 0x2f,
|
0x53, 0x92, 0x41, 0x2e, 0x12, 0x1a, 0x4c, 0x69, 0x73, 0x74, 0x20, 0x41, 0x63, 0x63, 0x6f, 0x75,
|
||||||
0x76, 0x31, 0x2f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x2f, 0x6c, 0x69, 0x73, 0x74,
|
0x6e, 0x74, 0x73, 0x20, 0x5b, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x5d,
|
||||||
0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x12, 0x83, 0x01, 0x0a, 0x0d, 0x43, 0x72,
|
0x62, 0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68,
|
||||||
0x65, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x18, 0x2e, 0x70, 0x62,
|
0x12, 0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x12, 0x1a, 0x2f, 0x76, 0x31, 0x2f, 0x61, 0x63,
|
||||||
0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65,
|
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x61, 0x63, 0x63, 0x6f,
|
||||||
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74,
|
0x75, 0x6e, 0x74, 0x73, 0x12, 0x83, 0x01, 0x0a, 0x0d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41,
|
||||||
0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x18, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x72, 0x65, 0x61,
|
||||||
0x22, 0x3d, 0x92, 0x41, 0x14, 0x12, 0x12, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x20, 0x41, 0x63,
|
0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
||||||
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x3a,
|
0x1a, 0x19, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f,
|
||||||
0x01, 0x2a, 0x22, 0x1b, 0x2f, 0x76, 0x31, 0x2f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73,
|
0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x3d, 0x92, 0x41, 0x14,
|
||||||
0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12,
|
0x12, 0x12, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x20, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
|
||||||
0x91, 0x01, 0x0a, 0x0d, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
|
0x49, 0x6e, 0x66, 0x6f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x3a, 0x01, 0x2a, 0x22, 0x1b, 0x2f,
|
||||||
0x74, 0x12, 0x18, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63,
|
0x76, 0x31, 0x2f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x2f, 0x63, 0x72, 0x65, 0x61,
|
||||||
0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x70, 0x62,
|
0x74, 0x65, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x91, 0x01, 0x0a, 0x0d, 0x55,
|
||||||
0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65,
|
0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x18, 0x2e, 0x70,
|
||||||
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x4b, 0x92, 0x41, 0x22, 0x12, 0x0e, 0x55, 0x70, 0x64,
|
0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52,
|
||||||
0x61, 0x74, 0x65, 0x20, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x62, 0x10, 0x0a, 0x0e, 0x0a,
|
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61,
|
||||||
0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x12, 0x00, 0x82, 0xd3, 0xe4,
|
0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
||||||
0x93, 0x02, 0x20, 0x3a, 0x01, 0x2a, 0x32, 0x1b, 0x2f, 0x76, 0x31, 0x2f, 0x61, 0x63, 0x63, 0x6f,
|
0x65, 0x22, 0x4b, 0x92, 0x41, 0x22, 0x12, 0x0e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x41,
|
||||||
0x75, 0x6e, 0x74, 0x73, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x61, 0x63, 0x63, 0x6f,
|
0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x62, 0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72,
|
||||||
0x75, 0x6e, 0x74, 0x12, 0xaf, 0x01, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75,
|
0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x12, 0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x3a, 0x01,
|
||||||
0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x19, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x41,
|
0x2a, 0x32, 0x1b, 0x2f, 0x76, 0x31, 0x2f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x2f,
|
||||||
0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0xaf,
|
||||||
0x74, 0x1a, 0x1a, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
|
0x01, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x6e, 0x66,
|
||||||
0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x66, 0x92,
|
0x6f, 0x12, 0x19, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
|
||||||
0x41, 0x31, 0x12, 0x1d, 0x47, 0x65, 0x74, 0x20, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49,
|
0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x70,
|
||||||
0x6e, 0x66, 0x6f, 0x20, 0x62, 0x79, 0x20, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69,
|
0x62, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f,
|
||||||
0x64, 0x62, 0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75, 0x74,
|
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x66, 0x92, 0x41, 0x31, 0x12, 0x1d, 0x47,
|
||||||
0x68, 0x12, 0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2c, 0x12, 0x2a, 0x2f, 0x76, 0x31, 0x2f, 0x61,
|
0x65, 0x74, 0x20, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x20, 0x62,
|
||||||
0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x2f, 0x67, 0x65, 0x74, 0x5f, 0x61, 0x63, 0x63, 0x6f,
|
0x79, 0x20, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x62, 0x10, 0x0a, 0x0e,
|
||||||
0x75, 0x6e, 0x74, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x2f, 0x7b, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e,
|
0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x12, 0x00, 0x82, 0xd3,
|
||||||
0x74, 0x5f, 0x69, 0x64, 0x7d, 0x12, 0xa7, 0x01, 0x0a, 0x0f, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x63,
|
0xe4, 0x93, 0x02, 0x2c, 0x12, 0x2a, 0x2f, 0x76, 0x31, 0x2f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e,
|
||||||
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1a, 0x2e, 0x70, 0x62, 0x2e, 0x4c,
|
0x74, 0x73, 0x2f, 0x67, 0x65, 0x74, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69,
|
||||||
0x69, 0x73, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65,
|
0x6e, 0x66, 0x6f, 0x2f, 0x7b, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x7d,
|
||||||
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x41,
|
0x12, 0xa7, 0x01, 0x0a, 0x0f, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
|
||||||
0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1a, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x63,
|
||||||
0x73, 0x65, 0x22, 0x5b, 0x92, 0x41, 0x32, 0x12, 0x1e, 0x4c, 0x69, 0x73, 0x74, 0x20, 0x41, 0x63,
|
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
||||||
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x73, 0x20, 0x5b, 0x61, 0x64, 0x6d, 0x69,
|
0x1a, 0x1b, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
|
||||||
0x6e, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x5d, 0x62, 0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61,
|
0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5b, 0x92,
|
||||||
0x72, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x12, 0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x12,
|
0x41, 0x32, 0x12, 0x1e, 0x4c, 0x69, 0x73, 0x74, 0x20, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
|
||||||
0x1e, 0x2f, 0x76, 0x31, 0x2f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x2f, 0x6c, 0x69,
|
0x49, 0x6e, 0x66, 0x6f, 0x73, 0x20, 0x5b, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x20, 0x6f, 0x6e, 0x6c,
|
||||||
0x73, 0x74, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x12,
|
0x79, 0x5d, 0x62, 0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75,
|
||||||
0xa6, 0x01, 0x0a, 0x11, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
|
0x74, 0x68, 0x12, 0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x12, 0x1e, 0x2f, 0x76, 0x31, 0x2f,
|
||||||
0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1c, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74,
|
0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x61, 0x63,
|
||||||
0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75,
|
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x12, 0xa6, 0x01, 0x0a, 0x11, 0x43,
|
||||||
0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41,
|
0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f,
|
||||||
0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
0x12, 0x1c, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f,
|
||||||
0x73, 0x65, 0x22, 0x54, 0x92, 0x41, 0x26, 0x12, 0x12, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x20,
|
0x75, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d,
|
||||||
0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x62, 0x10, 0x0a, 0x0e, 0x0a,
|
0x2e, 0x70, 0x62, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
|
||||||
0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x12, 0x00, 0x82, 0xd3, 0xe4,
|
0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x54, 0x92,
|
||||||
0x93, 0x02, 0x25, 0x3a, 0x01, 0x2a, 0x22, 0x20, 0x2f, 0x76, 0x31, 0x2f, 0x61, 0x63, 0x63, 0x6f,
|
0x41, 0x26, 0x12, 0x12, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x20, 0x41, 0x63, 0x63, 0x6f, 0x75,
|
||||||
0x75, 0x6e, 0x74, 0x73, 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x61, 0x63, 0x63, 0x6f,
|
0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x62, 0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72,
|
||||||
0x75, 0x6e, 0x74, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x12, 0xa6, 0x01, 0x0a, 0x11, 0x55, 0x70, 0x64,
|
0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x12, 0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x25, 0x3a, 0x01,
|
||||||
0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1c,
|
0x2a, 0x22, 0x20, 0x2f, 0x76, 0x31, 0x2f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x2f,
|
||||||
0x2e, 0x70, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
|
0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69,
|
||||||
0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x70,
|
0x6e, 0x66, 0x6f, 0x12, 0xa6, 0x01, 0x0a, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x63,
|
||||||
0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49,
|
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1c, 0x2e, 0x70, 0x62, 0x2e, 0x55,
|
||||||
0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x54, 0x92, 0x41, 0x26,
|
0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f,
|
||||||
0x12, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
|
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x70, 0x64,
|
||||||
0x49, 0x6e, 0x66, 0x6f, 0x62, 0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72,
|
0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65,
|
||||||
0x41, 0x75, 0x74, 0x68, 0x12, 0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x25, 0x3a, 0x01, 0x2a, 0x32,
|
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x54, 0x92, 0x41, 0x26, 0x12, 0x12, 0x55, 0x70, 0x64,
|
||||||
0x20, 0x2f, 0x76, 0x31, 0x2f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x2f, 0x75, 0x70,
|
0x61, 0x74, 0x65, 0x20, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x62,
|
||||||
0x64, 0x61, 0x74, 0x65, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x6e, 0x66,
|
0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x12,
|
||||||
0x6f, 0x12, 0xbf, 0x01, 0x0a, 0x14, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f,
|
0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x25, 0x3a, 0x01, 0x2a, 0x32, 0x20, 0x2f, 0x76, 0x31, 0x2f,
|
||||||
0x75, 0x6e, 0x74, 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x12, 0x1f, 0x2e, 0x70, 0x62, 0x2e,
|
0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f,
|
||||||
0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x50, 0x72, 0x69,
|
0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x12, 0xbf, 0x01, 0x0a,
|
||||||
0x76, 0x61, 0x63, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x70, 0x62,
|
0x14, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x50, 0x72,
|
||||||
0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x50, 0x72,
|
0x69, 0x76, 0x61, 0x63, 0x79, 0x12, 0x1f, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74,
|
||||||
0x69, 0x76, 0x61, 0x63, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x64, 0x92,
|
0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x52,
|
||||||
0x41, 0x33, 0x12, 0x1f, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x41, 0x63, 0x63, 0x6f, 0x75,
|
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61,
|
||||||
0x6e, 0x74, 0x20, 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x20, 0x53, 0x65, 0x74, 0x74, 0x69,
|
0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79,
|
||||||
0x6e, 0x67, 0x73, 0x62, 0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x41,
|
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x64, 0x92, 0x41, 0x33, 0x12, 0x1f, 0x55,
|
||||||
0x75, 0x74, 0x68, 0x12, 0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x28, 0x3a, 0x01, 0x2a, 0x32, 0x23,
|
0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x20, 0x50, 0x72,
|
||||||
0x2f, 0x76, 0x31, 0x2f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x2f, 0x75, 0x70, 0x64,
|
0x69, 0x76, 0x61, 0x63, 0x79, 0x20, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x62, 0x10,
|
||||||
0x61, 0x74, 0x65, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x70, 0x72, 0x69, 0x76,
|
|
||||||
0x61, 0x63, 0x79, 0x12, 0x8b, 0x01, 0x0a, 0x0c, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x65,
|
|
||||||
0x72, 0x73, 0x6f, 0x6e, 0x12, 0x17, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
|
|
||||||
0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x18, 0x2e,
|
|
||||||
0x70, 0x62, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52,
|
|
||||||
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x48, 0x92, 0x41, 0x21, 0x12, 0x0d, 0x43, 0x72,
|
|
||||||
0x65, 0x61, 0x74, 0x65, 0x20, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x62, 0x10, 0x0a, 0x0e, 0x0a,
|
|
||||||
0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x12, 0x00, 0x82, 0xd3, 0xe4,
|
|
||||||
0x93, 0x02, 0x1e, 0x3a, 0x01, 0x2a, 0x22, 0x19, 0x2f, 0x76, 0x31, 0x2f, 0x70, 0x65, 0x72, 0x73,
|
|
||||||
0x6f, 0x6e, 0x73, 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x73, 0x6f,
|
|
||||||
0x6e, 0x12, 0x8b, 0x01, 0x0a, 0x0c, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73,
|
|
||||||
0x6f, 0x6e, 0x12, 0x17, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65,
|
|
||||||
0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x18, 0x2e, 0x70, 0x62,
|
|
||||||
0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x73,
|
|
||||||
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x48, 0x92, 0x41, 0x21, 0x12, 0x0d, 0x55, 0x70, 0x64, 0x61,
|
|
||||||
0x74, 0x65, 0x20, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x62, 0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42,
|
|
||||||
0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x12, 0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02,
|
|
||||||
0x1e, 0x3a, 0x01, 0x2a, 0x32, 0x19, 0x2f, 0x76, 0x31, 0x2f, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
|
|
||||||
0x73, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12,
|
|
||||||
0x84, 0x01, 0x0a, 0x09, 0x47, 0x65, 0x74, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x14, 0x2e,
|
|
||||||
0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75,
|
|
||||||
0x65, 0x73, 0x74, 0x1a, 0x15, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x65, 0x72, 0x73,
|
|
||||||
0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x4a, 0x92, 0x41, 0x24, 0x12,
|
|
||||||
0x10, 0x47, 0x65, 0x74, 0x20, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x20, 0x62, 0x79, 0x20, 0x49,
|
|
||||||
0x44, 0x62, 0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75, 0x74,
|
|
||||||
0x68, 0x12, 0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x12, 0x1b, 0x2f, 0x76, 0x31, 0x2f, 0x70,
|
|
||||||
0x65, 0x72, 0x73, 0x6f, 0x6e, 0x73, 0x2f, 0x67, 0x65, 0x74, 0x5f, 0x70, 0x65, 0x72, 0x73, 0x6f,
|
|
||||||
0x6e, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x12, 0x93, 0x01, 0x0a, 0x0c, 0x44, 0x65, 0x6c, 0x65, 0x74,
|
|
||||||
0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x17, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x6c,
|
|
||||||
0x65, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
||||||
0x1a, 0x18, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73,
|
|
||||||
0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x50, 0x92, 0x41, 0x27, 0x12,
|
|
||||||
0x13, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x20, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x20, 0x62,
|
|
||||||
0x79, 0x20, 0x49, 0x44, 0x62, 0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72,
|
|
||||||
0x41, 0x75, 0x74, 0x68, 0x12, 0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x2a, 0x1e, 0x2f, 0x76,
|
|
||||||
0x31, 0x2f, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x73, 0x2f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65,
|
|
||||||
0x5f, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x12, 0x9e, 0x01, 0x0a,
|
|
||||||
0x0b, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x73, 0x12, 0x16, 0x2e, 0x70,
|
|
||||||
0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71,
|
|
||||||
0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x65,
|
|
||||||
0x72, 0x73, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5e, 0x92,
|
|
||||||
0x41, 0x2e, 0x12, 0x1a, 0x4c, 0x69, 0x73, 0x74, 0x20, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x73,
|
|
||||||
0x20, 0x62, 0x79, 0x20, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x62, 0x10,
|
|
||||||
0x0a, 0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x12, 0x00,
|
0x0a, 0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x12, 0x00,
|
||||||
0x82, 0xd3, 0xe4, 0x93, 0x02, 0x27, 0x12, 0x25, 0x2f, 0x76, 0x31, 0x2f, 0x70, 0x65, 0x72, 0x73,
|
0x82, 0xd3, 0xe4, 0x93, 0x02, 0x28, 0x3a, 0x01, 0x2a, 0x32, 0x23, 0x2f, 0x76, 0x31, 0x2f, 0x61,
|
||||||
0x6f, 0x6e, 0x73, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x73,
|
0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x61,
|
||||||
0x2f, 0x7b, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x12, 0x91, 0x01,
|
0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x70, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x12, 0x94,
|
||||||
0x0a, 0x0d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x12,
|
0x01, 0x0a, 0x0f, 0x41, 0x64, 0x64, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x41, 0x64, 0x64, 0x72, 0x65,
|
||||||
0x18, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x61, 0x79, 0x6d, 0x65,
|
0x73, 0x73, 0x12, 0x1a, 0x2e, 0x70, 0x62, 0x2e, 0x41, 0x64, 0x64, 0x45, 0x6d, 0x61, 0x69, 0x6c,
|
||||||
0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x70, 0x62, 0x2e, 0x43,
|
0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b,
|
||||||
0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70,
|
0x2e, 0x70, 0x62, 0x2e, 0x41, 0x64, 0x64, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x41, 0x64, 0x64, 0x72,
|
||||||
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x4b, 0x92, 0x41, 0x22, 0x12, 0x0e, 0x43, 0x72, 0x65, 0x61, 0x74,
|
0x65, 0x73, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x48, 0x92, 0x41, 0x25,
|
||||||
0x65, 0x20, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x62, 0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42,
|
0x12, 0x11, 0x41, 0x64, 0x64, 0x20, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x20, 0x41, 0x64, 0x64, 0x72,
|
||||||
0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x12, 0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02,
|
0x65, 0x73, 0x73, 0x62, 0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x41,
|
||||||
0x20, 0x3a, 0x01, 0x2a, 0x22, 0x1b, 0x2f, 0x76, 0x31, 0x2f, 0x70, 0x61, 0x79, 0x6d, 0x65, 0x6e,
|
0x75, 0x74, 0x68, 0x12, 0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x3a, 0x01, 0x2a, 0x22, 0x15,
|
||||||
0x74, 0x73, 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x70, 0x61, 0x79, 0x6d, 0x65, 0x6e,
|
0x2f, 0x76, 0x31, 0x2f, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x73, 0x2f, 0x61, 0x64, 0x64, 0x5f,
|
||||||
0x74, 0x12, 0x8a, 0x01, 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74,
|
0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x9d, 0x01, 0x0a, 0x11, 0x41, 0x64, 0x64, 0x45, 0x6d, 0x61,
|
||||||
0x12, 0x15, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74,
|
0x69, 0x6c, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x65, 0x73, 0x12, 0x1c, 0x2e, 0x70, 0x62,
|
||||||
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74,
|
0x2e, 0x41, 0x64, 0x64, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73,
|
||||||
0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
|
0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x70, 0x62, 0x2e, 0x41,
|
||||||
0x4d, 0x92, 0x41, 0x25, 0x12, 0x11, 0x47, 0x65, 0x74, 0x20, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e,
|
0x64, 0x64, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x65, 0x73,
|
||||||
0x74, 0x20, 0x62, 0x79, 0x20, 0x49, 0x44, 0x62, 0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61,
|
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x4b, 0x92, 0x41, 0x27, 0x12, 0x13, 0x41,
|
||||||
0x72, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x12, 0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x12,
|
0x64, 0x64, 0x20, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x20, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73,
|
||||||
0x1d, 0x2f, 0x76, 0x31, 0x2f, 0x70, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x2f, 0x67, 0x65,
|
0x65, 0x73, 0x62, 0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75,
|
||||||
0x74, 0x5f, 0x70, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x12, 0x99,
|
0x74, 0x68, 0x12, 0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x3a, 0x01, 0x2a, 0x22, 0x16, 0x2f,
|
||||||
0x01, 0x0a, 0x0d, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74,
|
0x76, 0x31, 0x2f, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x73, 0x2f, 0x61, 0x64, 0x64, 0x5f, 0x65,
|
||||||
0x12, 0x18, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x50, 0x61, 0x79, 0x6d,
|
0x6d, 0x61, 0x69, 0x6c, 0x73, 0x12, 0x8b, 0x01, 0x0a, 0x0c, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
|
||||||
0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x70, 0x62, 0x2e,
|
0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x17, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x72, 0x65, 0x61,
|
||||||
0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73,
|
0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
|
||||||
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x53, 0x92, 0x41, 0x28, 0x12, 0x14, 0x44, 0x65, 0x6c, 0x65,
|
0x18, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f,
|
||||||
0x74, 0x65, 0x20, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x20, 0x62, 0x79, 0x20, 0x49, 0x44,
|
0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x48, 0x92, 0x41, 0x21, 0x12, 0x0d,
|
||||||
0x62, 0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68,
|
0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x20, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x62, 0x10, 0x0a,
|
||||||
0x12, 0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x2a, 0x20, 0x2f, 0x76, 0x31, 0x2f, 0x70, 0x61,
|
|
||||||
0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x2f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x5f, 0x70, 0x61,
|
|
||||||
0x79, 0x6d, 0x65, 0x6e, 0x74, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x12, 0xa4, 0x01, 0x0a, 0x0c, 0x4c,
|
|
||||||
0x69, 0x73, 0x74, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x12, 0x17, 0x2e, 0x70, 0x62,
|
|
||||||
0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x71,
|
|
||||||
0x75, 0x65, 0x73, 0x74, 0x1a, 0x18, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61,
|
|
||||||
0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x61,
|
|
||||||
0x92, 0x41, 0x2f, 0x12, 0x1b, 0x4c, 0x69, 0x73, 0x74, 0x20, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e,
|
|
||||||
0x74, 0x73, 0x20, 0x62, 0x79, 0x20, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x64,
|
|
||||||
0x62, 0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68,
|
|
||||||
0x12, 0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x29, 0x12, 0x27, 0x2f, 0x76, 0x31, 0x2f, 0x70, 0x61,
|
|
||||||
0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x70, 0x61, 0x79, 0x6d,
|
|
||||||
0x65, 0x6e, 0x74, 0x73, 0x2f, 0x7b, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x64,
|
|
||||||
0x7d, 0x12, 0x91, 0x01, 0x0a, 0x0d, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x61, 0x79, 0x6d,
|
|
||||||
0x65, 0x6e, 0x74, 0x12, 0x18, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50,
|
|
||||||
0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e,
|
|
||||||
0x70, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74,
|
|
||||||
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x4b, 0x92, 0x41, 0x22, 0x12, 0x0e, 0x55,
|
|
||||||
0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x62, 0x10, 0x0a,
|
|
||||||
0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x12, 0x00, 0x82,
|
0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x12, 0x00, 0x82,
|
||||||
0xd3, 0xe4, 0x93, 0x02, 0x20, 0x3a, 0x01, 0x2a, 0x32, 0x1b, 0x2f, 0x76, 0x31, 0x2f, 0x70, 0x61,
|
0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x3a, 0x01, 0x2a, 0x22, 0x19, 0x2f, 0x76, 0x31, 0x2f, 0x70, 0x65,
|
||||||
0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x70, 0x61,
|
0x72, 0x73, 0x6f, 0x6e, 0x73, 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x70, 0x65, 0x72,
|
||||||
0x79, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0xb0, 0x01, 0x0a, 0x0e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
|
0x73, 0x6f, 0x6e, 0x12, 0x8b, 0x01, 0x0a, 0x0c, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65,
|
||||||
0x74, 0x75, 0x72, 0x6e, 0x73, 0x4c, 0x6f, 0x67, 0x12, 0x19, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69,
|
0x72, 0x73, 0x6f, 0x6e, 0x12, 0x17, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
|
||||||
0x73, 0x74, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x73, 0x4c, 0x6f, 0x67, 0x52, 0x65, 0x71, 0x75,
|
0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x18, 0x2e,
|
||||||
0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x74,
|
0x70, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52,
|
||||||
0x75, 0x72, 0x6e, 0x73, 0x4c, 0x6f, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
|
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x48, 0x92, 0x41, 0x21, 0x12, 0x0d, 0x55, 0x70,
|
||||||
0x67, 0x92, 0x41, 0x30, 0x12, 0x1c, 0x4c, 0x69, 0x73, 0x74, 0x20, 0x52, 0x65, 0x74, 0x75, 0x72,
|
0x64, 0x61, 0x74, 0x65, 0x20, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x62, 0x10, 0x0a, 0x0e, 0x0a,
|
||||||
0x6e, 0x73, 0x4c, 0x6f, 0x67, 0x20, 0x62, 0x79, 0x20, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x5f,
|
|
||||||
0x69, 0x64, 0x62, 0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75,
|
|
||||||
0x74, 0x68, 0x12, 0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2e, 0x12, 0x2c, 0x2f, 0x76, 0x31, 0x2f,
|
|
||||||
0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x73, 0x5f, 0x6c, 0x6f, 0x67, 0x2f, 0x6c, 0x69, 0x73, 0x74,
|
|
||||||
0x5f, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x73, 0x5f, 0x6c, 0x6f, 0x67, 0x2f, 0x7b, 0x70, 0x65,
|
|
||||||
0x72, 0x73, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x7d, 0x12, 0xca, 0x02, 0x0a, 0x0e, 0x55, 0x70, 0x6c,
|
|
||||||
0x6f, 0x61, 0x64, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x19, 0x2e, 0x70, 0x62,
|
|
||||||
0x2e, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52,
|
|
||||||
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x70, 0x6c, 0x6f,
|
|
||||||
0x61, 0x64, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
||||||
0x73, 0x65, 0x22, 0x80, 0x02, 0x92, 0x41, 0xe0, 0x01, 0x12, 0x1b, 0x55, 0x70, 0x6c, 0x6f, 0x61,
|
|
||||||
0x64, 0x20, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x20, 0x5b, 0x6f, 0x6e, 0x6c, 0x79,
|
|
||||||
0x20, 0x48, 0x54, 0x54, 0x50, 0x5d, 0x1a, 0xae, 0x01, 0x54, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67,
|
|
||||||
0x20, 0x76, 0x69, 0x61, 0x20, 0x73, 0x77, 0x61, 0x67, 0x67, 0x65, 0x72, 0x20, 0x69, 0x73, 0x20,
|
|
||||||
0x6e, 0x6f, 0x74, 0x20, 0x70, 0x6f, 0x73, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x72,
|
|
||||||
0x79, 0x20, 0x60, 0x60, 0x60, 0x63, 0x75, 0x72, 0x6c, 0x20, 0x2d, 0x58, 0x20, 0x50, 0x4f, 0x53,
|
|
||||||
0x54, 0x20, 0x2d, 0x48, 0x20, 0x22, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x61, 0x74,
|
|
||||||
0x69, 0x6f, 0x6e, 0x3a, 0x20, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x20, 0x7b, 0x74, 0x6f, 0x6b,
|
|
||||||
0x65, 0x6e, 0x7d, 0x22, 0x20, 0x2d, 0x46, 0x20, 0x22, 0x66, 0x69, 0x6c, 0x65, 0x3d, 0x40, 0x2f,
|
|
||||||
0x70, 0x61, 0x74, 0x68, 0x2f, 0x74, 0x6f, 0x2f, 0x66, 0x69, 0x6c, 0x65, 0x22, 0x20, 0x2d, 0x46,
|
|
||||||
0x20, 0x22, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x3d, 0x31, 0x22, 0x20, 0x22,
|
|
||||||
0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f, 0x7b, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x55, 0x52,
|
|
||||||
0x49, 0x7d, 0x2f, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x2f, 0x75, 0x70, 0x6c,
|
|
||||||
0x6f, 0x61, 0x64, 0x22, 0x60, 0x60, 0x60, 0x62, 0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61,
|
|
||||||
0x72, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x12, 0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x3a,
|
|
||||||
0x01, 0x2a, 0x22, 0x11, 0x2f, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x2f, 0x75,
|
|
||||||
0x70, 0x6c, 0x6f, 0x61, 0x64, 0x12, 0x9f, 0x01, 0x0a, 0x0e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
|
|
||||||
0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x19, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x65,
|
|
||||||
0x6c, 0x65, 0x74, 0x65, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75,
|
|
||||||
0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x44,
|
|
||||||
0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
|
|
||||||
0x56, 0x92, 0x41, 0x29, 0x12, 0x15, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x20, 0x44, 0x6f, 0x63,
|
|
||||||
0x75, 0x6d, 0x65, 0x6e, 0x74, 0x20, 0x62, 0x79, 0x20, 0x49, 0x44, 0x62, 0x10, 0x0a, 0x0e, 0x0a,
|
|
||||||
0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x12, 0x00, 0x82, 0xd3, 0xe4,
|
0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x12, 0x00, 0x82, 0xd3, 0xe4,
|
||||||
0x93, 0x02, 0x24, 0x2a, 0x22, 0x2f, 0x76, 0x31, 0x2f, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e,
|
0x93, 0x02, 0x1e, 0x3a, 0x01, 0x2a, 0x32, 0x19, 0x2f, 0x76, 0x31, 0x2f, 0x70, 0x65, 0x72, 0x73,
|
||||||
0x74, 0x73, 0x2f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x5f, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65,
|
0x6f, 0x6e, 0x73, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x73, 0x6f,
|
||||||
0x6e, 0x74, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x12, 0xaa, 0x01, 0x0a, 0x12, 0x52, 0x65, 0x73, 0x65,
|
0x6e, 0x12, 0x84, 0x01, 0x0a, 0x09, 0x47, 0x65, 0x74, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12,
|
||||||
0x6e, 0x64, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1d,
|
0x14, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65,
|
||||||
0x2e, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x65, 0x6e, 0x64, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69,
|
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x15, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x65,
|
||||||
0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e,
|
0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x4a, 0x92, 0x41,
|
||||||
0x70, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x65, 0x6e, 0x64, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63,
|
0x24, 0x12, 0x10, 0x47, 0x65, 0x74, 0x20, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x20, 0x62, 0x79,
|
||||||
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x55, 0x92,
|
0x20, 0x49, 0x44, 0x62, 0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x41,
|
||||||
0x41, 0x2d, 0x12, 0x19, 0x52, 0x65, 0x73, 0x65, 0x6e, 0x64, 0x20, 0x56, 0x65, 0x72, 0x69, 0x66,
|
0x75, 0x74, 0x68, 0x12, 0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x12, 0x1b, 0x2f, 0x76, 0x31,
|
||||||
0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x62, 0x10, 0x0a,
|
0x2f, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x73, 0x2f, 0x67, 0x65, 0x74, 0x5f, 0x70, 0x65, 0x72,
|
||||||
|
0x73, 0x6f, 0x6e, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x12, 0x93, 0x01, 0x0a, 0x0c, 0x44, 0x65, 0x6c,
|
||||||
|
0x65, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x17, 0x2e, 0x70, 0x62, 0x2e, 0x44,
|
||||||
|
0x65, 0x6c, 0x65, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65,
|
||||||
|
0x73, 0x74, 0x1a, 0x18, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x50, 0x65,
|
||||||
|
0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x50, 0x92, 0x41,
|
||||||
|
0x27, 0x12, 0x13, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x20, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
|
||||||
|
0x20, 0x62, 0x79, 0x20, 0x49, 0x44, 0x62, 0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72,
|
||||||
|
0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x12, 0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x2a, 0x1e,
|
||||||
|
0x2f, 0x76, 0x31, 0x2f, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x73, 0x2f, 0x64, 0x65, 0x6c, 0x65,
|
||||||
|
0x74, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x12, 0x9e,
|
||||||
|
0x01, 0x0a, 0x0b, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x73, 0x12, 0x16,
|
||||||
|
0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x73, 0x52,
|
||||||
|
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74,
|
||||||
|
0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
|
||||||
|
0x5e, 0x92, 0x41, 0x2e, 0x12, 0x1a, 0x4c, 0x69, 0x73, 0x74, 0x20, 0x50, 0x65, 0x72, 0x73, 0x6f,
|
||||||
|
0x6e, 0x73, 0x20, 0x62, 0x79, 0x20, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x64,
|
||||||
|
0x62, 0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68,
|
||||||
|
0x12, 0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x27, 0x12, 0x25, 0x2f, 0x76, 0x31, 0x2f, 0x70, 0x65,
|
||||||
|
0x72, 0x73, 0x6f, 0x6e, 0x73, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x70, 0x65, 0x72, 0x73, 0x6f,
|
||||||
|
0x6e, 0x73, 0x2f, 0x7b, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x12,
|
||||||
|
0x91, 0x01, 0x0a, 0x0d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e,
|
||||||
|
0x74, 0x12, 0x18, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x61, 0x79,
|
||||||
|
0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x70, 0x62,
|
||||||
|
0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65,
|
||||||
|
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x4b, 0x92, 0x41, 0x22, 0x12, 0x0e, 0x43, 0x72, 0x65,
|
||||||
|
0x61, 0x74, 0x65, 0x20, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x62, 0x10, 0x0a, 0x0e, 0x0a,
|
||||||
|
0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x12, 0x00, 0x82, 0xd3, 0xe4,
|
||||||
|
0x93, 0x02, 0x20, 0x3a, 0x01, 0x2a, 0x22, 0x1b, 0x2f, 0x76, 0x31, 0x2f, 0x70, 0x61, 0x79, 0x6d,
|
||||||
|
0x65, 0x6e, 0x74, 0x73, 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x70, 0x61, 0x79, 0x6d,
|
||||||
|
0x65, 0x6e, 0x74, 0x12, 0x8a, 0x01, 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x50, 0x61, 0x79, 0x6d, 0x65,
|
||||||
|
0x6e, 0x74, 0x12, 0x15, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x61, 0x79, 0x6d, 0x65,
|
||||||
|
0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x70, 0x62, 0x2e, 0x47,
|
||||||
|
0x65, 0x74, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
||||||
|
0x65, 0x22, 0x4d, 0x92, 0x41, 0x25, 0x12, 0x11, 0x47, 0x65, 0x74, 0x20, 0x50, 0x61, 0x79, 0x6d,
|
||||||
|
0x65, 0x6e, 0x74, 0x20, 0x62, 0x79, 0x20, 0x49, 0x44, 0x62, 0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42,
|
||||||
|
0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x12, 0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02,
|
||||||
|
0x1f, 0x12, 0x1d, 0x2f, 0x76, 0x31, 0x2f, 0x70, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x2f,
|
||||||
|
0x67, 0x65, 0x74, 0x5f, 0x70, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x2f, 0x7b, 0x69, 0x64, 0x7d,
|
||||||
|
0x12, 0x99, 0x01, 0x0a, 0x0d, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x50, 0x61, 0x79, 0x6d, 0x65,
|
||||||
|
0x6e, 0x74, 0x12, 0x18, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x50, 0x61,
|
||||||
|
0x79, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x70,
|
||||||
|
0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x52,
|
||||||
|
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x53, 0x92, 0x41, 0x28, 0x12, 0x14, 0x44, 0x65,
|
||||||
|
0x6c, 0x65, 0x74, 0x65, 0x20, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x20, 0x62, 0x79, 0x20,
|
||||||
|
0x49, 0x44, 0x62, 0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75,
|
||||||
|
0x74, 0x68, 0x12, 0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x2a, 0x20, 0x2f, 0x76, 0x31, 0x2f,
|
||||||
|
0x70, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x2f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x5f,
|
||||||
|
0x70, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x12, 0xa4, 0x01, 0x0a,
|
||||||
|
0x0c, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x12, 0x17, 0x2e,
|
||||||
|
0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52,
|
||||||
|
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x18, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74,
|
||||||
|
0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
||||||
|
0x22, 0x61, 0x92, 0x41, 0x2f, 0x12, 0x1b, 0x4c, 0x69, 0x73, 0x74, 0x20, 0x50, 0x61, 0x79, 0x6d,
|
||||||
|
0x65, 0x6e, 0x74, 0x73, 0x20, 0x62, 0x79, 0x20, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f,
|
||||||
|
0x69, 0x64, 0x62, 0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75,
|
||||||
|
0x74, 0x68, 0x12, 0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x29, 0x12, 0x27, 0x2f, 0x76, 0x31, 0x2f,
|
||||||
|
0x70, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x70, 0x61,
|
||||||
|
0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x2f, 0x7b, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f,
|
||||||
|
0x69, 0x64, 0x7d, 0x12, 0x91, 0x01, 0x0a, 0x0d, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x61,
|
||||||
|
0x79, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x18, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74,
|
||||||
|
0x65, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
|
||||||
|
0x19, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x61, 0x79, 0x6d, 0x65,
|
||||||
|
0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x4b, 0x92, 0x41, 0x22, 0x12,
|
||||||
|
0x0e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x62,
|
||||||
|
0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x12,
|
||||||
|
0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x3a, 0x01, 0x2a, 0x32, 0x1b, 0x2f, 0x76, 0x31, 0x2f,
|
||||||
|
0x70, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f,
|
||||||
|
0x70, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0xb0, 0x01, 0x0a, 0x0e, 0x4c, 0x69, 0x73, 0x74,
|
||||||
|
0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x73, 0x4c, 0x6f, 0x67, 0x12, 0x19, 0x2e, 0x70, 0x62, 0x2e,
|
||||||
|
0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x73, 0x4c, 0x6f, 0x67, 0x52, 0x65,
|
||||||
|
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x52,
|
||||||
|
0x65, 0x74, 0x75, 0x72, 0x6e, 0x73, 0x4c, 0x6f, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
||||||
|
0x65, 0x22, 0x67, 0x92, 0x41, 0x30, 0x12, 0x1c, 0x4c, 0x69, 0x73, 0x74, 0x20, 0x52, 0x65, 0x74,
|
||||||
|
0x75, 0x72, 0x6e, 0x73, 0x4c, 0x6f, 0x67, 0x20, 0x62, 0x79, 0x20, 0x70, 0x65, 0x72, 0x73, 0x6f,
|
||||||
|
0x6e, 0x5f, 0x69, 0x64, 0x62, 0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72,
|
||||||
|
0x41, 0x75, 0x74, 0x68, 0x12, 0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2e, 0x12, 0x2c, 0x2f, 0x76,
|
||||||
|
0x31, 0x2f, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x73, 0x5f, 0x6c, 0x6f, 0x67, 0x2f, 0x6c, 0x69,
|
||||||
|
0x73, 0x74, 0x5f, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x73, 0x5f, 0x6c, 0x6f, 0x67, 0x2f, 0x7b,
|
||||||
|
0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x7d, 0x12, 0xca, 0x02, 0x0a, 0x0e, 0x55,
|
||||||
|
0x70, 0x6c, 0x6f, 0x61, 0x64, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x19, 0x2e,
|
||||||
|
0x70, 0x62, 0x2e, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e,
|
||||||
|
0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x70,
|
||||||
|
0x6c, 0x6f, 0x61, 0x64, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70,
|
||||||
|
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x80, 0x02, 0x92, 0x41, 0xe0, 0x01, 0x12, 0x1b, 0x55, 0x70, 0x6c,
|
||||||
|
0x6f, 0x61, 0x64, 0x20, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x20, 0x5b, 0x6f, 0x6e,
|
||||||
|
0x6c, 0x79, 0x20, 0x48, 0x54, 0x54, 0x50, 0x5d, 0x1a, 0xae, 0x01, 0x54, 0x65, 0x73, 0x74, 0x69,
|
||||||
|
0x6e, 0x67, 0x20, 0x76, 0x69, 0x61, 0x20, 0x73, 0x77, 0x61, 0x67, 0x67, 0x65, 0x72, 0x20, 0x69,
|
||||||
|
0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x70, 0x6f, 0x73, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x2e, 0x20,
|
||||||
|
0x54, 0x72, 0x79, 0x20, 0x60, 0x60, 0x60, 0x63, 0x75, 0x72, 0x6c, 0x20, 0x2d, 0x58, 0x20, 0x50,
|
||||||
|
0x4f, 0x53, 0x54, 0x20, 0x2d, 0x48, 0x20, 0x22, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a,
|
||||||
|
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x20, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x20, 0x7b, 0x74,
|
||||||
|
0x6f, 0x6b, 0x65, 0x6e, 0x7d, 0x22, 0x20, 0x2d, 0x46, 0x20, 0x22, 0x66, 0x69, 0x6c, 0x65, 0x3d,
|
||||||
|
0x40, 0x2f, 0x70, 0x61, 0x74, 0x68, 0x2f, 0x74, 0x6f, 0x2f, 0x66, 0x69, 0x6c, 0x65, 0x22, 0x20,
|
||||||
|
0x2d, 0x46, 0x20, 0x22, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x3d, 0x31, 0x22,
|
||||||
|
0x20, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f, 0x7b, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
|
||||||
|
0x55, 0x52, 0x49, 0x7d, 0x2f, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x2f, 0x75,
|
||||||
|
0x70, 0x6c, 0x6f, 0x61, 0x64, 0x22, 0x60, 0x60, 0x60, 0x62, 0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42,
|
||||||
|
0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x12, 0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02,
|
||||||
|
0x16, 0x3a, 0x01, 0x2a, 0x22, 0x11, 0x2f, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x73,
|
||||||
|
0x2f, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x12, 0x9f, 0x01, 0x0a, 0x0e, 0x44, 0x65, 0x6c, 0x65,
|
||||||
|
0x74, 0x65, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x19, 0x2e, 0x70, 0x62, 0x2e,
|
||||||
|
0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65,
|
||||||
|
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74,
|
||||||
|
0x65, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
||||||
|
0x65, 0x22, 0x56, 0x92, 0x41, 0x29, 0x12, 0x15, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x20, 0x44,
|
||||||
|
0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x20, 0x62, 0x79, 0x20, 0x49, 0x44, 0x62, 0x10, 0x0a,
|
||||||
0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x12, 0x00, 0x82,
|
0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x12, 0x00, 0x82,
|
||||||
0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x12, 0x1d, 0x2f, 0x76, 0x31, 0x2f, 0x76, 0x65, 0x72, 0x69, 0x66,
|
0xd3, 0xe4, 0x93, 0x02, 0x24, 0x2a, 0x22, 0x2f, 0x76, 0x31, 0x2f, 0x64, 0x6f, 0x63, 0x75, 0x6d,
|
||||||
0x79, 0x5f, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x2f, 0x7b, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
|
0x65, 0x6e, 0x74, 0x73, 0x2f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x5f, 0x64, 0x6f, 0x63, 0x75,
|
||||||
0x5f, 0x69, 0x64, 0x7d, 0x12, 0xa2, 0x01, 0x0a, 0x0b, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x45,
|
0x6d, 0x65, 0x6e, 0x74, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x12, 0xaa, 0x01, 0x0a, 0x12, 0x52, 0x65,
|
||||||
0x6d, 0x61, 0x69, 0x6c, 0x12, 0x16, 0x2e, 0x70, 0x62, 0x2e, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79,
|
0x73, 0x65, 0x6e, 0x64, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
||||||
0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x70,
|
0x12, 0x1d, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x65, 0x6e, 0x64, 0x56, 0x65, 0x72, 0x69,
|
||||||
0x62, 0x2e, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73,
|
0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
|
||||||
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x62, 0x92, 0x41, 0x2d, 0x12, 0x2b, 0x56, 0x65, 0x72, 0x69,
|
0x1e, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x65, 0x6e, 0x64, 0x56, 0x65, 0x72, 0x69, 0x66,
|
||||||
0x66, 0x79, 0x20, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x61, 0x63,
|
0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
|
||||||
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x73, 0x65, 0x63,
|
0x55, 0x92, 0x41, 0x2d, 0x12, 0x19, 0x52, 0x65, 0x73, 0x65, 0x6e, 0x64, 0x20, 0x56, 0x65, 0x72,
|
||||||
0x72, 0x65, 0x74, 0x5f, 0x6b, 0x65, 0x79, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2c, 0x12, 0x2a, 0x2f,
|
0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x62,
|
||||||
0x76, 0x31, 0x2f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x79, 0x5f, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x2f,
|
0x10, 0x0a, 0x0e, 0x0a, 0x0a, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x12,
|
||||||
0x7b, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x7b, 0x73, 0x65,
|
0x00, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x12, 0x1d, 0x2f, 0x76, 0x31, 0x2f, 0x76, 0x65, 0x72,
|
||||||
0x63, 0x72, 0x65, 0x74, 0x5f, 0x6b, 0x65, 0x79, 0x7d, 0x1a, 0x07, 0x92, 0x41, 0x04, 0x12, 0x02,
|
0x69, 0x66, 0x79, 0x5f, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x2f, 0x7b, 0x61, 0x63, 0x63, 0x6f, 0x75,
|
||||||
0x64, 0x66, 0x42, 0xb0, 0x01, 0x92, 0x41, 0x93, 0x01, 0x12, 0x44, 0x0a, 0x06, 0x64, 0x66, 0x20,
|
0x6e, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x12, 0xa2, 0x01, 0x0a, 0x0b, 0x56, 0x65, 0x72, 0x69, 0x66,
|
||||||
0x41, 0x50, 0x49, 0x22, 0x35, 0x0a, 0x06, 0x69, 0x74, 0x73, 0x73, 0x63, 0x62, 0x12, 0x1c, 0x68,
|
0x79, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x16, 0x2e, 0x70, 0x62, 0x2e, 0x56, 0x65, 0x72, 0x69,
|
||||||
0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f,
|
0x66, 0x79, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17,
|
||||||
0x6d, 0x2f, 0x69, 0x74, 0x73, 0x73, 0x63, 0x62, 0x2f, 0x64, 0x66, 0x1a, 0x0d, 0x64, 0x65, 0x76,
|
0x2e, 0x70, 0x62, 0x2e, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52,
|
||||||
0x40, 0x69, 0x74, 0x73, 0x73, 0x63, 0x62, 0x2e, 0x64, 0x65, 0x32, 0x03, 0x31, 0x2e, 0x30, 0x2a,
|
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x62, 0x92, 0x41, 0x2d, 0x12, 0x2b, 0x56, 0x65,
|
||||||
0x02, 0x01, 0x02, 0x32, 0x10, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
0x72, 0x69, 0x66, 0x79, 0x20, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20,
|
||||||
0x2f, 0x6a, 0x73, 0x6f, 0x6e, 0x3a, 0x10, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
|
0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x73,
|
||||||
0x6f, 0x6e, 0x2f, 0x6a, 0x73, 0x6f, 0x6e, 0x5a, 0x23, 0x0a, 0x21, 0x0a, 0x0a, 0x42, 0x65, 0x61,
|
0x65, 0x63, 0x72, 0x65, 0x74, 0x5f, 0x6b, 0x65, 0x79, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2c, 0x12,
|
||||||
0x72, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x12, 0x13, 0x08, 0x02, 0x1a, 0x0d, 0x41, 0x75, 0x74,
|
0x2a, 0x2f, 0x76, 0x31, 0x2f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x79, 0x5f, 0x65, 0x6d, 0x61, 0x69,
|
||||||
0x68, 0x6f, 0x72, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x02, 0x5a, 0x17, 0x67, 0x69,
|
0x6c, 0x2f, 0x7b, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x7b,
|
||||||
0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x69, 0x74, 0x73, 0x73, 0x63, 0x62, 0x2f,
|
0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x5f, 0x6b, 0x65, 0x79, 0x7d, 0x1a, 0x07, 0x92, 0x41, 0x04,
|
||||||
0x64, 0x66, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
0x12, 0x02, 0x64, 0x66, 0x42, 0xb0, 0x01, 0x92, 0x41, 0x93, 0x01, 0x12, 0x44, 0x0a, 0x06, 0x64,
|
||||||
|
0x66, 0x20, 0x41, 0x50, 0x49, 0x22, 0x35, 0x0a, 0x06, 0x69, 0x74, 0x73, 0x73, 0x63, 0x62, 0x12,
|
||||||
|
0x1c, 0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e,
|
||||||
|
0x63, 0x6f, 0x6d, 0x2f, 0x69, 0x74, 0x73, 0x73, 0x63, 0x62, 0x2f, 0x64, 0x66, 0x1a, 0x0d, 0x64,
|
||||||
|
0x65, 0x76, 0x40, 0x69, 0x74, 0x73, 0x73, 0x63, 0x62, 0x2e, 0x64, 0x65, 0x32, 0x03, 0x31, 0x2e,
|
||||||
|
0x30, 0x2a, 0x02, 0x01, 0x02, 0x32, 0x10, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
|
||||||
|
0x6f, 0x6e, 0x2f, 0x6a, 0x73, 0x6f, 0x6e, 0x3a, 0x10, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61,
|
||||||
|
0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x6a, 0x73, 0x6f, 0x6e, 0x5a, 0x23, 0x0a, 0x21, 0x0a, 0x0a, 0x42,
|
||||||
|
0x65, 0x61, 0x72, 0x65, 0x72, 0x41, 0x75, 0x74, 0x68, 0x12, 0x13, 0x08, 0x02, 0x1a, 0x0d, 0x41,
|
||||||
|
0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x02, 0x5a, 0x17,
|
||||||
|
0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x69, 0x74, 0x73, 0x73, 0x63,
|
||||||
|
0x62, 0x2f, 0x64, 0x66, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||||
}
|
}
|
||||||
|
|
||||||
var file_service_df_proto_goTypes = []interface{}{
|
var file_service_df_proto_goTypes = []interface{}{
|
||||||
@ -384,49 +406,53 @@ var file_service_df_proto_goTypes = []interface{}{
|
|||||||
(*CreateAccountInfoRequest)(nil), // 10: pb.CreateAccountInfoRequest
|
(*CreateAccountInfoRequest)(nil), // 10: pb.CreateAccountInfoRequest
|
||||||
(*UpdateAccountInfoRequest)(nil), // 11: pb.UpdateAccountInfoRequest
|
(*UpdateAccountInfoRequest)(nil), // 11: pb.UpdateAccountInfoRequest
|
||||||
(*UpdateAccountPrivacyRequest)(nil), // 12: pb.UpdateAccountPrivacyRequest
|
(*UpdateAccountPrivacyRequest)(nil), // 12: pb.UpdateAccountPrivacyRequest
|
||||||
(*CreatePersonRequest)(nil), // 13: pb.CreatePersonRequest
|
(*AddEmailAddressRequest)(nil), // 13: pb.AddEmailAddressRequest
|
||||||
(*UpdatePersonRequest)(nil), // 14: pb.UpdatePersonRequest
|
(*AddEmailAddressesRequest)(nil), // 14: pb.AddEmailAddressesRequest
|
||||||
(*GetPersonRequest)(nil), // 15: pb.GetPersonRequest
|
(*CreatePersonRequest)(nil), // 15: pb.CreatePersonRequest
|
||||||
(*DeletePersonRequest)(nil), // 16: pb.DeletePersonRequest
|
(*UpdatePersonRequest)(nil), // 16: pb.UpdatePersonRequest
|
||||||
(*ListPersonsRequest)(nil), // 17: pb.ListPersonsRequest
|
(*GetPersonRequest)(nil), // 17: pb.GetPersonRequest
|
||||||
(*CreatePaymentRequest)(nil), // 18: pb.CreatePaymentRequest
|
(*DeletePersonRequest)(nil), // 18: pb.DeletePersonRequest
|
||||||
(*GetPaymentRequest)(nil), // 19: pb.GetPaymentRequest
|
(*ListPersonsRequest)(nil), // 19: pb.ListPersonsRequest
|
||||||
(*DeletePaymentRequest)(nil), // 20: pb.DeletePaymentRequest
|
(*CreatePaymentRequest)(nil), // 20: pb.CreatePaymentRequest
|
||||||
(*ListPaymentsRequest)(nil), // 21: pb.ListPaymentsRequest
|
(*GetPaymentRequest)(nil), // 21: pb.GetPaymentRequest
|
||||||
(*UpdatePaymentRequest)(nil), // 22: pb.UpdatePaymentRequest
|
(*DeletePaymentRequest)(nil), // 22: pb.DeletePaymentRequest
|
||||||
(*ListReturnsLogRequest)(nil), // 23: pb.ListReturnsLogRequest
|
(*ListPaymentsRequest)(nil), // 23: pb.ListPaymentsRequest
|
||||||
(*UploadDocumentRequest)(nil), // 24: pb.UploadDocumentRequest
|
(*UpdatePaymentRequest)(nil), // 24: pb.UpdatePaymentRequest
|
||||||
(*DeleteDocumentRequest)(nil), // 25: pb.DeleteDocumentRequest
|
(*ListReturnsLogRequest)(nil), // 25: pb.ListReturnsLogRequest
|
||||||
(*ResendVerificationRequest)(nil), // 26: pb.ResendVerificationRequest
|
(*UploadDocumentRequest)(nil), // 26: pb.UploadDocumentRequest
|
||||||
(*VerifyEmailRequest)(nil), // 27: pb.VerifyEmailRequest
|
(*DeleteDocumentRequest)(nil), // 27: pb.DeleteDocumentRequest
|
||||||
(*LoginResponse)(nil), // 28: pb.LoginResponse
|
(*ResendVerificationRequest)(nil), // 28: pb.ResendVerificationRequest
|
||||||
(*RefreshTokenResponse)(nil), // 29: pb.RefreshTokenResponse
|
(*VerifyEmailRequest)(nil), // 29: pb.VerifyEmailRequest
|
||||||
(*ListSessionsResponse)(nil), // 30: pb.ListSessionsResponse
|
(*LoginResponse)(nil), // 30: pb.LoginResponse
|
||||||
(*BlockSessionResponse)(nil), // 31: pb.BlockSessionResponse
|
(*RefreshTokenResponse)(nil), // 31: pb.RefreshTokenResponse
|
||||||
(*GetAccountResponse)(nil), // 32: pb.GetAccountResponse
|
(*ListSessionsResponse)(nil), // 32: pb.ListSessionsResponse
|
||||||
(*ListAccountsResponse)(nil), // 33: pb.ListAccountsResponse
|
(*BlockSessionResponse)(nil), // 33: pb.BlockSessionResponse
|
||||||
(*CreateAccountResponse)(nil), // 34: pb.CreateAccountResponse
|
(*GetAccountResponse)(nil), // 34: pb.GetAccountResponse
|
||||||
(*UpdateAccountResponse)(nil), // 35: pb.UpdateAccountResponse
|
(*ListAccountsResponse)(nil), // 35: pb.ListAccountsResponse
|
||||||
(*GetAccountInfoResponse)(nil), // 36: pb.GetAccountInfoResponse
|
(*CreateAccountResponse)(nil), // 36: pb.CreateAccountResponse
|
||||||
(*ListAccountInfoResponse)(nil), // 37: pb.ListAccountInfoResponse
|
(*UpdateAccountResponse)(nil), // 37: pb.UpdateAccountResponse
|
||||||
(*CreateAccountInfoResponse)(nil), // 38: pb.CreateAccountInfoResponse
|
(*GetAccountInfoResponse)(nil), // 38: pb.GetAccountInfoResponse
|
||||||
(*UpdateAccountInfoResponse)(nil), // 39: pb.UpdateAccountInfoResponse
|
(*ListAccountInfoResponse)(nil), // 39: pb.ListAccountInfoResponse
|
||||||
(*UpdateAccountPrivacyResponse)(nil), // 40: pb.UpdateAccountPrivacyResponse
|
(*CreateAccountInfoResponse)(nil), // 40: pb.CreateAccountInfoResponse
|
||||||
(*CreatePersonResponse)(nil), // 41: pb.CreatePersonResponse
|
(*UpdateAccountInfoResponse)(nil), // 41: pb.UpdateAccountInfoResponse
|
||||||
(*UpdatePersonResponse)(nil), // 42: pb.UpdatePersonResponse
|
(*UpdateAccountPrivacyResponse)(nil), // 42: pb.UpdateAccountPrivacyResponse
|
||||||
(*GetPersonResponse)(nil), // 43: pb.GetPersonResponse
|
(*AddEmailAddressResponse)(nil), // 43: pb.AddEmailAddressResponse
|
||||||
(*DeletePersonResponse)(nil), // 44: pb.DeletePersonResponse
|
(*AddEmailAddressesResponse)(nil), // 44: pb.AddEmailAddressesResponse
|
||||||
(*ListPersonsResponse)(nil), // 45: pb.ListPersonsResponse
|
(*CreatePersonResponse)(nil), // 45: pb.CreatePersonResponse
|
||||||
(*CreatePaymentResponse)(nil), // 46: pb.CreatePaymentResponse
|
(*UpdatePersonResponse)(nil), // 46: pb.UpdatePersonResponse
|
||||||
(*GetPaymentResponse)(nil), // 47: pb.GetPaymentResponse
|
(*GetPersonResponse)(nil), // 47: pb.GetPersonResponse
|
||||||
(*DeletePaymentResponse)(nil), // 48: pb.DeletePaymentResponse
|
(*DeletePersonResponse)(nil), // 48: pb.DeletePersonResponse
|
||||||
(*ListPaymentsResponse)(nil), // 49: pb.ListPaymentsResponse
|
(*ListPersonsResponse)(nil), // 49: pb.ListPersonsResponse
|
||||||
(*UpdatePaymentResponse)(nil), // 50: pb.UpdatePaymentResponse
|
(*CreatePaymentResponse)(nil), // 50: pb.CreatePaymentResponse
|
||||||
(*ListReturnsLogResponse)(nil), // 51: pb.ListReturnsLogResponse
|
(*GetPaymentResponse)(nil), // 51: pb.GetPaymentResponse
|
||||||
(*UploadDocumentResponse)(nil), // 52: pb.UploadDocumentResponse
|
(*DeletePaymentResponse)(nil), // 52: pb.DeletePaymentResponse
|
||||||
(*DeleteDocumentResponse)(nil), // 53: pb.DeleteDocumentResponse
|
(*ListPaymentsResponse)(nil), // 53: pb.ListPaymentsResponse
|
||||||
(*ResendVerificationResponse)(nil), // 54: pb.ResendVerificationResponse
|
(*UpdatePaymentResponse)(nil), // 54: pb.UpdatePaymentResponse
|
||||||
(*VerifyEmailResponse)(nil), // 55: pb.VerifyEmailResponse
|
(*ListReturnsLogResponse)(nil), // 55: pb.ListReturnsLogResponse
|
||||||
|
(*UploadDocumentResponse)(nil), // 56: pb.UploadDocumentResponse
|
||||||
|
(*DeleteDocumentResponse)(nil), // 57: pb.DeleteDocumentResponse
|
||||||
|
(*ResendVerificationResponse)(nil), // 58: pb.ResendVerificationResponse
|
||||||
|
(*VerifyEmailResponse)(nil), // 59: pb.VerifyEmailResponse
|
||||||
}
|
}
|
||||||
var file_service_df_proto_depIdxs = []int32{
|
var file_service_df_proto_depIdxs = []int32{
|
||||||
0, // 0: pb.df.Login:input_type -> pb.LoginRequest
|
0, // 0: pb.df.Login:input_type -> pb.LoginRequest
|
||||||
@ -442,51 +468,55 @@ var file_service_df_proto_depIdxs = []int32{
|
|||||||
10, // 10: pb.df.CreateAccountInfo:input_type -> pb.CreateAccountInfoRequest
|
10, // 10: pb.df.CreateAccountInfo:input_type -> pb.CreateAccountInfoRequest
|
||||||
11, // 11: pb.df.UpdateAccountInfo:input_type -> pb.UpdateAccountInfoRequest
|
11, // 11: pb.df.UpdateAccountInfo:input_type -> pb.UpdateAccountInfoRequest
|
||||||
12, // 12: pb.df.UpdateAccountPrivacy:input_type -> pb.UpdateAccountPrivacyRequest
|
12, // 12: pb.df.UpdateAccountPrivacy:input_type -> pb.UpdateAccountPrivacyRequest
|
||||||
13, // 13: pb.df.CreatePerson:input_type -> pb.CreatePersonRequest
|
13, // 13: pb.df.AddEmailAddress:input_type -> pb.AddEmailAddressRequest
|
||||||
14, // 14: pb.df.UpdatePerson:input_type -> pb.UpdatePersonRequest
|
14, // 14: pb.df.AddEmailAddresses:input_type -> pb.AddEmailAddressesRequest
|
||||||
15, // 15: pb.df.GetPerson:input_type -> pb.GetPersonRequest
|
15, // 15: pb.df.CreatePerson:input_type -> pb.CreatePersonRequest
|
||||||
16, // 16: pb.df.DeletePerson:input_type -> pb.DeletePersonRequest
|
16, // 16: pb.df.UpdatePerson:input_type -> pb.UpdatePersonRequest
|
||||||
17, // 17: pb.df.ListPersons:input_type -> pb.ListPersonsRequest
|
17, // 17: pb.df.GetPerson:input_type -> pb.GetPersonRequest
|
||||||
18, // 18: pb.df.CreatePayment:input_type -> pb.CreatePaymentRequest
|
18, // 18: pb.df.DeletePerson:input_type -> pb.DeletePersonRequest
|
||||||
19, // 19: pb.df.GetPayment:input_type -> pb.GetPaymentRequest
|
19, // 19: pb.df.ListPersons:input_type -> pb.ListPersonsRequest
|
||||||
20, // 20: pb.df.DeletePayment:input_type -> pb.DeletePaymentRequest
|
20, // 20: pb.df.CreatePayment:input_type -> pb.CreatePaymentRequest
|
||||||
21, // 21: pb.df.ListPayments:input_type -> pb.ListPaymentsRequest
|
21, // 21: pb.df.GetPayment:input_type -> pb.GetPaymentRequest
|
||||||
22, // 22: pb.df.UpdatePayment:input_type -> pb.UpdatePaymentRequest
|
22, // 22: pb.df.DeletePayment:input_type -> pb.DeletePaymentRequest
|
||||||
23, // 23: pb.df.ListReturnsLog:input_type -> pb.ListReturnsLogRequest
|
23, // 23: pb.df.ListPayments:input_type -> pb.ListPaymentsRequest
|
||||||
24, // 24: pb.df.UploadDocument:input_type -> pb.UploadDocumentRequest
|
24, // 24: pb.df.UpdatePayment:input_type -> pb.UpdatePaymentRequest
|
||||||
25, // 25: pb.df.DeleteDocument:input_type -> pb.DeleteDocumentRequest
|
25, // 25: pb.df.ListReturnsLog:input_type -> pb.ListReturnsLogRequest
|
||||||
26, // 26: pb.df.ResendVerification:input_type -> pb.ResendVerificationRequest
|
26, // 26: pb.df.UploadDocument:input_type -> pb.UploadDocumentRequest
|
||||||
27, // 27: pb.df.VerifyEmail:input_type -> pb.VerifyEmailRequest
|
27, // 27: pb.df.DeleteDocument:input_type -> pb.DeleteDocumentRequest
|
||||||
28, // 28: pb.df.Login:output_type -> pb.LoginResponse
|
28, // 28: pb.df.ResendVerification:input_type -> pb.ResendVerificationRequest
|
||||||
29, // 29: pb.df.RefreshToken:output_type -> pb.RefreshTokenResponse
|
29, // 29: pb.df.VerifyEmail:input_type -> pb.VerifyEmailRequest
|
||||||
30, // 30: pb.df.ListSessions:output_type -> pb.ListSessionsResponse
|
30, // 30: pb.df.Login:output_type -> pb.LoginResponse
|
||||||
31, // 31: pb.df.BlockSession:output_type -> pb.BlockSessionResponse
|
31, // 31: pb.df.RefreshToken:output_type -> pb.RefreshTokenResponse
|
||||||
32, // 32: pb.df.GetAccount:output_type -> pb.GetAccountResponse
|
32, // 32: pb.df.ListSessions:output_type -> pb.ListSessionsResponse
|
||||||
33, // 33: pb.df.ListAccounts:output_type -> pb.ListAccountsResponse
|
33, // 33: pb.df.BlockSession:output_type -> pb.BlockSessionResponse
|
||||||
34, // 34: pb.df.CreateAccount:output_type -> pb.CreateAccountResponse
|
34, // 34: pb.df.GetAccount:output_type -> pb.GetAccountResponse
|
||||||
35, // 35: pb.df.UpdateAccount:output_type -> pb.UpdateAccountResponse
|
35, // 35: pb.df.ListAccounts:output_type -> pb.ListAccountsResponse
|
||||||
36, // 36: pb.df.GetAccountInfo:output_type -> pb.GetAccountInfoResponse
|
36, // 36: pb.df.CreateAccount:output_type -> pb.CreateAccountResponse
|
||||||
37, // 37: pb.df.ListAccountInfo:output_type -> pb.ListAccountInfoResponse
|
37, // 37: pb.df.UpdateAccount:output_type -> pb.UpdateAccountResponse
|
||||||
38, // 38: pb.df.CreateAccountInfo:output_type -> pb.CreateAccountInfoResponse
|
38, // 38: pb.df.GetAccountInfo:output_type -> pb.GetAccountInfoResponse
|
||||||
39, // 39: pb.df.UpdateAccountInfo:output_type -> pb.UpdateAccountInfoResponse
|
39, // 39: pb.df.ListAccountInfo:output_type -> pb.ListAccountInfoResponse
|
||||||
40, // 40: pb.df.UpdateAccountPrivacy:output_type -> pb.UpdateAccountPrivacyResponse
|
40, // 40: pb.df.CreateAccountInfo:output_type -> pb.CreateAccountInfoResponse
|
||||||
41, // 41: pb.df.CreatePerson:output_type -> pb.CreatePersonResponse
|
41, // 41: pb.df.UpdateAccountInfo:output_type -> pb.UpdateAccountInfoResponse
|
||||||
42, // 42: pb.df.UpdatePerson:output_type -> pb.UpdatePersonResponse
|
42, // 42: pb.df.UpdateAccountPrivacy:output_type -> pb.UpdateAccountPrivacyResponse
|
||||||
43, // 43: pb.df.GetPerson:output_type -> pb.GetPersonResponse
|
43, // 43: pb.df.AddEmailAddress:output_type -> pb.AddEmailAddressResponse
|
||||||
44, // 44: pb.df.DeletePerson:output_type -> pb.DeletePersonResponse
|
44, // 44: pb.df.AddEmailAddresses:output_type -> pb.AddEmailAddressesResponse
|
||||||
45, // 45: pb.df.ListPersons:output_type -> pb.ListPersonsResponse
|
45, // 45: pb.df.CreatePerson:output_type -> pb.CreatePersonResponse
|
||||||
46, // 46: pb.df.CreatePayment:output_type -> pb.CreatePaymentResponse
|
46, // 46: pb.df.UpdatePerson:output_type -> pb.UpdatePersonResponse
|
||||||
47, // 47: pb.df.GetPayment:output_type -> pb.GetPaymentResponse
|
47, // 47: pb.df.GetPerson:output_type -> pb.GetPersonResponse
|
||||||
48, // 48: pb.df.DeletePayment:output_type -> pb.DeletePaymentResponse
|
48, // 48: pb.df.DeletePerson:output_type -> pb.DeletePersonResponse
|
||||||
49, // 49: pb.df.ListPayments:output_type -> pb.ListPaymentsResponse
|
49, // 49: pb.df.ListPersons:output_type -> pb.ListPersonsResponse
|
||||||
50, // 50: pb.df.UpdatePayment:output_type -> pb.UpdatePaymentResponse
|
50, // 50: pb.df.CreatePayment:output_type -> pb.CreatePaymentResponse
|
||||||
51, // 51: pb.df.ListReturnsLog:output_type -> pb.ListReturnsLogResponse
|
51, // 51: pb.df.GetPayment:output_type -> pb.GetPaymentResponse
|
||||||
52, // 52: pb.df.UploadDocument:output_type -> pb.UploadDocumentResponse
|
52, // 52: pb.df.DeletePayment:output_type -> pb.DeletePaymentResponse
|
||||||
53, // 53: pb.df.DeleteDocument:output_type -> pb.DeleteDocumentResponse
|
53, // 53: pb.df.ListPayments:output_type -> pb.ListPaymentsResponse
|
||||||
54, // 54: pb.df.ResendVerification:output_type -> pb.ResendVerificationResponse
|
54, // 54: pb.df.UpdatePayment:output_type -> pb.UpdatePaymentResponse
|
||||||
55, // 55: pb.df.VerifyEmail:output_type -> pb.VerifyEmailResponse
|
55, // 55: pb.df.ListReturnsLog:output_type -> pb.ListReturnsLogResponse
|
||||||
28, // [28:56] is the sub-list for method output_type
|
56, // 56: pb.df.UploadDocument:output_type -> pb.UploadDocumentResponse
|
||||||
0, // [0:28] is the sub-list for method input_type
|
57, // 57: pb.df.DeleteDocument:output_type -> pb.DeleteDocumentResponse
|
||||||
|
58, // 58: pb.df.ResendVerification:output_type -> pb.ResendVerificationResponse
|
||||||
|
59, // 59: pb.df.VerifyEmail:output_type -> pb.VerifyEmailResponse
|
||||||
|
30, // [30:60] is the sub-list for method output_type
|
||||||
|
0, // [0:30] is the sub-list for method input_type
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
0, // [0:0] is the sub-list for extension type_name
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
0, // [0:0] is the sub-list for extension extendee
|
||||||
0, // [0:0] is the sub-list for field type_name
|
0, // [0:0] is the sub-list for field type_name
|
||||||
@ -507,6 +537,8 @@ func file_service_df_proto_init() {
|
|||||||
file_rpc_list_persons_proto_init()
|
file_rpc_list_persons_proto_init()
|
||||||
file_rpc_update_person_proto_init()
|
file_rpc_update_person_proto_init()
|
||||||
file_rpc_delete_person_proto_init()
|
file_rpc_delete_person_proto_init()
|
||||||
|
file_rpc_add_email_proto_init()
|
||||||
|
file_rpc_add_emails_proto_init()
|
||||||
file_rpc_create_account_proto_init()
|
file_rpc_create_account_proto_init()
|
||||||
file_rpc_get_account_proto_init()
|
file_rpc_get_account_proto_init()
|
||||||
file_rpc_list_accounts_proto_init()
|
file_rpc_list_accounts_proto_init()
|
||||||
|
@ -531,6 +531,74 @@ func local_request_Df_UpdateAccountPrivacy_0(ctx context.Context, marshaler runt
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func request_Df_AddEmailAddress_0(ctx context.Context, marshaler runtime.Marshaler, client DfClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
|
||||||
|
var protoReq AddEmailAddressRequest
|
||||||
|
var metadata runtime.ServerMetadata
|
||||||
|
|
||||||
|
newReader, berr := utilities.IOReaderFactory(req.Body)
|
||||||
|
if berr != nil {
|
||||||
|
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
|
||||||
|
}
|
||||||
|
if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
|
||||||
|
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
msg, err := client.AddEmailAddress(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD))
|
||||||
|
return msg, metadata, err
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
func local_request_Df_AddEmailAddress_0(ctx context.Context, marshaler runtime.Marshaler, server DfServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
|
||||||
|
var protoReq AddEmailAddressRequest
|
||||||
|
var metadata runtime.ServerMetadata
|
||||||
|
|
||||||
|
newReader, berr := utilities.IOReaderFactory(req.Body)
|
||||||
|
if berr != nil {
|
||||||
|
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
|
||||||
|
}
|
||||||
|
if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
|
||||||
|
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
msg, err := server.AddEmailAddress(ctx, &protoReq)
|
||||||
|
return msg, metadata, err
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
func request_Df_AddEmailAddresses_0(ctx context.Context, marshaler runtime.Marshaler, client DfClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
|
||||||
|
var protoReq AddEmailAddressesRequest
|
||||||
|
var metadata runtime.ServerMetadata
|
||||||
|
|
||||||
|
newReader, berr := utilities.IOReaderFactory(req.Body)
|
||||||
|
if berr != nil {
|
||||||
|
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
|
||||||
|
}
|
||||||
|
if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
|
||||||
|
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
msg, err := client.AddEmailAddresses(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD))
|
||||||
|
return msg, metadata, err
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
func local_request_Df_AddEmailAddresses_0(ctx context.Context, marshaler runtime.Marshaler, server DfServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
|
||||||
|
var protoReq AddEmailAddressesRequest
|
||||||
|
var metadata runtime.ServerMetadata
|
||||||
|
|
||||||
|
newReader, berr := utilities.IOReaderFactory(req.Body)
|
||||||
|
if berr != nil {
|
||||||
|
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
|
||||||
|
}
|
||||||
|
if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
|
||||||
|
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
msg, err := server.AddEmailAddresses(ctx, &protoReq)
|
||||||
|
return msg, metadata, err
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
func request_Df_CreatePerson_0(ctx context.Context, marshaler runtime.Marshaler, client DfClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
|
func request_Df_CreatePerson_0(ctx context.Context, marshaler runtime.Marshaler, client DfClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
|
||||||
var protoReq CreatePersonRequest
|
var protoReq CreatePersonRequest
|
||||||
var metadata runtime.ServerMetadata
|
var metadata runtime.ServerMetadata
|
||||||
@ -1572,6 +1640,56 @@ func RegisterDfHandlerServer(ctx context.Context, mux *runtime.ServeMux, server
|
|||||||
|
|
||||||
})
|
})
|
||||||
|
|
||||||
|
mux.Handle("POST", pattern_Df_AddEmailAddress_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
|
||||||
|
ctx, cancel := context.WithCancel(req.Context())
|
||||||
|
defer cancel()
|
||||||
|
var stream runtime.ServerTransportStream
|
||||||
|
ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
|
||||||
|
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
|
||||||
|
var err error
|
||||||
|
var annotatedContext context.Context
|
||||||
|
annotatedContext, err = runtime.AnnotateIncomingContext(ctx, mux, req, "/pb.Df/AddEmailAddress", runtime.WithHTTPPathPattern("/v1/persons/add_email"))
|
||||||
|
if err != nil {
|
||||||
|
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
resp, md, err := local_request_Df_AddEmailAddress_0(annotatedContext, inboundMarshaler, server, req, pathParams)
|
||||||
|
md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
|
||||||
|
annotatedContext = runtime.NewServerMetadataContext(annotatedContext, md)
|
||||||
|
if err != nil {
|
||||||
|
runtime.HTTPError(annotatedContext, mux, outboundMarshaler, w, req, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
forward_Df_AddEmailAddress_0(annotatedContext, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
mux.Handle("POST", pattern_Df_AddEmailAddresses_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
|
||||||
|
ctx, cancel := context.WithCancel(req.Context())
|
||||||
|
defer cancel()
|
||||||
|
var stream runtime.ServerTransportStream
|
||||||
|
ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
|
||||||
|
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
|
||||||
|
var err error
|
||||||
|
var annotatedContext context.Context
|
||||||
|
annotatedContext, err = runtime.AnnotateIncomingContext(ctx, mux, req, "/pb.Df/AddEmailAddresses", runtime.WithHTTPPathPattern("/v1/persons/add_emails"))
|
||||||
|
if err != nil {
|
||||||
|
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
resp, md, err := local_request_Df_AddEmailAddresses_0(annotatedContext, inboundMarshaler, server, req, pathParams)
|
||||||
|
md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
|
||||||
|
annotatedContext = runtime.NewServerMetadataContext(annotatedContext, md)
|
||||||
|
if err != nil {
|
||||||
|
runtime.HTTPError(annotatedContext, mux, outboundMarshaler, w, req, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
forward_Df_AddEmailAddresses_0(annotatedContext, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
mux.Handle("POST", pattern_Df_CreatePerson_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
|
mux.Handle("POST", pattern_Df_CreatePerson_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
|
||||||
ctx, cancel := context.WithCancel(req.Context())
|
ctx, cancel := context.WithCancel(req.Context())
|
||||||
defer cancel()
|
defer cancel()
|
||||||
@ -2274,6 +2392,50 @@ func RegisterDfHandlerClient(ctx context.Context, mux *runtime.ServeMux, client
|
|||||||
|
|
||||||
})
|
})
|
||||||
|
|
||||||
|
mux.Handle("POST", pattern_Df_AddEmailAddress_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
|
||||||
|
ctx, cancel := context.WithCancel(req.Context())
|
||||||
|
defer cancel()
|
||||||
|
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
|
||||||
|
var err error
|
||||||
|
var annotatedContext context.Context
|
||||||
|
annotatedContext, err = runtime.AnnotateContext(ctx, mux, req, "/pb.Df/AddEmailAddress", runtime.WithHTTPPathPattern("/v1/persons/add_email"))
|
||||||
|
if err != nil {
|
||||||
|
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
resp, md, err := request_Df_AddEmailAddress_0(annotatedContext, inboundMarshaler, client, req, pathParams)
|
||||||
|
annotatedContext = runtime.NewServerMetadataContext(annotatedContext, md)
|
||||||
|
if err != nil {
|
||||||
|
runtime.HTTPError(annotatedContext, mux, outboundMarshaler, w, req, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
forward_Df_AddEmailAddress_0(annotatedContext, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
mux.Handle("POST", pattern_Df_AddEmailAddresses_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
|
||||||
|
ctx, cancel := context.WithCancel(req.Context())
|
||||||
|
defer cancel()
|
||||||
|
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
|
||||||
|
var err error
|
||||||
|
var annotatedContext context.Context
|
||||||
|
annotatedContext, err = runtime.AnnotateContext(ctx, mux, req, "/pb.Df/AddEmailAddresses", runtime.WithHTTPPathPattern("/v1/persons/add_emails"))
|
||||||
|
if err != nil {
|
||||||
|
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
resp, md, err := request_Df_AddEmailAddresses_0(annotatedContext, inboundMarshaler, client, req, pathParams)
|
||||||
|
annotatedContext = runtime.NewServerMetadataContext(annotatedContext, md)
|
||||||
|
if err != nil {
|
||||||
|
runtime.HTTPError(annotatedContext, mux, outboundMarshaler, w, req, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
forward_Df_AddEmailAddresses_0(annotatedContext, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
mux.Handle("POST", pattern_Df_CreatePerson_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
|
mux.Handle("POST", pattern_Df_CreatePerson_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
|
||||||
ctx, cancel := context.WithCancel(req.Context())
|
ctx, cancel := context.WithCancel(req.Context())
|
||||||
defer cancel()
|
defer cancel()
|
||||||
@ -2634,6 +2796,10 @@ var (
|
|||||||
|
|
||||||
pattern_Df_UpdateAccountPrivacy_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"v1", "accounts", "update_account_privacy"}, ""))
|
pattern_Df_UpdateAccountPrivacy_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"v1", "accounts", "update_account_privacy"}, ""))
|
||||||
|
|
||||||
|
pattern_Df_AddEmailAddress_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"v1", "persons", "add_email"}, ""))
|
||||||
|
|
||||||
|
pattern_Df_AddEmailAddresses_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"v1", "persons", "add_emails"}, ""))
|
||||||
|
|
||||||
pattern_Df_CreatePerson_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"v1", "persons", "create_person"}, ""))
|
pattern_Df_CreatePerson_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"v1", "persons", "create_person"}, ""))
|
||||||
|
|
||||||
pattern_Df_UpdatePerson_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"v1", "persons", "update_person"}, ""))
|
pattern_Df_UpdatePerson_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"v1", "persons", "update_person"}, ""))
|
||||||
@ -2692,6 +2858,10 @@ var (
|
|||||||
|
|
||||||
forward_Df_UpdateAccountPrivacy_0 = runtime.ForwardResponseMessage
|
forward_Df_UpdateAccountPrivacy_0 = runtime.ForwardResponseMessage
|
||||||
|
|
||||||
|
forward_Df_AddEmailAddress_0 = runtime.ForwardResponseMessage
|
||||||
|
|
||||||
|
forward_Df_AddEmailAddresses_0 = runtime.ForwardResponseMessage
|
||||||
|
|
||||||
forward_Df_CreatePerson_0 = runtime.ForwardResponseMessage
|
forward_Df_CreatePerson_0 = runtime.ForwardResponseMessage
|
||||||
|
|
||||||
forward_Df_UpdatePerson_0 = runtime.ForwardResponseMessage
|
forward_Df_UpdatePerson_0 = runtime.ForwardResponseMessage
|
||||||
|
@ -32,6 +32,8 @@ const (
|
|||||||
Df_CreateAccountInfo_FullMethodName = "/pb.df/CreateAccountInfo"
|
Df_CreateAccountInfo_FullMethodName = "/pb.df/CreateAccountInfo"
|
||||||
Df_UpdateAccountInfo_FullMethodName = "/pb.df/UpdateAccountInfo"
|
Df_UpdateAccountInfo_FullMethodName = "/pb.df/UpdateAccountInfo"
|
||||||
Df_UpdateAccountPrivacy_FullMethodName = "/pb.df/UpdateAccountPrivacy"
|
Df_UpdateAccountPrivacy_FullMethodName = "/pb.df/UpdateAccountPrivacy"
|
||||||
|
Df_AddEmailAddress_FullMethodName = "/pb.df/AddEmailAddress"
|
||||||
|
Df_AddEmailAddresses_FullMethodName = "/pb.df/AddEmailAddresses"
|
||||||
Df_CreatePerson_FullMethodName = "/pb.df/CreatePerson"
|
Df_CreatePerson_FullMethodName = "/pb.df/CreatePerson"
|
||||||
Df_UpdatePerson_FullMethodName = "/pb.df/UpdatePerson"
|
Df_UpdatePerson_FullMethodName = "/pb.df/UpdatePerson"
|
||||||
Df_GetPerson_FullMethodName = "/pb.df/GetPerson"
|
Df_GetPerson_FullMethodName = "/pb.df/GetPerson"
|
||||||
@ -66,6 +68,8 @@ type DfClient interface {
|
|||||||
CreateAccountInfo(ctx context.Context, in *CreateAccountInfoRequest, opts ...grpc.CallOption) (*CreateAccountInfoResponse, error)
|
CreateAccountInfo(ctx context.Context, in *CreateAccountInfoRequest, opts ...grpc.CallOption) (*CreateAccountInfoResponse, error)
|
||||||
UpdateAccountInfo(ctx context.Context, in *UpdateAccountInfoRequest, opts ...grpc.CallOption) (*UpdateAccountInfoResponse, error)
|
UpdateAccountInfo(ctx context.Context, in *UpdateAccountInfoRequest, opts ...grpc.CallOption) (*UpdateAccountInfoResponse, error)
|
||||||
UpdateAccountPrivacy(ctx context.Context, in *UpdateAccountPrivacyRequest, opts ...grpc.CallOption) (*UpdateAccountPrivacyResponse, error)
|
UpdateAccountPrivacy(ctx context.Context, in *UpdateAccountPrivacyRequest, opts ...grpc.CallOption) (*UpdateAccountPrivacyResponse, error)
|
||||||
|
AddEmailAddress(ctx context.Context, in *AddEmailAddressRequest, opts ...grpc.CallOption) (*AddEmailAddressResponse, error)
|
||||||
|
AddEmailAddresses(ctx context.Context, in *AddEmailAddressesRequest, opts ...grpc.CallOption) (*AddEmailAddressesResponse, error)
|
||||||
CreatePerson(ctx context.Context, in *CreatePersonRequest, opts ...grpc.CallOption) (*CreatePersonResponse, error)
|
CreatePerson(ctx context.Context, in *CreatePersonRequest, opts ...grpc.CallOption) (*CreatePersonResponse, error)
|
||||||
UpdatePerson(ctx context.Context, in *UpdatePersonRequest, opts ...grpc.CallOption) (*UpdatePersonResponse, error)
|
UpdatePerson(ctx context.Context, in *UpdatePersonRequest, opts ...grpc.CallOption) (*UpdatePersonResponse, error)
|
||||||
GetPerson(ctx context.Context, in *GetPersonRequest, opts ...grpc.CallOption) (*GetPersonResponse, error)
|
GetPerson(ctx context.Context, in *GetPersonRequest, opts ...grpc.CallOption) (*GetPersonResponse, error)
|
||||||
@ -208,6 +212,24 @@ func (c *dfClient) UpdateAccountPrivacy(ctx context.Context, in *UpdateAccountPr
|
|||||||
return out, nil
|
return out, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c *dfClient) AddEmailAddress(ctx context.Context, in *AddEmailAddressRequest, opts ...grpc.CallOption) (*AddEmailAddressResponse, error) {
|
||||||
|
out := new(AddEmailAddressResponse)
|
||||||
|
err := c.cc.Invoke(ctx, Df_AddEmailAddress_FullMethodName, in, out, opts...)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return out, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *dfClient) AddEmailAddresses(ctx context.Context, in *AddEmailAddressesRequest, opts ...grpc.CallOption) (*AddEmailAddressesResponse, error) {
|
||||||
|
out := new(AddEmailAddressesResponse)
|
||||||
|
err := c.cc.Invoke(ctx, Df_AddEmailAddresses_FullMethodName, in, out, opts...)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return out, nil
|
||||||
|
}
|
||||||
|
|
||||||
func (c *dfClient) CreatePerson(ctx context.Context, in *CreatePersonRequest, opts ...grpc.CallOption) (*CreatePersonResponse, error) {
|
func (c *dfClient) CreatePerson(ctx context.Context, in *CreatePersonRequest, opts ...grpc.CallOption) (*CreatePersonResponse, error) {
|
||||||
out := new(CreatePersonResponse)
|
out := new(CreatePersonResponse)
|
||||||
err := c.cc.Invoke(ctx, Df_CreatePerson_FullMethodName, in, out, opts...)
|
err := c.cc.Invoke(ctx, Df_CreatePerson_FullMethodName, in, out, opts...)
|
||||||
@ -360,6 +382,8 @@ type DfServer interface {
|
|||||||
CreateAccountInfo(context.Context, *CreateAccountInfoRequest) (*CreateAccountInfoResponse, error)
|
CreateAccountInfo(context.Context, *CreateAccountInfoRequest) (*CreateAccountInfoResponse, error)
|
||||||
UpdateAccountInfo(context.Context, *UpdateAccountInfoRequest) (*UpdateAccountInfoResponse, error)
|
UpdateAccountInfo(context.Context, *UpdateAccountInfoRequest) (*UpdateAccountInfoResponse, error)
|
||||||
UpdateAccountPrivacy(context.Context, *UpdateAccountPrivacyRequest) (*UpdateAccountPrivacyResponse, error)
|
UpdateAccountPrivacy(context.Context, *UpdateAccountPrivacyRequest) (*UpdateAccountPrivacyResponse, error)
|
||||||
|
AddEmailAddress(context.Context, *AddEmailAddressRequest) (*AddEmailAddressResponse, error)
|
||||||
|
AddEmailAddresses(context.Context, *AddEmailAddressesRequest) (*AddEmailAddressesResponse, error)
|
||||||
CreatePerson(context.Context, *CreatePersonRequest) (*CreatePersonResponse, error)
|
CreatePerson(context.Context, *CreatePersonRequest) (*CreatePersonResponse, error)
|
||||||
UpdatePerson(context.Context, *UpdatePersonRequest) (*UpdatePersonResponse, error)
|
UpdatePerson(context.Context, *UpdatePersonRequest) (*UpdatePersonResponse, error)
|
||||||
GetPerson(context.Context, *GetPersonRequest) (*GetPersonResponse, error)
|
GetPerson(context.Context, *GetPersonRequest) (*GetPersonResponse, error)
|
||||||
@ -421,6 +445,12 @@ func (UnimplementedDfServer) UpdateAccountInfo(context.Context, *UpdateAccountIn
|
|||||||
func (UnimplementedDfServer) UpdateAccountPrivacy(context.Context, *UpdateAccountPrivacyRequest) (*UpdateAccountPrivacyResponse, error) {
|
func (UnimplementedDfServer) UpdateAccountPrivacy(context.Context, *UpdateAccountPrivacyRequest) (*UpdateAccountPrivacyResponse, error) {
|
||||||
return nil, status.Errorf(codes.Unimplemented, "method UpdateAccountPrivacy not implemented")
|
return nil, status.Errorf(codes.Unimplemented, "method UpdateAccountPrivacy not implemented")
|
||||||
}
|
}
|
||||||
|
func (UnimplementedDfServer) AddEmailAddress(context.Context, *AddEmailAddressRequest) (*AddEmailAddressResponse, error) {
|
||||||
|
return nil, status.Errorf(codes.Unimplemented, "method AddEmailAddress not implemented")
|
||||||
|
}
|
||||||
|
func (UnimplementedDfServer) AddEmailAddresses(context.Context, *AddEmailAddressesRequest) (*AddEmailAddressesResponse, error) {
|
||||||
|
return nil, status.Errorf(codes.Unimplemented, "method AddEmailAddresses not implemented")
|
||||||
|
}
|
||||||
func (UnimplementedDfServer) CreatePerson(context.Context, *CreatePersonRequest) (*CreatePersonResponse, error) {
|
func (UnimplementedDfServer) CreatePerson(context.Context, *CreatePersonRequest) (*CreatePersonResponse, error) {
|
||||||
return nil, status.Errorf(codes.Unimplemented, "method CreatePerson not implemented")
|
return nil, status.Errorf(codes.Unimplemented, "method CreatePerson not implemented")
|
||||||
}
|
}
|
||||||
@ -713,6 +743,42 @@ func _Df_UpdateAccountPrivacy_Handler(srv interface{}, ctx context.Context, dec
|
|||||||
return interceptor(ctx, in, info, handler)
|
return interceptor(ctx, in, info, handler)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func _Df_AddEmailAddress_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||||
|
in := new(AddEmailAddressRequest)
|
||||||
|
if err := dec(in); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if interceptor == nil {
|
||||||
|
return srv.(DfServer).AddEmailAddress(ctx, in)
|
||||||
|
}
|
||||||
|
info := &grpc.UnaryServerInfo{
|
||||||
|
Server: srv,
|
||||||
|
FullMethod: Df_AddEmailAddress_FullMethodName,
|
||||||
|
}
|
||||||
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||||
|
return srv.(DfServer).AddEmailAddress(ctx, req.(*AddEmailAddressRequest))
|
||||||
|
}
|
||||||
|
return interceptor(ctx, in, info, handler)
|
||||||
|
}
|
||||||
|
|
||||||
|
func _Df_AddEmailAddresses_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||||
|
in := new(AddEmailAddressesRequest)
|
||||||
|
if err := dec(in); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if interceptor == nil {
|
||||||
|
return srv.(DfServer).AddEmailAddresses(ctx, in)
|
||||||
|
}
|
||||||
|
info := &grpc.UnaryServerInfo{
|
||||||
|
Server: srv,
|
||||||
|
FullMethod: Df_AddEmailAddresses_FullMethodName,
|
||||||
|
}
|
||||||
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||||
|
return srv.(DfServer).AddEmailAddresses(ctx, req.(*AddEmailAddressesRequest))
|
||||||
|
}
|
||||||
|
return interceptor(ctx, in, info, handler)
|
||||||
|
}
|
||||||
|
|
||||||
func _Df_CreatePerson_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
func _Df_CreatePerson_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||||
in := new(CreatePersonRequest)
|
in := new(CreatePersonRequest)
|
||||||
if err := dec(in); err != nil {
|
if err := dec(in); err != nil {
|
||||||
@ -1042,6 +1108,14 @@ var Df_ServiceDesc = grpc.ServiceDesc{
|
|||||||
MethodName: "UpdateAccountPrivacy",
|
MethodName: "UpdateAccountPrivacy",
|
||||||
Handler: _Df_UpdateAccountPrivacy_Handler,
|
Handler: _Df_UpdateAccountPrivacy_Handler,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
MethodName: "AddEmailAddress",
|
||||||
|
Handler: _Df_AddEmailAddress_Handler,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
MethodName: "AddEmailAddresses",
|
||||||
|
Handler: _Df_AddEmailAddresses_Handler,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
MethodName: "CreatePerson",
|
MethodName: "CreatePerson",
|
||||||
Handler: _Df_CreatePerson_Handler,
|
Handler: _Df_CreatePerson_Handler,
|
||||||
|
@ -17,6 +17,7 @@ message Account {
|
|||||||
uint64 id = 1;
|
uint64 id = 1;
|
||||||
string email = 2;
|
string email = 2;
|
||||||
optional string secret_key = 3;
|
optional string secret_key = 3;
|
||||||
|
optional uint32 account_level = 4;
|
||||||
google.protobuf.Timestamp email_verified_time = 9 [(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
google.protobuf.Timestamp email_verified_time = 9 [(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
||||||
example: "\"2023-10-05T00:00:00Z\""
|
example: "\"2023-10-05T00:00:00Z\""
|
||||||
}];
|
}];
|
||||||
|
18
bff/proto/email_address.proto
Normal file
18
bff/proto/email_address.proto
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package pb;
|
||||||
|
|
||||||
|
import "protoc-gen-openapiv2/options/annotations.proto";
|
||||||
|
|
||||||
|
option go_package = "github.com/itsscb/df/pb";
|
||||||
|
|
||||||
|
message EmailAddress {
|
||||||
|
option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema) = {
|
||||||
|
json_schema: {
|
||||||
|
title: "EmailAddress";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
uint64 id = 1;
|
||||||
|
uint64 person_id = 2;
|
||||||
|
string email = 3;
|
||||||
|
}
|
@ -33,4 +33,5 @@ message Person {
|
|||||||
google.protobuf.Timestamp changed = 13 [(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
google.protobuf.Timestamp changed = 13 [(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
||||||
example: "\"2023-10-05T00:00:00Z\""
|
example: "\"2023-10-05T00:00:00Z\""
|
||||||
}];
|
}];
|
||||||
|
optional string relationship = 14;
|
||||||
}
|
}
|
35
bff/proto/rpc_add_email.proto
Normal file
35
bff/proto/rpc_add_email.proto
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package pb;
|
||||||
|
|
||||||
|
import "protoc-gen-openapiv2/options/annotations.proto";
|
||||||
|
|
||||||
|
import "email_address.proto";
|
||||||
|
|
||||||
|
option go_package = "github.com/itsscb/df/pb";
|
||||||
|
|
||||||
|
message AddEmailAddressRequest {
|
||||||
|
option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema) = {
|
||||||
|
json_schema: {
|
||||||
|
title: "Add EmailAddress";
|
||||||
|
description: "Add an EmailAddress";
|
||||||
|
required: [
|
||||||
|
"person_id",
|
||||||
|
"email"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
uint64 person_id = 1;
|
||||||
|
string email = 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
message AddEmailAddressResponse {
|
||||||
|
option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema) = {
|
||||||
|
json_schema: {
|
||||||
|
title: "Added EmailAddress";
|
||||||
|
description: "Returns the added EmailAddress";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
EmailAddress email = 1 [(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
||||||
|
}];
|
||||||
|
}
|
35
bff/proto/rpc_add_emails.proto
Normal file
35
bff/proto/rpc_add_emails.proto
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package pb;
|
||||||
|
|
||||||
|
import "protoc-gen-openapiv2/options/annotations.proto";
|
||||||
|
|
||||||
|
import "email_address.proto";
|
||||||
|
|
||||||
|
option go_package = "github.com/itsscb/df/pb";
|
||||||
|
|
||||||
|
message AddEmailAddressesRequest {
|
||||||
|
option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema) = {
|
||||||
|
json_schema: {
|
||||||
|
title: "Add EmailAddress";
|
||||||
|
description: "Add an EmailAddress";
|
||||||
|
required: [
|
||||||
|
"person_id",
|
||||||
|
"email"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
uint64 person_id = 1;
|
||||||
|
repeated string email = 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
message AddEmailAddressesResponse {
|
||||||
|
option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema) = {
|
||||||
|
json_schema: {
|
||||||
|
title: "Added EmailAddresses";
|
||||||
|
description: "Returns the added EmailAddresses";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
repeated EmailAddress emails = 1 [(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
||||||
|
}];
|
||||||
|
}
|
@ -22,6 +22,7 @@ message CreatePersonRequest {
|
|||||||
"city",
|
"city",
|
||||||
"zip",
|
"zip",
|
||||||
"country",
|
"country",
|
||||||
|
"relationship",
|
||||||
"birthday"
|
"birthday"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
@ -34,7 +35,8 @@ message CreatePersonRequest {
|
|||||||
string city = 5;
|
string city = 5;
|
||||||
string zip = 6;
|
string zip = 6;
|
||||||
string country = 7;
|
string country = 7;
|
||||||
google.protobuf.Timestamp birthday = 8 [(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
string relationship = 8;
|
||||||
|
google.protobuf.Timestamp birthday = 9 [(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
||||||
example: "\"1990-10-05T00:00:00Z\""
|
example: "\"1990-10-05T00:00:00Z\""
|
||||||
}];
|
}];
|
||||||
}
|
}
|
||||||
|
30
bff/proto/rpc_delete_email.proto
Normal file
30
bff/proto/rpc_delete_email.proto
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package pb;
|
||||||
|
|
||||||
|
import "protoc-gen-openapiv2/options/annotations.proto";
|
||||||
|
|
||||||
|
option go_package = "github.com/itsscb/df/pb";
|
||||||
|
|
||||||
|
message DeleteEmailAddressRequest {
|
||||||
|
option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema) = {
|
||||||
|
json_schema: {
|
||||||
|
title: "Delete EmailAddress";
|
||||||
|
description: "Delete an EmailAddress";
|
||||||
|
required: [
|
||||||
|
"id"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
uint64 id = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
message DeleteEmailAddressResponse {
|
||||||
|
option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema) = {
|
||||||
|
json_schema: {
|
||||||
|
title: "Deleted EmailAddress";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
uint64 id = 1 [(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
||||||
|
}];
|
||||||
|
}
|
@ -28,7 +28,8 @@ message UpdatePersonRequest {
|
|||||||
optional string city = 5;
|
optional string city = 5;
|
||||||
optional string zip = 6;
|
optional string zip = 6;
|
||||||
optional string country = 7;
|
optional string country = 7;
|
||||||
optional google.protobuf.Timestamp birthday = 8 [(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
optional string relationship = 8;
|
||||||
|
optional google.protobuf.Timestamp birthday = 9 [(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
||||||
example: "\"1990-10-05T00:00:00Z\""
|
example: "\"1990-10-05T00:00:00Z\""
|
||||||
}];
|
}];
|
||||||
}
|
}
|
||||||
|
@ -16,6 +16,8 @@ import "rpc_get_person.proto";
|
|||||||
import "rpc_list_persons.proto";
|
import "rpc_list_persons.proto";
|
||||||
import "rpc_update_person.proto";
|
import "rpc_update_person.proto";
|
||||||
import "rpc_delete_person.proto";
|
import "rpc_delete_person.proto";
|
||||||
|
import "rpc_add_email.proto";
|
||||||
|
import "rpc_add_emails.proto";
|
||||||
|
|
||||||
import "rpc_create_account.proto";
|
import "rpc_create_account.proto";
|
||||||
import "rpc_get_account.proto";
|
import "rpc_get_account.proto";
|
||||||
@ -243,6 +245,36 @@ option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_swagger) = {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
rpc AddEmailAddress (AddEmailAddressRequest) returns (AddEmailAddressResponse) {
|
||||||
|
option (google.api.http) = {
|
||||||
|
post: "/v1/persons/add_email"
|
||||||
|
body: "*"
|
||||||
|
};
|
||||||
|
option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation) = {
|
||||||
|
summary: "Add Email Address"
|
||||||
|
security: {
|
||||||
|
security_requirement: {
|
||||||
|
key: "BearerAuth";
|
||||||
|
value: {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
};
|
||||||
|
rpc AddEmailAddresses (AddEmailAddressesRequest) returns (AddEmailAddressesResponse) {
|
||||||
|
option (google.api.http) = {
|
||||||
|
post: "/v1/persons/add_emails"
|
||||||
|
body: "*"
|
||||||
|
};
|
||||||
|
option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation) = {
|
||||||
|
summary: "Add Email Addresses"
|
||||||
|
security: {
|
||||||
|
security_requirement: {
|
||||||
|
key: "BearerAuth";
|
||||||
|
value: {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
};
|
||||||
rpc CreatePerson (CreatePersonRequest) returns (CreatePersonResponse) {
|
rpc CreatePerson (CreatePersonRequest) returns (CreatePersonResponse) {
|
||||||
option (google.api.http) = {
|
option (google.api.http) = {
|
||||||
post: "/v1/persons/create_person"
|
post: "/v1/persons/create_person"
|
||||||
|
@ -17,6 +17,10 @@ sql:
|
|||||||
go_type: "uint64"
|
go_type: "uint64"
|
||||||
- column: "payments.account_id"
|
- column: "payments.account_id"
|
||||||
go_type: "uint64"
|
go_type: "uint64"
|
||||||
|
- column: "email_addresses.person_id"
|
||||||
|
go_type: "uint64"
|
||||||
|
- column: "phone_numbers.person_id"
|
||||||
|
go_type: "uint64"
|
||||||
- column: "account_info.account_id"
|
- column: "account_info.account_id"
|
||||||
go_type: "uint64"
|
go_type: "uint64"
|
||||||
- column: "persons.account_id"
|
- column: "persons.account_id"
|
||||||
|
@ -14,16 +14,17 @@ import 'dart:core' as $core;
|
|||||||
import 'package:fixnum/fixnum.dart' as $fixnum;
|
import 'package:fixnum/fixnum.dart' as $fixnum;
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
import 'google/protobuf/timestamp.pb.dart' as $28;
|
import 'google/protobuf/timestamp.pb.dart' as $30;
|
||||||
|
|
||||||
class Account extends $pb.GeneratedMessage {
|
class Account extends $pb.GeneratedMessage {
|
||||||
factory Account({
|
factory Account({
|
||||||
$fixnum.Int64? id,
|
$fixnum.Int64? id,
|
||||||
$core.String? email,
|
$core.String? email,
|
||||||
$core.String? secretKey,
|
$core.String? secretKey,
|
||||||
$28.Timestamp? emailVerifiedTime,
|
$core.int? accountLevel,
|
||||||
|
$30.Timestamp? emailVerifiedTime,
|
||||||
$core.bool? emailVerified,
|
$core.bool? emailVerified,
|
||||||
$28.Timestamp? privacyAcceptedDate,
|
$30.Timestamp? privacyAcceptedDate,
|
||||||
$core.int? permissionLevel,
|
$core.int? permissionLevel,
|
||||||
}) {
|
}) {
|
||||||
final $result = create();
|
final $result = create();
|
||||||
@ -36,6 +37,9 @@ class Account extends $pb.GeneratedMessage {
|
|||||||
if (secretKey != null) {
|
if (secretKey != null) {
|
||||||
$result.secretKey = secretKey;
|
$result.secretKey = secretKey;
|
||||||
}
|
}
|
||||||
|
if (accountLevel != null) {
|
||||||
|
$result.accountLevel = accountLevel;
|
||||||
|
}
|
||||||
if (emailVerifiedTime != null) {
|
if (emailVerifiedTime != null) {
|
||||||
$result.emailVerifiedTime = emailVerifiedTime;
|
$result.emailVerifiedTime = emailVerifiedTime;
|
||||||
}
|
}
|
||||||
@ -58,9 +62,10 @@ class Account extends $pb.GeneratedMessage {
|
|||||||
..a<$fixnum.Int64>(1, _omitFieldNames ? '' : 'id', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO)
|
..a<$fixnum.Int64>(1, _omitFieldNames ? '' : 'id', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO)
|
||||||
..aOS(2, _omitFieldNames ? '' : 'email')
|
..aOS(2, _omitFieldNames ? '' : 'email')
|
||||||
..aOS(3, _omitFieldNames ? '' : 'secretKey')
|
..aOS(3, _omitFieldNames ? '' : 'secretKey')
|
||||||
..aOM<$28.Timestamp>(9, _omitFieldNames ? '' : 'emailVerifiedTime', subBuilder: $28.Timestamp.create)
|
..a<$core.int>(4, _omitFieldNames ? '' : 'accountLevel', $pb.PbFieldType.OU3)
|
||||||
|
..aOM<$30.Timestamp>(9, _omitFieldNames ? '' : 'emailVerifiedTime', subBuilder: $30.Timestamp.create)
|
||||||
..aOB(10, _omitFieldNames ? '' : 'emailVerified')
|
..aOB(10, _omitFieldNames ? '' : 'emailVerified')
|
||||||
..aOM<$28.Timestamp>(12, _omitFieldNames ? '' : 'privacyAcceptedDate', subBuilder: $28.Timestamp.create)
|
..aOM<$30.Timestamp>(12, _omitFieldNames ? '' : 'privacyAcceptedDate', subBuilder: $30.Timestamp.create)
|
||||||
..a<$core.int>(13, _omitFieldNames ? '' : 'permissionLevel', $pb.PbFieldType.O3)
|
..a<$core.int>(13, _omitFieldNames ? '' : 'permissionLevel', $pb.PbFieldType.O3)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
@ -113,43 +118,52 @@ class Account extends $pb.GeneratedMessage {
|
|||||||
@$pb.TagNumber(3)
|
@$pb.TagNumber(3)
|
||||||
void clearSecretKey() => clearField(3);
|
void clearSecretKey() => clearField(3);
|
||||||
|
|
||||||
|
@$pb.TagNumber(4)
|
||||||
|
$core.int get accountLevel => $_getIZ(3);
|
||||||
|
@$pb.TagNumber(4)
|
||||||
|
set accountLevel($core.int v) { $_setUnsignedInt32(3, v); }
|
||||||
|
@$pb.TagNumber(4)
|
||||||
|
$core.bool hasAccountLevel() => $_has(3);
|
||||||
|
@$pb.TagNumber(4)
|
||||||
|
void clearAccountLevel() => clearField(4);
|
||||||
|
|
||||||
@$pb.TagNumber(9)
|
@$pb.TagNumber(9)
|
||||||
$28.Timestamp get emailVerifiedTime => $_getN(3);
|
$30.Timestamp get emailVerifiedTime => $_getN(4);
|
||||||
@$pb.TagNumber(9)
|
@$pb.TagNumber(9)
|
||||||
set emailVerifiedTime($28.Timestamp v) { setField(9, v); }
|
set emailVerifiedTime($30.Timestamp v) { setField(9, v); }
|
||||||
@$pb.TagNumber(9)
|
@$pb.TagNumber(9)
|
||||||
$core.bool hasEmailVerifiedTime() => $_has(3);
|
$core.bool hasEmailVerifiedTime() => $_has(4);
|
||||||
@$pb.TagNumber(9)
|
@$pb.TagNumber(9)
|
||||||
void clearEmailVerifiedTime() => clearField(9);
|
void clearEmailVerifiedTime() => clearField(9);
|
||||||
@$pb.TagNumber(9)
|
@$pb.TagNumber(9)
|
||||||
$28.Timestamp ensureEmailVerifiedTime() => $_ensure(3);
|
$30.Timestamp ensureEmailVerifiedTime() => $_ensure(4);
|
||||||
|
|
||||||
@$pb.TagNumber(10)
|
@$pb.TagNumber(10)
|
||||||
$core.bool get emailVerified => $_getBF(4);
|
$core.bool get emailVerified => $_getBF(5);
|
||||||
@$pb.TagNumber(10)
|
@$pb.TagNumber(10)
|
||||||
set emailVerified($core.bool v) { $_setBool(4, v); }
|
set emailVerified($core.bool v) { $_setBool(5, v); }
|
||||||
@$pb.TagNumber(10)
|
@$pb.TagNumber(10)
|
||||||
$core.bool hasEmailVerified() => $_has(4);
|
$core.bool hasEmailVerified() => $_has(5);
|
||||||
@$pb.TagNumber(10)
|
@$pb.TagNumber(10)
|
||||||
void clearEmailVerified() => clearField(10);
|
void clearEmailVerified() => clearField(10);
|
||||||
|
|
||||||
@$pb.TagNumber(12)
|
@$pb.TagNumber(12)
|
||||||
$28.Timestamp get privacyAcceptedDate => $_getN(5);
|
$30.Timestamp get privacyAcceptedDate => $_getN(6);
|
||||||
@$pb.TagNumber(12)
|
@$pb.TagNumber(12)
|
||||||
set privacyAcceptedDate($28.Timestamp v) { setField(12, v); }
|
set privacyAcceptedDate($30.Timestamp v) { setField(12, v); }
|
||||||
@$pb.TagNumber(12)
|
@$pb.TagNumber(12)
|
||||||
$core.bool hasPrivacyAcceptedDate() => $_has(5);
|
$core.bool hasPrivacyAcceptedDate() => $_has(6);
|
||||||
@$pb.TagNumber(12)
|
@$pb.TagNumber(12)
|
||||||
void clearPrivacyAcceptedDate() => clearField(12);
|
void clearPrivacyAcceptedDate() => clearField(12);
|
||||||
@$pb.TagNumber(12)
|
@$pb.TagNumber(12)
|
||||||
$28.Timestamp ensurePrivacyAcceptedDate() => $_ensure(5);
|
$30.Timestamp ensurePrivacyAcceptedDate() => $_ensure(6);
|
||||||
|
|
||||||
@$pb.TagNumber(13)
|
@$pb.TagNumber(13)
|
||||||
$core.int get permissionLevel => $_getIZ(6);
|
$core.int get permissionLevel => $_getIZ(7);
|
||||||
@$pb.TagNumber(13)
|
@$pb.TagNumber(13)
|
||||||
set permissionLevel($core.int v) { $_setSignedInt32(6, v); }
|
set permissionLevel($core.int v) { $_setSignedInt32(7, v); }
|
||||||
@$pb.TagNumber(13)
|
@$pb.TagNumber(13)
|
||||||
$core.bool hasPermissionLevel() => $_has(6);
|
$core.bool hasPermissionLevel() => $_has(7);
|
||||||
@$pb.TagNumber(13)
|
@$pb.TagNumber(13)
|
||||||
void clearPermissionLevel() => clearField(13);
|
void clearPermissionLevel() => clearField(13);
|
||||||
}
|
}
|
||||||
|
@ -20,6 +20,7 @@ const Account$json = {
|
|||||||
{'1': 'id', '3': 1, '4': 1, '5': 4, '10': 'id'},
|
{'1': 'id', '3': 1, '4': 1, '5': 4, '10': 'id'},
|
||||||
{'1': 'email', '3': 2, '4': 1, '5': 9, '10': 'email'},
|
{'1': 'email', '3': 2, '4': 1, '5': 9, '10': 'email'},
|
||||||
{'1': 'secret_key', '3': 3, '4': 1, '5': 9, '9': 0, '10': 'secretKey', '17': true},
|
{'1': 'secret_key', '3': 3, '4': 1, '5': 9, '9': 0, '10': 'secretKey', '17': true},
|
||||||
|
{'1': 'account_level', '3': 4, '4': 1, '5': 13, '9': 1, '10': 'accountLevel', '17': true},
|
||||||
{'1': 'email_verified_time', '3': 9, '4': 1, '5': 11, '6': '.google.protobuf.Timestamp', '8': {}, '10': 'emailVerifiedTime'},
|
{'1': 'email_verified_time', '3': 9, '4': 1, '5': 11, '6': '.google.protobuf.Timestamp', '8': {}, '10': 'emailVerifiedTime'},
|
||||||
{'1': 'email_verified', '3': 10, '4': 1, '5': 8, '10': 'emailVerified'},
|
{'1': 'email_verified', '3': 10, '4': 1, '5': 8, '10': 'emailVerified'},
|
||||||
{'1': 'privacy_accepted_date', '3': 12, '4': 1, '5': 11, '6': '.google.protobuf.Timestamp', '8': {}, '10': 'privacyAcceptedDate'},
|
{'1': 'privacy_accepted_date', '3': 12, '4': 1, '5': 11, '6': '.google.protobuf.Timestamp', '8': {}, '10': 'privacyAcceptedDate'},
|
||||||
@ -28,25 +29,27 @@ const Account$json = {
|
|||||||
'7': {},
|
'7': {},
|
||||||
'8': [
|
'8': [
|
||||||
{'1': '_secret_key'},
|
{'1': '_secret_key'},
|
||||||
|
{'1': '_account_level'},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Descriptor for `Account`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `Account`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List accountDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List accountDescriptor = $convert.base64Decode(
|
||||||
'CgdBY2NvdW50Eg4KAmlkGAEgASgEUgJpZBIUCgVlbWFpbBgCIAEoCVIFZW1haWwSIgoKc2Vjcm'
|
'CgdBY2NvdW50Eg4KAmlkGAEgASgEUgJpZBIUCgVlbWFpbBgCIAEoCVIFZW1haWwSIgoKc2Vjcm'
|
||||||
'V0X2tleRgDIAEoCUgAUglzZWNyZXRLZXmIAQESZwoTZW1haWxfdmVyaWZpZWRfdGltZRgJIAEo'
|
'V0X2tleRgDIAEoCUgAUglzZWNyZXRLZXmIAQESKAoNYWNjb3VudF9sZXZlbBgEIAEoDUgBUgxh'
|
||||||
'CzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXBCG5JBGEoWIjIwMjMtMTAtMDVUMDA6MDA6MD'
|
'Y2NvdW50TGV2ZWyIAQESZwoTZW1haWxfdmVyaWZpZWRfdGltZRgJIAEoCzIaLmdvb2dsZS5wcm'
|
||||||
'BaIlIRZW1haWxWZXJpZmllZFRpbWUSJQoOZW1haWxfdmVyaWZpZWQYCiABKAhSDWVtYWlsVmVy'
|
'90b2J1Zi5UaW1lc3RhbXBCG5JBGEoWIjIwMjMtMTAtMDVUMDA6MDA6MDBaIlIRZW1haWxWZXJp'
|
||||||
'aWZpZWQSawoVcHJpdmFjeV9hY2NlcHRlZF9kYXRlGAwgASgLMhouZ29vZ2xlLnByb3RvYnVmLl'
|
'ZmllZFRpbWUSJQoOZW1haWxfdmVyaWZpZWQYCiABKAhSDWVtYWlsVmVyaWZpZWQSawoVcHJpdm'
|
||||||
'RpbWVzdGFtcEIbkkEYShYiMjAyMy0xMC0wNVQwMDowMDowMFoiUhNwcml2YWN5QWNjZXB0ZWRE'
|
'FjeV9hY2NlcHRlZF9kYXRlGAwgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcEIbkkEY'
|
||||||
'YXRlEk4KEHBlcm1pc3Npb25fbGV2ZWwYDSABKAVCI5JBIDIeRGVmYXVsdCBpcyAwIChub24tcH'
|
'ShYiMjAyMy0xMC0wNVQwMDowMDowMFoiUhNwcml2YWN5QWNjZXB0ZWREYXRlEk4KEHBlcm1pc3'
|
||||||
'JpdmlsZWRnZWQpUg9wZXJtaXNzaW9uTGV2ZWw6vQOSQbkDCgkqB0FjY291bnQyqwN7ImlkIjog'
|
'Npb25fbGV2ZWwYDSABKAVCI5JBIDIeRGVmYXVsdCBpcyAwIChub24tcHJpdmlsZWRnZWQpUg9w'
|
||||||
'IjEiLCJlbWFpbCI6ICJqb2huLmRvZUBleGFtcGxlLmNvbSIsICJmaXJzdG5hbWUiOiAiSm9obi'
|
'ZXJtaXNzaW9uTGV2ZWw6vQOSQbkDCgkqB0FjY291bnQyqwN7ImlkIjogIjEiLCJlbWFpbCI6IC'
|
||||||
'IsICJsYXN0bmFtZSI6ICJEb2UiLCAicGhvbmUiOiAiIiwgInN0cmVldCI6ICJEZWF0aCBTdGFy'
|
'Jqb2huLmRvZUBleGFtcGxlLmNvbSIsICJmaXJzdG5hbWUiOiAiSm9obiIsICJsYXN0bmFtZSI6'
|
||||||
'IDIiLCAiemlwIjogIjA4MTUiLCAiY2l0eSI6ICJOZXcgWW9yayIsICJjb3VudHJ5IjogIlVTQS'
|
'ICJEb2UiLCAicGhvbmUiOiAiIiwgInN0cmVldCI6ICJEZWF0aCBTdGFyIDIiLCAiemlwIjogIj'
|
||||||
'IsICJiaXJ0aGRheSI6ICIxOTkwLTEwLTA1VDAwOjAwOjAwWiIsICJwcml2YWN5X2FjY2VwdGVk'
|
'A4MTUiLCAiY2l0eSI6ICJOZXcgWW9yayIsICJjb3VudHJ5IjogIlVTQSIsICJiaXJ0aGRheSI6'
|
||||||
'IjogZmFsc2UsICJwcml2YWN5X2FjY2VwdGVkX2RhdGUiOiAiMDAwMS0wMS0wMVQwMDowMDowMF'
|
'ICIxOTkwLTEwLTA1VDAwOjAwOjAwWiIsICJwcml2YWN5X2FjY2VwdGVkIjogZmFsc2UsICJwcm'
|
||||||
'oiLCAiY3JlYXRvciI6ICJqb2huLmRvZUBleGFtcGxlLmNvbSIsICJjcmVhdGVkIjogIjIwMjMt'
|
'l2YWN5X2FjY2VwdGVkX2RhdGUiOiAiMDAwMS0wMS0wMVQwMDowMDowMFoiLCAiY3JlYXRvciI6'
|
||||||
'MTAtMDVUMDI6MzA6NTNaIiwgImNoYW5nZXIiOiAiam9obi5kb2VAZXhhbXBsZS5jb20iLCAiY2'
|
'ICJqb2huLmRvZUBleGFtcGxlLmNvbSIsICJjcmVhdGVkIjogIjIwMjMtMTAtMDVUMDI6MzA6NT'
|
||||||
'hhbmdlZCI6ICIyMDIzLTEwLTA1VDAyOjMwOjUzWiJ9Qg0KC19zZWNyZXRfa2V5');
|
'NaIiwgImNoYW5nZXIiOiAiam9obi5kb2VAZXhhbXBsZS5jb20iLCAiY2hhbmdlZCI6ICIyMDIz'
|
||||||
|
'LTEwLTA1VDAyOjMwOjUzWiJ9Qg0KC19zZWNyZXRfa2V5QhAKDl9hY2NvdW50X2xldmVs');
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ import 'dart:core' as $core;
|
|||||||
import 'package:fixnum/fixnum.dart' as $fixnum;
|
import 'package:fixnum/fixnum.dart' as $fixnum;
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
import 'google/protobuf/timestamp.pb.dart' as $28;
|
import 'google/protobuf/timestamp.pb.dart' as $30;
|
||||||
|
|
||||||
class AccountInfo extends $pb.GeneratedMessage {
|
class AccountInfo extends $pb.GeneratedMessage {
|
||||||
factory AccountInfo({
|
factory AccountInfo({
|
||||||
@ -25,15 +25,15 @@ class AccountInfo extends $pb.GeneratedMessage {
|
|||||||
$core.String? city,
|
$core.String? city,
|
||||||
$core.String? zip,
|
$core.String? zip,
|
||||||
$core.String? country,
|
$core.String? country,
|
||||||
$28.Timestamp? birthday,
|
$30.Timestamp? birthday,
|
||||||
$core.String? phone,
|
$core.String? phone,
|
||||||
$core.bool? privacyAccepted,
|
$core.bool? privacyAccepted,
|
||||||
$28.Timestamp? privacyAcceptedDate,
|
$30.Timestamp? privacyAcceptedDate,
|
||||||
$core.int? permissionLevel,
|
$core.int? permissionLevel,
|
||||||
$core.String? creator,
|
$core.String? creator,
|
||||||
$28.Timestamp? created,
|
$30.Timestamp? created,
|
||||||
$core.String? changer,
|
$core.String? changer,
|
||||||
$28.Timestamp? changed,
|
$30.Timestamp? changed,
|
||||||
}) {
|
}) {
|
||||||
final $result = create();
|
final $result = create();
|
||||||
if (accountId != null) {
|
if (accountId != null) {
|
||||||
@ -98,15 +98,15 @@ class AccountInfo extends $pb.GeneratedMessage {
|
|||||||
..aOS(6, _omitFieldNames ? '' : 'city')
|
..aOS(6, _omitFieldNames ? '' : 'city')
|
||||||
..aOS(7, _omitFieldNames ? '' : 'zip')
|
..aOS(7, _omitFieldNames ? '' : 'zip')
|
||||||
..aOS(8, _omitFieldNames ? '' : 'country')
|
..aOS(8, _omitFieldNames ? '' : 'country')
|
||||||
..aOM<$28.Timestamp>(9, _omitFieldNames ? '' : 'birthday', subBuilder: $28.Timestamp.create)
|
..aOM<$30.Timestamp>(9, _omitFieldNames ? '' : 'birthday', subBuilder: $30.Timestamp.create)
|
||||||
..aOS(10, _omitFieldNames ? '' : 'phone')
|
..aOS(10, _omitFieldNames ? '' : 'phone')
|
||||||
..aOB(11, _omitFieldNames ? '' : 'privacyAccepted')
|
..aOB(11, _omitFieldNames ? '' : 'privacyAccepted')
|
||||||
..aOM<$28.Timestamp>(12, _omitFieldNames ? '' : 'privacyAcceptedDate', subBuilder: $28.Timestamp.create)
|
..aOM<$30.Timestamp>(12, _omitFieldNames ? '' : 'privacyAcceptedDate', subBuilder: $30.Timestamp.create)
|
||||||
..a<$core.int>(13, _omitFieldNames ? '' : 'permissionLevel', $pb.PbFieldType.O3)
|
..a<$core.int>(13, _omitFieldNames ? '' : 'permissionLevel', $pb.PbFieldType.O3)
|
||||||
..aOS(14, _omitFieldNames ? '' : 'creator')
|
..aOS(14, _omitFieldNames ? '' : 'creator')
|
||||||
..aOM<$28.Timestamp>(15, _omitFieldNames ? '' : 'created', subBuilder: $28.Timestamp.create)
|
..aOM<$30.Timestamp>(15, _omitFieldNames ? '' : 'created', subBuilder: $30.Timestamp.create)
|
||||||
..aOS(16, _omitFieldNames ? '' : 'changer')
|
..aOS(16, _omitFieldNames ? '' : 'changer')
|
||||||
..aOM<$28.Timestamp>(17, _omitFieldNames ? '' : 'changed', subBuilder: $28.Timestamp.create)
|
..aOM<$30.Timestamp>(17, _omitFieldNames ? '' : 'changed', subBuilder: $30.Timestamp.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@ -195,15 +195,15 @@ class AccountInfo extends $pb.GeneratedMessage {
|
|||||||
void clearCountry() => clearField(8);
|
void clearCountry() => clearField(8);
|
||||||
|
|
||||||
@$pb.TagNumber(9)
|
@$pb.TagNumber(9)
|
||||||
$28.Timestamp get birthday => $_getN(7);
|
$30.Timestamp get birthday => $_getN(7);
|
||||||
@$pb.TagNumber(9)
|
@$pb.TagNumber(9)
|
||||||
set birthday($28.Timestamp v) { setField(9, v); }
|
set birthday($30.Timestamp v) { setField(9, v); }
|
||||||
@$pb.TagNumber(9)
|
@$pb.TagNumber(9)
|
||||||
$core.bool hasBirthday() => $_has(7);
|
$core.bool hasBirthday() => $_has(7);
|
||||||
@$pb.TagNumber(9)
|
@$pb.TagNumber(9)
|
||||||
void clearBirthday() => clearField(9);
|
void clearBirthday() => clearField(9);
|
||||||
@$pb.TagNumber(9)
|
@$pb.TagNumber(9)
|
||||||
$28.Timestamp ensureBirthday() => $_ensure(7);
|
$30.Timestamp ensureBirthday() => $_ensure(7);
|
||||||
|
|
||||||
@$pb.TagNumber(10)
|
@$pb.TagNumber(10)
|
||||||
$core.String get phone => $_getSZ(8);
|
$core.String get phone => $_getSZ(8);
|
||||||
@ -224,15 +224,15 @@ class AccountInfo extends $pb.GeneratedMessage {
|
|||||||
void clearPrivacyAccepted() => clearField(11);
|
void clearPrivacyAccepted() => clearField(11);
|
||||||
|
|
||||||
@$pb.TagNumber(12)
|
@$pb.TagNumber(12)
|
||||||
$28.Timestamp get privacyAcceptedDate => $_getN(10);
|
$30.Timestamp get privacyAcceptedDate => $_getN(10);
|
||||||
@$pb.TagNumber(12)
|
@$pb.TagNumber(12)
|
||||||
set privacyAcceptedDate($28.Timestamp v) { setField(12, v); }
|
set privacyAcceptedDate($30.Timestamp v) { setField(12, v); }
|
||||||
@$pb.TagNumber(12)
|
@$pb.TagNumber(12)
|
||||||
$core.bool hasPrivacyAcceptedDate() => $_has(10);
|
$core.bool hasPrivacyAcceptedDate() => $_has(10);
|
||||||
@$pb.TagNumber(12)
|
@$pb.TagNumber(12)
|
||||||
void clearPrivacyAcceptedDate() => clearField(12);
|
void clearPrivacyAcceptedDate() => clearField(12);
|
||||||
@$pb.TagNumber(12)
|
@$pb.TagNumber(12)
|
||||||
$28.Timestamp ensurePrivacyAcceptedDate() => $_ensure(10);
|
$30.Timestamp ensurePrivacyAcceptedDate() => $_ensure(10);
|
||||||
|
|
||||||
@$pb.TagNumber(13)
|
@$pb.TagNumber(13)
|
||||||
$core.int get permissionLevel => $_getIZ(11);
|
$core.int get permissionLevel => $_getIZ(11);
|
||||||
@ -253,15 +253,15 @@ class AccountInfo extends $pb.GeneratedMessage {
|
|||||||
void clearCreator() => clearField(14);
|
void clearCreator() => clearField(14);
|
||||||
|
|
||||||
@$pb.TagNumber(15)
|
@$pb.TagNumber(15)
|
||||||
$28.Timestamp get created => $_getN(13);
|
$30.Timestamp get created => $_getN(13);
|
||||||
@$pb.TagNumber(15)
|
@$pb.TagNumber(15)
|
||||||
set created($28.Timestamp v) { setField(15, v); }
|
set created($30.Timestamp v) { setField(15, v); }
|
||||||
@$pb.TagNumber(15)
|
@$pb.TagNumber(15)
|
||||||
$core.bool hasCreated() => $_has(13);
|
$core.bool hasCreated() => $_has(13);
|
||||||
@$pb.TagNumber(15)
|
@$pb.TagNumber(15)
|
||||||
void clearCreated() => clearField(15);
|
void clearCreated() => clearField(15);
|
||||||
@$pb.TagNumber(15)
|
@$pb.TagNumber(15)
|
||||||
$28.Timestamp ensureCreated() => $_ensure(13);
|
$30.Timestamp ensureCreated() => $_ensure(13);
|
||||||
|
|
||||||
@$pb.TagNumber(16)
|
@$pb.TagNumber(16)
|
||||||
$core.String get changer => $_getSZ(14);
|
$core.String get changer => $_getSZ(14);
|
||||||
@ -273,15 +273,15 @@ class AccountInfo extends $pb.GeneratedMessage {
|
|||||||
void clearChanger() => clearField(16);
|
void clearChanger() => clearField(16);
|
||||||
|
|
||||||
@$pb.TagNumber(17)
|
@$pb.TagNumber(17)
|
||||||
$28.Timestamp get changed => $_getN(15);
|
$30.Timestamp get changed => $_getN(15);
|
||||||
@$pb.TagNumber(17)
|
@$pb.TagNumber(17)
|
||||||
set changed($28.Timestamp v) { setField(17, v); }
|
set changed($30.Timestamp v) { setField(17, v); }
|
||||||
@$pb.TagNumber(17)
|
@$pb.TagNumber(17)
|
||||||
$core.bool hasChanged() => $_has(15);
|
$core.bool hasChanged() => $_has(15);
|
||||||
@$pb.TagNumber(17)
|
@$pb.TagNumber(17)
|
||||||
void clearChanged() => clearField(17);
|
void clearChanged() => clearField(17);
|
||||||
@$pb.TagNumber(17)
|
@$pb.TagNumber(17)
|
||||||
$28.Timestamp ensureChanged() => $_ensure(15);
|
$30.Timestamp ensureChanged() => $_ensure(15);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ import 'dart:core' as $core;
|
|||||||
import 'package:fixnum/fixnum.dart' as $fixnum;
|
import 'package:fixnum/fixnum.dart' as $fixnum;
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
import 'google/protobuf/timestamp.pb.dart' as $28;
|
import 'google/protobuf/timestamp.pb.dart' as $30;
|
||||||
|
|
||||||
class Document extends $pb.GeneratedMessage {
|
class Document extends $pb.GeneratedMessage {
|
||||||
factory Document({
|
factory Document({
|
||||||
@ -26,11 +26,11 @@ class Document extends $pb.GeneratedMessage {
|
|||||||
$core.String? url,
|
$core.String? url,
|
||||||
$core.bool? valid,
|
$core.bool? valid,
|
||||||
$core.String? validatedBy,
|
$core.String? validatedBy,
|
||||||
$28.Timestamp? validDate,
|
$30.Timestamp? validDate,
|
||||||
$core.String? creator,
|
$core.String? creator,
|
||||||
$28.Timestamp? created,
|
$30.Timestamp? created,
|
||||||
$core.String? changer,
|
$core.String? changer,
|
||||||
$28.Timestamp? changed,
|
$30.Timestamp? changed,
|
||||||
$fixnum.Int64? id,
|
$fixnum.Int64? id,
|
||||||
}) {
|
}) {
|
||||||
final $result = create();
|
final $result = create();
|
||||||
@ -91,11 +91,11 @@ class Document extends $pb.GeneratedMessage {
|
|||||||
..aOS(6, _omitFieldNames ? '' : 'url')
|
..aOS(6, _omitFieldNames ? '' : 'url')
|
||||||
..aOB(7, _omitFieldNames ? '' : 'valid')
|
..aOB(7, _omitFieldNames ? '' : 'valid')
|
||||||
..aOS(8, _omitFieldNames ? '' : 'validatedBy')
|
..aOS(8, _omitFieldNames ? '' : 'validatedBy')
|
||||||
..aOM<$28.Timestamp>(9, _omitFieldNames ? '' : 'validDate', subBuilder: $28.Timestamp.create)
|
..aOM<$30.Timestamp>(9, _omitFieldNames ? '' : 'validDate', subBuilder: $30.Timestamp.create)
|
||||||
..aOS(10, _omitFieldNames ? '' : 'creator')
|
..aOS(10, _omitFieldNames ? '' : 'creator')
|
||||||
..aOM<$28.Timestamp>(11, _omitFieldNames ? '' : 'created', subBuilder: $28.Timestamp.create)
|
..aOM<$30.Timestamp>(11, _omitFieldNames ? '' : 'created', subBuilder: $30.Timestamp.create)
|
||||||
..aOS(12, _omitFieldNames ? '' : 'changer')
|
..aOS(12, _omitFieldNames ? '' : 'changer')
|
||||||
..aOM<$28.Timestamp>(13, _omitFieldNames ? '' : 'changed', subBuilder: $28.Timestamp.create)
|
..aOM<$30.Timestamp>(13, _omitFieldNames ? '' : 'changed', subBuilder: $30.Timestamp.create)
|
||||||
..a<$fixnum.Int64>(14, _omitFieldNames ? '' : 'id', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO)
|
..a<$fixnum.Int64>(14, _omitFieldNames ? '' : 'id', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
@ -194,15 +194,15 @@ class Document extends $pb.GeneratedMessage {
|
|||||||
void clearValidatedBy() => clearField(8);
|
void clearValidatedBy() => clearField(8);
|
||||||
|
|
||||||
@$pb.TagNumber(9)
|
@$pb.TagNumber(9)
|
||||||
$28.Timestamp get validDate => $_getN(8);
|
$30.Timestamp get validDate => $_getN(8);
|
||||||
@$pb.TagNumber(9)
|
@$pb.TagNumber(9)
|
||||||
set validDate($28.Timestamp v) { setField(9, v); }
|
set validDate($30.Timestamp v) { setField(9, v); }
|
||||||
@$pb.TagNumber(9)
|
@$pb.TagNumber(9)
|
||||||
$core.bool hasValidDate() => $_has(8);
|
$core.bool hasValidDate() => $_has(8);
|
||||||
@$pb.TagNumber(9)
|
@$pb.TagNumber(9)
|
||||||
void clearValidDate() => clearField(9);
|
void clearValidDate() => clearField(9);
|
||||||
@$pb.TagNumber(9)
|
@$pb.TagNumber(9)
|
||||||
$28.Timestamp ensureValidDate() => $_ensure(8);
|
$30.Timestamp ensureValidDate() => $_ensure(8);
|
||||||
|
|
||||||
@$pb.TagNumber(10)
|
@$pb.TagNumber(10)
|
||||||
$core.String get creator => $_getSZ(9);
|
$core.String get creator => $_getSZ(9);
|
||||||
@ -214,15 +214,15 @@ class Document extends $pb.GeneratedMessage {
|
|||||||
void clearCreator() => clearField(10);
|
void clearCreator() => clearField(10);
|
||||||
|
|
||||||
@$pb.TagNumber(11)
|
@$pb.TagNumber(11)
|
||||||
$28.Timestamp get created => $_getN(10);
|
$30.Timestamp get created => $_getN(10);
|
||||||
@$pb.TagNumber(11)
|
@$pb.TagNumber(11)
|
||||||
set created($28.Timestamp v) { setField(11, v); }
|
set created($30.Timestamp v) { setField(11, v); }
|
||||||
@$pb.TagNumber(11)
|
@$pb.TagNumber(11)
|
||||||
$core.bool hasCreated() => $_has(10);
|
$core.bool hasCreated() => $_has(10);
|
||||||
@$pb.TagNumber(11)
|
@$pb.TagNumber(11)
|
||||||
void clearCreated() => clearField(11);
|
void clearCreated() => clearField(11);
|
||||||
@$pb.TagNumber(11)
|
@$pb.TagNumber(11)
|
||||||
$28.Timestamp ensureCreated() => $_ensure(10);
|
$30.Timestamp ensureCreated() => $_ensure(10);
|
||||||
|
|
||||||
@$pb.TagNumber(12)
|
@$pb.TagNumber(12)
|
||||||
$core.String get changer => $_getSZ(11);
|
$core.String get changer => $_getSZ(11);
|
||||||
@ -234,15 +234,15 @@ class Document extends $pb.GeneratedMessage {
|
|||||||
void clearChanger() => clearField(12);
|
void clearChanger() => clearField(12);
|
||||||
|
|
||||||
@$pb.TagNumber(13)
|
@$pb.TagNumber(13)
|
||||||
$28.Timestamp get changed => $_getN(12);
|
$30.Timestamp get changed => $_getN(12);
|
||||||
@$pb.TagNumber(13)
|
@$pb.TagNumber(13)
|
||||||
set changed($28.Timestamp v) { setField(13, v); }
|
set changed($30.Timestamp v) { setField(13, v); }
|
||||||
@$pb.TagNumber(13)
|
@$pb.TagNumber(13)
|
||||||
$core.bool hasChanged() => $_has(12);
|
$core.bool hasChanged() => $_has(12);
|
||||||
@$pb.TagNumber(13)
|
@$pb.TagNumber(13)
|
||||||
void clearChanged() => clearField(13);
|
void clearChanged() => clearField(13);
|
||||||
@$pb.TagNumber(13)
|
@$pb.TagNumber(13)
|
||||||
$28.Timestamp ensureChanged() => $_ensure(12);
|
$30.Timestamp ensureChanged() => $_ensure(12);
|
||||||
|
|
||||||
@$pb.TagNumber(14)
|
@$pb.TagNumber(14)
|
||||||
$fixnum.Int64 get id => $_getI64(13);
|
$fixnum.Int64 get id => $_getI64(13);
|
||||||
|
97
frontend/app/lib/pb/email_address.pb.dart
Normal file
97
frontend/app/lib/pb/email_address.pb.dart
Normal file
@ -0,0 +1,97 @@
|
|||||||
|
//
|
||||||
|
// Generated code. Do not modify.
|
||||||
|
// source: email_address.proto
|
||||||
|
//
|
||||||
|
// @dart = 2.12
|
||||||
|
|
||||||
|
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||||
|
// ignore_for_file: constant_identifier_names, library_prefixes
|
||||||
|
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
|
||||||
|
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
|
||||||
|
|
||||||
|
import 'dart:core' as $core;
|
||||||
|
|
||||||
|
import 'package:fixnum/fixnum.dart' as $fixnum;
|
||||||
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
|
class EmailAddress extends $pb.GeneratedMessage {
|
||||||
|
factory EmailAddress({
|
||||||
|
$fixnum.Int64? id,
|
||||||
|
$fixnum.Int64? personId,
|
||||||
|
$core.String? email,
|
||||||
|
}) {
|
||||||
|
final $result = create();
|
||||||
|
if (id != null) {
|
||||||
|
$result.id = id;
|
||||||
|
}
|
||||||
|
if (personId != null) {
|
||||||
|
$result.personId = personId;
|
||||||
|
}
|
||||||
|
if (email != null) {
|
||||||
|
$result.email = email;
|
||||||
|
}
|
||||||
|
return $result;
|
||||||
|
}
|
||||||
|
EmailAddress._() : super();
|
||||||
|
factory EmailAddress.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||||
|
factory EmailAddress.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||||
|
|
||||||
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'EmailAddress', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
||||||
|
..a<$fixnum.Int64>(1, _omitFieldNames ? '' : 'id', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO)
|
||||||
|
..a<$fixnum.Int64>(2, _omitFieldNames ? '' : 'personId', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO)
|
||||||
|
..aOS(3, _omitFieldNames ? '' : 'email')
|
||||||
|
..hasRequiredFields = false
|
||||||
|
;
|
||||||
|
|
||||||
|
@$core.Deprecated(
|
||||||
|
'Using this can add significant overhead to your binary. '
|
||||||
|
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||||
|
'Will be removed in next major version')
|
||||||
|
EmailAddress clone() => EmailAddress()..mergeFromMessage(this);
|
||||||
|
@$core.Deprecated(
|
||||||
|
'Using this can add significant overhead to your binary. '
|
||||||
|
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||||
|
'Will be removed in next major version')
|
||||||
|
EmailAddress copyWith(void Function(EmailAddress) updates) => super.copyWith((message) => updates(message as EmailAddress)) as EmailAddress;
|
||||||
|
|
||||||
|
$pb.BuilderInfo get info_ => _i;
|
||||||
|
|
||||||
|
@$core.pragma('dart2js:noInline')
|
||||||
|
static EmailAddress create() => EmailAddress._();
|
||||||
|
EmailAddress createEmptyInstance() => create();
|
||||||
|
static $pb.PbList<EmailAddress> createRepeated() => $pb.PbList<EmailAddress>();
|
||||||
|
@$core.pragma('dart2js:noInline')
|
||||||
|
static EmailAddress getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<EmailAddress>(create);
|
||||||
|
static EmailAddress? _defaultInstance;
|
||||||
|
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
$fixnum.Int64 get id => $_getI64(0);
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
set id($fixnum.Int64 v) { $_setInt64(0, v); }
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
$core.bool hasId() => $_has(0);
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
void clearId() => clearField(1);
|
||||||
|
|
||||||
|
@$pb.TagNumber(2)
|
||||||
|
$fixnum.Int64 get personId => $_getI64(1);
|
||||||
|
@$pb.TagNumber(2)
|
||||||
|
set personId($fixnum.Int64 v) { $_setInt64(1, v); }
|
||||||
|
@$pb.TagNumber(2)
|
||||||
|
$core.bool hasPersonId() => $_has(1);
|
||||||
|
@$pb.TagNumber(2)
|
||||||
|
void clearPersonId() => clearField(2);
|
||||||
|
|
||||||
|
@$pb.TagNumber(3)
|
||||||
|
$core.String get email => $_getSZ(2);
|
||||||
|
@$pb.TagNumber(3)
|
||||||
|
set email($core.String v) { $_setString(2, v); }
|
||||||
|
@$pb.TagNumber(3)
|
||||||
|
$core.bool hasEmail() => $_has(2);
|
||||||
|
@$pb.TagNumber(3)
|
||||||
|
void clearEmail() => clearField(3);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||||
|
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
11
frontend/app/lib/pb/email_address.pbenum.dart
Normal file
11
frontend/app/lib/pb/email_address.pbenum.dart
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
//
|
||||||
|
// Generated code. Do not modify.
|
||||||
|
// source: email_address.proto
|
||||||
|
//
|
||||||
|
// @dart = 2.12
|
||||||
|
|
||||||
|
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||||
|
// ignore_for_file: constant_identifier_names, library_prefixes
|
||||||
|
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
|
||||||
|
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
|
||||||
|
|
31
frontend/app/lib/pb/email_address.pbjson.dart
Normal file
31
frontend/app/lib/pb/email_address.pbjson.dart
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
//
|
||||||
|
// Generated code. Do not modify.
|
||||||
|
// source: email_address.proto
|
||||||
|
//
|
||||||
|
// @dart = 2.12
|
||||||
|
|
||||||
|
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||||
|
// ignore_for_file: constant_identifier_names, library_prefixes
|
||||||
|
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
|
||||||
|
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
|
||||||
|
|
||||||
|
import 'dart:convert' as $convert;
|
||||||
|
import 'dart:core' as $core;
|
||||||
|
import 'dart:typed_data' as $typed_data;
|
||||||
|
|
||||||
|
@$core.Deprecated('Use emailAddressDescriptor instead')
|
||||||
|
const EmailAddress$json = {
|
||||||
|
'1': 'EmailAddress',
|
||||||
|
'2': [
|
||||||
|
{'1': 'id', '3': 1, '4': 1, '5': 4, '10': 'id'},
|
||||||
|
{'1': 'person_id', '3': 2, '4': 1, '5': 4, '10': 'personId'},
|
||||||
|
{'1': 'email', '3': 3, '4': 1, '5': 9, '10': 'email'},
|
||||||
|
],
|
||||||
|
'7': {},
|
||||||
|
};
|
||||||
|
|
||||||
|
/// Descriptor for `EmailAddress`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
|
final $typed_data.Uint8List emailAddressDescriptor = $convert.base64Decode(
|
||||||
|
'CgxFbWFpbEFkZHJlc3MSDgoCaWQYASABKARSAmlkEhsKCXBlcnNvbl9pZBgCIAEoBFIIcGVyc2'
|
||||||
|
'9uSWQSFAoFZW1haWwYAyABKAlSBWVtYWlsOhOSQRAKDioMRW1haWxBZGRyZXNz');
|
||||||
|
|
@ -14,7 +14,7 @@ import 'dart:core' as $core;
|
|||||||
import 'package:fixnum/fixnum.dart' as $fixnum;
|
import 'package:fixnum/fixnum.dart' as $fixnum;
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
import 'google/protobuf/timestamp.pb.dart' as $28;
|
import 'google/protobuf/timestamp.pb.dart' as $30;
|
||||||
|
|
||||||
class Payment extends $pb.GeneratedMessage {
|
class Payment extends $pb.GeneratedMessage {
|
||||||
factory Payment({
|
factory Payment({
|
||||||
@ -29,9 +29,9 @@ class Payment extends $pb.GeneratedMessage {
|
|||||||
$core.String? paymentSystem,
|
$core.String? paymentSystem,
|
||||||
$core.String? type,
|
$core.String? type,
|
||||||
$core.String? creator,
|
$core.String? creator,
|
||||||
$28.Timestamp? created,
|
$30.Timestamp? created,
|
||||||
$core.String? changer,
|
$core.String? changer,
|
||||||
$28.Timestamp? changed,
|
$30.Timestamp? changed,
|
||||||
}) {
|
}) {
|
||||||
final $result = create();
|
final $result = create();
|
||||||
if (id != null) {
|
if (id != null) {
|
||||||
@ -94,9 +94,9 @@ class Payment extends $pb.GeneratedMessage {
|
|||||||
..aOS(9, _omitFieldNames ? '' : 'paymentSystem')
|
..aOS(9, _omitFieldNames ? '' : 'paymentSystem')
|
||||||
..aOS(10, _omitFieldNames ? '' : 'type')
|
..aOS(10, _omitFieldNames ? '' : 'type')
|
||||||
..aOS(11, _omitFieldNames ? '' : 'creator')
|
..aOS(11, _omitFieldNames ? '' : 'creator')
|
||||||
..aOM<$28.Timestamp>(12, _omitFieldNames ? '' : 'created', subBuilder: $28.Timestamp.create)
|
..aOM<$30.Timestamp>(12, _omitFieldNames ? '' : 'created', subBuilder: $30.Timestamp.create)
|
||||||
..aOS(13, _omitFieldNames ? '' : 'changer')
|
..aOS(13, _omitFieldNames ? '' : 'changer')
|
||||||
..aOM<$28.Timestamp>(14, _omitFieldNames ? '' : 'changed', subBuilder: $28.Timestamp.create)
|
..aOM<$30.Timestamp>(14, _omitFieldNames ? '' : 'changed', subBuilder: $30.Timestamp.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@ -221,15 +221,15 @@ class Payment extends $pb.GeneratedMessage {
|
|||||||
void clearCreator() => clearField(11);
|
void clearCreator() => clearField(11);
|
||||||
|
|
||||||
@$pb.TagNumber(12)
|
@$pb.TagNumber(12)
|
||||||
$28.Timestamp get created => $_getN(11);
|
$30.Timestamp get created => $_getN(11);
|
||||||
@$pb.TagNumber(12)
|
@$pb.TagNumber(12)
|
||||||
set created($28.Timestamp v) { setField(12, v); }
|
set created($30.Timestamp v) { setField(12, v); }
|
||||||
@$pb.TagNumber(12)
|
@$pb.TagNumber(12)
|
||||||
$core.bool hasCreated() => $_has(11);
|
$core.bool hasCreated() => $_has(11);
|
||||||
@$pb.TagNumber(12)
|
@$pb.TagNumber(12)
|
||||||
void clearCreated() => clearField(12);
|
void clearCreated() => clearField(12);
|
||||||
@$pb.TagNumber(12)
|
@$pb.TagNumber(12)
|
||||||
$28.Timestamp ensureCreated() => $_ensure(11);
|
$30.Timestamp ensureCreated() => $_ensure(11);
|
||||||
|
|
||||||
@$pb.TagNumber(13)
|
@$pb.TagNumber(13)
|
||||||
$core.String get changer => $_getSZ(12);
|
$core.String get changer => $_getSZ(12);
|
||||||
@ -241,15 +241,15 @@ class Payment extends $pb.GeneratedMessage {
|
|||||||
void clearChanger() => clearField(13);
|
void clearChanger() => clearField(13);
|
||||||
|
|
||||||
@$pb.TagNumber(14)
|
@$pb.TagNumber(14)
|
||||||
$28.Timestamp get changed => $_getN(13);
|
$30.Timestamp get changed => $_getN(13);
|
||||||
@$pb.TagNumber(14)
|
@$pb.TagNumber(14)
|
||||||
set changed($28.Timestamp v) { setField(14, v); }
|
set changed($30.Timestamp v) { setField(14, v); }
|
||||||
@$pb.TagNumber(14)
|
@$pb.TagNumber(14)
|
||||||
$core.bool hasChanged() => $_has(13);
|
$core.bool hasChanged() => $_has(13);
|
||||||
@$pb.TagNumber(14)
|
@$pb.TagNumber(14)
|
||||||
void clearChanged() => clearField(14);
|
void clearChanged() => clearField(14);
|
||||||
@$pb.TagNumber(14)
|
@$pb.TagNumber(14)
|
||||||
$28.Timestamp ensureChanged() => $_ensure(13);
|
$30.Timestamp ensureChanged() => $_ensure(13);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ import 'dart:core' as $core;
|
|||||||
import 'package:fixnum/fixnum.dart' as $fixnum;
|
import 'package:fixnum/fixnum.dart' as $fixnum;
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
import 'google/protobuf/timestamp.pb.dart' as $28;
|
import 'google/protobuf/timestamp.pb.dart' as $30;
|
||||||
|
|
||||||
class Person extends $pb.GeneratedMessage {
|
class Person extends $pb.GeneratedMessage {
|
||||||
factory Person({
|
factory Person({
|
||||||
@ -26,11 +26,12 @@ class Person extends $pb.GeneratedMessage {
|
|||||||
$core.String? city,
|
$core.String? city,
|
||||||
$core.String? zip,
|
$core.String? zip,
|
||||||
$core.String? country,
|
$core.String? country,
|
||||||
$28.Timestamp? birthday,
|
$30.Timestamp? birthday,
|
||||||
$core.String? creator,
|
$core.String? creator,
|
||||||
$28.Timestamp? created,
|
$30.Timestamp? created,
|
||||||
$core.String? changer,
|
$core.String? changer,
|
||||||
$28.Timestamp? changed,
|
$30.Timestamp? changed,
|
||||||
|
$core.String? relationship,
|
||||||
}) {
|
}) {
|
||||||
final $result = create();
|
final $result = create();
|
||||||
if (id != null) {
|
if (id != null) {
|
||||||
@ -72,6 +73,9 @@ class Person extends $pb.GeneratedMessage {
|
|||||||
if (changed != null) {
|
if (changed != null) {
|
||||||
$result.changed = changed;
|
$result.changed = changed;
|
||||||
}
|
}
|
||||||
|
if (relationship != null) {
|
||||||
|
$result.relationship = relationship;
|
||||||
|
}
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
Person._() : super();
|
Person._() : super();
|
||||||
@ -87,11 +91,12 @@ class Person extends $pb.GeneratedMessage {
|
|||||||
..aOS(6, _omitFieldNames ? '' : 'city')
|
..aOS(6, _omitFieldNames ? '' : 'city')
|
||||||
..aOS(7, _omitFieldNames ? '' : 'zip')
|
..aOS(7, _omitFieldNames ? '' : 'zip')
|
||||||
..aOS(8, _omitFieldNames ? '' : 'country')
|
..aOS(8, _omitFieldNames ? '' : 'country')
|
||||||
..aOM<$28.Timestamp>(9, _omitFieldNames ? '' : 'birthday', subBuilder: $28.Timestamp.create)
|
..aOM<$30.Timestamp>(9, _omitFieldNames ? '' : 'birthday', subBuilder: $30.Timestamp.create)
|
||||||
..aOS(10, _omitFieldNames ? '' : 'creator')
|
..aOS(10, _omitFieldNames ? '' : 'creator')
|
||||||
..aOM<$28.Timestamp>(11, _omitFieldNames ? '' : 'created', subBuilder: $28.Timestamp.create)
|
..aOM<$30.Timestamp>(11, _omitFieldNames ? '' : 'created', subBuilder: $30.Timestamp.create)
|
||||||
..aOS(12, _omitFieldNames ? '' : 'changer')
|
..aOS(12, _omitFieldNames ? '' : 'changer')
|
||||||
..aOM<$28.Timestamp>(13, _omitFieldNames ? '' : 'changed', subBuilder: $28.Timestamp.create)
|
..aOM<$30.Timestamp>(13, _omitFieldNames ? '' : 'changed', subBuilder: $30.Timestamp.create)
|
||||||
|
..aOS(14, _omitFieldNames ? '' : 'relationship')
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@ -189,15 +194,15 @@ class Person extends $pb.GeneratedMessage {
|
|||||||
void clearCountry() => clearField(8);
|
void clearCountry() => clearField(8);
|
||||||
|
|
||||||
@$pb.TagNumber(9)
|
@$pb.TagNumber(9)
|
||||||
$28.Timestamp get birthday => $_getN(8);
|
$30.Timestamp get birthday => $_getN(8);
|
||||||
@$pb.TagNumber(9)
|
@$pb.TagNumber(9)
|
||||||
set birthday($28.Timestamp v) { setField(9, v); }
|
set birthday($30.Timestamp v) { setField(9, v); }
|
||||||
@$pb.TagNumber(9)
|
@$pb.TagNumber(9)
|
||||||
$core.bool hasBirthday() => $_has(8);
|
$core.bool hasBirthday() => $_has(8);
|
||||||
@$pb.TagNumber(9)
|
@$pb.TagNumber(9)
|
||||||
void clearBirthday() => clearField(9);
|
void clearBirthday() => clearField(9);
|
||||||
@$pb.TagNumber(9)
|
@$pb.TagNumber(9)
|
||||||
$28.Timestamp ensureBirthday() => $_ensure(8);
|
$30.Timestamp ensureBirthday() => $_ensure(8);
|
||||||
|
|
||||||
@$pb.TagNumber(10)
|
@$pb.TagNumber(10)
|
||||||
$core.String get creator => $_getSZ(9);
|
$core.String get creator => $_getSZ(9);
|
||||||
@ -209,15 +214,15 @@ class Person extends $pb.GeneratedMessage {
|
|||||||
void clearCreator() => clearField(10);
|
void clearCreator() => clearField(10);
|
||||||
|
|
||||||
@$pb.TagNumber(11)
|
@$pb.TagNumber(11)
|
||||||
$28.Timestamp get created => $_getN(10);
|
$30.Timestamp get created => $_getN(10);
|
||||||
@$pb.TagNumber(11)
|
@$pb.TagNumber(11)
|
||||||
set created($28.Timestamp v) { setField(11, v); }
|
set created($30.Timestamp v) { setField(11, v); }
|
||||||
@$pb.TagNumber(11)
|
@$pb.TagNumber(11)
|
||||||
$core.bool hasCreated() => $_has(10);
|
$core.bool hasCreated() => $_has(10);
|
||||||
@$pb.TagNumber(11)
|
@$pb.TagNumber(11)
|
||||||
void clearCreated() => clearField(11);
|
void clearCreated() => clearField(11);
|
||||||
@$pb.TagNumber(11)
|
@$pb.TagNumber(11)
|
||||||
$28.Timestamp ensureCreated() => $_ensure(10);
|
$30.Timestamp ensureCreated() => $_ensure(10);
|
||||||
|
|
||||||
@$pb.TagNumber(12)
|
@$pb.TagNumber(12)
|
||||||
$core.String get changer => $_getSZ(11);
|
$core.String get changer => $_getSZ(11);
|
||||||
@ -229,15 +234,24 @@ class Person extends $pb.GeneratedMessage {
|
|||||||
void clearChanger() => clearField(12);
|
void clearChanger() => clearField(12);
|
||||||
|
|
||||||
@$pb.TagNumber(13)
|
@$pb.TagNumber(13)
|
||||||
$28.Timestamp get changed => $_getN(12);
|
$30.Timestamp get changed => $_getN(12);
|
||||||
@$pb.TagNumber(13)
|
@$pb.TagNumber(13)
|
||||||
set changed($28.Timestamp v) { setField(13, v); }
|
set changed($30.Timestamp v) { setField(13, v); }
|
||||||
@$pb.TagNumber(13)
|
@$pb.TagNumber(13)
|
||||||
$core.bool hasChanged() => $_has(12);
|
$core.bool hasChanged() => $_has(12);
|
||||||
@$pb.TagNumber(13)
|
@$pb.TagNumber(13)
|
||||||
void clearChanged() => clearField(13);
|
void clearChanged() => clearField(13);
|
||||||
@$pb.TagNumber(13)
|
@$pb.TagNumber(13)
|
||||||
$28.Timestamp ensureChanged() => $_ensure(12);
|
$30.Timestamp ensureChanged() => $_ensure(12);
|
||||||
|
|
||||||
|
@$pb.TagNumber(14)
|
||||||
|
$core.String get relationship => $_getSZ(13);
|
||||||
|
@$pb.TagNumber(14)
|
||||||
|
set relationship($core.String v) { $_setString(13, v); }
|
||||||
|
@$pb.TagNumber(14)
|
||||||
|
$core.bool hasRelationship() => $_has(13);
|
||||||
|
@$pb.TagNumber(14)
|
||||||
|
void clearRelationship() => clearField(14);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -30,8 +30,12 @@ const Person$json = {
|
|||||||
{'1': 'created', '3': 11, '4': 1, '5': 11, '6': '.google.protobuf.Timestamp', '8': {}, '10': 'created'},
|
{'1': 'created', '3': 11, '4': 1, '5': 11, '6': '.google.protobuf.Timestamp', '8': {}, '10': 'created'},
|
||||||
{'1': 'changer', '3': 12, '4': 1, '5': 9, '10': 'changer'},
|
{'1': 'changer', '3': 12, '4': 1, '5': 9, '10': 'changer'},
|
||||||
{'1': 'changed', '3': 13, '4': 1, '5': 11, '6': '.google.protobuf.Timestamp', '8': {}, '10': 'changed'},
|
{'1': 'changed', '3': 13, '4': 1, '5': 11, '6': '.google.protobuf.Timestamp', '8': {}, '10': 'changed'},
|
||||||
|
{'1': 'relationship', '3': 14, '4': 1, '5': 9, '9': 0, '10': 'relationship', '17': true},
|
||||||
],
|
],
|
||||||
'7': {},
|
'7': {},
|
||||||
|
'8': [
|
||||||
|
{'1': '_relationship'},
|
||||||
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Descriptor for `Person`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `Person`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
@ -45,13 +49,14 @@ final $typed_data.Uint8List personDescriptor = $convert.base64Decode(
|
|||||||
'b29nbGUucHJvdG9idWYuVGltZXN0YW1wQhuSQRhKFiIyMDIzLTEwLTA1VDAwOjAwOjAwWiJSB2'
|
'b29nbGUucHJvdG9idWYuVGltZXN0YW1wQhuSQRhKFiIyMDIzLTEwLTA1VDAwOjAwOjAwWiJSB2'
|
||||||
'NyZWF0ZWQSGAoHY2hhbmdlchgMIAEoCVIHY2hhbmdlchJRCgdjaGFuZ2VkGA0gASgLMhouZ29v'
|
'NyZWF0ZWQSGAoHY2hhbmdlchgMIAEoCVIHY2hhbmdlchJRCgdjaGFuZ2VkGA0gASgLMhouZ29v'
|
||||||
'Z2xlLnByb3RvYnVmLlRpbWVzdGFtcEIbkkEYShYiMjAyMy0xMC0wNVQwMDowMDowMFoiUgdjaG'
|
'Z2xlLnByb3RvYnVmLlRpbWVzdGFtcEIbkkEYShYiMjAyMy0xMC0wNVQwMDowMDowMFoiUgdjaG'
|
||||||
'FuZ2VkOrwDkkG4AwoIKgZQZXJzb24yqwN7ImlkIjogIjEiLCJlbWFpbCI6ICJqb2huLmRvZUBl'
|
'FuZ2VkEicKDHJlbGF0aW9uc2hpcBgOIAEoCUgAUgxyZWxhdGlvbnNoaXCIAQE6vAOSQbgDCggq'
|
||||||
'eGFtcGxlLmNvbSIsICJmaXJzdG5hbWUiOiAiSm9obiIsICJsYXN0bmFtZSI6ICJEb2UiLCAicG'
|
'BlBlcnNvbjKrA3siaWQiOiAiMSIsImVtYWlsIjogImpvaG4uZG9lQGV4YW1wbGUuY29tIiwgIm'
|
||||||
'hvbmUiOiAiIiwgInN0cmVldCI6ICJEZWF0aCBTdGFyIDIiLCAiemlwIjogIjA4MTUiLCAiY2l0'
|
'ZpcnN0bmFtZSI6ICJKb2huIiwgImxhc3RuYW1lIjogIkRvZSIsICJwaG9uZSI6ICIiLCAic3Ry'
|
||||||
'eSI6ICJOZXcgWW9yayIsICJjb3VudHJ5IjogIlVTQSIsICJiaXJ0aGRheSI6ICIxOTkwLTEwLT'
|
'ZWV0IjogIkRlYXRoIFN0YXIgMiIsICJ6aXAiOiAiMDgxNSIsICJjaXR5IjogIk5ldyBZb3JrIi'
|
||||||
'A1VDAwOjAwOjAwWiIsICJwcml2YWN5X2FjY2VwdGVkIjogZmFsc2UsICJwcml2YWN5X2FjY2Vw'
|
'wgImNvdW50cnkiOiAiVVNBIiwgImJpcnRoZGF5IjogIjE5OTAtMTAtMDVUMDA6MDA6MDBaIiwg'
|
||||||
'dGVkX2RhdGUiOiAiMDAwMS0wMS0wMVQwMDowMDowMFoiLCAiY3JlYXRvciI6ICJqb2huLmRvZU'
|
'InByaXZhY3lfYWNjZXB0ZWQiOiBmYWxzZSwgInByaXZhY3lfYWNjZXB0ZWRfZGF0ZSI6ICIwMD'
|
||||||
'BleGFtcGxlLmNvbSIsICJjcmVhdGVkIjogIjIwMjMtMTAtMDVUMDI6MzA6NTNaIiwgImNoYW5n'
|
'AxLTAxLTAxVDAwOjAwOjAwWiIsICJjcmVhdG9yIjogImpvaG4uZG9lQGV4YW1wbGUuY29tIiwg'
|
||||||
'ZXIiOiAiam9obi5kb2VAZXhhbXBsZS5jb20iLCAiY2hhbmdlZCI6ICIyMDIzLTEwLTA1VDAyOj'
|
'ImNyZWF0ZWQiOiAiMjAyMy0xMC0wNVQwMjozMDo1M1oiLCAiY2hhbmdlciI6ICJqb2huLmRvZU'
|
||||||
'MwOjUzWiJ9');
|
'BleGFtcGxlLmNvbSIsICJjaGFuZ2VkIjogIjIwMjMtMTAtMDVUMDI6MzA6NTNaIn1CDwoNX3Jl'
|
||||||
|
'bGF0aW9uc2hpcA==');
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ import 'dart:core' as $core;
|
|||||||
import 'package:fixnum/fixnum.dart' as $fixnum;
|
import 'package:fixnum/fixnum.dart' as $fixnum;
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
import 'google/protobuf/timestamp.pb.dart' as $28;
|
import 'google/protobuf/timestamp.pb.dart' as $30;
|
||||||
|
|
||||||
class ReturnsLog extends $pb.GeneratedMessage {
|
class ReturnsLog extends $pb.GeneratedMessage {
|
||||||
factory ReturnsLog({
|
factory ReturnsLog({
|
||||||
@ -23,9 +23,9 @@ class ReturnsLog extends $pb.GeneratedMessage {
|
|||||||
$fixnum.Int64? mailId,
|
$fixnum.Int64? mailId,
|
||||||
$core.String? status,
|
$core.String? status,
|
||||||
$core.String? creator,
|
$core.String? creator,
|
||||||
$28.Timestamp? created,
|
$30.Timestamp? created,
|
||||||
$core.String? changer,
|
$core.String? changer,
|
||||||
$28.Timestamp? changed,
|
$30.Timestamp? changed,
|
||||||
}) {
|
}) {
|
||||||
final $result = create();
|
final $result = create();
|
||||||
if (id != null) {
|
if (id != null) {
|
||||||
@ -64,9 +64,9 @@ class ReturnsLog extends $pb.GeneratedMessage {
|
|||||||
..a<$fixnum.Int64>(3, _omitFieldNames ? '' : 'mailId', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO)
|
..a<$fixnum.Int64>(3, _omitFieldNames ? '' : 'mailId', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO)
|
||||||
..aOS(4, _omitFieldNames ? '' : 'status')
|
..aOS(4, _omitFieldNames ? '' : 'status')
|
||||||
..aOS(5, _omitFieldNames ? '' : 'creator')
|
..aOS(5, _omitFieldNames ? '' : 'creator')
|
||||||
..aOM<$28.Timestamp>(6, _omitFieldNames ? '' : 'created', subBuilder: $28.Timestamp.create)
|
..aOM<$30.Timestamp>(6, _omitFieldNames ? '' : 'created', subBuilder: $30.Timestamp.create)
|
||||||
..aOS(7, _omitFieldNames ? '' : 'changer')
|
..aOS(7, _omitFieldNames ? '' : 'changer')
|
||||||
..aOM<$28.Timestamp>(8, _omitFieldNames ? '' : 'changed', subBuilder: $28.Timestamp.create)
|
..aOM<$30.Timestamp>(8, _omitFieldNames ? '' : 'changed', subBuilder: $30.Timestamp.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@ -137,15 +137,15 @@ class ReturnsLog extends $pb.GeneratedMessage {
|
|||||||
void clearCreator() => clearField(5);
|
void clearCreator() => clearField(5);
|
||||||
|
|
||||||
@$pb.TagNumber(6)
|
@$pb.TagNumber(6)
|
||||||
$28.Timestamp get created => $_getN(5);
|
$30.Timestamp get created => $_getN(5);
|
||||||
@$pb.TagNumber(6)
|
@$pb.TagNumber(6)
|
||||||
set created($28.Timestamp v) { setField(6, v); }
|
set created($30.Timestamp v) { setField(6, v); }
|
||||||
@$pb.TagNumber(6)
|
@$pb.TagNumber(6)
|
||||||
$core.bool hasCreated() => $_has(5);
|
$core.bool hasCreated() => $_has(5);
|
||||||
@$pb.TagNumber(6)
|
@$pb.TagNumber(6)
|
||||||
void clearCreated() => clearField(6);
|
void clearCreated() => clearField(6);
|
||||||
@$pb.TagNumber(6)
|
@$pb.TagNumber(6)
|
||||||
$28.Timestamp ensureCreated() => $_ensure(5);
|
$30.Timestamp ensureCreated() => $_ensure(5);
|
||||||
|
|
||||||
@$pb.TagNumber(7)
|
@$pb.TagNumber(7)
|
||||||
$core.String get changer => $_getSZ(6);
|
$core.String get changer => $_getSZ(6);
|
||||||
@ -157,15 +157,15 @@ class ReturnsLog extends $pb.GeneratedMessage {
|
|||||||
void clearChanger() => clearField(7);
|
void clearChanger() => clearField(7);
|
||||||
|
|
||||||
@$pb.TagNumber(8)
|
@$pb.TagNumber(8)
|
||||||
$28.Timestamp get changed => $_getN(7);
|
$30.Timestamp get changed => $_getN(7);
|
||||||
@$pb.TagNumber(8)
|
@$pb.TagNumber(8)
|
||||||
set changed($28.Timestamp v) { setField(8, v); }
|
set changed($30.Timestamp v) { setField(8, v); }
|
||||||
@$pb.TagNumber(8)
|
@$pb.TagNumber(8)
|
||||||
$core.bool hasChanged() => $_has(7);
|
$core.bool hasChanged() => $_has(7);
|
||||||
@$pb.TagNumber(8)
|
@$pb.TagNumber(8)
|
||||||
void clearChanged() => clearField(8);
|
void clearChanged() => clearField(8);
|
||||||
@$pb.TagNumber(8)
|
@$pb.TagNumber(8)
|
||||||
$28.Timestamp ensureChanged() => $_ensure(7);
|
$30.Timestamp ensureChanged() => $_ensure(7);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
137
frontend/app/lib/pb/rpc_add_email.pb.dart
Normal file
137
frontend/app/lib/pb/rpc_add_email.pb.dart
Normal file
@ -0,0 +1,137 @@
|
|||||||
|
//
|
||||||
|
// Generated code. Do not modify.
|
||||||
|
// source: rpc_add_email.proto
|
||||||
|
//
|
||||||
|
// @dart = 2.12
|
||||||
|
|
||||||
|
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||||
|
// ignore_for_file: constant_identifier_names, library_prefixes
|
||||||
|
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
|
||||||
|
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
|
||||||
|
|
||||||
|
import 'dart:core' as $core;
|
||||||
|
|
||||||
|
import 'package:fixnum/fixnum.dart' as $fixnum;
|
||||||
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
|
import 'email_address.pb.dart' as $31;
|
||||||
|
|
||||||
|
class AddEmailAddressRequest extends $pb.GeneratedMessage {
|
||||||
|
factory AddEmailAddressRequest({
|
||||||
|
$fixnum.Int64? personId,
|
||||||
|
$core.String? email,
|
||||||
|
}) {
|
||||||
|
final $result = create();
|
||||||
|
if (personId != null) {
|
||||||
|
$result.personId = personId;
|
||||||
|
}
|
||||||
|
if (email != null) {
|
||||||
|
$result.email = email;
|
||||||
|
}
|
||||||
|
return $result;
|
||||||
|
}
|
||||||
|
AddEmailAddressRequest._() : super();
|
||||||
|
factory AddEmailAddressRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||||
|
factory AddEmailAddressRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||||
|
|
||||||
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AddEmailAddressRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
||||||
|
..a<$fixnum.Int64>(1, _omitFieldNames ? '' : 'personId', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO)
|
||||||
|
..aOS(2, _omitFieldNames ? '' : 'email')
|
||||||
|
..hasRequiredFields = false
|
||||||
|
;
|
||||||
|
|
||||||
|
@$core.Deprecated(
|
||||||
|
'Using this can add significant overhead to your binary. '
|
||||||
|
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||||
|
'Will be removed in next major version')
|
||||||
|
AddEmailAddressRequest clone() => AddEmailAddressRequest()..mergeFromMessage(this);
|
||||||
|
@$core.Deprecated(
|
||||||
|
'Using this can add significant overhead to your binary. '
|
||||||
|
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||||
|
'Will be removed in next major version')
|
||||||
|
AddEmailAddressRequest copyWith(void Function(AddEmailAddressRequest) updates) => super.copyWith((message) => updates(message as AddEmailAddressRequest)) as AddEmailAddressRequest;
|
||||||
|
|
||||||
|
$pb.BuilderInfo get info_ => _i;
|
||||||
|
|
||||||
|
@$core.pragma('dart2js:noInline')
|
||||||
|
static AddEmailAddressRequest create() => AddEmailAddressRequest._();
|
||||||
|
AddEmailAddressRequest createEmptyInstance() => create();
|
||||||
|
static $pb.PbList<AddEmailAddressRequest> createRepeated() => $pb.PbList<AddEmailAddressRequest>();
|
||||||
|
@$core.pragma('dart2js:noInline')
|
||||||
|
static AddEmailAddressRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AddEmailAddressRequest>(create);
|
||||||
|
static AddEmailAddressRequest? _defaultInstance;
|
||||||
|
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
$fixnum.Int64 get personId => $_getI64(0);
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
set personId($fixnum.Int64 v) { $_setInt64(0, v); }
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
$core.bool hasPersonId() => $_has(0);
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
void clearPersonId() => clearField(1);
|
||||||
|
|
||||||
|
@$pb.TagNumber(2)
|
||||||
|
$core.String get email => $_getSZ(1);
|
||||||
|
@$pb.TagNumber(2)
|
||||||
|
set email($core.String v) { $_setString(1, v); }
|
||||||
|
@$pb.TagNumber(2)
|
||||||
|
$core.bool hasEmail() => $_has(1);
|
||||||
|
@$pb.TagNumber(2)
|
||||||
|
void clearEmail() => clearField(2);
|
||||||
|
}
|
||||||
|
|
||||||
|
class AddEmailAddressResponse extends $pb.GeneratedMessage {
|
||||||
|
factory AddEmailAddressResponse({
|
||||||
|
$31.EmailAddress? email,
|
||||||
|
}) {
|
||||||
|
final $result = create();
|
||||||
|
if (email != null) {
|
||||||
|
$result.email = email;
|
||||||
|
}
|
||||||
|
return $result;
|
||||||
|
}
|
||||||
|
AddEmailAddressResponse._() : super();
|
||||||
|
factory AddEmailAddressResponse.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||||
|
factory AddEmailAddressResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||||
|
|
||||||
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AddEmailAddressResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
||||||
|
..aOM<$31.EmailAddress>(1, _omitFieldNames ? '' : 'email', subBuilder: $31.EmailAddress.create)
|
||||||
|
..hasRequiredFields = false
|
||||||
|
;
|
||||||
|
|
||||||
|
@$core.Deprecated(
|
||||||
|
'Using this can add significant overhead to your binary. '
|
||||||
|
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||||
|
'Will be removed in next major version')
|
||||||
|
AddEmailAddressResponse clone() => AddEmailAddressResponse()..mergeFromMessage(this);
|
||||||
|
@$core.Deprecated(
|
||||||
|
'Using this can add significant overhead to your binary. '
|
||||||
|
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||||
|
'Will be removed in next major version')
|
||||||
|
AddEmailAddressResponse copyWith(void Function(AddEmailAddressResponse) updates) => super.copyWith((message) => updates(message as AddEmailAddressResponse)) as AddEmailAddressResponse;
|
||||||
|
|
||||||
|
$pb.BuilderInfo get info_ => _i;
|
||||||
|
|
||||||
|
@$core.pragma('dart2js:noInline')
|
||||||
|
static AddEmailAddressResponse create() => AddEmailAddressResponse._();
|
||||||
|
AddEmailAddressResponse createEmptyInstance() => create();
|
||||||
|
static $pb.PbList<AddEmailAddressResponse> createRepeated() => $pb.PbList<AddEmailAddressResponse>();
|
||||||
|
@$core.pragma('dart2js:noInline')
|
||||||
|
static AddEmailAddressResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AddEmailAddressResponse>(create);
|
||||||
|
static AddEmailAddressResponse? _defaultInstance;
|
||||||
|
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
$31.EmailAddress get email => $_getN(0);
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
set email($31.EmailAddress v) { setField(1, v); }
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
$core.bool hasEmail() => $_has(0);
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
void clearEmail() => clearField(1);
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
$31.EmailAddress ensureEmail() => $_ensure(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||||
|
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
11
frontend/app/lib/pb/rpc_add_email.pbenum.dart
Normal file
11
frontend/app/lib/pb/rpc_add_email.pbenum.dart
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
//
|
||||||
|
// Generated code. Do not modify.
|
||||||
|
// source: rpc_add_email.proto
|
||||||
|
//
|
||||||
|
// @dart = 2.12
|
||||||
|
|
||||||
|
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||||
|
// ignore_for_file: constant_identifier_names, library_prefixes
|
||||||
|
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
|
||||||
|
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
|
||||||
|
|
46
frontend/app/lib/pb/rpc_add_email.pbjson.dart
Normal file
46
frontend/app/lib/pb/rpc_add_email.pbjson.dart
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
//
|
||||||
|
// Generated code. Do not modify.
|
||||||
|
// source: rpc_add_email.proto
|
||||||
|
//
|
||||||
|
// @dart = 2.12
|
||||||
|
|
||||||
|
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||||
|
// ignore_for_file: constant_identifier_names, library_prefixes
|
||||||
|
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
|
||||||
|
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
|
||||||
|
|
||||||
|
import 'dart:convert' as $convert;
|
||||||
|
import 'dart:core' as $core;
|
||||||
|
import 'dart:typed_data' as $typed_data;
|
||||||
|
|
||||||
|
@$core.Deprecated('Use addEmailAddressRequestDescriptor instead')
|
||||||
|
const AddEmailAddressRequest$json = {
|
||||||
|
'1': 'AddEmailAddressRequest',
|
||||||
|
'2': [
|
||||||
|
{'1': 'person_id', '3': 1, '4': 1, '5': 4, '10': 'personId'},
|
||||||
|
{'1': 'email', '3': 2, '4': 1, '5': 9, '10': 'email'},
|
||||||
|
],
|
||||||
|
'7': {},
|
||||||
|
};
|
||||||
|
|
||||||
|
/// Descriptor for `AddEmailAddressRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
|
final $typed_data.Uint8List addEmailAddressRequestDescriptor = $convert.base64Decode(
|
||||||
|
'ChZBZGRFbWFpbEFkZHJlc3NSZXF1ZXN0EhsKCXBlcnNvbl9pZBgBIAEoBFIIcGVyc29uSWQSFA'
|
||||||
|
'oFZW1haWwYAiABKAlSBWVtYWlsOkCSQT0KOyoQQWRkIEVtYWlsQWRkcmVzczITQWRkIGFuIEVt'
|
||||||
|
'YWlsQWRkcmVzc9IBCXBlcnNvbl9pZNIBBWVtYWls');
|
||||||
|
|
||||||
|
@$core.Deprecated('Use addEmailAddressResponseDescriptor instead')
|
||||||
|
const AddEmailAddressResponse$json = {
|
||||||
|
'1': 'AddEmailAddressResponse',
|
||||||
|
'2': [
|
||||||
|
{'1': 'email', '3': 1, '4': 1, '5': 11, '6': '.pb.EmailAddress', '8': {}, '10': 'email'},
|
||||||
|
],
|
||||||
|
'7': {},
|
||||||
|
};
|
||||||
|
|
||||||
|
/// Descriptor for `AddEmailAddressResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
|
final $typed_data.Uint8List addEmailAddressResponseDescriptor = $convert.base64Decode(
|
||||||
|
'ChdBZGRFbWFpbEFkZHJlc3NSZXNwb25zZRIrCgVlbWFpbBgBIAEoCzIQLnBiLkVtYWlsQWRkcm'
|
||||||
|
'Vzc0IDkkEAUgVlbWFpbDo5kkE2CjQqEkFkZGVkIEVtYWlsQWRkcmVzczIeUmV0dXJucyB0aGUg'
|
||||||
|
'YWRkZWQgRW1haWxBZGRyZXNz');
|
||||||
|
|
123
frontend/app/lib/pb/rpc_add_emails.pb.dart
Normal file
123
frontend/app/lib/pb/rpc_add_emails.pb.dart
Normal file
@ -0,0 +1,123 @@
|
|||||||
|
//
|
||||||
|
// Generated code. Do not modify.
|
||||||
|
// source: rpc_add_emails.proto
|
||||||
|
//
|
||||||
|
// @dart = 2.12
|
||||||
|
|
||||||
|
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||||
|
// ignore_for_file: constant_identifier_names, library_prefixes
|
||||||
|
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
|
||||||
|
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
|
||||||
|
|
||||||
|
import 'dart:core' as $core;
|
||||||
|
|
||||||
|
import 'package:fixnum/fixnum.dart' as $fixnum;
|
||||||
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
|
import 'email_address.pb.dart' as $31;
|
||||||
|
|
||||||
|
class AddEmailAddressesRequest extends $pb.GeneratedMessage {
|
||||||
|
factory AddEmailAddressesRequest({
|
||||||
|
$fixnum.Int64? personId,
|
||||||
|
$core.Iterable<$core.String>? email,
|
||||||
|
}) {
|
||||||
|
final $result = create();
|
||||||
|
if (personId != null) {
|
||||||
|
$result.personId = personId;
|
||||||
|
}
|
||||||
|
if (email != null) {
|
||||||
|
$result.email.addAll(email);
|
||||||
|
}
|
||||||
|
return $result;
|
||||||
|
}
|
||||||
|
AddEmailAddressesRequest._() : super();
|
||||||
|
factory AddEmailAddressesRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||||
|
factory AddEmailAddressesRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||||
|
|
||||||
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AddEmailAddressesRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
||||||
|
..a<$fixnum.Int64>(1, _omitFieldNames ? '' : 'personId', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO)
|
||||||
|
..pPS(2, _omitFieldNames ? '' : 'email')
|
||||||
|
..hasRequiredFields = false
|
||||||
|
;
|
||||||
|
|
||||||
|
@$core.Deprecated(
|
||||||
|
'Using this can add significant overhead to your binary. '
|
||||||
|
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||||
|
'Will be removed in next major version')
|
||||||
|
AddEmailAddressesRequest clone() => AddEmailAddressesRequest()..mergeFromMessage(this);
|
||||||
|
@$core.Deprecated(
|
||||||
|
'Using this can add significant overhead to your binary. '
|
||||||
|
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||||
|
'Will be removed in next major version')
|
||||||
|
AddEmailAddressesRequest copyWith(void Function(AddEmailAddressesRequest) updates) => super.copyWith((message) => updates(message as AddEmailAddressesRequest)) as AddEmailAddressesRequest;
|
||||||
|
|
||||||
|
$pb.BuilderInfo get info_ => _i;
|
||||||
|
|
||||||
|
@$core.pragma('dart2js:noInline')
|
||||||
|
static AddEmailAddressesRequest create() => AddEmailAddressesRequest._();
|
||||||
|
AddEmailAddressesRequest createEmptyInstance() => create();
|
||||||
|
static $pb.PbList<AddEmailAddressesRequest> createRepeated() => $pb.PbList<AddEmailAddressesRequest>();
|
||||||
|
@$core.pragma('dart2js:noInline')
|
||||||
|
static AddEmailAddressesRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AddEmailAddressesRequest>(create);
|
||||||
|
static AddEmailAddressesRequest? _defaultInstance;
|
||||||
|
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
$fixnum.Int64 get personId => $_getI64(0);
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
set personId($fixnum.Int64 v) { $_setInt64(0, v); }
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
$core.bool hasPersonId() => $_has(0);
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
void clearPersonId() => clearField(1);
|
||||||
|
|
||||||
|
@$pb.TagNumber(2)
|
||||||
|
$core.List<$core.String> get email => $_getList(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
class AddEmailAddressesResponse extends $pb.GeneratedMessage {
|
||||||
|
factory AddEmailAddressesResponse({
|
||||||
|
$core.Iterable<$31.EmailAddress>? emails,
|
||||||
|
}) {
|
||||||
|
final $result = create();
|
||||||
|
if (emails != null) {
|
||||||
|
$result.emails.addAll(emails);
|
||||||
|
}
|
||||||
|
return $result;
|
||||||
|
}
|
||||||
|
AddEmailAddressesResponse._() : super();
|
||||||
|
factory AddEmailAddressesResponse.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||||
|
factory AddEmailAddressesResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||||
|
|
||||||
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AddEmailAddressesResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
||||||
|
..pc<$31.EmailAddress>(1, _omitFieldNames ? '' : 'emails', $pb.PbFieldType.PM, subBuilder: $31.EmailAddress.create)
|
||||||
|
..hasRequiredFields = false
|
||||||
|
;
|
||||||
|
|
||||||
|
@$core.Deprecated(
|
||||||
|
'Using this can add significant overhead to your binary. '
|
||||||
|
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||||
|
'Will be removed in next major version')
|
||||||
|
AddEmailAddressesResponse clone() => AddEmailAddressesResponse()..mergeFromMessage(this);
|
||||||
|
@$core.Deprecated(
|
||||||
|
'Using this can add significant overhead to your binary. '
|
||||||
|
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||||
|
'Will be removed in next major version')
|
||||||
|
AddEmailAddressesResponse copyWith(void Function(AddEmailAddressesResponse) updates) => super.copyWith((message) => updates(message as AddEmailAddressesResponse)) as AddEmailAddressesResponse;
|
||||||
|
|
||||||
|
$pb.BuilderInfo get info_ => _i;
|
||||||
|
|
||||||
|
@$core.pragma('dart2js:noInline')
|
||||||
|
static AddEmailAddressesResponse create() => AddEmailAddressesResponse._();
|
||||||
|
AddEmailAddressesResponse createEmptyInstance() => create();
|
||||||
|
static $pb.PbList<AddEmailAddressesResponse> createRepeated() => $pb.PbList<AddEmailAddressesResponse>();
|
||||||
|
@$core.pragma('dart2js:noInline')
|
||||||
|
static AddEmailAddressesResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AddEmailAddressesResponse>(create);
|
||||||
|
static AddEmailAddressesResponse? _defaultInstance;
|
||||||
|
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
$core.List<$31.EmailAddress> get emails => $_getList(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||||
|
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
11
frontend/app/lib/pb/rpc_add_emails.pbenum.dart
Normal file
11
frontend/app/lib/pb/rpc_add_emails.pbenum.dart
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
//
|
||||||
|
// Generated code. Do not modify.
|
||||||
|
// source: rpc_add_emails.proto
|
||||||
|
//
|
||||||
|
// @dart = 2.12
|
||||||
|
|
||||||
|
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||||
|
// ignore_for_file: constant_identifier_names, library_prefixes
|
||||||
|
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
|
||||||
|
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
|
||||||
|
|
46
frontend/app/lib/pb/rpc_add_emails.pbjson.dart
Normal file
46
frontend/app/lib/pb/rpc_add_emails.pbjson.dart
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
//
|
||||||
|
// Generated code. Do not modify.
|
||||||
|
// source: rpc_add_emails.proto
|
||||||
|
//
|
||||||
|
// @dart = 2.12
|
||||||
|
|
||||||
|
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||||
|
// ignore_for_file: constant_identifier_names, library_prefixes
|
||||||
|
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
|
||||||
|
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
|
||||||
|
|
||||||
|
import 'dart:convert' as $convert;
|
||||||
|
import 'dart:core' as $core;
|
||||||
|
import 'dart:typed_data' as $typed_data;
|
||||||
|
|
||||||
|
@$core.Deprecated('Use addEmailAddressesRequestDescriptor instead')
|
||||||
|
const AddEmailAddressesRequest$json = {
|
||||||
|
'1': 'AddEmailAddressesRequest',
|
||||||
|
'2': [
|
||||||
|
{'1': 'person_id', '3': 1, '4': 1, '5': 4, '10': 'personId'},
|
||||||
|
{'1': 'email', '3': 2, '4': 3, '5': 9, '10': 'email'},
|
||||||
|
],
|
||||||
|
'7': {},
|
||||||
|
};
|
||||||
|
|
||||||
|
/// Descriptor for `AddEmailAddressesRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
|
final $typed_data.Uint8List addEmailAddressesRequestDescriptor = $convert.base64Decode(
|
||||||
|
'ChhBZGRFbWFpbEFkZHJlc3Nlc1JlcXVlc3QSGwoJcGVyc29uX2lkGAEgASgEUghwZXJzb25JZB'
|
||||||
|
'IUCgVlbWFpbBgCIAMoCVIFZW1haWw6QJJBPQo7KhBBZGQgRW1haWxBZGRyZXNzMhNBZGQgYW4g'
|
||||||
|
'RW1haWxBZGRyZXNz0gEJcGVyc29uX2lk0gEFZW1haWw=');
|
||||||
|
|
||||||
|
@$core.Deprecated('Use addEmailAddressesResponseDescriptor instead')
|
||||||
|
const AddEmailAddressesResponse$json = {
|
||||||
|
'1': 'AddEmailAddressesResponse',
|
||||||
|
'2': [
|
||||||
|
{'1': 'emails', '3': 1, '4': 3, '5': 11, '6': '.pb.EmailAddress', '8': {}, '10': 'emails'},
|
||||||
|
],
|
||||||
|
'7': {},
|
||||||
|
};
|
||||||
|
|
||||||
|
/// Descriptor for `AddEmailAddressesResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
|
final $typed_data.Uint8List addEmailAddressesResponseDescriptor = $convert.base64Decode(
|
||||||
|
'ChlBZGRFbWFpbEFkZHJlc3Nlc1Jlc3BvbnNlEi0KBmVtYWlscxgBIAMoCzIQLnBiLkVtYWlsQW'
|
||||||
|
'RkcmVzc0IDkkEAUgZlbWFpbHM6PZJBOgo4KhRBZGRlZCBFbWFpbEFkZHJlc3NlczIgUmV0dXJu'
|
||||||
|
'cyB0aGUgYWRkZWQgRW1haWxBZGRyZXNzZXM=');
|
||||||
|
|
@ -13,7 +13,7 @@ import 'dart:core' as $core;
|
|||||||
|
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
import 'account.pb.dart' as $30;
|
import 'account.pb.dart' as $33;
|
||||||
|
|
||||||
class CreateAccountRequest extends $pb.GeneratedMessage {
|
class CreateAccountRequest extends $pb.GeneratedMessage {
|
||||||
factory CreateAccountRequest({
|
factory CreateAccountRequest({
|
||||||
@ -81,7 +81,7 @@ class CreateAccountRequest extends $pb.GeneratedMessage {
|
|||||||
|
|
||||||
class CreateAccountResponse extends $pb.GeneratedMessage {
|
class CreateAccountResponse extends $pb.GeneratedMessage {
|
||||||
factory CreateAccountResponse({
|
factory CreateAccountResponse({
|
||||||
$30.Account? account,
|
$33.Account? account,
|
||||||
}) {
|
}) {
|
||||||
final $result = create();
|
final $result = create();
|
||||||
if (account != null) {
|
if (account != null) {
|
||||||
@ -94,7 +94,7 @@ class CreateAccountResponse extends $pb.GeneratedMessage {
|
|||||||
factory CreateAccountResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
factory CreateAccountResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreateAccountResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreateAccountResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
||||||
..aOM<$30.Account>(1, _omitFieldNames ? '' : 'account', subBuilder: $30.Account.create)
|
..aOM<$33.Account>(1, _omitFieldNames ? '' : 'account', subBuilder: $33.Account.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@ -120,15 +120,15 @@ class CreateAccountResponse extends $pb.GeneratedMessage {
|
|||||||
static CreateAccountResponse? _defaultInstance;
|
static CreateAccountResponse? _defaultInstance;
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$30.Account get account => $_getN(0);
|
$33.Account get account => $_getN(0);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
set account($30.Account v) { setField(1, v); }
|
set account($33.Account v) { setField(1, v); }
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$core.bool hasAccount() => $_has(0);
|
$core.bool hasAccount() => $_has(0);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
void clearAccount() => clearField(1);
|
void clearAccount() => clearField(1);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$30.Account ensureAccount() => $_ensure(0);
|
$33.Account ensureAccount() => $_ensure(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -14,8 +14,8 @@ import 'dart:core' as $core;
|
|||||||
import 'package:fixnum/fixnum.dart' as $fixnum;
|
import 'package:fixnum/fixnum.dart' as $fixnum;
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
import 'account_info.pb.dart' as $29;
|
import 'account_info.pb.dart' as $32;
|
||||||
import 'google/protobuf/timestamp.pb.dart' as $28;
|
import 'google/protobuf/timestamp.pb.dart' as $30;
|
||||||
|
|
||||||
class CreateAccountInfoRequest extends $pb.GeneratedMessage {
|
class CreateAccountInfoRequest extends $pb.GeneratedMessage {
|
||||||
factory CreateAccountInfoRequest({
|
factory CreateAccountInfoRequest({
|
||||||
@ -27,7 +27,7 @@ class CreateAccountInfoRequest extends $pb.GeneratedMessage {
|
|||||||
$core.String? zip,
|
$core.String? zip,
|
||||||
$core.String? country,
|
$core.String? country,
|
||||||
$core.String? phone,
|
$core.String? phone,
|
||||||
$28.Timestamp? birthday,
|
$30.Timestamp? birthday,
|
||||||
$core.bool? privacyAccepted,
|
$core.bool? privacyAccepted,
|
||||||
}) {
|
}) {
|
||||||
final $result = create();
|
final $result = create();
|
||||||
@ -76,7 +76,7 @@ class CreateAccountInfoRequest extends $pb.GeneratedMessage {
|
|||||||
..aOS(7, _omitFieldNames ? '' : 'zip')
|
..aOS(7, _omitFieldNames ? '' : 'zip')
|
||||||
..aOS(8, _omitFieldNames ? '' : 'country')
|
..aOS(8, _omitFieldNames ? '' : 'country')
|
||||||
..aOS(9, _omitFieldNames ? '' : 'phone')
|
..aOS(9, _omitFieldNames ? '' : 'phone')
|
||||||
..aOM<$28.Timestamp>(10, _omitFieldNames ? '' : 'birthday', subBuilder: $28.Timestamp.create)
|
..aOM<$30.Timestamp>(10, _omitFieldNames ? '' : 'birthday', subBuilder: $30.Timestamp.create)
|
||||||
..aOB(11, _omitFieldNames ? '' : 'privacyAccepted')
|
..aOB(11, _omitFieldNames ? '' : 'privacyAccepted')
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
@ -175,15 +175,15 @@ class CreateAccountInfoRequest extends $pb.GeneratedMessage {
|
|||||||
void clearPhone() => clearField(9);
|
void clearPhone() => clearField(9);
|
||||||
|
|
||||||
@$pb.TagNumber(10)
|
@$pb.TagNumber(10)
|
||||||
$28.Timestamp get birthday => $_getN(8);
|
$30.Timestamp get birthday => $_getN(8);
|
||||||
@$pb.TagNumber(10)
|
@$pb.TagNumber(10)
|
||||||
set birthday($28.Timestamp v) { setField(10, v); }
|
set birthday($30.Timestamp v) { setField(10, v); }
|
||||||
@$pb.TagNumber(10)
|
@$pb.TagNumber(10)
|
||||||
$core.bool hasBirthday() => $_has(8);
|
$core.bool hasBirthday() => $_has(8);
|
||||||
@$pb.TagNumber(10)
|
@$pb.TagNumber(10)
|
||||||
void clearBirthday() => clearField(10);
|
void clearBirthday() => clearField(10);
|
||||||
@$pb.TagNumber(10)
|
@$pb.TagNumber(10)
|
||||||
$28.Timestamp ensureBirthday() => $_ensure(8);
|
$30.Timestamp ensureBirthday() => $_ensure(8);
|
||||||
|
|
||||||
@$pb.TagNumber(11)
|
@$pb.TagNumber(11)
|
||||||
$core.bool get privacyAccepted => $_getBF(9);
|
$core.bool get privacyAccepted => $_getBF(9);
|
||||||
@ -197,7 +197,7 @@ class CreateAccountInfoRequest extends $pb.GeneratedMessage {
|
|||||||
|
|
||||||
class CreateAccountInfoResponse extends $pb.GeneratedMessage {
|
class CreateAccountInfoResponse extends $pb.GeneratedMessage {
|
||||||
factory CreateAccountInfoResponse({
|
factory CreateAccountInfoResponse({
|
||||||
$29.AccountInfo? accountInfo,
|
$32.AccountInfo? accountInfo,
|
||||||
}) {
|
}) {
|
||||||
final $result = create();
|
final $result = create();
|
||||||
if (accountInfo != null) {
|
if (accountInfo != null) {
|
||||||
@ -210,7 +210,7 @@ class CreateAccountInfoResponse extends $pb.GeneratedMessage {
|
|||||||
factory CreateAccountInfoResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
factory CreateAccountInfoResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreateAccountInfoResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreateAccountInfoResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
||||||
..aOM<$29.AccountInfo>(1, _omitFieldNames ? '' : 'accountInfo', subBuilder: $29.AccountInfo.create)
|
..aOM<$32.AccountInfo>(1, _omitFieldNames ? '' : 'accountInfo', subBuilder: $32.AccountInfo.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@ -236,15 +236,15 @@ class CreateAccountInfoResponse extends $pb.GeneratedMessage {
|
|||||||
static CreateAccountInfoResponse? _defaultInstance;
|
static CreateAccountInfoResponse? _defaultInstance;
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$29.AccountInfo get accountInfo => $_getN(0);
|
$32.AccountInfo get accountInfo => $_getN(0);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
set accountInfo($29.AccountInfo v) { setField(1, v); }
|
set accountInfo($32.AccountInfo v) { setField(1, v); }
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$core.bool hasAccountInfo() => $_has(0);
|
$core.bool hasAccountInfo() => $_has(0);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
void clearAccountInfo() => clearField(1);
|
void clearAccountInfo() => clearField(1);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$29.AccountInfo ensureAccountInfo() => $_ensure(0);
|
$32.AccountInfo ensureAccountInfo() => $_ensure(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ import 'dart:core' as $core;
|
|||||||
import 'package:fixnum/fixnum.dart' as $fixnum;
|
import 'package:fixnum/fixnum.dart' as $fixnum;
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
import 'payment.pb.dart' as $31;
|
import 'payment.pb.dart' as $34;
|
||||||
|
|
||||||
class CreatePaymentRequest extends $pb.GeneratedMessage {
|
class CreatePaymentRequest extends $pb.GeneratedMessage {
|
||||||
factory CreatePaymentRequest({
|
factory CreatePaymentRequest({
|
||||||
@ -180,7 +180,7 @@ class CreatePaymentRequest extends $pb.GeneratedMessage {
|
|||||||
|
|
||||||
class CreatePaymentResponse extends $pb.GeneratedMessage {
|
class CreatePaymentResponse extends $pb.GeneratedMessage {
|
||||||
factory CreatePaymentResponse({
|
factory CreatePaymentResponse({
|
||||||
$31.Payment? payment,
|
$34.Payment? payment,
|
||||||
}) {
|
}) {
|
||||||
final $result = create();
|
final $result = create();
|
||||||
if (payment != null) {
|
if (payment != null) {
|
||||||
@ -193,7 +193,7 @@ class CreatePaymentResponse extends $pb.GeneratedMessage {
|
|||||||
factory CreatePaymentResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
factory CreatePaymentResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreatePaymentResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreatePaymentResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
||||||
..aOM<$31.Payment>(1, _omitFieldNames ? '' : 'payment', subBuilder: $31.Payment.create)
|
..aOM<$34.Payment>(1, _omitFieldNames ? '' : 'payment', subBuilder: $34.Payment.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@ -219,15 +219,15 @@ class CreatePaymentResponse extends $pb.GeneratedMessage {
|
|||||||
static CreatePaymentResponse? _defaultInstance;
|
static CreatePaymentResponse? _defaultInstance;
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$31.Payment get payment => $_getN(0);
|
$34.Payment get payment => $_getN(0);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
set payment($31.Payment v) { setField(1, v); }
|
set payment($34.Payment v) { setField(1, v); }
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$core.bool hasPayment() => $_has(0);
|
$core.bool hasPayment() => $_has(0);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
void clearPayment() => clearField(1);
|
void clearPayment() => clearField(1);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$31.Payment ensurePayment() => $_ensure(0);
|
$34.Payment ensurePayment() => $_ensure(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -14,8 +14,8 @@ import 'dart:core' as $core;
|
|||||||
import 'package:fixnum/fixnum.dart' as $fixnum;
|
import 'package:fixnum/fixnum.dart' as $fixnum;
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
import 'google/protobuf/timestamp.pb.dart' as $28;
|
import 'google/protobuf/timestamp.pb.dart' as $30;
|
||||||
import 'person.pb.dart' as $32;
|
import 'person.pb.dart' as $35;
|
||||||
|
|
||||||
class CreatePersonRequest extends $pb.GeneratedMessage {
|
class CreatePersonRequest extends $pb.GeneratedMessage {
|
||||||
factory CreatePersonRequest({
|
factory CreatePersonRequest({
|
||||||
@ -26,7 +26,8 @@ class CreatePersonRequest extends $pb.GeneratedMessage {
|
|||||||
$core.String? city,
|
$core.String? city,
|
||||||
$core.String? zip,
|
$core.String? zip,
|
||||||
$core.String? country,
|
$core.String? country,
|
||||||
$28.Timestamp? birthday,
|
$core.String? relationship,
|
||||||
|
$30.Timestamp? birthday,
|
||||||
}) {
|
}) {
|
||||||
final $result = create();
|
final $result = create();
|
||||||
if (accountId != null) {
|
if (accountId != null) {
|
||||||
@ -50,6 +51,9 @@ class CreatePersonRequest extends $pb.GeneratedMessage {
|
|||||||
if (country != null) {
|
if (country != null) {
|
||||||
$result.country = country;
|
$result.country = country;
|
||||||
}
|
}
|
||||||
|
if (relationship != null) {
|
||||||
|
$result.relationship = relationship;
|
||||||
|
}
|
||||||
if (birthday != null) {
|
if (birthday != null) {
|
||||||
$result.birthday = birthday;
|
$result.birthday = birthday;
|
||||||
}
|
}
|
||||||
@ -67,7 +71,8 @@ class CreatePersonRequest extends $pb.GeneratedMessage {
|
|||||||
..aOS(5, _omitFieldNames ? '' : 'city')
|
..aOS(5, _omitFieldNames ? '' : 'city')
|
||||||
..aOS(6, _omitFieldNames ? '' : 'zip')
|
..aOS(6, _omitFieldNames ? '' : 'zip')
|
||||||
..aOS(7, _omitFieldNames ? '' : 'country')
|
..aOS(7, _omitFieldNames ? '' : 'country')
|
||||||
..aOM<$28.Timestamp>(8, _omitFieldNames ? '' : 'birthday', subBuilder: $28.Timestamp.create)
|
..aOS(8, _omitFieldNames ? '' : 'relationship')
|
||||||
|
..aOM<$30.Timestamp>(9, _omitFieldNames ? '' : 'birthday', subBuilder: $30.Timestamp.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@ -156,20 +161,29 @@ class CreatePersonRequest extends $pb.GeneratedMessage {
|
|||||||
void clearCountry() => clearField(7);
|
void clearCountry() => clearField(7);
|
||||||
|
|
||||||
@$pb.TagNumber(8)
|
@$pb.TagNumber(8)
|
||||||
$28.Timestamp get birthday => $_getN(7);
|
$core.String get relationship => $_getSZ(7);
|
||||||
@$pb.TagNumber(8)
|
@$pb.TagNumber(8)
|
||||||
set birthday($28.Timestamp v) { setField(8, v); }
|
set relationship($core.String v) { $_setString(7, v); }
|
||||||
@$pb.TagNumber(8)
|
@$pb.TagNumber(8)
|
||||||
$core.bool hasBirthday() => $_has(7);
|
$core.bool hasRelationship() => $_has(7);
|
||||||
@$pb.TagNumber(8)
|
@$pb.TagNumber(8)
|
||||||
void clearBirthday() => clearField(8);
|
void clearRelationship() => clearField(8);
|
||||||
@$pb.TagNumber(8)
|
|
||||||
$28.Timestamp ensureBirthday() => $_ensure(7);
|
@$pb.TagNumber(9)
|
||||||
|
$30.Timestamp get birthday => $_getN(8);
|
||||||
|
@$pb.TagNumber(9)
|
||||||
|
set birthday($30.Timestamp v) { setField(9, v); }
|
||||||
|
@$pb.TagNumber(9)
|
||||||
|
$core.bool hasBirthday() => $_has(8);
|
||||||
|
@$pb.TagNumber(9)
|
||||||
|
void clearBirthday() => clearField(9);
|
||||||
|
@$pb.TagNumber(9)
|
||||||
|
$30.Timestamp ensureBirthday() => $_ensure(8);
|
||||||
}
|
}
|
||||||
|
|
||||||
class CreatePersonResponse extends $pb.GeneratedMessage {
|
class CreatePersonResponse extends $pb.GeneratedMessage {
|
||||||
factory CreatePersonResponse({
|
factory CreatePersonResponse({
|
||||||
$32.Person? person,
|
$35.Person? person,
|
||||||
}) {
|
}) {
|
||||||
final $result = create();
|
final $result = create();
|
||||||
if (person != null) {
|
if (person != null) {
|
||||||
@ -182,7 +196,7 @@ class CreatePersonResponse extends $pb.GeneratedMessage {
|
|||||||
factory CreatePersonResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
factory CreatePersonResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreatePersonResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreatePersonResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
||||||
..aOM<$32.Person>(1, _omitFieldNames ? '' : 'person', subBuilder: $32.Person.create)
|
..aOM<$35.Person>(1, _omitFieldNames ? '' : 'person', subBuilder: $35.Person.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@ -208,15 +222,15 @@ class CreatePersonResponse extends $pb.GeneratedMessage {
|
|||||||
static CreatePersonResponse? _defaultInstance;
|
static CreatePersonResponse? _defaultInstance;
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$32.Person get person => $_getN(0);
|
$35.Person get person => $_getN(0);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
set person($32.Person v) { setField(1, v); }
|
set person($35.Person v) { setField(1, v); }
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$core.bool hasPerson() => $_has(0);
|
$core.bool hasPerson() => $_has(0);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
void clearPerson() => clearField(1);
|
void clearPerson() => clearField(1);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$32.Person ensurePerson() => $_ensure(0);
|
$35.Person ensurePerson() => $_ensure(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -24,7 +24,8 @@ const CreatePersonRequest$json = {
|
|||||||
{'1': 'city', '3': 5, '4': 1, '5': 9, '10': 'city'},
|
{'1': 'city', '3': 5, '4': 1, '5': 9, '10': 'city'},
|
||||||
{'1': 'zip', '3': 6, '4': 1, '5': 9, '10': 'zip'},
|
{'1': 'zip', '3': 6, '4': 1, '5': 9, '10': 'zip'},
|
||||||
{'1': 'country', '3': 7, '4': 1, '5': 9, '10': 'country'},
|
{'1': 'country', '3': 7, '4': 1, '5': 9, '10': 'country'},
|
||||||
{'1': 'birthday', '3': 8, '4': 1, '5': 11, '6': '.google.protobuf.Timestamp', '8': {}, '10': 'birthday'},
|
{'1': 'relationship', '3': 8, '4': 1, '5': 9, '10': 'relationship'},
|
||||||
|
{'1': 'birthday', '3': 9, '4': 1, '5': 11, '6': '.google.protobuf.Timestamp', '8': {}, '10': 'birthday'},
|
||||||
],
|
],
|
||||||
'7': {},
|
'7': {},
|
||||||
};
|
};
|
||||||
@ -34,14 +35,15 @@ final $typed_data.Uint8List createPersonRequestDescriptor = $convert.base64Decod
|
|||||||
'ChNDcmVhdGVQZXJzb25SZXF1ZXN0Eh0KCmFjY291bnRfaWQYASABKARSCWFjY291bnRJZBIcCg'
|
'ChNDcmVhdGVQZXJzb25SZXF1ZXN0Eh0KCmFjY291bnRfaWQYASABKARSCWFjY291bnRJZBIcCg'
|
||||||
'lmaXJzdG5hbWUYAiABKAlSCWZpcnN0bmFtZRIaCghsYXN0bmFtZRgDIAEoCVIIbGFzdG5hbWUS'
|
'lmaXJzdG5hbWUYAiABKAlSCWZpcnN0bmFtZRIaCghsYXN0bmFtZRgDIAEoCVIIbGFzdG5hbWUS'
|
||||||
'FgoGc3RyZWV0GAQgASgJUgZzdHJlZXQSEgoEY2l0eRgFIAEoCVIEY2l0eRIQCgN6aXAYBiABKA'
|
'FgoGc3RyZWV0GAQgASgJUgZzdHJlZXQSEgoEY2l0eRgFIAEoCVIEY2l0eRIQCgN6aXAYBiABKA'
|
||||||
'lSA3ppcBIYCgdjb3VudHJ5GAcgASgJUgdjb3VudHJ5ElMKCGJpcnRoZGF5GAggASgLMhouZ29v'
|
'lSA3ppcBIYCgdjb3VudHJ5GAcgASgJUgdjb3VudHJ5EiIKDHJlbGF0aW9uc2hpcBgIIAEoCVIM'
|
||||||
'Z2xlLnByb3RvYnVmLlRpbWVzdGFtcEIbkkEYShYiMTk5MC0xMC0wNVQwMDowMDowMFoiUghiaX'
|
'cmVsYXRpb25zaGlwElMKCGJpcnRoZGF5GAkgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdG'
|
||||||
'J0aGRheTqpApJBpQIKcCoNQ3JlYXRlIFBlcnNvbjIQQ3JlYXRlIGFuIFBlcnNvbtIBCmFjY291'
|
'FtcEIbkkEYShYiMTk5MC0xMC0wNVQwMDowMDowMFoiUghiaXJ0aGRheTq4ApJBtAIKfyoNQ3Jl'
|
||||||
'bnRfaWTSAQlmaXJzdG5hbWXSAQhsYXN0bmFtZdIBBnN0cmVldNIBBGNpdHnSAQN6aXDSAQdjb3'
|
'YXRlIFBlcnNvbjIQQ3JlYXRlIGFuIFBlcnNvbtIBCmFjY291bnRfaWTSAQlmaXJzdG5hbWXSAQ'
|
||||||
'VudHJ50gEIYmlydGhkYXkysAF7ICJhY2NvdW50X2lkIjogIjEiLCAiZmlyc3RuYW1lIjogIkpv'
|
'hsYXN0bmFtZdIBBnN0cmVldNIBBGNpdHnSAQN6aXDSAQdjb3VudHJ50gEMcmVsYXRpb25zaGlw'
|
||||||
'aG4iLCAibGFzdG5hbWUiOiAiRG9lIiwgInN0cmVldCI6ICJNYWluIFN0cmVldCAxIiwgInppcC'
|
'0gEIYmlydGhkYXkysAF7ICJhY2NvdW50X2lkIjogIjEiLCAiZmlyc3RuYW1lIjogIkpvaG4iLC'
|
||||||
'I6ICIwODE1IiwgImNpdHkiOiAiTmV3IFlvcmsiLCAiY291bnRyeSI6ICJVU0EiLCAiYmlydGhk'
|
'AibGFzdG5hbWUiOiAiRG9lIiwgInN0cmVldCI6ICJNYWluIFN0cmVldCAxIiwgInppcCI6ICIw'
|
||||||
'YXkiOiAiMTk5MC0xMC0wNVQwMDowMDowMFoifQ==');
|
'ODE1IiwgImNpdHkiOiAiTmV3IFlvcmsiLCAiY291bnRyeSI6ICJVU0EiLCAiYmlydGhkYXkiOi'
|
||||||
|
'AiMTk5MC0xMC0wNVQwMDowMDowMFoifQ==');
|
||||||
|
|
||||||
@$core.Deprecated('Use createPersonResponseDescriptor instead')
|
@$core.Deprecated('Use createPersonResponseDescriptor instead')
|
||||||
const CreatePersonResponse$json = {
|
const CreatePersonResponse$json = {
|
||||||
|
119
frontend/app/lib/pb/rpc_delete_email.pb.dart
Normal file
119
frontend/app/lib/pb/rpc_delete_email.pb.dart
Normal file
@ -0,0 +1,119 @@
|
|||||||
|
//
|
||||||
|
// Generated code. Do not modify.
|
||||||
|
// source: rpc_delete_email.proto
|
||||||
|
//
|
||||||
|
// @dart = 2.12
|
||||||
|
|
||||||
|
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||||
|
// ignore_for_file: constant_identifier_names, library_prefixes
|
||||||
|
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
|
||||||
|
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
|
||||||
|
|
||||||
|
import 'dart:core' as $core;
|
||||||
|
|
||||||
|
import 'package:fixnum/fixnum.dart' as $fixnum;
|
||||||
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
|
class DeleteEmailAddressRequest extends $pb.GeneratedMessage {
|
||||||
|
factory DeleteEmailAddressRequest({
|
||||||
|
$fixnum.Int64? id,
|
||||||
|
}) {
|
||||||
|
final $result = create();
|
||||||
|
if (id != null) {
|
||||||
|
$result.id = id;
|
||||||
|
}
|
||||||
|
return $result;
|
||||||
|
}
|
||||||
|
DeleteEmailAddressRequest._() : super();
|
||||||
|
factory DeleteEmailAddressRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||||
|
factory DeleteEmailAddressRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||||
|
|
||||||
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteEmailAddressRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
||||||
|
..a<$fixnum.Int64>(1, _omitFieldNames ? '' : 'id', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO)
|
||||||
|
..hasRequiredFields = false
|
||||||
|
;
|
||||||
|
|
||||||
|
@$core.Deprecated(
|
||||||
|
'Using this can add significant overhead to your binary. '
|
||||||
|
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||||
|
'Will be removed in next major version')
|
||||||
|
DeleteEmailAddressRequest clone() => DeleteEmailAddressRequest()..mergeFromMessage(this);
|
||||||
|
@$core.Deprecated(
|
||||||
|
'Using this can add significant overhead to your binary. '
|
||||||
|
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||||
|
'Will be removed in next major version')
|
||||||
|
DeleteEmailAddressRequest copyWith(void Function(DeleteEmailAddressRequest) updates) => super.copyWith((message) => updates(message as DeleteEmailAddressRequest)) as DeleteEmailAddressRequest;
|
||||||
|
|
||||||
|
$pb.BuilderInfo get info_ => _i;
|
||||||
|
|
||||||
|
@$core.pragma('dart2js:noInline')
|
||||||
|
static DeleteEmailAddressRequest create() => DeleteEmailAddressRequest._();
|
||||||
|
DeleteEmailAddressRequest createEmptyInstance() => create();
|
||||||
|
static $pb.PbList<DeleteEmailAddressRequest> createRepeated() => $pb.PbList<DeleteEmailAddressRequest>();
|
||||||
|
@$core.pragma('dart2js:noInline')
|
||||||
|
static DeleteEmailAddressRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteEmailAddressRequest>(create);
|
||||||
|
static DeleteEmailAddressRequest? _defaultInstance;
|
||||||
|
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
$fixnum.Int64 get id => $_getI64(0);
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
set id($fixnum.Int64 v) { $_setInt64(0, v); }
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
$core.bool hasId() => $_has(0);
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
void clearId() => clearField(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
class DeleteEmailAddressResponse extends $pb.GeneratedMessage {
|
||||||
|
factory DeleteEmailAddressResponse({
|
||||||
|
$fixnum.Int64? id,
|
||||||
|
}) {
|
||||||
|
final $result = create();
|
||||||
|
if (id != null) {
|
||||||
|
$result.id = id;
|
||||||
|
}
|
||||||
|
return $result;
|
||||||
|
}
|
||||||
|
DeleteEmailAddressResponse._() : super();
|
||||||
|
factory DeleteEmailAddressResponse.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||||
|
factory DeleteEmailAddressResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||||
|
|
||||||
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteEmailAddressResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
||||||
|
..a<$fixnum.Int64>(1, _omitFieldNames ? '' : 'id', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO)
|
||||||
|
..hasRequiredFields = false
|
||||||
|
;
|
||||||
|
|
||||||
|
@$core.Deprecated(
|
||||||
|
'Using this can add significant overhead to your binary. '
|
||||||
|
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||||
|
'Will be removed in next major version')
|
||||||
|
DeleteEmailAddressResponse clone() => DeleteEmailAddressResponse()..mergeFromMessage(this);
|
||||||
|
@$core.Deprecated(
|
||||||
|
'Using this can add significant overhead to your binary. '
|
||||||
|
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||||
|
'Will be removed in next major version')
|
||||||
|
DeleteEmailAddressResponse copyWith(void Function(DeleteEmailAddressResponse) updates) => super.copyWith((message) => updates(message as DeleteEmailAddressResponse)) as DeleteEmailAddressResponse;
|
||||||
|
|
||||||
|
$pb.BuilderInfo get info_ => _i;
|
||||||
|
|
||||||
|
@$core.pragma('dart2js:noInline')
|
||||||
|
static DeleteEmailAddressResponse create() => DeleteEmailAddressResponse._();
|
||||||
|
DeleteEmailAddressResponse createEmptyInstance() => create();
|
||||||
|
static $pb.PbList<DeleteEmailAddressResponse> createRepeated() => $pb.PbList<DeleteEmailAddressResponse>();
|
||||||
|
@$core.pragma('dart2js:noInline')
|
||||||
|
static DeleteEmailAddressResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteEmailAddressResponse>(create);
|
||||||
|
static DeleteEmailAddressResponse? _defaultInstance;
|
||||||
|
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
$fixnum.Int64 get id => $_getI64(0);
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
set id($fixnum.Int64 v) { $_setInt64(0, v); }
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
$core.bool hasId() => $_has(0);
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
void clearId() => clearField(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||||
|
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
11
frontend/app/lib/pb/rpc_delete_email.pbenum.dart
Normal file
11
frontend/app/lib/pb/rpc_delete_email.pbenum.dart
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
//
|
||||||
|
// Generated code. Do not modify.
|
||||||
|
// source: rpc_delete_email.proto
|
||||||
|
//
|
||||||
|
// @dart = 2.12
|
||||||
|
|
||||||
|
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||||
|
// ignore_for_file: constant_identifier_names, library_prefixes
|
||||||
|
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
|
||||||
|
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
|
||||||
|
|
43
frontend/app/lib/pb/rpc_delete_email.pbjson.dart
Normal file
43
frontend/app/lib/pb/rpc_delete_email.pbjson.dart
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
//
|
||||||
|
// Generated code. Do not modify.
|
||||||
|
// source: rpc_delete_email.proto
|
||||||
|
//
|
||||||
|
// @dart = 2.12
|
||||||
|
|
||||||
|
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||||
|
// ignore_for_file: constant_identifier_names, library_prefixes
|
||||||
|
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
|
||||||
|
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
|
||||||
|
|
||||||
|
import 'dart:convert' as $convert;
|
||||||
|
import 'dart:core' as $core;
|
||||||
|
import 'dart:typed_data' as $typed_data;
|
||||||
|
|
||||||
|
@$core.Deprecated('Use deleteEmailAddressRequestDescriptor instead')
|
||||||
|
const DeleteEmailAddressRequest$json = {
|
||||||
|
'1': 'DeleteEmailAddressRequest',
|
||||||
|
'2': [
|
||||||
|
{'1': 'id', '3': 1, '4': 1, '5': 4, '10': 'id'},
|
||||||
|
],
|
||||||
|
'7': {},
|
||||||
|
};
|
||||||
|
|
||||||
|
/// Descriptor for `DeleteEmailAddressRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
|
final $typed_data.Uint8List deleteEmailAddressRequestDescriptor = $convert.base64Decode(
|
||||||
|
'ChlEZWxldGVFbWFpbEFkZHJlc3NSZXF1ZXN0Eg4KAmlkGAEgASgEUgJpZDo3kkE0CjIqE0RlbG'
|
||||||
|
'V0ZSBFbWFpbEFkZHJlc3MyFkRlbGV0ZSBhbiBFbWFpbEFkZHJlc3PSAQJpZA==');
|
||||||
|
|
||||||
|
@$core.Deprecated('Use deleteEmailAddressResponseDescriptor instead')
|
||||||
|
const DeleteEmailAddressResponse$json = {
|
||||||
|
'1': 'DeleteEmailAddressResponse',
|
||||||
|
'2': [
|
||||||
|
{'1': 'id', '3': 1, '4': 1, '5': 4, '8': {}, '10': 'id'},
|
||||||
|
],
|
||||||
|
'7': {},
|
||||||
|
};
|
||||||
|
|
||||||
|
/// Descriptor for `DeleteEmailAddressResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
|
final $typed_data.Uint8List deleteEmailAddressResponseDescriptor = $convert.base64Decode(
|
||||||
|
'ChpEZWxldGVFbWFpbEFkZHJlc3NSZXNwb25zZRITCgJpZBgBIAEoBEIDkkEAUgJpZDobkkEYCh'
|
||||||
|
'YqFERlbGV0ZWQgRW1haWxBZGRyZXNz');
|
||||||
|
|
@ -14,7 +14,7 @@ import 'dart:core' as $core;
|
|||||||
import 'package:fixnum/fixnum.dart' as $fixnum;
|
import 'package:fixnum/fixnum.dart' as $fixnum;
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
import 'account.pb.dart' as $30;
|
import 'account.pb.dart' as $33;
|
||||||
|
|
||||||
class GetAccountRequest extends $pb.GeneratedMessage {
|
class GetAccountRequest extends $pb.GeneratedMessage {
|
||||||
factory GetAccountRequest({
|
factory GetAccountRequest({
|
||||||
@ -68,7 +68,7 @@ class GetAccountRequest extends $pb.GeneratedMessage {
|
|||||||
|
|
||||||
class GetAccountResponse extends $pb.GeneratedMessage {
|
class GetAccountResponse extends $pb.GeneratedMessage {
|
||||||
factory GetAccountResponse({
|
factory GetAccountResponse({
|
||||||
$30.Account? account,
|
$33.Account? account,
|
||||||
}) {
|
}) {
|
||||||
final $result = create();
|
final $result = create();
|
||||||
if (account != null) {
|
if (account != null) {
|
||||||
@ -81,7 +81,7 @@ class GetAccountResponse extends $pb.GeneratedMessage {
|
|||||||
factory GetAccountResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
factory GetAccountResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetAccountResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetAccountResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
||||||
..aOM<$30.Account>(1, _omitFieldNames ? '' : 'account', subBuilder: $30.Account.create)
|
..aOM<$33.Account>(1, _omitFieldNames ? '' : 'account', subBuilder: $33.Account.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@ -107,15 +107,15 @@ class GetAccountResponse extends $pb.GeneratedMessage {
|
|||||||
static GetAccountResponse? _defaultInstance;
|
static GetAccountResponse? _defaultInstance;
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$30.Account get account => $_getN(0);
|
$33.Account get account => $_getN(0);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
set account($30.Account v) { setField(1, v); }
|
set account($33.Account v) { setField(1, v); }
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$core.bool hasAccount() => $_has(0);
|
$core.bool hasAccount() => $_has(0);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
void clearAccount() => clearField(1);
|
void clearAccount() => clearField(1);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$30.Account ensureAccount() => $_ensure(0);
|
$33.Account ensureAccount() => $_ensure(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ import 'dart:core' as $core;
|
|||||||
import 'package:fixnum/fixnum.dart' as $fixnum;
|
import 'package:fixnum/fixnum.dart' as $fixnum;
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
import 'account_info.pb.dart' as $29;
|
import 'account_info.pb.dart' as $32;
|
||||||
|
|
||||||
class GetAccountInfoRequest extends $pb.GeneratedMessage {
|
class GetAccountInfoRequest extends $pb.GeneratedMessage {
|
||||||
factory GetAccountInfoRequest({
|
factory GetAccountInfoRequest({
|
||||||
@ -68,7 +68,7 @@ class GetAccountInfoRequest extends $pb.GeneratedMessage {
|
|||||||
|
|
||||||
class GetAccountInfoResponse extends $pb.GeneratedMessage {
|
class GetAccountInfoResponse extends $pb.GeneratedMessage {
|
||||||
factory GetAccountInfoResponse({
|
factory GetAccountInfoResponse({
|
||||||
$29.AccountInfo? accountInfo,
|
$32.AccountInfo? accountInfo,
|
||||||
}) {
|
}) {
|
||||||
final $result = create();
|
final $result = create();
|
||||||
if (accountInfo != null) {
|
if (accountInfo != null) {
|
||||||
@ -81,7 +81,7 @@ class GetAccountInfoResponse extends $pb.GeneratedMessage {
|
|||||||
factory GetAccountInfoResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
factory GetAccountInfoResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetAccountInfoResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetAccountInfoResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
||||||
..aOM<$29.AccountInfo>(1, _omitFieldNames ? '' : 'accountInfo', subBuilder: $29.AccountInfo.create)
|
..aOM<$32.AccountInfo>(1, _omitFieldNames ? '' : 'accountInfo', subBuilder: $32.AccountInfo.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@ -107,15 +107,15 @@ class GetAccountInfoResponse extends $pb.GeneratedMessage {
|
|||||||
static GetAccountInfoResponse? _defaultInstance;
|
static GetAccountInfoResponse? _defaultInstance;
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$29.AccountInfo get accountInfo => $_getN(0);
|
$32.AccountInfo get accountInfo => $_getN(0);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
set accountInfo($29.AccountInfo v) { setField(1, v); }
|
set accountInfo($32.AccountInfo v) { setField(1, v); }
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$core.bool hasAccountInfo() => $_has(0);
|
$core.bool hasAccountInfo() => $_has(0);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
void clearAccountInfo() => clearField(1);
|
void clearAccountInfo() => clearField(1);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$29.AccountInfo ensureAccountInfo() => $_ensure(0);
|
$32.AccountInfo ensureAccountInfo() => $_ensure(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ import 'dart:core' as $core;
|
|||||||
import 'package:fixnum/fixnum.dart' as $fixnum;
|
import 'package:fixnum/fixnum.dart' as $fixnum;
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
import 'payment.pb.dart' as $31;
|
import 'payment.pb.dart' as $34;
|
||||||
|
|
||||||
class GetPaymentRequest extends $pb.GeneratedMessage {
|
class GetPaymentRequest extends $pb.GeneratedMessage {
|
||||||
factory GetPaymentRequest({
|
factory GetPaymentRequest({
|
||||||
@ -68,7 +68,7 @@ class GetPaymentRequest extends $pb.GeneratedMessage {
|
|||||||
|
|
||||||
class GetPaymentResponse extends $pb.GeneratedMessage {
|
class GetPaymentResponse extends $pb.GeneratedMessage {
|
||||||
factory GetPaymentResponse({
|
factory GetPaymentResponse({
|
||||||
$31.Payment? payment,
|
$34.Payment? payment,
|
||||||
}) {
|
}) {
|
||||||
final $result = create();
|
final $result = create();
|
||||||
if (payment != null) {
|
if (payment != null) {
|
||||||
@ -81,7 +81,7 @@ class GetPaymentResponse extends $pb.GeneratedMessage {
|
|||||||
factory GetPaymentResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
factory GetPaymentResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetPaymentResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetPaymentResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
||||||
..aOM<$31.Payment>(1, _omitFieldNames ? '' : 'payment', subBuilder: $31.Payment.create)
|
..aOM<$34.Payment>(1, _omitFieldNames ? '' : 'payment', subBuilder: $34.Payment.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@ -107,15 +107,15 @@ class GetPaymentResponse extends $pb.GeneratedMessage {
|
|||||||
static GetPaymentResponse? _defaultInstance;
|
static GetPaymentResponse? _defaultInstance;
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$31.Payment get payment => $_getN(0);
|
$34.Payment get payment => $_getN(0);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
set payment($31.Payment v) { setField(1, v); }
|
set payment($34.Payment v) { setField(1, v); }
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$core.bool hasPayment() => $_has(0);
|
$core.bool hasPayment() => $_has(0);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
void clearPayment() => clearField(1);
|
void clearPayment() => clearField(1);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$31.Payment ensurePayment() => $_ensure(0);
|
$34.Payment ensurePayment() => $_ensure(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ import 'dart:core' as $core;
|
|||||||
import 'package:fixnum/fixnum.dart' as $fixnum;
|
import 'package:fixnum/fixnum.dart' as $fixnum;
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
import 'person.pb.dart' as $32;
|
import 'person.pb.dart' as $35;
|
||||||
|
|
||||||
class GetPersonRequest extends $pb.GeneratedMessage {
|
class GetPersonRequest extends $pb.GeneratedMessage {
|
||||||
factory GetPersonRequest({
|
factory GetPersonRequest({
|
||||||
@ -68,7 +68,7 @@ class GetPersonRequest extends $pb.GeneratedMessage {
|
|||||||
|
|
||||||
class GetPersonResponse extends $pb.GeneratedMessage {
|
class GetPersonResponse extends $pb.GeneratedMessage {
|
||||||
factory GetPersonResponse({
|
factory GetPersonResponse({
|
||||||
$32.Person? person,
|
$35.Person? person,
|
||||||
}) {
|
}) {
|
||||||
final $result = create();
|
final $result = create();
|
||||||
if (person != null) {
|
if (person != null) {
|
||||||
@ -81,7 +81,7 @@ class GetPersonResponse extends $pb.GeneratedMessage {
|
|||||||
factory GetPersonResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
factory GetPersonResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetPersonResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetPersonResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
||||||
..aOM<$32.Person>(1, _omitFieldNames ? '' : 'person', subBuilder: $32.Person.create)
|
..aOM<$35.Person>(1, _omitFieldNames ? '' : 'person', subBuilder: $35.Person.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@ -107,15 +107,15 @@ class GetPersonResponse extends $pb.GeneratedMessage {
|
|||||||
static GetPersonResponse? _defaultInstance;
|
static GetPersonResponse? _defaultInstance;
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$32.Person get person => $_getN(0);
|
$35.Person get person => $_getN(0);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
set person($32.Person v) { setField(1, v); }
|
set person($35.Person v) { setField(1, v); }
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$core.bool hasPerson() => $_has(0);
|
$core.bool hasPerson() => $_has(0);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
void clearPerson() => clearField(1);
|
void clearPerson() => clearField(1);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$32.Person ensurePerson() => $_ensure(0);
|
$35.Person ensurePerson() => $_ensure(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@ import 'dart:core' as $core;
|
|||||||
|
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
import 'account_info.pb.dart' as $29;
|
import 'account_info.pb.dart' as $32;
|
||||||
|
|
||||||
class ListAccountInfoRequest extends $pb.GeneratedMessage {
|
class ListAccountInfoRequest extends $pb.GeneratedMessage {
|
||||||
factory ListAccountInfoRequest({
|
factory ListAccountInfoRequest({
|
||||||
@ -81,7 +81,7 @@ class ListAccountInfoRequest extends $pb.GeneratedMessage {
|
|||||||
|
|
||||||
class ListAccountInfoResponse extends $pb.GeneratedMessage {
|
class ListAccountInfoResponse extends $pb.GeneratedMessage {
|
||||||
factory ListAccountInfoResponse({
|
factory ListAccountInfoResponse({
|
||||||
$core.Iterable<$29.AccountInfo>? accountInfo,
|
$core.Iterable<$32.AccountInfo>? accountInfo,
|
||||||
}) {
|
}) {
|
||||||
final $result = create();
|
final $result = create();
|
||||||
if (accountInfo != null) {
|
if (accountInfo != null) {
|
||||||
@ -94,7 +94,7 @@ class ListAccountInfoResponse extends $pb.GeneratedMessage {
|
|||||||
factory ListAccountInfoResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
factory ListAccountInfoResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListAccountInfoResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListAccountInfoResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
||||||
..pc<$29.AccountInfo>(1, _omitFieldNames ? '' : 'accountInfo', $pb.PbFieldType.PM, subBuilder: $29.AccountInfo.create)
|
..pc<$32.AccountInfo>(1, _omitFieldNames ? '' : 'accountInfo', $pb.PbFieldType.PM, subBuilder: $32.AccountInfo.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@ -120,7 +120,7 @@ class ListAccountInfoResponse extends $pb.GeneratedMessage {
|
|||||||
static ListAccountInfoResponse? _defaultInstance;
|
static ListAccountInfoResponse? _defaultInstance;
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$core.List<$29.AccountInfo> get accountInfo => $_getList(0);
|
$core.List<$32.AccountInfo> get accountInfo => $_getList(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@ import 'dart:core' as $core;
|
|||||||
|
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
import 'account.pb.dart' as $30;
|
import 'account.pb.dart' as $33;
|
||||||
|
|
||||||
class ListAccountsRequest extends $pb.GeneratedMessage {
|
class ListAccountsRequest extends $pb.GeneratedMessage {
|
||||||
factory ListAccountsRequest({
|
factory ListAccountsRequest({
|
||||||
@ -81,7 +81,7 @@ class ListAccountsRequest extends $pb.GeneratedMessage {
|
|||||||
|
|
||||||
class ListAccountsResponse extends $pb.GeneratedMessage {
|
class ListAccountsResponse extends $pb.GeneratedMessage {
|
||||||
factory ListAccountsResponse({
|
factory ListAccountsResponse({
|
||||||
$core.Iterable<$30.Account>? accounts,
|
$core.Iterable<$33.Account>? accounts,
|
||||||
}) {
|
}) {
|
||||||
final $result = create();
|
final $result = create();
|
||||||
if (accounts != null) {
|
if (accounts != null) {
|
||||||
@ -94,7 +94,7 @@ class ListAccountsResponse extends $pb.GeneratedMessage {
|
|||||||
factory ListAccountsResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
factory ListAccountsResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListAccountsResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListAccountsResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
||||||
..pc<$30.Account>(1, _omitFieldNames ? '' : 'accounts', $pb.PbFieldType.PM, subBuilder: $30.Account.create)
|
..pc<$33.Account>(1, _omitFieldNames ? '' : 'accounts', $pb.PbFieldType.PM, subBuilder: $33.Account.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@ -120,7 +120,7 @@ class ListAccountsResponse extends $pb.GeneratedMessage {
|
|||||||
static ListAccountsResponse? _defaultInstance;
|
static ListAccountsResponse? _defaultInstance;
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$core.List<$30.Account> get accounts => $_getList(0);
|
$core.List<$33.Account> get accounts => $_getList(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ import 'dart:core' as $core;
|
|||||||
import 'package:fixnum/fixnum.dart' as $fixnum;
|
import 'package:fixnum/fixnum.dart' as $fixnum;
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
import 'payment.pb.dart' as $31;
|
import 'payment.pb.dart' as $34;
|
||||||
|
|
||||||
class ListPaymentsRequest extends $pb.GeneratedMessage {
|
class ListPaymentsRequest extends $pb.GeneratedMessage {
|
||||||
factory ListPaymentsRequest({
|
factory ListPaymentsRequest({
|
||||||
@ -68,7 +68,7 @@ class ListPaymentsRequest extends $pb.GeneratedMessage {
|
|||||||
|
|
||||||
class ListPaymentsResponse extends $pb.GeneratedMessage {
|
class ListPaymentsResponse extends $pb.GeneratedMessage {
|
||||||
factory ListPaymentsResponse({
|
factory ListPaymentsResponse({
|
||||||
$core.Iterable<$31.Payment>? payments,
|
$core.Iterable<$34.Payment>? payments,
|
||||||
}) {
|
}) {
|
||||||
final $result = create();
|
final $result = create();
|
||||||
if (payments != null) {
|
if (payments != null) {
|
||||||
@ -81,7 +81,7 @@ class ListPaymentsResponse extends $pb.GeneratedMessage {
|
|||||||
factory ListPaymentsResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
factory ListPaymentsResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListPaymentsResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListPaymentsResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
||||||
..pc<$31.Payment>(1, _omitFieldNames ? '' : 'payments', $pb.PbFieldType.PM, subBuilder: $31.Payment.create)
|
..pc<$34.Payment>(1, _omitFieldNames ? '' : 'payments', $pb.PbFieldType.PM, subBuilder: $34.Payment.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@ -107,7 +107,7 @@ class ListPaymentsResponse extends $pb.GeneratedMessage {
|
|||||||
static ListPaymentsResponse? _defaultInstance;
|
static ListPaymentsResponse? _defaultInstance;
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$core.List<$31.Payment> get payments => $_getList(0);
|
$core.List<$34.Payment> get payments => $_getList(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ import 'dart:core' as $core;
|
|||||||
import 'package:fixnum/fixnum.dart' as $fixnum;
|
import 'package:fixnum/fixnum.dart' as $fixnum;
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
import 'person.pb.dart' as $32;
|
import 'person.pb.dart' as $35;
|
||||||
|
|
||||||
class ListPersonsRequest extends $pb.GeneratedMessage {
|
class ListPersonsRequest extends $pb.GeneratedMessage {
|
||||||
factory ListPersonsRequest({
|
factory ListPersonsRequest({
|
||||||
@ -68,7 +68,7 @@ class ListPersonsRequest extends $pb.GeneratedMessage {
|
|||||||
|
|
||||||
class ListPersonsResponse extends $pb.GeneratedMessage {
|
class ListPersonsResponse extends $pb.GeneratedMessage {
|
||||||
factory ListPersonsResponse({
|
factory ListPersonsResponse({
|
||||||
$core.Iterable<$32.Person>? persons,
|
$core.Iterable<$35.Person>? persons,
|
||||||
}) {
|
}) {
|
||||||
final $result = create();
|
final $result = create();
|
||||||
if (persons != null) {
|
if (persons != null) {
|
||||||
@ -81,7 +81,7 @@ class ListPersonsResponse extends $pb.GeneratedMessage {
|
|||||||
factory ListPersonsResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
factory ListPersonsResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListPersonsResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListPersonsResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
||||||
..pc<$32.Person>(1, _omitFieldNames ? '' : 'persons', $pb.PbFieldType.PM, subBuilder: $32.Person.create)
|
..pc<$35.Person>(1, _omitFieldNames ? '' : 'persons', $pb.PbFieldType.PM, subBuilder: $35.Person.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@ -107,7 +107,7 @@ class ListPersonsResponse extends $pb.GeneratedMessage {
|
|||||||
static ListPersonsResponse? _defaultInstance;
|
static ListPersonsResponse? _defaultInstance;
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$core.List<$32.Person> get persons => $_getList(0);
|
$core.List<$35.Person> get persons => $_getList(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ import 'dart:core' as $core;
|
|||||||
import 'package:fixnum/fixnum.dart' as $fixnum;
|
import 'package:fixnum/fixnum.dart' as $fixnum;
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
import 'returns_log.pb.dart' as $33;
|
import 'returns_log.pb.dart' as $36;
|
||||||
|
|
||||||
class ListReturnsLogRequest extends $pb.GeneratedMessage {
|
class ListReturnsLogRequest extends $pb.GeneratedMessage {
|
||||||
factory ListReturnsLogRequest({
|
factory ListReturnsLogRequest({
|
||||||
@ -68,7 +68,7 @@ class ListReturnsLogRequest extends $pb.GeneratedMessage {
|
|||||||
|
|
||||||
class ListReturnsLogResponse extends $pb.GeneratedMessage {
|
class ListReturnsLogResponse extends $pb.GeneratedMessage {
|
||||||
factory ListReturnsLogResponse({
|
factory ListReturnsLogResponse({
|
||||||
$core.Iterable<$33.ReturnsLog>? returnsLog,
|
$core.Iterable<$36.ReturnsLog>? returnsLog,
|
||||||
}) {
|
}) {
|
||||||
final $result = create();
|
final $result = create();
|
||||||
if (returnsLog != null) {
|
if (returnsLog != null) {
|
||||||
@ -81,7 +81,7 @@ class ListReturnsLogResponse extends $pb.GeneratedMessage {
|
|||||||
factory ListReturnsLogResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
factory ListReturnsLogResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListReturnsLogResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListReturnsLogResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
||||||
..pc<$33.ReturnsLog>(1, _omitFieldNames ? '' : 'returnsLog', $pb.PbFieldType.PM, subBuilder: $33.ReturnsLog.create)
|
..pc<$36.ReturnsLog>(1, _omitFieldNames ? '' : 'returnsLog', $pb.PbFieldType.PM, subBuilder: $36.ReturnsLog.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@ -107,7 +107,7 @@ class ListReturnsLogResponse extends $pb.GeneratedMessage {
|
|||||||
static ListReturnsLogResponse? _defaultInstance;
|
static ListReturnsLogResponse? _defaultInstance;
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$core.List<$33.ReturnsLog> get returnsLog => $_getList(0);
|
$core.List<$36.ReturnsLog> get returnsLog => $_getList(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ import 'dart:core' as $core;
|
|||||||
import 'package:fixnum/fixnum.dart' as $fixnum;
|
import 'package:fixnum/fixnum.dart' as $fixnum;
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
import 'session.pb.dart' as $34;
|
import 'session.pb.dart' as $37;
|
||||||
|
|
||||||
class ListSessionsRequest extends $pb.GeneratedMessage {
|
class ListSessionsRequest extends $pb.GeneratedMessage {
|
||||||
factory ListSessionsRequest({
|
factory ListSessionsRequest({
|
||||||
@ -68,7 +68,7 @@ class ListSessionsRequest extends $pb.GeneratedMessage {
|
|||||||
|
|
||||||
class ListSessionsResponse extends $pb.GeneratedMessage {
|
class ListSessionsResponse extends $pb.GeneratedMessage {
|
||||||
factory ListSessionsResponse({
|
factory ListSessionsResponse({
|
||||||
$core.Iterable<$34.Session>? sessions,
|
$core.Iterable<$37.Session>? sessions,
|
||||||
}) {
|
}) {
|
||||||
final $result = create();
|
final $result = create();
|
||||||
if (sessions != null) {
|
if (sessions != null) {
|
||||||
@ -81,7 +81,7 @@ class ListSessionsResponse extends $pb.GeneratedMessage {
|
|||||||
factory ListSessionsResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
factory ListSessionsResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListSessionsResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListSessionsResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
||||||
..pc<$34.Session>(1, _omitFieldNames ? '' : 'sessions', $pb.PbFieldType.PM, subBuilder: $34.Session.create)
|
..pc<$37.Session>(1, _omitFieldNames ? '' : 'sessions', $pb.PbFieldType.PM, subBuilder: $37.Session.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@ -107,7 +107,7 @@ class ListSessionsResponse extends $pb.GeneratedMessage {
|
|||||||
static ListSessionsResponse? _defaultInstance;
|
static ListSessionsResponse? _defaultInstance;
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$core.List<$34.Session> get sessions => $_getList(0);
|
$core.List<$37.Session> get sessions => $_getList(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ import 'dart:core' as $core;
|
|||||||
import 'package:fixnum/fixnum.dart' as $fixnum;
|
import 'package:fixnum/fixnum.dart' as $fixnum;
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
import 'google/protobuf/timestamp.pb.dart' as $28;
|
import 'google/protobuf/timestamp.pb.dart' as $30;
|
||||||
|
|
||||||
class LoginRequest extends $pb.GeneratedMessage {
|
class LoginRequest extends $pb.GeneratedMessage {
|
||||||
factory LoginRequest({
|
factory LoginRequest({
|
||||||
@ -84,9 +84,9 @@ class LoginResponse extends $pb.GeneratedMessage {
|
|||||||
factory LoginResponse({
|
factory LoginResponse({
|
||||||
$core.String? sessionId,
|
$core.String? sessionId,
|
||||||
$core.String? accessToken,
|
$core.String? accessToken,
|
||||||
$28.Timestamp? accessTokenExpiresAt,
|
$30.Timestamp? accessTokenExpiresAt,
|
||||||
$core.String? refreshToken,
|
$core.String? refreshToken,
|
||||||
$28.Timestamp? refreshTokenExpiresAt,
|
$30.Timestamp? refreshTokenExpiresAt,
|
||||||
$fixnum.Int64? accountId,
|
$fixnum.Int64? accountId,
|
||||||
}) {
|
}) {
|
||||||
final $result = create();
|
final $result = create();
|
||||||
@ -117,9 +117,9 @@ class LoginResponse extends $pb.GeneratedMessage {
|
|||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'LoginResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'LoginResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
||||||
..aOS(1, _omitFieldNames ? '' : 'sessionId')
|
..aOS(1, _omitFieldNames ? '' : 'sessionId')
|
||||||
..aOS(2, _omitFieldNames ? '' : 'accessToken')
|
..aOS(2, _omitFieldNames ? '' : 'accessToken')
|
||||||
..aOM<$28.Timestamp>(3, _omitFieldNames ? '' : 'accessTokenExpiresAt', subBuilder: $28.Timestamp.create)
|
..aOM<$30.Timestamp>(3, _omitFieldNames ? '' : 'accessTokenExpiresAt', subBuilder: $30.Timestamp.create)
|
||||||
..aOS(4, _omitFieldNames ? '' : 'refreshToken')
|
..aOS(4, _omitFieldNames ? '' : 'refreshToken')
|
||||||
..aOM<$28.Timestamp>(5, _omitFieldNames ? '' : 'refreshTokenExpiresAt', subBuilder: $28.Timestamp.create)
|
..aOM<$30.Timestamp>(5, _omitFieldNames ? '' : 'refreshTokenExpiresAt', subBuilder: $30.Timestamp.create)
|
||||||
..a<$fixnum.Int64>(6, _omitFieldNames ? '' : 'accountId', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO)
|
..a<$fixnum.Int64>(6, _omitFieldNames ? '' : 'accountId', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
@ -164,15 +164,15 @@ class LoginResponse extends $pb.GeneratedMessage {
|
|||||||
void clearAccessToken() => clearField(2);
|
void clearAccessToken() => clearField(2);
|
||||||
|
|
||||||
@$pb.TagNumber(3)
|
@$pb.TagNumber(3)
|
||||||
$28.Timestamp get accessTokenExpiresAt => $_getN(2);
|
$30.Timestamp get accessTokenExpiresAt => $_getN(2);
|
||||||
@$pb.TagNumber(3)
|
@$pb.TagNumber(3)
|
||||||
set accessTokenExpiresAt($28.Timestamp v) { setField(3, v); }
|
set accessTokenExpiresAt($30.Timestamp v) { setField(3, v); }
|
||||||
@$pb.TagNumber(3)
|
@$pb.TagNumber(3)
|
||||||
$core.bool hasAccessTokenExpiresAt() => $_has(2);
|
$core.bool hasAccessTokenExpiresAt() => $_has(2);
|
||||||
@$pb.TagNumber(3)
|
@$pb.TagNumber(3)
|
||||||
void clearAccessTokenExpiresAt() => clearField(3);
|
void clearAccessTokenExpiresAt() => clearField(3);
|
||||||
@$pb.TagNumber(3)
|
@$pb.TagNumber(3)
|
||||||
$28.Timestamp ensureAccessTokenExpiresAt() => $_ensure(2);
|
$30.Timestamp ensureAccessTokenExpiresAt() => $_ensure(2);
|
||||||
|
|
||||||
@$pb.TagNumber(4)
|
@$pb.TagNumber(4)
|
||||||
$core.String get refreshToken => $_getSZ(3);
|
$core.String get refreshToken => $_getSZ(3);
|
||||||
@ -184,15 +184,15 @@ class LoginResponse extends $pb.GeneratedMessage {
|
|||||||
void clearRefreshToken() => clearField(4);
|
void clearRefreshToken() => clearField(4);
|
||||||
|
|
||||||
@$pb.TagNumber(5)
|
@$pb.TagNumber(5)
|
||||||
$28.Timestamp get refreshTokenExpiresAt => $_getN(4);
|
$30.Timestamp get refreshTokenExpiresAt => $_getN(4);
|
||||||
@$pb.TagNumber(5)
|
@$pb.TagNumber(5)
|
||||||
set refreshTokenExpiresAt($28.Timestamp v) { setField(5, v); }
|
set refreshTokenExpiresAt($30.Timestamp v) { setField(5, v); }
|
||||||
@$pb.TagNumber(5)
|
@$pb.TagNumber(5)
|
||||||
$core.bool hasRefreshTokenExpiresAt() => $_has(4);
|
$core.bool hasRefreshTokenExpiresAt() => $_has(4);
|
||||||
@$pb.TagNumber(5)
|
@$pb.TagNumber(5)
|
||||||
void clearRefreshTokenExpiresAt() => clearField(5);
|
void clearRefreshTokenExpiresAt() => clearField(5);
|
||||||
@$pb.TagNumber(5)
|
@$pb.TagNumber(5)
|
||||||
$28.Timestamp ensureRefreshTokenExpiresAt() => $_ensure(4);
|
$30.Timestamp ensureRefreshTokenExpiresAt() => $_ensure(4);
|
||||||
|
|
||||||
@$pb.TagNumber(6)
|
@$pb.TagNumber(6)
|
||||||
$fixnum.Int64 get accountId => $_getI64(5);
|
$fixnum.Int64 get accountId => $_getI64(5);
|
||||||
|
@ -13,7 +13,7 @@ import 'dart:core' as $core;
|
|||||||
|
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
import 'google/protobuf/timestamp.pb.dart' as $28;
|
import 'google/protobuf/timestamp.pb.dart' as $30;
|
||||||
|
|
||||||
class RefreshTokenRequest extends $pb.GeneratedMessage {
|
class RefreshTokenRequest extends $pb.GeneratedMessage {
|
||||||
factory RefreshTokenRequest({
|
factory RefreshTokenRequest({
|
||||||
@ -68,7 +68,7 @@ class RefreshTokenRequest extends $pb.GeneratedMessage {
|
|||||||
class RefreshTokenResponse extends $pb.GeneratedMessage {
|
class RefreshTokenResponse extends $pb.GeneratedMessage {
|
||||||
factory RefreshTokenResponse({
|
factory RefreshTokenResponse({
|
||||||
$core.String? accessToken,
|
$core.String? accessToken,
|
||||||
$28.Timestamp? accessTokenExpiresAt,
|
$30.Timestamp? accessTokenExpiresAt,
|
||||||
}) {
|
}) {
|
||||||
final $result = create();
|
final $result = create();
|
||||||
if (accessToken != null) {
|
if (accessToken != null) {
|
||||||
@ -85,7 +85,7 @@ class RefreshTokenResponse extends $pb.GeneratedMessage {
|
|||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'RefreshTokenResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'RefreshTokenResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
||||||
..aOS(1, _omitFieldNames ? '' : 'accessToken')
|
..aOS(1, _omitFieldNames ? '' : 'accessToken')
|
||||||
..aOM<$28.Timestamp>(2, _omitFieldNames ? '' : 'accessTokenExpiresAt', subBuilder: $28.Timestamp.create)
|
..aOM<$30.Timestamp>(2, _omitFieldNames ? '' : 'accessTokenExpiresAt', subBuilder: $30.Timestamp.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@ -120,15 +120,15 @@ class RefreshTokenResponse extends $pb.GeneratedMessage {
|
|||||||
void clearAccessToken() => clearField(1);
|
void clearAccessToken() => clearField(1);
|
||||||
|
|
||||||
@$pb.TagNumber(2)
|
@$pb.TagNumber(2)
|
||||||
$28.Timestamp get accessTokenExpiresAt => $_getN(1);
|
$30.Timestamp get accessTokenExpiresAt => $_getN(1);
|
||||||
@$pb.TagNumber(2)
|
@$pb.TagNumber(2)
|
||||||
set accessTokenExpiresAt($28.Timestamp v) { setField(2, v); }
|
set accessTokenExpiresAt($30.Timestamp v) { setField(2, v); }
|
||||||
@$pb.TagNumber(2)
|
@$pb.TagNumber(2)
|
||||||
$core.bool hasAccessTokenExpiresAt() => $_has(1);
|
$core.bool hasAccessTokenExpiresAt() => $_has(1);
|
||||||
@$pb.TagNumber(2)
|
@$pb.TagNumber(2)
|
||||||
void clearAccessTokenExpiresAt() => clearField(2);
|
void clearAccessTokenExpiresAt() => clearField(2);
|
||||||
@$pb.TagNumber(2)
|
@$pb.TagNumber(2)
|
||||||
$28.Timestamp ensureAccessTokenExpiresAt() => $_ensure(1);
|
$30.Timestamp ensureAccessTokenExpiresAt() => $_ensure(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ import 'dart:core' as $core;
|
|||||||
import 'package:fixnum/fixnum.dart' as $fixnum;
|
import 'package:fixnum/fixnum.dart' as $fixnum;
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
import 'account.pb.dart' as $30;
|
import 'account.pb.dart' as $33;
|
||||||
|
|
||||||
class ResendVerificationRequest extends $pb.GeneratedMessage {
|
class ResendVerificationRequest extends $pb.GeneratedMessage {
|
||||||
factory ResendVerificationRequest({
|
factory ResendVerificationRequest({
|
||||||
@ -68,7 +68,7 @@ class ResendVerificationRequest extends $pb.GeneratedMessage {
|
|||||||
|
|
||||||
class ResendVerificationResponse extends $pb.GeneratedMessage {
|
class ResendVerificationResponse extends $pb.GeneratedMessage {
|
||||||
factory ResendVerificationResponse({
|
factory ResendVerificationResponse({
|
||||||
$30.Account? account,
|
$33.Account? account,
|
||||||
}) {
|
}) {
|
||||||
final $result = create();
|
final $result = create();
|
||||||
if (account != null) {
|
if (account != null) {
|
||||||
@ -81,7 +81,7 @@ class ResendVerificationResponse extends $pb.GeneratedMessage {
|
|||||||
factory ResendVerificationResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
factory ResendVerificationResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ResendVerificationResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ResendVerificationResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
||||||
..aOM<$30.Account>(1, _omitFieldNames ? '' : 'account', subBuilder: $30.Account.create)
|
..aOM<$33.Account>(1, _omitFieldNames ? '' : 'account', subBuilder: $33.Account.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@ -107,15 +107,15 @@ class ResendVerificationResponse extends $pb.GeneratedMessage {
|
|||||||
static ResendVerificationResponse? _defaultInstance;
|
static ResendVerificationResponse? _defaultInstance;
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$30.Account get account => $_getN(0);
|
$33.Account get account => $_getN(0);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
set account($30.Account v) { setField(1, v); }
|
set account($33.Account v) { setField(1, v); }
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$core.bool hasAccount() => $_has(0);
|
$core.bool hasAccount() => $_has(0);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
void clearAccount() => clearField(1);
|
void clearAccount() => clearField(1);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$30.Account ensureAccount() => $_ensure(0);
|
$33.Account ensureAccount() => $_ensure(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ import 'dart:core' as $core;
|
|||||||
import 'package:fixnum/fixnum.dart' as $fixnum;
|
import 'package:fixnum/fixnum.dart' as $fixnum;
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
import 'account.pb.dart' as $30;
|
import 'account.pb.dart' as $33;
|
||||||
|
|
||||||
class UpdateAccountRequest extends $pb.GeneratedMessage {
|
class UpdateAccountRequest extends $pb.GeneratedMessage {
|
||||||
factory UpdateAccountRequest({
|
factory UpdateAccountRequest({
|
||||||
@ -96,7 +96,7 @@ class UpdateAccountRequest extends $pb.GeneratedMessage {
|
|||||||
|
|
||||||
class UpdateAccountResponse extends $pb.GeneratedMessage {
|
class UpdateAccountResponse extends $pb.GeneratedMessage {
|
||||||
factory UpdateAccountResponse({
|
factory UpdateAccountResponse({
|
||||||
$30.Account? account,
|
$33.Account? account,
|
||||||
}) {
|
}) {
|
||||||
final $result = create();
|
final $result = create();
|
||||||
if (account != null) {
|
if (account != null) {
|
||||||
@ -109,7 +109,7 @@ class UpdateAccountResponse extends $pb.GeneratedMessage {
|
|||||||
factory UpdateAccountResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
factory UpdateAccountResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UpdateAccountResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UpdateAccountResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
||||||
..aOM<$30.Account>(1, _omitFieldNames ? '' : 'account', subBuilder: $30.Account.create)
|
..aOM<$33.Account>(1, _omitFieldNames ? '' : 'account', subBuilder: $33.Account.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@ -135,15 +135,15 @@ class UpdateAccountResponse extends $pb.GeneratedMessage {
|
|||||||
static UpdateAccountResponse? _defaultInstance;
|
static UpdateAccountResponse? _defaultInstance;
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$30.Account get account => $_getN(0);
|
$33.Account get account => $_getN(0);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
set account($30.Account v) { setField(1, v); }
|
set account($33.Account v) { setField(1, v); }
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$core.bool hasAccount() => $_has(0);
|
$core.bool hasAccount() => $_has(0);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
void clearAccount() => clearField(1);
|
void clearAccount() => clearField(1);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$30.Account ensureAccount() => $_ensure(0);
|
$33.Account ensureAccount() => $_ensure(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -14,8 +14,8 @@ import 'dart:core' as $core;
|
|||||||
import 'package:fixnum/fixnum.dart' as $fixnum;
|
import 'package:fixnum/fixnum.dart' as $fixnum;
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
import 'account_info.pb.dart' as $29;
|
import 'account_info.pb.dart' as $32;
|
||||||
import 'google/protobuf/timestamp.pb.dart' as $28;
|
import 'google/protobuf/timestamp.pb.dart' as $30;
|
||||||
|
|
||||||
class UpdateAccountInfoRequest extends $pb.GeneratedMessage {
|
class UpdateAccountInfoRequest extends $pb.GeneratedMessage {
|
||||||
factory UpdateAccountInfoRequest({
|
factory UpdateAccountInfoRequest({
|
||||||
@ -27,7 +27,7 @@ class UpdateAccountInfoRequest extends $pb.GeneratedMessage {
|
|||||||
$core.String? zip,
|
$core.String? zip,
|
||||||
$core.String? country,
|
$core.String? country,
|
||||||
$core.String? phone,
|
$core.String? phone,
|
||||||
$28.Timestamp? birthday,
|
$30.Timestamp? birthday,
|
||||||
}) {
|
}) {
|
||||||
final $result = create();
|
final $result = create();
|
||||||
if (accountId != null) {
|
if (accountId != null) {
|
||||||
@ -72,7 +72,7 @@ class UpdateAccountInfoRequest extends $pb.GeneratedMessage {
|
|||||||
..aOS(8, _omitFieldNames ? '' : 'zip')
|
..aOS(8, _omitFieldNames ? '' : 'zip')
|
||||||
..aOS(9, _omitFieldNames ? '' : 'country')
|
..aOS(9, _omitFieldNames ? '' : 'country')
|
||||||
..aOS(10, _omitFieldNames ? '' : 'phone')
|
..aOS(10, _omitFieldNames ? '' : 'phone')
|
||||||
..aOM<$28.Timestamp>(11, _omitFieldNames ? '' : 'birthday', subBuilder: $28.Timestamp.create)
|
..aOM<$30.Timestamp>(11, _omitFieldNames ? '' : 'birthday', subBuilder: $30.Timestamp.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@ -170,20 +170,20 @@ class UpdateAccountInfoRequest extends $pb.GeneratedMessage {
|
|||||||
void clearPhone() => clearField(10);
|
void clearPhone() => clearField(10);
|
||||||
|
|
||||||
@$pb.TagNumber(11)
|
@$pb.TagNumber(11)
|
||||||
$28.Timestamp get birthday => $_getN(8);
|
$30.Timestamp get birthday => $_getN(8);
|
||||||
@$pb.TagNumber(11)
|
@$pb.TagNumber(11)
|
||||||
set birthday($28.Timestamp v) { setField(11, v); }
|
set birthday($30.Timestamp v) { setField(11, v); }
|
||||||
@$pb.TagNumber(11)
|
@$pb.TagNumber(11)
|
||||||
$core.bool hasBirthday() => $_has(8);
|
$core.bool hasBirthday() => $_has(8);
|
||||||
@$pb.TagNumber(11)
|
@$pb.TagNumber(11)
|
||||||
void clearBirthday() => clearField(11);
|
void clearBirthday() => clearField(11);
|
||||||
@$pb.TagNumber(11)
|
@$pb.TagNumber(11)
|
||||||
$28.Timestamp ensureBirthday() => $_ensure(8);
|
$30.Timestamp ensureBirthday() => $_ensure(8);
|
||||||
}
|
}
|
||||||
|
|
||||||
class UpdateAccountInfoResponse extends $pb.GeneratedMessage {
|
class UpdateAccountInfoResponse extends $pb.GeneratedMessage {
|
||||||
factory UpdateAccountInfoResponse({
|
factory UpdateAccountInfoResponse({
|
||||||
$29.AccountInfo? accountInfo,
|
$32.AccountInfo? accountInfo,
|
||||||
}) {
|
}) {
|
||||||
final $result = create();
|
final $result = create();
|
||||||
if (accountInfo != null) {
|
if (accountInfo != null) {
|
||||||
@ -196,7 +196,7 @@ class UpdateAccountInfoResponse extends $pb.GeneratedMessage {
|
|||||||
factory UpdateAccountInfoResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
factory UpdateAccountInfoResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UpdateAccountInfoResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UpdateAccountInfoResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
||||||
..aOM<$29.AccountInfo>(1, _omitFieldNames ? '' : 'accountInfo', subBuilder: $29.AccountInfo.create)
|
..aOM<$32.AccountInfo>(1, _omitFieldNames ? '' : 'accountInfo', subBuilder: $32.AccountInfo.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@ -222,15 +222,15 @@ class UpdateAccountInfoResponse extends $pb.GeneratedMessage {
|
|||||||
static UpdateAccountInfoResponse? _defaultInstance;
|
static UpdateAccountInfoResponse? _defaultInstance;
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$29.AccountInfo get accountInfo => $_getN(0);
|
$32.AccountInfo get accountInfo => $_getN(0);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
set accountInfo($29.AccountInfo v) { setField(1, v); }
|
set accountInfo($32.AccountInfo v) { setField(1, v); }
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$core.bool hasAccountInfo() => $_has(0);
|
$core.bool hasAccountInfo() => $_has(0);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
void clearAccountInfo() => clearField(1);
|
void clearAccountInfo() => clearField(1);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$29.AccountInfo ensureAccountInfo() => $_ensure(0);
|
$32.AccountInfo ensureAccountInfo() => $_ensure(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ import 'dart:core' as $core;
|
|||||||
import 'package:fixnum/fixnum.dart' as $fixnum;
|
import 'package:fixnum/fixnum.dart' as $fixnum;
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
import 'account_info.pb.dart' as $29;
|
import 'account_info.pb.dart' as $32;
|
||||||
|
|
||||||
class UpdateAccountPrivacyRequest extends $pb.GeneratedMessage {
|
class UpdateAccountPrivacyRequest extends $pb.GeneratedMessage {
|
||||||
factory UpdateAccountPrivacyRequest({
|
factory UpdateAccountPrivacyRequest({
|
||||||
@ -82,7 +82,7 @@ class UpdateAccountPrivacyRequest extends $pb.GeneratedMessage {
|
|||||||
|
|
||||||
class UpdateAccountPrivacyResponse extends $pb.GeneratedMessage {
|
class UpdateAccountPrivacyResponse extends $pb.GeneratedMessage {
|
||||||
factory UpdateAccountPrivacyResponse({
|
factory UpdateAccountPrivacyResponse({
|
||||||
$29.AccountInfo? accountInfo,
|
$32.AccountInfo? accountInfo,
|
||||||
}) {
|
}) {
|
||||||
final $result = create();
|
final $result = create();
|
||||||
if (accountInfo != null) {
|
if (accountInfo != null) {
|
||||||
@ -95,7 +95,7 @@ class UpdateAccountPrivacyResponse extends $pb.GeneratedMessage {
|
|||||||
factory UpdateAccountPrivacyResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
factory UpdateAccountPrivacyResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UpdateAccountPrivacyResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UpdateAccountPrivacyResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
||||||
..aOM<$29.AccountInfo>(1, _omitFieldNames ? '' : 'accountInfo', subBuilder: $29.AccountInfo.create)
|
..aOM<$32.AccountInfo>(1, _omitFieldNames ? '' : 'accountInfo', subBuilder: $32.AccountInfo.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@ -121,15 +121,15 @@ class UpdateAccountPrivacyResponse extends $pb.GeneratedMessage {
|
|||||||
static UpdateAccountPrivacyResponse? _defaultInstance;
|
static UpdateAccountPrivacyResponse? _defaultInstance;
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$29.AccountInfo get accountInfo => $_getN(0);
|
$32.AccountInfo get accountInfo => $_getN(0);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
set accountInfo($29.AccountInfo v) { setField(1, v); }
|
set accountInfo($32.AccountInfo v) { setField(1, v); }
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$core.bool hasAccountInfo() => $_has(0);
|
$core.bool hasAccountInfo() => $_has(0);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
void clearAccountInfo() => clearField(1);
|
void clearAccountInfo() => clearField(1);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$29.AccountInfo ensureAccountInfo() => $_ensure(0);
|
$32.AccountInfo ensureAccountInfo() => $_ensure(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ import 'dart:core' as $core;
|
|||||||
import 'package:fixnum/fixnum.dart' as $fixnum;
|
import 'package:fixnum/fixnum.dart' as $fixnum;
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
import 'payment.pb.dart' as $31;
|
import 'payment.pb.dart' as $34;
|
||||||
|
|
||||||
class UpdatePaymentRequest extends $pb.GeneratedMessage {
|
class UpdatePaymentRequest extends $pb.GeneratedMessage {
|
||||||
factory UpdatePaymentRequest({
|
factory UpdatePaymentRequest({
|
||||||
@ -180,7 +180,7 @@ class UpdatePaymentRequest extends $pb.GeneratedMessage {
|
|||||||
|
|
||||||
class UpdatePaymentResponse extends $pb.GeneratedMessage {
|
class UpdatePaymentResponse extends $pb.GeneratedMessage {
|
||||||
factory UpdatePaymentResponse({
|
factory UpdatePaymentResponse({
|
||||||
$31.Payment? payment,
|
$34.Payment? payment,
|
||||||
}) {
|
}) {
|
||||||
final $result = create();
|
final $result = create();
|
||||||
if (payment != null) {
|
if (payment != null) {
|
||||||
@ -193,7 +193,7 @@ class UpdatePaymentResponse extends $pb.GeneratedMessage {
|
|||||||
factory UpdatePaymentResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
factory UpdatePaymentResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UpdatePaymentResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UpdatePaymentResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
||||||
..aOM<$31.Payment>(1, _omitFieldNames ? '' : 'payment', subBuilder: $31.Payment.create)
|
..aOM<$34.Payment>(1, _omitFieldNames ? '' : 'payment', subBuilder: $34.Payment.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@ -219,15 +219,15 @@ class UpdatePaymentResponse extends $pb.GeneratedMessage {
|
|||||||
static UpdatePaymentResponse? _defaultInstance;
|
static UpdatePaymentResponse? _defaultInstance;
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$31.Payment get payment => $_getN(0);
|
$34.Payment get payment => $_getN(0);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
set payment($31.Payment v) { setField(1, v); }
|
set payment($34.Payment v) { setField(1, v); }
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$core.bool hasPayment() => $_has(0);
|
$core.bool hasPayment() => $_has(0);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
void clearPayment() => clearField(1);
|
void clearPayment() => clearField(1);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$31.Payment ensurePayment() => $_ensure(0);
|
$34.Payment ensurePayment() => $_ensure(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -14,8 +14,8 @@ import 'dart:core' as $core;
|
|||||||
import 'package:fixnum/fixnum.dart' as $fixnum;
|
import 'package:fixnum/fixnum.dart' as $fixnum;
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
import 'google/protobuf/timestamp.pb.dart' as $28;
|
import 'google/protobuf/timestamp.pb.dart' as $30;
|
||||||
import 'person.pb.dart' as $32;
|
import 'person.pb.dart' as $35;
|
||||||
|
|
||||||
class UpdatePersonRequest extends $pb.GeneratedMessage {
|
class UpdatePersonRequest extends $pb.GeneratedMessage {
|
||||||
factory UpdatePersonRequest({
|
factory UpdatePersonRequest({
|
||||||
@ -26,7 +26,8 @@ class UpdatePersonRequest extends $pb.GeneratedMessage {
|
|||||||
$core.String? city,
|
$core.String? city,
|
||||||
$core.String? zip,
|
$core.String? zip,
|
||||||
$core.String? country,
|
$core.String? country,
|
||||||
$28.Timestamp? birthday,
|
$core.String? relationship,
|
||||||
|
$30.Timestamp? birthday,
|
||||||
}) {
|
}) {
|
||||||
final $result = create();
|
final $result = create();
|
||||||
if (id != null) {
|
if (id != null) {
|
||||||
@ -50,6 +51,9 @@ class UpdatePersonRequest extends $pb.GeneratedMessage {
|
|||||||
if (country != null) {
|
if (country != null) {
|
||||||
$result.country = country;
|
$result.country = country;
|
||||||
}
|
}
|
||||||
|
if (relationship != null) {
|
||||||
|
$result.relationship = relationship;
|
||||||
|
}
|
||||||
if (birthday != null) {
|
if (birthday != null) {
|
||||||
$result.birthday = birthday;
|
$result.birthday = birthday;
|
||||||
}
|
}
|
||||||
@ -67,7 +71,8 @@ class UpdatePersonRequest extends $pb.GeneratedMessage {
|
|||||||
..aOS(5, _omitFieldNames ? '' : 'city')
|
..aOS(5, _omitFieldNames ? '' : 'city')
|
||||||
..aOS(6, _omitFieldNames ? '' : 'zip')
|
..aOS(6, _omitFieldNames ? '' : 'zip')
|
||||||
..aOS(7, _omitFieldNames ? '' : 'country')
|
..aOS(7, _omitFieldNames ? '' : 'country')
|
||||||
..aOM<$28.Timestamp>(8, _omitFieldNames ? '' : 'birthday', subBuilder: $28.Timestamp.create)
|
..aOS(8, _omitFieldNames ? '' : 'relationship')
|
||||||
|
..aOM<$30.Timestamp>(9, _omitFieldNames ? '' : 'birthday', subBuilder: $30.Timestamp.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@ -156,20 +161,29 @@ class UpdatePersonRequest extends $pb.GeneratedMessage {
|
|||||||
void clearCountry() => clearField(7);
|
void clearCountry() => clearField(7);
|
||||||
|
|
||||||
@$pb.TagNumber(8)
|
@$pb.TagNumber(8)
|
||||||
$28.Timestamp get birthday => $_getN(7);
|
$core.String get relationship => $_getSZ(7);
|
||||||
@$pb.TagNumber(8)
|
@$pb.TagNumber(8)
|
||||||
set birthday($28.Timestamp v) { setField(8, v); }
|
set relationship($core.String v) { $_setString(7, v); }
|
||||||
@$pb.TagNumber(8)
|
@$pb.TagNumber(8)
|
||||||
$core.bool hasBirthday() => $_has(7);
|
$core.bool hasRelationship() => $_has(7);
|
||||||
@$pb.TagNumber(8)
|
@$pb.TagNumber(8)
|
||||||
void clearBirthday() => clearField(8);
|
void clearRelationship() => clearField(8);
|
||||||
@$pb.TagNumber(8)
|
|
||||||
$28.Timestamp ensureBirthday() => $_ensure(7);
|
@$pb.TagNumber(9)
|
||||||
|
$30.Timestamp get birthday => $_getN(8);
|
||||||
|
@$pb.TagNumber(9)
|
||||||
|
set birthday($30.Timestamp v) { setField(9, v); }
|
||||||
|
@$pb.TagNumber(9)
|
||||||
|
$core.bool hasBirthday() => $_has(8);
|
||||||
|
@$pb.TagNumber(9)
|
||||||
|
void clearBirthday() => clearField(9);
|
||||||
|
@$pb.TagNumber(9)
|
||||||
|
$30.Timestamp ensureBirthday() => $_ensure(8);
|
||||||
}
|
}
|
||||||
|
|
||||||
class UpdatePersonResponse extends $pb.GeneratedMessage {
|
class UpdatePersonResponse extends $pb.GeneratedMessage {
|
||||||
factory UpdatePersonResponse({
|
factory UpdatePersonResponse({
|
||||||
$32.Person? person,
|
$35.Person? person,
|
||||||
}) {
|
}) {
|
||||||
final $result = create();
|
final $result = create();
|
||||||
if (person != null) {
|
if (person != null) {
|
||||||
@ -182,7 +196,7 @@ class UpdatePersonResponse extends $pb.GeneratedMessage {
|
|||||||
factory UpdatePersonResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
factory UpdatePersonResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UpdatePersonResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UpdatePersonResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
||||||
..aOM<$32.Person>(1, _omitFieldNames ? '' : 'person', subBuilder: $32.Person.create)
|
..aOM<$35.Person>(1, _omitFieldNames ? '' : 'person', subBuilder: $35.Person.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@ -208,15 +222,15 @@ class UpdatePersonResponse extends $pb.GeneratedMessage {
|
|||||||
static UpdatePersonResponse? _defaultInstance;
|
static UpdatePersonResponse? _defaultInstance;
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$32.Person get person => $_getN(0);
|
$35.Person get person => $_getN(0);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
set person($32.Person v) { setField(1, v); }
|
set person($35.Person v) { setField(1, v); }
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$core.bool hasPerson() => $_has(0);
|
$core.bool hasPerson() => $_has(0);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
void clearPerson() => clearField(1);
|
void clearPerson() => clearField(1);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$32.Person ensurePerson() => $_ensure(0);
|
$35.Person ensurePerson() => $_ensure(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -24,7 +24,8 @@ const UpdatePersonRequest$json = {
|
|||||||
{'1': 'city', '3': 5, '4': 1, '5': 9, '9': 3, '10': 'city', '17': true},
|
{'1': 'city', '3': 5, '4': 1, '5': 9, '9': 3, '10': 'city', '17': true},
|
||||||
{'1': 'zip', '3': 6, '4': 1, '5': 9, '9': 4, '10': 'zip', '17': true},
|
{'1': 'zip', '3': 6, '4': 1, '5': 9, '9': 4, '10': 'zip', '17': true},
|
||||||
{'1': 'country', '3': 7, '4': 1, '5': 9, '9': 5, '10': 'country', '17': true},
|
{'1': 'country', '3': 7, '4': 1, '5': 9, '9': 5, '10': 'country', '17': true},
|
||||||
{'1': 'birthday', '3': 8, '4': 1, '5': 11, '6': '.google.protobuf.Timestamp', '8': {}, '9': 6, '10': 'birthday', '17': true},
|
{'1': 'relationship', '3': 8, '4': 1, '5': 9, '9': 6, '10': 'relationship', '17': true},
|
||||||
|
{'1': 'birthday', '3': 9, '4': 1, '5': 11, '6': '.google.protobuf.Timestamp', '8': {}, '9': 7, '10': 'birthday', '17': true},
|
||||||
],
|
],
|
||||||
'7': {},
|
'7': {},
|
||||||
'8': [
|
'8': [
|
||||||
@ -34,6 +35,7 @@ const UpdatePersonRequest$json = {
|
|||||||
{'1': '_city'},
|
{'1': '_city'},
|
||||||
{'1': '_zip'},
|
{'1': '_zip'},
|
||||||
{'1': '_country'},
|
{'1': '_country'},
|
||||||
|
{'1': '_relationship'},
|
||||||
{'1': '_birthday'},
|
{'1': '_birthday'},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
@ -43,15 +45,16 @@ final $typed_data.Uint8List updatePersonRequestDescriptor = $convert.base64Decod
|
|||||||
'ChNVcGRhdGVQZXJzb25SZXF1ZXN0Eg4KAmlkGAEgASgEUgJpZBIhCglmaXJzdG5hbWUYAiABKA'
|
'ChNVcGRhdGVQZXJzb25SZXF1ZXN0Eg4KAmlkGAEgASgEUgJpZBIhCglmaXJzdG5hbWUYAiABKA'
|
||||||
'lIAFIJZmlyc3RuYW1liAEBEh8KCGxhc3RuYW1lGAMgASgJSAFSCGxhc3RuYW1liAEBEhsKBnN0'
|
'lIAFIJZmlyc3RuYW1liAEBEh8KCGxhc3RuYW1lGAMgASgJSAFSCGxhc3RuYW1liAEBEhsKBnN0'
|
||||||
'cmVldBgEIAEoCUgCUgZzdHJlZXSIAQESFwoEY2l0eRgFIAEoCUgDUgRjaXR5iAEBEhUKA3ppcB'
|
'cmVldBgEIAEoCUgCUgZzdHJlZXSIAQESFwoEY2l0eRgFIAEoCUgDUgRjaXR5iAEBEhUKA3ppcB'
|
||||||
'gGIAEoCUgEUgN6aXCIAQESHQoHY291bnRyeRgHIAEoCUgFUgdjb3VudHJ5iAEBElgKCGJpcnRo'
|
'gGIAEoCUgEUgN6aXCIAQESHQoHY291bnRyeRgHIAEoCUgFUgdjb3VudHJ5iAEBEicKDHJlbGF0'
|
||||||
'ZGF5GAggASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcEIbkkEYShYiMTk5MC0xMC0wNV'
|
'aW9uc2hpcBgIIAEoCUgGUgxyZWxhdGlvbnNoaXCIAQESWAoIYmlydGhkYXkYCSABKAsyGi5nb2'
|
||||||
'QwMDowMDowMFoiSAZSCGJpcnRoZGF5iAEBOuUBkkHhAQomKg1VcGRhdGUgUGVyc29uMhBVcGRh'
|
'9nbGUucHJvdG9idWYuVGltZXN0YW1wQhuSQRhKFiIxOTkwLTEwLTA1VDAwOjAwOjAwWiJIB1II'
|
||||||
'dGUgYW4gUGVyc29u0gECaWQytgF7ImlkIjogIjEiLCAiZmlyc3RuYW1lIjogIkpvaG4iLCAibG'
|
'YmlydGhkYXmIAQE65QGSQeEBCiYqDVVwZGF0ZSBQZXJzb24yEFVwZGF0ZSBhbiBQZXJzb27SAQ'
|
||||||
'FzdG5hbWUiOiAiRG9lIiwgInBob25lIjogIiIsICJzdHJlZXQiOiAiRGVhdGggU3RhciAzIiwg'
|
'JpZDK2AXsiaWQiOiAiMSIsICJmaXJzdG5hbWUiOiAiSm9obiIsICJsYXN0bmFtZSI6ICJEb2Ui'
|
||||||
'InppcCI6ICIwODE2IiwgImNpdHkiOiAiTW9udGFuYSIsICJjb3VudHJ5IjogIkNhbmFkYSIsIC'
|
'LCAicGhvbmUiOiAiIiwgInN0cmVldCI6ICJEZWF0aCBTdGFyIDMiLCAiemlwIjogIjA4MTYiLC'
|
||||||
'JiaXJ0aGRheSI6ICIxOTkyLTEwLTA1VDAwOjAwOjAwWiIgfUIMCgpfZmlyc3RuYW1lQgsKCV9s'
|
'AiY2l0eSI6ICJNb250YW5hIiwgImNvdW50cnkiOiAiQ2FuYWRhIiwgImJpcnRoZGF5IjogIjE5'
|
||||||
'YXN0bmFtZUIJCgdfc3RyZWV0QgcKBV9jaXR5QgYKBF96aXBCCgoIX2NvdW50cnlCCwoJX2Jpcn'
|
'OTItMTAtMDVUMDA6MDA6MDBaIiB9QgwKCl9maXJzdG5hbWVCCwoJX2xhc3RuYW1lQgkKB19zdH'
|
||||||
'RoZGF5');
|
'JlZXRCBwoFX2NpdHlCBgoEX3ppcEIKCghfY291bnRyeUIPCg1fcmVsYXRpb25zaGlwQgsKCV9i'
|
||||||
|
'aXJ0aGRheQ==');
|
||||||
|
|
||||||
@$core.Deprecated('Use updatePersonResponseDescriptor instead')
|
@$core.Deprecated('Use updatePersonResponseDescriptor instead')
|
||||||
const UpdatePersonResponse$json = {
|
const UpdatePersonResponse$json = {
|
||||||
|
@ -14,7 +14,7 @@ import 'dart:core' as $core;
|
|||||||
import 'package:fixnum/fixnum.dart' as $fixnum;
|
import 'package:fixnum/fixnum.dart' as $fixnum;
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
import 'document.pb.dart' as $35;
|
import 'document.pb.dart' as $38;
|
||||||
|
|
||||||
class UploadDocumentRequest extends $pb.GeneratedMessage {
|
class UploadDocumentRequest extends $pb.GeneratedMessage {
|
||||||
factory UploadDocumentRequest({
|
factory UploadDocumentRequest({
|
||||||
@ -96,7 +96,7 @@ class UploadDocumentRequest extends $pb.GeneratedMessage {
|
|||||||
|
|
||||||
class UploadDocumentResponse extends $pb.GeneratedMessage {
|
class UploadDocumentResponse extends $pb.GeneratedMessage {
|
||||||
factory UploadDocumentResponse({
|
factory UploadDocumentResponse({
|
||||||
$35.Document? document,
|
$38.Document? document,
|
||||||
}) {
|
}) {
|
||||||
final $result = create();
|
final $result = create();
|
||||||
if (document != null) {
|
if (document != null) {
|
||||||
@ -109,7 +109,7 @@ class UploadDocumentResponse extends $pb.GeneratedMessage {
|
|||||||
factory UploadDocumentResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
factory UploadDocumentResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UploadDocumentResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UploadDocumentResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
||||||
..aOM<$35.Document>(1, _omitFieldNames ? '' : 'document', subBuilder: $35.Document.create)
|
..aOM<$38.Document>(1, _omitFieldNames ? '' : 'document', subBuilder: $38.Document.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@ -135,15 +135,15 @@ class UploadDocumentResponse extends $pb.GeneratedMessage {
|
|||||||
static UploadDocumentResponse? _defaultInstance;
|
static UploadDocumentResponse? _defaultInstance;
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$35.Document get document => $_getN(0);
|
$38.Document get document => $_getN(0);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
set document($35.Document v) { setField(1, v); }
|
set document($38.Document v) { setField(1, v); }
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$core.bool hasDocument() => $_has(0);
|
$core.bool hasDocument() => $_has(0);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
void clearDocument() => clearField(1);
|
void clearDocument() => clearField(1);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$35.Document ensureDocument() => $_ensure(0);
|
$38.Document ensureDocument() => $_ensure(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -15,34 +15,36 @@ import 'dart:core' as $core;
|
|||||||
import 'package:grpc/service_api.dart' as $grpc;
|
import 'package:grpc/service_api.dart' as $grpc;
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
|
import 'rpc_add_email.pb.dart' as $13;
|
||||||
|
import 'rpc_add_emails.pb.dart' as $14;
|
||||||
import 'rpc_block_session.pb.dart' as $3;
|
import 'rpc_block_session.pb.dart' as $3;
|
||||||
import 'rpc_create_account.pb.dart' as $6;
|
import 'rpc_create_account.pb.dart' as $6;
|
||||||
import 'rpc_create_account_info.pb.dart' as $10;
|
import 'rpc_create_account_info.pb.dart' as $10;
|
||||||
import 'rpc_create_payment.pb.dart' as $18;
|
import 'rpc_create_payment.pb.dart' as $20;
|
||||||
import 'rpc_create_person.pb.dart' as $13;
|
import 'rpc_create_person.pb.dart' as $15;
|
||||||
import 'rpc_delete_document.pb.dart' as $25;
|
import 'rpc_delete_document.pb.dart' as $27;
|
||||||
import 'rpc_delete_payment.pb.dart' as $20;
|
import 'rpc_delete_payment.pb.dart' as $22;
|
||||||
import 'rpc_delete_person.pb.dart' as $16;
|
import 'rpc_delete_person.pb.dart' as $18;
|
||||||
import 'rpc_get_account.pb.dart' as $4;
|
import 'rpc_get_account.pb.dart' as $4;
|
||||||
import 'rpc_get_account_info.pb.dart' as $8;
|
import 'rpc_get_account_info.pb.dart' as $8;
|
||||||
import 'rpc_get_payment.pb.dart' as $19;
|
import 'rpc_get_payment.pb.dart' as $21;
|
||||||
import 'rpc_get_person.pb.dart' as $15;
|
import 'rpc_get_person.pb.dart' as $17;
|
||||||
import 'rpc_list_account_info.pb.dart' as $9;
|
import 'rpc_list_account_info.pb.dart' as $9;
|
||||||
import 'rpc_list_accounts.pb.dart' as $5;
|
import 'rpc_list_accounts.pb.dart' as $5;
|
||||||
import 'rpc_list_payments.pb.dart' as $21;
|
import 'rpc_list_payments.pb.dart' as $23;
|
||||||
import 'rpc_list_persons.pb.dart' as $17;
|
import 'rpc_list_persons.pb.dart' as $19;
|
||||||
import 'rpc_list_returns_log_by_person_id.pb.dart' as $23;
|
import 'rpc_list_returns_log_by_person_id.pb.dart' as $25;
|
||||||
import 'rpc_list_sessions.pb.dart' as $2;
|
import 'rpc_list_sessions.pb.dart' as $2;
|
||||||
import 'rpc_login.pb.dart' as $0;
|
import 'rpc_login.pb.dart' as $0;
|
||||||
import 'rpc_refresh_token.pb.dart' as $1;
|
import 'rpc_refresh_token.pb.dart' as $1;
|
||||||
import 'rpc_resend_verification.pb.dart' as $26;
|
import 'rpc_resend_verification.pb.dart' as $28;
|
||||||
import 'rpc_update_account.pb.dart' as $7;
|
import 'rpc_update_account.pb.dart' as $7;
|
||||||
import 'rpc_update_account_info.pb.dart' as $11;
|
import 'rpc_update_account_info.pb.dart' as $11;
|
||||||
import 'rpc_update_account_privacy.pb.dart' as $12;
|
import 'rpc_update_account_privacy.pb.dart' as $12;
|
||||||
import 'rpc_update_payment.pb.dart' as $22;
|
import 'rpc_update_payment.pb.dart' as $24;
|
||||||
import 'rpc_update_person.pb.dart' as $14;
|
import 'rpc_update_person.pb.dart' as $16;
|
||||||
import 'rpc_upload_document.pb.dart' as $24;
|
import 'rpc_upload_document.pb.dart' as $26;
|
||||||
import 'rpc_verify_email.pb.dart' as $27;
|
import 'rpc_verify_email.pb.dart' as $29;
|
||||||
|
|
||||||
export 'service_df.pb.dart';
|
export 'service_df.pb.dart';
|
||||||
|
|
||||||
@ -100,66 +102,74 @@ class dfClient extends $grpc.Client {
|
|||||||
'/pb.df/UpdateAccountPrivacy',
|
'/pb.df/UpdateAccountPrivacy',
|
||||||
($12.UpdateAccountPrivacyRequest value) => value.writeToBuffer(),
|
($12.UpdateAccountPrivacyRequest value) => value.writeToBuffer(),
|
||||||
($core.List<$core.int> value) => $12.UpdateAccountPrivacyResponse.fromBuffer(value));
|
($core.List<$core.int> value) => $12.UpdateAccountPrivacyResponse.fromBuffer(value));
|
||||||
static final _$createPerson = $grpc.ClientMethod<$13.CreatePersonRequest, $13.CreatePersonResponse>(
|
static final _$addEmailAddress = $grpc.ClientMethod<$13.AddEmailAddressRequest, $13.AddEmailAddressResponse>(
|
||||||
|
'/pb.df/AddEmailAddress',
|
||||||
|
($13.AddEmailAddressRequest value) => value.writeToBuffer(),
|
||||||
|
($core.List<$core.int> value) => $13.AddEmailAddressResponse.fromBuffer(value));
|
||||||
|
static final _$addEmailAddresses = $grpc.ClientMethod<$14.AddEmailAddressesRequest, $14.AddEmailAddressesResponse>(
|
||||||
|
'/pb.df/AddEmailAddresses',
|
||||||
|
($14.AddEmailAddressesRequest value) => value.writeToBuffer(),
|
||||||
|
($core.List<$core.int> value) => $14.AddEmailAddressesResponse.fromBuffer(value));
|
||||||
|
static final _$createPerson = $grpc.ClientMethod<$15.CreatePersonRequest, $15.CreatePersonResponse>(
|
||||||
'/pb.df/CreatePerson',
|
'/pb.df/CreatePerson',
|
||||||
($13.CreatePersonRequest value) => value.writeToBuffer(),
|
($15.CreatePersonRequest value) => value.writeToBuffer(),
|
||||||
($core.List<$core.int> value) => $13.CreatePersonResponse.fromBuffer(value));
|
($core.List<$core.int> value) => $15.CreatePersonResponse.fromBuffer(value));
|
||||||
static final _$updatePerson = $grpc.ClientMethod<$14.UpdatePersonRequest, $14.UpdatePersonResponse>(
|
static final _$updatePerson = $grpc.ClientMethod<$16.UpdatePersonRequest, $16.UpdatePersonResponse>(
|
||||||
'/pb.df/UpdatePerson',
|
'/pb.df/UpdatePerson',
|
||||||
($14.UpdatePersonRequest value) => value.writeToBuffer(),
|
($16.UpdatePersonRequest value) => value.writeToBuffer(),
|
||||||
($core.List<$core.int> value) => $14.UpdatePersonResponse.fromBuffer(value));
|
($core.List<$core.int> value) => $16.UpdatePersonResponse.fromBuffer(value));
|
||||||
static final _$getPerson = $grpc.ClientMethod<$15.GetPersonRequest, $15.GetPersonResponse>(
|
static final _$getPerson = $grpc.ClientMethod<$17.GetPersonRequest, $17.GetPersonResponse>(
|
||||||
'/pb.df/GetPerson',
|
'/pb.df/GetPerson',
|
||||||
($15.GetPersonRequest value) => value.writeToBuffer(),
|
($17.GetPersonRequest value) => value.writeToBuffer(),
|
||||||
($core.List<$core.int> value) => $15.GetPersonResponse.fromBuffer(value));
|
($core.List<$core.int> value) => $17.GetPersonResponse.fromBuffer(value));
|
||||||
static final _$deletePerson = $grpc.ClientMethod<$16.DeletePersonRequest, $16.DeletePersonResponse>(
|
static final _$deletePerson = $grpc.ClientMethod<$18.DeletePersonRequest, $18.DeletePersonResponse>(
|
||||||
'/pb.df/DeletePerson',
|
'/pb.df/DeletePerson',
|
||||||
($16.DeletePersonRequest value) => value.writeToBuffer(),
|
($18.DeletePersonRequest value) => value.writeToBuffer(),
|
||||||
($core.List<$core.int> value) => $16.DeletePersonResponse.fromBuffer(value));
|
($core.List<$core.int> value) => $18.DeletePersonResponse.fromBuffer(value));
|
||||||
static final _$listPersons = $grpc.ClientMethod<$17.ListPersonsRequest, $17.ListPersonsResponse>(
|
static final _$listPersons = $grpc.ClientMethod<$19.ListPersonsRequest, $19.ListPersonsResponse>(
|
||||||
'/pb.df/ListPersons',
|
'/pb.df/ListPersons',
|
||||||
($17.ListPersonsRequest value) => value.writeToBuffer(),
|
($19.ListPersonsRequest value) => value.writeToBuffer(),
|
||||||
($core.List<$core.int> value) => $17.ListPersonsResponse.fromBuffer(value));
|
($core.List<$core.int> value) => $19.ListPersonsResponse.fromBuffer(value));
|
||||||
static final _$createPayment = $grpc.ClientMethod<$18.CreatePaymentRequest, $18.CreatePaymentResponse>(
|
static final _$createPayment = $grpc.ClientMethod<$20.CreatePaymentRequest, $20.CreatePaymentResponse>(
|
||||||
'/pb.df/CreatePayment',
|
'/pb.df/CreatePayment',
|
||||||
($18.CreatePaymentRequest value) => value.writeToBuffer(),
|
($20.CreatePaymentRequest value) => value.writeToBuffer(),
|
||||||
($core.List<$core.int> value) => $18.CreatePaymentResponse.fromBuffer(value));
|
($core.List<$core.int> value) => $20.CreatePaymentResponse.fromBuffer(value));
|
||||||
static final _$getPayment = $grpc.ClientMethod<$19.GetPaymentRequest, $19.GetPaymentResponse>(
|
static final _$getPayment = $grpc.ClientMethod<$21.GetPaymentRequest, $21.GetPaymentResponse>(
|
||||||
'/pb.df/GetPayment',
|
'/pb.df/GetPayment',
|
||||||
($19.GetPaymentRequest value) => value.writeToBuffer(),
|
($21.GetPaymentRequest value) => value.writeToBuffer(),
|
||||||
($core.List<$core.int> value) => $19.GetPaymentResponse.fromBuffer(value));
|
($core.List<$core.int> value) => $21.GetPaymentResponse.fromBuffer(value));
|
||||||
static final _$deletePayment = $grpc.ClientMethod<$20.DeletePaymentRequest, $20.DeletePaymentResponse>(
|
static final _$deletePayment = $grpc.ClientMethod<$22.DeletePaymentRequest, $22.DeletePaymentResponse>(
|
||||||
'/pb.df/DeletePayment',
|
'/pb.df/DeletePayment',
|
||||||
($20.DeletePaymentRequest value) => value.writeToBuffer(),
|
($22.DeletePaymentRequest value) => value.writeToBuffer(),
|
||||||
($core.List<$core.int> value) => $20.DeletePaymentResponse.fromBuffer(value));
|
($core.List<$core.int> value) => $22.DeletePaymentResponse.fromBuffer(value));
|
||||||
static final _$listPayments = $grpc.ClientMethod<$21.ListPaymentsRequest, $21.ListPaymentsResponse>(
|
static final _$listPayments = $grpc.ClientMethod<$23.ListPaymentsRequest, $23.ListPaymentsResponse>(
|
||||||
'/pb.df/ListPayments',
|
'/pb.df/ListPayments',
|
||||||
($21.ListPaymentsRequest value) => value.writeToBuffer(),
|
($23.ListPaymentsRequest value) => value.writeToBuffer(),
|
||||||
($core.List<$core.int> value) => $21.ListPaymentsResponse.fromBuffer(value));
|
($core.List<$core.int> value) => $23.ListPaymentsResponse.fromBuffer(value));
|
||||||
static final _$updatePayment = $grpc.ClientMethod<$22.UpdatePaymentRequest, $22.UpdatePaymentResponse>(
|
static final _$updatePayment = $grpc.ClientMethod<$24.UpdatePaymentRequest, $24.UpdatePaymentResponse>(
|
||||||
'/pb.df/UpdatePayment',
|
'/pb.df/UpdatePayment',
|
||||||
($22.UpdatePaymentRequest value) => value.writeToBuffer(),
|
($24.UpdatePaymentRequest value) => value.writeToBuffer(),
|
||||||
($core.List<$core.int> value) => $22.UpdatePaymentResponse.fromBuffer(value));
|
($core.List<$core.int> value) => $24.UpdatePaymentResponse.fromBuffer(value));
|
||||||
static final _$listReturnsLog = $grpc.ClientMethod<$23.ListReturnsLogRequest, $23.ListReturnsLogResponse>(
|
static final _$listReturnsLog = $grpc.ClientMethod<$25.ListReturnsLogRequest, $25.ListReturnsLogResponse>(
|
||||||
'/pb.df/ListReturnsLog',
|
'/pb.df/ListReturnsLog',
|
||||||
($23.ListReturnsLogRequest value) => value.writeToBuffer(),
|
($25.ListReturnsLogRequest value) => value.writeToBuffer(),
|
||||||
($core.List<$core.int> value) => $23.ListReturnsLogResponse.fromBuffer(value));
|
($core.List<$core.int> value) => $25.ListReturnsLogResponse.fromBuffer(value));
|
||||||
static final _$uploadDocument = $grpc.ClientMethod<$24.UploadDocumentRequest, $24.UploadDocumentResponse>(
|
static final _$uploadDocument = $grpc.ClientMethod<$26.UploadDocumentRequest, $26.UploadDocumentResponse>(
|
||||||
'/pb.df/UploadDocument',
|
'/pb.df/UploadDocument',
|
||||||
($24.UploadDocumentRequest value) => value.writeToBuffer(),
|
($26.UploadDocumentRequest value) => value.writeToBuffer(),
|
||||||
($core.List<$core.int> value) => $24.UploadDocumentResponse.fromBuffer(value));
|
($core.List<$core.int> value) => $26.UploadDocumentResponse.fromBuffer(value));
|
||||||
static final _$deleteDocument = $grpc.ClientMethod<$25.DeleteDocumentRequest, $25.DeleteDocumentResponse>(
|
static final _$deleteDocument = $grpc.ClientMethod<$27.DeleteDocumentRequest, $27.DeleteDocumentResponse>(
|
||||||
'/pb.df/DeleteDocument',
|
'/pb.df/DeleteDocument',
|
||||||
($25.DeleteDocumentRequest value) => value.writeToBuffer(),
|
($27.DeleteDocumentRequest value) => value.writeToBuffer(),
|
||||||
($core.List<$core.int> value) => $25.DeleteDocumentResponse.fromBuffer(value));
|
($core.List<$core.int> value) => $27.DeleteDocumentResponse.fromBuffer(value));
|
||||||
static final _$resendVerification = $grpc.ClientMethod<$26.ResendVerificationRequest, $26.ResendVerificationResponse>(
|
static final _$resendVerification = $grpc.ClientMethod<$28.ResendVerificationRequest, $28.ResendVerificationResponse>(
|
||||||
'/pb.df/ResendVerification',
|
'/pb.df/ResendVerification',
|
||||||
($26.ResendVerificationRequest value) => value.writeToBuffer(),
|
($28.ResendVerificationRequest value) => value.writeToBuffer(),
|
||||||
($core.List<$core.int> value) => $26.ResendVerificationResponse.fromBuffer(value));
|
($core.List<$core.int> value) => $28.ResendVerificationResponse.fromBuffer(value));
|
||||||
static final _$verifyEmail = $grpc.ClientMethod<$27.VerifyEmailRequest, $27.VerifyEmailResponse>(
|
static final _$verifyEmail = $grpc.ClientMethod<$29.VerifyEmailRequest, $29.VerifyEmailResponse>(
|
||||||
'/pb.df/VerifyEmail',
|
'/pb.df/VerifyEmail',
|
||||||
($27.VerifyEmailRequest value) => value.writeToBuffer(),
|
($29.VerifyEmailRequest value) => value.writeToBuffer(),
|
||||||
($core.List<$core.int> value) => $27.VerifyEmailResponse.fromBuffer(value));
|
($core.List<$core.int> value) => $29.VerifyEmailResponse.fromBuffer(value));
|
||||||
|
|
||||||
dfClient($grpc.ClientChannel channel,
|
dfClient($grpc.ClientChannel channel,
|
||||||
{$grpc.CallOptions? options,
|
{$grpc.CallOptions? options,
|
||||||
@ -219,63 +229,71 @@ class dfClient extends $grpc.Client {
|
|||||||
return $createUnaryCall(_$updateAccountPrivacy, request, options: options);
|
return $createUnaryCall(_$updateAccountPrivacy, request, options: options);
|
||||||
}
|
}
|
||||||
|
|
||||||
$grpc.ResponseFuture<$13.CreatePersonResponse> createPerson($13.CreatePersonRequest request, {$grpc.CallOptions? options}) {
|
$grpc.ResponseFuture<$13.AddEmailAddressResponse> addEmailAddress($13.AddEmailAddressRequest request, {$grpc.CallOptions? options}) {
|
||||||
|
return $createUnaryCall(_$addEmailAddress, request, options: options);
|
||||||
|
}
|
||||||
|
|
||||||
|
$grpc.ResponseFuture<$14.AddEmailAddressesResponse> addEmailAddresses($14.AddEmailAddressesRequest request, {$grpc.CallOptions? options}) {
|
||||||
|
return $createUnaryCall(_$addEmailAddresses, request, options: options);
|
||||||
|
}
|
||||||
|
|
||||||
|
$grpc.ResponseFuture<$15.CreatePersonResponse> createPerson($15.CreatePersonRequest request, {$grpc.CallOptions? options}) {
|
||||||
return $createUnaryCall(_$createPerson, request, options: options);
|
return $createUnaryCall(_$createPerson, request, options: options);
|
||||||
}
|
}
|
||||||
|
|
||||||
$grpc.ResponseFuture<$14.UpdatePersonResponse> updatePerson($14.UpdatePersonRequest request, {$grpc.CallOptions? options}) {
|
$grpc.ResponseFuture<$16.UpdatePersonResponse> updatePerson($16.UpdatePersonRequest request, {$grpc.CallOptions? options}) {
|
||||||
return $createUnaryCall(_$updatePerson, request, options: options);
|
return $createUnaryCall(_$updatePerson, request, options: options);
|
||||||
}
|
}
|
||||||
|
|
||||||
$grpc.ResponseFuture<$15.GetPersonResponse> getPerson($15.GetPersonRequest request, {$grpc.CallOptions? options}) {
|
$grpc.ResponseFuture<$17.GetPersonResponse> getPerson($17.GetPersonRequest request, {$grpc.CallOptions? options}) {
|
||||||
return $createUnaryCall(_$getPerson, request, options: options);
|
return $createUnaryCall(_$getPerson, request, options: options);
|
||||||
}
|
}
|
||||||
|
|
||||||
$grpc.ResponseFuture<$16.DeletePersonResponse> deletePerson($16.DeletePersonRequest request, {$grpc.CallOptions? options}) {
|
$grpc.ResponseFuture<$18.DeletePersonResponse> deletePerson($18.DeletePersonRequest request, {$grpc.CallOptions? options}) {
|
||||||
return $createUnaryCall(_$deletePerson, request, options: options);
|
return $createUnaryCall(_$deletePerson, request, options: options);
|
||||||
}
|
}
|
||||||
|
|
||||||
$grpc.ResponseFuture<$17.ListPersonsResponse> listPersons($17.ListPersonsRequest request, {$grpc.CallOptions? options}) {
|
$grpc.ResponseFuture<$19.ListPersonsResponse> listPersons($19.ListPersonsRequest request, {$grpc.CallOptions? options}) {
|
||||||
return $createUnaryCall(_$listPersons, request, options: options);
|
return $createUnaryCall(_$listPersons, request, options: options);
|
||||||
}
|
}
|
||||||
|
|
||||||
$grpc.ResponseFuture<$18.CreatePaymentResponse> createPayment($18.CreatePaymentRequest request, {$grpc.CallOptions? options}) {
|
$grpc.ResponseFuture<$20.CreatePaymentResponse> createPayment($20.CreatePaymentRequest request, {$grpc.CallOptions? options}) {
|
||||||
return $createUnaryCall(_$createPayment, request, options: options);
|
return $createUnaryCall(_$createPayment, request, options: options);
|
||||||
}
|
}
|
||||||
|
|
||||||
$grpc.ResponseFuture<$19.GetPaymentResponse> getPayment($19.GetPaymentRequest request, {$grpc.CallOptions? options}) {
|
$grpc.ResponseFuture<$21.GetPaymentResponse> getPayment($21.GetPaymentRequest request, {$grpc.CallOptions? options}) {
|
||||||
return $createUnaryCall(_$getPayment, request, options: options);
|
return $createUnaryCall(_$getPayment, request, options: options);
|
||||||
}
|
}
|
||||||
|
|
||||||
$grpc.ResponseFuture<$20.DeletePaymentResponse> deletePayment($20.DeletePaymentRequest request, {$grpc.CallOptions? options}) {
|
$grpc.ResponseFuture<$22.DeletePaymentResponse> deletePayment($22.DeletePaymentRequest request, {$grpc.CallOptions? options}) {
|
||||||
return $createUnaryCall(_$deletePayment, request, options: options);
|
return $createUnaryCall(_$deletePayment, request, options: options);
|
||||||
}
|
}
|
||||||
|
|
||||||
$grpc.ResponseFuture<$21.ListPaymentsResponse> listPayments($21.ListPaymentsRequest request, {$grpc.CallOptions? options}) {
|
$grpc.ResponseFuture<$23.ListPaymentsResponse> listPayments($23.ListPaymentsRequest request, {$grpc.CallOptions? options}) {
|
||||||
return $createUnaryCall(_$listPayments, request, options: options);
|
return $createUnaryCall(_$listPayments, request, options: options);
|
||||||
}
|
}
|
||||||
|
|
||||||
$grpc.ResponseFuture<$22.UpdatePaymentResponse> updatePayment($22.UpdatePaymentRequest request, {$grpc.CallOptions? options}) {
|
$grpc.ResponseFuture<$24.UpdatePaymentResponse> updatePayment($24.UpdatePaymentRequest request, {$grpc.CallOptions? options}) {
|
||||||
return $createUnaryCall(_$updatePayment, request, options: options);
|
return $createUnaryCall(_$updatePayment, request, options: options);
|
||||||
}
|
}
|
||||||
|
|
||||||
$grpc.ResponseFuture<$23.ListReturnsLogResponse> listReturnsLog($23.ListReturnsLogRequest request, {$grpc.CallOptions? options}) {
|
$grpc.ResponseFuture<$25.ListReturnsLogResponse> listReturnsLog($25.ListReturnsLogRequest request, {$grpc.CallOptions? options}) {
|
||||||
return $createUnaryCall(_$listReturnsLog, request, options: options);
|
return $createUnaryCall(_$listReturnsLog, request, options: options);
|
||||||
}
|
}
|
||||||
|
|
||||||
$grpc.ResponseFuture<$24.UploadDocumentResponse> uploadDocument($24.UploadDocumentRequest request, {$grpc.CallOptions? options}) {
|
$grpc.ResponseFuture<$26.UploadDocumentResponse> uploadDocument($26.UploadDocumentRequest request, {$grpc.CallOptions? options}) {
|
||||||
return $createUnaryCall(_$uploadDocument, request, options: options);
|
return $createUnaryCall(_$uploadDocument, request, options: options);
|
||||||
}
|
}
|
||||||
|
|
||||||
$grpc.ResponseFuture<$25.DeleteDocumentResponse> deleteDocument($25.DeleteDocumentRequest request, {$grpc.CallOptions? options}) {
|
$grpc.ResponseFuture<$27.DeleteDocumentResponse> deleteDocument($27.DeleteDocumentRequest request, {$grpc.CallOptions? options}) {
|
||||||
return $createUnaryCall(_$deleteDocument, request, options: options);
|
return $createUnaryCall(_$deleteDocument, request, options: options);
|
||||||
}
|
}
|
||||||
|
|
||||||
$grpc.ResponseFuture<$26.ResendVerificationResponse> resendVerification($26.ResendVerificationRequest request, {$grpc.CallOptions? options}) {
|
$grpc.ResponseFuture<$28.ResendVerificationResponse> resendVerification($28.ResendVerificationRequest request, {$grpc.CallOptions? options}) {
|
||||||
return $createUnaryCall(_$resendVerification, request, options: options);
|
return $createUnaryCall(_$resendVerification, request, options: options);
|
||||||
}
|
}
|
||||||
|
|
||||||
$grpc.ResponseFuture<$27.VerifyEmailResponse> verifyEmail($27.VerifyEmailRequest request, {$grpc.CallOptions? options}) {
|
$grpc.ResponseFuture<$29.VerifyEmailResponse> verifyEmail($29.VerifyEmailRequest request, {$grpc.CallOptions? options}) {
|
||||||
return $createUnaryCall(_$verifyEmail, request, options: options);
|
return $createUnaryCall(_$verifyEmail, request, options: options);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -376,111 +394,125 @@ abstract class dfServiceBase extends $grpc.Service {
|
|||||||
false,
|
false,
|
||||||
($core.List<$core.int> value) => $12.UpdateAccountPrivacyRequest.fromBuffer(value),
|
($core.List<$core.int> value) => $12.UpdateAccountPrivacyRequest.fromBuffer(value),
|
||||||
($12.UpdateAccountPrivacyResponse value) => value.writeToBuffer()));
|
($12.UpdateAccountPrivacyResponse value) => value.writeToBuffer()));
|
||||||
$addMethod($grpc.ServiceMethod<$13.CreatePersonRequest, $13.CreatePersonResponse>(
|
$addMethod($grpc.ServiceMethod<$13.AddEmailAddressRequest, $13.AddEmailAddressResponse>(
|
||||||
|
'AddEmailAddress',
|
||||||
|
addEmailAddress_Pre,
|
||||||
|
false,
|
||||||
|
false,
|
||||||
|
($core.List<$core.int> value) => $13.AddEmailAddressRequest.fromBuffer(value),
|
||||||
|
($13.AddEmailAddressResponse value) => value.writeToBuffer()));
|
||||||
|
$addMethod($grpc.ServiceMethod<$14.AddEmailAddressesRequest, $14.AddEmailAddressesResponse>(
|
||||||
|
'AddEmailAddresses',
|
||||||
|
addEmailAddresses_Pre,
|
||||||
|
false,
|
||||||
|
false,
|
||||||
|
($core.List<$core.int> value) => $14.AddEmailAddressesRequest.fromBuffer(value),
|
||||||
|
($14.AddEmailAddressesResponse value) => value.writeToBuffer()));
|
||||||
|
$addMethod($grpc.ServiceMethod<$15.CreatePersonRequest, $15.CreatePersonResponse>(
|
||||||
'CreatePerson',
|
'CreatePerson',
|
||||||
createPerson_Pre,
|
createPerson_Pre,
|
||||||
false,
|
false,
|
||||||
false,
|
false,
|
||||||
($core.List<$core.int> value) => $13.CreatePersonRequest.fromBuffer(value),
|
($core.List<$core.int> value) => $15.CreatePersonRequest.fromBuffer(value),
|
||||||
($13.CreatePersonResponse value) => value.writeToBuffer()));
|
($15.CreatePersonResponse value) => value.writeToBuffer()));
|
||||||
$addMethod($grpc.ServiceMethod<$14.UpdatePersonRequest, $14.UpdatePersonResponse>(
|
$addMethod($grpc.ServiceMethod<$16.UpdatePersonRequest, $16.UpdatePersonResponse>(
|
||||||
'UpdatePerson',
|
'UpdatePerson',
|
||||||
updatePerson_Pre,
|
updatePerson_Pre,
|
||||||
false,
|
false,
|
||||||
false,
|
false,
|
||||||
($core.List<$core.int> value) => $14.UpdatePersonRequest.fromBuffer(value),
|
($core.List<$core.int> value) => $16.UpdatePersonRequest.fromBuffer(value),
|
||||||
($14.UpdatePersonResponse value) => value.writeToBuffer()));
|
($16.UpdatePersonResponse value) => value.writeToBuffer()));
|
||||||
$addMethod($grpc.ServiceMethod<$15.GetPersonRequest, $15.GetPersonResponse>(
|
$addMethod($grpc.ServiceMethod<$17.GetPersonRequest, $17.GetPersonResponse>(
|
||||||
'GetPerson',
|
'GetPerson',
|
||||||
getPerson_Pre,
|
getPerson_Pre,
|
||||||
false,
|
false,
|
||||||
false,
|
false,
|
||||||
($core.List<$core.int> value) => $15.GetPersonRequest.fromBuffer(value),
|
($core.List<$core.int> value) => $17.GetPersonRequest.fromBuffer(value),
|
||||||
($15.GetPersonResponse value) => value.writeToBuffer()));
|
($17.GetPersonResponse value) => value.writeToBuffer()));
|
||||||
$addMethod($grpc.ServiceMethod<$16.DeletePersonRequest, $16.DeletePersonResponse>(
|
$addMethod($grpc.ServiceMethod<$18.DeletePersonRequest, $18.DeletePersonResponse>(
|
||||||
'DeletePerson',
|
'DeletePerson',
|
||||||
deletePerson_Pre,
|
deletePerson_Pre,
|
||||||
false,
|
false,
|
||||||
false,
|
false,
|
||||||
($core.List<$core.int> value) => $16.DeletePersonRequest.fromBuffer(value),
|
($core.List<$core.int> value) => $18.DeletePersonRequest.fromBuffer(value),
|
||||||
($16.DeletePersonResponse value) => value.writeToBuffer()));
|
($18.DeletePersonResponse value) => value.writeToBuffer()));
|
||||||
$addMethod($grpc.ServiceMethod<$17.ListPersonsRequest, $17.ListPersonsResponse>(
|
$addMethod($grpc.ServiceMethod<$19.ListPersonsRequest, $19.ListPersonsResponse>(
|
||||||
'ListPersons',
|
'ListPersons',
|
||||||
listPersons_Pre,
|
listPersons_Pre,
|
||||||
false,
|
false,
|
||||||
false,
|
false,
|
||||||
($core.List<$core.int> value) => $17.ListPersonsRequest.fromBuffer(value),
|
($core.List<$core.int> value) => $19.ListPersonsRequest.fromBuffer(value),
|
||||||
($17.ListPersonsResponse value) => value.writeToBuffer()));
|
($19.ListPersonsResponse value) => value.writeToBuffer()));
|
||||||
$addMethod($grpc.ServiceMethod<$18.CreatePaymentRequest, $18.CreatePaymentResponse>(
|
$addMethod($grpc.ServiceMethod<$20.CreatePaymentRequest, $20.CreatePaymentResponse>(
|
||||||
'CreatePayment',
|
'CreatePayment',
|
||||||
createPayment_Pre,
|
createPayment_Pre,
|
||||||
false,
|
false,
|
||||||
false,
|
false,
|
||||||
($core.List<$core.int> value) => $18.CreatePaymentRequest.fromBuffer(value),
|
($core.List<$core.int> value) => $20.CreatePaymentRequest.fromBuffer(value),
|
||||||
($18.CreatePaymentResponse value) => value.writeToBuffer()));
|
($20.CreatePaymentResponse value) => value.writeToBuffer()));
|
||||||
$addMethod($grpc.ServiceMethod<$19.GetPaymentRequest, $19.GetPaymentResponse>(
|
$addMethod($grpc.ServiceMethod<$21.GetPaymentRequest, $21.GetPaymentResponse>(
|
||||||
'GetPayment',
|
'GetPayment',
|
||||||
getPayment_Pre,
|
getPayment_Pre,
|
||||||
false,
|
false,
|
||||||
false,
|
false,
|
||||||
($core.List<$core.int> value) => $19.GetPaymentRequest.fromBuffer(value),
|
($core.List<$core.int> value) => $21.GetPaymentRequest.fromBuffer(value),
|
||||||
($19.GetPaymentResponse value) => value.writeToBuffer()));
|
($21.GetPaymentResponse value) => value.writeToBuffer()));
|
||||||
$addMethod($grpc.ServiceMethod<$20.DeletePaymentRequest, $20.DeletePaymentResponse>(
|
$addMethod($grpc.ServiceMethod<$22.DeletePaymentRequest, $22.DeletePaymentResponse>(
|
||||||
'DeletePayment',
|
'DeletePayment',
|
||||||
deletePayment_Pre,
|
deletePayment_Pre,
|
||||||
false,
|
false,
|
||||||
false,
|
false,
|
||||||
($core.List<$core.int> value) => $20.DeletePaymentRequest.fromBuffer(value),
|
($core.List<$core.int> value) => $22.DeletePaymentRequest.fromBuffer(value),
|
||||||
($20.DeletePaymentResponse value) => value.writeToBuffer()));
|
($22.DeletePaymentResponse value) => value.writeToBuffer()));
|
||||||
$addMethod($grpc.ServiceMethod<$21.ListPaymentsRequest, $21.ListPaymentsResponse>(
|
$addMethod($grpc.ServiceMethod<$23.ListPaymentsRequest, $23.ListPaymentsResponse>(
|
||||||
'ListPayments',
|
'ListPayments',
|
||||||
listPayments_Pre,
|
listPayments_Pre,
|
||||||
false,
|
false,
|
||||||
false,
|
false,
|
||||||
($core.List<$core.int> value) => $21.ListPaymentsRequest.fromBuffer(value),
|
($core.List<$core.int> value) => $23.ListPaymentsRequest.fromBuffer(value),
|
||||||
($21.ListPaymentsResponse value) => value.writeToBuffer()));
|
($23.ListPaymentsResponse value) => value.writeToBuffer()));
|
||||||
$addMethod($grpc.ServiceMethod<$22.UpdatePaymentRequest, $22.UpdatePaymentResponse>(
|
$addMethod($grpc.ServiceMethod<$24.UpdatePaymentRequest, $24.UpdatePaymentResponse>(
|
||||||
'UpdatePayment',
|
'UpdatePayment',
|
||||||
updatePayment_Pre,
|
updatePayment_Pre,
|
||||||
false,
|
false,
|
||||||
false,
|
false,
|
||||||
($core.List<$core.int> value) => $22.UpdatePaymentRequest.fromBuffer(value),
|
($core.List<$core.int> value) => $24.UpdatePaymentRequest.fromBuffer(value),
|
||||||
($22.UpdatePaymentResponse value) => value.writeToBuffer()));
|
($24.UpdatePaymentResponse value) => value.writeToBuffer()));
|
||||||
$addMethod($grpc.ServiceMethod<$23.ListReturnsLogRequest, $23.ListReturnsLogResponse>(
|
$addMethod($grpc.ServiceMethod<$25.ListReturnsLogRequest, $25.ListReturnsLogResponse>(
|
||||||
'ListReturnsLog',
|
'ListReturnsLog',
|
||||||
listReturnsLog_Pre,
|
listReturnsLog_Pre,
|
||||||
false,
|
false,
|
||||||
false,
|
false,
|
||||||
($core.List<$core.int> value) => $23.ListReturnsLogRequest.fromBuffer(value),
|
($core.List<$core.int> value) => $25.ListReturnsLogRequest.fromBuffer(value),
|
||||||
($23.ListReturnsLogResponse value) => value.writeToBuffer()));
|
($25.ListReturnsLogResponse value) => value.writeToBuffer()));
|
||||||
$addMethod($grpc.ServiceMethod<$24.UploadDocumentRequest, $24.UploadDocumentResponse>(
|
$addMethod($grpc.ServiceMethod<$26.UploadDocumentRequest, $26.UploadDocumentResponse>(
|
||||||
'UploadDocument',
|
'UploadDocument',
|
||||||
uploadDocument_Pre,
|
uploadDocument_Pre,
|
||||||
false,
|
false,
|
||||||
false,
|
false,
|
||||||
($core.List<$core.int> value) => $24.UploadDocumentRequest.fromBuffer(value),
|
($core.List<$core.int> value) => $26.UploadDocumentRequest.fromBuffer(value),
|
||||||
($24.UploadDocumentResponse value) => value.writeToBuffer()));
|
($26.UploadDocumentResponse value) => value.writeToBuffer()));
|
||||||
$addMethod($grpc.ServiceMethod<$25.DeleteDocumentRequest, $25.DeleteDocumentResponse>(
|
$addMethod($grpc.ServiceMethod<$27.DeleteDocumentRequest, $27.DeleteDocumentResponse>(
|
||||||
'DeleteDocument',
|
'DeleteDocument',
|
||||||
deleteDocument_Pre,
|
deleteDocument_Pre,
|
||||||
false,
|
false,
|
||||||
false,
|
false,
|
||||||
($core.List<$core.int> value) => $25.DeleteDocumentRequest.fromBuffer(value),
|
($core.List<$core.int> value) => $27.DeleteDocumentRequest.fromBuffer(value),
|
||||||
($25.DeleteDocumentResponse value) => value.writeToBuffer()));
|
($27.DeleteDocumentResponse value) => value.writeToBuffer()));
|
||||||
$addMethod($grpc.ServiceMethod<$26.ResendVerificationRequest, $26.ResendVerificationResponse>(
|
$addMethod($grpc.ServiceMethod<$28.ResendVerificationRequest, $28.ResendVerificationResponse>(
|
||||||
'ResendVerification',
|
'ResendVerification',
|
||||||
resendVerification_Pre,
|
resendVerification_Pre,
|
||||||
false,
|
false,
|
||||||
false,
|
false,
|
||||||
($core.List<$core.int> value) => $26.ResendVerificationRequest.fromBuffer(value),
|
($core.List<$core.int> value) => $28.ResendVerificationRequest.fromBuffer(value),
|
||||||
($26.ResendVerificationResponse value) => value.writeToBuffer()));
|
($28.ResendVerificationResponse value) => value.writeToBuffer()));
|
||||||
$addMethod($grpc.ServiceMethod<$27.VerifyEmailRequest, $27.VerifyEmailResponse>(
|
$addMethod($grpc.ServiceMethod<$29.VerifyEmailRequest, $29.VerifyEmailResponse>(
|
||||||
'VerifyEmail',
|
'VerifyEmail',
|
||||||
verifyEmail_Pre,
|
verifyEmail_Pre,
|
||||||
false,
|
false,
|
||||||
false,
|
false,
|
||||||
($core.List<$core.int> value) => $27.VerifyEmailRequest.fromBuffer(value),
|
($core.List<$core.int> value) => $29.VerifyEmailRequest.fromBuffer(value),
|
||||||
($27.VerifyEmailResponse value) => value.writeToBuffer()));
|
($29.VerifyEmailResponse value) => value.writeToBuffer()));
|
||||||
}
|
}
|
||||||
|
|
||||||
$async.Future<$0.LoginResponse> login_Pre($grpc.ServiceCall call, $async.Future<$0.LoginRequest> request) async {
|
$async.Future<$0.LoginResponse> login_Pre($grpc.ServiceCall call, $async.Future<$0.LoginRequest> request) async {
|
||||||
@ -535,63 +567,71 @@ abstract class dfServiceBase extends $grpc.Service {
|
|||||||
return updateAccountPrivacy(call, await request);
|
return updateAccountPrivacy(call, await request);
|
||||||
}
|
}
|
||||||
|
|
||||||
$async.Future<$13.CreatePersonResponse> createPerson_Pre($grpc.ServiceCall call, $async.Future<$13.CreatePersonRequest> request) async {
|
$async.Future<$13.AddEmailAddressResponse> addEmailAddress_Pre($grpc.ServiceCall call, $async.Future<$13.AddEmailAddressRequest> request) async {
|
||||||
|
return addEmailAddress(call, await request);
|
||||||
|
}
|
||||||
|
|
||||||
|
$async.Future<$14.AddEmailAddressesResponse> addEmailAddresses_Pre($grpc.ServiceCall call, $async.Future<$14.AddEmailAddressesRequest> request) async {
|
||||||
|
return addEmailAddresses(call, await request);
|
||||||
|
}
|
||||||
|
|
||||||
|
$async.Future<$15.CreatePersonResponse> createPerson_Pre($grpc.ServiceCall call, $async.Future<$15.CreatePersonRequest> request) async {
|
||||||
return createPerson(call, await request);
|
return createPerson(call, await request);
|
||||||
}
|
}
|
||||||
|
|
||||||
$async.Future<$14.UpdatePersonResponse> updatePerson_Pre($grpc.ServiceCall call, $async.Future<$14.UpdatePersonRequest> request) async {
|
$async.Future<$16.UpdatePersonResponse> updatePerson_Pre($grpc.ServiceCall call, $async.Future<$16.UpdatePersonRequest> request) async {
|
||||||
return updatePerson(call, await request);
|
return updatePerson(call, await request);
|
||||||
}
|
}
|
||||||
|
|
||||||
$async.Future<$15.GetPersonResponse> getPerson_Pre($grpc.ServiceCall call, $async.Future<$15.GetPersonRequest> request) async {
|
$async.Future<$17.GetPersonResponse> getPerson_Pre($grpc.ServiceCall call, $async.Future<$17.GetPersonRequest> request) async {
|
||||||
return getPerson(call, await request);
|
return getPerson(call, await request);
|
||||||
}
|
}
|
||||||
|
|
||||||
$async.Future<$16.DeletePersonResponse> deletePerson_Pre($grpc.ServiceCall call, $async.Future<$16.DeletePersonRequest> request) async {
|
$async.Future<$18.DeletePersonResponse> deletePerson_Pre($grpc.ServiceCall call, $async.Future<$18.DeletePersonRequest> request) async {
|
||||||
return deletePerson(call, await request);
|
return deletePerson(call, await request);
|
||||||
}
|
}
|
||||||
|
|
||||||
$async.Future<$17.ListPersonsResponse> listPersons_Pre($grpc.ServiceCall call, $async.Future<$17.ListPersonsRequest> request) async {
|
$async.Future<$19.ListPersonsResponse> listPersons_Pre($grpc.ServiceCall call, $async.Future<$19.ListPersonsRequest> request) async {
|
||||||
return listPersons(call, await request);
|
return listPersons(call, await request);
|
||||||
}
|
}
|
||||||
|
|
||||||
$async.Future<$18.CreatePaymentResponse> createPayment_Pre($grpc.ServiceCall call, $async.Future<$18.CreatePaymentRequest> request) async {
|
$async.Future<$20.CreatePaymentResponse> createPayment_Pre($grpc.ServiceCall call, $async.Future<$20.CreatePaymentRequest> request) async {
|
||||||
return createPayment(call, await request);
|
return createPayment(call, await request);
|
||||||
}
|
}
|
||||||
|
|
||||||
$async.Future<$19.GetPaymentResponse> getPayment_Pre($grpc.ServiceCall call, $async.Future<$19.GetPaymentRequest> request) async {
|
$async.Future<$21.GetPaymentResponse> getPayment_Pre($grpc.ServiceCall call, $async.Future<$21.GetPaymentRequest> request) async {
|
||||||
return getPayment(call, await request);
|
return getPayment(call, await request);
|
||||||
}
|
}
|
||||||
|
|
||||||
$async.Future<$20.DeletePaymentResponse> deletePayment_Pre($grpc.ServiceCall call, $async.Future<$20.DeletePaymentRequest> request) async {
|
$async.Future<$22.DeletePaymentResponse> deletePayment_Pre($grpc.ServiceCall call, $async.Future<$22.DeletePaymentRequest> request) async {
|
||||||
return deletePayment(call, await request);
|
return deletePayment(call, await request);
|
||||||
}
|
}
|
||||||
|
|
||||||
$async.Future<$21.ListPaymentsResponse> listPayments_Pre($grpc.ServiceCall call, $async.Future<$21.ListPaymentsRequest> request) async {
|
$async.Future<$23.ListPaymentsResponse> listPayments_Pre($grpc.ServiceCall call, $async.Future<$23.ListPaymentsRequest> request) async {
|
||||||
return listPayments(call, await request);
|
return listPayments(call, await request);
|
||||||
}
|
}
|
||||||
|
|
||||||
$async.Future<$22.UpdatePaymentResponse> updatePayment_Pre($grpc.ServiceCall call, $async.Future<$22.UpdatePaymentRequest> request) async {
|
$async.Future<$24.UpdatePaymentResponse> updatePayment_Pre($grpc.ServiceCall call, $async.Future<$24.UpdatePaymentRequest> request) async {
|
||||||
return updatePayment(call, await request);
|
return updatePayment(call, await request);
|
||||||
}
|
}
|
||||||
|
|
||||||
$async.Future<$23.ListReturnsLogResponse> listReturnsLog_Pre($grpc.ServiceCall call, $async.Future<$23.ListReturnsLogRequest> request) async {
|
$async.Future<$25.ListReturnsLogResponse> listReturnsLog_Pre($grpc.ServiceCall call, $async.Future<$25.ListReturnsLogRequest> request) async {
|
||||||
return listReturnsLog(call, await request);
|
return listReturnsLog(call, await request);
|
||||||
}
|
}
|
||||||
|
|
||||||
$async.Future<$24.UploadDocumentResponse> uploadDocument_Pre($grpc.ServiceCall call, $async.Future<$24.UploadDocumentRequest> request) async {
|
$async.Future<$26.UploadDocumentResponse> uploadDocument_Pre($grpc.ServiceCall call, $async.Future<$26.UploadDocumentRequest> request) async {
|
||||||
return uploadDocument(call, await request);
|
return uploadDocument(call, await request);
|
||||||
}
|
}
|
||||||
|
|
||||||
$async.Future<$25.DeleteDocumentResponse> deleteDocument_Pre($grpc.ServiceCall call, $async.Future<$25.DeleteDocumentRequest> request) async {
|
$async.Future<$27.DeleteDocumentResponse> deleteDocument_Pre($grpc.ServiceCall call, $async.Future<$27.DeleteDocumentRequest> request) async {
|
||||||
return deleteDocument(call, await request);
|
return deleteDocument(call, await request);
|
||||||
}
|
}
|
||||||
|
|
||||||
$async.Future<$26.ResendVerificationResponse> resendVerification_Pre($grpc.ServiceCall call, $async.Future<$26.ResendVerificationRequest> request) async {
|
$async.Future<$28.ResendVerificationResponse> resendVerification_Pre($grpc.ServiceCall call, $async.Future<$28.ResendVerificationRequest> request) async {
|
||||||
return resendVerification(call, await request);
|
return resendVerification(call, await request);
|
||||||
}
|
}
|
||||||
|
|
||||||
$async.Future<$27.VerifyEmailResponse> verifyEmail_Pre($grpc.ServiceCall call, $async.Future<$27.VerifyEmailRequest> request) async {
|
$async.Future<$29.VerifyEmailResponse> verifyEmail_Pre($grpc.ServiceCall call, $async.Future<$29.VerifyEmailRequest> request) async {
|
||||||
return verifyEmail(call, await request);
|
return verifyEmail(call, await request);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -608,19 +648,21 @@ abstract class dfServiceBase extends $grpc.Service {
|
|||||||
$async.Future<$10.CreateAccountInfoResponse> createAccountInfo($grpc.ServiceCall call, $10.CreateAccountInfoRequest request);
|
$async.Future<$10.CreateAccountInfoResponse> createAccountInfo($grpc.ServiceCall call, $10.CreateAccountInfoRequest request);
|
||||||
$async.Future<$11.UpdateAccountInfoResponse> updateAccountInfo($grpc.ServiceCall call, $11.UpdateAccountInfoRequest request);
|
$async.Future<$11.UpdateAccountInfoResponse> updateAccountInfo($grpc.ServiceCall call, $11.UpdateAccountInfoRequest request);
|
||||||
$async.Future<$12.UpdateAccountPrivacyResponse> updateAccountPrivacy($grpc.ServiceCall call, $12.UpdateAccountPrivacyRequest request);
|
$async.Future<$12.UpdateAccountPrivacyResponse> updateAccountPrivacy($grpc.ServiceCall call, $12.UpdateAccountPrivacyRequest request);
|
||||||
$async.Future<$13.CreatePersonResponse> createPerson($grpc.ServiceCall call, $13.CreatePersonRequest request);
|
$async.Future<$13.AddEmailAddressResponse> addEmailAddress($grpc.ServiceCall call, $13.AddEmailAddressRequest request);
|
||||||
$async.Future<$14.UpdatePersonResponse> updatePerson($grpc.ServiceCall call, $14.UpdatePersonRequest request);
|
$async.Future<$14.AddEmailAddressesResponse> addEmailAddresses($grpc.ServiceCall call, $14.AddEmailAddressesRequest request);
|
||||||
$async.Future<$15.GetPersonResponse> getPerson($grpc.ServiceCall call, $15.GetPersonRequest request);
|
$async.Future<$15.CreatePersonResponse> createPerson($grpc.ServiceCall call, $15.CreatePersonRequest request);
|
||||||
$async.Future<$16.DeletePersonResponse> deletePerson($grpc.ServiceCall call, $16.DeletePersonRequest request);
|
$async.Future<$16.UpdatePersonResponse> updatePerson($grpc.ServiceCall call, $16.UpdatePersonRequest request);
|
||||||
$async.Future<$17.ListPersonsResponse> listPersons($grpc.ServiceCall call, $17.ListPersonsRequest request);
|
$async.Future<$17.GetPersonResponse> getPerson($grpc.ServiceCall call, $17.GetPersonRequest request);
|
||||||
$async.Future<$18.CreatePaymentResponse> createPayment($grpc.ServiceCall call, $18.CreatePaymentRequest request);
|
$async.Future<$18.DeletePersonResponse> deletePerson($grpc.ServiceCall call, $18.DeletePersonRequest request);
|
||||||
$async.Future<$19.GetPaymentResponse> getPayment($grpc.ServiceCall call, $19.GetPaymentRequest request);
|
$async.Future<$19.ListPersonsResponse> listPersons($grpc.ServiceCall call, $19.ListPersonsRequest request);
|
||||||
$async.Future<$20.DeletePaymentResponse> deletePayment($grpc.ServiceCall call, $20.DeletePaymentRequest request);
|
$async.Future<$20.CreatePaymentResponse> createPayment($grpc.ServiceCall call, $20.CreatePaymentRequest request);
|
||||||
$async.Future<$21.ListPaymentsResponse> listPayments($grpc.ServiceCall call, $21.ListPaymentsRequest request);
|
$async.Future<$21.GetPaymentResponse> getPayment($grpc.ServiceCall call, $21.GetPaymentRequest request);
|
||||||
$async.Future<$22.UpdatePaymentResponse> updatePayment($grpc.ServiceCall call, $22.UpdatePaymentRequest request);
|
$async.Future<$22.DeletePaymentResponse> deletePayment($grpc.ServiceCall call, $22.DeletePaymentRequest request);
|
||||||
$async.Future<$23.ListReturnsLogResponse> listReturnsLog($grpc.ServiceCall call, $23.ListReturnsLogRequest request);
|
$async.Future<$23.ListPaymentsResponse> listPayments($grpc.ServiceCall call, $23.ListPaymentsRequest request);
|
||||||
$async.Future<$24.UploadDocumentResponse> uploadDocument($grpc.ServiceCall call, $24.UploadDocumentRequest request);
|
$async.Future<$24.UpdatePaymentResponse> updatePayment($grpc.ServiceCall call, $24.UpdatePaymentRequest request);
|
||||||
$async.Future<$25.DeleteDocumentResponse> deleteDocument($grpc.ServiceCall call, $25.DeleteDocumentRequest request);
|
$async.Future<$25.ListReturnsLogResponse> listReturnsLog($grpc.ServiceCall call, $25.ListReturnsLogRequest request);
|
||||||
$async.Future<$26.ResendVerificationResponse> resendVerification($grpc.ServiceCall call, $26.ResendVerificationRequest request);
|
$async.Future<$26.UploadDocumentResponse> uploadDocument($grpc.ServiceCall call, $26.UploadDocumentRequest request);
|
||||||
$async.Future<$27.VerifyEmailResponse> verifyEmail($grpc.ServiceCall call, $27.VerifyEmailRequest request);
|
$async.Future<$27.DeleteDocumentResponse> deleteDocument($grpc.ServiceCall call, $27.DeleteDocumentRequest request);
|
||||||
|
$async.Future<$28.ResendVerificationResponse> resendVerification($grpc.ServiceCall call, $28.ResendVerificationRequest request);
|
||||||
|
$async.Future<$29.VerifyEmailResponse> verifyEmail($grpc.ServiceCall call, $29.VerifyEmailRequest request);
|
||||||
}
|
}
|
||||||
|
@ -14,7 +14,7 @@ import 'dart:core' as $core;
|
|||||||
import 'package:fixnum/fixnum.dart' as $fixnum;
|
import 'package:fixnum/fixnum.dart' as $fixnum;
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
import 'google/protobuf/timestamp.pb.dart' as $28;
|
import 'google/protobuf/timestamp.pb.dart' as $30;
|
||||||
|
|
||||||
class Session extends $pb.GeneratedMessage {
|
class Session extends $pb.GeneratedMessage {
|
||||||
factory Session({
|
factory Session({
|
||||||
@ -23,9 +23,9 @@ class Session extends $pb.GeneratedMessage {
|
|||||||
$core.String? userAgent,
|
$core.String? userAgent,
|
||||||
$core.String? clientIp,
|
$core.String? clientIp,
|
||||||
$core.bool? isBlocked,
|
$core.bool? isBlocked,
|
||||||
$28.Timestamp? expiresAt,
|
$30.Timestamp? expiresAt,
|
||||||
$core.String? refreshToken,
|
$core.String? refreshToken,
|
||||||
$28.Timestamp? createdAt,
|
$30.Timestamp? createdAt,
|
||||||
}) {
|
}) {
|
||||||
final $result = create();
|
final $result = create();
|
||||||
if (id != null) {
|
if (id != null) {
|
||||||
@ -64,9 +64,9 @@ class Session extends $pb.GeneratedMessage {
|
|||||||
..aOS(3, _omitFieldNames ? '' : 'userAgent')
|
..aOS(3, _omitFieldNames ? '' : 'userAgent')
|
||||||
..aOS(4, _omitFieldNames ? '' : 'clientIp')
|
..aOS(4, _omitFieldNames ? '' : 'clientIp')
|
||||||
..aOB(5, _omitFieldNames ? '' : 'isBlocked')
|
..aOB(5, _omitFieldNames ? '' : 'isBlocked')
|
||||||
..aOM<$28.Timestamp>(6, _omitFieldNames ? '' : 'expiresAt', subBuilder: $28.Timestamp.create)
|
..aOM<$30.Timestamp>(6, _omitFieldNames ? '' : 'expiresAt', subBuilder: $30.Timestamp.create)
|
||||||
..aOS(7, _omitFieldNames ? '' : 'refreshToken')
|
..aOS(7, _omitFieldNames ? '' : 'refreshToken')
|
||||||
..aOM<$28.Timestamp>(8, _omitFieldNames ? '' : 'createdAt', subBuilder: $28.Timestamp.create)
|
..aOM<$30.Timestamp>(8, _omitFieldNames ? '' : 'createdAt', subBuilder: $30.Timestamp.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@ -137,15 +137,15 @@ class Session extends $pb.GeneratedMessage {
|
|||||||
void clearIsBlocked() => clearField(5);
|
void clearIsBlocked() => clearField(5);
|
||||||
|
|
||||||
@$pb.TagNumber(6)
|
@$pb.TagNumber(6)
|
||||||
$28.Timestamp get expiresAt => $_getN(5);
|
$30.Timestamp get expiresAt => $_getN(5);
|
||||||
@$pb.TagNumber(6)
|
@$pb.TagNumber(6)
|
||||||
set expiresAt($28.Timestamp v) { setField(6, v); }
|
set expiresAt($30.Timestamp v) { setField(6, v); }
|
||||||
@$pb.TagNumber(6)
|
@$pb.TagNumber(6)
|
||||||
$core.bool hasExpiresAt() => $_has(5);
|
$core.bool hasExpiresAt() => $_has(5);
|
||||||
@$pb.TagNumber(6)
|
@$pb.TagNumber(6)
|
||||||
void clearExpiresAt() => clearField(6);
|
void clearExpiresAt() => clearField(6);
|
||||||
@$pb.TagNumber(6)
|
@$pb.TagNumber(6)
|
||||||
$28.Timestamp ensureExpiresAt() => $_ensure(5);
|
$30.Timestamp ensureExpiresAt() => $_ensure(5);
|
||||||
|
|
||||||
@$pb.TagNumber(7)
|
@$pb.TagNumber(7)
|
||||||
$core.String get refreshToken => $_getSZ(6);
|
$core.String get refreshToken => $_getSZ(6);
|
||||||
@ -157,15 +157,15 @@ class Session extends $pb.GeneratedMessage {
|
|||||||
void clearRefreshToken() => clearField(7);
|
void clearRefreshToken() => clearField(7);
|
||||||
|
|
||||||
@$pb.TagNumber(8)
|
@$pb.TagNumber(8)
|
||||||
$28.Timestamp get createdAt => $_getN(7);
|
$30.Timestamp get createdAt => $_getN(7);
|
||||||
@$pb.TagNumber(8)
|
@$pb.TagNumber(8)
|
||||||
set createdAt($28.Timestamp v) { setField(8, v); }
|
set createdAt($30.Timestamp v) { setField(8, v); }
|
||||||
@$pb.TagNumber(8)
|
@$pb.TagNumber(8)
|
||||||
$core.bool hasCreatedAt() => $_has(7);
|
$core.bool hasCreatedAt() => $_has(7);
|
||||||
@$pb.TagNumber(8)
|
@$pb.TagNumber(8)
|
||||||
void clearCreatedAt() => clearField(8);
|
void clearCreatedAt() => clearField(8);
|
||||||
@$pb.TagNumber(8)
|
@$pb.TagNumber(8)
|
||||||
$28.Timestamp ensureCreatedAt() => $_ensure(7);
|
$30.Timestamp ensureCreatedAt() => $_ensure(7);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user