@producerflow/producerflowapi 0.0.10 → 0.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -7,6 +7,34 @@ import type { Message } from "@bufbuild/protobuf";
|
|
|
7
7
|
* Describes the file producerflow/producer/v1/producer.proto.
|
|
8
8
|
*/
|
|
9
9
|
export declare const file_producerflow_producer_v1_producer: GenFile;
|
|
10
|
+
/**
|
|
11
|
+
* Pagination provides page token and page size for paginating list results.
|
|
12
|
+
*
|
|
13
|
+
* @generated from message producerflow.producer.v1.Pagination
|
|
14
|
+
*/
|
|
15
|
+
export type Pagination = Message<"producerflow.producer.v1.Pagination"> & {
|
|
16
|
+
/**
|
|
17
|
+
* The maximum number of items to return. The service may return fewer than this value.
|
|
18
|
+
* If unspecified, at most 50 items will be returned.
|
|
19
|
+
* The maximum value is 200; values above 200 will be rejected.
|
|
20
|
+
*
|
|
21
|
+
* @generated from field: int32 page_size = 1;
|
|
22
|
+
*/
|
|
23
|
+
pageSize: number;
|
|
24
|
+
/**
|
|
25
|
+
* A page token, received from a previous list call.
|
|
26
|
+
* Provide this to retrieve the subsequent page.
|
|
27
|
+
* When paginating, all other parameters must match the call that provided the page token.
|
|
28
|
+
*
|
|
29
|
+
* @generated from field: string page_token = 2;
|
|
30
|
+
*/
|
|
31
|
+
pageToken: string;
|
|
32
|
+
};
|
|
33
|
+
/**
|
|
34
|
+
* Describes the message producerflow.producer.v1.Pagination.
|
|
35
|
+
* Use `create(PaginationSchema)` to create a new message.
|
|
36
|
+
*/
|
|
37
|
+
export declare const PaginationSchema: GenMessage<Pagination>;
|
|
10
38
|
/**
|
|
11
39
|
* Address represents a physical location with standard address components.
|
|
12
40
|
* Used for mailing, physical, and invoicing addresses throughout the API.
|
|
@@ -253,6 +281,124 @@ export type CreateAgencyOnboardingURLResponse = Message<"producerflow.producer.v
|
|
|
253
281
|
* Use `create(CreateAgencyOnboardingURLResponseSchema)` to create a new message.
|
|
254
282
|
*/
|
|
255
283
|
export declare const CreateAgencyOnboardingURLResponseSchema: GenMessage<CreateAgencyOnboardingURLResponse>;
|
|
284
|
+
/**
|
|
285
|
+
* @generated from message producerflow.producer.v1.CreateProducerOnboardingURLRequest
|
|
286
|
+
*/
|
|
287
|
+
export type CreateProducerOnboardingURLRequest = Message<"producerflow.producer.v1.CreateProducerOnboardingURLRequest"> & {
|
|
288
|
+
/**
|
|
289
|
+
* Agency ID for which the producer will be onboarded
|
|
290
|
+
*
|
|
291
|
+
* @generated from field: string agency_id = 1;
|
|
292
|
+
*/
|
|
293
|
+
agencyId: string;
|
|
294
|
+
/**
|
|
295
|
+
* Optional producer data to pre-fill in the onboarding form
|
|
296
|
+
*
|
|
297
|
+
* @generated from field: producerflow.producer.v1.ProducerData producer_data = 2;
|
|
298
|
+
*/
|
|
299
|
+
producerData?: ProducerData;
|
|
300
|
+
};
|
|
301
|
+
/**
|
|
302
|
+
* Describes the message producerflow.producer.v1.CreateProducerOnboardingURLRequest.
|
|
303
|
+
* Use `create(CreateProducerOnboardingURLRequestSchema)` to create a new message.
|
|
304
|
+
*/
|
|
305
|
+
export declare const CreateProducerOnboardingURLRequestSchema: GenMessage<CreateProducerOnboardingURLRequest>;
|
|
306
|
+
/**
|
|
307
|
+
* @generated from message producerflow.producer.v1.ProducerData
|
|
308
|
+
*/
|
|
309
|
+
export type ProducerData = Message<"producerflow.producer.v1.ProducerData"> & {
|
|
310
|
+
/**
|
|
311
|
+
* @generated from field: optional string npn = 1;
|
|
312
|
+
*/
|
|
313
|
+
npn?: string;
|
|
314
|
+
/**
|
|
315
|
+
* First name of the producer
|
|
316
|
+
*
|
|
317
|
+
* @generated from field: optional string first_name = 2;
|
|
318
|
+
*/
|
|
319
|
+
firstName?: string;
|
|
320
|
+
/**
|
|
321
|
+
* Last name of the producer
|
|
322
|
+
*
|
|
323
|
+
* @generated from field: optional string last_name = 3;
|
|
324
|
+
*/
|
|
325
|
+
lastName?: string;
|
|
326
|
+
/**
|
|
327
|
+
* Middle name of the producer
|
|
328
|
+
*
|
|
329
|
+
* @generated from field: optional string middle_name = 4;
|
|
330
|
+
*/
|
|
331
|
+
middleName?: string;
|
|
332
|
+
/**
|
|
333
|
+
* Email address of the producer
|
|
334
|
+
*
|
|
335
|
+
* @generated from field: optional string email = 5;
|
|
336
|
+
*/
|
|
337
|
+
email?: string;
|
|
338
|
+
/**
|
|
339
|
+
* Phone number of the producer
|
|
340
|
+
*
|
|
341
|
+
* @generated from field: optional string phone = 6;
|
|
342
|
+
*/
|
|
343
|
+
phone?: string;
|
|
344
|
+
/**
|
|
345
|
+
* Mailing address of the producer
|
|
346
|
+
*
|
|
347
|
+
* @generated from field: producerflow.producer.v1.ProducerData.Address mailing_address = 7;
|
|
348
|
+
*/
|
|
349
|
+
mailingAddress?: ProducerData_Address;
|
|
350
|
+
};
|
|
351
|
+
/**
|
|
352
|
+
* Describes the message producerflow.producer.v1.ProducerData.
|
|
353
|
+
* Use `create(ProducerDataSchema)` to create a new message.
|
|
354
|
+
*/
|
|
355
|
+
export declare const ProducerDataSchema: GenMessage<ProducerData>;
|
|
356
|
+
/**
|
|
357
|
+
* @generated from message producerflow.producer.v1.ProducerData.Address
|
|
358
|
+
*/
|
|
359
|
+
export type ProducerData_Address = Message<"producerflow.producer.v1.ProducerData.Address"> & {
|
|
360
|
+
/**
|
|
361
|
+
* @generated from field: string street = 1;
|
|
362
|
+
*/
|
|
363
|
+
street: string;
|
|
364
|
+
/**
|
|
365
|
+
* @generated from field: string city = 2;
|
|
366
|
+
*/
|
|
367
|
+
city: string;
|
|
368
|
+
/**
|
|
369
|
+
* @generated from field: string state = 3;
|
|
370
|
+
*/
|
|
371
|
+
state: string;
|
|
372
|
+
/**
|
|
373
|
+
* @generated from field: string zip = 4;
|
|
374
|
+
*/
|
|
375
|
+
zip: string;
|
|
376
|
+
/**
|
|
377
|
+
* @generated from field: string country = 5;
|
|
378
|
+
*/
|
|
379
|
+
country: string;
|
|
380
|
+
};
|
|
381
|
+
/**
|
|
382
|
+
* Describes the message producerflow.producer.v1.ProducerData.Address.
|
|
383
|
+
* Use `create(ProducerData_AddressSchema)` to create a new message.
|
|
384
|
+
*/
|
|
385
|
+
export declare const ProducerData_AddressSchema: GenMessage<ProducerData_Address>;
|
|
386
|
+
/**
|
|
387
|
+
* @generated from message producerflow.producer.v1.CreateProducerOnboardingURLResponse
|
|
388
|
+
*/
|
|
389
|
+
export type CreateProducerOnboardingURLResponse = Message<"producerflow.producer.v1.CreateProducerOnboardingURLResponse"> & {
|
|
390
|
+
/**
|
|
391
|
+
* The secure onboarding URL that can be shared with the producer
|
|
392
|
+
*
|
|
393
|
+
* @generated from field: string onboarding_url = 1;
|
|
394
|
+
*/
|
|
395
|
+
onboardingUrl: string;
|
|
396
|
+
};
|
|
397
|
+
/**
|
|
398
|
+
* Describes the message producerflow.producer.v1.CreateProducerOnboardingURLResponse.
|
|
399
|
+
* Use `create(CreateProducerOnboardingURLResponseSchema)` to create a new message.
|
|
400
|
+
*/
|
|
401
|
+
export declare const CreateProducerOnboardingURLResponseSchema: GenMessage<CreateProducerOnboardingURLResponse>;
|
|
256
402
|
/**
|
|
257
403
|
* NewAgencyRequest contains complete information for creating a new agency
|
|
258
404
|
*
|
|
@@ -406,6 +552,12 @@ export type NewAgencyRequest_Agency = Message<"producerflow.producer.v1.NewAgenc
|
|
|
406
552
|
* @generated from field: repeated producerflow.producer.v1.LocationInput locations = 20;
|
|
407
553
|
*/
|
|
408
554
|
locations: LocationInput[];
|
|
555
|
+
/**
|
|
556
|
+
* MetadataQuestions contains custom metadata questions and answers for the agency.
|
|
557
|
+
*
|
|
558
|
+
* @generated from field: string metadata_questions = 21;
|
|
559
|
+
*/
|
|
560
|
+
metadataQuestions: string;
|
|
409
561
|
};
|
|
410
562
|
/**
|
|
411
563
|
* Describes the message producerflow.producer.v1.NewAgencyRequest.Agency.
|
|
@@ -2824,6 +2976,12 @@ export type NewProducer = Message<"producerflow.producer.v1.NewProducer"> & {
|
|
|
2824
2976
|
* @generated from field: repeated string location_ids = 10;
|
|
2825
2977
|
*/
|
|
2826
2978
|
locationIds: string[];
|
|
2979
|
+
/**
|
|
2980
|
+
* MetadataQuestions contains custom metadata questions and answers for the producer.
|
|
2981
|
+
*
|
|
2982
|
+
* @generated from field: string metadata_questions = 11;
|
|
2983
|
+
*/
|
|
2984
|
+
metadataQuestions: string;
|
|
2827
2985
|
};
|
|
2828
2986
|
/**
|
|
2829
2987
|
* Describes the message producerflow.producer.v1.NewProducer.
|
|
@@ -3570,6 +3728,166 @@ export type StopSyncAgencyWithNIPRResponse = Message<"producerflow.producer.v1.S
|
|
|
3570
3728
|
* Use `create(StopSyncAgencyWithNIPRResponseSchema)` to create a new message.
|
|
3571
3729
|
*/
|
|
3572
3730
|
export declare const StopSyncAgencyWithNIPRResponseSchema: GenMessage<StopSyncAgencyWithNIPRResponse>;
|
|
3731
|
+
/**
|
|
3732
|
+
* AgencySummary contains a lightweight summary of an agency for list views.
|
|
3733
|
+
* This message contains only the essential fields needed for displaying agencies in a list.
|
|
3734
|
+
*
|
|
3735
|
+
* @generated from message producerflow.producer.v1.AgencySummary
|
|
3736
|
+
*/
|
|
3737
|
+
export type AgencySummary = Message<"producerflow.producer.v1.AgencySummary"> & {
|
|
3738
|
+
/**
|
|
3739
|
+
* Unique identifier for the agency.
|
|
3740
|
+
*
|
|
3741
|
+
* @generated from field: string agency_id = 1;
|
|
3742
|
+
*/
|
|
3743
|
+
agencyId: string;
|
|
3744
|
+
/**
|
|
3745
|
+
* Agency name.
|
|
3746
|
+
*
|
|
3747
|
+
* @generated from field: string name = 2;
|
|
3748
|
+
*/
|
|
3749
|
+
name: string;
|
|
3750
|
+
/**
|
|
3751
|
+
* Agency email address.
|
|
3752
|
+
*
|
|
3753
|
+
* @generated from field: string email = 3;
|
|
3754
|
+
*/
|
|
3755
|
+
email: string;
|
|
3756
|
+
/**
|
|
3757
|
+
* Agency phone number.
|
|
3758
|
+
*
|
|
3759
|
+
* @generated from field: string phone = 4;
|
|
3760
|
+
*/
|
|
3761
|
+
phone: string;
|
|
3762
|
+
/**
|
|
3763
|
+
* Agency NPN (National Producer Number).
|
|
3764
|
+
*
|
|
3765
|
+
* @generated from field: string npn = 5;
|
|
3766
|
+
*/
|
|
3767
|
+
npn: string;
|
|
3768
|
+
/**
|
|
3769
|
+
* Agency FEIN (Federal Employer Identification Number).
|
|
3770
|
+
*
|
|
3771
|
+
* @generated from field: string fein = 6;
|
|
3772
|
+
*/
|
|
3773
|
+
fein: string;
|
|
3774
|
+
/**
|
|
3775
|
+
* Organization ID that the agency belongs to.
|
|
3776
|
+
*
|
|
3777
|
+
* @generated from field: optional string organization_id = 7;
|
|
3778
|
+
*/
|
|
3779
|
+
organizationId?: string;
|
|
3780
|
+
/**
|
|
3781
|
+
* Whether this is an internal tenant agency.
|
|
3782
|
+
*
|
|
3783
|
+
* @generated from field: bool is_tenant_agency = 8;
|
|
3784
|
+
*/
|
|
3785
|
+
isTenantAgency: boolean;
|
|
3786
|
+
/**
|
|
3787
|
+
* Whether this is a sole proprietor.
|
|
3788
|
+
*
|
|
3789
|
+
* @generated from field: bool is_sole_proprietor = 9;
|
|
3790
|
+
*/
|
|
3791
|
+
isSoleProprietor: boolean;
|
|
3792
|
+
/**
|
|
3793
|
+
* When the agency was created.
|
|
3794
|
+
*
|
|
3795
|
+
* @generated from field: google.protobuf.Timestamp created_at = 10;
|
|
3796
|
+
*/
|
|
3797
|
+
createdAt?: Timestamp;
|
|
3798
|
+
};
|
|
3799
|
+
/**
|
|
3800
|
+
* Describes the message producerflow.producer.v1.AgencySummary.
|
|
3801
|
+
* Use `create(AgencySummarySchema)` to create a new message.
|
|
3802
|
+
*/
|
|
3803
|
+
export declare const AgencySummarySchema: GenMessage<AgencySummary>;
|
|
3804
|
+
/**
|
|
3805
|
+
* ListAgenciesRequest requests a list of agencies associated with the tenant.
|
|
3806
|
+
* Supports optional filtering and pagination parameters.
|
|
3807
|
+
*
|
|
3808
|
+
* @generated from message producerflow.producer.v1.ListAgenciesRequest
|
|
3809
|
+
*/
|
|
3810
|
+
export type ListAgenciesRequest = Message<"producerflow.producer.v1.ListAgenciesRequest"> & {
|
|
3811
|
+
/**
|
|
3812
|
+
* Optional. Filter agencies by organization ID.
|
|
3813
|
+
* If provided, only agencies belonging to this organization will be returned.
|
|
3814
|
+
*
|
|
3815
|
+
* @generated from field: optional string organization_id = 1;
|
|
3816
|
+
*/
|
|
3817
|
+
organizationId?: string;
|
|
3818
|
+
/**
|
|
3819
|
+
* Optional. Search query to filter agencies by name, NPN, or email.
|
|
3820
|
+
* If provided, only agencies matching the search query will be returned.
|
|
3821
|
+
*
|
|
3822
|
+
* @generated from field: optional string search_query = 2;
|
|
3823
|
+
*/
|
|
3824
|
+
searchQuery?: string;
|
|
3825
|
+
/**
|
|
3826
|
+
* Optional. Pagination parameters.
|
|
3827
|
+
* If not provided, defaults to page_size=50.
|
|
3828
|
+
*
|
|
3829
|
+
* @generated from field: producerflow.producer.v1.Pagination pagination = 3;
|
|
3830
|
+
*/
|
|
3831
|
+
pagination?: Pagination;
|
|
3832
|
+
/**
|
|
3833
|
+
* Optional. Filter by agency type (internal vs external).
|
|
3834
|
+
* If not provided, returns all agencies regardless of type.
|
|
3835
|
+
*
|
|
3836
|
+
* @generated from field: optional producerflow.producer.v1.AgencyType agency_type = 4;
|
|
3837
|
+
*/
|
|
3838
|
+
agencyType?: AgencyType;
|
|
3839
|
+
/**
|
|
3840
|
+
* Optional. Filter by entity type (sole proprietor vs agency).
|
|
3841
|
+
* If not provided, returns all agencies regardless of entity type.
|
|
3842
|
+
*
|
|
3843
|
+
* @generated from field: optional producerflow.producer.v1.EntityType entity_type = 5;
|
|
3844
|
+
*/
|
|
3845
|
+
entityType?: EntityType;
|
|
3846
|
+
/**
|
|
3847
|
+
* Optional. Filter by NIPR sync status.
|
|
3848
|
+
* If not provided, returns all agencies regardless of sync status.
|
|
3849
|
+
*
|
|
3850
|
+
* @generated from field: repeated producerflow.producer.v1.NIPRSyncState nipr_sync_statuses = 6;
|
|
3851
|
+
*/
|
|
3852
|
+
niprSyncStatuses: NIPRSyncState[];
|
|
3853
|
+
};
|
|
3854
|
+
/**
|
|
3855
|
+
* Describes the message producerflow.producer.v1.ListAgenciesRequest.
|
|
3856
|
+
* Use `create(ListAgenciesRequestSchema)` to create a new message.
|
|
3857
|
+
*/
|
|
3858
|
+
export declare const ListAgenciesRequestSchema: GenMessage<ListAgenciesRequest>;
|
|
3859
|
+
/**
|
|
3860
|
+
* ListAgenciesResponse contains the list of agencies matching the filter criteria.
|
|
3861
|
+
*
|
|
3862
|
+
* @generated from message producerflow.producer.v1.ListAgenciesResponse
|
|
3863
|
+
*/
|
|
3864
|
+
export type ListAgenciesResponse = Message<"producerflow.producer.v1.ListAgenciesResponse"> & {
|
|
3865
|
+
/**
|
|
3866
|
+
* List of agency summaries matching the filter criteria.
|
|
3867
|
+
* The agencies are ordered by creation date, most recent first.
|
|
3868
|
+
*
|
|
3869
|
+
* @generated from field: repeated producerflow.producer.v1.AgencySummary agencies = 1;
|
|
3870
|
+
*/
|
|
3871
|
+
agencies: AgencySummary[];
|
|
3872
|
+
/**
|
|
3873
|
+
* A token that can be sent as `page_token` to retrieve the next page.
|
|
3874
|
+
* If this field is omitted, there are no subsequent pages.
|
|
3875
|
+
*
|
|
3876
|
+
* @generated from field: string next_page_token = 2;
|
|
3877
|
+
*/
|
|
3878
|
+
nextPageToken: string;
|
|
3879
|
+
/**
|
|
3880
|
+
* Total number of agencies matching the filter criteria.
|
|
3881
|
+
*
|
|
3882
|
+
* @generated from field: int32 total_count = 3;
|
|
3883
|
+
*/
|
|
3884
|
+
totalCount: number;
|
|
3885
|
+
};
|
|
3886
|
+
/**
|
|
3887
|
+
* Describes the message producerflow.producer.v1.ListAgenciesResponse.
|
|
3888
|
+
* Use `create(ListAgenciesResponseSchema)` to create a new message.
|
|
3889
|
+
*/
|
|
3890
|
+
export declare const ListAgenciesResponseSchema: GenMessage<ListAgenciesResponse>;
|
|
3573
3891
|
/**
|
|
3574
3892
|
* ListOrganizationsRequest requests a list of all organizations associated with the tenant.
|
|
3575
3893
|
* This request requires no parameters and will return all organizations that
|
|
@@ -4085,6 +4403,76 @@ export declare enum EntityType {
|
|
|
4085
4403
|
* Describes the enum producerflow.producer.v1.EntityType.
|
|
4086
4404
|
*/
|
|
4087
4405
|
export declare const EntityTypeSchema: GenEnum<EntityType>;
|
|
4406
|
+
/**
|
|
4407
|
+
* AgencyType defines whether an agency is internal (tenant agency) or external.
|
|
4408
|
+
*
|
|
4409
|
+
* @generated from enum producerflow.producer.v1.AgencyType
|
|
4410
|
+
*/
|
|
4411
|
+
export declare enum AgencyType {
|
|
4412
|
+
/**
|
|
4413
|
+
* Default unspecified value. Do not use.
|
|
4414
|
+
*
|
|
4415
|
+
* @generated from enum value: AGENCY_TYPE_UNSPECIFIED = 0;
|
|
4416
|
+
*/
|
|
4417
|
+
UNSPECIFIED = 0,
|
|
4418
|
+
/**
|
|
4419
|
+
* Internal agencies are the agencies that are tenant agencies.
|
|
4420
|
+
*
|
|
4421
|
+
* @generated from enum value: AGENCY_TYPE_INTERNAL = 1;
|
|
4422
|
+
*/
|
|
4423
|
+
INTERNAL = 1,
|
|
4424
|
+
/**
|
|
4425
|
+
* External agencies are the agencies that are not tenant agencies.
|
|
4426
|
+
*
|
|
4427
|
+
* @generated from enum value: AGENCY_TYPE_EXTERNAL = 2;
|
|
4428
|
+
*/
|
|
4429
|
+
EXTERNAL = 2
|
|
4430
|
+
}
|
|
4431
|
+
/**
|
|
4432
|
+
* Describes the enum producerflow.producer.v1.AgencyType.
|
|
4433
|
+
*/
|
|
4434
|
+
export declare const AgencyTypeSchema: GenEnum<AgencyType>;
|
|
4435
|
+
/**
|
|
4436
|
+
* NIPRSyncState defines the synchronization state with the NIPR system.
|
|
4437
|
+
*
|
|
4438
|
+
* @generated from enum producerflow.producer.v1.NIPRSyncState
|
|
4439
|
+
*/
|
|
4440
|
+
export declare enum NIPRSyncState {
|
|
4441
|
+
/**
|
|
4442
|
+
* Default unspecified value. Do not use.
|
|
4443
|
+
*
|
|
4444
|
+
* @generated from enum value: NIPR_SYNC_STATE_UNSPECIFIED = 0;
|
|
4445
|
+
*/
|
|
4446
|
+
NIPR_SYNC_STATE_UNSPECIFIED = 0,
|
|
4447
|
+
/**
|
|
4448
|
+
* Synchronization is active and working properly.
|
|
4449
|
+
*
|
|
4450
|
+
* @generated from enum value: NIPR_SYNC_STATE_ACTIVE = 1;
|
|
4451
|
+
*/
|
|
4452
|
+
NIPR_SYNC_STATE_ACTIVE = 1,
|
|
4453
|
+
/**
|
|
4454
|
+
* Synchronization is failing due to errors.
|
|
4455
|
+
*
|
|
4456
|
+
* @generated from enum value: NIPR_SYNC_STATE_FAILING = 2;
|
|
4457
|
+
*/
|
|
4458
|
+
NIPR_SYNC_STATE_FAILING = 2,
|
|
4459
|
+
/**
|
|
4460
|
+
* Synchronization is pending and has not started yet.
|
|
4461
|
+
*
|
|
4462
|
+
* @generated from enum value: NIPR_SYNC_STATE_PENDING = 3;
|
|
4463
|
+
*/
|
|
4464
|
+
NIPR_SYNC_STATE_PENDING = 3,
|
|
4465
|
+
/**
|
|
4466
|
+
* Synchronization has been disabled.
|
|
4467
|
+
*
|
|
4468
|
+
* @generated from enum value: NIPR_SYNC_STATE_DISABLED = 4;
|
|
4469
|
+
*/
|
|
4470
|
+
NIPR_SYNC_STATE_DISABLED = 4
|
|
4471
|
+
}
|
|
4472
|
+
/**
|
|
4473
|
+
* Describes the enum producerflow.producer.v1.NIPRSyncState.
|
|
4474
|
+
*/
|
|
4475
|
+
export declare const NIPRSyncStateSchema: GenEnum<NIPRSyncState>;
|
|
4088
4476
|
/**
|
|
4089
4477
|
* ProducerOnboardingState defines the possible states in the producer onboarding workflow.
|
|
4090
4478
|
* This enum is deprecated and should not be used in new code.
|
|
@@ -4146,6 +4534,19 @@ export declare const ProducerService: GenService<{
|
|
|
4146
4534
|
input: typeof CreateAgencyOnboardingURLRequestSchema;
|
|
4147
4535
|
output: typeof CreateAgencyOnboardingURLResponseSchema;
|
|
4148
4536
|
};
|
|
4537
|
+
/**
|
|
4538
|
+
* CreateProducerOnboardingURL generates a secure, time-limited link for onboarding a new producer
|
|
4539
|
+
* with optional pre-filled NPN. The URL can be shared directly with the producer.
|
|
4540
|
+
* The generated URL will take the producer through the onboarding flow with the NPN field
|
|
4541
|
+
* pre-populated if provided, reducing friction in the onboarding process.
|
|
4542
|
+
*
|
|
4543
|
+
* @generated from rpc producerflow.producer.v1.ProducerService.CreateProducerOnboardingURL
|
|
4544
|
+
*/
|
|
4545
|
+
createProducerOnboardingURL: {
|
|
4546
|
+
methodKind: "unary";
|
|
4547
|
+
input: typeof CreateProducerOnboardingURLRequestSchema;
|
|
4548
|
+
output: typeof CreateProducerOnboardingURLResponseSchema;
|
|
4549
|
+
};
|
|
4149
4550
|
/**
|
|
4150
4551
|
* NewAgency creates a new agency, optionally with associated producers.
|
|
4151
4552
|
* It performs the following validation checks:
|
|
@@ -4167,6 +4568,17 @@ export declare const ProducerService: GenService<{
|
|
|
4167
4568
|
input: typeof NewAgencyRequestSchema;
|
|
4168
4569
|
output: typeof NewAgencyResponseSchema;
|
|
4169
4570
|
};
|
|
4571
|
+
/**
|
|
4572
|
+
* ListAgencies returns a list of agencies associated with the tenant.
|
|
4573
|
+
* Supports optional filtering by organization ID and search queries.
|
|
4574
|
+
*
|
|
4575
|
+
* @generated from rpc producerflow.producer.v1.ProducerService.ListAgencies
|
|
4576
|
+
*/
|
|
4577
|
+
listAgencies: {
|
|
4578
|
+
methodKind: "unary";
|
|
4579
|
+
input: typeof ListAgenciesRequestSchema;
|
|
4580
|
+
output: typeof ListAgenciesResponseSchema;
|
|
4581
|
+
};
|
|
4170
4582
|
/**
|
|
4171
4583
|
* ListOrganizations returns a list of organizations associated with the tenant.
|
|
4172
4584
|
* Organizations represent logical groupings or hierarchical structures within a tenant
|