@caronashow/api 0.9.0 → 0.11.0
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.
|
@@ -98,6 +98,7 @@ export type CompleteOnboardingRequest = Message<"caronashow.service.v1.CompleteO
|
|
|
98
98
|
export declare const CompleteOnboardingRequestSchema: GenMessage<CompleteOnboardingRequest>;
|
|
99
99
|
/**
|
|
100
100
|
* Driver's vehicle and route preferences set during onboarding.
|
|
101
|
+
* Arrival and departure shift IDs may independently reference different paired shifts.
|
|
101
102
|
*
|
|
102
103
|
* @generated from message caronashow.service.v1.DriverOfferSetup
|
|
103
104
|
*/
|
|
@@ -133,17 +134,11 @@ export type DriverOfferSetup = Message<"caronashow.service.v1.DriverOfferSetup">
|
|
|
133
134
|
*/
|
|
134
135
|
originAddress?: FullAddress;
|
|
135
136
|
/**
|
|
136
|
-
*
|
|
137
|
+
* Exact time the driver departs from the origin toward the organization.
|
|
137
138
|
*
|
|
138
|
-
* @generated from field: caronashow.types.v1.TimeOfDay
|
|
139
|
+
* @generated from field: caronashow.types.v1.TimeOfDay departure_from_origin = 6;
|
|
139
140
|
*/
|
|
140
|
-
|
|
141
|
-
/**
|
|
142
|
-
* Time the driver leaves the organization to return home.
|
|
143
|
-
*
|
|
144
|
-
* @generated from field: caronashow.types.v1.TimeOfDay return_time = 7;
|
|
145
|
-
*/
|
|
146
|
-
returnTime?: TimeOfDay;
|
|
141
|
+
departureFromOrigin?: TimeOfDay;
|
|
147
142
|
/**
|
|
148
143
|
* Whether the driver is currently accepting ride requests.
|
|
149
144
|
*
|
|
@@ -157,6 +152,20 @@ export type DriverOfferSetup = Message<"caronashow.service.v1.DriverOfferSetup">
|
|
|
157
152
|
* @generated from field: bool restricted_to_vulnerable_group = 9;
|
|
158
153
|
*/
|
|
159
154
|
restrictedToVulnerableGroup: boolean;
|
|
155
|
+
/**
|
|
156
|
+
* Shift whose arrival window applies to the driver's organization arrival.
|
|
157
|
+
* This selects only the arrival half of the referenced paired shift.
|
|
158
|
+
*
|
|
159
|
+
* @generated from field: string arrival_shift_id = 10;
|
|
160
|
+
*/
|
|
161
|
+
arrivalShiftId: string;
|
|
162
|
+
/**
|
|
163
|
+
* Shift whose departure window applies to the driver's organization departure.
|
|
164
|
+
* This selects only the departure half of the referenced paired shift.
|
|
165
|
+
*
|
|
166
|
+
* @generated from field: string departure_shift_id = 11;
|
|
167
|
+
*/
|
|
168
|
+
departureShiftId: string;
|
|
160
169
|
};
|
|
161
170
|
/**
|
|
162
171
|
* Describes the message caronashow.service.v1.DriverOfferSetup.
|
|
@@ -165,6 +174,7 @@ export type DriverOfferSetup = Message<"caronashow.service.v1.DriverOfferSetup">
|
|
|
165
174
|
export declare const DriverOfferSetupSchema: GenMessage<DriverOfferSetup>;
|
|
166
175
|
/**
|
|
167
176
|
* Passenger's route and preference data set during onboarding.
|
|
177
|
+
* Arrival and departure shift IDs may independently reference different paired shifts.
|
|
168
178
|
*
|
|
169
179
|
* @generated from message caronashow.service.v1.PassengerSearchSetup
|
|
170
180
|
*/
|
|
@@ -176,23 +186,25 @@ export type PassengerSearchSetup = Message<"caronashow.service.v1.PassengerSearc
|
|
|
176
186
|
*/
|
|
177
187
|
originAddress?: FullAddress;
|
|
178
188
|
/**
|
|
179
|
-
*
|
|
189
|
+
* Passenger's conversation preference during the ride.
|
|
180
190
|
*
|
|
181
|
-
* @generated from field: caronashow.types.v1.
|
|
191
|
+
* @generated from field: caronashow.types.v1.ChatPreference chat_preference = 4;
|
|
182
192
|
*/
|
|
183
|
-
|
|
193
|
+
chatPreference: ChatPreference;
|
|
184
194
|
/**
|
|
185
|
-
*
|
|
195
|
+
* Shift whose arrival window applies to the passenger's organization arrival.
|
|
196
|
+
* This selects only the arrival half of the referenced paired shift.
|
|
186
197
|
*
|
|
187
|
-
* @generated from field:
|
|
198
|
+
* @generated from field: string arrival_shift_id = 5;
|
|
188
199
|
*/
|
|
189
|
-
|
|
200
|
+
arrivalShiftId: string;
|
|
190
201
|
/**
|
|
191
|
-
*
|
|
202
|
+
* Shift whose departure window applies to the passenger's organization departure.
|
|
203
|
+
* This selects only the departure half of the referenced paired shift.
|
|
192
204
|
*
|
|
193
|
-
* @generated from field:
|
|
205
|
+
* @generated from field: string departure_shift_id = 6;
|
|
194
206
|
*/
|
|
195
|
-
|
|
207
|
+
departureShiftId: string;
|
|
196
208
|
};
|
|
197
209
|
/**
|
|
198
210
|
* Describes the message caronashow.service.v1.PassengerSearchSetup.
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
|
|
2
|
+
import type { FullAddress } from "../../types/v1/address_pb";
|
|
3
|
+
import type { TimeOfDay } from "../../types/v1/common_pb";
|
|
4
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
5
|
+
/**
|
|
6
|
+
* Describes the file caronashow/service/v1/organization.proto.
|
|
7
|
+
*/
|
|
8
|
+
export declare const file_caronashow_service_v1_organization: GenFile;
|
|
9
|
+
/**
|
|
10
|
+
* Empty because the authenticated user's organization is inferred from the session.
|
|
11
|
+
*
|
|
12
|
+
* @generated from message caronashow.service.v1.GetMyOrganizationRequest
|
|
13
|
+
*/
|
|
14
|
+
export type GetMyOrganizationRequest = Message<"caronashow.service.v1.GetMyOrganizationRequest"> & {};
|
|
15
|
+
/**
|
|
16
|
+
* Describes the message caronashow.service.v1.GetMyOrganizationRequest.
|
|
17
|
+
* Use `create(GetMyOrganizationRequestSchema)` to create a new message.
|
|
18
|
+
*/
|
|
19
|
+
export declare const GetMyOrganizationRequestSchema: GenMessage<GetMyOrganizationRequest>;
|
|
20
|
+
/**
|
|
21
|
+
* Contains the authenticated user's organization public profile.
|
|
22
|
+
*
|
|
23
|
+
* @generated from message caronashow.service.v1.GetMyOrganizationResponse
|
|
24
|
+
*/
|
|
25
|
+
export type GetMyOrganizationResponse = Message<"caronashow.service.v1.GetMyOrganizationResponse"> & {
|
|
26
|
+
/**
|
|
27
|
+
* Public organization data available to the authenticated user.
|
|
28
|
+
*
|
|
29
|
+
* @generated from field: caronashow.service.v1.Organization organization = 1;
|
|
30
|
+
*/
|
|
31
|
+
organization?: Organization;
|
|
32
|
+
};
|
|
33
|
+
/**
|
|
34
|
+
* Describes the message caronashow.service.v1.GetMyOrganizationResponse.
|
|
35
|
+
* Use `create(GetMyOrganizationResponseSchema)` to create a new message.
|
|
36
|
+
*/
|
|
37
|
+
export declare const GetMyOrganizationResponseSchema: GenMessage<GetMyOrganizationResponse>;
|
|
38
|
+
/**
|
|
39
|
+
* Public organization data and active shifts used by member workflows.
|
|
40
|
+
*
|
|
41
|
+
* @generated from message caronashow.service.v1.Organization
|
|
42
|
+
*/
|
|
43
|
+
export type Organization = Message<"caronashow.service.v1.Organization"> & {
|
|
44
|
+
/**
|
|
45
|
+
* Internal stable identifier for the organization.
|
|
46
|
+
*
|
|
47
|
+
* @generated from field: string id = 1;
|
|
48
|
+
*/
|
|
49
|
+
id: string;
|
|
50
|
+
/**
|
|
51
|
+
* Human-readable organization name.
|
|
52
|
+
*
|
|
53
|
+
* @generated from field: string name = 2;
|
|
54
|
+
*/
|
|
55
|
+
name: string;
|
|
56
|
+
/**
|
|
57
|
+
* Full structured address of the organization.
|
|
58
|
+
*
|
|
59
|
+
* @generated from field: caronashow.types.v1.FullAddress address = 3;
|
|
60
|
+
*/
|
|
61
|
+
address?: FullAddress;
|
|
62
|
+
/**
|
|
63
|
+
* IANA time zone identifier used to interpret shift-local times.
|
|
64
|
+
*
|
|
65
|
+
* @generated from field: string time_zone = 4;
|
|
66
|
+
*/
|
|
67
|
+
timeZone: string;
|
|
68
|
+
/**
|
|
69
|
+
* Optional identifier of the organization's logo asset; empty when absent.
|
|
70
|
+
*
|
|
71
|
+
* @generated from field: string logo_id = 5;
|
|
72
|
+
*/
|
|
73
|
+
logoId: string;
|
|
74
|
+
/**
|
|
75
|
+
* Active named shifts available for onboarding selections.
|
|
76
|
+
*
|
|
77
|
+
* @generated from field: repeated caronashow.service.v1.OrganizationShift shifts = 6;
|
|
78
|
+
*/
|
|
79
|
+
shifts: OrganizationShift[];
|
|
80
|
+
};
|
|
81
|
+
/**
|
|
82
|
+
* Describes the message caronashow.service.v1.Organization.
|
|
83
|
+
* Use `create(OrganizationSchema)` to create a new message.
|
|
84
|
+
*/
|
|
85
|
+
export declare const OrganizationSchema: GenMessage<Organization>;
|
|
86
|
+
/**
|
|
87
|
+
* A named shift pairing one arrival window with one departure window.
|
|
88
|
+
* Arrival and departure selections may independently reference different shifts.
|
|
89
|
+
*
|
|
90
|
+
* @generated from message caronashow.service.v1.OrganizationShift
|
|
91
|
+
*/
|
|
92
|
+
export type OrganizationShift = Message<"caronashow.service.v1.OrganizationShift"> & {
|
|
93
|
+
/**
|
|
94
|
+
* Internal stable identifier for the shift.
|
|
95
|
+
*
|
|
96
|
+
* @generated from field: string id = 1;
|
|
97
|
+
*/
|
|
98
|
+
id: string;
|
|
99
|
+
/**
|
|
100
|
+
* Human-readable shift name.
|
|
101
|
+
*
|
|
102
|
+
* @generated from field: string name = 2;
|
|
103
|
+
*/
|
|
104
|
+
name: string;
|
|
105
|
+
/**
|
|
106
|
+
* Window used when this shift is selected as an organization arrival shift.
|
|
107
|
+
*
|
|
108
|
+
* @generated from field: caronashow.service.v1.TimeWindow arrival_window = 3;
|
|
109
|
+
*/
|
|
110
|
+
arrivalWindow?: TimeWindow;
|
|
111
|
+
/**
|
|
112
|
+
* Window used when this shift is selected as an organization departure shift.
|
|
113
|
+
*
|
|
114
|
+
* @generated from field: caronashow.service.v1.TimeWindow departure_window = 4;
|
|
115
|
+
*/
|
|
116
|
+
departureWindow?: TimeWindow;
|
|
117
|
+
};
|
|
118
|
+
/**
|
|
119
|
+
* Describes the message caronashow.service.v1.OrganizationShift.
|
|
120
|
+
* Use `create(OrganizationShiftSchema)` to create a new message.
|
|
121
|
+
*/
|
|
122
|
+
export declare const OrganizationShiftSchema: GenMessage<OrganizationShift>;
|
|
123
|
+
/**
|
|
124
|
+
* A recurring local-time window with minute precision.
|
|
125
|
+
* An end before the start wraps into the following day; equal bounds are invalid.
|
|
126
|
+
*
|
|
127
|
+
* @generated from message caronashow.service.v1.TimeWindow
|
|
128
|
+
*/
|
|
129
|
+
export type TimeWindow = Message<"caronashow.service.v1.TimeWindow"> & {
|
|
130
|
+
/**
|
|
131
|
+
* Inclusive local start time of the window.
|
|
132
|
+
*
|
|
133
|
+
* @generated from field: caronashow.types.v1.TimeOfDay start_time = 1;
|
|
134
|
+
*/
|
|
135
|
+
startTime?: TimeOfDay;
|
|
136
|
+
/**
|
|
137
|
+
* Inclusive local end time of the window.
|
|
138
|
+
*
|
|
139
|
+
* @generated from field: caronashow.types.v1.TimeOfDay end_time = 2;
|
|
140
|
+
*/
|
|
141
|
+
endTime?: TimeOfDay;
|
|
142
|
+
};
|
|
143
|
+
/**
|
|
144
|
+
* Describes the message caronashow.service.v1.TimeWindow.
|
|
145
|
+
* Use `create(TimeWindowSchema)` to create a new message.
|
|
146
|
+
*/
|
|
147
|
+
export declare const TimeWindowSchema: GenMessage<TimeWindow>;
|
|
148
|
+
/**
|
|
149
|
+
* OrganizationService exposes organization data for the authenticated user.
|
|
150
|
+
*
|
|
151
|
+
* @generated from service caronashow.service.v1.OrganizationService
|
|
152
|
+
*/
|
|
153
|
+
export declare const OrganizationService: GenService<{
|
|
154
|
+
/**
|
|
155
|
+
* Returns the public profile of the authenticated user's organization.
|
|
156
|
+
* The organization is derived from the authenticated session; callers cannot
|
|
157
|
+
* select another organization through the request.
|
|
158
|
+
* Returns UNAUTHENTICATED when no authenticated user is present and
|
|
159
|
+
* FAILED_PRECONDITION when required organization data is incomplete.
|
|
160
|
+
*
|
|
161
|
+
* @generated from rpc caronashow.service.v1.OrganizationService.GetMyOrganization
|
|
162
|
+
*/
|
|
163
|
+
getMyOrganization: {
|
|
164
|
+
methodKind: "unary";
|
|
165
|
+
input: typeof GetMyOrganizationRequestSchema;
|
|
166
|
+
output: typeof GetMyOrganizationResponseSchema;
|
|
167
|
+
};
|
|
168
|
+
}>;
|
package/dist/index.cjs
CHANGED
|
@@ -43,6 +43,7 @@ __export(exports_src, {
|
|
|
43
43
|
file_caronashow_types_v1_user: () => file_caronashow_types_v1_user,
|
|
44
44
|
file_caronashow_types_v1_common: () => file_caronashow_types_v1_common,
|
|
45
45
|
file_caronashow_types_v1_address: () => file_caronashow_types_v1_address,
|
|
46
|
+
file_caronashow_service_v1_organization: () => file_caronashow_service_v1_organization,
|
|
46
47
|
file_caronashow_service_v1_onboarding: () => file_caronashow_service_v1_onboarding,
|
|
47
48
|
file_caronashow_service_v1_home: () => file_caronashow_service_v1_home,
|
|
48
49
|
file_caronashow_pooler_v1_pooler: () => file_caronashow_pooler_v1_pooler,
|
|
@@ -55,6 +56,7 @@ __export(exports_src, {
|
|
|
55
56
|
UserSchema: () => UserSchema,
|
|
56
57
|
UserRankSchema: () => UserRankSchema,
|
|
57
58
|
UserRank: () => UserRank,
|
|
59
|
+
TimeWindowSchema: () => TimeWindowSchema,
|
|
58
60
|
TimeOfDaySchema: () => TimeOfDaySchema,
|
|
59
61
|
SeatAvailabilitySchema: () => SeatAvailabilitySchema,
|
|
60
62
|
RouteTargetTypeSchema: () => RouteTargetTypeSchema,
|
|
@@ -73,6 +75,9 @@ __export(exports_src, {
|
|
|
73
75
|
PassengerPointSchema: () => PassengerPointSchema,
|
|
74
76
|
ParticipationModeSchema: () => ParticipationModeSchema,
|
|
75
77
|
ParticipationMode: () => ParticipationMode,
|
|
78
|
+
OrganizationShiftSchema: () => OrganizationShiftSchema,
|
|
79
|
+
OrganizationService: () => OrganizationService,
|
|
80
|
+
OrganizationSchema: () => OrganizationSchema,
|
|
76
81
|
OrganizationPointSchema: () => OrganizationPointSchema,
|
|
77
82
|
OptimizedRouteSchema: () => OptimizedRouteSchema,
|
|
78
83
|
OperationStateSchema: () => OperationStateSchema,
|
|
@@ -96,6 +101,8 @@ __export(exports_src, {
|
|
|
96
101
|
GetOptimizedRoutesRequestSchema: () => GetOptimizedRoutesRequestSchema,
|
|
97
102
|
GetOnboardingStatusResponseSchema: () => GetOnboardingStatusResponseSchema,
|
|
98
103
|
GetOnboardingStatusRequestSchema: () => GetOnboardingStatusRequestSchema,
|
|
104
|
+
GetMyOrganizationResponseSchema: () => GetMyOrganizationResponseSchema,
|
|
105
|
+
GetMyOrganizationRequestSchema: () => GetMyOrganizationRequestSchema,
|
|
99
106
|
GetMapPointsResponseSchema: () => GetMapPointsResponseSchema,
|
|
100
107
|
GetMapPointsRequestSchema: () => GetMapPointsRequestSchema,
|
|
101
108
|
GetMapPointGroupsResponseSchema: () => GetMapPointGroupsResponseSchema,
|
|
@@ -3177,7 +3184,7 @@ var UserRank;
|
|
|
3177
3184
|
var UserRankSchema = /* @__PURE__ */ enumDesc(file_caronashow_types_v1_user, 1);
|
|
3178
3185
|
|
|
3179
3186
|
// src/gen/caronashow/service/v1/onboarding_pb.ts
|
|
3180
|
-
var file_caronashow_service_v1_onboarding = /* @__PURE__ */ fileDesc("
|
|
3187
|
+
var file_caronashow_service_v1_onboarding = /* @__PURE__ */ fileDesc("CiZjYXJvbmFzaG93L3NlcnZpY2UvdjEvb25ib2FyZGluZy5wcm90bxIVY2Fyb25hc2hvdy5zZXJ2aWNlLnYxIhwKGkdldE9uYm9hcmRpbmdTdGF0dXNSZXF1ZXN0IjsKG0dldE9uYm9hcmRpbmdTdGF0dXNSZXNwb25zZRIcChRvbmJvYXJkaW5nX2NvbXBsZXRlZBgBIAEoCCKjAgoZQ29tcGxldGVPbmJvYXJkaW5nUmVxdWVzdBIoCiBlbnJvbGxlZF9pbl92dWxuZXJhYmlsaXR5X2ZpbHRlchgBIAEoCBIWCg50ZXJtc19hY2NlcHRlZBgCIAEoCBJCChJwYXJ0aWNpcGF0aW9uX21vZGUYAyABKA4yJi5jYXJvbmFzaG93LnR5cGVzLnYxLlBhcnRpY2lwYXRpb25Nb2RlEjgKBW9mZmVyGAQgASgLMicuY2Fyb25hc2hvdy5zZXJ2aWNlLnYxLkRyaXZlck9mZmVyU2V0dXBIABI9CgZzZWFyY2gYBSABKAsyKy5jYXJvbmFzaG93LnNlcnZpY2UudjEuUGFzc2VuZ2VyU2VhcmNoU2V0dXBIAEIHCgVzZXR1cCL0AgoQRHJpdmVyT2ZmZXJTZXR1cBIVCg12ZWhpY2xlX21vZGVsGAEgASgJEhUKDXZlaGljbGVfY29sb3IYAiABKAkSFQoNdmVoaWNsZV9wbGF0ZRgDIAEoCRIVCg1vZmZlcmVkX3NlYXRzGAQgASgFEjgKDm9yaWdpbl9hZGRyZXNzGAUgASgLMiAuY2Fyb25hc2hvdy50eXBlcy52MS5GdWxsQWRkcmVzcxI9ChVkZXBhcnR1cmVfZnJvbV9vcmlnaW4YBiABKAsyHi5jYXJvbmFzaG93LnR5cGVzLnYxLlRpbWVPZkRheRIaChJhY2NlcHRpbmdfcmVxdWVzdHMYCCABKAgSJgoecmVzdHJpY3RlZF90b192dWxuZXJhYmxlX2dyb3VwGAkgASgIEhgKEGFycml2YWxfc2hpZnRfaWQYCiABKAkSGgoSZGVwYXJ0dXJlX3NoaWZ0X2lkGAsgASgJSgQIBxAIUgtyZXR1cm5fdGltZSL0AQoUUGFzc2VuZ2VyU2VhcmNoU2V0dXASOAoOb3JpZ2luX2FkZHJlc3MYASABKAsyIC5jYXJvbmFzaG93LnR5cGVzLnYxLkZ1bGxBZGRyZXNzEjwKD2NoYXRfcHJlZmVyZW5jZRgEIAEoDjIjLmNhcm9uYXNob3cudHlwZXMudjEuQ2hhdFByZWZlcmVuY2USGAoQYXJyaXZhbF9zaGlmdF9pZBgFIAEoCRIaChJkZXBhcnR1cmVfc2hpZnRfaWQYBiABKAlKBAgDEARKBAgCEANSC3JldHVybl90aW1lUhVkZXBhcnR1cmVfZnJvbV9vcmlnaW4iHAoaQ29tcGxldGVPbmJvYXJkaW5nUmVzcG9uc2UyjAIKEU9uYm9hcmRpbmdTZXJ2aWNlEnwKE0dldE9uYm9hcmRpbmdTdGF0dXMSMS5jYXJvbmFzaG93LnNlcnZpY2UudjEuR2V0T25ib2FyZGluZ1N0YXR1c1JlcXVlc3QaMi5jYXJvbmFzaG93LnNlcnZpY2UudjEuR2V0T25ib2FyZGluZ1N0YXR1c1Jlc3BvbnNlEnkKEkNvbXBsZXRlT25ib2FyZGluZxIwLmNhcm9uYXNob3cuc2VydmljZS52MS5Db21wbGV0ZU9uYm9hcmRpbmdSZXF1ZXN0GjEuY2Fyb25hc2hvdy5zZXJ2aWNlLnYxLkNvbXBsZXRlT25ib2FyZGluZ1Jlc3BvbnNlQuQBChljb20uY2Fyb25hc2hvdy5zZXJ2aWNlLnYxQg9PbmJvYXJkaW5nUHJvdG9QAVpAZ2l0bGFiLmNvbS9jYXJvbmFzaG93L2FwaS9nby9nZW4vY2Fyb25hc2hvdy9zZXJ2aWNlL3YxO3NlcnZpY2V2MaICA0NTWKoCFUNhcm9uYXNob3cuU2VydmljZS5WMcoCFUNhcm9uYXNob3dcU2VydmljZVxWMeICIUNhcm9uYXNob3dcU2VydmljZVxWMVxHUEJNZXRhZGF0YeoCF0Nhcm9uYXNob3c6OlNlcnZpY2U6OlYxYgZwcm90bzM", [file_caronashow_types_v1_address, file_caronashow_types_v1_common, file_caronashow_types_v1_user]);
|
|
3181
3188
|
var GetOnboardingStatusRequestSchema = /* @__PURE__ */ messageDesc(file_caronashow_service_v1_onboarding, 0);
|
|
3182
3189
|
var GetOnboardingStatusResponseSchema = /* @__PURE__ */ messageDesc(file_caronashow_service_v1_onboarding, 1);
|
|
3183
3190
|
var CompleteOnboardingRequestSchema = /* @__PURE__ */ messageDesc(file_caronashow_service_v1_onboarding, 2);
|
|
@@ -3205,3 +3212,11 @@ var CommuteDirection;
|
|
|
3205
3212
|
})(CommuteDirection ||= {});
|
|
3206
3213
|
var CommuteDirectionSchema = /* @__PURE__ */ enumDesc(file_caronashow_service_v1_home, 0);
|
|
3207
3214
|
var MatchingService = /* @__PURE__ */ serviceDesc(file_caronashow_service_v1_home, 0);
|
|
3215
|
+
// src/gen/caronashow/service/v1/organization_pb.ts
|
|
3216
|
+
var file_caronashow_service_v1_organization = /* @__PURE__ */ fileDesc("CihjYXJvbmFzaG93L3NlcnZpY2UvdjEvb3JnYW5pemF0aW9uLnByb3RvEhVjYXJvbmFzaG93LnNlcnZpY2UudjEiGgoYR2V0TXlPcmdhbml6YXRpb25SZXF1ZXN0IlYKGUdldE15T3JnYW5pemF0aW9uUmVzcG9uc2USOQoMb3JnYW5pemF0aW9uGAEgASgLMiMuY2Fyb25hc2hvdy5zZXJ2aWNlLnYxLk9yZ2FuaXphdGlvbiK5AQoMT3JnYW5pemF0aW9uEgoKAmlkGAEgASgJEgwKBG5hbWUYAiABKAkSMQoHYWRkcmVzcxgDIAEoCzIgLmNhcm9uYXNob3cudHlwZXMudjEuRnVsbEFkZHJlc3MSEQoJdGltZV96b25lGAQgASgJEg8KB2xvZ29faWQYBSABKAkSOAoGc2hpZnRzGAYgAygLMiguY2Fyb25hc2hvdy5zZXJ2aWNlLnYxLk9yZ2FuaXphdGlvblNoaWZ0IqUBChFPcmdhbml6YXRpb25TaGlmdBIKCgJpZBgBIAEoCRIMCgRuYW1lGAIgASgJEjkKDmFycml2YWxfd2luZG93GAMgASgLMiEuY2Fyb25hc2hvdy5zZXJ2aWNlLnYxLlRpbWVXaW5kb3cSOwoQZGVwYXJ0dXJlX3dpbmRvdxgEIAEoCzIhLmNhcm9uYXNob3cuc2VydmljZS52MS5UaW1lV2luZG93InIKClRpbWVXaW5kb3cSMgoKc3RhcnRfdGltZRgBIAEoCzIeLmNhcm9uYXNob3cudHlwZXMudjEuVGltZU9mRGF5EjAKCGVuZF90aW1lGAIgASgLMh4uY2Fyb25hc2hvdy50eXBlcy52MS5UaW1lT2ZEYXkyjQEKE09yZ2FuaXphdGlvblNlcnZpY2USdgoRR2V0TXlPcmdhbml6YXRpb24SLy5jYXJvbmFzaG93LnNlcnZpY2UudjEuR2V0TXlPcmdhbml6YXRpb25SZXF1ZXN0GjAuY2Fyb25hc2hvdy5zZXJ2aWNlLnYxLkdldE15T3JnYW5pemF0aW9uUmVzcG9uc2VC5gEKGWNvbS5jYXJvbmFzaG93LnNlcnZpY2UudjFCEU9yZ2FuaXphdGlvblByb3RvUAFaQGdpdGxhYi5jb20vY2Fyb25hc2hvdy9hcGkvZ28vZ2VuL2Nhcm9uYXNob3cvc2VydmljZS92MTtzZXJ2aWNldjGiAgNDU1iqAhVDYXJvbmFzaG93LlNlcnZpY2UuVjHKAhVDYXJvbmFzaG93XFNlcnZpY2VcVjHiAiFDYXJvbmFzaG93XFNlcnZpY2VcVjFcR1BCTWV0YWRhdGHqAhdDYXJvbmFzaG93OjpTZXJ2aWNlOjpWMWIGcHJvdG8z", [file_caronashow_types_v1_address, file_caronashow_types_v1_common]);
|
|
3217
|
+
var GetMyOrganizationRequestSchema = /* @__PURE__ */ messageDesc(file_caronashow_service_v1_organization, 0);
|
|
3218
|
+
var GetMyOrganizationResponseSchema = /* @__PURE__ */ messageDesc(file_caronashow_service_v1_organization, 1);
|
|
3219
|
+
var OrganizationSchema = /* @__PURE__ */ messageDesc(file_caronashow_service_v1_organization, 2);
|
|
3220
|
+
var OrganizationShiftSchema = /* @__PURE__ */ messageDesc(file_caronashow_service_v1_organization, 3);
|
|
3221
|
+
var TimeWindowSchema = /* @__PURE__ */ messageDesc(file_caronashow_service_v1_organization, 4);
|
|
3222
|
+
var OrganizationService = /* @__PURE__ */ serviceDesc(file_caronashow_service_v1_organization, 0);
|
package/dist/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ export * from "./gen/caronashow/poc/v1/routes_pb";
|
|
|
5
5
|
export * from "./gen/caronashow/pooler/v1/pooler_pb";
|
|
6
6
|
export * from "./gen/caronashow/service/v1/onboarding_pb";
|
|
7
7
|
export * from "./gen/caronashow/service/v1/home_pb";
|
|
8
|
+
export * from "./gen/caronashow/service/v1/organization_pb";
|
|
8
9
|
export * from "./gen/caronashow/types/v1/address_pb";
|
|
9
10
|
export * from "./gen/caronashow/types/v1/common_pb";
|
|
10
11
|
export * from "./gen/caronashow/types/v1/user_pb";
|
package/package.json
CHANGED