@inverted-tech/fragments 0.3.8 → 0.4.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.
- package/README.PACKAGE.md +47 -47
- package/README.md +47 -47
- package/dist/esm/Authentication/UserInterface_pb.js +1 -101
- package/dist/esm/Authorization/Events/AdminEventInterface_pb.js +1 -1
- package/dist/esm/Authorization/Events/EventError_pb.js +97 -223
- package/dist/esm/Authorization/Events/EventInterface_pb.js +1 -1
- package/dist/esm/Authorization/Payment/AdminPaymentInterface_pb.js +2 -1
- package/dist/esm/Authorization/Payment/PaymentError_pb.js +150 -0
- package/dist/esm/Authorization/Payment/PaymentInterface_pb.js +2 -1
- package/dist/esm/Authorization/Payment/Paypal/PaypalInterface_pb.js +2 -1
- package/dist/esm/Authorization/Payment/Stripe/StripeInterface_pb.js +2 -1
- package/dist/esm/Authorization/Payment/index.js +1 -0
- package/dist/esm/Comment/CommentError_pb.js +124 -0
- package/dist/esm/Comment/CommentInterface_pb.js +2 -1
- package/dist/esm/Comment/index.js +1 -0
- package/dist/esm/Content/AssetInterface_pb.js +2 -1
- package/dist/esm/Content/ContentError_pb.js +110 -0
- package/dist/esm/Content/Rumble_pb.js +2 -1
- package/dist/esm/Content/Stats/StatsProgressInterface_pb.js +2 -1
- package/dist/esm/Content/Video_pb.js +2 -1
- package/dist/esm/Content/index.js +1 -0
- package/dist/esm/Notification/NotificationError_pb.js +68 -0
- package/dist/esm/Notification/NotificationInterface_pb.js +2 -1
- package/dist/esm/Notification/UserNotificationInterface_pb.js +2 -1
- package/dist/esm/Notification/index.js +1 -0
- package/dist/esm/Page/PageError_pb.js +138 -0
- package/dist/esm/Page/PageInterface_pb.js +2 -1
- package/dist/esm/Page/index.js +1 -0
- package/dist/esm/Settings/SettingsInterface_pb.js +2 -20
- package/dist/esm/Settings/SettingsRecord_pb.js +1 -1
- package/dist/protos/Authentication/UserInterface_pb.d.ts +10 -106
- package/dist/protos/Authorization/Events/AdminEventInterface_pb.d.ts +5 -5
- package/dist/protos/Authorization/Events/EventError_pb.d.ts +101 -286
- package/dist/protos/Authorization/Events/EventInterface_pb.d.ts +11 -11
- package/dist/protos/Authorization/Payment/AdminPaymentInterface_pb.d.ts +13 -0
- package/dist/protos/Authorization/Payment/PaymentError_pb.d.ts +164 -0
- package/dist/protos/Authorization/Payment/PaymentInterface_pb.d.ts +29 -4
- package/dist/protos/Authorization/Payment/Paypal/PaypalInterface_pb.d.ts +3 -2
- package/dist/protos/Authorization/Payment/Stripe/StripeInterface_pb.d.ts +21 -20
- package/dist/protos/Authorization/Payment/index.d.ts +1 -0
- package/dist/protos/Comment/CommentError_pb.d.ts +138 -0
- package/dist/protos/Comment/CommentInterface_pb.d.ts +5 -4
- package/dist/protos/Comment/index.d.ts +1 -0
- package/dist/protos/Content/AssetInterface_pb.d.ts +21 -0
- package/dist/protos/Content/ContentError_pb.d.ts +124 -0
- package/dist/protos/Content/Rumble_pb.d.ts +7 -6
- package/dist/protos/Content/Stats/StatsProgressInterface_pb.d.ts +3 -2
- package/dist/protos/Content/Video_pb.d.ts +3 -2
- package/dist/protos/Content/index.d.ts +1 -0
- package/dist/protos/Notification/NotificationError_pb.d.ts +82 -0
- package/dist/protos/Notification/NotificationInterface_pb.d.ts +3 -2
- package/dist/protos/Notification/UserNotificationInterface_pb.d.ts +7 -6
- package/dist/protos/Notification/index.d.ts +1 -0
- package/dist/protos/Page/PageError_pb.d.ts +152 -0
- package/dist/protos/Page/PageInterface_pb.d.ts +49 -0
- package/dist/protos/Page/index.d.ts +1 -0
- package/dist/protos/Settings/SettingsInterface_pb.d.ts +37 -162
- package/package.json +1 -1
|
@@ -102,40 +102,15 @@ export declare const ChangeOtherPasswordRequestSchema: GenMessage<ChangeOtherPas
|
|
|
102
102
|
*/
|
|
103
103
|
export type ChangeOtherPasswordResponse = Message<"IT.WebServices.Fragments.Authentication.ChangeOtherPasswordResponse"> & {
|
|
104
104
|
/**
|
|
105
|
-
* @generated from field: IT.WebServices.Fragments.Authentication.
|
|
105
|
+
* @generated from field: IT.WebServices.Fragments.Authentication.AuthError Error = 1;
|
|
106
106
|
*/
|
|
107
|
-
Error
|
|
107
|
+
Error?: AuthError;
|
|
108
108
|
};
|
|
109
109
|
/**
|
|
110
110
|
* Describes the message IT.WebServices.Fragments.Authentication.ChangeOtherPasswordResponse.
|
|
111
111
|
* Use `create(ChangeOtherPasswordResponseSchema)` to create a new message.
|
|
112
112
|
*/
|
|
113
113
|
export declare const ChangeOtherPasswordResponseSchema: GenMessage<ChangeOtherPasswordResponse>;
|
|
114
|
-
/**
|
|
115
|
-
* @generated from enum IT.WebServices.Fragments.Authentication.ChangeOtherPasswordResponse.ChangeOtherPasswordResponseErrorType
|
|
116
|
-
*/
|
|
117
|
-
export declare enum ChangeOtherPasswordResponse_ChangeOtherPasswordResponseErrorType {
|
|
118
|
-
/**
|
|
119
|
-
* @generated from enum value: NoError = 0;
|
|
120
|
-
*/
|
|
121
|
-
NoError = 0,
|
|
122
|
-
/**
|
|
123
|
-
* @generated from enum value: UnknownError = -1;
|
|
124
|
-
*/
|
|
125
|
-
UnknownError = -1,
|
|
126
|
-
/**
|
|
127
|
-
* @generated from enum value: UserNotFound = 1;
|
|
128
|
-
*/
|
|
129
|
-
UserNotFound = 1,
|
|
130
|
-
/**
|
|
131
|
-
* @generated from enum value: BadNewPassword = 2;
|
|
132
|
-
*/
|
|
133
|
-
BadNewPassword = 2
|
|
134
|
-
}
|
|
135
|
-
/**
|
|
136
|
-
* Describes the enum IT.WebServices.Fragments.Authentication.ChangeOtherPasswordResponse.ChangeOtherPasswordResponseErrorType.
|
|
137
|
-
*/
|
|
138
|
-
export declare const ChangeOtherPasswordResponse_ChangeOtherPasswordResponseErrorTypeSchema: GenEnum<ChangeOtherPasswordResponse_ChangeOtherPasswordResponseErrorType>;
|
|
139
114
|
/**
|
|
140
115
|
* @generated from message IT.WebServices.Fragments.Authentication.ChangeOtherProfileImageRequest
|
|
141
116
|
*/
|
|
@@ -161,40 +136,15 @@ export declare const ChangeOtherProfileImageRequestSchema: GenMessage<ChangeOthe
|
|
|
161
136
|
*/
|
|
162
137
|
export type ChangeOtherProfileImageResponse = Message<"IT.WebServices.Fragments.Authentication.ChangeOtherProfileImageResponse"> & {
|
|
163
138
|
/**
|
|
164
|
-
* @generated from field: IT.WebServices.Fragments.Authentication.
|
|
139
|
+
* @generated from field: IT.WebServices.Fragments.Authentication.AuthError Error = 1;
|
|
165
140
|
*/
|
|
166
|
-
Error
|
|
141
|
+
Error?: AuthError;
|
|
167
142
|
};
|
|
168
143
|
/**
|
|
169
144
|
* Describes the message IT.WebServices.Fragments.Authentication.ChangeOtherProfileImageResponse.
|
|
170
145
|
* Use `create(ChangeOtherProfileImageResponseSchema)` to create a new message.
|
|
171
146
|
*/
|
|
172
147
|
export declare const ChangeOtherProfileImageResponseSchema: GenMessage<ChangeOtherProfileImageResponse>;
|
|
173
|
-
/**
|
|
174
|
-
* @generated from enum IT.WebServices.Fragments.Authentication.ChangeOtherProfileImageResponse.ChangeOtherProfileImageResponseErrorType
|
|
175
|
-
*/
|
|
176
|
-
export declare enum ChangeOtherProfileImageResponse_ChangeOtherProfileImageResponseErrorType {
|
|
177
|
-
/**
|
|
178
|
-
* @generated from enum value: NoError = 0;
|
|
179
|
-
*/
|
|
180
|
-
NoError = 0,
|
|
181
|
-
/**
|
|
182
|
-
* @generated from enum value: UnknownError = -1;
|
|
183
|
-
*/
|
|
184
|
-
UnknownError = -1,
|
|
185
|
-
/**
|
|
186
|
-
* @generated from enum value: UserNotFound = 1;
|
|
187
|
-
*/
|
|
188
|
-
UserNotFound = 1,
|
|
189
|
-
/**
|
|
190
|
-
* @generated from enum value: BadFormat = 2;
|
|
191
|
-
*/
|
|
192
|
-
BadFormat = 2
|
|
193
|
-
}
|
|
194
|
-
/**
|
|
195
|
-
* Describes the enum IT.WebServices.Fragments.Authentication.ChangeOtherProfileImageResponse.ChangeOtherProfileImageResponseErrorType.
|
|
196
|
-
*/
|
|
197
|
-
export declare const ChangeOtherProfileImageResponse_ChangeOtherProfileImageResponseErrorTypeSchema: GenEnum<ChangeOtherProfileImageResponse_ChangeOtherProfileImageResponseErrorType>;
|
|
198
148
|
/**
|
|
199
149
|
* @generated from message IT.WebServices.Fragments.Authentication.ChangeOwnPasswordRequest
|
|
200
150
|
*/
|
|
@@ -218,40 +168,15 @@ export declare const ChangeOwnPasswordRequestSchema: GenMessage<ChangeOwnPasswor
|
|
|
218
168
|
*/
|
|
219
169
|
export type ChangeOwnPasswordResponse = Message<"IT.WebServices.Fragments.Authentication.ChangeOwnPasswordResponse"> & {
|
|
220
170
|
/**
|
|
221
|
-
* @generated from field: IT.WebServices.Fragments.Authentication.
|
|
171
|
+
* @generated from field: IT.WebServices.Fragments.Authentication.AuthError Error = 1;
|
|
222
172
|
*/
|
|
223
|
-
Error
|
|
173
|
+
Error?: AuthError;
|
|
224
174
|
};
|
|
225
175
|
/**
|
|
226
176
|
* Describes the message IT.WebServices.Fragments.Authentication.ChangeOwnPasswordResponse.
|
|
227
177
|
* Use `create(ChangeOwnPasswordResponseSchema)` to create a new message.
|
|
228
178
|
*/
|
|
229
179
|
export declare const ChangeOwnPasswordResponseSchema: GenMessage<ChangeOwnPasswordResponse>;
|
|
230
|
-
/**
|
|
231
|
-
* @generated from enum IT.WebServices.Fragments.Authentication.ChangeOwnPasswordResponse.ChangeOwnPasswordResponseErrorType
|
|
232
|
-
*/
|
|
233
|
-
export declare enum ChangeOwnPasswordResponse_ChangeOwnPasswordResponseErrorType {
|
|
234
|
-
/**
|
|
235
|
-
* @generated from enum value: NoError = 0;
|
|
236
|
-
*/
|
|
237
|
-
NoError = 0,
|
|
238
|
-
/**
|
|
239
|
-
* @generated from enum value: UnknownError = -1;
|
|
240
|
-
*/
|
|
241
|
-
UnknownError = -1,
|
|
242
|
-
/**
|
|
243
|
-
* @generated from enum value: BadOldPassword = 1;
|
|
244
|
-
*/
|
|
245
|
-
BadOldPassword = 1,
|
|
246
|
-
/**
|
|
247
|
-
* @generated from enum value: BadNewPassword = 2;
|
|
248
|
-
*/
|
|
249
|
-
BadNewPassword = 2
|
|
250
|
-
}
|
|
251
|
-
/**
|
|
252
|
-
* Describes the enum IT.WebServices.Fragments.Authentication.ChangeOwnPasswordResponse.ChangeOwnPasswordResponseErrorType.
|
|
253
|
-
*/
|
|
254
|
-
export declare const ChangeOwnPasswordResponse_ChangeOwnPasswordResponseErrorTypeSchema: GenEnum<ChangeOwnPasswordResponse_ChangeOwnPasswordResponseErrorType>;
|
|
255
180
|
/**
|
|
256
181
|
* @generated from message IT.WebServices.Fragments.Authentication.ChangeOwnProfileImageRequest
|
|
257
182
|
*/
|
|
@@ -271,36 +196,15 @@ export declare const ChangeOwnProfileImageRequestSchema: GenMessage<ChangeOwnPro
|
|
|
271
196
|
*/
|
|
272
197
|
export type ChangeOwnProfileImageResponse = Message<"IT.WebServices.Fragments.Authentication.ChangeOwnProfileImageResponse"> & {
|
|
273
198
|
/**
|
|
274
|
-
* @generated from field: IT.WebServices.Fragments.Authentication.
|
|
199
|
+
* @generated from field: IT.WebServices.Fragments.Authentication.AuthError Error = 1;
|
|
275
200
|
*/
|
|
276
|
-
Error
|
|
201
|
+
Error?: AuthError;
|
|
277
202
|
};
|
|
278
203
|
/**
|
|
279
204
|
* Describes the message IT.WebServices.Fragments.Authentication.ChangeOwnProfileImageResponse.
|
|
280
205
|
* Use `create(ChangeOwnProfileImageResponseSchema)` to create a new message.
|
|
281
206
|
*/
|
|
282
207
|
export declare const ChangeOwnProfileImageResponseSchema: GenMessage<ChangeOwnProfileImageResponse>;
|
|
283
|
-
/**
|
|
284
|
-
* @generated from enum IT.WebServices.Fragments.Authentication.ChangeOwnProfileImageResponse.ChangeOwnProfileImageResponseErrorType
|
|
285
|
-
*/
|
|
286
|
-
export declare enum ChangeOwnProfileImageResponse_ChangeOwnProfileImageResponseErrorType {
|
|
287
|
-
/**
|
|
288
|
-
* @generated from enum value: NoError = 0;
|
|
289
|
-
*/
|
|
290
|
-
NoError = 0,
|
|
291
|
-
/**
|
|
292
|
-
* @generated from enum value: UnknownError = -1;
|
|
293
|
-
*/
|
|
294
|
-
UnknownError = -1,
|
|
295
|
-
/**
|
|
296
|
-
* @generated from enum value: BadFormat = 1;
|
|
297
|
-
*/
|
|
298
|
-
BadFormat = 1
|
|
299
|
-
}
|
|
300
|
-
/**
|
|
301
|
-
* Describes the enum IT.WebServices.Fragments.Authentication.ChangeOwnProfileImageResponse.ChangeOwnProfileImageResponseErrorType.
|
|
302
|
-
*/
|
|
303
|
-
export declare const ChangeOwnProfileImageResponse_ChangeOwnProfileImageResponseErrorTypeSchema: GenEnum<ChangeOwnProfileImageResponse_ChangeOwnProfileImageResponseErrorType>;
|
|
304
208
|
/**
|
|
305
209
|
* @generated from message IT.WebServices.Fragments.Authentication.CreateUserRequest
|
|
306
210
|
*/
|
|
@@ -380,9 +284,9 @@ export declare const DisableEnableOtherUserRequestSchema: GenMessage<DisableEnab
|
|
|
380
284
|
*/
|
|
381
285
|
export type DisableEnableOtherUserResponse = Message<"IT.WebServices.Fragments.Authentication.DisableEnableOtherUserResponse"> & {
|
|
382
286
|
/**
|
|
383
|
-
* @generated from field: IT.WebServices.Fragments.Authentication.
|
|
287
|
+
* @generated from field: IT.WebServices.Fragments.Authentication.AuthError Error = 10;
|
|
384
288
|
*/
|
|
385
|
-
Error
|
|
289
|
+
Error?: AuthError;
|
|
386
290
|
};
|
|
387
291
|
/**
|
|
388
292
|
* Describes the message IT.WebServices.Fragments.Authentication.DisableEnableOtherUserResponse.
|
|
@@ -3,7 +3,7 @@ import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
|
3
3
|
import type { EventRecord, EventRecurrenceRule, EventVenue } from "./EventRecord_pb";
|
|
4
4
|
import type { EventTicketRecord } from "./EventTicketRecord_pb";
|
|
5
5
|
import type { EventTicketClass } from "./TicketClassRecord_pb";
|
|
6
|
-
import type { EventError
|
|
6
|
+
import type { EventError } from "./EventError_pb";
|
|
7
7
|
import type { Pagination } from "../../CommonTypes_pb";
|
|
8
8
|
import type { Message } from "@bufbuild/protobuf";
|
|
9
9
|
/**
|
|
@@ -469,9 +469,9 @@ export declare const AdminCancelOtherTicketRequestSchema: GenMessage<AdminCancel
|
|
|
469
469
|
*/
|
|
470
470
|
export type AdminCancelOtherTicketResponse = Message<"IT.WebServices.Fragments.Authorization.Events.AdminCancelOtherTicketResponse"> & {
|
|
471
471
|
/**
|
|
472
|
-
* @generated from field: IT.WebServices.Fragments.Authorization.Events.
|
|
472
|
+
* @generated from field: IT.WebServices.Fragments.Authorization.Events.EventError Error = 1;
|
|
473
473
|
*/
|
|
474
|
-
Error?:
|
|
474
|
+
Error?: EventError;
|
|
475
475
|
};
|
|
476
476
|
/**
|
|
477
477
|
* Describes the message IT.WebServices.Fragments.Authorization.Events.AdminCancelOtherTicketResponse.
|
|
@@ -519,9 +519,9 @@ export type AdminReserveEventTicketForUserResponse = Message<"IT.WebServices.Fra
|
|
|
519
519
|
/**
|
|
520
520
|
* Error information if reservation failed
|
|
521
521
|
*
|
|
522
|
-
* @generated from field: IT.WebServices.Fragments.Authorization.Events.
|
|
522
|
+
* @generated from field: IT.WebServices.Fragments.Authorization.Events.EventError Error = 1;
|
|
523
523
|
*/
|
|
524
|
-
Error?:
|
|
524
|
+
Error?: EventError;
|
|
525
525
|
/**
|
|
526
526
|
* List of reserved tickets if successful
|
|
527
527
|
*
|